diff --git a/Build Config Orig.png b/Build Config Orig.png new file mode 100644 index 0000000..6270c8c Binary files /dev/null and b/Build Config Orig.png differ diff --git a/Plugins/SDRSharper.DNR/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.DNR/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..1ff5281 --- /dev/null +++ b/Plugins/SDRSharper.DNR/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Security.Permissions; + +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SDR#")] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyTrademark("")] +[assembly: CompilationRelaxations(8)] +[assembly: AssemblyDescription("IAudioInterceptor Test Plugin")] +[assembly: ComVisible(false)] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: AssemblyTitle("AudioInterceptorTest")] +[assembly: AssemblyCopyright("Copyright © Youssef TOUIL and Ian Gilmour 2013")] +[assembly: Guid("dfd7918b-ff74-4825-a628-ac37c85d5e9f")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR.csproj b/Plugins/SDRSharper.DNR/SDRSharp.DNR.csproj new file mode 100644 index 0000000..ce68352 --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR.csproj @@ -0,0 +1,57 @@ + + + + {80F6534B-F628-4C68-9A35-828F79F8F034} + Debug + x86 + Library + SDRSharp.DNR + v2.0 + 4 + True + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Common.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + + + + + + UserControl + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR/AudioProcessor.cs b/Plugins/SDRSharper.DNR/SDRSharp.DNR/AudioProcessor.cs new file mode 100644 index 0000000..7007f4f --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR/AudioProcessor.cs @@ -0,0 +1,62 @@ +using SDRSharp.Radio; + +namespace SDRSharp.DNR +{ + public class AudioProcessor : INoiseProcessor, IRealProcessor, IBaseProcessor + { + private double _sampleRate; + + private bool _enabled; + + private NoiseFilter _filter1; + + private NoiseFilter _filter2; + + private bool _needNewFilters; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + this._needNewFilters = true; + } + } + + public bool Enabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public int NoiseThreshold + { + get; + set; + } + + public unsafe void Process(float* buffer, int length) + { + if (this._needNewFilters) + { + this._filter1 = new NoiseFilter(4096); + this._filter2 = new NoiseFilter(4096); + this._needNewFilters = false; + } + this._filter1.NoiseThreshold = (float)this.NoiseThreshold; + this._filter2.NoiseThreshold = (float)this.NoiseThreshold; + this._filter1.Process(buffer, length, 2); + this._filter2.Process(buffer + 1, length, 2); + } + } +} diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR/DNRPlugin.cs b/Plugins/SDRSharper.DNR/SDRSharp.DNR/DNRPlugin.cs new file mode 100644 index 0000000..74c37bb --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR/DNRPlugin.cs @@ -0,0 +1,47 @@ +using SDRSharp.Common; +using SDRSharp.Radio; +using System.Windows.Forms; + +namespace SDRSharp.DNR +{ + public class DNRPlugin : ISharpPlugin + { + private const string _displayName = "Digital Noise Reduction"; + + private ISharpControl _control; + + private AudioProcessor _audioProcessor; + + private IFProcessor _ifProcessor; + + private ProcessorPanel _guiControl; + + public string DisplayName => "Digital Noise Reduction"; + + public bool HasGui => true; + + public UserControl GuiControl => this._guiControl; + + public void Initialize(ISharpControl control) + { + this._control = control; + this._audioProcessor = new AudioProcessor(); + this._control.RegisterStreamHook(this._audioProcessor, ProcessorType.FilteredAudioOutput); + this._ifProcessor = new IFProcessor(); + this._control.RegisterStreamHook(this._ifProcessor, ProcessorType.DecimatedAndFilteredIQ); + this._ifProcessor.NoiseThreshold = Utils.GetIntSetting("DNRIThreshold", -30); + this._ifProcessor.Enabled = Utils.GetBooleanSetting("DNRIEnabled"); + this._audioProcessor.NoiseThreshold = Utils.GetIntSetting("DNRAThreshold", -70); + this._audioProcessor.Enabled = Utils.GetBooleanSetting("DNRAEnabled"); + this._guiControl = new ProcessorPanel(this._ifProcessor, this._audioProcessor); + } + + public void Close() + { + Utils.SaveSetting("DNRIThreshold", this._ifProcessor.NoiseThreshold); + Utils.SaveSetting("DNRIEnabled", this._ifProcessor.Enabled); + Utils.SaveSetting("DNRAThreshold", this._audioProcessor.NoiseThreshold); + Utils.SaveSetting("DNRAEnabled", this._audioProcessor.Enabled); + } + } +} diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR/IFProcessor.cs b/Plugins/SDRSharper.DNR/SDRSharp.DNR/IFProcessor.cs new file mode 100644 index 0000000..9e64279 --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR/IFProcessor.cs @@ -0,0 +1,57 @@ +using SDRSharp.Radio; + +namespace SDRSharp.DNR +{ + public class IFProcessor : INoiseProcessor, IIQProcessor, IBaseProcessor + { + private double _sampleRate; + + private bool _enabled; + + private NoiseFilter _filter; + + private bool _needNewFilter; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + this._needNewFilter = true; + } + } + + public bool Enabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public int NoiseThreshold + { + get; + set; + } + + public unsafe void Process(Complex* buffer, int length) + { + if (this._needNewFilter) + { + this._filter = new NoiseFilter(4096); + this._needNewFilter = false; + } + this._filter.NoiseThreshold = (float)this.NoiseThreshold; + this._filter.Process(buffer, length); + } + } +} diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR/INoiseProcessor.cs b/Plugins/SDRSharper.DNR/SDRSharp.DNR/INoiseProcessor.cs new file mode 100644 index 0000000..0db2bd3 --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR/INoiseProcessor.cs @@ -0,0 +1,13 @@ +using SDRSharp.Radio; + +namespace SDRSharp.DNR +{ + public interface INoiseProcessor : IBaseProcessor + { + int NoiseThreshold + { + get; + set; + } + } +} diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR/NoiseFilter.cs b/Plugins/SDRSharper.DNR/SDRSharp.DNR/NoiseFilter.cs new file mode 100644 index 0000000..45b61f0 --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR/NoiseFilter.cs @@ -0,0 +1,82 @@ +using SDRSharp.Radio; + +namespace SDRSharp.DNR +{ + public class NoiseFilter : FftProcessor + { + private const int WindowSize = 32; + + private const int FftSize = 4096; + + private const float OverlapRatio = 0.2f; + + private float _noiseThreshold; + + private readonly UnsafeBuffer _gainBuffer; + + private unsafe readonly float* _gainPtr; + + private readonly UnsafeBuffer _smoothedGainBuffer; + + private unsafe readonly float* _smoothedGainPtr; + + private readonly UnsafeBuffer _powerBuffer; + + private unsafe readonly float* _powerPtr; + + public float NoiseThreshold + { + get + { + return this._noiseThreshold; + } + set + { + this._noiseThreshold = value; + } + } + + public unsafe NoiseFilter(int fftSize = 4096) + : base(fftSize, 0.2f) + { + this._gainBuffer = UnsafeBuffer.Create(fftSize, 4); + this._gainPtr = (float*)(void*)this._gainBuffer; + this._smoothedGainBuffer = UnsafeBuffer.Create(fftSize, 4); + this._smoothedGainPtr = (float*)(void*)this._smoothedGainBuffer; + this._powerBuffer = UnsafeBuffer.Create(fftSize, 4); + this._powerPtr = (float*)(void*)this._powerBuffer; + } + + protected unsafe override void ProcessFft(Complex* buffer, int length) + { + Fourier.SpectrumPower(buffer, this._powerPtr, length, 0f, false); + for (int i = 0; i < length; i++) + { + this._gainPtr[i] = ((this._powerPtr[i] > this._noiseThreshold) ? 1f : 0f); + } + for (int j = 0; j < length; j++) + { + float num = 0f; + for (int k = -16; k < 16; k++) + { + int num2 = j + k; + if (num2 >= length) + { + num2 -= length; + } + if (num2 < 0) + { + num2 += length; + } + num += this._gainPtr[num2]; + } + float num3 = num / 32f; + this._smoothedGainPtr[j] = num3; + } + for (int l = 0; l < length; l++) + { + Complex.Mul(ref buffer[l], this._smoothedGainPtr[l]); + } + } + } +} diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.Designer.cs b/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.Designer.cs new file mode 100644 index 0000000..2f52d19 --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SDRSharp.DNR { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class ProcessorPanel { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + private IFProcessor _ifProcessor; + private AudioProcessor _audioProcessor; + + public ProcessorPanel(IFProcessor ifProcessor, AudioProcessor audioProcessor) + { + _ifProcessor = ifProcessor; + _audioProcessor = audioProcessor; + } + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ProcessorPanel() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SDRSharp.DNR.ProcessorPanel", typeof(ProcessorPanel).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.cs b/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.cs new file mode 100644 index 0000000..d379f9e --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.cs @@ -0,0 +1,181 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.DNR +{ + public class ProcessorPanel : UserControl + { + private IContainer components; + + private CheckBox ifEnableCheckBox; + + private GroupBox groupBox1; + + private Label ifThresholdLabel; + + private TrackBar ifThresholdTrackBar; + + private GroupBox groupBox2; + + private Label audioThresholdLabel; + + private TrackBar audioThresholdTrackBar; + + private CheckBox audioEnableCheckBox; + + private INoiseProcessor _aControl; + + private INoiseProcessor _iControl; + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.ifEnableCheckBox = new CheckBox(); + this.groupBox1 = new GroupBox(); + this.ifThresholdLabel = new Label(); + this.ifThresholdTrackBar = new TrackBar(); + this.groupBox2 = new GroupBox(); + this.audioThresholdLabel = new Label(); + this.audioThresholdTrackBar = new TrackBar(); + this.audioEnableCheckBox = new CheckBox(); + this.groupBox1.SuspendLayout(); + ((ISupportInitialize)this.ifThresholdTrackBar).BeginInit(); + this.groupBox2.SuspendLayout(); + ((ISupportInitialize)this.audioThresholdTrackBar).BeginInit(); + base.SuspendLayout(); + this.ifEnableCheckBox.Anchor = AnchorStyles.Top; + this.ifEnableCheckBox.AutoSize = true; + this.ifEnableCheckBox.Location = new Point(6, 19); + this.ifEnableCheckBox.Name = "ifEnableCheckBox"; + this.ifEnableCheckBox.RightToLeft = RightToLeft.Yes; + this.ifEnableCheckBox.Size = new Size(65, 17); + this.ifEnableCheckBox.TabIndex = 4; + this.ifEnableCheckBox.Text = "Enabled"; + this.ifEnableCheckBox.UseVisualStyleBackColor = true; + this.ifEnableCheckBox.CheckedChanged += this.ifEnableCheckBox_CheckedChanged; + this.groupBox1.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.groupBox1.Controls.Add(this.ifThresholdLabel); + this.groupBox1.Controls.Add(this.ifThresholdTrackBar); + this.groupBox1.Controls.Add(this.ifEnableCheckBox); + this.groupBox1.Location = new Point(0, 0); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Size = new Size(204, 100); + this.groupBox1.TabIndex = 7; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "IF"; + this.ifThresholdLabel.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.ifThresholdLabel.Location = new Point(111, 15); + this.ifThresholdLabel.Name = "ifThresholdLabel"; + this.ifThresholdLabel.Size = new Size(87, 23); + this.ifThresholdLabel.TabIndex = 6; + this.ifThresholdLabel.Text = "-5 dB"; + this.ifThresholdLabel.TextAlign = ContentAlignment.MiddleRight; + this.ifThresholdTrackBar.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.ifThresholdTrackBar.Location = new Point(3, 40); + this.ifThresholdTrackBar.Maximum = 20; + this.ifThresholdTrackBar.Minimum = -80; + this.ifThresholdTrackBar.Name = "ifThresholdTrackBar"; + this.ifThresholdTrackBar.Size = new Size(198, 45); + this.ifThresholdTrackBar.TabIndex = 5; + this.ifThresholdTrackBar.TickFrequency = 5; + this.ifThresholdTrackBar.Value = -30; + this.ifThresholdTrackBar.Scroll += this.ifThresholdTrackBar_Scroll; + this.groupBox2.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.groupBox2.Controls.Add(this.audioThresholdLabel); + this.groupBox2.Controls.Add(this.audioThresholdTrackBar); + this.groupBox2.Controls.Add(this.audioEnableCheckBox); + this.groupBox2.Location = new Point(0, 102); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.Size = new Size(204, 100); + this.groupBox2.TabIndex = 8; + this.groupBox2.TabStop = false; + this.groupBox2.Text = "Audio"; + this.audioThresholdLabel.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.audioThresholdLabel.Location = new Point(111, 15); + this.audioThresholdLabel.Name = "audioThresholdLabel"; + this.audioThresholdLabel.Size = new Size(87, 23); + this.audioThresholdLabel.TabIndex = 6; + this.audioThresholdLabel.Text = "-5 dB"; + this.audioThresholdLabel.TextAlign = ContentAlignment.MiddleRight; + this.audioThresholdTrackBar.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.audioThresholdTrackBar.Location = new Point(3, 40); + this.audioThresholdTrackBar.Maximum = -20; + this.audioThresholdTrackBar.Minimum = -120; + this.audioThresholdTrackBar.Name = "audioThresholdTrackBar"; + this.audioThresholdTrackBar.Size = new Size(198, 45); + this.audioThresholdTrackBar.TabIndex = 5; + this.audioThresholdTrackBar.TickFrequency = 5; + this.audioThresholdTrackBar.Value = -70; + this.audioThresholdTrackBar.Scroll += this.audioThresholdTrackBar_Scroll; + this.audioEnableCheckBox.Anchor = AnchorStyles.Top; + this.audioEnableCheckBox.AutoSize = true; + this.audioEnableCheckBox.Location = new Point(6, 19); + this.audioEnableCheckBox.Name = "audioEnableCheckBox"; + this.audioEnableCheckBox.RightToLeft = RightToLeft.Yes; + this.audioEnableCheckBox.Size = new Size(65, 17); + this.audioEnableCheckBox.TabIndex = 4; + this.audioEnableCheckBox.Text = "Enabled"; + this.audioEnableCheckBox.UseVisualStyleBackColor = true; + this.audioEnableCheckBox.CheckedChanged += this.audioEnableCheckbox_CheckedChanged; + this.BackColor = SystemColors.ControlLight; + base.Controls.Add(this.groupBox2); + base.Controls.Add(this.groupBox1); + base.Name = "ProcessorPanel"; + base.Size = new Size(204, 227); + this.groupBox1.ResumeLayout(false); + this.groupBox1.PerformLayout(); + ((ISupportInitialize)this.ifThresholdTrackBar).EndInit(); + this.groupBox2.ResumeLayout(false); + this.groupBox2.PerformLayout(); + ((ISupportInitialize)this.audioThresholdTrackBar).EndInit(); + base.ResumeLayout(false); + } + + public ProcessorPanel(INoiseProcessor iControl, INoiseProcessor aControl) + { + this._iControl = iControl; + this._aControl = aControl; + this.InitializeComponent(); + this.ifThresholdTrackBar.Value = this._iControl.NoiseThreshold; + this.ifEnableCheckBox.Checked = this._iControl.Enabled; + this.audioThresholdTrackBar.Value = this._aControl.NoiseThreshold; + this.audioEnableCheckBox.Checked = this._aControl.Enabled; + this.ifThresholdTrackBar_Scroll(null, null); + this.audioThresholdTrackBar_Scroll(null, null); + } + + private void ifEnableCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._iControl.Enabled = this.ifEnableCheckBox.Checked; + this.ifThresholdTrackBar_Scroll(null, null); + } + + private void audioEnableCheckbox_CheckedChanged(object sender, EventArgs e) + { + this._aControl.Enabled = this.audioEnableCheckBox.Checked; + this.audioThresholdTrackBar_Scroll(null, null); + } + + private void ifThresholdTrackBar_Scroll(object sender, EventArgs e) + { + this.ifThresholdLabel.Text = this.ifThresholdTrackBar.Value + " dB"; + this._iControl.NoiseThreshold = this.ifThresholdTrackBar.Value; + } + + private void audioThresholdTrackBar_Scroll(object sender, EventArgs e) + { + this.audioThresholdLabel.Text = this.audioThresholdTrackBar.Value + " dB"; + this._aControl.NoiseThreshold = this.audioThresholdTrackBar.Value; + } + } +} diff --git a/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.resx b/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/Plugins/SDRSharper.DNR/SDRSharp.DNR/ProcessorPanel.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.Equalizer/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.Equalizer/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..6f21016 --- /dev/null +++ b/Plugins/SDRSharper.Equalizer/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Security.Permissions; + +[assembly: AssemblyCopyright("Copyright © Youssef TOUIL 2012")] +[assembly: AssemblyDescription("IAudioInterceptor Plugin")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SDR#")] +[assembly: AssemblyTitle("AudioInterceptor")] +[assembly: AssemblyTrademark("")] +[assembly: ComVisible(false)] +[assembly: Guid("dfd7918b-ff74-4825-a628-ac37c85d5e9f")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: CompilationRelaxations(8)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer.csproj b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer.csproj new file mode 100644 index 0000000..88dafe1 --- /dev/null +++ b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer.csproj @@ -0,0 +1,58 @@ + + + + {C447AB68-5C45-476E-9120-017AA0741164} + Debug + x86 + Library + SDRSharp.Equalizer + v2.0 + 4 + True + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Common.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Controls.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + UserControl + + + + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.Designer.cs b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.Designer.cs new file mode 100644 index 0000000..67c331a --- /dev/null +++ b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.Designer.cs @@ -0,0 +1,72 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SDRSharp.Equalizer { + using System; + using SDRSharp.Common; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class EqualizerPanel { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + private ISharpControl _control; + private EqualizerProcessor _audioProcessor; + + public EqualizerPanel(ISharpControl control, EqualizerProcessor audioProcessor) + { + _control = control; + _audioProcessor = audioProcessor; + } + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal EqualizerPanel() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SDRSharp.Equalizer.EqualizerPanel", typeof(EqualizerPanel).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.cs b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.cs new file mode 100644 index 0000000..c1f5e13 --- /dev/null +++ b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.cs @@ -0,0 +1,334 @@ +using SDRSharp.Common; +using SDRSharp.Controls; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Equalizer +{ + public class EqualizerPanel : UserControl + { + private IContainer components; + + private Panel panel1; + + private Label label7; + + private Label label6; + + private Label label5; + + private Label label4; + + private gButton bassButton; + + private Label label54; + + private gSliderV tbHighGain; + + private gSliderV tbMedGain; + + private Label label52; + + private gSliderV tbLowGain; + + private gButton enableButton; + + private Label label1; + + private gUpDown numHighCutoff; + + private gUpDown numLowCutoff; + + private ISharpControl _control; + + private EqualizerProcessor _audioProcessor; + + public ToolTip _toolTip; + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.panel1 = new Panel(); + this.label1 = new Label(); + this.label7 = new Label(); + this.label6 = new Label(); + this.label5 = new Label(); + this.label4 = new Label(); + this.label54 = new Label(); + this.label52 = new Label(); + this.numLowCutoff = new gUpDown(); + this.numHighCutoff = new gUpDown(); + this.bassButton = new gButton(); + this.tbHighGain = new gSliderV(); + this.tbMedGain = new gSliderV(); + this.tbLowGain = new gSliderV(); + this.enableButton = new gButton(); + this.panel1.SuspendLayout(); + base.SuspendLayout(); + this.panel1.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.panel1.BackColor = Color.FromArgb(64, 64, 64); + this.panel1.Controls.Add(this.numLowCutoff); + this.panel1.Controls.Add(this.numHighCutoff); + this.panel1.Controls.Add(this.label1); + this.panel1.Controls.Add(this.label7); + this.panel1.Controls.Add(this.label6); + this.panel1.Controls.Add(this.label5); + this.panel1.Controls.Add(this.label4); + this.panel1.Controls.Add(this.bassButton); + this.panel1.Controls.Add(this.label54); + this.panel1.Controls.Add(this.tbHighGain); + this.panel1.Controls.Add(this.tbMedGain); + this.panel1.Controls.Add(this.label52); + this.panel1.Controls.Add(this.tbLowGain); + this.panel1.Controls.Add(this.enableButton); + this.panel1.Location = new Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new Size(198, 134); + this.panel1.TabIndex = 9; + this.label1.AutoSize = true; + this.label1.ForeColor = Color.Orange; + this.label1.Location = new Point(31, 9); + this.label1.Name = "label1"; + this.label1.Size = new Size(21, 13); + this.label1.TabIndex = 118; + this.label1.Text = "On"; + this.label1.TextAlign = ContentAlignment.MiddleCenter; + this.label7.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.label7.AutoSize = true; + this.label7.ForeColor = Color.Orange; + this.label7.Location = new Point(168, 29); + this.label7.Name = "label7"; + this.label7.Size = new Size(29, 13); + this.label7.TabIndex = 117; + this.label7.Text = "High"; + this.label7.TextAlign = ContentAlignment.MiddleCenter; + this.label6.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.label6.AutoSize = true; + this.label6.ForeColor = Color.Orange; + this.label6.Location = new Point(133, 29); + this.label6.Name = "label6"; + this.label6.Size = new Size(28, 13); + this.label6.TabIndex = 116; + this.label6.Text = "Med"; + this.label6.TextAlign = ContentAlignment.MiddleCenter; + this.label5.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.label5.AutoSize = true; + this.label5.ForeColor = Color.Orange; + this.label5.Location = new Point(97, 29); + this.label5.Name = "label5"; + this.label5.Size = new Size(27, 13); + this.label5.TabIndex = 115; + this.label5.Text = "Low"; + this.label5.TextAlign = ContentAlignment.MiddleCenter; + this.label4.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.label4.AutoSize = true; + this.label4.ForeColor = Color.Orange; + this.label4.Location = new Point(125, 9); + this.label4.Name = "label4"; + this.label4.Size = new Size(59, 13); + this.label4.TabIndex = 114; + this.label4.Text = "Bass boost"; + this.label4.TextAlign = ContentAlignment.MiddleCenter; + this.label54.AutoSize = true; + this.label54.ForeColor = Color.Orange; + this.label54.Location = new Point(0, 30); + this.label54.Name = "label54"; + this.label54.Size = new Size(81, 13); + this.label54.TabIndex = 108; + this.label54.Text = "High cutoff (Hz)"; + this.label54.TextAlign = ContentAlignment.MiddleCenter; + this.label52.AutoSize = true; + this.label52.ForeColor = Color.Orange; + this.label52.Location = new Point(0, 78); + this.label52.Name = "label52"; + this.label52.Size = new Size(79, 13); + this.label52.TabIndex = 105; + this.label52.Text = "Low cutoff (Hz)"; + this.label52.TextAlign = ContentAlignment.MiddleCenter; + this.numLowCutoff.ForeColor = Color.Yellow; + this.numLowCutoff.Increment = 20; + this.numLowCutoff.Location = new Point(3, 96); + this.numLowCutoff.Margin = new Padding(5); + this.numLowCutoff.Maximum = 800L; + this.numLowCutoff.Minimum = 50L; + this.numLowCutoff.Name = "numLowCutoff"; + this.numLowCutoff.Size = new Size(79, 20); + this.numLowCutoff.TabIndex = 120; + this.numLowCutoff.ToolTip = null; + this.numLowCutoff.Value = 200L; + this.numLowCutoff.ValueChanged += this.numLowCutOff_ValueChanged; + this.numHighCutoff.ForeColor = Color.Yellow; + this.numHighCutoff.Increment = 200; + this.numHighCutoff.Location = new Point(3, 48); + this.numHighCutoff.Margin = new Padding(5); + this.numHighCutoff.Maximum = 8000L; + this.numHighCutoff.Minimum = 2000L; + this.numHighCutoff.Name = "numHighCutoff"; + this.numHighCutoff.Size = new Size(79, 20); + this.numHighCutoff.TabIndex = 119; + this.numHighCutoff.ToolTip = null; + this.numHighCutoff.Value = 4000L; + this.numHighCutoff.ValueChanged += this.numHighCutOff_ValueChanged; + this.bassButton.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.bassButton.Arrow = 0; + this.bassButton.Checked = false; + this.bassButton.Edge = 0.15f; + this.bassButton.EndColor = Color.White; + this.bassButton.EndFactor = 0.2f; + this.bassButton.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.bassButton.ForeColor = Color.Orange; + this.bassButton.Location = new Point(97, 6); + this.bassButton.Name = "bassButton"; + this.bassButton.NoBorder = false; + this.bassButton.NoLed = false; + this.bassButton.RadioButton = false; + this.bassButton.Radius = 6; + this.bassButton.RadiusB = 0; + this.bassButton.Size = new Size(26, 20); + this.bassButton.StartColor = Color.Black; + this.bassButton.StartFactor = 0.35f; + this.bassButton.TabIndex = 113; + this.bassButton.CheckedChanged += this.bassButton_CheckedChanged; + this.tbHighGain.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.tbHighGain.Button = false; + this.tbHighGain.Checked = false; + this.tbHighGain.ColorFactor = 0.55f; + this.tbHighGain.ForeColor = Color.Black; + this.tbHighGain.Location = new Point(173, 44); + this.tbHighGain.Margin = new Padding(4); + this.tbHighGain.Maximum = 30; + this.tbHighGain.Minimum = 1; + this.tbHighGain.Name = "tbHighGain"; + this.tbHighGain.Size = new Size(17, 84); + this.tbHighGain.TabIndex = 107; + this.tbHighGain.Tag = "1"; + this.tbHighGain.TickColor = Color.Silver; + this.tbHighGain.Ticks = 5; + this.tbHighGain.ToolTip = null; + this.tbHighGain.Value = 10; + this.tbHighGain.ValueChanged += this.tbHighGain_ValueChanged; + this.tbMedGain.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.tbMedGain.Button = false; + this.tbMedGain.Checked = false; + this.tbMedGain.ColorFactor = 0.6f; + this.tbMedGain.ForeColor = Color.Black; + this.tbMedGain.Location = new Point(137, 44); + this.tbMedGain.Margin = new Padding(4); + this.tbMedGain.Maximum = 30; + this.tbMedGain.Minimum = 1; + this.tbMedGain.Name = "tbMedGain"; + this.tbMedGain.Size = new Size(17, 84); + this.tbMedGain.TabIndex = 106; + this.tbMedGain.Tag = "1"; + this.tbMedGain.TickColor = Color.Silver; + this.tbMedGain.Ticks = 5; + this.tbMedGain.ToolTip = null; + this.tbMedGain.Value = 10; + this.tbMedGain.ValueChanged += this.tbMedGain_ValueChanged; + this.tbLowGain.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.tbLowGain.Button = false; + this.tbLowGain.Checked = false; + this.tbLowGain.ColorFactor = 0.6f; + this.tbLowGain.ForeColor = Color.Black; + this.tbLowGain.Location = new Point(101, 44); + this.tbLowGain.Margin = new Padding(4); + this.tbLowGain.Maximum = 30; + this.tbLowGain.Minimum = 1; + this.tbLowGain.Name = "tbLowGain"; + this.tbLowGain.Size = new Size(17, 84); + this.tbLowGain.TabIndex = 104; + this.tbLowGain.Tag = "1"; + this.tbLowGain.TickColor = Color.Silver; + this.tbLowGain.Ticks = 5; + this.tbLowGain.ToolTip = null; + this.tbLowGain.Value = 10; + this.tbLowGain.ValueChanged += this.tbLowGain_ValueChanged; + this.enableButton.Arrow = 0; + this.enableButton.Checked = false; + this.enableButton.Edge = 0.15f; + this.enableButton.EndColor = Color.White; + this.enableButton.EndFactor = 0.2f; + this.enableButton.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.enableButton.ForeColor = Color.Orange; + this.enableButton.Location = new Point(2, 6); + this.enableButton.Name = "enableButton"; + this.enableButton.NoBorder = false; + this.enableButton.NoLed = false; + this.enableButton.RadioButton = false; + this.enableButton.Radius = 6; + this.enableButton.RadiusB = 0; + this.enableButton.Size = new Size(26, 20); + this.enableButton.StartColor = Color.Black; + this.enableButton.StartFactor = 0.35f; + this.enableButton.TabIndex = 17; + this.enableButton.CheckedChanged += this.enableButton_CheckedChanged; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.panel1); + base.Name = "EqualizerPanel"; + base.Size = new Size(198, 154); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + base.ResumeLayout(false); + } + + public EqualizerPanel(ISharpControl control, EqualizerProcessor audioProcessor) + { + this.InitializeComponent(); + this._control = control; + this._audioProcessor = audioProcessor; + this.tbHighGain.Value = (int)(this._audioProcessor.HighGain * 8f); + this.tbMedGain.Value = (int)(this._audioProcessor.MidGain * 8f); + this.tbLowGain.Value = (int)(this._audioProcessor.LowGain * 8f); + this.numHighCutoff.Value = (int)this._audioProcessor.HighCutoff; + this.numLowCutoff.Value = (int)this._audioProcessor.LowCutoff; + this.enableButton.Checked = this._audioProcessor.Enabled; + this.bassButton.Checked = this._audioProcessor.BassBoost; + } + + private void enableButton_CheckedChanged(object sender, EventArgs e) + { + this._audioProcessor.Enabled = this.enableButton.Checked; + } + + private void bassButton_CheckedChanged(object sender, EventArgs e) + { + this._audioProcessor.BassBoost = this.bassButton.Checked; + } + + private void numHighCutOff_ValueChanged(object sender, EventArgs e) + { + this._audioProcessor.HighCutoff = (float)this.numHighCutoff.Value; + } + + private void numLowCutOff_ValueChanged(object sender, EventArgs e) + { + this._audioProcessor.LowCutoff = (float)this.numLowCutoff.Value; + } + + private void tbLowGain_ValueChanged(object sender, EventArgs e) + { + this._audioProcessor.LowGain = (float)this.tbLowGain.Value / 8f; + } + + private void tbMedGain_ValueChanged(object sender, EventArgs e) + { + this._audioProcessor.MidGain = (float)this.tbMedGain.Value / 8f; + } + + private void tbHighGain_ValueChanged(object sender, EventArgs e) + { + this._audioProcessor.HighGain = (float)this.tbHighGain.Value / 8f; + } + } +} diff --git a/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.resx b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPanel.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPlugin.cs b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPlugin.cs new file mode 100644 index 0000000..f7284c5 --- /dev/null +++ b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerPlugin.cs @@ -0,0 +1,60 @@ +using SDRSharp.Common; +using SDRSharp.Radio; +using System.ComponentModel; +using System.Windows.Forms; + +namespace SDRSharp.Equalizer +{ + public class EqualizerPlugin : ISharpPlugin + { + private const string _displayName = "Audio Equalizer"; + + private ISharpControl _control; + + private EqualizerProcessor _audioProcessor; + + private EqualizerPanel _guiControl; + + public string DisplayName => "Audio Equalizer"; + + public bool HasGui => true; + + public UserControl GuiControl => this._guiControl; + + public void Initialize(ISharpControl control) + { + this._control = control; + this._control.PropertyChanged += this.PropertyChangedHandler; + this._audioProcessor = new EqualizerProcessor(); + this._audioProcessor.Enabled = Utils.GetBooleanSetting("EqEnabled"); + this._audioProcessor.BassBoost = Utils.GetBooleanSetting("EqBassBoost"); + this._audioProcessor.LowCutoff = (float)Utils.GetIntSetting("EqLowCutoff", 200); + this._audioProcessor.HighCutoff = (float)Utils.GetIntSetting("EqHighCutoff", 4000); + this._audioProcessor.LowGain = (float)Utils.GetDoubleSetting("EqLowGain", 2.25); + this._audioProcessor.MidGain = (float)Utils.GetDoubleSetting("EqMidGain", 1.125); + this._audioProcessor.HighGain = (float)Utils.GetDoubleSetting("EqHighGain", 2.25); + this._control.RegisterStreamHook(this._audioProcessor, ProcessorType.FilteredAudioOutput); + this._guiControl = new EqualizerPanel(this._control, this._audioProcessor); + } + + private void PropertyChangedHandler(object sender, PropertyChangedEventArgs e) + { + string propertyName; + if ((propertyName = e.PropertyName) != null && !(propertyName == "StartRadio")) + { + bool flag = propertyName == "StopRadio"; + } + } + + public void Close() + { + Utils.SaveSetting("EqEnabled", this._audioProcessor.Enabled); + Utils.SaveSetting("EqBassBoost", this._audioProcessor.BassBoost); + Utils.SaveSetting("EqLowCutoff", this._audioProcessor.LowCutoff); + Utils.SaveSetting("EqHighCutoff", this._audioProcessor.HighCutoff); + Utils.SaveSetting("EqLowGain", this._audioProcessor.LowGain); + Utils.SaveSetting("EqMidGain", this._audioProcessor.MidGain); + Utils.SaveSetting("EqHighGain", this._audioProcessor.HighGain); + } + } +} diff --git a/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerProcessor.cs b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerProcessor.cs new file mode 100644 index 0000000..ed44926 --- /dev/null +++ b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/EqualizerProcessor.cs @@ -0,0 +1,122 @@ +using SDRSharp.Radio; + +namespace SDRSharp.Equalizer +{ + public class EqualizerProcessor : IRealProcessor, IBaseProcessor + { + private bool _bypass; + + private SimpleEq _eq1 = new SimpleEq(); + + private SimpleEq _eq2 = new SimpleEq(); + + public double SampleRate + { + get + { + return this._eq1.SampleRate; + } + set + { + this._eq1.SampleRate = value; + this._eq2.SampleRate = value; + } + } + + public bool Enabled + { + get + { + return !this._bypass; + } + set + { + this._bypass = !value; + } + } + + public float LowGain + { + get + { + return this._eq1.LowGain; + } + set + { + this._eq1.LowGain = value; + this._eq2.LowGain = value; + } + } + + public float MidGain + { + get + { + return this._eq1.MidGain; + } + set + { + this._eq1.MidGain = value; + this._eq2.MidGain = value; + } + } + + public float HighGain + { + get + { + return this._eq1.HighGain; + } + set + { + this._eq1.HighGain = value; + this._eq2.HighGain = value; + } + } + + public bool BassBoost + { + get + { + return this._eq1.BassBoost; + } + set + { + this._eq1.BassBoost = value; + this._eq2.BassBoost = value; + } + } + + public float LowCutoff + { + get + { + return this._eq1.LowCutoff; + } + set + { + this._eq1.LowCutoff = value; + this._eq2.LowCutoff = value; + } + } + + public float HighCutoff + { + get + { + return this._eq1.HighCutoff; + } + set + { + this._eq1.HighCutoff = value; + this._eq2.HighCutoff = value; + } + } + + public unsafe void Process(float* audio, int length) + { + this._eq1.ProcessInterleaved(audio, length); + this._eq2.ProcessInterleaved(audio + 1, length); + } + } +} diff --git a/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/SimpleEq.cs b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/SimpleEq.cs new file mode 100644 index 0000000..6c189d2 --- /dev/null +++ b/Plugins/SDRSharper.Equalizer/SDRSharp.Equalizer/SimpleEq.cs @@ -0,0 +1,168 @@ +using SDRSharp.Radio; + +namespace SDRSharp.Equalizer +{ + public class SimpleEq + { + private const int BassFilterCutoff = 150; + + private float _lowGain = 1f; + + private float _midGain = 1f; + + private float _highGain = 1f; + + private float _lowCutoff = 400f; + + private float _highCutoff = 5000f; + + private double _sampleRate = 48000.0; + + private bool _bassBoost; + + private IirFilter _lowFilter; + + private IirFilter _highFilter; + + private IirFilter _bassFilter; + + public float LowGain + { + get + { + return this._lowGain; + } + set + { + this._lowGain = value; + } + } + + public float HighGain + { + get + { + return this._highGain; + } + set + { + this._highGain = value; + } + } + + public float MidGain + { + get + { + return this._midGain; + } + set + { + this._midGain = value; + } + } + + public bool BassBoost + { + get + { + return this._bassBoost; + } + set + { + this._bassBoost = value; + } + } + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + this.initLow(); + this.initHigh(); + this.initBass(); + } + } + + public float LowCutoff + { + get + { + return this._lowCutoff; + } + set + { + this._lowCutoff = value; + this.initLow(); + } + } + + public float HighCutoff + { + get + { + return this._highCutoff; + } + set + { + this._highCutoff = value; + this.initHigh(); + } + } + + public SimpleEq() + { + this._lowFilter = default(IirFilter); + this._highFilter = default(IirFilter); + this._bassFilter = default(IirFilter); + this.initLow(); + this.initHigh(); + this.initBass(); + } + + private void initBass() + { + this._bassFilter.Init(IirFilterType.LowPass, 150.0, this._sampleRate, 4); + } + + private void initLow() + { + this._lowFilter.Init(IirFilterType.LowPass, (double)this._lowCutoff, this._sampleRate, 1); + } + + private void initHigh() + { + this._highFilter.Init(IirFilterType.HighPass, (double)this._highCutoff, this._sampleRate, 1); + } + + public unsafe void ProcessInterleaved(float* buffer, int length) + { + float num = 0f; + for (int i = 0; i < length; i += 2) + { + float num2 = this._lowFilter.Process(buffer[i]); + float num3 = this._highFilter.Process(buffer[i]); + float num4 = buffer[i] - (num2 + num3); + if (this._bassBoost) + { + num = this._bassFilter.Process(buffer[i]); + } + num2 *= this._lowGain; + num4 *= this._midGain; + num3 *= this._highGain; + buffer[i] = num2 + num4 + num3; + if (this._bassBoost) + { + num *= 0.8f; + buffer[i] += num; + } + buffer[i] *= 0.5f; + } + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.FrequencyManager/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..1571ad0 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/Properties/AssemblyInfo.cs @@ -0,0 +1,18 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyDescription("")] +[assembly: CompilationRelaxations(8)] +[assembly: AssemblyTitle("Frequency Manager for SDR#")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SDR#")] +[assembly: AssemblyCopyright("Copyright © Tony BenBrahim 2012")] +[assembly: AssemblyTrademark("")] +[assembly: ComVisible(true)] +[assembly: Guid("a80d3b15-c0c9-4d61-8bd6-b87954dce39d")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: AssemblyVersion("0.0.0.0")] diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.Properties/Resources.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.Properties/Resources.cs new file mode 100644 index 0000000..4dc34ff --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.Properties/Resources.cs @@ -0,0 +1,49 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Globalization; +using System.Resources; +using System.Runtime.CompilerServices; + +namespace SDRSharp.FrequencyManager.Properties +{ + [DebuggerNonUserCode] + [CompilerGenerated] + [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + internal class Resources + { + private static ResourceManager resourceMan; + + private static CultureInfo resourceCulture; + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static ResourceManager ResourceManager + { + get + { + if (object.ReferenceEquals(Resources.resourceMan, null)) + { + ResourceManager resourceManager = Resources.resourceMan = new ResourceManager("SDRSharp.FrequencyManager.Properties.Resources", typeof(Resources).Assembly); + } + return Resources.resourceMan; + } + } + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static CultureInfo Culture + { + get + { + return Resources.resourceCulture; + } + set + { + Resources.resourceCulture = value; + } + } + + internal Resources() + { + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.csproj b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.csproj new file mode 100644 index 0000000..1e40b8e --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.csproj @@ -0,0 +1,124 @@ + + + + {93599733-9D4A-49EB-B852-65515FB1A8AB} + Debug + x86 + Library + SDRSharp.FrequencyManager + v4.7 + 4 + True + + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + TRACE;DEBUG + false + + + true + bin\Debug\ + TRACE;DEBUG + true + full + AnyCPU + MinimumRecommendedRules.ruleset + false + + + true + bin\Release\ + true + true + pdbonly + AnyCPU + MinimumRecommendedRules.ruleset + false + + + true + bin\x64\Debug\ + TRACE;DEBUG + true + full + x64 + MinimumRecommendedRules.ruleset + false + + + true + bin\x64\Release\ + true + true + pdbonly + x64 + MinimumRecommendedRules.ruleset + false + + + false + + + + ..\..\SDRSharper\bin\x64\Debug\SDRSharp.Common.dll + + + ..\..\SDRSharper\bin\x64\Debug\SDRSharp.Radio.dll + + + ..\..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Windows.Forms.dll + + + ..\..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.dll + + + ..\..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Xml.dll + + + ..\..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Drawing.dll + + + + + + + Form + + + UserControl + + + + + + + + + + + + + + DialogEntryInfo.cs + + + FrequencyManagerPanel.cs + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.sln b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.sln new file mode 100644 index 0000000..d189b13 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager.sln @@ -0,0 +1,37 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27428.2015 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDRSharp.FrequencyManager", "SDRSharp.FrequencyManager.csproj", "{93599733-9D4A-49EB-B852-65515FB1A8AB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Debug|x64.ActiveCfg = Debug|x64 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Debug|x64.Build.0 = Debug|x64 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Debug|x86.ActiveCfg = Debug|x86 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Debug|x86.Build.0 = Debug|x86 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Release|Any CPU.ActiveCfg = Release|x86 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Release|Any CPU.Build.0 = Release|x86 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Release|x64.ActiveCfg = Release|x86 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Release|x64.Build.0 = Release|x86 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Release|x86.ActiveCfg = Release|x86 + {93599733-9D4A-49EB-B852-65515FB1A8AB}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {97731D80-BEC3-4DC6-888B-4893D3B0F22A} + EndGlobalSection +EndGlobal diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/DialogEntryInfo.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/DialogEntryInfo.cs new file mode 100644 index 0000000..d0ed3a7 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/DialogEntryInfo.cs @@ -0,0 +1,327 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.FrequencyManager +{ + public class DialogEntryInfo : Form + { + private MemoryEntry _memoryEntry; + + private IContainer components; + + private Label label1; + + private Label label2; + + private Label label3; + + private Label label4; + + private Label label5; + + private Label lblMode; + + private ComboBox comboGroupName; + + private TextBox textBoxName; + + private NumericUpDown frequencyNumericUpDown; + + private Button btnOk; + + private Button btnCancel; + + private NumericUpDown shiftNumericUpDown; + + private Label label6; + + private NumericUpDown nudFilterBandwidth; + + private Label label7; + + private CheckBox favouriteCb; + + public DialogEntryInfo() + { + this.InitializeComponent(); + this.ValidateForm(); + } + + public DialogEntryInfo(MemoryEntry memoryEntry, List groups) + { + this._memoryEntry = memoryEntry; + this.InitializeComponent(); + this.textBoxName.Text = memoryEntry.Name; + this.comboGroupName.Text = memoryEntry.GroupName; + this.frequencyNumericUpDown.Value = memoryEntry.Frequency; + this.shiftNumericUpDown.Value = memoryEntry.Shift; + this.lblMode.Text = memoryEntry.DetectorType.ToString(); + this.comboGroupName.Items.AddRange(groups.ToArray()); + this.nudFilterBandwidth.Value = memoryEntry.FilterBandwidth; + this.favouriteCb.Checked = memoryEntry.IsFavourite; + this.ValidateForm(); + } + + private void Control_TextChanged(object sender, EventArgs e) + { + this.ValidateForm(); + } + + private void ValidateForm() + { + bool enabled = this.textBoxName.Text != null && !"".Equals(this.textBoxName.Text.Trim()) && this.comboGroupName.Text != null && !"".Equals(this.comboGroupName.Text.Trim()) && this.frequencyNumericUpDown.Value != 0m && this.nudFilterBandwidth.Value != 0m; + this.btnOk.Enabled = enabled; + } + + private void btnOk_Click(object sender, EventArgs e) + { + this._memoryEntry.Name = this.textBoxName.Text.Trim(); + this._memoryEntry.GroupName = this.comboGroupName.Text.Trim(); + this._memoryEntry.Frequency = (long)this.frequencyNumericUpDown.Value; + this._memoryEntry.Shift = (long)this.shiftNumericUpDown.Value; + this._memoryEntry.FilterBandwidth = (long)this.nudFilterBandwidth.Value; + this._memoryEntry.IsFavourite = this.favouriteCb.Checked; + base.DialogResult = DialogResult.OK; + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.label1 = new Label(); + this.label2 = new Label(); + this.label3 = new Label(); + this.label4 = new Label(); + this.label5 = new Label(); + this.lblMode = new Label(); + this.comboGroupName = new ComboBox(); + this.textBoxName = new TextBox(); + this.frequencyNumericUpDown = new NumericUpDown(); + this.btnOk = new Button(); + this.btnCancel = new Button(); + this.shiftNumericUpDown = new NumericUpDown(); + this.label6 = new Label(); + this.nudFilterBandwidth = new NumericUpDown(); + this.label7 = new Label(); + this.favouriteCb = new CheckBox(); + ((ISupportInitialize)this.frequencyNumericUpDown).BeginInit(); + ((ISupportInitialize)this.shiftNumericUpDown).BeginInit(); + ((ISupportInitialize)this.nudFilterBandwidth).BeginInit(); + base.SuspendLayout(); + this.label1.AutoSize = true; + this.label1.Location = new Point(10, 11); + this.label1.Margin = new Padding(2, 0, 2, 0); + this.label1.Name = "label1"; + this.label1.Size = new Size(250, 13); + this.label1.TabIndex = 0; + this.label1.Text = "Select an existing group or enter a new group name"; + this.label2.AutoSize = true; + this.label2.Location = new Point(10, 37); + this.label2.Margin = new Padding(2, 0, 2, 0); + this.label2.Name = "label2"; + this.label2.Size = new Size(39, 13); + this.label2.TabIndex = 1; + this.label2.Text = "Group:"; + this.label3.AutoSize = true; + this.label3.Location = new Point(10, 67); + this.label3.Margin = new Padding(2, 0, 2, 0); + this.label3.Name = "label3"; + this.label3.Size = new Size(38, 13); + this.label3.TabIndex = 2; + this.label3.Text = "Name:"; + this.label4.AutoSize = true; + this.label4.Location = new Point(10, 98); + this.label4.Margin = new Padding(2, 0, 2, 0); + this.label4.Name = "label4"; + this.label4.Size = new Size(60, 13); + this.label4.TabIndex = 3; + this.label4.Text = "Frequency:"; + this.label5.AutoSize = true; + this.label5.Location = new Point(11, 187); + this.label5.Margin = new Padding(2, 0, 2, 0); + this.label5.Name = "label5"; + this.label5.Size = new Size(37, 13); + this.label5.TabIndex = 4; + this.label5.Text = "Mode:"; + this.lblMode.Location = new Point(89, 187); + this.lblMode.Margin = new Padding(2, 0, 2, 0); + this.lblMode.Name = "lblMode"; + this.lblMode.Size = new Size(120, 17); + this.lblMode.TabIndex = 5; + this.comboGroupName.FormattingEnabled = true; + this.comboGroupName.Location = new Point(85, 34); + this.comboGroupName.Margin = new Padding(2); + this.comboGroupName.Name = "comboGroupName"; + this.comboGroupName.Size = new Size(178, 21); + this.comboGroupName.TabIndex = 0; + this.comboGroupName.TextChanged += this.Control_TextChanged; + this.textBoxName.Location = new Point(85, 64); + this.textBoxName.Margin = new Padding(2); + this.textBoxName.Name = "textBoxName"; + this.textBoxName.Size = new Size(178, 20); + this.textBoxName.TabIndex = 1; + this.textBoxName.TextChanged += this.Control_TextChanged; + this.frequencyNumericUpDown.Increment = new decimal(new int[4] + { + 10, + 0, + 0, + 0 + }); + this.frequencyNumericUpDown.Location = new Point(85, 96); + this.frequencyNumericUpDown.Margin = new Padding(2); + this.frequencyNumericUpDown.Maximum = new decimal(new int[4] + { + -727379969, + 232, + 0, + 0 + }); + this.frequencyNumericUpDown.Minimum = new decimal(new int[4] + { + -727379969, + 232, + 0, + -2147483648 + }); + this.frequencyNumericUpDown.Name = "frequencyNumericUpDown"; + this.frequencyNumericUpDown.Size = new Size(124, 20); + this.frequencyNumericUpDown.TabIndex = 2; + this.frequencyNumericUpDown.TextAlign = HorizontalAlignment.Right; + this.frequencyNumericUpDown.ThousandsSeparator = true; + this.frequencyNumericUpDown.ValueChanged += this.Control_TextChanged; + this.btnOk.DialogResult = DialogResult.OK; + this.btnOk.Enabled = false; + this.btnOk.Location = new Point(149, 245); + this.btnOk.Margin = new Padding(2); + this.btnOk.Name = "btnOk"; + this.btnOk.Size = new Size(56, 23); + this.btnOk.TabIndex = 5; + this.btnOk.Text = "O&K"; + this.btnOk.UseVisualStyleBackColor = true; + this.btnOk.Click += this.btnOk_Click; + this.btnCancel.DialogResult = DialogResult.Cancel; + this.btnCancel.Location = new Point(209, 245); + this.btnCancel.Margin = new Padding(2); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Size = new Size(56, 23); + this.btnCancel.TabIndex = 6; + this.btnCancel.Text = "&Cancel"; + this.btnCancel.UseVisualStyleBackColor = true; + this.shiftNumericUpDown.Increment = new decimal(new int[4] + { + 10, + 0, + 0, + 0 + }); + this.shiftNumericUpDown.Location = new Point(85, 126); + this.shiftNumericUpDown.Margin = new Padding(2); + this.shiftNumericUpDown.Maximum = new decimal(new int[4] + { + -727379969, + 232, + 0, + 0 + }); + this.shiftNumericUpDown.Minimum = new decimal(new int[4] + { + -727379969, + 232, + 0, + -2147483648 + }); + this.shiftNumericUpDown.Name = "shiftNumericUpDown"; + this.shiftNumericUpDown.Size = new Size(124, 20); + this.shiftNumericUpDown.TabIndex = 3; + this.shiftNumericUpDown.TextAlign = HorizontalAlignment.Right; + this.shiftNumericUpDown.ThousandsSeparator = true; + this.label6.AutoSize = true; + this.label6.Location = new Point(10, 129); + this.label6.Margin = new Padding(2, 0, 2, 0); + this.label6.Name = "label6"; + this.label6.Size = new Size(31, 13); + this.label6.TabIndex = 12; + this.label6.Text = "Shift:"; + this.nudFilterBandwidth.Increment = new decimal(new int[4] + { + 10, + 0, + 0, + 0 + }); + this.nudFilterBandwidth.Location = new Point(85, 156); + this.nudFilterBandwidth.Margin = new Padding(2); + this.nudFilterBandwidth.Maximum = new decimal(new int[4] + { + 1410065407, + 2, + 0, + 0 + }); + this.nudFilterBandwidth.Name = "nudFilterBandwidth"; + this.nudFilterBandwidth.Size = new Size(124, 20); + this.nudFilterBandwidth.TabIndex = 4; + this.nudFilterBandwidth.TextAlign = HorizontalAlignment.Right; + this.nudFilterBandwidth.ThousandsSeparator = true; + this.label7.AutoSize = true; + this.label7.Location = new Point(10, 160); + this.label7.Margin = new Padding(2, 0, 2, 0); + this.label7.Name = "label7"; + this.label7.Size = new Size(53, 13); + this.label7.TabIndex = 14; + this.label7.Text = "Filter BW:"; + this.favouriteCb.AutoSize = true; + this.favouriteCb.Location = new Point(85, 207); + this.favouriteCb.Name = "favouriteCb"; + this.favouriteCb.Size = new Size(70, 17); + this.favouriteCb.TabIndex = 16; + this.favouriteCb.Text = "Favourite"; + this.favouriteCb.UseVisualStyleBackColor = true; + base.AcceptButton = this.btnOk; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.CancelButton = this.btnCancel; + base.ClientSize = new Size(276, 279); + base.Controls.Add(this.favouriteCb); + base.Controls.Add(this.nudFilterBandwidth); + base.Controls.Add(this.label7); + base.Controls.Add(this.shiftNumericUpDown); + base.Controls.Add(this.label6); + base.Controls.Add(this.btnCancel); + base.Controls.Add(this.btnOk); + base.Controls.Add(this.frequencyNumericUpDown); + base.Controls.Add(this.textBoxName); + base.Controls.Add(this.comboGroupName); + base.Controls.Add(this.lblMode); + base.Controls.Add(this.label5); + base.Controls.Add(this.label4); + base.Controls.Add(this.label3); + base.Controls.Add(this.label2); + base.Controls.Add(this.label1); + base.FormBorderStyle = FormBorderStyle.FixedDialog; + base.Margin = new Padding(2); + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "DialogEntryInfo"; + base.SizeGripStyle = SizeGripStyle.Hide; + base.StartPosition = FormStartPosition.CenterScreen; + this.Text = "Edit Entry Information"; + ((ISupportInitialize)this.frequencyNumericUpDown).EndInit(); + ((ISupportInitialize)this.shiftNumericUpDown).EndInit(); + ((ISupportInitialize)this.nudFilterBandwidth).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/DialogEntryInfo.resx b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/DialogEntryInfo.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/DialogEntryInfo.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.cs new file mode 100644 index 0000000..e393fd1 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.cs @@ -0,0 +1,452 @@ +using SDRSharp.Common; +using SDRSharp.Radio; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.FrequencyManager +{ + [Category("SDRSharp")] + [DesignTimeVisible(true)] + [Description("RF Memory Management Panel")] + public class FrequencyManagerPanel : UserControl + { + private const string AllGroups = "[All Groups]"; + + private const string FavouriteGroup = "[Favourites]"; + + private readonly SortableBindingList _displayedEntries = new SortableBindingList(); + + private readonly List _entries; + + private readonly SettingsPersister _settingsPersister; + + private readonly List _groups = new List(); + + private ISharpControl _controlInterface; + + private IContainer components; + + private ToolStrip mainToolStrip; + + private ToolStripButton btnNewEntry; + + private ToolStripButton btnEdit; + + private ToolStripButton btnDelete; + + private Label label17; + + private DataGridView frequencyDataGridView; + + private ComboBox comboGroups; + + private BindingSource memoryEntryBindingSource; + + private DataGridViewTextBoxColumn nameDataGridViewTextBoxColumn; + + private DataGridViewTextBoxColumn frequencyDataGridViewTextBoxColumn; + + public string SelectedGroup + { + get + { + return (string)this.comboGroups.SelectedItem; + } + set + { + if (value != null && this.comboGroups.Items.IndexOf(value) != -1) + { + this.comboGroups.SelectedIndex = this.comboGroups.Items.IndexOf(value); + } + } + } + + public FrequencyManagerPanel(ISharpControl control) + { + this.InitializeComponent(); + this._controlInterface = control; + if (LicenseManager.UsageMode == LicenseUsageMode.Runtime) + { + this._settingsPersister = new SettingsPersister(); + this._entries = this._settingsPersister.ReadStoredFrequencies(); + this._groups = this.GetGroupsFromEntries(); + this.ProcessGroups(null); + } + this.memoryEntryBindingSource.DataSource = this._displayedEntries; + } + + private void btnNewEntry_Click(object sender, EventArgs e) + { + this.Bookmark(); + } + + private void btnEdit_Click(object sender, EventArgs e) + { + if (this.memoryEntryBindingSource.Current != null) + { + this.DoEdit((MemoryEntry)this.memoryEntryBindingSource.Current, false); + } + } + + private void btnDelete_Click(object sender, EventArgs e) + { + MemoryEntry memoryEntry = (MemoryEntry)this.memoryEntryBindingSource.Current; + if (memoryEntry != null && MessageBox.Show("Are you sure that you want to delete '" + memoryEntry.Name + "'?", "Delete Entry", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + { + this._entries.Remove(memoryEntry); + this._settingsPersister.PersistStoredFrequencies(this._entries); + this._displayedEntries.Remove(memoryEntry); + } + } + + private void DoEdit(MemoryEntry memoryEntry, bool isNew) + { + DialogEntryInfo dialogEntryInfo = new DialogEntryInfo(memoryEntry, this._groups); + if (dialogEntryInfo.ShowDialog() == DialogResult.OK) + { + if (isNew) + { + this._entries.Add(memoryEntry); + this._entries.Sort((MemoryEntry e1, MemoryEntry e2) => e1.Frequency.CompareTo(e2.Frequency)); + } + this._settingsPersister.PersistStoredFrequencies(this._entries); + if (!this._groups.Contains(memoryEntry.GroupName)) + { + this._groups.Add(memoryEntry.GroupName); + this.ProcessGroups(memoryEntry.GroupName); + } + else if ((string)this.comboGroups.SelectedItem == "[All Groups]" || (string)this.comboGroups.SelectedItem == memoryEntry.GroupName || ((string)this.comboGroups.SelectedItem == "[Favourites]" && memoryEntry.IsFavourite)) + { + if (isNew) + { + this._displayedEntries.Add(memoryEntry); + } + } + else + { + this.comboGroups.SelectedItem = memoryEntry.GroupName; + } + } + } + + private List GetGroupsFromEntries() + { + List list = new List(); + foreach (MemoryEntry entry in this._entries) + { + if (!list.Contains(entry.GroupName)) + { + list.Add(entry.GroupName); + } + } + return list; + } + + private void frequencyDataGridView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) + { + if (this.frequencyDataGridView.Columns[e.ColumnIndex].DataPropertyName == "Frequency" && e.Value != null) + { + long frequency = (long)e.Value; + e.Value = FrequencyManagerPanel.GetFrequencyDisplay(frequency); + e.FormattingApplied = true; + } + } + + private void frequencyDataGridView_CellDoubleClick(object sender, DataGridViewCellEventArgs e) + { + this.Navigate(); + } + + private void ProcessGroups(string selectedGroupName) + { + this._groups.Sort(); + this.comboGroups.Items.Clear(); + this.comboGroups.Items.Add("[All Groups]"); + this.comboGroups.Items.Add("[Favourites]"); + this.comboGroups.Items.AddRange(this._groups.ToArray()); + if (selectedGroupName != null) + { + this.comboGroups.SelectedItem = selectedGroupName; + } + else + { + this.comboGroups.SelectedIndex = 0; + } + } + + private void comboGroups_SelectedIndexChanged(object sender, EventArgs e) + { + this.memoryEntryBindingSource.Clear(); + this._displayedEntries.Clear(); + if (this.comboGroups.SelectedIndex != -1) + { + string text = (string)this.comboGroups.SelectedItem; + foreach (MemoryEntry entry in this._entries) + { + if (text == "[All Groups]" || entry.GroupName == text || (text == "[Favourites]" && entry.IsFavourite)) + { + this._displayedEntries.Add(entry); + } + } + } + } + + private void frequencyDataGridView_SelectionChanged(object sender, EventArgs e) + { + this.btnDelete.Enabled = (this.frequencyDataGridView.SelectedRows.Count > 0); + this.btnEdit.Enabled = (this.frequencyDataGridView.SelectedRows.Count > 0); + } + + public void Bookmark() + { + if (this._controlInterface.IsPlaying) + { + MemoryEntry memoryEntry = new MemoryEntry(); + memoryEntry.DetectorType = this._controlInterface.DetectorType; + memoryEntry.CenterFrequency = this._controlInterface.CenterFrequency; + memoryEntry.Frequency = this._controlInterface.Frequency; + memoryEntry.FilterBandwidth = this._controlInterface.FilterBandwidth; + memoryEntry.Shift = (this._controlInterface.FrequencyShiftEnabled ? this._controlInterface.FrequencyShift : 0); + memoryEntry.GroupName = "Misc"; + if (this._controlInterface.DetectorType == DetectorType.WFM) + { + string text = this._controlInterface.RdsProgramService.Trim(); + memoryEntry.Name = string.Empty; + if (!string.IsNullOrEmpty(text)) + { + memoryEntry.Name = text; + } + else + { + memoryEntry.Name = FrequencyManagerPanel.GetFrequencyDisplay(this._controlInterface.Frequency) + " " + memoryEntry.DetectorType; + } + } + else + { + memoryEntry.Name = FrequencyManagerPanel.GetFrequencyDisplay(this._controlInterface.Frequency) + " " + memoryEntry.DetectorType; + } + memoryEntry.IsFavourite = true; + this.DoEdit(memoryEntry, true); + } + } + + public void Navigate() + { + if (this._controlInterface.IsPlaying) + { + int num = (this.frequencyDataGridView.SelectedCells.Count > 0) ? this.frequencyDataGridView.SelectedCells[0].RowIndex : (-1); + if (num != -1) + { + try + { + MemoryEntry memoryEntry = (MemoryEntry)this.memoryEntryBindingSource.List[num]; + this._controlInterface.FrequencyShift = memoryEntry.Shift; + this._controlInterface.FrequencyShiftEnabled = (memoryEntry.Shift != 0); + if (Math.Abs(memoryEntry.Frequency - memoryEntry.CenterFrequency - this._controlInterface.FrequencyShift) < this._controlInterface.RFBandwidth / 2) + { + this._controlInterface.CenterFrequency = memoryEntry.CenterFrequency; + this._controlInterface.Frequency = memoryEntry.Frequency; + } + else + { + long num2 = memoryEntry.Frequency - memoryEntry.Shift + this._controlInterface.FilterBandwidth / 2 + 5000; + if (Math.Abs(memoryEntry.Frequency - num2 - memoryEntry.Shift) < this._controlInterface.RFBandwidth / 2) + { + this._controlInterface.CenterFrequency = num2; + this._controlInterface.Frequency = memoryEntry.Frequency; + } + else + { + this._controlInterface.CenterFrequency = memoryEntry.Frequency - this._controlInterface.FrequencyShift; + this._controlInterface.Frequency = memoryEntry.Frequency; + } + } + this._controlInterface.DetectorType = memoryEntry.DetectorType; + this._controlInterface.FilterBandwidth = (int)memoryEntry.FilterBandwidth; + } + catch (Exception ex) + { + MessageBox.Show(this, ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand); + } + } + } + } + + private static string GetFrequencyDisplay(long frequency) + { + long num = Math.Abs(frequency); + if (num == 0) + { + return "DC"; + } + if (num > 1500000000) + { + return $"{(double)frequency / 1000000000.0:#,0.000 000} GHz"; + } + if (num > 30000000) + { + return $"{(double)frequency / 1000000.0:0,0.000#} MHz"; + } + if (num > 1000) + { + return $"{(double)frequency / 1000.0:#,#.###} kHz"; + } + return frequency.ToString(); + } + + private void frequencyDataGridView_KeyDown(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.Return) + { + this.Navigate(); + e.Handled = true; + } + } + + private void frequencyDataGridView_Scroll(object sender, ScrollEventArgs e) + { + this._controlInterface.FFTSkips = -10; + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FrequencyManagerPanel)); + DataGridViewCellStyle dataGridViewCellStyle = new DataGridViewCellStyle(); + this.mainToolStrip = new ToolStrip(); + this.btnNewEntry = new ToolStripButton(); + this.btnEdit = new ToolStripButton(); + this.btnDelete = new ToolStripButton(); + this.label17 = new Label(); + this.frequencyDataGridView = new DataGridView(); + this.nameDataGridViewTextBoxColumn = new DataGridViewTextBoxColumn(); + this.frequencyDataGridViewTextBoxColumn = new DataGridViewTextBoxColumn(); + this.memoryEntryBindingSource = new BindingSource(this.components); + this.comboGroups = new ComboBox(); + this.mainToolStrip.SuspendLayout(); + ((ISupportInitialize)this.frequencyDataGridView).BeginInit(); + ((ISupportInitialize)this.memoryEntryBindingSource).BeginInit(); + base.SuspendLayout(); + this.mainToolStrip.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.mainToolStrip.AutoSize = false; + this.mainToolStrip.Dock = DockStyle.None; + this.mainToolStrip.GripStyle = ToolStripGripStyle.Hidden; + this.mainToolStrip.Items.AddRange(new ToolStripItem[3] + { + this.btnNewEntry, + this.btnEdit, + this.btnDelete + }); + this.mainToolStrip.Location = new Point(1, 6); + this.mainToolStrip.MinimumSize = new Size(205, 0); + this.mainToolStrip.Name = "mainToolStrip"; + this.mainToolStrip.Size = new Size(235, 22); + this.mainToolStrip.Stretch = true; + this.mainToolStrip.TabIndex = 7; + this.mainToolStrip.Text = "toolStrip1"; + this.btnNewEntry.Image = (Image)componentResourceManager.GetObject("btnNewEntry.Image"); + this.btnNewEntry.ImageTransparentColor = Color.Magenta; + this.btnNewEntry.Name = "btnNewEntry"; + this.btnNewEntry.Size = new Size(48, 19); + this.btnNewEntry.Text = "New"; + this.btnNewEntry.Click += this.btnNewEntry_Click; + this.btnEdit.Image = (Image)componentResourceManager.GetObject("btnEdit.Image"); + this.btnEdit.ImageTransparentColor = Color.Magenta; + this.btnEdit.Name = "btnEdit"; + this.btnEdit.Size = new Size(45, 19); + this.btnEdit.Text = "Edit"; + this.btnEdit.Click += this.btnEdit_Click; + this.btnDelete.Image = (Image)componentResourceManager.GetObject("btnDelete.Image"); + this.btnDelete.ImageTransparentColor = Color.Magenta; + this.btnDelete.Name = "btnDelete"; + this.btnDelete.Size = new Size(58, 19); + this.btnDelete.Text = "Delete"; + this.btnDelete.Click += this.btnDelete_Click; + this.label17.ForeColor = Color.CornflowerBlue; + this.label17.AutoSize = true; + this.label17.Location = new Point(2, 38); + this.label17.Margin = new Padding(2, 0, 2, 0); + this.label17.Name = "label17"; + this.label17.Size = new Size(39, 13); + this.label17.TabIndex = 5; + this.label17.Text = "Group:"; + this.frequencyDataGridView.BackgroundColor = Color.FromArgb(64, 64, 64); + this.frequencyDataGridView.AllowUserToAddRows = false; + this.frequencyDataGridView.AllowUserToDeleteRows = false; + this.frequencyDataGridView.AllowUserToResizeRows = false; + dataGridViewCellStyle.BackColor = Color.WhiteSmoke; + this.frequencyDataGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle; + this.frequencyDataGridView.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right); + this.frequencyDataGridView.AutoGenerateColumns = false; + this.frequencyDataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.frequencyDataGridView.Columns.AddRange(this.nameDataGridViewTextBoxColumn, this.frequencyDataGridViewTextBoxColumn); + this.frequencyDataGridView.DataSource = this.memoryEntryBindingSource; + this.frequencyDataGridView.Location = new Point(0, 60); + this.frequencyDataGridView.Margin = new Padding(2, 2, 2, 2); + this.frequencyDataGridView.Name = "frequencyDataGridView"; + this.frequencyDataGridView.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single; + this.frequencyDataGridView.RowHeadersVisible = false; + this.frequencyDataGridView.RowTemplate.Height = 24; + this.frequencyDataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; + this.frequencyDataGridView.ShowCellErrors = false; + this.frequencyDataGridView.ShowCellToolTips = false; + this.frequencyDataGridView.ShowEditingIcon = false; + this.frequencyDataGridView.ShowRowErrors = false; + this.frequencyDataGridView.Size = new Size(234, 329); + this.frequencyDataGridView.TabIndex = 6; + this.frequencyDataGridView.CellDoubleClick += this.frequencyDataGridView_CellDoubleClick; + this.frequencyDataGridView.CellFormatting += this.frequencyDataGridView_CellFormatting; + this.frequencyDataGridView.Scroll += this.frequencyDataGridView_Scroll; + this.frequencyDataGridView.SelectionChanged += this.frequencyDataGridView_SelectionChanged; + this.frequencyDataGridView.KeyDown += this.frequencyDataGridView_KeyDown; + this.nameDataGridViewTextBoxColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; + this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name"; + this.nameDataGridViewTextBoxColumn.HeaderText = "Name"; + this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn"; + this.nameDataGridViewTextBoxColumn.ReadOnly = true; + this.frequencyDataGridViewTextBoxColumn.DataPropertyName = "Frequency"; + this.frequencyDataGridViewTextBoxColumn.HeaderText = "Frequency"; + this.frequencyDataGridViewTextBoxColumn.Name = "frequencyDataGridViewTextBoxColumn"; + this.frequencyDataGridViewTextBoxColumn.ReadOnly = true; + this.memoryEntryBindingSource.DataSource = typeof(MemoryEntry); + this.comboGroups.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right); + this.comboGroups.AutoCompleteMode = AutoCompleteMode.Suggest; + this.comboGroups.AutoCompleteSource = AutoCompleteSource.ListItems; + this.comboGroups.DropDownStyle = ComboBoxStyle.DropDownList; + this.comboGroups.FormattingEnabled = true; + this.comboGroups.Location = new Point(47, 35); + this.comboGroups.Margin = new Padding(2, 2, 2, 2); + this.comboGroups.Name = "comboGroups"; + this.comboGroups.Size = new Size(189, 21); + this.comboGroups.TabIndex = 4; + this.comboGroups.SelectedIndexChanged += this.comboGroups_SelectedIndexChanged; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.mainToolStrip); + base.Controls.Add(this.label17); + base.Controls.Add(this.frequencyDataGridView); + base.Controls.Add(this.comboGroups); + base.Margin = new Padding(2, 2, 2, 2); + base.Name = "FrequencyManagerPanel"; + base.Size = new Size(236, 389); + this.mainToolStrip.ResumeLayout(false); + this.mainToolStrip.PerformLayout(); + ((ISupportInitialize)this.frequencyDataGridView).EndInit(); + ((ISupportInitialize)this.memoryEntryBindingSource).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.resource b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.resource new file mode 100644 index 0000000..c6262df --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.resource @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wQAADsEBuJFr7QAAAf9JREFUOE+Vkm9LU2EYxgd9lL5A4Ku+hFF9gIgyazZsZK6sFsNKxFYvItiitMwy + UnTm0ixL2kCnzApWuebxqOn6QyJkpaTFr/t+dubJtKgbfpzDeZ7ruu7nfo7nf4vSTSjpLR7Mh/PxWZQL + Pe8Ix/M0xKapb5+g7naWMy0ZQo1PCUaGqbmYhKYoBGuMeNUgfHeG7z8waK3Ic2kFFr7B3Fd4uwCT87Lg + iNm1DXZs5tz2rQWDhs4plkWk1EriRvxRrFXfbrG4jEGTF4XPkj6/BB++OMknj4m4FHYWxP7T3a7B2dYx + PolA+Zfk0RfWWoPa5ow5q6KikhIMzKUdsSQ74pFZGHo2jj/U5RqEGkfJy6AUk1osNVCkCxXr2uAMPElb + VJ7qcA2CkRS2TFkpGkSjUXNNRbGWriWmYCBl4Tt+xzXQ+81+xLCmg99K1x7Z0Ju0qTja6hoEwv08f49B + N/2NPgvuJWy8R264BlV1vQzLcJSRPKTknEPyPvgGktPS8iT0S3LfOMRfQ2zAptx/zTXQiSZko7JR6q/E + xqDjsU2Z74pr4DvRxkNpzTBReD4Q7gs9ktotqV1Z6BRx28uCwR5vdL3Bq1yOTDZnfhS9a70unbgOTc+t + rat4nUFF4BarVN/EGxCqWzhQ1cz+w9fZd6iJssqr7D14WYQRw+7yS46Bx/MTmEel233vFo8AAAAASUVO + RK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wQAADsEBuJFr7QAAAgVJREFUOE9jAAEvLy8DNy/PPZ6enk719fVMYEFiQWhoKLOTk2u6o6PLfydn52/e + 3t6BIDGoNAqwt7dnCQoKUnJ3d82DCkEEHR2dk2ztHbaZW9r+19LS+uPu7lmFboi8vD2Hpa2jk7eX13d7 + e8c5UGEIsLV1l7S3d7FwcHDZZmVj/9/O3uG/v4/nRldXV26QvIWFBae7u/sKeXmn36am5t1AS3jAGtEB + 0FY2JyeXAnkH5992dk7/gd5ZZm5uo2dpaTfZ1sbmv56ByWQlJWN+qHKcgNHOzkXT1tbpvJm59X99ff3v + hsZG79W0dNfJyFhwQtUQBvr6xg56+iY/La2A4aJvdE9GRksIKkUY6JubK6ioaF3S1TP8p29g8t/E1OK/ + lrbOLag0fmBoaCivpq59VU1d64+GpuYaYWEJE1lZlW0Ghsb/VdS0M6HKsANg6ErIyiufklNU/a+tZ3BI + RkZGSFxcnBuE5RTVphsYGH9R1taWhSpHBfL29hwyiqqLJKSlP2ppGT7R0jLQgkqBEgEHA4MQn7a+wVkJ + KflJQBHMhCYtJ+ctJqHwX1VNG+hUjVYGBnFwGkACTMrKWirKysr3BQQE5EF8iDAEsAkLi7YKCYv/l5dX + 3sXGxqsGFMOWJ5hNTS0nc/JxmgLZqPKScspGrKzsE4FMOyDmBQtiByxAzAVhDjxgYAAAJT51jooYX84A + AAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wQAADsEBuJFr7QAAAaVJREFUOE+NkU1LAlEUhi9BK2nVNugHtGpRm6h95aZ1y/oTQdAPKIIKg7Ii7AMt + EPqAKMiKCrKICC00LRGzMDWtNG1mnLdzZ+74QTT4wuFczrnPe+ecYYZSqcGiLA8EYGeAj0GW+yPxuFUS + bXOVApZtaYRA2IBdyvf6WavlujfEtf+lBCzXZWCZYovpZ6plg11we/xw7d9gdceLlR3vuMAqkiboso1i + ikNcTv1L5imcRg1Y2DxGZ9/wX5PIPZPXJ5tVTNNlmh9PjcAR5WI7EGsROL2xuo+Dc79m4ti+mBA4jaBY + r8oj8Bfp9fJOMKbBXDOOPQ02QuBkkOs5KQOLlMMN2lmvzXFWk6yUNBPDSOC61FTbaCnUNAs3Qc+tQHqE + /oBdoICqqsgXJCTSec2go3eo1sDQkvtUILX6kRS8fxQQff0wN5h3eQRSkVJS8Zn/wUsyh4fou7nB7NqB + wCoqFGUkM9+IxLPwhZLmBrxZLb647FcRscQnApE0ru5e6zeoXlw4lsFt8A1nN8/1G1Qv7u4xBa/vBYeX + 0foMeDYLUwPerCcYY+wX8jI23Xr/uKIAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.resx b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.resx new file mode 100644 index 0000000..8cca7b9 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPanel.resx @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wQAADsEBuJFr7QAAAf9JREFUOE+Vkm9LU2EYxgd9lL5A4Ku+hFF9gIgyazZsZK6sFsNKxFYvItiitMwy + UnTm0ixL2kCnzApWuebxqOn6QyJkpaTFr/t+dubJtKgbfpzDeZ7ruu7nfo7nf4vSTSjpLR7Mh/PxWZQL + Pe8Ix/M0xKapb5+g7naWMy0ZQo1PCUaGqbmYhKYoBGuMeNUgfHeG7z8waK3Ic2kFFr7B3Fd4uwCT87Lg + iNm1DXZs5tz2rQWDhs4plkWk1EriRvxRrFXfbrG4jEGTF4XPkj6/BB++OMknj4m4FHYWxP7T3a7B2dYx + PolA+Zfk0RfWWoPa5ow5q6KikhIMzKUdsSQ74pFZGHo2jj/U5RqEGkfJy6AUk1osNVCkCxXr2uAMPElb + VJ7qcA2CkRS2TFkpGkSjUXNNRbGWriWmYCBl4Tt+xzXQ+81+xLCmg99K1x7Z0Ju0qTja6hoEwv08f49B + N/2NPgvuJWy8R264BlV1vQzLcJSRPKTknEPyPvgGktPS8iT0S3LfOMRfQ2zAptx/zTXQiSZko7JR6q/E + xqDjsU2Z74pr4DvRxkNpzTBReD4Q7gs9ktotqV1Z6BRx28uCwR5vdL3Bq1yOTDZnfhS9a70unbgOTc+t + rat4nUFF4BarVN/EGxCqWzhQ1cz+w9fZd6iJssqr7D14WYQRw+7yS46Bx/MTmEel233vFo8AAAAASUVO + RK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wQAADsEBuJFr7QAAAgVJREFUOE9jAAEvLy8DNy/PPZ6enk719fVMYEFiQWhoKLOTk2u6o6PLfydn52/e + 3t6BIDGoNAqwt7dnCQoKUnJ3d82DCkEEHR2dk2ztHbaZW9r+19LS+uPu7lmFboi8vD2Hpa2jk7eX13d7 + e8c5UGEIsLV1l7S3d7FwcHDZZmVj/9/O3uG/v4/nRldXV26QvIWFBae7u/sKeXmn36am5t1AS3jAGtEB + 0FY2JyeXAnkH5992dk7/gd5ZZm5uo2dpaTfZ1sbmv56ByWQlJWN+qHKcgNHOzkXT1tbpvJm59X99ff3v + hsZG79W0dNfJyFhwQtUQBvr6xg56+iY/La2A4aJvdE9GRksIKkUY6JubK6ioaF3S1TP8p29g8t/E1OK/ + lrbOLag0fmBoaCivpq59VU1d64+GpuYaYWEJE1lZlW0Ghsb/VdS0M6HKsANg6ErIyiufklNU/a+tZ3BI + RkZGSFxcnBuE5RTVphsYGH9R1taWhSpHBfL29hwyiqqLJKSlP2ppGT7R0jLQgkqBEgEHA4MQn7a+wVkJ + KflJQBHMhCYtJ+ctJqHwX1VNG+hUjVYGBnFwGkACTMrKWirKysr3BQQE5EF8iDAEsAkLi7YKCYv/l5dX + 3sXGxqsGFMOWJ5hNTS0nc/JxmgLZqPKScspGrKzsE4FMOyDmBQtiByxAzAVhDjxgYAAAJT51jooYX84A + AAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wQAADsEBuJFr7QAAAaVJREFUOE+NkU1LAlEUhi9BK2nVNugHtGpRm6h95aZ1y/oTQdAPKIIKg7Ii7AMt + EPqAKMiKCrKICC00LRGzMDWtNG1mnLdzZ+74QTT4wuFczrnPe+ecYYZSqcGiLA8EYGeAj0GW+yPxuFUS + bXOVApZtaYRA2IBdyvf6WavlujfEtf+lBCzXZWCZYovpZ6plg11we/xw7d9gdceLlR3vuMAqkiboso1i + ikNcTv1L5imcRg1Y2DxGZ9/wX5PIPZPXJ5tVTNNlmh9PjcAR5WI7EGsROL2xuo+Dc79m4ti+mBA4jaBY + r8oj8Bfp9fJOMKbBXDOOPQ02QuBkkOs5KQOLlMMN2lmvzXFWk6yUNBPDSOC61FTbaCnUNAs3Qc+tQHqE + /oBdoICqqsgXJCTSec2go3eo1sDQkvtUILX6kRS8fxQQff0wN5h3eQRSkVJS8Zn/wUsyh4fou7nB7NqB + wCoqFGUkM9+IxLPwhZLmBrxZLb647FcRscQnApE0ru5e6zeoXlw4lsFt8A1nN8/1G1Qv7u4xBa/vBYeX + 0foMeDYLUwPerCcYY+wX8jI23Xr/uKIAAAAASUVORK5CYII= + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPlugin.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPlugin.cs new file mode 100644 index 0000000..166458b --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerPlugin.cs @@ -0,0 +1,30 @@ +using SDRSharp.Common; +using System.Windows.Forms; + +namespace SDRSharp.FrequencyManager +{ + public class FrequencyManagerPlugin : ISharpPlugin + { + private const string _displayName = "Frequency Mgr"; + + private ISharpControl _controlInterface; + + private FrequencyManagerPanel _frequencyManagerPanel; + + public bool HasGui => true; + + public UserControl GuiControl => this._frequencyManagerPanel; + + public string DisplayName => "Frequency Mgr"; + + public void Close() + { + } + + public void Initialize(ISharpControl control) + { + this._controlInterface = control; + this._frequencyManagerPanel = new FrequencyManagerPanel(this._controlInterface); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerUtils.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerUtils.cs new file mode 100644 index 0000000..dd5423b --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/FrequencyManagerUtils.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Reflection; +using System.Text; + +namespace SDRSharp.FrequencyManager +{ + public static class FreqManUtils + { + public static Assembly UnmanagedDLLAssemblyVer = Assembly.GetExecutingAssembly(); + } +} \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/MemoryEntry.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/MemoryEntry.cs new file mode 100644 index 0000000..35e0608 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/MemoryEntry.cs @@ -0,0 +1,135 @@ +using SDRSharp.Radio; + +namespace SDRSharp.FrequencyManager +{ + public class MemoryEntry + { + private long _frequency; + + private DetectorType _detectorType; + + private string _name; + + private long _shift; + + private long _centerFrequency; + + private string _groupName; + + private long _filterBandwidth; + + private bool _isFavourite; + + public bool IsFavourite + { + get + { + return this._isFavourite; + } + set + { + this._isFavourite = value; + } + } + + public string Name + { + get + { + return this._name; + } + set + { + this._name = value; + } + } + + public string GroupName + { + get + { + return this._groupName; + } + set + { + this._groupName = value; + } + } + + public long Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = value; + } + } + + public DetectorType DetectorType + { + get + { + return this._detectorType; + } + set + { + this._detectorType = value; + } + } + + public long Shift + { + get + { + return this._shift; + } + set + { + this._shift = value; + } + } + + public long CenterFrequency + { + get + { + return this._centerFrequency; + } + set + { + this._centerFrequency = value; + } + } + + public long FilterBandwidth + { + get + { + return this._filterBandwidth; + } + set + { + this._filterBandwidth = value; + } + } + + public MemoryEntry() + { + } + + public MemoryEntry(MemoryEntry memoryEntry) + { + this._name = memoryEntry._name; + this._groupName = memoryEntry._groupName; + this._detectorType = memoryEntry._detectorType; + this._frequency = memoryEntry._frequency; + this._shift = memoryEntry._shift; + this._centerFrequency = memoryEntry._centerFrequency; + this._filterBandwidth = memoryEntry._filterBandwidth; + this._isFavourite = memoryEntry._isFavourite; + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/MemoryInfoEventArgs.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/MemoryInfoEventArgs.cs new file mode 100644 index 0000000..eb68861 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/MemoryInfoEventArgs.cs @@ -0,0 +1,16 @@ +using System; + +namespace SDRSharp.FrequencyManager +{ + public class MemoryInfoEventArgs : EventArgs + { + private readonly MemoryEntry _memoryEntry; + + public MemoryEntry MemoryEntry => this._memoryEntry; + + public MemoryInfoEventArgs(MemoryEntry entry) + { + this._memoryEntry = entry; + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/RadioInfo.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/RadioInfo.cs new file mode 100644 index 0000000..eeda6a0 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/RadioInfo.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.FrequencyManager +{ + public delegate void RadioInfo(object sender, MemoryInfoEventArgs e); +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SerializableDictionary.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SerializableDictionary.cs new file mode 100644 index 0000000..cc769fb --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SerializableDictionary.cs @@ -0,0 +1,74 @@ +using System; +using System.Collections.Generic; + +namespace SDRSharp.FrequencyManager +{ + [Serializable] + public class SerializableDictionary + { + private List _keys = new List(); + + private List _values = new List(); + + public TValue this[TKey index] + { + get + { + int num = this._keys.IndexOf(index); + if (num != -1) + { + return this._values[num]; + } + throw new KeyNotFoundException(); + } + set + { + int num = this._keys.IndexOf(index); + if (num == -1) + { + this._keys.Add(index); + this._values.Add(value); + } + else + { + this._values[num] = value; + } + } + } + + public List Keys + { + get + { + return this._keys; + } + set + { + this._keys = value; + } + } + + public List Values + { + get + { + return this._values; + } + set + { + this._values = value; + } + } + + public bool ContainsKey(TKey key) + { + return this._keys.IndexOf(key) != -1; + } + + public void Clear() + { + this._keys.Clear(); + this._values.Clear(); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SettingsPersister.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SettingsPersister.cs new file mode 100644 index 0000000..03da5bd --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SettingsPersister.cs @@ -0,0 +1,59 @@ +using System.Collections.Generic; +using System.IO; +using System.Windows.Forms; +using System.Xml.Serialization; + +namespace SDRSharp.FrequencyManager +{ + public class SettingsPersister + { + private const string FreqMgrFilename = "frequencies.xml"; + + private readonly string _settingsFolder; + + public SettingsPersister() + { + this._settingsFolder = Path.GetDirectoryName(Application.ExecutablePath); + } + + public List ReadStoredFrequencies() + { + List list = this.ReadObject>("frequencies.xml"); + if (list != null) + { + list.Sort((MemoryEntry e1, MemoryEntry e2) => e1.Frequency.CompareTo(e2.Frequency)); + return list; + } + return new List(); + } + + public void PersistStoredFrequencies(List entries) + { + this.WriteObject(entries, "frequencies.xml"); + } + + private T ReadObject(string fileName) + { + string path = Path.Combine(this._settingsFolder, fileName); + if (File.Exists(path)) + { + using (FileStream stream = new FileStream(path, FileMode.Open)) + { + XmlSerializer xmlSerializer = new XmlSerializer(typeof(T)); + return (T)xmlSerializer.Deserialize(stream); + } + } + return default(T); + } + + private void WriteObject(T obj, string fileName) + { + string path = Path.Combine(this._settingsFolder, fileName); + using (FileStream stream = new FileStream(path, FileMode.Create)) + { + XmlSerializer xmlSerializer = new XmlSerializer(obj.GetType()); + xmlSerializer.Serialize(stream, obj); + } + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SortableBindingList.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SortableBindingList.cs new file mode 100644 index 0000000..1ccc671 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SortableBindingList.cs @@ -0,0 +1,40 @@ +using System.Collections.Generic; +using System.ComponentModel; + +namespace SDRSharp.FrequencyManager +{ + public class SortableBindingList : BindingList + { + private bool _isSorted; + + private PropertyDescriptor _sortProperty; + + private ListSortDirection _sortDirection; + + protected override bool SupportsSortingCore => true; + + protected override ListSortDirection SortDirectionCore => this._sortDirection; + + protected override PropertyDescriptor SortPropertyCore => this._sortProperty; + + protected override bool IsSortedCore => this._isSorted; + + protected override void ApplySortCore(PropertyDescriptor property, ListSortDirection direction) + { + List list = (List)base.Items; + if (list != null) + { + SortableBindingListComparer comparer = new SortableBindingListComparer(property.Name, direction); + list.Sort(comparer); + this._isSorted = true; + } + else + { + this._isSorted = false; + } + this._sortProperty = property; + this._sortDirection = direction; + this.OnListChanged(new ListChangedEventArgs(ListChangedType.Reset, -1)); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SortableBindingListComparer.cs b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SortableBindingListComparer.cs new file mode 100644 index 0000000..f7606ca --- /dev/null +++ b/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/SortableBindingListComparer.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Reflection; + +namespace SDRSharp.FrequencyManager +{ + public class SortableBindingListComparer : IComparer + { + private PropertyInfo _sortProperty; + + private ListSortDirection _sortDirection; + + public SortableBindingListComparer(string sortProperty, ListSortDirection sortDirection) + { + this._sortProperty = typeof(T).GetProperty(sortProperty); + this._sortDirection = sortDirection; + } + + public int Compare(T x, T y) + { + IComparable comparable = (IComparable)this._sortProperty.GetValue(x, null); + IComparable comparable2 = (IComparable)this._sortProperty.GetValue(y, null); + if (this._sortDirection == ListSortDirection.Ascending) + { + return comparable.CompareTo(comparable2); + } + return comparable2.CompareTo(comparable); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.FrequencyScanner/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..ad218a2 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Runtime.Versioning; +using System.Security.Permissions; + +[assembly: CompilationRelaxations(8)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: AssemblyTitle("Fast Scanner for SDR#")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("rtl-sdr.ru")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: ComVisible(true)] +[assembly: Guid("a80d3b15-c0c9-4d61-8bd6-b87954dce39d")] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.0.0.0")] diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner.Properties/Resources.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner.Properties/Resources.cs new file mode 100644 index 0000000..c9a0250 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner.Properties/Resources.cs @@ -0,0 +1,49 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Globalization; +using System.Resources; +using System.Runtime.CompilerServices; + +namespace SDRSharp.FrequencyScanner.Properties +{ + [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [DebuggerNonUserCode] + [CompilerGenerated] + internal class Resources + { + private static ResourceManager resourceMan; + + private static CultureInfo resourceCulture; + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static ResourceManager ResourceManager + { + get + { + if (Resources.resourceMan == null) + { + Resources.resourceMan = new ResourceManager("SDRSharp.FrequencyScanner.Properties.Resources", typeof(Resources).Assembly); + } + return Resources.resourceMan; + } + } + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static CultureInfo Culture + { + get + { + return Resources.resourceCulture; + } + set + { + Resources.resourceCulture = value; + } + } + + internal Resources() + { + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner.csproj b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner.csproj new file mode 100644 index 0000000..0efeebd --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner.csproj @@ -0,0 +1,93 @@ + + + + {1FF2D27C-12DF-4FD3-A548-400D6901030D} + Debug + AnyCPU + Library + SDRSharp.FrequencyScanner + .NETFramework + v4.6 + 4 + True + + + AnyCPU + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Common.dll + + + C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll + + + + + + + + UserControl + + + + + Form + + + Form + + + UserControl + + + + + + + + + + + + + + + ChannelAnalyzer.cs + + + DialogConfigure.cs + + + DialogEditRange.cs + + + FrequencyScannerPanel.cs + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalizerMemoryEntry.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalizerMemoryEntry.cs new file mode 100644 index 0000000..b6090d2 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalizerMemoryEntry.cs @@ -0,0 +1,195 @@ +using SDRSharp.Radio; + +namespace SDRSharp.FrequencyScanner +{ + public class ChannelAnalizerMemoryEntry + { + private long _frequency; + + private long _centerFrequency; + + private float _level; + + private int _activity; + + private bool _skipped; + + private bool _isStore; + + private string _storeName; + + private int _filterBandwidth; + + private DetectorType _detectorType; + + private int _stepSize; + + private int _startBins; + + private int _endBins; + + public long Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = value; + } + } + + public long CenterFrequency + { + get + { + return this._centerFrequency; + } + set + { + this._centerFrequency = value; + } + } + + public string StoreName + { + get + { + return this._storeName; + } + set + { + this._storeName = value; + } + } + + public bool IsStore + { + get + { + return this._isStore; + } + set + { + this._isStore = value; + } + } + + public float Level + { + get + { + return this._level; + } + set + { + this._level = value; + } + } + + public bool Skipped + { + get + { + return this._skipped; + } + set + { + this._skipped = value; + } + } + + public int Activity + { + get + { + return this._activity; + } + set + { + this._activity = value; + } + } + + public int StartBins + { + get + { + return this._startBins; + } + set + { + this._startBins = value; + } + } + + public int EndBins + { + get + { + return this._endBins; + } + set + { + this._endBins = value; + } + } + + public int FilterBandwidth + { + get + { + return this._filterBandwidth; + } + set + { + this._filterBandwidth = value; + } + } + + public int StepSize + { + get + { + return this._stepSize; + } + set + { + this._stepSize = value; + } + } + + public DetectorType DetectorType + { + get + { + return this._detectorType; + } + set + { + this._detectorType = value; + } + } + + public ChannelAnalizerMemoryEntry() + { + } + + public ChannelAnalizerMemoryEntry(ChannelAnalizerMemoryEntry ChannelAnalizerMemoryEntry) + { + this._frequency = ChannelAnalizerMemoryEntry._frequency; + this._centerFrequency = ChannelAnalizerMemoryEntry._centerFrequency; + this._level = ChannelAnalizerMemoryEntry._level; + this._activity = ChannelAnalizerMemoryEntry._activity; + this._skipped = ChannelAnalizerMemoryEntry._skipped; + this._isStore = ChannelAnalizerMemoryEntry._isStore; + this._storeName = ChannelAnalizerMemoryEntry._storeName; + this._filterBandwidth = ChannelAnalizerMemoryEntry._filterBandwidth; + this._detectorType = ChannelAnalizerMemoryEntry._detectorType; + this._stepSize = ChannelAnalizerMemoryEntry._stepSize; + this._startBins = ChannelAnalizerMemoryEntry._startBins; + this._endBins = ChannelAnalizerMemoryEntry._endBins; + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalyzer.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalyzer.cs new file mode 100644 index 0000000..96a3ec3 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalyzer.cs @@ -0,0 +1,381 @@ +using SDRSharp.Radio; +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Drawing.Imaging; +using System.Windows.Forms; + +namespace SDRSharp.FrequencyScanner +{ + public class ChannelAnalyzer : UserControl + { + private const float TrackingFontSize = 16f; + + private const int CarrierPenWidth = 1; + + private const int GradientAlpha = 180; + + public const int AxisMargin = 2; + + public const float DefaultCursorHeight = 32f; + + private bool _drawBackgroundNeeded; + + private Bitmap _bkgBuffer; + + private Bitmap _buffer; + + private Graphics _graphics; + + private float _xIncrement; + + private float _yIncrement; + + private long _playFrequency; + + private int _playFrequencyIndex; + + private List _channelArray; + + private int _zoom; + + private int _zoomPosition; + + private float _defXIncrement; + + public long Frequency + { + set + { + this._playFrequency = value; + } + } + + public int Zoom + { + get + { + return this._zoom; + } + set + { + this._zoom = value; + } + } + + public int ZoomPosition + { + get + { + return this._zoomPosition; + } + set + { + this._zoomPosition = value; + } + } + + public event CustomPaintEventHandler CustomPaint; + + public ChannelAnalyzer() + { + Rectangle clientRectangle = base.ClientRectangle; + int width = clientRectangle.Width; + clientRectangle = base.ClientRectangle; + this._bkgBuffer = new Bitmap(width, clientRectangle.Height, PixelFormat.Format32bppPArgb); + clientRectangle = base.ClientRectangle; + int width2 = clientRectangle.Width; + clientRectangle = base.ClientRectangle; + this._buffer = new Bitmap(width2, clientRectangle.Height, PixelFormat.Format32bppPArgb); + this._graphics = Graphics.FromImage(this._buffer); + base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true); + base.SetStyle(ControlStyles.DoubleBuffer, true); + base.SetStyle(ControlStyles.UserPaint, true); + base.SetStyle(ControlStyles.AllPaintingInWmPaint, true); + base.UpdateStyles(); + } + + ~ChannelAnalyzer() + { + this._buffer.Dispose(); + this._graphics.Dispose(); + } + + public void Perform(List channelArray) + { + this._channelArray = channelArray; + if (this._drawBackgroundNeeded) + { + this.DrawBackground(); + } + this.DrawForeground(); + base.Invalidate(); + this._drawBackgroundNeeded = false; + } + + private void DrawBackground() + { + using (SolidBrush solidBrush = new SolidBrush(Color.Silver)) + { + using (Pen pen = new Pen(Color.FromArgb(80, 80, 80))) + { + using (new Pen(Color.DarkGray)) + { + using (Font font = new Font("Arial", 8f)) + { + using (Graphics graphics = Graphics.FromImage(this._bkgBuffer)) + { + ChannelAnalyzer.ConfigureGraphics(graphics); + graphics.Clear(Color.Black); + pen.DashStyle = DashStyle.Dash; + int num = 20; + Rectangle clientRectangle = base.ClientRectangle; + int num2 = (clientRectangle.Height - 4) / num; + for (int i = 1; i <= num2; i++) + { + Graphics graphics2 = graphics; + Pen pen2 = pen; + clientRectangle = base.ClientRectangle; + int y = clientRectangle.Height - 2 - i * num; + clientRectangle = base.ClientRectangle; + int x = clientRectangle.Width - 2; + clientRectangle = base.ClientRectangle; + graphics2.DrawLine(pen2, 2, y, x, clientRectangle.Height - 2 - i * num); + } + for (int j = 1; j <= num2; j++) + { + string text = (j * num / 2 - 10).ToString(); + SizeF sizeF = graphics.MeasureString(text, font); + float width = sizeF.Width; + float height = sizeF.Height; + Graphics graphics3 = graphics; + string s = text; + Font font2 = font; + SolidBrush brush = solidBrush; + clientRectangle = base.ClientRectangle; + graphics3.DrawString(s, font2, brush, 4f, (float)(clientRectangle.Height - 2 - j * num) - height + 1f); + } + } + } + } + } + } + } + + private string GetFrequencyDisplay(long frequency) + { + if (frequency == 0L) + { + return "DC"; + } + if (Math.Abs(frequency) > 1500000000) + { + return $"{(double)frequency / 1000000000.0:#,0.000 000}GHz"; + } + if (Math.Abs(frequency) > 30000000) + { + return $"{(double)frequency / 1000000.0:0,0.000###}MHz"; + } + if (Math.Abs(frequency) > 1000) + { + return $"{(double)frequency / 1000.0:#,#.###}kHz"; + } + return $"{frequency}Hz"; + } + + public static void ConfigureGraphics(Graphics graphics) + { + graphics.CompositingMode = CompositingMode.SourceOver; + graphics.CompositingQuality = CompositingQuality.HighSpeed; + graphics.SmoothingMode = SmoothingMode.None; + graphics.PixelOffsetMode = PixelOffsetMode.HighSpeed; + graphics.InterpolationMode = InterpolationMode.High; + } + + private void DrawForeground() + { + Rectangle clientRectangle = base.ClientRectangle; + if (clientRectangle.Width > 2) + { + clientRectangle = base.ClientRectangle; + if (clientRectangle.Height > 2) + { + this.CopyBackground(); + this.DrawSpectrum(); + this.OnCustomPaint(new CustomPaintEventArgs(this._graphics)); + } + } + } + + private unsafe void CopyBackground() + { + BitmapData bitmapData = this._buffer.LockBits(base.ClientRectangle, ImageLockMode.WriteOnly, this._buffer.PixelFormat); + BitmapData bitmapData2 = this._bkgBuffer.LockBits(base.ClientRectangle, ImageLockMode.ReadOnly, this._bkgBuffer.PixelFormat); + Utils.Memcpy((void*)bitmapData.Scan0, (void*)bitmapData2.Scan0, Math.Abs(bitmapData.Stride) * bitmapData.Height); + this._buffer.UnlockBits(bitmapData); + this._bkgBuffer.UnlockBits(bitmapData2); + } + + private void DrawSpectrum() + { + if (this._channelArray != null && this._channelArray.Count != 0) + { + Rectangle clientRectangle = base.ClientRectangle; + this._xIncrement = (float)(clientRectangle.Width - 4) / (float)this._channelArray.Count * (float)(this._zoom + 1); + this._yIncrement = 2f; + clientRectangle = base.ClientRectangle; + this._defXIncrement = (float)(clientRectangle.Width - 4) / (float)this._channelArray.Count; + float num = 0f; + float num2 = 0f; + this._playFrequencyIndex = -1; + using (Pen pen = new Pen(Color.SkyBlue)) + { + using (Pen pen4 = new Pen(Color.DarkRed)) + { + using (Pen pen5 = new Pen(Color.Yellow)) + { + using (Pen pen3 = new Pen(Color.Green)) + { + for (int i = 0; i < this._channelArray.Count; i++) + { + float num3 = (float)Math.Max((int)this._channelArray[i].Level, 4) * this._yIncrement; + float num4 = this._xIncrement - 1f; + if (this._xIncrement < 3f) + { + num4 = this._xIncrement; + } + float num5 = 2f + (float)i * this._xIncrement - (float)(this._zoomPosition * (this._zoom + 1)) + (float)this._zoomPosition + num4 * 0.5f; + clientRectangle = base.ClientRectangle; + float num6 = (float)Math.Max(2, (int)((float)(clientRectangle.Height - 2) - num3)); + float val = num3; + clientRectangle = base.ClientRectangle; + num3 = Math.Min(val, (float)(clientRectangle.Height - 4)); + if (!(num5 < 2f)) + { + float num7 = num5; + clientRectangle = base.ClientRectangle; + if (!(num7 > (float)(clientRectangle.Width - 2))) + { + Pen pen2 = pen; + if (this._playFrequency > this._channelArray[i].Frequency - this._channelArray[i].StepSize / 2 && this._playFrequency < this._channelArray[i].Frequency + this._channelArray[i].StepSize / 2) + { + num = num5; + num2 = num6; + this._playFrequencyIndex = i; + } + if (this._channelArray[i].IsStore) + { + pen2 = pen3; + } + if (this._channelArray[i].Skipped) + { + pen2 = ((!this._channelArray[i].IsStore) ? pen4 : pen5); + } + pen2.Width = num4; + this._graphics.DrawLine(pen2, num5, num6, num5, num6 + num3); + } + } + } + } + } + } + } + using (SolidBrush brush = new SolidBrush(Color.White)) + { + using (Pen pen6 = new Pen(Color.White)) + { + using (Font font = new Font("Arial", 8f)) + { + if (this._playFrequencyIndex >= 0 && this._playFrequencyIndex < this._channelArray.Count) + { + string str = this.GetFrequencyDisplay(this._channelArray[this._playFrequencyIndex].Frequency) + " "; + str = ((!this._channelArray[this._playFrequencyIndex].IsStore) ? (str + "Unknown") : (str + this._channelArray[this._playFrequencyIndex].StoreName)); + SizeF sizeF = this._graphics.MeasureString(str, font); + float width = sizeF.Width; + float height = sizeF.Height; + float num8 = 0f; + int num9 = 62; + this._graphics.DrawLine(pen6, num, num2 - 10f, num, (float)num9 + height + 4f); + float num10 = num + width + 10f; + clientRectangle = base.ClientRectangle; + num8 = ((!(num10 > (float)clientRectangle.Width)) ? num : (num - width)); + this._graphics.DrawLine(pen6, num8, (float)num9 + height + 4f, num8 + width, (float)num9 + height + 4f); + this._graphics.DrawString(str, font, brush, num8, (float)num9); + } + } + } + } + } + } + + protected override void OnPaint(PaintEventArgs e) + { + ChannelAnalyzer.ConfigureGraphics(e.Graphics); + e.Graphics.DrawImageUnscaled(this._buffer, 0, 0); + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + Rectangle clientRectangle = base.ClientRectangle; + if (clientRectangle.Width > 0) + { + clientRectangle = base.ClientRectangle; + if (clientRectangle.Height > 0) + { + this._buffer.Dispose(); + this._graphics.Dispose(); + this._bkgBuffer.Dispose(); + clientRectangle = base.ClientRectangle; + int width = clientRectangle.Width; + clientRectangle = base.ClientRectangle; + this._buffer = new Bitmap(width, clientRectangle.Height, PixelFormat.Format32bppPArgb); + this._graphics = Graphics.FromImage(this._buffer); + ChannelAnalyzer.ConfigureGraphics(this._graphics); + clientRectangle = base.ClientRectangle; + int width2 = clientRectangle.Width; + clientRectangle = base.ClientRectangle; + this._bkgBuffer = new Bitmap(width2, clientRectangle.Height, PixelFormat.Format32bppPArgb); + this._drawBackgroundNeeded = true; + this.Perform(this._channelArray); + } + } + } + + protected virtual void OnCustomPaint(CustomPaintEventArgs e) + { + CustomPaintEventHandler customPaint = this.CustomPaint; + customPaint?.Invoke(this, e); + } + + public int CurrentChannelIndex() + { + return this._playFrequencyIndex; + } + + public int PointToChannel(float point) + { + int num = 0; + num = (int)(((float)(this._zoomPosition * (this._zoom + 1)) + point - (float)this._zoomPosition - 2f) / this._xIncrement); + if (num < 0) + { + num = 0; + } + if (num >= this._channelArray.Count) + { + num = this._channelArray.Count - 1; + } + return num; + } + + private void InitializeComponent() + { + base.SuspendLayout(); + this.AutoSize = true; + this.DoubleBuffered = true; + base.Name = "ChannelAnalyzer"; + base.ResumeLayout(false); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalyzer.resx b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalyzer.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/ChannelAnalyzer.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/CustomPaintEventArgs.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/CustomPaintEventArgs.cs new file mode 100644 index 0000000..d099dd8 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/CustomPaintEventArgs.cs @@ -0,0 +1,25 @@ +using System; +using System.Drawing; + +namespace SDRSharp.FrequencyScanner +{ + public class CustomPaintEventArgs : EventArgs + { + public Graphics Graphics + { + get; + private set; + } + + public bool Cancel + { + get; + set; + } + + public CustomPaintEventArgs(Graphics graphics) + { + this.Graphics = graphics; + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/CustomPaintEventHandler.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/CustomPaintEventHandler.cs new file mode 100644 index 0000000..3141d89 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/CustomPaintEventHandler.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.FrequencyScanner +{ + public delegate void CustomPaintEventHandler(object sender, CustomPaintEventArgs e); +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogConfigure.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogConfigure.cs new file mode 100644 index 0000000..6dce518 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogConfigure.cs @@ -0,0 +1,556 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.FrequencyScanner +{ + public class DialogConfigure : Form + { + private FrequencyScannerPanel _frequencyScannerPanel; + + private IContainer components; + + private CheckBox autoSkipCheckBox; + + private CheckBox autoLockCheckBox; + + private CheckBox autoClearCheckBox; + + private NumericUpDown LockIntervalNumericUpDown; + + private NumericUpDown activityNumericUpDown; + + private NumericUpDown autoClearIntervalNumericUpDown; + + private NumericUpDown skipIntervalNumericUpDown; + + private Label label1; + + private Label label2; + + private Button okButton; + + private Label label3; + + private Label label4; + + private Label label5; + + private CheckBox channelDetectMetodCheckBox; + + private CheckBox useMuteCheckBox; + + private NumericUpDown unMuteNumericUpDown; + + private Label label7; + + private CheckBox maximumChannelCheckBox; + + private GroupBox groupBox2; + + private CheckBox debugCheckBox; + + private Label label8; + + private NumericUpDown maxAlphaNumericUpDown; + + private NumericUpDown minAlphaNumericUpDown; + + private Label label6; + + private Label label9; + + private Label label10; + + private ComboBox pluginPositionComboBox; + + public DialogConfigure(FrequencyScannerPanel frequencyScannerPanel) + { + this.InitializeComponent(); + this._frequencyScannerPanel = frequencyScannerPanel; + this.autoSkipCheckBox.Checked = this._frequencyScannerPanel.AutoSkipEnabled; + this.skipIntervalNumericUpDown.Value = this._frequencyScannerPanel.AutoSkipInterval; + this.autoLockCheckBox.Checked = this._frequencyScannerPanel.AutoLockEnabled; + this.LockIntervalNumericUpDown.Value = this._frequencyScannerPanel.AutoLockInterval; + this.autoClearCheckBox.Checked = this._frequencyScannerPanel.AutoClearEnabled; + this.activityNumericUpDown.Value = (decimal)this._frequencyScannerPanel.AutoClearActivityLevel; + this.autoClearIntervalNumericUpDown.Value = this._frequencyScannerPanel.AutoClearInterval; + this.channelDetectMetodCheckBox.Checked = this._frequencyScannerPanel.ChannelDetectMetod; + this.useMuteCheckBox.Checked = this._frequencyScannerPanel.UseMute; + this.unMuteNumericUpDown.Value = this._frequencyScannerPanel.UnMuteDelay; + this.maximumChannelCheckBox.Checked = this._frequencyScannerPanel.MaxLevelSelect; + this.debugCheckBox.Checked = this._frequencyScannerPanel.ShowDebugInfo; + this.maxAlphaNumericUpDown.Value = this._frequencyScannerPanel.MaxButtonsAlpha; + this.minAlphaNumericUpDown.Value = this._frequencyScannerPanel.MinButtonsAlpha; + this.pluginPositionComboBox.SelectedIndex = this._frequencyScannerPanel.ScannerPluginPosition; + } + + private void okButton_Click(object sender, EventArgs e) + { + this._frequencyScannerPanel.AutoSkipEnabled = this.autoSkipCheckBox.Checked; + this._frequencyScannerPanel.AutoSkipInterval = (int)this.skipIntervalNumericUpDown.Value; + this._frequencyScannerPanel.AutoLockEnabled = this.autoLockCheckBox.Checked; + this._frequencyScannerPanel.AutoLockInterval = (int)this.LockIntervalNumericUpDown.Value; + this._frequencyScannerPanel.AutoClearEnabled = this.autoClearCheckBox.Checked; + this._frequencyScannerPanel.AutoClearActivityLevel = (float)this.activityNumericUpDown.Value; + this._frequencyScannerPanel.AutoClearInterval = (int)this.autoClearIntervalNumericUpDown.Value; + this._frequencyScannerPanel.ChannelDetectMetod = this.channelDetectMetodCheckBox.Checked; + this._frequencyScannerPanel.UseMute = this.useMuteCheckBox.Checked; + this._frequencyScannerPanel.UnMuteDelay = (int)this.unMuteNumericUpDown.Value; + this._frequencyScannerPanel.MaxLevelSelect = this.maximumChannelCheckBox.Checked; + this._frequencyScannerPanel.MaxButtonsAlpha = (int)this.maxAlphaNumericUpDown.Value; + this._frequencyScannerPanel.MinButtonsAlpha = (int)this.minAlphaNumericUpDown.Value; + this._frequencyScannerPanel.ScannerPluginPosition = this.pluginPositionComboBox.SelectedIndex; + } + + private void useMuteCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._frequencyScannerPanel.UseMute = this.useMuteCheckBox.Checked; + this.unMuteNumericUpDown.Enabled = this.useMuteCheckBox.Checked; + } + + private void unMuteNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._frequencyScannerPanel.UnMuteDelay = (int)this.unMuteNumericUpDown.Value; + } + + private void debugCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._frequencyScannerPanel.ShowDebugInfo = this.debugCheckBox.Checked; + } + + private void minAlphaNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._frequencyScannerPanel.MinButtonsAlpha = (int)this.minAlphaNumericUpDown.Value; + } + + private void maxAlphaNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._frequencyScannerPanel.MaxButtonsAlpha = (int)this.maxAlphaNumericUpDown.Value; + } + + private void label10_Click(object sender, EventArgs e) + { + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.autoSkipCheckBox = new CheckBox(); + this.autoLockCheckBox = new CheckBox(); + this.autoClearCheckBox = new CheckBox(); + this.LockIntervalNumericUpDown = new NumericUpDown(); + this.activityNumericUpDown = new NumericUpDown(); + this.autoClearIntervalNumericUpDown = new NumericUpDown(); + this.skipIntervalNumericUpDown = new NumericUpDown(); + this.label1 = new Label(); + this.label2 = new Label(); + this.okButton = new Button(); + this.label3 = new Label(); + this.label4 = new Label(); + this.label5 = new Label(); + this.channelDetectMetodCheckBox = new CheckBox(); + this.useMuteCheckBox = new CheckBox(); + this.unMuteNumericUpDown = new NumericUpDown(); + this.label7 = new Label(); + this.maximumChannelCheckBox = new CheckBox(); + this.groupBox2 = new GroupBox(); + this.label9 = new Label(); + this.label8 = new Label(); + this.maxAlphaNumericUpDown = new NumericUpDown(); + this.minAlphaNumericUpDown = new NumericUpDown(); + this.label6 = new Label(); + this.debugCheckBox = new CheckBox(); + this.label10 = new Label(); + this.pluginPositionComboBox = new ComboBox(); + ((ISupportInitialize)this.LockIntervalNumericUpDown).BeginInit(); + ((ISupportInitialize)this.activityNumericUpDown).BeginInit(); + ((ISupportInitialize)this.autoClearIntervalNumericUpDown).BeginInit(); + ((ISupportInitialize)this.skipIntervalNumericUpDown).BeginInit(); + ((ISupportInitialize)this.unMuteNumericUpDown).BeginInit(); + this.groupBox2.SuspendLayout(); + ((ISupportInitialize)this.maxAlphaNumericUpDown).BeginInit(); + ((ISupportInitialize)this.minAlphaNumericUpDown).BeginInit(); + base.SuspendLayout(); + this.autoSkipCheckBox.AutoSize = true; + this.autoSkipCheckBox.Location = new Point(6, 19); + this.autoSkipCheckBox.Name = "autoSkipCheckBox"; + this.autoSkipCheckBox.Size = new Size(70, 17); + this.autoSkipCheckBox.TabIndex = 0; + this.autoSkipCheckBox.Text = "Auto skip"; + this.autoSkipCheckBox.UseVisualStyleBackColor = true; + this.autoLockCheckBox.AutoSize = true; + this.autoLockCheckBox.Location = new Point(6, 42); + this.autoLockCheckBox.Name = "autoLockCheckBox"; + this.autoLockCheckBox.Size = new Size(71, 17); + this.autoLockCheckBox.TabIndex = 1; + this.autoLockCheckBox.Text = "Auto lock"; + this.autoLockCheckBox.UseVisualStyleBackColor = true; + this.autoClearCheckBox.AutoSize = true; + this.autoClearCheckBox.Location = new Point(6, 65); + this.autoClearCheckBox.Name = "autoClearCheckBox"; + this.autoClearCheckBox.Size = new Size(15, 14); + this.autoClearCheckBox.TabIndex = 2; + this.autoClearCheckBox.UseVisualStyleBackColor = true; + this.LockIntervalNumericUpDown.Location = new Point(82, 41); + this.LockIntervalNumericUpDown.Maximum = new decimal(new int[4] + { + 3600, + 0, + 0, + 0 + }); + this.LockIntervalNumericUpDown.Minimum = new decimal(new int[4] + { + 1, + 0, + 0, + 0 + }); + this.LockIntervalNumericUpDown.Name = "LockIntervalNumericUpDown"; + this.LockIntervalNumericUpDown.Size = new Size(55, 20); + this.LockIntervalNumericUpDown.TabIndex = 3; + this.LockIntervalNumericUpDown.Value = new decimal(new int[4] + { + 30, + 0, + 0, + 0 + }); + this.activityNumericUpDown.DecimalPlaces = 1; + this.activityNumericUpDown.Increment = new decimal(new int[4] + { + 1, + 0, + 0, + 65536 + }); + this.activityNumericUpDown.Location = new Point(166, 63); + this.activityNumericUpDown.Maximum = new decimal(new int[4] + { + 1000, + 0, + 0, + 0 + }); + this.activityNumericUpDown.Minimum = new decimal(new int[4] + { + 1, + 0, + 0, + 65536 + }); + this.activityNumericUpDown.Name = "activityNumericUpDown"; + this.activityNumericUpDown.Size = new Size(47, 20); + this.activityNumericUpDown.TabIndex = 4; + this.activityNumericUpDown.Value = new decimal(new int[4] + { + 1, + 0, + 0, + 0 + }); + this.autoClearIntervalNumericUpDown.Location = new Point(258, 63); + this.autoClearIntervalNumericUpDown.Maximum = new decimal(new int[4] + { + 1000, + 0, + 0, + 0 + }); + this.autoClearIntervalNumericUpDown.Minimum = new decimal(new int[4] + { + 1, + 0, + 0, + 0 + }); + this.autoClearIntervalNumericUpDown.Name = "autoClearIntervalNumericUpDown"; + this.autoClearIntervalNumericUpDown.Size = new Size(43, 20); + this.autoClearIntervalNumericUpDown.TabIndex = 5; + this.autoClearIntervalNumericUpDown.Value = new decimal(new int[4] + { + 1, + 0, + 0, + 0 + }); + this.skipIntervalNumericUpDown.Location = new Point(82, 18); + this.skipIntervalNumericUpDown.Maximum = new decimal(new int[4] + { + 3600, + 0, + 0, + 0 + }); + this.skipIntervalNumericUpDown.Minimum = new decimal(new int[4] + { + 1, + 0, + 0, + 0 + }); + this.skipIntervalNumericUpDown.Name = "skipIntervalNumericUpDown"; + this.skipIntervalNumericUpDown.Size = new Size(55, 20); + this.skipIntervalNumericUpDown.TabIndex = 6; + this.skipIntervalNumericUpDown.Value = new decimal(new int[4] + { + 10, + 0, + 0, + 0 + }); + this.label1.AutoSize = true; + this.label1.Location = new Point(27, 65); + this.label1.Name = "label1"; + this.label1.Size = new Size(133, 13); + this.label1.TabIndex = 7; + this.label1.Text = "Delete rows with activity <"; + this.label2.AutoSize = true; + this.label2.Location = new Point(219, 65); + this.label2.Name = "label2"; + this.label2.Size = new Size(33, 13); + this.label2.TabIndex = 8; + this.label2.Text = "every"; + this.okButton.DialogResult = DialogResult.OK; + this.okButton.Location = new Point(304, 253); + this.okButton.Name = "okButton"; + this.okButton.Size = new Size(75, 23); + this.okButton.TabIndex = 9; + this.okButton.Text = "Ok"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += this.okButton_Click; + this.label3.AutoSize = true; + this.label3.Location = new Point(143, 20); + this.label3.Name = "label3"; + this.label3.Size = new Size(47, 13); + this.label3.TabIndex = 10; + this.label3.Text = "seconds"; + this.label4.AutoSize = true; + this.label4.Location = new Point(144, 43); + this.label4.Name = "label4"; + this.label4.Size = new Size(47, 13); + this.label4.TabIndex = 11; + this.label4.Text = "seconds"; + this.label5.AutoSize = true; + this.label5.Location = new Point(307, 65); + this.label5.Name = "label5"; + this.label5.Size = new Size(47, 13); + this.label5.TabIndex = 12; + this.label5.Text = "seconds"; + this.channelDetectMetodCheckBox.AutoSize = true; + this.channelDetectMetodCheckBox.Location = new Point(6, 89); + this.channelDetectMetodCheckBox.Name = "channelDetectMetodCheckBox"; + this.channelDetectMetodCheckBox.Size = new Size(310, 17); + this.channelDetectMetodCheckBox.TabIndex = 13; + this.channelDetectMetodCheckBox.Text = "Detect channel only center frequency (default all bandwidth)"; + this.channelDetectMetodCheckBox.UseVisualStyleBackColor = true; + this.useMuteCheckBox.AutoSize = true; + this.useMuteCheckBox.Location = new Point(6, 135); + this.useMuteCheckBox.Name = "useMuteCheckBox"; + this.useMuteCheckBox.Size = new Size(100, 17); + this.useMuteCheckBox.TabIndex = 16; + this.useMuteCheckBox.Text = "Use audio mute"; + this.useMuteCheckBox.UseVisualStyleBackColor = true; + this.useMuteCheckBox.CheckedChanged += this.useMuteCheckBox_CheckedChanged; + this.unMuteNumericUpDown.Location = new Point(230, 134); + this.unMuteNumericUpDown.Maximum = new decimal(new int[4] + { + 20, + 0, + 0, + 0 + }); + this.unMuteNumericUpDown.Name = "unMuteNumericUpDown"; + this.unMuteNumericUpDown.Size = new Size(48, 20); + this.unMuteNumericUpDown.TabIndex = 17; + this.unMuteNumericUpDown.Value = new decimal(new int[4] + { + 5, + 0, + 0, + 0 + }); + this.unMuteNumericUpDown.ValueChanged += this.unMuteNumericUpDown_ValueChanged; + this.label7.AutoSize = true; + this.label7.Location = new Point(112, 136); + this.label7.Name = "label7"; + this.label7.Size = new Size(112, 13); + this.label7.TabIndex = 18; + this.label7.Text = "Noise protection delay"; + this.maximumChannelCheckBox.AutoSize = true; + this.maximumChannelCheckBox.Location = new Point(6, 112); + this.maximumChannelCheckBox.Name = "maximumChannelCheckBox"; + this.maximumChannelCheckBox.Size = new Size(190, 17); + this.maximumChannelCheckBox.TabIndex = 23; + this.maximumChannelCheckBox.Text = "Select channel with maximum level"; + this.maximumChannelCheckBox.UseVisualStyleBackColor = true; + this.groupBox2.Controls.Add(this.label10); + this.groupBox2.Controls.Add(this.label9); + this.groupBox2.Controls.Add(this.pluginPositionComboBox); + this.groupBox2.Controls.Add(this.label8); + this.groupBox2.Controls.Add(this.maxAlphaNumericUpDown); + this.groupBox2.Controls.Add(this.minAlphaNumericUpDown); + this.groupBox2.Controls.Add(this.label6); + this.groupBox2.Controls.Add(this.debugCheckBox); + this.groupBox2.Controls.Add(this.autoSkipCheckBox); + this.groupBox2.Controls.Add(this.autoLockCheckBox); + this.groupBox2.Controls.Add(this.channelDetectMetodCheckBox); + this.groupBox2.Controls.Add(this.maximumChannelCheckBox); + this.groupBox2.Controls.Add(this.autoClearCheckBox); + this.groupBox2.Controls.Add(this.useMuteCheckBox); + this.groupBox2.Controls.Add(this.LockIntervalNumericUpDown); + this.groupBox2.Controls.Add(this.unMuteNumericUpDown); + this.groupBox2.Controls.Add(this.activityNumericUpDown); + this.groupBox2.Controls.Add(this.label4); + this.groupBox2.Controls.Add(this.label7); + this.groupBox2.Controls.Add(this.autoClearIntervalNumericUpDown); + this.groupBox2.Controls.Add(this.label2); + this.groupBox2.Controls.Add(this.label5); + this.groupBox2.Controls.Add(this.label1); + this.groupBox2.Controls.Add(this.skipIntervalNumericUpDown); + this.groupBox2.Controls.Add(this.label3); + this.groupBox2.Location = new Point(12, 12); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.Size = new Size(370, 235); + this.groupBox2.TabIndex = 13; + this.groupBox2.TabStop = false; + this.groupBox2.Text = "Scanner settings"; + this.label9.AutoSize = true; + this.label9.Location = new Point(80, 182); + this.label9.Name = "label9"; + this.label9.Size = new Size(26, 13); + this.label9.TabIndex = 31; + this.label9.Text = "min."; + this.label8.AutoSize = true; + this.label8.Location = new Point(6, 182); + this.label8.Name = "label8"; + this.label8.Size = new Size(72, 13); + this.label8.TabIndex = 30; + this.label8.Text = "Buttons alpha"; + this.maxAlphaNumericUpDown.Location = new Point(208, 180); + this.maxAlphaNumericUpDown.Maximum = new decimal(new int[4] + { + 255, + 0, + 0, + 0 + }); + this.maxAlphaNumericUpDown.Minimum = new decimal(new int[4] + { + 1, + 0, + 0, + 0 + }); + this.maxAlphaNumericUpDown.Name = "maxAlphaNumericUpDown"; + this.maxAlphaNumericUpDown.Size = new Size(55, 20); + this.maxAlphaNumericUpDown.TabIndex = 27; + this.maxAlphaNumericUpDown.Value = new decimal(new int[4] + { + 150, + 0, + 0, + 0 + }); + this.maxAlphaNumericUpDown.ValueChanged += this.maxAlphaNumericUpDown_ValueChanged; + this.minAlphaNumericUpDown.Location = new Point(112, 180); + this.minAlphaNumericUpDown.Maximum = new decimal(new int[4] + { + 255, + 0, + 0, + 0 + }); + this.minAlphaNumericUpDown.Minimum = new decimal(new int[4] + { + 1, + 0, + 0, + 0 + }); + this.minAlphaNumericUpDown.Name = "minAlphaNumericUpDown"; + this.minAlphaNumericUpDown.Size = new Size(55, 20); + this.minAlphaNumericUpDown.TabIndex = 28; + this.minAlphaNumericUpDown.Value = new decimal(new int[4] + { + 10, + 0, + 0, + 0 + }); + this.minAlphaNumericUpDown.ValueChanged += this.minAlphaNumericUpDown_ValueChanged; + this.label6.AutoSize = true; + this.label6.Location = new Point(173, 182); + this.label6.Name = "label6"; + this.label6.Size = new Size(29, 13); + this.label6.TabIndex = 29; + this.label6.Text = "max."; + this.debugCheckBox.AutoSize = true; + this.debugCheckBox.Location = new Point(6, 158); + this.debugCheckBox.Name = "debugCheckBox"; + this.debugCheckBox.Size = new Size(106, 17); + this.debugCheckBox.TabIndex = 24; + this.debugCheckBox.Text = "Show debug info"; + this.debugCheckBox.UseVisualStyleBackColor = true; + this.debugCheckBox.CheckedChanged += this.debugCheckBox_CheckedChanged; + this.label10.AutoSize = true; + this.label10.Location = new Point(6, 209); + this.label10.Name = "label10"; + this.label10.Size = new Size(87, 13); + this.label10.TabIndex = 37; + this.label10.Text = "Panview position"; + this.label10.Click += this.label10_Click; + this.pluginPositionComboBox.AutoCompleteCustomSource.AddRange(new string[3] + { + "Plugin panel", + "Main screen left", + "Main screen right" + }); + this.pluginPositionComboBox.FormattingEnabled = true; + this.pluginPositionComboBox.Items.AddRange(new object[4] + { + "Main screen up", + "Main screen down", + "Main screen left", + "Main screen right" + }); + this.pluginPositionComboBox.Location = new Point(97, 206); + this.pluginPositionComboBox.Name = "pluginPositionComboBox"; + this.pluginPositionComboBox.Size = new Size(105, 21); + this.pluginPositionComboBox.TabIndex = 36; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + this.AutoSize = true; + base.AutoSizeMode = AutoSizeMode.GrowAndShrink; + base.ClientSize = new Size(391, 285); + base.ControlBox = false; + base.Controls.Add(this.groupBox2); + base.Controls.Add(this.okButton); + base.FormBorderStyle = FormBorderStyle.FixedToolWindow; + base.Name = "DialogConfigure"; + base.ShowIcon = false; + base.ShowInTaskbar = false; + this.Text = "Configure scanner"; + ((ISupportInitialize)this.LockIntervalNumericUpDown).EndInit(); + ((ISupportInitialize)this.activityNumericUpDown).EndInit(); + ((ISupportInitialize)this.autoClearIntervalNumericUpDown).EndInit(); + ((ISupportInitialize)this.skipIntervalNumericUpDown).EndInit(); + ((ISupportInitialize)this.unMuteNumericUpDown).EndInit(); + this.groupBox2.ResumeLayout(false); + this.groupBox2.PerformLayout(); + ((ISupportInitialize)this.maxAlphaNumericUpDown).EndInit(); + ((ISupportInitialize)this.minAlphaNumericUpDown).EndInit(); + base.ResumeLayout(false); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogConfigure.resx b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogConfigure.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogConfigure.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogEditRange.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogEditRange.cs new file mode 100644 index 0000000..15d9058 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogEditRange.cs @@ -0,0 +1,303 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.FrequencyScanner +{ + public class DialogEditRange : Form + { + private List _memoryEntryFrequencyRange; + + private readonly SortableBindingList _displayedEntries = new SortableBindingList(); + + private IContainer components; + + private DataGridView editRangeDataGridView; + + private Button cancelButton; + + private Button okButton; + + private Button deleteRangeButton; + + private BindingSource editRangeBindingSource; + + private DataGridViewTextBoxColumn rangeNameDataGridViewTextBoxColumn; + + private DataGridViewTextBoxColumn startFrequencyDataGridViewTextBoxColumn; + + private DataGridViewTextBoxColumn endFrequencyDataGridViewTextBoxColumn; + + private DataGridViewTextBoxColumn rangeDetectorTypeDataGridViewTextBoxColumn; + + private DataGridViewTextBoxColumn FilterBandwidth; + + private DataGridViewTextBoxColumn StepSize; + + public DialogEditRange() + { + this.InitializeComponent(); + this.editRangeBindingSource.DataSource = this._displayedEntries; + this.editRangeDataGridView.CellEndEdit += this.ValidateForm; + this.editRangeDataGridView.CellBeginEdit += this.FormBegiEdit; + } + + private void FormBegiEdit(object sender, DataGridViewCellCancelEventArgs e) + { + this.okButton.Enabled = false; + } + + public List EditRange(List memoryEntry) + { + this._memoryEntryFrequencyRange = memoryEntry; + if (this._memoryEntryFrequencyRange != null) + { + foreach (MemoryEntryFrequencyRange item in this._memoryEntryFrequencyRange) + { + this._displayedEntries.Add(item); + } + } + return this._memoryEntryFrequencyRange; + } + + private void editRangeDataGridView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) + { + } + + private string GetFrequencyDisplay(long frequency) + { + long num = Math.Abs(frequency); + if (num == 0L) + { + return "DC"; + } + if (num > 1500000000) + { + return $"{(double)frequency / 1000000000.0:#,0.000 000} GHz"; + } + if (num > 30000000) + { + return $"{(double)frequency / 1000000.0:0,0.000###} MHz"; + } + if (num > 1000) + { + return $"{(double)frequency / 1000.0:#,#.###} kHz"; + } + return frequency.ToString(); + } + + private void okButton_Click(object sender, EventArgs e) + { + if (this.editRangeBindingSource != null) + { + this._memoryEntryFrequencyRange.Clear(); + foreach (MemoryEntryFrequencyRange item in this.editRangeBindingSource) + { + this._memoryEntryFrequencyRange.Add(item); + } + } + base.DialogResult = DialogResult.OK; + } + + private void ValidateForm(object sender, DataGridViewCellEventArgs e) + { + bool flag = true; + foreach (MemoryEntryFrequencyRange item in this.editRangeBindingSource) + { + int row = this.editRangeBindingSource.IndexOf(item); + bool flag2 = item.RangeName != null && !"".Equals(item.RangeName.Trim()); + this.IndicateErrorCells(0, row, flag2); + bool flag3 = item.StartFrequency < item.EndFrequency && item.StartFrequency != 0L && item.EndFrequency != 0; + this.IndicateErrorCells(1, row, flag3); + this.IndicateErrorCells(2, row, flag3); + bool flag4 = item.FilterBandwidth != 0; + this.IndicateErrorCells(4, row, flag4); + bool flag5 = item.StepSize != 0; + this.IndicateErrorCells(5, row, flag5); + flag = (flag & flag2 & flag3 & flag4 & flag5); + } + this.okButton.Enabled = flag; + } + + private void IndicateErrorCells(int collumn, int row, bool valid) + { + if (valid) + { + this.editRangeDataGridView[collumn, row].Style.BackColor = this.editRangeDataGridView.DefaultCellStyle.BackColor; + } + else + { + this.editRangeDataGridView[collumn, row].Style.BackColor = Color.LightPink; + } + } + + private void cancelButton_Click(object sender, EventArgs e) + { + base.DialogResult = DialogResult.Cancel; + } + + private void deleteRangeButton_Click(object sender, EventArgs e) + { + if (this.editRangeBindingSource.IndexOf(this.editRangeBindingSource.Current) > -1) + { + this.editRangeBindingSource.RemoveCurrent(); + this.ValidateForm(null, null); + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + DataGridViewCellStyle dataGridViewCellStyle = new DataGridViewCellStyle(); + DataGridViewCellStyle dataGridViewCellStyle2 = new DataGridViewCellStyle(); + DataGridViewCellStyle dataGridViewCellStyle3 = new DataGridViewCellStyle(); + DataGridViewCellStyle dataGridViewCellStyle4 = new DataGridViewCellStyle(); + DataGridViewCellStyle dataGridViewCellStyle5 = new DataGridViewCellStyle(); + DataGridViewCellStyle dataGridViewCellStyle6 = new DataGridViewCellStyle(); + this.editRangeDataGridView = new DataGridView(); + this.rangeNameDataGridViewTextBoxColumn = new DataGridViewTextBoxColumn(); + this.startFrequencyDataGridViewTextBoxColumn = new DataGridViewTextBoxColumn(); + this.endFrequencyDataGridViewTextBoxColumn = new DataGridViewTextBoxColumn(); + this.rangeDetectorTypeDataGridViewTextBoxColumn = new DataGridViewTextBoxColumn(); + this.FilterBandwidth = new DataGridViewTextBoxColumn(); + this.StepSize = new DataGridViewTextBoxColumn(); + this.editRangeBindingSource = new BindingSource(this.components); + this.cancelButton = new Button(); + this.okButton = new Button(); + this.deleteRangeButton = new Button(); + ((ISupportInitialize)this.editRangeDataGridView).BeginInit(); + ((ISupportInitialize)this.editRangeBindingSource).BeginInit(); + base.SuspendLayout(); + this.editRangeDataGridView.AutoGenerateColumns = false; + this.editRangeDataGridView.Columns.AddRange(this.rangeNameDataGridViewTextBoxColumn, this.startFrequencyDataGridViewTextBoxColumn, this.endFrequencyDataGridViewTextBoxColumn, this.rangeDetectorTypeDataGridViewTextBoxColumn, this.FilterBandwidth, this.StepSize); + this.editRangeDataGridView.DataSource = this.editRangeBindingSource; + this.editRangeDataGridView.Location = new Point(15, 15); + this.editRangeDataGridView.Margin = new Padding(4, 4, 4, 4); + this.editRangeDataGridView.MultiSelect = false; + this.editRangeDataGridView.Name = "editRangeDataGridView"; + this.editRangeDataGridView.RowHeadersVisible = false; + this.editRangeDataGridView.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing; + this.editRangeDataGridView.SelectionMode = DataGridViewSelectionMode.CellSelect; + this.editRangeDataGridView.ShowEditingIcon = false; + this.editRangeDataGridView.ShowRowErrors = false; + this.editRangeDataGridView.Size = new Size(912, 351); + this.editRangeDataGridView.TabIndex = 0; + this.rangeNameDataGridViewTextBoxColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; + this.rangeNameDataGridViewTextBoxColumn.DataPropertyName = "RangeName"; + dataGridViewCellStyle.Alignment = DataGridViewContentAlignment.MiddleLeft; + this.rangeNameDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle; + this.rangeNameDataGridViewTextBoxColumn.HeaderText = "Name"; + this.rangeNameDataGridViewTextBoxColumn.MinimumWidth = 110; + this.rangeNameDataGridViewTextBoxColumn.Name = "rangeNameDataGridViewTextBoxColumn"; + this.startFrequencyDataGridViewTextBoxColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.None; + this.startFrequencyDataGridViewTextBoxColumn.DataPropertyName = "StartFrequency"; + dataGridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleRight; + dataGridViewCellStyle2.Format = "N0"; + dataGridViewCellStyle2.NullValue = null; + this.startFrequencyDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle2; + this.startFrequencyDataGridViewTextBoxColumn.HeaderText = "Start"; + this.startFrequencyDataGridViewTextBoxColumn.MinimumWidth = 80; + this.startFrequencyDataGridViewTextBoxColumn.Name = "startFrequencyDataGridViewTextBoxColumn"; + this.startFrequencyDataGridViewTextBoxColumn.Resizable = DataGridViewTriState.True; + this.endFrequencyDataGridViewTextBoxColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.None; + this.endFrequencyDataGridViewTextBoxColumn.DataPropertyName = "EndFrequency"; + dataGridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleRight; + dataGridViewCellStyle3.Format = "N0"; + dataGridViewCellStyle3.NullValue = null; + this.endFrequencyDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle3; + this.endFrequencyDataGridViewTextBoxColumn.HeaderText = "End"; + this.endFrequencyDataGridViewTextBoxColumn.MinimumWidth = 80; + this.endFrequencyDataGridViewTextBoxColumn.Name = "endFrequencyDataGridViewTextBoxColumn"; + this.rangeDetectorTypeDataGridViewTextBoxColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.None; + this.rangeDetectorTypeDataGridViewTextBoxColumn.DataPropertyName = "RangeDetectorType"; + dataGridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleRight; + dataGridViewCellStyle4.NullValue = null; + this.rangeDetectorTypeDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle4; + this.rangeDetectorTypeDataGridViewTextBoxColumn.FillWeight = 10f; + this.rangeDetectorTypeDataGridViewTextBoxColumn.HeaderText = "Detector"; + this.rangeDetectorTypeDataGridViewTextBoxColumn.MinimumWidth = 60; + this.rangeDetectorTypeDataGridViewTextBoxColumn.Name = "rangeDetectorTypeDataGridViewTextBoxColumn"; + this.rangeDetectorTypeDataGridViewTextBoxColumn.Resizable = DataGridViewTriState.False; + this.rangeDetectorTypeDataGridViewTextBoxColumn.Width = 60; + this.FilterBandwidth.AutoSizeMode = DataGridViewAutoSizeColumnMode.None; + this.FilterBandwidth.DataPropertyName = "FilterBandwidth"; + dataGridViewCellStyle5.Alignment = DataGridViewContentAlignment.MiddleRight; + dataGridViewCellStyle5.Format = "N0"; + dataGridViewCellStyle5.NullValue = null; + this.FilterBandwidth.DefaultCellStyle = dataGridViewCellStyle5; + this.FilterBandwidth.HeaderText = "Bandwidth"; + this.FilterBandwidth.Name = "FilterBandwidth"; + this.FilterBandwidth.Width = 80; + this.StepSize.AutoSizeMode = DataGridViewAutoSizeColumnMode.None; + this.StepSize.DataPropertyName = "StepSize"; + dataGridViewCellStyle6.Alignment = DataGridViewContentAlignment.MiddleRight; + dataGridViewCellStyle6.Format = "N0"; + dataGridViewCellStyle6.NullValue = null; + this.StepSize.DefaultCellStyle = dataGridViewCellStyle6; + this.StepSize.HeaderText = "Step size"; + this.StepSize.Name = "StepSize"; + this.StepSize.Width = 80; + this.editRangeBindingSource.DataSource = typeof(MemoryEntryFrequencyRange); + this.cancelButton.DialogResult = DialogResult.Cancel; + this.cancelButton.Location = new Point(833, 372); + this.cancelButton.Margin = new Padding(4, 4, 4, 4); + this.cancelButton.Name = "cancelButton"; + this.cancelButton.Size = new Size(100, 28); + this.cancelButton.TabIndex = 1; + this.cancelButton.Text = "Cancel"; + this.cancelButton.UseVisualStyleBackColor = true; + this.cancelButton.Click += this.cancelButton_Click; + this.okButton.Location = new Point(725, 372); + this.okButton.Margin = new Padding(4, 4, 4, 4); + this.okButton.Name = "okButton"; + this.okButton.Size = new Size(100, 28); + this.okButton.TabIndex = 2; + this.okButton.Text = "Ok"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += this.okButton_Click; + this.deleteRangeButton.Location = new Point(15, 370); + this.deleteRangeButton.Margin = new Padding(4, 4, 4, 4); + this.deleteRangeButton.Name = "deleteRangeButton"; + this.deleteRangeButton.Size = new Size(100, 28); + this.deleteRangeButton.TabIndex = 3; + this.deleteRangeButton.Text = "Delete rows"; + this.deleteRangeButton.UseVisualStyleBackColor = true; + this.deleteRangeButton.Click += this.deleteRangeButton_Click; + base.AcceptButton = this.okButton; + base.AutoScaleDimensions = new SizeF(8f, 16f); + base.AutoScaleMode = AutoScaleMode.Font; + this.AutoSize = true; + base.AutoSizeMode = AutoSizeMode.GrowAndShrink; + this.BackColor = SystemColors.Control; + base.CancelButton = this.cancelButton; + base.ClientSize = new Size(932, 407); + base.ControlBox = false; + base.Controls.Add(this.deleteRangeButton); + base.Controls.Add(this.okButton); + base.Controls.Add(this.cancelButton); + base.Controls.Add(this.editRangeDataGridView); + base.FormBorderStyle = FormBorderStyle.FixedSingle; + base.Margin = new Padding(4, 4, 4, 4); + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "DialogEditRange"; + base.ShowIcon = false; + base.ShowInTaskbar = false; + this.Text = "Edit Range"; + ((ISupportInitialize)this.editRangeDataGridView).EndInit(); + ((ISupportInitialize)this.editRangeBindingSource).EndInit(); + base.ResumeLayout(false); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogEditRange.resx b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogEditRange.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/DialogEditRange.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.cs new file mode 100644 index 0000000..8020df2 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.cs @@ -0,0 +1,2378 @@ +using SDRSharp.Common; +using SDRSharp.Radio; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Globalization; +using System.Threading; +using System.Timers; +using System.Windows.Forms; + +namespace SDRSharp.FrequencyScanner +{ + public class FrequencyScannerPanel : UserControl + { + private enum ScanState + { + SetScreen, + PauseToSet, + ScanScreen, + ScanStop + } + + private class CenterFrequencyEntry + { + public long CenterFrequency + { + get; + set; + } + + public int StartFrequencyIndex + { + get; + set; + } + + public int EndFrequencyIndex + { + get; + set; + } + } + + private class IControlParameters + { + private bool _audioIsMuted; + + private bool _audioNeedUpdate; + + private long _centerFrequency; + + private bool _centerNeedUpdate; + + private long _frequency; + + private bool _frequencyNeedUpdate; + + private DetectorType _detectorType; + + private bool _detectorNeedUpdate; + + private int _filterBandwidth; + + private bool _filterNeedUpdate; + + private int _rfBandwidth; + + private bool _isChanged; + + public bool AudioIsMuted + { + get + { + return this._audioIsMuted; + } + set + { + this._audioIsMuted = value; + this._audioNeedUpdate = true; + this._isChanged = true; + } + } + + public bool AudioNeedUpdate => this._audioNeedUpdate; + + public long CenterFrequency + { + get + { + return this._centerFrequency; + } + set + { + this._centerFrequency = value; + this._centerNeedUpdate = true; + this._isChanged = true; + } + } + + public bool CenterNeedUpdate => this._centerNeedUpdate; + + public long Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = value; + this._frequencyNeedUpdate = true; + this._isChanged = true; + } + } + + public bool FrequencyNeedUpdate => this._frequencyNeedUpdate; + + public DetectorType DetectorType + { + get + { + return this._detectorType; + } + set + { + this._detectorType = value; + this._detectorNeedUpdate = true; + this._isChanged = true; + } + } + + public bool DetectorNeedUpdate => this._detectorNeedUpdate; + + public int FilterBandwidth + { + get + { + return this._filterBandwidth; + } + set + { + this._filterBandwidth = value; + this._filterNeedUpdate = true; + this._isChanged = true; + } + } + + public bool FilterNeedUpdate => this._filterNeedUpdate; + + public int RfBandwidth + { + get + { + return this._rfBandwidth; + } + set + { + this._rfBandwidth = value; + } + } + + public bool IsChanged => this._isChanged; + + public void ResetFlags() + { + this._audioNeedUpdate = false; + this._centerNeedUpdate = false; + this._detectorNeedUpdate = false; + this._filterNeedUpdate = false; + this._frequencyNeedUpdate = false; + this._isChanged = false; + } + } + + private enum Buttons + { + None, + SNRUp, + SNRDown, + HystUp, + HystDown + } + + private ISharpControl _controlInterface; + + private IFProcessor _ifProcessor; + + private ChannelAnalyzer _channelAnalyzer; + + private readonly SortableBindingList _displayedEntries = new SortableBindingList(); + + private readonly List _entriesNewFrequency; + + private List _entriesInManager; + + private List _enteriesFrequencyRange; + + private MemoryEntryNewSkipAndRangeFrequency _newSkipAndRange; + + private List _skipFrequencyList; + + private readonly SettingsPersister _settingsPersister; + + private List _newActiveFrequencies; + + private List _channelList; + + private int _currentStartIndex; + + private int _currentEndIndex; + + private int _currentScreenIndex; + + private bool _isPlayed; + + private bool _isActivePlaedFrequency; + + private bool _scanMemory; + + private bool _scanWidthStoreNew; + + private bool _scanExceptMemory; + + private ScanState _state; + + private float _interval; + + private float _pauseAfter; + + private bool _changeFrequencyInScanner; + + private bool _timeToClean; + + private System.Timers.Timer _autoSkipTimer; + + private System.Timers.Timer _autoLockTimer; + + private const int FFTBins = 32768; + + private int _fftBins; + + private UnsafeBuffer _fftBuffer; + + private unsafe Complex* _fftPtr; + + private UnsafeBuffer _fftWindow; + + private unsafe float* _fftWindowPtr; + + private UnsafeBuffer _unScaledFFTSpectrum; + + private unsafe float* _unScaledFFTSpectrumPtr; + + private UnsafeBuffer _scaledFFTSpectrum; + + private unsafe float* _scaledFFTSpectrumPtr; + + private readonly SharpEvent _bufferEvent = new SharpEvent(false); + + private readonly SharpEvent _scannerEvent = new SharpEvent(false); + + private float _timeConstant; + + private int _squelchCount; + + private int _count; + + private bool _scanProcessIsWork; + + private List _centerFrequncyList; + + private float _usableSpectrum; + + private bool _requestToStopScanner; + + private bool _directionReverse; + + private List _activeFrequencies; + + private IControlParameters _controlParameters = new IControlParameters(); + + private int _writePos; + + private Thread _scannerThread; + + private bool _scannerRunning; + + private bool _needUpdateParametrs; + + private int _scanLevel; + + private int _hysteresis; + + private bool _pauseScan; + + private bool _nextButtonPress; + + private bool _direction; + + private int _detect; + + private int _pauseToNextScreen; + + private int _debugCounter; + + private int _debugTime; + + private double _bufferLengthInMs; + + private TuningStyle _tuningStyleTemp; + + private float _tuningLimitTemp; + + private bool _hotTrackNeeded; + + private bool _selectFrequency; + + private int _trackingX; + + private int _trackingY; + + private int _startSelectX; + + private int _endSelectX; + + private int _oldX; + + private int _trackingIndex; + + private long _trackingFrequency; + + private int _oldIndex; + + private long _oldFrequency; + + private int _startSelectIndex; + + private int _endSelectIndex; + + public bool AutoSkipEnabled; + + public int AutoSkipInterval; + + public bool AutoLockEnabled; + + public int AutoLockInterval; + + public bool AutoClearEnabled; + + public float AutoClearActivityLevel; + + public int AutoClearInterval; + + public bool ChannelDetectMetod; + + public bool UseMute; + + public int UnMuteDelay; + + public float UsableSpectrum; + + public bool MaxLevelSelect; + + public bool ShowDebugInfo; + + public int MaxButtonsAlpha; + + public int MinButtonsAlpha; + + public int ScannerPluginPosition; + + private Rectangle _reverseRectangle; + + private Rectangle _forwardRectangle; + + private Rectangle _pauseRectangle; + + private Rectangle _lockRectangle; + + private Rectangle _unlockRectangle; + + private Rectangle _snrPlusRectangle; + + private Rectangle _snrMinusRectangle; + + private Rectangle _histPlusRectangle; + + private Rectangle _histMinusRectangle; + + private int _bright; + + private string _infoText; + + private int _filterWidth; + + private float _iavg; + + private Buttons _buttons; + + private bool _frequencyIsChanged; + + private bool _centerFrequencyIsChanged; + + private IContainer components; + + private ToolStrip mainToolStrip; + + private ToolStripButton btnNewEntry; + + private ToolStripButton btnDelete; + + private DataGridView frequencyDataGridView; + + private ComboBox scanModeComboBox; + + private BindingSource memoryEntryBindingSource; + + private Button ScanButton; + + private Button FrequencyRangeEditButton; + + private System.Windows.Forms.Timer newFrequencyDisplayUpdateTimer; + + private Button configureButton; + + private System.Windows.Forms.Timer autoCleanTimer; + + private Label timeConstantLabel; + + private System.Windows.Forms.Timer testDisplayTimer; + + private DataGridViewTextBoxColumn Activity; + + private DataGridViewTextBoxColumn frequencyDataGridViewTextBoxColumn; + + private ListBox frequencyRangeListBox; + + private TableLayoutPanel tableLayoutPanel1; + + private System.Windows.Forms.Timer iControlsUpdateTimer; + + private System.Windows.Forms.Timer refreshTimer; + + private Label label1; + + private Label label2; + + private NumericUpDown detectNumericUpDown; + + private NumericUpDown waitNumericUpDown; + + private System.Windows.Forms.Timer buttonsRepeaterTimer; + + public unsafe FrequencyScannerPanel(ISharpControl control) + { + this.InitializeComponent(); + this._controlInterface = control; + this._controlInterface.PropertyChanged += this.PropertyChangedHandler; + this._ifProcessor = new IFProcessor(); + this._controlInterface.RegisterStreamHook(this._ifProcessor, ProcessorType.RawIQ); + this._ifProcessor.Enabled = false; + this._ifProcessor.IQReady += this.FastBufferAvailable; + this._fftBins = 32768; + this.InitFFTBuffers(); + this.BuildFFTWindow(); + this._settingsPersister = new SettingsPersister(); + this._newSkipAndRange = this._settingsPersister.ReadStored(); + this._entriesInManager = this._settingsPersister.ReadStoredFrequencies(); + this._entriesNewFrequency = this._newSkipAndRange.NewFrequency; + this._enteriesFrequencyRange = this._newSkipAndRange.FrequencyRange; + this._skipFrequencyList = this._newSkipAndRange.SkipFrequencyArray; + this.memoryEntryBindingSource.DataSource = this._displayedEntries; + this.ProcessRangeName(); + int[] intArraySetting = Utils.GetIntArraySetting("FrequencyRangeIndexes", null); + if (intArraySetting != null && intArraySetting.Length != 0) + { + for (int i = 0; i < intArraySetting.Length; i++) + { + if (intArraySetting[i] < this._enteriesFrequencyRange.Count) + { + this.frequencyRangeListBox.SetSelected(intArraySetting[i], true); + } + } + } + int num = Utils.GetIntSetting("ScanModeIndex", 0); + if (num >= this.scanModeComboBox.Items.Count) + { + num = 0; + } + this.scanModeComboBox.SelectedIndex = num; + this.scanModeComboBox_SelectedIndexChanged(null, null); + this.InitDisplayEntry(); + this.ScanButton.Enabled = false; + this.AutoSkipEnabled = Utils.GetBooleanSetting("AutoSkipEnabled"); + this.AutoSkipInterval = Utils.GetIntSetting("AutoSkipIntervalInSec", 30); + this.AutoLockEnabled = Utils.GetBooleanSetting("AutoLockEnabled"); + this.AutoLockInterval = Utils.GetIntSetting("AutoLockIntervalInSec", 60); + this.AutoClearEnabled = Utils.GetBooleanSetting("AutoClearEnabled"); + this.AutoClearActivityLevel = (float)Utils.GetDoubleSetting("AutoClearActivityLevel", 1.0); + this.AutoClearInterval = Utils.GetIntSetting("AutoClearIntervalInSec", 10); + this.ChannelDetectMetod = Utils.GetBooleanSetting("ChannelDetectOnCenterFrequency"); + this.UseMute = Utils.GetBooleanSetting("ScannerUseAudioMute"); + this.UnMuteDelay = Utils.GetIntSetting("ScannerUnMuteDelay", 5); + this._detect = Utils.GetIntSetting("ScannerDetect", 100); + this.detectNumericUpDown.Value = this._detect; + this.MaxLevelSelect = Utils.GetBooleanSetting("ScannerMaxSelect"); + this._pauseToNextScreen = Utils.GetIntSetting("PauseToNextScreenInMs", 2000); + this.waitNumericUpDown.Value = (decimal)((float)this._pauseToNextScreen / 1000f); + this._hysteresis = Utils.GetIntSetting("ScannerHysteresis", 10); + this._scanLevel = Utils.GetIntSetting("ScanLevel", 30); + this.MaxButtonsAlpha = Utils.GetIntSetting("ScannerButtonsMaxAlpha", 150); + this.MinButtonsAlpha = Utils.GetIntSetting("ScannerButtonsMinAlpha", 40); + this.ScannerPluginPosition = Utils.GetIntSetting("ScannerPluginPosition", 1); + this._autoLockTimer = new System.Timers.Timer(); + this._autoLockTimer.AutoReset = true; + this._autoLockTimer.Elapsed += this.AutoLock_Tick; + this._autoSkipTimer = new System.Timers.Timer(); + this._autoSkipTimer.AutoReset = true; + this._autoSkipTimer.Elapsed += this.AutoSkip_Tick; + this._state = ScanState.ScanStop; + this._channelAnalyzer = new ChannelAnalyzer(); + this._controlInterface.RegisterFrontControl((UserControl)this._channelAnalyzer, this.ScannerPluginPosition); + this._channelAnalyzer.Visible = false; + this._channelAnalyzer.CustomPaint += this._channelAnalyzer_CustomPaint; + this._channelAnalyzer.MouseMove += this._channelAnalyzer_MouseMove; + this._channelAnalyzer.MouseDown += this._channelAnalyzer_MouseDown; + this._channelAnalyzer.MouseUp += this._channelAnalyzer_MouseUp; + this._channelAnalyzer.MouseEnter += this._channelAnalyzer_MouseEnter; + this._channelAnalyzer.MouseLeave += this._channelAnalyzer_MouseLeave; + this._channelAnalyzer.MouseWheel += this._channelAnalyzer_MouseWheel; + } + + public void SaveSettings() + { + Utils.SaveSetting("ScanModeIndex", this.scanModeComboBox.SelectedIndex); + int[] array = new int[this.frequencyRangeListBox.SelectedIndices.Count]; + this.frequencyRangeListBox.SelectedIndices.CopyTo(array, 0); + Utils.SaveSetting("FrequencyRangeIndexes", Utils.IntArrayToString(array)); + Utils.SaveSetting("AutoSkipEnabled", this.AutoSkipEnabled); + Utils.SaveSetting("AutoSkipIntervalInSec", this.AutoSkipInterval); + Utils.SaveSetting("AutoLockEnabled", this.AutoLockEnabled); + Utils.SaveSetting("AutoLockIntervalInSec", this.AutoLockInterval); + Utils.SaveSetting("AutoClearEnabled", this.AutoClearEnabled); + Utils.SaveSetting("AutoClearActivityLevel", this.AutoClearActivityLevel); + Utils.SaveSetting("AutoClearIntervalInSec", this.AutoClearInterval); + Utils.SaveSetting("ChannelDetectOnCenterFrequency", this.ChannelDetectMetod); + Utils.SaveSetting("ScannerUseAudioMute", this.UseMute); + Utils.SaveSetting("ScannerUnMuteDelay", this.UnMuteDelay); + Utils.SaveSetting("ScannerDetect", this._detect); + Utils.SaveSetting("ScanLevel", this._scanLevel); + Utils.SaveSetting("PauseToNextScreenInMs", this._pauseToNextScreen); + Utils.SaveSetting("ScannerHysteresis", this._hysteresis); + Utils.SaveSetting("ScannerMaxSelect", this.MaxLevelSelect); + Utils.SaveSetting("ScannerButtonsMaxAlpha", this.MaxButtonsAlpha); + Utils.SaveSetting("ScannerButtonsMinAlpha", this.MinButtonsAlpha); + Utils.SaveSetting("ScannerPluginPosition", this.ScannerPluginPosition); + } + + private void StoreEntry() + { + if (this.memoryEntryBindingSource != null) + { + this._entriesNewFrequency.Clear(); + foreach (MemoryEntryNewFrequency item in this.memoryEntryBindingSource) + { + this._entriesNewFrequency.Add(item); + } + this._entriesNewFrequency.Sort((MemoryEntryNewFrequency e1, MemoryEntryNewFrequency e2) => e1.Frequency.CompareTo(e2.Frequency)); + this.InitDisplayEntry(); + } + if (this._channelList != null) + { + for (int i = 0; i < this._channelList.Count; i++) + { + bool flag = this._channelList[i].Skipped; + int num = 0; + while (num < this._skipFrequencyList.Count) + { + if (this._channelList[i].Frequency != this._skipFrequencyList[num]) + { + num++; + continue; + } + if (!this._channelList[i].Skipped) + { + this._skipFrequencyList.RemoveAt(num); + } + flag = false; + break; + } + if (flag) + { + this._skipFrequencyList.Add(this._channelList[i].Frequency); + } + } + } + this._newSkipAndRange.NewFrequency = this._entriesNewFrequency; + this._newSkipAndRange.SkipFrequencyArray = this._skipFrequencyList; + this._newSkipAndRange.FrequencyRange = this._enteriesFrequencyRange; + this._settingsPersister.PersistStored(this._newSkipAndRange); + } + + private void PropertyChangedHandler(object sender, PropertyChangedEventArgs e) + { + string propertyName = e.PropertyName; + switch (propertyName) + { + default: + if (propertyName == "CenterFrequency") + { + this._centerFrequencyIsChanged = true; + } + break; + case "StartRadio": + this.ScanButton.Enabled = true; + break; + case "StopRadio": + if (this._state != ScanState.ScanStop) + { + this.ScanStop(); + } + this.ScanButton.Enabled = false; + break; + case "Frequency": + if (!this._changeFrequencyInScanner && this._state != ScanState.ScanStop) + { + this._channelAnalyzer.Frequency = this._controlInterface.Frequency; + } + this._frequencyIsChanged = true; + break; + } + } + + private void configureButton_Click(object sender, EventArgs e) + { + new DialogConfigure(this).ShowDialog(); + } + + private void detectNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._detect = (int)this.detectNumericUpDown.Value; + } + + private void waitNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._pauseToNextScreen = (int)(this.waitNumericUpDown.Value * 1000m); + } + + private void scanModeComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + switch (this.scanModeComboBox.SelectedIndex) + { + case 0: + this._scanWidthStoreNew = true; + this._scanMemory = false; + this._scanExceptMemory = false; + break; + case 1: + this._scanWidthStoreNew = false; + this._scanMemory = false; + this._scanExceptMemory = false; + break; + case 2: + this._scanWidthStoreNew = false; + this._scanMemory = true; + this._scanExceptMemory = false; + break; + case 3: + this._scanWidthStoreNew = true; + this._scanMemory = false; + this._scanExceptMemory = true; + break; + } + } + + private static string GetFrequencyDisplay(long frequency) + { + long num = Math.Abs(frequency); + if (num == 0L) + { + return "DC"; + } + if (num > 1500000000) + { + return $"{(double)frequency / 1000000000.0:#,0.000 000} GHz"; + } + if (num > 30000000) + { + return $"{(double)frequency / 1000000.0:0,0.000###} MHz"; + } + if (num > 1000) + { + return $"{(double)frequency / 1000.0:#,#.###} kHz"; + } + return frequency.ToString(); + } + + private void InitDisplayEntry() + { + this.memoryEntryBindingSource.Clear(); + this._displayedEntries.Clear(); + if (this._entriesNewFrequency != null) + { + foreach (MemoryEntryNewFrequency item in this._entriesNewFrequency) + { + this._displayedEntries.Add(item); + } + } + } + + private void AddNewFrequencyEntry(long frequency) + { + MemoryEntryNewFrequency memoryEntryNewFrequency = new MemoryEntryNewFrequency(); + memoryEntryNewFrequency.Frequency = frequency; + memoryEntryNewFrequency.Activity = this._timeConstant * 0.001f; + memoryEntryNewFrequency.CenterFrequency = this._controlInterface.CenterFrequency; + this._displayedEntries.Add(memoryEntryNewFrequency); + } + + private void frequencyDataGridView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) + { + if (this.frequencyDataGridView.Columns[e.ColumnIndex].DataPropertyName == "Frequency" && e.Value != null) + { + long frequency = (long)e.Value; + e.Value = FrequencyScannerPanel.GetFrequencyDisplay(frequency); + e.FormattingApplied = true; + } + } + + private void frequencyDataGridView_CellDoubleClick(object sender, DataGridViewCellEventArgs e) + { + this.Navigate(); + } + + private void frequencyDataGridView_SelectionChanged(object sender, EventArgs e) + { + this.btnDelete.Enabled = (this.frequencyDataGridView.SelectedRows.Count > 0); + } + + private void frequencyDataGridView_KeyDown(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.Return) + { + this.Navigate(); + e.Handled = true; + } + } + + private void btnClearEntry_Click(object sender, EventArgs e) + { + this._entriesNewFrequency.Clear(); + this._newSkipAndRange.NewFrequency = this._entriesNewFrequency; + this._displayedEntries.Clear(); + if (this._state == ScanState.ScanStop) + { + this._settingsPersister.PersistStored(this._newSkipAndRange); + } + } + + private void btnDelete_Click(object sender, EventArgs e) + { + int num = this.frequencyDataGridView.SelectedRows.Count; + while (num > 0 && this.memoryEntryBindingSource.Count > 0) + { + MemoryEntryNewFrequency item = (MemoryEntryNewFrequency)this.memoryEntryBindingSource.Current; + this._displayedEntries.Remove(item); + num--; + } + } + + public void Navigate() + { + if (this._controlInterface.IsPlaying) + { + int num = (this.frequencyDataGridView.SelectedCells.Count > 0) ? this.frequencyDataGridView.SelectedCells[0].RowIndex : (-1); + if (num != -1) + { + try + { + MemoryEntryNewFrequency memoryEntryNewFrequency = (MemoryEntryNewFrequency)this.memoryEntryBindingSource.List[num]; + this._changeFrequencyInScanner = true; + this._controlInterface.CenterFrequency = memoryEntryNewFrequency.CenterFrequency; + this._controlInterface.Frequency = memoryEntryNewFrequency.Frequency; + this._changeFrequencyInScanner = false; + } + catch (Exception ex) + { + MessageBox.Show(this, ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand); + } + } + } + } + + private void UpdateNewFrequencyDisplay() + { + if (this._newActiveFrequencies.Count > 0) + { + do + { + bool flag = true; + if (this.memoryEntryBindingSource.Count > 0) + { + foreach (MemoryEntryNewFrequency item in this.memoryEntryBindingSource) + { + if (item.Frequency == this._newActiveFrequencies[0]) + { + item.Activity += this._timeConstant * 0.001f; + this.memoryEntryBindingSource.ResetItem(this.memoryEntryBindingSource.IndexOf(item)); + flag = false; + break; + } + } + } + if (flag) + { + this.AddNewFrequencyEntry(this._newActiveFrequencies[0]); + } + this._newActiveFrequencies.RemoveAt(0); + } + while (this._newActiveFrequencies.Count > 0); + } + if (this.memoryEntryBindingSource.Count > 0) + { + for (int i = 0; i < this._channelList.Count; i++) + { + if (this._channelList[i].Skipped) + { + foreach (MemoryEntryNewFrequency item2 in this.memoryEntryBindingSource) + { + if (item2.Frequency == this._channelList[i].Frequency) + { + this.memoryEntryBindingSource.Remove(item2); + break; + } + } + if (this.memoryEntryBindingSource.Count == 0) + { + break; + } + } + } + if (this._timeToClean && this.memoryEntryBindingSource.Count > 0) + { + int position = this.memoryEntryBindingSource.Position; + this._timeToClean = false; + int num = 0; + while (num < this.memoryEntryBindingSource.Count) + { + if (((MemoryEntryNewFrequency)this.memoryEntryBindingSource[num]).Activity < this.AutoClearActivityLevel) + { + this.memoryEntryBindingSource.RemoveAt(num); + } + else + { + num++; + } + } + if (position < this.memoryEntryBindingSource.Count) + { + this.memoryEntryBindingSource.Position = position; + } + else if (this.memoryEntryBindingSource.Count > 0) + { + this.memoryEntryBindingSource.Position = this.memoryEntryBindingSource.Count - 1; + } + } + this.autoCleanTimer.Interval = this.AutoClearInterval * 1000; + this.autoCleanTimer.Enabled = this.AutoClearEnabled; + } + } + + private void ScanButton_Click(object sender, EventArgs e) + { + if (this.ScanButton.Text == "Scan" && this._controlInterface.IsPlaying) + { + this.ScanStart(); + } + else + { + this.ScanStop(); + } + } + + private void ScanStart() + { + //IL_0010: Unknown result type (might be due to invalid IL or missing references) + //IL_0015: Unknown result type (might be due to invalid IL or missing references) + if (this.CheckConditions()) + { + this._tuningStyleTemp = this._controlInterface.get_TuningStyle(); + this._controlInterface.set_TuningStyle(0); + this._tuningLimitTemp = this._controlInterface.get_TuningLimit(); + this._controlInterface.set_TuningLimit(0.5f); + this._entriesInManager = this._settingsPersister.ReadStoredFrequencies(); + this.frequencyRangeListBox.Enabled = false; + this.FrequencyRangeEditButton.Enabled = false; + this.scanModeComboBox.Enabled = false; + this.ScanButton.Text = "Stop scan"; + this._state = ScanState.SetScreen; + this._pauseScan = false; + this._usableSpectrum = (float)this._controlInterface.get_RFDisplayBandwidth() / (float)this._controlInterface.RFBandwidth; + this.CreateChannelList(); + this._currentScreenIndex = -1; + this._pauseAfter = 0f; + this._newActiveFrequencies = new List(); + this._activeFrequencies = new List(); + if (this._scanWidthStoreNew) + { + this.newFrequencyDisplayUpdateTimer.Enabled = true; + } + this._channelAnalyzer.Zoom = 0; + this._channelAnalyzer.ZoomPosition = 0; + this._channelAnalyzer.Visible = true; + this._autoSkipTimer.Interval = (double)(this.AutoSkipInterval * 1000); + this._autoSkipTimer.Enabled = this.AutoSkipEnabled; + this._autoLockTimer.Interval = (double)(this.AutoLockInterval * 1000); + this._autoLockTimer.Enabled = this.AutoLockEnabled; + this.autoCleanTimer.Interval = this.AutoClearInterval * 1000; + this.autoCleanTimer.Enabled = this.AutoClearEnabled; + if (this.UseMute) + { + this._controlInterface.set_AudioIsMuted(true); + } + this._scanProcessIsWork = false; + this._scannerThread = new Thread(this.ScanProcess); + this._scannerThread.Name = "Scanner Process"; + this._bufferEvent.Reset(); + this._scannerRunning = true; + this._scannerThread.Start(); + this.iControlsUpdateTimer.Enabled = true; + this._ifProcessor.Enabled = true; + } + } + + public void ScanStop() + { + //IL_00d0: Unknown result type (might be due to invalid IL or missing references) + if (!(this.ScanButton.Text == "Scan")) + { + this._state = ScanState.ScanStop; + this._ifProcessor.Enabled = false; + this._autoSkipTimer.Enabled = false; + this._autoLockTimer.Enabled = false; + this.autoCleanTimer.Enabled = false; + this.newFrequencyDisplayUpdateTimer.Enabled = false; + this._scannerRunning = false; + this._bufferEvent.Set(); + this._scannerThread.Join(); + if (this._scannerThread != null) + { + this._scannerThread = null; + } + this.iControlsUpdateTimer.Enabled = false; + this.StoreEntry(); + this._channelAnalyzer.Visible = false; + this.frequencyRangeListBox.Enabled = true; + this.FrequencyRangeEditButton.Enabled = true; + this.scanModeComboBox.Enabled = true; + this._controlInterface.set_TuningStyle(this._tuningStyleTemp); + this._controlInterface.set_TuningLimit(this._tuningLimitTemp); + if (this.UseMute) + { + this._controlInterface.set_AudioIsMuted(false); + } + this.ScanButton.Text = "Scan"; + } + } + + private void PanViewClose(object sender, FormClosingEventArgs e) + { + e.Cancel = true; + if (this._scannerRunning) + { + this._requestToStopScanner = true; + } + } + + private void CreateChannelList() + { + this._channelList = new List(); + this._centerFrequncyList = new List(); + int rFBandwidth = this._controlInterface.RFBandwidth; + int num = (int)((float)this._controlInterface.RFBandwidth * this._usableSpectrum); + int count = this.frequencyRangeListBox.SelectedIndices.Count; + int num2 = 0; + for (int i = 0; i < count; i++) + { + MemoryEntryFrequencyRange memoryEntryFrequencyRange = new MemoryEntryFrequencyRange(); + int num3 = this.frequencyRangeListBox.SelectedIndices[i]; + if (num3 < 1) + { + long num4 = this._controlInterface.CenterFrequency / this._controlInterface.get_StepSize() * this._controlInterface.get_StepSize(); + int stepSize = this._controlInterface.get_StepSize(); + int num5 = num / stepSize / 2 * 2; + memoryEntryFrequencyRange.StartFrequency = num4 - num5 / 2 * stepSize; + memoryEntryFrequencyRange.EndFrequency = num4 + num5 / 2 * stepSize; + memoryEntryFrequencyRange.FilterBandwidth = this._controlInterface.FilterBandwidth; + memoryEntryFrequencyRange.StepSize = stepSize; + memoryEntryFrequencyRange.RangeDetectorType = this._controlInterface.DetectorType; + } + else + { + memoryEntryFrequencyRange = this._enteriesFrequencyRange[num3 - 1]; + } + long startFrequency = memoryEntryFrequencyRange.StartFrequency; + long endFrequency = memoryEntryFrequencyRange.EndFrequency; + int num6 = memoryEntryFrequencyRange.FilterBandwidth; + int stepSize2 = memoryEntryFrequencyRange.StepSize; + if (num6 > stepSize2) + { + num6 = stepSize2; + } + int num7 = num / stepSize2 / 2 * 2; + long num8 = startFrequency; + int num9 = 0; + long centerFrequency = 0L; + for (; num8 <= endFrequency; num8 += stepSize2) + { + if (num9 > num7 || num9 == 0) + { + centerFrequency = (((endFrequency - num8) / stepSize2 > num7) ? (num8 + num7 / 2 * stepSize2) : ((num8 + endFrequency) / 2)); + CenterFrequencyEntry centerFrequencyEntry = new CenterFrequencyEntry(); + centerFrequencyEntry.CenterFrequency = centerFrequency; + centerFrequencyEntry.StartFrequencyIndex = num2; + this._centerFrequncyList.Add(centerFrequencyEntry); + num9 = 0; + } + int iFOffset = this._controlInterface.get_IFOffset(); + ChannelAnalizerMemoryEntry channelAnalizerMemoryEntry = new ChannelAnalizerMemoryEntry(); + channelAnalizerMemoryEntry.Frequency = num8; + channelAnalizerMemoryEntry.CenterFrequency = centerFrequency; + channelAnalizerMemoryEntry.FilterBandwidth = memoryEntryFrequencyRange.FilterBandwidth; + channelAnalizerMemoryEntry.StepSize = memoryEntryFrequencyRange.StepSize; + channelAnalizerMemoryEntry.DetectorType = memoryEntryFrequencyRange.RangeDetectorType; + channelAnalizerMemoryEntry.StartBins = this.FrequencyToBins(num8 - num6 / 2 - iFOffset, centerFrequency, rFBandwidth); + channelAnalizerMemoryEntry.EndBins = this.FrequencyToBins(num8 + num6 / 2 - iFOffset, centerFrequency, rFBandwidth); + this._channelList.Add(channelAnalizerMemoryEntry); + num2++; + num9++; + } + } + for (int j = 0; j < this._centerFrequncyList.Count - 1; j++) + { + this._centerFrequncyList[j].EndFrequencyIndex = this._centerFrequncyList[j + 1].StartFrequencyIndex - 1; + } + this._centerFrequncyList[this._centerFrequncyList.Count - 1].EndFrequencyIndex = this._channelList.Count - 1; + for (int k = 0; k < this._channelList.Count; k++) + { + long frequency = this._channelList[k].Frequency; + int filterBandwidth = this._channelList[k].FilterBandwidth; + if (this._skipFrequencyList != null) + { + int num10 = 0; + while (num10 < this._skipFrequencyList.Count) + { + if (this._skipFrequencyList[num10] != frequency) + { + num10++; + continue; + } + this._channelList[k].Skipped = true; + break; + } + } + if (this._entriesInManager != null) + { + foreach (MemoryEntry item in this._entriesInManager) + { + if (item.Frequency == frequency) + { + this._channelList[k].IsStore = true; + this._channelList[k].StoreName = item.GroupName + " " + item.Name; + break; + } + } + } + } + this._filterWidth = (this._channelList[0].EndBins - this._channelList[0].StartBins) * 2; + this._filterWidth |= 1; + } + + private bool CheckConditions() + { + if (this.frequencyRangeListBox.SelectedIndices.Count == 0) + { + this.frequencyRangeListBox.SelectedIndex = 0; + } + if (this.frequencyRangeListBox.SelectedIndices.Count > 1 && this.frequencyRangeListBox.SelectedIndices.IndexOf(0) != -1) + { + this.frequencyRangeListBox.SelectedIndices.Remove(this.frequencyRangeListBox.SelectedIndices.IndexOf(0)); + } + if (!this._controlInterface.get_SourceIsTunable() && this.frequencyRangeListBox.SelectedIndex != 0) + { + if (CultureInfo.CurrentCulture.Name == "ru-RU") + { + MessageBox.Show("Невозможно управлять настройкой частоты источника сигнала. Доступно только сканирование в пределах экрана.", "Scan conditions Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + } + else + { + MessageBox.Show("Unable to control the frequency settings for the source. Available only scan within the screen.", "Scan conditions Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + } + return false; + } + int num = 0; + while (num < this.frequencyRangeListBox.SelectedIndices.Count) + { + int num2 = this.frequencyRangeListBox.SelectedIndices[num]; + int num3 = 0; + int num4 = 0; + if (num2 == 0) + { + num3 = this._controlInterface.get_StepSize(); + num4 = this._controlInterface.FilterBandwidth; + } + else + { + num3 = this._enteriesFrequencyRange[num2 - 1].StepSize; + num4 = this._enteriesFrequencyRange[num2 - 1].FilterBandwidth; + } + if (num3 != 0 && num4 != 0) + { + num++; + continue; + } + if (CultureInfo.CurrentCulture.Name == "ru-RU") + { + MessageBox.Show("Параметр Step size или Filter bandwidth равны нулю! Для работы сканера параметр Step Size и Filter Bandwidth не равны нулю.", "Scan conditions Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + } + else + { + MessageBox.Show("Step size or Filter bandwidth equal to zero! For the scanner must be Step Size and Filter Bandwidth not equal to zero.", "Scan conditions Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + } + return false; + } + return true; + } + + private void ScanProcess() + { + while (this._scannerRunning) + { + this._bufferEvent.WaitOne(); + if (!this._scannerRunning) + { + break; + } + this.GetControlParameters(); + this._directionReverse = this._direction; + this._interval += this._timeConstant; + switch (this._state) + { + case ScanState.SetScreen: + { + int currentScreenIndex = this._currentScreenIndex; + this.SetCurrentScreen(); + if (this._currentScreenIndex != currentScreenIndex) + { + this._state = ScanState.PauseToSet; + this._interval = 0f; + goto case ScanState.PauseToSet; + } + this._state = ScanState.ScanScreen; + this._interval = 0f; + goto case ScanState.ScanScreen; + } + case ScanState.PauseToSet: + if (!this._centerFrequencyIsChanged) + { + this._interval = 0f; + } + if (!(this._interval >= (float)this._detect)) + { + break; + } + this._centerFrequencyIsChanged = false; + this._state = ScanState.ScanScreen; + this._interval = 0f; + goto case ScanState.ScanScreen; + case ScanState.ScanScreen: + { + this.ProcessFFT(); + int num = 1; + if (!this._directionReverse) + { + num = 1; + this._currentStartIndex = this._centerFrequncyList[this._currentScreenIndex].StartFrequencyIndex; + this._currentEndIndex = this._centerFrequncyList[this._currentScreenIndex].EndFrequencyIndex; + } + else + { + num = -1; + this._currentEndIndex = this._centerFrequncyList[this._currentScreenIndex].StartFrequencyIndex; + this._currentStartIndex = this._centerFrequncyList[this._currentScreenIndex].EndFrequencyIndex; + } + for (int i = this._currentStartIndex; i != this._currentEndIndex + num; i += num) + { + this._channelList[i].Level = this.MaxLevelOnChannel(this._channelList[i].StartBins, this._channelList[i].EndBins); + } + bool flag = true; + this._activeFrequencies.Clear(); + for (int j = this._currentStartIndex; j != this._currentEndIndex + num; j += num) + { + int num2; + if (this._channelList[j].Skipped) + { + if (this._controlParameters.Frequency == this._channelList[j].Frequency && !this._pauseScan) + { + num2 = j + num; + if (!this._directionReverse && num2 > this._currentEndIndex) + { + goto IL_0242; + } + if (this._directionReverse && num2 < this._currentEndIndex) + { + goto IL_0242; + } + goto IL_024a; + } + } + else if ((!this._scanMemory || this._channelList[j].IsStore) && (!this._scanExceptMemory || !this._channelList[j].IsStore) && this._channelList[j].Level > (float)this._scanLevel) + { + flag = false; + if (this._scanWidthStoreNew && !this._channelList[j].IsStore) + { + this._newActiveFrequencies.Add(this._channelList[j].Frequency); + } + this._activeFrequencies.Add(j); + } + continue; + IL_0242: + num2 = this._currentStartIndex; + goto IL_024a; + IL_024a: + this._controlParameters.Frequency = this._channelList[num2].Frequency; + this._isPlayed = false; + if (this.UseMute) + { + this.AudioMuteProcess(false); + } + } + List.Enumerator enumerator; + if (!this._isPlayed && this._activeFrequencies.Count > 0) + { + if (this._activeFrequencies.Count == 1 || !this.MaxLevelSelect) + { + this.ChangeFrequencyInScanner(this._channelList[this._activeFrequencies[0]], true); + } + else + { + float num3 = 0f; + int index = 0; + enumerator = this._activeFrequencies.GetEnumerator(); + try + { + while (enumerator.MoveNext()) + { + int current = enumerator.Current; + if (this._channelList[current].Level > num3) + { + num3 = this._channelList[current].Level; + index = current; + } + } + } + finally + { + ((IDisposable)enumerator).Dispose(); + } + this.ChangeFrequencyInScanner(this._channelList[index], true); + } + this._isPlayed = true; + } + if (this._nextButtonPress) + { + this._nextButtonPress = false; + flag = true; + this._isPlayed = false; + if (this._activeFrequencies.Count > 0) + { + enumerator = this._activeFrequencies.GetEnumerator(); + try + { + while (enumerator.MoveNext()) + { + int current2 = enumerator.Current; + if (this._channelList[current2].Frequency > this._controlParameters.Frequency && !this._directionReverse) + { + goto IL_049d; + } + if (this._channelList[current2].Frequency < this._controlParameters.Frequency && this._directionReverse) + { + goto IL_049d; + } + continue; + IL_049d: + this.ChangeFrequencyInScanner(this._channelList[current2], true); + this._isPlayed = true; + break; + } + } + finally + { + ((IDisposable)enumerator).Dispose(); + } + } + if (this.UseMute) + { + this.AudioMuteProcess(this._isPlayed); + } + } + if (this._isPlayed) + { + flag = false; + this._isActivePlaedFrequency = this.SquelchActiveFrequency(this._isActivePlaedFrequency); + if (this._isActivePlaedFrequency) + { + this._pauseAfter = (float)this._pauseToNextScreen; + } + else + { + this._pauseAfter -= this._interval; + } + this._isPlayed = (this._pauseAfter > 0f || this._isActivePlaedFrequency); + if (this.UseMute) + { + this.AudioMuteProcess(this._isActivePlaedFrequency); + } + } + if (!this._isPlayed || this._pauseScan) + { + this.ResetTimers(); + } + if (this._pauseScan) + { + this._isPlayed = true; + flag = false; + this._pauseAfter = 0f; + } + if (flag) + { + this._state = ScanState.SetScreen; + } + this._interval = 0f; + break; + } + case ScanState.ScanStop: + this._interval = 0f; + break; + } + if (this._controlParameters.IsChanged) + { + this._needUpdateParametrs = true; + } + else + { + if (this._state == ScanState.ScanScreen || this._centerFrequncyList.Count == 1) + { + Thread.Sleep(20); + } + this._scanProcessIsWork = false; + } + } + } + + private void GetControlParameters() + { + this._controlParameters.AudioIsMuted = this._controlInterface.get_AudioIsMuted(); + this._controlParameters.CenterFrequency = this._controlInterface.CenterFrequency; + this._controlParameters.Frequency = this._controlInterface.Frequency; + this._controlParameters.FilterBandwidth = this._controlInterface.FilterBandwidth; + this._controlParameters.DetectorType = this._controlInterface.DetectorType; + this._controlParameters.RfBandwidth = this._controlInterface.RFBandwidth; + this._controlParameters.ResetFlags(); + } + + private unsafe float MaxLevelOnChannel(int startBins, int endBins) + { + float num = 0f; + if (this.ChannelDetectMetod) + { + int num2 = (startBins + endBins) / 2; + num = this._scaledFFTSpectrumPtr[num2]; + } + else + { + for (int i = startBins; i <= endBins; i++) + { + int num3 = i; + if (num3 < 0) + { + num3 = 0; + } + if (num3 >= this._fftBins) + { + num3 = this._fftBins - 1; + } + num = Math.Max(num, this._scaledFFTSpectrumPtr[num3]); + } + } + return num; + } + + private void ChangeFrequencyInScanner(ChannelAnalizerMemoryEntry entry, bool outToPanView) + { + this._controlParameters.DetectorType = entry.DetectorType; + this._controlParameters.FilterBandwidth = entry.FilterBandwidth; + this._controlParameters.Frequency = entry.Frequency; + if (outToPanView) + { + this._channelAnalyzer.Frequency = entry.Frequency; + } + } + + private bool SquelchActiveFrequency(bool useHisteresis) + { + int startBins = this.FrequencyToBins(this._controlParameters.Frequency - this._controlParameters.FilterBandwidth / 4 - this._controlInterface.get_IFOffset(), this._controlParameters.CenterFrequency, this._controlParameters.RfBandwidth); + int endBins = this.FrequencyToBins(this._controlParameters.Frequency + this._controlParameters.FilterBandwidth / 4 - this._controlInterface.get_IFOffset(), this._controlParameters.CenterFrequency, this._controlParameters.RfBandwidth); + if (useHisteresis) + { + return this.MaxLevelOnChannel(startBins, endBins) > (float)this._hysteresis; + } + return this.MaxLevelOnChannel(startBins, endBins) > (float)this._scanLevel; + } + + private void AudioMuteProcess(bool unmute) + { + bool flag = this._controlParameters.AudioIsMuted; + if (unmute) + { + this._squelchCount++; + if (this._squelchCount > this.UnMuteDelay) + { + flag = false; + this._squelchCount = this.UnMuteDelay; + } + } + else + { + flag = true; + this._squelchCount = 0; + } + if (this._controlParameters.AudioIsMuted != flag) + { + this._controlParameters.AudioIsMuted = flag; + } + } + + private void SetCurrentScreen() + { + if (this._currentScreenIndex == 0) + { + this._debugTime = this._debugCounter; + this._debugCounter = 0; + } + if (this._centerFrequncyList.Count == 1 && this._controlParameters.CenterFrequency == this._centerFrequncyList[0].CenterFrequency) + { + this._currentScreenIndex = 0; + } + else + { + if (!this._directionReverse) + { + this._currentScreenIndex++; + if (this._currentScreenIndex >= this._centerFrequncyList.Count) + { + this._currentScreenIndex = 0; + } + } + else + { + this._currentScreenIndex--; + if (this._currentScreenIndex < 0) + { + this._currentScreenIndex = this._centerFrequncyList.Count - 1; + } + } + this._controlParameters.CenterFrequency = this._centerFrequncyList[this._currentScreenIndex].CenterFrequency; + } + } + + private int FrequencyToBins(long frequency, long centerFrequency, int rfBandwidth) + { + long num = centerFrequency - rfBandwidth / 2; + float num2 = (float)rfBandwidth / (float)this._fftBins; + return (int)((float)(frequency - num) / num2); + } + + private long BinsToFrequency(int bins) + { + float num = (float)this._controlParameters.RfBandwidth / (float)this._fftBins; + return this._controlParameters.CenterFrequency - this._controlParameters.RfBandwidth / 2 + (int)((float)bins * num); + } + + private List GetRangeNameFromEntries() + { + List list = new List(); + list.Add("Screen"); + foreach (MemoryEntryFrequencyRange item in this._enteriesFrequencyRange) + { + list.Add(item.RangeName); + } + return list; + } + + private void ProcessRangeName() + { + this.frequencyRangeListBox.Items.Clear(); + this.frequencyRangeListBox.Items.AddRange(this.GetRangeNameFromEntries().ToArray()); + } + + private void FrequencyRangeEditButton_Click(object sender, EventArgs e) + { + DialogEditRange dialogEditRange = new DialogEditRange(); + this._enteriesFrequencyRange = dialogEditRange.EditRange(this._enteriesFrequencyRange); + if (dialogEditRange.ShowDialog() == DialogResult.OK) + { + this.StoreEntry(); + this.ProcessRangeName(); + } + } + + private unsafe void BuildFFTWindow() + { + float[] array = FilterBuilder.MakeWindow(WindowType.BlackmanHarris4, this._fftBins); + fixed (float* src = array) + { + Utils.Memcpy(this._fftWindow, src, this._fftBins * 4); + } + } + + private unsafe void InitFFTBuffers() + { + this._fftBuffer = UnsafeBuffer.Create(this._fftBins, sizeof(Complex)); + this._fftWindow = UnsafeBuffer.Create(this._fftBins, 4); + this._unScaledFFTSpectrum = UnsafeBuffer.Create(this._fftBins, 4); + this._scaledFFTSpectrum = UnsafeBuffer.Create(this._fftBins, 4); + this._fftPtr = (Complex*)(void*)this._fftBuffer; + this._fftWindowPtr = (float*)(void*)this._fftWindow; + this._unScaledFFTSpectrumPtr = (float*)(void*)this._unScaledFFTSpectrum; + this._scaledFFTSpectrumPtr = (float*)(void*)this._scaledFFTSpectrum; + } + + private unsafe void FastBufferAvailable(Complex* buffer, int length) + { + if (this._scannerRunning && this._controlInterface.IsPlaying) + { + this._count++; + this._debugCounter++; + if (!this._scanProcessIsWork) + { + int num = Math.Min(length, this._fftBins - this._writePos); + Utils.Memcpy(this._fftPtr + this._writePos, buffer, num * sizeof(Complex)); + this._writePos += num; + if (this._writePos >= this._fftBins) + { + this._writePos = 0; + this._bufferLengthInMs = (double)length / this._ifProcessor.SampleRate * 1000.0; + this._timeConstant = (float)(this._bufferLengthInMs * (double)this._count); + this._scanProcessIsWork = true; + this._count = 0; + this._bufferEvent.Set(); + } + } + else + { + this._writePos = 0; + } + } + } + + private unsafe void ProcessFFT() + { + Fourier.ApplyFFTWindow(this._fftPtr, this._fftWindowPtr, this._fftBins); + Fourier.ForwardTransform(this._fftPtr, this._fftBins, true); + Fourier.SpectrumPower(this._fftPtr, this._unScaledFFTSpectrumPtr, this._fftBins, 0f); + this.ScaleSpectrum(this._unScaledFFTSpectrumPtr, this._scaledFFTSpectrumPtr, this._fftBins); + } + + private unsafe void ScaleSpectrum(float* source, float* dest, int length) + { + bool swapIq = this._controlInterface.SwapIq; + float num = 1f / (float)this._filterWidth; + int num2 = 0; + int num3 = 0; + for (int i = 0; i < length; i++) + { + num3 = (swapIq ? (length - i) : i); + num2 = i; + this._iavg += num * (source[num2] - this._iavg); + dest[num3] = source[num2] - this._iavg; + } + } + + private void iControlsUpdateTimer_Tick(object sender, EventArgs e) + { + //IL_0038: Unknown result type (might be due to invalid IL or missing references) + if (this._controlParameters != null && this._needUpdateParametrs) + { + this._needUpdateParametrs = false; + if (this._controlParameters.IsChanged) + { + this._changeFrequencyInScanner = true; + if ((int)this._controlInterface.get_TuningStyle() != 0) + { + this._controlInterface.set_TuningStyle(0); + } + if (this._controlParameters.AudioNeedUpdate && this._controlInterface.get_AudioIsMuted() != this._controlParameters.AudioIsMuted) + { + this._controlInterface.set_AudioIsMuted(this._controlParameters.AudioIsMuted); + } + if (this._controlParameters.DetectorNeedUpdate && this._controlInterface.DetectorType != this._controlParameters.DetectorType) + { + this._controlInterface.DetectorType = this._controlParameters.DetectorType; + } + if (this._controlParameters.FilterNeedUpdate && this._controlInterface.FilterBandwidth != this._controlParameters.FilterBandwidth) + { + this._controlInterface.FilterBandwidth = this._controlParameters.FilterBandwidth; + } + if (this._controlParameters.CenterNeedUpdate && this._controlInterface.CenterFrequency != this._controlParameters.CenterFrequency) + { + this._controlInterface.CenterFrequency = this._controlParameters.CenterFrequency; + } + if (this._controlParameters.FrequencyNeedUpdate && this._controlInterface.Frequency != this._controlParameters.Frequency) + { + this._controlInterface.Frequency = this._controlParameters.Frequency; + } + this._changeFrequencyInScanner = false; + this._controlParameters.ResetFlags(); + } + this._scanProcessIsWork = false; + } + } + + private void testDisplayTimer_Tick(object sender, EventArgs e) + { + this.timeConstantLabel.Text = $"{this._timeConstant:F} ms"; + if (this._requestToStopScanner) + { + this._requestToStopScanner = false; + this.ScanStop(); + } + string str = "Scan"; + str = ((!this._directionReverse) ? (str + " >>>") : (str + " <<<")); + if (this._isPlayed) + { + str = ((this._pauseAfter != (float)this._pauseToNextScreen) ? $"Wait {this._pauseAfter / 1000f:F1} s" : "Play"); + } + if (this._pauseScan) + { + str = "Pause"; + } + if (this._channelAnalyzer.Zoom != 0 && this._scannerRunning) + { + str = $"Zoom x{this._channelAnalyzer.Zoom + 1:N0} " + str; + } + if (this.ShowDebugInfo && this._scannerRunning) + { + int count = this._centerFrequncyList.Count; + float num = (float)this._controlInterface.RFBandwidth * this._usableSpectrum; + float num2 = (float)(this._bufferLengthInMs * (double)this._debugTime * 0.0010000000474974513); + float num3 = num * (float)count / num2 * 1E-06f; + str = $"Info: screens {count:N0} x {num * 1E-06f:F2} MHz, time {num2:F3} s, speed {num3:F1} MHz/s. " + str; + } + this._infoText = str; + } + + private void ResetTimers() + { + this._autoSkipTimer.Enabled = false; + this._autoSkipTimer.Interval = (double)(this.AutoSkipInterval * 1000); + this._autoSkipTimer.Enabled = this.AutoSkipEnabled; + this._autoLockTimer.Enabled = false; + this._autoLockTimer.Interval = (double)(this.AutoLockInterval * 1000); + this._autoLockTimer.Enabled = this.AutoLockEnabled; + } + + private void newFrequencyDisplayUpdateTimer_Tick(object sender, EventArgs e) + { + this.UpdateNewFrequencyDisplay(); + } + + private void AutoSkip_Tick(object source, ElapsedEventArgs e) + { + this._nextButtonPress = true; + } + + private void AutoLock_Tick(object source, ElapsedEventArgs e) + { + this.SetSkipSelectedChannel(true); + } + + private void autoCleanTimer_Tick(object sender, EventArgs e) + { + this._timeToClean = true; + } + + private void refreshTimer_Tick(object sender, EventArgs e) + { + if (this._channelList != null) + { + this._channelAnalyzer.Perform(this._channelList); + } + } + + private void _channelAnalyzer_MouseUp(object sender, MouseEventArgs e) + { + if (this._channelList != null) + { + this.buttonsRepeaterTimer.Enabled = false; + this._buttons = Buttons.None; + if (this._selectFrequency) + { + this._startSelectX = this._oldX; + this._endSelectX = this._trackingX; + this._startSelectIndex = this._oldIndex; + this._endSelectIndex = this._trackingIndex; + if (this._startSelectIndex > this._endSelectIndex) + { + int startSelectX = this._startSelectX; + this._startSelectX = this._endSelectX; + this._endSelectX = startSelectX; + startSelectX = this._startSelectIndex; + this._startSelectIndex = this._endSelectIndex; + this._endSelectIndex = startSelectX; + } + if (this._startSelectX == this._endSelectX) + { + this._channelList[this._startSelectIndex].Skipped = !this._channelList[this._startSelectIndex].Skipped; + this._selectFrequency = false; + } + } + } + } + + private void _channelAnalyzer_MouseDown(object sender, MouseEventArgs e) + { + Point location = e.Location; + if (this._channelList != null) + { + if (e.Button == MouseButtons.Left) + { + if (this._reverseRectangle.Contains(location)) + { + this._nextButtonPress = true; + this._direction = true; + } + else if (this._forwardRectangle.Contains(location)) + { + this._nextButtonPress = true; + this._direction = false; + } + else if (this._pauseRectangle.Contains(location)) + { + this._pauseScan = !this._pauseScan; + } + else if (this._lockRectangle.Contains(location)) + { + this.SetSkipSelectedChannel(true); + } + else if (this._unlockRectangle.Contains(location)) + { + this.SetSkipSelectedChannel(false); + } + else if (this._snrPlusRectangle.Contains(location)) + { + this._scanLevel++; + this._buttons = Buttons.SNRUp; + this.buttonsRepeaterTimer.Enabled = true; + } + else if (this._snrMinusRectangle.Contains(location)) + { + if (this._scanLevel > this._hysteresis) + { + this._scanLevel--; + } + this._buttons = Buttons.SNRDown; + this.buttonsRepeaterTimer.Enabled = true; + } + else if (this._histPlusRectangle.Contains(location)) + { + if (this._hysteresis < this._scanLevel) + { + this._hysteresis++; + } + this._buttons = Buttons.HystUp; + this.buttonsRepeaterTimer.Enabled = true; + } + else if (this._histMinusRectangle.Contains(location)) + { + if (this._hysteresis > 0) + { + this._hysteresis--; + } + this._buttons = Buttons.HystDown; + this.buttonsRepeaterTimer.Enabled = true; + } + else if (this._selectFrequency && this._trackingX > this._startSelectX && this._trackingX < this._endSelectX) + { + this.SetSkipSelectedChannel(true); + } + else + { + this._oldX = this._trackingX; + this._oldIndex = this._trackingIndex; + this._oldFrequency = this._trackingFrequency; + this._selectFrequency = true; + this._startSelectX = 0; + this._endSelectX = 0; + } + } + else if (e.Button == MouseButtons.Right && this._selectFrequency && this._trackingX > this._startSelectX && this._trackingX < this._endSelectX) + { + this.SetSkipSelectedChannel(false); + } + } + } + + private void _channelAnalyzer_MouseMove(object sender, MouseEventArgs e) + { + if (this._channelList != null) + { + this._trackingX = e.X; + this._trackingY = e.Y; + this._trackingIndex = this._channelAnalyzer.PointToChannel((float)this._trackingX); + this._trackingFrequency = this._channelList[this._trackingIndex].Frequency; + } + } + + private void _channelAnalyzer_MouseWheel(object sender, MouseEventArgs e) + { + if (this._channelAnalyzer.Zoom > 0 && e.Delta < 0) + { + this._channelAnalyzer.Zoom--; + if (this._channelAnalyzer.Zoom == 0) + { + this._channelAnalyzer.ZoomPosition = 0; + } + } + if (this._channelAnalyzer.Zoom < 100 && e.Delta > 0) + { + if (this._channelAnalyzer.Zoom == 0) + { + this._channelAnalyzer.ZoomPosition = this._trackingX; + } + this._channelAnalyzer.Zoom++; + } + } + + private void _channelAnalyzer_MouseLeave(object sender, EventArgs e) + { + this._hotTrackNeeded = false; + } + + private void _channelAnalyzer_MouseEnter(object sender, EventArgs e) + { + this._hotTrackNeeded = true; + } + + public void SetSkipSelectedChannel(bool setUnSet) + { + if (this._selectFrequency) + { + if (this._startSelectX < this._endSelectX) + { + for (int i = this._startSelectIndex; i <= this._endSelectIndex; i++) + { + if (i < this._channelList.Count && i >= 0) + { + this._channelList[i].Skipped = setUnSet; + } + } + this._selectFrequency = false; + } + } + else + { + int num = this._channelAnalyzer.CurrentChannelIndex(); + if (num < this._channelList.Count && num >= 0) + { + this._channelList[num].Skipped = setUnSet; + } + } + } + + private void _channelAnalyzer_CustomPaint(object sender, CustomPaintEventArgs e) + { + ChannelAnalyzer channelAnalyzer = (ChannelAnalyzer)sender; + Graphics graphics = e.Graphics; + if (this._hotTrackNeeded) + { + if (this._bright < this.MaxButtonsAlpha) + { + this._bright += 10; + } + else + { + this._bright = this.MaxButtonsAlpha; + } + } + else if (this._bright > this.MinButtonsAlpha) + { + this._bright--; + } + else + { + this._bright = this.MinButtonsAlpha; + } + using (SolidBrush brush7 = new SolidBrush(Color.FromArgb(80, Color.DarkGray))) + { + using (Pen pen = new Pen(Color.Red)) + { + using (Pen pen2 = new Pen(Color.Yellow)) + { + using (Pen pen3 = new Pen(Color.Green)) + { + using (Font font3 = new Font("Lucida Console", 9f)) + { + using (Font font = new Font("Webdings", 32f)) + { + using (Font font2 = new Font("Lucida Console", 8f)) + { + using (new Font("Lucida Console", 32f)) + { + using (SolidBrush brush5 = new SolidBrush(Color.FromArgb(150, Color.Black))) + { + using (SolidBrush brush6 = new SolidBrush(Color.FromArgb(255, Color.White))) + { + using (SolidBrush brush = new SolidBrush(Color.FromArgb(this._bright, Color.White))) + { + using (SolidBrush brush3 = new SolidBrush(Color.FromArgb(this._bright, Color.Red))) + { + using (SolidBrush brush4 = new SolidBrush(Color.FromArgb(this._bright, Color.Yellow))) + { + using (SolidBrush brush2 = new SolidBrush(Color.FromArgb(this._bright, Color.Black))) + { + using (StringFormat format = new StringFormat(StringFormat.GenericTypographic)) + { + using (new Pen(Color.Black)) + { + Point p = default(Point); + SizeF sizeF = default(SizeF); + string empty = string.Empty; + empty = "7"; + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + p.X = 37; + p.Y = 7; + this._reverseRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = "8"; + p.X = p.X + (int)sizeF.Width + 10; + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + this._forwardRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = (this._pauseScan ? "4" : ";"); + p.X = p.X + (int)sizeF.Width + 10; + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + this._pauseRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = "r"; + p.X = p.X + (int)sizeF.Width + 10; + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + this._lockRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = "q"; + p.X = p.X + (int)sizeF.Width + 10; + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + this._unlockRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = "5"; + p.X = 37; + p.Y = 62; + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + this._snrPlusRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush3, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = "6"; + p.Y = (int)((float)p.Y + sizeF.Height + 10f); + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + this._snrMinusRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush3, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = "5"; + p.X = channelAnalyzer.Width - 35 - (int)sizeF.Width; + p.Y = 62; + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + this._histPlusRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush4, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = "6"; + p.Y = (int)((float)p.Y + sizeF.Height + 10f); + sizeF = graphics.MeasureString(empty, font, channelAnalyzer.Width, format); + this._histMinusRectangle = new Rectangle(p.X, p.Y, (int)sizeF.Width, (int)sizeF.Height); + graphics.FillRectangle(brush4, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font, brush2, p, format); + empty = this._infoText; + sizeF = graphics.MeasureString(empty, font2, channelAnalyzer.Width, format); + p.Y = 7; + p.X = channelAnalyzer.Width - 2 - 5 - (int)sizeF.Width; + graphics.FillRectangle(brush5, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 4f); + graphics.DrawString(empty, font2, brush6, p, format); + int num = Math.Max(2, channelAnalyzer.Height - 2 - this._scanLevel * 2); + graphics.DrawLine(pen, 2, num, channelAnalyzer.Width - 2, num); + int num2 = Math.Max(2, channelAnalyzer.Height - 2 - this._hysteresis * 2); + graphics.DrawLine(pen2, 2, num2, channelAnalyzer.Width - 2, num2); + if (this._selectFrequency) + { + int num3 = this._oldX; + int num4 = this._trackingX; + if (this._startSelectX != 0 && this._endSelectX != 0) + { + num3 = this._startSelectX; + num4 = this._endSelectX; + } + if (num3 > num4) + { + int num5 = num3; + num3 = num4; + num4 = num5; + } + graphics.FillRectangle(brush7, num3, 2, num4 - num3, channelAnalyzer.Height - 4); + } + if (this._hotTrackNeeded && this._trackingX >= 2 && this._trackingX <= channelAnalyzer.Width - 2 && this._trackingY >= 2 && this._trackingY <= channelAnalyzer.Height - 2) + { + graphics.DrawLine(pen3, this._trackingX, 0, this._trackingX, channelAnalyzer.Height); + string text; + if (this._selectFrequency && this._oldFrequency != this._trackingFrequency) + { + text = $"{FrequencyScannerPanel.GetFrequencyDisplay(this._oldFrequency)}-{FrequencyScannerPanel.GetFrequencyDisplay(this._trackingFrequency)}"; + } + else + { + text = $"{FrequencyScannerPanel.GetFrequencyDisplay(this._trackingFrequency)}"; + if (this._channelList[this._trackingIndex].IsStore) + { + text = text + " " + this._channelList[this._trackingIndex].StoreName; + } + } + sizeF = graphics.MeasureString(text, font3, channelAnalyzer.Width, format); + p.X = this._trackingX + 5; + if ((float)p.X + sizeF.Width + 2f > (float)channelAnalyzer.Width) + { + p.X = (int)((float)(this._trackingX - 5) - sizeF.Width); + } + p.Y = 52; + graphics.FillRectangle(brush5, (float)(p.X - 1), (float)(p.Y - 2), sizeF.Width + 2f, sizeF.Height + 2f); + graphics.DrawString(text, font3, brush6, p, format); + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + + private void buttonsRepeaterTimer_Tick(object sender, EventArgs e) + { + switch (this._buttons) + { + case Buttons.None: + break; + case Buttons.SNRUp: + if (this._scanLevel < 120) + { + this._scanLevel++; + } + break; + case Buttons.SNRDown: + if (this._scanLevel > this._hysteresis) + { + this._scanLevel--; + } + break; + case Buttons.HystUp: + if (this._hysteresis < this._scanLevel) + { + this._hysteresis++; + } + break; + case Buttons.HystDown: + if (this._hysteresis > 0) + { + this._hysteresis--; + } + break; + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FrequencyScannerPanel)); + DataGridViewCellStyle dataGridViewCellStyle = new DataGridViewCellStyle(); + DataGridViewCellStyle dataGridViewCellStyle2 = new DataGridViewCellStyle(); + this.mainToolStrip = new ToolStrip(); + this.btnNewEntry = new ToolStripButton(); + this.btnDelete = new ToolStripButton(); + this.frequencyDataGridView = new DataGridView(); + this.Activity = new DataGridViewTextBoxColumn(); + this.scanModeComboBox = new ComboBox(); + this.ScanButton = new Button(); + this.FrequencyRangeEditButton = new Button(); + this.newFrequencyDisplayUpdateTimer = new System.Windows.Forms.Timer(this.components); + this.configureButton = new Button(); + this.autoCleanTimer = new System.Windows.Forms.Timer(this.components); + this.timeConstantLabel = new Label(); + this.testDisplayTimer = new System.Windows.Forms.Timer(this.components); + this.frequencyRangeListBox = new ListBox(); + this.tableLayoutPanel1 = new TableLayoutPanel(); + this.iControlsUpdateTimer = new System.Windows.Forms.Timer(this.components); + this.refreshTimer = new System.Windows.Forms.Timer(this.components); + this.label1 = new Label(); + this.label2 = new Label(); + this.detectNumericUpDown = new NumericUpDown(); + this.waitNumericUpDown = new NumericUpDown(); + this.buttonsRepeaterTimer = new System.Windows.Forms.Timer(this.components); + this.frequencyDataGridViewTextBoxColumn = new DataGridViewTextBoxColumn(); + this.memoryEntryBindingSource = new BindingSource(this.components); + this.mainToolStrip.SuspendLayout(); + ((ISupportInitialize)this.frequencyDataGridView).BeginInit(); + this.tableLayoutPanel1.SuspendLayout(); + ((ISupportInitialize)this.detectNumericUpDown).BeginInit(); + ((ISupportInitialize)this.waitNumericUpDown).BeginInit(); + ((ISupportInitialize)this.memoryEntryBindingSource).BeginInit(); + base.SuspendLayout(); + this.mainToolStrip.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.mainToolStrip.AutoSize = false; + this.mainToolStrip.Dock = DockStyle.None; + this.mainToolStrip.GripStyle = ToolStripGripStyle.Hidden; + this.mainToolStrip.Items.AddRange(new ToolStripItem[2] + { + this.btnNewEntry, + this.btnDelete + }); + this.mainToolStrip.Location = new Point(0, 204); + this.mainToolStrip.Name = "mainToolStrip"; + this.mainToolStrip.Size = new Size(217, 23); + this.mainToolStrip.TabIndex = 7; + this.btnNewEntry.Image = (Image)componentResourceManager.GetObject("btnNewEntry.Image"); + this.btnNewEntry.ImageTransparentColor = Color.Magenta; + this.btnNewEntry.Name = "btnNewEntry"; + this.btnNewEntry.Size = new Size(54, 20); + this.btnNewEntry.Text = "Clear"; + this.btnNewEntry.ToolTipText = "Clear"; + this.btnNewEntry.Click += this.btnClearEntry_Click; + this.btnDelete.Image = (Image)componentResourceManager.GetObject("btnDelete.Image"); + this.btnDelete.ImageTransparentColor = Color.Magenta; + this.btnDelete.Name = "btnDelete"; + this.btnDelete.Size = new Size(60, 20); + this.btnDelete.Text = "Delete"; + this.btnDelete.Click += this.btnDelete_Click; + this.frequencyDataGridView.AllowUserToAddRows = false; + this.frequencyDataGridView.AllowUserToDeleteRows = false; + this.frequencyDataGridView.AllowUserToResizeRows = false; + dataGridViewCellStyle.BackColor = Color.WhiteSmoke; + this.frequencyDataGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle; + this.frequencyDataGridView.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right); + this.frequencyDataGridView.AutoGenerateColumns = false; + this.frequencyDataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.frequencyDataGridView.Columns.AddRange(this.Activity, this.frequencyDataGridViewTextBoxColumn); + this.frequencyDataGridView.DataSource = this.memoryEntryBindingSource; + this.frequencyDataGridView.Location = new Point(0, 229); + this.frequencyDataGridView.Margin = new Padding(2); + this.frequencyDataGridView.Name = "frequencyDataGridView"; + this.frequencyDataGridView.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single; + this.frequencyDataGridView.RowHeadersVisible = false; + this.frequencyDataGridView.RowTemplate.Height = 24; + this.frequencyDataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; + this.frequencyDataGridView.ShowCellErrors = false; + this.frequencyDataGridView.ShowCellToolTips = false; + this.frequencyDataGridView.ShowEditingIcon = false; + this.frequencyDataGridView.ShowRowErrors = false; + this.frequencyDataGridView.Size = new Size(215, 186); + this.frequencyDataGridView.TabIndex = 6; + this.frequencyDataGridView.CellDoubleClick += this.frequencyDataGridView_CellDoubleClick; + this.frequencyDataGridView.CellFormatting += this.frequencyDataGridView_CellFormatting; + this.frequencyDataGridView.SelectionChanged += this.frequencyDataGridView_SelectionChanged; + this.frequencyDataGridView.KeyDown += this.frequencyDataGridView_KeyDown; + this.Activity.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; + this.Activity.DataPropertyName = "Activity"; + dataGridViewCellStyle2.Format = "N2"; + dataGridViewCellStyle2.NullValue = null; + this.Activity.DefaultCellStyle = dataGridViewCellStyle2; + this.Activity.HeaderText = "Activity time s."; + this.Activity.Name = "Activity"; + this.Activity.ReadOnly = true; + this.scanModeComboBox.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.scanModeComboBox.AutoCompleteCustomSource.AddRange(new string[2] + { + "screen with playback", + "screen without playback" + }); + this.scanModeComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.scanModeComboBox.FormattingEnabled = true; + this.scanModeComboBox.IntegralHeight = false; + this.scanModeComboBox.Items.AddRange(new object[4] + { + "Scan all with save new", + "Scan all without save new", + "Scan only memorized except new", + "Scan only new except memorized" + }); + this.scanModeComboBox.Location = new Point(3, 4); + this.scanModeComboBox.Margin = new Padding(2); + this.scanModeComboBox.Name = "scanModeComboBox"; + this.scanModeComboBox.Size = new Size(211, 21); + this.scanModeComboBox.TabIndex = 4; + this.scanModeComboBox.SelectedIndexChanged += this.scanModeComboBox_SelectedIndexChanged; + this.ScanButton.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.ScanButton.Cursor = Cursors.Default; + this.ScanButton.FlatAppearance.BorderSize = 0; + this.ScanButton.ImageAlign = ContentAlignment.TopLeft; + this.ScanButton.Location = new Point(89, 3); + this.ScanButton.Name = "ScanButton"; + this.ScanButton.Size = new Size(125, 21); + this.ScanButton.TabIndex = 22; + this.ScanButton.Text = "Scan"; + this.ScanButton.UseCompatibleTextRendering = true; + this.ScanButton.UseMnemonic = false; + this.ScanButton.UseVisualStyleBackColor = false; + this.ScanButton.Click += this.ScanButton_Click; + this.FrequencyRangeEditButton.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.FrequencyRangeEditButton.Location = new Point(3, 119); + this.FrequencyRangeEditButton.Name = "FrequencyRangeEditButton"; + this.FrequencyRangeEditButton.Size = new Size(211, 23); + this.FrequencyRangeEditButton.TabIndex = 32; + this.FrequencyRangeEditButton.Text = "Edit scan ranges"; + this.FrequencyRangeEditButton.UseVisualStyleBackColor = true; + this.FrequencyRangeEditButton.Click += this.FrequencyRangeEditButton_Click; + this.newFrequencyDisplayUpdateTimer.Interval = 500; + this.newFrequencyDisplayUpdateTimer.Tick += this.newFrequencyDisplayUpdateTimer_Tick; + this.configureButton.Cursor = Cursors.Default; + this.configureButton.FlatAppearance.BorderSize = 0; + this.configureButton.ImageAlign = ContentAlignment.TopLeft; + this.configureButton.Location = new Point(3, 3); + this.configureButton.Name = "configureButton"; + this.configureButton.Size = new Size(78, 21); + this.configureButton.TabIndex = 22; + this.configureButton.Text = "Configure"; + this.configureButton.UseCompatibleTextRendering = true; + this.configureButton.UseMnemonic = false; + this.configureButton.UseVisualStyleBackColor = false; + this.configureButton.Click += this.configureButton_Click; + this.autoCleanTimer.Interval = 100000; + this.autoCleanTimer.Tick += this.autoCleanTimer_Tick; + this.timeConstantLabel.AutoSize = true; + this.timeConstantLabel.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.timeConstantLabel.Location = new Point(167, 211); + this.timeConstantLabel.Name = "timeConstantLabel"; + this.timeConstantLabel.Size = new Size(35, 13); + this.timeConstantLabel.TabIndex = 36; + this.timeConstantLabel.Text = "00 ms"; + this.timeConstantLabel.TextAlign = ContentAlignment.MiddleRight; + this.testDisplayTimer.Enabled = true; + this.testDisplayTimer.Tick += this.testDisplayTimer_Tick; + this.frequencyRangeListBox.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.frequencyRangeListBox.BackColor = SystemColors.Menu; + this.frequencyRangeListBox.FormattingEnabled = true; + this.frequencyRangeListBox.Location = new Point(3, 30); + this.frequencyRangeListBox.Name = "frequencyRangeListBox"; + this.frequencyRangeListBox.SelectionMode = SelectionMode.MultiExtended; + this.frequencyRangeListBox.Size = new Size(211, 82); + this.frequencyRangeListBox.TabIndex = 37; + this.frequencyRangeListBox.Tag = ""; + this.tableLayoutPanel1.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.tableLayoutPanel1.ColumnCount = 2; + this.tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle()); + this.tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle()); + this.tableLayoutPanel1.Controls.Add(this.ScanButton, 1, 0); + this.tableLayoutPanel1.Controls.Add(this.configureButton, 0, 0); + this.tableLayoutPanel1.Location = new Point(0, 141); + this.tableLayoutPanel1.Name = "tableLayoutPanel1"; + this.tableLayoutPanel1.RowCount = 1; + this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100f)); + this.tableLayoutPanel1.Size = new Size(217, 28); + this.tableLayoutPanel1.TabIndex = 38; + this.iControlsUpdateTimer.Interval = 1; + this.iControlsUpdateTimer.Tick += this.iControlsUpdateTimer_Tick; + this.refreshTimer.Enabled = true; + this.refreshTimer.Interval = 50; + this.refreshTimer.Tick += this.refreshTimer_Tick; + this.label1.AutoSize = true; + this.label1.Location = new Point(5, 177); + this.label1.Name = "label1"; + this.label1.Size = new Size(39, 13); + this.label1.TabIndex = 39; + this.label1.Text = "Detect"; + this.label2.AutoSize = true; + this.label2.Location = new Point(112, 177); + this.label2.Name = "label2"; + this.label2.Size = new Size(29, 13); + this.label2.TabIndex = 40; + this.label2.Text = "Wait"; + this.detectNumericUpDown.Location = new Point(50, 175); + this.detectNumericUpDown.Maximum = new decimal(new int[4] + { + 1000, + 0, + 0, + 0 + }); + this.detectNumericUpDown.Name = "detectNumericUpDown"; + this.detectNumericUpDown.Size = new Size(48, 20); + this.detectNumericUpDown.TabIndex = 41; + this.detectNumericUpDown.ValueChanged += this.detectNumericUpDown_ValueChanged; + this.waitNumericUpDown.DecimalPlaces = 1; + this.waitNumericUpDown.Location = new Point(147, 175); + this.waitNumericUpDown.Maximum = new decimal(new int[4] + { + 10000, + 0, + 0, + 0 + }); + this.waitNumericUpDown.Name = "waitNumericUpDown"; + this.waitNumericUpDown.Size = new Size(55, 20); + this.waitNumericUpDown.TabIndex = 42; + this.waitNumericUpDown.ValueChanged += this.waitNumericUpDown_ValueChanged; + this.buttonsRepeaterTimer.Tick += this.buttonsRepeaterTimer_Tick; + this.frequencyDataGridViewTextBoxColumn.DataPropertyName = "Frequency"; + this.frequencyDataGridViewTextBoxColumn.HeaderText = "Frequency"; + this.frequencyDataGridViewTextBoxColumn.Name = "frequencyDataGridViewTextBoxColumn"; + this.frequencyDataGridViewTextBoxColumn.ReadOnly = true; + this.memoryEntryBindingSource.DataSource = typeof(MemoryEntry); + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + this.AutoValidate = AutoValidate.EnableAllowFocusChange; + base.Controls.Add(this.waitNumericUpDown); + base.Controls.Add(this.detectNumericUpDown); + base.Controls.Add(this.label2); + base.Controls.Add(this.label1); + base.Controls.Add(this.tableLayoutPanel1); + base.Controls.Add(this.frequencyRangeListBox); + base.Controls.Add(this.timeConstantLabel); + base.Controls.Add(this.FrequencyRangeEditButton); + base.Controls.Add(this.scanModeComboBox); + base.Controls.Add(this.mainToolStrip); + base.Controls.Add(this.frequencyDataGridView); + base.Margin = new Padding(2); + base.Name = "FrequencyScannerPanel"; + base.Size = new Size(217, 417); + this.mainToolStrip.ResumeLayout(false); + this.mainToolStrip.PerformLayout(); + ((ISupportInitialize)this.frequencyDataGridView).EndInit(); + this.tableLayoutPanel1.ResumeLayout(false); + ((ISupportInitialize)this.detectNumericUpDown).EndInit(); + ((ISupportInitialize)this.waitNumericUpDown).EndInit(); + ((ISupportInitialize)this.memoryEntryBindingSource).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.resource b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.resource new file mode 100644 index 0000000..453cd72 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.resource @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAAgVJREFUOE9jAAEvLy8DNy/PPZ6enk719fVMYEFiQWhoKLOTk2u6o6PLfydn52/e + 3t6BIDGoNAqwt7dnCQoKUnJ3d82DCkEEHR2dk2ztHbaZW9r+19LS+uPu7lmFboi8vD2Hpa2jk7eX13d7 + e8c5UGEIsLV1l7S3d7FwcHDZZmVj/9/O3uG/v4/nRldXV26QvIWFBae7u/sKeXmn36am5t1AS3jAGtEB + 0FY2JyeXAnkH5992dk7/gd5ZZm5uo2dpaTfZ1sbmv56ByWQlJWN+qHKcgNHOzkXT1tbpvJm59X99ff3v + hsZG79W0dNfJyFhwQtUQBvr6xg56+iY/La2A4aJvdE9GRksIKkUY6JubK6ioaF3S1TP8p29g8t/E1OK/ + lrbOLag0fmBoaCivpq59VU1d64+GpuYaYWEJE1lZlW0Ghsb/VdS0M6HKsANg6ErIyiufklNU/a+tZ3BI + RkZGSFxcnBuE5RTVphsYGH9R1taWhSpHBfL29hwyiqqLJKSlP2ppGT7R0jLQgkqBEgEHA4MQn7a+wVkJ + KflJQBHMhCYtJ+ctJqHwX1VNG+hUjVYGBnFwGkACTMrKWirKysr3BQQE5EF8iDAEsAkLi7YKCYv/l5dX + 3sXGxqsGFMOWJ5hNTS0nc/JxmgLZqPKScspGrKzsE4FMOyDmBQtiByxAzAVhDjxgYAAAJT51jooYX84A + AAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAAaNJREFUOE+NkUtLAlEUxy9BK2nVNugDtGpRm6h95aZ1y/oSQuAHqE1FQU+iDLRA + 6AFR0IsKMgkJKyytQUyjfGSlafP6d+7MHTWiwT8czuWc+/vfOWeYpUxmsKwoAxHMMSDMoCj9UjLplEXb + XlrEsSm7CMQUsE351jwbtUL3mrj2v9SI47ICLFFsMPNMtfxdF/wH1/DthuDZCmBlKzAqsKrkMbo8RTHO + IS6v+SWzFF6rBsyvH6Gzb/iviXTLFLe7WccEXab58dgIHFIutwOJFoHTG55d7J1dGybLm+djAqcRVGew + MgJ/kV6v7ARuA+aaXN4xYCsETgaFnuMKsEA51mCczdoMZw0pqmaYWEYCN6Vn2ka0aNM0/AQ9tQJZF/2B + OYECuq6jWJLxki0aBh29Q78NLC36TwTyW9+yitx7CfHnd3uDWd+BQKpSNR0fxW+k0gXcx3P2BtOrewKr + qlRWkH77gpTMIxxN2xvwZq344vKfZSRePhCRsgjePNdvULu4WOINV3evOA091W9Qu7ibhwwC4RT2L+L1 + GfBsF7YGvFlPMMbYD0+fNqe/2VNCAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.resx b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.resx new file mode 100644 index 0000000..453cd72 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPanel.resx @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAAgVJREFUOE9jAAEvLy8DNy/PPZ6enk719fVMYEFiQWhoKLOTk2u6o6PLfydn52/e + 3t6BIDGoNAqwt7dnCQoKUnJ3d82DCkEEHR2dk2ztHbaZW9r+19LS+uPu7lmFboi8vD2Hpa2jk7eX13d7 + e8c5UGEIsLV1l7S3d7FwcHDZZmVj/9/O3uG/v4/nRldXV26QvIWFBae7u/sKeXmn36am5t1AS3jAGtEB + 0FY2JyeXAnkH5992dk7/gd5ZZm5uo2dpaTfZ1sbmv56ByWQlJWN+qHKcgNHOzkXT1tbpvJm59X99ff3v + hsZG79W0dNfJyFhwQtUQBvr6xg56+iY/La2A4aJvdE9GRksIKkUY6JubK6ioaF3S1TP8p29g8t/E1OK/ + lrbOLag0fmBoaCivpq59VU1d64+GpuYaYWEJE1lZlW0Ghsb/VdS0M6HKsANg6ErIyiufklNU/a+tZ3BI + RkZGSFxcnBuE5RTVphsYGH9R1taWhSpHBfL29hwyiqqLJKSlP2ppGT7R0jLQgkqBEgEHA4MQn7a+wVkJ + KflJQBHMhCYtJ+ctJqHwX1VNG+hUjVYGBnFwGkACTMrKWirKysr3BQQE5EF8iDAEsAkLi7YKCYv/l5dX + 3sXGxqsGFMOWJ5hNTS0nc/JxmgLZqPKScspGrKzsE4FMOyDmBQtiByxAzAVhDjxgYAAAJT51jooYX84A + AAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAAaNJREFUOE+NkUtLAlEUxy9BK2nVNugDtGpRm6h95aZ1y/oSQuAHqE1FQU+iDLRA + 6AFR0IsKMgkJKyytQUyjfGSlafP6d+7MHTWiwT8czuWc+/vfOWeYpUxmsKwoAxHMMSDMoCj9UjLplEXb + XlrEsSm7CMQUsE351jwbtUL3mrj2v9SI47ICLFFsMPNMtfxdF/wH1/DthuDZCmBlKzAqsKrkMbo8RTHO + IS6v+SWzFF6rBsyvH6Gzb/iviXTLFLe7WccEXab58dgIHFIutwOJFoHTG55d7J1dGybLm+djAqcRVGew + MgJ/kV6v7ARuA+aaXN4xYCsETgaFnuMKsEA51mCczdoMZw0pqmaYWEYCN6Vn2ka0aNM0/AQ9tQJZF/2B + OYECuq6jWJLxki0aBh29Q78NLC36TwTyW9+yitx7CfHnd3uDWd+BQKpSNR0fxW+k0gXcx3P2BtOrewKr + qlRWkH77gpTMIxxN2xvwZq344vKfZSRePhCRsgjePNdvULu4WOINV3evOA091W9Qu7ibhwwC4RT2L+L1 + GfBsF7YGvFlPMMbYD0+fNqe/2VNCAAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPlugin.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPlugin.cs new file mode 100644 index 0000000..1517813 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/FrequencyScannerPlugin.cs @@ -0,0 +1,33 @@ +using SDRSharp.Common; +using System.Windows.Forms; + +namespace SDRSharp.FrequencyScanner +{ + public class FrequencyScannerPlugin : ISharpPlugin + { + private const string _displayName = "Frequency Scanner"; + + private ISharpControl _controlInterface; + + private FrequencyScannerPanel _frequencyScannerPanel; + + public UserControl Gui => this._frequencyScannerPanel; + + public string DisplayName => "Frequency Scanner"; + + public void Close() + { + if (this._frequencyScannerPanel != null) + { + this._frequencyScannerPanel.ScanStop(); + this._frequencyScannerPanel.SaveSettings(); + } + } + + public void Initialize(ISharpControl control) + { + this._controlInterface = control; + this._frequencyScannerPanel = new FrequencyScannerPanel(this._controlInterface); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/IFProcessor.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/IFProcessor.cs new file mode 100644 index 0000000..360a73c --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/IFProcessor.cs @@ -0,0 +1,47 @@ +using SDRSharp.Radio; + +namespace SDRSharp.FrequencyScanner +{ + public class IFProcessor : IIQProcessor, IBaseProcessor + { + public unsafe delegate void IQReadyDelegate(Complex* buffer, int length); + + private double _sampleRate; + + private bool _enabled; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + } + } + + public bool Enabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public event IQReadyDelegate IQReady; + + public unsafe void Process(Complex* buffer, int length) + { + if (this.IQReady != null) + { + this.IQReady(buffer, length); + } + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntry.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntry.cs new file mode 100644 index 0000000..c2acf67 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntry.cs @@ -0,0 +1,135 @@ +using SDRSharp.Radio; + +namespace SDRSharp.FrequencyScanner +{ + public class MemoryEntry + { + private long _frequency; + + private DetectorType _detectorType; + + private string _name; + + private long _shift; + + private long _centerFrequency; + + private string _groupName; + + private long _filterBandwidth; + + private bool _isFavourite; + + public bool IsFavourite + { + get + { + return this._isFavourite; + } + set + { + this._isFavourite = value; + } + } + + public string Name + { + get + { + return this._name; + } + set + { + this._name = value; + } + } + + public string GroupName + { + get + { + return this._groupName; + } + set + { + this._groupName = value; + } + } + + public long Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = value; + } + } + + public DetectorType DetectorType + { + get + { + return this._detectorType; + } + set + { + this._detectorType = value; + } + } + + public long Shift + { + get + { + return this._shift; + } + set + { + this._shift = value; + } + } + + public long FilterBandwidth + { + get + { + return this._filterBandwidth; + } + set + { + this._filterBandwidth = value; + } + } + + public long CenterFrequency + { + get + { + return this._centerFrequency; + } + set + { + this._centerFrequency = value; + } + } + + public MemoryEntry() + { + } + + public MemoryEntry(MemoryEntry memoryEntry) + { + this._name = memoryEntry._name; + this._groupName = memoryEntry._groupName; + this._detectorType = memoryEntry._detectorType; + this._frequency = memoryEntry._frequency; + this._shift = memoryEntry._shift; + this._centerFrequency = memoryEntry._centerFrequency; + this._filterBandwidth = memoryEntry._filterBandwidth; + this._isFavourite = memoryEntry._isFavourite; + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryFrequencyRange.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryFrequencyRange.cs new file mode 100644 index 0000000..f2e242c --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryFrequencyRange.cs @@ -0,0 +1,136 @@ +using SDRSharp.Radio; +using System.Drawing; + +namespace SDRSharp.FrequencyScanner +{ + public class MemoryEntryFrequencyRange + { + private long _startFrequency; + + private long _endFrequency; + + private string _rangeName; + + private DetectorType _detectorType; + + private int _stepSize; + + private int _filterBandwidth; + + private Point _lastLocation; + + private Size _lastSize; + + public int StepSize + { + get + { + return this._stepSize; + } + set + { + this._stepSize = value; + } + } + + public int FilterBandwidth + { + get + { + return this._filterBandwidth; + } + set + { + this._filterBandwidth = value; + } + } + + public Size LastSize + { + get + { + return this._lastSize; + } + set + { + this._lastSize = value; + } + } + + public Point LastLocation + { + get + { + return this._lastLocation; + } + set + { + this._lastLocation = value; + } + } + + public long StartFrequency + { + get + { + return this._startFrequency; + } + set + { + this._startFrequency = value; + } + } + + public long EndFrequency + { + get + { + return this._endFrequency; + } + set + { + this._endFrequency = value; + } + } + + public string RangeName + { + get + { + return this._rangeName; + } + set + { + this._rangeName = value; + } + } + + public DetectorType RangeDetectorType + { + get + { + return this._detectorType; + } + set + { + this._detectorType = value; + } + } + + public MemoryEntryFrequencyRange() + { + } + + public MemoryEntryFrequencyRange(MemoryEntryFrequencyRange memoryEntryFrequencyRange) + { + this._startFrequency = memoryEntryFrequencyRange._startFrequency; + this._endFrequency = memoryEntryFrequencyRange._endFrequency; + this._rangeName = memoryEntryFrequencyRange._rangeName; + this._detectorType = memoryEntryFrequencyRange._detectorType; + this._lastLocation = memoryEntryFrequencyRange._lastLocation; + this._lastSize = memoryEntryFrequencyRange._lastSize; + this._stepSize = memoryEntryFrequencyRange._stepSize; + this._filterBandwidth = memoryEntryFrequencyRange._filterBandwidth; + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryNewFrequency.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryNewFrequency.cs new file mode 100644 index 0000000..ac0ae87 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryNewFrequency.cs @@ -0,0 +1,58 @@ +namespace SDRSharp.FrequencyScanner +{ + public class MemoryEntryNewFrequency + { + private long _frequency; + + private float _activity; + + private long _centerFrequency; + + public long Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = value; + } + } + + public long CenterFrequency + { + get + { + return this._centerFrequency; + } + set + { + this._centerFrequency = value; + } + } + + public float Activity + { + get + { + return this._activity; + } + set + { + this._activity = value; + } + } + + public MemoryEntryNewFrequency() + { + } + + public MemoryEntryNewFrequency(MemoryEntryNewFrequency memoryEntryNewFrequency) + { + this._frequency = memoryEntryNewFrequency._frequency; + this._activity = memoryEntryNewFrequency._activity; + this._centerFrequency = memoryEntryNewFrequency._centerFrequency; + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryNewSkipAndRangeFrequency.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryNewSkipAndRangeFrequency.cs new file mode 100644 index 0000000..f4cdd69 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/MemoryEntryNewSkipAndRangeFrequency.cs @@ -0,0 +1,128 @@ +using System.Collections.Generic; +using System.Drawing; + +namespace SDRSharp.FrequencyScanner +{ + public class MemoryEntryNewSkipAndRangeFrequency + { + private List _skipFrequencyArray; + + private List _scanFrequencyRange; + + private List _newFrequency; + + private Point _lastLocationScreen; + + private Size _lastSizeScreen; + + private Point _lastLocationMultiSelect; + + private Size _lastSizeMultiSelect; + + public List SkipFrequencyArray + { + get + { + return this._skipFrequencyArray; + } + set + { + this._skipFrequencyArray = value; + } + } + + public List FrequencyRange + { + get + { + return this._scanFrequencyRange; + } + set + { + this._scanFrequencyRange = value; + } + } + + public List NewFrequency + { + get + { + return this._newFrequency; + } + set + { + this._newFrequency = value; + } + } + + public Size LastSizeScreen + { + get + { + return this._lastSizeScreen; + } + set + { + this._lastSizeScreen = value; + } + } + + public Point LastLocationScreen + { + get + { + return this._lastLocationScreen; + } + set + { + this._lastLocationScreen = value; + } + } + + public Size LastSizeMultiSelect + { + get + { + return this._lastSizeMultiSelect; + } + set + { + this._lastSizeMultiSelect = value; + } + } + + public Point LastLocationMultiSelect + { + get + { + return this._lastLocationMultiSelect; + } + set + { + this._lastLocationMultiSelect = value; + } + } + + public MemoryEntryNewSkipAndRangeFrequency() + { + this._scanFrequencyRange = new List(); + this._newFrequency = new List(); + this._skipFrequencyArray = new List(); + this._lastLocationScreen = default(Point); + this._lastSizeScreen = default(Size); + this._lastLocationMultiSelect = default(Point); + this._lastSizeMultiSelect = default(Size); + } + + public MemoryEntryNewSkipAndRangeFrequency(MemoryEntryNewSkipAndRangeFrequency memoryEntry) + { + this._skipFrequencyArray = memoryEntry._skipFrequencyArray; + this._scanFrequencyRange = memoryEntry._scanFrequencyRange; + this._newFrequency = memoryEntry._newFrequency; + this._lastLocationScreen = memoryEntry._lastLocationScreen; + this._lastSizeScreen = memoryEntry._lastSizeScreen; + this._lastLocationMultiSelect = memoryEntry._lastLocationMultiSelect; + this._lastSizeMultiSelect = memoryEntry._lastSizeMultiSelect; + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/Properties.Resources.resx b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/Properties.Resources.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/Properties.Resources.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SerializableDictionary.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SerializableDictionary.cs new file mode 100644 index 0000000..449b526 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SerializableDictionary.cs @@ -0,0 +1,74 @@ +using System; +using System.Collections.Generic; + +namespace SDRSharp.FrequencyScanner +{ + [Serializable] + public class SerializableDictionary + { + private List _keys = new List(); + + private List _values = new List(); + + public TValue this[TKey index] + { + get + { + int num = this._keys.IndexOf(index); + if (num != -1) + { + return this._values[num]; + } + throw new KeyNotFoundException(); + } + set + { + int num = this._keys.IndexOf(index); + if (num == -1) + { + this._keys.Add(index); + this._values.Add(value); + } + else + { + this._values[num] = value; + } + } + } + + public List Keys + { + get + { + return this._keys; + } + set + { + this._keys = value; + } + } + + public List Values + { + get + { + return this._values; + } + set + { + this._values = value; + } + } + + public bool ContainsKey(TKey key) + { + return this._keys.IndexOf(key) != -1; + } + + public void Clear() + { + this._keys.Clear(); + this._values.Clear(); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SettingsPersister.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SettingsPersister.cs new file mode 100644 index 0000000..ab536de --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SettingsPersister.cs @@ -0,0 +1,73 @@ +using System.Collections.Generic; +using System.IO; +using System.Windows.Forms; +using System.Xml.Serialization; + +namespace SDRSharp.FrequencyScanner +{ + public class SettingsPersister + { + private const string FilenameScannerSettings = "scanner_entryes.xml"; + + private const string FilenameFrequencyManager = "frequencies.xml"; + + private readonly string _settingsFolder; + + public SettingsPersister() + { + this._settingsFolder = Path.GetDirectoryName(Application.ExecutablePath); + } + + public MemoryEntryNewSkipAndRangeFrequency ReadStored() + { + MemoryEntryNewSkipAndRangeFrequency memoryEntryNewSkipAndRangeFrequency = this.ReadObject("scanner_entryes.xml"); + if (memoryEntryNewSkipAndRangeFrequency != null) + { + return memoryEntryNewSkipAndRangeFrequency; + } + return new MemoryEntryNewSkipAndRangeFrequency(); + } + + public void PersistStored(MemoryEntryNewSkipAndRangeFrequency entries) + { + this.WriteObject(entries, "scanner_entryes.xml"); + } + + public List ReadStoredFrequencies() + { + List list = this.ReadObject>("frequencies.xml"); + if (list != null) + { + list.Sort((MemoryEntry e1, MemoryEntry e2) => e1.Frequency.CompareTo(e2.Frequency)); + return list; + } + return new List(); + } + + public void PersistStoredFrequencies(List entries) + { + this.WriteObject(entries, "frequencies.xml"); + } + + private T ReadObject(string fileName) + { + string path = Path.Combine(this._settingsFolder, fileName); + if (File.Exists(path)) + { + using (FileStream stream = new FileStream(path, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite)) + { + return (T)new XmlSerializer(typeof(T)).Deserialize(stream); + } + } + return default(T); + } + + private void WriteObject(T obj, string fileName) + { + using (FileStream stream = new FileStream(Path.Combine(this._settingsFolder, fileName), FileMode.Create)) + { + new XmlSerializer(obj.GetType()).Serialize(stream, obj); + } + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SortableBindingList.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SortableBindingList.cs new file mode 100644 index 0000000..ab22195 --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SortableBindingList.cs @@ -0,0 +1,40 @@ +using System.Collections.Generic; +using System.ComponentModel; + +namespace SDRSharp.FrequencyScanner +{ + public class SortableBindingList : BindingList + { + private bool _isSorted; + + private PropertyDescriptor _sortProperty; + + private ListSortDirection _sortDirection; + + protected override bool SupportsSortingCore => true; + + protected override ListSortDirection SortDirectionCore => this._sortDirection; + + protected override PropertyDescriptor SortPropertyCore => this._sortProperty; + + protected override bool IsSortedCore => this._isSorted; + + protected override void ApplySortCore(PropertyDescriptor property, ListSortDirection direction) + { + List list = (List)base.Items; + if (list != null) + { + SortableBindingListComparer comparer = new SortableBindingListComparer(property.Name, direction); + list.Sort(comparer); + this._isSorted = true; + } + else + { + this._isSorted = false; + } + this._sortProperty = property; + this._sortDirection = direction; + this.OnListChanged(new ListChangedEventArgs(ListChangedType.Reset, -1)); + } + } +} diff --git a/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SortableBindingListComparer.cs b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SortableBindingListComparer.cs new file mode 100644 index 0000000..5c5b7fe --- /dev/null +++ b/Plugins/SDRSharper.FrequencyScanner/SDRSharp.FrequencyScanner/SortableBindingListComparer.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Reflection; + +namespace SDRSharp.FrequencyScanner +{ + public class SortableBindingListComparer : IComparer + { + private PropertyInfo _sortProperty; + + private ListSortDirection _sortDirection; + + public SortableBindingListComparer(string sortProperty, ListSortDirection sortDirection) + { + this._sortProperty = typeof(T).GetProperty(sortProperty); + this._sortDirection = sortDirection; + } + + public int Compare(T x, T y) + { + IComparable comparable = (IComparable)this._sortProperty.GetValue(x, null); + IComparable comparable2 = (IComparable)this._sortProperty.GetValue(y, null); + if (this._sortDirection == ListSortDirection.Ascending) + { + return comparable.CompareTo(comparable2); + } + return comparable2.CompareTo(comparable); + } + } +} diff --git a/Plugins/SDRSharper.NoiseBlanker/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.NoiseBlanker/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2d377dd --- /dev/null +++ b/Plugins/SDRSharper.NoiseBlanker/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Security.Permissions; + +[assembly: AssemblyCopyright("Copyright © Youssef Touil 2014")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyDescription("Noise Blanker Plugin")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SDR#")] +[assembly: Guid("dfd7918b-ff74-4825-a628-ac87c85d5e9f")] +[assembly: AssemblyTitle("SDRSharp.NoiseBlanker")] +[assembly: ComVisible(false)] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: CompilationRelaxations(8)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker.csproj b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker.csproj new file mode 100644 index 0000000..513e141 --- /dev/null +++ b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker.csproj @@ -0,0 +1,58 @@ + + + + {19B5337B-ECFD-460C-B48F-53747F45F37E} + Debug + x86 + Library + SDRSharp.NoiseBlanker + v2.0 + 4 + True + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Common.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Windows\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089\System.Core.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + + + + UserControl + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ComplexHelper.cs b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ComplexHelper.cs new file mode 100644 index 0000000..6320f95 --- /dev/null +++ b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ComplexHelper.cs @@ -0,0 +1,15 @@ +using SDRSharp.Radio; +using System; + +namespace SDRSharp.NoiseBlanker +{ + internal static class ComplexHelper + { + public static float FastMagnitude(this Complex c) + { + float val = Math.Abs(c.Real); + float val2 = Math.Abs(c.Imag); + return Math.Max(val, val2); + } + } +} diff --git a/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/NoiseBlankerPlugin.cs b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/NoiseBlankerPlugin.cs new file mode 100644 index 0000000..e6e4ef9 --- /dev/null +++ b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/NoiseBlankerPlugin.cs @@ -0,0 +1,41 @@ +using SDRSharp.Common; +using SDRSharp.Radio; +using System.Windows.Forms; + +namespace SDRSharp.NoiseBlanker +{ + public class NoiseBlankerPlugin : ISharpPlugin + { + private const string _displayName = "Noise Blanker"; + + private ISharpControl _control; + + private NoiseBlankerProcessor _processor; + + private ProcessorPanel _guiControl; + + public string DisplayName => "Noise Blanker"; + + public bool HasGui => true; + + public UserControl GuiControl => this._guiControl; + + public void Initialize(ISharpControl control) + { + this._control = control; + this._processor = new NoiseBlankerProcessor(); + this._processor.Enabled = Utils.GetBooleanSetting("NBEnabled"); + this._processor.NoiseThreshold = Utils.GetIntSetting("NBThreshold", 80); + this._processor.PulseWidth = Utils.GetDoubleSetting("NBPulseWidth", 10.0); + this._guiControl = new ProcessorPanel(this._processor); + this._control.RegisterStreamHook(this._processor, ProcessorType.RawIQ); + } + + public void Close() + { + Utils.SaveSetting("NBEnabled", this._processor.Enabled); + Utils.SaveSetting("NBThreshold", this._processor.NoiseThreshold); + Utils.SaveSetting("NBPulseWidth", this._processor.PulseWidth); + } + } +} diff --git a/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/NoiseBlankerProcessor.cs b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/NoiseBlankerProcessor.cs new file mode 100644 index 0000000..fbbbe73 --- /dev/null +++ b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/NoiseBlankerProcessor.cs @@ -0,0 +1,138 @@ +using SDRSharp.Radio; +using System; + +namespace SDRSharp.NoiseBlanker +{ + public class NoiseBlankerProcessor : IIQProcessor, IBaseProcessor + { + private const int SizeFactor = 2; + + private static readonly int AveragingWindow = 1000; + + private double _sampleRate; + + private bool _enabled; + + private bool _needConfigure; + + private int _averagingWindowLength; + + private int _blankingWindowLength; + + private int _index; + + private int _threshold; + + private double _pulseWidth; + + private float _ratio; + + private float _sum; + + private float _norm; + + private float _alpha; + + private UnsafeBuffer _delay; + + private unsafe Complex* _delayPtr; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + this._needConfigure = true; + } + } + + public bool Enabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public int NoiseThreshold + { + get + { + return this._threshold; + } + set + { + this._threshold = value; + this._ratio = ((float)(100 - this._threshold) * 0.1f + 1f) * this._norm; + } + } + + public double PulseWidth + { + get + { + return this._pulseWidth; + } + set + { + this._pulseWidth = value; + double num = Math.Min(Math.Max(this._pulseWidth * 1E-06 * this._sampleRate, 1.0), (double)this._averagingWindowLength); + this._blankingWindowLength = (int)num; + this._alpha = 1f / (float)this._blankingWindowLength; + } + } + + private unsafe void Configure() + { + this._index = 0; + this._sum = 0f; + this._averagingWindowLength = (int)((double)NoiseBlankerProcessor.AveragingWindow * 1E-06 * this._sampleRate); + this._norm = 1f / (float)this._averagingWindowLength; + this._ratio = ((float)(100 - this._threshold) * 0.1f + 1f) * this._norm; + this._delay = UnsafeBuffer.Create((2 * this._averagingWindowLength + 1) * 2, sizeof(Complex)); + this._delayPtr = (Complex*)(void*)this._delay; + double num = Math.Min(Math.Max(this._pulseWidth * 1E-06 * this._sampleRate, 1.0), (double)this._averagingWindowLength); + this._blankingWindowLength = (int)num; + this._alpha = 1f / (float)this._blankingWindowLength; + } + + public unsafe void Process(Complex* buffer, int length) + { + if (this._needConfigure) + { + this.Configure(); + this._needConfigure = false; + } + for (int i = 0; i < length; i++) + { + Complex* ptr = this._delayPtr + this._index; + *ptr = buffer[i]; + float num = ptr[this._averagingWindowLength].FastMagnitude(); + this._sum -= num; + this._sum += (*ptr).FastMagnitude(); + if (num > this._ratio * this._sum) + { + Complex* ptr2 = ptr + this._averagingWindowLength; + for (int j = 0; j < this._blankingWindowLength; j++) + { + Complex.Mul(ref ptr2[j], (float)j * this._alpha); + } + } + buffer[i] = ptr[this._averagingWindowLength * 2]; + if (--this._index < 0) + { + this._index = 2 * this._averagingWindowLength + 1; + Utils.Memcpy(this._delayPtr + this._index + 1, this._delayPtr, 2 * this._averagingWindowLength * sizeof(Complex)); + } + } + } + } +} diff --git a/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.Designer.cs b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.Designer.cs new file mode 100644 index 0000000..8a8a15e --- /dev/null +++ b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.Designer.cs @@ -0,0 +1,69 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SDRSharp.NoiseBlanker { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class ProcessorPanel { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + private NoiseBlankerProcessor _processor; + + public ProcessorPanel(NoiseBlankerProcessor processor) + { + _processor = processor; + } + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ProcessorPanel() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SDRSharp.NoiseBlanker.ProcessorPanel", typeof(ProcessorPanel).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.cs b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.cs new file mode 100644 index 0000000..876b918 --- /dev/null +++ b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.cs @@ -0,0 +1,154 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.NoiseBlanker +{ + public class ProcessorPanel : UserControl + { + private IContainer components; + + private CheckBox enableCheckBox; + + private Label thresholdLabel; + + private TrackBar thresholdTrackBar; + + private Label pulseWidthLabel; + + private TrackBar pulseWidthTrackBar; + + private Label label2; + + private NoiseBlankerProcessor _processor; + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.enableCheckBox = new CheckBox(); + this.thresholdLabel = new Label(); + this.thresholdTrackBar = new TrackBar(); + this.pulseWidthLabel = new Label(); + this.pulseWidthTrackBar = new TrackBar(); + this.label2 = new Label(); + ((ISupportInitialize)this.thresholdTrackBar).BeginInit(); + ((ISupportInitialize)this.pulseWidthTrackBar).BeginInit(); + base.SuspendLayout(); + this.enableCheckBox.Anchor = AnchorStyles.Top; + this.enableCheckBox.AutoSize = true; + this.enableCheckBox.Location = new Point(6, 3); + this.enableCheckBox.Name = "enableCheckBox"; + this.enableCheckBox.Size = new Size(65, 17); + this.enableCheckBox.TabIndex = 0; + this.enableCheckBox.Text = "Enabled"; + this.enableCheckBox.UseVisualStyleBackColor = true; + this.enableCheckBox.CheckedChanged += this.enableCheckBox_CheckedChanged; + this.thresholdLabel.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.thresholdLabel.ForeColor = SystemColors.ControlText; + this.thresholdLabel.Location = new Point(91, 3); + this.thresholdLabel.Name = "thresholdLabel"; + this.thresholdLabel.Size = new Size(87, 23); + this.thresholdLabel.TabIndex = 6; + this.thresholdLabel.Text = "50"; + this.thresholdLabel.TextAlign = ContentAlignment.MiddleRight; + this.thresholdLabel.Click += this.thresholdLabel_Click; + this.thresholdTrackBar.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.thresholdTrackBar.Location = new Point(0, 29); + this.thresholdTrackBar.Maximum = 100; + this.thresholdTrackBar.Name = "thresholdTrackBar"; + this.thresholdTrackBar.Size = new Size(198, 45); + this.thresholdTrackBar.TabIndex = 1; + this.thresholdTrackBar.TickFrequency = 5; + this.thresholdTrackBar.Value = 20; + this.thresholdTrackBar.Scroll += this.thresholdTrackBar_Scroll; + this.pulseWidthLabel.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.pulseWidthLabel.ForeColor = SystemColors.ControlText; + this.pulseWidthLabel.Location = new Point(91, 57); + this.pulseWidthLabel.Name = "pulseWidthLabel"; + this.pulseWidthLabel.Size = new Size(87, 23); + this.pulseWidthLabel.TabIndex = 8; + this.pulseWidthLabel.Text = "50"; + this.pulseWidthLabel.TextAlign = ContentAlignment.MiddleRight; + this.pulseWidthLabel.Click += this.pulseWidthLabel_Click; + this.pulseWidthTrackBar.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.pulseWidthTrackBar.Location = new Point(6, 75); + this.pulseWidthTrackBar.Maximum = 1000; + this.pulseWidthTrackBar.Minimum = 1; + this.pulseWidthTrackBar.Name = "pulseWidthTrackBar"; + this.pulseWidthTrackBar.Size = new Size(198, 45); + this.pulseWidthTrackBar.TabIndex = 2; + this.pulseWidthTrackBar.TickFrequency = 50; + this.pulseWidthTrackBar.Value = 100; + this.pulseWidthTrackBar.Scroll += this.pulseWidthTrackBar_Scroll; + this.label2.AutoSize = true; + this.label2.Location = new Point(-7, 63); + this.label2.Name = "label2"; + this.label2.Size = new Size(61, 13); + this.label2.TabIndex = 9; + this.label2.Text = "Pulse width"; + this.label2.Click += this.label2_Click; + this.BackColor = SystemColors.ControlLight; + base.Controls.Add(this.label2); + base.Controls.Add(this.pulseWidthLabel); + base.Controls.Add(this.pulseWidthTrackBar); + base.Controls.Add(this.thresholdLabel); + base.Controls.Add(this.thresholdTrackBar); + base.Controls.Add(this.enableCheckBox); + base.Name = "ProcessorPanel"; + base.Size = new Size(204, 134); + ((ISupportInitialize)this.thresholdTrackBar).EndInit(); + ((ISupportInitialize)this.pulseWidthTrackBar).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + + public ProcessorPanel(NoiseBlankerProcessor processor) + { + this._processor = processor; + this.InitializeComponent(); + this.enableCheckBox.Checked = this._processor.Enabled; + this.thresholdTrackBar.Value = this._processor.NoiseThreshold; + this.pulseWidthTrackBar.Value = (int)(this._processor.PulseWidth * 10.0); + this.thresholdTrackBar_Scroll(null, null); + this.pulseWidthTrackBar_Scroll(null, null); + } + + private void enableCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._processor.Enabled = this.enableCheckBox.Checked; + } + + private void thresholdTrackBar_Scroll(object sender, EventArgs e) + { + this._processor.NoiseThreshold = this.thresholdTrackBar.Value; + this.thresholdLabel.Text = this._processor.NoiseThreshold.ToString(); + } + + private void pulseWidthTrackBar_Scroll(object sender, EventArgs e) + { + this._processor.PulseWidth = (double)((float)this.pulseWidthTrackBar.Value * 0.1f); + this.pulseWidthLabel.Text = this._processor.PulseWidth.ToString("0.00") + " µS"; + } + + private void pulseWidthLabel_Click(object sender, EventArgs e) + { + } + + private void label2_Click(object sender, EventArgs e) + { + } + + private void thresholdLabel_Click(object sender, EventArgs e) + { + } + } +} diff --git a/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.resx b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/Plugins/SDRSharper.NoiseBlanker/SDRSharp.NoiseBlanker/ProcessorPanel.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.NoiseReduction/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.NoiseReduction/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..65f312c --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Security.Permissions; + +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyTrademark("")] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyDescription("IAudioInterceptor Test Plugin")] +[assembly: ComVisible(false)] +[assembly: CompilationRelaxations(8)] +[assembly: AssemblyCopyright("Copyright © Youssef TOUIL and Ian Gilmour 2013")] +[assembly: AssemblyTitle("AudioInterceptorTest")] +[assembly: AssemblyProduct("SDR#")] +[assembly: Guid("dfd7918b-ff74-4825-a628-ac37c85d5e9f")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction.csproj b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction.csproj new file mode 100644 index 0000000..700af53 --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction.csproj @@ -0,0 +1,65 @@ + + + + {A7EBED63-F37F-4F46-AAC3-5DA5794200C7} + Debug + x86 + Library + SDRSharp.NoiseReduction + v2.0 + 4 + True + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Common.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Controls.dll + + + C:\Windows\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089\System.Core.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + + + + + + + UserControl + + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/AFProcessor.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/AFProcessor.cs new file mode 100644 index 0000000..eed415d --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/AFProcessor.cs @@ -0,0 +1,62 @@ +using SDRSharp.Radio; + +namespace SDRSharp.NoiseReduction +{ + public class AFProcessor : INoiseProcessor, IRealProcessor, IBaseProcessor + { + private double _sampleRate; + + private bool _enabled; + + private NoiseFilter _filter1; + + private NoiseFilter _filter2; + + private bool _needNewFilters; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + this._needNewFilters = true; + } + } + + public bool Enabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public int NoiseThreshold + { + get; + set; + } + + public unsafe void Process(float* buffer, int length) + { + if (this._needNewFilters) + { + this._filter1 = new NoiseFilter(4096); + this._filter2 = new NoiseFilter(4096); + this._needNewFilters = false; + } + this._filter1.NoiseThreshold = (float)this.NoiseThreshold; + this._filter2.NoiseThreshold = (float)this.NoiseThreshold; + this._filter1.Process(buffer, length, 2); + this._filter2.Process(buffer + 1, length, 2); + } + } +} diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/ComplexHelper.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/ComplexHelper.cs new file mode 100644 index 0000000..a4bdff7 --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/ComplexHelper.cs @@ -0,0 +1,15 @@ +using SDRSharp.Radio; +using System; + +namespace SDRSharp.NoiseReduction +{ + internal static class ComplexHelper + { + public static float FastMagnitude(this Complex c) + { + float val = Math.Abs(c.Real); + float val2 = Math.Abs(c.Imag); + return Math.Max(val, val2); + } + } +} diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/IFProcessor.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/IFProcessor.cs new file mode 100644 index 0000000..c3977f8 --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/IFProcessor.cs @@ -0,0 +1,57 @@ +using SDRSharp.Radio; + +namespace SDRSharp.NoiseReduction +{ + public class IFProcessor : INoiseProcessor, IIQProcessor, IBaseProcessor + { + private double _sampleRate; + + private bool _enabled; + + private NoiseFilter _filter; + + private bool _needNewFilter; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + this._needNewFilter = true; + } + } + + public bool Enabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public int NoiseThreshold + { + get; + set; + } + + public unsafe void Process(Complex* buffer, int length) + { + if (this._needNewFilter) + { + this._filter = new NoiseFilter(4096); + this._needNewFilter = false; + } + this._filter.NoiseThreshold = (float)this.NoiseThreshold; + this._filter.Process(buffer, length); + } + } +} diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/INoiseProcessor.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/INoiseProcessor.cs new file mode 100644 index 0000000..f7ae7c2 --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/INoiseProcessor.cs @@ -0,0 +1,13 @@ +using SDRSharp.Radio; + +namespace SDRSharp.NoiseReduction +{ + public interface INoiseProcessor : IBaseProcessor + { + int NoiseThreshold + { + get; + set; + } + } +} diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseBlankerProcessor.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseBlankerProcessor.cs new file mode 100644 index 0000000..0add0e2 --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseBlankerProcessor.cs @@ -0,0 +1,141 @@ +using SDRSharp.Radio; +using System; + +namespace SDRSharp.NoiseReduction +{ + public class NoiseBlankerProcessor : IIQProcessor, IBaseProcessor + { + private const int SizeFactor = 2; + + private static readonly int AveragingWindow = 1000; + + private double _sampleRate; + + private bool _enabled; + + private bool _needConfigure; + + private int _averagingWindowLength; + + private int _blankingWindowLength; + + private int _index; + + private int _threshold; + + private double _pulseWidth; + + private float _ratio; + + private float _sum; + + private float _norm; + + private float _alpha; + + private UnsafeBuffer _delay; + + private unsafe Complex* _delayPtr; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + this._needConfigure = true; + } + } + + public bool Enabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public int NoiseThreshold + { + get + { + return this._threshold; + } + set + { + this._threshold = value; + this._ratio = ((float)(100 - this._threshold) * 0.1f + 1f) * this._norm; + } + } + + public double PulseWidth + { + get + { + return this._pulseWidth; + } + set + { + this._pulseWidth = value; + double num = Math.Min(Math.Max(this._pulseWidth * 1E-06 * this._sampleRate, 1.0), (double)this._averagingWindowLength); + this._blankingWindowLength = (int)num; + this._alpha = 1f / (float)this._blankingWindowLength; + } + } + + private unsafe void Configure() + { + this._index = 0; + this._sum = 0f; + this._averagingWindowLength = (int)((double)NoiseBlankerProcessor.AveragingWindow * 1E-06 * this._sampleRate); + this._norm = 1f / (float)this._averagingWindowLength; + this._ratio = ((float)(100 - this._threshold) * 0.1f + 1f) * this._norm; + this._delay = UnsafeBuffer.Create((2 * this._averagingWindowLength + 1) * 2, sizeof(Complex)); + this._delayPtr = (Complex*)(void*)this._delay; + double num = Math.Min(Math.Max(this._pulseWidth * 1E-06 * this._sampleRate, 1.0), (double)this._averagingWindowLength); + this._blankingWindowLength = (int)num; + this._alpha = 1f / (float)this._blankingWindowLength; + } + + public unsafe void Process(Complex* buffer, int length) + { + if (this._needConfigure) + { + this.Configure(); + this._needConfigure = false; + } + if (this.SampleRate != 0.0) + { + for (int i = 0; i < length; i++) + { + Complex* ptr = this._delayPtr + this._index; + *ptr = buffer[i]; + float num = ptr[this._averagingWindowLength].FastMagnitude(); + this._sum -= num; + this._sum += (*ptr).FastMagnitude(); + if (num > this._ratio * this._sum) + { + Complex* ptr2 = ptr + this._averagingWindowLength; + for (int j = 0; j < this._blankingWindowLength; j++) + { + Complex.Mul(ref ptr2[j], (float)j * this._alpha); + } + } + buffer[i] = ptr[this._averagingWindowLength * 2]; + if (--this._index < 0) + { + this._index = 2 * this._averagingWindowLength + 1; + Utils.Memcpy(this._delayPtr + this._index + 1, this._delayPtr, 2 * this._averagingWindowLength * sizeof(Complex)); + } + } + } + } + } +} diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseFilter.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseFilter.cs new file mode 100644 index 0000000..d727646 --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseFilter.cs @@ -0,0 +1,82 @@ +using SDRSharp.Radio; + +namespace SDRSharp.NoiseReduction +{ + public class NoiseFilter : FftProcessor + { + private const int WindowSize = 32; + + private const int FftSize = 4096; + + private const float OverlapRatio = 0.2f; + + private float _noiseThreshold; + + private readonly UnsafeBuffer _gainBuffer; + + private unsafe readonly float* _gainPtr; + + private readonly UnsafeBuffer _smoothedGainBuffer; + + private unsafe readonly float* _smoothedGainPtr; + + private readonly UnsafeBuffer _powerBuffer; + + private unsafe readonly float* _powerPtr; + + public float NoiseThreshold + { + get + { + return this._noiseThreshold; + } + set + { + this._noiseThreshold = value; + } + } + + public unsafe NoiseFilter(int fftSize = 4096) + : base(fftSize, 0.2f) + { + this._gainBuffer = UnsafeBuffer.Create(fftSize, 4); + this._gainPtr = (float*)(void*)this._gainBuffer; + this._smoothedGainBuffer = UnsafeBuffer.Create(fftSize, 4); + this._smoothedGainPtr = (float*)(void*)this._smoothedGainBuffer; + this._powerBuffer = UnsafeBuffer.Create(fftSize, 4); + this._powerPtr = (float*)(void*)this._powerBuffer; + } + + protected unsafe override void ProcessFft(Complex* buffer, int length) + { + Fourier.SpectrumPower(buffer, this._powerPtr, length, 0f, false); + for (int i = 0; i < length; i++) + { + this._gainPtr[i] = ((this._powerPtr[i] > this._noiseThreshold) ? 1f : 0f); + } + for (int j = 0; j < length; j++) + { + float num = 0f; + for (int k = -16; k < 16; k++) + { + int num2 = j + k; + if (num2 >= length) + { + num2 -= length; + } + if (num2 < 0) + { + num2 += length; + } + num += this._gainPtr[num2]; + } + float num3 = num / 32f; + this._smoothedGainPtr[j] = num3; + } + for (int l = 0; l < length; l++) + { + Complex.Mul(ref buffer[l], this._smoothedGainPtr[l]); + } + } + } +} diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.Designer.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.Designer.cs new file mode 100644 index 0000000..0c87484 --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SDRSharp.NoiseReduction { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class NoiseReductionPanel { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + private AFProcessor _audioProcessor; + private NoiseBlankerProcessor _noiseProcessor; + + public NoiseReductionPanel(IFProcessor _ifProcessor, AFProcessor audioProcessor, NoiseBlankerProcessor noiseProcessor) : this(_ifProcessor) + { + _audioProcessor = audioProcessor; + _noiseProcessor = noiseProcessor; + } + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal NoiseReductionPanel(IFProcessor _ifProcessor) { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SDRSharp.NoiseReduction.NoiseReductionPanel", typeof(NoiseReductionPanel).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.cs new file mode 100644 index 0000000..8459d65 --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.cs @@ -0,0 +1,336 @@ +using SDRSharp.Controls; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.NoiseReduction +{ + public class NoiseReductionPanel : UserControl + { + private INoiseProcessor _aControl; + + private INoiseProcessor _iControl; + + private NoiseBlankerProcessor _processor; + + private IContainer components; + + private Label ifThresholdLabel; + + private Label audioThresholdLabel; + + private gSliderH ifThresholdTrackBar; + + private gSliderH audioThresholdTrackBar; + + private Label label3; + + private Label pulseWidthLabel; + + private Label thresholdLabel; + + private gSliderH thresholdTrackBar; + + private gSliderH pulseWidthTrackBar; + + private gButton ifEnableCheckBox; + + private gButton audioEnableCheckbox; + + private gButton enableCheckBox; + + private Panel panel1; + + private Panel panel2; + + public NoiseReductionPanel(INoiseProcessor iControl, INoiseProcessor aControl, NoiseBlankerProcessor processor) + { + this._iControl = iControl; + this._aControl = aControl; + this._processor = processor; + this.InitializeComponent(); + this.ifThresholdTrackBar.Value = this._iControl.NoiseThreshold; + this.ifEnableCheckBox.Checked = this._iControl.Enabled; + this.audioThresholdTrackBar.Value = this._aControl.NoiseThreshold; + this.audioEnableCheckbox.Checked = this._aControl.Enabled; + this.ifThresholdTrackBar_Scroll(null, null); + this.audioThresholdTrackBar_Scroll(null, null); + this.thresholdTrackBar.Value = this._processor.NoiseThreshold; + this.pulseWidthTrackBar.Value = (int)(this._processor.PulseWidth * 10.0); + this.enableCheckBox.Checked = this._processor.Enabled; + this.thresholdTrackBar_Scroll(null, null); + this.pulseWidthTrackBar_Scroll(null, null); + } + + private void ifEnableCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._iControl.Enabled = this.ifEnableCheckBox.Checked; + this.ifThresholdTrackBar_Scroll(null, null); + } + + private void audioEnableCheckbox_CheckedChanged(object sender, EventArgs e) + { + this._aControl.Enabled = this.audioEnableCheckbox.Checked; + this.audioThresholdTrackBar_Scroll(null, null); + } + + private void ifThresholdTrackBar_Scroll(object sender, EventArgs e) + { + this.ifThresholdLabel.Text = this.ifThresholdTrackBar.Value + " dB"; + this._iControl.NoiseThreshold = this.ifThresholdTrackBar.Value; + } + + private void audioThresholdTrackBar_Scroll(object sender, EventArgs e) + { + this.audioThresholdLabel.Text = this.audioThresholdTrackBar.Value + " dB"; + this._aControl.NoiseThreshold = this.audioThresholdTrackBar.Value; + } + + private void enableCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._processor.Enabled = this.enableCheckBox.Checked; + this.thresholdTrackBar_Scroll(null, null); + this.pulseWidthTrackBar_Scroll(null, null); + } + + private void thresholdTrackBar_Scroll(object sender, EventArgs e) + { + this._processor.NoiseThreshold = this.thresholdTrackBar.Value; + this.thresholdLabel.Text = this._processor.NoiseThreshold.ToString(); + } + + private void pulseWidthTrackBar_Scroll(object sender, EventArgs e) + { + this._processor.PulseWidth = (double)((float)this.pulseWidthTrackBar.Value * 0.1f); + this.pulseWidthLabel.Text = this._processor.PulseWidth.ToString("0.0") + " µs"; + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.ifThresholdLabel = new Label(); + this.audioThresholdLabel = new Label(); + this.label3 = new Label(); + this.pulseWidthLabel = new Label(); + this.thresholdLabel = new Label(); + this.panel1 = new Panel(); + this.panel2 = new Panel(); + this.thresholdTrackBar = new gSliderH(); + this.enableCheckBox = new gButton(); + this.pulseWidthTrackBar = new gSliderH(); + this.ifThresholdTrackBar = new gSliderH(); + this.audioEnableCheckbox = new gButton(); + this.ifEnableCheckBox = new gButton(); + this.audioThresholdTrackBar = new gSliderH(); + this.panel1.SuspendLayout(); + this.panel2.SuspendLayout(); + base.SuspendLayout(); + this.ifThresholdLabel.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.ifThresholdLabel.ForeColor = Color.Yellow; + this.ifThresholdLabel.Location = new Point(45, 8); + this.ifThresholdLabel.Name = "ifThresholdLabel"; + this.ifThresholdLabel.Size = new Size(44, 23); + this.ifThresholdLabel.TabIndex = 6; + this.ifThresholdLabel.Text = "-5 dB"; + this.ifThresholdLabel.TextAlign = ContentAlignment.MiddleCenter; + this.audioThresholdLabel.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.audioThresholdLabel.ForeColor = Color.Yellow; + this.audioThresholdLabel.Location = new Point(45, 34); + this.audioThresholdLabel.Name = "audioThresholdLabel"; + this.audioThresholdLabel.Size = new Size(44, 23); + this.audioThresholdLabel.TabIndex = 6; + this.audioThresholdLabel.Text = "-5 dB"; + this.audioThresholdLabel.TextAlign = ContentAlignment.MiddleCenter; + this.label3.ForeColor = Color.Orange; + this.label3.Location = new Point(7, 32); + this.label3.Name = "label3"; + this.label3.Size = new Size(37, 30); + this.label3.TabIndex = 17; + this.label3.Text = "Pulse width"; + this.pulseWidthLabel.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.pulseWidthLabel.ForeColor = Color.Yellow; + this.pulseWidthLabel.Location = new Point(46, 31); + this.pulseWidthLabel.Name = "pulseWidthLabel"; + this.pulseWidthLabel.Size = new Size(44, 23); + this.pulseWidthLabel.TabIndex = 16; + this.pulseWidthLabel.Text = "50"; + this.pulseWidthLabel.TextAlign = ContentAlignment.MiddleCenter; + this.thresholdLabel.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.thresholdLabel.ForeColor = Color.Yellow; + this.thresholdLabel.Location = new Point(46, 6); + this.thresholdLabel.Name = "thresholdLabel"; + this.thresholdLabel.Size = new Size(44, 23); + this.thresholdLabel.TabIndex = 15; + this.thresholdLabel.Text = "50"; + this.thresholdLabel.TextAlign = ContentAlignment.MiddleCenter; + this.panel1.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.panel1.BackColor = Color.FromArgb(64, 64, 64); + this.panel1.Controls.Add(this.ifThresholdTrackBar); + this.panel1.Controls.Add(this.audioEnableCheckbox); + this.panel1.Controls.Add(this.ifEnableCheckBox); + this.panel1.Controls.Add(this.audioThresholdTrackBar); + this.panel1.Controls.Add(this.ifThresholdLabel); + this.panel1.Controls.Add(this.audioThresholdLabel); + this.panel1.Location = new Point(0, 2); + this.panel1.Name = "panel1"; + this.panel1.Size = new Size(198, 62); + this.panel1.TabIndex = 71; + this.panel2.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.panel2.BackColor = Color.FromArgb(64, 64, 64); + this.panel2.Controls.Add(this.thresholdTrackBar); + this.panel2.Controls.Add(this.enableCheckBox); + this.panel2.Controls.Add(this.pulseWidthTrackBar); + this.panel2.Controls.Add(this.label3); + this.panel2.Controls.Add(this.thresholdLabel); + this.panel2.Controls.Add(this.pulseWidthLabel); + this.panel2.Location = new Point(0, 63); + this.panel2.Name = "panel2"; + this.panel2.Size = new Size(198, 62); + this.panel2.TabIndex = 72; + this.thresholdTrackBar.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.thresholdTrackBar.Button = false; + this.thresholdTrackBar.Checked = false; + this.thresholdTrackBar.ColorFactor = 0.5f; + this.thresholdTrackBar.ForeColor = Color.Black; + this.thresholdTrackBar.Location = new Point(89, 10); + this.thresholdTrackBar.Margin = new Padding(4); + this.thresholdTrackBar.Maximum = 100; + this.thresholdTrackBar.Minimum = 0; + this.thresholdTrackBar.Name = "thresholdTrackBar"; + this.thresholdTrackBar.Size = new Size(107, 16); + this.thresholdTrackBar.TabIndex = 8; + this.thresholdTrackBar.TickColor = Color.Silver; + this.thresholdTrackBar.Ticks = 8; + this.thresholdTrackBar.ToolTip = null; + this.thresholdTrackBar.Value = 20; + this.thresholdTrackBar.ValueChanged += this.thresholdTrackBar_Scroll; + this.enableCheckBox.Arrow = 99; + this.enableCheckBox.Checked = false; + this.enableCheckBox.Edge = 0.15f; + this.enableCheckBox.EndColor = Color.White; + this.enableCheckBox.EndFactor = 0.2f; + this.enableCheckBox.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.enableCheckBox.ForeColor = Color.Orange; + this.enableCheckBox.Location = new Point(2, 6); + this.enableCheckBox.Name = "enableCheckBox"; + this.enableCheckBox.NoBorder = false; + this.enableCheckBox.NoLed = false; + this.enableCheckBox.RadioButton = false; + this.enableCheckBox.Radius = 6; + this.enableCheckBox.RadiusB = 0; + this.enableCheckBox.Size = new Size(44, 24); + this.enableCheckBox.StartColor = Color.Black; + this.enableCheckBox.StartFactor = 0.35f; + this.enableCheckBox.TabIndex = 70; + this.enableCheckBox.Text = "N-Bl."; + this.enableCheckBox.CheckedChanged += this.enableCheckBox_CheckedChanged; + this.pulseWidthTrackBar.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.pulseWidthTrackBar.Button = false; + this.pulseWidthTrackBar.Checked = false; + this.pulseWidthTrackBar.ColorFactor = 0.5f; + this.pulseWidthTrackBar.ForeColor = Color.Black; + this.pulseWidthTrackBar.Location = new Point(89, 36); + this.pulseWidthTrackBar.Margin = new Padding(4); + this.pulseWidthTrackBar.Maximum = 999; + this.pulseWidthTrackBar.Minimum = 1; + this.pulseWidthTrackBar.Name = "pulseWidthTrackBar"; + this.pulseWidthTrackBar.Size = new Size(107, 16); + this.pulseWidthTrackBar.TabIndex = 12; + this.pulseWidthTrackBar.TickColor = Color.Silver; + this.pulseWidthTrackBar.Ticks = 8; + this.pulseWidthTrackBar.ToolTip = null; + this.pulseWidthTrackBar.Value = 100; + this.pulseWidthTrackBar.ValueChanged += this.pulseWidthTrackBar_Scroll; + this.ifThresholdTrackBar.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.ifThresholdTrackBar.Button = false; + this.ifThresholdTrackBar.Checked = false; + this.ifThresholdTrackBar.ColorFactor = 0.5f; + this.ifThresholdTrackBar.ForeColor = Color.Black; + this.ifThresholdTrackBar.Location = new Point(90, 10); + this.ifThresholdTrackBar.Margin = new Padding(4); + this.ifThresholdTrackBar.Maximum = 20; + this.ifThresholdTrackBar.Minimum = -80; + this.ifThresholdTrackBar.Name = "ifThresholdTrackBar"; + this.ifThresholdTrackBar.Size = new Size(105, 16); + this.ifThresholdTrackBar.TabIndex = 7; + this.ifThresholdTrackBar.TickColor = Color.Silver; + this.ifThresholdTrackBar.Ticks = 8; + this.ifThresholdTrackBar.ToolTip = null; + this.ifThresholdTrackBar.Value = -30; + this.ifThresholdTrackBar.ValueChanged += this.ifThresholdTrackBar_Scroll; + this.audioEnableCheckbox.Arrow = 99; + this.audioEnableCheckbox.Checked = false; + this.audioEnableCheckbox.Edge = 0.15f; + this.audioEnableCheckbox.EndColor = Color.White; + this.audioEnableCheckbox.EndFactor = 0.2f; + this.audioEnableCheckbox.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.audioEnableCheckbox.ForeColor = Color.Orange; + this.audioEnableCheckbox.Location = new Point(2, 33); + this.audioEnableCheckbox.Name = "audioEnableCheckbox"; + this.audioEnableCheckbox.NoBorder = false; + this.audioEnableCheckbox.NoLed = false; + this.audioEnableCheckbox.RadioButton = false; + this.audioEnableCheckbox.Radius = 6; + this.audioEnableCheckbox.RadiusB = 0; + this.audioEnableCheckbox.Size = new Size(44, 24); + this.audioEnableCheckbox.StartColor = Color.Black; + this.audioEnableCheckbox.StartFactor = 0.35f; + this.audioEnableCheckbox.TabIndex = 69; + this.audioEnableCheckbox.Text = "A.F."; + this.audioEnableCheckbox.CheckedChanged += this.audioEnableCheckbox_CheckedChanged; + this.ifEnableCheckBox.Arrow = 99; + this.ifEnableCheckBox.Checked = false; + this.ifEnableCheckBox.Edge = 0.15f; + this.ifEnableCheckBox.EndColor = Color.White; + this.ifEnableCheckBox.EndFactor = 0.2f; + this.ifEnableCheckBox.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.ifEnableCheckBox.ForeColor = Color.Orange; + this.ifEnableCheckBox.Location = new Point(2, 6); + this.ifEnableCheckBox.Name = "ifEnableCheckBox"; + this.ifEnableCheckBox.NoBorder = false; + this.ifEnableCheckBox.NoLed = false; + this.ifEnableCheckBox.RadioButton = false; + this.ifEnableCheckBox.Radius = 6; + this.ifEnableCheckBox.RadiusB = 0; + this.ifEnableCheckBox.Size = new Size(44, 24); + this.ifEnableCheckBox.StartColor = Color.Black; + this.ifEnableCheckBox.StartFactor = 0.35f; + this.ifEnableCheckBox.TabIndex = 68; + this.ifEnableCheckBox.Text = "I.F."; + this.ifEnableCheckBox.CheckedChanged += this.ifEnableCheckBox_CheckedChanged; + this.audioThresholdTrackBar.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.audioThresholdTrackBar.Button = false; + this.audioThresholdTrackBar.Checked = false; + this.audioThresholdTrackBar.ColorFactor = 0.5f; + this.audioThresholdTrackBar.ForeColor = Color.Black; + this.audioThresholdTrackBar.Location = new Point(90, 36); + this.audioThresholdTrackBar.Margin = new Padding(4); + this.audioThresholdTrackBar.Maximum = 20; + this.audioThresholdTrackBar.Minimum = -120; + this.audioThresholdTrackBar.Name = "audioThresholdTrackBar"; + this.audioThresholdTrackBar.Size = new Size(105, 16); + this.audioThresholdTrackBar.TabIndex = 8; + this.audioThresholdTrackBar.TickColor = Color.Silver; + this.audioThresholdTrackBar.Ticks = 8; + this.audioThresholdTrackBar.ToolTip = null; + this.audioThresholdTrackBar.Value = -30; + this.audioThresholdTrackBar.ValueChanged += this.audioThresholdTrackBar_Scroll; + base.Controls.Add(this.panel2); + base.Controls.Add(this.panel1); + base.Name = "NoiseReductionPanel"; + base.Size = new Size(198, 145); + this.panel1.ResumeLayout(false); + this.panel2.ResumeLayout(false); + base.ResumeLayout(false); + } + } +} diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.resx b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPanel.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPlugin.cs b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPlugin.cs new file mode 100644 index 0000000..dc7087e --- /dev/null +++ b/Plugins/SDRSharper.NoiseReduction/SDRSharp.NoiseReduction/NoiseReductionPlugin.cs @@ -0,0 +1,57 @@ +using SDRSharp.Common; +using SDRSharp.Radio; +using System.Windows.Forms; + +namespace SDRSharp.NoiseReduction +{ + public class NoiseReductionPlugin : ISharpPlugin + { + private const string _displayName = "Noise Reduction"; + + private ISharpControl _control; + + private AFProcessor _audioProcessor; + + private IFProcessor _ifProcessor; + + private NoiseBlankerProcessor _noiseProcessor; + + private NoiseReductionPanel _guiControl; + + public string DisplayName => "Noise Reduction"; + + public bool HasGui => true; + + public UserControl GuiControl => this._guiControl; + + public void Initialize(ISharpControl control) + { + this._control = control; + this._audioProcessor = new AFProcessor(); + this._control.RegisterStreamHook(this._audioProcessor, ProcessorType.FilteredAudioOutput); + this._ifProcessor = new IFProcessor(); + this._control.RegisterStreamHook(this._ifProcessor, ProcessorType.DecimatedAndFilteredIQ); + this._ifProcessor.NoiseThreshold = Utils.GetIntSetting("DNRIThreshold", -30); + this._ifProcessor.Enabled = Utils.GetBooleanSetting("DNRIEnabled"); + this._audioProcessor.NoiseThreshold = Utils.GetIntSetting("DNRAThreshold", -70); + this._audioProcessor.Enabled = Utils.GetBooleanSetting("DNRAEnabled"); + this._noiseProcessor = new NoiseBlankerProcessor(); + this._noiseProcessor.Enabled = Utils.GetBooleanSetting("NBEnabled"); + this._noiseProcessor.NoiseThreshold = Utils.GetIntSetting("NBThreshold", 80); + this._noiseProcessor.PulseWidth = Utils.GetDoubleSetting("NBPulseWidth", 10.0); + this._control.RegisterStreamHook(this._noiseProcessor, ProcessorType.RawIQ); + this._guiControl = new NoiseReductionPanel(this._ifProcessor, this._audioProcessor, this._noiseProcessor); + } + + public void Close() + { + Utils.SaveSetting("DNRIThreshold", this._ifProcessor.NoiseThreshold); + Utils.SaveSetting("DNRIEnabled", this._ifProcessor.Enabled); + Utils.SaveSetting("DNRAThreshold", this._audioProcessor.NoiseThreshold); + Utils.SaveSetting("DNRAEnabled", this._audioProcessor.Enabled); + Utils.SaveSetting("NBEnabled", this._noiseProcessor.Enabled); + Utils.SaveSetting("NBThreshold", this._noiseProcessor.NoiseThreshold); + Utils.SaveSetting("NBPulseWidth", this._noiseProcessor.PulseWidth); + } + } +} diff --git a/Plugins/SDRSharper.RTLSDR/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.RTLSDR/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..193b059 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/Properties/AssemblyInfo.cs @@ -0,0 +1,14 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions; + +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: AssemblyProduct("SDR#")] +[assembly: CompilationRelaxations(8)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyCopyright("Copyright © Youssef TOUIL 2012")] +[assembly: AssemblyTitle("RTL-SDR Controller")] +[assembly: AssemblyDescription("USB interface for RTL2832U based DVB-T dongles")] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.0.0.0")] diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.FUNcube.Properties/Resources.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.FUNcube.Properties/Resources.cs new file mode 100644 index 0000000..8b02343 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.FUNcube.Properties/Resources.cs @@ -0,0 +1,49 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Globalization; +using System.Resources; +using System.Runtime.CompilerServices; + +namespace SDRSharp.FUNcube.Properties +{ + [DebuggerNonUserCode] + [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [CompilerGenerated] + internal class Resources + { + private static ResourceManager resourceMan; + + private static CultureInfo resourceCulture; + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static ResourceManager ResourceManager + { + get + { + if (object.ReferenceEquals(Resources.resourceMan, null)) + { + ResourceManager resourceManager = Resources.resourceMan = new ResourceManager("SDRSharp.FUNcube.Properties.Resources", typeof(Resources).Assembly); + } + return Resources.resourceMan; + } + } + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static CultureInfo Culture + { + get + { + return Resources.resourceCulture; + } + set + { + Resources.resourceCulture = value; + } + } + + internal Resources() + { + } + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR.csproj b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR.csproj new file mode 100644 index 0000000..caafc79 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR.csproj @@ -0,0 +1,76 @@ + + + + {64A9B07D-E5C2-4BF8-8D74-51EAC433ED57} + Debug + AnyCPU + Library + SDRSharp.RTLSDR + v2.0 + 4 + True + + + AnyCPU + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + true + bin\x86\Debug\ + true + full + x86 + MinimumRecommendedRules.ruleset + + + true + bin\x86\Release\ + true + true + pdbonly + x86 + MinimumRecommendedRules.ruleset + + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + + + + + Form + + + + + + + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/DeviceDisplay.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/DeviceDisplay.cs new file mode 100644 index 0000000..f640de9 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/DeviceDisplay.cs @@ -0,0 +1,38 @@ +namespace SDRSharp.RTLSDR +{ + public class DeviceDisplay + { + public uint Index + { + get; + private set; + } + + public string Name + { + get; + set; + } + + public static DeviceDisplay[] GetActiveDevices() + { + uint num = NativeMethods.rtlsdr_get_device_count(); + DeviceDisplay[] array = new DeviceDisplay[num]; + for (uint num2 = 0u; num2 < num; num2++) + { + string name = NativeMethods.rtlsdr_get_device_name(num2); + array[num2] = new DeviceDisplay + { + Index = num2, + Name = name + }; + } + return array; + } + + public override string ToString() + { + return this.Name; + } + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/NativeMethods.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/NativeMethods.cs new file mode 100644 index 0000000..0ac16aa --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/NativeMethods.cs @@ -0,0 +1,101 @@ +using System; +using System.Runtime.InteropServices; +using System.Text; + +namespace SDRSharp.RTLSDR +{ + public class NativeMethods + { + private const string LibRtlSdr = "rtlsdr"; + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern uint rtlsdr_get_device_count(); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl, EntryPoint = "rtlsdr_get_device_name")] + private static extern IntPtr rtlsdr_get_device_name_native(uint index); + + public static string rtlsdr_get_device_name(uint index) + { + IntPtr ptr = NativeMethods.rtlsdr_get_device_name_native(index); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_device_usb_strings(uint index, StringBuilder manufact, StringBuilder product, StringBuilder serial); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_open(out IntPtr dev, uint index); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_close(IntPtr dev); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_xtal_freq(IntPtr dev, uint rtlFreq, uint tunerFreq); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_xtal_freq(IntPtr dev, out uint rtlFreq, out uint tunerFreq); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_usb_strings(IntPtr dev, StringBuilder manufact, StringBuilder product, StringBuilder serial); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_center_freq(IntPtr dev, uint freq); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern uint rtlsdr_get_center_freq(IntPtr dev); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_freq_correction(IntPtr dev, int ppm); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_freq_correction(IntPtr dev); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_tuner_gains(IntPtr dev, [In] [Out] int[] gains); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern RtlSdrTunerType rtlsdr_get_tuner_type(IntPtr dev); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_tuner_gain(IntPtr dev, int gain); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_tuner_gain(IntPtr dev); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_tuner_gain_mode(IntPtr dev, int manual); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_agc_mode(IntPtr dev, int on); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_direct_sampling(IntPtr dev, int on); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_offset_tuning(IntPtr dev, int on); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_sample_rate(IntPtr dev, uint rate); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern uint rtlsdr_get_sample_rate(IntPtr dev); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_testmode(IntPtr dev, int on); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_reset_buffer(IntPtr dev); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_read_sync(IntPtr dev, IntPtr buf, int len, out int nRead); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_wait_async(IntPtr dev, RtlSdrReadAsyncDelegate cb, IntPtr ctx); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_read_async(IntPtr dev, RtlSdrReadAsyncDelegate cb, IntPtr ctx, uint bufNum, uint bufLen); + + [DllImport("rtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_cancel_async(IntPtr dev); + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlDevice.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlDevice.cs new file mode 100644 index 0000000..c528999 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlDevice.cs @@ -0,0 +1,333 @@ +using SDRSharp.Radio; +using System; +using System.Runtime.InteropServices; +using System.Threading; + +namespace SDRSharp.RTLSDR +{ + public sealed class RtlDevice : IDisposable + { + private const uint DefaultFrequency = 105500000u; + + private const int DefaultSamplerate = 2048000; + + private readonly uint _index; + + private IntPtr _dev; + + private readonly string _name; + + private readonly int[] _supportedGains; + + private bool _useTunerAGC = true; + + private bool _useRtlAGC; + + private int _tunerGain; + + private uint _centerFrequency = 105500000u; + + private uint _sampleRate = 2048000u; + + private int _frequencyCorrection; + + private SamplingMode _samplingMode; + + private bool _useOffsetTuning; + + private readonly bool _supportsOffsetTuning; + + private GCHandle _gcHandle; + + private UnsafeBuffer _iqBuffer; + + private unsafe Complex* _iqPtr; + + private Thread _worker; + + private readonly SamplesAvailableEventArgs _eventArgs = new SamplesAvailableEventArgs(); + + private unsafe static readonly RtlSdrReadAsyncDelegate _rtlCallback = RtlDevice.RtlSdrSamplesAvailable; //EDITHERE + + private static readonly uint _readLength = (uint)Utils.GetIntSetting("RTLBufferLength", 16384); + + public uint Index => this._index; + + public string Name => this._name; + + public uint Samplerate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_sample_rate(this._dev, this._sampleRate); + } + } + } + + public uint Frequency + { + get + { + return this._centerFrequency; + } + set + { + this._centerFrequency = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_center_freq(this._dev, this._centerFrequency); + } + } + } + + public bool UseRtlAGC + { + get + { + return this._useRtlAGC; + } + set + { + this._useRtlAGC = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_agc_mode(this._dev, this._useRtlAGC ? 1 : 0); + } + } + } + + public bool UseTunerAGC + { + get + { + return this._useTunerAGC; + } + set + { + this._useTunerAGC = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_tuner_gain_mode(this._dev, (!this._useTunerAGC) ? 1 : 0); + } + } + } + + public SamplingMode SamplingMode + { + get + { + return this._samplingMode; + } + set + { + this._samplingMode = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_direct_sampling(this._dev, (int)this._samplingMode); + } + } + } + + public bool SupportsOffsetTuning => this._supportsOffsetTuning; + + public bool UseOffsetTuning + { + get + { + return this._useOffsetTuning; + } + set + { + this._useOffsetTuning = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_offset_tuning(this._dev, this._useOffsetTuning ? 1 : 0); + } + } + } + + public int[] SupportedGains => this._supportedGains; + + public int Gain + { + get + { + return this._tunerGain; + } + set + { + this._tunerGain = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_tuner_gain(this._dev, this._tunerGain); + } + } + } + + public int FrequencyCorrection + { + get + { + return this._frequencyCorrection; + } + set + { + this._frequencyCorrection = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_freq_correction(this._dev, this._frequencyCorrection); + } + } + } + + public RtlSdrTunerType TunerType + { + get + { + if (!(this._dev == IntPtr.Zero)) + { + return NativeMethods.rtlsdr_get_tuner_type(this._dev); + } + return RtlSdrTunerType.Unknown; + } + } + + public bool IsStreaming => this._worker != null; + + public event SamplesAvailableDelegate SamplesAvailable; + + public RtlDevice(uint index) + { + this._index = index; + if (NativeMethods.rtlsdr_open(out this._dev, this._index) != 0) + { + throw new ApplicationException("Cannot open RTL device. Is the device locked somewhere?"); + } + int num = (!(this._dev == IntPtr.Zero)) ? NativeMethods.rtlsdr_get_tuner_gains(this._dev, null) : 0; + if (num < 0) + { + num = 0; + } + this._supportsOffsetTuning = (NativeMethods.rtlsdr_set_offset_tuning(this._dev, 0) != -2); + this._supportedGains = new int[num]; + if (num >= 0) + { + NativeMethods.rtlsdr_get_tuner_gains(this._dev, this._supportedGains); + } + this._name = NativeMethods.rtlsdr_get_device_name(this._index); + this._gcHandle = GCHandle.Alloc(this); + } + + ~RtlDevice() + { + this.Dispose(); + } + + public void Dispose() + { + this.Stop(); + NativeMethods.rtlsdr_close(this._dev); + if (this._gcHandle.IsAllocated) + { + this._gcHandle.Free(); + } + this._dev = IntPtr.Zero; + GC.SuppressFinalize(this); + } + + public void Start() + { + if (this._worker != null) + { + throw new ApplicationException("Already running"); + } + if (NativeMethods.rtlsdr_set_sample_rate(this._dev, this._sampleRate) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + if (NativeMethods.rtlsdr_set_center_freq(this._dev, this._centerFrequency) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + if (NativeMethods.rtlsdr_set_tuner_gain_mode(this._dev, (!this._useTunerAGC) ? 1 : 0) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + if (!this._useTunerAGC && NativeMethods.rtlsdr_set_tuner_gain(this._dev, this._tunerGain) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + if (NativeMethods.rtlsdr_reset_buffer(this._dev) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + this._worker = new Thread(this.StreamProc); + this._worker.Priority = ThreadPriority.Highest; + this._worker.Start(); + } + + public void Stop() + { + if (this._worker != null) + { + NativeMethods.rtlsdr_cancel_async(this._dev); + if (this._worker.ThreadState == ThreadState.Running) + { + this._worker.Join(); + } + this._worker = null; + } + } + + private unsafe void StreamProc() + { + NativeMethods.rtlsdr_read_async(this._dev, RtlDevice._rtlCallback, (IntPtr)this._gcHandle, 0u, RtlDevice._readLength); + } + + private unsafe void ComplexSamplesAvailable(Complex* buffer, int length) + { + if (this.SamplesAvailable != null) + { + this._eventArgs.Buffer = buffer; + this._eventArgs.Length = length; + this.SamplesAvailable(this, this._eventArgs); + } + } + + private unsafe static void RtlSdrSamplesAvailable(byte* buf, uint len, IntPtr ctx) + { + GCHandle gCHandle = GCHandle.FromIntPtr(ctx); + if (gCHandle.IsAllocated) + { + RtlDevice rtlDevice = (RtlDevice)gCHandle.Target; + int num = (int)len / 2; + if (rtlDevice._iqBuffer == null || rtlDevice._iqBuffer.Length != num) + { + rtlDevice._iqBuffer = UnsafeBuffer.Create(num, sizeof(Complex)); + rtlDevice._iqPtr = (Complex*)(void*)rtlDevice._iqBuffer; + } + Complex* ptr = rtlDevice._iqPtr; + for (int i = 0; i < num; i++) + { + Complex* intPtr = ptr; + byte* intPtr2 = buf; + buf = intPtr2 + 1; + intPtr->Imag = (float)(*intPtr2 - 128) * 0.0078125f; + Complex* intPtr3 = ptr; + byte* intPtr4 = buf; + buf = intPtr4 + 1; + intPtr3->Real = (float)(*intPtr4 - 128) * 0.0078125f; + ptr++; + } + rtlDevice.ComplexSamplesAvailable(rtlDevice._iqPtr, rtlDevice._iqBuffer.Length); + } + } + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.Designer.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.Designer.cs new file mode 100644 index 0000000..1bc993b --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.Designer.cs @@ -0,0 +1,274 @@ +namespace SDRSharp.RTLSDR +{ + // Token: 0x02000003 RID: 3 + public partial class RtlSdrControllerDialog : global::System.Windows.Forms.Form + { + // Token: 0x06000014 RID: 20 RVA: 0x000028C2 File Offset: 0x00000AC2 + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + // Token: 0x06000015 RID: 21 RVA: 0x000028E4 File Offset: 0x00000AE4 + private void InitializeComponent() + { + this.components = new global::System.ComponentModel.Container(); + this.refreshTimer = new global::System.Windows.Forms.Timer(this.components); + this.closeButton = new global::System.Windows.Forms.Button(); + this.deviceComboBox = new global::System.Windows.Forms.ComboBox(); + this.label1 = new global::System.Windows.Forms.Label(); + this.tunerGainTrackBar = new global::System.Windows.Forms.TrackBar(); + this.label2 = new global::System.Windows.Forms.Label(); + this.label3 = new global::System.Windows.Forms.Label(); + this.samplerateComboBox = new global::System.Windows.Forms.ComboBox(); + this.tunerAgcCheckBox = new global::System.Windows.Forms.CheckBox(); + this.gainLabel = new global::System.Windows.Forms.Label(); + this.frequencyCorrectionNumericUpDown = new global::System.Windows.Forms.NumericUpDown(); + this.label4 = new global::System.Windows.Forms.Label(); + this.tunerTypeLabel = new global::System.Windows.Forms.Label(); + this.rtlAgcCheckBox = new global::System.Windows.Forms.CheckBox(); + this.label5 = new global::System.Windows.Forms.Label(); + this.samplingModeComboBox = new global::System.Windows.Forms.ComboBox(); + this.offsetTuningCheckBox = new global::System.Windows.Forms.CheckBox(); + ((global::System.ComponentModel.ISupportInitialize)this.tunerGainTrackBar).BeginInit(); + ((global::System.ComponentModel.ISupportInitialize)this.frequencyCorrectionNumericUpDown).BeginInit(); + base.SuspendLayout(); + this.refreshTimer.Interval = 1000; + this.refreshTimer.Tick += new global::System.EventHandler(this.refreshTimer_Tick); + this.closeButton.DialogResult = global::System.Windows.Forms.DialogResult.Cancel; + this.closeButton.Location = new global::System.Drawing.Point(184, 306); + this.closeButton.Name = "closeButton"; + this.closeButton.Size = new global::System.Drawing.Size(75, 23); + this.closeButton.TabIndex = 8; + this.closeButton.Text = "Close"; + this.closeButton.UseVisualStyleBackColor = true; + this.closeButton.Click += new global::System.EventHandler(this.closeButton_Click); + this.deviceComboBox.DropDownStyle = global::System.Windows.Forms.ComboBoxStyle.DropDownList; + this.deviceComboBox.FormattingEnabled = true; + this.deviceComboBox.Location = new global::System.Drawing.Point(12, 26); + this.deviceComboBox.Name = "deviceComboBox"; + this.deviceComboBox.Size = new global::System.Drawing.Size(247, 21); + this.deviceComboBox.TabIndex = 0; + this.deviceComboBox.SelectedIndexChanged += new global::System.EventHandler(this.deviceComboBox_SelectedIndexChanged); + this.label1.AutoSize = true; + this.label1.Location = new global::System.Drawing.Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new global::System.Drawing.Size(41, 13); + this.label1.TabIndex = 20; + this.label1.Text = "Device"; + this.tunerGainTrackBar.Enabled = false; + this.tunerGainTrackBar.Location = new global::System.Drawing.Point(3, 229); + this.tunerGainTrackBar.Maximum = 10000; + this.tunerGainTrackBar.Name = "tunerGainTrackBar"; + this.tunerGainTrackBar.Size = new global::System.Drawing.Size(267, 45); + this.tunerGainTrackBar.TabIndex = 6; + this.tunerGainTrackBar.Scroll += new global::System.EventHandler(this.tunerGainTrackBar_Scroll); + this.label2.AutoSize = true; + this.label2.Location = new global::System.Drawing.Point(12, 213); + this.label2.Name = "label2"; + this.label2.Size = new global::System.Drawing.Size(46, 13); + this.label2.TabIndex = 22; + this.label2.Text = "RF Gain"; + this.label3.AutoSize = true; + this.label3.Location = new global::System.Drawing.Point(12, 53); + this.label3.Name = "label3"; + this.label3.Size = new global::System.Drawing.Size(68, 13); + this.label3.TabIndex = 24; + this.label3.Text = "Sample Rate"; + this.samplerateComboBox.DropDownStyle = global::System.Windows.Forms.ComboBoxStyle.DropDownList; + this.samplerateComboBox.FormattingEnabled = true; + this.samplerateComboBox.Items.AddRange(new object[] + { + "3.2 MSPS", + "2.8 MSPS", + "2.4 MSPS", + "2.048 MSPS", + "1.92 MSPS", + "1.8 MSPS", + "1.4 MSPS", + "1.024 MSPS", + "0.900001 MSPS", + "0.25 MSPS" + }); + this.samplerateComboBox.Location = new global::System.Drawing.Point(12, 70); + this.samplerateComboBox.Name = "samplerateComboBox"; + this.samplerateComboBox.Size = new global::System.Drawing.Size(247, 21); + this.samplerateComboBox.TabIndex = 1; + this.samplerateComboBox.SelectedIndexChanged += new global::System.EventHandler(this.samplerateComboBox_SelectedIndexChanged); + this.tunerAgcCheckBox.AutoSize = true; + this.tunerAgcCheckBox.Checked = true; + this.tunerAgcCheckBox.CheckState = global::System.Windows.Forms.CheckState.Checked; + this.tunerAgcCheckBox.Location = new global::System.Drawing.Point(12, 193); + this.tunerAgcCheckBox.Name = "tunerAgcCheckBox"; + this.tunerAgcCheckBox.Size = new global::System.Drawing.Size(79, 17); + this.tunerAgcCheckBox.TabIndex = 5; + this.tunerAgcCheckBox.Text = "Tuner AGC"; + this.tunerAgcCheckBox.UseVisualStyleBackColor = true; + this.tunerAgcCheckBox.CheckedChanged += new global::System.EventHandler(this.tunerAgcCheckBox_CheckedChanged); + this.gainLabel.Location = new global::System.Drawing.Point(191, 213); + this.gainLabel.Name = "gainLabel"; + this.gainLabel.Size = new global::System.Drawing.Size(68, 13); + this.gainLabel.TabIndex = 26; + this.gainLabel.Text = "1000dB"; + this.gainLabel.TextAlign = global::System.Drawing.ContentAlignment.MiddleRight; + this.gainLabel.Visible = false; + this.frequencyCorrectionNumericUpDown.Location = new global::System.Drawing.Point(169, 275); + global::System.Windows.Forms.NumericUpDown numericUpDown = this.frequencyCorrectionNumericUpDown; + int[] array = new int[4]; + array[0] = 1000; + numericUpDown.Maximum = new decimal(array); + this.frequencyCorrectionNumericUpDown.Minimum = new decimal(new int[] + { + 1000, + 0, + 0, + int.MinValue + }); + this.frequencyCorrectionNumericUpDown.Name = "frequencyCorrectionNumericUpDown"; + this.frequencyCorrectionNumericUpDown.Size = new global::System.Drawing.Size(90, 20); + this.frequencyCorrectionNumericUpDown.TabIndex = 7; + this.frequencyCorrectionNumericUpDown.TextAlign = global::System.Windows.Forms.HorizontalAlignment.Right; + this.frequencyCorrectionNumericUpDown.ValueChanged += new global::System.EventHandler(this.frequencyCorrectionNumericUpDown_ValueChanged); + this.label4.AutoSize = true; + this.label4.Location = new global::System.Drawing.Point(12, 277); + this.label4.Name = "label4"; + this.label4.Size = new global::System.Drawing.Size(136, 13); + this.label4.TabIndex = 28; + this.label4.Text = "Frequency correction (ppm)"; + this.tunerTypeLabel.Location = new global::System.Drawing.Point(166, 9); + this.tunerTypeLabel.Name = "tunerTypeLabel"; + this.tunerTypeLabel.Size = new global::System.Drawing.Size(93, 13); + this.tunerTypeLabel.TabIndex = 29; + this.tunerTypeLabel.Text = "E4000"; + this.tunerTypeLabel.TextAlign = global::System.Drawing.ContentAlignment.MiddleRight; + this.rtlAgcCheckBox.AutoSize = true; + this.rtlAgcCheckBox.Location = new global::System.Drawing.Point(12, 170); + this.rtlAgcCheckBox.Name = "rtlAgcCheckBox"; + this.rtlAgcCheckBox.Size = new global::System.Drawing.Size(72, 17); + this.rtlAgcCheckBox.TabIndex = 4; + this.rtlAgcCheckBox.Text = "RTL AGC"; + this.rtlAgcCheckBox.UseVisualStyleBackColor = true; + this.rtlAgcCheckBox.CheckedChanged += new global::System.EventHandler(this.rtlAgcCheckBox_CheckedChanged); + this.label5.AutoSize = true; + this.label5.Location = new global::System.Drawing.Point(12, 97); + this.label5.Name = "label5"; + this.label5.Size = new global::System.Drawing.Size(80, 13); + this.label5.TabIndex = 31; + this.label5.Text = "Sampling Mode"; + this.samplingModeComboBox.DropDownStyle = global::System.Windows.Forms.ComboBoxStyle.DropDownList; + this.samplingModeComboBox.FormattingEnabled = true; + this.samplingModeComboBox.Items.AddRange(new object[] + { + "Quadrature sampling", + "Direct sampling (I branch)", + "Direct sampling (Q branch)" + }); + this.samplingModeComboBox.Location = new global::System.Drawing.Point(12, 114); + this.samplingModeComboBox.Name = "samplingModeComboBox"; + this.samplingModeComboBox.Size = new global::System.Drawing.Size(247, 21); + this.samplingModeComboBox.TabIndex = 2; + this.samplingModeComboBox.SelectedIndexChanged += new global::System.EventHandler(this.samplingModeComboBox_SelectedIndexChanged); + this.offsetTuningCheckBox.AutoSize = true; + this.offsetTuningCheckBox.Location = new global::System.Drawing.Point(12, 147); + this.offsetTuningCheckBox.Name = "offsetTuningCheckBox"; + this.offsetTuningCheckBox.Size = new global::System.Drawing.Size(90, 17); + this.offsetTuningCheckBox.TabIndex = 3; + this.offsetTuningCheckBox.Text = "Offset Tuning"; + this.offsetTuningCheckBox.UseVisualStyleBackColor = true; + this.offsetTuningCheckBox.CheckedChanged += new global::System.EventHandler(this.offsetTuningCheckBox_CheckedChanged); + base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f); + base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font; + base.CancelButton = this.closeButton; + base.ClientSize = new global::System.Drawing.Size(271, 342); + base.Controls.Add(this.offsetTuningCheckBox); + base.Controls.Add(this.label5); + base.Controls.Add(this.samplingModeComboBox); + base.Controls.Add(this.rtlAgcCheckBox); + base.Controls.Add(this.tunerTypeLabel); + base.Controls.Add(this.label4); + base.Controls.Add(this.frequencyCorrectionNumericUpDown); + base.Controls.Add(this.gainLabel); + base.Controls.Add(this.tunerAgcCheckBox); + base.Controls.Add(this.label3); + base.Controls.Add(this.samplerateComboBox); + base.Controls.Add(this.label2); + base.Controls.Add(this.tunerGainTrackBar); + base.Controls.Add(this.label1); + base.Controls.Add(this.deviceComboBox); + base.Controls.Add(this.closeButton); + base.FormBorderStyle = global::System.Windows.Forms.FormBorderStyle.FixedDialog; + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "RtlSdrControllerDialog"; + base.ShowIcon = false; + base.ShowInTaskbar = false; + base.StartPosition = global::System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "RTL-SDR Controller"; + base.TopMost = true; + base.FormClosing += new global::System.Windows.Forms.FormClosingEventHandler(this.RtlSdrControllerDialog_FormClosing); + base.VisibleChanged += new global::System.EventHandler(this.RtlSdrControllerDialog_VisibleChanged); + ((global::System.ComponentModel.ISupportInitialize)this.tunerGainTrackBar).EndInit(); + ((global::System.ComponentModel.ISupportInitialize)this.frequencyCorrectionNumericUpDown).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + + // Token: 0x04000005 RID: 5 + private global::System.ComponentModel.IContainer components; + + // Token: 0x04000006 RID: 6 + private global::System.Windows.Forms.Timer refreshTimer; + + // Token: 0x04000007 RID: 7 + private global::System.Windows.Forms.Button closeButton; + + // Token: 0x04000008 RID: 8 + private global::System.Windows.Forms.ComboBox deviceComboBox; + + // Token: 0x04000009 RID: 9 + private global::System.Windows.Forms.Label label1; + + // Token: 0x0400000A RID: 10 + private global::System.Windows.Forms.TrackBar tunerGainTrackBar; + + // Token: 0x0400000B RID: 11 + private global::System.Windows.Forms.Label label2; + + // Token: 0x0400000C RID: 12 + private global::System.Windows.Forms.Label label3; + + // Token: 0x0400000D RID: 13 + private global::System.Windows.Forms.ComboBox samplerateComboBox; + + // Token: 0x0400000E RID: 14 + private global::System.Windows.Forms.CheckBox tunerAgcCheckBox; + + // Token: 0x0400000F RID: 15 + private global::System.Windows.Forms.Label gainLabel; + + // Token: 0x04000010 RID: 16 + private global::System.Windows.Forms.NumericUpDown frequencyCorrectionNumericUpDown; + + // Token: 0x04000011 RID: 17 + private global::System.Windows.Forms.Label label4; + + // Token: 0x04000012 RID: 18 + private global::System.Windows.Forms.Label tunerTypeLabel; + + // Token: 0x04000013 RID: 19 + private global::System.Windows.Forms.CheckBox rtlAgcCheckBox; + + // Token: 0x04000014 RID: 20 + private global::System.Windows.Forms.Label label5; + + // Token: 0x04000015 RID: 21 + private global::System.Windows.Forms.ComboBox samplingModeComboBox; + + // Token: 0x04000016 RID: 22 + private global::System.Windows.Forms.CheckBox offsetTuningCheckBox; + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.cs new file mode 100644 index 0000000..d659b22 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.cs @@ -0,0 +1,482 @@ +using SDRSharp.Radio; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Globalization; +using System.Windows.Forms; + +namespace SDRSharp.RTLSDR +{ + public class RtlSdrControllerDialog : Form + { + private readonly RtlSdrIO _owner; + + private bool _initialized; + + private IContainer components; + + private Timer refreshTimer; + + private Button closeButton; + + private ComboBox deviceComboBox; + + private Label label1; + + private TrackBar tunerGainTrackBar; + + private Label label2; + + private Label label3; + + private ComboBox samplerateComboBox; + + private CheckBox tunerAgcCheckBox; + + private Label gainLabel; + + private NumericUpDown frequencyCorrectionNumericUpDown; + + private Label label4; + + private Label tunerTypeLabel; + + private CheckBox rtlAgcCheckBox; + + private Label label5; + + private ComboBox samplingModeComboBox; + + private CheckBox offsetTuningCheckBox; + + public RtlSdrControllerDialog(RtlSdrIO owner) + { + this.InitializeComponent(); + this._owner = owner; + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + this.deviceComboBox.Items.Clear(); + this.deviceComboBox.Items.AddRange(activeDevices); + this.frequencyCorrectionNumericUpDown.Value = Utils.GetIntSetting("RTLFrequencyCorrection", 0); + this.samplerateComboBox.SelectedIndex = Utils.GetIntSetting("RTLSampleRate", 3); + this.samplingModeComboBox.SelectedIndex = Utils.GetIntSetting("RTLSamplingMode", 0); + this.offsetTuningCheckBox.Checked = Utils.GetBooleanSetting("RTLOffsetTuning"); + this.rtlAgcCheckBox.Checked = Utils.GetBooleanSetting("RTLChipAgc"); + this.tunerAgcCheckBox.Checked = Utils.GetBooleanSetting("RTLTunerAgc"); + this.tunerGainTrackBar.Value = Utils.GetIntSetting("RTLTunerGain", 0); + this.tunerAgcCheckBox.Enabled = (this.samplingModeComboBox.SelectedIndex == 0); + this.gainLabel.Visible = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + this.tunerGainTrackBar.Enabled = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + this.offsetTuningCheckBox.Enabled = (this.samplingModeComboBox.SelectedIndex == 0); + this._initialized = true; + } + + private void closeButton_Click(object sender, EventArgs e) + { + base.Close(); + } + + private void RtlSdrControllerDialog_FormClosing(object sender, FormClosingEventArgs e) + { + e.Cancel = true; + base.Hide(); + } + + private void RtlSdrControllerDialog_VisibleChanged(object sender, EventArgs e) + { + this.refreshTimer.Enabled = base.Visible; + if (base.Visible) + { + this.samplerateComboBox.Enabled = !this._owner.Device.IsStreaming; + this.deviceComboBox.Enabled = !this._owner.Device.IsStreaming; + this.samplingModeComboBox.Enabled = !this._owner.Device.IsStreaming; + if (!this._owner.Device.IsStreaming) + { + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + this.deviceComboBox.Items.Clear(); + this.deviceComboBox.Items.AddRange(activeDevices); + int num = 0; + while (true) + { + if (num < activeDevices.Length) + { + if (activeDevices[num].Index != ((DeviceDisplay)this.deviceComboBox.Items[num]).Index) + { + num++; + continue; + } + break; + } + return; + } + this._initialized = false; + this.deviceComboBox.SelectedIndex = num; + this._initialized = true; + } + } + } + + private void refreshTimer_Tick(object sender, EventArgs e) + { + this.samplerateComboBox.Enabled = !this._owner.Device.IsStreaming; + this.deviceComboBox.Enabled = !this._owner.Device.IsStreaming; + this.samplingModeComboBox.Enabled = !this._owner.Device.IsStreaming; + } + + private void deviceComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._initialized) + { + DeviceDisplay deviceDisplay = (DeviceDisplay)this.deviceComboBox.SelectedItem; + if (deviceDisplay != null) + { + try + { + this._owner.SelectDevice(deviceDisplay.Index); + } + catch (Exception ex) + { + this.deviceComboBox.SelectedIndex = -1; + MessageBox.Show(this, ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand); + } + } + } + } + + private void tunerGainTrackBar_Scroll(object sender, EventArgs e) + { + if (this._initialized) + { + int num = this._owner.Device.SupportedGains[this.tunerGainTrackBar.Value]; + this._owner.Device.Gain = num; + this.gainLabel.Text = (double)num / 10.0 + " dB"; + Utils.SaveSetting("RTLTunerGain", this.tunerGainTrackBar.Value); + } + } + + private void samplerateComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._initialized) + { + string s = this.samplerateComboBox.Items[this.samplerateComboBox.SelectedIndex].ToString().Split(' ')[0]; + double num = double.Parse(s, CultureInfo.InvariantCulture); + this._owner.Device.Samplerate = (uint)(num * 1000000.0); + Utils.SaveSetting("RTLSampleRate", this.samplerateComboBox.SelectedIndex); + } + } + + private void tunerAgcCheckBox_CheckedChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this.tunerGainTrackBar.Enabled = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + this._owner.Device.UseTunerAGC = this.tunerAgcCheckBox.Checked; + this.gainLabel.Visible = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + if (!this.tunerAgcCheckBox.Checked) + { + this.tunerGainTrackBar_Scroll(null, null); + } + Utils.SaveSetting("RTLTunerAgc", this.tunerAgcCheckBox.Checked); + } + } + + private void frequencyCorrectionNumericUpDown_ValueChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this._owner.Device.FrequencyCorrection = (int)this.frequencyCorrectionNumericUpDown.Value; + Utils.SaveSetting("RTLFrequencyCorrection", this.frequencyCorrectionNumericUpDown.Value.ToString()); + } + } + + private void rtlAgcCheckBox_CheckedChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this._owner.Device.UseRtlAGC = this.rtlAgcCheckBox.Checked; + Utils.SaveSetting("RTLChipAgc", this.rtlAgcCheckBox.Checked); + } + } + + private void samplingModeComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this.tunerAgcCheckBox.Enabled = (this.samplingModeComboBox.SelectedIndex == 0); + this.gainLabel.Visible = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + this.tunerGainTrackBar.Enabled = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + this.offsetTuningCheckBox.Enabled = (this.samplingModeComboBox.SelectedIndex == 0); + if (this.samplingModeComboBox.SelectedIndex == 0) + { + this.offsetTuningCheckBox_CheckedChanged(null, null); + } + else + { + this._owner.Device.UseOffsetTuning = false; + } + this._owner.Device.SamplingMode = (SamplingMode)this.samplingModeComboBox.SelectedIndex; + Utils.SaveSetting("RTLSamplingMode", this.samplingModeComboBox.SelectedIndex); + } + } + + private void offsetTuningCheckBox_CheckedChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this._owner.Device.UseOffsetTuning = this.offsetTuningCheckBox.Checked; + Utils.SaveSetting("RTLOffsetTuning", this.offsetTuningCheckBox.Checked); + } + } + + public void ConfigureGUI() + { + this.tunerTypeLabel.Text = this._owner.Device.TunerType.ToString(); + this.tunerGainTrackBar.Maximum = this._owner.Device.SupportedGains.Length - 1; + this.offsetTuningCheckBox.Enabled = this._owner.Device.SupportsOffsetTuning; + int num = 0; + while (true) + { + if (num < this.deviceComboBox.Items.Count) + { + DeviceDisplay deviceDisplay = (DeviceDisplay)this.deviceComboBox.Items[num]; + if (deviceDisplay.Index != this._owner.Device.Index) + { + num++; + continue; + } + break; + } + return; + } + this.deviceComboBox.SelectedIndex = num; + } + + public void ConfigureDevice() + { + this.samplerateComboBox_SelectedIndexChanged(null, null); + this.samplingModeComboBox_SelectedIndexChanged(null, null); + this.offsetTuningCheckBox_CheckedChanged(null, null); + this.frequencyCorrectionNumericUpDown_ValueChanged(null, null); + this.rtlAgcCheckBox_CheckedChanged(null, null); + this.tunerAgcCheckBox_CheckedChanged(null, null); + if (!this.tunerAgcCheckBox.Checked) + { + this.tunerGainTrackBar_Scroll(null, null); + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + this.refreshTimer = new Timer(this.components); + this.closeButton = new Button(); + this.deviceComboBox = new ComboBox(); + this.label1 = new Label(); + this.tunerGainTrackBar = new TrackBar(); + this.label2 = new Label(); + this.label3 = new Label(); + this.samplerateComboBox = new ComboBox(); + this.tunerAgcCheckBox = new CheckBox(); + this.gainLabel = new Label(); + this.frequencyCorrectionNumericUpDown = new NumericUpDown(); + this.label4 = new Label(); + this.tunerTypeLabel = new Label(); + this.rtlAgcCheckBox = new CheckBox(); + this.label5 = new Label(); + this.samplingModeComboBox = new ComboBox(); + this.offsetTuningCheckBox = new CheckBox(); + ((ISupportInitialize)this.tunerGainTrackBar).BeginInit(); + ((ISupportInitialize)this.frequencyCorrectionNumericUpDown).BeginInit(); + base.SuspendLayout(); + this.refreshTimer.Interval = 1000; + this.refreshTimer.Tick += this.refreshTimer_Tick; + this.closeButton.DialogResult = DialogResult.Cancel; + this.closeButton.Location = new Point(184, 306); + this.closeButton.Name = "closeButton"; + this.closeButton.Size = new Size(75, 23); + this.closeButton.TabIndex = 8; + this.closeButton.Text = "Close"; + this.closeButton.UseVisualStyleBackColor = true; + this.closeButton.Click += this.closeButton_Click; + this.deviceComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.deviceComboBox.FormattingEnabled = true; + this.deviceComboBox.Location = new Point(12, 26); + this.deviceComboBox.Name = "deviceComboBox"; + this.deviceComboBox.Size = new Size(247, 21); + this.deviceComboBox.TabIndex = 0; + this.deviceComboBox.SelectedIndexChanged += this.deviceComboBox_SelectedIndexChanged; + this.label1.AutoSize = true; + this.label1.Location = new Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new Size(41, 13); + this.label1.TabIndex = 20; + this.label1.Text = "Device"; + this.tunerGainTrackBar.Enabled = false; + this.tunerGainTrackBar.Location = new Point(3, 229); + this.tunerGainTrackBar.Maximum = 10000; + this.tunerGainTrackBar.Name = "tunerGainTrackBar"; + this.tunerGainTrackBar.Size = new Size(267, 45); + this.tunerGainTrackBar.TabIndex = 6; + this.tunerGainTrackBar.Scroll += this.tunerGainTrackBar_Scroll; + this.label2.AutoSize = true; + this.label2.Location = new Point(12, 213); + this.label2.Name = "label2"; + this.label2.Size = new Size(46, 13); + this.label2.TabIndex = 22; + this.label2.Text = "RF Gain"; + this.label3.AutoSize = true; + this.label3.Location = new Point(12, 53); + this.label3.Name = "label3"; + this.label3.Size = new Size(68, 13); + this.label3.TabIndex = 24; + this.label3.Text = "Sample Rate"; + this.samplerateComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.samplerateComboBox.FormattingEnabled = true; + this.samplerateComboBox.Items.AddRange(new object[10] + { + "3.2 MSPS", + "2.8 MSPS", + "2.4 MSPS", + "2.048 MSPS", + "1.92 MSPS", + "1.8 MSPS", + "1.4 MSPS", + "1.024 MSPS", + "0.900001 MSPS", + "0.25 MSPS" + }); + this.samplerateComboBox.Location = new Point(12, 70); + this.samplerateComboBox.Name = "samplerateComboBox"; + this.samplerateComboBox.Size = new Size(247, 21); + this.samplerateComboBox.TabIndex = 1; + this.samplerateComboBox.SelectedIndexChanged += this.samplerateComboBox_SelectedIndexChanged; + this.tunerAgcCheckBox.AutoSize = true; + this.tunerAgcCheckBox.Checked = true; + this.tunerAgcCheckBox.CheckState = CheckState.Checked; + this.tunerAgcCheckBox.Location = new Point(12, 193); + this.tunerAgcCheckBox.Name = "tunerAgcCheckBox"; + this.tunerAgcCheckBox.Size = new Size(79, 17); + this.tunerAgcCheckBox.TabIndex = 5; + this.tunerAgcCheckBox.Text = "Tuner AGC"; + this.tunerAgcCheckBox.UseVisualStyleBackColor = true; + this.tunerAgcCheckBox.CheckedChanged += this.tunerAgcCheckBox_CheckedChanged; + this.gainLabel.Location = new Point(191, 213); + this.gainLabel.Name = "gainLabel"; + this.gainLabel.Size = new Size(68, 13); + this.gainLabel.TabIndex = 26; + this.gainLabel.Text = "1000dB"; + this.gainLabel.TextAlign = ContentAlignment.MiddleRight; + this.gainLabel.Visible = false; + this.frequencyCorrectionNumericUpDown.Location = new Point(169, 275); + this.frequencyCorrectionNumericUpDown.Maximum = new decimal(new int[4] + { + 1000, + 0, + 0, + 0 + }); + this.frequencyCorrectionNumericUpDown.Minimum = new decimal(new int[4] + { + 1000, + 0, + 0, + -2147483648 + }); + this.frequencyCorrectionNumericUpDown.Name = "frequencyCorrectionNumericUpDown"; + this.frequencyCorrectionNumericUpDown.Size = new Size(90, 20); + this.frequencyCorrectionNumericUpDown.TabIndex = 7; + this.frequencyCorrectionNumericUpDown.TextAlign = HorizontalAlignment.Right; + this.frequencyCorrectionNumericUpDown.ValueChanged += this.frequencyCorrectionNumericUpDown_ValueChanged; + this.label4.AutoSize = true; + this.label4.Location = new Point(12, 277); + this.label4.Name = "label4"; + this.label4.Size = new Size(136, 13); + this.label4.TabIndex = 28; + this.label4.Text = "Frequency correction (ppm)"; + this.tunerTypeLabel.Location = new Point(166, 9); + this.tunerTypeLabel.Name = "tunerTypeLabel"; + this.tunerTypeLabel.Size = new Size(93, 13); + this.tunerTypeLabel.TabIndex = 29; + this.tunerTypeLabel.Text = "E4000"; + this.tunerTypeLabel.TextAlign = ContentAlignment.MiddleRight; + this.rtlAgcCheckBox.AutoSize = true; + this.rtlAgcCheckBox.Location = new Point(12, 170); + this.rtlAgcCheckBox.Name = "rtlAgcCheckBox"; + this.rtlAgcCheckBox.Size = new Size(72, 17); + this.rtlAgcCheckBox.TabIndex = 4; + this.rtlAgcCheckBox.Text = "RTL AGC"; + this.rtlAgcCheckBox.UseVisualStyleBackColor = true; + this.rtlAgcCheckBox.CheckedChanged += this.rtlAgcCheckBox_CheckedChanged; + this.label5.AutoSize = true; + this.label5.Location = new Point(12, 97); + this.label5.Name = "label5"; + this.label5.Size = new Size(80, 13); + this.label5.TabIndex = 31; + this.label5.Text = "Sampling Mode"; + this.samplingModeComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.samplingModeComboBox.FormattingEnabled = true; + this.samplingModeComboBox.Items.AddRange(new object[3] + { + "Quadrature sampling", + "Direct sampling (I branch)", + "Direct sampling (Q branch)" + }); + this.samplingModeComboBox.Location = new Point(12, 114); + this.samplingModeComboBox.Name = "samplingModeComboBox"; + this.samplingModeComboBox.Size = new Size(247, 21); + this.samplingModeComboBox.TabIndex = 2; + this.samplingModeComboBox.SelectedIndexChanged += this.samplingModeComboBox_SelectedIndexChanged; + this.offsetTuningCheckBox.AutoSize = true; + this.offsetTuningCheckBox.Location = new Point(12, 147); + this.offsetTuningCheckBox.Name = "offsetTuningCheckBox"; + this.offsetTuningCheckBox.Size = new Size(90, 17); + this.offsetTuningCheckBox.TabIndex = 3; + this.offsetTuningCheckBox.Text = "Offset Tuning"; + this.offsetTuningCheckBox.UseVisualStyleBackColor = true; + this.offsetTuningCheckBox.CheckedChanged += this.offsetTuningCheckBox_CheckedChanged; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.CancelButton = this.closeButton; + base.ClientSize = new Size(271, 342); + base.Controls.Add(this.offsetTuningCheckBox); + base.Controls.Add(this.label5); + base.Controls.Add(this.samplingModeComboBox); + base.Controls.Add(this.rtlAgcCheckBox); + base.Controls.Add(this.tunerTypeLabel); + base.Controls.Add(this.label4); + base.Controls.Add(this.frequencyCorrectionNumericUpDown); + base.Controls.Add(this.gainLabel); + base.Controls.Add(this.tunerAgcCheckBox); + base.Controls.Add(this.label3); + base.Controls.Add(this.samplerateComboBox); + base.Controls.Add(this.label2); + base.Controls.Add(this.tunerGainTrackBar); + base.Controls.Add(this.label1); + base.Controls.Add(this.deviceComboBox); + base.Controls.Add(this.closeButton); + base.FormBorderStyle = FormBorderStyle.FixedDialog; + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "RtlSdrControllerDialog"; + base.ShowIcon = false; + base.ShowInTaskbar = false; + base.StartPosition = FormStartPosition.CenterParent; + this.Text = "RTL-SDR Controller"; + base.TopMost = true; + base.FormClosing += this.RtlSdrControllerDialog_FormClosing; + base.VisibleChanged += this.RtlSdrControllerDialog_VisibleChanged; + ((ISupportInitialize)this.tunerGainTrackBar).EndInit(); + ((ISupportInitialize)this.frequencyCorrectionNumericUpDown).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.resx b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrControllerDialog.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrIO.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrIO.cs new file mode 100644 index 0000000..fc3e4ed --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrIO.cs @@ -0,0 +1,154 @@ +using SDRSharp.Radio; +using System; +using System.Windows.Forms; + +namespace SDRSharp.RTLSDR +{ + public class RtlSdrIO : IFrontendController, IDisposable + { + private readonly RtlSdrControllerDialog _gui; + + private RtlDevice _rtlDevice; + + private uint _frequency = 105500000u; + + private SDRSharp.Radio.SamplesAvailableDelegate _callback; + + public RtlDevice Device => this._rtlDevice; + + public bool IsSoundCardBased => false; + + public string SoundCardHint => string.Empty; + + public double Samplerate + { + get + { + if (this._rtlDevice != null) + { + return (double)this._rtlDevice.Samplerate; + } + return 0.0; + } + } + + public long Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = (uint)value; + if (this._rtlDevice != null) + { + this._rtlDevice.Frequency = this._frequency; + } + } + } + + public RtlSdrIO() + { + this._gui = new RtlSdrControllerDialog(this); + } + + ~RtlSdrIO() + { + this.Dispose(); + } + + public void Dispose() + { + if (this._gui != null) + { + this._gui.Dispose(); + } + GC.SuppressFinalize(this); + } + + public void SelectDevice(uint index) + { + this.Close(); + this._rtlDevice = new RtlDevice(index); + this._rtlDevice.SamplesAvailable += this.rtlDevice_SamplesAvailable; + this._rtlDevice.Frequency = this._frequency; + this._gui.ConfigureGUI(); + this._gui.ConfigureDevice(); + } + + public void Open() + { + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + DeviceDisplay[] array = activeDevices; + foreach (DeviceDisplay deviceDisplay in array) + { + try + { + this.SelectDevice(deviceDisplay.Index); + return; + } + catch (ApplicationException) + { + } + } + if (activeDevices.Length > 0) + { + throw new ApplicationException(activeDevices.Length + " compatible devices have been found but are all busy"); + } + throw new ApplicationException("No compatible devices found"); + } + + public void Close() + { + if (this._rtlDevice != null) + { + this._rtlDevice.Stop(); + this._rtlDevice.SamplesAvailable -= this.rtlDevice_SamplesAvailable; + this._rtlDevice.Dispose(); + this._rtlDevice = null; + } + } + + public unsafe void Start(SDRSharp.Radio.SamplesAvailableDelegate callback) + { + if (this._rtlDevice == null) + { + throw new ApplicationException("No device selected"); + } + this._callback = callback; + try + { + this._rtlDevice.Start(); + } + catch + { + this.Open(); + this._rtlDevice.Start(); + } + } + + public void Stop() + { + if (this._rtlDevice != null) + { + this._rtlDevice.Stop(); + } + } + + public void ShowSettingGUI(IWin32Window parent) + { + this._gui.Show(); + } + + public void HideSettingGUI() + { + this._gui.Hide(); + } + + private unsafe void rtlDevice_SamplesAvailable(object sender, SamplesAvailableEventArgs e) + { + this._callback(this, e.Buffer, e.Length); + } + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrReadAsyncDelegate.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrReadAsyncDelegate.cs new file mode 100644 index 0000000..84a82e4 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrReadAsyncDelegate.cs @@ -0,0 +1,8 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.RTLSDR +{ + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public unsafe delegate void RtlSdrReadAsyncDelegate(byte* buf, uint len, IntPtr ctx); +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrTunerType.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrTunerType.cs new file mode 100644 index 0000000..46237d4 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/RtlSdrTunerType.cs @@ -0,0 +1,12 @@ +namespace SDRSharp.RTLSDR +{ + public enum RtlSdrTunerType + { + Unknown, + E4000, + FC0012, + FC0013, + FC2580, + R820T + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplesAvailableDelegate.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplesAvailableDelegate.cs new file mode 100644 index 0000000..3717173 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplesAvailableDelegate.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.RTLSDR +{ + public delegate void SamplesAvailableDelegate(object sender, SamplesAvailableEventArgs e); +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplesAvailableEventArgs.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplesAvailableEventArgs.cs new file mode 100644 index 0000000..b0ba0cf --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplesAvailableEventArgs.cs @@ -0,0 +1,20 @@ +using SDRSharp.Radio; +using System; + +namespace SDRSharp.RTLSDR +{ + public sealed class SamplesAvailableEventArgs : EventArgs + { + public int Length + { + get; + set; + } + + public unsafe Complex* Buffer + { + get; + set; + } + } +} diff --git a/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplingMode.cs b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplingMode.cs new file mode 100644 index 0000000..e38190d --- /dev/null +++ b/Plugins/SDRSharper.RTLSDR/SDRSharp.RTLSDR/SamplingMode.cs @@ -0,0 +1,9 @@ +namespace SDRSharp.RTLSDR +{ + public enum SamplingMode + { + Quadrature, + DirectSamplingI, + DirectSamplingQ + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.RTLSDRGains/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..8c52cf1 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/Properties/AssemblyInfo.cs @@ -0,0 +1,14 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions; + +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyProduct("SDR#")] +[assembly: CompilationRelaxations(8)] +[assembly: AssemblyCopyright("Copyright © Youssef TOUIL 2012")] +[assembly: AssemblyTitle("RTL-SDR Controller")] +[assembly: AssemblyDescription("USB interface for RTL2832U based DVB-T dongles")] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.0.0.0")] diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/DeviceDisplay.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/DeviceDisplay.cs new file mode 100644 index 0000000..f640de9 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/DeviceDisplay.cs @@ -0,0 +1,38 @@ +namespace SDRSharp.RTLSDR +{ + public class DeviceDisplay + { + public uint Index + { + get; + private set; + } + + public string Name + { + get; + set; + } + + public static DeviceDisplay[] GetActiveDevices() + { + uint num = NativeMethods.rtlsdr_get_device_count(); + DeviceDisplay[] array = new DeviceDisplay[num]; + for (uint num2 = 0u; num2 < num; num2++) + { + string name = NativeMethods.rtlsdr_get_device_name(num2); + array[num2] = new DeviceDisplay + { + Index = num2, + Name = name + }; + } + return array; + } + + public override string ToString() + { + return this.Name; + } + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/NativeMethods.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/NativeMethods.cs new file mode 100644 index 0000000..bfd71ab --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/NativeMethods.cs @@ -0,0 +1,104 @@ +using System; +using System.Runtime.InteropServices; +using System.Text; + +namespace SDRSharp.RTLSDR +{ + public class NativeMethods + { + private const string LibRtlSdr = "librtlsdr"; + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern uint rtlsdr_get_device_count(); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl, EntryPoint = "rtlsdr_get_device_name")] + private static extern IntPtr rtlsdr_get_device_name_native(uint index); + + public static string rtlsdr_get_device_name(uint index) + { + IntPtr ptr = NativeMethods.rtlsdr_get_device_name_native(index); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_device_usb_strings(uint index, StringBuilder manufact, StringBuilder product, StringBuilder serial); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_open(out IntPtr dev, uint index); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_close(IntPtr dev); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_xtal_freq(IntPtr dev, uint rtlFreq, uint tunerFreq); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_xtal_freq(IntPtr dev, out uint rtlFreq, out uint tunerFreq); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_usb_strings(IntPtr dev, StringBuilder manufact, StringBuilder product, StringBuilder serial); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_center_freq(IntPtr dev, uint freq); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern uint rtlsdr_get_center_freq(IntPtr dev); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_freq_correction(IntPtr dev, int ppm); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_freq_correction(IntPtr dev); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_tuner_gains(IntPtr dev, [In] [Out] int[] gains); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern RtlSdrTunerType rtlsdr_get_tuner_type(IntPtr dev); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_tuner_gain(IntPtr dev, int gain); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_tuner_gain_ext(IntPtr dev, int lna_gain, int mixer_gain, int vga_gain); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_get_tuner_gain(IntPtr dev); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_tuner_gain_mode(IntPtr dev, int manual); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_agc_mode(IntPtr dev, int on); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_direct_sampling(IntPtr dev, int on); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_offset_tuning(IntPtr dev, int on); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_sample_rate(IntPtr dev, uint rate); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern uint rtlsdr_get_sample_rate(IntPtr dev); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_set_testmode(IntPtr dev, int on); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_reset_buffer(IntPtr dev); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_read_sync(IntPtr dev, IntPtr buf, int len, out int nRead); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_wait_async(IntPtr dev, RtlSdrReadAsyncDelegate cb, IntPtr ctx); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_read_async(IntPtr dev, RtlSdrReadAsyncDelegate cb, IntPtr ctx, uint bufNum, uint bufLen); + + [DllImport("librtlsdr", CallingConvention = CallingConvention.Cdecl)] + public static extern int rtlsdr_cancel_async(IntPtr dev); + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlDevice.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlDevice.cs new file mode 100644 index 0000000..ede265f --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlDevice.cs @@ -0,0 +1,381 @@ +using SDRSharp.Radio; +using System; +using System.Runtime.InteropServices; +using System.Threading; + +namespace SDRSharp.RTLSDR +{ + public sealed class RtlDevice : IDisposable + { + private const uint DefaultFrequency = 105500000u; + + private const int DefaultSamplerate = 2048000; + + private unsafe static readonly float* _lutPtr; + + private static readonly UnsafeBuffer _lutBuffer; + + private readonly uint _index; + + private IntPtr _dev; + + private readonly string _name; + + private readonly int[] _supportedGains; + + private bool _useTunerAGC = false; + + private bool _useRtlAGC; + + private int _vgaGain; + + private int _lnaGain; + + private int _mixerGain; + + private uint _centerFrequency = 105500000u; + + private uint _sampleRate = 2048000u; + + private int _frequencyCorrection; + + private SamplingMode _samplingMode; + + private bool _useOffsetTuning; + + private readonly bool _supportsOffsetTuning; + + private GCHandle _gcHandle; + + private UnsafeBuffer _iqBuffer; + + private unsafe Complex* _iqPtr; + + private Thread _worker; + + private readonly SamplesAvailableEventArgs _eventArgs = new SamplesAvailableEventArgs(); + + private static readonly RtlSdrReadAsyncDelegate _rtlCallback; + + private static readonly uint _readLength; + + public uint Index => this._index; + + public string Name => this._name; + + public uint Samplerate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_sample_rate(this._dev, this._sampleRate); + } + } + } + + public uint Frequency + { + get + { + return this._centerFrequency; + } + set + { + this._centerFrequency = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_center_freq(this._dev, this._centerFrequency); + } + } + } + + public bool UseRtlAGC + { + get + { + return this._useRtlAGC; + } + set + { + this._useRtlAGC = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_agc_mode(this._dev, this._useRtlAGC ? 1 : 0); + } + } + } + + public bool UseTunerAGC + { + get + { + return this._useTunerAGC; + } + set + { + this._useTunerAGC = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_tuner_gain_mode(this._dev, (!this._useTunerAGC) ? 1 : 0); + } + } + } + + public SamplingMode SamplingMode + { + get + { + return this._samplingMode; + } + set + { + this._samplingMode = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_direct_sampling(this._dev, (int)this._samplingMode); + } + } + } + + public bool SupportsOffsetTuning => this._supportsOffsetTuning; + + public bool UseOffsetTuning + { + get + { + return this._useOffsetTuning; + } + set + { + this._useOffsetTuning = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_offset_tuning(this._dev, this._useOffsetTuning ? 1 : 0); + } + } + } + + public int[] SupportedGains => this._supportedGains; + + public int Gain + { + get + { + return this._vgaGain; + } + set + { + this._vgaGain = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_tuner_gain_ext(this._dev, this._lnaGain, this._mixerGain, this._vgaGain); + } + } + } + + public int LNAGain + { + get + { + return this._lnaGain; + } + set + { + this._lnaGain = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_tuner_gain_ext(this._dev, this._lnaGain, this._mixerGain, this._vgaGain); + } + } + } + + public int MixerGain + { + get + { + return this._mixerGain; + } + set + { + this._mixerGain = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_tuner_gain_ext(this._dev, this._lnaGain, this._mixerGain, this._vgaGain); + } + } + } + + public int FrequencyCorrection + { + get + { + return this._frequencyCorrection; + } + set + { + this._frequencyCorrection = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.rtlsdr_set_freq_correction(this._dev, this._frequencyCorrection); + } + } + } + + public RtlSdrTunerType TunerType => (!(this._dev == IntPtr.Zero)) ? NativeMethods.rtlsdr_get_tuner_type(this._dev) : RtlSdrTunerType.Unknown; + + public bool IsStreaming => this._worker != null; + + public event SamplesAvailableDelegate SamplesAvailable; + + unsafe static RtlDevice() + { + RtlDevice._lutBuffer = UnsafeBuffer.Create(256, 4); + RtlDevice._rtlCallback = RtlDevice.RtlSdrSamplesAvailable; + RtlDevice._readLength = (uint)Utils.GetIntSetting("RTLBufferLength", 16384); + RtlDevice._lutPtr = (float*)(void*)RtlDevice._lutBuffer; + for (int i = 0; i < 256; i++) + { + RtlDevice._lutPtr[i] = (float)(i - 128) * 0.007874016f; + } + } + + public RtlDevice(uint index) + { + this._index = index; + if (NativeMethods.rtlsdr_open(out this._dev, this._index) != 0) + { + throw new ApplicationException("Cannot open RTL device. Is the device locked somewhere?"); + } + int num = (!(this._dev == IntPtr.Zero)) ? NativeMethods.rtlsdr_get_tuner_gains(this._dev, null) : 0; + if (num < 0) + { + num = 0; + } + this._supportsOffsetTuning = (NativeMethods.rtlsdr_set_offset_tuning(this._dev, 0) != -2); + this._supportedGains = new int[num]; + if (num >= 0) + { + NativeMethods.rtlsdr_get_tuner_gains(this._dev, this._supportedGains); + } + this._name = NativeMethods.rtlsdr_get_device_name(this._index); + this._gcHandle = GCHandle.Alloc(this); + } + + ~RtlDevice() + { + this.Dispose(); + } + + public void Dispose() + { + this.Stop(); + NativeMethods.rtlsdr_close(this._dev); + if (this._gcHandle.IsAllocated) + { + this._gcHandle.Free(); + } + this._dev = IntPtr.Zero; + GC.SuppressFinalize(this); + } + + public void Start() + { + if (this._worker != null) + { + throw new ApplicationException("Already running"); + } + if (NativeMethods.rtlsdr_set_sample_rate(this._dev, this._sampleRate) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + if (NativeMethods.rtlsdr_set_center_freq(this._dev, this._centerFrequency) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + if (NativeMethods.rtlsdr_set_tuner_gain_mode(this._dev, (!this._useTunerAGC) ? 1 : 0) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + if (!this._useTunerAGC && NativeMethods.rtlsdr_set_tuner_gain(this._dev, this._vgaGain) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + if (NativeMethods.rtlsdr_set_tuner_gain_ext(this._dev, this._lnaGain, this._mixerGain, this._vgaGain) != 0) + { + throw new ApplicationException("Cannot set extended gain values"); + } + if (NativeMethods.rtlsdr_reset_buffer(this._dev) != 0) + { + throw new ApplicationException("Cannot access RTL device"); + } + this._worker = new Thread(this.StreamProc); + this._worker.Priority = ThreadPriority.Highest; + this._worker.Start(); + } + + public void Stop() + { + if (this._worker != null) + { + NativeMethods.rtlsdr_cancel_async(this._dev); + if (this._worker.ThreadState == ThreadState.Running) + { + this._worker.Join(); + } + this._worker = null; + } + } + + private unsafe void StreamProc() + { + NativeMethods.rtlsdr_read_async(this._dev, RtlDevice._rtlCallback, (IntPtr)this._gcHandle, 0u, RtlDevice._readLength); + } + + private unsafe void ComplexSamplesAvailable(Complex* buffer, int length) + { + if (this.SamplesAvailable != null) + { + this._eventArgs.Buffer = buffer; + this._eventArgs.Length = length; + this.SamplesAvailable(this, this._eventArgs); + } + } + + private unsafe static void RtlSdrSamplesAvailable(byte* buf, uint len, IntPtr ctx) + { + GCHandle gCHandle = GCHandle.FromIntPtr(ctx); + if (gCHandle.IsAllocated) + { + RtlDevice rtlDevice = (RtlDevice)gCHandle.Target; + int num = (int)len / 2; + if (rtlDevice._iqBuffer == null || rtlDevice._iqBuffer.Length != num) + { + rtlDevice._iqBuffer = UnsafeBuffer.Create(num, sizeof(Complex)); + rtlDevice._iqPtr = (Complex*)(void*)rtlDevice._iqBuffer; + } + Complex* ptr = rtlDevice._iqPtr; + for (int i = 0; i < num; i++) + { + Complex* intPtr = ptr; + float* lutPtr = RtlDevice._lutPtr; + byte* intPtr2 = buf; + buf = intPtr2 + 1; + intPtr->Imag = lutPtr[(int)(*intPtr2)]; + Complex* intPtr3 = ptr; + float* lutPtr2 = RtlDevice._lutPtr; + byte* intPtr4 = buf; + buf = intPtr4 + 1; + intPtr3->Real = lutPtr2[(int)(*intPtr4)]; + ptr++; + } + rtlDevice.ComplexSamplesAvailable(rtlDevice._iqPtr, rtlDevice._iqBuffer.Length); + } + } + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.Designer.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.Designer.cs new file mode 100644 index 0000000..4fcda1a --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.Designer.cs @@ -0,0 +1,310 @@ +namespace SDRSharp.RTLSDR +{ + // Token: 0x02000003 RID: 3 + public partial class RtlSdrControllerDialog : global::System.Windows.Forms.Form + { + // Token: 0x06000016 RID: 22 RVA: 0x000029C0 File Offset: 0x00000BC0 + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + // Token: 0x06000017 RID: 23 RVA: 0x000029F8 File Offset: 0x00000BF8 + private void InitializeComponent() + { + this.components = new global::System.ComponentModel.Container(); + this.refreshTimer = new global::System.Windows.Forms.Timer(this.components); + this.closeButton = new global::System.Windows.Forms.Button(); + this.deviceComboBox = new global::System.Windows.Forms.ComboBox(); + this.label1 = new global::System.Windows.Forms.Label(); + this.vgaGainTrackBar = new global::System.Windows.Forms.TrackBar(); + this.label2 = new global::System.Windows.Forms.Label(); + this.label3 = new global::System.Windows.Forms.Label(); + this.samplerateComboBox = new global::System.Windows.Forms.ComboBox(); + this.tunerAgcCheckBox = new global::System.Windows.Forms.CheckBox(); + this.frequencyCorrectionNumericUpDown = new global::System.Windows.Forms.NumericUpDown(); + this.label4 = new global::System.Windows.Forms.Label(); + this.tunerTypeLabel = new global::System.Windows.Forms.Label(); + this.rtlAgcCheckBox = new global::System.Windows.Forms.CheckBox(); + this.label5 = new global::System.Windows.Forms.Label(); + this.samplingModeComboBox = new global::System.Windows.Forms.ComboBox(); + this.offsetTuningCheckBox = new global::System.Windows.Forms.CheckBox(); + this.mixerGainTrackBar = new global::System.Windows.Forms.TrackBar(); + this.lnaGainTrackBar = new global::System.Windows.Forms.TrackBar(); + this.label6 = new global::System.Windows.Forms.Label(); + this.label7 = new global::System.Windows.Forms.Label(); + ((global::System.ComponentModel.ISupportInitialize)this.vgaGainTrackBar).BeginInit(); + ((global::System.ComponentModel.ISupportInitialize)this.frequencyCorrectionNumericUpDown).BeginInit(); + ((global::System.ComponentModel.ISupportInitialize)this.mixerGainTrackBar).BeginInit(); + ((global::System.ComponentModel.ISupportInitialize)this.lnaGainTrackBar).BeginInit(); + base.SuspendLayout(); + this.refreshTimer.Interval = 1000; + this.refreshTimer.Tick += new global::System.EventHandler(this.refreshTimer_Tick); + this.closeButton.DialogResult = global::System.Windows.Forms.DialogResult.Cancel; + this.closeButton.Location = new global::System.Drawing.Point(184, 405); + this.closeButton.Name = "closeButton"; + this.closeButton.Size = new global::System.Drawing.Size(75, 23); + this.closeButton.TabIndex = 8; + this.closeButton.Text = "Close"; + this.closeButton.UseVisualStyleBackColor = true; + this.closeButton.Click += new global::System.EventHandler(this.closeButton_Click); + this.deviceComboBox.DropDownStyle = global::System.Windows.Forms.ComboBoxStyle.DropDownList; + this.deviceComboBox.FormattingEnabled = true; + this.deviceComboBox.Location = new global::System.Drawing.Point(12, 26); + this.deviceComboBox.Name = "deviceComboBox"; + this.deviceComboBox.Size = new global::System.Drawing.Size(247, 21); + this.deviceComboBox.TabIndex = 0; + this.deviceComboBox.SelectedIndexChanged += new global::System.EventHandler(this.deviceComboBox_SelectedIndexChanged); + this.label1.AutoSize = true; + this.label1.Location = new global::System.Drawing.Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new global::System.Drawing.Size(41, 13); + this.label1.TabIndex = 20; + this.label1.Text = "Device"; + this.vgaGainTrackBar.Location = new global::System.Drawing.Point(3, 322); + this.vgaGainTrackBar.Maximum = 15; + this.vgaGainTrackBar.Name = "vgaGainTrackBar"; + this.vgaGainTrackBar.Size = new global::System.Drawing.Size(267, 45); + this.vgaGainTrackBar.TabIndex = 6; + this.vgaGainTrackBar.Scroll += new global::System.EventHandler(this.vgaGainTrackBar_Scroll); + this.label2.AutoSize = true; + this.label2.Location = new global::System.Drawing.Point(12, 304); + this.label2.Name = "label2"; + this.label2.Size = new global::System.Drawing.Size(54, 13); + this.label2.TabIndex = 22; + this.label2.Text = "VGA Gain"; + this.label3.AutoSize = true; + this.label3.Location = new global::System.Drawing.Point(12, 53); + this.label3.Name = "label3"; + this.label3.Size = new global::System.Drawing.Size(68, 13); + this.label3.TabIndex = 24; + this.label3.Text = "Sample Rate"; + this.samplerateComboBox.DropDownStyle = global::System.Windows.Forms.ComboBoxStyle.DropDownList; + this.samplerateComboBox.FormattingEnabled = true; + this.samplerateComboBox.Items.AddRange(new object[] + { + "3.2 MSPS", + "2.8 MSPS", + "2.56 MSPS", + "2.4 MSPS", + "2.048 MSPS", + "1.92 MSPS", + "1.8 MSPS", + "1.4 MSPS", + "1.024 MSPS", + "0.900001 MSPS", + "0.25 MSPS" + }); + this.samplerateComboBox.Location = new global::System.Drawing.Point(12, 70); + this.samplerateComboBox.Name = "samplerateComboBox"; + this.samplerateComboBox.Size = new global::System.Drawing.Size(247, 21); + this.samplerateComboBox.TabIndex = 1; + this.samplerateComboBox.SelectedIndexChanged += new global::System.EventHandler(this.samplerateComboBox_SelectedIndexChanged); + this.tunerAgcCheckBox.AutoSize = true; + this.tunerAgcCheckBox.Checked = true; + this.tunerAgcCheckBox.CheckState = global::System.Windows.Forms.CheckState.Checked; + this.tunerAgcCheckBox.Location = new global::System.Drawing.Point(186, 147); + this.tunerAgcCheckBox.Name = "tunerAgcCheckBox"; + this.tunerAgcCheckBox.Size = new global::System.Drawing.Size(79, 17); + this.tunerAgcCheckBox.TabIndex = 5; + this.tunerAgcCheckBox.Text = "Tuner AGC"; + this.tunerAgcCheckBox.UseVisualStyleBackColor = true; + this.tunerAgcCheckBox.CheckedChanged += new global::System.EventHandler(this.tunerAgcCheckBox_CheckedChanged); + this.frequencyCorrectionNumericUpDown.Location = new global::System.Drawing.Point(169, 374); + global::System.Windows.Forms.NumericUpDown numericUpDown = this.frequencyCorrectionNumericUpDown; + int[] array = new int[4]; + array[0] = 1000; + numericUpDown.Maximum = new decimal(array); + this.frequencyCorrectionNumericUpDown.Minimum = new decimal(new int[] + { + 1000, + 0, + 0, + int.MinValue + }); + this.frequencyCorrectionNumericUpDown.Name = "frequencyCorrectionNumericUpDown"; + this.frequencyCorrectionNumericUpDown.Size = new global::System.Drawing.Size(90, 20); + this.frequencyCorrectionNumericUpDown.TabIndex = 7; + this.frequencyCorrectionNumericUpDown.TextAlign = global::System.Windows.Forms.HorizontalAlignment.Right; + this.frequencyCorrectionNumericUpDown.ValueChanged += new global::System.EventHandler(this.frequencyCorrectionNumericUpDown_ValueChanged); + this.label4.AutoSize = true; + this.label4.Location = new global::System.Drawing.Point(12, 376); + this.label4.Name = "label4"; + this.label4.Size = new global::System.Drawing.Size(136, 13); + this.label4.TabIndex = 28; + this.label4.Text = "Frequency correction (ppm)"; + this.tunerTypeLabel.Location = new global::System.Drawing.Point(166, 9); + this.tunerTypeLabel.Name = "tunerTypeLabel"; + this.tunerTypeLabel.Size = new global::System.Drawing.Size(93, 13); + this.tunerTypeLabel.TabIndex = 29; + this.tunerTypeLabel.Text = "E4000"; + this.tunerTypeLabel.TextAlign = global::System.Drawing.ContentAlignment.MiddleRight; + this.rtlAgcCheckBox.AutoSize = true; + this.rtlAgcCheckBox.Location = new global::System.Drawing.Point(108, 147); + this.rtlAgcCheckBox.Name = "rtlAgcCheckBox"; + this.rtlAgcCheckBox.Size = new global::System.Drawing.Size(72, 17); + this.rtlAgcCheckBox.TabIndex = 4; + this.rtlAgcCheckBox.Text = "RTL AGC"; + this.rtlAgcCheckBox.UseVisualStyleBackColor = true; + this.rtlAgcCheckBox.CheckedChanged += new global::System.EventHandler(this.rtlAgcCheckBox_CheckedChanged); + this.label5.AutoSize = true; + this.label5.Location = new global::System.Drawing.Point(12, 97); + this.label5.Name = "label5"; + this.label5.Size = new global::System.Drawing.Size(80, 13); + this.label5.TabIndex = 31; + this.label5.Text = "Sampling Mode"; + this.samplingModeComboBox.DropDownStyle = global::System.Windows.Forms.ComboBoxStyle.DropDownList; + this.samplingModeComboBox.FormattingEnabled = true; + this.samplingModeComboBox.Items.AddRange(new object[] + { + "Quadrature sampling", + "Direct sampling (I branch)", + "Direct sampling (Q branch)" + }); + this.samplingModeComboBox.Location = new global::System.Drawing.Point(12, 114); + this.samplingModeComboBox.Name = "samplingModeComboBox"; + this.samplingModeComboBox.Size = new global::System.Drawing.Size(247, 21); + this.samplingModeComboBox.TabIndex = 2; + this.samplingModeComboBox.SelectedIndexChanged += new global::System.EventHandler(this.samplingModeComboBox_SelectedIndexChanged); + this.offsetTuningCheckBox.AutoSize = true; + this.offsetTuningCheckBox.Location = new global::System.Drawing.Point(12, 147); + this.offsetTuningCheckBox.Name = "offsetTuningCheckBox"; + this.offsetTuningCheckBox.Size = new global::System.Drawing.Size(90, 17); + this.offsetTuningCheckBox.TabIndex = 3; + this.offsetTuningCheckBox.Text = "Offset Tuning"; + this.offsetTuningCheckBox.UseVisualStyleBackColor = true; + this.offsetTuningCheckBox.CheckedChanged += new global::System.EventHandler(this.offsetTuningCheckBox_CheckedChanged); + this.mixerGainTrackBar.Location = new global::System.Drawing.Point(2, 253); + this.mixerGainTrackBar.Maximum = 15; + this.mixerGainTrackBar.Name = "mixerGainTrackBar"; + this.mixerGainTrackBar.Size = new global::System.Drawing.Size(267, 45); + this.mixerGainTrackBar.TabIndex = 32; + this.mixerGainTrackBar.Scroll += new global::System.EventHandler(this.mixerGainTrackBar_Scroll); + this.lnaGainTrackBar.Location = new global::System.Drawing.Point(2, 189); + this.lnaGainTrackBar.Maximum = 15; + this.lnaGainTrackBar.Name = "lnaGainTrackBar"; + this.lnaGainTrackBar.Size = new global::System.Drawing.Size(267, 45); + this.lnaGainTrackBar.TabIndex = 33; + this.lnaGainTrackBar.Scroll += new global::System.EventHandler(this.lnaGainTrackBar_Scroll); + this.label6.AutoSize = true; + this.label6.Location = new global::System.Drawing.Point(12, 236); + this.label6.Name = "label6"; + this.label6.Size = new global::System.Drawing.Size(57, 13); + this.label6.TabIndex = 34; + this.label6.Text = "Mixer Gain"; + this.label7.AutoSize = true; + this.label7.Location = new global::System.Drawing.Point(12, 171); + this.label7.Name = "label7"; + this.label7.Size = new global::System.Drawing.Size(53, 13); + this.label7.TabIndex = 35; + this.label7.Text = "LNA Gain"; + base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f); + base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font; + base.CancelButton = this.closeButton; + base.ClientSize = new global::System.Drawing.Size(271, 440); + base.Controls.Add(this.label7); + base.Controls.Add(this.label6); + base.Controls.Add(this.lnaGainTrackBar); + base.Controls.Add(this.mixerGainTrackBar); + base.Controls.Add(this.offsetTuningCheckBox); + base.Controls.Add(this.label5); + base.Controls.Add(this.samplingModeComboBox); + base.Controls.Add(this.rtlAgcCheckBox); + base.Controls.Add(this.tunerTypeLabel); + base.Controls.Add(this.label4); + base.Controls.Add(this.frequencyCorrectionNumericUpDown); + base.Controls.Add(this.tunerAgcCheckBox); + base.Controls.Add(this.label3); + base.Controls.Add(this.samplerateComboBox); + base.Controls.Add(this.label2); + base.Controls.Add(this.vgaGainTrackBar); + base.Controls.Add(this.label1); + base.Controls.Add(this.deviceComboBox); + base.Controls.Add(this.closeButton); + base.FormBorderStyle = global::System.Windows.Forms.FormBorderStyle.FixedDialog; + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "RtlSdrControllerDialog"; + base.ShowIcon = false; + base.ShowInTaskbar = false; + base.StartPosition = global::System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "RTL-SDR Controller"; + base.TopMost = true; + base.FormClosing += new global::System.Windows.Forms.FormClosingEventHandler(this.RtlSdrControllerDialog_FormClosing); + base.VisibleChanged += new global::System.EventHandler(this.RtlSdrControllerDialog_VisibleChanged); + ((global::System.ComponentModel.ISupportInitialize)this.vgaGainTrackBar).EndInit(); + ((global::System.ComponentModel.ISupportInitialize)this.frequencyCorrectionNumericUpDown).EndInit(); + ((global::System.ComponentModel.ISupportInitialize)this.mixerGainTrackBar).EndInit(); + ((global::System.ComponentModel.ISupportInitialize)this.lnaGainTrackBar).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + + // Token: 0x04000005 RID: 5 + private global::System.ComponentModel.IContainer components = null; + + // Token: 0x04000006 RID: 6 + private global::System.Windows.Forms.Timer refreshTimer; + + // Token: 0x04000007 RID: 7 + private global::System.Windows.Forms.Button closeButton; + + // Token: 0x04000008 RID: 8 + private global::System.Windows.Forms.ComboBox deviceComboBox; + + // Token: 0x04000009 RID: 9 + private global::System.Windows.Forms.Label label1; + + // Token: 0x0400000A RID: 10 + private global::System.Windows.Forms.TrackBar vgaGainTrackBar; + + // Token: 0x0400000B RID: 11 + private global::System.Windows.Forms.Label label2; + + // Token: 0x0400000C RID: 12 + private global::System.Windows.Forms.Label label3; + + // Token: 0x0400000D RID: 13 + private global::System.Windows.Forms.ComboBox samplerateComboBox; + + // Token: 0x0400000E RID: 14 + private global::System.Windows.Forms.CheckBox tunerAgcCheckBox; + + // Token: 0x0400000F RID: 15 + private global::System.Windows.Forms.NumericUpDown frequencyCorrectionNumericUpDown; + + // Token: 0x04000010 RID: 16 + private global::System.Windows.Forms.Label label4; + + // Token: 0x04000011 RID: 17 + private global::System.Windows.Forms.Label tunerTypeLabel; + + // Token: 0x04000012 RID: 18 + private global::System.Windows.Forms.CheckBox rtlAgcCheckBox; + + // Token: 0x04000013 RID: 19 + private global::System.Windows.Forms.Label label5; + + // Token: 0x04000014 RID: 20 + private global::System.Windows.Forms.ComboBox samplingModeComboBox; + + // Token: 0x04000015 RID: 21 + private global::System.Windows.Forms.CheckBox offsetTuningCheckBox; + + // Token: 0x04000016 RID: 22 + private global::System.Windows.Forms.TrackBar mixerGainTrackBar; + + // Token: 0x04000017 RID: 23 + private global::System.Windows.Forms.TrackBar lnaGainTrackBar; + + // Token: 0x04000018 RID: 24 + private global::System.Windows.Forms.Label label6; + + // Token: 0x04000019 RID: 25 + private global::System.Windows.Forms.Label label7; + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.cs new file mode 100644 index 0000000..f0adc76 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.cs @@ -0,0 +1,531 @@ +using SDRSharp.Radio; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Globalization; +using System.Windows.Forms; + +namespace SDRSharp.RTLSDR +{ + public class RtlSdrControllerDialog : Form + { + private readonly RtlSdrIO _owner; + + private bool _initialized; + + private IContainer components = null; + + private Timer refreshTimer; + + private Button closeButton; + + private ComboBox deviceComboBox; + + private Label label1; + + private TrackBar vgaGainTrackBar; + + private Label label2; + + private Label label3; + + private ComboBox samplerateComboBox; + + private CheckBox tunerAgcCheckBox; + + private NumericUpDown frequencyCorrectionNumericUpDown; + + private Label label4; + + private Label tunerTypeLabel; + + private CheckBox rtlAgcCheckBox; + + private Label label5; + + private ComboBox samplingModeComboBox; + + private CheckBox offsetTuningCheckBox; + + private TrackBar mixerGainTrackBar; + + private TrackBar lnaGainTrackBar; + + private Label label6; + + private Label label7; + + public RtlSdrControllerDialog(RtlSdrIO owner) + { + this.InitializeComponent(); + this._owner = owner; + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + this.deviceComboBox.Items.Clear(); + this.deviceComboBox.Items.AddRange(activeDevices); + this.frequencyCorrectionNumericUpDown.Value = Utils.GetIntSetting("RTLFrequencyCorrection", 0); + this.samplerateComboBox.SelectedIndex = Utils.GetIntSetting("RTLSampleRate", 3); + this.samplingModeComboBox.SelectedIndex = Utils.GetIntSetting("RTLSamplingMode", 0); + this.offsetTuningCheckBox.Checked = Utils.GetBooleanSetting("RTLOffsetTuning"); + this.rtlAgcCheckBox.Checked = Utils.GetBooleanSetting("RTLChipAgc"); + this.tunerAgcCheckBox.Checked = Utils.GetBooleanSetting("RTLTunerAgc"); + this.lnaGainTrackBar.Value = Utils.GetIntSetting("LNAGain", 0); + this.mixerGainTrackBar.Value = Utils.GetIntSetting("MixerGain", 0); + this.vgaGainTrackBar.Value = Utils.GetIntSetting("VGAGain", 0); + this.tunerAgcCheckBox.Enabled = (this.samplingModeComboBox.SelectedIndex == 0); + this.vgaGainTrackBar.Enabled = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + this.offsetTuningCheckBox.Enabled = (this.samplingModeComboBox.SelectedIndex == 0); + this._initialized = true; + } + + private void closeButton_Click(object sender, EventArgs e) + { + base.Close(); + } + + private void RtlSdrControllerDialog_FormClosing(object sender, FormClosingEventArgs e) + { + e.Cancel = true; + base.Hide(); + } + + private void RtlSdrControllerDialog_VisibleChanged(object sender, EventArgs e) + { + this.refreshTimer.Enabled = base.Visible; + if (base.Visible) + { + this.samplerateComboBox.Enabled = !this._owner.Device.IsStreaming; + this.deviceComboBox.Enabled = !this._owner.Device.IsStreaming; + this.samplingModeComboBox.Enabled = !this._owner.Device.IsStreaming; + if (!this._owner.Device.IsStreaming) + { + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + this.deviceComboBox.Items.Clear(); + this.deviceComboBox.Items.AddRange(activeDevices); + int num = 0; + while (true) + { + if (num < activeDevices.Length) + { + if (activeDevices[num].Index != ((DeviceDisplay)this.deviceComboBox.Items[num]).Index) + { + num++; + continue; + } + break; + } + return; + } + this._initialized = false; + this.deviceComboBox.SelectedIndex = num; + this._initialized = true; + } + } + } + + private void refreshTimer_Tick(object sender, EventArgs e) + { + this.samplerateComboBox.Enabled = !this._owner.Device.IsStreaming; + this.deviceComboBox.Enabled = !this._owner.Device.IsStreaming; + this.samplingModeComboBox.Enabled = !this._owner.Device.IsStreaming; + } + + private void deviceComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._initialized) + { + DeviceDisplay deviceDisplay = (DeviceDisplay)this.deviceComboBox.SelectedItem; + if (deviceDisplay != null) + { + try + { + this._owner.SelectDevice(deviceDisplay.Index); + } + catch (Exception ex) + { + this.deviceComboBox.SelectedIndex = -1; + MessageBox.Show(this, ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand); + } + } + } + } + + private void vgaGainTrackBar_Scroll(object sender, EventArgs e) + { + if (this._initialized) + { + int value = this.vgaGainTrackBar.Value; + this._owner.Device.Gain = value; + Utils.SaveSetting("VGAGain", this.vgaGainTrackBar.Value); + } + } + + private void samplerateComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._initialized) + { + string s = this.samplerateComboBox.Items[this.samplerateComboBox.SelectedIndex].ToString().Split(' ')[0]; + double num = double.Parse(s, CultureInfo.InvariantCulture); + this._owner.Device.Samplerate = (uint)(num * 1000000.0); + Utils.SaveSetting("RTLSampleRate", this.samplerateComboBox.SelectedIndex); + } + } + + private void tunerAgcCheckBox_CheckedChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this.vgaGainTrackBar.Enabled = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + this._owner.Device.UseTunerAGC = this.tunerAgcCheckBox.Checked; + if (!this.tunerAgcCheckBox.Checked) + { + this.vgaGainTrackBar_Scroll(null, null); + } + Utils.SaveSetting("RTLTunerAgc", this.tunerAgcCheckBox.Checked); + } + } + + private void frequencyCorrectionNumericUpDown_ValueChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this._owner.Device.FrequencyCorrection = (int)this.frequencyCorrectionNumericUpDown.Value; + Utils.SaveSetting("RTLFrequencyCorrection", this.frequencyCorrectionNumericUpDown.Value.ToString()); + } + } + + private void rtlAgcCheckBox_CheckedChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this._owner.Device.UseRtlAGC = this.rtlAgcCheckBox.Checked; + Utils.SaveSetting("RTLChipAgc", this.rtlAgcCheckBox.Checked); + } + } + + private void samplingModeComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this.tunerAgcCheckBox.Enabled = (this.samplingModeComboBox.SelectedIndex == 0); + this.vgaGainTrackBar.Enabled = (this.tunerAgcCheckBox.Enabled && !this.tunerAgcCheckBox.Checked); + this.offsetTuningCheckBox.Enabled = (this.samplingModeComboBox.SelectedIndex == 0); + if (this.samplingModeComboBox.SelectedIndex == 0) + { + this.offsetTuningCheckBox_CheckedChanged(null, null); + } + else + { + this._owner.Device.UseOffsetTuning = false; + } + this._owner.Device.SamplingMode = (SamplingMode)this.samplingModeComboBox.SelectedIndex; + Utils.SaveSetting("RTLSamplingMode", this.samplingModeComboBox.SelectedIndex); + } + } + + private void offsetTuningCheckBox_CheckedChanged(object sender, EventArgs e) + { + if (this._initialized) + { + this._owner.Device.UseOffsetTuning = this.offsetTuningCheckBox.Checked; + Utils.SaveSetting("RTLOffsetTuning", this.offsetTuningCheckBox.Checked); + } + } + + public void ConfigureGUI() + { + this.tunerTypeLabel.Text = this._owner.Device.TunerType.ToString(); + this.offsetTuningCheckBox.Enabled = this._owner.Device.SupportsOffsetTuning; + int num = 0; + while (true) + { + if (num < this.deviceComboBox.Items.Count) + { + DeviceDisplay deviceDisplay = (DeviceDisplay)this.deviceComboBox.Items[num]; + if (deviceDisplay.Index != this._owner.Device.Index) + { + num++; + continue; + } + break; + } + return; + } + this.deviceComboBox.SelectedIndex = num; + } + + public void ConfigureDevice() + { + this.samplerateComboBox_SelectedIndexChanged(null, null); + this.samplingModeComboBox_SelectedIndexChanged(null, null); + this.offsetTuningCheckBox_CheckedChanged(null, null); + this.frequencyCorrectionNumericUpDown_ValueChanged(null, null); + this.rtlAgcCheckBox_CheckedChanged(null, null); + this.tunerAgcCheckBox_CheckedChanged(null, null); + this.lnaGainTrackBar_Scroll(null, null); + this.mixerGainTrackBar_Scroll(null, null); + this.vgaGainTrackBar_Scroll(null, null); + } + + private void lnaGainTrackBar_Scroll(object sender, EventArgs e) + { + if (this._initialized) + { + int value = this.lnaGainTrackBar.Value; + this._owner.Device.LNAGain = value; + Utils.SaveSetting("LNAGain", this.lnaGainTrackBar.Value); + } + } + + private void mixerGainTrackBar_Scroll(object sender, EventArgs e) + { + if (this._initialized) + { + int value = this.mixerGainTrackBar.Value; + this._owner.Device.MixerGain = value; + Utils.SaveSetting("MixerGain", this.mixerGainTrackBar.Value); + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + this.refreshTimer = new Timer(this.components); + this.closeButton = new Button(); + this.deviceComboBox = new ComboBox(); + this.label1 = new Label(); + this.vgaGainTrackBar = new TrackBar(); + this.label2 = new Label(); + this.label3 = new Label(); + this.samplerateComboBox = new ComboBox(); + this.tunerAgcCheckBox = new CheckBox(); + this.frequencyCorrectionNumericUpDown = new NumericUpDown(); + this.label4 = new Label(); + this.tunerTypeLabel = new Label(); + this.rtlAgcCheckBox = new CheckBox(); + this.label5 = new Label(); + this.samplingModeComboBox = new ComboBox(); + this.offsetTuningCheckBox = new CheckBox(); + this.mixerGainTrackBar = new TrackBar(); + this.lnaGainTrackBar = new TrackBar(); + this.label6 = new Label(); + this.label7 = new Label(); + ((ISupportInitialize)this.vgaGainTrackBar).BeginInit(); + ((ISupportInitialize)this.frequencyCorrectionNumericUpDown).BeginInit(); + ((ISupportInitialize)this.mixerGainTrackBar).BeginInit(); + ((ISupportInitialize)this.lnaGainTrackBar).BeginInit(); + base.SuspendLayout(); + this.refreshTimer.Interval = 1000; + this.refreshTimer.Tick += this.refreshTimer_Tick; + this.closeButton.DialogResult = DialogResult.Cancel; + this.closeButton.Location = new Point(184, 405); + this.closeButton.Name = "closeButton"; + this.closeButton.Size = new Size(75, 23); + this.closeButton.TabIndex = 8; + this.closeButton.Text = "Close"; + this.closeButton.UseVisualStyleBackColor = true; + this.closeButton.Click += this.closeButton_Click; + this.deviceComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.deviceComboBox.FormattingEnabled = true; + this.deviceComboBox.Location = new Point(12, 26); + this.deviceComboBox.Name = "deviceComboBox"; + this.deviceComboBox.Size = new Size(247, 21); + this.deviceComboBox.TabIndex = 0; + this.deviceComboBox.SelectedIndexChanged += this.deviceComboBox_SelectedIndexChanged; + this.label1.AutoSize = true; + this.label1.Location = new Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new Size(41, 13); + this.label1.TabIndex = 20; + this.label1.Text = "Device"; + this.vgaGainTrackBar.Location = new Point(3, 322); + this.vgaGainTrackBar.Maximum = 15; + this.vgaGainTrackBar.Name = "vgaGainTrackBar"; + this.vgaGainTrackBar.Size = new Size(267, 45); + this.vgaGainTrackBar.TabIndex = 6; + this.vgaGainTrackBar.Scroll += this.vgaGainTrackBar_Scroll; + this.label2.AutoSize = true; + this.label2.Location = new Point(12, 304); + this.label2.Name = "label2"; + this.label2.Size = new Size(54, 13); + this.label2.TabIndex = 22; + this.label2.Text = "VGA Gain"; + this.label3.AutoSize = true; + this.label3.Location = new Point(12, 53); + this.label3.Name = "label3"; + this.label3.Size = new Size(68, 13); + this.label3.TabIndex = 24; + this.label3.Text = "Sample Rate"; + this.samplerateComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.samplerateComboBox.FormattingEnabled = true; + this.samplerateComboBox.Items.AddRange(new object[11] + { + "3.2 MSPS", + "2.8 MSPS", + "2.56 MSPS", + "2.4 MSPS", + "2.048 MSPS", + "1.92 MSPS", + "1.8 MSPS", + "1.4 MSPS", + "1.024 MSPS", + "0.900001 MSPS", + "0.25 MSPS" + }); + this.samplerateComboBox.Location = new Point(12, 70); + this.samplerateComboBox.Name = "samplerateComboBox"; + this.samplerateComboBox.Size = new Size(247, 21); + this.samplerateComboBox.TabIndex = 1; + this.samplerateComboBox.SelectedIndexChanged += this.samplerateComboBox_SelectedIndexChanged; + this.tunerAgcCheckBox.AutoSize = true; + this.tunerAgcCheckBox.Checked = true; + this.tunerAgcCheckBox.CheckState = CheckState.Checked; + this.tunerAgcCheckBox.Location = new Point(186, 147); + this.tunerAgcCheckBox.Name = "tunerAgcCheckBox"; + this.tunerAgcCheckBox.Size = new Size(79, 17); + this.tunerAgcCheckBox.TabIndex = 5; + this.tunerAgcCheckBox.Text = "Tuner AGC"; + this.tunerAgcCheckBox.UseVisualStyleBackColor = true; + this.tunerAgcCheckBox.CheckedChanged += this.tunerAgcCheckBox_CheckedChanged; + this.frequencyCorrectionNumericUpDown.Location = new Point(169, 374); + this.frequencyCorrectionNumericUpDown.Maximum = new decimal(new int[4] + { + 1000, + 0, + 0, + 0 + }); + this.frequencyCorrectionNumericUpDown.Minimum = new decimal(new int[4] + { + 1000, + 0, + 0, + -2147483648 + }); + this.frequencyCorrectionNumericUpDown.Name = "frequencyCorrectionNumericUpDown"; + this.frequencyCorrectionNumericUpDown.Size = new Size(90, 20); + this.frequencyCorrectionNumericUpDown.TabIndex = 7; + this.frequencyCorrectionNumericUpDown.TextAlign = HorizontalAlignment.Right; + this.frequencyCorrectionNumericUpDown.ValueChanged += this.frequencyCorrectionNumericUpDown_ValueChanged; + this.label4.AutoSize = true; + this.label4.Location = new Point(12, 376); + this.label4.Name = "label4"; + this.label4.Size = new Size(136, 13); + this.label4.TabIndex = 28; + this.label4.Text = "Frequency correction (ppm)"; + this.tunerTypeLabel.Location = new Point(166, 9); + this.tunerTypeLabel.Name = "tunerTypeLabel"; + this.tunerTypeLabel.Size = new Size(93, 13); + this.tunerTypeLabel.TabIndex = 29; + this.tunerTypeLabel.Text = "E4000"; + this.tunerTypeLabel.TextAlign = ContentAlignment.MiddleRight; + this.rtlAgcCheckBox.AutoSize = true; + this.rtlAgcCheckBox.Location = new Point(108, 147); + this.rtlAgcCheckBox.Name = "rtlAgcCheckBox"; + this.rtlAgcCheckBox.Size = new Size(72, 17); + this.rtlAgcCheckBox.TabIndex = 4; + this.rtlAgcCheckBox.Text = "RTL AGC"; + this.rtlAgcCheckBox.UseVisualStyleBackColor = true; + this.rtlAgcCheckBox.CheckedChanged += this.rtlAgcCheckBox_CheckedChanged; + this.label5.AutoSize = true; + this.label5.Location = new Point(12, 97); + this.label5.Name = "label5"; + this.label5.Size = new Size(80, 13); + this.label5.TabIndex = 31; + this.label5.Text = "Sampling Mode"; + this.samplingModeComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.samplingModeComboBox.FormattingEnabled = true; + this.samplingModeComboBox.Items.AddRange(new object[3] + { + "Quadrature sampling", + "Direct sampling (I branch)", + "Direct sampling (Q branch)" + }); + this.samplingModeComboBox.Location = new Point(12, 114); + this.samplingModeComboBox.Name = "samplingModeComboBox"; + this.samplingModeComboBox.Size = new Size(247, 21); + this.samplingModeComboBox.TabIndex = 2; + this.samplingModeComboBox.SelectedIndexChanged += this.samplingModeComboBox_SelectedIndexChanged; + this.offsetTuningCheckBox.AutoSize = true; + this.offsetTuningCheckBox.Location = new Point(12, 147); + this.offsetTuningCheckBox.Name = "offsetTuningCheckBox"; + this.offsetTuningCheckBox.Size = new Size(90, 17); + this.offsetTuningCheckBox.TabIndex = 3; + this.offsetTuningCheckBox.Text = "Offset Tuning"; + this.offsetTuningCheckBox.UseVisualStyleBackColor = true; + this.offsetTuningCheckBox.CheckedChanged += this.offsetTuningCheckBox_CheckedChanged; + this.mixerGainTrackBar.Location = new Point(2, 253); + this.mixerGainTrackBar.Maximum = 15; + this.mixerGainTrackBar.Name = "mixerGainTrackBar"; + this.mixerGainTrackBar.Size = new Size(267, 45); + this.mixerGainTrackBar.TabIndex = 32; + this.mixerGainTrackBar.Scroll += this.mixerGainTrackBar_Scroll; + this.lnaGainTrackBar.Location = new Point(2, 189); + this.lnaGainTrackBar.Maximum = 15; + this.lnaGainTrackBar.Name = "lnaGainTrackBar"; + this.lnaGainTrackBar.Size = new Size(267, 45); + this.lnaGainTrackBar.TabIndex = 33; + this.lnaGainTrackBar.Scroll += this.lnaGainTrackBar_Scroll; + this.label6.AutoSize = true; + this.label6.Location = new Point(12, 236); + this.label6.Name = "label6"; + this.label6.Size = new Size(57, 13); + this.label6.TabIndex = 34; + this.label6.Text = "Mixer Gain"; + this.label7.AutoSize = true; + this.label7.Location = new Point(12, 171); + this.label7.Name = "label7"; + this.label7.Size = new Size(53, 13); + this.label7.TabIndex = 35; + this.label7.Text = "LNA Gain"; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.CancelButton = this.closeButton; + base.ClientSize = new Size(271, 440); + base.Controls.Add(this.label7); + base.Controls.Add(this.label6); + base.Controls.Add(this.lnaGainTrackBar); + base.Controls.Add(this.mixerGainTrackBar); + base.Controls.Add(this.offsetTuningCheckBox); + base.Controls.Add(this.label5); + base.Controls.Add(this.samplingModeComboBox); + base.Controls.Add(this.rtlAgcCheckBox); + base.Controls.Add(this.tunerTypeLabel); + base.Controls.Add(this.label4); + base.Controls.Add(this.frequencyCorrectionNumericUpDown); + base.Controls.Add(this.tunerAgcCheckBox); + base.Controls.Add(this.label3); + base.Controls.Add(this.samplerateComboBox); + base.Controls.Add(this.label2); + base.Controls.Add(this.vgaGainTrackBar); + base.Controls.Add(this.label1); + base.Controls.Add(this.deviceComboBox); + base.Controls.Add(this.closeButton); + base.FormBorderStyle = FormBorderStyle.FixedDialog; + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "RtlSdrControllerDialog"; + base.ShowIcon = false; + base.ShowInTaskbar = false; + base.StartPosition = FormStartPosition.CenterParent; + this.Text = "RTL-SDR Controller"; + base.TopMost = true; + base.FormClosing += this.RtlSdrControllerDialog_FormClosing; + base.VisibleChanged += this.RtlSdrControllerDialog_VisibleChanged; + ((ISupportInitialize)this.vgaGainTrackBar).EndInit(); + ((ISupportInitialize)this.frequencyCorrectionNumericUpDown).EndInit(); + ((ISupportInitialize)this.mixerGainTrackBar).EndInit(); + ((ISupportInitialize)this.lnaGainTrackBar).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.resx b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrControllerDialog.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrIO.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrIO.cs new file mode 100644 index 0000000..fcfefe6 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrIO.cs @@ -0,0 +1,141 @@ +using SDRSharp.Radio; +using System; +using System.Windows.Forms; + +namespace SDRSharp.RTLSDR +{ + public class RtlSdrIO : IFrontendController, IDisposable + { + private readonly RtlSdrControllerDialog _gui; + + private RtlDevice _rtlDevice; + + private uint _frequency = 105500000u; + + private SDRSharp.Radio.SamplesAvailableDelegate _callback; + + public RtlDevice Device => this._rtlDevice; + + public bool IsSoundCardBased => false; + + public string SoundCardHint => string.Empty; + + public double Samplerate => (this._rtlDevice == null) ? 0.0 : ((double)this._rtlDevice.Samplerate); + + public long Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = (uint)value; + if (this._rtlDevice != null) + { + this._rtlDevice.Frequency = this._frequency; + } + } + } + + public RtlSdrIO() + { + this._gui = new RtlSdrControllerDialog(this); + } + + ~RtlSdrIO() + { + this.Dispose(); + } + + public void Dispose() + { + if (this._gui != null) + { + this._gui.Dispose(); + } + GC.SuppressFinalize(this); + } + + public void SelectDevice(uint index) + { + this.Close(); + this._rtlDevice = new RtlDevice(index); + this._rtlDevice.SamplesAvailable += this.rtlDevice_SamplesAvailable; + this._rtlDevice.Frequency = this._frequency; + this._gui.ConfigureGUI(); + this._gui.ConfigureDevice(); + } + + public void Open() + { + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + DeviceDisplay[] array = activeDevices; + foreach (DeviceDisplay deviceDisplay in array) + { + try + { + this.SelectDevice(deviceDisplay.Index); + return; + } + catch (ApplicationException) + { + } + } + if (activeDevices.Length > 0) + { + throw new ApplicationException(activeDevices.Length + " compatible devices have been found but are all busy"); + } + throw new ApplicationException("No compatible devices found"); + } + + public void Close() + { + if (this._rtlDevice != null) + { + this._rtlDevice.Stop(); + this._rtlDevice.SamplesAvailable -= this.rtlDevice_SamplesAvailable; + this._rtlDevice.Dispose(); + this._rtlDevice = null; + } + } + + public unsafe void Start(SDRSharp.Radio.SamplesAvailableDelegate callback) + { + if (this._rtlDevice == null) + { + throw new ApplicationException("No device selected"); + } + this._callback = callback; + try + { + this._rtlDevice.Start(); + } + catch + { + this.Open(); + this._rtlDevice.Start(); + } + } + + public void Stop() + { + this._rtlDevice.Stop(); + } + + public void ShowSettingGUI(IWin32Window parent) + { + this._gui.Show(); + } + + public void HideSettingGUI() + { + this._gui.Hide(); + } + + private unsafe void rtlDevice_SamplesAvailable(object sender, SamplesAvailableEventArgs e) + { + this._callback(this, e.Buffer, e.Length); + } + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrReadAsyncDelegate.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrReadAsyncDelegate.cs new file mode 100644 index 0000000..84a82e4 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrReadAsyncDelegate.cs @@ -0,0 +1,8 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.RTLSDR +{ + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public unsafe delegate void RtlSdrReadAsyncDelegate(byte* buf, uint len, IntPtr ctx); +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrTunerType.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrTunerType.cs new file mode 100644 index 0000000..c1b2a1f --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/RtlSdrTunerType.cs @@ -0,0 +1,13 @@ +namespace SDRSharp.RTLSDR +{ + public enum RtlSdrTunerType + { + Unknown, + E4000, + FC0012, + FC0013, + FC2580, + R820T, + R828D + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplesAvailableDelegate.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplesAvailableDelegate.cs new file mode 100644 index 0000000..3717173 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplesAvailableDelegate.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.RTLSDR +{ + public delegate void SamplesAvailableDelegate(object sender, SamplesAvailableEventArgs e); +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplesAvailableEventArgs.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplesAvailableEventArgs.cs new file mode 100644 index 0000000..b0ba0cf --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplesAvailableEventArgs.cs @@ -0,0 +1,20 @@ +using SDRSharp.Radio; +using System; + +namespace SDRSharp.RTLSDR +{ + public sealed class SamplesAvailableEventArgs : EventArgs + { + public int Length + { + get; + set; + } + + public unsafe Complex* Buffer + { + get; + set; + } + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplingMode.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplingMode.cs new file mode 100644 index 0000000..e38190d --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDR/SamplingMode.cs @@ -0,0 +1,9 @@ +namespace SDRSharp.RTLSDR +{ + public enum SamplingMode + { + Quadrature, + DirectSamplingI, + DirectSamplingQ + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDRGains.Properties/Resources.cs b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDRGains.Properties/Resources.cs new file mode 100644 index 0000000..9869f82 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDRGains.Properties/Resources.cs @@ -0,0 +1,49 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Globalization; +using System.Resources; +using System.Runtime.CompilerServices; + +namespace SDRSharp.RTLSDRGains.Properties +{ + [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [DebuggerNonUserCode] + [CompilerGenerated] + internal class Resources + { + private static ResourceManager resourceMan; + + private static CultureInfo resourceCulture; + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static ResourceManager ResourceManager + { + get + { + if (object.ReferenceEquals(Resources.resourceMan, null)) + { + ResourceManager resourceManager = Resources.resourceMan = new ResourceManager("SDRSharp.RTLSDRGains.Properties.Resources", typeof(Resources).Assembly); + } + return Resources.resourceMan; + } + } + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static CultureInfo Culture + { + get + { + return Resources.resourceCulture; + } + set + { + Resources.resourceCulture = value; + } + } + + internal Resources() + { + } + } +} diff --git a/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDRGains.csproj b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDRGains.csproj new file mode 100644 index 0000000..3420431 --- /dev/null +++ b/Plugins/SDRSharper.RTLSDRGains/SDRSharp.RTLSDRGains.csproj @@ -0,0 +1,59 @@ + + + + {E3BC2855-17F1-45F0-B8E8-C2DA9184FD72} + Debug + x86 + Library + SDRSharp.RTLSDRGains + v2.0 + 4 + True + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + + + + + Form + + + + + + + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.RTLTCP/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.RTLTCP/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..62c8b60 --- /dev/null +++ b/Plugins/SDRSharper.RTLTCP/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Security.Permissions; + +[assembly: AssemblyCopyright("Copyright © acausal 2012")] +[assembly: AssemblyTitle("SDRSharp.RTLTCP")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SDRSharp.RTLTCP")] +[assembly: Guid("dcea766b-9806-49dc-97dd-f9ed391d3ba5")] +[assembly: AssemblyTrademark("")] +[assembly: ComVisible(false)] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: CompilationRelaxations(8)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP.csproj b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP.csproj new file mode 100644 index 0000000..61dab89 --- /dev/null +++ b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP.csproj @@ -0,0 +1,67 @@ + + + + {4E7362D9-9BBE-468E-AF6D-A3BFCE8808A0} + Debug + AnyCPU + Library + SDRSharp.RTLTCP + v2.0 + 4 + True + + + AnyCPU + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + true + bin\x86\Debug\ + true + full + x86 + MinimumRecommendedRules.ruleset + + + true + bin\x86\Release\ + true + true + pdbonly + x86 + MinimumRecommendedRules.ruleset + + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + + Form + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.Designer.cs b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.Designer.cs new file mode 100644 index 0000000..9dd1590 --- /dev/null +++ b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.Designer.cs @@ -0,0 +1,178 @@ +namespace SDRSharp.RTLTCP +{ + // Token: 0x02000002 RID: 2 + public partial class RTLTcpSettings : global::System.Windows.Forms.Form + { + // Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250 + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + // Token: 0x06000002 RID: 2 RVA: 0x00002070 File Offset: 0x00000270 + private void InitializeComponent() + { + this.hostBox = new global::System.Windows.Forms.TextBox(); + this.portBox = new global::System.Windows.Forms.TextBox(); + this.srBox = new global::System.Windows.Forms.TextBox(); + this.button1 = new global::System.Windows.Forms.Button(); + this.label1 = new global::System.Windows.Forms.Label(); + this.label2 = new global::System.Windows.Forms.Label(); + this.label3 = new global::System.Windows.Forms.Label(); + this.autoRB = new global::System.Windows.Forms.RadioButton(); + this.manualRB = new global::System.Windows.Forms.RadioButton(); + this.label4 = new global::System.Windows.Forms.Label(); + this.gainBox = new global::System.Windows.Forms.TextBox(); + this.label5 = new global::System.Windows.Forms.Label(); + this.fcBox = new global::System.Windows.Forms.TextBox(); + base.SuspendLayout(); + this.hostBox.Location = new global::System.Drawing.Point(139, 11); + this.hostBox.Name = "hostBox"; + this.hostBox.Size = new global::System.Drawing.Size(133, 20); + this.hostBox.TabIndex = 0; + this.portBox.Location = new global::System.Drawing.Point(139, 37); + this.portBox.Name = "portBox"; + this.portBox.Size = new global::System.Drawing.Size(133, 20); + this.portBox.TabIndex = 1; + this.srBox.Location = new global::System.Drawing.Point(139, 88); + this.srBox.Name = "srBox"; + this.srBox.Size = new global::System.Drawing.Size(133, 20); + this.srBox.TabIndex = 2; + this.button1.Location = new global::System.Drawing.Point(133, 213); + this.button1.Name = "button1"; + this.button1.Size = new global::System.Drawing.Size(139, 23); + this.button1.TabIndex = 3; + this.button1.Text = "Update Settings"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new global::System.EventHandler(this.button1_Click); + this.label1.AutoSize = true; + this.label1.Location = new global::System.Drawing.Point(27, 11); + this.label1.Name = "label1"; + this.label1.Size = new global::System.Drawing.Size(55, 13); + this.label1.TabIndex = 4; + this.label1.Text = "Hostname"; + this.label2.AutoSize = true; + this.label2.Location = new global::System.Drawing.Point(27, 37); + this.label2.Name = "label2"; + this.label2.Size = new global::System.Drawing.Size(26, 13); + this.label2.TabIndex = 5; + this.label2.Text = "Port"; + this.label3.AutoSize = true; + this.label3.Location = new global::System.Drawing.Point(27, 88); + this.label3.Name = "label3"; + this.label3.Size = new global::System.Drawing.Size(68, 13); + this.label3.TabIndex = 6; + this.label3.Text = "Sample Rate"; + this.autoRB.AutoSize = true; + this.autoRB.Location = new global::System.Drawing.Point(30, 123); + this.autoRB.Name = "autoRB"; + this.autoRB.Size = new global::System.Drawing.Size(72, 17); + this.autoRB.TabIndex = 7; + this.autoRB.TabStop = true; + this.autoRB.Text = "Auto Gain"; + this.autoRB.UseVisualStyleBackColor = true; + this.autoRB.CheckedChanged += new global::System.EventHandler(this.autoRB_CheckedChanged); + this.manualRB.AutoSize = true; + this.manualRB.Location = new global::System.Drawing.Point(139, 123); + this.manualRB.Name = "manualRB"; + this.manualRB.Size = new global::System.Drawing.Size(85, 17); + this.manualRB.TabIndex = 8; + this.manualRB.TabStop = true; + this.manualRB.Text = "Manual Gain"; + this.manualRB.UseVisualStyleBackColor = true; + this.manualRB.CheckedChanged += new global::System.EventHandler(this.manualRB_CheckedChanged); + this.label4.AutoSize = true; + this.label4.Location = new global::System.Drawing.Point(27, 151); + this.label4.Name = "label4"; + this.label4.Size = new global::System.Drawing.Size(101, 13); + this.label4.TabIndex = 9; + this.label4.Text = "Gain setting (dB*10)"; + this.gainBox.Location = new global::System.Drawing.Point(139, 148); + this.gainBox.Name = "gainBox"; + this.gainBox.Size = new global::System.Drawing.Size(133, 20); + this.gainBox.TabIndex = 10; + this.label5.AutoSize = true; + this.label5.Location = new global::System.Drawing.Point(27, 181); + this.label5.Name = "label5"; + this.label5.Size = new global::System.Drawing.Size(108, 13); + this.label5.TabIndex = 11; + this.label5.Text = "Freq Correction (ppm)"; + this.fcBox.Location = new global::System.Drawing.Point(139, 181); + this.fcBox.Name = "fcBox"; + this.fcBox.Size = new global::System.Drawing.Size(133, 20); + this.fcBox.TabIndex = 12; + base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f); + base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font; + base.ClientSize = new global::System.Drawing.Size(284, 248); + base.Controls.Add(this.fcBox); + base.Controls.Add(this.label5); + base.Controls.Add(this.gainBox); + base.Controls.Add(this.label4); + base.Controls.Add(this.manualRB); + base.Controls.Add(this.autoRB); + base.Controls.Add(this.label3); + base.Controls.Add(this.label2); + base.Controls.Add(this.label1); + base.Controls.Add(this.button1); + base.Controls.Add(this.srBox); + base.Controls.Add(this.portBox); + base.Controls.Add(this.hostBox); + base.FormBorderStyle = global::System.Windows.Forms.FormBorderStyle.FixedDialog; + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "RTLTcpSettings"; + base.ShowInTaskbar = false; + this.Text = "RTLTcpSettings"; + base.TopMost = true; + base.Load += new global::System.EventHandler(this.RTLTcpSettings_Load); + base.ResumeLayout(false); + base.PerformLayout(); + } + + // Token: 0x04000001 RID: 1 + private global::System.ComponentModel.IContainer components; + + // Token: 0x04000002 RID: 2 + private global::System.Windows.Forms.TextBox hostBox; + + // Token: 0x04000003 RID: 3 + private global::System.Windows.Forms.TextBox portBox; + + // Token: 0x04000004 RID: 4 + private global::System.Windows.Forms.TextBox srBox; + + // Token: 0x04000005 RID: 5 + private global::System.Windows.Forms.Button button1; + + // Token: 0x04000006 RID: 6 + private global::System.Windows.Forms.Label label1; + + // Token: 0x04000007 RID: 7 + private global::System.Windows.Forms.Label label2; + + // Token: 0x04000008 RID: 8 + private global::System.Windows.Forms.Label label3; + + // Token: 0x04000009 RID: 9 + private global::System.Windows.Forms.RadioButton autoRB; + + // Token: 0x0400000A RID: 10 + private global::System.Windows.Forms.RadioButton manualRB; + + // Token: 0x0400000B RID: 11 + private global::System.Windows.Forms.Label label4; + + // Token: 0x0400000C RID: 12 + private global::System.Windows.Forms.TextBox gainBox; + + // Token: 0x0400000D RID: 13 + private global::System.Windows.Forms.Label label5; + + // Token: 0x0400000E RID: 14 + private global::System.Windows.Forms.TextBox fcBox; + } +} diff --git a/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.cs b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.cs new file mode 100644 index 0000000..2f80a8f --- /dev/null +++ b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.cs @@ -0,0 +1,227 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.RTLTCP +{ + public class RTLTcpSettings : Form + { + private IContainer components; + + private TextBox hostBox; + + private TextBox portBox; + + private TextBox srBox; + + private Button button1; + + private Label label1; + + private Label label2; + + private Label label3; + + private RadioButton autoRB; + + private RadioButton manualRB; + + private Label label4; + + private TextBox gainBox; + + private Label label5; + + private TextBox fcBox; + + private RtlTcpIO _owner; + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.hostBox = new TextBox(); + this.portBox = new TextBox(); + this.srBox = new TextBox(); + this.button1 = new Button(); + this.label1 = new Label(); + this.label2 = new Label(); + this.label3 = new Label(); + this.autoRB = new RadioButton(); + this.manualRB = new RadioButton(); + this.label4 = new Label(); + this.gainBox = new TextBox(); + this.label5 = new Label(); + this.fcBox = new TextBox(); + base.SuspendLayout(); + this.hostBox.Location = new Point(139, 11); + this.hostBox.Name = "hostBox"; + this.hostBox.Size = new Size(133, 20); + this.hostBox.TabIndex = 0; + this.portBox.Location = new Point(139, 37); + this.portBox.Name = "portBox"; + this.portBox.Size = new Size(133, 20); + this.portBox.TabIndex = 1; + this.srBox.Location = new Point(139, 88); + this.srBox.Name = "srBox"; + this.srBox.Size = new Size(133, 20); + this.srBox.TabIndex = 2; + this.button1.Location = new Point(133, 213); + this.button1.Name = "button1"; + this.button1.Size = new Size(139, 23); + this.button1.TabIndex = 3; + this.button1.Text = "Update Settings"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += this.button1_Click; + this.label1.AutoSize = true; + this.label1.Location = new Point(27, 11); + this.label1.Name = "label1"; + this.label1.Size = new Size(55, 13); + this.label1.TabIndex = 4; + this.label1.Text = "Hostname"; + this.label2.AutoSize = true; + this.label2.Location = new Point(27, 37); + this.label2.Name = "label2"; + this.label2.Size = new Size(26, 13); + this.label2.TabIndex = 5; + this.label2.Text = "Port"; + this.label3.AutoSize = true; + this.label3.Location = new Point(27, 88); + this.label3.Name = "label3"; + this.label3.Size = new Size(68, 13); + this.label3.TabIndex = 6; + this.label3.Text = "Sample Rate"; + this.autoRB.AutoSize = true; + this.autoRB.Location = new Point(30, 123); + this.autoRB.Name = "autoRB"; + this.autoRB.Size = new Size(72, 17); + this.autoRB.TabIndex = 7; + this.autoRB.TabStop = true; + this.autoRB.Text = "Auto Gain"; + this.autoRB.UseVisualStyleBackColor = true; + this.autoRB.CheckedChanged += this.autoRB_CheckedChanged; + this.manualRB.AutoSize = true; + this.manualRB.Location = new Point(139, 123); + this.manualRB.Name = "manualRB"; + this.manualRB.Size = new Size(85, 17); + this.manualRB.TabIndex = 8; + this.manualRB.TabStop = true; + this.manualRB.Text = "Manual Gain"; + this.manualRB.UseVisualStyleBackColor = true; + this.manualRB.CheckedChanged += this.manualRB_CheckedChanged; + this.label4.AutoSize = true; + this.label4.Location = new Point(27, 151); + this.label4.Name = "label4"; + this.label4.Size = new Size(101, 13); + this.label4.TabIndex = 9; + this.label4.Text = "Gain setting (dB*10)"; + this.gainBox.Location = new Point(139, 148); + this.gainBox.Name = "gainBox"; + this.gainBox.Size = new Size(133, 20); + this.gainBox.TabIndex = 10; + this.label5.AutoSize = true; + this.label5.Location = new Point(27, 181); + this.label5.Name = "label5"; + this.label5.Size = new Size(108, 13); + this.label5.TabIndex = 11; + this.label5.Text = "Freq Correction (ppm)"; + this.fcBox.Location = new Point(139, 181); + this.fcBox.Name = "fcBox"; + this.fcBox.Size = new Size(133, 20); + this.fcBox.TabIndex = 12; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.ClientSize = new Size(284, 248); + base.Controls.Add(this.fcBox); + base.Controls.Add(this.label5); + base.Controls.Add(this.gainBox); + base.Controls.Add(this.label4); + base.Controls.Add(this.manualRB); + base.Controls.Add(this.autoRB); + base.Controls.Add(this.label3); + base.Controls.Add(this.label2); + base.Controls.Add(this.label1); + base.Controls.Add(this.button1); + base.Controls.Add(this.srBox); + base.Controls.Add(this.portBox); + base.Controls.Add(this.hostBox); + base.FormBorderStyle = FormBorderStyle.FixedDialog; + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "RTLTcpSettings"; + base.ShowInTaskbar = false; + this.Text = "RTLTcpSettings"; + base.TopMost = true; + base.Load += this.RTLTcpSettings_Load; + base.ResumeLayout(false); + base.PerformLayout(); + } + + public RTLTcpSettings(RtlTcpIO owner) + { + this._owner = owner; + this.InitializeComponent(); + } + + private void button1_Click(object sender, EventArgs e) + { + this._owner.hostName = this.hostBox.Text; + this._owner.port = Convert.ToUInt16(this.portBox.Text); + this._owner.Samplerate = Convert.ToDouble(this.srBox.Text); + if (this.autoRB.Checked) + { + this._owner.GainMode = 0u; + } + else + { + this._owner.GainMode = 1u; + this._owner.Gain = Convert.ToInt32(this.gainBox.Text); + } + this._owner.FreqCorrection = Convert.ToInt32(this.fcBox.Text); + } + + private void RTLTcpSettings_Load(object sender, EventArgs e) + { + this.hostBox.Text = this._owner.hostName; + this.portBox.Text = this._owner.port.ToString(); + this.srBox.Text = this._owner.Samplerate.ToString(); + this.gainBox.Text = this._owner.Gain.ToString(); + if (this._owner.GainMode == 0) + { + this.autoRB.Checked = true; + this.manualRB.Checked = false; + this.gainBox.Enabled = false; + } + else + { + this.autoRB.Checked = false; + this.manualRB.Checked = true; + this.gainBox.Enabled = true; + } + this.fcBox.Text = this._owner.FreqCorrection.ToString(); + } + + private void updateRB() + { + this.gainBox.Enabled = this.manualRB.Checked; + } + + private void manualRB_CheckedChanged(object sender, EventArgs e) + { + this.updateRB(); + } + + private void autoRB_CheckedChanged(object sender, EventArgs e) + { + this.updateRB(); + } + } +} diff --git a/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.resx b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RTLTcpSettings.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RtlTcpIO.cs b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RtlTcpIO.cs new file mode 100644 index 0000000..0b82108 --- /dev/null +++ b/Plugins/SDRSharper.RTLTCP/SDRSharp.RTLTCP/RtlTcpIO.cs @@ -0,0 +1,357 @@ +using SDRSharp.Radio; +using System; +using System.Net.Sockets; +using System.Threading; +using System.Timers; +using System.Windows.Forms; + +namespace SDRSharp.RTLTCP +{ + public class RtlTcpIO : IFrontendController, IDisposable + { + private const double DEFAULT_SAMPLE_RATE = 2048000.0; + + private const long DEFAULT_FREQUENCY = 100000000L; + + private const string DEFAULT_HOSTNAME = "192.168.0.11"; + + private const int DEFAULT_PORT = 1234; + + private const byte CMD_SET_FREQ = 1; + + private const byte CMD_SET_SAMPLE_RATE = 2; + + private const byte CMD_SET_GAIN_MODE = 3; + + private const byte CMD_SET_GAIN = 4; + + private const byte CMD_SET_FREQ_COR = 5; + + public const uint GAIN_MODE_AUTO = 0u; + + public const uint GAIN_MODE_MANUAL = 1u; + + private const int BUFFER_SIZE = 16384; + + private const int MAX_TUNE_RATE = 20; + + private RTLTcpSettings _gui; + + private volatile SamplesAvailableDelegate _callback; + + private Thread _sampleThread; + + private long _freq; + + private double _sr; + + private Socket _s; + + private string _host; + + private int _port; + + private uint _gainMode; + + private int _gainVal; + + private int _fCor; + + private UnsafeBuffer _b; + + private bool _tunePlease; + + private System.Timers.Timer _retuneTimer = new System.Timers.Timer(50.0); + + public string hostName + { + get + { + return this._host; + } + set + { + this._host = value; + } + } + + public int port + { + get + { + return this._port; + } + set + { + this._port = value; + } + } + + public bool IsSoundCardBased => false; + + public string SoundCardHint => string.Empty; + + public double Samplerate + { + get + { + return this._sr; + } + set + { + this._sr = value; + this.sendCommand(2, (uint)this._sr); + } + } + + public long Frequency + { + get + { + return this._freq; + } + set + { + this._freq = value; + lock (this._retuneTimer) + { + this._tunePlease = true; + } + } + } + + public int Gain + { + get + { + return this._gainVal; + } + set + { + this._gainVal = value; + this.sendCommand(4, this._gainVal); + } + } + + public uint GainMode + { + get + { + return this._gainMode; + } + set + { + this._gainMode = value; + this.sendCommand(3, this._gainMode); + } + } + + public int FreqCorrection + { + get + { + return this._fCor; + } + set + { + this._fCor = value; + this.sendCommand(5, this._fCor); + } + } + + private bool sendCommand(byte cmd, byte[] val) + { + if (this._s == null) + { + return false; + } + if (val.Length < 4) + { + return false; + } + byte[] buffer = new byte[5] + { + cmd, + val[3], + val[2], + val[1], + val[0] + }; + try + { + this._s.Send(buffer); + return true; + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + return false; + } + } + + private bool sendCommand(byte cmd, uint val) + { + byte[] bytes = BitConverter.GetBytes(val); + return this.sendCommand(cmd, bytes); + } + + private bool sendCommand(byte cmd, int val) + { + byte[] bytes = BitConverter.GetBytes(val); + return this.sendCommand(cmd, bytes); + } + + public RtlTcpIO() + { + this._freq = 100000000L; + this._sr = 2048000.0; + this._gainVal = 0; + this._gainMode = 0u; + this._host = "192.168.0.11"; + this._port = 1234; + this._retuneTimer.Elapsed += this.retuneNow; + this._retuneTimer.Start(); + } + + ~RtlTcpIO() + { + this.Dispose(); + } + + public void Dispose() + { + if (this._gui != null) + { + this._gui.Dispose(); + this._gui = null; + } + GC.SuppressFinalize(this); + } + + public void Open() + { + } + + public void Close() + { + if (this._s != null) + { + this._s.Close(); + this._s = null; + } + } + + public unsafe void Start(SamplesAvailableDelegate callback) + { + lock (this) + { + this._callback = callback; + } + this._s = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); + this._s.Connect(this._host, this._port); + this._sampleThread = new Thread((ThreadStart)delegate + { + this.receiveSamples(); + }); + this._sampleThread.Start(); + this.sendCommand(3, this._gainMode); + this.sendCommand(2, (uint)this._sr); + this.sendCommand(1, (uint)this._freq); + this.sendCommand(5, this._fCor); + } + + public unsafe void Stop() + { + lock (this) + { + this._callback = null; + } + this.Close(); + if (this._sampleThread != null) + { + this._sampleThread.Join(); + } + } + + public void ShowSettingGUI(IWin32Window parent) + { + if (this._gui == null || this._gui.IsDisposed) + { + this._gui = new RTLTcpSettings(this); + } + this._gui.Show(); + } + + public void HideSettingGUI() + { + if (this._gui != null && !this._gui.IsDisposed) + { + this._gui.Hide(); + } + } + + private unsafe void receiveSamples() + { + byte[] buffer = new byte[17408]; + int num = 0; + ulong num2 = 0uL; + DateTime now = DateTime.Now; + while (this._callback != null && this._s != null && this._s.Connected) + { + try + { + int num3 = this._s.Receive(buffer, num, 16384, SocketFlags.None); + num2 = (ulong)((long)num2 + (long)num3); + int num4 = num + num3; + num = num4 % 2; + this.beamUpThemSamples(buffer, num4 - num); + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + this.Close(); + break; + } + } + DateTime now2 = DateTime.Now; + TimeSpan timeSpan = now2 - now; + double num5 = (double)num2 / timeSpan.TotalSeconds; + double num6 = num5 / 2.0; + Console.WriteLine($"Received {num2} bytes over {timeSpan.TotalSeconds} seconds, which is {num5} bps or {num6} sps"); + } + + private unsafe void beamUpThemSamples(byte[] buffer, int len) + { + int num = len / 2; + if (this._b == null || this._b.Length < num) + { + this._b = UnsafeBuffer.Create(num, sizeof(Complex)); + } + Complex* ptr = (Complex*)(void*)this._b; + for (int i = 0; i < num; i++) + { + ptr[i].Real = (float)(buffer[i * 2 + 1] - 128) * 0.0078125f; + ptr[i].Imag = (float)(buffer[i * 2] - 128) * 0.0078125f; + } + lock (this) + { + if (this._callback != null) + { + this._callback(this, ptr, num); + } + } + } + + private void retuneNow(object source, ElapsedEventArgs e) + { + lock (this._retuneTimer) + { + if (this._tunePlease) + { + this.sendCommand(1, (uint)this._freq); + this._tunePlease = false; + } + } + } + } +} diff --git a/Plugins/SDRSharper.SDRIQ/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.SDRIQ/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b717579 --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/Properties/AssemblyInfo.cs @@ -0,0 +1,14 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions; + +[assembly: CompilationRelaxations(8)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)] +[assembly: AssemblyTitle("SDR-IQ Controller")] +[assembly: AssemblyDescription("SDR-IQ Dongle Controller")] +[assembly: AssemblyProduct("SDR#")] +[assembly: AssemblyCopyright("Copyright © Youssef TOUIL 2012")] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.0.0.0")] diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ.csproj b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ.csproj new file mode 100644 index 0000000..90975bb --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ.csproj @@ -0,0 +1,56 @@ + + + + {82F07F6A-D466-4B71-877C-A0B158F3B5CA} + Debug + x86 + Library + SDRSharp.SDRIQ + v2.0 + 4 + True + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + + + + + Form + + + + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/DeviceDisplay.cs b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/DeviceDisplay.cs new file mode 100644 index 0000000..21cb10c --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/DeviceDisplay.cs @@ -0,0 +1,38 @@ +namespace SDRSharp.SDRIQ +{ + public class DeviceDisplay + { + public uint Index + { + get; + private set; + } + + public string Name + { + get; + set; + } + + public static DeviceDisplay[] GetActiveDevices() + { + uint num = NativeMethods.sdriq_get_device_count(); + DeviceDisplay[] array = new DeviceDisplay[num]; + for (uint num2 = 0u; num2 < num; num2++) + { + string name = "SDR-IQ #" + num2 + " S/N: " + NativeMethods.sdriq_get_serial_number(num2); + array[num2] = new DeviceDisplay + { + Index = num2, + Name = name + }; + } + return array; + } + + public override string ToString() + { + return this.Name; + } + } +} diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/NativeMethods.cs b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/NativeMethods.cs new file mode 100644 index 0000000..42f4ad5 --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/NativeMethods.cs @@ -0,0 +1,52 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.SDRIQ +{ + public class NativeMethods + { + private const string LibSDRIQ = "sdriq"; + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern void sdriq_initialise(); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern void sdriq_destroy(); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern uint sdriq_get_device_count(); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern int sdriq_open(uint devIndex, uint buffersCount, out IntPtr dev); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern int sdriq_close(IntPtr dev); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern int sdriq_async_read(IntPtr dev, IntPtr context, SdrIqReadAsyncDelegate callback, int readBlocks); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern int sdriq_async_cancel(IntPtr dev); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern int sdriq_set_center_frequency(IntPtr dev, uint frequency); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern int sdriq_set_out_samplerate(IntPtr dev, uint rate); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern int sdriq_set_if_gain(IntPtr dev, sbyte value); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl)] + public static extern int sdriq_set_rf_gain(IntPtr dev, sbyte value); + + [DllImport("sdriq", CallingConvention = CallingConvention.Cdecl, EntryPoint = "sdriq_get_serial_number")] + private static extern IntPtr sdriq_get_serial_number_native(uint devNo); + + public static string sdriq_get_serial_number(uint index) + { + IntPtr ptr = NativeMethods.sdriq_get_serial_number_native(index); + return Marshal.PtrToStringAnsi(ptr); + } + } +} diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SDRIQControllerDialog.cs b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SDRIQControllerDialog.cs new file mode 100644 index 0000000..b21f0b5 --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SDRIQControllerDialog.cs @@ -0,0 +1,306 @@ +using SDRSharp.Radio; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Globalization; +using System.Windows.Forms; + +namespace SDRSharp.SDRIQ +{ + public class SDRIQControllerDialog : Form + { + private readonly SdrIqIO _owner; + + private readonly bool _initialized; + + private IContainer components = null; + + private ComboBox deviceComboBox; + + private Label label1; + + private Label label3; + + private ComboBox samplerateComboBox; + + private TrackBar rfGainTrackBar; + + private Label label2; + + private TrackBar ifGainTrackBar; + + private Label label4; + + private Label ifGainLabel; + + private Label rfGainLabel; + + private Timer refreshTimer; + + public SDRIQControllerDialog(SdrIqIO owner) + { + this.InitializeComponent(); + this._owner = owner; + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + this.deviceComboBox.Items.Clear(); + this.deviceComboBox.Items.AddRange(activeDevices); + this.samplerateComboBox.SelectedIndex = Utils.GetIntSetting("SDRIQSampleRate", 5); + this.ifGainTrackBar.Value = Utils.GetIntSetting("SDRIQIFGain", 5); + this.rfGainTrackBar.Value = Utils.GetIntSetting("SDRIQRFGain", 2); + this._initialized = true; + } + + private void SDRIQControllerDialog_FormClosing(object sender, FormClosingEventArgs e) + { + e.Cancel = true; + base.Hide(); + } + + public void ConfigureGUI() + { + int num = 0; + while (true) + { + if (num < this.deviceComboBox.Items.Count) + { + DeviceDisplay deviceDisplay = (DeviceDisplay)this.deviceComboBox.Items[num]; + if (deviceDisplay.Index != this._owner.Device.Index) + { + num++; + continue; + } + break; + } + return; + } + this.deviceComboBox.SelectedIndex = num; + } + + public void ConfigureDevice() + { + this.samplerateComboBox_SelectedIndexChanged(null, null); + this.ifGainTrackBar_Scroll(null, null); + this.rfGainTrackBar_Scroll(null, null); + } + + private void samplerateComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._initialized) + { + string s = this.samplerateComboBox.Items[this.samplerateComboBox.SelectedIndex].ToString().Split(' ')[0]; + uint samplerate = uint.Parse(s, CultureInfo.InvariantCulture); + this._owner.Device.Samplerate = samplerate; + Utils.SaveSetting("SDRIQSampleRate", this.samplerateComboBox.SelectedIndex); + } + } + + private void rfGainTrackBar_Scroll(object sender, EventArgs e) + { + if (this._initialized) + { + int num = (this.rfGainTrackBar.Maximum - this.rfGainTrackBar.Value) * -10; + this._owner.Device.RfGain = (sbyte)num; + this.rfGainLabel.Text = num + " dB"; + Utils.SaveSetting("SDRIQRFGain", this.rfGainTrackBar.Value); + } + } + + private void ifGainTrackBar_Scroll(object sender, EventArgs e) + { + if (this._initialized) + { + int num = (sbyte)this.ifGainTrackBar.Value * 6; + this._owner.Device.IfGain = (sbyte)num; + this.ifGainLabel.Text = num + " dB"; + Utils.SaveSetting("SDRIQIFGain", this.ifGainTrackBar.Value); + } + } + + private void deviceComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._initialized) + { + DeviceDisplay deviceDisplay = (DeviceDisplay)this.deviceComboBox.SelectedItem; + if (deviceDisplay != null) + { + try + { + this._owner.SelectDevice(deviceDisplay.Index); + } + catch (Exception ex) + { + this.deviceComboBox.SelectedIndex = -1; + MessageBox.Show(this, ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand); + } + } + } + } + + private void SDRIQControllerDialog_VisibleChanged(object sender, EventArgs e) + { + this.refreshTimer.Enabled = base.Visible; + if (base.Visible) + { + this.samplerateComboBox.Enabled = !this._owner.Device.IsStreaming; + this.deviceComboBox.Enabled = !this._owner.Device.IsStreaming; + if (!this._owner.Device.IsStreaming) + { + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + this.deviceComboBox.Items.Clear(); + this.deviceComboBox.Items.AddRange(activeDevices); + int num = 0; + while (true) + { + if (num < activeDevices.Length) + { + if (activeDevices[num].Index != ((DeviceDisplay)this.deviceComboBox.Items[num]).Index) + { + num++; + continue; + } + break; + } + return; + } + this.deviceComboBox.SelectedIndex = num; + } + } + } + + private void refreshTimer_Tick(object sender, EventArgs e) + { + this.samplerateComboBox.Enabled = !this._owner.Device.IsStreaming; + this.deviceComboBox.Enabled = !this._owner.Device.IsStreaming; + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + this.deviceComboBox = new ComboBox(); + this.label1 = new Label(); + this.label3 = new Label(); + this.samplerateComboBox = new ComboBox(); + this.rfGainTrackBar = new TrackBar(); + this.label2 = new Label(); + this.ifGainTrackBar = new TrackBar(); + this.label4 = new Label(); + this.ifGainLabel = new Label(); + this.rfGainLabel = new Label(); + this.refreshTimer = new Timer(this.components); + ((ISupportInitialize)this.rfGainTrackBar).BeginInit(); + ((ISupportInitialize)this.ifGainTrackBar).BeginInit(); + base.SuspendLayout(); + this.deviceComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.deviceComboBox.FormattingEnabled = true; + this.deviceComboBox.Location = new Point(12, 26); + this.deviceComboBox.Name = "deviceComboBox"; + this.deviceComboBox.Size = new Size(237, 21); + this.deviceComboBox.TabIndex = 1; + this.deviceComboBox.SelectedIndexChanged += this.deviceComboBox_SelectedIndexChanged; + this.label1.AutoSize = true; + this.label1.Location = new Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new Size(41, 13); + this.label1.TabIndex = 21; + this.label1.Text = "Device"; + this.label3.AutoSize = true; + this.label3.Location = new Point(12, 62); + this.label3.Name = "label3"; + this.label3.Size = new Size(68, 13); + this.label3.TabIndex = 26; + this.label3.Text = "Sample Rate"; + this.samplerateComboBox.DropDownStyle = ComboBoxStyle.DropDownList; + this.samplerateComboBox.FormattingEnabled = true; + this.samplerateComboBox.Items.AddRange(new object[7] + { + "8138 Hz", + "16276 Hz", + "37793 Hz", + "55556 Hz ", + "111111 Hz", + "158730 Hz", + "196078 Hz" + }); + this.samplerateComboBox.Location = new Point(12, 79); + this.samplerateComboBox.Name = "samplerateComboBox"; + this.samplerateComboBox.Size = new Size(237, 21); + this.samplerateComboBox.TabIndex = 25; + this.samplerateComboBox.SelectedIndexChanged += this.samplerateComboBox_SelectedIndexChanged; + this.rfGainTrackBar.LargeChange = 1; + this.rfGainTrackBar.Location = new Point(12, 138); + this.rfGainTrackBar.Maximum = 3; + this.rfGainTrackBar.Name = "rfGainTrackBar"; + this.rfGainTrackBar.Size = new Size(237, 45); + this.rfGainTrackBar.TabIndex = 27; + this.rfGainTrackBar.Scroll += this.rfGainTrackBar_Scroll; + this.label2.AutoSize = true; + this.label2.Location = new Point(12, 122); + this.label2.Name = "label2"; + this.label2.Size = new Size(46, 13); + this.label2.TabIndex = 28; + this.label2.Text = "RF Gain"; + this.ifGainTrackBar.LargeChange = 1; + this.ifGainTrackBar.Location = new Point(12, 204); + this.ifGainTrackBar.Maximum = 5; + this.ifGainTrackBar.Name = "ifGainTrackBar"; + this.ifGainTrackBar.Size = new Size(237, 45); + this.ifGainTrackBar.TabIndex = 29; + this.ifGainTrackBar.Scroll += this.ifGainTrackBar_Scroll; + this.label4.AutoSize = true; + this.label4.Location = new Point(12, 188); + this.label4.Name = "label4"; + this.label4.Size = new Size(41, 13); + this.label4.TabIndex = 30; + this.label4.Text = "IF Gain"; + this.ifGainLabel.AutoSize = true; + this.ifGainLabel.Location = new Point(199, 188); + this.ifGainLabel.Name = "ifGainLabel"; + this.ifGainLabel.Size = new Size(44, 13); + this.ifGainLabel.TabIndex = 31; + this.ifGainLabel.Text = "1000dB"; + this.rfGainLabel.AutoSize = true; + this.rfGainLabel.Location = new Point(199, 122); + this.rfGainLabel.Name = "rfGainLabel"; + this.rfGainLabel.Size = new Size(44, 13); + this.rfGainLabel.TabIndex = 32; + this.rfGainLabel.Text = "1000dB"; + this.refreshTimer.Interval = 1000; + this.refreshTimer.Tick += this.refreshTimer_Tick; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.ClientSize = new Size(261, 261); + base.Controls.Add(this.rfGainLabel); + base.Controls.Add(this.ifGainLabel); + base.Controls.Add(this.label4); + base.Controls.Add(this.ifGainTrackBar); + base.Controls.Add(this.label2); + base.Controls.Add(this.rfGainTrackBar); + base.Controls.Add(this.label3); + base.Controls.Add(this.samplerateComboBox); + base.Controls.Add(this.label1); + base.Controls.Add(this.deviceComboBox); + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "SDRIQControllerDialog"; + base.ShowIcon = false; + base.ShowInTaskbar = false; + this.Text = "SDR-IQ Controller"; + base.TopMost = true; + base.FormClosing += this.SDRIQControllerDialog_FormClosing; + base.VisibleChanged += this.SDRIQControllerDialog_VisibleChanged; + ((ISupportInitialize)this.rfGainTrackBar).EndInit(); + ((ISupportInitialize)this.ifGainTrackBar).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SamplesAvailableDelegate.cs b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SamplesAvailableDelegate.cs new file mode 100644 index 0000000..064fc67 --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SamplesAvailableDelegate.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.SDRIQ +{ + public delegate void SamplesAvailableDelegate(object sender, SamplesAvailableEventArgs e); +} diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SamplesAvailableEventArgs.cs b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SamplesAvailableEventArgs.cs new file mode 100644 index 0000000..f1275fe --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SamplesAvailableEventArgs.cs @@ -0,0 +1,20 @@ +using SDRSharp.Radio; +using System; + +namespace SDRSharp.SDRIQ +{ + public sealed class SamplesAvailableEventArgs : EventArgs + { + public int Length + { + get; + set; + } + + public unsafe Complex* Buffer + { + get; + set; + } + } +} diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqDevice.cs b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqDevice.cs new file mode 100644 index 0000000..f7629e4 --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqDevice.cs @@ -0,0 +1,234 @@ +using SDRSharp.Radio; +using System; +using System.Runtime.InteropServices; +using System.Threading; + +namespace SDRSharp.SDRIQ +{ + public class SdrIqDevice + { + public const uint DefaultFrequency = 15000000u; + + private const int DefaultSamplerate = 158730; + + private unsafe static readonly float* _lut16; + + private static readonly UnsafeBuffer _lut16Buffer; + + private IntPtr _dev; + + private readonly uint _index; + + private GCHandle _gcHandle; + + private UnsafeBuffer _iqBuffer; + + private unsafe Complex* _iqPtr; + + private uint _centerFrequency = 15000000u; + + private uint _sampleRate = 158730u; + + private sbyte _rfGain; + + private sbyte _ifGain; + + private Thread _worker; + + private readonly SamplesAvailableEventArgs _eventArgs = new SamplesAvailableEventArgs(); + + private static readonly SdrIqReadAsyncDelegate _sdriqCallback; + + private static readonly int _readBlockCount; + + private static readonly uint _outFifoBlockCount; + + public bool IsStreaming => this._worker != null; + + public uint Frequency + { + get + { + return this._centerFrequency; + } + set + { + this._centerFrequency = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.sdriq_set_center_frequency(this._dev, this._centerFrequency); + } + } + } + + public uint Samplerate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.sdriq_set_out_samplerate(this._dev, this._sampleRate); + } + } + } + + public sbyte RfGain + { + get + { + return this._rfGain; + } + set + { + this._rfGain = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.sdriq_set_rf_gain(this._dev, value); + } + } + } + + public sbyte IfGain + { + get + { + return this._ifGain; + } + set + { + this._ifGain = value; + if (this._dev != IntPtr.Zero) + { + NativeMethods.sdriq_set_if_gain(this._dev, value); + } + } + } + + public uint Index => this._index; + + public event SamplesAvailableDelegate SamplesAvailable; + + unsafe static SdrIqDevice() + { + SdrIqDevice._lut16Buffer = UnsafeBuffer.Create(65536, 4); + SdrIqDevice._sdriqCallback = SdrIqDevice.SdrIqSamplesAvailable; + SdrIqDevice._readBlockCount = Utils.GetIntSetting("SDRIQReadBlockCount", 1); + SdrIqDevice._outFifoBlockCount = (uint)Utils.GetIntSetting("SDRIQOutFifoBlockCount", 0); + SdrIqDevice._lut16 = (float*)(void*)SdrIqDevice._lut16Buffer; + for (int i = 0; i < 65536; i++) + { + SdrIqDevice._lut16[i] = (float)(i - 32768) * 3.051851E-05f; + } + } + + public SdrIqDevice(uint index) + { + this._index = index; + if (NativeMethods.sdriq_open(this._index, SdrIqDevice._outFifoBlockCount, out this._dev) != 0) + { + throw new ApplicationException("Cannot open SDR-IQ"); + } + this._gcHandle = GCHandle.Alloc(this); + } + + ~SdrIqDevice() + { + this.Dispose(); + } + + public void Dispose() + { + this.Stop(); + NativeMethods.sdriq_close(this._dev); + if (this._gcHandle.IsAllocated) + { + this._gcHandle.Free(); + } + this._dev = IntPtr.Zero; + GC.SuppressFinalize(this); + } + + public void Start() + { + if (this._worker != null) + { + throw new ApplicationException("Already running"); + } + if (NativeMethods.sdriq_set_out_samplerate(this._dev, this._sampleRate) != 0) + { + throw new ApplicationException("Cannot access SDR-IQ"); + } + if (NativeMethods.sdriq_set_center_frequency(this._dev, this._centerFrequency) != 0) + { + throw new ApplicationException("Cannot access SDR-IQ"); + } + this._worker = new Thread(this.StreamProc); + this._worker.Priority = ThreadPriority.Highest; + this._worker.Start(); + } + + public void Stop() + { + if (this._worker != null) + { + NativeMethods.sdriq_async_cancel(this._dev); + if (this._worker.ThreadState == ThreadState.Running) + { + this._worker.Join(); + } + this._worker = null; + } + } + + private unsafe void StreamProc() + { + NativeMethods.sdriq_async_read(this._dev, (IntPtr)this._gcHandle, SdrIqDevice._sdriqCallback, SdrIqDevice._readBlockCount); + } + + private unsafe static void SdrIqSamplesAvailable(short* buf, uint len, IntPtr ctx) + { + GCHandle gCHandle = GCHandle.FromIntPtr(ctx); + if (gCHandle.IsAllocated) + { + SdrIqDevice sdrIqDevice = (SdrIqDevice)gCHandle.Target; + int num = (int)len / 2; + if (sdrIqDevice._iqBuffer == null || sdrIqDevice._iqBuffer.Length != num) + { + sdrIqDevice._iqBuffer = UnsafeBuffer.Create(num, sizeof(Complex)); + sdrIqDevice._iqPtr = (Complex*)(void*)sdrIqDevice._iqBuffer; + } + Complex* ptr = sdrIqDevice._iqPtr; + for (int i = 0; i < num; i++) + { + Complex* intPtr = ptr; + float* lut = SdrIqDevice._lut16; + short* intPtr2 = buf; + buf = intPtr2 + 1; + intPtr->Imag = lut[*intPtr2 + 32768]; + Complex* intPtr3 = ptr; + float* lut2 = SdrIqDevice._lut16; + short* intPtr4 = buf; + buf = intPtr4 + 1; + intPtr3->Real = lut2[*intPtr4 + 32768]; + ptr++; + } + sdrIqDevice.ComplexSamplesAvailable(sdrIqDevice._iqPtr, sdrIqDevice._iqBuffer.Length); + } + } + + private unsafe void ComplexSamplesAvailable(Complex* buffer, int length) + { + if (this.SamplesAvailable != null) + { + this._eventArgs.Buffer = buffer; + this._eventArgs.Length = length; + this.SamplesAvailable(this, this._eventArgs); + } + } + } +} diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqIO.cs b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqIO.cs new file mode 100644 index 0000000..a8e6ce5 --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqIO.cs @@ -0,0 +1,151 @@ +using SDRSharp.Radio; +using System; +using System.Windows.Forms; + +namespace SDRSharp.SDRIQ +{ + public class SdrIqIO : IFrontendController, IDisposable + { + private SdrIqDevice _device; + + private readonly SDRIQControllerDialog _gui; + + private SDRSharp.Radio.SamplesAvailableDelegate _callback; + + private uint _frequency = 15000000u; + + public bool IsSoundCardBased => false; + + public string SoundCardHint => string.Empty; + + public double Samplerate => (this._device == null) ? 0.0 : ((double)this._device.Samplerate); + + public long Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = (uint)value; + if (this._device != null) + { + this._device.Frequency = (uint)value; + } + } + } + + public SdrIqDevice Device => this._device; + + public SdrIqIO() + { + this._gui = new SDRIQControllerDialog(this); + } + + ~SdrIqIO() + { + this.Dispose(); + } + + public void Dispose() + { + if (this._gui != null) + { + this._gui.Dispose(); + } + try + { + NativeMethods.sdriq_destroy(); + } + catch (DllNotFoundException) + { + } + GC.SuppressFinalize(this); + } + + public void Open() + { + NativeMethods.sdriq_destroy(); + NativeMethods.sdriq_initialise(); + DeviceDisplay[] activeDevices = DeviceDisplay.GetActiveDevices(); + DeviceDisplay[] array = activeDevices; + foreach (DeviceDisplay deviceDisplay in array) + { + try + { + this.SelectDevice(deviceDisplay.Index); + return; + } + catch (ApplicationException) + { + } + } + NativeMethods.sdriq_destroy(); + if (activeDevices.Length != 0) + { + throw new ApplicationException(activeDevices.Length + " compatible devices have been found but are all busy"); + } + throw new ApplicationException("No compatible devices found"); + } + + public void SelectDevice(uint index) + { + this.Close(); + this._device = new SdrIqDevice(index); + this._device.SamplesAvailable += this.sdriqDevice_SamplesAvailable; + this._device.Frequency = this._frequency; + this._gui.ConfigureGUI(); + this._gui.ConfigureDevice(); + } + + public unsafe void Start(SDRSharp.Radio.SamplesAvailableDelegate callback) + { + if (this._device == null) + { + throw new ApplicationException("No device selected"); + } + this._callback = callback; + try + { + this._device.Start(); + } + catch + { + this.Open(); + this._device.Start(); + } + } + + public void Stop() + { + this._device.Stop(); + } + + public void Close() + { + if (this._device != null) + { + this._device.Stop(); + this._device.SamplesAvailable -= this.sdriqDevice_SamplesAvailable; + this._device.Dispose(); + this._device = null; + } + } + + public void ShowSettingGUI(IWin32Window parent) + { + this._gui.Show(); + } + + public void HideSettingGUI() + { + this._gui.Hide(); + } + + private unsafe void sdriqDevice_SamplesAvailable(object sender, SamplesAvailableEventArgs e) + { + this._callback(this, e.Buffer, e.Length); + } + } +} diff --git a/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqReadAsyncDelegate.cs b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqReadAsyncDelegate.cs new file mode 100644 index 0000000..04fc26d --- /dev/null +++ b/Plugins/SDRSharper.SDRIQ/SDRSharp.SDRIQ/SdrIqReadAsyncDelegate.cs @@ -0,0 +1,8 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.SDRIQ +{ + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public unsafe delegate void SdrIqReadAsyncDelegate(short* buf, uint len, IntPtr ctx); +} diff --git a/Plugins/SDRSharper.Trunker/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.Trunker/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..6dc359c --- /dev/null +++ b/Plugins/SDRSharper.Trunker/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Security.Permissions; + +[assembly: AssemblyProduct("SDRSharp.Trunker.Properties")] +[assembly: AssemblyCopyright("Copyright © 2013 Bob Rich & Russell Hande (zefie/rtlsdr_is_fun)")] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyTitle("SDRSharp.Trunker")] +[assembly: AssemblyDescription("Provides interoperability with Unitrunker for SDRSharp")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Zefie Networks")] +[assembly: AssemblyTrademark("")] +[assembly: ComVisible(false)] +[assembly: Guid("BDE9B21A-127D-41BC-9B69-35B7D1F235B2")] +[assembly: AssemblyFileVersion("1.2013.430.1")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: CompilationRelaxations(8)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("1.2013.430.1")] diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker.csproj b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker.csproj new file mode 100644 index 0000000..189ce55 --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker.csproj @@ -0,0 +1,63 @@ + + + + {87286D5E-A1DD-4686-A532-8541104899B3} + Debug + x86 + Library + SDRSharp.Trunker + v2.0 + 4 + True + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Common.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll + + + C:\Windows\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089\System.Core.dll + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/Goertzel.cs b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/Goertzel.cs new file mode 100644 index 0000000..d5cd594 --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/Goertzel.cs @@ -0,0 +1,27 @@ +using System; + +namespace SDRSharp.Trunker +{ + public class Goertzel + { + public unsafe static float GetMag(double sampleRate, int frequency, float* buffer, int length) + { + int num = (int)(0.5 + (double)(length * frequency) / sampleRate); + double num2 = 6.2831853071795862 * (double)num / (double)length; + float num3 = (float)(2.0 * Math.Cos(num2)); + float num5; + float num4; + float num6 = num5 = (num4 = 0f); + for (int i = 0; i < length; i++) + { + num6 = num3 * num5 - num4 + buffer[i]; + num4 = num5; + num5 = num6; + } + float num7 = (float)length / 2f; + float num8 = (float)((double)num5 - (double)num4 * Math.Cos(num2)) / num7; + float num9 = (float)((double)num4 * Math.Sin(num2)) / num7; + return (float)Math.Sqrt((double)(num8 * num8 + num9 * num9)); + } + } +} diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/LogOptions.cs b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/LogOptions.cs new file mode 100644 index 0000000..3e2b264 --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/LogOptions.cs @@ -0,0 +1,381 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Trunker +{ + public class LogOptions : Form + { + private readonly SettingsPersisterTrunker _settingsPersister; + + private TrunkerLogger _trunkLoggerData; + + private List _trunkerConfig; + + private IContainer components; + + private ComboBox logStylePreset; + + private Label label2; + + private Label label1; + + private Label label3; + + private Label exampleOut; + + private TextBox logStyle; + + private Button logCustomizeSave; + + private Label guideLabel; + + private Button button1; + + private Label label4; + + private ComboBox logSimulation; + + private Label guideLabel2; + + private Label label5; + + private Label label6; + + private TextBox parkedString; + + private TextBox unkString; + + private CheckBox ignoreParked; + + public LogOptions() + { + this.InitializeComponent(); + this._settingsPersister = new SettingsPersisterTrunker(); + this._trunkerConfig = this._settingsPersister.readConfig(); + this._trunkLoggerData = new TrunkerLogger(); + this.guideLabel.Text = "Guide:" + Environment.NewLine + "%t = targetlabel" + Environment.NewLine + "%tid = targetid" + Environment.NewLine + "%s = sourcelabel" + Environment.NewLine + "%sid = sourceid" + Environment.NewLine + "%f = frequency (Hz)" + Environment.NewLine + "%fk = frequency (kHz)" + Environment.NewLine + "%fm = frequency (MHz)" + Environment.NewLine + "%a = action" + Environment.NewLine + "%r = receiver"; + this.guideLabel2.Text = "To filter strings based on variable availabity, use brackets. Please try some presets from the dropdown list above, as well as the simulator for examples on how this works." + Environment.NewLine + "Nested filters are not currently supported." + Environment.NewLine + "Only works on %tid, %s, and %sid."; + this.logSimulation.SelectedIndex = 0; + this.logStyle.Text = (this._trunkerConfig[0].logStyle ?? "%t %fm MHz"); + this.parkedString.Text = (this._trunkerConfig[0].parkedStr ?? "Parked"); + this.unkString.Text = (this._trunkerConfig[0].unknownSrcStr ?? "Unknown"); + this.ignoreParked.Checked = this._trunkerConfig[0].ignoreParked; + } + + private void PrepareLog() + { + this._trunkLoggerData = null; + this._trunkLoggerData = new TrunkerLogger(); + } + + private void PopulateFakeLog() + { + this.PrepareLog(); + this._trunkLoggerData.currentFrequency = 860987725m; + this._trunkLoggerData.currentReceiver = "Debug"; + this._trunkLoggerData.currentTrunklabel = "Test Target"; + this._trunkLoggerData.currentTrunkgroup = "1234"; + switch (this.logSimulation.SelectedIndex + 1) + { + case 1: + this._trunkLoggerData.currentAction = "Park"; + this._trunkLoggerData.currentTrunklabel = null; + this._trunkLoggerData.currentTrunkgroup = null; + break; + case 2: + this._trunkLoggerData.currentAction = "Listen"; + this._trunkLoggerData.currentSourcegroup = "420"; + this._trunkLoggerData.currentSourcelabel = "Test Source"; + break; + } + } + + private void DoNothing(Exception ex) + { + } + + private void logCustomizeSave_Click(object sender, EventArgs e) + { + try + { + this._trunkerConfig[0].settingsExist(); + } + catch (Exception ex) + { + this.DoNothing(ex); + this._trunkerConfig.Insert(0, new TrunkerSettings()); + } + this._trunkerConfig[0].logStyle = this.logStyle.Text; + this._trunkerConfig[0].parkedStr = this.parkedString.Text; + this._trunkerConfig[0].unknownSrcStr = this.unkString.Text; + this._trunkerConfig[0].ignoreParked = this.ignoreParked.Checked; + this._settingsPersister.writeConfig(this._trunkerConfig); + base.Close(); + } + + private void logStyle_TextChanged(object sender, EventArgs e) + { + string text = this.doLogParse(); + if (text != null) + { + this.exampleOut.Text = text; + } + } + + private void logStylePreset_SelectedIndexChanged(object sender, EventArgs e) + { + switch (this.logStylePreset.SelectedIndex + 1) + { + case 2: + this.logStyle.Text = "%t (%fm MHz)"; + break; + case 3: + this.logStyle.Text = "%t[ %s]"; + break; + case 4: + this.logStyle.Text = "%t[ %s] %fm MHz"; + break; + case 5: + this.logStyle.Text = "[%s to ]%t"; + break; + case 6: + this.logStyle.Text = "[%s to ]%t (%fm MHz)"; + break; + case 7: + this.logStyle.Text = "%s"; + break; + case 8: + this.logStyle.Text = "%t"; + break; + case 9: + this.logStyle.Text = "%fm MHz"; + break; + default: + this.logStyle.Text = "%t %fm MHz"; + break; + } + } + + private void button1_Click(object sender, EventArgs e) + { + base.Close(); + } + + private void logSimulation_SelectedIndexChanged(object sender, EventArgs e) + { + this.PopulateFakeLog(); + string text = this.doLogParse(); + if (text != null) + { + this.exampleOut.Text = text; + } + } + + private string doLogParse() + { + return LogParser.ParseLogStyle(this._trunkLoggerData, this.logStyle.Text, this.parkedString.Text, this.unkString.Text, this.ignoreParked.Checked); + } + + private void parkedString_TextChanged(object sender, EventArgs e) + { + string text = this.doLogParse(); + if (text != null) + { + this.exampleOut.Text = text; + } + } + + private void unkString_TextChanged(object sender, EventArgs e) + { + string text = this.doLogParse(); + if (text != null) + { + this.exampleOut.Text = text; + } + } + + private void ignoreParked_CheckedChanged(object sender, EventArgs e) + { + if (this.logSimulation.SelectedIndex == 0) + { + this.logSimulation.SelectedIndex = 1; + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.logStylePreset = new ComboBox(); + this.label2 = new Label(); + this.label1 = new Label(); + this.label3 = new Label(); + this.exampleOut = new Label(); + this.logStyle = new TextBox(); + this.logCustomizeSave = new Button(); + this.guideLabel = new Label(); + this.button1 = new Button(); + this.label4 = new Label(); + this.logSimulation = new ComboBox(); + this.guideLabel2 = new Label(); + this.label5 = new Label(); + this.label6 = new Label(); + this.parkedString = new TextBox(); + this.unkString = new TextBox(); + this.ignoreParked = new CheckBox(); + base.SuspendLayout(); + this.logStylePreset.DropDownStyle = ComboBoxStyle.DropDownList; + this.logStylePreset.FormattingEnabled = true; + this.logStylePreset.Items.AddRange(new object[9] + { + "target frequency", + "target (frequency)", + "target source", + "target source frequency", + "source to target", + "source to target (frequency)", + "source", + "target", + "frequency" + }); + this.logStylePreset.Location = new Point(72, 12); + this.logStylePreset.Name = "logStylePreset"; + this.logStylePreset.Size = new Size(330, 21); + this.logStylePreset.TabIndex = 56; + this.logStylePreset.SelectedIndexChanged += this.logStylePreset_SelectedIndexChanged; + this.label2.AutoSize = true; + this.label2.Location = new Point(3, 15); + this.label2.Name = "label2"; + this.label2.Size = new Size(45, 13); + this.label2.TabIndex = 57; + this.label2.Text = "Presets:"; + this.label1.AutoSize = true; + this.label1.Location = new Point(3, 48); + this.label1.Name = "label1"; + this.label1.Size = new Size(54, 13); + this.label1.TabIndex = 58; + this.label1.Text = "Log Style:"; + this.label3.AutoSize = true; + this.label3.Location = new Point(3, 127); + this.label3.Name = "label3"; + this.label3.Size = new Size(85, 13); + this.label3.TabIndex = 58; + this.label3.Text = "Example Output:"; + this.exampleOut.Location = new Point(12, 150); + this.exampleOut.Name = "exampleOut"; + this.exampleOut.Size = new Size(390, 33); + this.exampleOut.TabIndex = 58; + this.logStyle.Location = new Point(72, 45); + this.logStyle.Name = "logStyle"; + this.logStyle.Size = new Size(330, 20); + this.logStyle.TabIndex = 59; + this.logStyle.TextChanged += this.logStyle_TextChanged; + this.logCustomizeSave.Location = new Point(294, 193); + this.logCustomizeSave.Name = "logCustomizeSave"; + this.logCustomizeSave.Size = new Size(42, 22); + this.logCustomizeSave.TabIndex = 60; + this.logCustomizeSave.Text = "Save"; + this.logCustomizeSave.UseVisualStyleBackColor = true; + this.logCustomizeSave.Click += this.logCustomizeSave_Click; + this.guideLabel.Location = new Point(12, 198); + this.guideLabel.Name = "guideLabel"; + this.guideLabel.Size = new Size(144, 129); + this.guideLabel.TabIndex = 61; + this.button1.Location = new Point(342, 193); + this.button1.Name = "button1"; + this.button1.Size = new Size(60, 22); + this.button1.TabIndex = 62; + this.button1.Text = "Cancel"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += this.button1_Click; + this.label4.AutoSize = true; + this.label4.Location = new Point(191, 105); + this.label4.Name = "label4"; + this.label4.Size = new Size(93, 13); + this.label4.TabIndex = 63; + this.label4.Text = "Output Simulation:"; + this.logSimulation.DropDownStyle = ComboBoxStyle.DropDownList; + this.logSimulation.FormattingEnabled = true; + this.logSimulation.Items.AddRange(new object[3] + { + "Parked", + "Full w/ Source", + "Unknown Source" + }); + this.logSimulation.Location = new Point(290, 102); + this.logSimulation.Name = "logSimulation"; + this.logSimulation.Size = new Size(112, 21); + this.logSimulation.TabIndex = 64; + this.logSimulation.SelectedIndexChanged += this.logSimulation_SelectedIndexChanged; + this.guideLabel2.Location = new Point(162, 223); + this.guideLabel2.Name = "guideLabel2"; + this.guideLabel2.Size = new Size(240, 104); + this.guideLabel2.TabIndex = 65; + this.label5.AutoSize = true; + this.label5.Location = new Point(3, 79); + this.label5.Name = "label5"; + this.label5.Size = new Size(60, 13); + this.label5.TabIndex = 66; + this.label5.Text = "Parked Str:"; + this.label6.AutoSize = true; + this.label6.Location = new Point(181, 79); + this.label6.Name = "label6"; + this.label6.Size = new Size(105, 13); + this.label6.TabIndex = 67; + this.label6.Text = "Unknown Src String:"; + this.parkedString.Location = new Point(72, 76); + this.parkedString.Name = "parkedString"; + this.parkedString.Size = new Size(103, 20); + this.parkedString.TabIndex = 59; + this.parkedString.TextChanged += this.parkedString_TextChanged; + this.unkString.Location = new Point(290, 76); + this.unkString.Name = "unkString"; + this.unkString.Size = new Size(112, 20); + this.unkString.TabIndex = 59; + this.unkString.TextChanged += this.unkString_TextChanged; + this.ignoreParked.AutoSize = true; + this.ignoreParked.Location = new Point(6, 104); + this.ignoreParked.Name = "ignoreParked"; + this.ignoreParked.Size = new Size(176, 17); + this.ignoreParked.TabIndex = 68; + this.ignoreParked.Text = "Ignore Parked (Retain Last Call)"; + this.ignoreParked.UseVisualStyleBackColor = true; + this.ignoreParked.CheckedChanged += this.ignoreParked_CheckedChanged; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.ClientSize = new Size(414, 334); + base.Controls.Add(this.ignoreParked); + base.Controls.Add(this.parkedString); + base.Controls.Add(this.label6); + base.Controls.Add(this.label5); + base.Controls.Add(this.guideLabel2); + base.Controls.Add(this.logSimulation); + base.Controls.Add(this.label4); + base.Controls.Add(this.button1); + base.Controls.Add(this.guideLabel); + base.Controls.Add(this.logCustomizeSave); + base.Controls.Add(this.unkString); + base.Controls.Add(this.logStyle); + base.Controls.Add(this.exampleOut); + base.Controls.Add(this.label3); + base.Controls.Add(this.label1); + base.Controls.Add(this.label2); + base.Controls.Add(this.logStylePreset); + base.FormBorderStyle = FormBorderStyle.FixedToolWindow; + base.Name = "LogOptions"; + this.Text = "Logging Customization"; + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/LogParser.cs b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/LogParser.cs new file mode 100644 index 0000000..7520a5d --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/LogParser.cs @@ -0,0 +1,157 @@ +using System; +using System.Collections.Generic; + +namespace SDRSharp.Trunker +{ + public class LogParser + { + public static string ParseLogStyle(TrunkerLogger _trunkLoggerData, string logStyle = null, string parkedString = null, string unkString = null, bool ignoreParked = false) + { + if (logStyle == null || parkedString == null || unkString == null || !ignoreParked) + { + string[] settings = LogParser.getSettings(); + if (logStyle == null) + { + logStyle = settings[0]; + } + if (parkedString == null) + { + parkedString = settings[1]; + } + if (unkString == null) + { + unkString = settings[2]; + } + if (!ignoreParked) + { + ignoreParked = Convert.ToBoolean(settings[3]); + } + } + _trunkLoggerData = LogParser.PrepareLogData(_trunkLoggerData, parkedString, unkString); + if (_trunkLoggerData.currentAction == "Park" && ignoreParked) + { + return null; + } + string text = logStyle; + int num = -1; + int num2 = num; + while (true) + { + if (num + 1 > text.Length) + { + break; + } + num = text.IndexOf('[', num + 1); + if (num < 0) + { + break; + } + int num3 = text.IndexOf(']', num); + if (num3 >= 0) + { + string text2 = text.Substring(num, num3 - num + 1); + string text3 = text2; + int num4 = text2.IndexOf('%'); + if (num4 > 0) + { + string text4 = (text3.Length < num4 + 4) ? text2.Substring(num4, 2) : text2.Substring(num4, 4); + switch (text4) + { + case "%tid": + text3 = LogParser.filterData(text2, text4, _trunkLoggerData.currentTrunkgroup); + break; + case "%sid": + text3 = LogParser.filterData(text2, text4, _trunkLoggerData.currentSourcegroup); + break; + default: + { + text4 = text4.Substring(0, 2); + string a; + if ((a = text4) != null && a == "%s") + { + text3 = LogParser.filterData(text2, text4, _trunkLoggerData.currentSourcelabel); + } + break; + } + } + if (text2 != text3) + { + text = text.Replace(text2, text3); + } + } + num2 = num3; + } + if (num2 <= num) + { + break; + } + num = num2; + } + text = text.Replace("%fk", (_trunkLoggerData.currentFrequency / 1000m).ToString()); + text = text.Replace("%fm", (_trunkLoggerData.currentFrequency / 1000000m).ToString()); + text = text.Replace("%f", _trunkLoggerData.currentFrequency.ToString()); + text = text.Replace("%tid", _trunkLoggerData.currentTrunkgroup); + text = text.Replace("%t", _trunkLoggerData.currentTrunklabel); + text = text.Replace("%sid", _trunkLoggerData.currentSourcegroup); + text = text.Replace("%s", _trunkLoggerData.currentSourcelabel); + text = text.Replace("%r", _trunkLoggerData.currentReceiver); + return text.Replace("%a", _trunkLoggerData.currentAction); + } + + private static string filterData(string source, string var, object loggerData) + { + if (loggerData != null) + { + source = source.Replace(var, loggerData.ToString()); + source = source.Remove(source.IndexOf('[', 0), 1); + source = source.Remove(source.IndexOf(']', 0), 1); + } + else + { + source = null; + } + return source; + } + + private static TrunkerLogger PrepareLogData(TrunkerLogger _trunkLoggerData, string parkedStr, string unkString) + { + if (_trunkLoggerData.currentAction == "Park") + { + _trunkLoggerData.currentTrunklabel = parkedStr; + } + if (_trunkLoggerData.currentAction == "Listen") + { + if (_trunkLoggerData.currentTrunklabel == null || _trunkLoggerData.currentTrunklabel.Length == 0) + { + _trunkLoggerData.currentTrunklabel = _trunkLoggerData.currentTrunkgroup; + } + if (_trunkLoggerData.currentSourcelabel == null || _trunkLoggerData.currentSourcelabel.Length == 0) + { + _trunkLoggerData.currentSourcelabel = _trunkLoggerData.currentSourcegroup; + } + if (_trunkLoggerData.currentSourcelabel == null || _trunkLoggerData.currentSourcelabel.Length == 0) + { + _trunkLoggerData.currentSourcelabel = unkString; + } + } + return _trunkLoggerData; + } + + private static string[] getSettings() + { + SettingsPersisterTrunker settingsPersisterTrunker = new SettingsPersisterTrunker(); + List list = settingsPersisterTrunker.readConfig(); + string text = list[0].logStyle ?? "%t %fm MHz"; + string text2 = list[0].parkedStr ?? "Parked"; + string text3 = list[0].unknownSrcStr ?? "Unknown"; + bool ignoreParked = list[0].ignoreParked; + return new string[4] + { + text, + text2, + text3, + ignoreParked.ToString() + }; + } + } +} diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/SettingsPersisterTrunker.cs b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/SettingsPersisterTrunker.cs new file mode 100644 index 0000000..97d51bf --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/SettingsPersisterTrunker.cs @@ -0,0 +1,61 @@ +using System.Collections.Generic; +using System.IO; +using System.Windows.Forms; +using System.Xml.Serialization; + +namespace SDRSharp.Trunker +{ + public class SettingsPersisterTrunker + { + private const string SettingsFilename = "trunker.xml"; + + private readonly string _settingsFolder; + + public SettingsPersisterTrunker() + { + this._settingsFolder = Path.GetDirectoryName(Application.ExecutablePath); + } + + public List readConfig() + { + if (File.Exists("trunker.xml")) + { + List list = this.ReadObject>("trunker.xml"); + if (list != null) + { + return list; + } + } + return new List(); + } + + public void writeConfig(List config) + { + this.WriteObject(config, "trunker.xml"); + } + + private T ReadObject(string fileName) + { + string path = Path.Combine(this._settingsFolder, fileName); + if (File.Exists(path)) + { + using (FileStream stream = new FileStream(path, FileMode.Open)) + { + XmlSerializer xmlSerializer = new XmlSerializer(typeof(T)); + return (T)xmlSerializer.Deserialize(stream); + } + } + return default(T); + } + + private void WriteObject(T obj, string fileName) + { + string path = Path.Combine(this._settingsFolder, fileName); + using (FileStream stream = new FileStream(path, FileMode.Create)) + { + XmlSerializer xmlSerializer = new XmlSerializer(obj.GetType()); + xmlSerializer.Serialize(stream, obj); + } + } + } +} diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerLogger.cs b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerLogger.cs new file mode 100644 index 0000000..8dc62b6 --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerLogger.cs @@ -0,0 +1,122 @@ +namespace SDRSharp.Trunker +{ + public class TrunkerLogger + { + private string _action; + + private string _receiver; + + private decimal _frequency; + + private string _trunkgroup; + + private string _trunklabel; + + private string _sourcegroup; + + private string _sourcelabel; + + public string currentAction + { + get + { + return this._action; + } + set + { + this._action = value; + } + } + + public string currentReceiver + { + get + { + return this._receiver; + } + set + { + this._receiver = value; + } + } + + public decimal currentFrequency + { + get + { + return this._frequency; + } + set + { + this._frequency = value; + } + } + + public string currentTrunkgroup + { + get + { + return this._trunkgroup; + } + set + { + this._trunkgroup = value; + } + } + + public string currentTrunklabel + { + get + { + return this._trunklabel; + } + set + { + this._trunklabel = value; + } + } + + public string currentSourcegroup + { + get + { + return this._sourcegroup; + } + set + { + this._sourcegroup = value; + } + } + + public string currentSourcelabel + { + get + { + return this._sourcelabel; + } + set + { + this._sourcelabel = value; + } + } + + public TrunkerLogger() + { + } + + public TrunkerLogger(TrunkerLogger trunkerLogger) + { + this._action = trunkerLogger._action; + this._receiver = trunkerLogger._receiver; + this._frequency = trunkerLogger._frequency; + this._trunkgroup = trunkerLogger._trunkgroup; + this._trunklabel = trunkerLogger._trunklabel; + this._sourcegroup = trunkerLogger._sourcegroup; + this._sourcelabel = trunkerLogger._sourcelabel; + } + + public void settingsExist() + { + } + } +} diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerPanel.cs b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerPanel.cs new file mode 100644 index 0000000..e0e8f6a --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerPanel.cs @@ -0,0 +1,1154 @@ +using SDRSharp.Common; +using SDRSharp.Radio; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Threading; +using System.Timers; +using System.Windows.Forms; + +namespace SDRSharp.Trunker +{ + [Category("SDRSharp")] + [Description("Trunker Control Panel")] + [DesignTimeVisible(true)] + public class TrunkerPanel : UserControl + { + private const int MUTE = 15; + + private readonly SettingsPersisterTrunker _settingsPersister; + + private List _trunkerConfig; + + private TrunkerLogger _trunkLoggerData; + + private ISharpControl _controlInterface; + + private TrunkerPlugin _plugin; + + private FileSystemWatcher _fileWatcher; + + private readonly object _fftResolutionLockObject = new object(); + + private string _trunkingFileName = "sdrsharptrunking.log"; + + private byte[] _fftSpectrum; + + private int _cachedAudioGain = 15; + + private System.Timers.Timer _retuneDelay; + + private int _beepDelay; + + private bool unitrunkerConfigured; + + private bool loggingConfigured; + + private bool loggingEnabled; + + private bool loggingSystemMessageDisplayed; + + private bool unitrunkerConfigureMessageDisplayed; + + private bool initializing = true; + + private string _version; + + private bool unitrunkerIsParked; + + private bool _sdrsharp_rev_1133; + + private IContainer components; + + private NumericUpDown trunkingControlChannelFreq; + + private Label lblTrunkingLogFile; + + private Label lbltrunkingControlChannelFreq; + + private CheckBox trunkingTuneToControlChannel; + + private CheckBox trunkingEnabledCheckbox; + + private CheckBox stickyTuneTrunkingCheckbox; + + private TextBox uniTrunkerHomeDirectory; + + private Button trunkingUnitrunkerBrowseButton; + + private Panel mainPanel; + + private System.Windows.Forms.Timer trunkingTimer; + + private TextBox singleLogFilePath; + + private Button trunkingLogFileButton; + + private Label label1; + + private CheckBox singleLogFileEnabled; + + private Label versionAndStatus; + + private Label label2; + + private Button spawnLogDialog; + + private ComboBox retuneDelayMethod; + + private Label label3; + + private NumericUpDown retuneMinSignalLevel; + + private Label retuneMinSignalLabel; + + private Panel panelForOptionsAfterRetune; + + private CheckBox muteEdacsBeep; + + private CheckBox muteWhileParkedCheckbox; + + private Label currentDbLabel; + + private Label currentDbValue; + + public TrunkerPlugin PlugIn + { + get + { + return this._plugin; + } + set + { + this._plugin = value; + } + } + + private bool isRev1133orBetter + { + get + { + if (this._controlInterface.GetType().GetProperty("SourceIsTunable") != null) + { + return true; + } + return false; + } + } + + private bool isRev1134orBetter + { + get + { + if (this._controlInterface.GetType().GetProperty("FFTRange") != null && this._controlInterface.GetType().GetProperty("FFTOffset") != null) + { + return true; + } + return false; + } + } + + private bool isSourceTunable => (bool)this._controlInterface.GetType().GetProperty("SourceIsTunable").GetValue(this._controlInterface, null); + + private float getFFTRange => (float)this._controlInterface.GetType().GetProperty("FFTRange").GetValue(this._controlInterface, null); + + private float getFFTOffset => (float)this._controlInterface.GetType().GetProperty("FFTOffset").GetValue(this._controlInterface, null); + + private bool shouldWeRetune + { + get + { + if (this.stickyTuneTrunkingCheckbox.Checked) + { + if (!this.unitrunkerIsParked) + { + return false; + } + if (this._trunkerConfig[0].delayRetuneMethod == 0 && this._controlInterface.SquelchEnabled) + { + return !this._controlInterface.IsSquelchOpen; + } + if (this._trunkerConfig[0].delayRetuneMethod == 1) + { + Monitor.Enter(this._fftResolutionLockObject); + float peakSignal = this.getPeakSignal(); + Monitor.Exit(this._fftResolutionLockObject); + this.currentDbValue.Text = peakSignal.ToString() + "dB"; + return peakSignal < (float)this.retuneMinSignalLevel.Value; + } + } + else if (this.currentDbValue != null) + { + this.currentDbValue.Text = "Off"; + } + return false; + } + } + + public TrunkerPanel(ISharpControl control, TrunkerPlugin _parentplug) + { + this.InitializeComponent(); + this._version = Assembly.GetExecutingAssembly().GetName().Version.ToString() + " ZefieMod"; + this._plugin = _parentplug; + this._controlInterface = control; + this._cachedAudioGain = this._controlInterface.AudioGain; + this._controlInterface.PropertyChanged += this._controlInterface_PropertyChanged; + this._fftSpectrum = new byte[this._controlInterface.FFTResolution]; + this._settingsPersister = new SettingsPersisterTrunker(); + this._trunkerConfig = this._settingsPersister.readConfig(); + this._trunkLoggerData = new TrunkerLogger(); + this.setVersion(); + this._sdrsharp_rev_1133 = this.isRev1133orBetter; + this.ProcessSavedSettings(); + this.initializing = false; + } + + private void setVersion() + { + this.versionAndStatus.Text = "v" + this._version; + } + + private void ProcessSavedSettings() + { + try + { + this.uniTrunkerHomeDirectory.Text = this._trunkerConfig[0].unitrunkerPath; + this.singleLogFilePath.Text = this._trunkerConfig[0].logPath; + this.muteEdacsBeep.Checked = this._trunkerConfig[0].isMuteEDACSEnabled; + this.muteWhileParkedCheckbox.Checked = this._trunkerConfig[0].isMuteControlEnabled; + this.trunkingControlChannelFreq.Value = (long)this._trunkerConfig[0].controlFreq; + this.retuneDelayMethod.SelectedIndex = this._trunkerConfig[0].delayRetuneMethod; + this.retuneMinSignalLevel.Value = this._trunkerConfig[0].delayRetuneMinimumSignal; + this.stickyTuneTrunkingCheckbox.Checked = this._trunkerConfig[0].isDelayRetuneEnabled; + if (this.singleLogFilePath.Text != null) + { + this.loggingConfigured = true; + this.singleLogFileEnabled.Checked = this._trunkerConfig[0].isLoggingEnabled; + } + if (this.uniTrunkerHomeDirectory.Text != null) + { + this.unitrunkerConfigured = true; + this.trunkingEnabledCheckbox.Checked = this._trunkerConfig[0].isEnabled; + } + } + catch (Exception ex) + { + this.DoNothing(ex); + } + } + + private bool checkUnitrunkerPath(string path) + { + if (Directory.Exists(path)) + { + if (File.Exists(path + "\\Unitrunker.xml")) + { + if (File.Exists(path + "\\Remote.dll")) + { + this.unitrunkerConfigured = true; + return true; + } + MessageBox.Show("Warning: Remote.dll not found in UniTrunker configuration directory. Copy Remote.dll from SDRSharp directory to directory that contains UniTrunker.xml (typically c:\\users\\[username]\\AppData\\Roaming\\UniTrunker)."); + } + else + { + MessageBox.Show("Warning: UniTrunker.xml configuration file not found, ensure that the directory selected is the 'AppData' directory for unitrunker"); + } + } + return false; + } + + private void WriteConfig() + { + if (!this.initializing) + { + try + { + this._trunkerConfig[0].settingsExist(); + } + catch (Exception ex) + { + this.DoNothing(ex); + this._trunkerConfig.Insert(0, new TrunkerSettings()); + } + this._trunkerConfig[0].isEnabled = this.trunkingEnabledCheckbox.Checked; + this._trunkerConfig[0].unitrunkerPath = this.uniTrunkerHomeDirectory.Text; + this._trunkerConfig[0].logPath = this.singleLogFilePath.Text; + this._trunkerConfig[0].isDelayRetuneEnabled = this.stickyTuneTrunkingCheckbox.Checked; + this._trunkerConfig[0].isMuteEDACSEnabled = this.muteEdacsBeep.Checked; + this._trunkerConfig[0].isMuteControlEnabled = this.muteWhileParkedCheckbox.Checked; + this._trunkerConfig[0].isLoggingEnabled = this.singleLogFileEnabled.Checked; + this._trunkerConfig[0].controlFreq = this.trunkingControlChannelFreq.Value; + this._trunkerConfig[0].delayRetuneMethod = this.retuneDelayMethod.SelectedIndex; + this._trunkerConfig[0].delayRetuneMinimumSignal = this.retuneMinSignalLevel.Value; + this._settingsPersister.writeConfig(this._trunkerConfig); + } + } + + private void _controlInterface_PropertyChanged(object sender, PropertyChangedEventArgs e) + { + if (e.PropertyName.Equals("AudioGain")) + { + this._cachedAudioGain = this._controlInterface.AudioGain; + } + else if (e.PropertyName.Equals("CenterFrequency")) + { + this.delayRetune(); + } + } + + private bool isRetuningDelayed() + { + return this._retuneDelay != null; + } + + private bool HasMethod(object objectToCheck, string methodName) + { + Type type = objectToCheck.GetType(); + return type.GetMethod(methodName) != null; + } + + private float getPeakSignal() + { + lock (this._fftResolutionLockObject) + { + if (this._fftSpectrum.Length != this._controlInterface.FFTResolution) + { + this._fftSpectrum = new byte[this._controlInterface.FFTResolution]; + } + this._controlInterface.GetSpectrumSnapshot(this._fftSpectrum); + int filterBandwidth = this._controlInterface.FilterBandwidth; + int rFBandwidth = this._controlInterface.RFBandwidth; + long frequency = this._controlInterface.Frequency; + long num = frequency - filterBandwidth / 2; + long num2 = frequency + filterBandwidth / 2; + float num3 = -120000f; + float num4 = 0f; + float num5 = (float)(rFBandwidth / this._fftSpectrum.Length); + for (long num6 = num; num6 <= num2; num6 += (long)num5) + { + num4 = (float)(int)this._fftSpectrum[this.convertFrequencyToBin(num6)]; + if (num4 > num3) + { + num3 = num4; + } + } + return (float)Math.Round((double)(0f - 0.509803951f * (255f - num3)), 1); + } + } + + private int convertFrequencyToBin(long frequency) + { + int result = 0; + long centerFrequency = this._controlInterface.CenterFrequency; + int rFBandwidth = this._controlInterface.RFBandwidth; + long num = centerFrequency - rFBandwidth / 2; + long num2 = centerFrequency + rFBandwidth / 2; + if (frequency > num && frequency < num2) + { + float num3 = (float)(rFBandwidth / this._controlInterface.FFTResolution); + result = (int)((float)(frequency - num) / num3); + } + return result; + } + + private void doTrunkTuneTimerLoop() + { + if (this.stickyTuneTrunkingCheckbox.Checked && this.isRetuningDelayed() && this.shouldWeRetune) + { + return; + } + if (this.trunkingTuneToControlChannel.Checked && this.trunkingControlChannelFreq.Value > 0m) + { + if (this._sdrsharp_rev_1133) + { + if (this.isSourceTunable) + { + this._controlInterface.CenterFrequency = (long)this.trunkingControlChannelFreq.Value - 100000; + } + } + else + { + try + { + this._controlInterface.CenterFrequency = (long)this.trunkingControlChannelFreq.Value - 100000; + } + catch (Exception ex) + { + this.DoNothing(ex); + } + } + this._controlInterface.Frequency = (long)this.trunkingControlChannelFreq.Value; + this._controlInterface.AudioGain = this._cachedAudioGain; + this.delayRetune(); + } + } + + private void WriteLog(string txtToWrite, string filePath) + { + try + { + using (StreamWriter streamWriter = new StreamWriter(filePath)) + { + streamWriter.Write(txtToWrite.ToString()); + } + } + catch (Exception ex) + { + this.DoNothing(ex); + } + } + + private void writeSingleLog() + { + if (this.singleLogFilePath.Text != null && this.loggingEnabled) + { + string text = LogParser.ParseLogStyle(this._trunkLoggerData, null, null, null, false); + if (text != null) + { + this.versionAndStatus.Text = text; + this.WriteLog(text, this.singleLogFilePath.Text); + } + } + } + + private void PrepareLog() + { + this._trunkLoggerData = null; + this._trunkLoggerData = new TrunkerLogger(); + } + + private void getLogData() + { + this.PrepareLog(); + try + { + using (StreamReader streamReader = new StreamReader(this.uniTrunkerHomeDirectory.Text + "\\" + this._trunkingFileName)) + { + string text; + while ((text = streamReader.ReadLine()) != null) + { + try + { + string[] array = text.Split('\t'); + if (!"frequency".Equals(array[2])) + { + decimal currentFrequency = Convert.ToDecimal(array[2]); + int num = array.Count(); + this._trunkLoggerData.currentFrequency = currentFrequency; + if (num >= 1) + { + this._trunkLoggerData.currentAction = array[0]; + } + if (num >= 2) + { + this._trunkLoggerData.currentReceiver = array[1]; + } + if (num >= 4) + { + this._trunkLoggerData.currentTrunkgroup = array[3]; + } + if (num >= 5) + { + this._trunkLoggerData.currentTrunklabel = array[4]; + } + if (num >= 6) + { + this._trunkLoggerData.currentSourcegroup = array[5]; + } + if (num >= 7) + { + this._trunkLoggerData.currentSourcelabel = array[6]; + } + if ("Park".Equals(this._trunkLoggerData.currentAction)) + { + this.unitrunkerIsParked = true; + } + else + { + this.unitrunkerIsParked = false; + } + } + } + catch (Exception ex) + { + this.DoNothing(ex); + } + } + } + } + catch (Exception ex2) + { + this.DoNothing(ex2); + } + } + + private void tuneToTrunkingFile() + { + if (!"Listen".Equals(this._trunkLoggerData.currentAction) && !"Park".Equals(this._trunkLoggerData.currentAction)) + { + return; + } + if (this.singleLogFileEnabled.Checked) + { + this.writeSingleLog(); + } + if (this._sdrsharp_rev_1133) + { + if (this.isSourceTunable) + { + this._controlInterface.CenterFrequency = (long)this._trunkLoggerData.currentFrequency - 100000; + } + } + else + { + try + { + this._controlInterface.CenterFrequency = (long)this._trunkLoggerData.currentFrequency - 100000; + } + catch (Exception ex) + { + this.DoNothing(ex); + } + } + this._controlInterface.Frequency = (long)this._trunkLoggerData.currentFrequency; + this.delayRetune(); + if (this.muteWhileParkedCheckbox.Checked) + { + if ("Listen".Equals(this._trunkLoggerData.currentAction)) + { + this._controlInterface.AudioGain = this._cachedAudioGain; + } + else if ("Park".Equals(this._trunkLoggerData.currentAction)) + { + this._controlInterface.AudioGain = 15; + } + } + } + + private void DoNothing(Exception ex) + { + } + + private void initTrunkingFileWatcher() + { + if (this._fileWatcher == null) + { + this._fileWatcher = new FileSystemWatcher(); + this._fileWatcher.Path = this.uniTrunkerHomeDirectory.Text; + this._fileWatcher.NotifyFilter = NotifyFilters.LastWrite; + this._fileWatcher.Filter = this._trunkingFileName; + this._fileWatcher.Changed += this.OnChanged; + } + this._fileWatcher.EnableRaisingEvents = true; + } + + private void OnChanged(object source, FileSystemEventArgs e) + { + this.getLogData(); + if (this.trunkingEnabledCheckbox.Checked) + { + if (!(this.trunkingControlChannelFreq.Value == (decimal)this._controlInterface.Frequency) && this.stickyTuneTrunkingCheckbox.Checked && !this.shouldWeRetune) + { + return; + } + this.tuneToTrunkingFile(); + } + } + + private void trunkingEnabledCheckbox_CheckedChanged(object sender, EventArgs e) + { + if (this.unitrunkerConfigured) + { + if (this.trunkingEnabledCheckbox.Checked) + { + this.trunkingUnitrunkerBrowseButton.Enabled = false; + this._plugin.Bypass = false; + if (!string.IsNullOrEmpty(this.uniTrunkerHomeDirectory.Text)) + { + this.initTrunkingFileWatcher(); + try + { + this.getLogData(); + if (this.trunkingEnabledCheckbox.Checked && (this.trunkingControlChannelFreq.Value == (decimal)this._controlInterface.Frequency || !this.stickyTuneTrunkingCheckbox.Checked || this.shouldWeRetune)) + { + this.tuneToTrunkingFile(); + } + else + { + this.writeSingleLog(); + } + } + catch (Exception ex) + { + this.DoNothing(ex); + } + } + } + else + { + if (this._fileWatcher != null) + { + this._fileWatcher.EnableRaisingEvents = false; + this._fileWatcher.Dispose(); + this._fileWatcher = null; + } + if (this._retuneDelay != null) + { + this._retuneDelay.Stop(); + this._retuneDelay.Dispose(); + this._retuneDelay = null; + } + this._plugin.Bypass = true; + this.unitrunkerIsParked = false; + this.trunkingUnitrunkerBrowseButton.Enabled = true; + this.setVersion(); + } + this.trunkingTimer.Enabled = this.trunkingEnabledCheckbox.Checked; + this.WriteConfig(); + } + else if (!this.unitrunkerConfigureMessageDisplayed) + { + MessageBox.Show("Please set the Unitrunker directory below, and verify Remote.dll is in the Unitrunker directory.", "Please set Unitrunker Location", MessageBoxButtons.OK, MessageBoxIcon.Hand); + this.unitrunkerConfigureMessageDisplayed = true; + this.trunkingEnabledCheckbox.Checked = false; + } + else + { + this.unitrunkerConfigureMessageDisplayed = false; + } + } + + private void uniTrunkerHomeDirectory_TextChanged(object sender, EventArgs e) + { + if (this.checkUnitrunkerPath(this.uniTrunkerHomeDirectory.Text)) + { + this.initTrunkingFileWatcher(); + } + } + + private void trunkingLogFileButton_Click(object sender, EventArgs e) + { + SaveFileDialog saveFileDialog = new SaveFileDialog(); + saveFileDialog.FileName = "single.log"; + saveFileDialog.DefaultExt = "log"; + saveFileDialog.Filter = "Log File|*.log|Comma Seperated Value File|*.csv|Standard Text File|*.txt"; + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + this.singleLogFilePath.Text = saveFileDialog.FileName; + this.loggingConfigured = true; + this.WriteConfig(); + } + } + + private void trunkingUnitrunkerBrowseButton_Click(object sender, EventArgs e) + { + FolderBrowserDialog folderBrowserDialog; + do + { + folderBrowserDialog = new FolderBrowserDialog(); + if (folderBrowserDialog.ShowDialog() != DialogResult.OK) + { + return; + } + } + while (!this.checkUnitrunkerPath(folderBrowserDialog.SelectedPath)); + this.uniTrunkerHomeDirectory.Text = folderBrowserDialog.SelectedPath; + this.WriteConfig(); + } + + private void trunkingTimer_Tick(object sender, EventArgs e) + { + this.doTrunkTuneTimerLoop(); + } + + private void trunkingTuneToControlChannel_CheckedChanged(object sender, EventArgs e) + { + this.WriteConfig(); + } + + private void delayRetune() + { + if (this._retuneDelay == null) + { + this._retuneDelay = new System.Timers.Timer(1250.0); + this._retuneDelay.Elapsed += this._retuneDelay_Elapsed; + this._retuneDelay.Start(); + } + } + + private void _retuneDelay_Elapsed(object sender, ElapsedEventArgs e) + { + lock (this._retuneDelay) + { + if (this.shouldWeRetune && this.trunkingEnabledCheckbox.Checked) + { + this._retuneDelay.Stop(); + this._retuneDelay.Dispose(); + this._retuneDelay = null; + this.getLogData(); + this.tuneToTrunkingFile(); + } + } + } + + public unsafe void MuteBeeps(float* audioBuffer, int length) + { + string text = Environment.GetEnvironmentVariable("TEMP"); + if (text.Length <= 0) + { + text = "C:\\temp"; + } + StreamWriter streamWriter = new StreamWriter(text + "\\beeps6.csv", true); + if (this.muteEdacsBeep.Checked) + { + int num = 1200; + int num2 = 0; + while (num2 < length - num) + { + if (this._beepDelay-- < 0) + { + this._controlInterface.AudioGain = 30; + } + UnsafeBuffer unsafeBuffer = UnsafeBuffer.Create(num, 4); + float* ptr = (float*)(void*)unsafeBuffer; + for (int i = 0; i < num; i++) + { + if (num2 >= length) + { + break; + } + ptr[i] = audioBuffer[num2 * 2]; + num2++; + } + int value = 48000; + float mag = Goertzel.GetMag((double)Convert.ToInt32(value), 4800, ptr, num); + float mag2 = Goertzel.GetMag((double)Convert.ToInt32(value), 3000, ptr, num); + streamWriter.WriteLine($"{mag},{mag2},{num2}"); + if ((double)mag > 0.01) + { + this._controlInterface.AudioGain = 15; + this._beepDelay = 2; + } + } + } + streamWriter.Flush(); + streamWriter.Close(); + } + + private void stickyTuneTrunkingCheckbox_CheckedChanged(object sender, EventArgs e) + { + this.WriteConfig(); + if (!this.stickyTuneTrunkingCheckbox.Checked && this.trunkingEnabledCheckbox.Checked) + { + this.tuneToTrunkingFile(); + } + } + + private void singleLogFileEnabled_CheckedChanged(object sender, EventArgs e) + { + if (this.loggingConfigured && this.singleLogFilePath.Text != null) + { + if (this.singleLogFileEnabled.Checked) + { + this.trunkingLogFileButton.Enabled = false; + this.loggingEnabled = true; + if (this.trunkingEnabledCheckbox.Checked) + { + if (this._trunkLoggerData == null) + { + this.getLogData(); + } + this.writeSingleLog(); + } + } + else + { + this.trunkingLogFileButton.Enabled = true; + this.loggingEnabled = false; + this.versionAndStatus.Text = "v" + this._version; + } + this.WriteConfig(); + } + else if (!this.loggingSystemMessageDisplayed) + { + MessageBox.Show("Please set the log file location.", "Where do I write the log?", MessageBoxButtons.OK, MessageBoxIcon.Hand); + this.loggingSystemMessageDisplayed = true; + this.singleLogFileEnabled.Checked = false; + } + else + { + this.loggingSystemMessageDisplayed = false; + } + } + + private void trunkingControlChannelFreq_ValueChanged(object sender, EventArgs e) + { + this.WriteConfig(); + } + + private void muteWhileParkedCheckbox_CheckedChanged(object sender, EventArgs e) + { + this.WriteConfig(); + } + + private void muteEdacsBeep_CheckedChanged(object sender, EventArgs e) + { + this.WriteConfig(); + } + + private void logFormatStyle_SelectedIndexChanged(object sender, EventArgs e) + { + this.WriteConfig(); + } + + private void spawnLogDialog_Click(object sender, EventArgs e) + { + LogOptions logOptions = new LogOptions(); + logOptions.FormClosed += this.logStyleFormClosed; + logOptions.ShowDialog(); + } + + private void logStyleFormClosed(object sender, FormClosedEventArgs e) + { + this._trunkerConfig = this._settingsPersister.readConfig(); + if (this.singleLogFileEnabled.Checked) + { + this.writeSingleLog(); + } + } + + private void retuneDelayMethod_SelectedIndexChanged(object sender, EventArgs e) + { + if (!this.retuneDelayMethod.DroppedDown) + { + if (this.retuneDelayMethod.SelectedIndex == this._trunkerConfig[0].delayRetuneMethod && !this.initializing) + { + return; + } + this.resizeForDelayMethod(); + this.WriteConfig(); + } + } + + private void resizeForDelayMethod() + { + int num = 40; + if (this.retuneDelayMethod.SelectedIndex == 0) + { + this.retuneMinSignalLabel.Visible = false; + this.retuneMinSignalLevel.Visible = false; + this.currentDbLabel.Visible = false; + this.currentDbValue.Visible = false; + this.mainPanel.Height = this.mainPanel.Height - num; + this.panelForOptionsAfterRetune.Top = this.panelForOptionsAfterRetune.Top - num; + } + if (this.retuneDelayMethod.SelectedIndex == 1) + { + if (!this.initializing) + { + this.mainPanel.Height = this.mainPanel.Height + num; + this.panelForOptionsAfterRetune.Top = this.panelForOptionsAfterRetune.Top + num; + } + this.retuneMinSignalLabel.Visible = true; + this.retuneMinSignalLevel.Visible = true; + this.currentDbLabel.Visible = true; + this.currentDbValue.Visible = true; + } + } + + private void retuneMinSignalLevel_ValueChanged(object sender, EventArgs e) + { + this.WriteConfig(); + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + this.trunkingControlChannelFreq = new NumericUpDown(); + this.lblTrunkingLogFile = new Label(); + this.lbltrunkingControlChannelFreq = new Label(); + this.trunkingTuneToControlChannel = new CheckBox(); + this.trunkingEnabledCheckbox = new CheckBox(); + this.stickyTuneTrunkingCheckbox = new CheckBox(); + this.uniTrunkerHomeDirectory = new TextBox(); + this.trunkingUnitrunkerBrowseButton = new Button(); + this.mainPanel = new Panel(); + this.spawnLogDialog = new Button(); + this.label2 = new Label(); + this.versionAndStatus = new Label(); + this.singleLogFileEnabled = new CheckBox(); + this.singleLogFilePath = new TextBox(); + this.trunkingLogFileButton = new Button(); + this.label1 = new Label(); + this.trunkingTimer = new System.Windows.Forms.Timer(this.components); + this.retuneDelayMethod = new ComboBox(); + this.label3 = new Label(); + this.retuneMinSignalLevel = new NumericUpDown(); + this.retuneMinSignalLabel = new Label(); + this.panelForOptionsAfterRetune = new Panel(); + this.muteEdacsBeep = new CheckBox(); + this.muteWhileParkedCheckbox = new CheckBox(); + this.currentDbLabel = new Label(); + this.currentDbValue = new Label(); + ((ISupportInitialize)this.trunkingControlChannelFreq).BeginInit(); + this.mainPanel.SuspendLayout(); + ((ISupportInitialize)this.retuneMinSignalLevel).BeginInit(); + this.panelForOptionsAfterRetune.SuspendLayout(); + base.SuspendLayout(); + this.trunkingControlChannelFreq.Location = new Point(88, 365); + this.trunkingControlChannelFreq.Maximum = new decimal(new int[4] + { + -1486618624, + 232830643, + 0, + 0 + }); + this.trunkingControlChannelFreq.Name = "trunkingControlChannelFreq"; + this.trunkingControlChannelFreq.Size = new Size(104, 20); + this.trunkingControlChannelFreq.TabIndex = 39; + this.trunkingControlChannelFreq.TextAlign = HorizontalAlignment.Right; + this.trunkingControlChannelFreq.Visible = false; + this.trunkingControlChannelFreq.ValueChanged += this.trunkingControlChannelFreq_ValueChanged; + this.lblTrunkingLogFile.AutoSize = true; + this.lblTrunkingLogFile.Location = new Point(2, 53); + this.lblTrunkingLogFile.Name = "lblTrunkingLogFile"; + this.lblTrunkingLogFile.Size = new Size(135, 13); + this.lblTrunkingLogFile.TabIndex = 41; + this.lblTrunkingLogFile.Text = "UniTrunker Install Directory"; + this.lbltrunkingControlChannelFreq.AutoSize = true; + this.lbltrunkingControlChannelFreq.Location = new Point(29, 367); + this.lbltrunkingControlChannelFreq.Name = "lbltrunkingControlChannelFreq"; + this.lbltrunkingControlChannelFreq.Size = new Size(57, 13); + this.lbltrunkingControlChannelFreq.TabIndex = 47; + this.lbltrunkingControlChannelFreq.Text = "Frequency"; + this.lbltrunkingControlChannelFreq.Visible = false; + this.trunkingTuneToControlChannel.AutoSize = true; + this.trunkingTuneToControlChannel.Location = new Point(5, 341); + this.trunkingTuneToControlChannel.Name = "trunkingTuneToControlChannel"; + this.trunkingTuneToControlChannel.Size = new Size(141, 17); + this.trunkingTuneToControlChannel.TabIndex = 46; + this.trunkingTuneToControlChannel.Text = "Tune to Control Channel"; + this.trunkingTuneToControlChannel.UseVisualStyleBackColor = true; + this.trunkingTuneToControlChannel.Visible = false; + this.trunkingTuneToControlChannel.CheckedChanged += this.trunkingTuneToControlChannel_CheckedChanged; + this.trunkingEnabledCheckbox.AutoSize = true; + this.trunkingEnabledCheckbox.Location = new Point(4, 14); + this.trunkingEnabledCheckbox.Name = "trunkingEnabledCheckbox"; + this.trunkingEnabledCheckbox.Size = new Size(65, 17); + this.trunkingEnabledCheckbox.TabIndex = 38; + this.trunkingEnabledCheckbox.Text = "Enabled"; + this.trunkingEnabledCheckbox.UseVisualStyleBackColor = true; + this.trunkingEnabledCheckbox.CheckedChanged += this.trunkingEnabledCheckbox_CheckedChanged; + this.stickyTuneTrunkingCheckbox.AutoSize = true; + this.stickyTuneTrunkingCheckbox.Location = new Point(4, 177); + this.stickyTuneTrunkingCheckbox.Name = "stickyTuneTrunkingCheckbox"; + this.stickyTuneTrunkingCheckbox.Size = new Size(194, 17); + this.stickyTuneTrunkingCheckbox.TabIndex = 43; + this.stickyTuneTrunkingCheckbox.Text = "Delay Re-Tune Until Call Completes"; + this.stickyTuneTrunkingCheckbox.UseVisualStyleBackColor = true; + this.stickyTuneTrunkingCheckbox.CheckedChanged += this.stickyTuneTrunkingCheckbox_CheckedChanged; + this.uniTrunkerHomeDirectory.Enabled = false; + this.uniTrunkerHomeDirectory.Location = new Point(3, 70); + this.uniTrunkerHomeDirectory.Name = "uniTrunkerHomeDirectory"; + this.uniTrunkerHomeDirectory.Size = new Size(168, 20); + this.uniTrunkerHomeDirectory.TabIndex = 40; + this.uniTrunkerHomeDirectory.TextChanged += this.uniTrunkerHomeDirectory_TextChanged; + this.trunkingUnitrunkerBrowseButton.Location = new Point(171, 69); + this.trunkingUnitrunkerBrowseButton.Name = "trunkingUnitrunkerBrowseButton"; + this.trunkingUnitrunkerBrowseButton.Size = new Size(35, 23); + this.trunkingUnitrunkerBrowseButton.TabIndex = 42; + this.trunkingUnitrunkerBrowseButton.Text = "Set"; + this.trunkingUnitrunkerBrowseButton.UseVisualStyleBackColor = true; + this.trunkingUnitrunkerBrowseButton.Click += this.trunkingUnitrunkerBrowseButton_Click; + this.mainPanel.Controls.Add(this.currentDbLabel); + this.mainPanel.Controls.Add(this.panelForOptionsAfterRetune); + this.mainPanel.Controls.Add(this.currentDbValue); + this.mainPanel.Controls.Add(this.retuneMinSignalLabel); + this.mainPanel.Controls.Add(this.retuneMinSignalLevel); + this.mainPanel.Controls.Add(this.retuneDelayMethod); + this.mainPanel.Controls.Add(this.spawnLogDialog); + this.mainPanel.Controls.Add(this.label2); + this.mainPanel.Controls.Add(this.versionAndStatus); + this.mainPanel.Controls.Add(this.singleLogFileEnabled); + this.mainPanel.Controls.Add(this.singleLogFilePath); + this.mainPanel.Controls.Add(this.trunkingLogFileButton); + this.mainPanel.Controls.Add(this.label1); + this.mainPanel.Controls.Add(this.trunkingControlChannelFreq); + this.mainPanel.Controls.Add(this.uniTrunkerHomeDirectory); + this.mainPanel.Controls.Add(this.trunkingUnitrunkerBrowseButton); + this.mainPanel.Controls.Add(this.stickyTuneTrunkingCheckbox); + this.mainPanel.Controls.Add(this.label3); + this.mainPanel.Controls.Add(this.lblTrunkingLogFile); + this.mainPanel.Controls.Add(this.trunkingEnabledCheckbox); + this.mainPanel.Controls.Add(this.lbltrunkingControlChannelFreq); + this.mainPanel.Controls.Add(this.trunkingTuneToControlChannel); + this.mainPanel.Location = new Point(7, 14); + this.mainPanel.Name = "mainPanel"; + this.mainPanel.Size = new Size(214, 315); + this.mainPanel.TabIndex = 49; + this.spawnLogDialog.Location = new Point(107, 141); + this.spawnLogDialog.Name = "spawnLogDialog"; + this.spawnLogDialog.Size = new Size(99, 22); + this.spawnLogDialog.TabIndex = 57; + this.spawnLogDialog.Text = "Show Options"; + this.spawnLogDialog.UseVisualStyleBackColor = true; + this.spawnLogDialog.Click += this.spawnLogDialog_Click; + this.label2.AutoSize = true; + this.label2.Location = new Point(2, 145); + this.label2.Name = "label2"; + this.label2.Size = new Size(60, 13); + this.label2.TabIndex = 56; + this.label2.Text = "Log Format"; + this.versionAndStatus.Location = new Point(71, 15); + this.versionAndStatus.Name = "versionAndStatus"; + this.versionAndStatus.RightToLeft = RightToLeft.No; + this.versionAndStatus.Size = new Size(135, 30); + this.versionAndStatus.TabIndex = 54; + this.versionAndStatus.TextAlign = ContentAlignment.TopRight; + this.singleLogFileEnabled.AutoSize = true; + this.singleLogFileEnabled.CheckAlign = ContentAlignment.MiddleRight; + this.singleLogFileEnabled.Location = new Point(147, 97); + this.singleLogFileEnabled.Name = "singleLogFileEnabled"; + this.singleLogFileEnabled.Size = new Size(59, 17); + this.singleLogFileEnabled.TabIndex = 53; + this.singleLogFileEnabled.Text = "Enable"; + this.singleLogFileEnabled.UseVisualStyleBackColor = true; + this.singleLogFileEnabled.CheckedChanged += this.singleLogFileEnabled_CheckedChanged; + this.singleLogFilePath.Enabled = false; + this.singleLogFilePath.Location = new Point(3, 115); + this.singleLogFilePath.Name = "singleLogFilePath"; + this.singleLogFilePath.Size = new Size(168, 20); + this.singleLogFilePath.TabIndex = 50; + this.trunkingLogFileButton.Location = new Point(171, 114); + this.trunkingLogFileButton.Name = "trunkingLogFileButton"; + this.trunkingLogFileButton.Size = new Size(35, 22); + this.trunkingLogFileButton.TabIndex = 52; + this.trunkingLogFileButton.Text = "Set"; + this.trunkingLogFileButton.UseVisualStyleBackColor = true; + this.trunkingLogFileButton.Click += this.trunkingLogFileButton_Click; + this.label1.AutoSize = true; + this.label1.Location = new Point(2, 98); + this.label1.Name = "label1"; + this.label1.Size = new Size(111, 13); + this.label1.TabIndex = 51; + this.label1.Text = "Single Log File Output"; + this.trunkingTimer.Tick += this.trunkingTimer_Tick; + this.retuneDelayMethod.DropDownStyle = ComboBoxStyle.DropDownList; + this.retuneDelayMethod.FormattingEnabled = true; + this.retuneDelayMethod.Items.AddRange(new object[2] + { + "Squelch", + "Signal" + }); + this.retuneDelayMethod.Location = new Point(143, 194); + this.retuneDelayMethod.Name = "retuneDelayMethod"; + this.retuneDelayMethod.Size = new Size(62, 21); + this.retuneDelayMethod.TabIndex = 65; + this.retuneDelayMethod.SelectedIndexChanged += this.retuneDelayMethod_SelectedIndexChanged; + this.label3.Location = new Point(3, 199); + this.label3.Name = "label3"; + this.label3.Size = new Size(134, 13); + this.label3.TabIndex = 41; + this.label3.Text = "Delay detection method:"; + this.label3.TextAlign = ContentAlignment.TopRight; + this.retuneMinSignalLevel.DecimalPlaces = 1; + this.retuneMinSignalLevel.Increment = new decimal(new int[4] + { + 1, + 0, + 0, + 65536 + }); + this.retuneMinSignalLevel.Location = new Point(143, 221); + NumericUpDown numericUpDown = this.retuneMinSignalLevel; + int[] bits = new int[4]; + numericUpDown.Maximum = new decimal(bits); + this.retuneMinSignalLevel.Minimum = new decimal(new int[4] + { + 130, + 0, + 0, + -2147483648 + }); + this.retuneMinSignalLevel.Name = "retuneMinSignalLevel"; + this.retuneMinSignalLevel.Size = new Size(62, 20); + this.retuneMinSignalLevel.TabIndex = 66; + this.retuneMinSignalLevel.TextAlign = HorizontalAlignment.Right; + this.retuneMinSignalLevel.Visible = false; + this.retuneMinSignalLevel.ValueChanged += this.retuneMinSignalLevel_ValueChanged; + this.retuneMinSignalLabel.Location = new Point(2, 223); + this.retuneMinSignalLabel.Name = "retuneMinSignalLabel"; + this.retuneMinSignalLabel.Size = new Size(135, 13); + this.retuneMinSignalLabel.TabIndex = 67; + this.retuneMinSignalLabel.Text = "Minimum Signal (dB):"; + this.retuneMinSignalLabel.TextAlign = ContentAlignment.TopRight; + this.retuneMinSignalLabel.Visible = false; + this.panelForOptionsAfterRetune.Controls.Add(this.muteEdacsBeep); + this.panelForOptionsAfterRetune.Controls.Add(this.muteWhileParkedCheckbox); + this.panelForOptionsAfterRetune.Location = new Point(0, 262); + this.panelForOptionsAfterRetune.Name = "panelForOptionsAfterRetune"; + this.panelForOptionsAfterRetune.Size = new Size(214, 49); + this.panelForOptionsAfterRetune.TabIndex = 68; + this.muteEdacsBeep.AutoSize = true; + this.muteEdacsBeep.Enabled = false; + this.muteEdacsBeep.Location = new Point(4, 28); + this.muteEdacsBeep.Name = "muteEdacsBeep"; + this.muteEdacsBeep.Size = new Size(190, 17); + this.muteEdacsBeep.TabIndex = 51; + this.muteEdacsBeep.Text = "Mute EDACS Tones (Not yet fixed)"; + this.muteEdacsBeep.UseVisualStyleBackColor = true; + this.muteWhileParkedCheckbox.AutoSize = true; + this.muteWhileParkedCheckbox.Enabled = false; + this.muteWhileParkedCheckbox.Location = new Point(4, 4); + this.muteWhileParkedCheckbox.Name = "muteWhileParkedCheckbox"; + this.muteWhileParkedCheckbox.Size = new Size(185, 17); + this.muteWhileParkedCheckbox.TabIndex = 50; + this.muteWhileParkedCheckbox.Text = "Mute While Parked (Not yet fixed)"; + this.muteWhileParkedCheckbox.UseVisualStyleBackColor = true; + this.currentDbLabel.Location = new Point(3, 246); + this.currentDbLabel.Name = "currentDbLabel"; + this.currentDbLabel.Size = new Size(134, 13); + this.currentDbLabel.TabIndex = 69; + this.currentDbLabel.Text = "Current dB Level:"; + this.currentDbLabel.TextAlign = ContentAlignment.TopRight; + this.currentDbLabel.Visible = false; + this.currentDbValue.Location = new Point(143, 246); + this.currentDbValue.Name = "currentDbValue"; + this.currentDbValue.Size = new Size(62, 13); + this.currentDbValue.TabIndex = 67; + this.currentDbValue.Text = "Off"; + this.currentDbValue.TextAlign = ContentAlignment.TopRight; + this.currentDbValue.Visible = false; + base.AccessibleDescription = ""; + base.AccessibleName = "Trunker"; + base.AccessibleRole = AccessibleRole.Pane; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.mainPanel); + base.Name = "TrunkerPanel"; + base.Size = new Size(226, 332); + base.Tag = "Trunker"; + ((ISupportInitialize)this.trunkingControlChannelFreq).EndInit(); + this.mainPanel.ResumeLayout(false); + this.mainPanel.PerformLayout(); + ((ISupportInitialize)this.retuneMinSignalLevel).EndInit(); + this.panelForOptionsAfterRetune.ResumeLayout(false); + this.panelForOptionsAfterRetune.PerformLayout(); + base.ResumeLayout(false); + } + } +} diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerPlugin.cs b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerPlugin.cs new file mode 100644 index 0000000..de3f8eb --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerPlugin.cs @@ -0,0 +1,67 @@ +using SDRSharp.Common; +using System.Windows.Forms; + +namespace SDRSharp.Trunker +{ + public class TrunkerPlugin : ISharpPlugin + { + private const string _displayName = "Trunker"; + + private ISharpControl _controlInterface; + + private TrunkerPanel _trunkerPanel; + + private double _sampleRate; + + private bool _bypass = true; + + public bool Bypass + { + get + { + return this._bypass; + } + set + { + this._bypass = value; + } + } + + public bool HasGui => true; + + public UserControl GuiControl => this._trunkerPanel; + + public string DisplayName => "Trunker"; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + } + } + + public void Initialize(ISharpControl control) + { + this._controlInterface = control; + this._trunkerPanel = new TrunkerPanel(this._controlInterface, this); + this._controlInterface.RegisterStreamHook((object)this); + } + + public unsafe void Process(float* audioBuffer, int length) + { + if (!this._bypass) + { + this._trunkerPanel.MuteBeeps(audioBuffer, length); + } + } + + public void Close() + { + } + } +} diff --git a/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerSettings.cs b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerSettings.cs new file mode 100644 index 0000000..179773e --- /dev/null +++ b/Plugins/SDRSharper.Trunker/SDRSharp.Trunker/TrunkerSettings.cs @@ -0,0 +1,242 @@ +namespace SDRSharp.Trunker +{ + public class TrunkerSettings + { + private string _unitrunkerPath; + + private string _logPath; + + private bool _enabled; + + private bool _loggingEnabled; + + private bool _delayRetune; + + private bool _tuneControl; + + private bool _muteEDACS; + + private bool _muteControl; + + private bool _ignoreParked; + + private int _delayRetuneMethod; + + private decimal _controlFreq; + + private decimal _delayRetuneMinimumSignal; + + private string _logStyle; + + private string _parkedString; + + private string _unknownSrcString; + + public bool isEnabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public bool ignoreParked + { + get + { + return this._ignoreParked; + } + set + { + this._ignoreParked = value; + } + } + + public string unitrunkerPath + { + get + { + return this._unitrunkerPath; + } + set + { + this._unitrunkerPath = value; + } + } + + public string parkedStr + { + get + { + return this._parkedString; + } + set + { + this._parkedString = value; + } + } + + public string unknownSrcStr + { + get + { + return this._unknownSrcString; + } + set + { + this._unknownSrcString = value; + } + } + + public string logStyle + { + get + { + return this._logStyle; + } + set + { + this._logStyle = value; + } + } + + public string logPath + { + get + { + return this._logPath; + } + set + { + this._logPath = value; + } + } + + public bool isLoggingEnabled + { + get + { + return this._loggingEnabled; + } + set + { + this._loggingEnabled = value; + } + } + + public bool isDelayRetuneEnabled + { + get + { + return this._delayRetune; + } + set + { + this._delayRetune = value; + } + } + + public bool isControlAutotuneEnabled + { + get + { + return this._tuneControl; + } + set + { + this._tuneControl = value; + } + } + + public bool isMuteEDACSEnabled + { + get + { + return this._muteEDACS; + } + set + { + this._muteEDACS = value; + } + } + + public bool isMuteControlEnabled + { + get + { + return this._muteControl; + } + set + { + this._muteControl = value; + } + } + + public decimal controlFreq + { + get + { + return this._controlFreq; + } + set + { + this._controlFreq = value; + } + } + + public int delayRetuneMethod + { + get + { + return this._delayRetuneMethod; + } + set + { + this._delayRetuneMethod = value; + } + } + + public decimal delayRetuneMinimumSignal + { + get + { + return this._delayRetuneMinimumSignal; + } + set + { + this._delayRetuneMinimumSignal = value; + } + } + + public TrunkerSettings() + { + } + + public TrunkerSettings(TrunkerSettings trunkerSettings) + { + this._enabled = trunkerSettings._enabled; + this._ignoreParked = trunkerSettings._ignoreParked; + this._parkedString = trunkerSettings._parkedString; + this._unknownSrcString = trunkerSettings._unknownSrcString; + this._unitrunkerPath = trunkerSettings._unitrunkerPath; + this._logPath = trunkerSettings._logPath; + this._loggingEnabled = trunkerSettings._loggingEnabled; + this._delayRetune = trunkerSettings._delayRetune; + this._delayRetuneMethod = trunkerSettings._delayRetuneMethod; + this._delayRetuneMinimumSignal = trunkerSettings._delayRetuneMinimumSignal; + this._tuneControl = trunkerSettings._tuneControl; + this._muteEDACS = trunkerSettings._muteEDACS; + this._muteControl = trunkerSettings._muteControl; + this._controlFreq = trunkerSettings._controlFreq; + this._logStyle = trunkerSettings._logStyle; + } + + public void settingsExist() + { + } + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/Properties/AssemblyInfo.cs b/Plugins/SDRSharper.WaveRecorder/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b68d663 --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/Properties/AssemblyInfo.cs @@ -0,0 +1,21 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Security.Permissions; + +[assembly: AssemblyCopyright("Copyright © Ian Gilmour 2012")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SDR#")] +[assembly: AssemblyTitle("WAV Recorder Plugin for SDR#")] +[assembly: AssemblyTrademark("")] +[assembly: ComVisible(false)] +[assembly: Guid("20600a3f-d333-446a-bb1a-a74de8122045")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: CompilationRelaxations(8)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("1.0.0.0")] diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder.csproj b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder.csproj new file mode 100644 index 0000000..37d69b3 --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder.csproj @@ -0,0 +1,63 @@ + + + + {144A94D9-6FD2-49BD-A860-E9D28EFC5477} + Debug + x86 + Library + SDRSharp.WavRecorder + v2.0 + 4 + True + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + + C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Common.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Controls.dll + + + C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll + + + + + + + + + UserControl + + + + + + + + + \ No newline at end of file diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingAudioProcessor.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingAudioProcessor.cs new file mode 100644 index 0000000..517cd9a --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingAudioProcessor.cs @@ -0,0 +1,45 @@ +using SDRSharp.Radio; + +namespace SDRSharp.WavRecorder +{ + public class RecordingAudioProcessor : IRealProcessor, IBaseProcessor + { + public unsafe delegate void AudioReadyDelegate(float* audio, int length); + + private bool _bypass; + + private double _sampleRate; + + public bool Enabled + { + get + { + return !this._bypass; + } + set + { + this._bypass = !value; + } + } + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + } + } + + public event AudioReadyDelegate AudioReady; + + public unsafe void Process(float* audio, int length) + { + AudioReadyDelegate audioReady = this.AudioReady; + audioReady?.Invoke(audio, length); + } + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingIQObserver.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingIQObserver.cs new file mode 100644 index 0000000..14f5d4d --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingIQObserver.cs @@ -0,0 +1,48 @@ +using SDRSharp.Radio; + +namespace SDRSharp.WavRecorder +{ + public class RecordingIQObserver : IIQProcessor, IBaseProcessor + { + public unsafe delegate void IQReadyDelegate(Complex* buffer, int length); + + private volatile bool _enabled; + + private double _sampleRate; + + public bool Enabled + { + get + { + return this._enabled; + } + set + { + this._enabled = value; + } + } + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + } + } + + public event IQReadyDelegate IQReady; + + public unsafe void Process(Complex* buffer, int length) + { + IQReadyDelegate iQReady = this.IQReady; + if (iQReady != null) + { + this.IQReady(buffer, length); + } + } + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingMode.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingMode.cs new file mode 100644 index 0000000..2f15c34 --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingMode.cs @@ -0,0 +1,8 @@ +namespace SDRSharp.WavRecorder +{ + public enum RecordingMode + { + Baseband, + Audio + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingPanel.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingPanel.cs new file mode 100644 index 0000000..d2331a0 --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/RecordingPanel.cs @@ -0,0 +1,500 @@ +using SDRSharp.Common; +using SDRSharp.Controls; +using SDRSharp.Radio; +using System; +using System.ComponentModel; +using System.Diagnostics; +using System.Drawing; +using System.IO; +using System.Windows.Forms; + +namespace SDRSharp.WavRecorder +{ + public class RecordingPanel : UserControl + { + private IContainer components; + + private Timer recDisplayTimer; + + private Label sampleFormatLbl; + + private Label label3; + + private Label label1; + + private gButton recBtn; + + private gButton audioCb; + + private gButton basebandCb; + + private gCombo sampleFormatCombo; + + private Panel panel1; + + private gButton butPath; + + private gTextBox txtPath; + + private gLabel skippedBufferCountLbl; + + private gLabel sizeLbl; + + private gLabel durationLbl; + + private gButton showBtn; + + private readonly ISharpControl _control; + + private readonly RecordingIQObserver _iqObserver = new RecordingIQObserver(); + + private readonly RecordingAudioProcessor _audioProcessor = new RecordingAudioProcessor(); + + private readonly SimpleRecorder _audioRecorder; + + private readonly SimpleRecorder _basebandRecorder; + + private WavSampleFormat _wavSampleFormat; + + private DateTime _startTime; + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + this.recDisplayTimer = new Timer(this.components); + this.sampleFormatLbl = new Label(); + this.label3 = new Label(); + this.label1 = new Label(); + this.panel1 = new Panel(); + this.skippedBufferCountLbl = new gLabel(); + this.sizeLbl = new gLabel(); + this.durationLbl = new gLabel(); + this.butPath = new gButton(); + this.txtPath = new gTextBox(); + this.recBtn = new gButton(); + this.sampleFormatCombo = new gCombo(); + this.audioCb = new gButton(); + this.basebandCb = new gButton(); + this.showBtn = new gButton(); + this.panel1.SuspendLayout(); + base.SuspendLayout(); + this.recDisplayTimer.Interval = 1000; + this.recDisplayTimer.Tick += this.recDisplayTimer_Tick; + this.sampleFormatLbl.ForeColor = Color.Orange; + this.sampleFormatLbl.Location = new Point(0, 12); + this.sampleFormatLbl.Name = "sampleFormatLbl"; + this.sampleFormatLbl.Size = new Size(72, 13); + this.sampleFormatLbl.TabIndex = 5; + this.sampleFormatLbl.Text = "Format"; + this.label3.ForeColor = Color.Orange; + this.label3.Location = new Point(0, 36); + this.label3.Name = "label3"; + this.label3.Size = new Size(72, 13); + this.label3.TabIndex = 5; + this.label3.Text = "Length/size"; + this.label1.ForeColor = Color.Orange; + this.label1.Location = new Point(1, 58); + this.label1.Name = "label1"; + this.label1.Size = new Size(71, 13); + this.label1.TabIndex = 7; + this.label1.Text = "Dropped bufs"; + this.panel1.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.panel1.BackColor = Color.FromArgb(64, 64, 64); + this.panel1.Controls.Add(this.showBtn); + this.panel1.Controls.Add(this.skippedBufferCountLbl); + this.panel1.Controls.Add(this.sizeLbl); + this.panel1.Controls.Add(this.durationLbl); + this.panel1.Controls.Add(this.butPath); + this.panel1.Controls.Add(this.txtPath); + this.panel1.Controls.Add(this.recBtn); + this.panel1.Controls.Add(this.sampleFormatCombo); + this.panel1.Controls.Add(this.audioCb); + this.panel1.Controls.Add(this.label1); + this.panel1.Controls.Add(this.label3); + this.panel1.Controls.Add(this.basebandCb); + this.panel1.Controls.Add(this.sampleFormatLbl); + this.panel1.Location = new Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new Size(198, 166); + this.panel1.TabIndex = 13; + this.skippedBufferCountLbl.ForeColor = Color.Yellow; + this.skippedBufferCountLbl.Location = new Point(78, 57); + this.skippedBufferCountLbl.Name = "skippedBufferCountLbl"; + this.skippedBufferCountLbl.Size = new Size(52, 20); + this.skippedBufferCountLbl.TabIndex = 17; + this.skippedBufferCountLbl.Text = "0"; + this.sizeLbl.ForeColor = Color.Yellow; + this.sizeLbl.Location = new Point(132, 33); + this.sizeLbl.Name = "sizeLbl"; + this.sizeLbl.Size = new Size(59, 20); + this.sizeLbl.TabIndex = 16; + this.sizeLbl.Text = "2048.0 Mb"; + this.durationLbl.ForeColor = Color.Yellow; + this.durationLbl.Location = new Point(78, 33); + this.durationLbl.Name = "durationLbl"; + this.durationLbl.Size = new Size(52, 20); + this.durationLbl.TabIndex = 15; + this.durationLbl.Text = "00:00:00"; + this.butPath.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.butPath.Arrow = 0; + this.butPath.Checked = false; + this.butPath.Edge = 0.15f; + this.butPath.EndColor = Color.White; + this.butPath.EndFactor = 0.14f; + this.butPath.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.butPath.ForeColor = Color.Orange; + this.butPath.Location = new Point(174, 110); + this.butPath.Name = "butPath"; + this.butPath.NoBorder = false; + this.butPath.NoLed = true; + this.butPath.RadioButton = false; + this.butPath.Radius = 4; + this.butPath.RadiusB = 0; + this.butPath.Size = new Size(20, 20); + this.butPath.StartColor = Color.Black; + this.butPath.StartFactor = 0.3f; + this.butPath.TabIndex = 14; + this.butPath.Text = "..."; + this.butPath.CheckedChanged += this.butPath_CheckedChanged; + this.txtPath.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.txtPath.Location = new Point(3, 110); + this.txtPath.Name = "txtPath"; + this.txtPath.Size = new Size(165, 20); + this.txtPath.TabIndex = 13; + this.txtPath.Text = "path"; + this.recBtn.Arrow = 0; + this.recBtn.Checked = false; + this.recBtn.Edge = 0.15f; + this.recBtn.EndColor = Color.White; + this.recBtn.EndFactor = 0.14f; + this.recBtn.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.recBtn.ForeColor = Color.FromArgb(255, 128, 128); + this.recBtn.Location = new Point(143, 68); + this.recBtn.Name = "recBtn"; + this.recBtn.NoBorder = false; + this.recBtn.NoLed = false; + this.recBtn.RadioButton = false; + this.recBtn.Radius = 6; + this.recBtn.RadiusB = 0; + this.recBtn.Size = new Size(44, 30); + this.recBtn.StartColor = Color.Black; + this.recBtn.StartFactor = 0.3f; + this.recBtn.TabIndex = 11; + this.recBtn.Text = "Rec."; + this.recBtn.CheckedChanged += this.recBtn_Click; + this.sampleFormatCombo.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.sampleFormatCombo.BackColor = Color.FromArgb(64, 64, 64); + this.sampleFormatCombo.ForeColor = Color.Yellow; + this.sampleFormatCombo.Items.Add("8 Bit PCM"); + this.sampleFormatCombo.Items.Add("16 Bit PCM"); + this.sampleFormatCombo.Items.Add("32 Bit IEEE Float"); + this.sampleFormatCombo.Location = new Point(78, 9); + this.sampleFormatCombo.Name = "sampleFormatCombo"; + this.sampleFormatCombo.SelectedIndex = -1; + this.sampleFormatCombo.Size = new Size(117, 20); + this.sampleFormatCombo.TabIndex = 12; + this.sampleFormatCombo.Text = "gCombo1"; + this.sampleFormatCombo.ToolTip = null; + this.sampleFormatCombo.SelectedIndexChanged += this.sampleFormatCombo_SelectedIndexChanged; + this.audioCb.Arrow = 99; + this.audioCb.Checked = false; + this.audioCb.Edge = 0.15f; + this.audioCb.EndColor = Color.White; + this.audioCb.EndFactor = 0.14f; + this.audioCb.ForeColor = Color.Orange; + this.audioCb.Location = new Point(75, 84); + this.audioCb.Name = "audioCb"; + this.audioCb.NoBorder = false; + this.audioCb.NoLed = false; + this.audioCb.RadioButton = false; + this.audioCb.Radius = 6; + this.audioCb.RadiusB = 0; + this.audioCb.Size = new Size(54, 20); + this.audioCb.StartColor = Color.Black; + this.audioCb.StartFactor = 0.3f; + this.audioCb.TabIndex = 10; + this.audioCb.Text = "Audio"; + this.basebandCb.Arrow = 99; + this.basebandCb.Checked = true; + this.basebandCb.Edge = 0.15f; + this.basebandCb.EndColor = Color.White; + this.basebandCb.EndFactor = 0.14f; + this.basebandCb.ForeColor = Color.Orange; + this.basebandCb.Location = new Point(10, 84); + this.basebandCb.Name = "basebandCb"; + this.basebandCb.NoBorder = false; + this.basebandCb.NoLed = false; + this.basebandCb.RadioButton = false; + this.basebandCb.Radius = 6; + this.basebandCb.RadiusB = 0; + this.basebandCb.Size = new Size(56, 20); + this.basebandCb.StartColor = Color.Black; + this.basebandCb.StartFactor = 0.3f; + this.basebandCb.TabIndex = 9; + this.basebandCb.Text = "B-band"; + this.showBtn.Arrow = 0; + this.showBtn.Checked = true; + this.showBtn.Edge = 0.15f; + this.showBtn.EndColor = Color.White; + this.showBtn.EndFactor = 0.14f; + this.showBtn.ForeColor = Color.Orange; + this.showBtn.Location = new Point(2, 137); + this.showBtn.Name = "showBtn"; + this.showBtn.NoBorder = false; + this.showBtn.NoLed = true; + this.showBtn.RadioButton = false; + this.showBtn.Radius = 6; + this.showBtn.RadiusB = 0; + this.showBtn.Size = new Size(40, 20); + this.showBtn.StartColor = Color.Black; + this.showBtn.StartFactor = 0.3f; + this.showBtn.TabIndex = 18; + this.showBtn.Text = "Show"; + this.showBtn.CheckedChanged += this.showBtn_CheckedChanged; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.panel1); + base.Name = "RecordingPanel"; + base.Size = new Size(198, 186); + this.panel1.ResumeLayout(false); + base.ResumeLayout(false); + } + + public RecordingPanel(ISharpControl control) + { + this.InitializeComponent(); + this._control = control; + this._audioProcessor.Enabled = false; + this._iqObserver.Enabled = false; + this._control.RegisterStreamHook(this._iqObserver, ProcessorType.RawIQ); + this._control.RegisterStreamHook(this._audioProcessor, ProcessorType.FilteredAudioOutput); + this._audioRecorder = new SimpleRecorder(this._audioProcessor); + this._basebandRecorder = new SimpleRecorder(this._iqObserver); + this._control.PropertyChanged += this.PropertyChangedHandler; + this.InitializeGUI(); + this.ConfigureGUI(); + } + + private void PropertyChangedHandler(object sender, PropertyChangedEventArgs e) + { + string propertyName; + if ((propertyName = e.PropertyName) != null) + { + if (!(propertyName == "StartRadio")) + { + if (propertyName == "StopRadio") + { + if (this._audioRecorder.IsRecording) + { + this._audioRecorder.StopRecording(); + } + if (this._basebandRecorder.IsRecording) + { + this._basebandRecorder.StopRecording(); + } + this.ConfigureGUI(); + } + } + else + { + this.ConfigureGUI(); + } + } + } + + private void recBtn_Click(object sender, EventArgs e) + { + if (!this.recBtn.Checked) + { + if (this._audioRecorder.IsRecording) + { + this._audioRecorder.StopRecording(); + } + if (this._basebandRecorder.IsRecording) + { + this._basebandRecorder.StopRecording(); + } + } + else if (!this._basebandRecorder.IsRecording && !this._audioRecorder.IsRecording) + { + if (!Directory.Exists(this.txtPath.Text.Trim())) + { + if (this.recBtn.Checked) + { + MessageBox.Show("Folder '" + this.txtPath.Text + "' does not exist on this computer,\n please select another destination folder."); + } + } + else + { + this.PrepareRecorder(); + try + { + if (this.audioCb.Checked) + { + this._audioRecorder.StartRecording(); + } + if (this.basebandCb.Checked) + { + this._basebandRecorder.StartRecording(); + } + this._startTime = DateTime.Now; + } + catch (Exception ex) + { + MessageBox.Show("Unable to start recording", "Error=" + ex.Message, MessageBoxButtons.OK, MessageBoxIcon.Asterisk); + this._audioRecorder.StopRecording(); + this._basebandRecorder.StopRecording(); + } + } + } + this.ConfigureGUI(); + } + + private void recDisplayTimer_Tick(object sender, EventArgs e) + { + TimeSpan timeSpan = DateTime.Now - this._startTime; + float num = (float)this._audioRecorder.BytesWritten * 9.536743E-07f + (float)this._basebandRecorder.BytesWritten * 9.536743E-07f; + this.durationLbl.Text = $"{timeSpan.Hours:00}:{timeSpan.Minutes:00}:{timeSpan.Seconds:00}"; + this.sizeLbl.Text = $"{num:f1} Mb"; + this.skippedBufferCountLbl.Text = $"{this._basebandRecorder.SkippedBuffers + this._audioRecorder.SkippedBuffers}"; + bool flag = false; + if (this._audioRecorder.IsStreamFull) + { + this._audioRecorder.StopRecording(); + int num2 = this._basebandRecorder.FileName.LastIndexOf("AF"); + string text = this._basebandRecorder.FileName.Substring(num2 + 2, 2); + int num3 = (text == ".w") ? 1 : (int.Parse(text) + 1); + if (num3 <= 99) + { + this._basebandRecorder.FileName = this._basebandRecorder.FileName.Substring(0, num2 + 2) + num3.ToString("00") + ".wav"; + this._basebandRecorder.StartRecording(); + } + flag = true; + } + if (this._basebandRecorder.IsStreamFull) + { + this._basebandRecorder.StopRecording(); + int num4 = this._basebandRecorder.FileName.LastIndexOf("IQ"); + string text2 = this._basebandRecorder.FileName.Substring(num4 + 2, 2); + int num5 = (text2 == ".w") ? 1 : (int.Parse(text2) + 1); + if (num5 <= 99) + { + this._basebandRecorder.FileName = this._basebandRecorder.FileName.Substring(0, num4 + 2) + num5.ToString("00") + ".wav"; + this._basebandRecorder.StartRecording(); + } + flag = true; + } + if (flag) + { + this.ConfigureGUI(); + } + } + + private void sampleFormatCombo_SelectedIndexChanged(object sender, EventArgs e) + { + this._wavSampleFormat = (WavSampleFormat)this.sampleFormatCombo.SelectedIndex; + } + + private void InitializeGUI() + { + this.sampleFormatCombo.SelectedIndex = 1; + this.sampleFormatCombo_SelectedIndexChanged(null, null); + this.txtPath.Text = Utils.GetStringSetting("RecordingPath", Application.ExecutablePath); + } + + private void ConfigureGUI() + { + if (this._control.IsPlaying) + { + this.recBtn.Checked = (this._audioRecorder.IsRecording || this._basebandRecorder.IsRecording); + this.recBtn.Text = ((this._audioRecorder.IsRecording || this._basebandRecorder.IsRecording) ? "Stop" : "Rec."); + this.recDisplayTimer.Enabled = (this._audioRecorder.IsRecording || this._basebandRecorder.IsRecording); + } + else + { + this.recBtn.Checked = false; + this.recDisplayTimer.Enabled = false; + this.recBtn.Text = "Rec."; + this.durationLbl.Text = "00:00:00"; + this.sizeLbl.Text = "0 MB"; + this.skippedBufferCountLbl.Text = "0"; + } + this.sampleFormatCombo.Enabled = (!this._audioRecorder.IsRecording && !this._basebandRecorder.IsRecording); + this.audioCb.Enabled = (!this._audioRecorder.IsRecording && !this._basebandRecorder.IsRecording); + this.basebandCb.Enabled = (!this._audioRecorder.IsRecording && !this._basebandRecorder.IsRecording); + } + + private string MakeFileName(RecordingMode mode, DateTime time) + { + long num = (mode == RecordingMode.Baseband) ? Math.Abs(this._control.CenterFrequency) : Math.Max(this._control.Frequency, 0L); + long num2 = (num >= 1000) ? (num / 1000) : num; + string text = (num >= 1000) ? "kHz" : "Hz"; + string text2 = (mode == RecordingMode.Baseband) ? "IQ" : "AF"; + string text3 = time.ToString("yyyyMMdd"); + string text4 = time.ToString("HHmmssZ"); + string text5 = this.txtPath.Text.Trim(); + if (text5.Length == 0) + { + text5 = Path.GetDirectoryName(Application.ExecutablePath); + } + return Path.Combine(text5 ?? "", $"SDRSharp_{text3}_{text4}_{num2}{text}_{text2}.wav"); + } + + private void PrepareRecorder() + { + DateTime utcNow = DateTime.UtcNow; + if (this.audioCb.Checked) + { + this._audioRecorder.SampleRate = this._audioProcessor.SampleRate; + this._audioRecorder.FileName = this.MakeFileName(RecordingMode.Audio, utcNow); + this._audioRecorder.Format = this._wavSampleFormat; + } + if (this.basebandCb.Checked) + { + this._basebandRecorder.SampleRate = this._iqObserver.SampleRate; + this._basebandRecorder.FileName = this.MakeFileName(RecordingMode.Baseband, utcNow); + this._basebandRecorder.Format = this._wavSampleFormat; + } + } + + public void AbortRecording() + { + if (this._audioRecorder != null) + { + this._audioRecorder.StopRecording(); + } + if (this._basebandRecorder != null) + { + this._basebandRecorder.StopRecording(); + } + } + + private void butPath_CheckedChanged(object sender, EventArgs e) + { + SaveFileDialog saveFileDialog = new SaveFileDialog(); + saveFileDialog.Title = "Select folder to save recordings"; + saveFileDialog.InitialDirectory = this.txtPath.Text; + saveFileDialog.CheckPathExists = true; + saveFileDialog.FileName = "Save Here"; + if (saveFileDialog.ShowDialog() == DialogResult.OK) + { + this.txtPath.Text = Path.GetDirectoryName(saveFileDialog.FileName); + Utils.SaveSetting("RecordingPath", this.txtPath.Text); + } + } + + private void showBtn_CheckedChanged(object sender, EventArgs e) + { + Process.Start("explorer.exe", this.txtPath.Text); + } + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/SimpleRecorder.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/SimpleRecorder.cs new file mode 100644 index 0000000..7296ca1 --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/SimpleRecorder.cs @@ -0,0 +1,335 @@ +using SDRSharp.Radio; +using System; +using System.Threading; + +namespace SDRSharp.WavRecorder +{ + public class SimpleRecorder : IDisposable + { + private const int DefaultAudioGain = 30; + + private static readonly int _bufferCount = 8; + + private readonly float _audioGain = (float)Math.Pow(3.0, 10.0); + + private readonly SharpEvent _bufferEvent = new SharpEvent(false); + + private readonly UnsafeBuffer[] _circularBuffers = new UnsafeBuffer[SimpleRecorder._bufferCount]; + + private unsafe readonly Complex*[] _complexCircularBufferPtrs = new Complex*[SimpleRecorder._bufferCount]; + + private unsafe readonly float*[] _floatCircularBufferPtrs = new float*[SimpleRecorder._bufferCount]; + + private int _circularBufferTail; + + private int _circularBufferHead; + + private int _circularBufferLength; + + private volatile int _circularBufferUsedCount; + + private long _skippedBuffersCount; + + private bool _diskWriterRunning; + + private string _fileName; + + private double _sampleRate; + + private WavSampleFormat _wavSampleFormat; + + private SimpleWavWriter _wavWriter; + + private Thread _diskWriter; + + private readonly RecordingMode _recordingMode; + + private readonly RecordingIQObserver _iQObserver; + + private readonly RecordingAudioProcessor _audioProcessor; + + public bool IsRecording => this._diskWriterRunning; + + public bool IsStreamFull + { + get + { + if (this._wavWriter != null) + { + return this._wavWriter.IsStreamFull; + } + return false; + } + } + + public long BytesWritten + { + get + { + if (this._wavWriter != null) + { + return this._wavWriter.Length; + } + return 0L; + } + } + + public long SkippedBuffers + { + get + { + if (this._wavWriter != null) + { + return this._skippedBuffersCount; + } + return 0L; + } + } + + public RecordingMode Mode => this._recordingMode; + + public WavSampleFormat Format + { + get + { + return this._wavSampleFormat; + } + set + { + if (this._diskWriterRunning) + { + throw new ArgumentException("Format cannot be set while recording"); + } + this._wavSampleFormat = value; + } + } + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + if (this._diskWriterRunning) + { + throw new ArgumentException("SampleRate cannot be set while recording"); + } + this._sampleRate = value; + } + } + + public string FileName + { + get + { + return this._fileName; + } + set + { + if (this._diskWriterRunning) + { + throw new ArgumentException("FileName cannot be set while recording"); + } + this._fileName = value; + } + } + + public unsafe SimpleRecorder(RecordingIQObserver iQObserver) + { + this._iQObserver = iQObserver; + this._recordingMode = RecordingMode.Baseband; + } + + public unsafe SimpleRecorder(RecordingAudioProcessor audioProcessor) + { + this._audioProcessor = audioProcessor; + this._recordingMode = RecordingMode.Audio; + } + + ~SimpleRecorder() + { + this.Dispose(); + } + + public void Dispose() + { + this.FreeBuffers(); + } + + public unsafe void IQSamplesIn(Complex* buffer, int length) + { + if (this._circularBufferLength != length) + { + this.FreeBuffers(); + this.CreateBuffers(length); + this._circularBufferTail = 0; + this._circularBufferHead = 0; + } + if (this._circularBufferUsedCount == SimpleRecorder._bufferCount) + { + this._skippedBuffersCount += 1L; + } + else + { + Utils.Memcpy(this._complexCircularBufferPtrs[this._circularBufferHead], buffer, length * sizeof(Complex)); + this._circularBufferHead++; + this._circularBufferHead &= SimpleRecorder._bufferCount - 1; + this._circularBufferUsedCount++; + this._bufferEvent.Set(); + } + } + + public unsafe void AudioSamplesIn(float* audio, int length) + { + int num = length / 2; + if (this._circularBufferLength != num) + { + this.FreeBuffers(); + this.CreateBuffers(num); + this._circularBufferTail = 0; + this._circularBufferHead = 0; + } + if (this._circularBufferUsedCount == SimpleRecorder._bufferCount) + { + this._skippedBuffersCount += 1L; + } + else + { + Utils.Memcpy(this._floatCircularBufferPtrs[this._circularBufferHead], audio, length * 4); + this._circularBufferHead++; + this._circularBufferHead &= SimpleRecorder._bufferCount - 1; + this._circularBufferUsedCount++; + this._bufferEvent.Set(); + } + } + + public unsafe void ScaleAudio(float* audio, int length) + { + for (int i = 0; i < length; i++) + { + audio[i] *= this._audioGain; + } + } + + private unsafe void DiskWriterThread() + { + if (this._recordingMode == RecordingMode.Baseband) + { + Console.WriteLine("DiskWriterThread for baseband started"); + this._iQObserver.IQReady += this.IQSamplesIn; + this._iQObserver.Enabled = true; + } + else + { + Console.WriteLine("DiskWriterThread for audio started"); + this._audioProcessor.AudioReady += this.AudioSamplesIn; + this._audioProcessor.Enabled = true; + } + while (this._diskWriterRunning && !this._wavWriter.IsStreamFull) + { + if (this._circularBufferTail == this._circularBufferHead) + { + this._bufferEvent.WaitOne(); + } + if (this._diskWriterRunning && this._circularBufferTail != this._circularBufferHead) + { + if (this._recordingMode == RecordingMode.Audio) + { + this.ScaleAudio(this._floatCircularBufferPtrs[this._circularBufferTail], this._circularBuffers[this._circularBufferTail].Length * 2); + } + this._wavWriter.Write(this._floatCircularBufferPtrs[this._circularBufferTail], this._circularBuffers[this._circularBufferTail].Length); + this._circularBufferUsedCount--; + this._circularBufferTail++; + this._circularBufferTail &= SimpleRecorder._bufferCount - 1; + } + } + while (this._circularBufferTail != this._circularBufferHead) + { + if (this._floatCircularBufferPtrs[this._circularBufferTail] != null) + { + this._wavWriter.Write(this._floatCircularBufferPtrs[this._circularBufferTail], this._circularBuffers[this._circularBufferTail].Length); + } + this._circularBufferTail++; + this._circularBufferTail &= SimpleRecorder._bufferCount - 1; + } + if (this._recordingMode == RecordingMode.Baseband) + { + this._iQObserver.Enabled = false; + this._iQObserver.IQReady -= this.IQSamplesIn; + } + else + { + this._audioProcessor.Enabled = false; + this._audioProcessor.AudioReady -= this.AudioSamplesIn; + } + this._diskWriterRunning = false; + Console.WriteLine("DiskWriterThread stopped"); + } + + private void Flush() + { + if (this._wavWriter != null) + { + this._wavWriter.Close(); + } + } + + private unsafe void CreateBuffers(int size) + { + for (int i = 0; i < SimpleRecorder._bufferCount; i++) + { + this._circularBuffers[i] = UnsafeBuffer.Create(size, sizeof(Complex)); + this._complexCircularBufferPtrs[i] = (Complex*)(void*)this._circularBuffers[i]; + this._floatCircularBufferPtrs[i] = (float*)(void*)this._circularBuffers[i]; + } + this._circularBufferLength = size; + } + + private unsafe void FreeBuffers() //EDITHERE + { + this._circularBufferLength = 0; + for (int i = 0; i < SimpleRecorder._bufferCount; i++) + { + if (this._circularBuffers[i] != null) + { + this._circularBuffers[i].Dispose(); + this._circularBuffers[i] = null; + this._complexCircularBufferPtrs[i] = null; + this._floatCircularBufferPtrs[i] = null; + } + } + } + + public void StartRecording() + { + if (this._diskWriter == null) + { + this._circularBufferHead = 0; + this._circularBufferTail = 0; + this._skippedBuffersCount = 0L; + this._bufferEvent.Reset(); + this._wavWriter = new SimpleWavWriter(this._fileName, this._wavSampleFormat, (uint)this._sampleRate); + this._wavWriter.Open(); + this._diskWriter = new Thread(this.DiskWriterThread); + this._diskWriterRunning = true; + this._diskWriter.Start(); + } + } + + public void StopRecording() + { + this._diskWriterRunning = false; + if (this._diskWriter != null) + { + this._bufferEvent.Set(); + this._diskWriter.Join(); + } + this.Flush(); + this.FreeBuffers(); + this._diskWriter = null; + this._wavWriter = null; + } + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/SimpleWavWriter.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/SimpleWavWriter.cs new file mode 100644 index 0000000..44dddc3 --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/SimpleWavWriter.cs @@ -0,0 +1,204 @@ +using System; +using System.IO; +using System.Runtime.InteropServices; +using System.Text; + +namespace SDRSharp.WavRecorder +{ + public class SimpleWavWriter + { + private const long MaxStreamLength = 2147483647L; + + private readonly string _filename; + + private readonly WavFormatHeader _format; + + private readonly WavSampleFormat _wavSampleFormat; + + private BinaryWriter _outputStream; + + private long _fileSizeOffs; + + private long _dataSizeOffs; + + private long _length; + + private byte[] _outputBuffer; + + private bool _isStreamFull; + + public WavSampleFormat SampleFormat => this._wavSampleFormat; + + public WavFormatHeader WaveFormat => this._format; + + public string FileName => this._filename; + + public long Length => this._length; + + public bool IsStreamFull => this._isStreamFull; + + public SimpleWavWriter(string filename, WavSampleFormat recordingFormat, uint sampleRate) + { + this._filename = filename; + this._wavSampleFormat = recordingFormat; + this._format = new WavFormatHeader(recordingFormat, 2, sampleRate); + } + + public void Open() + { + if (this._outputStream == null) + { + this._outputStream = new BinaryWriter(File.Create(this._filename)); + this.WriteHeader(); + return; + } + throw new InvalidOperationException("Stream already open"); + } + + public void Close() + { + if (this._outputStream != null) + { + this.UpdateLength(); + this._outputStream.Flush(); + this._outputStream.Close(); + this._outputStream = null; + this._outputBuffer = null; + return; + } + throw new InvalidOperationException("Stream not open"); + } + + public unsafe void Write(float* data, int length) + { + if (this._outputStream != null) + { + switch (this._wavSampleFormat) + { + case WavSampleFormat.PCM8: + this.WritePCM8(data, length); + break; + case WavSampleFormat.PCM16: + this.WritePCM16(data, length); + break; + case WavSampleFormat.Float32: + this.WriteFloat(data, length); + break; + } + return; + } + throw new InvalidOperationException("Stream not open"); + } + + private unsafe void WritePCM8(float* data, int length) + { + if (this._outputBuffer == null || this._outputBuffer.Length != length * 2) + { + this._outputBuffer = null; + this._outputBuffer = new byte[length * 2]; + } + float* ptr = data; + for (int i = 0; i < length; i++) + { + byte[] outputBuffer = this._outputBuffer; + int num = i * 2; + float* intPtr = ptr; + ptr = intPtr + 1; + outputBuffer[num] = (byte)(*intPtr * 128f + 128f); + byte[] outputBuffer2 = this._outputBuffer; + int num2 = i * 2 + 1; + float* intPtr2 = ptr; + ptr = intPtr2 + 1; + outputBuffer2[num2] = (byte)(*intPtr2 * 128f + 128f); + } + this.WriteStream(this._outputBuffer); + } + + private unsafe void WritePCM16(float* data, int length) + { + if (this._outputBuffer == null || this._outputBuffer.Length != length * 2 * 2) + { + this._outputBuffer = null; + this._outputBuffer = new byte[length * 2 * 2]; + } + float* ptr = data; + for (int i = 0; i < length; i++) + { + float* intPtr = ptr; + ptr = intPtr + 1; + short num = (short)(*intPtr * 32767f); + float* intPtr2 = ptr; + ptr = intPtr2 + 1; + short num2 = (short)(*intPtr2 * 32767f); + this._outputBuffer[i * 4] = (byte)(num & 0xFF); + this._outputBuffer[i * 4 + 1] = (byte)(num >> 8); + this._outputBuffer[i * 4 + 2] = (byte)(num2 & 0xFF); + this._outputBuffer[i * 4 + 3] = (byte)(num2 >> 8); + } + this.WriteStream(this._outputBuffer); + } + + private unsafe void WriteFloat(float* data, int length) + { + if (this._outputBuffer == null || this._outputBuffer.Length != length * 4 * 2) + { + this._outputBuffer = null; + this._outputBuffer = new byte[length * 4 * 2]; + } + Marshal.Copy((IntPtr)(void*)data, this._outputBuffer, 0, this._outputBuffer.Length); + this.WriteStream(this._outputBuffer); + } + + private void WriteStream(byte[] data) + { + if (this._outputStream != null) + { + int num = (int)Math.Min(2147483647 - this._outputStream.BaseStream.Length, data.Length); + this._outputStream.Write(data, 0, num); + this._length += num; + this.UpdateLength(); + this._isStreamFull = (this._outputStream.BaseStream.Length >= 2147483647); + } + } + + private void WriteHeader() + { + if (this._outputStream != null) + { + this.WriteTag("RIFF"); + this._fileSizeOffs = this._outputStream.BaseStream.Position; + this._outputStream.Write(0u); + this.WriteTag("WAVE"); + this.WriteTag("fmt "); + this._outputStream.Write(16u); + this._outputStream.Write(this._format.FormatTag); + this._outputStream.Write(this._format.Channels); + this._outputStream.Write(this._format.SamplesPerSec); + this._outputStream.Write(this._format.AvgBytesPerSec); + this._outputStream.Write(this._format.BlockAlign); + this._outputStream.Write(this._format.BitsPerSample); + this.WriteTag("data"); + this._dataSizeOffs = this._outputStream.BaseStream.Position; + this._outputStream.Write(0u); + } + } + + private void UpdateLength() + { + if (this._outputStream != null) + { + this._outputStream.Seek((int)this._fileSizeOffs, SeekOrigin.Begin); + this._outputStream.Write((uint)(this._outputStream.BaseStream.Length - 8)); + this._outputStream.Seek((int)this._dataSizeOffs, SeekOrigin.Begin); + this._outputStream.Write((uint)this._length); + this._outputStream.BaseStream.Seek(0L, SeekOrigin.End); + } + } + + private void WriteTag(string tag) + { + byte[] bytes = Encoding.ASCII.GetBytes(tag); + this._outputStream.Write(bytes, 0, bytes.Length); + } + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavFormatHeader.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavFormatHeader.cs new file mode 100644 index 0000000..bdafc97 --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavFormatHeader.cs @@ -0,0 +1,42 @@ +namespace SDRSharp.WavRecorder +{ + public struct WavFormatHeader + { + public ushort FormatTag; + + public ushort Channels; + + public uint SamplesPerSec; + + public uint AvgBytesPerSec; + + public ushort BlockAlign; + + public ushort BitsPerSample; + + public WavFormatHeader(WavSampleFormat format, ushort channels, uint sampleRate) + { + this.BitsPerSample = 0; + this.FormatTag = 0; + switch (format) + { + case WavSampleFormat.PCM8: + this.FormatTag = 1; + this.BitsPerSample = 8; + break; + case WavSampleFormat.PCM16: + this.FormatTag = 1; + this.BitsPerSample = 16; + break; + case WavSampleFormat.Float32: + this.FormatTag = 3; + this.BitsPerSample = 32; + break; + } + this.BlockAlign = (ushort)(channels * ((int)this.BitsPerSample / 8)); + this.SamplesPerSec = sampleRate; + this.Channels = channels; + this.AvgBytesPerSec = sampleRate * this.BlockAlign; + } + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavRecorderPlugin.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavRecorderPlugin.cs new file mode 100644 index 0000000..69c3eb7 --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavRecorderPlugin.cs @@ -0,0 +1,34 @@ +using SDRSharp.Common; +using System.Windows.Forms; + +namespace SDRSharp.WavRecorder +{ + public class WavRecorderPlugin : ISharpPlugin + { + private const string DefaultDisplayName = "Recording"; + + private ISharpControl _control; + + private RecordingPanel _guiControl; + + public bool HasGui => true; + + public UserControl GuiControl => this._guiControl; + + public string DisplayName => "Recording"; + + public void Initialize(ISharpControl control) + { + this._control = control; + this._guiControl = new RecordingPanel(this._control); + } + + public void Close() + { + if (this._guiControl != null) + { + this._guiControl.AbortRecording(); + } + } + } +} diff --git a/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavSampleFormat.cs b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavSampleFormat.cs new file mode 100644 index 0000000..1600b6f --- /dev/null +++ b/Plugins/SDRSharper.WaveRecorder/SDRSharp.WavRecorder/WavSampleFormat.cs @@ -0,0 +1,9 @@ +namespace SDRSharp.WavRecorder +{ + public enum WavSampleFormat + { + PCM8, + PCM16, + Float32 + } +} diff --git a/SDRSharper.CollapsiblePanel/Properties/AssemblyInfo.cs b/SDRSharper.CollapsiblePanel/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2dc8634 --- /dev/null +++ b/SDRSharper.CollapsiblePanel/Properties/AssemblyInfo.cs @@ -0,0 +1,16 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions; + +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyTitle("Collapsible Panel")] +[assembly: AssemblyDescription("Collapsible Panel Component")] +[assembly: AssemblyProduct("SDRSharper Revised")] +[assembly: AssemblyCopyright("Copyright © BluGecko 2018")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: CompilationRelaxations(8)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.0.0")] + diff --git a/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel.csproj b/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel.csproj new file mode 100644 index 0000000..52dc760 --- /dev/null +++ b/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel.csproj @@ -0,0 +1,99 @@ + + + + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B} + Debug + x86 + Library + SDRSharp.CollapsiblePanel + v4.7 + 4 + True + + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + AnyCPU + TRACE;DEBUG + false + + + true + bin\x64\Debug\ + true + full + x64 + MinimumRecommendedRules.ruleset + false + + + true + bin\x64\Release\ + true + true + pdbonly + x64 + MinimumRecommendedRules.ruleset + false + + + true + bin\Debug\ + true + full + AnyCPU + MinimumRecommendedRules.ruleset + TRACE;DEBUG + false + + + true + bin\Release\ + true + true + pdbonly + AnyCPU + MinimumRecommendedRules.ruleset + false + + + false + + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Windows.Forms.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Controls.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Drawing.dll + + + + + + UserControl + + + + + + \ No newline at end of file diff --git a/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.cs b/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.cs new file mode 100644 index 0000000..9c7eaf2 --- /dev/null +++ b/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.cs @@ -0,0 +1,273 @@ +using SDRSharp.Controls; +using System; +using System.ComponentModel; +using System.ComponentModel.Design; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.CollapsiblePanel +{ + [Category("Containers")] + [DesignTimeVisible(true)] + [Description("Visual Studio like Collapsible Panel")] + [Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design", typeof(IDesigner))] + public class CollapsiblePanel : UserControl + { + public delegate void DelegateStateChanged(); + + private IContainer components; + + private gButton titlePanel; + + private Label labTitle; + + private int _expandedHeight; + + private PanelStateOptions _panelState = PanelStateOptions.Expanded; + + private bool _isCollapsed; + + private bool _fitToParent; + + private CollapsiblePanel _nextPanel; + + [DefaultValue(0)] + public int ExpandedHeight + { + get + { + return this._expandedHeight; + } + set + { + if (value > 0) + { + if (base.DesignMode) + { + if (this._panelState == PanelStateOptions.Expanded) + { + base.SetBounds(base.Location.X, base.Location.Y, base.Size.Width, this.titlePanel.Height + value); + } + } + else + { + this._expandedHeight = value; + } + } + } + } + + public string PanelTitle + { + get + { + return this.titlePanel.Text; + } + set + { + this.titlePanel.Text = value; + } + } + + [DefaultValue(typeof(PanelStateOptions), "Expanded")] + public PanelStateOptions PanelState + { + get + { + return this._panelState; + } + set + { + this._panelState = value; + this._isCollapsed = (this._panelState != PanelStateOptions.Collapsed); + this.ToggleState(null, null); + } + } + + [DefaultValue(false)] + public bool FitToParent + { + get + { + return this._fitToParent; + } + set + { + this._fitToParent = value; + if (this._fitToParent) + { + if (base.Parent != null) + { + base.Location = new Point(0, base.Location.Y); + base.Size = new Size(base.Parent.Size.Width, base.Size.Height); + this.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + } + } + else + { + this.Anchor = (AnchorStyles.Top | AnchorStyles.Left); + } + } + } + + public CollapsiblePanel NextPanel + { + get + { + return this._nextPanel; + } + set + { + this._nextPanel = value; + this.MoveNextPanel(); + } + } + + public event EventHandler StateChanged; + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.labTitle = new Label(); + this.titlePanel = new gButton(); + base.SuspendLayout(); + this.labTitle.BackColor = Color.DimGray; + this.labTitle.Font = new Font("Microsoft Sans Serif", 12f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.labTitle.ForeColor = Color.White; + this.labTitle.Location = new Point(0, -2); + this.labTitle.Name = "labTitle"; + this.labTitle.Size = new Size(16, 16); + this.labTitle.TabIndex = 93; + this.labTitle.Text = "+"; + this.labTitle.TextAlign = ContentAlignment.TopCenter; + this.labTitle.MouseDown += this.ToggleState; + this.titlePanel.Arrow = 0; + this.titlePanel.Checked = false; + this.titlePanel.Dock = DockStyle.Top; + this.titlePanel.Edge = 0.15f; + this.titlePanel.EndColor = Color.DarkGray; + this.titlePanel.EndFactor = 0.4f; + this.titlePanel.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.titlePanel.ForeColor = Color.White; + this.titlePanel.Location = new Point(0, 0); + this.titlePanel.Margin = new Padding(2, 2, 2, 2); + this.titlePanel.Name = "titlePanel"; + this.titlePanel.NoBorder = true; + this.titlePanel.NoLed = true; + this.titlePanel.RadioButton = false; + this.titlePanel.Radius = 1; + this.titlePanel.RadiusB = 0; + this.titlePanel.Size = new Size(150, 18); + this.titlePanel.StartColor = Color.Black; + this.titlePanel.StartFactor = 0.8f; + this.titlePanel.TabIndex = 92; + this.titlePanel.Text = "Caption"; + this.titlePanel.CheckedChanged += this.ToggleState; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.labTitle); + base.Controls.Add(this.titlePanel); + base.Name = "CollapsiblePanel"; + base.ResumeLayout(false); + } + + protected override void OnForeColorChanged(EventArgs e) + { + base.OnForeColorChanged(e); + this.titlePanel.ForeColor = this.ForeColor; + } + + public CollapsiblePanel() + { + this.InitializeComponent(); + base.Load += this.CollapsiblePanel_Load; + base.SizeChanged += this.CollapsiblePanel_SizeChanged; + base.LocationChanged += this.CollapsiblePanel_LocationChanged; + } + + private void CollapsiblePanel_Load(object sender, EventArgs e) + { + this._isCollapsed = (this._panelState == PanelStateOptions.Collapsed); + if (this._isCollapsed) + { + this.labTitle.Text = "+"; + } + else + { + this.labTitle.Text = "-"; + } + } + + private void CollapsiblePanel_SizeChanged(object sender, EventArgs e) + { + if (base.DesignMode) + { + if (this._panelState == PanelStateOptions.Expanded) + { + this._expandedHeight = base.Height; + } + else + { + base.SetBounds(base.Location.X, base.Location.Y, base.Size.Width, this.titlePanel.Height); + } + if (base.Parent != null && base.Parent.Size.Width != base.Size.Width) + { + this.FitToParent = false; + } + } + this.MoveNextPanel(); + } + + private void CollapsiblePanel_LocationChanged(object sender, EventArgs e) + { + if (base.DesignMode && base.Location.X > 0) + { + this.FitToParent = false; + } + this.MoveNextPanel(); + } + + private void ToggleState(object sender, EventArgs e) + { + if (this._isCollapsed) + { + base.SetBounds(base.Location.X, base.Location.Y, base.Size.Width, this._expandedHeight); + } + else + { + base.SetBounds(base.Location.X, base.Location.Y, base.Size.Width, this.titlePanel.Height); + } + this._isCollapsed = !this._isCollapsed; + if (this._isCollapsed) + { + this._panelState = PanelStateOptions.Collapsed; + this.labTitle.Text = "+"; + } + else + { + this._panelState = PanelStateOptions.Expanded; + this.labTitle.Text = "-"; + } + if (!base.DesignMode && this.StateChanged != null) + { + this.StateChanged(this, new EventArgs()); + } + } + + private void MoveNextPanel() + { + if (this._nextPanel != null) + { + this._nextPanel.Location = new Point(this._nextPanel.Location.X, base.Location.Y + base.Size.Height); + } + } + } +} diff --git a/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanelUtils.cs b/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanelUtils.cs new file mode 100644 index 0000000..05ba521 --- /dev/null +++ b/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanelUtils.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Reflection; +using System.Text; + +namespace SDRSharp.CollapsiblePanel +{ + public static class CollapsiblePanelUtils + { + public static Assembly UnmanagedDLLAssemblyVer = Assembly.GetExecutingAssembly(); + } +} diff --git a/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/PanelStateOptions.cs b/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/PanelStateOptions.cs new file mode 100644 index 0000000..a1444dd --- /dev/null +++ b/SDRSharper.CollapsiblePanel/SDRSharp.CollapsiblePanel/PanelStateOptions.cs @@ -0,0 +1,8 @@ +namespace SDRSharp.CollapsiblePanel +{ + public enum PanelStateOptions + { + Collapsed, + Expanded + } +} diff --git a/SDRSharper.Common/Properties/AssemblyInfo.cs b/SDRSharper.Common/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..54aafb8 --- /dev/null +++ b/SDRSharper.Common/Properties/AssemblyInfo.cs @@ -0,0 +1,16 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions; + +[assembly: AssemblyProduct("SDRSharper Revised")] +[assembly: AssemblyDescription("Software Defined Radio")] +[assembly: AssemblyTitle("SDR Sharp")] +[assembly: AssemblyCopyright("Copyright © BluGecko 2018")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: CompilationRelaxations(8)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.0.0")] + diff --git a/SDRSharper.Common/SDRSharp.Common.csproj b/SDRSharper.Common/SDRSharp.Common.csproj new file mode 100644 index 0000000..38a0f4a --- /dev/null +++ b/SDRSharper.Common/SDRSharp.Common.csproj @@ -0,0 +1,103 @@ + + + + {A9303279-7855-4867-AA5D-91BC5DD98346} + Debug + x86 + Library + SDRSharp.Common + v4.7 + 4 + True + + + + x86 + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + x86 + TRACE;DEBUG + false + + + true + bin\x64\Debug\ + true + full + x64 + MinimumRecommendedRules.ruleset + false + TRACE;DEBUG + + + true + bin\x64\Release\ + true + true + pdbonly + x64 + MinimumRecommendedRules.ruleset + false + + + true + bin\Debug\ + true + full + AnyCPU + MinimumRecommendedRules.ruleset + TRACE;DEBUG + false + + + true + bin\Release\ + true + true + pdbonly + AnyCPU + MinimumRecommendedRules.ruleset + false + + + false + + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.dll + + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Windows.Forms.dll + + + + + + + + + + + + {da8f0ad0-73be-4fa0-b8ae-315be25df373} + SDRSharp.PanView + + + + \ No newline at end of file diff --git a/SDRSharper.Common/SDRSharp.Common/CommonUtils.cs b/SDRSharper.Common/SDRSharp.Common/CommonUtils.cs new file mode 100644 index 0000000..dfa9cf8 --- /dev/null +++ b/SDRSharper.Common/SDRSharp.Common/CommonUtils.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Reflection; +using System.Text; + +namespace SDRSharp.Common +{ + public static class CommonUtils + { + public static Assembly UnmanagedDLLAssemblyVer = Assembly.GetExecutingAssembly(); + } +} diff --git a/SDRSharper.Common/SDRSharp.Common/ISharpControl.cs b/SDRSharper.Common/SDRSharp.Common/ISharpControl.cs new file mode 100644 index 0000000..6f2bc22 --- /dev/null +++ b/SDRSharper.Common/SDRSharp.Common/ISharpControl.cs @@ -0,0 +1,236 @@ +// Refs: PanView and Radio +using SDRSharp.PanView; +using SDRSharp.Radio; +using System.ComponentModel; + +namespace SDRSharp.Common +{ + public interface ISharpControl + { + DetectorType DetectorType + { + get; + set; + } + + WindowType FilterType + { + get; + set; + } + + int AudioGain + { + get; + set; + } + + long CenterFrequency + { + get; + set; + } + + int CWShift + { + get; + set; + } + + bool FilterAudio + { + get; + set; + } + + int FilterBandwidth + { + get; + set; + } + + int FilterOrder + { + get; + set; + } + + bool FmStereo + { + get; + set; + } + + long Frequency + { + get; + set; + } + + long FrequencyShift + { + get; + set; + } + + bool FrequencyShiftEnabled + { + get; + set; + } + + bool MarkPeaks + { + get; + set; + } + + bool SnapToGrid + { + get; + set; + } + + bool SquelchEnabled + { + get; + set; + } + + int SquelchThreshold + { + get; + set; + } + + bool IsSquelchOpen + { + get; + } + + bool SwapIq + { + get; + set; + } + + bool UseAgc + { + get; + set; + } + + bool AgcHang + { + get; + set; + } + + int AgcThreshold + { + get; + set; + } + + int AgcDecay + { + get; + set; + } + + int AgcSlope + { + get; + set; + } + + int FFTResolution + { + get; + } + + int FFTSkips + { + set; + } + + bool IsPlaying + { + get; + } + + int SAttack + { + get; + set; + } + + int SDecay + { + get; + set; + } + + int WAttack + { + get; + set; + } + + int WDecay + { + get; + set; + } + + bool UseTimeMarkers + { + get; + set; + } + + string RdsProgramService + { + get; + } + + string RdsRadioText + { + get; + } + + int RFBandwidth + { + get; + } + + void StartRadio(); + + void StopRadio(); + + void RegisterStreamHook(object streamHook, ProcessorType processorType); + + void UnregisterStreamHook(object streamHook); + + event PropertyChangedEventHandler PropertyChanged; + + void GetSpectrumSnapshot(byte[] destArray); + + /* + event CustomPaintEventHandler WaterfallCustomPaint; + + event CustomPaintEventHandler SpectrumAnalyzerCustomPaint; + + void SetFrequency(long frequency, bool onlyMoveCenterFrequency); + + [Obsolete("Use GetSpectrumSnapshot(float[], float, float) instead")] + void GetSpectrumSnapshot(byte[] destArray); + + void GetSpectrumSnapshot(float[] destArray, float scale = 1f, float offset = 0f); + + void RegisterFrontControl(UserControl control, PluginPosition preferredPosition); + + void Perform(); + */ + } +} diff --git a/SDRSharper.Common/SDRSharp.Common/ISharpPlugin.cs b/SDRSharper.Common/SDRSharp.Common/ISharpPlugin.cs new file mode 100644 index 0000000..b7886bf --- /dev/null +++ b/SDRSharper.Common/SDRSharp.Common/ISharpPlugin.cs @@ -0,0 +1,26 @@ +using System.Windows.Forms; + +namespace SDRSharp.Common +{ + public interface ISharpPlugin + { + bool HasGui + { + get; + } + + UserControl GuiControl + { + get; + } + + string DisplayName + { + get; + } + + void Initialize(ISharpControl control); + + void Close(); + } +} diff --git a/SDRSharper.Common/SDRSharp.Common/PluginPosition.cs b/SDRSharper.Common/SDRSharp.Common/PluginPosition.cs new file mode 100644 index 0000000..26f1718 --- /dev/null +++ b/SDRSharper.Common/SDRSharp.Common/PluginPosition.cs @@ -0,0 +1,10 @@ +namespace SDRSharp.Common +{ + public enum PluginPosition + { + Top, + Bottom, + Left, + Right + } +} diff --git a/SDRSharper.Controls/Properties/AssemblyInfo.cs b/SDRSharper.Controls/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2e8c46e --- /dev/null +++ b/SDRSharper.Controls/Properties/AssemblyInfo.cs @@ -0,0 +1,16 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions; + +[assembly: CompilationRelaxations(8)] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: AssemblyTitle("SDR-IQ Controller")] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: AssemblyDescription("SDR-IQ Dongle Controller")] +[assembly: AssemblyProduct("SDRSharper Revised")] +[assembly: AssemblyCopyright("Copyright © BluGecko 2018")] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.0.0")] + diff --git a/SDRSharper.Controls/SDRSharp.Controls.csproj b/SDRSharper.Controls/SDRSharp.Controls.csproj new file mode 100644 index 0000000..c28ab4f --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls.csproj @@ -0,0 +1,141 @@ + + + + {1AEB0726-F178-4E46-8060-6D03136C031E} + Debug + AnyCPU + Library + SDRSharp.Controls + v4.7 + 4 + True + + + + AnyCPU + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + true + bin\x86\Debug\ + true + full + AnyCPU + MinimumRecommendedRules.ruleset + TRACE;DEBUG + false + + + true + bin\x86\Release\ + true + true + pdbonly + x86 + MinimumRecommendedRules.ruleset + false + + + TRACE;DEBUG + false + + + false + + + true + bin\x64\Debug\ + TRACE;DEBUG + true + full + x64 + MinimumRecommendedRules.ruleset + + + true + bin\x64\Release\ + true + true + pdbonly + x64 + MinimumRecommendedRules.ruleset + + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Windows.Forms.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Drawing.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.dll + + + + + + Component + + + + Component + + + UserControl + + + UserControl + + + UserControl + + + UserControl + + + UserControl + + + UserControl + + + UserControl + + + + + + gCombo.cs + + + gLabel.cs + + + gProgress.cs + + + gSliderH.cs + + + gSliderV.cs + + + gTextBox.cs + + + gUpDown.cs + + + + \ No newline at end of file diff --git a/SDRSharper.Controls/SDRSharp.Controls/BorderGradientPanel.cs b/SDRSharper.Controls/SDRSharp.Controls/BorderGradientPanel.cs new file mode 100644 index 0000000..53de35f --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/BorderGradientPanel.cs @@ -0,0 +1,214 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + public class BorderGradientPanel : Control + { + public static int mode; + + private Color _startColor = Color.Black; + + private Color _endColor = Color.White; + + private float _startFactor = 0.35f; + + private float _endFactor = 0.2f; + + private Color _borderColor = Color.Black; + + private bool _noBorder; + + private float _edge = 0.15f; + + private int _radius = 8; + + private int _radiusB; + + public bool NoBorder + { + get + { + return this._noBorder; + } + set + { + this._noBorder = value; + } + } + + public int Radius + { + get + { + return this._radius; + } + set + { + this._radius = value; + } + } + + public int RadiusB + { + get + { + return this._radiusB; + } + set + { + this._radiusB = value; + } + } + + public float Edge + { + get + { + return this._edge; + } + set + { + this._edge = value; + } + } + + [Description("Top of panel/button")] + public Color EndColor + { + get + { + return this._endColor; + } + set + { + if (!(this._endColor == value)) + { + this._endColor = value; + base.Invalidate(); + } + } + } + + [Description("Bottom of panel/button")] + public Color StartColor + { + get + { + return this._startColor; + } + set + { + if (!(this._startColor == value)) + { + this._startColor = value; + base.Invalidate(); + } + } + } + + [Description("Top of panel/button")] + public float StartFactor + { + get + { + return this._startFactor; + } + set + { + if (this._startFactor != value) + { + this._startFactor = value; + base.Invalidate(); + } + } + } + + [Description("Bottom of panel/button")] + public float EndFactor + { + get + { + return this._endFactor; + } + set + { + if (this._endFactor != value) + { + this._endFactor = value; + base.Invalidate(); + } + } + } + + public BorderGradientPanel() + { + base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true); + } + + protected override void OnEnter(EventArgs e) + { + base.OnEnter(e); + this.ShowFocus(true); + } + + protected override void OnLeave(EventArgs e) + { + base.OnLeave(e); + this.ShowFocus(false); + } + + public void ShowFocus(bool focus) + { + this._borderColor = (focus ? Color.Gray : Color.Black); + base.Invalidate(); + } + + protected override void OnPaint(PaintEventArgs e) + { + Blend blend = new Blend(); + LinearGradientBrush linearGradientBrush = new LinearGradientBrush(new Point(0, 0), new Point(0, base.Height), this._startColor, this._endColor); + blend.Positions = new float[6] + { + 0f, + this._edge / 3f, + this._edge, + 1f - this._edge, + 1f - this._edge / 3f, + 1f + }; + blend.Factors = new float[6] + { + 1f, + 1f, + this._startFactor, + this._endFactor, + 0f, + 0f + }; + linearGradientBrush.Blend = blend; + e.Graphics.FillRectangle(linearGradientBrush, base.ClientRectangle); + SmoothingMode smoothingMode = e.Graphics.SmoothingMode; + e.Graphics.SmoothingMode = SmoothingMode.AntiAlias; + bool flag = this is gButton; + Rectangle rect = (!flag) ? new Rectangle(-1, -1, base.ClientRectangle.Width + 1, base.ClientRectangle.Height + 1) : new Rectangle(0, -1, base.ClientRectangle.Width - 1, base.ClientRectangle.Height + 1); + GraphicsPath path = RoundedRectangle.Create(rect, this._radius, this._radiusB); + if (!this.NoBorder) + { + int num = flag ? 3 : 2; + using (Pen pen = new Pen(this._borderColor, (float)num)) + { + e.Graphics.DrawPath(pen, path); + } + } + path = RoundedRectangle.Create(base.ClientRectangle, this._radius, this._radiusB); + base.Region = new Region(path); + e.Graphics.SmoothingMode = smoothingMode; + linearGradientBrush.Dispose(); + base.OnPaint(e); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/ControlsUtils.cs b/SDRSharper.Controls/SDRSharp.Controls/ControlsUtils.cs new file mode 100644 index 0000000..c165ace --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/ControlsUtils.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Reflection; +using System.Text; + +namespace SDRSharp.Controls +{ + public static class ControlsUtils + { + public static Assembly UnmanagedDLLAssemblyVer = Assembly.GetExecutingAssembly(); + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/RoundedRectangle.cs b/SDRSharper.Controls/SDRSharp.Controls/RoundedRectangle.cs new file mode 100644 index 0000000..e24e798 --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/RoundedRectangle.cs @@ -0,0 +1,69 @@ +using System.Drawing; +using System.Drawing.Drawing2D; + +namespace SDRSharp.Controls +{ + public abstract class RoundedRectangle + { + public enum RectangleCorners + { + None, + TopLeft, + TopRight, + BottomLeft = 4, + BottomRight = 8, + All = 0xF + } + + public static GraphicsPath Create(int x, int y, int width, int height, int radius, int radiusB = 0) + { + int num = x + width; + int num2 = y + height; + if (radiusB == 0) + { + radiusB = radius; + } + int x2 = num - radius; + int x3 = x + radius; + int num3 = y + radius; + int num4 = radius * 2; + int x4 = num - num4; + int x5 = num - radiusB; + int num5 = num2 - radiusB; + int x6 = x + radiusB; + int num6 = radiusB * 2; + int x7 = num - num6; + int y2 = num2 - num6; + RectangleCorners rectangleCorners = RectangleCorners.All; + GraphicsPath graphicsPath = new GraphicsPath(); + graphicsPath.StartFigure(); + if ((RectangleCorners.TopLeft & rectangleCorners) == RectangleCorners.TopLeft) + { + graphicsPath.AddArc(x, y, num4, num4, 180f, 90f); + } + graphicsPath.AddLine(x3, y, x2, y); + if ((RectangleCorners.TopRight & rectangleCorners) == RectangleCorners.TopRight) + { + graphicsPath.AddArc(x4, y, num4, num4, 270f, 90f); + } + graphicsPath.AddLine(num, num3, num, num5); + if ((RectangleCorners.BottomRight & rectangleCorners) == RectangleCorners.BottomRight) + { + graphicsPath.AddArc(x7, y2, num6, num6, 0f, 90f); + } + graphicsPath.AddLine(x5, num2, x6, num2); + if ((RectangleCorners.BottomLeft & rectangleCorners) == RectangleCorners.BottomLeft) + { + graphicsPath.AddArc(x, y2, num6, num6, 90f, 90f); + } + graphicsPath.AddLine(x, num5, x, num3); + graphicsPath.CloseFigure(); + return graphicsPath; + } + + public static GraphicsPath Create(Rectangle rect, int radius, int radiusB) + { + return RoundedRectangle.Create(rect.X, rect.Y, rect.Width, rect.Height, radius, radiusB); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gButton.cs b/SDRSharper.Controls/SDRSharp.Controls/gButton.cs new file mode 100644 index 0000000..4c097ba --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gButton.cs @@ -0,0 +1,355 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + [DefaultEvent("CheckedChanged")] + public class gButton : BorderGradientPanel + { + private int _arrow; + + private bool _noLed; + + private bool _radioButton; + + private bool _checked; + + private bool _keyDown = true; + + private bool _init; + + private bool _down; + + private Color _startColor; + + private Color _endColor; + + private float _startFactor; + + private float _endFactor; + + [Description("1=up, 2=right, 3=down, 4=left, 5=up+down, 100=V_thumb, 101=H_thumb, 98=yellow text 99=side led")] + public int Arrow + { + get + { + return this._arrow; + } + set + { + this._arrow = value; + } + } + + public bool NoLed + { + get + { + return this._noLed; + } + set + { + this._noLed = value; + } + } + + public bool NoKeyDown + { + set + { + this._keyDown = !value; + } + } + + public bool Checked + { + get + { + return this._checked; + } + set + { + this.SetChecked(value); + } + } + + public bool RadioButton + { + get + { + return this._radioButton; + } + set + { + this._radioButton = value; + } + } + + public override string Text + { + get + { + return base.Text; + } + set + { + base.Text = value; + base.Invalidate(); + } + } + + public event EventHandler CheckedChanged; + + public void SetColor(Color color) + { + this._endColor = color; + this.UpdateAppearance(); + } + + protected override void OnMouseDown(MouseEventArgs e) + { + base.OnMouseDown(e); + if (e.Button == MouseButtons.Left) + { + this._down = true; + this.UpdateAppearance(); + base.Focus(); + } + } + + protected override void OnMouseUp(MouseEventArgs e) + { + base.OnMouseUp(e); + if (e.Button == MouseButtons.Left) + { + this._down = false; + if (!this._radioButton) + { + this.SetChecked(!this._checked); + } + else + { + this.SetChecked(true); + } + this.UpdateAppearance(); + } + } + + protected override void OnKeyDown(KeyEventArgs e) + { + base.OnKeyDown(e); + if (e.KeyCode == Keys.Space && this._keyDown) + { + this.OnMouseDown(new MouseEventArgs(MouseButtons.Left, 1, 0, 0, 0)); + } + } + + protected override void OnKeyUp(KeyEventArgs e) + { + base.OnKeyUp(e); + if (e.KeyCode == Keys.Space && this._keyDown) + { + this.OnMouseUp(new MouseEventArgs(MouseButtons.Left, 1, 0, 0, 0)); + } + } + + private void UpdateAppearance() + { + if (!this._init) + { + this._init = true; + this._startColor = base.StartColor; + this._endColor = base.EndColor; + this._startFactor = base.StartFactor; + this._endFactor = base.EndFactor; + } + if (this._down) + { + base.StartColor = this._endColor; + base.EndColor = this._startColor; + base.StartFactor = 1f - this._endFactor; + base.EndFactor = (1f - this._startFactor) * 1.1f; + } + else + { + base.StartColor = this._startColor; + base.EndColor = this._endColor; + base.StartFactor = this._startFactor; + base.EndFactor = this._endFactor; + } + base.Invalidate(); + } + + private void SetChecked(bool value) + { + if (this._checked != value) + { + if (this._radioButton) + { + foreach (Control control in base.Parent.Controls) + { + if (control.GetType() == typeof(gButton)) + { + gButton gButton = (gButton)control; + if (gButton.Name != base.Name && gButton.RadioButton && gButton.Checked) + { + gButton.Checked = false; + } + } + } + } + this._checked = value; + base.Invalidate(); + if (this.CheckedChanged != null) + { + this.CheckedChanged(this, new EventArgs()); + } + } + } + + protected override void OnPaint(PaintEventArgs pe) + { + base.OnPaint(pe); + if (this._noLed) + { + int num = base.Height / 2; + int num2 = base.Width / 2; + int num3 = Math.Min(num2 / 2, num / 2); + if (this._arrow == 1) + { + Point[] points = new Point[4] + { + new Point(num2 - num3, num + num3), + new Point(num2 + num3 + 1, num + num3), + new Point(num2, num - num3 - 1), + new Point(num2 - num3, num + num3) + }; + pe.Graphics.FillPolygon(base.Enabled ? Brushes.RoyalBlue : Brushes.Gray, points); + } + else if (this._arrow == 2) + { + Point[] points2 = new Point[4] + { + new Point(num2 - num3, num - num3), + new Point(num2 + num3, num), + new Point(num2 - num3, num + num3), + new Point(num2 - num3, num - num3) + }; + pe.Graphics.FillPolygon(base.Enabled ? Brushes.RoyalBlue : Brushes.Gray, points2); + } + else if (this._arrow == 3) + { + Point[] points3 = new Point[4] + { + new Point(num2 - num3, num - num3 + 1), + new Point(num2 + num3, num - num3 + 1), + new Point(num2, num + num3 + 1), + new Point(num2 - num3, num - num3 + 1) + }; + pe.Graphics.FillPolygon(base.Enabled ? Brushes.RoyalBlue : Brushes.Gray, points3); + } + else if (this._arrow == 4) + { + new Point(num2 - num3, num); + new Point(num2 + num3, num - num3); + new Point(num2 + num3, num + num3); + new Point(num2 - num3, num); + } + else if (this._arrow != 5) + { + if (this._arrow == 100) + { + using (Brush brush = new SolidBrush(this.ForeColor)) + { + pe.Graphics.FillRectangle(brush, 1, num - 2, base.ClientRectangle.Width - 1, 4); + } + } + else if (this._arrow == 101) + { + using (Brush brush2 = new SolidBrush(this.ForeColor)) + { + pe.Graphics.FillRectangle(brush2, num2 - 2, 0, 4, base.ClientRectangle.Height); + } + } + } + } + else + { + int num4 = 12; + if (this._arrow == 99) + { + float x = (float)base.Width * 0.14f; + float y = (float)((base.Height - num4) / 2); + pe.Graphics.FillRectangle(this._checked ? Brushes.Lime : Brushes.DimGray, x, y, (float)(num4 / 2), (float)num4); + } + else + { + float num5 = (float)((base.Width - num4) / 2); + float y2 = (this.Text.Length == 0) ? ((float)((base.Height - num4 / 2) / 2)) : ((float)base.Height * 0.18f); + pe.Graphics.FillRectangle(this._checked ? Brushes.Lime : Brushes.DimGray, num5 + 1f, y2, (float)num4, (float)(num4 / 2)); + } + } + if (this.Text.Length != 0) + { + string[] array = this.Text.Split('\\'); + float width; + float num6; + float num7; + if (array.GetUpperBound(0) == 0) + { + if (this.Text == "...") + { + num6 = 0f; + } + SizeF sizeF = pe.Graphics.MeasureString(this.Text, this.Font); + width = sizeF.Width; + num6 = 0f; + num7 = sizeF.Height; + } + else + { + SizeF sizeF2 = pe.Graphics.MeasureString(array[0], this.Font); + SizeF sizeF3 = pe.Graphics.MeasureString(array[1], this.Font); + width = sizeF2.Width; + num6 = sizeF3.Width; + num7 = sizeF2.Height + sizeF3.Height; + } + float x2 = ((float)base.Width - width) / 2f; + float num8 = (float)base.Height * 0.68f; + if (this._noLed && this._arrow == 99) + { + this._arrow = 0; + } + if (this._noLed || this._arrow == 99) + { + num8 = (float)(base.Height / 2 + 1); + } + Brush brush3 = new SolidBrush(base.Enabled ? this.ForeColor : Color.Gray); + if (array.GetUpperBound(0) > 0) + { + if (this._arrow == 99) + { + x2 = 0.14f * (float)base.Width + 2f + (0.86f * (float)base.Width - width) / 2f; + } + pe.Graphics.DrawString(array[0], this.Font, brush3, x2, num8 - num7 / 2f + 2f); + if (this._arrow == 99) + { + x2 = 0.14f * (float)base.Width + 2f + (0.86f * (float)base.Width - num6) / 2f; + } + pe.Graphics.DrawString(array[1], this.Font, brush3, x2, num8 - 1f); + } + else + { + if (this._arrow == 99) + { + x2 = 0.14f * (float)base.Width + 2f + (0.86f * (float)base.Width - width) / 2f; + } + pe.Graphics.DrawString(this.Text, this.Font, brush3, x2, num8 - num7 / 2f); + } + brush3.Dispose(); + } + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gCombo.cs b/SDRSharper.Controls/SDRSharp.Controls/gCombo.cs new file mode 100644 index 0000000..d275deb --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gCombo.cs @@ -0,0 +1,837 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Design; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + [DefaultEvent("SelectedIndexChanged")] + public class gCombo : UserControl + { + private List _items = new List(); + + private int _selectedIndex = -1; + + private string _selectedItem; + + private ToolTip _toolTip; + + private int _parentHeight; + + private bool _expanded; + + private IContainer components; + + private BorderGradientPanel gradientPanel; + + private gButton gButton0; + + private gButton gButton1; + + private gButton gButton2; + + private gButton gBexpand; + + private gButton gButton4; + + private gButton gButton5; + + private gButton gButton6; + + private gButton gButton7; + + private gButton gButton8; + + private gButton gButton9; + + private gButton gButton3; + + private gButton gButton10; + + private gButton gButton11; + + private gButton gButton12; + + private gButton gButton13; + + private gButton gButton14; + + private gButton gButton15; + + private gButton gButton16; + + private gButton gButton17; + + private gButton gButton18; + + private Label textBox; + + [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] + [Editor("System.Windows.Forms.Design.StringCollectionEditor, System.Design", typeof(UITypeEditor))] + public List Items + { + get + { + return this._items; + } + set + { + this._items = value; + } + } + + [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] + [Browsable(true)] + public override string Text + { + get + { + return this.textBox.Text; + } + set + { + this.textBox.Text = value; + } + } + + public string SelectedItem => this._selectedItem; + + public int SelectedIndex + { + get + { + return this._selectedIndex; + } + set + { + this.SetIndex(value); + } + } + + public ToolTip ToolTip + { + get + { + return this._toolTip; + } + set + { + this._toolTip = value; + } + } + + public event EventHandler SelectedIndexChanged; + + public gCombo() + { + this.InitializeComponent(); + base.SetStyle(ControlStyles.SupportsTransparentBackColor, true); + this.BackColor = Color.Transparent; + } + + public void Add(string item) + { + this._items.Add(item); + } + + public void setEnabled(int index, bool enabled) + { + if (index >= 0 && index < this.Items.Count) + { + gButton gButton = (gButton)base.Controls["gButton" + index.ToString()]; + gButton.Enabled = enabled; + } + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + if (!this._expanded) + { + this.gBexpand.Height = base.Height - 1; + this.gBexpand.Width = this.gBexpand.Height - 4; + this.gBexpand.Left = base.Width - this.gBexpand.Width; + this.gradientPanel.Height = base.Height; + this.gradientPanel.Width = this.gBexpand.Left - 2; + this.textBox.Left = 5; + this.textBox.Width = this.gradientPanel.Width - this.textBox.Left - 5; + this.textBox.Height = this.gradientPanel.Height - 8; + this.textBox.Top = (base.Height - this.textBox.Height) / 2; + } + } + + protected override void OnFontChanged(EventArgs e) + { + base.OnFontChanged(e); + this.textBox.Font = this.Font; + base.Invalidate(); + } + + protected override void OnForeColorChanged(EventArgs e) + { + base.OnForeColorChanged(e); + this.textBox.ForeColor = this.ForeColor; + base.Invalidate(); + } + + protected override void OnLoad(EventArgs e) + { + base.OnLoad(e); + if (this._toolTip != null) + { + string toolTip = this._toolTip.GetToolTip(this); + this._toolTip.SetToolTip(this.textBox, toolTip); + this._toolTip.SetToolTip(this.gBexpand, toolTip); + } + foreach (Control control in base.Controls) + { + string name = control.Name; + if (name.IndexOf("gButton") >= 0) + { + int num = this.iVal(name.Substring(7)); + gButton gButton = (gButton)control; + gButton.Height = this.textBox.Height + 2; + gButton.Top = this.gradientPanel.Height + 1 + num * gButton.Height; + gButton.Visible = false; + if (num < this._items.Count) + { + gButton.Text = this._items[num]; + gButton.ForeColor = ((num == this._selectedIndex) ? Color.Cyan : Color.White); + } + } + } + } + + private void textBox_MouseDown(object sender, MouseEventArgs e) + { + this.gBexpand_MouseDown(sender, null); + } + + private void gBexpand_MouseDown(object sender, MouseEventArgs e) + { + this._expanded = !this._expanded; + if (this._expanded) + { + this._parentHeight = 0; + base.Height = this.gButton0.Top + this._items.Count * this.gButton0.Height; + if (base.Top + base.Height > base.Parent.Height) + { + this._parentHeight = base.Parent.Height; + base.Parent.Height = base.Top + base.Height; + } + base.BringToFront(); + } + else + { + base.Height = this.gradientPanel.Height; + if (this._parentHeight > 0) + { + base.Parent.Height = this._parentHeight; + } + } + for (int i = 0; i < this._items.Count; i++) + { + gButton gButton = (gButton)base.Controls["gButton" + i.ToString()]; + gButton.Visible = this._expanded; + } + if (sender != null) + { + this.gBexpand.Focus(); + } + } + + private void gList_Click(object sender, MouseEventArgs e) + { + this.gBexpand.Checked = false; + this.gBexpand_MouseDown(sender, null); + gButton gButton = (gButton)sender; + this.SetIndex(this.iVal(gButton.Name.Substring(7))); + } + + private void SetIndex(int index) + { + if (index >= 0 && index < this._items.Count) + { + this._selectedItem = this._items[index]; + gButton gButton = (gButton)base.Controls["gButton" + index.ToString()]; + this.textBox.Text = this._selectedItem; + gButton.Text = this._selectedItem; + if (index != this._selectedIndex) + { + this._selectedIndex = index; + string name = gButton.Name; + for (int i = 0; i < this._items.Count; i++) + { + gButton gButton2 = (gButton)base.Controls["gButton" + i.ToString()]; + if (gButton2.Name != name) + { + gButton2.ForeColor = Color.White; + gButton2.Checked = false; + } + } + gButton.ForeColor = Color.Cyan; + if (this.SelectedIndexChanged != null) + { + this.SelectedIndexChanged(this, new EventArgs()); + } + } + } + } + + private int iVal(string text) + { + int result = 0; + if (int.TryParse(text, out result)) + { + return result; + } + return 0; + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.textBox = new Label(); + this.gBexpand = new gButton(); + this.gradientPanel = new BorderGradientPanel(); + this.gButton18 = new gButton(); + this.gButton17 = new gButton(); + this.gButton16 = new gButton(); + this.gButton15 = new gButton(); + this.gButton14 = new gButton(); + this.gButton13 = new gButton(); + this.gButton12 = new gButton(); + this.gButton11 = new gButton(); + this.gButton10 = new gButton(); + this.gButton9 = new gButton(); + this.gButton8 = new gButton(); + this.gButton7 = new gButton(); + this.gButton6 = new gButton(); + this.gButton5 = new gButton(); + this.gButton4 = new gButton(); + this.gButton3 = new gButton(); + this.gButton2 = new gButton(); + this.gButton1 = new gButton(); + this.gButton0 = new gButton(); + base.SuspendLayout(); + this.textBox.BackColor = Color.FromArgb(54, 54, 54); + this.textBox.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.textBox.ForeColor = Color.Yellow; + this.textBox.Location = new Point(9, 5); + this.textBox.Name = "textBox"; + this.textBox.Size = new Size(98, 16); + this.textBox.TabIndex = 21; + this.textBox.Text = "label1"; + this.textBox.MouseDown += this.textBox_MouseDown; + this.gBexpand.Anchor = (AnchorStyles.Top | AnchorStyles.Right); + this.gBexpand.Arrow = 3; + this.gBexpand.BackColor = SystemColors.Control; + this.gBexpand.Checked = false; + this.gBexpand.Edge = 0.15f; + this.gBexpand.EndColor = Color.White; + this.gBexpand.EndFactor = 0.2f; + this.gBexpand.Font = new Font("Microsoft Sans Serif", 7.8f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.gBexpand.Location = new Point(113, 1); + this.gBexpand.Name = "gBexpand"; + this.gBexpand.NoBorder = false; + this.gBexpand.NoLed = true; + this.gBexpand.RadioButton = false; + this.gBexpand.Radius = 4; + this.gBexpand.RadiusB = 6; + this.gBexpand.Size = new Size(18, 23); + this.gBexpand.StartColor = Color.Black; + this.gBexpand.StartFactor = 0.35f; + this.gBexpand.TabIndex = 1; + this.gBexpand.MouseDown += this.gBexpand_MouseDown; + this.gradientPanel.BackColor = Color.Black; + this.gradientPanel.Edge = 0.18f; + this.gradientPanel.EndColor = Color.Black; + this.gradientPanel.EndFactor = 0.6f; + this.gradientPanel.Location = new Point(0, 0); + this.gradientPanel.Margin = new Padding(2); + this.gradientPanel.Name = "gradientPanel"; + this.gradientPanel.NoBorder = true; + this.gradientPanel.Radius = 6; + this.gradientPanel.RadiusB = 0; + this.gradientPanel.Size = new Size(112, 25); + this.gradientPanel.StartColor = Color.Gray; + this.gradientPanel.StartFactor = 0.6f; + this.gradientPanel.TabIndex = 15; + this.gradientPanel.TabStop = false; + this.gradientPanel.Text = "borderGradientPanel3"; + this.gButton18.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton18.Arrow = 0; + this.gButton18.BackColor = SystemColors.Control; + this.gButton18.Checked = false; + this.gButton18.Edge = 0.15f; + this.gButton18.EndColor = Color.White; + this.gButton18.EndFactor = 0.2f; + this.gButton18.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton18.ForeColor = Color.White; + this.gButton18.Location = new Point(0, 440); + this.gButton18.Name = "gButton18"; + this.gButton18.NoBorder = false; + this.gButton18.NoLed = true; + this.gButton18.RadioButton = false; + this.gButton18.Radius = 6; + this.gButton18.RadiusB = 0; + this.gButton18.Size = new Size(131, 23); + this.gButton18.StartColor = Color.Black; + this.gButton18.StartFactor = 0.35f; + this.gButton18.TabIndex = 20; + this.gButton18.TabStop = false; + this.gButton18.Text = "19"; + this.gButton18.MouseUp += this.gList_Click; + this.gButton17.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton17.Arrow = 0; + this.gButton17.BackColor = SystemColors.Control; + this.gButton17.Checked = false; + this.gButton17.Edge = 0.15f; + this.gButton17.EndColor = Color.White; + this.gButton17.EndFactor = 0.2f; + this.gButton17.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton17.ForeColor = Color.White; + this.gButton17.Location = new Point(0, 417); + this.gButton17.Name = "gButton17"; + this.gButton17.NoBorder = false; + this.gButton17.NoLed = true; + this.gButton17.RadioButton = false; + this.gButton17.Radius = 6; + this.gButton17.RadiusB = 0; + this.gButton17.Size = new Size(131, 23); + this.gButton17.StartColor = Color.Black; + this.gButton17.StartFactor = 0.35f; + this.gButton17.TabIndex = 19; + this.gButton17.TabStop = false; + this.gButton17.Text = "18"; + this.gButton17.MouseUp += this.gList_Click; + this.gButton16.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton16.Arrow = 0; + this.gButton16.BackColor = SystemColors.Control; + this.gButton16.Checked = false; + this.gButton16.Edge = 0.15f; + this.gButton16.EndColor = Color.White; + this.gButton16.EndFactor = 0.2f; + this.gButton16.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton16.ForeColor = Color.White; + this.gButton16.Location = new Point(0, 394); + this.gButton16.Name = "gButton16"; + this.gButton16.NoBorder = false; + this.gButton16.NoLed = true; + this.gButton16.RadioButton = false; + this.gButton16.Radius = 6; + this.gButton16.RadiusB = 0; + this.gButton16.Size = new Size(131, 23); + this.gButton16.StartColor = Color.Black; + this.gButton16.StartFactor = 0.35f; + this.gButton16.TabIndex = 18; + this.gButton16.TabStop = false; + this.gButton16.Text = "17"; + this.gButton16.MouseUp += this.gList_Click; + this.gButton15.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton15.Arrow = 0; + this.gButton15.BackColor = SystemColors.Control; + this.gButton15.Checked = false; + this.gButton15.Edge = 0.15f; + this.gButton15.EndColor = Color.White; + this.gButton15.EndFactor = 0.2f; + this.gButton15.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton15.ForeColor = Color.White; + this.gButton15.Location = new Point(0, 371); + this.gButton15.Name = "gButton15"; + this.gButton15.NoBorder = false; + this.gButton15.NoLed = true; + this.gButton15.RadioButton = false; + this.gButton15.Radius = 6; + this.gButton15.RadiusB = 0; + this.gButton15.Size = new Size(131, 23); + this.gButton15.StartColor = Color.Black; + this.gButton15.StartFactor = 0.35f; + this.gButton15.TabIndex = 17; + this.gButton15.TabStop = false; + this.gButton15.Text = "16"; + this.gButton15.MouseUp += this.gList_Click; + this.gButton14.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton14.Arrow = 0; + this.gButton14.BackColor = SystemColors.Control; + this.gButton14.Checked = false; + this.gButton14.Edge = 0.15f; + this.gButton14.EndColor = Color.White; + this.gButton14.EndFactor = 0.2f; + this.gButton14.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton14.ForeColor = Color.White; + this.gButton14.Location = new Point(0, 348); + this.gButton14.Name = "gButton14"; + this.gButton14.NoBorder = false; + this.gButton14.NoLed = true; + this.gButton14.RadioButton = false; + this.gButton14.Radius = 6; + this.gButton14.RadiusB = 0; + this.gButton14.Size = new Size(131, 23); + this.gButton14.StartColor = Color.Black; + this.gButton14.StartFactor = 0.35f; + this.gButton14.TabIndex = 16; + this.gButton14.TabStop = false; + this.gButton14.Text = "15"; + this.gButton14.MouseUp += this.gList_Click; + this.gButton13.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton13.Arrow = 0; + this.gButton13.BackColor = SystemColors.Control; + this.gButton13.Checked = false; + this.gButton13.Edge = 0.15f; + this.gButton13.EndColor = Color.White; + this.gButton13.EndFactor = 0.2f; + this.gButton13.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton13.ForeColor = Color.White; + this.gButton13.Location = new Point(0, 325); + this.gButton13.Name = "gButton13"; + this.gButton13.NoBorder = false; + this.gButton13.NoLed = true; + this.gButton13.RadioButton = false; + this.gButton13.Radius = 6; + this.gButton13.RadiusB = 0; + this.gButton13.Size = new Size(131, 23); + this.gButton13.StartColor = Color.Black; + this.gButton13.StartFactor = 0.35f; + this.gButton13.TabIndex = 15; + this.gButton13.TabStop = false; + this.gButton13.Text = "14"; + this.gButton13.MouseUp += this.gList_Click; + this.gButton12.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton12.Arrow = 0; + this.gButton12.BackColor = SystemColors.Control; + this.gButton12.Checked = false; + this.gButton12.Edge = 0.15f; + this.gButton12.EndColor = Color.White; + this.gButton12.EndFactor = 0.2f; + this.gButton12.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton12.ForeColor = Color.White; + this.gButton12.Location = new Point(0, 302); + this.gButton12.Name = "gButton12"; + this.gButton12.NoBorder = false; + this.gButton12.NoLed = true; + this.gButton12.RadioButton = false; + this.gButton12.Radius = 6; + this.gButton12.RadiusB = 0; + this.gButton12.Size = new Size(131, 23); + this.gButton12.StartColor = Color.Black; + this.gButton12.StartFactor = 0.35f; + this.gButton12.TabIndex = 14; + this.gButton12.TabStop = false; + this.gButton12.Text = "13"; + this.gButton12.MouseUp += this.gList_Click; + this.gButton11.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton11.Arrow = 0; + this.gButton11.BackColor = SystemColors.Control; + this.gButton11.Checked = false; + this.gButton11.Edge = 0.15f; + this.gButton11.EndColor = Color.White; + this.gButton11.EndFactor = 0.2f; + this.gButton11.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton11.ForeColor = Color.White; + this.gButton11.Location = new Point(0, 279); + this.gButton11.Name = "gButton11"; + this.gButton11.NoBorder = false; + this.gButton11.NoLed = true; + this.gButton11.RadioButton = false; + this.gButton11.Radius = 6; + this.gButton11.RadiusB = 0; + this.gButton11.Size = new Size(131, 23); + this.gButton11.StartColor = Color.Black; + this.gButton11.StartFactor = 0.35f; + this.gButton11.TabIndex = 13; + this.gButton11.TabStop = false; + this.gButton11.Text = "12"; + this.gButton11.MouseUp += this.gList_Click; + this.gButton10.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton10.Arrow = 0; + this.gButton10.BackColor = SystemColors.Control; + this.gButton10.Checked = false; + this.gButton10.Edge = 0.15f; + this.gButton10.EndColor = Color.White; + this.gButton10.EndFactor = 0.2f; + this.gButton10.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton10.ForeColor = Color.White; + this.gButton10.Location = new Point(0, 256); + this.gButton10.Name = "gButton10"; + this.gButton10.NoBorder = false; + this.gButton10.NoLed = true; + this.gButton10.RadioButton = false; + this.gButton10.Radius = 6; + this.gButton10.RadiusB = 0; + this.gButton10.Size = new Size(131, 23); + this.gButton10.StartColor = Color.Black; + this.gButton10.StartFactor = 0.35f; + this.gButton10.TabIndex = 12; + this.gButton10.TabStop = false; + this.gButton10.Text = "11"; + this.gButton10.MouseUp += this.gList_Click; + this.gButton9.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton9.Arrow = 0; + this.gButton9.BackColor = SystemColors.Control; + this.gButton9.Checked = false; + this.gButton9.Edge = 0.15f; + this.gButton9.EndColor = Color.White; + this.gButton9.EndFactor = 0.2f; + this.gButton9.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton9.ForeColor = Color.White; + this.gButton9.Location = new Point(0, 233); + this.gButton9.Name = "gButton9"; + this.gButton9.NoBorder = false; + this.gButton9.NoLed = true; + this.gButton9.RadioButton = false; + this.gButton9.Radius = 6; + this.gButton9.RadiusB = 0; + this.gButton9.Size = new Size(131, 23); + this.gButton9.StartColor = Color.Black; + this.gButton9.StartFactor = 0.35f; + this.gButton9.TabIndex = 11; + this.gButton9.TabStop = false; + this.gButton9.Text = "10"; + this.gButton9.MouseUp += this.gList_Click; + this.gButton8.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton8.Arrow = 0; + this.gButton8.BackColor = SystemColors.Control; + this.gButton8.Checked = false; + this.gButton8.Edge = 0.15f; + this.gButton8.EndColor = Color.White; + this.gButton8.EndFactor = 0.2f; + this.gButton8.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton8.ForeColor = Color.White; + this.gButton8.Location = new Point(0, 210); + this.gButton8.Name = "gButton8"; + this.gButton8.NoBorder = false; + this.gButton8.NoLed = true; + this.gButton8.RadioButton = false; + this.gButton8.Radius = 6; + this.gButton8.RadiusB = 0; + this.gButton8.Size = new Size(131, 23); + this.gButton8.StartColor = Color.Black; + this.gButton8.StartFactor = 0.35f; + this.gButton8.TabIndex = 10; + this.gButton8.TabStop = false; + this.gButton8.Text = "9"; + this.gButton8.MouseUp += this.gList_Click; + this.gButton7.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton7.Arrow = 0; + this.gButton7.BackColor = SystemColors.Control; + this.gButton7.Checked = false; + this.gButton7.Edge = 0.15f; + this.gButton7.EndColor = Color.White; + this.gButton7.EndFactor = 0.2f; + this.gButton7.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton7.ForeColor = Color.White; + this.gButton7.Location = new Point(0, 187); + this.gButton7.Name = "gButton7"; + this.gButton7.NoBorder = false; + this.gButton7.NoLed = true; + this.gButton7.RadioButton = false; + this.gButton7.Radius = 6; + this.gButton7.RadiusB = 0; + this.gButton7.Size = new Size(131, 23); + this.gButton7.StartColor = Color.Black; + this.gButton7.StartFactor = 0.35f; + this.gButton7.TabIndex = 9; + this.gButton7.TabStop = false; + this.gButton7.Text = "8"; + this.gButton7.MouseUp += this.gList_Click; + this.gButton6.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton6.Arrow = 0; + this.gButton6.BackColor = SystemColors.Control; + this.gButton6.Checked = false; + this.gButton6.Edge = 0.15f; + this.gButton6.EndColor = Color.White; + this.gButton6.EndFactor = 0.2f; + this.gButton6.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton6.ForeColor = Color.White; + this.gButton6.Location = new Point(0, 164); + this.gButton6.Name = "gButton6"; + this.gButton6.NoBorder = false; + this.gButton6.NoLed = true; + this.gButton6.RadioButton = false; + this.gButton6.Radius = 6; + this.gButton6.RadiusB = 0; + this.gButton6.Size = new Size(131, 23); + this.gButton6.StartColor = Color.Black; + this.gButton6.StartFactor = 0.35f; + this.gButton6.TabIndex = 8; + this.gButton6.TabStop = false; + this.gButton6.Text = "7"; + this.gButton6.MouseUp += this.gList_Click; + this.gButton5.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton5.Arrow = 0; + this.gButton5.BackColor = SystemColors.Control; + this.gButton5.Checked = false; + this.gButton5.Edge = 0.15f; + this.gButton5.EndColor = Color.White; + this.gButton5.EndFactor = 0.2f; + this.gButton5.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton5.ForeColor = Color.White; + this.gButton5.Location = new Point(0, 141); + this.gButton5.Name = "gButton5"; + this.gButton5.NoBorder = false; + this.gButton5.NoLed = true; + this.gButton5.RadioButton = false; + this.gButton5.Radius = 6; + this.gButton5.RadiusB = 0; + this.gButton5.Size = new Size(131, 23); + this.gButton5.StartColor = Color.Black; + this.gButton5.StartFactor = 0.35f; + this.gButton5.TabIndex = 7; + this.gButton5.TabStop = false; + this.gButton5.Text = "6"; + this.gButton5.MouseUp += this.gList_Click; + this.gButton4.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton4.Arrow = 0; + this.gButton4.BackColor = SystemColors.Control; + this.gButton4.Checked = false; + this.gButton4.Edge = 0.15f; + this.gButton4.EndColor = Color.White; + this.gButton4.EndFactor = 0.2f; + this.gButton4.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton4.ForeColor = Color.White; + this.gButton4.Location = new Point(-1, 118); + this.gButton4.Name = "gButton4"; + this.gButton4.NoBorder = false; + this.gButton4.NoLed = true; + this.gButton4.RadioButton = false; + this.gButton4.Radius = 6; + this.gButton4.RadiusB = 0; + this.gButton4.Size = new Size(131, 23); + this.gButton4.StartColor = Color.Black; + this.gButton4.StartFactor = 0.35f; + this.gButton4.TabIndex = 6; + this.gButton4.TabStop = false; + this.gButton4.Text = "5"; + this.gButton4.MouseUp += this.gList_Click; + this.gButton3.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton3.Arrow = 0; + this.gButton3.BackColor = SystemColors.Control; + this.gButton3.Checked = false; + this.gButton3.Edge = 0.15f; + this.gButton3.EndColor = Color.White; + this.gButton3.EndFactor = 0.2f; + this.gButton3.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton3.ForeColor = Color.White; + this.gButton3.Location = new Point(0, 95); + this.gButton3.Name = "gButton3"; + this.gButton3.NoBorder = false; + this.gButton3.NoLed = true; + this.gButton3.RadioButton = false; + this.gButton3.Radius = 6; + this.gButton3.RadiusB = 0; + this.gButton3.Size = new Size(131, 23); + this.gButton3.StartColor = Color.Black; + this.gButton3.StartFactor = 0.35f; + this.gButton3.TabIndex = 5; + this.gButton3.TabStop = false; + this.gButton3.Text = "4"; + this.gButton3.MouseUp += this.gList_Click; + this.gButton2.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton2.Arrow = 0; + this.gButton2.BackColor = SystemColors.Control; + this.gButton2.Checked = false; + this.gButton2.Edge = 0.15f; + this.gButton2.EndColor = Color.White; + this.gButton2.EndFactor = 0.2f; + this.gButton2.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton2.ForeColor = Color.White; + this.gButton2.Location = new Point(0, 72); + this.gButton2.Name = "gButton2"; + this.gButton2.NoBorder = false; + this.gButton2.NoLed = true; + this.gButton2.RadioButton = false; + this.gButton2.Radius = 6; + this.gButton2.RadiusB = 0; + this.gButton2.Size = new Size(131, 23); + this.gButton2.StartColor = Color.Black; + this.gButton2.StartFactor = 0.35f; + this.gButton2.TabIndex = 4; + this.gButton2.TabStop = false; + this.gButton2.Text = "3"; + this.gButton2.MouseUp += this.gList_Click; + this.gButton1.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton1.Arrow = 0; + this.gButton1.BackColor = SystemColors.Control; + this.gButton1.Checked = false; + this.gButton1.Edge = 0.15f; + this.gButton1.EndColor = Color.White; + this.gButton1.EndFactor = 0.2f; + this.gButton1.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton1.ForeColor = Color.White; + this.gButton1.Location = new Point(0, 49); + this.gButton1.Name = "gButton1"; + this.gButton1.NoBorder = false; + this.gButton1.NoLed = true; + this.gButton1.RadioButton = false; + this.gButton1.Radius = 6; + this.gButton1.RadiusB = 0; + this.gButton1.Size = new Size(131, 23); + this.gButton1.StartColor = Color.Black; + this.gButton1.StartFactor = 0.35f; + this.gButton1.TabIndex = 3; + this.gButton1.TabStop = false; + this.gButton1.Text = "2"; + this.gButton1.MouseUp += this.gList_Click; + this.gButton0.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); + this.gButton0.Arrow = 0; + this.gButton0.BackColor = SystemColors.Control; + this.gButton0.Checked = false; + this.gButton0.Edge = 0.15f; + this.gButton0.EndColor = Color.White; + this.gButton0.EndFactor = 0.2f; + this.gButton0.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.gButton0.ForeColor = Color.White; + this.gButton0.Location = new Point(0, 26); + this.gButton0.Name = "gButton0"; + this.gButton0.NoBorder = false; + this.gButton0.NoLed = true; + this.gButton0.RadioButton = false; + this.gButton0.Radius = 6; + this.gButton0.RadiusB = 0; + this.gButton0.Size = new Size(131, 23); + this.gButton0.StartColor = Color.Black; + this.gButton0.StartFactor = 0.35f; + this.gButton0.TabIndex = 2; + this.gButton0.Text = "1"; + this.gButton0.MouseUp += this.gList_Click; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.gBexpand); + base.Controls.Add(this.textBox); + base.Controls.Add(this.gradientPanel); + base.Controls.Add(this.gButton18); + base.Controls.Add(this.gButton17); + base.Controls.Add(this.gButton16); + base.Controls.Add(this.gButton15); + base.Controls.Add(this.gButton14); + base.Controls.Add(this.gButton13); + base.Controls.Add(this.gButton12); + base.Controls.Add(this.gButton11); + base.Controls.Add(this.gButton10); + base.Controls.Add(this.gButton9); + base.Controls.Add(this.gButton8); + base.Controls.Add(this.gButton7); + base.Controls.Add(this.gButton6); + base.Controls.Add(this.gButton5); + base.Controls.Add(this.gButton4); + base.Controls.Add(this.gButton3); + base.Controls.Add(this.gButton2); + base.Controls.Add(this.gButton1); + base.Controls.Add(this.gButton0); + base.Name = "gCombo"; + base.Size = new Size(131, 495); + base.ResumeLayout(false); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gCombo.resx b/SDRSharper.Controls/SDRSharp.Controls/gCombo.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gCombo.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.Controls/SDRSharp.Controls/gLabel.cs b/SDRSharper.Controls/SDRSharp.Controls/gLabel.cs new file mode 100644 index 0000000..171fb4b --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gLabel.cs @@ -0,0 +1,90 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + [DefaultEvent("TextChanged")] + public class gLabel : UserControl + { + private string _text; + + private IContainer components; + + private BorderGradientPanel gradientPanel; + + [Browsable(true)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] + public override string Text + { + get + { + return this._text; + } + set + { + this._text = value; + this.gradientPanel.Invalidate(); + } + } + + public gLabel() + { + this.InitializeComponent(); + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + this.gradientPanel.Height = base.Height; + this.gradientPanel.Width = base.Width; + } + + private void gradientPanel_Paint(object sender, PaintEventArgs e) + { + using (Brush brush = new SolidBrush(this.ForeColor)) + { + e.Graphics.DrawString(this._text, this.Font, brush, 3f, ((float)this.gradientPanel.Height - e.Graphics.MeasureString(this._text, this.Font).Height) / 2f); + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.gradientPanel = new BorderGradientPanel(); + base.SuspendLayout(); + this.gradientPanel.BackColor = Color.Black; + this.gradientPanel.Edge = 0.18f; + this.gradientPanel.EndColor = Color.Black; + this.gradientPanel.EndFactor = 0.6f; + this.gradientPanel.Location = new Point(0, 0); + this.gradientPanel.Margin = new Padding(2); + this.gradientPanel.Name = "gradientPanel"; + this.gradientPanel.NoBorder = true; + this.gradientPanel.Radius = 6; + this.gradientPanel.RadiusB = 0; + this.gradientPanel.Size = new Size(138, 38); + this.gradientPanel.StartColor = Color.Gray; + this.gradientPanel.StartFactor = 0.6f; + this.gradientPanel.TabIndex = 17; + this.gradientPanel.TabStop = false; + this.gradientPanel.Text = "borderGradientPanel3"; + this.gradientPanel.Paint += this.gradientPanel_Paint; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.gradientPanel); + base.Name = "gLabel"; + base.Size = new Size(150, 55); + base.ResumeLayout(false); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gLabel.resx b/SDRSharper.Controls/SDRSharp.Controls/gLabel.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gLabel.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.Controls/SDRSharp.Controls/gProgress.cs b/SDRSharper.Controls/SDRSharp.Controls/gProgress.cs new file mode 100644 index 0000000..c8e1f06 --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gProgress.cs @@ -0,0 +1,278 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + public class gProgress : UserControl + { + private int _min; + + private int _max = 60000; + + private int _value; + + private int _position = 1; + + private float _fraction; + + private int _tickSize = 2; + + private int _barPosition; + + private Graphics _graphics; + + private Color _backColor = Color.FromArgb(64, 64, 64); + + private Brush _backBrush; + + private ToolTip _toolTip; + + private Bitmap _bitmap; + + private int _curX = -1; + + private int _curY = -1; + + private static Font LabelFont = new Font("Aerial", 7f); + + private static Font CursorFont = new Font("Aerial", 8f); + + private Rectangle _barRect; + + private Rectangle _drawRect; + + private Point _point; + + private Size _size; + + private IContainer components; + + public long Max => this._max; + + public long Min => this._min; + + public float Fraction => this._fraction; + + public ToolTip ToolTip + { + get + { + return this._toolTip; + } + set + { + this._toolTip = value; + } + } + + public event EventHandler ValueChanged; + + public gProgress() + { + this.InitializeComponent(); + this._backBrush = new SolidBrush(this._backColor); + } + + public void Draw(int value) + { + if (value >= 0) + { + int num = Math.Max(1, Math.Min(base.Width, (int)((float)(value - this._min) / (float)(this._max - this._min) * (float)(base.Width - 2)))); + if (this._curX > 0) + { + this.drawBackground(); + string text = this.time((int)((float)this._curX / (float)base.Width * (float)(this._max - this._min)), 0); + SizeF sizeF = this._graphics.MeasureString(text, gProgress.CursorFont); + this._graphics.DrawString(text, gProgress.CursorFont, Brushes.Yellow, (float)this._curX - sizeF.Width / 2f, 0f); + base.Invalidate(); + } + else if (num < this._position) + { + this._position = 1; + this._graphics.FillRectangle(this._backBrush, this._barRect); + base.Invalidate(this._barRect); + } + if (num != this._position) + { + this._point.X = this._position; + this._size.Width = num - this._position; + this._drawRect.Location = this._point; + this._drawRect.Size = this._size; + this._graphics.FillRectangle(Brushes.Gray, this._drawRect); + if (this._curX < 0 && num > this._position) + { + base.Invalidate(this._drawRect); + } + this._position = num; + this._value = value; + } + } + } + + public void DrawBackground(int min, int max) + { + if (max > 0) + { + this._min = min; + } + if (max > 0) + { + this._max = max; + } + this.drawBackground(); + base.Invalidate(); + } + + private void drawBackground() + { + int num = 300; + int num2 = (this._max - this._min) / 100; + if (num2 <= 10) + { + num = 1; + } + else if (num2 <= 50) + { + num = 5; + } + else if (num2 <= 100) + { + num = 10; + } + else if (num2 <= 300) + { + num = 30; + } + else if (num2 <= 600) + { + num = 60; + } + else if (num2 <= 1200) + { + num = 120; + } + num *= 100; + this._position = 1; + this._graphics.Clear(this._backColor); + this._graphics.DrawRectangle(Pens.Black, 0, this._barPosition, base.Width - 1, base.Height - this._barPosition - 1); + for (int i = this._min; i < this._max + num; i += num) + { + int num3 = Math.Min(i, this._max); + string text = this.time(num3, num); + SizeF sizeF = this._graphics.MeasureString(text, gProgress.LabelFont); + if (num3 == this._min) + { + sizeF.Width = 4f; + } + else if (num3 == this._max) + { + sizeF.Width *= 2f; + } + float num4 = Math.Max(0f, Math.Min((float)(base.Width - 1), (float)base.Width * (float)num3 / (float)(this._max - this._min))); + if (!(num4 > (float)base.Width - 2f * sizeF.Width) || !(num4 < (float)(base.Width - 1))) + { + this._barPosition = (int)sizeF.Height + this._tickSize; + this._graphics.DrawString(text, gProgress.LabelFont, Brushes.Orange, num4 - sizeF.Width / 2f, 0f); + this._graphics.DrawLine(Pens.Orange, num4, sizeF.Height - 1f, num4, (float)base.Height); + } + } + } + + private string time(int pos, int step) + { + if (pos == 0) + { + return "0"; + } + if (step < 6000) + { + return (pos / 6000).ToString() + "m" + (pos % 6000 / 100).ToString("00"); + } + return (pos / 6000).ToString() + " m"; + } + + protected override void OnPaint(PaintEventArgs e) + { + base.OnPaint(e); + e.Graphics.DrawImageUnscaled(this._bitmap, 0, 0); + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + if (base.Width > 0 && base.Height > 0) + { + if (this._bitmap != null) + { + this._bitmap.Dispose(); + } + if (this._graphics != null) + { + this._graphics.Dispose(); + } + this._bitmap = new Bitmap(base.Width, base.Height); + this._graphics = Graphics.FromImage(this._bitmap); + this._point = new Point(1, this._barPosition + 1); + this._size = new Size(base.Width - 2, base.Height - this._barPosition - 2); + this._barRect = new Rectangle(this._point, this._size); + this._drawRect = new Rectangle(this._point, this._size); + this.drawBackground(); + base.Invalidate(); + } + } + + protected override void OnMouseDown(MouseEventArgs e) + { + base.OnMouseDown(e); + this._fraction = (float)e.X / (float)base.Width; + if (this.ValueChanged != null) + { + this.ValueChanged(this, new EventArgs()); + } + } + + protected override void OnMouseMove(MouseEventArgs e) + { + base.OnMouseMove(e); + this._curX = e.X; + this._curY = e.Y; + } + + protected override void OnMouseEnter(EventArgs e) + { + base.OnMouseEnter(e); + this.Cursor = Cursors.Default; + } + + protected override void OnMouseLeave(EventArgs e) + { + base.OnMouseLeave(e); + this.Cursor = Cursors.Default; + this._curX = -1; + this._curY = -1; + this.drawBackground(); + base.Invalidate(); + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + base.SuspendLayout(); + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Name = "gProgress"; + base.Size = new Size(200, 31); + base.ResumeLayout(false); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gProgress.resx b/SDRSharper.Controls/SDRSharp.Controls/gProgress.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gProgress.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.Controls/SDRSharp.Controls/gSliderH.cs b/SDRSharper.Controls/SDRSharp.Controls/gSliderH.cs new file mode 100644 index 0000000..f8f8890 --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gSliderH.cs @@ -0,0 +1,400 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + [DefaultEvent("ValueChanged")] + public class gSliderH : UserControl + { + private int _oldPos; + + private int _oldCur; + + private float _factor; + + private int _min; + + private int _max = 100; + + private int _val = -1; + + private bool _button = true; + + private int _ticks; + + private Color _tickColor = Color.Orange; + + public ToolTip _toolTip; + + private IContainer components; + + private gButton gButton; + + private gButton gThumb; + + private Panel panel; + + private BorderGradientPanel gradientPanel; + + public int Minimum + { + get + { + return this._min; + } + set + { + this._min = value; + } + } + + public int Maximum + { + get + { + return this._max; + } + set + { + this._max = value; + } + } + + public int Value + { + get + { + return this._val; + } + set + { + this.SetValue(value); + } + } + + public bool Button + { + get + { + return this._button; + } + set + { + this._button = value; + } + } + + public bool Checked + { + get + { + return this.gButton.Checked; + } + set + { + this.gButton.Checked = value; + } + } + + public int Ticks + { + get + { + return this._ticks + 1; + } + set + { + this._ticks = value - 1; + } + } + + public Color TickColor + { + get + { + return this._tickColor; + } + set + { + this._tickColor = value; + } + } + + public ToolTip ToolTip + { + get + { + return this._toolTip; + } + set + { + this._toolTip = value; + } + } + + public float ColorFactor + { + get + { + return this.gradientPanel.EndFactor; + } + set + { + this.gradientPanel.EndFactor = value; + this.gradientPanel.StartFactor = value; + } + } + + public event EventHandler ValueChanged; + + public event EventHandler CheckedChanged; + + public gSliderH() + { + this.InitializeComponent(); + } + + protected override void OnLoad(EventArgs e) + { + base.OnLoad(e); + if (this._toolTip != null) + { + string toolTip = this._toolTip.GetToolTip(this); + this._toolTip.SetToolTip(this.gThumb, toolTip); + } + } + + protected override void OnForeColorChanged(EventArgs e) + { + base.OnForeColorChanged(e); + this.gThumb.ForeColor = this.ForeColor; + } + + protected override void OnResize(EventArgs e) + { + this.gThumb.Height = base.Height; + this.gButton.Height = base.Height; + this.gButton.Width = base.Height; + this.gButton.Visible = this._button; + this.gradientPanel.Left = (this._button ? (this.gButton.Width + 2) : 0); + this.gradientPanel.Width = base.Width - this.gradientPanel.Left - 1; + this.gradientPanel.Height = base.Height; + this.panel.Left = this.gradientPanel.Left + 10; + this.panel.Width = this.gradientPanel.Width - 20; + this.panel.Top = (base.Height - this.panel.Height) / 2; + base.OnResize(e); + } + + private void hThumb_MouseDown(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + this._oldPos = this.gThumb.Left + this.gThumb.Width / 2; + this._oldCur = Control.MousePosition.X; + } + } + + private void hThumb_MouseMove(object sender, MouseEventArgs e) + { + if (this._oldCur != 0 && e.Button == MouseButtons.Left) + { + this.SetThumb(this._oldPos + Control.MousePosition.X - this._oldCur); + } + } + + private void hThumb_MouseUp(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + this._oldCur = 0; + } + } + + private void SetValue(int value) + { + if (this._val != value) + { + this._val = Math.Min(this._max, value); + this._val = Math.Max(this._min, this._val); + this._factor = (float)(this._val - this._min) / (float)(this._max - this._min); + int num = (int)((float)this.panel.Left + this._factor * (float)this.panel.Width); + this.gThumb.Left = num - this.gThumb.Width / 2; + if (this.ValueChanged != null) + { + this.ValueChanged(this, new EventArgs()); + } + } + } + + private void SetThumb(int newPos) + { + newPos = Math.Max(this.panel.Left, newPos); + newPos = Math.Min(this.panel.Left + this.panel.Width, newPos); + this.gThumb.Left = newPos - this.gThumb.Width / 2; + this._factor = (float)(newPos - this.panel.Left) / (float)this.panel.Width; + this._val = (int)((float)this._min + (float)(this._max - this._min) * this._factor); + if (this.ValueChanged != null) + { + this.ValueChanged(this, new EventArgs()); + } + } + + private void gradientPanel_MouseDown(object sender, MouseEventArgs e) + { + this.SetThumb(this.gradientPanel.Left + e.X); + } + + private void panel_MouseDown(object sender, MouseEventArgs e) + { + this.SetThumb(this.panel.Left + e.X); + } + + private void gButton_CheckedChanged(object sender, EventArgs e) + { + if (this.ValueChanged != null) + { + this.CheckedChanged(this, new EventArgs()); + } + } + + private void gThumb_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) + { + if (e.KeyCode != Keys.Left && e.KeyCode != Keys.Right && e.KeyCode != Keys.Space) + { + return; + } + e.IsInputKey = true; + } + + private void gThumb_KeyDown(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.Left) + { + this.Value = this._val - 1; + e.Handled = true; + } + else if (e.KeyCode == Keys.Right) + { + this.Value = this._val + 1; + e.Handled = true; + } + else if (e.KeyCode == Keys.Space) + { + this.gButton.Checked = !this.gButton.Checked; + e.Handled = true; + } + } + + private void gradientPanel_Paint(object sender, PaintEventArgs e) + { + if (this._ticks > 0) + { + int num = this.gradientPanel.Height / 4; + using (Pen pen = new Pen(this._tickColor, 1f)) + { + for (int i = 0; i <= this._ticks; i++) + { + int num2 = this.panel.Left - this.gradientPanel.Left + (int)((float)(this.panel.Width - 2) / (float)this._ticks * (float)i) + 1; + e.Graphics.DrawLine(pen, num2, num, num2, this.gradientPanel.Height - num - 1); + } + } + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.panel = new Panel(); + this.gButton = new gButton(); + this.gThumb = new gButton(); + this.gradientPanel = new BorderGradientPanel(); + base.SuspendLayout(); + this.panel.BackColor = Color.Black; + this.panel.Location = new Point(38, 14); + this.panel.Name = "panel"; + this.panel.Size = new Size(263, 4); + this.panel.TabIndex = 30; + this.panel.MouseDown += this.panel_MouseDown; + this.gButton.Arrow = 0; + this.gButton.BackColor = SystemColors.Control; + this.gButton.Checked = false; + this.gButton.Edge = 0.15f; + this.gButton.EndColor = Color.White; + this.gButton.EndFactor = 0.2f; + this.gButton.Font = new Font("Microsoft Sans Serif", 7.8f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.gButton.Location = new Point(0, 0); + this.gButton.Name = "gButton"; + this.gButton.NoBorder = false; + this.gButton.NoLed = false; + this.gButton.RadioButton = false; + this.gButton.Radius = 4; + this.gButton.RadiusB = 6; + this.gButton.Size = new Size(32, 32); + this.gButton.StartColor = Color.Black; + this.gButton.StartFactor = 0.35f; + this.gButton.TabIndex = 0; + this.gThumb.Anchor = AnchorStyles.None; + this.gThumb.Arrow = 101; + this.gThumb.BackColor = SystemColors.Control; + this.gThumb.Checked = false; + this.gThumb.Edge = 0.15f; + this.gThumb.EndColor = Color.White; + this.gThumb.EndFactor = 0.2f; + this.gThumb.Font = new Font("Microsoft Sans Serif", 7.8f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.gThumb.ForeColor = Color.Black; + this.gThumb.Location = new Point(156, 0); + this.gThumb.Name = "gThumb"; + this.gThumb.NoBorder = false; + this.gThumb.NoLed = true; + this.gThumb.RadioButton = false; + this.gThumb.Radius = 1; + this.gThumb.RadiusB = 1; + this.gThumb.Size = new Size(11, 34); + this.gThumb.StartColor = Color.DarkGray; + this.gThumb.StartFactor = 0.35f; + this.gThumb.TabIndex = 1; + this.gThumb.KeyDown += this.gThumb_KeyDown; + this.gThumb.MouseDown += this.hThumb_MouseDown; + this.gThumb.MouseMove += this.hThumb_MouseMove; + this.gThumb.MouseUp += this.hThumb_MouseUp; + this.gThumb.PreviewKeyDown += this.gThumb_PreviewKeyDown; + this.gradientPanel.BackColor = Color.Black; + this.gradientPanel.Edge = 0.18f; + this.gradientPanel.EndColor = Color.Black; + this.gradientPanel.EndFactor = 0.5f; + this.gradientPanel.Location = new Point(34, 0); + this.gradientPanel.Margin = new Padding(2); + this.gradientPanel.Name = "gradientPanel"; + this.gradientPanel.NoBorder = true; + this.gradientPanel.Radius = 4; + this.gradientPanel.RadiusB = 6; + this.gradientPanel.Size = new Size(282, 34); + this.gradientPanel.StartColor = Color.Gray; + this.gradientPanel.StartFactor = 0.5f; + this.gradientPanel.TabIndex = 29; + this.gradientPanel.TabStop = false; + this.gradientPanel.Text = "borderGradientPanel3"; + this.gradientPanel.Paint += this.gradientPanel_Paint; + this.gradientPanel.MouseDown += this.gradientPanel_MouseDown; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.gButton); + base.Controls.Add(this.gThumb); + base.Controls.Add(this.panel); + base.Controls.Add(this.gradientPanel); + base.Name = "gSliderH"; + base.Size = new Size(330, 46); + base.ResumeLayout(false); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gSliderH.resx b/SDRSharper.Controls/SDRSharp.Controls/gSliderH.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gSliderH.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.Controls/SDRSharp.Controls/gSliderV.cs b/SDRSharper.Controls/SDRSharp.Controls/gSliderV.cs new file mode 100644 index 0000000..d6ef4a7 --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gSliderV.cs @@ -0,0 +1,402 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + [DefaultEvent("ValueChanged")] + public class gSliderV : UserControl + { + private int _oldPos; + + private int _oldCur; + + private float _factor; + + private int _min; + + private int _max = 100; + + private int _val = -1; + + private bool _button = true; + + private int _ticks; + + private Color _tickColor = Color.Orange; + + public ToolTip _toolTip; + + private IContainer components; + + private BorderGradientPanel gradientPanel; + + private Panel panel; + + private gButton gThumb; + + private gButton gButton; + + public int Minimum + { + get + { + return this._min; + } + set + { + this._min = value; + } + } + + public int Maximum + { + get + { + return this._max; + } + set + { + this._max = value; + } + } + + public int Value + { + get + { + return this._val; + } + set + { + this.SetValue(value); + } + } + + public bool Button + { + get + { + return this._button; + } + set + { + this._button = value; + } + } + + public bool Checked + { + get + { + return this.gButton.Checked; + } + set + { + this.gButton.Checked = value; + } + } + + public int Ticks + { + get + { + return this._ticks + 1; + } + set + { + this._ticks = value - 1; + } + } + + public Color TickColor + { + get + { + return this._tickColor; + } + set + { + this._tickColor = value; + } + } + + public ToolTip ToolTip + { + get + { + return this._toolTip; + } + set + { + this._toolTip = value; + } + } + + public float ColorFactor + { + get + { + return this.gradientPanel.EndFactor; + } + set + { + this.gradientPanel.EndFactor = value; + this.gradientPanel.StartFactor = value; + } + } + + public event EventHandler ValueChanged; + + public event EventHandler CheckedChanged; + + public gSliderV() + { + this.InitializeComponent(); + } + + protected override void OnLoad(EventArgs e) + { + base.OnLoad(e); + if (this._toolTip != null) + { + string toolTip = this._toolTip.GetToolTip(this); + this._toolTip.SetToolTip(this.gThumb, toolTip); + } + } + + protected override void OnForeColorChanged(EventArgs e) + { + base.OnForeColorChanged(e); + this.gThumb.ForeColor = this.ForeColor; + } + + protected override void OnResize(EventArgs e) + { + this.gThumb.Width = base.Width; + this.gButton.Width = base.Width; + this.gButton.Height = base.Width; + this.gButton.Visible = this._button; + this.gradientPanel.Top = (this._button ? (this.gButton.Height + 2) : 0); + this.gradientPanel.Height = base.Height - this.gradientPanel.Top - 1; + this.gradientPanel.Width = base.Width; + this.panel.Top = this.gradientPanel.Top + 10; + this.panel.Height = this.gradientPanel.Height - 20; + this.panel.Left = (base.Width - this.panel.Width) / 2; + base.OnResize(e); + } + + private void gThumb_MouseDown(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + this._oldPos = this.gThumb.Top + this.gThumb.Height / 2; + this._oldCur = Control.MousePosition.Y; + } + } + + private void gThumb_MouseMove(object sender, MouseEventArgs e) + { + if (this._oldCur != 0 && e.Button == MouseButtons.Left) + { + this.SetThumb(this._oldPos + Control.MousePosition.Y - this._oldCur); + } + } + + private void gThumb_MouseUp(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + this._oldCur = 0; + } + } + + private void SetValue(int value) + { + if (this._val != value) + { + this._val = Math.Min(this._max, value); + this._val = Math.Max(this._min, this._val); + this._factor = (float)(this._max - this._val) / (float)(this._max - this._min); + int num = (int)((float)this.panel.Top + this._factor * (float)this.panel.Height); + this.gThumb.Top = num - this.gThumb.Height / 2; + if (this.ValueChanged != null) + { + this.ValueChanged(this, new EventArgs()); + } + } + } + + private void SetThumb(int newPos) + { + newPos = Math.Max(this.panel.Top, newPos); + newPos = Math.Min(this.panel.Top + this.panel.Height, newPos); + this.gThumb.Top = newPos - this.gThumb.Height / 2; + this._factor = (float)(newPos - this.panel.Top) / (float)this.panel.Height; + this._val = (int)((float)this._max - (float)(this._max - this._min) * this._factor); + if (this.ValueChanged != null) + { + this.ValueChanged(this, new EventArgs()); + } + } + + private void gradientPanel_MouseDown(object sender, MouseEventArgs e) + { + this.gThumb.Focus(); + this.SetThumb(this.gradientPanel.Top + e.Y); + } + + private void panel_MouseDown(object sender, MouseEventArgs e) + { + this.gThumb.Focus(); + this.SetThumb(this.panel.Top + e.Y); + } + + private void gButton_CheckedChanged(object sender, EventArgs e) + { + if (this.CheckedChanged != null) + { + this.CheckedChanged(this, new EventArgs()); + } + } + + private void gThumb_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) + { + if (e.KeyCode != Keys.Up && e.KeyCode != Keys.Down && e.KeyCode != Keys.Space) + { + return; + } + e.IsInputKey = true; + } + + private void gThumb_KeyDown(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.Up) + { + this.Value = this._val + 1; + e.Handled = true; + } + else if (e.KeyCode == Keys.Down) + { + this.Value = this._val - 1; + e.Handled = true; + } + else if (e.KeyCode == Keys.Space) + { + this.gButton.Checked = !this.gButton.Checked; + e.Handled = true; + } + } + + private void gradientPanel_Paint(object sender, PaintEventArgs e) + { + if (this._ticks > 0) + { + int num = this.gradientPanel.Width / 4; + using (Pen pen = new Pen(this._tickColor, 1f)) + { + for (int i = 0; i <= this._ticks; i++) + { + int num2 = this.panel.Top - this.gradientPanel.Top + (int)((float)(this.panel.Height - 2) / (float)this._ticks * (float)i) + 1; + e.Graphics.DrawLine(pen, num, num2, this.gradientPanel.Width - num, num2); + } + } + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.panel = new Panel(); + this.gButton = new gButton(); + this.gThumb = new gButton(); + this.gradientPanel = new BorderGradientPanel(); + base.SuspendLayout(); + this.panel.BackColor = Color.Black; + this.panel.Location = new Point(16, 41); + this.panel.Name = "panel"; + this.panel.Size = new Size(4, 285); + this.panel.TabIndex = 17; + this.panel.MouseDown += this.panel_MouseDown; + this.gButton.Arrow = 0; + this.gButton.BackColor = SystemColors.Control; + this.gButton.Checked = false; + this.gButton.Edge = 0.15f; + this.gButton.EndColor = Color.White; + this.gButton.EndFactor = 0.2f; + this.gButton.Font = new Font("Microsoft Sans Serif", 7.8f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.gButton.Location = new Point(0, 0); + this.gButton.Name = "gButton"; + this.gButton.NoBorder = false; + this.gButton.NoLed = false; + this.gButton.RadioButton = false; + this.gButton.Radius = 4; + this.gButton.RadiusB = 6; + this.gButton.Size = new Size(36, 32); + this.gButton.StartColor = Color.Black; + this.gButton.StartFactor = 0.35f; + this.gButton.TabIndex = 0; + this.gButton.CheckedChanged += this.gButton_CheckedChanged; + this.gThumb.Arrow = 100; + this.gThumb.BackColor = SystemColors.Control; + this.gThumb.Checked = false; + this.gThumb.Edge = 0.15f; + this.gThumb.EndColor = Color.White; + this.gThumb.EndFactor = 0.2f; + this.gThumb.Font = new Font("Microsoft Sans Serif", 7.8f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.gThumb.Location = new Point(0, 169); + this.gThumb.Name = "gThumb"; + this.gThumb.NoBorder = false; + this.gThumb.NoLed = true; + this.gThumb.RadioButton = false; + this.gThumb.Radius = 1; + this.gThumb.RadiusB = 0; + this.gThumb.Size = new Size(36, 10); + this.gThumb.StartColor = Color.DarkGray; + this.gThumb.StartFactor = 0.35f; + this.gThumb.TabIndex = 1; + this.gThumb.KeyDown += this.gThumb_KeyDown; + this.gThumb.MouseDown += this.gThumb_MouseDown; + this.gThumb.MouseMove += this.gThumb_MouseMove; + this.gThumb.MouseUp += this.gThumb_MouseUp; + this.gThumb.PreviewKeyDown += this.gThumb_PreviewKeyDown; + this.gradientPanel.BackColor = Color.Black; + this.gradientPanel.Edge = 0.08f; + this.gradientPanel.EndColor = Color.Black; + this.gradientPanel.EndFactor = 0.55f; + this.gradientPanel.ForeColor = Color.Black; + this.gradientPanel.Location = new Point(0, 37); + this.gradientPanel.Margin = new Padding(2); + this.gradientPanel.Name = "gradientPanel"; + this.gradientPanel.NoBorder = false; + this.gradientPanel.Radius = 2; + this.gradientPanel.RadiusB = 4; + this.gradientPanel.Size = new Size(36, 308); + this.gradientPanel.StartColor = Color.Gray; + this.gradientPanel.StartFactor = 0.55f; + this.gradientPanel.TabIndex = 16; + this.gradientPanel.TabStop = false; + this.gradientPanel.Text = "borderGradientPanel3"; + this.gradientPanel.Paint += this.gradientPanel_Paint; + this.gradientPanel.MouseDown += this.gradientPanel_MouseDown; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.gButton); + base.Controls.Add(this.gThumb); + base.Controls.Add(this.panel); + base.Controls.Add(this.gradientPanel); + base.Name = "gSliderV"; + base.Size = new Size(49, 357); + base.ResumeLayout(false); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gSliderV.resx b/SDRSharper.Controls/SDRSharp.Controls/gSliderV.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gSliderV.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.Controls/SDRSharp.Controls/gTextBox.cs b/SDRSharper.Controls/SDRSharp.Controls/gTextBox.cs new file mode 100644 index 0000000..5b3acea --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gTextBox.cs @@ -0,0 +1,133 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + [DefaultEvent("TextChanged")] + public class gTextBox : UserControl + { + private IContainer components; + + private TextBox textBox1; + + private BorderGradientPanel gradientPanel; + + [Browsable(true)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] + public override string Text + { + get + { + return this.textBox1.Text; + } + set + { + this.SetText(value); + } + } + + public new event EventHandler TextChanged; + + public gTextBox() + { + this.InitializeComponent(); + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + this.gradientPanel.Height = base.Height; + this.gradientPanel.Width = base.Width; + this.textBox1.Left = 5; + this.textBox1.Width = this.gradientPanel.Width - this.textBox1.Left - 5; + this.textBox1.Top = (base.Height - this.textBox1.Height) / 2 + 1; + } + + protected override void OnFontChanged(EventArgs e) + { + base.OnFontChanged(e); + this.textBox1.Font = this.Font; + base.Invalidate(); + } + + protected override void OnForeColorChanged(EventArgs e) + { + base.OnForeColorChanged(e); + this.textBox1.ForeColor = this.ForeColor; + base.Invalidate(); + } + + private void SetText(string value) + { + if (!(this.textBox1.Text == value)) + { + this.textBox1.Text = value; + if (this.TextChanged != null) + { + this.TextChanged(this, new EventArgs()); + } + } + } + + private void textBox1_Validating(object sender, CancelEventArgs e) + { + if (this.TextChanged != null) + { + this.TextChanged(this, new EventArgs()); + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.textBox1 = new TextBox(); + this.gradientPanel = new BorderGradientPanel(); + base.SuspendLayout(); + this.textBox1.BackColor = Color.FromArgb(50, 50, 50); + this.textBox1.BorderStyle = BorderStyle.None; + this.textBox1.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.textBox1.ForeColor = Color.Yellow; + this.textBox1.Location = new Point(13, 10); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new Size(116, 13); + this.textBox1.TabIndex = 18; + this.textBox1.Text = "xxxx"; + this.textBox1.WordWrap = false; + this.textBox1.Validating += this.textBox1_Validating; + this.gradientPanel.BackColor = Color.Black; + this.gradientPanel.Edge = 0.18f; + this.gradientPanel.EndColor = Color.Black; + this.gradientPanel.EndFactor = 0.6f; + this.gradientPanel.Location = new Point(0, 0); + this.gradientPanel.Margin = new Padding(2); + this.gradientPanel.Name = "gradientPanel"; + this.gradientPanel.NoBorder = true; + this.gradientPanel.Radius = 6; + this.gradientPanel.RadiusB = 0; + this.gradientPanel.Size = new Size(138, 38); + this.gradientPanel.StartColor = Color.Gray; + this.gradientPanel.StartFactor = 0.6f; + this.gradientPanel.TabIndex = 17; + this.gradientPanel.TabStop = false; + this.gradientPanel.Text = "borderGradientPanel3"; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.textBox1); + base.Controls.Add(this.gradientPanel); + base.Name = "gTextBox"; + base.Size = new Size(150, 55); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gTextBox.resx b/SDRSharper.Controls/SDRSharp.Controls/gTextBox.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gTextBox.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.Controls/SDRSharp.Controls/gUpDown.cs b/SDRSharper.Controls/SDRSharp.Controls/gUpDown.cs new file mode 100644 index 0000000..0df4e90 --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gUpDown.cs @@ -0,0 +1,316 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.Controls +{ + [DefaultEvent("ValueChanged")] + public class gUpDown : UserControl + { + [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] + [Browsable(true)] + private long _min = -32767L; + + [Browsable(true)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] + private long _max = 32767L; + + [Browsable(true)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] + private long _value; + + private int _step = 1; + + private ToolTip _toolTip; + + private IContainer components; + + private gButton gBdown; + + private TextBox textBox; + + private BorderGradientPanel gradientPanel; + + private gButton gBup; + + public long Minimum + { + get + { + return this._min; + } + set + { + this._min = value; + } + } + + public long Maximum + { + get + { + return this._max; + } + set + { + this._max = value; + } + } + + public long Value + { + get + { + return this._value; + } + set + { + this.SetValue(value); + } + } + + public int Increment + { + get + { + return this._step; + } + set + { + this._step = value; + } + } + + public ToolTip ToolTip + { + get + { + return this._toolTip; + } + set + { + this._toolTip = value; + } + } + + public event EventHandler ValueChanged; + + public gUpDown() + { + this.InitializeComponent(); + } + + protected override void OnLoad(EventArgs e) + { + base.OnLoad(e); + if (this._toolTip != null) + { + this._toolTip.SetToolTip(this.textBox, this._toolTip.GetToolTip(this)); + } + } + + protected override void OnEnabledChanged(EventArgs e) + { + base.OnEnabledChanged(e); + this.gBup.Enabled = base.Enabled; + this.gBdown.Enabled = base.Enabled; + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + this.gBdown.Height = base.Height - 1; + this.gBdown.Width = this.gBdown.Height - 4; + this.gBdown.Left = base.Width - this.gBdown.Width; + this.gBup.Height = this.gBdown.Height; + this.gBup.Width = this.gBdown.Width; + this.gBup.Left = this.gBdown.Left - this.gBup.Width - 1; + this.gradientPanel.Height = base.Height; + this.gradientPanel.Width = this.gBup.Left - 1; + this.textBox.Left = 5; + this.textBox.Width = this.gradientPanel.Width - this.textBox.Left - 5; + this.textBox.Top = (base.Height - this.textBox.Height) / 2 + 1; + } + + protected override void OnFontChanged(EventArgs e) + { + base.OnFontChanged(e); + this.textBox.Font = this.Font; + base.Invalidate(); + } + + protected override void OnForeColorChanged(EventArgs e) + { + base.OnForeColorChanged(e); + this.textBox.ForeColor = this.ForeColor; + base.Invalidate(); + } + + private void SetValue(long value) + { + if (this._value != value) + { + this._value = Math.Min(this._max, value); + this._value = Math.Max(this._min, this._value); + this.textBox.Text = this._value.ToString(); + if (this.ValueChanged != null) + { + this.ValueChanged(this, new EventArgs()); + } + } + } + + private void gBup_MouseDown(object sender, MouseEventArgs e) + { + this.SetValue(this._value + this._step); + } + + private void gBdown_MouseDown(object sender, MouseEventArgs e) + { + this.SetValue(this._value - this._step); + } + + private void gB_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) + { + if (e.KeyCode != Keys.Up && e.KeyCode != Keys.Down) + { + return; + } + e.IsInputKey = true; + } + + private void gB_KeyDown(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.Up) + { + this.SetValue(this._value + this._step); + e.Handled = true; + } + else if (e.KeyCode == Keys.Down) + { + this.SetValue(this._value - this._step); + e.Handled = true; + } + } + + private void textBox_Validating(object sender, CancelEventArgs e) + { + if (long.TryParse(this.textBox.Text, out long value)) + { + this._value = value; + if (this.ValueChanged != null) + { + this.ValueChanged(this, new EventArgs()); + } + } + } + + private void gBdown_MouseUp(object sender, MouseEventArgs e) + { + this.gBdown.Checked = false; + } + + private void gBup_MouseUp(object sender, MouseEventArgs e) + { + this.gBup.Checked = false; + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.textBox = new TextBox(); + this.gBup = new gButton(); + this.gBdown = new gButton(); + this.gradientPanel = new BorderGradientPanel(); + base.SuspendLayout(); + this.textBox.BackColor = Color.FromArgb(50, 50, 50); + this.textBox.BorderStyle = BorderStyle.None; + this.textBox.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.textBox.ForeColor = Color.Yellow; + this.textBox.Location = new Point(11, 1); + this.textBox.Name = "textBox"; + this.textBox.Size = new Size(85, 13); + this.textBox.TabIndex = 28; + this.textBox.Text = "0"; + this.textBox.KeyDown += this.gB_KeyDown; + this.textBox.Validating += this.textBox_Validating; + this.gBup.Arrow = 1; + this.gBup.BackColor = SystemColors.Control; + this.gBup.Checked = false; + this.gBup.Edge = 0.15f; + this.gBup.EndColor = Color.White; + this.gBup.EndFactor = 0.2f; + this.gBup.Font = new Font("Microsoft Sans Serif", 7.8f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.gBup.Location = new Point(113, 1); + this.gBup.Name = "gBup"; + this.gBup.NoBorder = false; + this.gBup.NoLed = true; + this.gBup.RadioButton = false; + this.gBup.Radius = 4; + this.gBup.RadiusB = 6; + this.gBup.Size = new Size(18, 23); + this.gBup.StartColor = Color.Black; + this.gBup.StartFactor = 0.35f; + this.gBup.TabIndex = 30; + this.gBup.KeyDown += this.gB_KeyDown; + this.gBup.MouseDown += this.gBup_MouseDown; + this.gBup.PreviewKeyDown += this.gB_PreviewKeyDown; + this.gBdown.Arrow = 3; + this.gBdown.BackColor = SystemColors.Control; + this.gBdown.Checked = false; + this.gBdown.Edge = 0.15f; + this.gBdown.EndColor = Color.White; + this.gBdown.EndFactor = 0.2f; + this.gBdown.Font = new Font("Microsoft Sans Serif", 7.8f, FontStyle.Bold, GraphicsUnit.Point, 0); + this.gBdown.Location = new Point(133, 1); + this.gBdown.Name = "gBdown"; + this.gBdown.NoBorder = false; + this.gBdown.NoLed = true; + this.gBdown.RadioButton = false; + this.gBdown.Radius = 4; + this.gBdown.RadiusB = 6; + this.gBdown.Size = new Size(18, 23); + this.gBdown.StartColor = Color.Black; + this.gBdown.StartFactor = 0.35f; + this.gBdown.TabIndex = 29; + this.gBdown.KeyDown += this.gB_KeyDown; + this.gBdown.MouseDown += this.gBdown_MouseDown; + this.gBdown.PreviewKeyDown += this.gB_PreviewKeyDown; + this.gradientPanel.BackColor = Color.Black; + this.gradientPanel.Edge = 0.18f; + this.gradientPanel.EndColor = Color.Black; + this.gradientPanel.EndFactor = 0.6f; + this.gradientPanel.Location = new Point(0, 0); + this.gradientPanel.Margin = new Padding(2); + this.gradientPanel.Name = "gradientPanel"; + this.gradientPanel.NoBorder = true; + this.gradientPanel.Radius = 6; + this.gradientPanel.RadiusB = 0; + this.gradientPanel.Size = new Size(112, 25); + this.gradientPanel.StartColor = Color.Gray; + this.gradientPanel.StartFactor = 0.6f; + this.gradientPanel.TabIndex = 27; + this.gradientPanel.TabStop = false; + this.gradientPanel.Text = "borderGradientPanel3"; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.gBup); + base.Controls.Add(this.gBdown); + base.Controls.Add(this.textBox); + base.Controls.Add(this.gradientPanel); + base.Name = "gUpDown"; + base.Size = new Size(153, 32); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/SDRSharper.Controls/SDRSharp.Controls/gUpDown.resx b/SDRSharper.Controls/SDRSharp.Controls/gUpDown.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.Controls/SDRSharp.Controls/gUpDown.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.PanView/Properties/AssemblyInfo.cs b/SDRSharper.PanView/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5bd4289 --- /dev/null +++ b/SDRSharper.PanView/Properties/AssemblyInfo.cs @@ -0,0 +1,16 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions; + +[assembly: AssemblyTitle("Panoramic Spectrum Viewer")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: CompilationRelaxations(8)] +[assembly: AssemblyDescription("Panoramic Spectrum Viewer")] +[assembly: AssemblyProduct("SDRSharper Revised")] +[assembly: AssemblyCopyright("Copyright © BluGecko 2018")] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.0.0")] + diff --git a/SDRSharper.PanView/SDRSharp.PanView.Properties/Resources.cs b/SDRSharper.PanView/SDRSharp.PanView.Properties/Resources.cs new file mode 100644 index 0000000..3d41c5d --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView.Properties/Resources.cs @@ -0,0 +1,49 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Globalization; +using System.Resources; +using System.Runtime.CompilerServices; + +namespace SDRSharp.PanView.Properties +{ + [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [DebuggerNonUserCode] + [CompilerGenerated] + internal class Resources + { + private static ResourceManager resourceMan; + + private static CultureInfo resourceCulture; + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static ResourceManager ResourceManager + { + get + { + if (object.ReferenceEquals(Resources.resourceMan, null)) + { + ResourceManager resourceManager = Resources.resourceMan = new ResourceManager("SDRSharp.PanView.Properties.Resources", typeof(Resources).Assembly); + } + return Resources.resourceMan; + } + } + + [EditorBrowsable(EditorBrowsableState.Advanced)] + internal static CultureInfo Culture + { + get + { + return Resources.resourceCulture; + } + set + { + Resources.resourceCulture = value; + } + } + + internal Resources() + { + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView.csproj b/SDRSharper.PanView/SDRSharp.PanView.csproj new file mode 100644 index 0000000..47e31f8 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView.csproj @@ -0,0 +1,149 @@ + + + + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373} + Debug + AnyCPU + Library + SDRSharp.PanView + v4.7 + 4 + True + + + + AnyCPU + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + true + bin\x86\Debug\ + true + full + AnyCPU + MinimumRecommendedRules.ruleset + TRACE;DEBUG + false + + + true + bin\x86\Release\ + true + true + pdbonly + x86 + MinimumRecommendedRules.ruleset + false + + + AnyCPU + false + TRACE;DEBUG + + + false + + + true + bin\x64\Debug\ + TRACE;DEBUG + true + full + x64 + MinimumRecommendedRules.ruleset + + + true + bin\x64\Release\ + true + true + pdbonly + x64 + MinimumRecommendedRules.ruleset + + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Windows.Forms.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Drawing.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.dll + + + C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\SDRSharp.Radio.dll + + + + + + + + + + Form + + + + Form + + + Form + + + + UserControl + + + + + + + + + + + + + + + UserControl + + + UserControl + + + UserControl + + + UserControl + + + + + FrequencyDialog.cs + + + GradientDialog.cs + + + Indicator.cs + + + BarMeter.cs + + + + \ No newline at end of file diff --git a/SDRSharper.PanView/SDRSharp.PanView/BandType.cs b/SDRSharper.PanView/SDRSharp.PanView/BandType.cs new file mode 100644 index 0000000..66cc6bd --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/BandType.cs @@ -0,0 +1,9 @@ +namespace SDRSharp.PanView +{ + public enum BandType + { + Lower, + Upper, + Center + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/BandwidthEventArgs.cs b/SDRSharper.PanView/SDRSharp.PanView/BandwidthEventArgs.cs new file mode 100644 index 0000000..89528bf --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/BandwidthEventArgs.cs @@ -0,0 +1,31 @@ +using System; + +namespace SDRSharp.PanView +{ + public class BandwidthEventArgs : EventArgs + { + public int Bandwidth + { + get; + set; + } + + public int Offset + { + get; + set; + } + + public bool Cancel + { + get; + set; + } + + public BandwidthEventArgs(int bandwidth, int offset) + { + this.Bandwidth = bandwidth; + this.Offset = offset; + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/Fill.cs b/SDRSharper.PanView/SDRSharp.PanView/Fill.cs new file mode 100644 index 0000000..5702e29 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/Fill.cs @@ -0,0 +1,10 @@ +namespace SDRSharp.PanView +{ + public enum Fill + { + None, + Static, + Dynam1, + Dynam2 + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.Designer.cs b/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.Designer.cs new file mode 100644 index 0000000..1980562 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.Designer.cs @@ -0,0 +1,85 @@ +namespace SDRSharp.PanView +{ + // Token: 0x02000003 RID: 3 + public partial class FrequencyDialog : global::System.Windows.Forms.Form + { + // Token: 0x0600000D RID: 13 RVA: 0x000025C5 File Offset: 0x000007C5 + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + // Token: 0x0600000E RID: 14 RVA: 0x000025E4 File Offset: 0x000007E4 + private void InitializeComponent() + { + this.txtFrequency = new global::System.Windows.Forms.TextBox(); + this.butKhz = new global::System.Windows.Forms.Button(); + this.btnMhz = new global::System.Windows.Forms.Button(); + this.label1 = new global::System.Windows.Forms.Label(); + base.SuspendLayout(); + this.txtFrequency.Font = new global::System.Drawing.Font("Microsoft Sans Serif", 10.2f, global::System.Drawing.FontStyle.Regular, global::System.Drawing.GraphicsUnit.Point, 0); + this.txtFrequency.Location = new global::System.Drawing.Point(11, 24); + this.txtFrequency.Margin = new global::System.Windows.Forms.Padding(2, 2, 2, 2); + this.txtFrequency.Name = "txtFrequency"; + this.txtFrequency.Size = new global::System.Drawing.Size(91, 23); + this.txtFrequency.TabIndex = 0; + this.butKhz.DialogResult = global::System.Windows.Forms.DialogResult.Yes; + this.butKhz.Location = new global::System.Drawing.Point(12, 55); + this.butKhz.Margin = new global::System.Windows.Forms.Padding(2, 2, 2, 2); + this.butKhz.Name = "butKhz"; + this.butKhz.Size = new global::System.Drawing.Size(38, 19); + this.butKhz.TabIndex = 1; + this.butKhz.Text = "kHz"; + this.butKhz.UseVisualStyleBackColor = true; + this.btnMhz.DialogResult = global::System.Windows.Forms.DialogResult.No; + this.btnMhz.Location = new global::System.Drawing.Point(64, 55); + this.btnMhz.Margin = new global::System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnMhz.Name = "btnMhz"; + this.btnMhz.Size = new global::System.Drawing.Size(38, 19); + this.btnMhz.TabIndex = 2; + this.btnMhz.Text = "MHz"; + this.btnMhz.UseVisualStyleBackColor = true; + this.label1.AutoSize = true; + this.label1.Location = new global::System.Drawing.Point(16, 6); + this.label1.Margin = new global::System.Windows.Forms.Padding(2, 0, 2, 0); + this.label1.Name = "label1"; + this.label1.Size = new global::System.Drawing.Size(82, 13); + this.label1.TabIndex = 3; + this.label1.Text = "Enter frequency"; + base.AcceptButton = this.butKhz; + base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f); + base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font; + base.ClientSize = new global::System.Drawing.Size(115, 80); + base.Controls.Add(this.label1); + base.Controls.Add(this.btnMhz); + base.Controls.Add(this.butKhz); + base.Controls.Add(this.txtFrequency); + base.Margin = new global::System.Windows.Forms.Padding(2, 2, 2, 2); + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "FrequencyDialog"; + this.Text = "Frequency"; + base.ResumeLayout(false); + base.PerformLayout(); + } + + // Token: 0x0400000C RID: 12 + private global::System.ComponentModel.IContainer components; + + // Token: 0x0400000D RID: 13 + private global::System.Windows.Forms.TextBox txtFrequency; + + // Token: 0x0400000E RID: 14 + private global::System.Windows.Forms.Button butKhz; + + // Token: 0x0400000F RID: 15 + private global::System.Windows.Forms.Button btnMhz; + + // Token: 0x04000010 RID: 16 + private global::System.Windows.Forms.Label label1; + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.cs b/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.cs new file mode 100644 index 0000000..7567fa3 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.cs @@ -0,0 +1,98 @@ +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.PanView +{ + public class FrequencyDialog : Form + { + private IContainer components; + + private TextBox txtFrequency; + + private Button butKhz; + + private Button btnMhz; + + private Label label1; + + public string Frequency + { + get + { + return this.txtFrequency.Text; + } + set + { + this.txtFrequency.Text = value; + } + } + + public FrequencyDialog() + { + this.InitializeComponent(); + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.txtFrequency = new TextBox(); + this.butKhz = new Button(); + this.btnMhz = new Button(); + this.label1 = new Label(); + base.SuspendLayout(); + this.txtFrequency.Font = new Font("Microsoft Sans Serif", 10.2f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.txtFrequency.Location = new Point(11, 24); + this.txtFrequency.Margin = new Padding(2, 2, 2, 2); + this.txtFrequency.Name = "txtFrequency"; + this.txtFrequency.Size = new Size(91, 23); + this.txtFrequency.TabIndex = 0; + this.butKhz.DialogResult = DialogResult.Yes; + this.butKhz.Location = new Point(12, 55); + this.butKhz.Margin = new Padding(2, 2, 2, 2); + this.butKhz.Name = "butKhz"; + this.butKhz.Size = new Size(38, 19); + this.butKhz.TabIndex = 1; + this.butKhz.Text = "kHz"; + this.butKhz.UseVisualStyleBackColor = true; + this.btnMhz.DialogResult = DialogResult.No; + this.btnMhz.Location = new Point(64, 55); + this.btnMhz.Margin = new Padding(2, 2, 2, 2); + this.btnMhz.Name = "btnMhz"; + this.btnMhz.Size = new Size(38, 19); + this.btnMhz.TabIndex = 2; + this.btnMhz.Text = "MHz"; + this.btnMhz.UseVisualStyleBackColor = true; + this.label1.AutoSize = true; + this.label1.Location = new Point(16, 6); + this.label1.Margin = new Padding(2, 0, 2, 0); + this.label1.Name = "label1"; + this.label1.Size = new Size(82, 13); + this.label1.TabIndex = 3; + this.label1.Text = "Enter frequency"; + base.AcceptButton = this.butKhz; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.ClientSize = new Size(115, 80); + base.Controls.Add(this.label1); + base.Controls.Add(this.btnMhz); + base.Controls.Add(this.butKhz); + base.Controls.Add(this.txtFrequency); + base.Margin = new Padding(2, 2, 2, 2); + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "FrequencyDialog"; + this.Text = "Frequency"; + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.resx b/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/FrequencyDialog.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.PanView/SDRSharp.PanView/FrequencyEventArgs.cs b/SDRSharper.PanView/SDRSharp.PanView/FrequencyEventArgs.cs new file mode 100644 index 0000000..9675192 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/FrequencyEventArgs.cs @@ -0,0 +1,24 @@ +using System; + +namespace SDRSharp.PanView +{ + public class FrequencyEventArgs : EventArgs + { + public long Frequency + { + get; + set; + } + + public bool Cancel + { + get; + set; + } + + public FrequencyEventArgs(long frequency) + { + this.Frequency = frequency; + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.Designer.cs b/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.Designer.cs new file mode 100644 index 0000000..f104995 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.Designer.cs @@ -0,0 +1,429 @@ +namespace SDRSharp.PanView +{ + // Token: 0x02000004 RID: 4 + public partial class GradientDialog : global::System.Windows.Forms.Form + { + // Token: 0x06000030 RID: 48 RVA: 0x00004139 File Offset: 0x00002339 + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + // Token: 0x06000031 RID: 49 RVA: 0x00004158 File Offset: 0x00002358 + private void InitializeComponent() + { + this.components = new global::System.ComponentModel.Container(); + this.colorListBox = new global::System.Windows.Forms.ListBox(); + this.upButton = new global::System.Windows.Forms.Button(); + this.downButton = new global::System.Windows.Forms.Button(); + this.gradientPictureBox = new global::System.Windows.Forms.PictureBox(); + this.addButton = new global::System.Windows.Forms.Button(); + this.deleteButton = new global::System.Windows.Forms.Button(); + this.cancelButton = new global::System.Windows.Forms.Button(); + this.colorDialog = new global::System.Windows.Forms.ColorDialog(); + this.btn1 = new global::System.Windows.Forms.RadioButton(); + this.btn2 = new global::System.Windows.Forms.RadioButton(); + this.btn3 = new global::System.Windows.Forms.RadioButton(); + this.btn4 = new global::System.Windows.Forms.RadioButton(); + this.btn5 = new global::System.Windows.Forms.RadioButton(); + this.traceButton = new global::System.Windows.Forms.Button(); + this.backgroundButton = new global::System.Windows.Forms.Button(); + this.cmbFill = new global::System.Windows.Forms.ComboBox(); + this.labFill = new global::System.Windows.Forms.Label(); + this.label2 = new global::System.Windows.Forms.Label(); + this.picBox = new global::System.Windows.Forms.PictureBox(); + this.groupBox1 = new global::System.Windows.Forms.GroupBox(); + this.fastButton = new global::System.Windows.Forms.Button(); + this.saButton = new global::System.Windows.Forms.Button(); + this.wfButton = new global::System.Windows.Forms.Button(); + this.agButton = new global::System.Windows.Forms.Button(); + this.toolTip = new global::System.Windows.Forms.ToolTip(this.components); + this.trackBar = new global::System.Windows.Forms.TrackBar(); + this.okButton = new global::System.Windows.Forms.Button(); + ((global::System.ComponentModel.ISupportInitialize)this.gradientPictureBox).BeginInit(); + ((global::System.ComponentModel.ISupportInitialize)this.picBox).BeginInit(); + this.groupBox1.SuspendLayout(); + ((global::System.ComponentModel.ISupportInitialize)this.trackBar).BeginInit(); + base.SuspendLayout(); + this.colorListBox.BackColor = global::System.Drawing.Color.FromArgb(224, 224, 224); + this.colorListBox.DrawMode = global::System.Windows.Forms.DrawMode.OwnerDrawVariable; + this.colorListBox.FormattingEnabled = true; + this.colorListBox.ItemHeight = 15; + this.colorListBox.Location = new global::System.Drawing.Point(7, 21); + this.colorListBox.Name = "colorListBox"; + this.colorListBox.Size = new global::System.Drawing.Size(62, 210); + this.colorListBox.TabIndex = 0; + this.toolTip.SetToolTip(this.colorListBox, "Select. move or edit gradient color."); + this.colorListBox.Click += new global::System.EventHandler(this.colorListBox_Click); + this.colorListBox.DrawItem += new global::System.Windows.Forms.DrawItemEventHandler(this.colorListBox_DrawItem); + this.upButton.Enabled = false; + this.upButton.Location = new global::System.Drawing.Point(110, 161); + this.upButton.Name = "upButton"; + this.upButton.Size = new global::System.Drawing.Size(55, 23); + this.upButton.TabIndex = 1; + this.upButton.Text = "Up"; + this.toolTip.SetToolTip(this.upButton, "Move color up"); + this.upButton.UseVisualStyleBackColor = true; + this.upButton.Click += new global::System.EventHandler(this.upButton_Click); + this.downButton.Enabled = false; + this.downButton.Location = new global::System.Drawing.Point(111, 191); + this.downButton.Name = "downButton"; + this.downButton.Size = new global::System.Drawing.Size(53, 23); + this.downButton.TabIndex = 2; + this.downButton.Text = "Down"; + this.toolTip.SetToolTip(this.downButton, "Move color down"); + this.downButton.UseVisualStyleBackColor = true; + this.downButton.Click += new global::System.EventHandler(this.downButton_Click); + this.gradientPictureBox.BorderStyle = global::System.Windows.Forms.BorderStyle.FixedSingle; + this.gradientPictureBox.Location = new global::System.Drawing.Point(71, 23); + this.gradientPictureBox.Name = "gradientPictureBox"; + this.gradientPictureBox.Size = new global::System.Drawing.Size(29, 209); + this.gradientPictureBox.TabIndex = 3; + this.gradientPictureBox.TabStop = false; + this.gradientPictureBox.Paint += new global::System.Windows.Forms.PaintEventHandler(this.gradientPictureBox_Paint); + this.addButton.Location = new global::System.Drawing.Point(105, 76); + this.addButton.Name = "addButton"; + this.addButton.Size = new global::System.Drawing.Size(63, 23); + this.addButton.TabIndex = 3; + this.addButton.Text = "Add color"; + this.toolTip.SetToolTip(this.addButton, "Add new color to gradient."); + this.addButton.UseVisualStyleBackColor = true; + this.addButton.Click += new global::System.EventHandler(this.addButton_Click); + this.deleteButton.Enabled = false; + this.deleteButton.Location = new global::System.Drawing.Point(105, 106); + this.deleteButton.Name = "deleteButton"; + this.deleteButton.Size = new global::System.Drawing.Size(64, 23); + this.deleteButton.TabIndex = 4; + this.deleteButton.Text = "Delete"; + this.toolTip.SetToolTip(this.deleteButton, "Delete selected color"); + this.deleteButton.UseVisualStyleBackColor = true; + this.deleteButton.Click += new global::System.EventHandler(this.deleteButton_Click); + this.cancelButton.DialogResult = global::System.Windows.Forms.DialogResult.Cancel; + this.cancelButton.Location = new global::System.Drawing.Point(332, 280); + this.cancelButton.Name = "cancelButton"; + this.cancelButton.Size = new global::System.Drawing.Size(48, 20); + this.cancelButton.TabIndex = 6; + this.cancelButton.Text = "Cancel"; + this.toolTip.SetToolTip(this.cancelButton, "Cancel/undo changes"); + this.cancelButton.UseVisualStyleBackColor = true; + this.cancelButton.Click += new global::System.EventHandler(this.closeButton_Click); + this.colorDialog.AnyColor = true; + this.colorDialog.FullOpen = true; + this.btn1.AutoSize = true; + this.btn1.BackColor = global::System.Drawing.SystemColors.Control; + this.btn1.ForeColor = global::System.Drawing.SystemColors.ControlText; + this.btn1.Location = new global::System.Drawing.Point(62, 10); + this.btn1.Margin = new global::System.Windows.Forms.Padding(2); + this.btn1.Name = "btn1"; + this.btn1.RightToLeft = global::System.Windows.Forms.RightToLeft.No; + this.btn1.Size = new global::System.Drawing.Size(31, 17); + this.btn1.TabIndex = 8; + this.btn1.TabStop = true; + this.btn1.Text = "1"; + this.toolTip.SetToolTip(this.btn1, "Select gradient to use"); + this.btn1.UseVisualStyleBackColor = false; + this.btn1.CheckedChanged += new global::System.EventHandler(this.btnGradient_CheckedChanged); + this.btn2.AutoSize = true; + this.btn2.Location = new global::System.Drawing.Point(92, 10); + this.btn2.Margin = new global::System.Windows.Forms.Padding(2); + this.btn2.Name = "btn2"; + this.btn2.RightToLeft = global::System.Windows.Forms.RightToLeft.No; + this.btn2.Size = new global::System.Drawing.Size(31, 17); + this.btn2.TabIndex = 9; + this.btn2.TabStop = true; + this.btn2.Text = "2"; + this.btn2.UseVisualStyleBackColor = true; + this.btn2.CheckedChanged += new global::System.EventHandler(this.btnGradient_CheckedChanged); + this.btn3.AutoSize = true; + this.btn3.Location = new global::System.Drawing.Point(122, 10); + this.btn3.Margin = new global::System.Windows.Forms.Padding(2); + this.btn3.Name = "btn3"; + this.btn3.RightToLeft = global::System.Windows.Forms.RightToLeft.No; + this.btn3.Size = new global::System.Drawing.Size(31, 17); + this.btn3.TabIndex = 10; + this.btn3.TabStop = true; + this.btn3.Text = "3"; + this.btn3.UseVisualStyleBackColor = true; + this.btn3.CheckedChanged += new global::System.EventHandler(this.btnGradient_CheckedChanged); + this.btn4.AutoSize = true; + this.btn4.Location = new global::System.Drawing.Point(152, 10); + this.btn4.Margin = new global::System.Windows.Forms.Padding(2); + this.btn4.Name = "btn4"; + this.btn4.RightToLeft = global::System.Windows.Forms.RightToLeft.No; + this.btn4.Size = new global::System.Drawing.Size(31, 17); + this.btn4.TabIndex = 11; + this.btn4.TabStop = true; + this.btn4.Text = "4"; + this.btn4.UseVisualStyleBackColor = true; + this.btn4.CheckedChanged += new global::System.EventHandler(this.btnGradient_CheckedChanged); + this.btn5.AutoSize = true; + this.btn5.Location = new global::System.Drawing.Point(182, 10); + this.btn5.Margin = new global::System.Windows.Forms.Padding(2); + this.btn5.Name = "btn5"; + this.btn5.RightToLeft = global::System.Windows.Forms.RightToLeft.No; + this.btn5.Size = new global::System.Drawing.Size(31, 17); + this.btn5.TabIndex = 12; + this.btn5.TabStop = true; + this.btn5.Text = "5"; + this.btn5.UseVisualStyleBackColor = true; + this.btn5.CheckedChanged += new global::System.EventHandler(this.btnGradient_CheckedChanged); + this.traceButton.Location = new global::System.Drawing.Point(183, 42); + this.traceButton.Name = "traceButton"; + this.traceButton.Size = new global::System.Drawing.Size(54, 23); + this.traceButton.TabIndex = 15; + this.traceButton.Text = "Trace"; + this.toolTip.SetToolTip(this.traceButton, "Change spectrum trace color"); + this.traceButton.UseVisualStyleBackColor = true; + this.traceButton.Click += new global::System.EventHandler(this.traceButton_Click); + this.backgroundButton.ForeColor = global::System.Drawing.Color.White; + this.backgroundButton.Location = new global::System.Drawing.Point(245, 42); + this.backgroundButton.Name = "backgroundButton"; + this.backgroundButton.Size = new global::System.Drawing.Size(53, 23); + this.backgroundButton.TabIndex = 17; + this.backgroundButton.Text = "B-gnd"; + this.toolTip.SetToolTip(this.backgroundButton, "Change background color"); + this.backgroundButton.UseVisualStyleBackColor = true; + this.backgroundButton.Click += new global::System.EventHandler(this.backgroundButton_Click); + this.cmbFill.DropDownStyle = global::System.Windows.Forms.ComboBoxStyle.DropDownList; + this.cmbFill.FormattingEnabled = true; + this.cmbFill.Items.AddRange(new object[] + { + "none\t", + "static", + "dyn-1", + "dyn-2" + }); + this.cmbFill.Location = new global::System.Drawing.Point(330, 45); + this.cmbFill.Name = "cmbFill"; + this.cmbFill.Size = new global::System.Drawing.Size(49, 21); + this.cmbFill.TabIndex = 18; + this.toolTip.SetToolTip(this.cmbFill, "Select SA fill type."); + this.cmbFill.SelectedIndexChanged += new global::System.EventHandler(this.cmbFill_SelectedIndexChanged); + this.labFill.AutoSize = true; + this.labFill.Font = new global::System.Drawing.Font("Microsoft Sans Serif", 9.75f, global::System.Drawing.FontStyle.Regular, global::System.Drawing.GraphicsUnit.Point, 0); + this.labFill.Location = new global::System.Drawing.Point(305, 46); + this.labFill.Name = "labFill"; + this.labFill.Size = new global::System.Drawing.Size(28, 16); + this.labFill.TabIndex = 19; + this.labFill.Text = "Fill:"; + this.label2.AutoSize = true; + this.label2.Font = new global::System.Drawing.Font("Microsoft Sans Serif", 9.75f, global::System.Drawing.FontStyle.Regular, global::System.Drawing.GraphicsUnit.Point, 0); + this.label2.Location = new global::System.Drawing.Point(5, 10); + this.label2.Name = "label2"; + this.label2.Size = new global::System.Drawing.Size(46, 16); + this.label2.TabIndex = 20; + this.label2.Text = "Select"; + this.picBox.BackColor = global::System.Drawing.SystemColors.ButtonHighlight; + this.picBox.BackgroundImageLayout = global::System.Windows.Forms.ImageLayout.Center; + this.picBox.Cursor = global::System.Windows.Forms.Cursors.Default; + this.picBox.Enabled = false; + this.picBox.InitialImage = null; + this.picBox.Location = new global::System.Drawing.Point(181, 96); + this.picBox.Name = "picBox"; + this.picBox.Size = new global::System.Drawing.Size(200, 177); + this.picBox.TabIndex = 22; + this.picBox.TabStop = false; + this.toolTip.SetToolTip(this.picBox, "Pick/move color or gradient"); + this.picBox.MouseDown += new global::System.Windows.Forms.MouseEventHandler(this.picBox_MouseDown); + this.picBox.MouseMove += new global::System.Windows.Forms.MouseEventHandler(this.picBox_MouseMove); + this.picBox.MouseUp += new global::System.Windows.Forms.MouseEventHandler(this.picBox_MouseUp); + this.groupBox1.Controls.Add(this.fastButton); + this.groupBox1.Controls.Add(this.colorListBox); + this.groupBox1.Controls.Add(this.gradientPictureBox); + this.groupBox1.Controls.Add(this.upButton); + this.groupBox1.Controls.Add(this.downButton); + this.groupBox1.Controls.Add(this.addButton); + this.groupBox1.Controls.Add(this.deleteButton); + this.groupBox1.FlatStyle = global::System.Windows.Forms.FlatStyle.System; + this.groupBox1.Font = new global::System.Drawing.Font("Microsoft Sans Serif", 9f, global::System.Drawing.FontStyle.Regular, global::System.Drawing.GraphicsUnit.Point, 0); + this.groupBox1.Location = new global::System.Drawing.Point(2, 35); + this.groupBox1.Margin = new global::System.Windows.Forms.Padding(2); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Padding = new global::System.Windows.Forms.Padding(2); + this.groupBox1.Size = new global::System.Drawing.Size(172, 240); + this.groupBox1.TabIndex = 23; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "Edit color gradient"; + this.fastButton.Location = new global::System.Drawing.Point(105, 23); + this.fastButton.Name = "fastButton"; + this.fastButton.Size = new global::System.Drawing.Size(63, 23); + this.fastButton.TabIndex = 8; + this.fastButton.Text = "Fast edit"; + this.toolTip.SetToolTip(this.fastButton, "Edit whole gradient"); + this.fastButton.UseVisualStyleBackColor = true; + this.fastButton.Click += new global::System.EventHandler(this.fastButton_Click); + this.saButton.Location = new global::System.Drawing.Point(7, 280); + this.saButton.Name = "saButton"; + this.saButton.Size = new global::System.Drawing.Size(43, 20); + this.saButton.TabIndex = 24; + this.saButton.Text = "Spect"; + this.toolTip.SetToolTip(this.saButton, "Change SpectrumAnalyzer colors"); + this.saButton.UseVisualStyleBackColor = true; + this.saButton.Click += new global::System.EventHandler(this.saButton_Click); + this.wfButton.Location = new global::System.Drawing.Point(57, 280); + this.wfButton.Name = "wfButton"; + this.wfButton.Size = new global::System.Drawing.Size(43, 20); + this.wfButton.TabIndex = 25; + this.wfButton.Text = "W-fall"; + this.toolTip.SetToolTip(this.wfButton, "Change Waterfall colors"); + this.wfButton.UseVisualStyleBackColor = true; + this.wfButton.Click += new global::System.EventHandler(this.wfButton_Click); + this.agButton.Location = new global::System.Drawing.Point(106, 280); + this.agButton.Name = "agButton"; + this.agButton.Size = new global::System.Drawing.Size(43, 20); + this.agButton.TabIndex = 25; + this.agButton.Text = "Audio"; + this.toolTip.SetToolTip(this.agButton, "Change Audiogram colors"); + this.agButton.UseVisualStyleBackColor = true; + this.agButton.Click += new global::System.EventHandler(this.agButton_Click); + this.toolTip.AutoPopDelay = 2000; + this.toolTip.InitialDelay = 500; + this.toolTip.ReshowDelay = 100; + this.trackBar.AutoSize = false; + this.trackBar.Location = new global::System.Drawing.Point(181, 79); + this.trackBar.Margin = new global::System.Windows.Forms.Padding(2); + this.trackBar.Maximum = 100; + this.trackBar.Name = "trackBar"; + this.trackBar.Size = new global::System.Drawing.Size(200, 20); + this.trackBar.TabIndex = 39; + this.trackBar.TickFrequency = 10; + this.trackBar.TickStyle = global::System.Windows.Forms.TickStyle.None; + this.trackBar.Value = 100; + this.trackBar.ValueChanged += new global::System.EventHandler(this.trackBar_ValueChanged); + this.okButton.DialogResult = global::System.Windows.Forms.DialogResult.OK; + this.okButton.Enabled = false; + this.okButton.Location = new global::System.Drawing.Point(242, 280); + this.okButton.Name = "okButton"; + this.okButton.Size = new global::System.Drawing.Size(54, 20); + this.okButton.TabIndex = 40; + this.okButton.Text = "OK"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += new global::System.EventHandler(this.saveButton_Click); + base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f); + base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font; + base.CancelButton = this.cancelButton; + base.ClientSize = new global::System.Drawing.Size(388, 306); + base.Controls.Add(this.okButton); + base.Controls.Add(this.trackBar); + base.Controls.Add(this.agButton); + base.Controls.Add(this.wfButton); + base.Controls.Add(this.saButton); + base.Controls.Add(this.groupBox1); + base.Controls.Add(this.picBox); + base.Controls.Add(this.label2); + base.Controls.Add(this.cmbFill); + base.Controls.Add(this.backgroundButton); + base.Controls.Add(this.traceButton); + base.Controls.Add(this.btn5); + base.Controls.Add(this.btn4); + base.Controls.Add(this.btn3); + base.Controls.Add(this.btn2); + base.Controls.Add(this.btn1); + base.Controls.Add(this.cancelButton); + base.Controls.Add(this.labFill); + base.FormBorderStyle = global::System.Windows.Forms.FormBorderStyle.FixedDialog; + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "GradientDialog"; + base.ShowInTaskbar = false; + base.StartPosition = global::System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "Color Editor"; + this.toolTip.SetToolTip(this, "Accept/save changes"); + base.FormClosing += new global::System.Windows.Forms.FormClosingEventHandler(this.GradientDialog_FormClosing); + ((global::System.ComponentModel.ISupportInitialize)this.gradientPictureBox).EndInit(); + ((global::System.ComponentModel.ISupportInitialize)this.picBox).EndInit(); + this.groupBox1.ResumeLayout(false); + ((global::System.ComponentModel.ISupportInitialize)this.trackBar).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + + // Token: 0x04000027 RID: 39 + private global::System.ComponentModel.IContainer components; + + // Token: 0x04000028 RID: 40 + private global::System.Windows.Forms.ListBox colorListBox; + + // Token: 0x04000029 RID: 41 + private global::System.Windows.Forms.Button upButton; + + // Token: 0x0400002A RID: 42 + private global::System.Windows.Forms.Button downButton; + + // Token: 0x0400002B RID: 43 + private global::System.Windows.Forms.PictureBox gradientPictureBox; + + // Token: 0x0400002C RID: 44 + private global::System.Windows.Forms.Button addButton; + + // Token: 0x0400002D RID: 45 + private global::System.Windows.Forms.Button deleteButton; + + // Token: 0x0400002E RID: 46 + private global::System.Windows.Forms.Button cancelButton; + + // Token: 0x0400002F RID: 47 + private global::System.Windows.Forms.ColorDialog colorDialog; + + // Token: 0x04000030 RID: 48 + private global::System.Windows.Forms.RadioButton btn1; + + // Token: 0x04000031 RID: 49 + private global::System.Windows.Forms.RadioButton btn2; + + // Token: 0x04000032 RID: 50 + private global::System.Windows.Forms.RadioButton btn3; + + // Token: 0x04000033 RID: 51 + private global::System.Windows.Forms.RadioButton btn4; + + // Token: 0x04000034 RID: 52 + private global::System.Windows.Forms.RadioButton btn5; + + // Token: 0x04000035 RID: 53 + private global::System.Windows.Forms.Button traceButton; + + // Token: 0x04000036 RID: 54 + private global::System.Windows.Forms.Button backgroundButton; + + // Token: 0x04000037 RID: 55 + private global::System.Windows.Forms.ComboBox cmbFill; + + // Token: 0x04000038 RID: 56 + private global::System.Windows.Forms.Label labFill; + + // Token: 0x04000039 RID: 57 + private global::System.Windows.Forms.Label label2; + + // Token: 0x0400003A RID: 58 + private global::System.Windows.Forms.PictureBox picBox; + + // Token: 0x0400003B RID: 59 + private global::System.Windows.Forms.GroupBox groupBox1; + + // Token: 0x0400003C RID: 60 + private global::System.Windows.Forms.Button saButton; + + // Token: 0x0400003D RID: 61 + private global::System.Windows.Forms.Button wfButton; + + // Token: 0x0400003E RID: 62 + private global::System.Windows.Forms.Button agButton; + + // Token: 0x0400003F RID: 63 + private global::System.Windows.Forms.ToolTip toolTip; + + // Token: 0x04000040 RID: 64 + private global::System.Windows.Forms.TrackBar trackBar; + + // Token: 0x04000041 RID: 65 + private global::System.Windows.Forms.Button fastButton; + + // Token: 0x04000042 RID: 66 + private global::System.Windows.Forms.Button okButton; + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.cs b/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.cs new file mode 100644 index 0000000..d55569d --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.cs @@ -0,0 +1,1036 @@ +using SDRSharp.Radio; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Windows.Forms; + +namespace SDRSharp.PanView +{ + public class GradientDialog : Form + { + public delegate void ManualGradientChange(object sender, GradientEventArgs e); + + private static int _blendIndex = -1; + + private static ColorBlend[] _blends; + + private static int[] _traceColors; + + private static int[] _backgrounds; + + private static int[] _spectrumFill; + + private static GradientDialog _form; + + private bool _editColor; + + private bool _editGradient; + + private bool _editTrace; + + private bool _editBackground; + + private static Bitmap _hslBitmap; + + private static Bitmap _original; + + private static Graphics _graphics; + + private static int _saturation = -1; + + private bool _moving0; + + private bool _moving1; + + private bool _save; + + private int _x0; + + private int _y0; + + private int _x1; + + private int _y1; + + private IContainer components; + + private ListBox colorListBox; + + private Button upButton; + + private Button downButton; + + private PictureBox gradientPictureBox; + + private Button addButton; + + private Button deleteButton; + + private Button cancelButton; + + private ColorDialog colorDialog; + + private RadioButton btn1; + + private RadioButton btn2; + + private RadioButton btn3; + + private RadioButton btn4; + + private RadioButton btn5; + + private Button traceButton; + + private Button backgroundButton; + + private ComboBox cmbFill; + + private Label labFill; + + private Label label2; + + private PictureBox picBox; + + private GroupBox groupBox1; + + private Button saButton; + + private Button wfButton; + + private Button agButton; + + private ToolTip toolTip; + + private TrackBar trackBar; + + private Button fastButton; + + private Button okButton; + + public static event ManualGradientChange GradientChanged; + + private GradientDialog() + { + this.InitializeComponent(); + this.drawHslBitmap(100); + this.picBox.BackgroundImage = GradientDialog._hslBitmap; + GradientDialog._original = (Bitmap)GradientDialog._hslBitmap.Clone(); + GradientDialog._graphics = Graphics.FromImage(GradientDialog._hslBitmap); + } + + private void picBox_MouseDown(object sender, MouseEventArgs e) + { + if (Math.Abs(e.X - this._x0) < 5 && Math.Abs(e.Y - this._y0) < 5) + { + this._moving0 = true; + } + else if (Math.Abs(e.X - this._x1) < 5 && Math.Abs(e.Y - this._y1) < 5) + { + this._moving1 = true; + } + } + + private void picBox_MouseUp(object sender, MouseEventArgs e) + { + this._moving0 = false; + this._moving1 = false; + } + + private void picBox_MouseMove(object sender, MouseEventArgs e) + { + if ((Math.Abs(e.X - this._x0) >= 5 || Math.Abs(e.Y - this._y0) >= 5) && !this._moving0 && (Math.Abs(e.X - this._x1) >= 5 || Math.Abs(e.Y - this._y1) >= 5) && !this._moving1) + { + this.Cursor = Cursors.Default; + goto IL_007c; + } + this.Cursor = Cursors.Cross; + goto IL_007c; + IL_007c: + if (e.Button == MouseButtons.Left) + { + int num = Math.Max(0, Math.Min(GradientDialog._hslBitmap.Width - 1, e.X)); + int num2 = Math.Max(0, Math.Min(GradientDialog._hslBitmap.Height - 1, e.Y)); + if (this._moving0) + { + this._x0 = num; + this._y0 = num2; + } + else + { + if (!this._moving1) + { + return; + } + this._x1 = num; + this._y1 = num2; + } + if (this._editColor || this._editTrace || this._editBackground) + { + GradientDialog._graphics.DrawImageUnscaled(GradientDialog._original, 0, 0); + GradientDialog._graphics.DrawRectangle(((double)this._y0 > (double)this.picBox.Height * 0.5) ? Pens.White : Pens.Black, this._x0 - 4, this._y0 - 4, 8, 8); + this.picBox.Invalidate(); + Color pixel = GradientDialog._original.GetPixel(num, num2); + if (this._editTrace) + { + this.traceButton.BackColor = pixel; + } + else if (this._editBackground) + { + this.backgroundButton.BackColor = pixel; + } + else if (this.colorListBox.SelectedIndex >= 0) + { + this.colorListBox.Items[this.colorListBox.SelectedIndex] = pixel; + } + this.gradientPictureBox.Invalidate(); + this.signalGradientChanged(); + } + else if (this._editGradient) + { + GradientDialog._graphics.DrawImageUnscaled(GradientDialog._original, 0, 0); + GradientDialog._graphics.DrawRectangle(((double)this._y0 > (double)this.picBox.Height * 0.5) ? Pens.White : Pens.Black, this._x0 - 4, this._y0 - 4, 8, 8); + GradientDialog._graphics.DrawRectangle(((double)this._y1 > (double)this.picBox.Height * 0.5) ? Pens.White : Pens.Black, this._x1 - 4, this._y1 - 4, 8, 8); + GradientDialog._graphics.DrawLine(Pens.Gray, this._x0, this._y0, this._x1, this._y1); + this.picBox.Invalidate(); + int num3 = (Math.Abs(this._x1 - this._x0) < GradientDialog._hslBitmap.Width / 2 || Math.Abs(this._y1 - this._y0) < GradientDialog._hslBitmap.Height / 2) ? 6 : 9; + this.colorListBox.Items.Clear(); + this.colorListBox.SelectedIndex = -1; + for (int i = 0; i <= num3; i++) + { + Color pixel2 = GradientDialog._original.GetPixel(this._x1 - i * (this._x1 - this._x0) / num3, this._y1 - i * (this._y1 - this._y0) / num3); + this.colorListBox.Items.Add(pixel2); + } + this.gradientPictureBox.Invalidate(); + this.signalGradientChanged(); + } + } + } + + public static void ShowGradient(int blendIndex, ColorBlend[] blends, int[] backgrounds, int[] traceColors, int[] spectrumFill, string parent) + { + GradientDialog._blends = new ColorBlend[blends.GetUpperBound(0)]; + GradientDialog._blendIndex = Math.Abs(blendIndex); + GradientDialog._blends = blends; + GradientDialog._backgrounds = backgrounds; + GradientDialog._traceColors = traceColors; + GradientDialog._spectrumFill = spectrumFill; + if (GradientDialog._form == null || GradientDialog._form.IsDisposed) + { + GradientDialog._form = new GradientDialog(); + } + GradientDialog._form.TopMost = true; + GradientDialog._form.Text = parent + " color editor"; + string a = parent.Substring(0, 1); + GradientDialog._form.saButton.BackColor = ((a != "S") ? SystemColors.Control : Color.LightGreen); + GradientDialog._form.wfButton.BackColor = ((a != "W") ? SystemColors.Control : Color.LightGreen); + GradientDialog._form.agButton.BackColor = ((a != "A") ? SystemColors.Control : Color.LightGreen); + if (a != "S") + { + GradientDialog._form.trackBar.Top = GradientDialog._form.groupBox1.Top + 4; + } + else + { + GradientDialog._form.trackBar.Top = GradientDialog._form.groupBox1.Top + GradientDialog._form.groupBox1.Height - GradientDialog._form.picBox.Height - GradientDialog._form.trackBar.Height - 4; + } + GradientDialog._form.picBox.Top = GradientDialog._form.trackBar.Top + GradientDialog._form.trackBar.Height; + for (int i = 1; i <= 5; i++) + { + RadioButton radioButton = (RadioButton)GradientDialog._form.Controls["btn" + i.ToString()]; + radioButton.Checked = false; + if (i == GradientDialog._blendIndex) + { + radioButton.Checked = true; + } + } + GradientDialog._form.okButton.Enabled = false; + if (!GradientDialog._form.Visible) + { + GradientDialog._form.ShowDialog(); + } + else + { + GradientDialog._form.Activate(); + } + } + + public static void CloseGradient() + { + if (GradientDialog._form != null && !GradientDialog._form.IsDisposed) + { + GradientDialog._form.Close(); + } + } + + private ColorBlend GetColorBlend() + { + ColorBlend colorBlend = new ColorBlend(this.colorListBox.Items.Count); + float num = 1f / (float)(colorBlend.Positions.Length - 1); + for (int i = 0; i < colorBlend.Positions.Length; i++) + { + colorBlend.Positions[i] = (float)i * num; + colorBlend.Colors[i] = (Color)this.colorListBox.Items[i]; + } + return colorBlend; + } + + private void SetColorBlend(ColorBlend colorBlend) + { + this.colorListBox.Items.Clear(); + this.colorListBox.SelectedIndex = -1; + for (int i = 0; i < colorBlend.Positions.Length; i++) + { + this.colorListBox.Items.Add(colorBlend.Colors[i]); + } + } + + private void colorListBox_DrawItem(object sender, DrawItemEventArgs e) + { + if (e.Index >= 0) + { + Color color = (Color)this.colorListBox.Items[e.Index]; + using (SolidBrush brush = new SolidBrush(color)) + { + e.Graphics.FillRectangle(brush, e.Bounds.Left + 1, e.Bounds.Top + 1, e.Bounds.Width - 2, e.Bounds.Height - 1); + } + if ((e.State & DrawItemState.Selected) != 0) + { + e.Graphics.DrawRectangle(((double)color.GetBrightness() < 0.5) ? Pens.White : Pens.Black, e.Bounds.Left + 2, e.Bounds.Top + 2, e.Bounds.Width - 5, e.Bounds.Height - 3); + } + } + } + + private void signalGradientChanged() + { + this.okButton.Enabled = true; + if (base.Visible && GradientDialog.GradientChanged != null) + { + int num = GradientDialog._blendIndex - 1; + GradientDialog._blends[num] = GradientDialog._form.GetColorBlend(); + GradientDialog._traceColors[num] = this.traceButton.BackColor.ToArgb(); + GradientDialog._backgrounds[num] = this.backgroundButton.BackColor.ToArgb(); + GradientDialog._spectrumFill[num] = GradientDialog._form.cmbFill.SelectedIndex; + string text = this.Text.Substring(0, 1); + if (text == " ") + { + text = "S"; + } + GradientDialog.GradientChanged(this, new GradientEventArgs(text, GradientDialog._blendIndex, GradientDialog._blends[num], GradientDialog._backgrounds[num], GradientDialog._traceColors[num], GradientDialog._spectrumFill[num])); + } + } + + private void upButton_Click(object sender, EventArgs e) + { + if (this.colorListBox.SelectedIndex < 0) + { + MessageBox.Show("Please, select color to move."); + } + else if (this.colorListBox.SelectedIndex > 0) + { + int selectedIndex = this.colorListBox.SelectedIndex; + object item = this.colorListBox.Items[selectedIndex]; + this.colorListBox.Items.RemoveAt(selectedIndex); + this.colorListBox.Items.Insert(selectedIndex - 1, item); + this.colorListBox.SelectedIndex = selectedIndex - 1; + this.gradientPictureBox.Invalidate(); + this.signalGradientChanged(); + } + } + + private void downButton_Click(object sender, EventArgs e) + { + if (this.colorListBox.SelectedIndex < 0) + { + MessageBox.Show("Please, select color to move."); + } + else if (this.colorListBox.SelectedIndex < this.colorListBox.Items.Count - 1) + { + int selectedIndex = this.colorListBox.SelectedIndex; + object item = this.colorListBox.Items[selectedIndex]; + this.colorListBox.Items.RemoveAt(selectedIndex); + this.colorListBox.Items.Insert(selectedIndex + 1, item); + this.colorListBox.SelectedIndex = selectedIndex + 1; + this.gradientPictureBox.Invalidate(); + this.signalGradientChanged(); + } + } + + private void fastButton_Click(object sender, EventArgs e) + { + this.deleteButton.Enabled = false; + this.upButton.Enabled = false; + this.downButton.Enabled = false; + this.colorListBox.SelectedIndex = -1; + this._editGradient = false; + this._editColor = false; + this._editTrace = false; + this._editBackground = false; + this.drawHslLine(this.GetColorBlend(), -1); + this._editGradient = true; + this.picBox.Enabled = true; + this.trackBar.Enabled = true; + } + + private void addButton_Click(object sender, EventArgs e) + { + Color color = (this.colorListBox.Items.Count == 0) ? Color.White : ((Color)this.colorListBox.Items[this.colorListBox.Items.Count - 1]); + if (this.colorListBox.SelectedIndex >= 0) + { + color = (Color)this.colorListBox.Items[this.colorListBox.SelectedIndex]; + } + this.colorListBox.Items.Insert(this.colorListBox.SelectedIndex, color); + this.colorListBox.SelectedIndex--; + this.drawHslPoint(color, -1); + this._editGradient = false; + this._editColor = true; + this._editTrace = false; + this._editBackground = false; + this.picBox.Enabled = true; + this.trackBar.Enabled = true; + this.signalGradientChanged(); + } + + private void deleteButton_Click(object sender, EventArgs e) + { + if (this.colorListBox.SelectedIndex < 0) + { + MessageBox.Show("Please, select color to delete first."); + } + else if (this.colorListBox.Items.Count <= 2) + { + MessageBox.Show("Minumum number of gradient colors is two."); + } + else + { + int selectedIndex = this.colorListBox.SelectedIndex; + this.colorListBox.Items.RemoveAt(this.colorListBox.SelectedIndex); + this.colorListBox.SelectedIndex = Math.Min(selectedIndex, this.colorListBox.Items.Count - 1); + this.gradientPictureBox.Invalidate(); + this.signalGradientChanged(); + } + } + + private void gradientPictureBox_Paint(object sender, PaintEventArgs e) + { + ColorBlend colorBlend = this.GetColorBlend(); + using (LinearGradientBrush linearGradientBrush = new LinearGradientBrush(this.gradientPictureBox.ClientRectangle, Color.White, Color.Black, LinearGradientMode.Vertical)) + { + linearGradientBrush.InterpolationColors = colorBlend; + e.Graphics.FillRectangle(linearGradientBrush, e.ClipRectangle); + } + } + + private void btnGradient_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + int.TryParse(radioButton.Text, out GradientDialog._blendIndex); + int num = GradientDialog._blendIndex - 1; + this.SetColorBlend(GradientDialog._blends[num]); + this.backgroundButton.BackColor = Color.FromArgb(GradientDialog._backgrounds[num]); + this.traceButton.BackColor = Color.FromArgb(GradientDialog._traceColors[num]); + this.cmbFill.SelectedIndex = GradientDialog._spectrumFill[num]; + this.gradientPictureBox.Invalidate(); + this.signalGradientChanged(); + this.deleteButton.Enabled = false; + this.upButton.Enabled = false; + this.downButton.Enabled = false; + GradientDialog._graphics.FillRectangle(Brushes.Gray, 0, 0, GradientDialog._hslBitmap.Width, GradientDialog._hslBitmap.Height); + this._editGradient = false; + this._editColor = false; + this._editTrace = false; + this._editBackground = false; + this.picBox.Enabled = false; + this.trackBar.Enabled = false; + this.picBox.Invalidate(); + } + } + + private void traceButton_Click(object sender, EventArgs e) + { + this.drawHslPoint(this.traceButton.BackColor, -1); + this._editGradient = false; + this._editColor = false; + this._editTrace = true; + this._editBackground = false; + this.picBox.Enabled = true; + this.trackBar.Enabled = true; + } + + private void backgroundButton_Click(object sender, EventArgs e) + { + this.drawHslPoint(this.backgroundButton.BackColor, -1); + this._editGradient = false; + this._editColor = false; + this._editTrace = false; + this._editBackground = true; + this.picBox.Enabled = true; + this.trackBar.Enabled = true; + } + + private void cmbFill_SelectedIndexChanged(object sender, EventArgs e) + { + if (GradientDialog._spectrumFill[GradientDialog._blendIndex - 1] < 2 && this.cmbFill.SelectedIndex > 1) + { + MessageBox.Show("Note: selecting one of the dynamic fill colors may impact performance on older systems."); + } + this.signalGradientChanged(); + } + + private void colorListBox_Click(object sender, EventArgs e) + { + this.deleteButton.Enabled = true; + this.upButton.Enabled = true; + this.downButton.Enabled = true; + Color color = (Color)this.colorListBox.Items[this.colorListBox.SelectedIndex]; + this._editGradient = false; + this._editColor = false; + this._editTrace = false; + this._editBackground = false; + this.drawHslPoint(color, -1); + this.picBox.Enabled = true; + this.trackBar.Enabled = true; + this._editColor = true; + } + + private void saButton_Click(object sender, EventArgs e) + { + if (GradientDialog.GradientChanged != null) + { + GradientDialog.GradientChanged(this, new GradientEventArgs("S", -1, GradientDialog._blends[0], 0, 0, 0)); + } + } + + private void wfButton_Click(object sender, EventArgs e) + { + if (GradientDialog.GradientChanged != null) + { + GradientDialog.GradientChanged(this, new GradientEventArgs("W", -1, GradientDialog._blends[0], 0, 0, 0)); + } + } + + private void agButton_Click(object sender, EventArgs e) + { + if (GradientDialog.GradientChanged != null) + { + GradientDialog.GradientChanged(this, new GradientEventArgs("A", -1, GradientDialog._blends[0], 0, 0, 0)); + } + } + + private void trackBar_ValueChanged(object sender, EventArgs e) + { + if (this._editTrace) + { + this.drawHslPoint(this.traceButton.BackColor, this.trackBar.Value); + } + else if (this._editBackground) + { + this.drawHslPoint(this.backgroundButton.BackColor, this.trackBar.Value); + } + else if (this._editColor) + { + this.drawHslPoint((Color)this.colorListBox.Items[this.colorListBox.SelectedIndex], this.trackBar.Value); + } + else if (this._editGradient) + { + this.drawHslLine(this.GetColorBlend(), this.trackBar.Value); + } + } + + private void drawHslBitmap(int saturation) + { + if (saturation == GradientDialog._saturation) + { + GradientDialog._graphics.DrawImageUnscaled(GradientDialog._original, 0, 0); + } + else + { + if (GradientDialog._hslBitmap == null) + { + GradientDialog._hslBitmap = new Bitmap(this.picBox.Width, this.picBox.Height); + } + float s = (float)saturation / 100f; + for (int i = 0; i < GradientDialog._hslBitmap.Height; i++) + { + for (int j = 0; j < GradientDialog._hslBitmap.Width; j++) + { + float h = (float)j / (float)GradientDialog._hslBitmap.Width; + float l = (float)(GradientDialog._hslBitmap.Height - i) / (float)GradientDialog._hslBitmap.Height; + Color color = Utils.HslToRgb(h, s, l); + GradientDialog._hslBitmap.SetPixel(j, i, color); + } + } + GradientDialog._original = (Bitmap)GradientDialog._hslBitmap.Clone(); + GradientDialog._saturation = saturation; + } + } + + private void drawHslLine(ColorBlend blend, int sat = -1) + { + int num = sat; + Color color = blend.Colors[blend.Colors.Length - 1]; + Color color2 = blend.Colors[0]; + float num2 = color.GetHue() / 360f; + float num3 = color.GetSaturation(); + float brightness = color.GetBrightness(); + float num4 = color2.GetHue() / 360f; + float saturation = color2.GetSaturation(); + float brightness2 = color2.GetBrightness(); + if ((double)num3 < 0.001) + { + num2 = 0.5f; + } + if ((double)brightness < 0.001 || (double)brightness > 0.999) + { + num3 = 1f; + } + if ((double)saturation < 0.001) + { + num4 = 0.5f; + } + if ((double)brightness2 < 0.001 || (double)brightness2 > 0.999) + { + saturation = 1f; + } + if ((double)brightness < 0.001 || (double)brightness > 0.999) + { + int num5 = this.colorListBox.Items.Count / 2; + float num6 = ((Color)this.colorListBox.Items[num5]).GetHue() / 360f; + num2 = Math.Max(0f, Math.Min(1f, num4 + (num6 - num4) / (float)num5 * (float)(this.colorListBox.Items.Count - 1))); + } + if ((double)brightness2 < 0.001 || (double)brightness2 > 0.999) + { + int num7 = this.colorListBox.Items.Count / 2; + float num8 = ((Color)this.colorListBox.Items[num7]).GetHue() / 360f; + num4 = Math.Max(0f, Math.Min(1f, num2 + (num8 - num2) / (float)num7 * (float)(this.colorListBox.Items.Count - 1))); + } + if (num < 0) + { + sat = (int)(num3 * 100f); + this.trackBar.Value = sat; + this._x0 = (int)(num2 * (float)(this.picBox.Width - 1)); + this._y0 = this.picBox.Height - 1 - (int)(brightness * (float)(this.picBox.Height - 1)); + this._x1 = (int)(num4 * (float)(this.picBox.Width - 1)); + this._y1 = this.picBox.Height - 1 - (int)(brightness2 * (float)(this.picBox.Height - 1)); + } + this.drawHslBitmap(sat); + GradientDialog._graphics.DrawRectangle((brightness < 0.5f) ? Pens.White : Pens.Black, this._x0 - 4, this._y0 - 4, 8, 8); + GradientDialog._graphics.DrawRectangle((brightness2 < 0.5f) ? Pens.White : Pens.Black, this._x1 - 4, this._y1 - 4, 8, 8); + GradientDialog._graphics.DrawLine(Pens.Gray, this._x0, this._y0, this._x1, this._y1); + this.picBox.Invalidate(); + if (num >= 0 && this.colorListBox.Items.Count > 1) + { + int count = this.colorListBox.Items.Count; + for (int i = 0; i < count; i++) + { + this.colorListBox.Items[i] = GradientDialog._original.GetPixel(this._x1 - i * (this._x1 - this._x0) / count, this._y1 - i * (this._y1 - this._y0) / count); + } + this.gradientPictureBox.Invalidate(); + this.signalGradientChanged(); + } + } + + private void drawHslPoint(Color color, int sat = -1) + { + int num = sat; + float num2 = color.GetHue() / 360f; + float num3 = color.GetSaturation(); + float brightness = color.GetBrightness(); + if ((double)num3 < 0.001) + { + num2 = 0.5f; + } + if ((double)brightness < 0.001 || (double)brightness > 0.999) + { + num3 = 1f; + } + if (num < 0) + { + sat = (int)(num3 * 100f); + this.trackBar.Value = sat; + this._x0 = (int)(num2 * (float)(this.picBox.Width - 1)); + this._y0 = this.picBox.Height - 1 - (int)(brightness * (float)(this.picBox.Height - 1)); + this._x1 = -999; + this._y1 = -999; + } + this.drawHslBitmap(sat); + GradientDialog._graphics.DrawRectangle((brightness < 0.5f) ? Pens.White : Pens.Black, this._x0 - 4, this._y0 - 4, 8, 8); + this.picBox.Invalidate(); + if (num >= 0) + { + color = GradientDialog._original.GetPixel(this._x0, this._y0); + if (this._editTrace) + { + this.traceButton.BackColor = color; + } + else if (this._editBackground) + { + this.backgroundButton.BackColor = color; + } + else if (this._editColor && this.colorListBox.SelectedIndex >= 0) + { + this.colorListBox.Items[this.colorListBox.SelectedIndex] = color; + } + this.gradientPictureBox.Invalidate(); + this.signalGradientChanged(); + } + } + + private void closeButton_Click(object sender, EventArgs e) + { + this._save = false; + } + + private void saveButton_Click(object sender, EventArgs e) + { + this._save = true; + } + + private void GradientDialog_FormClosing(object sender, FormClosingEventArgs e) + { + if (GradientDialog.GradientChanged != null) + { + GradientDialog.GradientChanged(this, new GradientEventArgs(this._save ? "save" : "undo", 0, null, 0, 0, 0)); + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.components = new Container(); + this.colorListBox = new ListBox(); + this.upButton = new Button(); + this.downButton = new Button(); + this.gradientPictureBox = new PictureBox(); + this.addButton = new Button(); + this.deleteButton = new Button(); + this.cancelButton = new Button(); + this.colorDialog = new ColorDialog(); + this.btn1 = new RadioButton(); + this.btn2 = new RadioButton(); + this.btn3 = new RadioButton(); + this.btn4 = new RadioButton(); + this.btn5 = new RadioButton(); + this.traceButton = new Button(); + this.backgroundButton = new Button(); + this.cmbFill = new ComboBox(); + this.labFill = new Label(); + this.label2 = new Label(); + this.picBox = new PictureBox(); + this.groupBox1 = new GroupBox(); + this.fastButton = new Button(); + this.saButton = new Button(); + this.wfButton = new Button(); + this.agButton = new Button(); + this.toolTip = new ToolTip(this.components); + this.trackBar = new TrackBar(); + this.okButton = new Button(); + ((ISupportInitialize)this.gradientPictureBox).BeginInit(); + ((ISupportInitialize)this.picBox).BeginInit(); + this.groupBox1.SuspendLayout(); + ((ISupportInitialize)this.trackBar).BeginInit(); + base.SuspendLayout(); + this.colorListBox.BackColor = Color.FromArgb(224, 224, 224); + this.colorListBox.DrawMode = DrawMode.OwnerDrawVariable; + this.colorListBox.FormattingEnabled = true; + this.colorListBox.ItemHeight = 15; + this.colorListBox.Location = new Point(7, 21); + this.colorListBox.Name = "colorListBox"; + this.colorListBox.Size = new Size(62, 210); + this.colorListBox.TabIndex = 0; + this.toolTip.SetToolTip(this.colorListBox, "Select. move or edit gradient color."); + this.colorListBox.Click += this.colorListBox_Click; + this.colorListBox.DrawItem += this.colorListBox_DrawItem; + this.upButton.Enabled = false; + this.upButton.Location = new Point(110, 161); + this.upButton.Name = "upButton"; + this.upButton.Size = new Size(55, 23); + this.upButton.TabIndex = 1; + this.upButton.Text = "Up"; + this.toolTip.SetToolTip(this.upButton, "Move color up"); + this.upButton.UseVisualStyleBackColor = true; + this.upButton.Click += this.upButton_Click; + this.downButton.Enabled = false; + this.downButton.Location = new Point(111, 191); + this.downButton.Name = "downButton"; + this.downButton.Size = new Size(53, 23); + this.downButton.TabIndex = 2; + this.downButton.Text = "Down"; + this.toolTip.SetToolTip(this.downButton, "Move color down"); + this.downButton.UseVisualStyleBackColor = true; + this.downButton.Click += this.downButton_Click; + this.gradientPictureBox.BorderStyle = BorderStyle.FixedSingle; + this.gradientPictureBox.Location = new Point(71, 23); + this.gradientPictureBox.Name = "gradientPictureBox"; + this.gradientPictureBox.Size = new Size(29, 209); + this.gradientPictureBox.TabIndex = 3; + this.gradientPictureBox.TabStop = false; + this.gradientPictureBox.Paint += this.gradientPictureBox_Paint; + this.addButton.Location = new Point(105, 76); + this.addButton.Name = "addButton"; + this.addButton.Size = new Size(63, 23); + this.addButton.TabIndex = 3; + this.addButton.Text = "Add color"; + this.toolTip.SetToolTip(this.addButton, "Add new color to gradient."); + this.addButton.UseVisualStyleBackColor = true; + this.addButton.Click += this.addButton_Click; + this.deleteButton.Enabled = false; + this.deleteButton.Location = new Point(105, 106); + this.deleteButton.Name = "deleteButton"; + this.deleteButton.Size = new Size(64, 23); + this.deleteButton.TabIndex = 4; + this.deleteButton.Text = "Delete"; + this.toolTip.SetToolTip(this.deleteButton, "Delete selected color"); + this.deleteButton.UseVisualStyleBackColor = true; + this.deleteButton.Click += this.deleteButton_Click; + this.cancelButton.DialogResult = DialogResult.Cancel; + this.cancelButton.Location = new Point(332, 280); + this.cancelButton.Name = "cancelButton"; + this.cancelButton.Size = new Size(48, 20); + this.cancelButton.TabIndex = 6; + this.cancelButton.Text = "Cancel"; + this.toolTip.SetToolTip(this.cancelButton, "Cancel/undo changes"); + this.cancelButton.UseVisualStyleBackColor = true; + this.cancelButton.Click += this.closeButton_Click; + this.colorDialog.AnyColor = true; + this.colorDialog.FullOpen = true; + this.btn1.AutoSize = true; + this.btn1.BackColor = SystemColors.Control; + this.btn1.ForeColor = SystemColors.ControlText; + this.btn1.Location = new Point(62, 10); + this.btn1.Margin = new Padding(2); + this.btn1.Name = "btn1"; + this.btn1.RightToLeft = RightToLeft.No; + this.btn1.Size = new Size(31, 17); + this.btn1.TabIndex = 8; + this.btn1.TabStop = true; + this.btn1.Text = "1"; + this.toolTip.SetToolTip(this.btn1, "Select gradient to use"); + this.btn1.UseVisualStyleBackColor = false; + this.btn1.CheckedChanged += this.btnGradient_CheckedChanged; + this.btn2.AutoSize = true; + this.btn2.Location = new Point(92, 10); + this.btn2.Margin = new Padding(2); + this.btn2.Name = "btn2"; + this.btn2.RightToLeft = RightToLeft.No; + this.btn2.Size = new Size(31, 17); + this.btn2.TabIndex = 9; + this.btn2.TabStop = true; + this.btn2.Text = "2"; + this.btn2.UseVisualStyleBackColor = true; + this.btn2.CheckedChanged += this.btnGradient_CheckedChanged; + this.btn3.AutoSize = true; + this.btn3.Location = new Point(122, 10); + this.btn3.Margin = new Padding(2); + this.btn3.Name = "btn3"; + this.btn3.RightToLeft = RightToLeft.No; + this.btn3.Size = new Size(31, 17); + this.btn3.TabIndex = 10; + this.btn3.TabStop = true; + this.btn3.Text = "3"; + this.btn3.UseVisualStyleBackColor = true; + this.btn3.CheckedChanged += this.btnGradient_CheckedChanged; + this.btn4.AutoSize = true; + this.btn4.Location = new Point(152, 10); + this.btn4.Margin = new Padding(2); + this.btn4.Name = "btn4"; + this.btn4.RightToLeft = RightToLeft.No; + this.btn4.Size = new Size(31, 17); + this.btn4.TabIndex = 11; + this.btn4.TabStop = true; + this.btn4.Text = "4"; + this.btn4.UseVisualStyleBackColor = true; + this.btn4.CheckedChanged += this.btnGradient_CheckedChanged; + this.btn5.AutoSize = true; + this.btn5.Location = new Point(182, 10); + this.btn5.Margin = new Padding(2); + this.btn5.Name = "btn5"; + this.btn5.RightToLeft = RightToLeft.No; + this.btn5.Size = new Size(31, 17); + this.btn5.TabIndex = 12; + this.btn5.TabStop = true; + this.btn5.Text = "5"; + this.btn5.UseVisualStyleBackColor = true; + this.btn5.CheckedChanged += this.btnGradient_CheckedChanged; + this.traceButton.Location = new Point(183, 42); + this.traceButton.Name = "traceButton"; + this.traceButton.Size = new Size(54, 23); + this.traceButton.TabIndex = 15; + this.traceButton.Text = "Trace"; + this.toolTip.SetToolTip(this.traceButton, "Change spectrum trace color"); + this.traceButton.UseVisualStyleBackColor = true; + this.traceButton.Click += this.traceButton_Click; + this.backgroundButton.ForeColor = Color.White; + this.backgroundButton.Location = new Point(245, 42); + this.backgroundButton.Name = "backgroundButton"; + this.backgroundButton.Size = new Size(53, 23); + this.backgroundButton.TabIndex = 17; + this.backgroundButton.Text = "B-gnd"; + this.toolTip.SetToolTip(this.backgroundButton, "Change background color"); + this.backgroundButton.UseVisualStyleBackColor = true; + this.backgroundButton.Click += this.backgroundButton_Click; + this.cmbFill.DropDownStyle = ComboBoxStyle.DropDownList; + this.cmbFill.FormattingEnabled = true; + this.cmbFill.Items.AddRange(new object[4] + { + "none\t", + "static", + "dyn-1", + "dyn-2" + }); + this.cmbFill.Location = new Point(330, 45); + this.cmbFill.Name = "cmbFill"; + this.cmbFill.Size = new Size(49, 21); + this.cmbFill.TabIndex = 18; + this.toolTip.SetToolTip(this.cmbFill, "Select SA fill type."); + this.cmbFill.SelectedIndexChanged += this.cmbFill_SelectedIndexChanged; + this.labFill.AutoSize = true; + this.labFill.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.labFill.Location = new Point(305, 46); + this.labFill.Name = "labFill"; + this.labFill.Size = new Size(28, 16); + this.labFill.TabIndex = 19; + this.labFill.Text = "Fill:"; + this.label2.AutoSize = true; + this.label2.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.label2.Location = new Point(5, 10); + this.label2.Name = "label2"; + this.label2.Size = new Size(46, 16); + this.label2.TabIndex = 20; + this.label2.Text = "Select"; + this.picBox.BackColor = SystemColors.ButtonHighlight; + this.picBox.BackgroundImageLayout = ImageLayout.Center; + this.picBox.Cursor = Cursors.Default; + this.picBox.Enabled = false; + this.picBox.InitialImage = null; + this.picBox.Location = new Point(181, 96); + this.picBox.Name = "picBox"; + this.picBox.Size = new Size(200, 177); + this.picBox.TabIndex = 22; + this.picBox.TabStop = false; + this.toolTip.SetToolTip(this.picBox, "Pick/move color or gradient"); + this.picBox.MouseDown += this.picBox_MouseDown; + this.picBox.MouseMove += this.picBox_MouseMove; + this.picBox.MouseUp += this.picBox_MouseUp; + this.groupBox1.Controls.Add(this.fastButton); + this.groupBox1.Controls.Add(this.colorListBox); + this.groupBox1.Controls.Add(this.gradientPictureBox); + this.groupBox1.Controls.Add(this.upButton); + this.groupBox1.Controls.Add(this.downButton); + this.groupBox1.Controls.Add(this.addButton); + this.groupBox1.Controls.Add(this.deleteButton); + this.groupBox1.FlatStyle = FlatStyle.System; + this.groupBox1.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 0); + this.groupBox1.Location = new Point(2, 35); + this.groupBox1.Margin = new Padding(2); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Padding = new Padding(2); + this.groupBox1.Size = new Size(172, 240); + this.groupBox1.TabIndex = 23; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "Edit color gradient"; + this.fastButton.Location = new Point(105, 23); + this.fastButton.Name = "fastButton"; + this.fastButton.Size = new Size(63, 23); + this.fastButton.TabIndex = 8; + this.fastButton.Text = "Fast edit"; + this.toolTip.SetToolTip(this.fastButton, "Edit whole gradient"); + this.fastButton.UseVisualStyleBackColor = true; + this.fastButton.Click += this.fastButton_Click; + this.saButton.Location = new Point(7, 280); + this.saButton.Name = "saButton"; + this.saButton.Size = new Size(43, 20); + this.saButton.TabIndex = 24; + this.saButton.Text = "Spect"; + this.toolTip.SetToolTip(this.saButton, "Change SpectrumAnalyzer colors"); + this.saButton.UseVisualStyleBackColor = true; + this.saButton.Click += this.saButton_Click; + this.wfButton.Location = new Point(57, 280); + this.wfButton.Name = "wfButton"; + this.wfButton.Size = new Size(43, 20); + this.wfButton.TabIndex = 25; + this.wfButton.Text = "W-fall"; + this.toolTip.SetToolTip(this.wfButton, "Change Waterfall colors"); + this.wfButton.UseVisualStyleBackColor = true; + this.wfButton.Click += this.wfButton_Click; + this.agButton.Location = new Point(106, 280); + this.agButton.Name = "agButton"; + this.agButton.Size = new Size(43, 20); + this.agButton.TabIndex = 25; + this.agButton.Text = "Audio"; + this.toolTip.SetToolTip(this.agButton, "Change Audiogram colors"); + this.agButton.UseVisualStyleBackColor = true; + this.agButton.Click += this.agButton_Click; + this.toolTip.AutoPopDelay = 2000; + this.toolTip.InitialDelay = 500; + this.toolTip.ReshowDelay = 100; + this.trackBar.AutoSize = false; + this.trackBar.Location = new Point(181, 79); + this.trackBar.Margin = new Padding(2); + this.trackBar.Maximum = 100; + this.trackBar.Name = "trackBar"; + this.trackBar.Size = new Size(200, 20); + this.trackBar.TabIndex = 39; + this.trackBar.TickFrequency = 10; + this.trackBar.TickStyle = TickStyle.None; + this.trackBar.Value = 100; + this.trackBar.ValueChanged += this.trackBar_ValueChanged; + this.okButton.DialogResult = DialogResult.OK; + this.okButton.Enabled = false; + this.okButton.Location = new Point(242, 280); + this.okButton.Name = "okButton"; + this.okButton.Size = new Size(54, 20); + this.okButton.TabIndex = 40; + this.okButton.Text = "OK"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += this.saveButton_Click; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.CancelButton = this.cancelButton; + base.ClientSize = new Size(388, 306); + base.Controls.Add(this.okButton); + base.Controls.Add(this.trackBar); + base.Controls.Add(this.agButton); + base.Controls.Add(this.wfButton); + base.Controls.Add(this.saButton); + base.Controls.Add(this.groupBox1); + base.Controls.Add(this.picBox); + base.Controls.Add(this.label2); + base.Controls.Add(this.cmbFill); + base.Controls.Add(this.backgroundButton); + base.Controls.Add(this.traceButton); + base.Controls.Add(this.btn5); + base.Controls.Add(this.btn4); + base.Controls.Add(this.btn3); + base.Controls.Add(this.btn2); + base.Controls.Add(this.btn1); + base.Controls.Add(this.cancelButton); + base.Controls.Add(this.labFill); + base.FormBorderStyle = FormBorderStyle.FixedDialog; + base.MaximizeBox = false; + base.MinimizeBox = false; + base.Name = "GradientDialog"; + base.ShowInTaskbar = false; + base.StartPosition = FormStartPosition.CenterParent; + this.Text = "Color Editor"; + this.toolTip.SetToolTip(this, "Accept/save changes"); + base.FormClosing += this.GradientDialog_FormClosing; + ((ISupportInitialize)this.gradientPictureBox).EndInit(); + ((ISupportInitialize)this.picBox).EndInit(); + this.groupBox1.ResumeLayout(false); + ((ISupportInitialize)this.trackBar).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.resx b/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/GradientDialog.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.PanView/SDRSharp.PanView/GradientEventArgs.cs b/SDRSharper.PanView/SDRSharp.PanView/GradientEventArgs.cs new file mode 100644 index 0000000..63a6451 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/GradientEventArgs.cs @@ -0,0 +1,30 @@ +using System; +using System.Drawing.Drawing2D; + +namespace SDRSharp.PanView +{ + public class GradientEventArgs : EventArgs + { + public string Parent; + + public int Index; + + public ColorBlend Blend; + + public int Back; + + public int Trace; + + public int Fill; + + public GradientEventArgs(string parent, int index, ColorBlend blend, int back, int trace, int fill) + { + this.Parent = parent; + this.Index = index; + this.Blend = blend; + this.Back = back; + this.Trace = trace; + this.Fill = fill; + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/Indicator.cs b/SDRSharper.PanView/SDRSharp.PanView/Indicator.cs new file mode 100644 index 0000000..a758c05 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/Indicator.cs @@ -0,0 +1,537 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Runtime.InteropServices; +using System.Windows.Forms; + +namespace SDRSharp.PanView +{ + public class Indicator : UserControl + { + private decimal _value = new decimal(8888888888L); + + private string _newText; + + private string _oldText; + + private decimal _min; + + private decimal _max; + + private decimal _inc; + + private bool _init; + + private Color _backColor; + + private ToolTip _toolTip; + + private IContainer components; + + private Label txt8; + + private Label txt7; + + private Label txt6; + + private Label txt3; + + private Label txt4; + + private Label txt5; + + private Label txt0; + + private Label txt1; + + private Label txt2; + + private Label txt10; + + private Label txt9; + + public decimal Value + { + get + { + return this._value; + } + set + { + if (!(value == this._value)) + { + this._oldText = this._value.ToString().PadLeft(10); + this._value = value; + this._newText = this._value.ToString().PadLeft(10); + for (int i = 0; i <= 9; i++) + { + if (this._newText.Substring(i, 1) != this._oldText.Substring(i, 1)) + { + this.GetDigit(9 - i).Text = this._newText.Substring(i, 1); + } + } + if (this._init) + { + this.ValueChanged(this, new EventArgs()); + } + } + } + } + + public string Label + { + get + { + return this.txt10.Text; + } + set + { + this.txt10.Text = value; + } + } + + public decimal Minimum + { + get + { + return this._min; + } + set + { + this._min = value; + } + } + + public decimal Maximum + { + get + { + return this._max; + } + set + { + this._max = value; + } + } + + public ToolTip ToolTip + { + get + { + return this._toolTip; + } + set + { + this._toolTip = value; + } + } + + public decimal Increment + { + get + { + return this._inc; + } + set + { + this._inc = value; + if (this._inc > 0m) + { + this._init = true; + } + } + } + + public event ManualValueChange ValueChanged; + + [DllImport("user32.dll")] + public static extern long HideCaret(IntPtr hwnd); + + public Indicator() + { + this.InitializeComponent(); + this._backColor = this.txt0.BackColor; + } + + public void ShowValue(int value) + { + this._newText = value.ToString().PadLeft(10); + for (int i = 0; i <= 9; i++) + { + this.GetDigit(9 - i).Text = this._newText.Substring(i, 1); + } + } + + protected override void OnLoad(EventArgs e) + { + base.OnLoad(e); + if (this._toolTip != null) + { + string toolTip = this._toolTip.GetToolTip(this); + for (int i = 0; i <= 9; i++) + { + this._toolTip.SetToolTip(this.GetDigit(i), toolTip); + } + } + } + + private void txt_MouseEnter(object sender, EventArgs e) + { + ((Label)sender).Focus(); + } + + private void txt_Enter(object sender, EventArgs e) + { + ((Label)sender).BackColor = Color.RoyalBlue; + } + + private void txt_Leave(object sender, EventArgs e) + { + Label label = (Label)sender; + label.BackColor = this._backColor; + } + + private void txt_MouseDown(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + Label label = (Label)sender; + int pos = this.GetPos(label); + long value = (pos == 10) ? ((long)this._inc) : ((long)Math.Pow(10.0, (double)pos)); + if (e.Location.Y < label.Height / 2 - 3) + { + this.Value = this._value + (decimal)value; + } + else + { + this.Value = this._value - (decimal)value; + } + } + else if (e.Button == MouseButtons.Right) + { + FrequencyDialog frequencyDialog = new FrequencyDialog(); + Label label2 = (Label)sender; + frequencyDialog.StartPosition = FormStartPosition.CenterParent; + if (frequencyDialog.ShowDialog() == DialogResult.Yes) + { + this.Value = this.Val(frequencyDialog.Frequency) * 1000; + } + else + { + this.Value = this.Val(frequencyDialog.Frequency) * 1000000; + } + } + } + + private void txt_MouseWheel(object sender, MouseEventArgs e) + { + int pos = this.GetPos((Label)sender); + long value = (pos == 10) ? ((long)this._inc) : ((long)Math.Pow(10.0, (double)pos)); + if (e.Delta > 0) + { + this.Value = this._value + (decimal)value; + } + else if (e.Delta < 0) + { + this.Value = this._value - (decimal)value; + } + } + + private void txt_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) + { + int pos = this.GetPos((Label)sender); + e.IsInputKey = true; + switch (e.KeyCode) + { + case Keys.Left: + if (pos < 10) + { + this.GetDigit(pos + 1).Focus(); + } + break; + case Keys.Right: + if (pos > 0) + { + this.GetDigit(pos - 1).Focus(); + } + break; + case Keys.Down: + this.Value = this._value - (decimal)((pos == 10) ? ((long)this._inc) : ((long)Math.Pow(10.0, (double)pos))); + break; + case Keys.Up: + this.Value = this._value + (decimal)((pos == 10) ? ((long)this._inc) : ((long)Math.Pow(10.0, (double)pos))); + break; + default: + e.IsInputKey = false; + break; + } + } + + private string Str(int val) + { + return val.ToString(); + } + + private int Val(string str) + { + int.TryParse(str, out int result); + return result; + } + + private Label GetDigit(int digit) + { + if (digit < 0) + { + digit = 0; + } + else if (digit > 10) + { + digit = 10; + } + switch (digit) + { + case 0: + return this.txt0; + case 1: + return this.txt1; + case 2: + return this.txt2; + case 3: + return this.txt3; + case 4: + return this.txt4; + case 5: + return this.txt5; + case 6: + return this.txt6; + case 7: + return this.txt7; + case 8: + return this.txt8; + case 9: + return this.txt9; + default: + return this.txt10; + } + } + + private int GetPos(Label txt) + { + return this.Val(txt.Name.Substring(3)); + } + + protected override void OnResize(EventArgs e) + { + base.Width = this.txt0.Left + this.txt0.Width; + base.OnResize(e); + base.Invalidate(); + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.txt8 = new System.Windows.Forms.Label(); + this.txt7 = new System.Windows.Forms.Label(); + this.txt6 = new System.Windows.Forms.Label(); + this.txt3 = new System.Windows.Forms.Label(); + this.txt4 = new System.Windows.Forms.Label(); + this.txt5 = new System.Windows.Forms.Label(); + this.txt0 = new System.Windows.Forms.Label(); + this.txt1 = new System.Windows.Forms.Label(); + this.txt2 = new System.Windows.Forms.Label(); + this.txt10 = new System.Windows.Forms.Label(); + this.txt9 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // txt8 + // + this.txt8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt8.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt8.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt8.Location = new System.Drawing.Point(77, 0); + this.txt8.Margin = new System.Windows.Forms.Padding(0); + this.txt8.Name = "txt8"; + this.txt8.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt8.Size = new System.Drawing.Size(24, 34); + this.txt8.TabIndex = 0; + this.txt8.Text = "8"; + this.txt8.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt7 + // + this.txt7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt7.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt7.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt7.Location = new System.Drawing.Point(101, 0); + this.txt7.Margin = new System.Windows.Forms.Padding(0); + this.txt7.Name = "txt7"; + this.txt7.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt7.Size = new System.Drawing.Size(24, 34); + this.txt7.TabIndex = 1; + this.txt7.Text = "8"; + this.txt7.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt6 + // + this.txt6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt6.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt6.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt6.Location = new System.Drawing.Point(125, 0); + this.txt6.Margin = new System.Windows.Forms.Padding(0); + this.txt6.Name = "txt6"; + this.txt6.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt6.Size = new System.Drawing.Size(24, 34); + this.txt6.TabIndex = 2; + this.txt6.Text = "8"; + this.txt6.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt3 + // + this.txt3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt3.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt3.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt3.Location = new System.Drawing.Point(202, 0); + this.txt3.Margin = new System.Windows.Forms.Padding(0); + this.txt3.Name = "txt3"; + this.txt3.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt3.Size = new System.Drawing.Size(24, 34); + this.txt3.TabIndex = 5; + this.txt3.Text = "8"; + this.txt3.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt4 + // + this.txt4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt4.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt4.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt4.Location = new System.Drawing.Point(178, 0); + this.txt4.Margin = new System.Windows.Forms.Padding(0); + this.txt4.Name = "txt4"; + this.txt4.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt4.Size = new System.Drawing.Size(24, 34); + this.txt4.TabIndex = 4; + this.txt4.Text = "8"; + this.txt4.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt5 + // + this.txt5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt5.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt5.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt5.Location = new System.Drawing.Point(154, 0); + this.txt5.Margin = new System.Windows.Forms.Padding(0); + this.txt5.Name = "txt5"; + this.txt5.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt5.Size = new System.Drawing.Size(24, 34); + this.txt5.TabIndex = 3; + this.txt5.Text = "8"; + this.txt5.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt0 + // + this.txt0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt0.Font = new System.Drawing.Font("LCD", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt0.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt0.Location = new System.Drawing.Point(271, 0); + this.txt0.Margin = new System.Windows.Forms.Padding(0); + this.txt0.Name = "txt0"; + this.txt0.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt0.Size = new System.Drawing.Size(22, 30); + this.txt0.TabIndex = 8; + this.txt0.Text = "8"; + this.txt0.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt1 + // + this.txt1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt1.Font = new System.Drawing.Font("LCD", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt1.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt1.Location = new System.Drawing.Point(251, 0); + this.txt1.Margin = new System.Windows.Forms.Padding(0); + this.txt1.Name = "txt1"; + this.txt1.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt1.Size = new System.Drawing.Size(22, 30); + this.txt1.TabIndex = 7; + this.txt1.Text = "8"; + this.txt1.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt2 + // + this.txt2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt2.Font = new System.Drawing.Font("LCD", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt2.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt2.Location = new System.Drawing.Point(231, 0); + this.txt2.Margin = new System.Windows.Forms.Padding(0); + this.txt2.Name = "txt2"; + this.txt2.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt2.Size = new System.Drawing.Size(22, 30); + this.txt2.TabIndex = 6; + this.txt2.Text = "8"; + this.txt2.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // txt10 + // + this.txt10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt10.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt10.Location = new System.Drawing.Point(0, 0); + this.txt10.Name = "txt10"; + this.txt10.Size = new System.Drawing.Size(44, 34); + this.txt10.TabIndex = 9; + this.txt10.Text = "Freq"; + this.txt10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // txt9 + // + this.txt9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))); + this.txt9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txt9.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txt9.ForeColor = System.Drawing.Color.CornflowerBlue; + this.txt9.Location = new System.Drawing.Point(48, 0); + this.txt9.Margin = new System.Windows.Forms.Padding(0); + this.txt9.Name = "txt9"; + this.txt9.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); + this.txt9.Size = new System.Drawing.Size(24, 34); + this.txt9.TabIndex = 10; + this.txt9.Text = "8"; + this.txt9.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // Indicator + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; + this.Controls.Add(this.txt9); + this.Controls.Add(this.txt3); + this.Controls.Add(this.txt4); + this.Controls.Add(this.txt5); + this.Controls.Add(this.txt6); + this.Controls.Add(this.txt7); + this.Controls.Add(this.txt8); + this.Controls.Add(this.txt0); + this.Controls.Add(this.txt1); + this.Controls.Add(this.txt2); + this.Controls.Add(this.txt10); + this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.Name = "Indicator"; + this.Size = new System.Drawing.Size(300, 42); + this.ResumeLayout(false); + + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/Indicator.resx b/SDRSharper.PanView/SDRSharp.PanView/Indicator.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/Indicator.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.PanView/SDRSharp.PanView/LinLog.cs b/SDRSharper.PanView/SDRSharp.PanView/LinLog.cs new file mode 100644 index 0000000..2f599f7 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/LinLog.cs @@ -0,0 +1,137 @@ +using SDRSharp.Radio; +using System; + +namespace SDRSharp.PanView +{ + public class LinLog + { + private double _exp; + + private double _frac = 0.5; + + private float _fMin; + + private float _fMax; + + private UnsafeBuffer _tmpBuf; + + private unsafe byte* _tmpPtr; + + private UnsafeBuffer _frBuf; + + private unsafe long* _frPtr; + + public double LogFactor + { + get + { + return this._frac; + } + set + { + this._fMax = -1f; + this._frac = value; + this._exp = Math.Log(2.0) / Math.Log(1.0 / this._frac); + } + } + + public double GetLog(float ldMin, float ldMax, float ldval) + { + if (ldMin < ldMax) + { + if ((double)(ldMax - ldMin) < 1E-99) + { + return 0.0; + } + if (ldval < ldMin) + { + return 0.0; + } + if (ldval > ldMax) + { + return 1.0; + } + } + else + { + if ((double)(ldMin - ldMax) < 1E-99) + { + return 0.0; + } + if (ldval < ldMax) + { + return 0.0; + } + if (ldval > ldMin) + { + return 1.0; + } + } + if (this._frac == 0.5) + { + return (double)((ldval - ldMin) / (ldMax - ldMin)); + } + double num = (double)((ldval - ldMin) / (ldMax - ldMin)); + return 0.2 * num + Math.Pow((double)((ldval - ldMin) / (ldMax - ldMin)), this._exp) / 1.2; + } + + public unsafe void MakeLog(byte[] srcPtr, int length, long fMin, long fMax) + { + if (this._tmpBuf == null || this._tmpBuf.Length != length) + { + if (this._tmpBuf != null) + { + this._tmpBuf.Dispose(); + } + this._tmpBuf = UnsafeBuffer.Create(length, 1); + this._tmpPtr = (byte*)(void*)this._tmpBuf; + } + if (this._frBuf == null || this._frBuf.Length != length) + { + if (this._frBuf != null) + { + this._frBuf.Dispose(); + } + this._frBuf = UnsafeBuffer.Create(length, 8); + this._frPtr = (long*)(void*)this._frBuf; + this._fMax = -1f; + } + if (this._fMin != (float)fMin || this._fMax != (float)fMax) + { + this._fMin = (float)fMin; + this._fMax = (float)fMax; + double num = Math.Log10((double)fMin); + double num2 = Math.Log10((double)fMax); + double num3 = (num2 - num) / (double)length; + for (int i = 0; i < length; i++) + { + this._frPtr[i] = Convert.ToInt32(Math.Pow(10.0, num + (double)i * num3)); + } + } + long num4 = 0L; + long num5 = 0L; + int num6 = 0; + int num7 = 0; + for (int j = 0; j < length; j++) + { + num4 = ((num5 <= 0) ? ((j == 0) ? (*this._frPtr) : Convert.ToInt32(Math.Sqrt((double)(this._frPtr[j] * this._frPtr[j - 1])))) : num5); + num5 = ((j == length - 1) ? this._frPtr[length - 1] : Convert.ToInt32(Math.Sqrt((double)(this._frPtr[j] * this._frPtr[j + 1])))); + num6 = ((num7 <= 0) ? Math.Min((int)(num4 * length / fMax), length - 1) : num7); + num7 = Math.Min((int)(num5 * length / fMax), length - 1); + if (num7 > num6) + { + num6++; + } + this._tmpPtr[j] = 0; + for (int k = num6; k <= num7; k++) + { + this._tmpPtr[j] = Math.Max(this._tmpPtr[j], srcPtr[k]); + } + } + for (int l = 0; l < length; l++) + { + srcPtr[l] = this._tmpPtr[l]; + } + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/ManualBandwidthChange.cs b/SDRSharper.PanView/SDRSharp.PanView/ManualBandwidthChange.cs new file mode 100644 index 0000000..f6e0ae4 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/ManualBandwidthChange.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.PanView +{ + public delegate void ManualBandwidthChange(object sender, BandwidthEventArgs e); +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/ManualFrequencyChange.cs b/SDRSharper.PanView/SDRSharp.PanView/ManualFrequencyChange.cs new file mode 100644 index 0000000..ac2d3ba --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/ManualFrequencyChange.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.PanView +{ + public delegate void ManualFrequencyChange(object sender, FrequencyEventArgs e); +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/ManualNotchChange.cs b/SDRSharper.PanView/SDRSharp.PanView/ManualNotchChange.cs new file mode 100644 index 0000000..26d2fca --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/ManualNotchChange.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.PanView +{ + public delegate void ManualNotchChange(object sender, NotchEventArgs e); +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/ManualValueChange.cs b/SDRSharper.PanView/SDRSharp.PanView/ManualValueChange.cs new file mode 100644 index 0000000..340047a --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/ManualValueChange.cs @@ -0,0 +1,6 @@ +using System; + +namespace SDRSharp.PanView +{ + public delegate void ManualValueChange(object sender, EventArgs e); +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/Meter.cs b/SDRSharper.PanView/SDRSharp.PanView/Meter.cs new file mode 100644 index 0000000..e13d765 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/Meter.cs @@ -0,0 +1,189 @@ +using SDRSharp.Radio; +using System; +using System.Drawing; +using System.Drawing.Drawing2D; + +namespace SDRSharp.PanView +{ + public class Meter + { + private const double D2R = 0.017453292519943295; + + private Pen _redPen = new Pen(Color.FromArgb(255, 120, 120)); + + private Pen _whitePen = new Pen(Color.FromArgb(220, 220, 220)); + + private Pen _meterPen = new Pen(Color.Yellow, 2f); + + private Brush _labelBrush = new SolidBrush(Color.FromArgb(220, 220, 220)); + + private Brush _valueBrush = new SolidBrush(Color.White); + + private Brush _overflowBrush = new SolidBrush(Color.FromArgb(255, 120, 120)); + + private Font _font = new Font("Aerial", 8f); + + private int _dA = 100; + + private int _mindB = -127; + + private int _maxdB = -3; + + private float _x0; + + private float _y0; + + private float _rad; + + private int _meterTmo; + + private int _labelTmo; + + private float _angle = -180f; + + private int _sample; + + private DetectorType _detectorType; + + public DetectorType DetectorType + { + get + { + return this._detectorType; + } + set + { + this._detectorType = value; + } + } + + public void Position(int posX, int posY, int sizeX, int sizeY) + { + this._rad = (float)(((sizeX > sizeY) ? sizeX : sizeY) / 2); + this._x0 = (float)posX + this._rad; + this._y0 = (float)posY + this._rad; + } + + public void DrawBackground(Graphics graphics) + { + int num = -90 - this._dA / 2; + int num2 = -90 + this._dA / 2; + float num3 = (-73f - (float)this._mindB) / (float)(this._maxdB - this._mindB); + num3 = (float)num + num3 * (float)this._dA; + bool flag = false; + bool flag2 = false; + string text = ""; + Font font = new Font("Aerial", 6f); + float height = graphics.MeasureString("+60", font).Height; + SmoothingMode smoothingMode = graphics.SmoothingMode; + InterpolationMode interpolationMode = graphics.InterpolationMode; + graphics.SmoothingMode = SmoothingMode.AntiAlias; + graphics.InterpolationMode = InterpolationMode.HighQualityBicubic; + this._whitePen.Width = 4f; + graphics.DrawArc(this._whitePen, this._x0 - this._rad, this._y0 - this._rad, this._rad * 2f, this._rad * 2f, (float)num, num3 - (float)num); + this._redPen.Width = 4f; + graphics.DrawArc(this._redPen, this._x0 - this._rad, this._y0 - this._rad, this._rad * 2f, this._rad * 2f, num3, (float)num2 - num3); + for (int i = this._mindB; i <= this._maxdB; i++) + { + if (i <= -73) + { + if ((i + 121) % 6 == 0) + { + flag = true; + } + if ((i + 121) % 12 == 0) + { + flag2 = true; + } + if (flag2) + { + text = $"{(i + 127) / 6:0}"; + } + } + else + { + if ((i + 73) % 10 == 0) + { + flag = true; + } + if ((i + 73) % 20 == 0) + { + flag2 = true; + } + if (flag2) + { + text = $"+{i + 73:00}"; + } + } + if (flag) + { + flag = false; + num3 = (float)(i - this._mindB) / (float)(this._maxdB - this._mindB); + num3 = (float)num + num3 * (float)this._dA; + float num4 = (float)((double)(this._rad * 1.02f) * Math.Cos((double)num3 * 0.017453292519943295)); + float num5 = (float)((double)(this._rad * 1.02f) * Math.Sin((double)num3 * 0.017453292519943295)); + float num6 = flag2 ? 1.15f : 1.1f; + this._whitePen.Width = 1f; + this._redPen.Width = 1f; + graphics.DrawLine((i <= -73) ? this._whitePen : this._redPen, this._x0 + num4, this._y0 + num5, this._x0 + num4 * num6, this._y0 + num5 * num6); + if (flag2) + { + flag2 = false; + num4 = this._x0 + num4 * 1.28f; + num5 = this._y0 + num5 * 1.28f; + float num7 = graphics.MeasureString(text, font).Width + 2f; + graphics.DrawString(text, this._font, this._labelBrush, num4 - num7 / 2f, num5 - height / 2f); + } + } + } + graphics.SmoothingMode = smoothingMode; + graphics.InterpolationMode = interpolationMode; + } + + public void Draw(Graphics graphics, float dB, int showDbm, bool overFlow) + { + float num = (dB - (float)this._mindB) / (float)(this._maxdB - this._mindB); + num = (float)(-90 - this._dA / 2) + num * (float)this._dA; + int num2 = 2; + if (this._detectorType != DetectorType.AM && this._detectorType != DetectorType.SAM && this._detectorType != DetectorType.WFM && this._detectorType != 0) + { + if (num > this._angle) + { + this._angle = num; + this._meterTmo = 20; + this._sample = (int)dB; + } + else if (this._meterTmo > 0) + { + this._meterTmo--; + } + else if (this._angle > -180f) + { + this._angle -= 1f; + } + } + else + { + this._angle = ((float)(num2 - 1) * this._angle + num) / (float)num2; + if (--this._labelTmo <= 0) + { + this._labelTmo = 10; + this._sample = (int)dB; + } + } + float num3 = (float)((double)this._rad * 1.1 * Math.Cos((double)this._angle * 0.017453292519943295)); + float num4 = (float)((double)this._rad * 1.1 * Math.Sin((double)this._angle * 0.017453292519943295)); + SmoothingMode smoothingMode = graphics.SmoothingMode; + InterpolationMode interpolationMode = graphics.InterpolationMode; + graphics.SmoothingMode = SmoothingMode.AntiAlias; + graphics.InterpolationMode = InterpolationMode.HighQualityBicubic; + graphics.DrawLine(this._meterPen, this._x0 + num3, this._y0 + num4, this._x0 + num3 / 3f, this._y0 + num4 / 3f); + graphics.SmoothingMode = smoothingMode; + graphics.InterpolationMode = interpolationMode; + string str = overFlow ? "> " : ""; + str = ((showDbm < 2) ? (str + Utils.Signal(this._sample, showDbm, false) + "dB") : (str + Utils.Signal(this._sample, showDbm, true))); + float width = graphics.MeasureString(str, this._font).Width; + graphics.DrawString(str, this._font, overFlow ? this._overflowBrush : this._valueBrush, this._x0 + this._rad - width, this._y0 - 0.5f * this._rad); + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/Mouses.cs b/SDRSharper.PanView/SDRSharp.PanView/Mouses.cs new file mode 100644 index 0000000..0513f5a --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/Mouses.cs @@ -0,0 +1,25 @@ +using System.Runtime.InteropServices; +using System.Windows.Forms; + +namespace SDRSharp.PanView +{ + [StructLayout(LayoutKind.Sequential, Size = 1)] + public struct Mouses + { + public static Cursor Passband = Cursors.Hand; + + public static Cursor Spectrum = Cursors.Cross; + + public static Cursor ChangeBW = Cursors.VSplit; + + public static Cursor RangeUp = Cursors.PanEast; + + public static Cursor RangeDown = Cursors.PanWest; + + public static Cursor Scale = Cursors.HSplit; + + public static Cursor Static = Cursors.Cross; + + public static Cursor StationList = Cursors.Default; + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/Notch.cs b/SDRSharper.PanView/SDRSharp.PanView/Notch.cs new file mode 100644 index 0000000..25154bb --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/Notch.cs @@ -0,0 +1,75 @@ +namespace SDRSharp.PanView +{ + public class Notch + { + private int _offset; + + private int _width; + + private bool _active; + + private float _xPos; + + private float _xHalf; + + public int Offset + { + get + { + return this._offset; + } + set + { + this._offset = value; + } + } + + public int Width + { + get + { + return this._width; + } + set + { + this._width = value; + } + } + + public bool Active + { + get + { + return this._active; + } + set + { + this._active = value; + } + } + + public float Xpos + { + get + { + return this._xPos; + } + set + { + this._xPos = value; + } + } + + public float Xhalf + { + get + { + return this._xHalf; + } + set + { + this._xHalf = value; + } + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/NotchEventArgs.cs b/SDRSharper.PanView/SDRSharp.PanView/NotchEventArgs.cs new file mode 100644 index 0000000..0f171ec --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/NotchEventArgs.cs @@ -0,0 +1,45 @@ +using System; + +namespace SDRSharp.PanView +{ + public class NotchEventArgs : EventArgs + { + public int Notch + { + get; + set; + } + + public int Offset + { + get; + set; + } + + public int Width + { + get; + set; + } + + public bool Active + { + get; + set; + } + + public bool Cancel + { + get; + set; + } + + public NotchEventArgs(int notch, int offset, int width, bool active) + { + this.Notch = notch; + this.Offset = offset; + this.Width = width; + this.Active = active; + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/PanViewUtils.cs b/SDRSharper.PanView/SDRSharp.PanView/PanViewUtils.cs new file mode 100644 index 0000000..e5c6976 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/PanViewUtils.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Reflection; +using System.Text; + +namespace SDRSharp.PanView +{ + public static class PanViewUtils + { + public static Assembly UnmanagedDLLAssemblyVer = Assembly.GetExecutingAssembly(); + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/PeakDetector.cs b/SDRSharper.PanView/SDRSharp.PanView/PeakDetector.cs new file mode 100644 index 0000000..9516cdd --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/PeakDetector.cs @@ -0,0 +1,43 @@ +namespace SDRSharp.PanView +{ + public sealed class PeakDetector + { + private const byte Threshold = 15; + + public static void GetPeaks(byte[] buffer, bool[] peaks, int windowSize) + { + for (int i = 0; i < buffer.Length; i++) + { + bool flag = true; + byte b = byte.MaxValue; + byte b2 = 0; + for (int j = 0; j < windowSize; j++) + { + int num = i + j - windowSize / 2; + if (num != i && num >= 0 && num < buffer.Length) + { + if (buffer[num] > buffer[i]) + { + flag = false; + break; + } + if (buffer[num] == buffer[i] && i < num) + { + flag = false; + break; + } + if (buffer[num] > b2) + { + b2 = buffer[num]; + } + if (buffer[num] < b) + { + b = buffer[num]; + } + } + } + peaks[i] = (flag && b2 - b >= 15); + } + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/PositionEventArgs.cs b/SDRSharper.PanView/SDRSharp.PanView/PositionEventArgs.cs new file mode 100644 index 0000000..f67b849 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/PositionEventArgs.cs @@ -0,0 +1,20 @@ +using System; + +namespace SDRSharp.PanView +{ + public class PositionEventArgs : EventArgs + { + public float Xpos; + + public float Ypos; + + public bool Trig; + + public PositionEventArgs(float x, float y, bool trig) + { + this.Xpos = x; + this.Ypos = y; + this.Trig = trig; + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/Scope.cs b/SDRSharper.PanView/SDRSharp.PanView/Scope.cs new file mode 100644 index 0000000..c151c0f --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/Scope.cs @@ -0,0 +1,1317 @@ +using SDRSharp.Radio; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Drawing.Imaging; +using System.Windows.Forms; + +namespace SDRSharp.PanView +{ + public class Scope : UserControl + { + public delegate void delPositionChanged(object sender, PositionEventArgs e); + + private const int GradientAlpha = 180; + + private const int AxisMargin = 5; + + private const int LabelMargin = 16; + + private const int TicksMargin = 5; + + private const int BarSize = 10; + + private const float TimeConst = 0.001f; + + private const float Amplification = 100f; + + private int _carrierAvg = 2000; + + private float _audioRel = 5E-07f; + + private bool _showLines; + + private int _audioAvg = 25; + + private int _peakDelay = 20; + + private float _peakRel = 0.01f; + + private int _scopeHeight; + + private int _barsHeight; + + private bool _showBars; + + private int _yNeg; + + private int _yPos; + + private Bitmap _bkgBuffer; + + private Bitmap _buffer; + + private Graphics _graphics; + + private Point[] _points; + + private Point[] _upper; + + private Point[] _lower; + + private int _uppIdx; + + private int _lowIdx; + + private bool _performNeeded; + + private bool _drawBackgroundNeeded; + + private int _oldX; + + private int _oldY; + + private float _oldHshift; + + private float _oldVshift; + + private DcRemover _dcRemover1 = new DcRemover(0.001f); + + private DcRemover _dcRemover2 = new DcRemover(0.001f); + + private float[] _vBuf; + + private float[] _hBuf; + + private DemodType _vChannel; + + private DemodType _hChannel; + + private float _hShift; + + private float _vShift; + + private float _vDiv; + + private float _hDiv; + + private float _tDiv; + + private bool _hInvert; + + private bool _vInvert; + + private bool _hBlockDC; + + private bool _vBlockDC; + + private bool _xyMode; + + private float _trigLevel; + + private bool _trigChange; + + private float _average; + + private float _neg; + + private float _pos; + + private float[] _avgBuf; + + private float[] _negBuf; + + private float[] _posBuf; + + private int _posTmo; + + private int _negTmo; + + private float _posPeak; + + private float _negPeak; + + private float _posAver; + + private float _negAver; + + private int _timeOut; + + private string _statusText; + + private static Pen _gridPen = new Pen(Color.FromArgb(100, 100, 100)); + + private static Pen _axisPen = new Pen(Color.FromArgb(100, 100, 250)); + + private static Pen _carrierPen = new Pen(Color.Red); + + private static Pen _audioPen = new Pen(Color.Yellow); + + private static Brush _audioBrush = new SolidBrush(Color.FromArgb(225, Color.LightGreen)); + + private static Brush _clippingBrush = new SolidBrush(Color.FromArgb(205, Color.Red)); + + private static Brush _overmodBrush = new SolidBrush(Color.FromArgb(190, Color.Yellow)); + + private static Pen _PeakPen = new Pen(Color.Red, 3f); + + private static Pen _AverPen = new Pen(Color.Yellow, 3f); + + private static Pen _tracePen = new Pen(Color.White); + + private static Font _font = new Font("Arial", 7f); + + private static Font _statusFont = new Font("Lucida Console", 9f); + + private static ColorBlend _gradientColorBlend; + + private static int[] _gradientPixels = new int[255]; + + private Rectangle _clipRectangle; + + private LinearGradientBrush _gradientBrush; + + private static int _spectrumFill; + + private static Color _traceColor; + + private static Color _backgroundColor; + + private PathGradientBrush _backgroundBrush; + + public int CarrierAvg + { + get + { + return this.log((float)this._carrierAvg / 2000f); + } + set + { + this._carrierAvg = (int)(this.pow(value) * 2000f); + } + } + + public int AudioRel + { + get + { + return this.log(this._audioRel / 5E-07f); + } + set + { + this._audioRel = this.pow(value) * 5E-07f; + } + } + + public int AudioAvg + { + get + { + return this.log((float)this._audioAvg / 25f); + } + set + { + this._audioAvg = (int)(this.pow(value) * 25f); + } + } + + public int PeakDelay + { + get + { + return this.log((float)this._peakDelay / 20f); + } + set + { + this._peakDelay = (int)(this.pow(value) * 20f); + } + } + + public int PeakRel + { + get + { + return this.log(this._peakRel / 0.01f); + } + set + { + this._peakRel = this.pow(value) * 0.01f; + } + } + + public float Vdiv + { + get + { + return this._vDiv; + } + set + { + this._vDiv = value; + } + } + + public float Hdiv + { + get + { + return this._hDiv; + } + set + { + this._hDiv = value; + } + } + + public float Tdiv + { + get + { + return this._tDiv; + } + set + { + this._tDiv = value; + } + } + + public float Vshift + { + get + { + return this._vShift; + } + set + { + this._vShift = value; + this._drawBackgroundNeeded = true; + } + } + + public float Hshift + { + get + { + return this._hShift; + } + set + { + this._hShift = value; + } + } + + public bool Vinvert + { + get + { + return this._vInvert; + } + set + { + this._vInvert = value; + } + } + + public bool Hinvert + { + get + { + return this._hInvert; + } + set + { + this._hInvert = value; + } + } + + public bool HblockDC + { + get + { + return this._hBlockDC; + } + set + { + this._hBlockDC = value; + } + } + + public bool VblockDC + { + get + { + return this._vBlockDC; + } + set + { + this._vBlockDC = value; + } + } + + public bool XYmode + { + get + { + return this._xyMode; + } + set + { + this._xyMode = value; + this._drawBackgroundNeeded = true; + } + } + + public DemodType Vchannel + { + get + { + return this._vChannel; + } + set + { + this._vChannel = value; + this._drawBackgroundNeeded = true; + } + } + + public DemodType Hchannel + { + get + { + return this._hChannel; + } + set + { + this._hChannel = value; + } + } + + public float TrigLevel + { + get + { + return this._trigLevel; + } + set + { + this._trigLevel = value; + this._drawBackgroundNeeded = true; + } + } + + public bool ShowLines + { + get + { + return this._showLines; + } + set + { + this._showLines = value; + } + } + + public bool ShowBars + { + get + { + return this._showBars; + } + set + { + this._showBars = value; + } + } + + public int SpectrumFill + { + get + { + return Scope._spectrumFill; + } + set + { + Scope._spectrumFill = value; + } + } + + public Color BackgoundColor + { + get + { + return Scope._backgroundColor; + } + set + { + this.newBackgroundBrush(value); + } + } + + public string StatusText + { + get + { + return this._statusText; + } + set + { + this._statusText = value; + this._performNeeded = true; + } + } + + [Browsable(false)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + public ColorBlend GradientColorBlend + { + get + { + return Scope._gradientColorBlend; + } + set + { + this.newGradientBrush(value); + } + } + + public Color TraceColor + { + get + { + return Scope._traceColor; + } + set + { + if (!(Scope._traceColor == value)) + { + Scope._traceColor = value; + Scope._tracePen.Dispose(); + Scope._tracePen = new Pen(Scope._traceColor); + } + } + } + + public event delPositionChanged XYPositionChanged; + + public Scope() + { + this._bkgBuffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._buffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._graphics = Graphics.FromImage(this._buffer); + base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true); + base.SetStyle(ControlStyles.DoubleBuffer, true); + base.SetStyle(ControlStyles.UserPaint, true); + base.SetStyle(ControlStyles.AllPaintingInWmPaint, true); + base.UpdateStyles(); + Scope._audioPen.DashStyle = DashStyle.Dot; + Scope._carrierPen.DashStyle = DashStyle.Dot; + Scope._audioPen.DashStyle = DashStyle.Dot; + Scope._gridPen.DashStyle = DashStyle.Dot; + Scope._axisPen.DashStyle = DashStyle.Dash; + } + + ~Scope() + { + this._buffer.Dispose(); + this._graphics.Dispose(); + this._gradientBrush.Dispose(); + this._backgroundBrush.Dispose(); + } + + public void Reset() + { + this._neg = 0f; + this._pos = 0f; + } + + private void fillGradientVector(ColorBlend blend, int size) + { + if (blend != null) + { + int num = 4; + Bitmap bitmap = new Bitmap(num, size, PixelFormat.Format32bppArgb); + Graphics graphics = Graphics.FromImage(bitmap); + LinearGradientBrush linearGradientBrush = new LinearGradientBrush(new Point(0, 0), new Point(0, size), Color.Black, Color.White); + linearGradientBrush.InterpolationColors = blend; + graphics.FillRectangle(linearGradientBrush, new Rectangle(0, 0, num, size)); + int num2 = 255; + for (int i = 0; i < size; i++) + { + if (i < size / 20) + { + Scope._gradientPixels[i] = Color.White.ToArgb(); + } + else + { + num2 = 255 - i * 60 / size; + Color color = Color.FromArgb(num2, bitmap.GetPixel(num / 2, i)); + Scope._gradientPixels[i] = color.ToArgb(); + } + } + graphics.Dispose(); + bitmap.Dispose(); + } + } + + public void Perform(bool hideTrace = false) + { + if (this._drawBackgroundNeeded) + { + this.DrawBackground(); + } + if (this._performNeeded || this._drawBackgroundNeeded) + { + this.DrawForeground(hideTrace); + this.DrawStatusText(); + base.Invalidate(); + } + this._performNeeded = false; + this._drawBackgroundNeeded = false; + } + + public unsafe void Render(float* xBuf, float* yBuf, int length, int latency, int timeOut) + { + this._timeOut = Math.Min(this._timeOut, timeOut); + if (--this._timeOut <= 0 && yBuf != null) + { + this._timeOut = timeOut; + float num = (float)latency / 1000f; + num = this._tDiv * 10f / num; + int num2 = Math.Min(length, (int)(num * (float)length)); + int num3 = Math.Min(length, base.ClientRectangle.Width - 10); + float factor = (float)num2 / (float)num3; + int num4 = 0; + float[] vBuf = this._vBuf; + fixed (float* ptr = vBuf) + { + bool flag = (double)this._trigLevel < 0.45 && (double)this._trigLevel > -0.45; + if (flag) + { + if (this._vBlockDC) + { + this._dcRemover1.Process(yBuf, length); + } + num4 = this.TriggerPoint(yBuf, num2); + } + Fourier.SubCopy(yBuf + num4, ptr, length - num4, num3, factor); + if (!flag && this._vBlockDC) + { + this._dcRemover1.Process(ptr, num3); + } + } + if (this._xyMode) + { + float[] hBuf = this._hBuf; + fixed (float* ptr2 = hBuf) + { + Fourier.SubCopy(xBuf + num4, ptr2, length - num4, num3, factor); + if (this._hBlockDC) + { + this._dcRemover2.Process(ptr2, num3); + } + } + } + this._performNeeded = true; + } + } + + private unsafe int TriggerPoint(float* buf, int len) + { + float num = (this._trigLevel - this._vShift) * 0.8f * this._vDiv / 100f; + for (int i = 1; i < len - 1; i++) + { + if (buf[i] >= num && buf[i - 1] < num) + { + return i; + } + } + return 0; + } + + private void DrawBackground() + { + if (Scope._gradientColorBlend != null) + { + float num10 = this._average * 100f / (this._vDiv * 0.8f); + using (Graphics graphics = Graphics.FromImage(this._bkgBuffer)) + { + Scope.ConfigureGraphics(graphics); + graphics.Clear(Color.FromArgb(40, 40, 40)); + graphics.FillRectangle(this._backgroundBrush, 0, 0, base.ClientRectangle.Width, this._scopeHeight); + int num = this._scopeHeight - 10; + float num2 = (float)num / 8f; + float num3 = (float)(base.ClientRectangle.Width - 10) / 10f; + float num4 = (!this._vBlockDC) ? (this._vShift * (float)num) : 0f; + for (int i = -8; i < 17; i++) + { + float num5 = 5f + (float)i * num2 - num4; + if (num5 < (float)this._scopeHeight) + { + graphics.DrawLine(Scope._gridPen, 5f, num5, (float)(base.ClientRectangle.Width - 5), num5); + } + } + for (int j = 0; j < 11; j++) + { + float num6 = 5f + (float)j * num3; + graphics.DrawLine(Scope._gridPen, num6, 5f, num6, (float)(this._scopeHeight - 5)); + } + graphics.DrawLine(Scope._axisPen, base.ClientRectangle.Width / 2, 5, base.ClientRectangle.Width / 2, this._scopeHeight - 5); + float num7 = (float)(this._scopeHeight / 2) - num4; + if (num7 < (float)this._scopeHeight) + { + graphics.DrawLine(Scope._axisPen, 5f, num7, (float)(base.ClientRectangle.Width - 5), num7); + } + num7 = (float)(this._scopeHeight / 2) - this._trigLevel * (float)num; + if (!this.XYmode) + { + graphics.DrawLine(Pens.Yellow, 0f, num7 + 2f, 2f, num7); + graphics.DrawLine(Pens.Yellow, 0f, num7 - 2f, 2f, num7); + } + if (this._showBars) + { + using (Pen pen = new Pen(this.BackColor, 3f)) + { + graphics.DrawLine(pen, 0, this._scopeHeight, base.ClientRectangle.Width, this._scopeHeight); + } + int num8 = base.ClientRectangle.Width - 10; + num = this._scopeHeight - 10; + num3 = (float)num8 / 15f; + this._yNeg = base.ClientRectangle.Height - 16; + this._yPos = this._yNeg - 16 - 5 - 10; + graphics.DrawLine(Scope._axisPen, 5f, (float)this._yPos, 5f + num3 * 15f, (float)this._yPos); + graphics.DrawLine(Scope._axisPen, 5f, (float)this._yNeg, 5f + num3 * 10f, (float)this._yNeg); + for (int k = 0; k < 15; k++) + { + int num9 = (int)(5f + num3 * (float)k); + graphics.DrawLine(Scope._axisPen, num9, this._yPos, num9, this._yPos - 3); + if (k == 0) + { + graphics.DrawString("0", Scope._font, Brushes.LightGray, (float)num9, (float)(this._yPos + 1)); + } + else if (k % 2 == 0) + { + graphics.DrawString((k * 10).ToString(), Scope._font, Brushes.LightGray, (float)((k < 10) ? (num9 - 6) : (num9 - 9)), (float)(this._yPos + 1)); + } + if (k < 11) + { + graphics.DrawLine(Scope._axisPen, num9, this._yNeg, num9, this._yNeg - 3); + if (k == 0) + { + graphics.DrawString("0", Scope._font, Brushes.LightGray, (float)num9, (float)(this._yNeg + 1)); + } + else if (k % 2 == 0) + { + graphics.DrawString((k * 10).ToString(), Scope._font, Brushes.LightGray, (float)((k < 10) ? (num9 - 6) : (num9 - 9)), (float)(this._yNeg + 1)); + } + } + } + } + } + } + } + + private void DrawTrace() + { + int num; + int num2; + float num4; + bool flag; + int num13; + int num14; + Point[] array; + Point[] array2; + if (this._vBuf != null && this._vBuf.Length != 0) + { + if (this._hDiv == 0f) + { + this._hDiv = 1f; + } + if (this._vDiv == 0f) + { + this._vDiv = 1f; + } + num = base.ClientRectangle.Width - 10; + num2 = this._scopeHeight - 10; + float num3 = this.XYmode ? ((float)num / this._hDiv * 100f) : ((float)(num / this._vBuf.Length)); + num4 = (float)num2 / this._vDiv * 100f * 1.25f; + int num5 = 0; + int num6 = 0; + float num7 = 0f; + float num8 = 0f; + for (int i = 0; i < this._hBuf.Length; i++) + { + if (!this._xyMode) + { + num8 = (float)(-num / 2) + (float)i * num3; + num7 = this._vBuf[i]; + } + else if (this.Vchannel == DemodType.AM && this.Hchannel == DemodType.PM) + { + float num9 = this._vBuf[i]; + float num10 = this._hBuf[i] * 500000f; + num8 = (float)((double)num9 * Math.Sin((double)num10)); + num7 = (float)((double)num9 * Math.Cos((double)num10)); + } + else + { + num8 = this._hBuf[i]; + num7 = this._vBuf[i]; + } + if (this._hInvert) + { + num8 = 0f - num8; + } + if (this._vInvert) + { + num7 = 0f - num7; + } + num5 = (int)((float)(5 + num / 2) + num8 * num3); + num6 = (int)((float)(this._scopeHeight - 5 - num2 / 2) - num7 * num4); + this._points[i + 1].X = num5 + (int)((float)num * this.Hshift); + this._points[i + 1].Y = num6 - (int)((float)num2 * this.Vshift); + } + this._points[0] = this._points[1]; + this._points[this._points.Length - 1] = this._points[this._points.Length - 2]; + this._graphics.SetClip(this._clipRectangle); + flag = false; + flag = (this._vChannel == DemodType.Envelope && !this._xyMode); + if (flag) + { + int num11 = 0; + int num12 = this._scopeHeight - (int)((float)(2 * num2) * this.Vshift); + num13 = this._scopeHeight / 2 - (int)((float)num2 * this.Vshift); + this._lowIdx = (this._uppIdx = 0); + this.addUpper(0, num13); + this.addLower(0, num13); + num14 = 10; + for (int j = 0; j < this._points.Length - 1; j++) + { + if (this._points[j + 1].Y > this._points[j].Y) + { + if (num11 <= 0) + { + num11 = 1; + if (this._points[j].Y <= num13) + { + this.addUpper(this._points[j].X, this._points[j].Y); + this.addLower(this._points[j].X, num12 - this._points[j].Y); + if (Math.Abs(this._points[j].Y - num13) > num14) + { + num14 = Math.Abs(this._points[j].Y - num13); + } + } + } + } + else if (this._points[j + 1].Y < this._points[j].Y && num11 >= 0) + { + num11 = -1; + if (this._points[j].Y >= num13) + { + this.addLower(this._points[j].X, this._points[j].Y); + this.addUpper(this._points[j].X, num12 - this._points[j].Y); + if (Math.Abs(this._points[j].Y - num13) > num14) + { + num14 = Math.Abs(this._points[j].Y - num13); + } + } + } + } + num14 = (int)((float)num14 * 1.1f); + if (this._uppIdx > 1 && this._lowIdx > 1) + { + this._upper[0].X = this._upper[1].X; + this._upper[0].Y = num13; + this._lower[0].X = this._lower[1].X; + this._lower[0].Y = num13; + this.addUpper(this._upper[this._uppIdx - 1].X, num13); + this.addLower(this._lower[this._lowIdx - 1].X, num13); + array = new Point[this._uppIdx]; + array2 = new Point[this._lowIdx]; + Array.Copy(this._upper, array, this._uppIdx); + Array.Copy(this._lower, array2, this._lowIdx); + if (Scope._spectrumFill == 1) + { + this._graphics.FillPolygon(this._gradientBrush, array); + this._graphics.FillPolygon(this._gradientBrush, array2); + goto IL_0700; + } + if (Scope._gradientColorBlend != null) + { + num14 = Math.Min(num14 * 2, base.ClientRectangle.Height); + for (int k = 2; k < this._uppIdx - 1; k++) + { + int x = this._upper[k - 1].X; + int y = this._upper[k - 1].Y; + int x2 = this._upper[k].X; + int y2 = this._upper[k].Y; + for (int l = x; l < x2; l++) + { + int num15 = (int)((float)y + (float)(l - x) / (float)(x2 - x) * (float)(y2 - y)); + int num16 = 2 * Math.Abs(num15 - num13); + int val = (int)((float)num16 / (float)num14 * 255f); + Color color = Color.FromArgb(Scope._gradientPixels[Math.Min(val, 255)]); + if (num16 > num14 / 40) + { + this._graphics.DrawLine(new Pen(color), l, num13 + num16 / 2, l, num13 - num16 / 2); + } + } + } + goto IL_0700; + } + return; + } + } + goto IL_086e; + } + return; + IL_0700: + array[0].Y = array[1].Y; + array[this._uppIdx - 1] = array[this._uppIdx - 2]; + array2[0].Y = array2[1].Y; + array2[this._lowIdx - 1] = array2[this._lowIdx - 2]; + this._graphics.DrawLines(new Pen(this.TraceColor), array); + this._graphics.DrawLines(new Pen(this.TraceColor), array2); + for (int m = 2; m < this._uppIdx - 1; m++) + { + if (num13 - this._upper[m].Y < num14 / 40) + { + this._graphics.FillEllipse(Brushes.Red, this._upper[m].X - 3, num13 - 3, 6, 6); + } + } + for (int n = 2; n < this._lowIdx - 2; n++) + { + if (this._lower[n].Y - num13 < num14 / 40) + { + this._graphics.FillEllipse(Brushes.Red, this._lower[n].X - 3, num13 - 3, 6, 6); + } + } + goto IL_086e; + IL_086e: + if (!flag) + { + this._graphics.DrawLines(Scope._tracePen, this._points); + } + if (this._vChannel != DemodType.AM && this._vChannel != DemodType.Envelope) + { + return; + } + this.getAudioLevels(); + if (this._showLines) + { + int num5 = (int)(5f + (float)num * this.Hshift); + int num6 = (int)((float)(this._scopeHeight - 5 - num2 / 2) + (this._vInvert ? this._average : (0f - this._average)) * num4 - (float)num2 * this._vShift); + if (this._vChannel != DemodType.Envelope) + { + this._graphics.DrawLine(Scope._carrierPen, num5, num6, num5 + num, num6); + } + num6 = (int)((float)(this._scopeHeight - 5 - num2 / 2) + (this._vInvert ? this._pos : (0f - this._pos)) * num4 - (float)num2 * this._vShift); + this._graphics.DrawLine(Scope._audioPen, num5, num6, num5 + num, num6); + num6 = (int)((float)(this._scopeHeight - 5 - num2 / 2) + (this._vInvert ? this._neg : (0f - this._neg)) * num4 - (float)num2 * this._vShift); + this._graphics.DrawLine(Scope._audioPen, num5, num6, num5 + num, num6); + if (this._showBars && !this.VblockDC) + { + this.drawBars(); + } + } + } + + private void addLower(int x, int y) + { + this._lower[this._lowIdx].X = x; + this._lower[this._lowIdx++].Y = y; + } + + private void addUpper(int x, int y) + { + this._upper[this._uppIdx].X = x; + this._upper[this._uppIdx++].Y = y; + } + + private void getAudioLevels() + { + if (this._vChannel == DemodType.AM) + { + int num = this._carrierAvg - 1; + for (int i = 0; i < this._vBuf.Length; i++) + { + this._average = ((float)num * this._average + this._vBuf[i]) / (float)this._carrierAvg; + this._avgBuf[i] = this._average; + if (this._vBuf[i] > this._pos) + { + if (this.VblockDC || (double)this._vBuf[i] < (double)this._average + 1.5 * (double)(this._average - this._neg)) + { + this._pos = this._vBuf[i]; + } + } + else if (!this.VblockDC && this._pos > 4f * this._average) + { + this._pos = 3.9f * this._average; + } + else if (this._pos > this._average) + { + this._pos -= this._audioRel * this._vDiv; + } + if (this._vBuf[i] < this._neg) + { + if (this.VblockDC || this._vBuf[i] > 0f) + { + this._neg = this._vBuf[i]; + } + } + else if (this._neg < this._average) + { + this._neg += this._audioRel * this._vDiv; + } + } + } + else if (this._vChannel == DemodType.Envelope) + { + float num2 = this._audioRel * 1000f / (float)this._vBuf.Length; + for (int j = 2; j < this._vBuf.Length - 2; j++) + { + if (this._vBuf[j] > this._pos) + { + this._pos = this._vBuf[j]; + } + else + { + this._pos -= num2 / 30f * this._vDiv; + } + if (this._vBuf[j] < this._neg) + { + this._neg = this._vBuf[j]; + } + else + { + this._neg += num2 / 30f * this._vDiv; + } + } + } + } + + private void drawBars() + { + if (this._vChannel == DemodType.AM && this._average != 0f) + { + int num = this._audioAvg - 1; + this._graphics.SetClip(new Rectangle(0, this._scopeHeight, base.ClientRectangle.Width, this._barsHeight)); + float num2 = (float)(base.ClientRectangle.Width - 10) / 15f; + int num3 = 0; + int num4 = this._yPos - 5 - 10; + int num5 = this._yNeg - 5 - 10; + float num6 = Math.Min(1.45f, (this._pos - this._average) / this._average); + if ((double)num6 < 1.0) + { + this._graphics.FillRectangle(Scope._audioBrush, 5f, (float)num4, num6 * num2 * 10f, 10f); + } + else + { + this._graphics.FillRectangle(Scope._overmodBrush, 5f, (float)num4, num6 * num2 * 10f, 10f); + } + this._posAver = Math.Max(0f, ((float)num * this._posAver + num6) / (float)this._audioAvg); + if (num6 > this._posPeak) + { + this._posPeak = num6; + this._posTmo = this._peakDelay; + } + else if (this._posTmo > 0) + { + this._posTmo--; + } + else if (this._posPeak > this._posAver) + { + this._posPeak -= this._peakRel; + } + num3 = (int)(5f + this._posAver * num2 * 10f); + this._graphics.DrawLine(Scope._AverPen, num3, num4, num3, num4 + 10); + num3 = (int)(5f + this._posPeak * num2 * 10f); + this._graphics.DrawLine(Scope._PeakPen, num3, num4, num3, num4 + 10); + float num7 = Math.Min(1.01f, (this._average - this._neg) / this._average); + if ((double)num7 < 0.97) + { + this._graphics.FillRectangle(Scope._audioBrush, 5f, (float)num5, num7 * num2 * 10f, 10f); + } + else + { + this._graphics.FillRectangle(Scope._clippingBrush, 5f, (float)num5, num7 * num2 * 10f, 10f); + } + this._negAver = Math.Max(0f, ((float)num * this._negAver + num7) / (float)this._audioAvg); + if (num7 > this._negPeak) + { + this._negPeak = num7; + this._negTmo = this._peakDelay; + } + else if (this._negTmo > 0) + { + this._negTmo--; + } + else if (this._negPeak > this._negAver) + { + this._negPeak -= this._peakRel; + } + num3 = (int)(5f + this._negAver * num2 * 10f); + this._graphics.DrawLine(Scope._AverPen, num3, num5, num3, num5 + 10); + num3 = (int)(5f + this._negPeak * num2 * 10f); + this._graphics.DrawLine(Scope._PeakPen, num3, num5, num3, num5 + 10); + } + } + + private void DrawStatusText() + { + if (!string.IsNullOrEmpty(this._statusText)) + { + this._graphics.DrawString(this._statusText, Scope._statusFont, Brushes.Silver, 7f, 7f); + } + } + + private static void ConfigureGraphics(Graphics graphics) + { + graphics.CompositingMode = CompositingMode.SourceOver; + graphics.CompositingQuality = CompositingQuality.HighSpeed; + graphics.SmoothingMode = SmoothingMode.None; + graphics.PixelOffsetMode = PixelOffsetMode.HighSpeed; + graphics.InterpolationMode = InterpolationMode.High; + } + + private void DrawForeground(bool hideTrace) + { + if (base.ClientRectangle.Width > 5 && base.ClientRectangle.Height > 5) + { + this.CopyBackground(); + this.DrawTrace(); + } + } + + private unsafe void CopyBackground() + { + BitmapData bitmapData = this._buffer.LockBits(base.ClientRectangle, ImageLockMode.WriteOnly, this._buffer.PixelFormat); + BitmapData bitmapData2 = this._bkgBuffer.LockBits(base.ClientRectangle, ImageLockMode.ReadOnly, this._bkgBuffer.PixelFormat); + Utils.Memcpy((void*)bitmapData.Scan0, (void*)bitmapData2.Scan0, Math.Abs(bitmapData.Stride) * bitmapData.Height); + this._buffer.UnlockBits(bitmapData); + this._bkgBuffer.UnlockBits(bitmapData2); + } + + protected override void OnPaint(PaintEventArgs e) + { + Scope.ConfigureGraphics(e.Graphics); + e.Graphics.DrawImageUnscaled(this._buffer, 0, 0); + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + if (base.ClientRectangle.Width > 0 && base.ClientRectangle.Height > 0) + { + this._buffer.Dispose(); + this._graphics.Dispose(); + this._bkgBuffer.Dispose(); + this._bkgBuffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._buffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._graphics = Graphics.FromImage(this._buffer); + Scope.ConfigureGraphics(this._graphics); + if (!this._showBars) + { + this._barsHeight = 0; + } + else + { + this._barsHeight = 62; + } + if (!this._showBars) + { + this._scopeHeight = base.ClientRectangle.Height; + } + else + { + this._scopeHeight = base.ClientRectangle.Height - this._barsHeight - 5 - 3; + } + int num = base.ClientRectangle.Width - 10; + this._hBuf = new float[num]; + this._points = new Point[num + 2]; + this._upper = new Point[num + 2]; + this._lower = new Point[num + 2]; + this._vBuf = new float[num]; + this._avgBuf = new float[num]; + this._negBuf = new float[num]; + this._posBuf = new float[num]; + if (this._gradientBrush != null) + { + this._gradientBrush.Dispose(); + } + this.newGradientBrush(null); + this._clipRectangle = new Rectangle(0, 0, base.ClientRectangle.Width, this._scopeHeight); + this.newBackgroundBrush(null); + this._drawBackgroundNeeded = true; + this.Perform(false); + if (Scope._gradientPixels != null && Scope._gradientPixels.Length >= base.ClientRectangle.Height) + { + return; + } + Scope._gradientPixels = null; + Scope._gradientPixels = new int[base.ClientRectangle.Height]; + } + } + + private void newGradientBrush(ColorBlend blend = null) + { + int y = (int)((float)(this._scopeHeight / 2) - this._vShift * (float)this._scopeHeight); + this._gradientBrush = new LinearGradientBrush(new Rectangle(0, y, base.ClientRectangle.Width, this._scopeHeight / 2), Color.White, Color.Black, LinearGradientMode.Vertical); + if (blend != null) + { + if (Scope._gradientColorBlend == null) + { + Scope._gradientColorBlend = new ColorBlend(2); + } + Scope._gradientColorBlend.Positions[0] = 0f; + Scope._gradientColorBlend.Positions[1] = 1f; + int num = blend.Colors.Length - 1; + if (Scope._spectrumFill == 1) + { + Scope._gradientColorBlend.Colors[0] = Color.FromArgb(180, blend.Colors[num]); + Scope._gradientColorBlend.Colors[1] = Color.FromArgb(180, blend.Colors[0]); + } + else if (Scope._spectrumFill == 2) + { + Scope._gradientColorBlend.Colors[0] = blend.Colors[0]; + Math.Max(blend.Colors[num].R, Math.Max(blend.Colors[num].G, blend.Colors[num].B)); + Scope._gradientColorBlend.Colors[1] = blend.Colors[num]; + } + else + { + Scope._gradientColorBlend.Colors[0] = Scope._traceColor; + Scope._gradientColorBlend.Colors[1] = Scope._backgroundColor; + } + } + else if (Scope._gradientColorBlend == null) + { + return; + } + this._gradientBrush.InterpolationColors = Scope._gradientColorBlend; + this._gradientBrush.WrapMode = WrapMode.TileFlipX; + if (Scope._spectrumFill > 1) + { + this.fillGradientVector(Scope._gradientColorBlend, 255); + } + } + + private void newBackgroundBrush(Color? color = default(Color?)) + { + if (color.HasValue) + { + Scope._backgroundColor = color.Value; + } + if (this._backgroundBrush != null) + { + this._backgroundBrush.Dispose(); + } + this._backgroundBrush = Utils.BackgroundBrush(base.Name, Scope._backgroundColor, base.ClientRectangle.Width, this._scopeHeight, false, false); + this._drawBackgroundNeeded = true; + } + + protected override void OnPaintBackground(PaintEventArgs e) + { + } + + private void InitializeComponent() + { + base.SuspendLayout(); + this.BackColor = SystemColors.Control; + base.Name = "Scope"; + base.ResumeLayout(false); + } + + protected override void OnMouseEnter(EventArgs e) + { + base.OnMouseEnter(e); + this.Cursor = Cursors.Hand; + } + + protected override void OnMouseLeave(EventArgs e) + { + base.OnMouseLeave(e); + this.Cursor = Cursors.Default; + } + + protected override void OnMouseDown(MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + this._oldHshift = this._hShift; + this._oldVshift = this._vShift; + this._oldX = e.X; + this._oldY = e.Y; + if (this.Cursor == Cursors.SizeNS) + { + this._trigChange = true; + } + } + } + + protected override void OnMouseUp(MouseEventArgs e) + { + if (this._trigChange) + { + this._trigChange = false; + this.Cursor = Cursors.Hand; + } + } + + protected override void OnMouseMove(MouseEventArgs e) + { + base.OnMouseMove(e); + float num = -1f; + if (this._trigChange || (e.X < 10 && !this._xyMode)) + { + num = -1f * (float)(e.Y - 5) / (float)(this._scopeHeight - 10) + 0.5f; + } + this.Cursor = (((double)Math.Abs(num - this._trigLevel) < 0.1) ? Cursors.SizeNS : Cursors.Hand); + if (e.Button == MouseButtons.Left) + { + if (this._trigChange) + { + PositionEventArgs positionEventArgs = new PositionEventArgs(0f, -1f * (float)(e.Y - 5) / (float)(this._scopeHeight - 10) + 0.5f, true); + this._trigLevel = positionEventArgs.Ypos; + this._drawBackgroundNeeded = true; + if (this.XYPositionChanged != null) + { + this.XYPositionChanged(this, positionEventArgs); + } + } + else + { + this._vShift = this._oldVshift + (float)(this._oldY - e.Y) / (float)(this._scopeHeight - 10); + this._hShift = this._oldHshift - (float)(this._oldX - e.X) / (float)(base.ClientRectangle.Width - 10); + if ((double)this._vShift > 1.0) + { + this._vShift = 1f; + } + if ((double)this._vShift < -1.0) + { + this._vShift = -1f; + } + if ((double)this._hShift > 1.0) + { + this._hShift = 1f; + } + if ((double)this._hShift < -1.0) + { + this._hShift = -1f; + } + this.newGradientBrush(null); + this._drawBackgroundNeeded = true; + } + } + } + + private float pow(int factor) + { + return (float)Math.Pow(10.0, (double)factor / 10.0); + } + + private int log(float value) + { + return (int)(Math.Log10((double)value) * 10.0); + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/SpectrumAnalyzer.cs b/SDRSharper.PanView/SDRSharp.PanView/SpectrumAnalyzer.cs new file mode 100644 index 0000000..9923598 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/SpectrumAnalyzer.cs @@ -0,0 +1,2266 @@ +using SDRSharp.Radio; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Drawing.Imaging; +using System.Windows.Forms; + +namespace SDRSharp.PanView +{ + public class SpectrumAnalyzer : UserControl + { + private const float TrackingFontSize = 14f; + + private const int ScaleMargin = 30; + + private const int GradientAlpha = 180; + + public const float DefaultCursorHeight = 32f; + + private int _lrMargin; + + private int _tbMargin = 22; + + private double _attack; + + private double _decay; + + private bool _performNeeded; + + private int _resetMaximumNeeded; + + private bool _drawBackgroundNeeded; + + private byte[] _spectrum; + + private byte[] _maximum; + + private byte[] _timout; + + private bool[] _peaks; + + private byte[] _temp; + + private byte[] _scaledPowerSpectrum; + + private Bitmap _bkgBuffer; + + private Bitmap _buffer; + + private Graphics _bkgGraphics; + + private Graphics _graphics; + + private long _spectrumWidth; + + private long _centerFrequency; + + private long _displayCenterFrequency; + + private Point[] _points; + + private BandType _bandType; + + private int _filterBandwidth; + + private int _filterOffset; + + private int _oldFilterOffset; + + private bool _indepSideband; + + private int _stepSize = 1000; + + private int _centerStep = 10000; + + private float _xIncrement; + + private long _frequency; + + private float _lower; + + private float _upper; + + private float _scale = 1f; + + private int _oldX; + + private int _oldY; + + private int _trackingX; + + private int _trackingY; + + private long _trackingFrequency; + + private int _oldFilterBandwidth; + + private long _oldFrequency; + + private long _oldCenterFrequency; + + private long _oldDisplayFrequency; + + private int _changingBandwidth; + + private bool _changingFrequency; + + private bool _changingZoomFrequency; + + private bool _changingCenterFrequency; + + private int _changingScale; + + private float _oldPower; + + private bool _useSmoothing; + + private bool _hotTrackNeeded; + + private bool _useSnap; + + private bool _centerSnap; + + private bool _markPeaks; + + private bool _savePeaks; + + private bool _carrierMode; + + private float _trackingPower; + + private string _statusText; + + private static Color _backgroundColor; + + private PathGradientBrush _backgroundBrush; + + private static Color _spectrumColor; + + private static int _spectrumFill = 0; + + private static ColorBlend _dynamicBlend = new ColorBlend(3); + + private static ColorBlend _gradientColorBlend; + + private LinearGradientBrush _gradientBrush; + + private int[] _gradientPixels = new int[255]; + + private float _minPower; + + private float _maxPower; + + private int _showDbm; + + private int _signalDbm; + + private bool _centerFixed; + + private DataType _dataType; + + private int _notch; + + public Notch[] _notches = new Notch[4] + { + new Notch(), + new Notch(), + new Notch(), + new Notch() + }; + + private bool _changingNotchOffset; + + private bool _changingNotchWidth; + + private int _oldValue; + + private frmStationList _frmStationList; + + private string _stationList; + + private Meter _sMeter = new Meter(); + + private ContextMenuStrip _contextMenu; + + private static Pen _gridPen = new Pen(Color.FromArgb(100, 100, 100)); + + private static Pen _axisPen = new Pen(Color.FromArgb(150, 150, 150)); + + private static Pen _tickPen = new Pen(Color.FromArgb(255, 255, 255)); + + private static Brush _fontBrush = new SolidBrush(Color.FromArgb(220, 220, 220)); + + private static Pen _spectrumPen = new Pen(Color.White); + + private static Pen _maximumPen = new Pen(Color.White); + + private static Pen _carrierPen = new Pen(Color.Red); + + private static Pen _hotTrackPen = new Pen(Color.Yellow); + + private static Pen _notchPen = new Pen(Color.Green); + + private static Pen _outlinePen = new Pen(Color.Black, 4f); + + private static Pen _overflowPen = new Pen(Color.FromArgb(255, 120, 120)); + + private static Brush _transparentBrush = new SolidBrush(Color.FromArgb(100, Color.DarkGray)); + + private static Brush _transparentBrush2 = new SolidBrush(Color.FromArgb(50, Color.DarkGray)); + + private static Brush _redBrush = new SolidBrush(Color.Red); + + private static FontFamily _fontFamily = new FontFamily("Arial"); + + private static Font _font = new Font("Arial", 8f); + + private static Font _statusFont = new Font("Lucida Console", 9f); + + public int SignalDbm => this._signalDbm; + + public int ShowDbm + { + get + { + return this._showDbm; + } + set + { + this._showDbm = value; + this._drawBackgroundNeeded = true; + } + } + + public DetectorType DetectorType + { + set + { + this._sMeter.DetectorType = value; + this._carrierMode = (value == DetectorType.AM || value == DetectorType.SAM || value == DetectorType.CW); + } + } + + public float MaxPower + { + get + { + return this._maxPower; + } + set + { + this._maxPower = value; + this._drawBackgroundNeeded = true; + } + } + + public float MinPower + { + get + { + return this._minPower; + } + set + { + this._minPower = value; + this._drawBackgroundNeeded = true; + this._resetMaximumNeeded = 10; + } + } + + public DataType DataType + { + get + { + return this._dataType; + } + set + { + this._dataType = value; + this._drawBackgroundNeeded = true; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + if (!base.Name.Contains("pectrum")) + { + this._lrMargin = 30; + } + } + } + } + + public bool IndepSideband + { + get + { + return this._indepSideband; + } + set + { + this._indepSideband = value; + } + } + + public bool CenterFixed + { + get + { + return this._centerFixed; + } + set + { + this._centerFixed = value; + } + } + + public ContextMenuStrip ContextMnu + { + set + { + this._contextMenu = value; + } + } + + public string StationList + { + get + { + if (this._frmStationList != null) + { + return this._frmStationList.Stations; + } + return ""; + } + set + { + this._stationList = value; + if (this._frmStationList != null) + { + this._frmStationList.Stations = value; + } + } + } + + public int SpectrumWidth + { + get + { + return (int)this._spectrumWidth; + } + set + { + if (this._spectrumWidth != value) + { + this._spectrumWidth = value; + this.ApplyZoom(); + } + } + } + + public int FilterBandwidth + { + get + { + return this._filterBandwidth; + } + set + { + if (this._filterBandwidth != value) + { + this._filterBandwidth = value; + this._performNeeded = true; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + } + } + } + } + + public int FilterOffset + { + get + { + return this._filterOffset; + } + set + { + if (this._filterOffset != value) + { + this._filterOffset = value; + this._performNeeded = true; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + } + } + } + } + + public BandType BandType + { + get + { + return this._bandType; + } + set + { + if (this._bandType != value) + { + this._bandType = value; + this._performNeeded = true; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + } + } + } + } + + public long Frequency + { + get + { + return this._frequency; + } + set + { + if (this._frequency != value) + { + if (this._dataType == DataType.RF && this._centerFixed && (double)this._scale > 1.001) + { + long num = (long)((float)this._displayCenterFrequency + (float)this._spectrumWidth / this._scale / 2f); + long num2 = (long)((float)this._displayCenterFrequency - (float)this._spectrumWidth / this._scale / 2f); + long f = this._displayCenterFrequency + value - this._frequency; + if (value < num2 + 10 || value > num - 10) + { + this.UpdateDisplayFrequency(f); + } + } + this._frequency = value; + this._performNeeded = true; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + this._drawBackgroundNeeded = false; + this._resetMaximumNeeded = 10; + } + } + } + } + + public long DisplayFrequency + { + get + { + return this._displayCenterFrequency; + } + set + { + if (this._displayCenterFrequency != value) + { + this._displayCenterFrequency = value; + this._drawBackgroundNeeded = true; + Console.WriteLine(base.Name + " disp=" + this._displayCenterFrequency.ToString()); + this._resetMaximumNeeded = 1; + } + } + } + + public long CenterFrequency + { + get + { + return this._centerFrequency; + } + set + { + if (this._centerFrequency != value) + { + long num = value - this._centerFrequency; + this._displayCenterFrequency += num; + this._centerFrequency = value; + this._drawBackgroundNeeded = true; + this._resetMaximumNeeded = 10; + } + } + } + + public float Zoom + { + get + { + return this._scale; + } + set + { + if (value <= 0f) + { + int num = Math.Max(this._filterBandwidth, 340); + if (this._dataType == DataType.AF && this._bandType == BandType.Center) + { + num /= 2; + } + if (this._dataType == DataType.AF && this._sMeter.DetectorType == DetectorType.CW) + { + num = 800; + } + value = Math.Max(1f, (float)this._spectrumWidth / ((float)num * 1.5f)); + this.resetMaximum(); + } + this._drawBackgroundNeeded = true; + if (this._scale != value) + { + this._scale = value; + this.ApplyZoom(); + } + } + } + + public bool UseSmoothing + { + get + { + return this._useSmoothing; + } + set + { + this._useSmoothing = value; + } + } + + public string StatusText + { + get + { + return this._statusText; + } + set + { + this._statusText = value; + this._performNeeded = true; + } + } + + public Color SpectrumColor + { + get + { + return SpectrumAnalyzer._spectrumColor; + } + set + { + if (!(SpectrumAnalyzer._spectrumColor == value)) + { + SpectrumAnalyzer._spectrumColor = value; + SpectrumAnalyzer._spectrumPen.Dispose(); + SpectrumAnalyzer._spectrumPen = new Pen(SpectrumAnalyzer._spectrumColor); + } + } + } + + public int SpectrumFill + { + get + { + return SpectrumAnalyzer._spectrumFill; + } + set + { + SpectrumAnalyzer._spectrumFill = value; + } + } + + public Color BackgroundColor + { + get + { + return SpectrumAnalyzer._backgroundColor; + } + set + { + this.newBackgroundBrush(value); + } + } + + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + [Browsable(false)] + public ColorBlend GradientColorBlend + { + set + { + SpectrumAnalyzer._dynamicBlend.Colors[0] = value.Colors[0]; + SpectrumAnalyzer._dynamicBlend.Positions[0] = 0f; + SpectrumAnalyzer._dynamicBlend.Colors[1] = value.Colors[0]; + SpectrumAnalyzer._dynamicBlend.Positions[1] = 0f; + SpectrumAnalyzer._dynamicBlend.Colors[2] = value.Colors[value.Colors.Length - 1]; + SpectrumAnalyzer._dynamicBlend.Positions[2] = 1f; + this.newGradientBrush(value); + } + } + + public double Attack + { + get + { + return this._attack; + } + set + { + this._attack = value; + } + } + + public double Decay + { + get + { + return this._decay; + } + set + { + this._decay = value; + } + } + + public int StepSize + { + get + { + return this._stepSize; + } + set + { + if (this._stepSize != value) + { + this._stepSize = value; + this._drawBackgroundNeeded = true; + this._performNeeded = true; + } + } + } + + public int CenterStep + { + get + { + return this._centerStep; + } + set + { + this._centerStep = value; + } + } + + public bool UseSnap + { + get + { + return this._useSnap; + } + set + { + this._useSnap = (this._dataType == DataType.RF && value); + } + } + + public bool MarkPeaks + { + get + { + return this._markPeaks; + } + set + { + this._markPeaks = value; + this._savePeaks = value; + this.resetMaximum(); + } + } + + public bool CenterSnap + { + set + { + this._centerSnap = value; + } + } + + public event ManualFrequencyChange FrequencyChanged; + + public event ManualFrequencyChange DisplayFrequencyChanged; + + public event ManualFrequencyChange CenterFrequencyChanged; + + public event ManualBandwidthChange BandwidthChanged; + + public event ManualNotchChange NotchChanged; + + public event EventHandler StationDatachanged; + + public event EventHandler AutoZoomed; + + public event EventHandler TimeChanged; + + public SpectrumAnalyzer() + { + this._bkgBuffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._bkgGraphics = Graphics.FromImage(this._bkgBuffer); + this._buffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._graphics = Graphics.FromImage(this._buffer); + base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true); + base.SetStyle(ControlStyles.DoubleBuffer, true); + base.SetStyle(ControlStyles.UserPaint, true); + base.SetStyle(ControlStyles.AllPaintingInWmPaint, true); + base.UpdateStyles(); + SpectrumAnalyzer._gridPen.DashStyle = DashStyle.Dash; + } + + ~SpectrumAnalyzer() + { + this._buffer.Dispose(); + this._graphics.Dispose(); + this._bkgGraphics.Dispose(); + this._gradientBrush.Dispose(); + this._backgroundBrush.Dispose(); + } + + public void Test() + { + this._gradientBrush.InterpolationColors = SpectrumAnalyzer._gradientColorBlend; + this.fillGradientVector(SpectrumAnalyzer._gradientColorBlend, 255); + } + + public void SetNotch(int num, int offset, int width, bool active) + { + if (width == 0) + { + if (this._notches[num].Width == 0) + { + width = this._filterBandwidth / 30; + offset = this._filterBandwidth / 2 - (num + 1) * this._filterBandwidth / 10; + } + else + { + width = Math.Abs(this._notches[num].Width); + offset = this._notches[num].Offset; + } + if (!active) + { + width = -width; + } + } + this.UpdateNotch(num, offset, width, active); + } + + public void ShowStationList() + { + if (this._frmStationList == null || this._frmStationList.IsDisposed) + { + this._frmStationList = new frmStationList(); + this._frmStationList.StationDataChanged += this.frmStationList_StationDataChanged; + } + if (!this._frmStationList.Visible) + { + this._frmStationList.Show(); + } + this._frmStationList.ShowDbm = this._showDbm; + this._frmStationList.Stations = this._stationList; + this._frmStationList.Activate(); + } + + private void frmStationList_StationDataChanged(object sender, EventArgs e) + { + this._stationList = this._frmStationList.Stations; + this.StationDatachanged(sender, e); + } + + private void ApplyZoom() + { + if (this._spectrumWidth > 0) + { + if (this._dataType == DataType.RF) + { + this._displayCenterFrequency = this.GetDisplayCenterFrequency(); + } + else if (this._dataType == DataType.AF) + { + this._displayCenterFrequency = (long)((float)this._centerFrequency / this._scale); + } + else + { + this._displayCenterFrequency = this._centerFrequency; + } + this._xIncrement = this._scale * (float)(base.ClientRectangle.Width - 2 * this._lrMargin) / (float)this._spectrumWidth; + this._drawBackgroundNeeded = true; + } + } + + private long GetDisplayCenterFrequency() + { + long num = this._frequency; + switch (this._bandType) + { + case BandType.Lower: + num -= this._filterBandwidth / 2 + this._filterOffset; + break; + case BandType.Upper: + num += this._filterBandwidth / 2 + this._filterOffset; + break; + } + long num2 = (long)((float)(this._centerFrequency - this._spectrumWidth / 2) - ((float)num - (float)this._spectrumWidth / this._scale / 2f)); + if (num2 > 0) + { + num += num2 + 10; + } + long num3 = (long)((float)num + (float)this._spectrumWidth / this._scale / 2f - (float)(this._centerFrequency + this._spectrumWidth / 2)); + if (num3 > 0) + { + num -= num3 + 10; + } + return num; + } + + private void fillGradientVector(ColorBlend blend, int size) + { + int num = 4; + Bitmap bitmap = new Bitmap(num, size, PixelFormat.Format32bppArgb); + Graphics graphics = Graphics.FromImage(bitmap); + LinearGradientBrush linearGradientBrush = new LinearGradientBrush(new Point(0, 0), new Point(0, size), Color.Black, Color.White); + linearGradientBrush.InterpolationColors = blend; + graphics.FillRectangle(linearGradientBrush, new Rectangle(0, 0, num, size)); + int num2 = 220; + for (int i = 0; i < size; i++) + { + num2 = 255 - (int)((float)i / (float)size * 127f); + Color color = Color.FromArgb(num2, bitmap.GetPixel(num / 2, i)); + this._gradientPixels[i] = color.ToArgb(); + } + graphics.Dispose(); + bitmap.Dispose(); + } + + public void Perform() + { + if (base.ClientRectangle.Width > 30 && base.ClientRectangle.Height > 30 && (this._performNeeded || this._drawBackgroundNeeded)) + { + if (this._drawBackgroundNeeded) + { + this.DrawBackground(); + } + this.CopyBackground(); + this.DrawSpectrum(); + this.DrawCursor(); + this.DrawStatusText(); + base.Invalidate(); + if (this._resetMaximumNeeded > 0) + { + this.resetMaximum(); + } + this._drawBackgroundNeeded = false; + this._performNeeded = false; + } + } + + private void DrawCursor() + { + float num = 0f; + float num2 = 0f; + this._lower = 0f; + float num3 = Math.Max((float)(this._filterBandwidth + this._filterOffset) * this._xIncrement, 2f); + float num4 = (float)base.ClientRectangle.Width / 2f + (float)(this._frequency - this._displayCenterFrequency) * this._xIncrement; + switch (this._bandType) + { + case BandType.Upper: + num = (float)this._filterOffset * this._xIncrement; + num2 = num3 - num; + this._lower = num4; + break; + case BandType.Lower: + num = (float)this._filterOffset * this._xIncrement; + num2 = num3 - num; + this._lower = num4 - num2; + break; + case BandType.Center: + { + num3 = Math.Max((float)this._filterBandwidth * this._xIncrement, 2f); + num = (float)this._filterOffset * this._xIncrement; + num2 = num3; + float num5 = num4 + num; + this._lower = num5 - num3 / 2f; + break; + } + } + if (this.DataType == DataType.AF && this._bandType != BandType.Center) + { + this._lower = num4; + } + this._upper = this._lower + num2; + using (Graphics graphics = Graphics.FromImage(this._buffer)) + { + using (GraphicsPath path = new GraphicsPath()) + { + if (num3 < (float)base.ClientRectangle.Width || (this._dataType == DataType.AF && num3 < (float)(2 * base.ClientRectangle.Width))) + { + if (this._dataType == DataType.RF) + { + graphics.FillRectangle(SpectrumAnalyzer._transparentBrush, (int)this._lower + 1, 0, (int)num2, base.ClientRectangle.Height); + } + else if (this._dataType == DataType.IF && this._hotTrackNeeded) + { + graphics.FillRectangle(SpectrumAnalyzer._transparentBrush2, this._lrMargin, 0, (int)this._lower - this._lrMargin + 1, base.ClientRectangle.Height); + graphics.FillRectangle(SpectrumAnalyzer._transparentBrush2, (float)((int)this._upper + 1), 0f, (float)(base.ClientRectangle.Width - this._lrMargin) - this._upper - 1f, (float)base.ClientRectangle.Height); + } + else if (this._dataType == DataType.AF && this._hotTrackNeeded) + { + graphics.FillRectangle(SpectrumAnalyzer._transparentBrush2, (float)((int)this._upper + 1), 0f, (float)(base.ClientRectangle.Width - this._lrMargin) - this._upper - 1f, (float)base.ClientRectangle.Height); + } + if (num4 >= (float)this._lrMargin && num4 <= (float)(base.ClientRectangle.Width - this._lrMargin) && this._dataType != DataType.AF) + { + graphics.DrawLine(SpectrumAnalyzer._carrierPen, num4, (float)this._tbMargin, num4, (float)(base.ClientRectangle.Height - this._tbMargin)); + } + } + if (this._dataType == DataType.IF) + { + for (int i = 0; i < 4; i++) + { + if (this._notches[i].Width > 0) + { + this._notches[i].Xhalf = Math.Max((float)this._notches[i].Width * this._xIncrement, 4f) / 2f; + this._notches[i].Xpos = (float)base.ClientRectangle.Width / 2f + (float)this._notches[i].Offset * this._xIncrement; + if (this._notches[i].Xhalf * 2f < (float)base.ClientRectangle.Width) + { + graphics.FillRectangle(SpectrumAnalyzer._transparentBrush, (float)(int)this._notches[i].Xpos - this._notches[i].Xhalf + 1f, 0f, (float)((int)this._notches[i].Xhalf * 2), (float)base.ClientRectangle.Height); + if (!(this._notches[i].Xpos < (float)this._lrMargin) && !(this._notches[i].Xpos > (float)(base.ClientRectangle.Width - this._lrMargin))) + { + SpectrumAnalyzer._notchPen.Color = (this._notches[i].Active ? Color.Red : Color.FromArgb(100, 255, 100)); + graphics.DrawLine(SpectrumAnalyzer._notchPen, this._notches[i].Xpos, (float)this._tbMargin, this._notches[i].Xpos, (float)(base.ClientRectangle.Height - this._tbMargin)); + } + } + } + } + } + int val = (int)num2; + val = Math.Max(val, 10); + val = Math.Min(val, this._spectrum.Length); + if (this._hotTrackNeeded && this._trackingX >= this._lrMargin && this._trackingX <= base.ClientRectangle.Width - this._lrMargin && this._trackingY >= this._tbMargin && this._trackingY <= base.ClientRectangle.Height - this._tbMargin) + { + if (this._spectrum != null && !this._changingFrequency && !this._changingCenterFrequency && this._changingBandwidth == 0 && !this._changingNotchOffset && !this._changingNotchWidth) + { + int num6 = this._trackingX - this._lrMargin; + if (num6 > 0 && num6 < this._spectrum.Length) + { + graphics.DrawLine(SpectrumAnalyzer._hotTrackPen, this._trackingX, 0, this._trackingX, base.ClientRectangle.Height); + } + } + string text; + if (this._changingNotchOffset) + { + text = "Notch=" + SpectrumAnalyzer.GetFrequencyDisplay(this._frequency + this._notches[this._notch].Offset, true); + } + else if (this._changingFrequency) + { + text = "VFO = " + SpectrumAnalyzer.GetFrequencyDisplay(this._frequency, true); + } + else if (this._changingBandwidth != 0) + { + text = "BW = " + SpectrumAnalyzer.GetFrequencyDisplay(this._filterBandwidth, true); + } + else if (this._changingNotchWidth) + { + text = "Width = " + SpectrumAnalyzer.GetFrequencyDisplay(this._notches[this._notch].Width, true); + } + else if (this._changingCenterFrequency) + { + text = ((this._dataType == DataType.RF) ? "Center Freq. = " : "VFO = ") + SpectrumAnalyzer.GetFrequencyDisplay(this._centerFrequency, true); + } + else if (this._changingScale != 0) + { + text = "Scale"; + } + else + { + long num7 = this._trackingFrequency; + if (this._dataType == DataType.IF) + { + num7 -= this._frequency; + } + text = $"{SpectrumAnalyzer.GetFrequencyDisplay(num7, true)}\r\n{Utils.Signal((int)this._trackingPower, this._showDbm, true)}"; + } + Utils.AddString(path, text, 14f, Math.Min(base.ClientRectangle.Width - 80, this._trackingX + 10), Math.Max(0, this._trackingY - 35)); + Utils.DrawPath(graphics, path, Brushes.White, 4); + } + if (this._dataType == DataType.RF || this._carrierMode) + { + int num8 = 0; + int num9 = 0; + for (int j = (int)this._lower - this._lrMargin; j < (int)this._upper - this._lrMargin; j++) + { + if (j >= 0 && j < this._spectrum.Length && this._spectrum[j] > num8) + { + num8 = this._spectrum[j]; + num9 = j; + } + } + this._signalDbm = (int)(this._minPower + (this._maxPower - this._minPower) / 255f * (float)num8); + bool flag = num8 >= 255; + if (this._dataType == DataType.RF) + { + this._sMeter.Draw(graphics, (float)this._signalDbm, this._showDbm, flag); + } + if (this._carrierMode && this._dataType != DataType.AF) + { + float num10 = (float)(base.ClientRectangle.Height - 2 * this._tbMargin) / 255f; + int num11 = (int)((float)(base.ClientRectangle.Height - this._tbMargin) - (float)(int)this._spectrum[num9] * num10); + graphics.DrawEllipse(flag ? SpectrumAnalyzer._overflowPen : Pens.Yellow, this._lrMargin + num9 - 2, num11 - 2, 4, 4); + } + } + } + } + } + + public unsafe void Render(float* powerSpectrum, int length) + { + if (this._scaledPowerSpectrum == null || this._scaledPowerSpectrum.Length != length) + { + this._scaledPowerSpectrum = new byte[length]; + } + byte[] scaledPowerSpectrum = this._scaledPowerSpectrum; + fixed (byte* dest = scaledPowerSpectrum) + { + Fourier.ScaleFFT(powerSpectrum, dest, length, this.MinPower, this.MaxPower); + } + int num = (int)((float)length / this._scale); + int offset = (int)((double)(length - num) / 2.0 + (double)length * (double)(this._displayCenterFrequency - this._centerFrequency) / (double)this._spectrumWidth); + if (this._useSmoothing) + { + Fourier.SmoothCopy(this._scaledPowerSpectrum, this._temp, length, this._scale, offset); + for (int i = 0; i < this._spectrum.Length; i++) + { + double num2 = (this._spectrum[i] < this._temp[i]) ? this.Attack : this.Decay; + this._spectrum[i] = (byte)Math.Round((double)(int)this._spectrum[i] * (1.0 - num2) + (double)(int)this._temp[i] * num2); + } + byte val = 4; + if (this._markPeaks) + { + for (int j = 0; j < this._spectrum.Length; j++) + { + if (this._temp[j] > this._maximum[j]) + { + this._maximum[j] = this._temp[j]; + this._timout[j] = 100; + } + else if (this._timout[j] > 0) + { + this._timout[j]--; + } + else if (this._maximum[j] > 0) + { + this._maximum[j] -= Math.Min(val, this._maximum[j]); + } + } + } + } + else + { + Fourier.SmoothCopy(this._scaledPowerSpectrum, this._spectrum, length, this._scale, offset); + } + this._performNeeded = true; + } + + private void DrawBackground() + { + Graphics bkgGraphics = this._bkgGraphics; + bkgGraphics.Clear(Utils.ChangeColor(SpectrumAnalyzer._backgroundColor, 0.4f)); + bkgGraphics.FillRectangle(this._backgroundBrush, 0, 0, base.ClientRectangle.Width, base.ClientRectangle.Height - this._tbMargin); + if (this._spectrumWidth > 0) + { + long num = (long)((float)this._spectrumWidth / this._scale); + int num2 = (int)bkgGraphics.MeasureString("30000", SpectrumAnalyzer._font).Width; + int num3 = (int)(num * num2 / (base.ClientRectangle.Width - 2 * this._lrMargin)); + int num4 = 50000; + if (num <= 500) + { + num4 = 10; + } + else if (num <= 5000) + { + num4 = 100; + } + else if (num <= 50000) + { + num4 = 500; + } + else if (num <= 500000) + { + num4 = 5000; + } + num3 = num3 / num4 * num4 + num4; + int num5 = (int)(num / num3) + 4; + float num6 = (float)((base.ClientRectangle.Width - 2 * this._lrMargin) * num3) * this._scale / (float)this._spectrumWidth; + long num7 = this._displayCenterFrequency; + if (this._dataType == DataType.IF) + { + num7 -= this._frequency; + } + int num8 = (int)((float)(num7 % num3 * (base.ClientRectangle.Width - 2 * this._lrMargin)) * this._scale / (float)this._spectrumWidth); + int num9 = (int)((double)num3 / Math.Pow(10.0, Math.Log10((double)(num3 / 10)))); + if (num9 <= 10) + { + num9 = 5; + } + else + { + switch (num9) + { + case 15: + num9 = 3; + break; + case 20: + num9 = 4; + break; + case 25: + num9 = 5; + break; + case 50: + num9 = 5; + break; + } + } + for (int i = -num5 / 2; i < num5 / 2; i++) + { + float num10 = (float)((base.ClientRectangle.Width - 2 * this._lrMargin) / 2 + this._lrMargin) + num6 * (float)i - (float)num8; + if (num10 >= 30f && num10 < (float)(base.ClientRectangle.Width - this._lrMargin)) + { + bkgGraphics.DrawLine(SpectrumAnalyzer._gridPen, num10, (float)this._tbMargin, num10, (float)(base.ClientRectangle.Height - this._tbMargin)); + } + for (int j = 0; j < num9; j++) + { + float num11 = num10 + (float)j * (num6 / (float)num9); + if (num11 > (float)this._lrMargin && num11 < (float)(base.ClientRectangle.Width - this._lrMargin)) + { + bkgGraphics.DrawLine((j == 0) ? SpectrumAnalyzer._tickPen : SpectrumAnalyzer._axisPen, num11, (float)(base.ClientRectangle.Height - this._tbMargin), num11, (float)(base.ClientRectangle.Height - this._tbMargin + ((j == 0) ? 5 : 3))); + } + } + string frequencyDisplay = SpectrumAnalyzer.GetFrequencyDisplay(num7 + i * num3 - num7 % num3, false); + SizeF sizeF = bkgGraphics.MeasureString(frequencyDisplay, SpectrumAnalyzer._font); + if (num10 > (float)this._lrMargin && num10 < (float)(base.ClientRectangle.Width - 45)) + { + bkgGraphics.DrawString(frequencyDisplay, SpectrumAnalyzer._font, SpectrumAnalyzer._fontBrush, num10 - sizeF.Width / 2f, (float)(base.ClientRectangle.Height - this._tbMargin + 6)); + } + } + string s = "kHz"; + if ((float)num7 + (float)this._spectrumWidth / (2f * this._scale) > 3E+07f) + { + s = "Mhz"; + } + else if ((float)num7 + (float)this._spectrumWidth / (2f * this._scale) < 1000f) + { + s = "Hz"; + } + bkgGraphics.DrawString(s, SpectrumAnalyzer._font, SpectrumAnalyzer._fontBrush, (float)(base.ClientRectangle.Width - 30), (float)(base.ClientRectangle.Height - this._tbMargin + 6)); + } + bkgGraphics.DrawLine(SpectrumAnalyzer._axisPen, this._lrMargin, base.ClientRectangle.Height - this._tbMargin, base.ClientRectangle.Width - this._lrMargin, base.ClientRectangle.Height - this._tbMargin); + int num12 = (int)this._minPower; + int num13 = (int)this._maxPower; + int num14 = num13 - num12; + int num15 = base.ClientRectangle.Height - 2 * this._tbMargin; + float num16 = (float)num15 / (float)num14; + int num17 = 20; + int num18 = 12; + string text = num13.ToString(); + SizeF sizeF2 = bkgGraphics.MeasureString(text, SpectrumAnalyzer._font); + float height = sizeF2.Height; + double num19 = (double)num15 / ((double)height * 1.2); + if ((double)num14 <= num19) + { + num17 = 1; + } + else if ((double)(num14 / 2) <= num19) + { + num17 = 2; + } + else if ((double)(num14 / 3) <= num19) + { + num17 = 3; + } + else if ((double)(num14 / 6) <= num19) + { + num17 = 5; + } + else if ((double)(num14 / 10) <= num19) + { + num17 = 10; + } + if (this._showDbm >= 2) + { + num17 = ((num17 > 7) ? 10 : 5); + } + for (int k = num12; k < num13; k++) + { + bool flag = false; + if (this._showDbm == 0) + { + if (k % num17 == 0) + { + flag = true; + } + } + else if (this._showDbm == 1) + { + if ((k + 7) % num17 == 0) + { + flag = true; + } + } + else if (this._showDbm == 3) + { + if ((k + 3) % num17 == 0) + { + flag = true; + } + } + else if (k > -73) + { + if ((k + 73) % num17 == 0) + { + flag = true; + } + } + else + { + switch (num17) + { + case 5: + num18 = 6; + break; + case 10: + num18 = 12; + break; + } + if ((k + 121) % num18 == 0) + { + flag = true; + } + } + if (flag) + { + float num20 = (float)this._tbMargin + (float)(num13 - k) * num16; + bkgGraphics.DrawLine(SpectrumAnalyzer._gridPen, (float)this._lrMargin, num20, (float)(base.ClientRectangle.Width - this._lrMargin), num20); + text = Utils.Signal(k, this._showDbm, false); + sizeF2 = bkgGraphics.MeasureString(text, SpectrumAnalyzer._font); + if (num20 < (float)(base.ClientRectangle.Height - this._tbMargin) - sizeF2.Height / 2f) + { + bkgGraphics.DrawString(text, SpectrumAnalyzer._font, SpectrumAnalyzer._fontBrush, 30f - sizeF2.Width - 1f, num20 - sizeF2.Height / 2f); + } + } + } + if ((float)this._lrMargin > sizeF2.Width) + { + bkgGraphics.DrawLine(SpectrumAnalyzer._axisPen, this._lrMargin, this._tbMargin, this._lrMargin, base.ClientRectangle.Height - this._tbMargin); + } + if (this._dataType == DataType.RF) + { + this._sMeter.DrawBackground(bkgGraphics); + } + } + + private void resetMaximum() + { + if (this._spectrum != null) + { + for (int i = 0; i < this._spectrum.Length; i++) + { + this._maximum[i] = 0; + this._timout[i] = 0; + } + if (this._resetMaximumNeeded > 0) + { + this._resetMaximumNeeded--; + this._markPeaks = false; + if (this._resetMaximumNeeded == 0) + { + this._markPeaks = this._savePeaks; + } + } + } + } + + public static string GetFrequencyDisplay(long frequency, bool unit) + { + if (frequency == 0) + { + return "0"; + } + if (Math.Abs(frequency) > 30000000) + { + return string.Format(unit ? "{0:0.##}MHz" : "{0:0.##}", (double)frequency / 1000000.0); + } + if (Math.Abs(frequency) >= 1000) + { + return string.Format(unit ? "{0:0.##}kHz" : "{0:0.##}", (double)frequency / 1000.0); + } + return string.Format(unit ? "{0}Hz" : "{0}", frequency); + } + + public static void ConfigureGraphics(Graphics graphics) + { + graphics.CompositingMode = CompositingMode.SourceOver; + graphics.CompositingQuality = CompositingQuality.HighSpeed; + graphics.SmoothingMode = SmoothingMode.None; + graphics.PixelOffsetMode = PixelOffsetMode.HighSpeed; + graphics.InterpolationMode = InterpolationMode.High; + } + + private void DrawForeground() + { + if (base.ClientRectangle.Width > 30 && base.ClientRectangle.Height > 30) + { + this.CopyBackground(); + this.DrawSpectrum(); + this.DrawStatusText(); + this.DrawCursor(); + } + } + + private unsafe void CopyBackground() + { + BitmapData bitmapData = this._buffer.LockBits(base.ClientRectangle, ImageLockMode.WriteOnly, this._buffer.PixelFormat); + BitmapData bitmapData2 = this._bkgBuffer.LockBits(base.ClientRectangle, ImageLockMode.ReadOnly, this._bkgBuffer.PixelFormat); + Utils.Memcpy((void*)bitmapData.Scan0, (void*)bitmapData2.Scan0, Math.Abs(bitmapData.Stride) * bitmapData.Height); + this._bkgBuffer.UnlockBits(bitmapData2); + this._buffer.UnlockBits(bitmapData); + } + + private void DrawSpectrum() + { + if (this._spectrum != null && this._spectrum.Length != 0) + { + float num = (float)(base.ClientRectangle.Width - 2 * this._lrMargin) / (float)this._spectrum.Length; + float num2 = (float)(base.ClientRectangle.Height - 2 * this._tbMargin) / 255f; + Point pt = new Point(0, base.ClientRectangle.Height - this._tbMargin + 1); + Point pt2 = new Point(0, this._tbMargin - 1); + if (SpectrumAnalyzer._dynamicBlend != null) + { + int num3 = SpectrumAnalyzer._dynamicBlend.Positions.Length; + for (int i = 0; i < this._spectrum.Length; i++) + { + byte b = this._spectrum[i]; + int x = (int)((float)this._lrMargin + (float)i * num); + int y = (int)((float)(base.ClientRectangle.Height - this._tbMargin) - (float)(int)b * num2); + this._points[i + 1].X = x; + this._points[i + 1].Y = y; + if (SpectrumAnalyzer._spectrumFill >= 2) + { + pt.X = x; + pt.Y = base.ClientRectangle.Height - this._tbMargin - 1; + pt2.X = x; + pt2.Y = y; + if (SpectrumAnalyzer._spectrumFill == 2) + { + float num4 = Math.Max(0f, (float)(int)b / 255f); + for (int j = 0; j < num3 - 2; j++) + { + SpectrumAnalyzer._dynamicBlend.Positions[j + 1] = 1f - (1f - (float)j / (float)(num3 - 2)) * num4; + } + this._gradientBrush.InterpolationColors = SpectrumAnalyzer._dynamicBlend; + if (pt.Y > pt2.Y) + { + this._graphics.DrawLine(new Pen(this._gradientBrush), pt, pt2); + } + } + else + { + b = (byte)Math.Max(0, 255 - b - 1); + if (pt.Y > pt2.Y) + { + this._graphics.DrawLine(new Pen(Color.FromArgb(this._gradientPixels[b])), pt, pt2); + } + } + } + } + if (SpectrumAnalyzer._spectrumFill == 1) + { + this._points[0].X = this._lrMargin + 1; + this._points[0].Y = base.ClientRectangle.Height - this._tbMargin; + this._points[this._points.Length - 1].X = base.ClientRectangle.Width - this._lrMargin - 1; + this._points[this._points.Length - 1].Y = base.ClientRectangle.Height - this._tbMargin; + this._graphics.FillPolygon(this._gradientBrush, this._points); + } + if (this._markPeaks) + { + for (int k = 0; k < this._spectrum.Length; k++) + { + this._points[k + 1].X = (int)((float)this._lrMargin + (float)k * num); + this._points[k + 1].Y = (int)((float)(base.ClientRectangle.Height - this._tbMargin) - (float)(int)this._maximum[k] * num2); + } + this._points[0] = this._points[1]; + this._points[this._points.Length - 1] = this._points[this._points.Length - 2]; + this._graphics.DrawLines(SpectrumAnalyzer._maximumPen, this._points); + } + else + { + this._points[0] = this._points[1]; + this._points[this._points.Length - 1] = this._points[this._points.Length - 2]; + this._graphics.DrawLines(SpectrumAnalyzer._spectrumPen, this._points); + } + } + } + } + + private void DrawStatusText() + { + if (!string.IsNullOrEmpty(this._statusText)) + { + this._graphics.DrawString(this._statusText, SpectrumAnalyzer._statusFont, Brushes.Silver, 7f, 7f); + } + } + + protected override void OnPaint(PaintEventArgs e) + { + SpectrumAnalyzer.ConfigureGraphics(e.Graphics); + e.Graphics.DrawImageUnscaled(this._buffer, 0, 0); + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + if (base.ClientRectangle.Width > this._lrMargin && base.ClientRectangle.Height >= this._tbMargin) + { + this._buffer.Dispose(); + this._graphics.Dispose(); + this._bkgBuffer.Dispose(); + this._bkgGraphics.Dispose(); + this._buffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._graphics = Graphics.FromImage(this._buffer); + SpectrumAnalyzer.ConfigureGraphics(this._graphics); + this._bkgBuffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._bkgGraphics = Graphics.FromImage(this._bkgBuffer); + SpectrumAnalyzer.ConfigureGraphics(this._graphics); + int num = base.ClientRectangle.Width - 2 * this._lrMargin; + byte[] spectrum = this._spectrum; + this._spectrum = new byte[num]; + this._maximum = new byte[num]; + this._timout = new byte[num]; + this._peaks = new bool[num]; + if (spectrum != null) + { + Fourier.SmoothCopy(spectrum, this._spectrum, spectrum.Length, 1f, 0); + } + else + { + for (int i = 0; i < this._spectrum.Length; i++) + { + this._spectrum[i] = 0; + } + } + this._temp = new byte[num]; + this._points = new Point[num + 2]; + if (this._spectrumWidth > 0) + { + this._xIncrement = this._scale * (float)base.ClientRectangle.Width / (float)this._spectrumWidth; + } + if (this._gradientBrush != null) + { + this._gradientBrush.Dispose(); + } + this._gradientBrush = new LinearGradientBrush(new Rectangle(0, this._tbMargin, base.ClientRectangle.Width, base.ClientRectangle.Height - 2 * this._tbMargin), Color.White, Color.Black, LinearGradientMode.Vertical); + this.newGradientBrush(null); + this.newBackgroundBrush(null); + this._sMeter.Position(base.ClientRectangle.Width - 130, 25, 120, 120); + if (this._dataType == DataType.IF) + { + this.ApplyZoom(); + } + this._drawBackgroundNeeded = true; + this.Perform(); + } + } + + private void newGradientBrush(ColorBlend blend = null) + { + if (blend != null) + { + if (SpectrumAnalyzer._gradientColorBlend == null || SpectrumAnalyzer._gradientColorBlend.Colors.Length != blend.Colors.Length) + { + SpectrumAnalyzer._gradientColorBlend = new ColorBlend(blend.Colors.Length); + } + for (int i = 0; i < blend.Colors.Length; i++) + { + SpectrumAnalyzer._gradientColorBlend.Colors[i] = Color.FromArgb(180, blend.Colors[i]); + SpectrumAnalyzer._gradientColorBlend.Positions[i] = blend.Positions[i]; + } + } + else if (SpectrumAnalyzer._gradientColorBlend == null) + { + return; + } + if (SpectrumAnalyzer._spectrumFill == 1) + { + this._gradientBrush.InterpolationColors = SpectrumAnalyzer._gradientColorBlend; + } + if (SpectrumAnalyzer._spectrumFill == 3) + { + this.fillGradientVector(SpectrumAnalyzer._gradientColorBlend, 255); + } + } + + private void newBackgroundBrush(Color? color = default(Color?)) + { + if (color.HasValue) + { + SpectrumAnalyzer._backgroundColor = color.Value; + } + if (this._backgroundBrush != null) + { + this._backgroundBrush.Dispose(); + } + this._backgroundBrush = Utils.BackgroundBrush(base.Name, SpectrumAnalyzer._backgroundColor, base.ClientRectangle, true, false); + this._drawBackgroundNeeded = true; + } + + protected override void OnPaintBackground(PaintEventArgs e) + { + } + + protected virtual void OnFrequencyChanged(FrequencyEventArgs e) + { + if (this.FrequencyChanged != null) + { + this.FrequencyChanged(this, e); + } + } + + protected virtual void OnDisplayFrequencyChanged(FrequencyEventArgs e) + { + if (this.DisplayFrequencyChanged != null) + { + this.DisplayFrequencyChanged(this, e); + } + } + + protected virtual void OnCenterFrequencyChanged(FrequencyEventArgs e) + { + if (this.CenterFrequencyChanged != null) + { + this.CenterFrequencyChanged(this, e); + } + } + + protected virtual void OnBandwidthChanged(BandwidthEventArgs e) + { + if (this.BandwidthChanged != null) + { + this.BandwidthChanged(this, e); + } + } + + protected virtual void OnAutoZoomed() + { + if (this.AutoZoomed != null) + { + this.AutoZoomed(this, null); + } + } + + protected virtual void OnTimeChanged() + { + if (this.TimeChanged != null) + { + this.TimeChanged(this, null); + } + } + + protected virtual void OnNotchChanged(NotchEventArgs e) + { + if (this.NotchChanged != null) + { + this.NotchChanged(this, e); + } + } + + private void UpdateNotch(int n, int f, int bw, bool act) + { + if (f == this._notches[n].Offset && bw == this._notches[n].Width && act == this._notches[n].Active) + { + return; + } + this._notches[n].Offset = f; + this._notches[n].Width = bw; + this._notches[n].Active = act; + this.OnNotchChanged(new NotchEventArgs(n, f, bw, act)); + this._performNeeded = true; + } + + private void UpdateFrequency(long f) + { + long num = this._centerFrequency - this._spectrumWidth / 2; + if (f < num) + { + f = num; + } + long num2 = this._centerFrequency + this._spectrumWidth / 2; + if (f > num2) + { + f = num2; + } + if (this._useSnap) + { + f = (f + Math.Sign(f) * this._stepSize / 2) / this._stepSize * this._stepSize; + } + if (f != this._frequency) + { + FrequencyEventArgs frequencyEventArgs = new FrequencyEventArgs(f); + this.OnFrequencyChanged(frequencyEventArgs); + if (!frequencyEventArgs.Cancel) + { + this._frequency = frequencyEventArgs.Frequency; + this._performNeeded = true; + } + } + } + + private bool UpdateDisplayFrequency(long f) + { + long num = (long)((float)(this._centerFrequency - this.SpectrumWidth / 2) + (float)this._spectrumWidth / this._scale / 2f); + if (f < num) + { + f = num; + } + long num2 = (long)((float)(this._centerFrequency + this.SpectrumWidth / 2) - (float)this._spectrumWidth / this._scale / 2f); + if (f > num2) + { + f = num2; + } + if (f != this._displayCenterFrequency) + { + FrequencyEventArgs e = new FrequencyEventArgs(f); + this.OnDisplayFrequencyChanged(e); + } + if (f > num) + { + return f < num2; + } + return false; + } + + private void UpdateCenterFrequency(long f) + { + if (f < 0) + { + f = 0L; + } + int num = Math.Min(1000, this._stepSize); + if (this._centerSnap) + { + f = (f + Math.Sign(f) * num / 2) / num * num; + } + if (f != this._centerFrequency) + { + FrequencyEventArgs frequencyEventArgs = new FrequencyEventArgs(f); + this.OnCenterFrequencyChanged(frequencyEventArgs); + if (!frequencyEventArgs.Cancel) + { + long num2 = frequencyEventArgs.Frequency - this._centerFrequency; + this._displayCenterFrequency += num2; + this._centerFrequency = frequencyEventArgs.Frequency; + this._drawBackgroundNeeded = true; + } + } + } + + private void UpdateBandwidth(int bw, int of) + { + int num = 1; + if (this._bandType == BandType.Center && this._sMeter.DetectorType != DetectorType.CW) + { + num = 2; + } + bw /= num; + int num2 = (bw < 100) ? 1 : ((bw >= 1000) ? ((bw >= 10000) ? ((bw >= 30000) ? 10000 : 1000) : 100) : 10); + bw = Math.Max(10, num2 * (bw / num2)) * num; + if (bw == this._filterBandwidth && of == this._filterOffset) + { + return; + } + BandwidthEventArgs bandwidthEventArgs = new BandwidthEventArgs(bw, of); + this.OnBandwidthChanged(bandwidthEventArgs); + if (!bandwidthEventArgs.Cancel) + { + this._filterBandwidth = bandwidthEventArgs.Bandwidth; + this._filterOffset = bandwidthEventArgs.Offset; + this._performNeeded = true; + } + } + + protected override void OnMouseDown(MouseEventArgs e) + { + base.OnMouseDown(e); + if (e.Button == MouseButtons.Left) + { + this._oldX = e.X; + this._oldY = e.Y; + int notch; + if (this._dataType == DataType.IF && (notch = this.insideNotch((float)e.X)) >= 0) + { + this._notch = notch; + this._oldValue = this._notches[this._notch].Offset; + this._changingNotchOffset = true; + } + else if (this._dataType == DataType.IF && (notch = this.sideOfNotch((float)e.X)) >= 0) + { + this._notch = notch; + this._oldValue = this._notches[this._notch].Width; + this._changingNotchWidth = true; + } + else if (this._dataType == DataType.RF && this.insidePassband((float)e.X)) + { + this._oldFrequency = this._frequency; + this._changingFrequency = true; + } + else if (this.sideOfPassband((float)e.X)) + { + this._oldFilterBandwidth = this._filterBandwidth; + this._oldFilterOffset = this._filterOffset; + this._changingBandwidth = (((float)e.X > (this._lower + this._upper) / 2f) ? 1 : (-1)); + } + else if (this.inScalingCorner((float)e.X, (float)e.Y)) + { + this._drawBackgroundNeeded = true; + if ((double)e.Y < 1.5 * (double)this._tbMargin) + { + this._changingScale = 1; + this._oldPower = this._maxPower; + } + else + { + this._changingScale = -1; + this._oldPower = this._minPower; + } + } + else if (this._dataType == DataType.RF && e.X < 30) + { + if (this._centerFixed && (double)this._scale > 1.001) + { + this.UpdateFrequency(this._frequency - this._centerStep); + } + else + { + this.UpdateCenterFrequency(this._centerFrequency - this._centerStep); + } + } + else if (this._dataType == DataType.RF && e.X > base.ClientRectangle.Width - 30) + { + if (this._centerFixed && (double)this._scale > 1.001) + { + this.UpdateFrequency(this._frequency + this._centerStep); + } + else + { + this.UpdateCenterFrequency(this._centerFrequency + this._centerStep); + } + } + else if (e.Y < this._tbMargin && this._centerFrequency <= 30000000) + { + if (this._dataType == DataType.RF) + { + this.ShowStationList(); + } + } + else if (this._dataType != 0) + { + this._oldFrequency = this._frequency; + if (this._dataType == DataType.IF) + { + this._changingFrequency = true; + } + } + else if (!this._centerFixed || (double)this._scale <= 1.001) + { + this._oldCenterFrequency = this._centerFrequency; + this._changingCenterFrequency = true; + this._oldFrequency = 1L; + } + else + { + this._oldDisplayFrequency = this._displayCenterFrequency; + this._changingZoomFrequency = true; + this._oldFrequency = this._frequency; + } + } + else if (e.Button == MouseButtons.Right) + { + this.ContextMenuStrip = this._contextMenu; + if (this._dataType == DataType.RF) + { + this._oldX = e.X; + if (!this._centerFixed || (double)this._scale <= 1.001) + { + this._oldCenterFrequency = this._centerFrequency; + this._changingCenterFrequency = true; + this._oldFrequency = -this._frequency; + } + else + { + this._oldDisplayFrequency = this._displayCenterFrequency; + this._changingZoomFrequency = true; + this._oldFrequency = -this._frequency; + } + } + else if (this._dataType == DataType.IF && this.insidePassband((float)e.X)) + { + this.ContextMenuStrip = null; + int num = this.insideNotch((float)e.X); + if (num >= 0 && this._notches[num].Width < 0) + { + num = -1; + } + if (num >= 0) + { + this.UpdateNotch(num, this._notches[num].Offset, -Math.Abs(this._notches[num].Width), false); + } + else + { + int f = (int)((float)((e.X - base.ClientRectangle.Width / 2) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin)); + for (num = 0; num < 4 && this._notches[num].Active; num++) + { + } + if (num < 4) + { + if (this._notches[num].Width == 0) + { + this._notches[num].Width = this._filterBandwidth / 30; + } + this.UpdateNotch(num, f, Math.Abs(this._notches[num].Width), true); + } + } + } + } + } + + protected override void OnMouseUp(MouseEventArgs e) + { + base.OnMouseUp(e); + if ((this._changingCenterFrequency || this._changingFrequency || this._changingZoomFrequency) && e.X == this._oldX) + { + long f = (long)((float)((this._oldX - base.ClientRectangle.Width / 2) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._displayCenterFrequency); + if (this._oldFrequency >= 0) + { + this.UpdateFrequency(f); + } + } + if (this._changingNotchOffset && e.X == this._oldX) + { + this.UpdateNotch(this._notch, this._notches[this._notch].Offset, this._notches[this._notch].Width, !this._notches[this._notch].Active); + } + this._changingCenterFrequency = false; + if (this._changingBandwidth != 0) + { + this.OnAutoZoomed(); + } + this._changingBandwidth = 0; + this._changingZoomFrequency = false; + this._changingFrequency = false; + this._changingNotchOffset = false; + this._changingNotchWidth = false; + if (this._changingScale != 0) + { + this._drawBackgroundNeeded = true; + } + this._changingScale = 0; + } + + protected override void OnMouseMove(MouseEventArgs e) + { + base.OnMouseMove(e); + this._hotTrackNeeded = true; + this._trackingX = e.X; + this._trackingY = e.Y; + this._trackingFrequency = (long)((float)((e.X - base.ClientRectangle.Width / 2) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._displayCenterFrequency); + if (this._useSnap) + { + this._trackingFrequency = (this._trackingFrequency + Math.Sign(this._trackingFrequency) * this._stepSize / 2) / this._stepSize * this._stepSize; + } + float num = (float)(base.ClientRectangle.Height - 2 * this._tbMargin) / (this._maxPower - this._minPower); + this._trackingPower = this._minPower - (float)(this._trackingY + this._tbMargin - base.ClientRectangle.Height) / num; + if (this._changingNotchOffset) + { + int num2 = e.X - this._oldX; + long num3 = (long)((float)(num2 * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._oldValue); + this.UpdateNotch(this._notch, (int)num3, this._notches[this._notch].Width, this._notches[this._notch].Active); + } + else if (this._changingNotchWidth) + { + int num4 = (((float)this._oldX > this._notches[this._notch].Xpos) ? (e.X - this._oldX) : (this._oldX - e.X)) * 2; + num4 = (int)((float)(num4 * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._oldValue); + this.UpdateNotch(this._notch, this._notches[this._notch].Offset, Math.Max(num4, 50), this._notches[this._notch].Active); + } + else if (this._changingFrequency) + { + int num5 = (this._dataType == DataType.RF) ? (e.X - this._oldX) : (this._oldX - e.X); + long f = (long)((float)(num5 * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._oldFrequency); + this.UpdateFrequency(f); + } + else + { + if (this._changingZoomFrequency) + { + if (this._oldX != e.X) + { + this.ContextMenuStrip = null; + long num6 = (long)((float)((this._oldX - e.X) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin)); + if (this.UpdateDisplayFrequency(this._oldDisplayFrequency + num6) && this._oldFrequency > 0) + { + bool useSnap = this._useSnap; + this._useSnap = false; + this.UpdateFrequency(this._oldFrequency + num6); + this._useSnap = useSnap; + } + goto IL_0846; + } + return; + } + if (this._changingCenterFrequency) + { + if (this._oldX != e.X) + { + long f2 = (long)((float)((this._oldX - e.X) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._oldCenterFrequency); + this.UpdateCenterFrequency(f2); + if (this._oldFrequency < 0) + { + this.ContextMenuStrip = null; + this.UpdateFrequency(-this._oldFrequency); + } + goto IL_0846; + } + return; + } + if (this._changingBandwidth != 0) + { + if (e.X != this._oldX) + { + int of = this._filterOffset; + int num7 = 0; + switch (this._bandType) + { + case BandType.Upper: + num7 = e.X - this._oldX; + if (this._dataType == DataType.IF) + { + num7 *= 2; + } + else if (this._dataType == DataType.AF) + { + num7 = num7; + } + break; + case BandType.Lower: + num7 = this._oldX - e.X; + if (this._dataType == DataType.IF) + { + num7 *= 2; + } + else if (this._dataType == DataType.AF) + { + num7 *= -1; + } + break; + case BandType.Center: + if (!this._indepSideband) + { + num7 = (((float)this._oldX > (this._lower + this._upper) / 2f) ? (e.X - this._oldX) : (this._oldX - e.X)) * 2; + } + else + { + float num8 = (float)base.ClientRectangle.Width / 2f + (float)(this._frequency - this._displayCenterFrequency) * this._xIncrement; + float num9 = 10f * this._xIncrement; + float num10 = Math.Max((float)this._oldFilterBandwidth * this._xIncrement, 2f); + float num11 = num8 + (float)this._oldFilterOffset * this._xIncrement; + if (this._changingBandwidth > 0) + { + num7 = e.X - this._oldX; + if (this._dataType == DataType.IF) + { + num7 *= 2; + } + this._upper = num11 + num10 / 2f + (float)num7; + if (this._upper < num8 + num9) + { + return; + } + } + else + { + num7 = this._oldX - e.X; + if (this._dataType == DataType.IF) + { + num7 *= 2; + } + this._lower = num11 - num10 / 2f - (float)num7; + if (this._lower > num8 - num9) + { + return; + } + } + of = (int)(((this._lower + this._upper) / 2f - num8) / this._xIncrement); + } + break; + } + num7 = (int)((float)(num7 * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._oldFilterBandwidth); + this.UpdateBandwidth(num7, of); + goto IL_0846; + } + return; + } + if (this._changingScale != 0) + { + float num12 = (float)(e.Y - this._oldY) * (this._maxPower - this._minPower) / (float)(base.ClientRectangle.Height - 2 * this._tbMargin); + if (this._changingScale > 0) + { + this._maxPower = Math.Min(20f, Math.Max(this._minPower + 30f, this._oldPower + num12)); + } + else + { + this._minPower = Math.Max(-160f, Math.Min(this._maxPower - 30f, this._oldPower + num12)); + } + this._drawBackgroundNeeded = true; + } + else if (this._dataType == DataType.IF && this.sideOfNotch((float)e.X) >= 0) + { + this.Cursor = Mouses.ChangeBW; + } + else if (this.sideOfPassband((float)e.X)) + { + this.Cursor = Mouses.ChangeBW; + } + else if (this._dataType == DataType.IF && this.insideNotch((float)e.X) >= 0) + { + this.Cursor = Mouses.Passband; + } + else if (this._changingScale != 0 || this.inScalingCorner((float)e.X, (float)e.Y)) + { + this.Cursor = Mouses.Scale; + } + else if (this._dataType == DataType.RF && e.X < 30) + { + this.Cursor = Mouses.RangeDown; + } + else if (this._dataType == DataType.RF && e.X > base.ClientRectangle.Width - 30) + { + this.Cursor = Mouses.RangeUp; + } + else if (this._dataType == DataType.RF && (float)e.X > this._lower && (float)e.X < this._upper) + { + this.Cursor = Mouses.Passband; + } + else if (e.Y < this._tbMargin) + { + this.Cursor = Mouses.StationList; + } + else if (this._dataType != DataType.AF) + { + this.Cursor = Mouses.Spectrum; + } + else + { + this.Cursor = Mouses.Static; + } + } + goto IL_0846; + IL_0846: + this._performNeeded = true; + } + + private bool inScalingCorner(float x, float y) + { + if (!(x < 30f) && !(x > (float)(base.ClientRectangle.Width - 30))) + { + return false; + } + if (!((double)y < (double)this._tbMargin * 1.5)) + { + return (double)y > (double)base.ClientRectangle.Height - (double)this._tbMargin * 1.5; + } + return true; + } + + private bool insidePassband(float x) + { + float num = Math.Max((float)(this._filterBandwidth + this._filterOffset) * this._xIncrement, 2f); + if (x > this._lower && x < this._upper) + { + return num < (float)base.ClientRectangle.Width; + } + return false; + } + + private bool sideOfPassband(float x) + { + if (Math.Abs(x - this._lower + 4f) <= 4f && (this._bandType == BandType.Center || this._bandType == BandType.Lower) && this._dataType != DataType.AF) + { + return true; + } + if (Math.Abs(x - this._upper - 4f) <= 4f) + { + if (this._bandType != BandType.Center && this._bandType != BandType.Upper) + { + return this._dataType == DataType.AF; + } + return true; + } + return false; + } + + private int insideNotch(float x) + { + for (int i = 0; i < 4; i++) + { + if (this._notches[i].Width > 0 && x > this._notches[i].Xpos - this._notches[i].Xhalf && x < this._notches[i].Xpos + this._notches[i].Xhalf) + { + return i; + } + } + return -1; + } + + private int sideOfNotch(float x) + { + for (int i = 0; i < 4; i++) + { + if (this._notches[i].Width > 0 && (Math.Abs(x - (this._notches[i].Xpos - this._notches[i].Xhalf) + 4f) <= 4f || Math.Abs(x - (this._notches[i].Xpos + this._notches[i].Xhalf) - 4f) <= 4f)) + { + return i; + } + } + return -1; + } + + protected override void OnMouseWheel(MouseEventArgs e) + { + base.OnMouseWheel(e); + int num = -1; + if (this._dataType == DataType.IF) + { + num = this.insideNotch((float)e.X); + } + if (num < 0) + { + this.UpdateFrequency(this._frequency + (this._useSnap ? (this._stepSize * Math.Sign(e.Delta)) : e.Delta)); + } + else + { + this.UpdateNotch(num, this._notches[num].Offset, this._notches[num].Width + e.Delta, this._notches[num].Active); + } + } + + protected override void OnMouseLeave(EventArgs e) + { + base.OnMouseLeave(e); + this._hotTrackNeeded = false; + this._performNeeded = true; + } + + protected override void OnMouseEnter(EventArgs e) + { + base.OnMouseEnter(e); + this._hotTrackNeeded = true; + } + + protected override bool IsInputKey(Keys keyData) + { + switch (keyData) + { + case Keys.Prior: + case Keys.Next: + case Keys.Left: + case Keys.Up: + case Keys.Right: + case Keys.Down: + return true; + case Keys.LButton | Keys.MButton | Keys.Space | Keys.Shift: + case Keys.RButton | Keys.MButton | Keys.Space | Keys.Shift: + case Keys.LButton | Keys.RButton | Keys.MButton | Keys.Space | Keys.Shift: + case Keys.Back | Keys.Space | Keys.Shift: + return true; + default: + return base.IsInputKey(keyData); + } + } + + protected override void OnKeyDown(KeyEventArgs e) + { + base.OnKeyDown(e); + switch (e.KeyData) + { + case Keys.LButton | Keys.RButton | Keys.MButton | Keys.Space | Keys.Shift: + this.UpdateCenterFrequency(this._centerFrequency + this._stepSize); + break; + case Keys.LButton | Keys.MButton | Keys.Space | Keys.Shift: + this.UpdateCenterFrequency(this._centerFrequency - this._stepSize); + break; + case Keys.Prior: + case Keys.Up: + if (this._centerFixed && (double)this._scale > 1.001) + { + this.UpdateFrequency(this._frequency + this._centerStep); + } + else + { + this.UpdateCenterFrequency(this._centerFrequency + this._centerStep); + } + break; + case Keys.Next: + case Keys.Down: + if (this._centerFixed && (double)this._scale > 1.001) + { + this.UpdateFrequency(this._frequency - this._centerStep); + } + else + { + this.UpdateCenterFrequency(this._centerFrequency - this._centerStep); + } + break; + case Keys.Left: + this._hotTrackNeeded = false; + if (!this._centerFixed && (double)(this._frequency - this.StepSize) < (double)this._displayCenterFrequency - (double)((float)this._spectrumWidth / this._scale) / 2.2) + { + this.UpdateCenterFrequency(this._centerFrequency - this.StepSize); + } + else + { + this.UpdateFrequency(this._frequency - this.StepSize); + } + break; + case Keys.Right: + this._hotTrackNeeded = false; + if (!this._centerFixed && (double)(this._frequency + this.StepSize) > (double)this._displayCenterFrequency + (double)((float)this._spectrumWidth / this._scale) / 2.2) + { + this.UpdateCenterFrequency(this._centerFrequency + this.StepSize); + } + else + { + this.UpdateFrequency(this._frequency + this.StepSize); + } + break; + } + } + + private long getBasebandCenter() + { + if (this._dataType == DataType.AF) + { + return this._spectrumWidth / 2; + } + if (this._bandType == BandType.Lower) + { + return this._frequency - this._filterBandwidth / 2; + } + if (this._bandType == BandType.Upper) + { + return this._frequency + this._filterBandwidth / 2; + } + return this._frequency + this._filterOffset; + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/Waterfall.cs b/SDRSharper.PanView/SDRSharp.PanView/Waterfall.cs new file mode 100644 index 0000000..b29053a --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/Waterfall.cs @@ -0,0 +1,2142 @@ +using SDRSharp.Radio; +using System; +using System.Collections; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Drawing.Imaging; +using System.Windows.Forms; + +namespace SDRSharp.PanView +{ + public class Waterfall : UserControl + { + private const float TrackingFontSize = 14f; + + private const float TimestampFontSize = 12f; + + private const int MinLogFrequency = 40; + + private const int ScaleMargin = 30; + + private const int GradientMargin = 30; + + public const float MaxZoom = 4f; + + public const int CursorSnapDistance = 4; + + public const int RightClickSnapDistance = 500; + + private Counter _drawTmr = new Counter(); + + private int _lrMargin = 30; + + private int _tbMargin = 5; + + private bool _ver = true; + + private double _attack; + + private double _decay; + + private Bitmap _buffer; + + private Bitmap _buffer2; + + private Rectangle _bufferRect; + + private Graphics _graphics; + + private Graphics _graphics2; + + private BandType _bandType; + + private int _filterBandwidth; + + private float _x1Increment; + + private float _yIncrement; + + private byte[] _temp; + + private byte[] _powerSpectrum; + + private byte[] _scaledPowerSpectrum; + + private long _centerFrequency; + + private long _spectrumWidth; + + private int _stepSize; + + private int _centerStep; + + private long _frequency; + + private float _lower; + + private float _upper; + + private float _scale = 1f; + + private long _displayCenterFrequency; + + private int _changingBandwidth; + + private int _changingScale; + + private float _oldPower; + + private bool _changingFrequency; + + private bool _changingZoomFrequency; + + private bool _changingCenterFrequency; + + private bool _mouseIn; + + private int _oldX1; + + private int _oldY; + + private long _oldFrequency; + + private long _oldCenterFrequency; + + private long _oldDisplayFrequency; + + private int _oldFilterBandwidth; + + private int _filterOffset; + + private int _oldFilterOffset; + + private bool _indepSideband; + + private bool _centerFixed; + + private int[] _gradientPixels; + + private Hashtable _gradientHash; + + private bool _useSmoothing; + + private bool _useSnap; + + private bool _centerSnap; + + private int _trackingY; + + private int _trackingX; + + private long _trackingFrequency; + + private int _bufLines; + + private int _scanLines; + + private int _useTimestamps; + + private int _timestampInterval; + + private int _scanLineMsec = 999; + + private DateTime _recordStart; + + private DateTime _waveStart; + + private DateTime _oldStart; + + private float _trackingPower; + + private int _timeOut; + + private int _signalTmo; + + private int _paintTmo; + + private Color _backgroundColor; + + private LinearGradientBrush _gradientBrush; + + private PathGradientBrush _backgroundBrush; + + private ColorBlend _gradientColorBlend; + + private float _minPower; + + private float _maxPower; + + private DataType _dataType; + + private int _showDbm; + + private DetectorType _detectorType; + + private ContextMenuStrip _contextMenu; + + private Brush _transparentBrush = new SolidBrush(Color.FromArgb(100, Color.DarkGray)); + + private Brush _timeBackBrush = new SolidBrush(Color.FromArgb(170, 10, 10, 10)); + + private static Brush _fontBrush = new SolidBrush(Color.Silver); + + private static Pen _hotTrackPen = new Pen(Color.Yellow); + + private static Pen _carrierPen = new Pen(Color.Red, 1f); + + private static Pen _outlinePen = new Pen(Color.Black, 4f); + + private static Pen _axisPen = new Pen(Color.FromArgb(120, 120, 120)); + + private static FontFamily _fontFamily = new FontFamily("Arial"); + + private static Font _font = new Font("Arial", 8f); + + private LinLog _linlog = new LinLog(); + + private bool _showLog; + + [Browsable(false)] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + public ColorBlend GradientColorBlend + { + get + { + return this._gradientColorBlend; + } + set + { + this.NewGradientBrush(value); + } + } + + public long Frequency + { + get + { + return this._frequency; + } + set + { + if (this._frequency != value) + { + if (this._dataType == DataType.RF && this._centerFixed && (double)this._scale > 1.001) + { + long num = (long)((float)this._displayCenterFrequency + (float)this._spectrumWidth / this._scale / 2f); + long num2 = (long)((float)this._displayCenterFrequency - (float)this._spectrumWidth / this._scale / 2f); + long f = this._displayCenterFrequency + value - this._frequency; + if (value < num2 || value > num) + { + this.UpdateDisplayFrequency(f); + } + } + this._frequency = value; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + } + } + } + } + + public long DisplayFrequency + { + get + { + return this._displayCenterFrequency; + } + set + { + if (this._displayCenterFrequency != value) + { + this._displayCenterFrequency = value; + } + } + } + + public long CenterFrequency + { + get + { + return this._centerFrequency; + } + set + { + if (this._centerFrequency != value) + { + long num = value - this._centerFrequency; + this._displayCenterFrequency += num; + this._centerFrequency = value; + this.DrawFrequencyScale(); + } + } + } + + public int SpectrumWidth + { + get + { + return (int)this._spectrumWidth; + } + set + { + if (this._spectrumWidth != value) + { + this._spectrumWidth = value; + this.ApplyZoom(-1f); + } + } + } + + public int FilterBandwidth + { + get + { + return this._filterBandwidth; + } + set + { + if (this._filterBandwidth != value) + { + this._filterBandwidth = value; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + } + } + } + } + + public int FilterOffset + { + get + { + return this._filterOffset; + } + set + { + if (this._filterOffset != value) + { + this._filterOffset = value; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + } + } + } + } + + public BandType BandType + { + get + { + return this._bandType; + } + set + { + if (this._bandType != value) + { + this._bandType = value; + if (this._dataType != 0) + { + this.CenterFrequency = this.getBasebandCenter(); + } + } + } + } + + public float Zoom + { + get + { + return this._scale; + } + set + { + if (value <= 0f) + { + int num = Math.Max(this._filterBandwidth, 340); + if (this._dataType == DataType.AF && this._bandType == BandType.Center) + { + num /= 2; + } + if (this._dataType == DataType.AF && this._detectorType == DetectorType.CW) + { + num = 800; + } + value = Math.Max(1f, (float)this._spectrumWidth / ((float)num * 1.5f)); + } + if (this._scale != value) + { + this._scale = value; + this.ApplyZoom(-1f); + } + } + } + + public DateTime RecordStart + { + get + { + return this._recordStart; + } + set + { + this._recordStart = value; + } + } + + public DateTime WaveStart + { + get + { + return this._waveStart; + } + set + { + this._waveStart = value; + if (this.UseTimestamps == 0) + { + this._oldStart = value; + } + this._scanLines = (this._ver ? 133 : 175) - 300 / this._scanLineMsec; + } + } + + public int TimestampInterval + { + get + { + return this._timestampInterval; + } + set + { + this._timestampInterval = value; + } + } + + public int UseTimestamps + { + get + { + return this._useTimestamps; + } + set + { + this._useTimestamps = value; + } + } + + public int ScanLineMsec + { + set + { + this._scanLineMsec = value; + } + } + + public Color BackgroundColor + { + get + { + return this._backgroundColor; + } + set + { + this.newBackgroundBrush(value); + } + } + + public bool Horizontal + { + get + { + return !this._ver; + } + set + { + this._ver = !value; + if (this._ver) + { + this._tbMargin = 0; + } + this.OnResize(null); + } + } + + public float MaxPower + { + get + { + return this._maxPower; + } + set + { + this._maxPower = value; + this.DrawGradient(); + } + } + + public float MinPower + { + get + { + return this._minPower; + } + set + { + this._minPower = value; + this.DrawGradient(); + } + } + + public int ShowDbm + { + get + { + return this._showDbm; + } + set + { + this._showDbm = value; + this.DrawGradient(); + } + } + + public DetectorType DetectorType + { + set + { + this._detectorType = value; + } + } + + public bool IndepSideband + { + get + { + return this._indepSideband; + } + set + { + this._indepSideband = value; + } + } + + public bool CenterFixed + { + get + { + return this._centerFixed; + } + set + { + this._centerFixed = value; + } + } + + public ContextMenuStrip ContextMnu + { + set + { + this._contextMenu = value; + } + } + + public bool UseSmoothing + { + get + { + return this._useSmoothing; + } + set + { + this._useSmoothing = value; + } + } + + public double Decay + { + get + { + return this._decay; + } + set + { + this._decay = value; + } + } + + public double Attack + { + get + { + return this._attack; + } + set + { + this._attack = value; + } + } + + public int StepSize + { + get + { + return this._stepSize; + } + set + { + this._stepSize = value; + } + } + + public int CenterStep + { + get + { + return this._centerStep; + } + set + { + this._centerStep = value; + } + } + + public bool UseSnap + { + get + { + return this._useSnap; + } + set + { + this._useSnap = (this._dataType != DataType.IF && value); + } + } + + public bool CenterSnap + { + set + { + this._centerSnap = value; + } + } + + public bool ShowLog + { + set + { + this._showLog = value; + this.DrawFrequencyScale(); + } + } + + public DataType DataType + { + get + { + return this._dataType; + } + set + { + this._dataType = value; + if (this._dataType == DataType.RF) + { + this._lrMargin = 0; + } + else + { + this.CenterFrequency = this.getBasebandCenter(); + } + } + } + + public event ManualFrequencyChange FrequencyChanged; + + public event ManualFrequencyChange CenterFrequencyChanged; + + public event ManualFrequencyChange DisplayFrequencyChanged; + + public event ManualBandwidthChange BandwidthChanged; + + public event EventHandler AutoZoomed; + + public Waterfall() + { + if (this._ver) + { + this._powerSpectrum = new byte[base.ClientRectangle.Width - 2 * this._tbMargin]; + } + else + { + this._powerSpectrum = new byte[base.ClientRectangle.Height - 2 * this._tbMargin]; + } + this._temp = new byte[this._powerSpectrum.Length]; + this._buffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._buffer2 = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._graphics = Graphics.FromImage(this._buffer); + SpectrumAnalyzer.ConfigureGraphics(this._graphics); + this._graphics2 = Graphics.FromImage(this._buffer2); + SpectrumAnalyzer.ConfigureGraphics(this._graphics2); + base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true); + base.SetStyle(ControlStyles.DoubleBuffer, true); + base.SetStyle(ControlStyles.UserPaint, true); + base.SetStyle(ControlStyles.AllPaintingInWmPaint, true); + base.UpdateStyles(); + } + + ~Waterfall() + { + this._buffer.Dispose(); + this._buffer2.Dispose(); + this._graphics.Dispose(); + this._graphics2.Dispose(); + this._gradientBrush.Dispose(); + } + + private void ApplyZoom(float scale = -1f) + { + if (this._spectrumWidth > 0) + { + if (this._dataType != DataType.IF) + { + this._displayCenterFrequency = this.GetDisplayCenterFrequency(); + } + if (this._ver) + { + this._x1Increment = this._scale * (float)(base.ClientRectangle.Width - 2 * this._lrMargin) / (float)this._spectrumWidth; + } + else + { + this._yIncrement = this._scale * (float)(base.ClientRectangle.Height - 2 * this._tbMargin) / (float)this._spectrumWidth; + } + } + } + + private long GetDisplayCenterFrequency() + { + long num = this._frequency; + switch (this._bandType) + { + case BandType.Lower: + num -= this._filterBandwidth / 2 + this._filterOffset; + break; + case BandType.Upper: + num += this._filterBandwidth / 2 + this._filterOffset; + break; + } + int num2 = (this._dataType != DataType.AF) ? 10 : 0; + long num3 = (long)((float)(this._centerFrequency - this._spectrumWidth / 2) - ((float)num - (float)this._spectrumWidth / this._scale / 2f)); + if (num3 > 0) + { + num += num3 + num2; + } + long num4 = (long)((float)num + (float)this._spectrumWidth / this._scale / 2f - (float)(this._centerFrequency + this._spectrumWidth / 2)); + if (num4 > 0) + { + num -= num4 + num2; + } + return num; + } + + public unsafe void RenderAndDraw(float* powerSpectrum, int length, int timeOut, int interval) + { + this._timeOut = Math.Min(this._timeOut, timeOut); + if (--this._timeOut <= 0) + { + this._timeOut = timeOut; + if (this._scaledPowerSpectrum == null || this._scaledPowerSpectrum.Length != length) + { + this._scaledPowerSpectrum = new byte[length]; + } + byte[] scaledPowerSpectrum = this._scaledPowerSpectrum; + fixed (byte* dest = scaledPowerSpectrum) + { + Fourier.ScaleFFT(powerSpectrum, dest, length, this.MinPower, this.MaxPower); + } + int num = (int)((float)length / this._scale); + int offset = (int)((double)(length - num) / 2.0 + (double)length * (double)(this._displayCenterFrequency - this._centerFrequency) / (double)this._spectrumWidth); + if (this._showLog) + { + this._linlog.MakeLog(this._scaledPowerSpectrum, length, 40L, this._spectrumWidth); + } + if (this._useSmoothing) + { + Fourier.SmoothCopy(this._scaledPowerSpectrum, this._temp, length, this._scale, offset); + for (int i = 0; i < this._powerSpectrum.Length; i++) + { + double num2 = (this._powerSpectrum[i] < this._temp[i]) ? this.Attack : this.Decay; + this._powerSpectrum[i] = (byte)Math.Round((double)(int)this._powerSpectrum[i] * (1.0 - num2) + (double)(int)this._temp[i] * num2); + } + } + else + { + Fourier.SmoothCopy(this._scaledPowerSpectrum, this._powerSpectrum, length, this._scale, offset); + } + this.Draw(); + } + if (--this._paintTmo <= 0) + { + this._paintTmo = 120 / interval; + if (!Utils.FastFFT) + { + this._paintTmo = 2; + } + if (this._paintTmo < 2) + { + this._paintTmo = 2; + } + if (this._mouseIn) + { + this.CopyMainBuffer(); + this.DrawCursor(); + if (this._dataType == DataType.RF) + { + this.DrawGradient(); + } + } + base.Invalidate(); + } + } + + public void Perform() + { + bool visible = base.Visible; + } + + private void Draw() + { + if (base.ClientRectangle.Width > this._lrMargin && base.ClientRectangle.Height > this._tbMargin) + { + this.InsertSpectrum(); + int num = this._ver ? this._timestampInterval : (this._timestampInterval * 2); + if (this._useTimestamps > 0 && ++this._scanLines >= num) + { + this._scanLines = 0; + this.DrawTimestamp(); + } + } + } + + private unsafe void InsertSpectrum() + { + if (this._gradientPixels != null && this._powerSpectrum != null && this._powerSpectrum.Length != 0) + { + BitmapData bitmapData = this._buffer.LockBits(base.ClientRectangle, ImageLockMode.ReadWrite, this._buffer.PixelFormat); + if (bitmapData.PixelFormat == PixelFormat.Format32bppArgb) + { + throw new ApplicationException("Wrong pixelformat."); + } + if (this._ver) + { + int len = (bitmapData.Width - this._lrMargin - 1) * 4; + for (int num = bitmapData.Height - 1; num > 0; num--) + { + int* src = (int*)((int)bitmapData.Scan0 + (num - 1) * bitmapData.Stride); + int* dest = (int*)((int)bitmapData.Scan0 + num * bitmapData.Stride); + Utils.Memcpy(dest, src, len); + } + } + else + { + int num2 = this._lrMargin * 4; + int num3 = (bitmapData.Width - 1) * 4 - num2; + for (int i = 0; i < bitmapData.Height; i++) + { + int* src = (int*)((int)bitmapData.Scan0 + i * bitmapData.Stride + num2); + if (num3 > 0) + { + Utils.Memcpy(src, src + 1, num3); + } + } + } + if (this._ver) + { + int* ptr = (int*)((byte*)(void*)bitmapData.Scan0 + (long)this._lrMargin * 4L); + for (int j = 0; j < this._powerSpectrum.Length; j++) + { + int val = this._powerSpectrum[j] * this._gradientPixels.Length / 255; + val = Math.Max(val, 0); + val = Math.Min(val, this._gradientPixels.Length - 1); + int* intPtr = ptr; + ptr = intPtr + 1; + *intPtr = this._gradientPixels[val]; + } + this._bufLines = Math.Min(++this._bufLines, base.ClientRectangle.Height - 2 * this._tbMargin); + } + else + { + int num4 = (bitmapData.Width - 1) * 4; + for (int k = 0; k < base.ClientRectangle.Height - 2 * this._tbMargin; k++) + { + int val2 = this._powerSpectrum[k] * this._gradientPixels.Length / 255; + val2 = Math.Max(val2, 0); + val2 = Math.Min(val2, this._gradientPixels.Length - 1); + int* ptr = (int*)((int)bitmapData.Scan0 + (bitmapData.Height - this._tbMargin - k - 1) * bitmapData.Stride + num4); + *ptr = this._gradientPixels[val2]; + } + this._bufLines = Math.Min(++this._bufLines, base.ClientRectangle.Width - this._lrMargin); + } + this._buffer.UnlockBits(bitmapData); + } + } + + private void DrawTimestamp() + { + Brush brush = Brushes.White; + DateTime dateTime; + if (this._waveStart.CompareTo(DateTime.Now) > 0) + { + dateTime = ((this._useTimestamps == 1) ? DateTime.Now : DateTime.UtcNow); + } + else + { + dateTime = this._recordStart.Add(DateTime.Now.Subtract(this._waveStart)); + if (this._waveStart != this._oldStart) + { + brush = Brushes.Yellow; + this._oldStart = this._waveStart; + if (this._ver) + { + this._graphics.DrawLine(Pens.Cyan, this._lrMargin, 15, base.ClientRectangle.Width - this._lrMargin, 15); + } + else + { + this._graphics.DrawLine(Pens.Black, base.ClientRectangle.Width - 20, Math.Max(20, this._tbMargin), base.ClientRectangle.Width - 20, base.ClientRectangle.Height - this._tbMargin); + } + } + } + if (this._ver) + { + this._graphics.FillRectangle(this._timeBackBrush, 5, 1, 50, 28); + this._graphics.DrawString(dateTime.ToString("dd:MMM:yy"), Waterfall._font, brush, 5f, 0f); + this._graphics.DrawString(dateTime.ToString("HH:mm:ss"), Waterfall._font, brush, 5f, 15f); + } + else + { + this._graphics.FillRectangle(this._timeBackBrush, base.ClientRectangle.Width - 50, 6, 46, 13); + this._graphics.DrawString(dateTime.ToString("HH:mm:ss"), Waterfall._font, brush, (float)(base.ClientRectangle.Width - 50), 5f); + } + } + + private void DrawCursor() + { + this._lower = 0f; + float num = 0f; + float num2 = 0f; + float num3 = this._ver ? this._x1Increment : this._yIncrement; + float num4 = Math.Max((float)(this._filterBandwidth + this._filterOffset) * num3, 2f); + float num5 = (!this._ver) ? ((float)base.ClientRectangle.Height / 2f + (float)(this._frequency - this._displayCenterFrequency) * num3) : ((float)base.ClientRectangle.Width / 2f + (float)(this._frequency - this._displayCenterFrequency) * num3); + switch (this._bandType) + { + case BandType.Upper: + num2 = (float)this._filterOffset * num3; + num = num4 - num2; + this._lower = num5; + break; + case BandType.Lower: + num2 = (float)this._filterOffset * num3; + num = num4 - num2; + this._lower = num5 - num; + break; + case BandType.Center: + { + num4 = Math.Max((float)this._filterBandwidth * num3, 2f); + num2 = (float)this._filterOffset * num3; + num = num4; + float num6 = num5 + num2; + this._lower = num6 - num4 / 2f; + break; + } + } + if (this.DataType == DataType.AF && this._bandType != BandType.Center) + { + this._lower = num5; + } + this._upper = this._lower + num; + if (this._ver && (num4 < (float)base.ClientRectangle.Width || (this._dataType == DataType.AF && num4 < (float)(2 * base.ClientRectangle.Width)))) + { + if (this._dataType == DataType.RF) + { + this._graphics2.FillRectangle(this._transparentBrush, (int)this._lower + 1, this._tbMargin, (int)num, base.ClientRectangle.Height - this._tbMargin); + } + else if (this._dataType == DataType.IF) + { + this._graphics2.FillRectangle(this._transparentBrush, this._lrMargin, 0, (int)this._lower - this._lrMargin + 1, base.ClientRectangle.Height); + this._graphics2.FillRectangle(this._transparentBrush, (float)((int)this._upper + 1), 0f, (float)(base.ClientRectangle.Width - this._lrMargin) - this._upper - 1f, (float)base.ClientRectangle.Height); + } + else + { + this._graphics2.FillRectangle(this._transparentBrush, (float)((int)this._upper + 1), 0f, (float)(base.ClientRectangle.Width - this._lrMargin) - this._upper - 1f, (float)base.ClientRectangle.Height); + } + if (num5 >= (float)this._lrMargin && num5 <= (float)(base.ClientRectangle.Width - this._lrMargin) && this._dataType != DataType.AF) + { + this._graphics2.DrawLine(Waterfall._carrierPen, num5, 0f, num5, (float)base.ClientRectangle.Height); + } + } + else if (!this._ver && (num4 < (float)base.ClientRectangle.Height || (this._dataType == DataType.AF && num4 < (float)(2 * base.ClientRectangle.Height)))) + { + if (this._dataType == DataType.RF) + { + this._graphics2.FillRectangle(this._transparentBrush, 0f, (float)base.ClientRectangle.Height - this._upper - 1f, (float)base.ClientRectangle.Width, (float)(int)num); + } + else if (this._dataType == DataType.IF) + { + this._graphics2.FillRectangle(this._transparentBrush, 0f, (float)this._tbMargin, (float)base.ClientRectangle.Width, (float)(base.ClientRectangle.Height - this._tbMargin) - this._upper - 1f); + this._graphics2.FillRectangle(this._transparentBrush, 0f, (float)base.ClientRectangle.Height - this._lower - 1f, (float)base.ClientRectangle.Width, this._lower - 1f - (float)this._tbMargin); + } + if (num5 >= (float)this._tbMargin && num5 <= (float)(base.ClientRectangle.Height - this._tbMargin) && this._dataType != DataType.AF) + { + this._graphics2.DrawLine(Waterfall._carrierPen, 0f, (float)base.ClientRectangle.Height - num5, (float)base.ClientRectangle.Width, (float)base.ClientRectangle.Height - num5); + } + } + if (!this._ver || this._trackingX < this._lrMargin || this._trackingX > base.ClientRectangle.Width - this._lrMargin) + { + if (this._ver) + { + return; + } + if (this._trackingY < this._tbMargin) + { + return; + } + if (this._trackingY > base.ClientRectangle.Height - this._tbMargin) + { + return; + } + } + if (!this._changingFrequency && !this._changingCenterFrequency && this._changingBandwidth == 0) + { + if (this._ver) + { + this._graphics2.DrawLine(Waterfall._hotTrackPen, this._trackingX, 0, this._trackingX, base.ClientRectangle.Height); + } + else + { + this._graphics2.DrawLine(Waterfall._hotTrackPen, 0, this._trackingY, base.ClientRectangle.Width, this._trackingY); + } + } + string text = ""; + if (this._changingFrequency) + { + text = "VFO = " + SpectrumAnalyzer.GetFrequencyDisplay(this._frequency, true); + } + else if (this._changingBandwidth != 0) + { + text = "BW = " + SpectrumAnalyzer.GetFrequencyDisplay(this._filterBandwidth, true); + } + else if (this._changingCenterFrequency) + { + text = "Center = " + SpectrumAnalyzer.GetFrequencyDisplay(this._centerFrequency, true); + } + else if (this._changingScale != 0) + { + text = "Scale"; + } + else + { + string arg = ""; + if (this._dataType != 0) + { + this._trackingPower = -128f; + } + else if (--this._signalTmo <= 0) + { + this._signalTmo = 15; + if (this._trackingX < 0 || this._trackingY < 0 || this._trackingX >= base.ClientRectangle.Width || this._trackingY >= base.ClientRectangle.Height) + { + this._trackingPower = -128f; + } + else + { + int num7 = this._buffer.GetPixel(this._trackingX, this._trackingY).ToArgb(); + if (num7 == -16777216) + { + this._trackingPower = -128f; + } + else + { + int num8 = -1; + if (this._gradientHash.Contains(num7)) + { + num8 = (int)this._gradientHash[num7]; + } + if (num8 >= 0) + { + this._trackingPower = this._minPower + (this._maxPower - this._minPower) * (float)num8 / (float)this._gradientPixels.Length; + } + } + } + } + if (this._trackingPower > -128f) + { + arg = Utils.Signal((int)this._trackingPower, this._showDbm, true); + } + string text2 = (this._trackingPower >= this._maxPower - 1f) ? "{0}\r\n> {1}" : (text2 = "{0}\r\n{1}"); + long num9 = this._trackingFrequency; + if (this._showLog) + { + double num10 = Math.Log10(40.0); + double num11 = Math.Log10((double)this._spectrumWidth); + double num12 = (double)num9 / (double)this._spectrumWidth; + num9 = (long)Math.Pow(10.0, num10 + num12 * (num11 - num10)); + } + text = string.Format(text2, SpectrumAnalyzer.GetFrequencyDisplay(num9, true), arg); + } + using (GraphicsPath path = new GraphicsPath()) + { + Utils.AddString(path, text, 14f, Math.Min(base.ClientRectangle.Width - 80, this._trackingX + 10), Math.Max(0, this._trackingY - 35)); + Utils.DrawPath(this._graphics2, path, Brushes.White, 4); + } + } + + private unsafe void CopyMainBuffer() + { + BitmapData bitmapData = this._buffer.LockBits(this._bufferRect, ImageLockMode.ReadOnly, this._buffer.PixelFormat); + BitmapData bitmapData2 = this._buffer2.LockBits(this._bufferRect, ImageLockMode.WriteOnly, this._buffer2.PixelFormat); + Utils.Memcpy((void*)bitmapData2.Scan0, (void*)bitmapData.Scan0, Math.Abs(bitmapData.Stride) * bitmapData.Height); + this._buffer.UnlockBits(bitmapData); + this._buffer2.UnlockBits(bitmapData2); + } + + protected override void OnPaint(PaintEventArgs e) + { + e.Graphics.DrawImageUnscaled(this._mouseIn ? this._buffer2 : this._buffer, 0, 0); + } + + protected override void OnResize(EventArgs e) + { + if (e != null) + { + base.OnResize(e); + } + if (base.ClientRectangle.Width > 2 * this._lrMargin && base.ClientRectangle.Height > 2 * this._tbMargin) + { + int num = this._ver ? (base.ClientRectangle.Width - 2 * this._lrMargin) : (base.ClientRectangle.Height - 2 * this._tbMargin); + byte[] array = new byte[num]; + Fourier.SmoothCopy(this._powerSpectrum, array, this._powerSpectrum.Length, (float)(this._temp.Length + array.Length) / (float)this._temp.Length, 0); + this._powerSpectrum = array; + this._temp = new byte[num]; + Bitmap buffer = this._buffer; + Bitmap buffer2 = this._buffer2; + this._buffer = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._buffer2 = new Bitmap(base.ClientRectangle.Width, base.ClientRectangle.Height, PixelFormat.Format32bppPArgb); + this._graphics.Dispose(); + this._graphics = Graphics.FromImage(this._buffer); + SpectrumAnalyzer.ConfigureGraphics(this._graphics); + this._bufferRect = new Rectangle(0, 0, this._buffer.Width, this._buffer.Height); + this._graphics2.Dispose(); + this._graphics2 = Graphics.FromImage(this._buffer2); + SpectrumAnalyzer.ConfigureGraphics(this._graphics2); + this._graphics.Clear(Color.Black); + this.newBackgroundBrush(null); + if (this._backgroundBrush != null) + { + this._graphics.FillRectangle(this._backgroundBrush, base.ClientRectangle); + } + base.Invalidate(); + if (this._ver) + { + if (this._bufLines > 0) + { + this._bufLines = Math.Min(this._bufLines, this._buffer.Height - 2 * this._tbMargin); + Rectangle destRect = new Rectangle(this._lrMargin, this._tbMargin, this._buffer.Width - 2 * this._lrMargin, this._bufLines); + this._graphics.DrawImage(buffer, destRect, this._lrMargin, this._tbMargin, buffer.Width - 2 * this._lrMargin, this._bufLines, GraphicsUnit.Pixel); + } + } + else if (this._bufLines > 0) + { + this._bufLines = Math.Min(this._bufLines, this._buffer.Width - this._lrMargin); + Rectangle destRect2 = new Rectangle(this._buffer.Width - this._bufLines, this._tbMargin, this._bufLines, this._buffer.Height - 2 * this._tbMargin); + this._graphics.DrawImage(buffer, destRect2, buffer.Width - this._bufLines, this._tbMargin, this._bufLines, buffer.Height - 2 * this._tbMargin, GraphicsUnit.Pixel); + } + buffer.Dispose(); + buffer2.Dispose(); + if (this._spectrumWidth > 0) + { + if (this._ver) + { + this._x1Increment = this._scale * (float)(base.ClientRectangle.Width - 2 * this._lrMargin) / (float)this._spectrumWidth; + } + else + { + this._yIncrement = this._scale * (float)(base.ClientRectangle.Height - 2 * this._tbMargin) / (float)this._spectrumWidth; + } + } + this.DrawFrequencyScale(); + this.NewGradientBrush(null); + } + } + + private void newBackgroundBrush(Color? color = default(Color?)) + { + if (base.Name.Length != 0 && (!color.HasValue || !(color == (Color?)this._backgroundColor))) + { + if (color.HasValue) + { + this._backgroundColor = color.Value; + } + if (this._backgroundBrush != null) + { + this._backgroundBrush.Dispose(); + } + this._backgroundBrush = Utils.BackgroundBrush(base.Name, this._backgroundColor, base.ClientRectangle, false, false); + } + } + + private void NewGradientBrush(ColorBlend blend = null) + { + if (blend != null && blend == this._gradientColorBlend) + { + return; + } + if (blend != null) + { + this._gradientColorBlend = blend; + } + else if (this._gradientColorBlend == null) + { + return; + } + if (this._gradientBrush != null) + { + this._gradientBrush.Dispose(); + } + this._gradientBrush = new LinearGradientBrush(new Rectangle(0, 15, 1, base.ClientRectangle.Height - 30), Color.White, Color.Black, LinearGradientMode.Vertical); + this._gradientBrush.InterpolationColors = this._gradientColorBlend; + this._gradientPixels = null; + this._gradientHash = null; + this.DrawGradient(); + } + + private void DrawGradient() + { + if (this._gradientBrush != null && this._backgroundBrush != null) + { + using (Pen pen = new Pen(this._gradientBrush, 6f)) + { + if (this._lrMargin > 0) + { + this._graphics2.FillRectangle(this._backgroundBrush, base.ClientRectangle.Width - this._lrMargin + 1, 0, this._lrMargin, base.ClientRectangle.Height); + } + float num = (float)(base.ClientRectangle.Width - 30 + ((this._dataType == DataType.RF) ? 5 : 10)); + this._graphics2.DrawLine(pen, num, (float)(base.ClientRectangle.Height - 15), num, 15f); + } + this.BuildGradientVector(); + this.DrawGradientScale(this._graphics2); + } + } + + public void DrawGradientScale(Graphics graphics) + { + int num = (int)this._minPower; + int num2 = (int)this._maxPower; + int num3 = num2 - num; + int num4 = 20; + int num5 = 12; + float num6 = (float)(base.ClientRectangle.Height - 30) / (float)num3; + float num7 = (float)(base.ClientRectangle.Height - 30) / (graphics.MeasureString("0", Waterfall._font).Height * 4f); + if ((float)num3 <= num7) + { + num4 = 1; + } + else if ((float)(num3 / 2) <= num7) + { + num4 = 2; + } + else if ((float)(num3 / 3) <= num7) + { + num4 = 3; + } + else if ((float)(num3 / 6) <= num7) + { + num4 = 5; + } + else if ((float)(num3 / 10) <= num7) + { + num4 = 10; + } + if (this._showDbm >= 2) + { + num4 = ((num4 > 7) ? 10 : 5); + } + for (int i = num; i < num2; i++) + { + bool flag = false; + switch (this._showDbm) + { + case 0: + if (i % num4 == 0) + { + flag = true; + } + break; + case 1: + if ((i + 7) % num4 == 0) + { + flag = true; + } + break; + case 3: + if ((i + 3) % num4 == 0) + { + flag = true; + } + break; + case 2: + if (i > -73) + { + num4 = ((num4 > 5) ? 10 : 5); + if ((i + 73) % num4 == 0) + { + flag = true; + } + } + else + { + num5 = ((num4 <= 5) ? 6 : 12); + if ((i + 121) % num5 == 0) + { + flag = true; + } + } + break; + } + if (flag) + { + string text = Utils.Signal(i, this._showDbm, false); + SizeF sizeF = graphics.MeasureString(text, Waterfall._font); + float num8 = 15f + (float)(num2 - i) * num6; + graphics.DrawString(text, Waterfall._font, Waterfall._fontBrush, (float)base.ClientRectangle.Width - sizeF.Width, num8 - sizeF.Height); + } + } + } + + public void DrawFrequencyScale() + { + if (!this._ver && this._spectrumWidth > 0) + { + if (this._backgroundBrush != null) + { + this._graphics.FillRectangle(this._backgroundBrush, 0, 0, this._lrMargin, base.ClientRectangle.Height); + } + if (this._showLog) + { + int[] array = new int[3] + { + 1, + 2, + 5 + }; + int num = 40; + int num2 = (int)this._spectrumWidth; + double num3 = Math.Log10((double)num); + double num4 = Math.Log10((double)num2); + int num5 = (int)(num4 - num3 + 2.0); + for (int i = 0; i < num5; i++) + { + for (int j = 0; j < 3; j++) + { + long num6 = (int)((double)array[j] * Math.Pow(10.0, (double)(i + 1))); + string frequencyDisplay = SpectrumAnalyzer.GetFrequencyDisplay(num6, false); + float height = this._graphics.MeasureString(frequencyDisplay, Waterfall._font).Height; + int num7 = (int)((double)base.ClientRectangle.Height - (Math.Log10((double)num6) - num3) / (num4 - num3) * (double)(base.ClientRectangle.Height - 2 * this._tbMargin) - (double)this._tbMargin); + if (num7 >= this._tbMargin && num7 <= base.ClientRectangle.Height - this._tbMargin) + { + this._graphics.DrawLine(Waterfall._axisPen, 25, num7, 30, num7); + if (num7 > 20) + { + this._graphics.DrawString(frequencyDisplay, Waterfall._font, Waterfall._fontBrush, 1f, (float)num7 - height / 2f); + } + } + } + } + } + else + { + double num8 = (double)(int)this._graphics.MeasureString("3", Waterfall._font).Height * 1.8; + int num9 = (int)((double)((float)this._spectrumWidth / this._scale) * num8 / (double)(base.ClientRectangle.Height - 2 * this._tbMargin)); + int num10 = 50000; + if ((float)this._spectrumWidth / this._scale <= 500f) + { + num10 = 10; + } + else if ((float)this._spectrumWidth / this._scale <= 5000f) + { + num10 = 100; + } + else if ((float)this._spectrumWidth / this._scale <= 50000f) + { + num10 = 500; + } + else if ((float)this._spectrumWidth / this._scale <= 500000f) + { + num10 = 5000; + } + num9 = num9 / num10 * num10 + num10; + int num11 = (int)((float)this._spectrumWidth / this._scale / (float)num9) + 4; + float num12 = (float)((base.ClientRectangle.Height - 2 * this._tbMargin) * num9) * this._scale / (float)this._spectrumWidth; + long num13 = this._displayCenterFrequency; + if (this._dataType == DataType.IF) + { + num13 -= this._frequency; + } + int num14 = (int)((float)(num13 % num9 * (base.ClientRectangle.Height - 2 * this._tbMargin)) * this._scale / (float)this._spectrumWidth); + for (int k = -num11 / 2; k < num11 / 2; k++) + { + long frequency = num13 + k * num9 - num13 % num9; + string frequencyDisplay2 = SpectrumAnalyzer.GetFrequencyDisplay(frequency, false); + float height2 = this._graphics.MeasureString(frequencyDisplay2, Waterfall._font).Height; + float num15 = (float)(base.ClientRectangle.Height / 2) - num12 * (float)k + (float)num14; + if (num15 >= (float)this._tbMargin && num15 <= (float)(base.ClientRectangle.Height - this._tbMargin)) + { + this._graphics.DrawLine(Waterfall._axisPen, 25f, num15, 30f, num15); + if (num15 > 20f) + { + this._graphics.DrawString(frequencyDisplay2, Waterfall._font, Waterfall._fontBrush, 1f, num15 - height2 / 2f); + } + } + } + } + this._graphics.DrawString("kHz", Waterfall._font, Waterfall._fontBrush, 1f, 3f); + } + } + + private void BuildGradientVector() + { + int height = base.ClientRectangle.Height; + if (height - 30 - 1 > 0) + { + if (this._gradientPixels == null || this._gradientPixels.Length != height - 30) + { + this._gradientPixels = new int[height - 30 - 1]; + } + if (this._gradientHash == null) + { + this._gradientHash = new Hashtable(); + } + for (int i = 0; i < this._gradientPixels.Length; i++) + { + int num = this._buffer2.GetPixel(base.ClientRectangle.Width - 30 + 7, 15 + i + 1).ToArgb(); + this._gradientPixels[this._gradientPixels.Length - i - 1] = num; + if (!this._gradientHash.Contains(num)) + { + this._gradientHash.Add(num, this._gradientPixels.Length - i - 1); + } + } + } + } + + protected override void OnPaintBackground(PaintEventArgs e) + { + } + + protected virtual void OnFrequencyChanged(FrequencyEventArgs e) + { + if (this.FrequencyChanged != null) + { + this.FrequencyChanged(this, e); + } + } + + protected virtual void OnDisplayFrequencyChanged(FrequencyEventArgs e) + { + if (this.DisplayFrequencyChanged != null) + { + this.DisplayFrequencyChanged(this, e); + } + } + + protected virtual void OnCenterFrequencyChanged(FrequencyEventArgs e) + { + if (this.CenterFrequencyChanged != null) + { + this.CenterFrequencyChanged(this, e); + } + else + { + e.Cancel = true; + } + } + + protected virtual void OnBandwidthChanged(BandwidthEventArgs e) + { + if (this.BandwidthChanged != null) + { + this.BandwidthChanged(this, e); + } + } + + protected virtual void OnAutoZoomed() + { + if (this.AutoZoomed != null) + { + this.AutoZoomed(this, null); + } + } + + private void UpdateFrequency(long f) + { + long num = (long)((float)this._displayCenterFrequency - (float)this._spectrumWidth / this._scale / 2f); + if (f < num) + { + f = num; + } + long num2 = (long)((float)this._displayCenterFrequency + (float)this._spectrumWidth / this._scale / 2f); + if (f > num2) + { + f = num2; + } + if (this._useSnap) + { + f = (f + Math.Sign(f) * this._stepSize / 2) / this._stepSize * this._stepSize; + } + if (f != this._frequency) + { + FrequencyEventArgs frequencyEventArgs = new FrequencyEventArgs(f); + this.OnFrequencyChanged(frequencyEventArgs); + if (!frequencyEventArgs.Cancel) + { + this._frequency = frequencyEventArgs.Frequency; + } + } + } + + private bool UpdateDisplayFrequency(long f) + { + long num = (long)((float)(this._centerFrequency - this.SpectrumWidth / 2) + (float)this._spectrumWidth / this._scale / 2f); + if (f < num) + { + f = num; + } + long num2 = (long)((float)(this._centerFrequency + this.SpectrumWidth / 2) - (float)this._spectrumWidth / this._scale / 2f); + if (f > num2) + { + f = num2; + } + if (f != this._displayCenterFrequency) + { + FrequencyEventArgs e = new FrequencyEventArgs(f); + this.OnDisplayFrequencyChanged(e); + } + if (f > num) + { + return f < num2; + } + return false; + } + + private void UpdateCenterFrequency(long f) + { + if (f < 0) + { + f = 0L; + } + int num = Math.Min(1000, this._stepSize); + if (this._centerSnap) + { + f = (f + Math.Sign(f) * num / 2) / num * num; + } + if (f != this._centerFrequency) + { + FrequencyEventArgs frequencyEventArgs = new FrequencyEventArgs(f); + this.OnCenterFrequencyChanged(frequencyEventArgs); + if (!frequencyEventArgs.Cancel) + { + long num2 = frequencyEventArgs.Frequency - this._centerFrequency; + this._displayCenterFrequency += num2; + this._centerFrequency = frequencyEventArgs.Frequency; + } + } + } + + private void UpdateBandwidth(int bw, int of) + { + int num = 1; + if (this._bandType == BandType.Center && this._detectorType != DetectorType.CW) + { + num = 2; + } + bw /= num; + int num2 = (bw < 100) ? 1 : ((bw >= 1000) ? ((bw >= 10000) ? ((bw >= 30000) ? 10000 : 1000) : 100) : 10); + bw = Math.Max(10, num2 * (bw / num2)) * num; + if (bw != this._filterBandwidth) + { + BandwidthEventArgs bandwidthEventArgs = new BandwidthEventArgs(bw, of); + this.OnBandwidthChanged(bandwidthEventArgs); + if (!bandwidthEventArgs.Cancel) + { + this._filterBandwidth = bandwidthEventArgs.Bandwidth; + this._filterOffset = bandwidthEventArgs.Offset; + } + } + } + + protected override void OnMouseDown(MouseEventArgs e) + { + base.OnMouseDown(e); + if (e.Button == MouseButtons.Left) + { + if (this._ver) + { + this._oldX1 = e.X; + if (this.insidePassband((float)e.X)) + { + this._oldFrequency = this._frequency; + if (this._dataType != DataType.AF) + { + this._changingFrequency = true; + } + } + else if (this.sideOfPassband((float)e.X)) + { + this._oldFilterBandwidth = this._filterBandwidth; + this._oldFilterOffset = this._filterOffset; + this._changingBandwidth = (((float)e.X > (this._lower + this._upper) / 2f) ? 1 : (-1)); + } + else if (this.inScalingCorner((float)e.X, (float)e.Y)) + { + if (e.Y < 30) + { + this._changingScale = 1; + this._oldPower = this._maxPower; + } + else + { + this._changingScale = -1; + this._oldPower = this._minPower; + } + if (this._changingScale != 0) + { + this._oldY = e.Y; + } + } + else if (this._dataType == DataType.IF) + { + this._oldFrequency = this._frequency; + this._changingFrequency = true; + } + else if (!this._centerFixed || (double)this._scale <= 1.001) + { + this._oldCenterFrequency = this._centerFrequency; + this._changingCenterFrequency = true; + this._oldFrequency = 1L; + } + else + { + this._oldFrequency = this._frequency; + this._oldDisplayFrequency = this._displayCenterFrequency; + this._changingZoomFrequency = true; + } + } + else + { + this._oldY = e.Y; + Math.Max((float)this._filterBandwidth * this._yIncrement, 2f); + if (this.insidePassband((float)e.Y) && this._dataType != DataType.AF) + { + this._oldFrequency = this._frequency; + this._changingFrequency = true; + } + else if (this.sideOfPassband((float)e.Y)) + { + this._oldFilterBandwidth = this._filterBandwidth; + this._oldFilterOffset = this._filterOffset; + this._changingBandwidth = (((float)e.Y > (float)base.ClientRectangle.Height - (this._lower + this._upper) / 2f) ? 1 : (-1)); + } + else if (this.inScalingCorner((float)e.X, (float)e.Y)) + { + if (e.X < 30) + { + this._changingScale = 1; + this._oldPower = this._maxPower; + } + else + { + this._changingScale = -1; + this._oldPower = this._minPower; + } + if (this._changingScale != 0) + { + this._oldY = e.Y; + } + } + else + { + this._oldCenterFrequency = this._centerFrequency; + this._changingCenterFrequency = true; + } + } + } + else if (e.Button == MouseButtons.Right && this._ver) + { + this._oldX1 = e.X; + this.ContextMenuStrip = this._contextMenu; + if (!this._centerFixed || (double)this._scale <= 1.001) + { + this._oldCenterFrequency = this._centerFrequency; + this._changingCenterFrequency = true; + this._oldFrequency = -this._frequency; + } + else + { + this._oldDisplayFrequency = this._displayCenterFrequency; + this._changingZoomFrequency = true; + this._oldFrequency = -this._frequency; + } + } + } + + private bool inScalingCorner(float x, float y) + { + if (!(x < 30f) && !(x > (float)(base.ClientRectangle.Width - 30))) + { + return false; + } + if (!(y < 30f)) + { + return y > (float)(base.ClientRectangle.Height - 30); + } + return true; + } + + private bool insidePassband(float p) + { + if (this._ver) + { + float num = Math.Max((float)(this._filterBandwidth + this._filterOffset) * this._x1Increment, 2f); + if (p > this._lower && p < this._upper) + { + return num < (float)base.ClientRectangle.Width; + } + return false; + } + Math.Max((float)this._filterBandwidth * this._yIncrement, 2f); + if (p > (float)base.ClientRectangle.Height - this._upper) + { + return p < (float)base.ClientRectangle.Height - this._lower; + } + return false; + } + + private bool sideOfPassband(float p) + { + if (this._ver) + { + if (Math.Abs(p - this._lower + 4f) <= 4f && (this._bandType == BandType.Center || this._bandType == BandType.Lower) && this._dataType != DataType.AF) + { + return true; + } + if (Math.Abs(p - this._upper - 4f) <= 4f) + { + if (this._bandType != BandType.Center && this._bandType != BandType.Upper) + { + return this._dataType == DataType.AF; + } + return true; + } + return false; + } + if (this._dataType == DataType.AF) + { + return false; + } + if (Math.Abs(p - ((float)base.ClientRectangle.Height - this._lower + 4f)) <= 4f && (this._bandType == BandType.Center || this._bandType == BandType.Lower)) + { + return true; + } + if (Math.Abs(p - ((float)base.ClientRectangle.Height - this._upper - 4f)) <= 4f) + { + if (this._bandType != BandType.Center) + { + return this._bandType == BandType.Upper; + } + return true; + } + return false; + } + + protected override void OnMouseUp(MouseEventArgs e) + { + base.OnMouseUp(e); + if (this._ver) + { + if ((this._changingCenterFrequency || this._changingZoomFrequency) && e.X == this._oldX1) + { + long f = (long)((float)((this._oldX1 - base.ClientRectangle.Width / 2) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._displayCenterFrequency); + if (this._oldFrequency >= 0) + { + this.UpdateFrequency(f); + } + } + } + else if (this._changingCenterFrequency && e.Y == this._oldY) + { + long f2 = (long)((float)((base.ClientRectangle.Height / 2 - this._oldY) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Height - 2 * this._tbMargin) + (float)this._displayCenterFrequency); + this.UpdateFrequency(f2); + } + this._changingCenterFrequency = false; + if (this._changingBandwidth != 0) + { + this.OnAutoZoomed(); + } + this._changingBandwidth = 0; + this._changingZoomFrequency = false; + this._changingFrequency = false; + this._changingScale = 0; + } + + protected override void OnMouseMove(MouseEventArgs e) + { + base.OnMouseMove(e); + this._trackingX = e.X; + this._trackingY = e.Y; + if (this._ver) + { + this._trackingFrequency = (long)((float)((e.X - base.ClientRectangle.Width / 2) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._displayCenterFrequency); + } + else + { + this._trackingFrequency = (long)((float)((base.ClientRectangle.Height / 2 - e.Y) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Height - 2 * this._tbMargin) + (float)this._displayCenterFrequency); + } + if (this._useSnap) + { + this._trackingFrequency = (this._trackingFrequency + Math.Sign(this._trackingFrequency) * this._stepSize / 2) / this._stepSize * this._stepSize; + } + if (this._ver) + { + if (this._changingFrequency) + { + int num = (this._dataType == DataType.RF) ? (e.X - this._oldX1) : (this._oldX1 - e.X); + long f = (long)((float)(num * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._oldFrequency); + this.UpdateFrequency(f); + } + else if (this._changingZoomFrequency) + { + if (this._oldX1 != e.X) + { + this.ContextMenuStrip = null; + long num2 = (long)((float)((this._oldX1 - e.X) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin)); + if (this.UpdateDisplayFrequency(this._oldDisplayFrequency + num2) && this._oldFrequency > 0) + { + bool useSnap = this._useSnap; + this._useSnap = false; + this.UpdateFrequency(this._oldFrequency + num2); + this._useSnap = useSnap; + } + } + } + else if (this._changingCenterFrequency) + { + if (this._oldX1 != e.X) + { + long f2 = (long)((float)((this._oldX1 - e.X) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._oldCenterFrequency); + this.UpdateCenterFrequency(f2); + if (this._oldFrequency < 0) + { + this.ContextMenuStrip = null; + this.UpdateFrequency(-this._oldFrequency); + } + } + } + else if (this._changingBandwidth != 0) + { + int num3 = 0; + int of = 0; + switch (this._bandType) + { + case BandType.Upper: + num3 = e.X - this._oldX1; + if (this._dataType == DataType.IF) + { + num3 *= 2; + } + else if (this._dataType == DataType.AF) + { + num3 = num3; + } + break; + case BandType.Lower: + num3 = this._oldX1 - e.X; + if (this._dataType == DataType.IF) + { + num3 *= 2; + } + else if (this._dataType == DataType.AF) + { + num3 *= -1; + } + break; + case BandType.Center: + if (!this._indepSideband) + { + num3 = (((float)this._oldX1 > (this._lower + this._upper) / 2f) ? (e.X - this._oldX1) : (this._oldX1 - e.X)) * 2; + } + else + { + float num4 = (float)base.ClientRectangle.Width / 2f + (float)(this._frequency - this._displayCenterFrequency) * this._x1Increment; + float num5 = 10f * this._x1Increment; + float num6 = Math.Max((float)this._oldFilterBandwidth * this._x1Increment, 2f); + float num7 = num4 + (float)this._oldFilterOffset * this._x1Increment; + if (this._changingBandwidth > 0) + { + num3 = e.X - this._oldX1; + if (this._dataType != 0) + { + num3 *= 2; + } + this._upper = num7 + num6 / 2f + (float)num3; + if (this._upper < num4 + num5) + { + return; + } + } + else + { + num3 = this._oldX1 - e.X; + if (this._dataType != 0) + { + num3 *= 2; + } + this._lower = num7 - num6 / 2f - (float)num3; + if (this._lower > num4 - num5) + { + return; + } + } + of = (int)(((this._lower + this._upper) / 2f - num4) / this._x1Increment); + } + break; + } + num3 = (int)((float)(num3 * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Width - 2 * this._lrMargin) + (float)this._oldFilterBandwidth); + this.UpdateBandwidth(num3, of); + } + else if (this._changingScale != 0) + { + float num8 = (float)(e.Y - this._oldY) * (this._maxPower - this._minPower) / (float)(base.ClientRectangle.Height - 2 * this._tbMargin); + if (this._changingScale > 0) + { + this._maxPower = Math.Min(20f, Math.Max(this._minPower + 30f, this._oldPower + num8)); + } + else + { + this._minPower = Math.Max(-200f, Math.Min(this._maxPower - 30f, this._oldPower + num8)); + } + this.DrawGradient(); + } + else if (this.sideOfPassband((float)e.X)) + { + this.Cursor = Mouses.ChangeBW; + } + else if (this.insidePassband((float)e.X) && this._dataType != DataType.AF) + { + this.Cursor = Mouses.Passband; + } + else if (this.inScalingCorner((float)e.X, (float)e.Y)) + { + this.Cursor = Mouses.Scale; + } + else + { + this.Cursor = Mouses.Spectrum; + } + } + else if (this._changingFrequency) + { + int num9 = (this._dataType == DataType.RF) ? (this._oldY - e.Y) : (e.Y - this._oldY); + long f3 = (long)((float)(num9 * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Height - 2 * this._tbMargin) + (float)this._oldFrequency); + this.UpdateFrequency(f3); + } + else if (this._changingCenterFrequency) + { + long f4 = (long)((float)((this._oldY - e.Y) * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Height - 2 * this._tbMargin) + (float)this._oldCenterFrequency); + this.UpdateCenterFrequency(f4); + } + else if (this._changingBandwidth != 0) + { + int num10 = 0; + int of2 = 0; + switch (this._bandType) + { + case BandType.Upper: + num10 = e.Y - this._oldY; + break; + case BandType.Lower: + num10 = this._oldY - e.Y; + break; + case BandType.Center: + if (!this._indepSideband) + { + num10 = (((float)this._oldY > (float)base.ClientRectangle.Height - (this._lower + this._upper) / 2f) ? (e.Y - this._oldY - e.Y) : (this._oldY - e.Y)) * 2; + } + else + { + float num11 = (float)base.ClientRectangle.Height / 2f + (float)(this._frequency - this._displayCenterFrequency) * this._yIncrement; + float num12 = 10f * this._yIncrement; + float num13 = Math.Max((float)this._oldFilterBandwidth * this._yIncrement, 2f); + float num14 = num11 + (float)this._oldFilterOffset * this._yIncrement; + if (this._changingBandwidth > 0) + { + num10 = e.Y - this._oldY; + if (this._dataType != 0) + { + num10 *= 2; + } + this._upper = num14 + num13 / 2f + (float)num10; + if (this._upper < num11 + num12) + { + return; + } + } + else + { + num10 = this._oldY - e.Y; + if (this._dataType != 0) + { + num10 *= 2; + } + this._lower = num14 - num13 / 2f - (float)num10; + if (this._lower > num11 - num12) + { + return; + } + } + of2 = (int)(((this._lower + this._upper) / 2f - num11) / this._yIncrement); + } + break; + } + num10 = (int)((float)(num10 * this._spectrumWidth) / this._scale / (float)(base.ClientRectangle.Height - 2 * this._tbMargin) + (float)this._oldFilterBandwidth); + this.UpdateBandwidth(num10, of2); + } + else if (this._changingScale != 0) + { + float num15 = (float)(e.Y - this._oldY) * (this._maxPower - this._minPower) / (float)(base.ClientRectangle.Height - 2 * this._tbMargin); + if (this._changingScale > 0) + { + this._maxPower = Math.Min(20f, Math.Max(this._minPower + 30f, this._oldPower + num15)); + } + else + { + this._minPower = Math.Max(-200f, Math.Min(this._maxPower - 30f, this._oldPower + num15)); + } + this.DrawGradient(); + } + else if (this.sideOfPassband((float)e.Y)) + { + this.Cursor = Mouses.ChangeBW; + } + else if (this.insidePassband((float)e.Y) && this._dataType != DataType.AF) + { + this.Cursor = Mouses.Passband; + } + else if (this.inScalingCorner((float)e.X, (float)e.Y)) + { + this.Cursor = Mouses.Scale; + } + else if (this._dataType != DataType.AF) + { + this.Cursor = Mouses.Spectrum; + } + else + { + this.Cursor = Mouses.Static; + } + } + + protected override void OnMouseEnter(EventArgs e) + { + base.OnMouseEnter(e); + this._mouseIn = true; + this.CopyMainBuffer(); + } + + protected override void OnMouseLeave(EventArgs e) + { + base.OnMouseLeave(e); + this._mouseIn = false; + } + + protected override void OnMouseWheel(MouseEventArgs e) + { + base.OnMouseWheel(e); + this.UpdateFrequency(this._frequency + (this._useSnap ? (this._stepSize * Math.Sign(e.Delta)) : (e.Delta / 10))); + } + + protected override bool IsInputKey(Keys keyData) + { + switch (keyData) + { + case Keys.Prior: + case Keys.Next: + case Keys.Left: + case Keys.Up: + case Keys.Right: + case Keys.Down: + return true; + case Keys.LButton | Keys.MButton | Keys.Space | Keys.Shift: + case Keys.RButton | Keys.MButton | Keys.Space | Keys.Shift: + case Keys.LButton | Keys.RButton | Keys.MButton | Keys.Space | Keys.Shift: + case Keys.Back | Keys.Space | Keys.Shift: + return true; + default: + return base.IsInputKey(keyData); + } + } + + protected override void OnKeyDown(KeyEventArgs e) + { + base.OnKeyDown(e); + switch (e.KeyData) + { + case Keys.LButton | Keys.RButton | Keys.MButton | Keys.Space | Keys.Shift: + this.UpdateCenterFrequency(this._centerFrequency + this._stepSize); + break; + case Keys.LButton | Keys.MButton | Keys.Space | Keys.Shift: + this.UpdateCenterFrequency(this._centerFrequency - this._stepSize); + break; + case Keys.Prior: + case Keys.Up: + this.UpdateCenterFrequency(this._centerFrequency + this._centerStep); + break; + case Keys.Next: + case Keys.Down: + this.UpdateCenterFrequency(this._centerFrequency - this._centerStep); + break; + case Keys.Left: + case Keys.Right: + { + int num = (e.KeyData != Keys.Left) ? 1 : (-1); + long num2 = this._frequency + num * this.StepSize; + if (!this._centerFixed && (double)num2 < (double)this._centerFrequency + (double)(num * this.SpectrumWidth) * 0.4) + { + this.UpdateCenterFrequency(this._centerFrequency + num * this.StepSize); + } + else + { + this.UpdateFrequency(num2); + } + break; + } + } + } + + private long getBasebandCenter() + { + if (this._dataType == DataType.AF) + { + return this._spectrumWidth / 2; + } + if (this._bandType == BandType.Lower) + { + return this._frequency - this._filterBandwidth / 2; + } + if (this._bandType == BandType.Upper) + { + return this._frequency + this._filterBandwidth / 2; + } + return this._frequency + this._filterOffset; + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/frmStationList.Designer.cs b/SDRSharper.PanView/SDRSharp.PanView/frmStationList.Designer.cs new file mode 100644 index 0000000..f8dbb0b --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/frmStationList.Designer.cs @@ -0,0 +1,120 @@ +namespace SDRSharp.PanView +{ + // Token: 0x02000014 RID: 20 + public partial class frmStationList : global::System.Windows.Forms.Form + { + // Token: 0x06000162 RID: 354 RVA: 0x0000E941 File Offset: 0x0000CB41 + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + // Token: 0x06000163 RID: 355 RVA: 0x0000E960 File Offset: 0x0000CB60 + private void InitializeComponent() + { + global::System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle = new global::System.Windows.Forms.DataGridViewCellStyle(); + global::System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new global::System.Windows.Forms.DataGridViewCellStyle(); + this.grdStations = new global::System.Windows.Forms.DataGridView(); + this.txtMaxStation = new global::System.Windows.Forms.TextBox(); + this.label1 = new global::System.Windows.Forms.Label(); + this.chkFreq = new global::System.Windows.Forms.CheckBox(); + this.chkDate = new global::System.Windows.Forms.CheckBox(); + ((global::System.ComponentModel.ISupportInitialize)this.grdStations).BeginInit(); + base.SuspendLayout(); + this.grdStations.AllowUserToAddRows = false; + this.grdStations.AllowUserToDeleteRows = false; + this.grdStations.AllowUserToResizeRows = false; + dataGridViewCellStyle.BackColor = global::System.Drawing.Color.FromArgb(240, 240, 240); + this.grdStations.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle; + this.grdStations.Anchor = (global::System.Windows.Forms.AnchorStyles.Top | global::System.Windows.Forms.AnchorStyles.Bottom | global::System.Windows.Forms.AnchorStyles.Left | global::System.Windows.Forms.AnchorStyles.Right); + this.grdStations.ColumnHeadersHeightSizeMode = global::System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + dataGridViewCellStyle2.Alignment = global::System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle2.BackColor = global::System.Drawing.SystemColors.Window; + dataGridViewCellStyle2.Font = new global::System.Drawing.Font("Microsoft Sans Serif", 7.8f, global::System.Drawing.FontStyle.Regular, global::System.Drawing.GraphicsUnit.Point, 0); + dataGridViewCellStyle2.ForeColor = global::System.Drawing.SystemColors.ControlText; + dataGridViewCellStyle2.SelectionBackColor = global::System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = global::System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = global::System.Windows.Forms.DataGridViewTriState.False; + this.grdStations.DefaultCellStyle = dataGridViewCellStyle2; + this.grdStations.Location = new global::System.Drawing.Point(0, 3); + this.grdStations.Margin = new global::System.Windows.Forms.Padding(2); + this.grdStations.MultiSelect = false; + this.grdStations.Name = "grdStations"; + this.grdStations.ReadOnly = true; + this.grdStations.RowHeadersVisible = false; + this.grdStations.RowTemplate.Height = 24; + this.grdStations.SelectionMode = global::System.Windows.Forms.DataGridViewSelectionMode.CellSelect; + this.grdStations.Size = new global::System.Drawing.Size(444, 184); + this.grdStations.TabIndex = 0; + this.grdStations.CellMouseDoubleClick += new global::System.Windows.Forms.DataGridViewCellMouseEventHandler(this.grdStations_CellMouseDoubleClick); + this.txtMaxStation.Anchor = (global::System.Windows.Forms.AnchorStyles.Bottom | global::System.Windows.Forms.AnchorStyles.Left); + this.txtMaxStation.Location = new global::System.Drawing.Point(136, 191); + this.txtMaxStation.Name = "txtMaxStation"; + this.txtMaxStation.Size = new global::System.Drawing.Size(39, 20); + this.txtMaxStation.TabIndex = 2; + this.txtMaxStation.Validated += new global::System.EventHandler(this.txtMaxStation_Validated); + this.label1.Anchor = (global::System.Windows.Forms.AnchorStyles.Bottom | global::System.Windows.Forms.AnchorStyles.Left); + this.label1.AutoSize = true; + this.label1.Location = new global::System.Drawing.Point(2, 194); + this.label1.Name = "label1"; + this.label1.Size = new global::System.Drawing.Size(129, 13); + this.label1.TabIndex = 3; + this.label1.Text = "Max Nr of station per freq:"; + this.chkFreq.Anchor = (global::System.Windows.Forms.AnchorStyles.Bottom | global::System.Windows.Forms.AnchorStyles.Left); + this.chkFreq.AutoSize = true; + this.chkFreq.CheckAlign = global::System.Drawing.ContentAlignment.MiddleRight; + this.chkFreq.Location = new global::System.Drawing.Point(194, 192); + this.chkFreq.Name = "chkFreq"; + this.chkFreq.Size = new global::System.Drawing.Size(104, 17); + this.chkFreq.TabIndex = 4; + this.chkFreq.Text = "show Frequency"; + this.chkFreq.UseVisualStyleBackColor = true; + this.chkDate.Anchor = (global::System.Windows.Forms.AnchorStyles.Bottom | global::System.Windows.Forms.AnchorStyles.Left); + this.chkDate.AutoSize = true; + this.chkDate.CheckAlign = global::System.Drawing.ContentAlignment.MiddleRight; + this.chkDate.Location = new global::System.Drawing.Point(302, 192); + this.chkDate.Name = "chkDate"; + this.chkDate.Size = new global::System.Drawing.Size(105, 17); + this.chkDate.TabIndex = 5; + this.chkDate.Text = "show Date/Time"; + this.chkDate.UseVisualStyleBackColor = true; + base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f); + base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font; + base.ClientSize = new global::System.Drawing.Size(444, 210); + base.Controls.Add(this.chkDate); + base.Controls.Add(this.chkFreq); + base.Controls.Add(this.label1); + base.Controls.Add(this.txtMaxStation); + base.Controls.Add(this.grdStations); + base.Margin = new global::System.Windows.Forms.Padding(2); + base.Name = "frmStationList"; + this.Text = "StationList"; + base.FormClosing += new global::System.Windows.Forms.FormClosingEventHandler(this.frmStationList_FormClosing); + ((global::System.ComponentModel.ISupportInitialize)this.grdStations).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + + // Token: 0x04000157 RID: 343 + private global::System.ComponentModel.IContainer components; + + // Token: 0x04000158 RID: 344 + private global::System.Windows.Forms.DataGridView grdStations; + + // Token: 0x04000159 RID: 345 + private global::System.Windows.Forms.TextBox txtMaxStation; + + // Token: 0x0400015A RID: 346 + private global::System.Windows.Forms.Label label1; + + // Token: 0x0400015B RID: 347 + private global::System.Windows.Forms.CheckBox chkFreq; + + // Token: 0x0400015C RID: 348 + private global::System.Windows.Forms.CheckBox chkDate; + } +} diff --git a/SDRSharper.PanView/SDRSharp.PanView/frmStationList.cs b/SDRSharper.PanView/SDRSharp.PanView/frmStationList.cs new file mode 100644 index 0000000..4a26c47 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.PanView/frmStationList.cs @@ -0,0 +1,340 @@ +using SDRSharp.Radio; +using System; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; + +namespace SDRSharp.PanView +{ + public class frmStationList : Form + { + private const int FREQ = 0; + + private const int TIME = 1; + + private const int DAYS = 2; + + private const int CTRY = 3; + + private const int NAME = 4; + + private const int LANG = 5; + + private const int DBUV = 6; + + private const int SITE = 7; + + private const int EMP = 8; + + private const int DIST = 9; + + private const int POWR = 10; + + private string _stations; + + private int _showDbm; + + private IContainer components; + + private DataGridView grdStations; + + private TextBox txtMaxStation; + + private Label label1; + + private CheckBox chkFreq; + + private CheckBox chkDate; + + public int ShowDbm + { + set + { + this._showDbm = value; + } + } + + public string Stations + { + get + { + return this._stations; + } + set + { + this._stations = value; + this.ShowStations(); + } + } + + public event EventHandler StationDataChanged; + + public frmStationList() + { + this.InitializeComponent(); + base.TopMost = true; + int num = TextRenderer.MeasureText("abcdefghijklmnopqrstuvw", this.grdStations.Font).Width / 26; + this.txtMaxStation.Text = Utils.GetStringSetting("StationlistMax", "10"); + this.chkFreq.Checked = Utils.GetBooleanSetting("StationlistFreq"); + this.chkDate.Checked = Utils.GetBooleanSetting("StationlistDate"); + bool numeric = true; + bool visible = true; + this.grdStations.Columns.Add(this.column("freq", "Freq", num * 12, false, this.chkFreq.Checked)); + this.grdStations.Columns.Add(this.column("ctry", "Ctry", num * 10, false, visible)); + this.grdStations.Columns.Add(this.column("lang", "Lang", num * 10, false, visible)); + this.grdStations.Columns.Add(this.column("name", "Name", num * 40, false, visible)); + this.grdStations.Columns.Add(this.column("site", "Site", num * 50, false, visible)); + this.grdStations.Columns.Add(this.column("dist", "Km", num * 10, numeric, visible)); + this.grdStations.Columns.Add(this.column("powr", "kW", num * 10, numeric, visible)); + this.grdStations.Columns.Add(this.column("dbm", "dBm", num * 10, numeric, false)); + this.grdStations.Columns.Add(this.column("sig", "Sig", num * 10, numeric, visible)); + this.grdStations.Columns.Add(this.column("time", "Time", num * 16, false, this.chkDate.Checked)); + this.grdStations.Columns.Add(this.column("days", "Days", num * 15, false, this.chkDate.Checked)); + int num2 = 0; + for (int i = 0; i < this.grdStations.Columns.Count; i++) + { + num2 += this.grdStations.Columns[i].Width; + } + base.Width = Utils.GetIntSetting("StationlistWidth", num2); + base.Height = Utils.GetIntSetting("StationlistHeight", 300); + } + + private void frmStationList_FormClosing(object sender, FormClosingEventArgs e) + { + Utils.SaveSetting("StationlistFreq", this.chkFreq.Checked); + Utils.SaveSetting("StationlistDate", this.chkDate.Checked); + Utils.SaveSetting("StationlistWidth", base.Width); + Utils.SaveSetting("StationlistHeight", base.Height); + } + + private DataGridViewColumn column(string name, string header, int width, bool numeric, bool visible) + { + DataGridViewTextBoxColumn dataGridViewTextBoxColumn = new DataGridViewTextBoxColumn(); + dataGridViewTextBoxColumn.Name = name; + dataGridViewTextBoxColumn.HeaderText = header; + dataGridViewTextBoxColumn.Width = width; + if (numeric) + { + dataGridViewTextBoxColumn.ValueType = typeof(int); + } + if (!visible) + { + dataGridViewTextBoxColumn.Visible = false; + } + return dataGridViewTextBoxColumn; + } + + private void ShowStations() + { + if (this._stations != null && base.Visible) + { + this.grdStations.Rows.Clear(); + string[] array = this._stations.Split(';'); + int num = 0; + int num2 = 0; + int num3 = 0; + int num4 = 0; + string headerText = "dBm"; + if (this._showDbm == 1) + { + headerText = "dBuV"; + } + if (this._showDbm == 2) + { + headerText = "S-pts"; + } + if (this._showDbm == 3) + { + headerText = "%"; + } + this.grdStations.Columns["sig"].HeaderText = headerText; + this.grdStations.Columns["sig"].ValueType = ((this._showDbm == 2) ? typeof(string) : typeof(int)); + for (int i = 0; i <= array.GetUpperBound(0); i++) + { + if (array[i].Length != 0) + { + string[] array2 = array[i].Split(','); + int upperBound = array2.GetUpperBound(0); + if (9 <= upperBound) + { + int.TryParse(array2[9], out num); + } + if (10 <= upperBound) + { + int.TryParse(array2[10], out num2); + } + if (upperBound >= 7) + { + num3 = Utils.Val(array2[6], 0) - 107; + string text = Utils.Signal(num3, this._showDbm, false); + if (this._showDbm == 2) + { + if (text.IndexOf('S') < 0) + { + text = "S9" + text; + } + this.grdStations.Rows.Add(array2[0], array2[3], array2[5], array2[4], array2[7], num, num2, num3, text, array2[1], array2[2]); + } + else + { + this.grdStations.Rows.Add(array2[0], array2[3], array2[5], array2[4], array2[7], num, num2, num3, Utils.Val(text, 0), array2[1], array2[2]); + } + this.grdStations[3, num4++].ToolTipText = "Double click to set station on top of list"; + } + } + } + } + } + + private void GetStations() + { + this._stations = ""; + string[] array = new string[11]; + for (int i = 0; i < this.grdStations.Rows.Count; i++) + { + DataGridViewRow dataGridViewRow = this.grdStations.Rows[i]; + array[0] = dataGridViewRow.Cells[0].Value.ToString(); + array[3] = dataGridViewRow.Cells[1].Value.ToString(); + array[5] = dataGridViewRow.Cells[2].Value.ToString(); + array[4] = dataGridViewRow.Cells[3].Value.ToString(); + array[7] = dataGridViewRow.Cells[4].Value.ToString(); + array[9] = dataGridViewRow.Cells[5].Value.ToString(); + array[10] = dataGridViewRow.Cells[6].Value.ToString(); + array[6] = ((int)dataGridViewRow.Cells[7].Value + 107).ToString(); + array[1] = dataGridViewRow.Cells[9].Value.ToString(); + array[2] = dataGridViewRow.Cells[10].Value.ToString(); + string str = string.Join(",", array); + this._stations = this._stations + ((this._stations.Length <= 1) ? "" : ";") + str; + } + } + + private void grdStations_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) + { + int rowIndex = e.RowIndex; + int index = this.grdStations.Columns["dbm"].Index; + if (rowIndex >= 0 && index != 0) + { + int num = -999; + for (int i = 0; i < this.grdStations.Rows.Count; i++) + { + int num2 = (int)this.grdStations.Rows[i].Cells[index].Value; + if (num2 > num) + { + num = num2; + } + } + this.grdStations.Rows[rowIndex].Cells[index].Value = num + 1; + this.grdStations.Rows[rowIndex].Cells["sig"].Value = Utils.Signal(num + 1, this._showDbm, false); + if (this.grdStations.Rows.Count > 1) + { + this.grdStations.Sort(this.grdStations.Columns[index], ListSortDirection.Descending); + } + this.GetStations(); + this.StationDataChanged(this, null); + } + } + + private void txtMaxStation_Validated(object sender, EventArgs e) + { + if (Utils.Val(this.txtMaxStation.Text, 0) > 0) + { + Utils.SaveSetting("StationlistMax", Utils.Val(this.txtMaxStation.Text, 0)); + MessageBox.Show("Please restart SDR."); + } + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + DataGridViewCellStyle dataGridViewCellStyle = new DataGridViewCellStyle(); + DataGridViewCellStyle dataGridViewCellStyle2 = new DataGridViewCellStyle(); + this.grdStations = new DataGridView(); + this.txtMaxStation = new TextBox(); + this.label1 = new Label(); + this.chkFreq = new CheckBox(); + this.chkDate = new CheckBox(); + ((ISupportInitialize)this.grdStations).BeginInit(); + base.SuspendLayout(); + this.grdStations.AllowUserToAddRows = false; + this.grdStations.AllowUserToDeleteRows = false; + this.grdStations.AllowUserToResizeRows = false; + dataGridViewCellStyle.BackColor = Color.FromArgb(240, 240, 240); + this.grdStations.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle; + this.grdStations.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right); + this.grdStations.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; + dataGridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleLeft; + dataGridViewCellStyle2.BackColor = SystemColors.Window; + dataGridViewCellStyle2.Font = new Font("Microsoft Sans Serif", 7.8f, FontStyle.Regular, GraphicsUnit.Point, 0); + dataGridViewCellStyle2.ForeColor = SystemColors.ControlText; + dataGridViewCellStyle2.SelectionBackColor = SystemColors.Highlight; + dataGridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText; + dataGridViewCellStyle2.WrapMode = DataGridViewTriState.False; + this.grdStations.DefaultCellStyle = dataGridViewCellStyle2; + this.grdStations.Location = new Point(0, 3); + this.grdStations.Margin = new Padding(2); + this.grdStations.MultiSelect = false; + this.grdStations.Name = "grdStations"; + this.grdStations.ReadOnly = true; + this.grdStations.RowHeadersVisible = false; + this.grdStations.RowTemplate.Height = 24; + this.grdStations.SelectionMode = DataGridViewSelectionMode.CellSelect; + this.grdStations.Size = new Size(444, 184); + this.grdStations.TabIndex = 0; + this.grdStations.CellMouseDoubleClick += this.grdStations_CellMouseDoubleClick; + this.txtMaxStation.Anchor = (AnchorStyles.Bottom | AnchorStyles.Left); + this.txtMaxStation.Location = new Point(136, 191); + this.txtMaxStation.Name = "txtMaxStation"; + this.txtMaxStation.Size = new Size(39, 20); + this.txtMaxStation.TabIndex = 2; + this.txtMaxStation.Validated += this.txtMaxStation_Validated; + this.label1.Anchor = (AnchorStyles.Bottom | AnchorStyles.Left); + this.label1.AutoSize = true; + this.label1.Location = new Point(2, 194); + this.label1.Name = "label1"; + this.label1.Size = new Size(129, 13); + this.label1.TabIndex = 3; + this.label1.Text = "Max Nr of station per freq:"; + this.chkFreq.Anchor = (AnchorStyles.Bottom | AnchorStyles.Left); + this.chkFreq.AutoSize = true; + this.chkFreq.CheckAlign = ContentAlignment.MiddleRight; + this.chkFreq.Location = new Point(194, 192); + this.chkFreq.Name = "chkFreq"; + this.chkFreq.Size = new Size(104, 17); + this.chkFreq.TabIndex = 4; + this.chkFreq.Text = "show Frequency"; + this.chkFreq.UseVisualStyleBackColor = true; + this.chkDate.Anchor = (AnchorStyles.Bottom | AnchorStyles.Left); + this.chkDate.AutoSize = true; + this.chkDate.CheckAlign = ContentAlignment.MiddleRight; + this.chkDate.Location = new Point(302, 192); + this.chkDate.Name = "chkDate"; + this.chkDate.Size = new Size(105, 17); + this.chkDate.TabIndex = 5; + this.chkDate.Text = "show Date/Time"; + this.chkDate.UseVisualStyleBackColor = true; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.ClientSize = new Size(444, 210); + base.Controls.Add(this.chkDate); + base.Controls.Add(this.chkFreq); + base.Controls.Add(this.label1); + base.Controls.Add(this.txtMaxStation); + base.Controls.Add(this.grdStations); + base.Margin = new Padding(2); + base.Name = "frmStationList"; + this.Text = "StationList"; + base.FormClosing += this.frmStationList_FormClosing; + ((ISupportInitialize)this.grdStations).EndInit(); + base.ResumeLayout(false); + base.PerformLayout(); + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.Radio/BarMeter.Designer.cs b/SDRSharper.PanView/SDRSharp.Radio/BarMeter.Designer.cs new file mode 100644 index 0000000..b44d80d --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.Radio/BarMeter.Designer.cs @@ -0,0 +1,213 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Windows.Forms; + +namespace SDRSharp.Radio +{ + // Token: 0x02000002 RID: 2 + public class BarMeter : UserControl + { + // Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250 + public BarMeter() + { + this.InitializeComponent(); + } + + // Token: 0x17000001 RID: 1 + // (get) Token: 0x06000002 RID: 2 RVA: 0x00002088 File Offset: 0x00000288 + public int Max + { + get + { + return this._max; + } + } + + // Token: 0x06000003 RID: 3 RVA: 0x00002090 File Offset: 0x00000290 + public bool Draw(int value, int timOut = 0) + { + if (timOut > 0) + { + if (--this._timOut > 0) + { + return false; + } + this._timOut = timOut; + } + float num = (float)value / (float)this._max; + if ((double)num > 1.0) + { + this._step = (int)((float)this._max * num / 5f); + int num2 = 1; + for (int i = 1; i <= 4; i++) + { + int num3 = num2; + if (num2 >= this._step) + { + break; + } + num2 = num3 * 2; + if (num2 >= this._step) + { + break; + } + num2 = num3 * 5; + if (num2 > this._step) + { + break; + } + num2 = num3 * 10; + } + this._step = num2; + this._max = this._step * 5; + num = (float)value / (float)this._max; + this.DrawBackground(); + } + if (num < this._len) + { + this._grP.Clear(Color.FromArgb(50, 50, 50)); + } + this._grP.FillRectangle(this._brush, 0f, 0f, num * (float)this.pic.Width, (float)this.pic.Height); + this._len = num; + return true; + } + + // Token: 0x06000004 RID: 4 RVA: 0x000021A8 File Offset: 0x000003A8 + public void DrawBackground() + { + this.DrawBackground(this._min, this._max, this._step); + } + + // Token: 0x06000005 RID: 5 RVA: 0x000021C4 File Offset: 0x000003C4 + public void DrawBackground(int min, int max, int step) + { + this._min = min; + this._max = max; + this._step = step; + this._grU.Clear(Color.FromArgb(64, 64, 64)); + using (Font font = new Font("Aerial", 6f)) + { + using (Pen pen = new Pen(Color.Yellow)) + { + for (int i = min; i <= max; i += step) + { + string text = i.ToString(); + float num = Math.Max(1f, (float)this.pic.Size.Width * (float)i / (float)max); + this._grU.DrawLine(pen, num, (float)(this.pic.Location.Y - this.tickSize), num, (float)this.pic.Location.Y); + float height = this._grU.MeasureString(text, font).Height; + float num2 = (i == min) ? 2f : this._grU.MeasureString(text, font).Width; + this._grU.DrawString(text, font, Brushes.Yellow, num - num2 / 2f, (float)(this.pic.Location.Y - this.tickSize) - height); + } + } + } + } + + // Token: 0x06000006 RID: 6 RVA: 0x00002364 File Offset: 0x00000564 + protected override void OnPaint(PaintEventArgs e) + { + base.OnPaint(e); + this.DrawBackground(); + } + + // Token: 0x06000007 RID: 7 RVA: 0x00002374 File Offset: 0x00000574 + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + if (this._grU != null) + { + this._grU.Dispose(); + this._grP.Dispose(); + } + this._grU = base.CreateGraphics(); + this._grP = this.pic.CreateGraphics(); + if (this._brush != null) + { + this._brush.Dispose(); + } + Rectangle rect = new Rectangle(0, 0, this.pic.Width, this.pic.Height); + this._brush = new LinearGradientBrush(rect, Color.Black, Color.White, LinearGradientMode.Vertical); + ColorBlend colorBlend = new ColorBlend(); + colorBlend.Colors = new Color[] + { + Color.Green, + Color.LightGreen, + Color.Green + }; + colorBlend.Positions = new float[] + { + 0f, + 0.33f, + 1f + }; + this._brush.InterpolationColors = colorBlend; + } + + // Token: 0x06000008 RID: 8 RVA: 0x0000247D File Offset: 0x0000067D + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + // Token: 0x06000009 RID: 9 RVA: 0x0000249C File Offset: 0x0000069C + private void InitializeComponent() + { + this.pic = new PictureBox(); + ((ISupportInitialize)this.pic).BeginInit(); + base.SuspendLayout(); + this.pic.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right); + this.pic.BackColor = SystemColors.ButtonFace; + this.pic.BorderStyle = BorderStyle.FixedSingle; + this.pic.Location = new Point(0, 15); + this.pic.Name = "pic"; + this.pic.Size = new Size(190, 20); + this.pic.TabIndex = 0; + this.pic.TabStop = false; + base.AutoScaleDimensions = new SizeF(6f, 13f); + base.AutoScaleMode = AutoScaleMode.Font; + base.Controls.Add(this.pic); + base.Name = "BarMeter"; + base.Size = new Size(200, 35); + ((ISupportInitialize)this.pic).EndInit(); + base.ResumeLayout(false); + } + + // Token: 0x04000001 RID: 1 + private int _min; + + // Token: 0x04000002 RID: 2 + private int _max = 100; + + // Token: 0x04000003 RID: 3 + private int _step = 20; + + // Token: 0x04000004 RID: 4 + private float _len = 1f; + + // Token: 0x04000005 RID: 5 + private int tickSize = 5; + + // Token: 0x04000006 RID: 6 + private Graphics _grU; + + // Token: 0x04000007 RID: 7 + private Graphics _grP; + + // Token: 0x04000008 RID: 8 + private LinearGradientBrush _brush; + + // Token: 0x04000009 RID: 9 + private int _timOut = 10; + + // Token: 0x0400000A RID: 10 + private IContainer components; + + // Token: 0x0400000B RID: 11 + private PictureBox pic; + } +} diff --git a/SDRSharper.PanView/SDRSharp.Radio/BarMeter.cs b/SDRSharper.PanView/SDRSharp.Radio/BarMeter.cs new file mode 100644 index 0000000..f0f8459 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.Radio/BarMeter.cs @@ -0,0 +1,195 @@ +using System; +using System.ComponentModel; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Windows.Forms; + +namespace SDRSharp.Radio +{ + public class BarMeter : UserControl + { + private int _min; + + private int _max = 100; + + private int _step = 20; + + private float _len = 1f; + + private int tickSize = 5; + + private Graphics _grU; + + private Graphics _grP; + + private LinearGradientBrush _brush; + + private int _timOut = 10; + + private IContainer components; + + private PictureBox pic; + + public int Max => this._max; + + public BarMeter() + { + this.InitializeComponent(); + } + + public bool Draw(int value, int timOut = 0) + { + if (timOut > 0) + { + if (--this._timOut > 0) + { + return false; + } + this._timOut = timOut; + } + float num = (float)value / (float)this._max; + if ((double)num > 1.0) + { + this._step = (int)((float)this._max * num / 5f); + int num2 = 1; + for (int i = 1; i <= 4; i++) + { + int num3 = num2; + if (num2 >= this._step) + { + break; + } + num2 = num3 * 2; + if (num2 >= this._step) + { + break; + } + num2 = num3 * 5; + if (num2 > this._step) + { + break; + } + num2 = num3 * 10; + } + this._step = num2; + this._max = this._step * 5; + num = (float)value / (float)this._max; + this.DrawBackground(); + } + if (num < this._len) + { + this._grP.Clear(Color.FromArgb(50, 50, 50)); + } + this._grP.FillRectangle(this._brush, 0f, 0f, num * (float)this.pic.Width, (float)this.pic.Height); + this._len = num; + return true; + } + + public void DrawBackground() + { + this.DrawBackground(this._min, this._max, this._step); + } + + public void DrawBackground(int min, int max, int step) + { + this._min = min; + this._max = max; + this._step = step; + this._grU.Clear(Color.FromArgb(64, 64, 64)); + using (Font font = new Font("Aerial", 6f)) + { + using (Pen pen = new Pen(Color.CornflowerBlue)) + { + for (int i = min; i <= max; i += step) + { + string text = i.ToString(); + float num = Math.Max(1f, (float)this.pic.Size.Width * (float)i / (float)max); + this._grU.DrawLine(pen, num, (float)(this.pic.Location.Y - this.tickSize), num, (float)this.pic.Location.Y); + float height = this._grU.MeasureString(text, font).Height; + float num2 = (i == min) ? 2f : this._grU.MeasureString(text, font).Width; + this._grU.DrawString(text, font, Brushes.CornflowerBlue, num - num2 / 2f, (float)(this.pic.Location.Y - this.tickSize) - height); + } + } + } + } + + protected override void OnPaint(PaintEventArgs e) + { + base.OnPaint(e); + this.DrawBackground(); + } + + protected override void OnResize(EventArgs e) + { + base.OnResize(e); + if (this._grU != null) + { + this._grU.Dispose(); + this._grP.Dispose(); + } + this._grU = base.CreateGraphics(); + this._grP = this.pic.CreateGraphics(); + if (this._brush != null) + { + this._brush.Dispose(); + } + Rectangle rect = new Rectangle(0, 0, this.pic.Width, this.pic.Height); + this._brush = new LinearGradientBrush(rect, Color.Black, Color.White, LinearGradientMode.Vertical); + ColorBlend colorBlend = new ColorBlend(); + colorBlend.Colors = new Color[3] + { + Color.Green, + Color.LightGreen, + Color.Green + }; + colorBlend.Positions = new float[3] + { + 0f, + 0.33f, + 1f + }; + this._brush.InterpolationColors = colorBlend; + } + + protected override void Dispose(bool disposing) + { + if (disposing && this.components != null) + { + this.components.Dispose(); + } + base.Dispose(disposing); + } + + private void InitializeComponent() + { + this.pic = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.pic)).BeginInit(); + this.SuspendLayout(); + // + // pic + // + this.pic.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.pic.BackColor = System.Drawing.SystemColors.ControlDarkDark; + this.pic.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.pic.Location = new System.Drawing.Point(0, 15); + this.pic.Name = "pic"; + this.pic.Size = new System.Drawing.Size(190, 20); + this.pic.TabIndex = 0; + this.pic.TabStop = false; + // + // BarMeter + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.SystemColors.ControlDarkDark; + this.Controls.Add(this.pic); + this.Name = "BarMeter"; + this.Size = new System.Drawing.Size(200, 35); + ((System.ComponentModel.ISupportInitialize)(this.pic)).EndInit(); + this.ResumeLayout(false); + + } + } +} diff --git a/SDRSharper.PanView/SDRSharp.Radio/BarMeter.resx b/SDRSharper.PanView/SDRSharp.Radio/BarMeter.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/SDRSharper.PanView/SDRSharp.Radio/BarMeter.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SDRSharper.Radio/PortAudioSharp/PaDeviceIndex.cs b/SDRSharper.Radio/PortAudioSharp/PaDeviceIndex.cs new file mode 100644 index 0000000..4e9c484 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaDeviceIndex.cs @@ -0,0 +1,8 @@ +namespace PortAudioSharp +{ + internal enum PaDeviceIndex + { + PaNoDevice = -1, + PaUseHostApiSpecificDeviceSpecification = -2 + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaDeviceInfo.cs b/SDRSharper.Radio/PortAudioSharp/PaDeviceInfo.cs new file mode 100644 index 0000000..ec36b61 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaDeviceInfo.cs @@ -0,0 +1,33 @@ +using System.Runtime.InteropServices; + +namespace PortAudioSharp +{ + internal struct PaDeviceInfo + { + public int structVersion; + + [MarshalAs(UnmanagedType.LPStr)] + public string name; + + public int hostApi; + + public int maxInputChannels; + + public int maxOutputChannels; + + public double defaultLowInputLatency; + + public double defaultLowOutputLatency; + + public double defaultHighInputLatency; + + public double defaultHighOutputLatency; + + public double defaultSampleRate; + + public override string ToString() + { + return "[" + ((object)this).GetType().Name + "]\nname: " + this.name + "\nhostApi: " + this.hostApi + "\nmaxInputChannels: " + this.maxInputChannels + "\nmaxOutputChannels: " + this.maxOutputChannels + "\ndefaultLowInputLatency: " + this.defaultLowInputLatency + "\ndefaultLowOutputLatency: " + this.defaultLowOutputLatency + "\ndefaultHighInputLatency: " + this.defaultHighInputLatency + "\ndefaultHighOutputLatency: " + this.defaultHighOutputLatency + "\ndefaultSampleRate: " + this.defaultSampleRate; + } + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaError.cs b/SDRSharper.Radio/PortAudioSharp/PaError.cs new file mode 100644 index 0000000..7d59089 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaError.cs @@ -0,0 +1,36 @@ +namespace PortAudioSharp +{ + internal enum PaError + { + paNoError, + paNotInitialized = -10000, + paUnanticipatedHostError, + paInvalidChannelCount, + paInvalidSampleRate, + paInvalidDevice, + paInvalidFlag, + paSampleFormatNotSupported, + paBadIODeviceCombination, + paInsufficientMemory, + paBufferTooBig, + paBufferTooSmall, + paNullCallback, + paBadStreamPtr, + paTimedOut, + paInternalError, + paDeviceUnavailable, + paIncompatibleHostApiSpecificStreamInfo, + paStreamIsStopped, + paStreamIsNotStopped, + paInputOverflowed, + paOutputUnderflowed, + paHostApiNotFound, + paInvalidHostApi, + paCanNotReadFromACallbackStream, + paCanNotWriteToACallbackStream, + paCanNotReadFromAnOutputOnlyStream, + paCanNotWriteToAnInputOnlyStream, + paIncompatibleStreamHostApi, + paBadBufferPtr + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaHostApiInfo.cs b/SDRSharper.Radio/PortAudioSharp/PaHostApiInfo.cs new file mode 100644 index 0000000..458532b --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaHostApiInfo.cs @@ -0,0 +1,25 @@ +using System.Runtime.InteropServices; + +namespace PortAudioSharp +{ + internal struct PaHostApiInfo + { + public int structVersion; + + public PaHostApiTypeId type; + + [MarshalAs(UnmanagedType.LPStr)] + public string name; + + public int deviceCount; + + public int defaultInputDevice; + + public int defaultOutputDevice; + + public override string ToString() + { + return "[" + ((object)this).GetType().Name + "]\nstructVersion: " + this.structVersion + "\ntype: " + this.type + "\nname: " + this.name + "\ndeviceCount: " + this.deviceCount + "\ndefaultInputDevice: " + this.defaultInputDevice + "\ndefaultOutputDevice: " + this.defaultOutputDevice; + } + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaHostApiTypeId.cs b/SDRSharper.Radio/PortAudioSharp/PaHostApiTypeId.cs new file mode 100644 index 0000000..bad7979 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaHostApiTypeId.cs @@ -0,0 +1,20 @@ +namespace PortAudioSharp +{ + internal enum PaHostApiTypeId : uint + { + paInDevelopment, + paDirectSound, + paMME, + paASIO, + paSoundManager, + paCoreAudio, + paOSS = 7u, + paALSA, + paAL, + paBeOS, + paWDMKS, + paJACK, + paWASAPI, + paAudioScienceHPI + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaHostErrorInfo.cs b/SDRSharper.Radio/PortAudioSharp/PaHostErrorInfo.cs new file mode 100644 index 0000000..6b06da1 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaHostErrorInfo.cs @@ -0,0 +1,19 @@ +using System.Runtime.InteropServices; + +namespace PortAudioSharp +{ + internal struct PaHostErrorInfo + { + public PaHostApiTypeId hostApiType; + + public int errorCode; + + [MarshalAs(UnmanagedType.LPStr)] + public string errorText; + + public override string ToString() + { + return "[" + ((object)this).GetType().Name + "]\nhostApiType: " + this.hostApiType + "\nerrorCode: " + this.errorCode + "\nerrorText: " + this.errorText; + } + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaSampleFormat.cs b/SDRSharper.Radio/PortAudioSharp/PaSampleFormat.cs new file mode 100644 index 0000000..f4200c8 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaSampleFormat.cs @@ -0,0 +1,14 @@ +namespace PortAudioSharp +{ + internal enum PaSampleFormat : uint + { + PaFloat32 = 1u, + PaInt32, + PaInt24 = 4u, + PaInt16 = 8u, + PaInt8 = 0x10, + PaUInt8 = 0x20, + PaCustomFormat = 0x10000, + PaNonInterleaved = 0x80000000 + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackDelegate.cs b/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackDelegate.cs new file mode 100644 index 0000000..4ec6754 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackDelegate.cs @@ -0,0 +1,8 @@ +using System; +using System.Runtime.InteropServices; + +namespace PortAudioSharp +{ + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + internal unsafe delegate PaStreamCallbackResult PaStreamCallbackDelegate(float* input, float* output, uint frameCount, ref PaStreamCallbackTimeInfo timeInfo, PaStreamCallbackFlags statusFlags, IntPtr userData); +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackFlags.cs b/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackFlags.cs new file mode 100644 index 0000000..3537556 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackFlags.cs @@ -0,0 +1,11 @@ +namespace PortAudioSharp +{ + internal enum PaStreamCallbackFlags : uint + { + PaInputUnderflow = 1u, + PaInputOverflow, + PaOutputUnderflow = 4u, + PaOutputOverflow = 8u, + PaPrimingOutput = 0x10 + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackResult.cs b/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackResult.cs new file mode 100644 index 0000000..363c251 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackResult.cs @@ -0,0 +1,9 @@ +namespace PortAudioSharp +{ + internal enum PaStreamCallbackResult : uint + { + PaContinue, + PaComplete, + PaAbort + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackTimeInfo.cs b/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackTimeInfo.cs new file mode 100644 index 0000000..463f160 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaStreamCallbackTimeInfo.cs @@ -0,0 +1,16 @@ +namespace PortAudioSharp +{ + internal struct PaStreamCallbackTimeInfo + { + public double inputBufferAdcTime; + + public double currentTime; + + public double outputBufferDacTime; + + public override string ToString() + { + return "[" + ((object)this).GetType().Name + "]\ncurrentTime: " + this.currentTime + "\ninputBufferAdcTime: " + this.inputBufferAdcTime + "\noutputBufferDacTime: " + this.outputBufferDacTime; + } + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaStreamFinishedCallbackDelegate.cs b/SDRSharper.Radio/PortAudioSharp/PaStreamFinishedCallbackDelegate.cs new file mode 100644 index 0000000..82da18c --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaStreamFinishedCallbackDelegate.cs @@ -0,0 +1,8 @@ +using System; +using System.Runtime.InteropServices; + +namespace PortAudioSharp +{ + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + internal delegate void PaStreamFinishedCallbackDelegate(IntPtr userData); +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaStreamFlags.cs b/SDRSharper.Radio/PortAudioSharp/PaStreamFlags.cs new file mode 100644 index 0000000..11b9627 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaStreamFlags.cs @@ -0,0 +1,12 @@ +namespace PortAudioSharp +{ + internal enum PaStreamFlags : uint + { + PaNoFlag, + PaClipOff, + PaDitherOff, + PaNeverDropInput = 4u, + PaPrimeOutputBuffersUsingStreamCallback = 8u, + PaPlatformSpecificFlags = 4294901760u + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaStreamInfo.cs b/SDRSharper.Radio/PortAudioSharp/PaStreamInfo.cs new file mode 100644 index 0000000..64aa21f --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaStreamInfo.cs @@ -0,0 +1,18 @@ +namespace PortAudioSharp +{ + internal struct PaStreamInfo + { + public int structVersion; + + public double inputLatency; + + public double outputLatency; + + public double sampleRate; + + public override string ToString() + { + return "[" + ((object)this).GetType().Name + "]\nstructVersion: " + this.structVersion + "\ninputLatency: " + this.inputLatency + "\noutputLatency: " + this.outputLatency + "\nsampleRate: " + this.sampleRate; + } + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PaStreamParameters.cs b/SDRSharper.Radio/PortAudioSharp/PaStreamParameters.cs new file mode 100644 index 0000000..8a9ca6d --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PaStreamParameters.cs @@ -0,0 +1,22 @@ +using System; + +namespace PortAudioSharp +{ + internal struct PaStreamParameters + { + public int device; + + public int channelCount; + + public PaSampleFormat sampleFormat; + + public double suggestedLatency; + + public IntPtr hostApiSpecificStreamInfo; + + public override string ToString() + { + return "[" + ((object)this).GetType().Name + "]\ndevice: " + this.device + "\nchannelCount: " + this.channelCount + "\nsampleFormat: " + this.sampleFormat + "\nsuggestedLatency: " + this.suggestedLatency; + } + } +} diff --git a/SDRSharper.Radio/PortAudioSharp/PortAudioAPI.cs b/SDRSharper.Radio/PortAudioSharp/PortAudioAPI.cs new file mode 100644 index 0000000..8388243 --- /dev/null +++ b/SDRSharper.Radio/PortAudioSharp/PortAudioAPI.cs @@ -0,0 +1,217 @@ +using System; +using System.IO; +using System.Runtime.InteropServices; +using System.Windows.Forms; + +namespace PortAudioSharp +{ + internal static class PortAudioAPI + { + public const int PaFormatIsSupported = 0; + + public const int PaFramesPerBufferUnspecified = 0; + +#if BUILD64 + public const string PortAudioLibrary = "portaudio_x64"; +#endif + +#if BUILD32 + public const string PortAudioLibrary = "portaudio_x32"; +#endif + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_GetVersion(); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Pa_GetVersionText")] + private static extern IntPtr IntPtr_Pa_GetVersionText(); + + public static string Pa_GetVersionText() + { + IntPtr ptr = PortAudioAPI.IntPtr_Pa_GetVersionText(); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Pa_GetErrorText")] + public static extern IntPtr IntPtr_Pa_GetErrorText(PaError errorCode); + + public static string Pa_GetErrorText(PaError errorCode) + { + IntPtr ptr = PortAudioAPI.IntPtr_Pa_GetErrorText(errorCode); + return Marshal.PtrToStringAnsi(ptr); + } + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_Initialize(); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_Terminate(); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_GetHostApiCount(); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_GetDefaultHostApi(); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Pa_GetHostApiInfo")] + public static extern IntPtr IntPtr_Pa_GetHostApiInfo(int hostApi); + + public static PaHostApiInfo Pa_GetHostApiInfo(int hostApi) + { + IntPtr ptr = PortAudioAPI.IntPtr_Pa_GetHostApiInfo(hostApi); + return (PaHostApiInfo)Marshal.PtrToStructure(ptr, typeof(PaHostApiInfo)); + } + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_HostApiTypeIdToHostApiIndex(PaHostApiTypeId type); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_HostApiDeviceIndexToDeviceIndex(int hostApi, int hostApiDeviceIndex); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Pa_GetLastHostErrorInfo")] + public static extern IntPtr IntPtr_Pa_GetLastHostErrorInfo(); + + public static PaHostErrorInfo Pa_GetLastHostErrorInfo() + { + IntPtr ptr = PortAudioAPI.IntPtr_Pa_GetLastHostErrorInfo(); + return (PaHostErrorInfo)Marshal.PtrToStructure(ptr, typeof(PaHostErrorInfo)); + } + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_GetDeviceCount(); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_GetDefaultInputDevice(); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_GetDefaultOutputDevice(); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Pa_GetDeviceInfo")] + public static extern IntPtr IntPtr_Pa_GetDeviceInfo(int device); + + public static PaDeviceInfo Pa_GetDeviceInfo(int device) + { + IntPtr ptr = PortAudioAPI.IntPtr_Pa_GetDeviceInfo(device); + return (PaDeviceInfo)Marshal.PtrToStructure(ptr, typeof(PaDeviceInfo)); + } + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_IsFormatSupported(ref PaStreamParameters inputParameters, ref PaStreamParameters outputParameters, double sampleRate); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_IsFormatSupported(IntPtr inputParameters, ref PaStreamParameters outputParameters, double sampleRate); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_IsFormatSupported(ref PaStreamParameters inputParameters, IntPtr outputParameters, double sampleRate); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_OpenStream(out IntPtr stream, ref PaStreamParameters inputParameters, ref PaStreamParameters outputParameters, double sampleRate, uint framesPerBuffer, PaStreamFlags streamFlags, PaStreamCallbackDelegate streamCallback, IntPtr userData); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_OpenStream(out IntPtr stream, IntPtr inputParameters, ref PaStreamParameters outputParameters, double sampleRate, uint framesPerBuffer, PaStreamFlags streamFlags, PaStreamCallbackDelegate streamCallback, IntPtr userData); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_OpenStream(out IntPtr stream, ref PaStreamParameters inputParameters, IntPtr outputParameters, double sampleRate, uint framesPerBuffer, PaStreamFlags streamFlags, PaStreamCallbackDelegate streamCallback, IntPtr userData); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_OpenDefaultStream(out IntPtr stream, int numInputChannels, int numOutputChannels, uint sampleFormat, double sampleRate, uint framesPerBuffer, PaStreamCallbackDelegate streamCallback, IntPtr userData); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_CloseStream(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_SetStreamFinishedCallback(ref IntPtr stream, [MarshalAs(UnmanagedType.FunctionPtr)] PaStreamFinishedCallbackDelegate streamFinishedCallback); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_StartStream(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_StopStream(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_AbortStream(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_IsStreamStopped(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_IsStreamActive(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl, EntryPoint = "Pa_GetStreamInfo")] + public static extern IntPtr IntPtr_Pa_GetStreamInfo(IntPtr stream); + + public static PaStreamInfo Pa_GetStreamInfo(IntPtr stream) + { + IntPtr ptr = PortAudioAPI.IntPtr_Pa_GetStreamInfo(stream); + return (PaStreamInfo)Marshal.PtrToStructure(ptr, typeof(PaStreamInfo)); + } + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern double Pa_GetStreamTime(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern double Pa_GetStreamCpuLoad(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_ReadStream(IntPtr stream, [Out] float[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_ReadStream(IntPtr stream, [Out] byte[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_ReadStream(IntPtr stream, [Out] sbyte[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_ReadStream(IntPtr stream, [Out] ushort[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_ReadStream(IntPtr stream, [Out] short[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_ReadStream(IntPtr stream, [Out] uint[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_ReadStream(IntPtr stream, [Out] int[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_ReadStream(IntPtr stream, IntPtr buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_WriteStream(IntPtr stream, [In] float[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_WriteStream(IntPtr stream, [In] byte[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_WriteStream(IntPtr stream, [In] sbyte[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_WriteStream(IntPtr stream, [In] ushort[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_WriteStream(IntPtr stream, [In] short[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_WriteStream(IntPtr stream, [In] uint[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_WriteStream(IntPtr stream, [In] int[] buffer, uint frames); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_GetStreamReadAvailable(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern int Pa_GetStreamWriteAvailable(IntPtr stream); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern PaError Pa_GetSampleSize(PaSampleFormat format); + + [DllImport(PortAudioLibrary, CallingConvention = CallingConvention.Cdecl)] + public static extern void Pa_Sleep(int msec); + + static PortAudioAPI() + { + PortAudioAPI.Pa_Initialize(); + } + + } +} diff --git a/SDRSharper.Radio/Properties/AssemblyInfo.cs b/SDRSharper.Radio/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..96cc3e6 --- /dev/null +++ b/SDRSharper.Radio/Properties/AssemblyInfo.cs @@ -0,0 +1,16 @@ +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions; + +[assembly: AssemblyDescription("Radio DSP")] +[assembly: AssemblyCopyright("Copyright © BluGecko 2018")] +[assembly: AssemblyTitle("Radio DSP")] +[assembly: AssemblyProduct("SDRSharper Revised")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: CompilationRelaxations(8)] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyFileVersion("0.9.0.0")] + diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioBufferAvailableDelegate.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioBufferAvailableDelegate.cs new file mode 100644 index 0000000..01c1618 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioBufferAvailableDelegate.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio.PortAudio +{ + public unsafe delegate void AudioBufferAvailableDelegate(float* buffer, int length); +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioBufferNeededDelegate.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioBufferNeededDelegate.cs new file mode 100644 index 0000000..eda7799 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioBufferNeededDelegate.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio.PortAudio +{ + public unsafe delegate void AudioBufferNeededDelegate(float* buffer, int length); +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioDevice.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioDevice.cs new file mode 100644 index 0000000..ab777de --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/AudioDevice.cs @@ -0,0 +1,80 @@ +using PortAudioSharp; +using System.Collections.Generic; + +namespace SDRSharp.Radio.PortAudio +{ + public class AudioDevice + { + public int Index + { + get; + set; + } + + public string Name + { + get; + set; + } + + public string Host + { + get; + set; + } + + public DeviceDirection Direction + { + get; + set; + } + + public bool IsDefault + { + get; + set; + } + + public static List GetDevices(DeviceDirection direction) + { + List list = new List(); + try + { + int num = PortAudioAPI.Pa_GetDefaultInputDevice(); + int num2 = PortAudioAPI.Pa_GetDefaultOutputDevice(); + int num3 = PortAudioAPI.Pa_GetDeviceCount(); + for (int i = 0; i < num3; i++) + { + PaDeviceInfo paDeviceInfo = PortAudioAPI.Pa_GetDeviceInfo(i); + DeviceDirection deviceDirection = (paDeviceInfo.maxInputChannels <= 0) ? DeviceDirection.Output : ((paDeviceInfo.maxOutputChannels > 0) ? DeviceDirection.InputOutput : DeviceDirection.Input); + if (deviceDirection == direction || deviceDirection == DeviceDirection.InputOutput) + { + PaHostApiInfo paHostApiInfo = PortAudioAPI.Pa_GetHostApiInfo(paDeviceInfo.hostApi); + AudioDevice audioDevice = new AudioDevice(); + audioDevice.Name = paDeviceInfo.name; + audioDevice.Host = paHostApiInfo.name; + audioDevice.Index = i; + audioDevice.Direction = deviceDirection; + audioDevice.IsDefault = (i == num || i == num2); + list.Add(audioDevice); + } + } + return list; + } + catch + { + return null; + } + } + + public override string ToString() + { + string text = this.Host; + if (text == "Windows DirectSound") + { + text = "WDS"; + } + return "[" + text + "] " + this.Name; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/DeviceDirection.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/DeviceDirection.cs new file mode 100644 index 0000000..04575fa --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/DeviceDirection.cs @@ -0,0 +1,9 @@ +namespace SDRSharp.Radio.PortAudio +{ + public enum DeviceDirection + { + Input, + Output, + InputOutput + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/Int24.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/Int24.cs new file mode 100644 index 0000000..7ce3951 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/Int24.cs @@ -0,0 +1,16 @@ +namespace SDRSharp.Radio.PortAudio +{ + public struct Int24 + { + public byte C; + + public byte B; + + public sbyte A; + + public static implicit operator float(Int24 i) + { + return (float)((i.C << 8 | i.B << 16 | i.A << 24) >> 8); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveDuplex.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveDuplex.cs new file mode 100644 index 0000000..be47f18 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveDuplex.cs @@ -0,0 +1,83 @@ +using PortAudioSharp; +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio.PortAudio +{ + public class WaveDuplex : IDisposable + { + private IntPtr _streamHandle; + + private GCHandle _gcHandle; + + private readonly AudioBufferAvailableDelegate _bufferAvailable; + + private unsafe readonly PaStreamCallbackDelegate _paCallback = WaveDuplex.PaStreamCallback; + + public unsafe WaveDuplex(int deviceIndex, double sampleRate, int framesPerBuffer, AudioBufferAvailableDelegate bufferNeededDelegate) + { + this._bufferAvailable = bufferNeededDelegate; + PaStreamParameters paStreamParameters = new PaStreamParameters + { + device = deviceIndex, + channelCount = 2, + suggestedLatency = 0.0, + sampleFormat = PaSampleFormat.PaFloat32 + }; + PaError paError = PortAudioAPI.Pa_IsFormatSupported(ref paStreamParameters, ref paStreamParameters, sampleRate); + if (paError != 0) + { + throw new ApplicationException("Init audio in/out device: " + paError.ToString()); + } + this._gcHandle = GCHandle.Alloc(this); + paError = PortAudioAPI.Pa_OpenStream(out this._streamHandle, ref paStreamParameters, ref paStreamParameters, sampleRate, (uint)framesPerBuffer, PaStreamFlags.PaNoFlag, this._paCallback, (IntPtr)this._gcHandle); + if (paError != 0) + { + this._gcHandle.Free(); + throw new ApplicationException("Open audio in/out device: " + paError.ToString()); + } + paError = PortAudioAPI.Pa_StartStream(this._streamHandle); + if (paError == PaError.paNoError) + { + return; + } + PortAudioAPI.Pa_CloseStream(this._streamHandle); + this._gcHandle.Free(); + throw new ApplicationException("Start audio in/out device: " + paError.ToString()); + } + + private unsafe static PaStreamCallbackResult PaStreamCallback(float* input, float* output, uint frameCount, ref PaStreamCallbackTimeInfo timeInfo, PaStreamCallbackFlags statusFlags, IntPtr userData) + { + GCHandle gCHandle = GCHandle.FromIntPtr(userData); + if (!gCHandle.IsAllocated) + { + return PaStreamCallbackResult.PaAbort; + } + WaveDuplex waveDuplex = (WaveDuplex)gCHandle.Target; + try + { + Utils.Memcpy(output, input, (int)(frameCount * 2 * 4)); + if (waveDuplex._bufferAvailable != null) + { + waveDuplex._bufferAvailable(output, (int)frameCount); + } + } + catch + { + return PaStreamCallbackResult.PaAbort; + } + return PaStreamCallbackResult.PaContinue; + } + + public void Dispose() + { + if (this._streamHandle != IntPtr.Zero) + { + PortAudioAPI.Pa_StopStream(this._streamHandle); + PortAudioAPI.Pa_CloseStream(this._streamHandle); + this._streamHandle = IntPtr.Zero; + } + this._gcHandle.Free(); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveFile.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveFile.cs new file mode 100644 index 0000000..73f1ce5 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveFile.cs @@ -0,0 +1,249 @@ +using System; +using System.IO; +using System.Text; + +namespace SDRSharp.Radio.PortAudio +{ + public sealed class WaveFile : IDisposable + { + private string _fileName = ""; + + private int _duration; + + private int _size; + + private readonly Stream _stream; + + private bool _isPCM; + + private long _dataPos; + + private short _formatTag; + + private int _sampleRate; + + private int _avgBytesPerSec; + + private short _blockAlign; + + private short _bitsPerSample; + + private UnsafeBuffer _tempBuffer; + + private byte[] _temp; + + private unsafe byte* _tempPtr; + + public short FormatTag => this._formatTag; + + public int SampleRate => this._sampleRate; + + public int AvgBytesPerSec => this._avgBytesPerSec; + + public short BlockAlign => this._blockAlign; + + public short BitsPerSample => this._bitsPerSample; + + public string FileName => this._fileName; + + public int Duration => this._duration; + + public int Size => this._size; + + public long Position + { + get + { + return this._stream.Position - this._dataPos; + } + set + { + long num = value / this._blockAlign * this._blockAlign; + this._stream.Seek(num + this._dataPos, SeekOrigin.Begin); + } + } + + public WaveFile(string fileName) + { + this._stream = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.Read); + this._fileName = fileName; + this.ReadHeader(); + } + + ~WaveFile() + { + this.Dispose(); + } + + public void Dispose() + { + this.Close(); + this._fileName = ""; + if (this._tempBuffer != null) + { + this._tempBuffer.Dispose(); + } + GC.SuppressFinalize(this); + } + + public void Close() + { + if (this._stream != null) + { + this._stream.Close(); + } + } + + private static string ReadChunk(BinaryReader reader) + { + byte[] array = new byte[4]; + reader.Read(array, 0, array.Length); + return Encoding.ASCII.GetString(array); + } + + private void ReadHeader() + { + BinaryReader binaryReader = new BinaryReader(this._stream); + if (WaveFile.ReadChunk(binaryReader) != "RIFF") + { + throw new Exception("Invalid file format"); + } + int num = binaryReader.ReadInt32(); + if (WaveFile.ReadChunk(binaryReader) != "WAVE") + { + throw new Exception("Invalid file format"); + } + if (WaveFile.ReadChunk(binaryReader) != "fmt ") + { + throw new Exception("Invalid file format"); + } + num = binaryReader.ReadInt32(); + if (num < 16) + { + throw new Exception("Invalid file format"); + } + this._formatTag = binaryReader.ReadInt16(); + this._isPCM = (this._formatTag == 1); + short num2 = binaryReader.ReadInt16(); + if (num2 != 2) + { + throw new Exception("Invalid file format"); + } + this._sampleRate = binaryReader.ReadInt32(); + this._avgBytesPerSec = binaryReader.ReadInt32(); + this._blockAlign = binaryReader.ReadInt16(); + this._bitsPerSample = binaryReader.ReadInt16(); + for (num -= 16; num > 0; num--) + { + binaryReader.ReadByte(); + } + string text = ""; + while (this._stream.Position < this._stream.Length) + { + text = WaveFile.ReadChunk(binaryReader); + if (text == "data") + { + break; + } + num = binaryReader.ReadInt32(); + while (this._stream.Position < this._stream.Length && num > 0) + { + binaryReader.ReadByte(); + num--; + } + } + if (this._stream.Position >= this._stream.Length) + { + throw new Exception("Invalid file format"); + } + this._size = binaryReader.ReadInt32(); + this._dataPos = this._stream.Position; + int num3 = num2 * this._sampleRate * this._bitsPerSample / 8; + this._duration = this._size / num3; + } + + public unsafe int Read(Complex* iqBuffer, int length, ref int iqPos) + { + if (this._temp == null || this._temp.Length != this._blockAlign * length) + { + this._temp = new byte[this._blockAlign * length]; + this._tempBuffer = UnsafeBuffer.Create(this._temp); + this._tempPtr = (byte*)(void*)this._tempBuffer; + } + int num = this._stream.Read(this._temp, 0, this._tempBuffer.Length) / this._blockAlign; + this.FillIQ(iqBuffer, num); + return num; + } + + private unsafe void FillIQ(Complex* iqPtr, int length) + { + if (this._isPCM) + { + if (this._blockAlign == 6) + { + Int24* ptr = (Int24*)this._tempPtr; + for (int i = 0; i < length; i++) + { + Complex* intPtr = iqPtr; + Int24* intPtr2 = ptr; + ptr = intPtr2 + 1; + intPtr->Real = (float)(*intPtr2) * 1.1920929E-07f; + Complex* intPtr3 = iqPtr; + Int24* intPtr4 = ptr; + ptr = intPtr4 + 1; + intPtr3->Imag = (float)(*intPtr4) * 1.1920929E-07f; + iqPtr++; + } + } + else if (this._blockAlign == 4) + { + short* ptr2 = (short*)this._tempPtr; + for (int j = 0; j < length; j++) + { + Complex* intPtr5 = iqPtr; + short* intPtr6 = ptr2; + ptr2 = intPtr6 + 1; + intPtr5->Real = (float)(*intPtr6) * 3.051851E-05f; + Complex* intPtr7 = iqPtr; + short* intPtr8 = ptr2; + ptr2 = intPtr8 + 1; + intPtr7->Imag = (float)(*intPtr8) * 3.051851E-05f; + iqPtr++; + } + } + else if (this._blockAlign == 2) + { + byte* ptr3 = this._tempPtr; + for (int k = 0; k < length; k++) + { + Complex* intPtr9 = iqPtr; + byte* intPtr10 = ptr3; + ptr3 = intPtr10 + 1; + intPtr9->Real = (float)(*intPtr10 - 128) * 0.0078125f; + Complex* intPtr11 = iqPtr; + byte* intPtr12 = ptr3; + ptr3 = intPtr12 + 1; + intPtr11->Imag = (float)(*intPtr12 - 128) * 0.0078125f; + iqPtr++; + } + } + } + else + { + float* ptr4 = (float*)this._tempPtr; + for (int l = 0; l < length; l++) + { + Complex* intPtr13 = iqPtr; + float* intPtr14 = ptr4; + ptr4 = intPtr14 + 1; + intPtr13->Real = *intPtr14; + Complex* intPtr15 = iqPtr; + float* intPtr16 = ptr4; + ptr4 = intPtr16 + 1; + intPtr15->Imag = *intPtr16; + iqPtr++; + } + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WavePlayer.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WavePlayer.cs new file mode 100644 index 0000000..9ef46d8 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WavePlayer.cs @@ -0,0 +1,83 @@ +using PortAudioSharp; +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio.PortAudio +{ + public class WavePlayer : IDisposable + { + private IntPtr _streamHandle; + + private GCHandle _gcHandle; + + private readonly AudioBufferNeededDelegate _bufferNeeded; + + private unsafe readonly PaStreamCallbackDelegate _paCallback = WavePlayer.PaStreamCallback; + + public unsafe WavePlayer(int deviceIndex, double sampleRate, int framesPerBuffer, AudioBufferNeededDelegate bufferNeededDelegate) + { + Console.WriteLine("WavePlayer started, samplerate=" + sampleRate.ToString() + ", frameCount=" + framesPerBuffer.ToString()); + this._bufferNeeded = bufferNeededDelegate; + PaStreamParameters paStreamParameters = new PaStreamParameters + { + device = deviceIndex, + channelCount = 2, + suggestedLatency = 0.0, + sampleFormat = PaSampleFormat.PaFloat32 + }; + PaError paError = PortAudioAPI.Pa_IsFormatSupported(IntPtr.Zero, ref paStreamParameters, sampleRate); + if (paError != 0) + { + throw new ApplicationException("Init audio output device: " + paError.ToString()); + } + this._gcHandle = GCHandle.Alloc(this); + paError = PortAudioAPI.Pa_OpenStream(out this._streamHandle, IntPtr.Zero, ref paStreamParameters, sampleRate, (uint)framesPerBuffer, PaStreamFlags.PaNoFlag, this._paCallback, (IntPtr)this._gcHandle); + if (paError != 0) + { + this._gcHandle.Free(); + throw new ApplicationException("Open audio output device: " + paError.ToString()); + } + paError = PortAudioAPI.Pa_StartStream(this._streamHandle); + if (paError == PaError.paNoError) + { + return; + } + PortAudioAPI.Pa_CloseStream(this._streamHandle); + this._gcHandle.Free(); + throw new ApplicationException("Start audio output device: " + paError.ToString()); + } + + private unsafe static PaStreamCallbackResult PaStreamCallback(float* input, float* output, uint frameCount, ref PaStreamCallbackTimeInfo timeInfo, PaStreamCallbackFlags statusFlags, IntPtr userData) + { + GCHandle gCHandle = GCHandle.FromIntPtr(userData); + if (!gCHandle.IsAllocated) + { + return PaStreamCallbackResult.PaAbort; + } + WavePlayer wavePlayer = (WavePlayer)gCHandle.Target; + try + { + if (wavePlayer._bufferNeeded != null) + { + wavePlayer._bufferNeeded(output, (int)frameCount); + } + } + catch + { + return PaStreamCallbackResult.PaAbort; + } + return PaStreamCallbackResult.PaContinue; + } + + public void Dispose() + { + if (this._streamHandle != IntPtr.Zero) + { + PortAudioAPI.Pa_StopStream(this._streamHandle); + PortAudioAPI.Pa_CloseStream(this._streamHandle); + this._streamHandle = IntPtr.Zero; + } + this._gcHandle.Free(); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveRecorder.cs b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveRecorder.cs new file mode 100644 index 0000000..ad1fe25 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.PortAudio/WaveRecorder.cs @@ -0,0 +1,82 @@ +using PortAudioSharp; +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio.PortAudio +{ + public class WaveRecorder : IDisposable + { + private IntPtr _streamHandle; + + private GCHandle _gcHandle; + + private readonly AudioBufferAvailableDelegate _bufferAvailable; + + private unsafe readonly PaStreamCallbackDelegate _paCallback = WaveRecorder.PaStreamCallback; + + public unsafe WaveRecorder(int deviceIndex, double sampleRate, int framesPerBuffer, AudioBufferAvailableDelegate bufferAvailable) + { + this._bufferAvailable = bufferAvailable; + PaStreamParameters paStreamParameters = new PaStreamParameters + { + device = deviceIndex, + channelCount = 2, + suggestedLatency = 0.0, + sampleFormat = PaSampleFormat.PaFloat32 + }; + PaError paError = PortAudioAPI.Pa_IsFormatSupported(ref paStreamParameters, IntPtr.Zero, sampleRate); + if (paError != 0) + { + throw new ApplicationException("Init audio input device: " + paError.ToString()); + } + this._gcHandle = GCHandle.Alloc(this); + paError = PortAudioAPI.Pa_OpenStream(out this._streamHandle, ref paStreamParameters, IntPtr.Zero, sampleRate, (uint)framesPerBuffer, PaStreamFlags.PaNoFlag, this._paCallback, (IntPtr)this._gcHandle); + if (paError != 0) + { + this._gcHandle.Free(); + throw new ApplicationException("Open audio input device: " + paError.ToString()); + } + paError = PortAudioAPI.Pa_StartStream(this._streamHandle); + if (paError == PaError.paNoError) + { + return; + } + PortAudioAPI.Pa_CloseStream(this._streamHandle); + this._gcHandle.Free(); + throw new ApplicationException("Start audio input device: " + paError.ToString()); + } + + private unsafe static PaStreamCallbackResult PaStreamCallback(float* input, float* output, uint frameCount, ref PaStreamCallbackTimeInfo timeInfo, PaStreamCallbackFlags statusFlags, IntPtr userData) + { + GCHandle gCHandle = GCHandle.FromIntPtr(userData); + if (!gCHandle.IsAllocated) + { + return PaStreamCallbackResult.PaAbort; + } + WaveRecorder waveRecorder = (WaveRecorder)gCHandle.Target; + try + { + if (waveRecorder._bufferAvailable != null) + { + waveRecorder._bufferAvailable(input, (int)frameCount); + } + } + catch + { + return PaStreamCallbackResult.PaAbort; + } + return PaStreamCallbackResult.PaContinue; + } + + public void Dispose() + { + if (this._streamHandle != IntPtr.Zero) + { + PortAudioAPI.Pa_StopStream(this._streamHandle); + PortAudioAPI.Pa_CloseStream(this._streamHandle); + this._streamHandle = IntPtr.Zero; + } + this._gcHandle.Free(); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio.csproj b/SDRSharper.Radio/SDRSharp.Radio.csproj new file mode 100644 index 0000000..36c2ae6 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio.csproj @@ -0,0 +1,197 @@ + + + + {E732C8AC-E488-4A56-BCEB-DA66374422AA} + Debug + AnyCPU + Library + SDRSharp.Radio + v4.7 + 4 + True + + + + AnyCPU + + + bin\Debug\ + true + full + false + + + bin\Release\ + true + pdbonly + true + + + true + bin\x64\Debug\ + true + full + x64 + MinimumRecommendedRules.ruleset + TRACE;DEBUG;BUILD64 + false + + + true + bin\x64\Release\ + true + true + pdbonly + x64 + MinimumRecommendedRules.ruleset + false + BUILD64 + + + true + bin\x86\Debug\ + true + full + x64 + MinimumRecommendedRules.ruleset + TRACE;DEBUG;BUILD64 + false + + + true + bin\x86\Release\ + true + true + pdbonly + x86 + MinimumRecommendedRules.ruleset + false + BUILD32 + + + TRACE;DEBUG;BUILD64 + false + x64 + + + false + BUILD64 + x64 + + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Windows.Forms.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Drawing.dll + + + ..\..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.7\System.Configuration.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SDRSharper.Radio/SDRSharp.Radio/AmDetector.cs b/SDRSharper.Radio/SDRSharp.Radio/AmDetector.cs new file mode 100644 index 0000000..26528e3 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/AmDetector.cs @@ -0,0 +1,59 @@ +using System; + +namespace SDRSharp.Radio +{ + public sealed class AmDetector + { + private float _avg; + + private float _powerThreshold; + + private int _squelchThreshold; + + private bool _isSquelchOpen; + + public int SquelchThreshold + { + get + { + return this._squelchThreshold; + } + set + { + if (this._squelchThreshold != value) + { + this._squelchThreshold = value; + this._powerThreshold = ((float)this._squelchThreshold / 100f - 1f) * 100f - 50f; + } + } + } + + public bool IsSquelchOpen => this._isSquelchOpen; + + public unsafe void Demodulate(Complex* iq, float* audio, int length) + { + for (int i = 0; i < length; i++) + { + float num = iq[i].Modulus(); + if (this._squelchThreshold == 0) + { + audio[i] = num; + } + else + { + float num2 = (float)(20.0 * Math.Log10(1E-60 + (double)num)); + this._avg = 0.99f * this._avg + 0.01f * num2; + this._isSquelchOpen = (this._avg > this._powerThreshold); + if (this._isSquelchOpen) + { + audio[i] = num; + } + else + { + audio[i] = 0f; + } + } + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/AutomaticGainControl.cs b/SDRSharper.Radio/SDRSharp.Radio/AutomaticGainControl.cs new file mode 100644 index 0000000..c1bac24 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/AutomaticGainControl.cs @@ -0,0 +1,287 @@ +using System; + +namespace SDRSharp.Radio +{ + public sealed class AutomaticGainControl + { + private const float DelayTimeconst = 0.015f; + + private const float WindowTimeconst = 0.018f; + + private const float AttackRiseTimeconst = 0.002f; + + private const float AttackFallTimeconst = 0.005f; + + private const float DecayRisefallRatio = 0.3f; + + private const float ReleaseTimeconst = 0.05f; + + private const float AGCOutscale = 0.7f; + + private UnsafeBuffer _sigDelayBuf; + + private unsafe float* _sigDelayBufPtr; + + private UnsafeBuffer _magBuf; + + private unsafe float* _magBufPtr; + + private float _decayAve; + + private float _attackAve; + + private float _attackRiseAlpha; + + private float _attackFallAlpha; + + private float _decayRiseAlpha; + + private float _decayFallAlpha; + + private float _fixedGain; + + private float _knee; + + private float _gainSlope; + + private float _peak; + + private int _sigDelayPtr; + + private int _magBufPos; + + private int _delaySamples; + + private int _windowSamples; + + private int _hangTime; + + private int _hangTimer; + + private float _threshold; + + private float _slopeFactor; + + private float _decay; + + private double _sampleRate; + + private bool _useHang; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + if (this._sampleRate != value) + { + this._sampleRate = value; + this.Configure(true); + } + } + } + + public bool UseHang + { + get + { + return this._useHang; + } + set + { + if (this._useHang != value) + { + this._useHang = value; + this.Configure(false); + } + } + } + + public float Threshold + { + get + { + return this._threshold; + } + set + { + if (this._threshold != value) + { + this._threshold = value; + this.Configure(false); + } + } + } + + public float Slope + { + get + { + return this._slopeFactor; + } + set + { + if (this._slopeFactor != value) + { + this._slopeFactor = value; + this.Configure(false); + } + } + } + + public float Decay + { + get + { + return this._decay; + } + set + { + if (this._decay != value) + { + this._decay = value; + this.Configure(false); + } + } + } + + private unsafe void Configure(bool resetBuffers) + { + if (resetBuffers) + { + this._sigDelayPtr = 0; + this._hangTimer = 0; + this._peak = -16f; + this._decayAve = -5f; + this._attackAve = -5f; + this._magBufPos = 0; + if (this._sampleRate > 0.0) + { + this._delaySamples = (int)(this._sampleRate * 0.014999999664723873); + this._windowSamples = (int)(this._sampleRate * 0.017999999225139618); + this._sigDelayBuf = UnsafeBuffer.Create(this._delaySamples, 4); + this._sigDelayBufPtr = (float*)(void*)this._sigDelayBuf; + this._magBuf = UnsafeBuffer.Create(this._windowSamples, 4); + this._magBufPtr = (float*)(void*)this._magBuf; + for (int i = 0; i < this._windowSamples; i++) + { + this._magBufPtr[i] = -16f; + } + if (this._delaySamples >= this._sigDelayBuf.Length - 1) + { + this._delaySamples = this._sigDelayBuf.Length - 1; + } + } + } + this._knee = this._threshold / 20f; + this._gainSlope = this._slopeFactor / 100f; + this._fixedGain = 0.7f * (float)Math.Pow(10.0, (double)this._knee * ((double)this._gainSlope - 1.0)); + this._attackRiseAlpha = 1f - (float)Math.Exp(-1.0 / (this._sampleRate * 0.0020000000949949026)); + this._attackFallAlpha = 1f - (float)Math.Exp(-1.0 / (this._sampleRate * 0.004999999888241291)); + this._decayRiseAlpha = 1f - (float)Math.Exp(-1.0 / (this._sampleRate * (double)this.Decay * 0.001 * 0.30000001192092896)); + this._hangTime = (int)(this._sampleRate * (double)this.Decay * 0.001); + if (this._useHang) + { + this._decayFallAlpha = 1f - (float)Math.Exp(-1.0 / (this._sampleRate * 0.05000000074505806)); + } + else + { + this._decayFallAlpha = 1f - (float)Math.Exp(-1.0 / (this._sampleRate * (double)this.Decay * 0.001)); + } + } + + public unsafe void Process(float* buffer, int length) + { + for (int i = 0; i < length; i++) + { + float num = buffer[i]; + if ((double)num != 0.0) + { + num *= 1000f; + float num2 = this._sigDelayBufPtr[this._sigDelayPtr]; + this._sigDelayBufPtr[this._sigDelayPtr++] = num; + if (this._sigDelayPtr >= this._delaySamples) + { + this._sigDelayPtr = 0; + } + float num3 = (float)Math.Log10((double)Math.Abs(num)); + if (float.IsNaN(num3) || float.IsInfinity(num3)) + { + num3 = -8f; + } + float num4 = this._magBufPtr[this._magBufPos]; + this._magBufPtr[this._magBufPos++] = num3; + if (this._magBufPos >= this._windowSamples) + { + this._magBufPos = 0; + } + if (num3 > this._peak) + { + this._peak = num3; + } + else if (num4 == this._peak) + { + this._peak = -8f; + for (int j = 0; j < this._windowSamples; j++) + { + num4 = this._magBufPtr[j]; + if (num4 > this._peak) + { + this._peak = num4; + } + } + } + if (this.UseHang) + { + if (this._peak > this._attackAve) + { + this._attackAve = (1f - this._attackRiseAlpha) * this._attackAve + this._attackRiseAlpha * this._peak; + } + else + { + this._attackAve = (1f - this._attackFallAlpha) * this._attackAve + this._attackFallAlpha * this._peak; + } + if (this._peak > this._decayAve) + { + this._decayAve = (1f - this._decayRiseAlpha) * this._decayAve + this._decayRiseAlpha * this._peak; + this._hangTimer = 0; + } + else if (this._hangTimer < this._hangTime) + { + this._hangTimer++; + } + else + { + this._decayAve = (1f - this._decayFallAlpha) * this._decayAve + this._decayFallAlpha * this._peak; + } + } + else + { + if (this._peak > this._attackAve) + { + this._attackAve = (1f - this._attackRiseAlpha) * this._attackAve + this._attackRiseAlpha * this._peak; + } + else + { + this._attackAve = (1f - this._attackFallAlpha) * this._attackAve + this._attackFallAlpha * this._peak; + } + if (this._peak > this._decayAve) + { + this._decayAve = (1f - this._decayRiseAlpha) * this._decayAve + this._decayRiseAlpha * this._peak; + } + else + { + this._decayAve = (1f - this._decayFallAlpha) * this._decayAve + this._decayFallAlpha * this._peak; + } + } + num3 = ((this._attackAve > this._decayAve) ? this._attackAve : this._decayAve); + float num5 = (!(num3 <= this._knee)) ? (0.7f * (float)Math.Pow(10.0, (double)num3 * ((double)this._gainSlope - 1.0))) : this._fixedGain; + buffer[i] = num2 * num5 * 1E-05f; + } + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/BlockMode.cs b/SDRSharper.Radio/SDRSharp.Radio/BlockMode.cs new file mode 100644 index 0000000..5442bce --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/BlockMode.cs @@ -0,0 +1,10 @@ +namespace SDRSharp.Radio +{ + public enum BlockMode + { + None, + BlockingRead, + BlockingWrite, + BlockingReadWrite + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/CicDecimator.cs b/SDRSharper.Radio/SDRSharp.Radio/CicDecimator.cs new file mode 100644 index 0000000..dc9dc6c --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/CicDecimator.cs @@ -0,0 +1,69 @@ +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio +{ + [StructLayout(LayoutKind.Sequential, Pack = 16, Size = 96)] + public struct CicDecimator + { + private float _xOdd; + + private float _xEven; + + public float XOdd + { + get + { + return this._xOdd; + } + set + { + this._xOdd = value; + } + } + + public float XEven + { + get + { + return this._xEven; + } + set + { + this._xEven = value; + } + } + + public unsafe void Process(float* buffer, int length) + { + int num = 0; + int num2 = 0; + while (num < length) + { + float num3 = buffer[num]; + float num4 = buffer[num + 1]; + buffer[num2] = (float)(0.125 * ((double)(num4 + this._xEven) + 3.0 * (double)(this._xOdd + num3))); + this._xOdd = num4; + this._xEven = num3; + num += 2; + num2++; + } + } + + public unsafe void ProcessInterleaved(float* buffer, int length) + { + length *= 2; + int num = 0; + int num2 = 0; + while (num < length) + { + float num3 = buffer[num]; + float num4 = buffer[num + 2]; + buffer[num2] = 0.125f * (num4 + this._xEven + 3f * (this._xOdd + num3)); + this._xOdd = num4; + this._xEven = num3; + num += 4; + num2 += 2; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Complex.cs b/SDRSharper.Radio/SDRSharp.Radio/Complex.cs new file mode 100644 index 0000000..ec8872a --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Complex.cs @@ -0,0 +1,174 @@ +using System; + +namespace SDRSharp.Radio +{ + public struct Complex + { + public float Real; + + public float Imag; + + public Complex(float real, float imaginary) + { + this.Real = real; + this.Imag = imaginary; + } + + public Complex(Complex c) + { + this.Real = c.Real; + this.Imag = c.Imag; + } + + public static void Add(ref Complex result, Complex c1, Complex c2) + { + result.Real = c1.Real + c2.Real; + result.Imag = c1.Imag + c2.Imag; + } + + public static void Add(ref Complex result, Complex c, float f) + { + result.Real = c.Real + f; + result.Imag = c.Imag; + } + + public static void Add(ref Complex result, Complex c) + { + result.Real += c.Real; + result.Imag += c.Imag; + } + + public static void Add(ref Complex result, float f) + { + result.Real += f; + } + + public static void Sub(ref Complex result, Complex c1, Complex c2) + { + result.Real = c1.Real - c2.Real; + result.Imag = c1.Imag - c2.Imag; + } + + public static void Sub(ref Complex result, Complex c, float f) + { + result.Real = c.Real - f; + result.Imag = c.Imag; + } + + public static void Mul(ref Complex result, Complex c1, Complex c2) + { + result.Real = c1.Real * c2.Real - c1.Imag * c2.Imag; + result.Imag = c1.Imag * c2.Real + c1.Real * c2.Imag; + } + + public static void Mul(ref Complex result, Complex c) + { + float real = result.Real; + float imag = result.Imag; + result.Real = real * c.Real - imag * c.Imag; + result.Imag = imag * c.Real + real * c.Imag; + } + + public static void Mul(ref Complex result, Complex c, float f) + { + result.Real = c.Real * f; + result.Imag = c.Imag * f; + } + + public static void Mul(ref Complex result, float f) + { + result.Real *= f; + result.Imag *= f; + } + + public static void Div(ref Complex result, Complex c, float f) + { + result.Real = c.Real / f; + result.Imag = c.Imag / f; + } + + public static void Div(ref Complex result, float f) + { + result.Real /= f; + result.Imag /= f; + } + + public float Modulus() + { + return (float)Math.Sqrt((double)this.ModulusSquared()); + } + + public float ModulusSquared() + { + return this.Real * this.Real + this.Imag * this.Imag; + } + + public float Argument() + { + return (float)Math.Atan2((double)this.Imag, (double)this.Real); + } + + public float FastArgument() + { + return Trig.Atan2(this.Imag, this.Real); + } + + public static void Conjugate(ref Complex result, Complex c) + { + result.Real = c.Real; + result.Imag = 0f - c.Imag; + } + + public static void Conjugate(ref Complex c) + { + c.Imag = 0f - c.Imag; + } + + public static void FromAngle(ref Complex result, double angle) + { + result.Real = (float)Math.Cos(angle); + result.Imag = (float)Math.Sin(angle); + } + + public static bool operator ==(Complex leftHandSide, Complex rightHandSide) + { + if (leftHandSide.Real != rightHandSide.Real) + { + return false; + } + return leftHandSide.Imag == rightHandSide.Imag; + } + + public static bool operator !=(Complex leftHandSide, Complex rightHandSide) + { + if (leftHandSide.Real != rightHandSide.Real) + { + return true; + } + return leftHandSide.Imag != rightHandSide.Imag; + } + + public override int GetHashCode() + { + return this.Real.GetHashCode() * 397 ^ this.Imag.GetHashCode(); + } + + public bool Equals(Complex obj) + { + if (obj.Real == this.Real) + { + return obj.Imag == this.Imag; + } + return false; + } + + public override bool Equals(object obj) + { + if (obj.GetType() != typeof(Complex)) + { + return false; + } + return this.Equals((Complex)obj); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/ComplexFifoStream.cs b/SDRSharper.Radio/SDRSharp.Radio/ComplexFifoStream.cs new file mode 100644 index 0000000..943163e --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/ComplexFifoStream.cs @@ -0,0 +1,305 @@ +using System; +using System.Collections.Generic; + +namespace SDRSharp.Radio +{ + public sealed class ComplexFifoStream : IDisposable + { + private const int BlockSize = 8192; + + private const int MaxBlocksInCache = 512; + + private int _size; + + private int _readPos; + + private int _writePos; + + private bool _terminated; + + private readonly int _maxSize; + + private readonly SharpEvent _writeEvent; + + private readonly SharpEvent _readEvent; + + private readonly Stack _usedBlocks = new Stack(); + + private readonly List _blocks = new List(); + + private int _logMax; + + private string _logName = ""; + + private bool _logR; + + private bool _logW; + + public int Length => this._size; + + public ComplexFifoStream() + : this(BlockMode.None) + { + } + + public ComplexFifoStream(BlockMode blockMode) + : this(blockMode, 0) + { + } + + public ComplexFifoStream(BlockMode blockMode, int maxSize) + { + if (blockMode == BlockMode.BlockingRead || blockMode == BlockMode.BlockingReadWrite) + { + this._readEvent = new SharpEvent(false); + } + if (blockMode == BlockMode.BlockingWrite || blockMode == BlockMode.BlockingReadWrite) + { + if (maxSize <= 0) + { + throw new ArgumentException("MaxSize should be greater than zero when in blocking write mode", "maxSize"); + } + this._writeEvent = new SharpEvent(false); + } + this._maxSize = maxSize; + } + + ~ComplexFifoStream() + { + this.Dispose(); + } + + public void SetLog(string logName, int logMax, bool read = true, bool write = true) + { + this._logName = logName; + this._logMax = logMax; + this._logR = read; + this._logW = write; + } + + public void Dispose() + { + this.Close(); + GC.SuppressFinalize(this); + } + + private unsafe UnsafeBuffer AllocBlock() + { + if (this._usedBlocks.Count > 0) + { + return this._usedBlocks.Pop(); + } + return UnsafeBuffer.Create(8192, sizeof(Complex)); + } + + private void FreeBlock(UnsafeBuffer block) + { + if (this._usedBlocks.Count < 512) + { + this._usedBlocks.Push(block); + } + } + + private UnsafeBuffer GetWBlock() + { + UnsafeBuffer unsafeBuffer; + if (this._writePos < 8192 && this._blocks.Count > 0) + { + unsafeBuffer = this._blocks[this._blocks.Count - 1]; + } + else + { + unsafeBuffer = this.AllocBlock(); + this._blocks.Add(unsafeBuffer); + this._writePos = 0; + } + return unsafeBuffer; + } + + public void Close() + { + this.Flush(); + this._terminated = true; + if (this._writeEvent != null) + { + this._writeEvent.Set(); + } + if (this._readEvent != null) + { + this._readEvent.Set(); + } + } + + public void Flush() + { + lock (this) + { + foreach (UnsafeBuffer block in this._blocks) + { + this.FreeBlock(block); + } + this._blocks.Clear(); + this._readPos = 0; + this._writePos = 0; + this._size = 0; + } + } + + public unsafe int Read(Complex* buf, int ofs, int count) + { + if (this._readEvent != null) + { + while (this._size == 0 && !this._terminated) + { + if (this._logR) + { + Console.WriteLine(this._logName + ", read paused, no data"); + } + this._readEvent.WaitOne(); + } + if (this._terminated) + { + return 0; + } + } + else if (this._size == 0) + { + Console.WriteLine(this._logName + ", read, data error"); + } + int num = default(int); + lock (this) + { + num = this.DoPeek(buf, ofs, count); + this.DoAdvance(num); + } + if (this._writeEvent != null) + { + this._writeEvent.Set(); + } + return num; + } + + public unsafe void Write(Complex* buf, int ofs, int count) + { + if (this._writeEvent != null) + { + while (this._size >= this._maxSize && !this._terminated) + { + if (this._logW) + { + Console.WriteLine(this._logName + ", write paused, maxSize=" + this._maxSize.ToString()); + } + this._writeEvent.WaitOne(); + } + if (this._terminated) + { + return; + } + } + lock (this) + { + int num2; + for (int num = count; num > 0; num -= num2) + { + num2 = Math.Min(8192 - this._writePos, num); + UnsafeBuffer wBlock = this.GetWBlock(); + Complex* ptr = (Complex*)(void*)wBlock; + Utils.Memcpy(ptr + this._writePos, buf + ofs + count - num, num2 * sizeof(Complex)); + this._writePos += num2; + } + this._size += count; + } + if (this._readEvent != null) + { + this._readEvent.Set(); + } + } + + public unsafe int Read(Complex* buf, int count) + { + return this.Read(buf, 0, count); + } + + public unsafe void Write(Complex* buf, int count) + { + this.Write(buf, 0, count); + } + + private int DoAdvance(int count) + { + int num = count; + while (num > 0 && this._size > 0) + { + if (this._readPos == 8192) + { + this._readPos = 0; + this.FreeBlock(this._blocks[0]); + this._blocks.RemoveAt(0); + } + int num2 = (this._blocks.Count == 1) ? Math.Min(this._writePos - this._readPos, num) : Math.Min(8192 - this._readPos, num); + this._readPos += num2; + num -= num2; + this._size -= num2; + } + return count - num; + } + + public int Advance(int count) + { + if (this._readEvent != null) + { + while (this._size == 0 && !this._terminated) + { + this._readEvent.WaitOne(); + } + if (this._terminated) + { + return 0; + } + } + int result = default(int); + lock (this) + { + result = this.DoAdvance(count); + } + if (this._writeEvent != null) + { + this._writeEvent.Set(); + } + return result; + } + + private unsafe int DoPeek(Complex* buf, int ofs, int count) + { + int num = count; + int num2 = this._readPos; + int num3 = this._size; + int num4 = 0; + while (num > 0 && num3 > 0) + { + if (num2 == 8192) + { + num2 = 0; + num4++; + } + int num5 = (num4 < this._blocks.Count - 1) ? 8192 : this._writePos; + int num6 = Math.Min(num5 - num2, num); + UnsafeBuffer unsafeBuffer = this._blocks[num4]; + Complex* ptr = (Complex*)(void*)unsafeBuffer; + Utils.Memcpy(buf + ofs + count - num, ptr + num2, num6 * sizeof(Complex)); + num -= num6; + num2 += num6; + num3 -= num6; + } + return count - num; + } + + public unsafe int Peek(Complex* buf, int ofs, int count) + { + lock (this) + { + return this.DoPeek(buf, ofs, count); + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Counter.cs b/SDRSharper.Radio/SDRSharp.Radio/Counter.cs new file mode 100644 index 0000000..0094e85 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Counter.cs @@ -0,0 +1,26 @@ +using System.Diagnostics; + +namespace SDRSharp.Radio +{ + public class Counter : Stopwatch + { + private int _count; + + public long Elaps(int init) + { + if (--this._count > 0) + { + return 0L; + } + if (init != 0) + { + base.Stop(); + } + long elapsedMilliseconds = base.ElapsedMilliseconds; + this._count = init; + base.Reset(); + base.Start(); + return elapsedMilliseconds / init; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/CpxBandFilter.cs b/SDRSharper.Radio/SDRSharp.Radio/CpxBandFilter.cs new file mode 100644 index 0000000..4bfbb8f --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/CpxBandFilter.cs @@ -0,0 +1,122 @@ +using System; + +namespace SDRSharp.Radio +{ + public class CpxBandFilter + { + private int _width; + + private int _frequency; + + private CpxFirFilter _cpxFilter; + + private int _order = 1000; + + private int _fftLen = 1024; + + private float[] _coeffs; + + private Complex[] _kernel; + + private Complex[] _fftBuf; + + public int Width + { + get + { + return this._width; + } + set + { + this._width = value; + } + } + + public int Frequency + { + get + { + return this._frequency; + } + set + { + this._frequency = value; + } + } + + public CpxBandFilter() + { + this._cpxFilter = new CpxFirFilter(); + this._coeffs = new float[this._order]; + this._fftBuf = new Complex[this._fftLen]; + this._kernel = new Complex[this._order]; + } + + public unsafe void MakeCoefficients(double sampleRate, int frequency, int width, WindowType window, bool stopBand = true) + { + int order = this._order; + if (sampleRate < 30000.0 || width > 600) + { + order = 400; + } + if (sampleRate < 3000.0 || width > 6000) + { + order = 200; + } + this._width = width; + this._frequency = frequency; + int num = this._frequency - this._width / 2; + int num2 = this._frequency + this._width / 2; + int num3 = (int)Math.Max((double)(-this._fftLen / 2), (double)(num * this._fftLen) / sampleRate); + int num4 = (int)Math.Min((double)(this._fftLen / 2), (double)(num2 * this._fftLen) / sampleRate); + num3 = -num3; + if (num3 < 0) + { + num3 += this._fftLen; + } + num4 = -num4; + if (num4 < 0) + { + num4 += this._fftLen; + } + Complex[] fftBuf = this._fftBuf; + fixed (Complex* buffer = fftBuf) + { + int num5 = (!stopBand) ? 1 : 0; + int num6 = stopBand ? 1 : 0; + for (int i = 0; i < this._fftLen; this._fftBuf[i].Imag = 0f, i++) + { + if (num3 < this._fftLen / 2 && num4 >= this._fftLen / 2) + { + this._fftBuf[i].Real = (float)((i < num3 || i > num4) ? num5 : num6); + continue; + } + ref Complex val = ref this._fftBuf[i]; + if (num3 <= num4 && i >= num3 && i <= num4) + { + goto IL_0171; + } + if (num4 < num3 && i >= num4 && i < num3) + { + goto IL_0171; + } + int num7 = num6; + goto IL_0173; + IL_0171: + num7 = num5; + goto IL_0173; + IL_0173: + val.Real = (float)num7; + } + Fourier.BackwardTransform(buffer, this._fftLen); + } + this._kernel = FilterBuilder.MakeKernelFromFFT(this._fftBuf, this._fftLen, window, order); + this._cpxFilter.SetCoefficients(this._kernel); + } + + public unsafe void Process(Complex* iqPtr, int length) + { + this._cpxFilter.Process(iqPtr, length); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/CpxFirFilter.cs b/SDRSharper.Radio/SDRSharp.Radio/CpxFirFilter.cs new file mode 100644 index 0000000..f681873 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/CpxFirFilter.cs @@ -0,0 +1,444 @@ +using System; + +namespace SDRSharp.Radio +{ + public sealed class CpxFirFilter : IDisposable, IComplexFir + { + private const double Epsilon = 1E-06; + + private const int CircularBufferSize = 4; + + private unsafe Complex* _coeffPtr; + + private UnsafeBuffer _coeffBuffer; + + private unsafe Complex* _queuePtr; + + private UnsafeBuffer _queueBuffer; + + private int _queueSize; + + private int _offset; + + private bool _isSymmetric; + + private bool _isSparse; + + private bool _isFast; + + private int _fftSize = 4096; + + private UnsafeBuffer _segment; + + private unsafe Complex* _segPtr; + + private UnsafeBuffer _kernel; + + private unsafe Complex* _kerPtr; + + private UnsafeBuffer _overlap; + + private unsafe Complex* _olaPtr; + + private UnsafeBuffer _temp; + + private unsafe Complex* _tmpPtr; + + private Complex _acc = default(Complex); + + private Complex _tmp = default(Complex); + + private Complex _dif = default(Complex); + + private int _fftLen; + + public int Length => this._queueSize; + + public CpxFirFilter() + { + } + + public CpxFirFilter(float[] coefficients) + { + this.SetCoefficients(coefficients); + } + + public CpxFirFilter(Complex[] coefficients) + { + this.SetCoefficients(coefficients); + } + + ~CpxFirFilter() + { + this.Dispose(); + } + + public unsafe void Dispose() + { + this._coeffBuffer = null; + this._queueBuffer = null; + this._coeffPtr = null; + this._queuePtr = null; + this._segment = null; + this._segPtr = null; + this._kernel = null; + this._kerPtr = null; + this._overlap = null; + this._olaPtr = null; + this._tmpPtr = null; + GC.SuppressFinalize(this); + } + + public void SetCoefficients(float[] coefficients) + { + Complex[] array = new Complex[coefficients.Length]; + for (int i = 0; i < array.Length; i++) + { + array[i].Real = coefficients[i]; + array[i].Imag = 0f; + } + this.SetCoefficients(array); + } + + public unsafe void SetCoefficients(Complex[] coefficients) + { + this._isFast = false; + if (coefficients != null) + { + if (this._coeffBuffer == null || coefficients.Length != this._queueSize) + { + this._queueSize = coefficients.Length; + this._offset = this._queueSize * 3; + this._coeffBuffer = UnsafeBuffer.Create(this._queueSize, sizeof(Complex)); + this._coeffPtr = (Complex*)(void*)this._coeffBuffer; + this._queueBuffer = UnsafeBuffer.Create(this._queueSize * 4, sizeof(Complex)); + this._queuePtr = (Complex*)(void*)this._queueBuffer; + } + for (int i = 0; i < this._queueSize; i++) + { + this._coeffPtr[i] = coefficients[i]; + } + this._isSymmetric = true; + this._isSparse = true; + if (this._queueSize % 2 != 0) + { + int num = this._queueSize / 2; + for (int j = 0; j < num; j++) + { + int num2 = this._queueSize - 1 - j; + Complex.Sub(ref this._dif, this._coeffPtr[j], this._coeffPtr[num2]); + if ((double)this._dif.Modulus() > 1E-06) + { + this._isSymmetric = false; + this._isSparse = false; + break; + } + if (j % 2 != 0) + { + this._isSparse = (this._coeffPtr[j].Real == 0f && this._coeffPtr[j].Imag == 0f && this._coeffPtr[num2].Real == 0f && this._coeffPtr[num2].Imag == 0f); + } + } + } + if (this._segment == null || this._segment.Length != this._fftSize) + { + this._segment = UnsafeBuffer.Create(this._fftSize, sizeof(Complex)); + this._segPtr = (Complex*)(void*)this._segment; + this._kernel = UnsafeBuffer.Create(this._fftSize, sizeof(Complex)); + this._kerPtr = (Complex*)(void*)this._kernel; + this._overlap = UnsafeBuffer.Create(this._fftSize, sizeof(Complex)); + this._olaPtr = (Complex*)(void*)this._overlap; + this._temp = UnsafeBuffer.Create(this._fftSize, sizeof(Complex)); + this._tmpPtr = (Complex*)(void*)this._temp; + } + if (this._queueSize < 64) + { + this._fftLen = 128; + goto IL_033c; + } + if (this._queueSize < 128) + { + this._fftLen = 256; + goto IL_033c; + } + if (this._queueSize < 256) + { + this._fftLen = 512; + goto IL_033c; + } + if (this._queueSize < 512) + { + this._fftLen = 1024; + goto IL_033c; + } + if (this._queueSize < 1024) + { + this._fftLen = 2048; + goto IL_033c; + } + if (this._queueSize < 2048) + { + this._fftLen = 4096; + goto IL_033c; + } + throw new Exception("kernel too long"); + } + return; + IL_033c: + CpxFirFilter.FillFft(this._kerPtr, this._fftLen, this._coeffPtr, this._queueSize); + Fourier.ForwardTransform(this._kerPtr, this._fftLen, false); + this._isFast = true; + } + + public unsafe void Process(Complex* buffer, int length) + { + if (this._isFast) + { + this.FastConvolve(buffer, length); + } + else if (this._isSparse) + { + this.ProcessSparseSymmetric(buffer, length); + } + else if (this._isSymmetric) + { + this.ProcessSymmetric(buffer, length); + } + else + { + this.ProcessStandard(buffer, length); + } + } + + private unsafe void ProcessStandard(Complex* buffer, int length) + { + if (this._queueBuffer != null) + { + for (int i = 0; i < length; i++) + { + Complex* ptr = this._queuePtr + this._offset; + *ptr = buffer[i]; + this._acc.Real = 0f; + this._acc.Imag = 0f; + int num = this._queueSize; + Complex* ptr2 = ptr; + Complex* ptr3 = this._coeffPtr; + if (num >= 4) + { + do + { + Complex.Mul(ref this._acc, *ptr2, *ptr3); + Complex.Mul(ref this._tmp, ptr2[1], ptr3[1]); + Complex.Add(ref this._acc, this._tmp); + Complex.Mul(ref this._tmp, ptr2[2], ptr3[2]); + Complex.Add(ref this._acc, this._tmp); + Complex.Mul(ref this._tmp, ptr2[3], ptr3[3]); + Complex.Add(ref this._acc, this._tmp); + ptr2 += 4; + ptr3 += 4; + } + while ((num -= 4) >= 4); + } + while (num-- > 0) + { + ref Complex tmp = ref this._tmp; + Complex* intPtr = ptr2; + ptr2 = intPtr + 1; + Complex c = *intPtr; + Complex* intPtr2 = ptr3; + ptr3 = intPtr2 + 1; + Complex.Mul(ref tmp, c, *intPtr2); + Complex.Add(ref this._acc, this._tmp); + } + if (--this._offset < 0) + { + this._offset = this._queueSize * 3; + Utils.Memcpy(this._queuePtr + this._offset + 1, this._queuePtr, (this._queueSize - 1) * sizeof(Complex)); + } + buffer[i] = this._acc; + } + } + } + + private unsafe void ProcessSymmetric(Complex* buffer, int length) + { + for (int i = 0; i < length; i++) + { + Complex* ptr = this._queuePtr + this._offset; + *ptr = buffer[i]; + this._acc.Real = 0f; + this._acc.Imag = 0f; + int num = this._queueSize / 2; + int num2 = num; + Complex* ptr2 = this._coeffPtr; + Complex* ptr3 = ptr; + Complex* ptr4 = ptr + this._queueSize - 1; + if (num2 >= 4) + { + do + { + Complex.Mul(ref this._acc, *ptr2, *ptr3); + Complex.Mul(ref this._tmp, ptr2[1], ptr3[1]); + Complex.Add(ref this._acc, this._tmp); + Complex.Mul(ref this._tmp, ptr2[2], ptr3[2]); + Complex.Add(ref this._acc, this._tmp); + Complex.Mul(ref this._tmp, ptr2[3], ptr3[3]); + Complex.Add(ref this._acc, this._tmp); + ptr2 += 4; + ptr3 += 4; + ptr4 -= 4; + } + while ((num2 -= 4) >= 4); + } + while (num2-- > 0) + { + ref Complex tmp = ref this._tmp; + Complex* intPtr = ptr3; + ptr3 = intPtr + 1; + Complex c = *intPtr; + Complex* intPtr2 = ptr4; + ptr4 = intPtr2 - 1; + Complex.Add(ref tmp, c, *intPtr2); + ref Complex tmp2 = ref this._tmp; + Complex* intPtr3 = ptr2; + ptr2 = intPtr3 + 1; + Complex.Mul(ref tmp2, *intPtr3); + Complex.Add(ref this._acc, this._tmp); + } + Complex.Mul(ref this._tmp, ptr[num], this._coeffPtr[num]); + Complex.Add(ref this._acc, this._tmp); + if (--this._offset < 0) + { + this._offset = this._queueSize * 3; + Utils.Memcpy(this._queuePtr + this._offset + 1, this._queuePtr, (this._queueSize - 1) * sizeof(Complex)); + } + buffer[i] = this._acc; + } + } + + private unsafe void ProcessSparseSymmetric(Complex* buffer, int length) + { + for (int i = 0; i < length; i++) + { + Complex* ptr = this._queuePtr + this._offset; + *ptr = buffer[i]; + this._acc.Real = 0f; + this._acc.Imag = 0f; + int num = this._queueSize / 2; + int num2 = num; + Complex* ptr2 = this._coeffPtr; + Complex* ptr3 = ptr; + Complex* ptr4 = ptr + this._queueSize - 1; + if (num2 >= 8) + { + do + { + Complex.Mul(ref this._acc, *ptr2, *ptr3); + Complex.Mul(ref this._tmp, ptr2[2], ptr3[2]); + Complex.Add(ref this._acc, this._tmp); + Complex.Mul(ref this._tmp, ptr2[4], ptr3[4]); + Complex.Add(ref this._acc, this._tmp); + Complex.Mul(ref this._tmp, ptr2[6], ptr3[6]); + Complex.Add(ref this._acc, this._tmp); + ptr2 += 8; + ptr3 += 8; + ptr4 -= 8; + } + while ((num2 -= 8) >= 8); + } + if (num2 >= 4) + { + Complex.Add(ref this._tmp, *ptr3, *ptr4); + Complex.Mul(ref this._tmp, *ptr2); + Complex.Add(ref this._acc, this._tmp); + Complex.Add(ref this._tmp, ptr3[2], ptr4[-2]); + Complex.Mul(ref this._tmp, ptr2[2]); + Complex.Add(ref this._acc, this._tmp); + ptr2 += 4; + ptr3 += 4; + ptr4 -= 4; + num2 -= 4; + } + while (num2-- > 0) + { + ref Complex tmp = ref this._tmp; + Complex* intPtr = ptr3; + ptr3 = intPtr + 1; + Complex c = *intPtr; + Complex* intPtr2 = ptr4; + ptr4 = intPtr2 - 1; + Complex.Add(ref tmp, c, *intPtr2); + ref Complex tmp2 = ref this._tmp; + Complex* intPtr3 = ptr2; + ptr2 = intPtr3 + 1; + Complex.Mul(ref tmp2, *intPtr3); + Complex.Add(ref this._acc, this._tmp); + } + Complex.Mul(ref this._tmp, ptr[num], this._coeffPtr[num]); + Complex.Add(ref this._acc, this._tmp); + if (--this._offset < 0) + { + this._offset = this._queueSize * 3; + Utils.Memcpy(this._queuePtr + this._offset + 1, this._queuePtr, (this._queueSize - 1) * sizeof(Complex)); + } + buffer[i] = this._acc; + } + } + + private unsafe void FastConvolve(Complex* buffer, int bufLen) + { + int num = (int)Math.Log((double)bufLen, 2.0); + if (1 << num != bufLen) + { + throw new Exception("Length is not a power of 2"); + } + int num2 = this._fftLen / 2; + if (bufLen < num2) + { + num2 = bufLen; + } + int num3 = bufLen / num2; + for (int i = 0; i < num3; i++) + { + CpxFirFilter.FillFft(this._segPtr, this._fftLen, buffer, num2); + Fourier.ForwardTransform(this._segPtr, this._fftLen, false); + for (int j = 0; j < this._fftLen; j++) + { + Complex.Mul(ref this._segPtr[j], this._kerPtr[j]); + } + Fourier.BackwardTransform(this._segPtr, this._fftLen); + for (int k = 0; k < this._fftLen; k++) + { + if (k < num2) + { + Complex.Add(ref buffer[k], this._olaPtr[k], this._segPtr[k]); + } + else if (k < this._fftLen - num2) + { + Complex.Add(ref this._olaPtr[k - num2], this._olaPtr[k], this._segPtr[k]); + } + else + { + this._olaPtr[k - num2] = this._segPtr[k]; + } + } + buffer += num2; + } + } + + public unsafe static void FillFft(Complex* buffer, int bufLen, Complex* data, int datLen) + { + for (int i = 0; i < bufLen; i++) + { + if (i < datLen) + { + buffer[i] = data[i]; + } + else + { + buffer[i].Real = 0f; + buffer[i].Imag = 0f; + } + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/CuteFir.cs b/SDRSharper.Radio/SDRSharp.Radio/CuteFir.cs new file mode 100644 index 0000000..1359163 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/CuteFir.cs @@ -0,0 +1,376 @@ +using System; + +namespace SDRSharp.Radio +{ + public class CuteFir + { + private const int MAX_NUMCOEF = 75; + + private float _sampleRate; + + private int _numTaps; + + private int _state; + + private float[] _coef = new float[150]; + + private float[] _iCoef = new float[150]; + + private float[] _qCoef = new float[150]; + + private float[] _rZBuf = new float[75]; + + private Complex[] _cZBuf = new Complex[75]; + + public CuteFir() + { + this._numTaps = 1; + this._state = 0; + } + + public unsafe void ProcessFilter(int InLength, float* InBuf, float* OutBuf) + { + lock (this) + { + for (int i = 0; i < InLength; i++) + { + this._rZBuf[this._state] = InBuf[i]; + fixed (float* ptr = &this._coef[this._numTaps - this._state]) + { + fixed (float* ptr3 = &this._rZBuf[0]) + { + float* ptr2 = ptr; + float* ptr4 = ptr3; + float* intPtr = ptr2; + ptr2 = intPtr + 1; + float num = *intPtr; + float* intPtr2 = ptr4; + ptr4 = intPtr2 + 1; + float num2 = num * *intPtr2; + for (int j = 1; j < this._numTaps; j++) + { + float num3 = num2; + float* intPtr3 = ptr2; + ptr2 = intPtr3 + 1; + float num4 = *intPtr3; + float* intPtr4 = ptr4; + ptr4 = intPtr4 + 1; + num2 = num3 + num4 * *intPtr4; + } + if (--this._state < 0) + { + this._state += this._numTaps; + } + OutBuf[i] = num2; + } + } + } + } + } + + public unsafe void ProcessFilter(int InLength, Complex* InBuf, Complex* OutBuf) + { + lock (this) + { + for (int i = 0; i < InLength; i++) + { + this._cZBuf[this._state] = InBuf[i]; + float[] iCoef = this._iCoef; + fixed (float* ptr = iCoef) + { + float[] qCoef = this._qCoef; + fixed (float* ptr3 = qCoef) + { + Complex[] cZBuf = this._cZBuf; + fixed (Complex* ptr5 = cZBuf) + { + float* ptr2 = ptr + this._numTaps - this._state; + float* ptr4 = ptr3 + this._numTaps - this._state; + Complex* ptr6 = ptr5; + float* intPtr = ptr2; + ptr2 = intPtr + 1; + Complex complex = default(Complex); + complex.Real = *intPtr * ptr6->Real; + float* intPtr2 = ptr4; + ptr4 = intPtr2 + 1; + float num = *intPtr2; + Complex* intPtr3 = ptr6; + ptr6 = intPtr3 + 1; + complex.Imag = num * intPtr3->Imag; + for (int j = 1; j < this._numTaps; j++) + { + float real = complex.Real; + float* intPtr4 = ptr2; + ptr2 = intPtr4 + 1; + complex.Real = real + *intPtr4 * ptr6->Real; + float imag = complex.Imag; + float* intPtr5 = ptr4; + ptr4 = intPtr5 + 1; + float num2 = *intPtr5; + Complex* intPtr6 = ptr6; + ptr6 = intPtr6 + 1; + complex.Imag = imag + num2 * intPtr6->Imag; + } + if (--this._state < 0) + { + this._state += this._numTaps; + } + OutBuf[i] = complex; + } + } + } + } + } + } + + public unsafe void ProcessFilter(int InLength, float* InBuf, Complex* OutBuf) + { + lock (this) + { + for (int i = 0; i < InLength; i++) + { + this._cZBuf[this._state].Real = InBuf[i]; + this._cZBuf[this._state].Imag = InBuf[i]; + float[] iCoef = this._iCoef; + fixed (float* ptr = iCoef) + { + float[] qCoef = this._qCoef; + fixed (float* ptr3 = qCoef) + { + Complex[] cZBuf = this._cZBuf; + fixed (Complex* ptr5 = cZBuf) + { + float* ptr2 = ptr + this._numTaps - this._state; + float* ptr4 = ptr3 + this._numTaps - this._state; + Complex* ptr6 = ptr5; + float* intPtr = ptr2; + ptr2 = intPtr + 1; + Complex complex = default(Complex); + complex.Real = *intPtr * ptr6->Real; + float* intPtr2 = ptr4; + ptr4 = intPtr2 + 1; + float num = *intPtr2; + Complex* intPtr3 = ptr6; + ptr6 = intPtr3 + 1; + complex.Imag = num * intPtr3->Imag; + for (int j = 1; j < this._numTaps; j++) + { + float real = complex.Real; + float* intPtr4 = ptr2; + ptr2 = intPtr4 + 1; + complex.Real = real + *intPtr4 * ptr6->Real; + float imag = complex.Imag; + float* intPtr5 = ptr4; + ptr4 = intPtr5 + 1; + float num2 = *intPtr5; + Complex* intPtr6 = ptr6; + ptr6 = intPtr6 + 1; + complex.Imag = imag + num2 * intPtr6->Imag; + } + if (--this._state < 0) + { + this._state += this._numTaps; + } + OutBuf[i] = complex; + } + } + } + } + } + } + + public unsafe void InitConstFir(int numTaps, double* pCoef, float samprate) + { + lock (this) + { + this._sampleRate = samprate; + if (numTaps > 75) + { + this._numTaps = 75; + } + else + { + this._numTaps = numTaps; + } + for (int i = 0; i < this._numTaps; i++) + { + this._coef[i] = (float)pCoef[i]; + this._coef[this._numTaps + i] = (float)pCoef[i]; + } + for (int j = 0; j < this._numTaps; j++) + { + this._rZBuf[j] = 0f; + this._cZBuf[j].Real = 0f; + this._cZBuf[j].Imag = 0f; + } + this._state = 0; + } + } + + public unsafe void InitConstFir(int numTaps, double* pICoef, double* pQCoef, float samprate) + { + lock (this) + { + this._sampleRate = samprate; + if (numTaps > 75) + { + this._numTaps = 75; + } + else + { + this._numTaps = numTaps; + } + for (int i = 0; i < this._numTaps; i++) + { + this._iCoef[i] = (float)pICoef[i]; + this._iCoef[this._numTaps + i] = (float)pICoef[i]; + this._qCoef[i] = (float)pQCoef[i]; + this._qCoef[this._numTaps + i] = (float)pQCoef[i]; + } + for (int j = 0; j < this._numTaps; j++) + { + this._rZBuf[j] = 0f; + this._cZBuf[j].Real = 0f; + this._cZBuf[j].Imag = 0f; + } + this._state = 0; + } + } + + public int InitLPFilter(int numTaps, double scale, double aStop, float fPass, float fStop, float samprate) + { + lock (this) + { + this._sampleRate = samprate; + float num = fPass / samprate; + float num2 = fStop / samprate; + float num3 = (num2 + num) / 2f; + double num4 = (!(aStop < 20.96)) ? ((!(aStop >= 50.0)) ? (0.5842 * Math.Pow(aStop - 20.96, 0.4) + 0.07886 * (aStop - 20.96)) : ((double)(float)(0.1102 * (aStop - 8.71)))) : 0.0; + this._numTaps = (int)((aStop - 8.0) / (14.357078426905355 * (double)(num2 - num)) + 1.0); + if (this._numTaps > 75) + { + this._numTaps = 75; + } + else if (this._numTaps < 3) + { + this._numTaps = 3; + } + if (numTaps != 0) + { + this._numTaps = numTaps; + } + double num5 = (double)(0.5f * (float)(this._numTaps - 1)); + double num6 = (double)(float)this.Izero(num4); + for (int i = 0; i < this._numTaps; i++) + { + double num7 = (double)i - num5; + double num8 = ((double)i != num5) ? (Math.Sin(6.2831853071795862 * num7 * (double)num3) / (3.1415926535897931 * num7)) : ((double)(2f * num3)); + num7 = ((double)i - (double)(this._numTaps - 1) / 2.0) / ((double)(this._numTaps - 1) / 2.0); + this._coef[i] = (float)(scale * num8 * this.Izero(num4 * Math.Sqrt(1.0 - num7 * num7)) / num6); + } + for (int i = 0; i < this._numTaps; i++) + { + this._coef[i + this._numTaps] = this._coef[i]; + } + for (int i = 0; i < this._numTaps * 2; i++) + { + this._iCoef[i] = this._coef[i]; + this._qCoef[i] = this._coef[i]; + } + for (int j = 0; j < this._numTaps; j++) + { + this._rZBuf[j] = 0f; + this._cZBuf[j].Real = 0f; + this._cZBuf[j].Imag = 0f; + } + this._state = 0; + } + return this._numTaps; + } + + public int InitHPFilter(int numTaps, float scale, float aStop, float fPass, float fStop, float samprate) + { + lock (this) + { + this._sampleRate = samprate; + float num = fPass / samprate; + float num2 = fStop / samprate; + float num3 = (num2 + num) / 2f; + double num4 = (!((double)aStop < 20.96)) ? ((!((double)aStop >= 50.0)) ? (0.5842 * Math.Pow((double)aStop - 20.96, 0.4) + 0.07886 * ((double)aStop - 20.96)) : (0.1102 * ((double)aStop - 8.71))) : 0.0; + this._numTaps = (int)(((double)aStop - 8.0) / (14.357078426905355 * (double)(num - num2)) + 1.0); + if (this._numTaps > 74) + { + this._numTaps = 74; + } + else if (this._numTaps < 3) + { + this._numTaps = 3; + } + this._numTaps |= 1; + if (this._numTaps != 0) + { + this._numTaps = numTaps; + } + double num5 = this.Izero(num4); + double num6 = 0.5 * (double)(this._numTaps - 1); + for (int i = 0; i < this._numTaps; i++) + { + double num7 = (double)((float)i - (float)(this._numTaps - 1) / 2f); + double num8 = ((double)(float)i != num6) ? (Math.Sin(3.1415926535897931 * num7) / (3.1415926535897931 * num7) - Math.Sin(6.2831853071795862 * num7 * (double)num3) / (3.1415926535897931 * num7)) : (1.0 - 2.0 * (double)num3); + num7 = ((double)i - (double)(this._numTaps - 1) / 2.0) / ((double)(this._numTaps - 1) / 2.0); + this._coef[i] = (float)((double)scale * num8 * this.Izero(num4 * Math.Sqrt(1.0 - num7 * num7)) / num5); + } + for (int i = 0; i < this._numTaps; i++) + { + this._coef[i + this._numTaps] = this._coef[i]; + } + for (int i = 0; i < this._numTaps * 2; i++) + { + this._iCoef[i] = this._coef[i]; + this._qCoef[i] = this._coef[i]; + } + for (int j = 0; j < this._numTaps; j++) + { + this._rZBuf[j] = 0f; + this._cZBuf[j].Real = 0f; + this._cZBuf[j].Imag = 0f; + } + this._state = 0; + } + return this._numTaps; + } + + public void GenerateHBFilter(float freqOffset) + { + for (int i = 0; i < this._numTaps; i++) + { + this._iCoef[i] = (float)(2.0 * (double)this._coef[i] * Math.Cos(6.2831853071795862 * (double)freqOffset / (double)this._sampleRate * ((double)i - (double)(this._numTaps - 1) / 2.0))); + this._qCoef[i] = (float)(2.0 * (double)this._coef[i] * Math.Sin(6.2831853071795862 * (double)freqOffset / (double)this._sampleRate * ((double)i - (double)(this._numTaps - 1) / 2.0))); + } + for (int j = 0; j < this._numTaps; j++) + { + this._iCoef[j + this._numTaps] = this._iCoef[j]; + this._qCoef[j + this._numTaps] = this._qCoef[j]; + } + } + + private double Izero(double x) + { + double num = x / 2.0; + double num2 = 1.0; + double num3 = 1.0; + double num4 = 1.0; + double num5 = 1E-09; + do + { + double num6 = num / num4; + num6 *= num6; + num3 *= num6; + num2 += num3; + num4 += 1.0; + } + while (num3 >= num5 * num2); + return num2; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/CwDetector.cs b/SDRSharper.Radio/SDRSharp.Radio/CwDetector.cs new file mode 100644 index 0000000..bde2689 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/CwDetector.cs @@ -0,0 +1,43 @@ +namespace SDRSharp.Radio +{ + public sealed class CwDetector + { + private Oscillator _bfo = default(Oscillator); + + private Complex _tmp = default(Complex); + + public double SampleRate + { + get + { + return this._bfo.SampleRate; + } + set + { + this._bfo.SampleRate = value; + } + } + + public int BfoFrequency + { + get + { + return (int)this._bfo.Frequency; + } + set + { + this._bfo.Frequency = (double)value; + } + } + + public unsafe void Demodulate(Complex* iq, float* audio, int length) + { + for (int i = 0; i < length; i++) + { + this._bfo.Tick(); + Complex.Mul(ref this._tmp, iq[i], this._bfo); + audio[i] = this._tmp.Real; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DSPThreadPool.cs b/SDRSharper.Radio/SDRSharp.Radio/DSPThreadPool.cs new file mode 100644 index 0000000..dcc0f19 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DSPThreadPool.cs @@ -0,0 +1,52 @@ +using System.Threading; + +namespace SDRSharp.Radio +{ + public static class DSPThreadPool + { + private static SharpThreadPool _threadPool; + + public static void Initialize() + { + if (DSPThreadPool._threadPool == null) + { + DSPThreadPool._threadPool = new SharpThreadPool(); + } + } + + public static void Initialize(int threadCount) + { + if (DSPThreadPool._threadPool == null) + { + DSPThreadPool._threadPool = new SharpThreadPool(threadCount); + } + } + + public static void QueueUserWorkItem(WaitCallback callback) + { + if (DSPThreadPool._threadPool == null) + { + DSPThreadPool._threadPool = new SharpThreadPool(); + } + DSPThreadPool._threadPool.QueueUserWorkItem(callback); + } + + public static void QueueUserWorkItem(WaitCallback callback, object parameter) + { + if (DSPThreadPool._threadPool == null) + { + DSPThreadPool._threadPool = new SharpThreadPool(); + } + DSPThreadPool._threadPool.QueueUserWorkItem(callback, parameter); + } + + public static void Terminate() + { + if (DSPThreadPool._threadPool != null) + { + DSPThreadPool._threadPool.Dispose(); + DSPThreadPool._threadPool = null; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DataType.cs b/SDRSharper.Radio/SDRSharp.Radio/DataType.cs new file mode 100644 index 0000000..ee706a4 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DataType.cs @@ -0,0 +1,10 @@ +namespace SDRSharp.Radio +{ + public enum DataType + { + RF, + IF, + AF, + none + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DcRemover.cs b/SDRSharper.Radio/SDRSharp.Radio/DcRemover.cs new file mode 100644 index 0000000..f6d7564 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DcRemover.cs @@ -0,0 +1,47 @@ +namespace SDRSharp.Radio +{ + public struct DcRemover + { + private float _average; + + private float _ratio; + + public float Offset => this._average; + + public DcRemover(float ratio) + { + this._ratio = ratio; + this._average = 0f; + } + + public void Init(float ratio) + { + this._ratio = ratio; + this._average = 0f; + } + + public unsafe void Process(float* buffer, int length) + { + for (int i = 0; i < length; i++) + { + this._average += this._ratio * (buffer[i] - this._average); + buffer[i] -= this._average; + } + } + + public unsafe void ProcessInterleaved(float* buffer, int length) + { + length *= 2; + for (int i = 0; i < length; i += 2) + { + this._average += this._ratio * (buffer[i] - this._average); + buffer[i] -= this._average; + } + } + + public void Reset() + { + this._average = 0f; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DecimationFilterType.cs b/SDRSharper.Radio/SDRSharp.Radio/DecimationFilterType.cs new file mode 100644 index 0000000..ebd1a7c --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DecimationFilterType.cs @@ -0,0 +1,9 @@ +namespace SDRSharp.Radio +{ + public enum DecimationFilterType + { + Fast, + Baseband, + Audio + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DecimationKernels.cs b/SDRSharper.Radio/SDRSharp.Radio/DecimationKernels.cs new file mode 100644 index 0000000..b41e4ca --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DecimationKernels.cs @@ -0,0 +1,414 @@ +namespace SDRSharp.Radio +{ + public static class DecimationKernels + { + public const float Cic3Max = 0.00150001049f; + + public const float Hb11TapMax = 0.025000006f; + + public const float Hb15TapMax = 0.048999995f; + + public const float Hb19TapMax = 0.072f; + + public const float Hb23TapMax = 0.09099999f; + + public const float Hb27TapMax = 0.10800001f; + + public const float Hb31TapMax = 0.122000009f; + + public const float Hb35TapMax = 0.134f; + + public const float Hb39TapMax = 0.144f; + + public const float Hb43TapMax = 0.153f; + + public const float Hb47TapMax = 0.16f; + + public const float Hb51TapMax = 0.167f; + + public static readonly float[] Kernel11 = new float[11] + { + 0.006043103f, + 0f, + -0.0493725166f, + 0f, + 0.293329448f, + 0.5f, + 0.293329448f, + 0f, + -0.0493725166f, + 0f, + 0.006043103f + }; + + public static readonly float[] Kernel15 = new float[15] + { + -0.0014422033f, + 0f, + 0.0130175129f, + 0f, + -0.06165328f, + 0f, + 0.300077915f, + 0.5f, + 0.300077915f, + 0f, + -0.06165328f, + 0f, + 0.0130175129f, + 0f, + -0.0014422033f + }; + + public static readonly float[] Kernel19 = new float[19] + { + 0.000423665275f, + 0f, + -0.00407173345f, + 0f, + 0.0198956542f, + 0f, + -0.07074004f, + 0f, + 0.3044925f, + 0.5f, + 0.3044925f, + 0f, + -0.07074004f, + 0f, + 0.0198956542f, + 0f, + -0.00407173345f, + 0f, + 0.000423665275f + }; + + public static readonly float[] Kernel23 = new float[23] + { + -0.00014987652f, + 0f, + 0.00147486338f, + 0f, + -0.00744169438f, + 0f, + 0.0261635222f, + 0f, + -0.0775937f, + 0f, + 0.307546824f, + 0.5f, + 0.307546824f, + 0f, + -0.0775937f, + 0f, + 0.0261635222f, + 0f, + -0.00744169438f, + 0f, + 0.00147486338f, + 0f, + -0.00014987652f + }; + + public static readonly float[] Kernel27 = new float[27] + { + 6.37304256E-05f, + 0f, + -0.0006198519f, + 0f, + 0.00315125054f, + 0f, + -0.0111731514f, + 0f, + 0.0317188874f, + 0f, + -0.08291786f, + 0f, + 0.309777051f, + 0.5f, + 0.309777051f, + 0f, + -0.08291786f, + 0f, + 0.0317188874f, + 0f, + -0.0111731514f, + 0f, + 0.00315125054f, + 0f, + -0.0006198519f, + 0f, + 6.37304256E-05f + }; + + public static readonly float[] Kernel31 = new float[31] + { + -3.0957337E-05f, + 0f, + 0.000292719924f, + 0f, + -0.00147703814f, + 0f, + 0.00525390869f, + 0f, + -0.0148563785f, + 0f, + 0.03640665f, + 0f, + -0.08699863f, + 0f, + 0.311409682f, + 0.5f, + 0.311409682f, + 0f, + -0.08699863f, + 0f, + 0.03640665f, + 0f, + -0.0148563785f, + 0f, + 0.00525390869f, + 0f, + -0.00147703814f, + 0f, + 0.000292719924f, + 0f, + -3.0957337E-05f + }; + + public static readonly float[] Kernel35 = new float[35] + { + 1.70177173E-05f, + 0f, + -0.000154250432f, + 0f, + 0.00076219684f, + 0f, + -0.00269161467f, + 0f, + 0.00759275f, + 0f, + -0.0183257274f, + 0f, + 0.0403510034f, + 0f, + -0.0901982263f, + 0f, + 0.3126469f, + 0.5f, + 0.3126469f, + 0f, + -0.0901982263f, + 0f, + 0.0403510034f, + 0f, + -0.0183257274f, + 0f, + 0.00759275f, + 0f, + -0.00269161467f, + 0f, + 0.00076219684f, + 0f, + -0.000154250432f, + 0f, + 1.70177173E-05f + }; + + public static readonly float[] Kernel39 = new float[39] + { + -1.01750829E-05f, + 0f, + 8.803642E-05f, + 0f, + -0.000423708349f, + 0f, + 0.00147725572f, + 0f, + -0.00414684368f, + 0f, + 0.009957912f, + 0f, + -0.0214335267f, + 0f, + 0.0435989648f, + 0f, + -0.09269595f, + 0f, + 0.313588f, + 0.5f, + 0.313588f, + 0f, + -0.09269595f, + 0f, + 0.0435989648f, + 0f, + -0.0214335267f, + 0f, + 0.009957912f, + 0f, + -0.00414684368f, + 0f, + 0.00147725572f, + 0f, + -0.000423708349f, + 0f, + 8.803642E-05f, + 0f, + -1.01750829E-05f + }; + + public static readonly float[] Kernel43 = new float[43] + { + 6.766674E-06f, + 0f, + -5.527522E-05f, + 0f, + 0.000256540749f, + 0f, + -0.00087481254f, + 0f, + 0.0024249875f, + 0f, + -0.005777519f, + 0f, + 0.0122998338f, + 0f, + -0.0242440514f, + 0f, + 0.046354305f, + 0f, + -0.0947299f, + 0f, + 0.3143392f, + 0.5f, + 0.3143392f, + 0f, + -0.0947299f, + 0f, + 0.046354305f, + 0f, + -0.0242440514f, + 0f, + 0.0122998338f, + 0f, + -0.005777519f, + 0f, + 0.0024249875f, + 0f, + -0.00087481254f, + 0f, + 0.000256540749f, + 0f, + -5.527522E-05f, + 0f, + 6.766674E-06f + }; + + public static readonly float[] Kernel47 = new float[47] + { + -4.52983159E-06f, + 0f, + 3.53337055E-05f, + 0f, + -0.000159347765f, + 0f, + 0.0005340788f, + 0f, + -0.001466795f, + 0f, + 0.003479209f, + 0f, + -0.00737943547f, + 0f, + 0.014393786f, + 0f, + -0.0265866034f, + 0f, + 0.0485386737f, + 0f, + -0.0962911546f, + 0f, + 0.314906746f, + 0.5f, + 0.314906746f, + 0f, + -0.0962911546f, + 0f, + 0.0485386737f, + 0f, + -0.0265866034f, + 0f, + 0.014393786f, + 0f, + -0.00737943547f, + 0f, + 0.003479209f, + 0f, + -0.001466795f, + 0f, + 0.0005340788f, + 0f, + -0.000159347765f, + 0f, + 3.53337055E-05f, + 0f, + -4.52983159E-06f + }; + + public static readonly float[] Kernel51 = new float[51] + { + 3.33592538E-06f, + 0f, + -2.45841547E-05f, + 0f, + 0.000106777778f, + 0f, + -0.000348907226f, + 0f, + 0.0009423913f, + 0f, + -0.00221183f, + 0f, + 0.004657503f, + 0f, + -0.009013098f, + 0f, + 0.016383674f, + 0f, + -0.02869728f, + 0f, + 0.0504329242f, + 0f, + -0.0976119f, + 0f, + 0.31538105f, + 0.5f, + 0.31538105f, + 0f, + -0.0976119f, + 0f, + 0.0504329242f, + 0f, + -0.02869728f, + 0f, + 0.016383674f, + 0f, + -0.009013098f, + 0f, + 0.004657503f, + 0f, + -0.00221183f, + 0f, + 0.0009423913f, + 0f, + -0.000348907226f, + 0f, + 0.000106777778f, + 0f, + -2.45841547E-05f, + 0f, + 3.33592538E-06f + }; + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DemodType.cs b/SDRSharper.Radio/SDRSharp.Radio/DemodType.cs new file mode 100644 index 0000000..3857818 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DemodType.cs @@ -0,0 +1,13 @@ +namespace SDRSharp.Radio +{ + public enum DemodType + { + Empty, + AM, + FM, + PM, + Audio, + Envelope, + IQ + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DetectorType.cs b/SDRSharper.Radio/SDRSharp.Radio/DetectorType.cs new file mode 100644 index 0000000..0ac8f0a --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DetectorType.cs @@ -0,0 +1,15 @@ +namespace SDRSharp.Radio +{ + public enum DetectorType + { + NFM, + WFM, + AM, + DSB, + LSB, + USB, + CW, + RAW, + SAM + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DownConverter.cs b/SDRSharper.Radio/SDRSharp.Radio/DownConverter.cs new file mode 100644 index 0000000..0c9d757 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DownConverter.cs @@ -0,0 +1,133 @@ +using System; +using System.Threading; + +namespace SDRSharp.Radio +{ + public sealed class DownConverter + { + private readonly int _phaseCount; + + private readonly UnsafeBuffer _oscillatorsBuffer; + + private unsafe readonly Oscillator* _oscillators; + + private readonly SharpEvent _event = new SharpEvent(false); + + private readonly bool _isMultithreaded; + + private double _sampleRate; + + private double _frequency; + + private int _completedCount; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + if (this._sampleRate != value) + { + this._sampleRate = value; + this.Configure(); + } + } + } + + public double Frequency + { + get + { + return this._frequency; + } + set + { + if (this._frequency != value) + { + this._frequency = value; + this.Configure(); + } + } + } + + public unsafe DownConverter(int phaseCount) + { + this._phaseCount = phaseCount; + this._oscillatorsBuffer = UnsafeBuffer.Create(sizeof(Oscillator) * phaseCount); + this._oscillators = (Oscillator*)(void*)this._oscillatorsBuffer; + this._isMultithreaded = (Utils.ProcessorCount > 1); + } + + public DownConverter() + : this(Utils.ProcessorCount) + { + } + + private unsafe void Configure() + { + if (this._sampleRate != 0.0) + { + double frequency = this._frequency * (double)this._phaseCount; + for (int i = 0; i < this._phaseCount; i++) + { + this._oscillators[i].SampleRate = this._sampleRate; + this._oscillators[i].Frequency = frequency; + } + double num = 6.2831853071795862 * this._frequency / this._sampleRate; + double num2 = Math.Sin(num); + double num3 = Math.Cos(num); + double num4 = this._oscillators->StateReal; + double num5 = this._oscillators->StateImag; + for (int j = 1; j < this._phaseCount; j++) + { + double num6 = num4 * num3 - num5 * num2; + double num7 = num5 * num3 + num4 * num2; + double num8 = 1.95 - (num4 * num4 + num5 * num5); + num4 = num8 * num6; + num5 = num8 * num7; + this._oscillators[j].StateReal = num4; + this._oscillators[j].StateImag = num5; + } + } + } + + public unsafe void Process(Complex* buffer, int length) + { + if (this._isMultithreaded) + { + this._completedCount = 0; + for (int i = 1; i < this._phaseCount; i++) + { + DSPThreadPool.QueueUserWorkItem(delegate(object parameter) + { + int num2 = (int)parameter; + this._oscillators[num2].Mix(buffer, length, num2, this._phaseCount); + Interlocked.Increment(ref this._completedCount); + this._event.Set(); + }, i); + } + this._oscillators->Mix(buffer, length, 0, this._phaseCount); + if (this._phaseCount > 1) + { + Interlocked.Increment(ref this._completedCount); + while (this._completedCount < this._phaseCount) + { + this._event.WaitOne(); + } + } + } + else + { + for (int j = 1; j < this._phaseCount; j++) + { + int num = j; + this._oscillators[num].Mix(buffer, length, num, this._phaseCount); + } + this._oscillators->Mix(buffer, length, 0, this._phaseCount); + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/DsbDetector.cs b/SDRSharper.Radio/SDRSharp.Radio/DsbDetector.cs new file mode 100644 index 0000000..0893ca6 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/DsbDetector.cs @@ -0,0 +1,13 @@ +namespace SDRSharp.Radio +{ + public sealed class DsbDetector + { + public unsafe void Demodulate(Complex* iq, float* audio, int length) + { + for (int i = 0; i < length; i++) + { + audio[i] = iq[i].Real; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/ExtIO.cs b/SDRSharper.Radio/SDRSharp.Radio/ExtIO.cs new file mode 100644 index 0000000..a8ff80f --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/ExtIO.cs @@ -0,0 +1,722 @@ +using System; +using System.ComponentModel; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Text; +using System.Windows.Forms; + +namespace SDRSharp.Radio +{ + public static class ExtIO + { + public enum HWTypes + { + Sdr14 = 1, + Aud16BInt = 3, + Soundcard, + Aud24BInt, + Aud32BInt, + Aud32BFloat + } + + public enum StatusEvent + { + SrChange = 100, + LOChange, + ProhibLO, + LOChangeOk, + LoChangeNoTune, + TuneChange, + DemodChange, + RsqStart, + RsqStop, + FiltChange + } + + [UnmanagedFunctionPointer(CallingConvention.Cdecl, SetLastError = true, CharSet = CharSet.Ansi)] + public delegate void ExtIOManagedCallbackDelegate([MarshalAs(UnmanagedType.I4)] int a, [MarshalAs(UnmanagedType.I4)] int b, [MarshalAs(UnmanagedType.R4)] float c, IntPtr data); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.Bool)] + private delegate bool dInitHW([MarshalAs(UnmanagedType.LPStr)] StringBuilder name, [MarshalAs(UnmanagedType.LPStr)] StringBuilder model, [MarshalAs(UnmanagedType.I4)] ref int type); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.Bool)] + private delegate bool dOpenHW(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.I4)] + private delegate int dStartHW([MarshalAs(UnmanagedType.I4)] int freq); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + private delegate void dStopHW(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + private delegate void dCloseHW(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.I4)] + private delegate int dSetHWLO([MarshalAs(UnmanagedType.I4)] int freq); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.I4)] + private delegate int dTuneChanged([MarshalAs(UnmanagedType.I4)] int freq); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.I4)] + private delegate int dGetHWLO(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.I4)] + private delegate int dGetHWSR(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.I4)] + private delegate int dGetTune(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Ansi)] + [return: MarshalAs(UnmanagedType.I4)] + private delegate int dGetStatus(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Ansi)] + private delegate void dShowGUI(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Ansi)] + private delegate void dHideGUI(); + + [UnmanagedFunctionPointer(CallingConvention.StdCall, SetLastError = true, CharSet = CharSet.Ansi)] + private delegate void dSetCallback(ExtIOManagedCallbackDelegate callbackAddr); + + public static SamplesAvailableDelegate SamplesAvailable; + + private static dInitHW _initHW; + + private static dOpenHW _openHW; + + private static dStartHW _startHW; + + private static dStopHW _stopHW; + + private static dCloseHW _closeHW; + + private static dSetHWLO _setHWLO; + + private static dTuneChanged _tuneChanged; + + private static dGetHWLO _getHWLO; + + private static dGetHWSR _getHWSR; + + private static dGetTune _getTune; + + private static dGetStatus _getStatus; + + private static dShowGUI _showGUI; + + private static dHideGUI _hideGUI; + + private static dSetCallback _setCallback; + + private static IntPtr _dllHandle; + + private static string _dllName; + + private static string _name; + + private static string _model; + + private static HWTypes _hwType; + + private static bool _isHWInit; + + private static bool _isHWStarted; + + private static UnsafeBuffer _iqBuffer; + + private unsafe static Complex* _iqPtr; + + private static int _sampleCount; + + private static ExtIOManagedCallbackDelegate _callbackInst; + + private static ListBox _listBox; + + public static string DllName => ExtIO._dllName; + + public static HWTypes HWType => ExtIO._hwType; + + public static bool IsHardwareStarted => ExtIO._isHWStarted; + + public static bool IsHardwareOpen => ExtIO._isHWInit; + + public static ListBox ListBox + { + set + { + ExtIO._listBox = value; + } + } + + public static string HWName + { + get + { + if (ExtIO._dllHandle != IntPtr.Zero) + { + return ExtIO._name; + } + return string.Empty; + } + } + + public static string HWModel + { + get + { + if (ExtIO._dllHandle != IntPtr.Zero) + { + return ExtIO._model; + } + return string.Empty; + } + } + + public static event dSampleRateChanged SampleRateChanged; + + public static event dLOFrequencyChanged LOFreqChanged; + + public static event dTuneFrequencyChanged TuneFreqChanged; + + public static event dLOFrequencyChangeAccepted LOFreqChangedAccepted; + + public static event dProhibitLOChanges ProhibitLOChanged; + + [DllImport("kernel32.dll", CharSet = CharSet.Ansi, SetLastError = true)] + private static extern IntPtr LoadLibrary(string dllToLoad); + + [DllImport("kernel32.dll", CharSet = CharSet.Ansi, SetLastError = true)] + private static extern IntPtr GetProcAddress(IntPtr hModule, string procedureName); + + [DllImport("kernel32.dll", SetLastError = true)] + private static extern bool FreeLibrary(IntPtr hModule); + + unsafe static ExtIO() + { + ExtIO._iqBuffer = UnsafeBuffer.Create(1024, sizeof(Complex)); + ExtIO._callbackInst = ExtIO.extIOCallback; + GCHandle.Alloc(ExtIO._callbackInst); + } + + public static void UseLibrary(string fileName) + { + if (ExtIO._dllHandle != IntPtr.Zero) + { + ExtIO.CloseLibrary(); + } + ExtIO.logInfo("UseLibrary(), dll=" + fileName); + try + { + ExtIO._dllHandle = ExtIO.LoadLibrary(fileName); + } + catch (Exception ex) + { + ExtIO.logInfo("LoadLibrary: " + ex.Message); + } + ExtIO.logResult("LoadLibrary:"); + if (ExtIO._dllHandle == IntPtr.Zero) + { + ExtIO.logInfo("LoadLibrary(), Unable to load DLL file: " + fileName); + throw new Exception("Unable to load ExtIO library " + fileName); + } + ExtIO._dllName = fileName; + ExtIO._initHW = null; + ExtIO._openHW = null; + ExtIO._startHW = null; + ExtIO._stopHW = null; + ExtIO._closeHW = null; + ExtIO._setHWLO = null; + ExtIO._tuneChanged = null; + ExtIO._getHWLO = null; + ExtIO._getHWSR = null; + ExtIO._getStatus = null; + ExtIO._showGUI = null; + ExtIO._hideGUI = null; + ExtIO._setCallback = null; + IntPtr procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "InitHW"); + if (procAddress != IntPtr.Zero) + { + ExtIO._initHW = (dInitHW)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dInitHW)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "OpenHW"); + if (procAddress != IntPtr.Zero) + { + ExtIO._openHW = (dOpenHW)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dOpenHW)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "StartHW"); + if (procAddress != IntPtr.Zero) + { + ExtIO._startHW = (dStartHW)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dStartHW)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "StopHW"); + if (procAddress != IntPtr.Zero) + { + ExtIO._stopHW = (dStopHW)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dStopHW)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "CloseHW"); + if (procAddress != IntPtr.Zero) + { + ExtIO._closeHW = (dCloseHW)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dCloseHW)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "SetCallback"); + if (procAddress != IntPtr.Zero) + { + ExtIO._setCallback = (dSetCallback)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dSetCallback)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "SetHWLO"); + if (procAddress != IntPtr.Zero) + { + ExtIO._setHWLO = (dSetHWLO)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dSetHWLO)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "TuneChange"); + if (procAddress != IntPtr.Zero) + { + ExtIO._tuneChanged = (dTuneChanged)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dTuneChanged)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "GetHWLO"); + if (procAddress != IntPtr.Zero) + { + ExtIO._getHWLO = (dGetHWLO)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dGetHWLO)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "GetHWSR"); + if (procAddress != IntPtr.Zero) + { + ExtIO._getHWSR = (dGetHWSR)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dGetHWSR)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "GetTune"); + if (procAddress != IntPtr.Zero) + { + ExtIO._getTune = (dGetTune)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dGetTune)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "GetStatus"); + if (procAddress != IntPtr.Zero) + { + ExtIO._getStatus = (dGetStatus)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dGetStatus)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "ShowGUI"); + if (procAddress != IntPtr.Zero) + { + ExtIO._showGUI = (dShowGUI)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dShowGUI)); + } + procAddress = ExtIO.GetProcAddress(ExtIO._dllHandle, "HideGUI"); + if (procAddress != IntPtr.Zero) + { + ExtIO._hideGUI = (dHideGUI)Marshal.GetDelegateForFunctionPointer(procAddress, typeof(dHideGUI)); + } + if (ExtIO._initHW != null && ExtIO._openHW != null && ExtIO._startHW != null && ExtIO._setHWLO != null && ExtIO._getStatus != null && ExtIO._setCallback != null && ExtIO._stopHW != null && ExtIO._closeHW != null) + { + return; + } + ExtIO.FreeLibrary(ExtIO._dllHandle); + ExtIO._dllHandle = IntPtr.Zero; + ExtIO.logInfo("LoadLibrary(), ExtIO DLL is not valid, not all entries found."); + throw new ApplicationException("ExtIO DLL is not valid, not all entries found."); + } + + public static void CloseLibrary() + { + if (ExtIO._isHWStarted) + { + ExtIO.StopHW(); + } + if (ExtIO._isHWInit) + { + ExtIO.CloseHW(); + } + if (!(ExtIO._dllHandle == IntPtr.Zero)) + { + ExtIO.logInfo("CloseLibrary()"); + try + { + ExtIO.FreeLibrary(ExtIO._dllHandle); + } + catch (Exception ex) + { + ExtIO.logInfo("FreeLibrary: " + ex.Message); + } + ExtIO.logResult("FreeLibrary: "); + ExtIO._dllHandle = IntPtr.Zero; + } + } + + public static void HWInit(bool setCallback) + { + if (!(ExtIO._dllHandle == IntPtr.Zero) && !ExtIO._isHWInit && !ExtIO._isHWStarted) + { + ExtIO.logInfo("HWInit()"); + StringBuilder stringBuilder = new StringBuilder(256); + StringBuilder stringBuilder2 = new StringBuilder(256); + int hwType = 0; + try + { + ExtIO._isHWInit = ExtIO._initHW(stringBuilder, stringBuilder2, ref hwType); + } + catch (Exception ex) + { + ExtIO.logInfo("InitHW: " + ex.Message); + } + ExtIO.logResult("InitHW: "); + ExtIO._name = stringBuilder.ToString(); + ExtIO._model = stringBuilder2.ToString(); + ExtIO._hwType = (HWTypes)hwType; + if (!ExtIO._isHWInit) + { + ExtIO.logInfo("InitHW() returned " + ExtIO._isHWInit + ", "); + ExtIO._isHWInit = true; + ExtIO.CloseHW(); + throw new ApplicationException("InitHW() returned " + ExtIO._isHWInit); + } + ExtIO.logInfo("InitHW: " + ExtIO._name + ", " + ExtIO._model + ", type=" + hwType.ToString()); + if (setCallback) + { + ExtIO.logInfo("SetCallback: "); + try + { + ExtIO._setCallback(ExtIO._callbackInst); + } + catch (Exception ex2) + { + ExtIO.logInfo("SetCallback: " + ex2.Message); + } + } + } + } + + public static bool OpenHW(bool setCallback = true) + { + if (!ExtIO._isHWInit) + { + ExtIO.HWInit(setCallback); + } + if (!(ExtIO._dllHandle == IntPtr.Zero) && ExtIO._isHWInit && !ExtIO._isHWStarted) + { + ExtIO.logInfo("OpenHW()"); + bool flag = false; + try + { + flag = ExtIO._openHW(); + } + catch (Exception ex) + { + ExtIO.logInfo("OpenHW: " + ex.Message); + } + if (flag) + { + ExtIO.ShowGUI(); + } + else + { + ExtIO.logResult("OpenHW: "); + } + return flag; + } + return false; + } + + public unsafe static void StartHW(int freq) + { + if (!(ExtIO._dllHandle == IntPtr.Zero) && ExtIO._startHW != null) + { + ExtIO.logInfo("StartHW(), freq=" + freq.ToString()); + if (!ExtIO._isHWInit) + { + ExtIO.OpenHW(true); + } + if (ExtIO._iqBuffer != null) + { + ExtIO._iqBuffer.Dispose(); + } + ExtIO._iqBuffer = null; + ExtIO._iqPtr = null; + int num = ExtIO._startHW(freq); + ExtIO.logResult("StartHW: "); + if (num <= 0) + { + ExtIO.logInfo("StartHW() returned " + num); + throw new Exception("ExtIO StartHW() returned " + num); + } + ExtIO._isHWStarted = true; + ExtIO._sampleCount = num; + ExtIO._iqBuffer = UnsafeBuffer.Create(ExtIO._sampleCount, sizeof(Complex)); + ExtIO._iqPtr = (Complex*)(void*)ExtIO._iqBuffer; + ExtIO.logInfo("StartHW succeeded, samplecount=" + ExtIO._sampleCount.ToString() + ", iqBuffer created."); + } + } + + public static void StopHW() + { + if (!(ExtIO._dllHandle == IntPtr.Zero) && ExtIO._isHWInit) + { + ExtIO.logInfo("StopHW()"); + try + { + ExtIO._stopHW(); + } + catch (Exception ex) + { + ExtIO.logInfo("StopHW: " + ex.Message); + } + ExtIO._isHWStarted = false; + } + } + + public static void CloseHW() + { + if (ExtIO._isHWStarted) + { + ExtIO.StopHW(); + } + if (!(ExtIO._dllHandle == IntPtr.Zero) && ExtIO._isHWInit) + { + ExtIO.logInfo("CloseHW()"); + try + { + ExtIO._closeHW(); + } + catch (Exception ex) + { + ExtIO.logInfo("CloseHW: " + ex.Message); + } + ExtIO._isHWInit = false; + } + } + + public static int GetHWSR() + { + int result = 0; + if (ExtIO._dllHandle != IntPtr.Zero && ExtIO._getHWSR != null && ExtIO._isHWInit) + { + result = ExtIO._getHWSR(); + } + ExtIO.logInfo("getHWSR, SR=" + result.ToString()); + return result; + } + + public static int GetHWLO() + { + int result = 0; + if (ExtIO._dllHandle != IntPtr.Zero && ExtIO._getHWLO != null && ExtIO._isHWInit) + { + result = ExtIO._getHWLO(); + } + ExtIO.logInfo("getHWLO, freq=" + result.ToString()); + return result; + } + + public static int GetTune() + { + int result = 0; + if (ExtIO._dllHandle != IntPtr.Zero && ExtIO._getTune != null && ExtIO._isHWInit) + { + result = ExtIO._getTune(); + } + ExtIO.logInfo("getTune, freq=" + result.ToString()); + return result; + } + + public static void SetHWLO(int freq) + { + if (!(ExtIO._dllHandle == IntPtr.Zero) && ExtIO._setHWLO != null && ExtIO._isHWInit) + { + try + { + ExtIO._setHWLO(freq); + } + catch (Exception) + { + } + } + } + + public static void TuneChanged(int freq) + { + if (!(ExtIO._dllHandle == IntPtr.Zero) && ExtIO._tuneChanged != null && ExtIO._isHWInit) + { + ExtIO.logInfo("tuneChanged to " + freq.ToString()); + ExtIO._tuneChanged(freq); + } + } + + public static void ShowGUI() + { + if (!(ExtIO._dllHandle == IntPtr.Zero) && ExtIO._showGUI != null && ExtIO._isHWInit) + { + ExtIO.logInfo("ShowGui()"); + ExtIO._showGUI(); + } + } + + public static void HideGUI() + { + if (!(ExtIO._dllHandle == IntPtr.Zero) && ExtIO._hideGUI != null && ExtIO._isHWInit) + { + ExtIO.logInfo("HideGui()"); + ExtIO._hideGUI(); + } + } + + [MethodImpl(MethodImplOptions.Synchronized)] + private unsafe static void extIOCallback(int count, int status, float iqOffs, IntPtr dataPtr) + { + if (count >= 0 && ExtIO._isHWStarted) + { + if (ExtIO._iqPtr != null) + { + int length = ExtIO._iqBuffer.Length; + if (ExtIO._hwType == HWTypes.Aud16BInt || ExtIO._hwType == HWTypes.Sdr14) + { + short* ptr = (short*)(void*)dataPtr; + for (int i = 0; i < length; i++) + { + Complex* intPtr = ExtIO._iqPtr + i; + short* intPtr2 = ptr; + ptr = intPtr2 + 1; + intPtr->Imag = (float)(*intPtr2) * 3.051851E-05f; + Complex* intPtr3 = ExtIO._iqPtr + i; + short* intPtr4 = ptr; + ptr = intPtr4 + 1; + intPtr3->Real = (float)(*intPtr4) * 3.051851E-05f; + } + } + else if (ExtIO._hwType == HWTypes.Aud24BInt) + { + Int24* ptr2 = (Int24*)(void*)dataPtr; + for (int j = 0; j < length; j++) + { + Complex* intPtr5 = ExtIO._iqPtr + j; + Int24* intPtr6 = ptr2; + ptr2 = intPtr6 + 1; + intPtr5->Imag = (float)(*intPtr6) * 1.1920929E-07f; + Complex* intPtr7 = ExtIO._iqPtr + j; + Int24* intPtr8 = ptr2; + ptr2 = intPtr8 + 1; + intPtr7->Real = (float)(*intPtr8) * 1.1920929E-07f; + } + } + else if (ExtIO._hwType == HWTypes.Aud32BInt) + { + int* ptr3 = (int*)(void*)dataPtr; + for (int k = 0; k < length; k++) + { + Complex* intPtr9 = ExtIO._iqPtr + k; + int* intPtr10 = ptr3; + ptr3 = intPtr10 + 1; + intPtr9->Imag = (float)(*intPtr10) * 4.656613E-10f; + Complex* intPtr11 = ExtIO._iqPtr + k; + int* intPtr12 = ptr3; + ptr3 = intPtr12 + 1; + intPtr11->Real = (float)(*intPtr12) * 4.656613E-10f; + } + } + else if (ExtIO._hwType == HWTypes.Aud32BFloat) + { + float* ptr4 = (float*)(void*)dataPtr; + for (int l = 0; l < length; l++) + { + Complex* intPtr13 = ExtIO._iqPtr + l; + float* intPtr14 = ptr4; + ptr4 = intPtr14 + 1; + intPtr13->Imag = *intPtr14; + Complex* intPtr15 = ExtIO._iqPtr + l; + float* intPtr16 = ptr4; + ptr4 = intPtr16 + 1; + intPtr15->Real = *intPtr16; + } + } + if (ExtIO.SamplesAvailable != null) + { + ExtIO.SamplesAvailable(null, ExtIO._iqPtr, length); + } + } + } + else if (status > 0) + { + int num = 0; + switch (status) + { + case 100: + ExtIO.logInfo("Status 100, SRChanged"); + num = ExtIO.GetHWSR(); + if (ExtIO.SampleRateChanged != null) + { + ExtIO.SampleRateChanged(num); + } + break; + case 101: + ExtIO.logInfo("Status 101, LOFreqChanged"); + num = ExtIO.GetHWLO(); + if (ExtIO.LOFreqChanged != null && num > 0) + { + ExtIO.LOFreqChanged(num); + } + break; + case 102: + ExtIO.logInfo("Status 102, ProhibitLO"); + if (ExtIO.ProhibitLOChanged != null) + { + ExtIO.ProhibitLOChanged(); + } + break; + case 103: + ExtIO.logInfo("Status 103, LOChangeOK"); + if (ExtIO.LOFreqChangedAccepted != null) + { + ExtIO.LOFreqChangedAccepted(); + } + break; + case 104: + ExtIO.logInfo("Status 104, LOChangedNoTune"); + num = ExtIO.GetHWLO(); + if (ExtIO.LOFreqChanged != null && num > 0) + { + ExtIO.LOFreqChanged(num); + } + break; + case 105: + ExtIO.logInfo("Status 105, TuneChanged"); + num = ExtIO.GetTune(); + if (ExtIO.TuneFreqChanged != null && num > 0) + { + ExtIO.TuneFreqChanged(num); + } + break; + case 106: + ExtIO.logInfo("Status 106, DemodChange"); + break; + case 107: + ExtIO.logInfo("Status 107, RsqStart"); + break; + case 108: + ExtIO.logInfo("Status 108, RsqStop"); + break; + case 109: + ExtIO.logInfo("FiltChange (109)"); + break; + default: + ExtIO.logInfo("Unknown status " + status.ToString() + " received from DLL."); + break; + } + } + } + + private static void logResult(string prefix) + { + Marshal.GetLastWin32Error(); + ExtIO.logInfo(prefix + new Win32Exception().Message); + } + + private static void logInfo(string msg) + { + Console.WriteLine("ExtIO: " + msg); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/ExtIOController.cs b/SDRSharper.Radio/SDRSharp.Radio/ExtIOController.cs new file mode 100644 index 0000000..023d3f5 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/ExtIOController.cs @@ -0,0 +1,83 @@ +using System; +using System.Windows.Forms; + +namespace SDRSharp.Radio +{ + public class ExtIOController : IFrontendController + { + private readonly string _filename; + + public bool IsOpen => ExtIO.IsHardwareOpen; + + public string Filename => this._filename; + + public bool IsSoundCardBased => ExtIO.HWType == ExtIO.HWTypes.Soundcard; + + public string SoundCardHint => string.Empty; + + public double Samplerate => (double)ExtIO.GetHWSR(); + + public long Frequency + { + get + { + return Math.Max(0, ExtIO.GetHWLO()); + } + set + { + if (value == -1) + { + ExtIO.CloseLibrary(); + } + else + { + ExtIO.SetHWLO((int)value); + } + } + } + + public ExtIOController(string filename) + { + this._filename = filename; + } + + ~ExtIOController() + { + ExtIO.CloseLibrary(); + } + + public void Open() + { + ExtIO.UseLibrary(this._filename); + ExtIO.OpenHW(true); + } + + public unsafe void Start(SamplesAvailableDelegate callback) + { + ExtIO.SamplesAvailable = callback; + ExtIO.StartHW(Math.Max(0, ExtIO.GetHWLO())); + } + + public unsafe void Stop() + { + ExtIO.StopHW(); + ExtIO.SamplesAvailable = null; + } + + public void Close() + { + ExtIO.HideGUI(); + ExtIO.CloseHW(); + } + + public void ShowSettingGUI(IWin32Window parent) + { + ExtIO.ShowGUI(); + } + + public void HideSettingGUI() + { + ExtIO.HideGUI(); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/FftProcessor.cs b/SDRSharper.Radio/SDRSharp.Radio/FftProcessor.cs new file mode 100644 index 0000000..1d55e33 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/FftProcessor.cs @@ -0,0 +1,211 @@ +using System; + +namespace SDRSharp.Radio +{ + public abstract class FftProcessor + { + private readonly int _fftSize; + + private readonly int _halfSize; + + private readonly int _overlapSize; + + private readonly float _blendFactor; + + private int _fftBufferPos; + + private int _sampleBufferHead; + + private int _sampleBufferTail; + + private UnsafeBuffer _fftBuffer; + + private unsafe Complex* _fftBufferPtr; + + private UnsafeBuffer _overlapBuffer; + + private unsafe Complex* _overlapBufferPtr; + + private UnsafeBuffer _outOverlapBuffer; + + private unsafe Complex* _outOverlapPtr; + + private UnsafeBuffer _sampleBuffer; + + private unsafe Complex* _sampleBufferPtr; + + private Complex _tmp = default(Complex); + + public unsafe FftProcessor(int fftSize, float overlapRatio = 0f) + { + this._fftSize = fftSize; + this._halfSize = fftSize / 2; + this._overlapSize = (int)Math.Ceiling((double)((float)this._fftSize * overlapRatio)); + this._fftBufferPos = this._halfSize; + this._blendFactor = 1f / (float)this._overlapSize; + this._fftBuffer = UnsafeBuffer.Create(fftSize, sizeof(Complex)); + this._fftBufferPtr = (Complex*)(void*)this._fftBuffer; + this._outOverlapBuffer = UnsafeBuffer.Create(this._overlapSize, sizeof(Complex)); + this._outOverlapPtr = (Complex*)(void*)this._outOverlapBuffer; + this._overlapBuffer = UnsafeBuffer.Create(fftSize / 2, sizeof(Complex)); + this._overlapBufferPtr = (Complex*)(void*)this._overlapBuffer; + this._sampleBuffer = UnsafeBuffer.Create(fftSize, sizeof(Complex)); + this._sampleBufferPtr = (Complex*)(void*)this._sampleBuffer; + this._sampleBufferHead = this._halfSize; + } + + public unsafe void Process(Complex* buffer, int length) + { + int i = 0; + int j = 0; + for (; i < length; i++) + { + this._fftBufferPtr[this._fftBufferPos++] = buffer[i]; + if (this._fftBufferPos == this._fftSize) + { + int num = this._halfSize; + int num2 = 0; + while (num < this._fftSize) + { + this._overlapBufferPtr[num2] = this._fftBufferPtr[num]; + num++; + num2++; + } + for (; j < length; j++) + { + if (this._sampleBufferHead == this._sampleBufferTail) + { + break; + } + buffer[j] = this._sampleBufferPtr[this._sampleBufferTail]; + this._sampleBufferTail = (this._sampleBufferTail + 1 & this._fftSize - 1); + } + Fourier.ForwardTransform(this._fftBufferPtr, this._fftSize, false); + this.ProcessFft(this._fftBufferPtr, this._fftSize); + Fourier.BackwardTransform(this._fftBufferPtr, this._fftSize); + int num3 = 0; + int num4 = this._halfSize - this._overlapSize; + while (num3 < this._halfSize) + { + if (num3 < this._overlapSize) + { + float num5 = (float)num3 * this._blendFactor; + Complex.Mul(ref this._sampleBufferPtr[this._sampleBufferHead], this._fftBufferPtr[num4], num5); + Complex.Mul(ref this._tmp, this._outOverlapPtr[num3], 1f - num5); + Complex.Add(ref this._sampleBufferPtr[this._sampleBufferHead], this._tmp); + } + else + { + this._sampleBufferPtr[this._sampleBufferHead] = this._fftBufferPtr[num4]; + } + this._sampleBufferHead = (this._sampleBufferHead + 1 & this._fftSize - 1); + num3++; + num4++; + } + int num6 = 0; + int num7 = this._fftSize - this._overlapSize; + while (num6 < this._overlapSize) + { + this._outOverlapPtr[num6] = this._fftBufferPtr[num7]; + num6++; + num7++; + } + for (int k = 0; k < this._halfSize; k++) + { + this._fftBufferPtr[k] = this._overlapBufferPtr[k]; + } + this._fftBufferPos = this._halfSize; + } + } + for (; j < length; j++) + { + if (this._sampleBufferHead == this._sampleBufferTail) + { + break; + } + buffer[j] = this._sampleBufferPtr[this._sampleBufferTail]; + this._sampleBufferTail = (this._sampleBufferTail + 1 & this._fftSize - 1); + } + } + + public unsafe void Process(float* buffer, int length, int step = 1) + { + int i = 0; + int j = 0; + for (; i < length; i += step) + { + this._fftBufferPtr[this._fftBufferPos].Real = buffer[i]; + this._fftBufferPtr[this._fftBufferPos++].Imag = 0f; + if (this._fftBufferPos == this._fftSize) + { + int num = this._halfSize; + int num2 = 0; + while (num < this._fftSize) + { + this._overlapBufferPtr[num2].Real = this._fftBufferPtr[num].Real; + this._overlapBufferPtr[num2].Imag = 0f; + num++; + num2++; + } + for (; j < length; j += step) + { + if (this._sampleBufferHead == this._sampleBufferTail) + { + break; + } + buffer[j] = this._sampleBufferPtr[this._sampleBufferTail].Real; + this._sampleBufferTail = (this._sampleBufferTail + 1 & this._fftSize - 1); + } + Fourier.ForwardTransform(this._fftBufferPtr, this._fftSize, false); + this.ProcessFft(this._fftBufferPtr, this._fftSize); + Fourier.BackwardTransform(this._fftBufferPtr, this._fftSize); + int num3 = 0; + int num4 = this._halfSize - this._overlapSize; + while (num3 < this._halfSize) + { + if (num3 < this._overlapSize) + { + float num5 = (float)num3 * this._blendFactor; + Complex.Mul(ref this._sampleBufferPtr[this._sampleBufferHead], this._fftBufferPtr[num4], num5); + Complex.Mul(ref this._tmp, this._outOverlapPtr[num3], 1f - num5); + Complex.Add(ref this._sampleBufferPtr[this._sampleBufferHead], this._tmp); + } + else + { + this._sampleBufferPtr[this._sampleBufferHead].Real = this._fftBufferPtr[num4].Real; + this._sampleBufferPtr[this._sampleBufferHead].Imag = 0f; + } + this._sampleBufferHead = (this._sampleBufferHead + 1 & this._fftSize - 1); + num3++; + num4++; + } + int num6 = 0; + int num7 = this._fftSize - this._overlapSize; + while (num6 < this._overlapSize) + { + this._outOverlapPtr[num6].Real = this._fftBufferPtr[num7].Real; + this._outOverlapPtr[num6].Imag = 0f; + num6++; + num7++; + } + for (int k = 0; k < this._halfSize; k++) + { + this._fftBufferPtr[k] = this._overlapBufferPtr[k]; + } + this._fftBufferPos = this._halfSize; + } + } + for (; j < length; j += step) + { + if (this._sampleBufferHead == this._sampleBufferTail) + { + break; + } + buffer[j] = this._sampleBufferPtr[this._sampleBufferTail].Real; + this._sampleBufferTail = (this._sampleBufferTail + 1 & this._fftSize - 1); + } + } + + protected unsafe abstract void ProcessFft(Complex* buffer, int length); + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/FilterBuilder.cs b/SDRSharper.Radio/SDRSharp.Radio/FilterBuilder.cs new file mode 100644 index 0000000..2af6571 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/FilterBuilder.cs @@ -0,0 +1,201 @@ +using System; + +namespace SDRSharp.Radio +{ + public static class FilterBuilder + { + public const int DefaultFilterOrder = 500; + + public static float[] MakeWindow(WindowType windowType, int length) + { + float[] array = new float[length]; + length--; + for (int i = 0; i <= length; i++) + { + array[i] = 1f; + switch (windowType) + { + case WindowType.Hamming: + { + float num = 0.54f; + float num2 = 0.46f; + float num3 = 0f; + float num4 = 0f; + array[i] *= num - num2 * (float)Math.Cos(6.2831853071795862 * (double)i / (double)length) + num3 * (float)Math.Cos(12.566370614359172 * (double)i / (double)length) - num4 * (float)Math.Cos(18.849555921538759 * (double)i / (double)length); + break; + } + case WindowType.Blackman: + { + float num = 0.42f; + float num2 = 0.5f; + float num3 = 0.08f; + float num4 = 0f; + array[i] *= num - num2 * (float)Math.Cos(6.2831853071795862 * (double)i / (double)length) + num3 * (float)Math.Cos(12.566370614359172 * (double)i / (double)length) - num4 * (float)Math.Cos(18.849555921538759 * (double)i / (double)length); + break; + } + case WindowType.BlackmanHarris4: + { + float num = 0.35875f; + float num2 = 0.48829f; + float num3 = 0.14128f; + float num4 = 0.01168f; + array[i] *= num - num2 * (float)Math.Cos(6.2831853071795862 * (double)i / (double)length) + num3 * (float)Math.Cos(12.566370614359172 * (double)i / (double)length) - num4 * (float)Math.Cos(18.849555921538759 * (double)i / (double)length); + break; + } + case WindowType.BlackmanHarris7: + { + float num = 0.2710514f; + float num2 = 0.433297932f; + float num3 = 0.218123f; + float num4 = 0.06592545f; + float num6 = 0.0108117424f; + float num7 = 0.000776584842f; + float num8 = 1.38872174E-05f; + array[i] *= num - num2 * (float)Math.Cos(6.2831853071795862 * (double)i / (double)length) + num3 * (float)Math.Cos(12.566370614359172 * (double)i / (double)length) - num4 * (float)Math.Cos(18.849555921538759 * (double)i / (double)length) + num6 * (float)Math.Cos(25.132741228718345 * (double)i / (double)length) - num7 * (float)Math.Cos(31.415926535897931 * (double)i / (double)length) + num8 * (float)Math.Cos(37.699111843077517 * (double)i / (double)length); + break; + } + case WindowType.HannPoisson: + { + float value = (float)i - (float)length / 2f; + float num5 = 0.005f; + array[i] *= 0.5f * (float)((1.0 + Math.Cos(6.2831853071795862 * (double)value / (double)length)) * Math.Exp(-2.0 * (double)num5 * (double)Math.Abs(value) / (double)length)); + break; + } + case WindowType.Youssef: + { + float num = 0.35875f; + float num2 = 0.48829f; + float num3 = 0.14128f; + float num4 = 0.01168f; + float value = (float)i - (float)length / 2f; + float num5 = 0.005f; + array[i] *= num - num2 * (float)Math.Cos(6.2831853071795862 * (double)i / (double)length) + num3 * (float)Math.Cos(12.566370614359172 * (double)i / (double)length) - num4 * (float)Math.Cos(18.849555921538759 * (double)i / (double)length); + array[i] *= (float)Math.Exp(-2.0 * (double)num5 * (double)Math.Abs(value) / (double)length); + break; + } + } + } + return array; + } + + public static float[] MakeSinc(double sampleRate, double frequency, int length) + { + if (length % 2 == 0) + { + throw new ArgumentException("Length should be odd", "length"); + } + double num = 6.2831853071795862 * frequency / sampleRate; + float[] array = new float[length]; + for (int i = 0; i < length; i++) + { + int num2 = i - length / 2; + if (num2 == 0) + { + array[i] = (float)num; + } + else + { + array[i] = (float)(Math.Sin(num * (double)num2) / (double)num2); + } + } + return array; + } + + public static float[] MakeSin(double sampleRate, double frequency, int length) + { + if (length % 2 == 0) + { + throw new ArgumentException("Length should be odd", "length"); + } + double num = 6.2831853071795862 * frequency / sampleRate; + float[] array = new float[length]; + int num2 = length / 2; + for (int i = 0; i <= num2; i++) + { + array[num2 - i] = 0f - (array[num2 + i] = (float)Math.Sin(num * (double)i)); + } + return array; + } + + public static float[] MakeLowPassKernel(double sampleRate, int filterOrder, double cutoffFrequency, WindowType windowType) + { + filterOrder |= 1; + float[] array = FilterBuilder.MakeSinc(sampleRate, cutoffFrequency, filterOrder); + float[] window = FilterBuilder.MakeWindow(windowType, filterOrder); + FilterBuilder.ApplyWindow(array, window); + FilterBuilder.Normalize(array); + return array; + } + + public static float[] MakeHighPassKernel(double sampleRate, int filterOrder, double cutoffFrequency, WindowType windowType) + { + return FilterBuilder.InvertSpectrum(FilterBuilder.MakeLowPassKernel(sampleRate, filterOrder, cutoffFrequency, windowType)); + } + + public static float[] MakeStopBandKernel(double sampleRate, int filterOrder, int cutoff1, int cutoff2, WindowType windowType) + { + return FilterBuilder.InvertSpectrum(FilterBuilder.MakeBandPassKernel(sampleRate, filterOrder, (double)cutoff1, (double)cutoff2, windowType)); + } + + public static float[] MakeBandPassKernel(double sampleRate, int filterOrder, double cutoff1, double cutoff2, WindowType windowType) + { + double num = (cutoff2 - cutoff1) / 2.0; + double num2 = cutoff2 - num; + double num3 = 6.2831853071795862 * num2 / sampleRate; + float[] array = FilterBuilder.MakeLowPassKernel(sampleRate, filterOrder, num, windowType); + for (int i = 0; i < array.Length; i++) + { + int num4 = i - filterOrder / 2; + array[i] *= (float)(2.0 * Math.Cos(num3 * (double)num4)); + } + return array; + } + + public static Complex[] MakeKernelFromFFT(Complex[] buf, int len, WindowType window, int order) + { + float[] array = FilterBuilder.MakeWindow(window, order + 1); + Complex[] array2 = new Complex[order + 1]; + for (int i = 0; i < order + 1; i++) + { + int num = i - order / 2; + if (num < 0) + { + num += len; + } + Complex.Mul(ref array2[i], buf[num], array[i]); + } + return array2; + } + + public static void Normalize(float[] h) + { + float num = 0f; + for (int i = 0; i < h.Length; i++) + { + num += h[i]; + } + for (int j = 0; j < h.Length; j++) + { + h[j] /= num; + } + } + + public static void ApplyWindow(float[] coefficients, float[] window) + { + for (int i = 0; i < coefficients.Length; i++) + { + coefficients[i] *= window[i]; + } + } + + private static float[] InvertSpectrum(float[] h) + { + for (int i = 0; i < h.Length; i++) + { + h[i] = 0f - h[i]; + } + h[(h.Length - 1) / 2] += 1f; + return h; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/FirFilter.cs b/SDRSharper.Radio/SDRSharp.Radio/FirFilter.cs new file mode 100644 index 0000000..9aa176e --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/FirFilter.cs @@ -0,0 +1,500 @@ +using System; + +namespace SDRSharp.Radio +{ + public sealed class FirFilter : IDisposable, IFilter + { + private const double Epsilon = 1E-06; + + private const int CircularBufferSize = 2; + + private unsafe float* _coeffPtr; + + private UnsafeBuffer _coeffBuffer; + + private unsafe float* _queuePtr; + + private UnsafeBuffer _queueBuffer; + + private int _queueSize; + + private int _offset; + + private bool _isSymmetric; + + private bool _isHalfBand; + + private int _decimationFactor; + + public int Length => this._queueSize; + + public FirFilter() + : this(new float[0]) + { + } + + public FirFilter(float[] coefficients) + : this(coefficients, 1) + { + } + + public FirFilter(float[] coefficients, int decimationFactor) + { + this.SetCoefficients(coefficients); + if (this._decimationFactor != 0 && this._decimationFactor != decimationFactor) + { + throw new ArgumentException("This decimation factor cannot be used with a half band filter", "decimationFactor"); + } + if (decimationFactor <= 0) + { + throw new ArgumentException("The decimation factor must be greater than zero", "decimationFactor"); + } + this._decimationFactor = decimationFactor; + } + + ~FirFilter() + { + this.Dispose(); + } + + public unsafe void Dispose() + { + this._coeffBuffer = null; + this._queueBuffer = null; + this._coeffPtr = null; + this._queuePtr = null; + GC.SuppressFinalize(this); + } + + public unsafe void SetCoefficients(float[] coefficients) + { + if (coefficients != null) + { + if (this._coeffBuffer == null || coefficients.Length != this._queueSize) + { + this._queueSize = coefficients.Length; + this._offset = this._queueSize; + this._coeffBuffer = UnsafeBuffer.Create(this._queueSize, 4); + this._coeffPtr = (float*)(void*)this._coeffBuffer; + this._queueBuffer = UnsafeBuffer.Create(this._queueSize * 2, 4); + this._queuePtr = (float*)(void*)this._queueBuffer; + } + for (int i = 0; i < this._queueSize; i++) + { + this._coeffPtr[i] = coefficients[i]; + } + if (this._queueSize % 2 != 0) + { + this._isSymmetric = true; + this._isHalfBand = true; + int num = this._queueSize / 2; + for (int j = 0; j < num; j++) + { + int num2 = this._queueSize - 1 - j; + if ((double)Math.Abs(this._coeffPtr[j] - this._coeffPtr[num2]) > 1E-06) + { + this._isSymmetric = false; + this._isHalfBand = false; + break; + } + if (j % 2 != 0) + { + this._isHalfBand = (this._coeffPtr[j] == 0f && this._coeffPtr[num2] == 0f); + } + } + if (this._isHalfBand) + { + this._decimationFactor = 2; + } + } + } + } + + private unsafe void ProcessSymmetricKernel(float* buffer, int length) + { + int num = 0; + int num2 = 0; + while (num < length) + { + float* ptr = this._queuePtr + this._offset; + int num3 = 0; + int num4 = num + this._decimationFactor - 1; + while (num3 < this._decimationFactor) + { + ptr[num3] = buffer[num4]; + num3++; + num4--; + } + float num5 = 0f; + int num6 = this._queueSize / 2; + int num7 = num6; + float* ptr2 = this._coeffPtr; + float* ptr3 = ptr; + float* ptr4 = ptr + this._queueSize - 1; + if (num7 >= 4) + { + do + { + num5 += *ptr2 * (*ptr3 + *ptr4) + ptr2[1] * (ptr3[1] + *(float*)((byte*)ptr4 + -4)) + ptr2[2] * (ptr3[2] + *(float*)((byte*)ptr4 + -8)) + ptr2[3] * (ptr3[3] + *(float*)((byte*)ptr4 + -12)); + ptr2 += 4; + ptr3 += 4; + ptr4 -= 4; + } + while ((num7 -= 4) >= 4); + } + while (num7-- > 0) + { + float num9 = num5; + float* intPtr = ptr2; + ptr2 = intPtr + 1; + float num10 = *intPtr; + float* intPtr2 = ptr3; + ptr3 = intPtr2 + 1; + float num11 = *intPtr2; + float* intPtr3 = ptr4; + ptr4 = intPtr3 - 1; + num5 = num9 + num10 * (num11 + *intPtr3); + } + num5 += ptr[num6] * this._coeffPtr[num6]; + if ((this._offset -= this._decimationFactor) < 0) + { + int num12 = this._offset + this._decimationFactor; + this._offset += this._queueSize; + Utils.Memcpy(this._queuePtr + this._offset + this._decimationFactor, this._queuePtr + num12, (this._queueSize - this._decimationFactor) * 4); + } + buffer[num2] = num5; + num += this._decimationFactor; + num2++; + } + } + + private unsafe void ProcessSymmetricKernelInterleaved(float* buffer, int length) + { + length <<= 1; + int num = 0; + int num2 = 0; + while (num < length) + { + float* ptr = this._queuePtr + this._offset; + int num3 = 0; + int num4 = num + 2 * (this._decimationFactor - 1); + while (num3 < this._decimationFactor) + { + ptr[num3] = buffer[num4]; + num3++; + num4 -= 2; + } + float num5 = 0f; + int num6 = this._queueSize / 2; + int num7 = num6; + float* ptr2 = this._coeffPtr; + float* ptr3 = ptr; + float* ptr4 = ptr + this._queueSize - 1; + if (num7 >= 16) + { + do + { + num5 += *ptr2 * (*ptr3 + *ptr4) + ptr2[1] * (ptr3[1] + *(float*)((byte*)ptr4 + -4)) + ptr2[2] * (ptr3[2] + *(float*)((byte*)ptr4 + -8)) + ptr2[3] * (ptr3[3] + *(float*)((byte*)ptr4 + -12)) + ptr2[4] * (ptr3[4] + *(float*)((byte*)ptr4 + -16)) + ptr2[5] * (ptr3[5] + *(float*)((byte*)ptr4 + -20)) + ptr2[6] * (ptr3[6] + *(float*)((byte*)ptr4 + -24)) + ptr2[7] * (ptr3[7] + *(float*)((byte*)ptr4 + -28)) + ptr2[8] * (ptr3[8] + *(float*)((byte*)ptr4 + -32)) + ptr2[9] * (ptr3[9] + *(float*)((byte*)ptr4 + -36)) + ptr2[10] * (ptr3[10] + *(float*)((byte*)ptr4 + -40)) + ptr2[11] * (ptr3[11] + *(float*)((byte*)ptr4 + -44)) + ptr2[12] * (ptr3[12] + *(float*)((byte*)ptr4 + -48)) + ptr2[13] * (ptr3[13] + *(float*)((byte*)ptr4 + -52)) + ptr2[14] * (ptr3[14] + *(float*)((byte*)ptr4 + -56)) + ptr2[15] * (ptr3[15] + *(float*)((byte*)ptr4 + -60)); + ptr2 += 16; + ptr3 += 16; + ptr4 -= 16; + } + while ((num7 -= 16) >= 16); + } + if (num7 >= 8) + { + num5 += *ptr2 * (*ptr3 + *ptr4) + ptr2[1] * (ptr3[1] + *(float*)((byte*)ptr4 + -4)) + ptr2[2] * (ptr3[2] + *(float*)((byte*)ptr4 + -8)) + ptr2[3] * (ptr3[3] + *(float*)((byte*)ptr4 + -12)) + ptr2[4] * (ptr3[4] + *(float*)((byte*)ptr4 + -16)) + ptr2[5] * (ptr3[5] + *(float*)((byte*)ptr4 + -20)) + ptr2[6] * (ptr3[6] + *(float*)((byte*)ptr4 + -24)) + ptr2[7] * (ptr3[7] + *(float*)((byte*)ptr4 + -28)); + ptr2 += 8; + ptr3 += 8; + ptr4 -= 8; + num7 -= 8; + } + if (num7 >= 4) + { + num5 += *ptr2 * (*ptr3 + *ptr4) + ptr2[1] * (ptr3[1] + *(float*)((byte*)ptr4 + -4)) + ptr2[2] * (ptr3[2] + *(float*)((byte*)ptr4 + -8)) + ptr2[3] * (ptr3[3] + *(float*)((byte*)ptr4 + -12)); + ptr2 += 4; + ptr3 += 4; + ptr4 -= 4; + num7 -= 4; + } + if (num7 >= 2) + { + num5 += *ptr2 * (*ptr3 + *ptr4) + ptr2[1] * (ptr3[1] + *(float*)((byte*)ptr4 + -4)); + ptr2 += 2; + ptr3 += 2; + ptr4 -= 2; + num7 -= 2; + } + if (num7 >= 1) + { + num5 += *ptr2 * (*ptr3 + *ptr4); + } + num5 += ptr[num6] * this._coeffPtr[num6]; + if ((this._offset -= this._decimationFactor) < 0) + { + this._offset = this._queueSize; + Utils.Memcpy(this._queuePtr + this._offset + this._decimationFactor, ptr, (this._queueSize - this._decimationFactor) * 4); + } + buffer[num2] = num5; + num += this._decimationFactor * 2; + num2 += 2; + } + } + + private unsafe void ProcessHalfBandKernel(float* buffer, int length) + { + int num = 0; + int num2 = 0; + while (num < length) + { + float* ptr = this._queuePtr + this._offset; + *ptr = buffer[num + 1]; + ptr[1] = buffer[num]; + float num3 = 0f; + int num4 = this._queueSize / 2; + int num5 = num4; + float* ptr2 = this._coeffPtr; + float* ptr3 = ptr; + float* ptr4 = ptr + this._queueSize - 1; + if (num5 >= 8) + { + do + { + num3 += *ptr2 * (*ptr3 + *ptr4) + ptr2[2] * (ptr3[2] + *(float*)((byte*)ptr4 + -8)) + ptr2[4] * (ptr3[4] + *(float*)((byte*)ptr4 + -16)) + ptr2[6] * (ptr3[6] + *(float*)((byte*)ptr4 + -24)); + ptr2 += 8; + ptr3 += 8; + ptr4 -= 8; + } + while ((num5 -= 8) >= 8); + } + if (num5 >= 4) + { + num3 += *ptr2 * (*ptr3 + *ptr4) + ptr2[2] * (ptr3[2] + *(float*)((byte*)ptr4 + -8)); + ptr2 += 4; + ptr3 += 4; + ptr4 -= 4; + num5 -= 4; + } + while (num5-- > 0) + { + float num7 = num3; + float* intPtr = ptr2; + ptr2 = intPtr + 1; + float num8 = *intPtr; + float* intPtr2 = ptr3; + ptr3 = intPtr2 + 1; + float num9 = *intPtr2; + float* intPtr3 = ptr4; + ptr4 = intPtr3 - 1; + num3 = num7 + num8 * (num9 + *intPtr3); + } + num3 += ptr[num4] * this._coeffPtr[num4]; + if ((this._offset -= this._decimationFactor) < 0) + { + int num10 = this._offset + this._decimationFactor; + this._offset += this._queueSize; + Utils.Memcpy(this._queuePtr + this._offset + this._decimationFactor, this._queuePtr + num10, (this._queueSize - this._decimationFactor) * 4); + } + buffer[num2] = num3; + num += 2; + num2++; + } + } + + private unsafe void ProcessHalfBandInterleaved(float* buffer, int length) + { + length <<= 1; + int num = 0; + int num2 = 0; + while (num < length) + { + float* ptr = this._queuePtr + this._offset; + *ptr = buffer[num + 2]; + ptr[1] = buffer[num]; + float num3 = 0f; + int num4 = this._queueSize / 2; + int num5 = num4; + float* ptr2 = this._coeffPtr; + float* ptr3 = ptr; + float* ptr4 = ptr + this._queueSize - 1; + if (num5 >= 8) + { + do + { + num3 += *ptr2 * (*ptr3 + *ptr4) + ptr2[2] * (ptr3[2] + *(float*)((byte*)ptr4 + -8)) + ptr2[4] * (ptr3[4] + *(float*)((byte*)ptr4 + -16)) + ptr2[6] * (ptr3[6] + *(float*)((byte*)ptr4 + -24)); + ptr2 += 8; + ptr3 += 8; + ptr4 -= 8; + } + while ((num5 -= 8) >= 8); + } + if (num5 >= 4) + { + num3 += *ptr2 * (*ptr3 + *ptr4) + ptr2[2] * (ptr3[2] + *(float*)((byte*)ptr4 + -8)); + ptr2 += 4; + ptr3 += 4; + ptr4 -= 4; + num5 -= 4; + } + while (num5-- > 0) + { + float num7 = num3; + float* intPtr = ptr2; + ptr2 = intPtr + 1; + float num8 = *intPtr; + float* intPtr2 = ptr3; + ptr3 = intPtr2 + 1; + float num9 = *intPtr2; + float* intPtr3 = ptr4; + ptr4 = intPtr3 - 1; + num3 = num7 + num8 * (num9 + *intPtr3); + } + num3 += ptr[num4] * this._coeffPtr[num4]; + if ((this._offset -= this._decimationFactor) < 0) + { + int num10 = this._offset + this._decimationFactor; + this._offset += this._queueSize; + Utils.Memcpy(this._queuePtr + this._offset + this._decimationFactor, this._queuePtr + num10, (this._queueSize - this._decimationFactor) * 4); + } + buffer[num2] = num3; + num += 4; + num2 += 2; + } + } + + private unsafe void ProcessStandard(float* buffer, int length) + { + int num = 0; + int num2 = 0; + while (num < length) + { + float* ptr = this._queuePtr + this._offset; + int num3 = 0; + int num4 = num + this._decimationFactor - 1; + while (num3 < this._decimationFactor) + { + ptr[num3] = buffer[num4]; + num3++; + num4--; + } + float num5 = 0f; + int num6 = this._queueSize; + float* ptr2 = ptr; + float* ptr3 = this._coeffPtr; + if (num6 >= 4) + { + do + { + num5 += *ptr2 * *ptr3 + ptr2[1] * ptr3[1] + ptr2[2] * ptr3[2] + ptr2[3] * ptr3[3]; + ptr2 += 4; + ptr3 += 4; + } + while ((num6 -= 4) >= 4); + } + while (num6-- > 0) + { + float num8 = num5; + float* intPtr = ptr2; + ptr2 = intPtr + 1; + float num9 = *intPtr; + float* intPtr2 = ptr3; + ptr3 = intPtr2 + 1; + num5 = num8 + num9 * *intPtr2; + } + if ((this._offset -= this._decimationFactor) < 0) + { + int num10 = this._offset + this._decimationFactor; + this._offset += this._queueSize; + Utils.Memcpy(this._queuePtr + this._offset + this._decimationFactor, this._queuePtr + num10, (this._queueSize - this._decimationFactor) * 4); + } + buffer[num2] = num5; + num += this._decimationFactor; + num2++; + } + } + + private unsafe void ProcessStandardInterleaved(float* buffer, int length) + { + length <<= 1; + int num = 0; + int num2 = 0; + while (num < length) + { + float* ptr = this._queuePtr + this._offset; + int num3 = 0; + int num4 = num + 2 * (this._decimationFactor - 1); + while (num3 < this._decimationFactor) + { + ptr[num3] = buffer[num4]; + num3++; + num4 -= 2; + } + float num5 = 0f; + int num6 = this._queueSize; + float* ptr2 = ptr; + float* ptr3 = this._coeffPtr; + if (num6 >= 4) + { + do + { + num5 += *ptr2 * *ptr3 + ptr2[1] * ptr3[1] + ptr2[2] * ptr3[2] + ptr2[3] * ptr3[3]; + ptr2 += 4; + ptr3 += 4; + } + while ((num6 -= 4) >= 4); + } + while (num6-- > 0) + { + float num8 = num5; + float* intPtr = ptr2; + ptr2 = intPtr + 1; + float num9 = *intPtr; + float* intPtr2 = ptr3; + ptr3 = intPtr2 + 1; + num5 = num8 + num9 * *intPtr2; + } + if ((this._offset -= this._decimationFactor) < 0) + { + int num10 = this._offset + this._decimationFactor; + this._offset += this._queueSize; + Utils.Memcpy(this._queuePtr + this._offset + this._decimationFactor, this._queuePtr + num10, (this._queueSize - this._decimationFactor) * 4); + } + buffer[num2] = num5; + num += this._decimationFactor * 2; + num2 += 2; + } + } + + public unsafe void Process(float* buffer, int length) + { + if (this._isHalfBand) + { + this.ProcessHalfBandKernel(buffer, length); + } + else if (this._isSymmetric) + { + this.ProcessSymmetricKernel(buffer, length); + } + else + { + this.ProcessStandard(buffer, length); + } + } + + public unsafe void ProcessInterleaved(float* buffer, int length) + { + if (this._isHalfBand) + { + this.ProcessHalfBandInterleaved(buffer, length); + } + else if (this._isSymmetric) + { + this.ProcessSymmetricKernelInterleaved(buffer, length); + } + else + { + this.ProcessStandardInterleaved(buffer, length); + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/FloatDecimator.cs b/SDRSharper.Radio/SDRSharp.Radio/FloatDecimator.cs new file mode 100644 index 0000000..55eee88 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/FloatDecimator.cs @@ -0,0 +1,124 @@ +namespace SDRSharp.Radio +{ + public sealed class FloatDecimator + { + private readonly int _stageCount; + + private readonly int _threadCount; + + private readonly int _cicCount; + + private readonly UnsafeBuffer _cicDecimatorsBuffer; + + private unsafe readonly CicDecimator* _cicDecimators; + + private readonly FirFilter[] _firFilters; + + private static readonly double _minimumCICSampleRate = Utils.GetDoubleSetting("minimumCICSampleRate", 1500000.0); + + public int StageCount => this._stageCount; + + public FloatDecimator(int stageCount) + : this(stageCount, 0.0, DecimationFilterType.Audio, 1) + { + } + + public FloatDecimator(int stageCount, double samplerate, DecimationFilterType filterType) + : this(stageCount, samplerate, filterType, 1) + { + } + + public unsafe FloatDecimator(int stageCount, double samplerate, DecimationFilterType filterType, int threadCount) + { + this._stageCount = stageCount; + this._threadCount = threadCount; + this._cicCount = 0; + int num = 0; + switch (filterType) + { + case DecimationFilterType.Fast: + this._cicCount = stageCount; + break; + case DecimationFilterType.Audio: + num = stageCount; + break; + case DecimationFilterType.Baseband: + while (this._cicCount < stageCount && samplerate >= FloatDecimator._minimumCICSampleRate) + { + this._cicCount++; + samplerate /= 2.0; + } + num = stageCount - this._cicCount; + break; + } + this._cicDecimatorsBuffer = UnsafeBuffer.Create(this._threadCount * this._cicCount, sizeof(CicDecimator)); + this._cicDecimators = (CicDecimator*)(void*)this._cicDecimatorsBuffer; + for (int i = 0; i < this._threadCount; i++) + { + for (int j = 0; j < this._cicCount; j++) + { + this._cicDecimators[i * this._cicCount + j] = default(CicDecimator); + } + } + this._firFilters = new FirFilter[num]; + for (int k = 0; k < num; k++) + { + this._firFilters[k] = new FirFilter(DecimationKernels.Kernel51, 2); + } + } + + public unsafe void Process(float* buffer, int length) + { + this.DecimateStage1(buffer, length); + length >>= this._cicCount; + this.DecimateStage2(buffer, length); + } + + public unsafe void ProcessInterleaved(float* buffer, int length) + { + this.DecimateStage1Interleaved(buffer, length); + length >>= this._cicCount; + this.DecimateStage2Interleaved(buffer, length); + } + + private unsafe void DecimateStage1(float* buffer, int sampleCount) + { + for (int i = 0; i < this._cicCount; i++) + { + int num = 0; + int length = sampleCount; + this._cicDecimators[num * this._cicCount + i].Process(buffer, length); + sampleCount /= 2; + } + } + + private unsafe void DecimateStage2(float* buffer, int length) + { + for (int i = 0; i < this._firFilters.Length; i++) + { + this._firFilters[i].Process(buffer, length); + length /= 2; + } + } + + private unsafe void DecimateStage1Interleaved(float* buffer, int sampleCount) + { + for (int i = 0; i < this._cicCount; i++) + { + int num = 0; + int length = sampleCount; + this._cicDecimators[num * this._cicCount + i].ProcessInterleaved(buffer, length); + sampleCount /= 2; + } + } + + private unsafe void DecimateStage2Interleaved(float* buffer, int length) + { + for (int i = 0; i < this._firFilters.Length; i++) + { + this._firFilters[i].ProcessInterleaved(buffer, length); + length /= 2; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/FloatFifoStream.cs b/SDRSharper.Radio/SDRSharp.Radio/FloatFifoStream.cs new file mode 100644 index 0000000..7d238cb --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/FloatFifoStream.cs @@ -0,0 +1,301 @@ +using System; +using System.Collections.Generic; + +namespace SDRSharp.Radio +{ + public sealed class FloatFifoStream : IDisposable + { + private const int BlockSize = 16384; + + private const int MaxBlocksInCache = 128; + + private int _size; + + private int _readPos; + + private int _writePos; + + private bool _terminated; + + private readonly int _maxSize; + + private readonly SharpEvent _writeEvent; + + private readonly SharpEvent _readEvent; + + private readonly Stack _usedBlocks = new Stack(); + + private readonly List _blocks = new List(); + + private int _logMax; + + private string _logName; + + private bool _logR; + + private bool _logW; + + public int Length => this._size; + + public FloatFifoStream() + : this(BlockMode.None) + { + } + + public FloatFifoStream(BlockMode blockMode) + : this(blockMode, 0) + { + } + + public FloatFifoStream(BlockMode blockMode, int maxSize) + { + if (blockMode == BlockMode.BlockingRead || blockMode == BlockMode.BlockingReadWrite) + { + this._readEvent = new SharpEvent(false); + } + if (blockMode == BlockMode.BlockingWrite || blockMode == BlockMode.BlockingReadWrite) + { + if (maxSize <= 0) + { + throw new ArgumentException("MaxSize should be greater than zero when in blocking write mode", "maxSize"); + } + this._writeEvent = new SharpEvent(false); + } + this._maxSize = maxSize; + } + + ~FloatFifoStream() + { + this.Dispose(); + } + + public void Dispose() + { + this.Close(); + GC.SuppressFinalize(this); + } + + public void SetLog(string logName, int logMax, bool read = true, bool write = true) + { + this._logName = logName; + this._logMax = logMax; + this._logR = read; + this._logW = write; + } + + private UnsafeBuffer AllocBlock() + { + return (this._usedBlocks.Count > 0) ? this._usedBlocks.Pop() : UnsafeBuffer.Create(16384, 4); + } + + private void FreeBlock(UnsafeBuffer block) + { + if (this._usedBlocks.Count < 128) + { + this._usedBlocks.Push(block); + } + } + + private UnsafeBuffer GetWBlock() + { + UnsafeBuffer unsafeBuffer; + if (this._writePos < 16384 && this._blocks.Count > 0) + { + unsafeBuffer = this._blocks[this._blocks.Count - 1]; + } + else + { + unsafeBuffer = this.AllocBlock(); + this._blocks.Add(unsafeBuffer); + this._writePos = 0; + } + return unsafeBuffer; + } + + public void Close() + { + this.Flush(); + this._terminated = true; + if (this._writeEvent != null) + { + this._writeEvent.Set(); + } + if (this._readEvent != null) + { + this._readEvent.Set(); + } + } + + public void Flush() + { + lock (this) + { + foreach (UnsafeBuffer block in this._blocks) + { + this.FreeBlock(block); + } + this._blocks.Clear(); + this._readPos = 0; + this._writePos = 0; + this._size = 0; + } + } + + public unsafe int Read(float* buf, int ofs, int count) + { + if (this._readEvent != null) + { + while (this._size == 0 && !this._terminated) + { + if (this._logR) + { + Console.WriteLine(this._logName + ", read paused, no data"); + } + this._readEvent.WaitOne(); + } + if (this._terminated) + { + return 0; + } + } + else if (this._size == 0) + { + Console.WriteLine(this._logName + ", read, data error"); + } + int num = default(int); + lock (this) + { + num = this.DoPeek(buf, ofs, count); + this.DoAdvance(num); + } + if (this._writeEvent != null) + { + this._writeEvent.Set(); + } + return num; + } + + public unsafe int Read(float* buf, int count) + { + return this.Read(buf, 0, count); + } + + public unsafe void Write(float* buf, int ofs, int count) + { + if (this._writeEvent != null) + { + while (this._size >= this._maxSize && !this._terminated) + { + this._writeEvent.WaitOne(); + if (this._logW) + { + Console.WriteLine(this._logName + ", write paused, _maxSize=" + this._maxSize.ToString()); + } + } + if (this._terminated) + { + return; + } + } + lock (this) + { + int num2; + for (int num = count; num > 0; num -= num2) + { + num2 = Math.Min(16384 - this._writePos, num); + UnsafeBuffer wBlock = this.GetWBlock(); + float* ptr = (float*)(void*)wBlock; + Utils.Memcpy(ptr + this._writePos, buf + ofs + count - num, num2 * 4); + this._writePos += num2; + } + this._size += count; + } + if (this._readEvent != null) + { + this._readEvent.Set(); + } + } + + public unsafe void Write(float* buf, int count) + { + this.Write(buf, 0, count); + } + + private int DoAdvance(int count) + { + int num = count; + while (num > 0 && this._size > 0) + { + if (this._readPos == 16384) + { + this._readPos = 0; + this.FreeBlock(this._blocks[0]); + this._blocks.RemoveAt(0); + } + int num2 = (this._blocks.Count == 1) ? Math.Min(this._writePos - this._readPos, num) : Math.Min(16384 - this._readPos, num); + this._readPos += num2; + num -= num2; + this._size -= num2; + } + return count - num; + } + + public int Advance(int count) + { + if (this._readEvent != null) + { + while (this._size == 0 && !this._terminated) + { + this._readEvent.WaitOne(); + } + if (this._terminated) + { + return 0; + } + } + int result = default(int); + lock (this) + { + result = this.DoAdvance(count); + } + if (this._writeEvent != null) + { + this._writeEvent.Set(); + } + return result; + } + + private unsafe int DoPeek(float* buf, int ofs, int count) + { + int num = count; + int num2 = this._readPos; + int num3 = this._size; + int num4 = 0; + while (num > 0 && num3 > 0) + { + if (num2 == 16384) + { + num2 = 0; + num4++; + } + int num5 = (num4 < this._blocks.Count - 1) ? 16384 : this._writePos; + int num6 = Math.Min(num5 - num2, num); + UnsafeBuffer unsafeBuffer = this._blocks[num4]; + float* ptr = (float*)(void*)unsafeBuffer; + Utils.Memcpy(buf + ofs + count - num, ptr + num2, num6 * 4); + num -= num6; + num2 += num6; + num3 -= num6; + } + return count - num; + } + + public unsafe int Peek(float* buf, int ofs, int count) + { + lock (this) + { + return this.DoPeek(buf, ofs, count); + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/FmDetector.cs b/SDRSharper.Radio/SDRSharp.Radio/FmDetector.cs new file mode 100644 index 0000000..c351a98 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/FmDetector.cs @@ -0,0 +1,168 @@ +using System; + +namespace SDRSharp.Radio +{ + public sealed class FmDetector + { + private const float NarrowAFGain = 0.5f; + + private const float FMGain = 1E-05f; + + private const float TimeConst = 1E-06f; + + private const int MinHissFrequency = 4000; + + private const int MaxHissFrequency = 6000; + + private const int HissFilterOrder = 20; + + private const float HissFactor = 2E-05f; + + private unsafe readonly DcRemover* _dcRemoverPtr; + + private unsafe readonly UnsafeBuffer _dcRemoverBuffer = UnsafeBuffer.Create(sizeof(DcRemover)); + + private unsafe float* _hissPtr; + + private UnsafeBuffer _hissBuffer; + + private FirFilter _hissFilter; + + private Complex _iqState; + + private float _noiseLevel; + + private double _sampleRate; + + private float _noiseAveragingRatio; + + private int _squelchThreshold; + + private bool _isSquelchOpen; + + private float _noiseThreshold; + + private FmMode _mode; + + private Complex _f = default(Complex); + + private Complex _tmp = default(Complex); + + public unsafe float Offset => this._dcRemoverPtr->Offset; + + public unsafe double SampleRate + { + get + { + return this._sampleRate; + } + set + { + if (value != this._sampleRate) + { + this._sampleRate = value; + this._noiseAveragingRatio = (float)(30.0 / this._sampleRate); + float[] coefficients = FilterBuilder.MakeBandPassKernel(this._sampleRate, 20, 4000.0, 6000.0, WindowType.BlackmanHarris4); + if (this._hissFilter != null) + { + this._hissFilter.Dispose(); + } + this._hissFilter = new FirFilter(coefficients, 1); + this._dcRemoverPtr->Reset(); + } + } + } + + public int SquelchThreshold + { + get + { + return this._squelchThreshold; + } + set + { + if (this._squelchThreshold != value) + { + this._squelchThreshold = value; + this._noiseThreshold = (float)Math.Log10(2.0 - (double)this._squelchThreshold / 100.0) * 2E-05f; + } + } + } + + public bool IsSquelchOpen => this._isSquelchOpen; + + public FmMode Mode + { + get + { + return this._mode; + } + set + { + this._mode = value; + } + } + + public unsafe FmDetector() + { + this._dcRemoverPtr = (DcRemover*)(void*)this._dcRemoverBuffer; + this._dcRemoverPtr->Init(1E-06f); + } + + public unsafe void Demodulate(Complex* iq, float* audio, int length) + { + for (int i = 0; i < length; i++) + { + Complex.Conjugate(ref this._tmp, this._iqState); + Complex.Mul(ref this._f, iq[i], this._tmp); + float num = this._f.Modulus(); + if (num > 0f) + { + Complex.Div(ref this._f, num); + } + float num2 = this._f.Argument(); + audio[i] = num2 * 1E-05f; + this._iqState = iq[i]; + } + if (this._mode == FmMode.Narrow) + { + this.ProcessSquelch(audio, length); + for (int j = 0; j < length; j++) + { + audio[j] *= 0.5f; + } + } + } + + private unsafe void ProcessSquelch(float* audio, int length) + { + if (this._squelchThreshold > 0) + { + if (this._hissBuffer == null || this._hissBuffer.Length != length) + { + this._hissBuffer = UnsafeBuffer.Create(length, 4); + this._hissPtr = (float*)(void*)this._hissBuffer; + } + Utils.Memcpy(this._hissPtr, audio, length * 4); + this._hissFilter.Process(this._hissPtr, length); + for (int i = 0; i < this._hissBuffer.Length; i++) + { + float num = (1f - this._noiseAveragingRatio) * this._noiseLevel + this._noiseAveragingRatio * Math.Abs(this._hissPtr[i]); + if (!float.IsNaN(num)) + { + this._noiseLevel = num; + } + if (this._noiseLevel > this._noiseThreshold) + { + audio[i] = 0f; + } + } + this._isSquelchOpen = (this._noiseLevel < this._noiseThreshold); + } + else + { + this._isSquelchOpen = true; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/FmMode.cs b/SDRSharper.Radio/SDRSharp.Radio/FmMode.cs new file mode 100644 index 0000000..115b00a --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/FmMode.cs @@ -0,0 +1,8 @@ +namespace SDRSharp.Radio +{ + public enum FmMode + { + Narrow, + Wide + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Fourier.cs b/SDRSharper.Radio/SDRSharp.Radio/Fourier.cs new file mode 100644 index 0000000..577849a --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Fourier.cs @@ -0,0 +1,425 @@ +using System; + +namespace SDRSharp.Radio +{ + public static class Fourier + { + private const int MaxLutBits = 16; + + private const int MaxLutBins = 65536; + + private const int LutSize = 32768; + + private const double TwoPi = 6.2831853071795862; + + private static UnsafeBuffer _lrBuffer; + + private unsafe static float* _lr; + + private static UnsafeBuffer _liBuffer; + + private unsafe static float* _li; + + unsafe static Fourier() + { + Fourier._lrBuffer = UnsafeBuffer.Create(32768, 4); + Fourier._liBuffer = UnsafeBuffer.Create(32768, 4); + Fourier._lr = (float*)(void*)Fourier._lrBuffer; + Fourier._li = (float*)(void*)Fourier._liBuffer; + for (int i = 0; i < 32768; i++) + { + Fourier._lr[i] = (float)Math.Cos(9.5873799242852573E-05 * (double)i); + Fourier._li[i] = (float)(0.0 - Math.Sin(9.5873799242852573E-05 * (double)i)); + } + } + + public unsafe static void SpectrumPower(Complex* buffer, float* power, int length, float offset = 0f, bool half = false) + { + for (int i = 0; i < length; i++) + { + float num = buffer[i].Real * buffer[i].Real + buffer[i].Imag * buffer[i].Imag; + float num2 = power[i] = (float)(10.0 * Math.Log10(1E-60 + (double)num)) + offset; + } + } + + public unsafe static void AverageMinimum(float* power, int length, int skip, out float avgMin, out float avgMax) + { + avgMin = 0f; + avgMax = -200f; + if (skip < length / 10) + { + skip = length / 10; + } + int num = (length - 2 * skip) / 8; + if (length >= 1000000) + { + num *= 2; + } + for (int i = skip; i < length - skip; i++) + { + if (power[i] < avgMin) + { + avgMin = ((float)(num - 1) * avgMin + power[i]) / (float)num; + } + } + } + + public unsafe static void ScaleFFT(float* src, byte* dest, int length, float minPower, float maxPower) + { + float num = 255f / (maxPower - minPower); + for (int i = 0; i < length; i++) + { + float num2 = src[i]; + if (num2 < minPower) + { + num2 = minPower; + } + else if (num2 > maxPower) + { + num2 = maxPower; + } + dest[i] = (byte)((num2 - minPower) * num); + } + } + + public unsafe static void SmoothCopy(byte[] source, byte[] destination, int sourceLength, float scale, int offset) + { + fixed (byte* srcPtr = source) + { + fixed (byte* dstPtr = destination) + { + Fourier.SmoothCopy(srcPtr, dstPtr, sourceLength, destination.Length, scale, offset); + } + } + } + + public unsafe static void SmoothCopy(byte* srcPtr, byte* dstPtr, int sourceLength, int destinationLength, float scale, int offset) + { + float num = (float)sourceLength / scale / (float)destinationLength; + if (num > 1f) + { + int num2 = (int)Math.Ceiling((double)num); + for (int i = 0; i < destinationLength; i++) + { + int num3 = (int)((float)i * num - (float)num2 * 0.5f); + byte b = 0; + for (int j = 0; j < num2; j++) + { + int num4 = num3 + j + offset; + if (num4 >= 0 && num4 < sourceLength && b < srcPtr[num4]) + { + b = srcPtr[num4]; + } + } + dstPtr[i] = b; + } + *dstPtr = dstPtr[2]; + } + else + { + for (int k = 0; k < destinationLength; k++) + { + int num5 = (int)(num * (float)k + (float)offset); + if (num5 >= 0 && num5 < sourceLength) + { + dstPtr[k] = srcPtr[num5]; + } + } + } + } + + public unsafe static void SubCopy(float* srcPtr, float* dstPtr, int srcLen, int dstLen, float factor) + { + if ((double)factor > 1.1) + { + for (int i = 0; i < dstLen; i++) + { + int num = (int)((float)i * factor); + if (num >= 0 && num < srcLen) + { + dstPtr[i] = srcPtr[num]; + } + } + } + else if ((double)factor < 0.9) + { + for (int j = 0; j < dstLen; j++) + { + int num2 = (int)(factor * (float)j); + if (num2 >= 0 && num2 < srcLen) + { + dstPtr[j] = srcPtr[num2]; + } + } + } + else + { + Utils.Memcpy(dstPtr, srcPtr, dstLen * 4); + } + } + + public unsafe static void ApplyFFTWindow(Complex* buffer, float* window, int length) + { + for (int i = 0; i < length; i++) + { + buffer[i].Real *= window[i]; + buffer[i].Imag *= window[i]; + } + } + + public unsafe static void ForwardTransform(Complex* buffer, int length, bool swap) + { + Fourier.ForwardTransformOrg(buffer, length); + if (swap) + { + Fourier.SwapLR(buffer, length / 2); + Fourier.SwapLR(buffer + length / 2, length / 2); + } + } + + public unsafe static void ForwardTransformOrg(Complex* buffer, int length) + { + int num = length - 1; + int num2 = length / 2; + int num3 = 0; + for (int num4 = length; num4 > 1; num4 >>= 1) + { + num3++; + } + int num5 = num2; + for (int num4 = 1; num4 < num; num4++) + { + if (num4 < num5) + { + float real = buffer[num5].Real; + float imag = buffer[num5].Imag; + buffer[num5].Real = buffer[num4].Real; + buffer[num5].Imag = buffer[num4].Imag; + buffer[num4].Real = real; + buffer[num4].Imag = imag; + } + int num6; + for (num6 = num2; num6 <= num5; num6 /= 2) + { + num5 -= num6; + } + num5 += num6; + } + for (int i = 1; i <= num3; i++) + { + int num7 = 1 << i; + int num8 = num7 / 2; + double num9 = 1.0; + double num10 = 0.0; + double num11 = Math.Cos(3.1415926535897931 / (double)num8); + double num12 = 0.0 - Math.Sin(3.1415926535897931 / (double)num8); + for (num5 = 1; num5 <= num8; num5++) + { + int num13 = num5 - 1; + float num14 = (float)num9; + float num15 = (float)num10; + for (int num4 = num13; num4 <= num; num4 += num7) + { + int num16 = num4 + num8; + float real = buffer[num16].Real * num14 - buffer[num16].Imag * num15; + float imag = buffer[num16].Real * num15 + buffer[num16].Imag * num14; + buffer[num16].Real = buffer[num4].Real - real; + buffer[num16].Imag = buffer[num4].Imag - imag; + buffer[num4].Real += real; + buffer[num4].Imag += imag; + } + double num17 = num9; + num9 = num17 * num11 - num10 * num12; + num10 = num17 * num12 + num10 * num11; + } + } + } + + public unsafe static void ForwardTransformOrgOrg(Complex* buffer, int length) + { + int num = length - 1; + int num2 = length / 2; + int num3 = 0; + for (int num4 = length; num4 > 1; num4 >>= 1) + { + num3++; + } + int num5 = num2; + for (int num4 = 1; num4 < num; num4++) + { + if (num4 < num5) + { + float real = buffer[num5].Real; + float imag = buffer[num5].Imag; + buffer[num5].Real = buffer[num4].Real; + buffer[num5].Imag = buffer[num4].Imag; + buffer[num4].Real = real; + buffer[num4].Imag = imag; + } + int num6; + for (num6 = num2; num6 <= num5; num6 /= 2) + { + num5 -= num6; + } + num5 += num6; + } + for (int i = 1; i <= num3; i++) + { + int num7 = 1 << i; + int num8 = num7 / 2; + float num9 = 1f; + float num10 = 0f; + float num11 = (float)Math.Cos(3.1415926535897931 / (double)num8); + float num12 = (float)(0.0 - Math.Sin(3.1415926535897931 / (double)num8)); + for (num5 = 1; num5 <= num8; num5++) + { + int num13 = num5 - 1; + float real; + for (int num4 = num13; num4 <= num; num4 += num7) + { + int num14 = num4 + num8; + real = buffer[num14].Real * num9 - buffer[num14].Imag * num10; + float imag = buffer[num14].Real * num10 + buffer[num14].Imag * num9; + buffer[num14].Real = buffer[num4].Real - real; + buffer[num14].Imag = buffer[num4].Imag - imag; + buffer[num4].Real += real; + buffer[num4].Imag += imag; + } + real = num9; + num9 = real * num11 - num10 * num12; + num10 = real * num12 + num10 * num11; + } + } + } + + public unsafe static void ForwardTransformLut(Complex* buffer, int length) + { + int num = length - 1; + int num2 = length / 2; + Complex complex = default(Complex); + complex.Real = 0f; + complex.Imag = 0f; + Complex c = default(Complex); + c.Real = 0f; + c.Imag = 0f; + int num3 = 0; + for (int num4 = length; num4 > 1; num4 >>= 1) + { + num3++; + } + int num5 = num2; + for (int num4 = 1; num4 < num; num4++) + { + if (num4 < num5) + { + complex = buffer[num5]; + buffer[num5] = buffer[num4]; + buffer[num4] = complex; + } + int num6; + for (num6 = num2; num6 <= num5; num6 /= 2) + { + num5 -= num6; + } + num5 += num6; + } + for (int i = 1; i <= num3; i++) + { + int num7 = 1 << i; + int num8 = num7 / 2; + int num9 = 16 - i; + for (num5 = 1; num5 <= num8; num5++) + { + int num10 = num5 - 1; + int num11 = num10 << num9; + c.Real = Fourier._lr[num11]; + c.Imag = Fourier._li[num11]; + for (int num4 = num10; num4 <= num; num4 += num7) + { + num11 = num4 + num8; + Complex.Mul(ref complex, c, buffer[num11]); + Complex.Sub(ref buffer[num11], buffer[num4], complex); + Complex.Add(ref buffer[num4], complex); + } + } + } + } + + public unsafe static void ForwardTransformRot(Complex* buffer, int length) + { + int num = length - 1; + int num2 = length / 2; + Complex c = default(Complex); + c.Real = 0f; + c.Imag = 0f; + Complex complex = default(Complex); + complex.Real = 0f; + complex.Imag = 0f; + int num3 = 0; + for (int num4 = length; num4 > 1; num4 >>= 1) + { + num3++; + } + int num5 = num2; + for (int num4 = 1; num4 < num; num4++) + { + if (num4 < num5) + { + complex = buffer[num5]; + buffer[num5] = buffer[num4]; + buffer[num4] = complex; + } + int num6; + for (num6 = num2; num6 <= num5; num6 /= 2) + { + num5 -= num6; + } + num5 += num6; + } + for (int i = 1; i <= num3; i++) + { + int num7 = 1 << i; + int num8 = num7 / 2; + double num9 = 3.1415926535897931 / (double)num8; + for (num5 = 1; num5 <= num8; num5++) + { + int num10 = num5 - 1; + Complex.FromAngle(ref c, num9 * (double)num10); + Complex.Conjugate(ref c); + for (int num4 = num10; num4 <= num; num4 += num7) + { + int num11 = num4 + num8; + Complex.Mul(ref complex, c, buffer[num11]); + Complex.Sub(ref buffer[num11], buffer[num4], complex); + Complex.Add(ref buffer[num4], complex); + } + } + } + } + + public unsafe static void BackwardTransform(Complex* buffer, int length) + { + for (int i = 0; i < length; i++) + { + buffer[i].Imag = 0f - buffer[i].Imag; + } + Fourier.ForwardTransform(buffer, length, false); + float num = 1f / (float)length; + for (int j = 0; j < length; j++) + { + buffer[j].Real *= num; + buffer[j].Imag = (0f - buffer[j].Imag) * num; + } + } + + public unsafe static void SwapLR(Complex* buf, int len) + { + for (int i = 0; i < len / 2; i++) + { + Complex complex = buf[i]; + buf[i] = buf[len - i - 1]; + buf[len - i - 1] = complex; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/FractResampler.cs b/SDRSharper.Radio/SDRSharp.Radio/FractResampler.cs new file mode 100644 index 0000000..cdeed1e --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/FractResampler.cs @@ -0,0 +1,115 @@ +using System; + +namespace SDRSharp.Radio +{ + public class FractResampler + { + private const int SINC_PERIOD_PTS = 10000; + + private const int SINC_PERIODS = 28; + + private const int SINC_LENGTH = 280001; + + private const float MAX_SOUNDCARDVAL = 32767f; + + private UnsafeBuffer _sinc; + + private UnsafeBuffer _workL; + + private UnsafeBuffer _workR; + + private unsafe double* _pSinc; + + private unsafe double* _pWorkL; + + private unsafe double* _pWorkR; + + private double _fTime; + + public unsafe FractResampler() + { + if (this._pSinc == null) + { + this._sinc = UnsafeBuffer.Create(280001, 8); + this._pSinc = (double*)(void*)this._sinc; + } + for (int i = 0; i < 280001; i++) + { + double num = 0.35875 - 0.48829 * Math.Cos(6.2831853071795862 * (double)i / 280000.0) + 0.14128 * Math.Cos(12.566370614359172 * (double)i / 280000.0) - 0.01168 * Math.Cos(18.849555921538759 * (double)i / 280000.0); + double num2 = 3.1415926535897931 * (double)(i - 140000) / 10000.0; + if (i == 140000) + { + this._pSinc[i] = 1.0; + } + else + { + this._pSinc[i] = (double)(float)(num * Math.Sin(num2) / num2); + } + } + this._fTime = 0.0; + } + + unsafe ~FractResampler() + { + this._pSinc = (this._pWorkL = (this._pWorkR = null)); + } + + public unsafe int Resample(int inLength, double rate, float* pInBuf, float* pOutBuf) + { + if (this._workL == null || this._workL.Length != inLength / 2 + 28) + { + if (this._workL != null) + { + this._workL.Dispose(); + } + this._workL = UnsafeBuffer.Create(inLength / 2 + 28, 8); + this._pWorkL = (double*)(void*)this._workL; + } + if (this._workR == null || this._workR.Length != inLength / 2 + 28) + { + if (this._workR != null) + { + this._workR.Dispose(); + } + this._workR = UnsafeBuffer.Create(inLength / 2 + 28, 8); + this._pWorkR = (double*)(void*)this._workR; + } + int num = (int)this._fTime; + int num2 = 0; + int num3 = 0; + int i; + for (i = 28; i < 28 + inLength / 2; i++) + { + this._pWorkL[i] = (double)pInBuf[num3++]; + this._pWorkR[i] = (double)pInBuf[num3++]; + } + while (num < inLength / 2) + { + double num6 = 0.0; + double num7 = 0.0; + for (i = 1; i <= 28; i++) + { + num3 = num + i; + int num8 = (int)(((double)num3 - this._fTime) * 10000.0); + num6 += this._pWorkL[num3] * this._pSinc[num8]; + num7 += this._pWorkR[num3] * this._pSinc[num8]; + } + pOutBuf[num2++] = (float)num6; + pOutBuf[num2++] = (float)num7; + this._fTime += rate; + num = (int)this._fTime; + } + this._fTime -= (double)inLength / 2.0; + num3 = inLength / 2; + i = 0; + while (i < 28) + { + this._pWorkL[i] = this._pWorkL[num3]; + this._pWorkR[i] = this._pWorkR[num3]; + i++; + num3++; + } + return num2; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Hsl.cs b/SDRSharper.Radio/SDRSharp.Radio/Hsl.cs new file mode 100644 index 0000000..c60542e --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Hsl.cs @@ -0,0 +1,18 @@ +namespace SDRSharp.Radio +{ + public class Hsl + { + public float H; + + public float S; + + public float L; + + public Hsl(float h, float s, float l) + { + this.H = h; + this.S = s; + l = this.L; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IBaseProcessor.cs b/SDRSharper.Radio/SDRSharp.Radio/IBaseProcessor.cs new file mode 100644 index 0000000..7614287 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IBaseProcessor.cs @@ -0,0 +1,16 @@ +namespace SDRSharp.Radio +{ + public interface IBaseProcessor + { + double SampleRate + { + set; + } + + bool Enabled + { + get; + set; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IComplexFir.cs b/SDRSharper.Radio/SDRSharp.Radio/IComplexFir.cs new file mode 100644 index 0000000..19dd5c3 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IComplexFir.cs @@ -0,0 +1,7 @@ +namespace SDRSharp.Radio +{ + public interface IComplexFir + { + unsafe void Process(Complex* buffer, int length); + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IFilter.cs b/SDRSharper.Radio/SDRSharp.Radio/IFilter.cs new file mode 100644 index 0000000..120c8a3 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IFilter.cs @@ -0,0 +1,9 @@ +namespace SDRSharp.Radio +{ + public interface IFilter + { + unsafe void Process(float* buffer, int length); + + unsafe void ProcessInterleaved(float* buffer, int length); + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IFrontendController.cs b/SDRSharper.Radio/SDRSharp.Radio/IFrontendController.cs new file mode 100644 index 0000000..bd67725 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IFrontendController.cs @@ -0,0 +1,40 @@ +using System.Windows.Forms; + +namespace SDRSharp.Radio +{ + public interface IFrontendController + { + bool IsSoundCardBased + { + get; + } + + string SoundCardHint + { + get; + } + + double Samplerate + { + get; + } + + long Frequency + { + get; + set; + } + + void Open(); + + void Start(SamplesAvailableDelegate callback); + + void Stop(); + + void Close(); + + void ShowSettingGUI(IWin32Window parent); + + void HideSettingGUI(); + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IIQProcessor.cs b/SDRSharper.Radio/SDRSharp.Radio/IIQProcessor.cs new file mode 100644 index 0000000..750d0de --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IIQProcessor.cs @@ -0,0 +1,7 @@ +namespace SDRSharp.Radio +{ + public interface IIQProcessor : IBaseProcessor + { + unsafe void Process(Complex* buffer, int length); + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IQBalancer.cs b/SDRSharper.Radio/SDRSharp.Radio/IQBalancer.cs new file mode 100644 index 0000000..44a29c0 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IQBalancer.cs @@ -0,0 +1,263 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio +{ + [StructLayout(LayoutKind.Sequential, Pack = 16)] + public class IQBalancer + { + private const int FFTBins = 1024; + + private const float DcTimeConst = 0.0001f; + + private const float BaseIncrement = 0.001f; + + private const float PowerThreshold = 20f; + + private float _dcTimeConst; + + private int _maxAutomaticPasses = Utils.GetIntSetting("automaticIQBalancePasses", 10); + + private bool _autoBalanceIQ; + + private bool _removeDC; + + private float _gain = 1f; + + private float _phase; + + private float _averagePower; + + private float _powerRange; + + private unsafe Complex* _iqPtr; + + private unsafe readonly DcRemover* _dcRemoverI; + + private readonly UnsafeBuffer _dcRemoverIBuffer; + + private unsafe readonly DcRemover* _dcRemoverQ; + + private readonly UnsafeBuffer _dcRemoverQBuffer; + + private readonly bool _isMultithreaded; + + private unsafe readonly float* _windowPtr; + + private readonly UnsafeBuffer _windowBuffer; + + private readonly Random _rng = new Random(); + + private readonly SharpEvent _event = new SharpEvent(false); + + public float Phase => (float)Math.Asin((double)this._phase); + + public float Gain => this._gain; + + public int MaxAutomaticPasses + { + get + { + return this._maxAutomaticPasses; + } + set + { + this._maxAutomaticPasses = value; + } + } + + public bool AutoBalanceIQ + { + get + { + return this._autoBalanceIQ; + } + set + { + this._autoBalanceIQ = value; + } + } + + public unsafe float RemoveDC + { + get + { + return this._dcTimeConst; + } + set + { + this._dcTimeConst = value; + this._dcRemoverI->Init(this._dcTimeConst); + this._dcRemoverQ->Init(this._dcTimeConst); + this._removeDC = (this._dcTimeConst != 0f); + } + } + + public unsafe IQBalancer() + { + this._dcTimeConst = 0.0001f; + this._dcRemoverIBuffer = UnsafeBuffer.Create(sizeof(DcRemover)); + this._dcRemoverI = (DcRemover*)(void*)this._dcRemoverIBuffer; + this._dcRemoverI->Init(this._dcTimeConst); + this._dcRemoverQBuffer = UnsafeBuffer.Create(sizeof(DcRemover)); + this._dcRemoverQ = (DcRemover*)(void*)this._dcRemoverQBuffer; + this._dcRemoverQ->Init(this._dcTimeConst); + float[] buffer = FilterBuilder.MakeWindow(WindowType.Hamming, 1024); + this._windowBuffer = UnsafeBuffer.Create(buffer); + this._windowPtr = (float*)(void*)this._windowBuffer; + this._isMultithreaded = (Utils.ProcessorCount > 1); + } + + public unsafe void Reset(float gain, float phase) + { + this._dcRemoverI->Reset(); + this._dcRemoverQ->Reset(); + this._gain = gain; + this._phase = phase; + } + + public unsafe void Process(Complex* iq, int length) + { + if (this._removeDC || this._autoBalanceIQ) + { + this.remDC(iq, length); + } + if (this._autoBalanceIQ && length >= 1024) + { + this._iqPtr = iq; + this.EstimateImbalance(); + } + if (this._gain == 1f && this._phase == 0f) + { + return; + } + IQBalancer.Adjust(iq, length, this._phase, this._gain); + } + + private unsafe void remDC(Complex* iq, int length) + { + float* buffer = (float*)((byte*)iq + 4); + if (this._isMultithreaded) + { + DSPThreadPool.QueueUserWorkItem(delegate + { + this._dcRemoverI->ProcessInterleaved((float*)iq, length); + this._event.Set(); + }); + } + else + { + this._dcRemoverI->ProcessInterleaved((float*)iq, length); + } + this._dcRemoverQ->ProcessInterleaved(buffer, length); + if (this._isMultithreaded) + { + this._event.WaitOne(); + } + } + + private void EstimateImbalance() + { + this.EstimatePower(); + if (!(this._powerRange < 20f)) + { + float num = this.Utility(this._phase, this._gain); + for (int i = 0; i < this._maxAutomaticPasses; i++) + { + float num2 = 0.001f * this.GetRandomDirection(); + float num3 = 0.001f * this.GetRandomDirection(); + float phase = this._phase + num2; + float gain = this._gain + num3; + float num4 = this.Utility(phase, gain); + if (num4 > num) + { + num = num4; + this._gain = gain; + this._phase = phase; + } + } + } + } + + private float GetRandomDirection() + { + if (!(this._rng.NextDouble() > 0.5)) + { + return -1f; + } + return 1f; + } + + private unsafe float Utility(float phase, float gain) + { + byte* ptr = stackalloc byte[(int)(uint)(1024 * sizeof(Complex) + 16)]; + Complex* ptr2 = (Complex*)((long)ptr + 15 & -16); + byte* ptr3 = stackalloc byte[4112]; + float* ptr4 = (float*)((long)ptr3 + 15 & -16); + Utils.Memcpy(ptr2, this._iqPtr, 1024 * sizeof(Complex)); + IQBalancer.Adjust(ptr2, 1024, phase, gain); + Fourier.ApplyFFTWindow(ptr2, this._windowPtr, 1024); + Fourier.ForwardTransform(ptr2, 1024, true); + Fourier.SpectrumPower(ptr2, ptr4, 1024, 0f, false); + float num = 0f; + for (int i = 0; i < 512; i++) + { + int num2 = 512 - i; + if ((float)num2 > 25.6f && (float)num2 < 486.4f) + { + int num3 = 1022 - i; + if (ptr4[i] - this._averagePower > 20f || ptr4[num3] - this._averagePower > 20f) + { + float num4 = ptr4[i] - ptr4[num3]; + num += num4 * num4; + } + } + } + return num; + } + + private unsafe void EstimatePower() + { + byte* ptr = stackalloc byte[(int)(uint)(1024 * sizeof(Complex) + 16)]; + Complex* ptr2 = (Complex*)((long)ptr + 15 & -16); + byte* ptr3 = stackalloc byte[4112]; + float* ptr4 = (float*)((long)ptr3 + 15 & -16); + Utils.Memcpy(ptr2, this._iqPtr, 1024 * sizeof(Complex)); + Fourier.ApplyFFTWindow(ptr2, this._windowPtr, 1024); + Fourier.ForwardTransform(ptr2, 1024, true); + Fourier.SpectrumPower(ptr2, ptr4, 1024, 0f, false); + float num = float.NegativeInfinity; + float num2 = 0f; + int num3 = 0; + for (int i = 0; i < 512; i++) + { + int num4 = 512 - i; + if ((float)num4 > 25.6f && (float)num4 < 486.4f) + { + int num5 = 1022 - i; + if (ptr4[i] > num) + { + num = ptr4[i]; + } + if (ptr4[num5] > num) + { + num = ptr4[num5]; + } + num2 += ptr4[i] + ptr4[num5]; + num3 += 2; + } + } + num2 /= (float)num3; + this._powerRange = num - num2; + this._averagePower = num2; + } + + private unsafe static void Adjust(Complex* buffer, int length, float phase, float gain) + { + for (int i = 0; i < length; i++) + { + buffer[i].Real = buffer[i].Real * gain + phase * buffer[i].Imag; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IQDecimator.cs b/SDRSharper.Radio/SDRSharp.Radio/IQDecimator.cs new file mode 100644 index 0000000..d573e9c --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IQDecimator.cs @@ -0,0 +1,56 @@ +namespace SDRSharp.Radio +{ + public sealed class IQDecimator + { + private readonly bool _isMultithreaded; + + private readonly FloatDecimator _rDecimator; + + private readonly FloatDecimator _iDecimator; + + private readonly SharpEvent _event = new SharpEvent(false); + + public int StageCount => this._rDecimator.StageCount; + + public IQDecimator(int stageCount, double samplerate, bool useFastFilters, bool isMultithreaded) + { + this._isMultithreaded = (Utils.ProcessorCount > 1); + int threadCount = (!this._isMultithreaded) ? 1 : (Utils.ProcessorCount / 2); + DecimationFilterType filterType = (!useFastFilters) ? DecimationFilterType.Baseband : DecimationFilterType.Fast; + this._rDecimator = new FloatDecimator(stageCount, samplerate, filterType, threadCount); + this._iDecimator = new FloatDecimator(stageCount, samplerate, filterType, threadCount); + } + + public IQDecimator(int stageCount, double samplerate, bool useFastFilters) + : this(stageCount, samplerate, useFastFilters, false) + { + } + + public IQDecimator(int stageCount, double samplerate) + : this(stageCount, samplerate, false) + { + } + + public unsafe void Process(Complex* buffer, int length) + { + float* buffer2 = (float*)((byte*)buffer + 4); + if (this._isMultithreaded) + { + DSPThreadPool.QueueUserWorkItem(delegate + { + this._rDecimator.ProcessInterleaved((float*)buffer, length); + this._event.Set(); + }); + } + else + { + this._rDecimator.ProcessInterleaved((float*)buffer, length); + } + this._iDecimator.ProcessInterleaved(buffer2, length); + if (this._isMultithreaded) + { + this._event.WaitOne(); + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IQFirFilter.cs b/SDRSharper.Radio/SDRSharp.Radio/IQFirFilter.cs new file mode 100644 index 0000000..1419fc7 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IQFirFilter.cs @@ -0,0 +1,70 @@ +using System; + +namespace SDRSharp.Radio +{ + public sealed class IQFirFilter + { + private readonly bool _isMultiThteaded; + + private readonly FirFilter _rFilter; + + private readonly FirFilter _iFilter; + + private readonly SharpEvent _event; + + public IQFirFilter(float[] coefficients) + : this(coefficients, false, 1) + { + } + + public IQFirFilter(float[] coefficients, bool isMultiThteaded, int decimationFactor) + { + this._rFilter = new FirFilter(coefficients, decimationFactor); + this._iFilter = new FirFilter(coefficients, decimationFactor); + this._isMultiThteaded = isMultiThteaded; + if (this._isMultiThteaded) + { + this._event = new SharpEvent(false); + } + } + + ~IQFirFilter() + { + this.Dispose(); + } + + public void Dispose() + { + this._rFilter.Dispose(); + this._iFilter.Dispose(); + GC.SuppressFinalize(this); + } + + public unsafe void Process(Complex* iq, int length) + { + if (this._isMultiThteaded) + { + DSPThreadPool.QueueUserWorkItem(delegate + { + this._rFilter.ProcessInterleaved((float*)iq, length); + this._event.Set(); + }); + } + else + { + this._rFilter.ProcessInterleaved((float*)iq, length); + } + this._iFilter.ProcessInterleaved((float*)((byte*)iq + 4), length); + if (this._isMultiThteaded) + { + this._event.WaitOne(); + } + } + + public void SetCoefficients(float[] coefficients) + { + this._rFilter.SetCoefficients(coefficients); + this._iFilter.SetCoefficients(coefficients); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IRealProcessor.cs b/SDRSharper.Radio/SDRSharp.Radio/IRealProcessor.cs new file mode 100644 index 0000000..80e6e87 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IRealProcessor.cs @@ -0,0 +1,7 @@ +namespace SDRSharp.Radio +{ + public interface IRealProcessor : IBaseProcessor + { + unsafe void Process(float* buffer, int length); + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IirFilter.cs b/SDRSharper.Radio/SDRSharp.Radio/IirFilter.cs new file mode 100644 index 0000000..fb90b1d --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IirFilter.cs @@ -0,0 +1,114 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio +{ + [StructLayout(LayoutKind.Sequential, Pack = 16)] + public struct IirFilter + { + private float _a0; + + private float _a1; + + private float _a2; + + private float _b0; + + private float _b1; + + private float _b2; + + private float _x1; + + private float _x2; + + private float _y1; + + private float _y2; + + public void Init(IirFilterType filterType, double frequency, double sampleRate, int qualityFactor) + { + double num = 6.2831853071795862 * frequency / sampleRate; + double num2 = Math.Sin(num) / (2.0 * (double)qualityFactor); + switch (filterType) + { + case IirFilterType.LowPass: + this._b0 = (float)((1.0 - Math.Cos(num)) / 2.0); + this._b1 = (float)(1.0 - Math.Cos(num)); + this._b2 = (float)((1.0 - Math.Cos(num)) / 2.0); + this._a0 = (float)(1.0 + num2); + this._a1 = (float)(-2.0 * Math.Cos(num)); + this._a2 = (float)(1.0 - num2); + break; + case IirFilterType.HighPass: + this._b0 = (float)((1.0 + Math.Cos(num)) / 2.0); + this._b1 = (float)(0.0 - (1.0 + Math.Cos(num))); + this._b2 = (float)((1.0 + Math.Cos(num)) / 2.0); + this._a0 = (float)(1.0 + num2); + this._a1 = (float)(-2.0 * Math.Cos(num)); + this._a2 = (float)(1.0 - num2); + break; + default: + this._b0 = (float)num2; + this._b1 = 0f; + this._b2 = (float)(0.0 - num2); + this._a0 = (float)(1.0 + num2); + this._a1 = (float)(-2.0 * Math.Cos(num)); + this._a2 = (float)(1.0 - num2); + break; + case IirFilterType.Notch: + this._b0 = 1f; + this._b1 = (float)(-2.0 * Math.Cos(num)); + this._b2 = 1f; + this._a0 = (float)(1.0 + num2); + this._a1 = (float)(-2.0 * Math.Cos(num)); + this._a2 = (float)(1.0 - num2); + break; + } + this._b0 /= this._a0; + this._b1 /= this._a0; + this._b2 /= this._a0; + this._a1 /= this._a0; + this._a2 /= this._a0; + this._x1 = 0f; + this._x2 = 0f; + this._y1 = 0f; + this._y2 = 0f; + } + + public void Reset() + { + this._x1 = 0f; + this._x2 = 0f; + this._y1 = 0f; + this._y2 = 0f; + } + + public float Process(float sample) + { + float num = this._b0 * sample + this._b1 * this._x1 + this._b2 * this._x2 - this._a1 * this._y1 - this._a2 * this._y2; + this._x2 = this._x1; + this._x1 = sample; + this._y2 = this._y1; + this._y1 = num; + return num; + } + + public unsafe void Process(float* buffer, int length) + { + for (int i = 0; i < length; i++) + { + buffer[i] = this.Process(buffer[i]); + } + } + + public unsafe void ProcessInterleaved(float* buffer, int length) + { + length *= 2; + for (int i = 0; i < length; i += 2) + { + buffer[i] = this.Process(buffer[i]); + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/IirFilterType.cs b/SDRSharper.Radio/SDRSharp.Radio/IirFilterType.cs new file mode 100644 index 0000000..de3860b --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/IirFilterType.cs @@ -0,0 +1,10 @@ +namespace SDRSharp.Radio +{ + public enum IirFilterType + { + LowPass, + HighPass, + BandPass, + Notch + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/InputType.cs b/SDRSharper.Radio/SDRSharp.Radio/InputType.cs new file mode 100644 index 0000000..45d0955 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/InputType.cs @@ -0,0 +1,9 @@ +namespace SDRSharp.Radio +{ + public enum InputType + { + SoundCard, + Plugin, + WaveFile + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Int24.cs b/SDRSharper.Radio/SDRSharp.Radio/Int24.cs new file mode 100644 index 0000000..35e7d43 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Int24.cs @@ -0,0 +1,16 @@ +namespace SDRSharp.Radio +{ + public struct Int24 + { + public byte C; + + public byte B; + + public sbyte A; + + public static implicit operator float(Int24 i) + { + return (float)((i.C << 8 | i.B << 16 | i.A << 24) >> 8); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Limiter.cs b/SDRSharper.Radio/SDRSharp.Radio/Limiter.cs new file mode 100644 index 0000000..f706785 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Limiter.cs @@ -0,0 +1,45 @@ +using System; + +namespace SDRSharp.Radio +{ + public class Limiter + { + private double _treshold; + + private double _ratio; + + public int Treshold + { + set + { + this._treshold = Math.Pow(10.0, (double)value / 20.0); + } + } + + public double Ratio + { + set + { + this._ratio = Math.Pow(10.0, -1.0 + value / 50.0); + } + } + + public unsafe void process(float* buffer, int length) + { + for (int i = 0; i < length; i++) + { + float num = Math.Abs(buffer[i]); + double num2 = this._treshold * this._ratio; + float num3 = (!((double)num > this._treshold)) ? num : ((float)(this._treshold + num2 * (1.0 - Math.Exp((0.0 - ((double)num - this._treshold)) / num2)))); + if (buffer[i] > 0f) + { + buffer[i] = num3; + } + else + { + buffer[i] = 0f - num3; + } + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Oscillator.cs b/SDRSharper.Radio/SDRSharp.Radio/Oscillator.cs new file mode 100644 index 0000000..a57251c --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Oscillator.cs @@ -0,0 +1,167 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio +{ + [StructLayout(LayoutKind.Sequential, Pack = 16, Size = 80)] + public struct Oscillator + { + private double _sinOfAnglePerSample; + + private double _cosOfAnglePerSample; + + private double _vectR; + + private double _vectI; + + private double _outR; + + private double _outI; + + private double _sampleRate; + + private double _frequency; + + private double _anglePerSample; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + if (this._sampleRate != value) + { + this._sampleRate = value; + this.Configure(); + } + } + } + + public double Frequency + { + get + { + return this._frequency; + } + set + { + if (this._frequency != value) + { + this._frequency = value; + this.Configure(); + } + } + } + + public double StateReal + { + get + { + return this._vectR; + } + set + { + this._vectR = value; + } + } + + public double StateImag + { + get + { + return this._vectI; + } + set + { + this._vectI = value; + } + } + + public double StateSin + { + get + { + return this._sinOfAnglePerSample; + } + set + { + this._sinOfAnglePerSample = value; + } + } + + public double StateCos + { + get + { + return this._cosOfAnglePerSample; + } + set + { + this._cosOfAnglePerSample = value; + } + } + + public Complex Out => new Complex((float)this._outR, (float)this._outI); + + public float OutR => (float)this._outR; + + public float OutI => (float)this._outI; + + private void Configure() + { + if (this._vectI == 0.0 && this._vectR == 0.0) + { + this._vectR = 1.0; + } + if (this._sampleRate != 0.0) + { + this._anglePerSample = 6.2831853071795862 * this._frequency / this._sampleRate; + this._sinOfAnglePerSample = Math.Sin(this._anglePerSample); + this._cosOfAnglePerSample = Math.Cos(this._anglePerSample); + } + } + + public void Tick() + { + this._outR = this._vectR * this._cosOfAnglePerSample - this._vectI * this._sinOfAnglePerSample; + this._outI = this._vectI * this._cosOfAnglePerSample + this._vectR * this._sinOfAnglePerSample; + double num = 1.95 - (this._vectR * this._vectR + this._vectI * this._vectI); + this._vectR = num * this._outR; + this._vectI = num * this._outI; + } + + public unsafe void Mix(float* buffer, int length) + { + for (int i = 0; i < length; i++) + { + this.Tick(); + buffer[i] *= (float)this._outR; + } + } + + public unsafe void Mix(Complex* buffer, int length) + { + this.Mix(buffer, length, 0, 1); + } + + public unsafe void Mix(Complex* buffer, int length, int startIndex, int stepSize) + { + for (int i = startIndex; i < length; i += stepSize) + { + this.Tick(); + Complex c = default(Complex); + c.Real = (float)this._outR; + c.Imag = (float)this._outI; + Complex.Mul(ref buffer[i], c); + } + } + + public static implicit operator Complex(Oscillator osc) + { + return osc.Out; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Pll.cs b/SDRSharper.Radio/SDRSharp.Radio/Pll.cs new file mode 100644 index 0000000..3e9e2e6 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Pll.cs @@ -0,0 +1,248 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio +{ + [StructLayout(LayoutKind.Sequential, Pack = 16)] + public struct Pll + { + private float _sampleRate; + + private float _phase; + + private float _frequencyRadian; + + private float _minFrequencyRadian; + + private float _maxFrequencyRadian; + + private float _defaultFrequency; + + private float _range; + + private float _bandwidth; + + private float _alpha; + + private float _beta; + + private float _zeta; + + private float _phaseAdj; + + private float _phaseAdjM; + + private float _phaseAdjB; + + private float _lockAlpha; + + private float _lockOneMinusAlpha; + + private float _lockTime; + + private float _phaseErrorAvg; + + private float _adjustedPhase; + + private float _lockThreshold; + + public float AdjustedPhase => this._adjustedPhase; + + public float Phase => this._phase; + + public float SampleRate + { + get + { + return this._sampleRate; + } + set + { + if (this._sampleRate != value) + { + this._sampleRate = value; + this.Configure(); + } + } + } + + public float DefaultFrequency + { + get + { + return this._defaultFrequency; + } + set + { + if (this._defaultFrequency != value) + { + this._defaultFrequency = value; + this.Configure(); + } + } + } + + public float Range + { + get + { + return this._range; + } + set + { + if (this._range != value) + { + this._range = value; + this.Configure(); + } + } + } + + public float Bandwidth + { + get + { + return this._bandwidth; + } + set + { + if (this._bandwidth != value) + { + this._bandwidth = value; + this.Configure(); + } + } + } + + public float LockTime + { + get + { + return this._lockTime; + } + set + { + if (this._lockTime != value) + { + this._lockTime = value; + this.Configure(); + } + } + } + + public float LockThreshold + { + get + { + return this._lockThreshold; + } + set + { + if (this._lockThreshold != value) + { + this._lockThreshold = value; + this.Configure(); + } + } + } + + public float Zeta + { + get + { + return this._zeta; + } + set + { + if (this._zeta != value) + { + this._zeta = value; + this.Configure(); + } + } + } + + public float PhaseAdjM + { + get + { + return this._phaseAdjM; + } + set + { + if (this._phaseAdjM != value) + { + this._phaseAdjM = value; + this.Configure(); + } + } + } + + public float PhaseAdjB + { + get + { + return this._phaseAdjB; + } + set + { + if (this._phaseAdjB != value) + { + this._phaseAdjB = value; + this.Configure(); + } + } + } + + public bool IsLocked => this._phaseErrorAvg < this._lockThreshold; + + private void Configure() + { + this._phase = 0f; + float num = (float)(6.2831853071795862 / (double)this._sampleRate); + this._frequencyRadian = this._defaultFrequency * num; + this._minFrequencyRadian = (this._defaultFrequency - this._range) * num; + this._maxFrequencyRadian = (this._defaultFrequency + this._range) * num; + this._alpha = 2f * this._zeta * this._bandwidth * num; + this._beta = this._alpha * this._alpha / (4f * this._zeta * this._zeta); + this._phaseAdj = this._phaseAdjM * this._sampleRate + this._phaseAdjB; + this._lockAlpha = (float)(1.0 - Math.Exp(-1.0 / (double)(this._sampleRate * this._lockTime))); + this._lockOneMinusAlpha = 1f - this._lockAlpha; + } + + public Complex Process(float sample) + { + Complex result = Trig.SinCos(this._phase); + Complex.Mul(ref result, sample); + float phaseError = 0f - result.FastArgument(); + this.ProcessPhaseError(phaseError); + return result; + } + + public Complex Process(Complex sample) + { + Complex result = Trig.SinCos(this._phase); + Complex.Mul(ref result, sample); + float phaseError = 0f - result.FastArgument(); + this.ProcessPhaseError(phaseError); + return result; + } + + private void ProcessPhaseError(float phaseError) + { + this._frequencyRadian += this._beta * phaseError; + if (this._frequencyRadian > this._maxFrequencyRadian) + { + this._frequencyRadian = this._maxFrequencyRadian; + } + else if (this._frequencyRadian < this._minFrequencyRadian) + { + this._frequencyRadian = this._minFrequencyRadian; + } + this._phaseErrorAvg = this._lockOneMinusAlpha * this._phaseErrorAvg + this._lockAlpha * phaseError * phaseError; + this._phase += this._frequencyRadian + this._alpha * phaseError; + this._phase %= 6.28318548f; + this._adjustedPhase = this._phase + this._phaseAdj; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/PmDetector.cs b/SDRSharper.Radio/SDRSharp.Radio/PmDetector.cs new file mode 100644 index 0000000..3a94a14 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/PmDetector.cs @@ -0,0 +1,111 @@ +namespace SDRSharp.Radio +{ + public sealed class PmDetector + { + private const int PllDefaultFrequency = 57000; + + private float _angState; + + private float _meanAng; + + private float _freqErr; + + private float _avgMin; + + private float _avgMax; + + private float _avgMod; + + private float _old; + + private double _sampleRate; + + public float FreqErr => this._freqErr; + + public double SampleRate + { + set + { + this._sampleRate = value; + } + } + + public unsafe void Demodulate(Complex* iq, float* audio, int length) + { + float num = 3.14159274f; + float num2 = 2f * num; + int num3 = Utils.PhaseGain; + if (this._sampleRate < 8000.0) + { + num3 /= 8; + } + else if (this._sampleRate < 24000.0) + { + num3 /= 4; + } + else if (this._sampleRate < 96000.0) + { + num3 /= 2; + } + for (int i = 0; i < length; i++) + { + float num4 = iq[i].Modulus(); + this._avgMod = (this._avgMod * 999f + num4) / 1000f; + float num5 = iq[i].Argument(); + float num6 = num5 - this._angState; + this._angState = num5; + if (num6 >= num) + { + num6 -= num2; + } + else if (num6 <= 0f - num) + { + num6 += num2; + } + if (num6 < 0f) + { + this._avgMin = (this._avgMin * 99f + num6) / 100f; + if (Utils.ChkAver && num6 < this._avgMin * 2f) + { + num6 = this._avgMin * 2f; + } + } + else + { + this._avgMax = (this._avgMax * 99f + num6) / 100f; + if (Utils.ChkAver && num6 > this._avgMax * 2f) + { + num6 = this._avgMax * 2f; + } + } + if (num4 < this._avgMod / 2f) + { + num6 = this._old; + } + this._old = num6; + this._meanAng = (this._meanAng * (float)(Utils.PhaseAverage - 1) + num6) / (float)Utils.PhaseAverage; + float num7 = this._freqErr = this._meanAng * (float)num3; + audio[i] = this._freqErr * 5E-06f; + } + } + + public unsafe void unwrap(float* ptr, int len) + { + float num = 6.28318548f; + float num2 = 0f; + for (int i = 1; i < len - 1; i++) + { + float num3 = ptr[i] - ptr[i - 1]; + if ((double)num3 > 3.1415926535897931) + { + num2 -= num; + } + else if ((double)num3 <= 3.1415926535897931) + { + num2 += num; + } + ptr[i] += num2; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/ProcessBufferDelegate.cs b/SDRSharper.Radio/SDRSharp.Radio/ProcessBufferDelegate.cs new file mode 100644 index 0000000..6ca9bf6 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/ProcessBufferDelegate.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio +{ + public unsafe delegate int ProcessBufferDelegate(Complex* iqBuffer, float* audioBuffer, int iqlen, int audioLen); +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/ProcessorType.cs b/SDRSharper.Radio/SDRSharp.Radio/ProcessorType.cs new file mode 100644 index 0000000..bc66cd7 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/ProcessorType.cs @@ -0,0 +1,11 @@ +namespace SDRSharp.Radio +{ + public enum ProcessorType + { + RawIQ, + FrequencyTranslatedIQ, + DecimatedAndFilteredIQ, + DemodulatorOutput, + FilteredAudioOutput + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/RdsDecoder.cs b/SDRSharper.Radio/SDRSharp.Radio/RdsDecoder.cs new file mode 100644 index 0000000..a72c05f --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/RdsDecoder.cs @@ -0,0 +1,183 @@ +using System; + +namespace SDRSharp.Radio +{ + public class RdsDecoder + { + private const int PllDefaultFrequency = 57000; + + private const int PllRange = 12; + + private const int PllBandwith = 1; + + private const float PllZeta = 0.707f; + + private const float PllLockTime = 0.5f; + + private const float PllLockThreshold = 3.2f; + + private const float RdsBitRate = 1187.5f; + + private readonly IQFirFilter _baseBandFilter = new IQFirFilter(null, false, 1); + + private readonly FirFilter _matchedFilter = new FirFilter(); + + private readonly RdsDetectorBank _bitDecoder = new RdsDetectorBank(); + + private unsafe readonly Pll* _pll; + + private readonly UnsafeBuffer _pllBuffer; + + private unsafe readonly Oscillator* _osc; + + private readonly UnsafeBuffer _oscBuffer; + + private unsafe readonly IirFilter* _syncFilter; + + private readonly UnsafeBuffer _syncFilterBuffer; + + private UnsafeBuffer _rawBuffer; + + private unsafe Complex* _rawPtr; + + private UnsafeBuffer _magBuffer; + + private unsafe float* _magPtr; + + private UnsafeBuffer _dataBuffer; + + private unsafe float* _dataPtr; + + private IQDecimator _decimator; + + private double _sampleRate; + + private double _demodulationSampleRate; + + private int _decimationFactor; + + private float _lastSync; + + private float _lastData; + + private float _lastSyncSlope; + + private bool _lastBit; + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + if (value != this._sampleRate) + { + this._sampleRate = value; + this.Configure(); + } + } + } + + public string RadioText => this._bitDecoder.RadioText; + + public string ProgramService => this._bitDecoder.ProgramService; + + public ushort PICode => this._bitDecoder.PICode; + + public unsafe RdsDecoder() + { + this._pllBuffer = UnsafeBuffer.Create(sizeof(Pll)); + this._pll = (Pll*)(void*)this._pllBuffer; + this._oscBuffer = UnsafeBuffer.Create(sizeof(Oscillator)); + this._osc = (Oscillator*)(void*)this._oscBuffer; + this._syncFilterBuffer = UnsafeBuffer.Create(sizeof(IirFilter)); + this._syncFilter = (IirFilter*)(void*)this._syncFilterBuffer; + } + + private unsafe void Configure() + { + this._osc->SampleRate = this._sampleRate; + this._osc->Frequency = 57000.0; + int i; + for (i = 0; this._sampleRate >= 20000.0 * Math.Pow(2.0, (double)i); i++) + { + } + this._decimator = new IQDecimator(i, this._sampleRate, true, false); + this._decimationFactor = (int)Math.Pow(2.0, (double)i); + this._demodulationSampleRate = this._sampleRate / (double)this._decimationFactor; + float[] coefficients = FilterBuilder.MakeLowPassKernel(this._demodulationSampleRate, 200, 2500.0, WindowType.BlackmanHarris4); + this._baseBandFilter.SetCoefficients(coefficients); + this._pll->SampleRate = (float)this._demodulationSampleRate; + this._pll->DefaultFrequency = 0f; + this._pll->Range = 12f; + this._pll->Bandwidth = 1f; + this._pll->Zeta = 0.707f; + this._pll->LockTime = 0.5f; + this._pll->LockThreshold = 3.2f; + int length = (int)(this._demodulationSampleRate / 1187.5) | 1; + coefficients = FilterBuilder.MakeSin(this._demodulationSampleRate, 1187.5, length); + this._matchedFilter.SetCoefficients(coefficients); + this._syncFilter->Init(IirFilterType.BandPass, 1187.5, this._demodulationSampleRate, 500); + } + + public unsafe void Reset() + { + this._bitDecoder.Reset(); + this._syncFilter->Reset(); + } + + public unsafe void Process(float* baseBand, int length) + { + if (this._rawBuffer == null || this._rawBuffer.Length != length) + { + this._rawBuffer = UnsafeBuffer.Create(length, sizeof(Complex)); + this._rawPtr = (Complex*)(void*)this._rawBuffer; + } + if (this._magBuffer == null || this._magBuffer.Length != length) + { + this._magBuffer = UnsafeBuffer.Create(length, 4); + this._magPtr = (float*)(void*)this._magBuffer; + } + if (this._dataBuffer == null || this._dataBuffer.Length != length) + { + this._dataBuffer = UnsafeBuffer.Create(length, 4); + this._dataPtr = (float*)(void*)this._dataBuffer; + } + for (int i = 0; i < length; i++) + { + this._osc->Tick(); + Complex.Mul(ref this._rawPtr[i], this._osc->Out, baseBand[i]); + } + this._decimator.Process(this._rawPtr, length); + length /= this._decimationFactor; + this._baseBandFilter.Process(this._rawPtr, length); + for (int j = 0; j < length; j++) + { + this._dataPtr[j] = this._pll->Process(this._rawPtr[j]).Imag; + } + this._matchedFilter.Process(this._dataPtr, length); + for (int k = 0; k < length; k++) + { + this._magPtr[k] = Math.Abs(this._dataPtr[k]); + } + this._syncFilter->Process(this._magPtr, length); + for (int l = 0; l < length; l++) + { + float lastData = this._dataPtr[l]; + float num = this._magPtr[l]; + float num2 = num - this._lastSync; + this._lastSync = num; + if (num2 < 0f && this._lastSyncSlope * num2 < 0f) + { + bool flag = this._lastData > 0f; + this._bitDecoder.Process(flag ^ this._lastBit); + this._lastBit = flag; + } + this._lastData = lastData; + this._lastSyncSlope = num2; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/RdsDetectorBank.cs b/SDRSharper.Radio/SDRSharp.Radio/RdsDetectorBank.cs new file mode 100644 index 0000000..4c72b26 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/RdsDetectorBank.cs @@ -0,0 +1,31 @@ +namespace SDRSharp.Radio +{ + public class RdsDetectorBank + { + private readonly RdsDumpGroups _dumpGroups; + + private readonly SyndromeDetector _detector; + + public string RadioText => this._dumpGroups.RadioText; + + public string ProgramService => this._dumpGroups.ProgramService; + + public ushort PICode => this._dumpGroups.PICode; + + public RdsDetectorBank() + { + this._dumpGroups = new RdsDumpGroups(); + this._detector = new SyndromeDetector(this._dumpGroups); + } + + public void Process(bool b) + { + this._detector.Clock(b); + } + + public void Reset() + { + this._dumpGroups.Reset(); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/RdsDumpGroups.cs b/SDRSharper.Radio/SDRSharp.Radio/RdsDumpGroups.cs new file mode 100644 index 0000000..46de2db --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/RdsDumpGroups.cs @@ -0,0 +1,155 @@ +using System; + +namespace SDRSharp.Radio +{ + public class RdsDumpGroups + { + private char[] _radioTextSBA = new char[72]; + + private char[] _radioTextSBB = new char[72]; + + private char[] _programServiceSB = new char[12]; + + private char[] _chars = new char[4]; + + private string _radioText = string.Empty; + + private string _programService = string.Empty; + + private bool _radioTextABFlag; + + private ushort _piCode; + + public string RadioText => this._radioText; + + public string ProgramService => this._programService; + + public ushort PICode => this._piCode; + + public void Reset() + { + lock (this) + { + for (int i = 0; i < this._radioTextSBA.Length; i++) + { + this._radioTextSBA[i] = ' '; + } + for (int j = 0; j < this._radioTextSBB.Length; j++) + { + this._radioTextSBB[j] = ' '; + } + for (int k = 0; k < this._programServiceSB.Length; k++) + { + this._programServiceSB[k] = ' '; + } + this._radioText = string.Empty; + this._programService = string.Empty; + this._piCode = 0; + this._radioTextABFlag = false; + } + } + + public bool AnalyseFrames(ushort groupA, ushort groupB, ushort groupC, ushort groupD) + { + bool result = false; + if ((groupB & 0xF800) == 16384) + { + string value = RdsDumpGroups.Dump4A(groupB, groupC, groupD); + Console.WriteLine(value); + } + if ((groupB & 0xF800) == 8192) + { + bool flag = (groupB & 0x10) > 0; + int num = (groupB & 0xF) * 4; + this._chars[0] = (char)(groupC >> 8); + this._chars[1] = (char)(groupC & 0xFF); + this._chars[2] = (char)(groupD >> 8); + this._chars[3] = (char)(groupD & 0xFF); + lock (this) + { + if (flag != this._radioTextABFlag) + { + this._radioTextABFlag = flag; + } + for (int i = 0; i < this._chars.Length; i++) + { + if (this._chars[i] >= ' ' && this._chars[i] <= '~') + { + if (!flag) + { + this._radioTextSBA[num + i] = this._chars[i]; + } + else + { + this._radioTextSBB[num + i] = this._chars[i]; + } + } + } + if (!flag) + { + this._radioText = new string(this._radioTextSBA).TrimEnd(); + } + else + { + this._radioText = new string(this._radioTextSBB).TrimEnd(); + } + this._piCode = groupA; + } + result = true; + } + if ((groupB & 0xF800) == 0) + { + int num2 = (groupB & 3) * 2; + this._chars[0] = (char)(groupD >> 8); + this._chars[1] = (char)(groupD & 0xFF); + lock (this) + { + for (int j = 0; j < 2; j++) + { + if (this._chars[j] >= ' ' && this._chars[j] <= '~') + { + this._programServiceSB[num2 + j] = this._chars[j]; + } + } + this._programService = new string(this._programServiceSB).Substring(0, 8); + this._piCode = groupA; + } + result = true; + } + return result; + } + + private static string Dump4A(ushort blockB, ushort block3, ushort block4) + { + int num = block4 & 0x1F; + if ((block4 & 0x20) != 0) + { + num *= -1; + } + int minute = block4 >> 6 & 0x3F; + int hour = (block4 >> 12 & 0xF) | (block3 << 4 & 0x10); + int num2 = block3 >> 1 | (blockB << 15 & 0x18000); + int num3 = (int)(((double)num2 - 15078.2) / 365.25); + int num4 = (int)(((double)num2 - 14956.1 - (double)(int)((double)num3 * 365.25)) / 30.6001); + int day = num2 - 14956 - (int)((double)num3 * 365.25) - (int)((double)num4 * 30.6001); + int num5 = 0; + if (num4 == 14 || num4 == 15) + { + num5 = 1; + } + num3 = num3 + num5 + 1900; + num4 = num4 - 1 - num5 * 12; + try + { + DateTime d = new DateTime(num3, num4, day, hour, minute, 0); + TimeSpan t = new TimeSpan(num / 2, num * 30 % 60, 0); + d += t; + return "4A " + d.ToLongDateString() + " " + d.ToLongTimeString(); + } + catch (Exception ex) + { + return ex.Message; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/SamDetector.cs b/SDRSharper.Radio/SDRSharp.Radio/SamDetector.cs new file mode 100644 index 0000000..6858508 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/SamDetector.cs @@ -0,0 +1,201 @@ +using System; + +namespace SDRSharp.Radio +{ + public sealed class SamDetector + { + private const float ZETA = 0.707f; + + private float TWOPI = 6.28318548f; + + private float _sampleRate = 48000f; + + private float _norm = 1f; + + private float _fDefault; + + private float _bw = 400f; + + private float _range = 500f; + + private float _lockTreshold; + + private float _lockTime; + + private float _phase; + + private float _dcReal; + + private float _dcImag; + + private float _freqN; + + private float _bwN; + + private float _fLowN; + + private float _fhighN; + + private float _alpha; + + private float _beta; + + private float _errorAvg; + + private float _lockAlpha; + + private float _lockOneMinAlpha; + + private CuteFir _cuteFir = new CuteFir(); + + private UnsafeBuffer _cpxBuf; + + private unsafe Complex* _cpxPtr; + + public float SampleRate + { + get + { + return this._sampleRate; + } + set + { + this._sampleRate = value; + this._norm = this.TWOPI / this._sampleRate; + this._cuteFir.InitLPFilter(0, 1.0, 40.0, 4500f, 5500f, this._sampleRate); + this._cuteFir.GenerateHBFilter(5000f); + } + } + + public float Frequency + { + get + { + return (0f - this._freqN) / this._norm; + } + set + { + this._fDefault = value; + this._freqN = this._fDefault * this._norm; + } + } + + public float Range + { + get + { + return this._range; + } + set + { + this._range = value; + this._fLowN = (this._fDefault - this._range) * this._norm; + this._fhighN = (this._fDefault + this._range) * this._norm; + } + } + + public bool IsLocked => this._errorAvg < this._lockTreshold; + + public float LockTreshold + { + set + { + this._lockTreshold = value; + } + } + + public float LockTime + { + set + { + this._lockTime = value; + } + } + + public float BandWidth + { + get + { + return this._bw; + } + set + { + this._bw = value; + this._bwN = this._bw * this._norm; + this._alpha = 0.3f * this._bwN; + this._beta = this._alpha * this._alpha * 0.25f; + this._lockAlpha = (float)(1.0 - Math.Exp(-1.0 / (double)(this._sampleRate * this._lockTime))); + this._lockOneMinAlpha = 1f - this._lockAlpha; + } + } + + public unsafe void Demodulate(Complex* iq, float* audio, int length, bool stereo = false, bool filter = false) + { + for (int i = 0; i < length; i++) + { + float num = (float)Math.Cos((double)this._phase); + float num2 = (float)Math.Sin((double)this._phase); + float num3 = num * iq[i].Real + num2 * iq[i].Imag; + float num4 = (0f - num2) * iq[i].Real + num * iq[i].Imag; + float num5 = (float)Math.Atan2((double)num4, (double)num3); + this._freqN += this._beta * num5; + if (this._freqN < this._fLowN) + { + this.Frequency = this._fLowN; + } + else if (this._freqN > this._fhighN) + { + this.Frequency = this._fhighN; + } + this._phase += this._freqN + this._alpha * num5; + while (this._phase >= this.TWOPI) + { + this._phase -= this.TWOPI; + } + while (this._phase < 0f) + { + this._phase += this.TWOPI; + } + this._dcReal = 0.9999f * this._dcReal + 0.0001f * num3; + this._errorAvg = this._lockOneMinAlpha * this._errorAvg + this._lockAlpha * num5 * num5; + audio[i] = (num3 - this._dcReal) * 0.002f; + } + } + + public unsafe void Demodulate(Complex* iq, float* rPtr, float* lPtr, int length) + { + if (this._cpxBuf == null || this._cpxBuf.Length != length) + { + if (this._cpxBuf != null) + { + this._cpxBuf.Dispose(); + } + this._cpxBuf = UnsafeBuffer.Create(length, sizeof(Complex)); + this._cpxPtr = (Complex*)(void*)this._cpxBuf; + } + for (int i = 0; i < length; i++) + { + float num = (float)Math.Cos((double)this._phase); + float num2 = (float)Math.Sin((double)this._phase); + float num3 = num * iq[i].Real + num2 * iq[i].Imag; + float num4 = (0f - num2) * iq[i].Real + num * iq[i].Imag; + float num5 = (float)Math.Atan2((double)num4, (double)num3); + this._freqN += this._beta * num5; + this._freqN = Math.Max(this._fLowN, Math.Min(this._fhighN, this._freqN)); + this._phase += this._freqN + this._alpha * num5; + this._phase %= this.TWOPI; + this._dcReal = 0.9999f * this._dcReal + 0.0001f * num3; + this._dcImag = 0.9999f * this._dcImag + 0.0001f * num4; + this._cpxPtr[i].Real = num3 - this._dcReal; + this._cpxPtr[i].Imag = num4 - this._dcImag; + } + this._cuteFir.ProcessFilter(length, this._cpxPtr, this._cpxPtr); + for (int j = 0; j < length; j++) + { + Complex complex = this._cpxPtr[j]; + rPtr[j] = (complex.Real - complex.Imag) * 0.002f; + lPtr[j] = (complex.Real + complex.Imag) * 0.002f; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/SamplesAvailableDelegate.cs b/SDRSharper.Radio/SDRSharp.Radio/SamplesAvailableDelegate.cs new file mode 100644 index 0000000..fbf9964 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/SamplesAvailableDelegate.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio +{ + public unsafe delegate void SamplesAvailableDelegate(IFrontendController sender, Complex* data, int len); +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/SharpEvent.cs b/SDRSharper.Radio/SDRSharp.Radio/SharpEvent.cs new file mode 100644 index 0000000..a6a7a27 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/SharpEvent.cs @@ -0,0 +1,73 @@ +using System; +using System.Threading; + +namespace SDRSharp.Radio +{ + public sealed class SharpEvent + { + private bool _state; + + private bool _waiting; + + public SharpEvent(bool initialState) + { + this._state = initialState; + } + + public SharpEvent() + : this(false) + { + } + + ~SharpEvent() + { + this.Dispose(); + } + + public void Dispose() + { + this.Set(); + GC.SuppressFinalize(this); + } + + public void Set() + { + lock (this) + { + this._state = true; + if (this._waiting) + { + Monitor.Pulse(this); + } + } + } + + public void WaitOne() + { + lock (this) + { + if (!this._state) + { + this._waiting = true; + try + { + Monitor.Wait(this); + } + finally + { + this._waiting = false; + } + } + this._state = false; + } + } + + public void Reset() + { + lock (this) + { + this._state = false; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/SharpThreadPool.cs b/SDRSharper.Radio/SDRSharp.Radio/SharpThreadPool.cs new file mode 100644 index 0000000..2b79295 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/SharpThreadPool.cs @@ -0,0 +1,118 @@ +using System; +using System.Collections.Generic; +using System.Threading; + +namespace SDRSharp.Radio +{ + public class SharpThreadPool + { + private struct WorkItem + { + private readonly WaitCallback _callback; + + private readonly object _parameter; + + public WorkItem(WaitCallback callback, object parameter) + { + this._callback = callback; + this._parameter = parameter; + } + + public void Invoke() + { + this._callback(this._parameter); + } + } + + private readonly Queue _jobQueue = new Queue(); + + private readonly Thread[] _workerThreads; + + private int _threadsWaiting; + + private bool _terminated; + + public SharpThreadPool() + : this(Utils.ProcessorCount) + { + } + + public SharpThreadPool(int threadCount) + { + this._workerThreads = new Thread[threadCount]; + for (int i = 0; i < this._workerThreads.Length; i++) + { + this._workerThreads[i] = new Thread(this.DispatchLoop); + this._workerThreads[i].Priority = ThreadPriority.Highest; + this._workerThreads[i].Start(); + } + } + + public void QueueUserWorkItem(WaitCallback callback) + { + this.QueueUserWorkItem(callback, null); + } + + public void QueueUserWorkItem(WaitCallback callback, object parameter) + { + WorkItem item = new WorkItem(callback, parameter); + lock (this._jobQueue) + { + this._jobQueue.Enqueue(item); + if (this._threadsWaiting > 0) + { + Monitor.Pulse(this._jobQueue); + } + } + } + + private void DispatchLoop() + { + Console.WriteLine("Dispatchloop started"); + while (true) + { + WorkItem workItem; + lock (this._jobQueue) + { + if (!this._terminated) + { + while (this._jobQueue.Count == 0) + { + this._threadsWaiting++; + try + { + Monitor.Wait(this._jobQueue); + } + finally + { + this._threadsWaiting--; + } + if (this._terminated) + { + return; + } + } + workItem = this._jobQueue.Dequeue(); + goto end_IL_0017; + } + return; + end_IL_0017:; + } + workItem.Invoke(); + } + } + + public void Dispose() + { + this._terminated = true; + lock (this._jobQueue) + { + Monitor.PulseAll(this._jobQueue); + } + for (int i = 0; i < this._workerThreads.Length; i++) + { + this._workerThreads[i].Join(); + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/SsbDetector.cs b/SDRSharper.Radio/SDRSharp.Radio/SsbDetector.cs new file mode 100644 index 0000000..df9a809 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/SsbDetector.cs @@ -0,0 +1,64 @@ +namespace SDRSharp.Radio +{ + public sealed class SsbDetector + { + public enum Mode + { + LSB, + USB + } + + private Mode _mode; + + private Oscillator _bfo = default(Oscillator); + + public double SampleRate + { + get + { + return this._bfo.SampleRate; + } + set + { + this._bfo.SampleRate = value; + } + } + + public int BfoFrequency + { + get + { + return (int)this._bfo.Frequency; + } + set + { + this._bfo.Frequency = (double)value; + } + } + + public SsbDetector(Mode mode) + { + this._mode = mode; + } + + public unsafe void Demodulate(Complex* iq, float* audio, int length) + { + if (this._mode == Mode.LSB) + { + for (int i = 0; i < length; i++) + { + this._bfo.Tick(); + audio[i] = iq[i].Real * this._bfo.OutI - iq[i].Imag * this._bfo.OutR; + } + } + else + { + for (int j = 0; j < length; j++) + { + this._bfo.Tick(); + audio[j] = iq[j].Real * this._bfo.OutI + iq[j].Imag * this._bfo.OutR; + } + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/StereoDecoder.cs b/SDRSharper.Radio/SDRSharp.Radio/StereoDecoder.cs new file mode 100644 index 0000000..0f326e2 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/StereoDecoder.cs @@ -0,0 +1,270 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio +{ + [StructLayout(LayoutKind.Sequential, Pack = 16)] + public sealed class StereoDecoder + { + private const int DefaultPilotFrequency = 19000; + + private const int PllRange = 20; + + private const int PllBandwith = 10; + + private const float PllThreshold = 1f; + + private const float PllLockTime = 0.5f; + + private const float PllZeta = 0.707f; + + private const float AudioGain = 0.2f; + + private static readonly float _deemphasisTime = (float)Utils.GetDoubleSetting("deemphasisTime", 50.0) * 1E-06f; + + private static readonly float _pllPhaseAdjM = (float)Utils.GetDoubleSetting("pllPhaseAdjM", 0.0); + + private static readonly float _pllPhaseAdjB = (float)Utils.GetDoubleSetting("pllPhaseAdjB", -1.75); + + private readonly bool _isMultiThreaded; + + private readonly SharpEvent _event = new SharpEvent(false); + + private unsafe readonly Pll* _pll; + + private readonly UnsafeBuffer _pllBuffer; + + private unsafe IirFilter* _pilotFilter; + + private UnsafeBuffer _pilotFilterBuffer; + + private UnsafeBuffer _channelABuffer; + + private UnsafeBuffer _channelBBuffer; + + private unsafe float* _channelAPtr; + + private unsafe float* _channelBPtr; + + private FirFilter _channelAFilter; + + private FirFilter _channelBFilter; + + private FloatDecimator _channelADecimator; + + private FloatDecimator _channelBDecimator; + + private double _sampleRate; + + private int _audioDecimationFactor; + + private float _deemphasisAlpha; + + private float _deemphasisAvgL; + + private float _deemphasisAvgR; + + private bool _forceMono; + + private bool _useFilter; + + public bool ForceMono + { + get + { + return this._forceMono; + } + set + { + this._forceMono = value; + } + } + + public bool DoFiltering + { + get + { + return this._useFilter; + } + set + { + this._useFilter = value; + } + } + + public unsafe bool IsPllLocked => this._pll->IsLocked; + + public unsafe StereoDecoder() + { + this._pllBuffer = UnsafeBuffer.Create(sizeof(Pll)); + this._pll = (Pll*)(void*)this._pllBuffer; + this._isMultiThreaded = (Utils.ProcessorCount > 1); + } + + public unsafe void Process(float* baseBand, float* interleavedStereo, int length) + { + if (this._forceMono) + { + this.ProcessMono(baseBand, interleavedStereo, length); + } + else + { + this.ProcessStereo(baseBand, interleavedStereo, length); + } + } + + private unsafe void ProcessMono(float* baseBand, float* interleavedStereo, int length) + { + if (this._channelABuffer == null || this._channelABuffer.Length != length) + { + this._channelABuffer = UnsafeBuffer.Create(length, 4); + this._channelAPtr = (float*)(void*)this._channelABuffer; + } + Utils.Memcpy(this._channelAPtr, baseBand, length * 4); + this._channelADecimator.Process(this._channelAPtr, length); + length /= this._audioDecimationFactor; + if (this._useFilter) + { + this._channelAFilter.Process(this._channelAPtr, length); + } + if (this._useFilter) + { + for (int i = 0; i < length; i++) + { + this._deemphasisAvgL += this._deemphasisAlpha * (this._channelAPtr[i] - this._deemphasisAvgL); + this._channelAPtr[i] = this._deemphasisAvgL; + } + } + for (int j = 0; j < length; j++) + { + interleavedStereo[j * 2 + 1] = (interleavedStereo[j * 2] = this._channelAPtr[j] * 0.2f); + } + } + + private unsafe void ProcessStereo(float* baseBand, float* interleavedStereo, int length) + { + if (this._channelABuffer == null || this._channelABuffer.Length != length) + { + this._channelABuffer = UnsafeBuffer.Create(length, 4); + this._channelAPtr = (float*)(void*)this._channelABuffer; + } + if (this._channelBBuffer == null || this._channelBBuffer.Length != length) + { + this._channelBBuffer = UnsafeBuffer.Create(length, 4); + this._channelBPtr = (float*)(void*)this._channelBBuffer; + } + int audioLength = length / this._audioDecimationFactor; + if (this._isMultiThreaded) + { + DSPThreadPool.QueueUserWorkItem(delegate + { + Utils.Memcpy(this._channelAPtr, baseBand, length * 4); + this._channelADecimator.Process(this._channelAPtr, length); + if (this._useFilter) + { + this._channelAFilter.Process(this._channelAPtr, audioLength); + } + this._event.Set(); + }); + } + else + { + Utils.Memcpy(this._channelAPtr, baseBand, length * 4); + this._channelADecimator.Process(this._channelAPtr, length); + if (this._useFilter) + { + this._channelAFilter.Process(this._channelAPtr, audioLength); + } + } + for (int i = 0; i < length; i++) + { + float sample = this._pilotFilter->Process(baseBand[i]); + this._pll->Process(sample); + this._channelBPtr[i] = baseBand[i] * Trig.Sin((float)((double)this._pll->AdjustedPhase * 2.0)); + } + if (!this._pll->IsLocked) + { + if (this._isMultiThreaded) + { + this._event.WaitOne(); + } + if (this._useFilter) + { + for (int j = 0; j < audioLength; j++) + { + this._deemphasisAvgL += this._deemphasisAlpha * (this._channelAPtr[j] - this._deemphasisAvgL); + this._channelAPtr[j] = this._deemphasisAvgL; + } + } + for (int k = 0; k < audioLength; k++) + { + interleavedStereo[k * 2 + 1] = (interleavedStereo[k * 2] = this._channelAPtr[k] * 0.2f); + } + } + else + { + this._channelBDecimator.Process(this._channelBPtr, length); + if (this._useFilter) + { + this._channelBFilter.Process(this._channelBPtr, audioLength); + } + if (this._isMultiThreaded) + { + this._event.WaitOne(); + } + for (int l = 0; l < audioLength; l++) + { + float num = this._channelAPtr[l]; + float num2 = 2f * this._channelBPtr[l]; + interleavedStereo[l * 2] = (num + num2) * 0.2f; + interleavedStereo[l * 2 + 1] = (num - num2) * 0.2f; + } + if (this._useFilter) + { + for (int m = 0; m < audioLength; m++) + { + this._deemphasisAvgL += this._deemphasisAlpha * (interleavedStereo[m * 2] - this._deemphasisAvgL); + interleavedStereo[m * 2] = this._deemphasisAvgL; + this._deemphasisAvgR += this._deemphasisAlpha * (interleavedStereo[m * 2 + 1] - this._deemphasisAvgR); + interleavedStereo[m * 2 + 1] = this._deemphasisAvgR; + } + } + } + } + + public unsafe void Configure(double sampleRate, int decimationStageCount) + { + int num = (int)Math.Pow(2.0, (double)decimationStageCount); + if (this._sampleRate != sampleRate || this._audioDecimationFactor != num) + { + this._sampleRate = sampleRate; + this._pilotFilterBuffer = UnsafeBuffer.Create(sizeof(IirFilter)); + this._pilotFilter = (IirFilter*)(void*)this._pilotFilterBuffer; + this._pilotFilter->Init(IirFilterType.BandPass, 19000.0, this._sampleRate, 500); + this._pll->SampleRate = (float)this._sampleRate; + this._pll->DefaultFrequency = 19000f; + this._pll->Range = 20f; + this._pll->Bandwidth = 10f; + this._pll->Zeta = 0.707f; + this._pll->PhaseAdjM = StereoDecoder._pllPhaseAdjM; + this._pll->PhaseAdjB = StereoDecoder._pllPhaseAdjB; + this._pll->LockTime = 0.5f; + this._pll->LockThreshold = 1f; + double num2 = sampleRate / (double)num; + float[] coefficients = FilterBuilder.MakeBandPassKernel(num2, 250, 20.0, 16000.0, WindowType.BlackmanHarris4); + this._channelAFilter = new FirFilter(coefficients, 1); + this._channelBFilter = new FirFilter(coefficients, 1); + this._deemphasisAlpha = (float)(1.0 - Math.Exp(-1.0 / (num2 * (double)StereoDecoder._deemphasisTime))); + this._deemphasisAvgL = 0f; + this._deemphasisAvgR = 0f; + } + if (this._channelADecimator != null && this._channelBDecimator != null && this._audioDecimationFactor == num) + { + return; + } + this._channelADecimator = new FloatDecimator(decimationStageCount); + this._channelBDecimator = new FloatDecimator(decimationStageCount); + this._audioDecimationFactor = num; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/StreamControl.cs b/SDRSharper.Radio/SDRSharp.Radio/StreamControl.cs new file mode 100644 index 0000000..d59424a --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/StreamControl.cs @@ -0,0 +1,641 @@ +using SDRSharp.Radio.PortAudio; +using System; +using System.IO; +using System.Threading; + +namespace SDRSharp.Radio +{ + public sealed class StreamControl : IDisposable + { + private const int WaveBufferSize = 65536; + + private const int MaxDecimationFactor = 1024; + + private static readonly int _processorCount = Utils.ProcessorCount; + + private int _minOutputSampleRate = Utils.GetIntSetting("minOutputSampleRate", 18000); + + private unsafe float* _dspOutPtr; + + private UnsafeBuffer _dspOutBuffer; + + private unsafe Complex* _iqInPtr; + + private UnsafeBuffer _iqInBuffer; + + private unsafe Complex* _dspInPtr; + + private UnsafeBuffer _dspInBuffer; + + private WavePlayer _wavePlayer; + + private WaveRecorder _waveRecorder; + + private WaveDuplex _waveDuplex; + + private WaveFile _waveFile; + + private string _fileName; + + private ComplexFifoStream _iqStream; + + private FloatFifoStream _audioStream; + + private Thread _waveReadThread; + + private Thread _dspThread; + + private DateTime _waveStart; + + private float _audioGain; + + private float _outputGain; + + private int _inputDevice; + + private double _inputSampleRate; + + private int _inputBufferSize; + + private int _bufferSizeInMs; + + private int _outputDevice; + + private double _outputSampleRate; + + private int _outputBufferSize; + + private double _soundCardRatio = 1.0; + + private int _decimationStageCount; + + private bool _swapIQ; + + private bool _useASIO; + + private InputType _inputType; + + private IFrontendController _frontend; + + private bool _isBuffering; + + private float _clipLevel; + + public DateTime WaveStart + { + get + { + return this._waveStart; + } + set + { + this._waveStart = value; + } + } + + public string FileName => this._fileName; + + public WaveFile WaveFile => this._waveFile; + + public int MinOutputSampleRate + { + get + { + return this._minOutputSampleRate; + } + set + { + this._minOutputSampleRate = value; + } + } + + public double SoundCardRatio => this._soundCardRatio; + + public int AudioStreamSize + { + get + { + if (this._audioStream == null) + { + return 0; + } + return this._audioStream.Length; + } + } + + public float AudioGain + { + get + { + return this._audioGain; + } + set + { + this._audioGain = value; + this._outputGain = (float)Math.Pow((double)value / 10.0, 10.0); + this._outputGain = (float)Math.Pow(10.0, (double)value / 10.0); + } + } + + public bool SwapIQ + { + get + { + return this._swapIQ; + } + set + { + this._swapIQ = value; + } + } + + public bool UseASIO + { + get + { + return this._useASIO; + } + set + { + this._useASIO = value; + } + } + + public double SampleRate => this._inputSampleRate; + + public bool IsPlaying => this._inputSampleRate != 0.0; + + public bool IsBuffering + { + get + { + return this._isBuffering; + } + set + { + this._isBuffering = false; + } + } + + public int BufferSize => this._inputBufferSize; + + public int BufferSizeInMs => this._bufferSizeInMs; + + public int DecimationStageCount => this._decimationStageCount; + + public InputType InputType => this._inputType; + + public float ClipLevel => this._clipLevel; + + public event ProcessBufferDelegate ProcessBufferPtr; + + public StreamControl() + { + this.AudioGain = 0f; + } + + ~StreamControl() + { + this.Dispose(); + } + + public void Dispose() + { + this.Stop(); + GC.SuppressFinalize(this); + } + + private unsafe void DuplexFiller(float* buffer, int frameCount) + { + if (this._dspInBuffer == null || this._dspInBuffer.Length != frameCount) + { + this._dspInBuffer = UnsafeBuffer.Create(frameCount, sizeof(Complex)); + this._dspInPtr = (Complex*)(void*)this._dspInBuffer; + } + if (this._dspOutBuffer == null || this._dspOutBuffer.Length != this._dspInBuffer.Length * 2) + { + this._dspOutBuffer = UnsafeBuffer.Create(this._dspInBuffer.Length * 2, 4); + this._dspOutPtr = (float*)(void*)this._dspOutBuffer; + } + Utils.Memcpy(this._dspInPtr, buffer, frameCount * sizeof(Complex)); + this.ProcessBuffer(); + this.ScaleBuffer(this._dspOutPtr, this._dspOutBuffer.Length); + Utils.Memcpy(buffer, this._dspOutPtr, this._dspOutBuffer.Length * 4); + } + + private unsafe void PlayerFiller(float* buffer, int frameCount) + { + int num = frameCount * 2; + int num2 = this._audioStream.Read(buffer, num); + this.ScaleBuffer(buffer, num2); + this._clipLevel = 0f; + for (int i = 0; i < num2; i++) + { + this._clipLevel = Math.Max(this._clipLevel, Math.Abs(buffer[i])); + } + for (int j = num2; j < num; j++) + { + buffer[j] = 0f; + } + } + + private unsafe void RecorderFiller(float* buffer, int frameCount) + { + if (this._iqStream.Length <= this._inputBufferSize * 2) + { + if (this._iqInBuffer == null || this._iqInBuffer.Length != frameCount) + { + this._iqInBuffer = UnsafeBuffer.Create(frameCount, sizeof(Complex)); + this._iqInPtr = (Complex*)(void*)this._iqInBuffer; + } + Utils.Memcpy(this._iqInPtr, buffer, frameCount * sizeof(Complex)); + this._iqStream.Write(this._iqInPtr, frameCount); + } + } + + private unsafe void FrontendFiller(IFrontendController sender, Complex* samples, int len) + { + if (this._iqStream.Length < this._inputBufferSize * 4) + { + this._iqStream.Write(samples, len); + } + } + + private unsafe void WaveFileFiller() + { + Complex[] array = new Complex[65536]; + int num = 0; + Complex[] array2 = array; + fixed (Complex* ptr = array2) + { + Console.WriteLine("WaveFiller started"); + while (this.IsPlaying) + { + if (this._iqStream.Length < this._inputBufferSize * 4) + { + int num2 = this._waveFile.Read(ptr, array.Length, ref num); + this._iqStream.Write(ptr, num2); + if (num2 < array.Length) + { + string fileName = this._waveFile.FileName; + int num3 = fileName.ToLower().LastIndexOf(".wav"); + if (int.TryParse(fileName.Substring(num3 - 2, 2), out int num4)) + { + num3 -= 2; + } + string str = fileName.Substring(0, num3); + int num5 = ++num4; + string text = str + num5.ToString("00") + ".wav"; + if (!File.Exists(text)) + { + text = this._fileName; + this._waveStart = DateTime.Now; + } + this._waveFile.Close(); + this._waveFile.Dispose(); + this._waveFile = new WaveFile(text); + } + } + else + { + Thread.Sleep(2); + } + } + Console.WriteLine("WaveFiller stopped"); + } + } + + private unsafe void ScaleBuffer(float* buffer, int length) + { + for (int i = 0; i < length; i++) + { + buffer[i] *= this._outputGain; + } + } + + private unsafe void DSPProc() + { + if (this._dspInBuffer == null || this._dspInBuffer.Length != this._inputBufferSize) + { + this._dspInBuffer = UnsafeBuffer.Create(this._inputBufferSize, sizeof(Complex)); + this._dspInPtr = (Complex*)(void*)this._dspInBuffer; + } + if (this._dspOutBuffer == null || this._dspOutBuffer.Length != this._outputBufferSize) + { + this._dspOutBuffer = UnsafeBuffer.Create(this._outputBufferSize, 4); + this._dspOutPtr = (float*)(void*)this._dspOutBuffer; + } + Console.WriteLine("DSPPROC started"); + while (this.IsPlaying) + { + int num = 0; + while (this.IsPlaying && num < this._dspInBuffer.Length) + { + int count = this._dspInBuffer.Length - num; + num += this._iqStream.Read(this._dspInPtr, num, count); + } + int count2 = this.ProcessBuffer(); + this._audioStream.Write(this._dspOutPtr, count2); + } + this._isBuffering = false; + Console.WriteLine("DSPPROC stopped"); + } + + private unsafe int ProcessBuffer() + { + if (this.ProcessBufferPtr == null) + { + return 0; + } + if (this._swapIQ) + { + this.swapIQBuffer(); + } + this._isBuffering = true; + var x = this.ProcessBufferPtr(this._dspInPtr, this._dspOutPtr, this._dspInBuffer.Length, this._dspOutBuffer.Length); + return x; + } + + private unsafe void swapIQBuffer() + { + for (int i = 0; i < this._dspInBuffer.Length; i++) + { + float real = this._dspInPtr[i].Real; + this._dspInPtr[i].Real = this._dspInPtr[i].Imag; + this._dspInPtr[i].Imag = real; + } + } + + public void Stop() + { + if (this._inputType == InputType.Plugin && this._frontend != null) + { + this._frontend.Stop(); + this._frontend = null; + } + if (this._wavePlayer != null) + { + this._wavePlayer.Dispose(); + this._wavePlayer = null; + } + if (this._waveRecorder != null) + { + this._waveRecorder.Dispose(); + this._waveRecorder = null; + } + if (this._waveDuplex != null) + { + this._waveDuplex.Dispose(); + this._waveDuplex = null; + } + this._inputSampleRate = 0.0; + if (this._waveReadThread != null) + { + this._waveReadThread.Join(); + this._waveReadThread = null; + } + if (this._iqStream != null) + { + this._iqStream.Close(); + } + if (this._audioStream != null) + { + this._audioStream.Close(); + } + if (this._dspThread != null) + { + this._dspThread.Join(); + this._dspThread = null; + } + if (this._waveFile != null) + { + this._waveFile.Dispose(); + this._waveFile = null; + } + if (this._iqStream != null) + { + this._iqStream.Dispose(); + this._iqStream = null; + } + this._audioStream = null; + this._dspOutBuffer = null; + this._iqInBuffer = null; + } + + public unsafe void Play() + { + if (this._wavePlayer == null && this._waveDuplex == null) + { + if (this._inputType != InputType.WaveFile) + { + this._waveStart = DateTime.Now.AddYears(1); + } + double sampleRate = this._outputSampleRate; + int framesPerBuffer = this._outputBufferSize / 2; + if (this._soundCardRatio > 1.0) + { + sampleRate = (double)this._minOutputSampleRate; + framesPerBuffer = (int)((double)this._outputBufferSize / (2.0 * this._soundCardRatio)); + } + switch (this._inputType) + { + case InputType.SoundCard: + if (this._inputDevice == this._outputDevice) + { + this._waveDuplex = new WaveDuplex(this._inputDevice, this._inputSampleRate, this._inputBufferSize, this.DuplexFiller); + } + else + { + this._iqStream = new ComplexFifoStream(BlockMode.BlockingRead); + ComplexFifoStream iqStream2 = this._iqStream; + bool read2 = false; + iqStream2.SetLog("_iqStream", 20000, read2, true); + this._audioStream = new FloatFifoStream(BlockMode.BlockingWrite, this._outputBufferSize); + Console.WriteLine("_audioStream created with size " + this._outputBufferSize.ToString()); + FloatFifoStream audioStream3 = this._audioStream; + bool write3 = false; + audioStream3.SetLog("_audioStream", this._outputBufferSize, true, write3); + this._waveRecorder = new WaveRecorder(this._inputDevice, this._inputSampleRate, this._inputBufferSize, this.RecorderFiller); + this._wavePlayer = new WavePlayer(this._outputDevice, sampleRate, framesPerBuffer, this.PlayerFiller); + this._dspThread = new Thread(this.DSPProc); + this._dspThread.Start(); + } + break; + case InputType.WaveFile: + { + this._iqStream = new ComplexFifoStream(BlockMode.BlockingRead); + this._iqStream.SetLog("_iqStream", 20000, true, true); + this._audioStream = new FloatFifoStream(BlockMode.BlockingWrite, this._outputBufferSize * 2); + Console.WriteLine("_audioStream created with size " + (this._outputBufferSize * 2).ToString()); + FloatFifoStream audioStream2 = this._audioStream; + bool write2 = false; + audioStream2.SetLog("_audioStream", this._outputBufferSize, true, write2); + this._wavePlayer = new WavePlayer(this._outputDevice, sampleRate, framesPerBuffer, this.PlayerFiller); + this._waveReadThread = new Thread(this.WaveFileFiller); + this._waveReadThread.Start(); + this._dspThread = new Thread(this.DSPProc); + this._dspThread.Start(); + break; + } + case InputType.Plugin: + { + this._iqStream = new ComplexFifoStream(BlockMode.BlockingRead); + ComplexFifoStream iqStream = this._iqStream; + bool read = false; + iqStream.SetLog("_iqStream", 20000, read, true); + this._audioStream = new FloatFifoStream(BlockMode.BlockingWrite, this._outputBufferSize * 2); + Console.WriteLine("_audioStream created with size " + (this._outputBufferSize * 2).ToString()); + FloatFifoStream audioStream = this._audioStream; + bool write = false; + audioStream.SetLog("_audioStream", 0, true, write); + this._wavePlayer = new WavePlayer(this._outputDevice, sampleRate, framesPerBuffer, this.PlayerFiller); + this._frontend.Start(this.FrontendFiller); + this._dspThread = new Thread(this.DSPProc); + this._dspThread.Start(); + break; + } + } + } + } + + public void OpenSoundDevice(int inputDevice, int outputDevice, double inputSampleRate, int latency) + { + this.Stop(); + this._inputType = InputType.SoundCard; + this._inputDevice = inputDevice; + this._outputDevice = outputDevice; + this._inputSampleRate = inputSampleRate; + this._bufferSizeInMs = latency; + this._inputBufferSize = (int)((double)this._bufferSizeInMs * this._inputSampleRate / 1000.0); + if (this._inputDevice == this._outputDevice) + { + this._decimationStageCount = 0; + this._inputBufferSize = this._inputBufferSize / StreamControl._processorCount * StreamControl._processorCount; + int num = (int)Math.Log((double)this._inputBufferSize, 2.0); + this._inputBufferSize = (int)Math.Pow(2.0, (double)num); + this._bufferSizeInMs = (int)Math.Round((double)this._inputBufferSize / this._inputSampleRate * 1000.0); + this._outputSampleRate = this._inputSampleRate; + this._outputBufferSize = this._inputBufferSize * 2; + this._soundCardRatio = 1.0; + } + else + { + this._decimationStageCount = this.GetDecimationStageCount(); + int num2 = (int)Math.Pow(2.0, (double)this._decimationStageCount); + this._inputBufferSize = this._inputBufferSize / num2 * num2; + this._inputBufferSize = this._inputBufferSize / StreamControl._processorCount * StreamControl._processorCount; + int num3 = (int)Math.Log((double)this._inputBufferSize, 2.0); + this._inputBufferSize = (int)Math.Pow(2.0, (double)num3); + this._bufferSizeInMs = (int)Math.Round((double)this._inputBufferSize / this._inputSampleRate * 1000.0); + this._outputSampleRate = this._inputSampleRate / (double)num2; + this._outputBufferSize = this._inputBufferSize / num2 * 2; + if (this._outputSampleRate > 192000.0) + { + this._soundCardRatio = this._outputSampleRate / 192000.0; + } + else + { + this._soundCardRatio = (this._useASIO ? (this._outputSampleRate / (double)this._minOutputSampleRate) : 1.0); + } + } + Console.WriteLine("_inputBuffersize (complex) set to " + (Utils.FastConvolve ? "power of 2 : " : ": ") + this._inputBufferSize.ToString()); + Console.WriteLine("_outputBuffersize (real) set to : " + this._outputBufferSize.ToString()); + Console.WriteLine("_soundCardRatio set to : " + this._soundCardRatio.ToString()); + } + + public int OpenFile(string filename, int outputDevice, int latency) + { + this.Stop(); + try + { + this._inputType = InputType.WaveFile; + this._fileName = filename; + this._waveFile = new WaveFile(filename); + this._waveStart = DateTime.Now; + this._outputDevice = outputDevice; + this._bufferSizeInMs = latency; + this._inputSampleRate = (double)this._waveFile.SampleRate; + this._decimationStageCount = this.GetDecimationStageCount(); + this._inputBufferSize = (int)((double)this._bufferSizeInMs * this._inputSampleRate / 1000.0); + int num = (int)Math.Pow(2.0, (double)this._decimationStageCount); + this._inputBufferSize = this._inputBufferSize / num * num; + this._inputBufferSize = this._inputBufferSize / StreamControl._processorCount * StreamControl._processorCount; + int num2 = (int)Math.Log((double)this._inputBufferSize, 2.0); + this._inputBufferSize = (int)Math.Pow(2.0, (double)num2); + this._bufferSizeInMs = (int)Math.Round((double)this._inputBufferSize / this._inputSampleRate * 1000.0); + this._outputSampleRate = this._inputSampleRate / (double)num; + this._outputBufferSize = this._inputBufferSize / num * 2; + if (this._outputSampleRate > 192000.0) + { + this._soundCardRatio = this._outputSampleRate / 192000.0; + } + else + { + this._soundCardRatio = (this._useASIO ? (this._outputSampleRate / (double)this._minOutputSampleRate) : 1.0); + } + Console.WriteLine("_inputBuffersize (complex) set to " + (Utils.FastConvolve ? "power of 2 : " : ": ") + this._inputBufferSize.ToString()); + Console.WriteLine("_outputBuffersize (real) set to : " + this._outputBufferSize.ToString()); + Console.WriteLine("_soundCardRatio set to : " + this._soundCardRatio.ToString()); + return this._waveFile.Duration; + } + catch + { + this.Stop(); + throw; + } + } + + public void OpenPlugin(IFrontendController frontend, int outputDevice, int latency) + { + this.Stop(); + try + { + this._inputType = InputType.Plugin; + this._frontend = frontend; + this._inputSampleRate = this._frontend.Samplerate; + this._outputDevice = outputDevice; + this._bufferSizeInMs = latency; + this._inputBufferSize = (int)((double)this._bufferSizeInMs * this._inputSampleRate / 1000.0); + this._decimationStageCount = this.GetDecimationStageCount(); + int num = (int)Math.Pow(2.0, (double)this._decimationStageCount); + this._inputBufferSize = this._inputBufferSize / num * num; + this._inputBufferSize = this._inputBufferSize / StreamControl._processorCount * StreamControl._processorCount; + int num2 = (int)Math.Log((double)this._inputBufferSize, 2.0); + this._inputBufferSize = (int)Math.Pow(2.0, (double)num2); + this._bufferSizeInMs = (int)Math.Round((double)this._inputBufferSize / this._inputSampleRate * 1000.0); + this._outputSampleRate = this._inputSampleRate / (double)num; + this._outputBufferSize = this._inputBufferSize / num * 2; + if (this._outputSampleRate > 192000.0) + { + this._soundCardRatio = this._outputSampleRate / 192000.0; + } + else + { + this._soundCardRatio = (this._useASIO ? (this._outputSampleRate / (double)this._minOutputSampleRate) : 1.0); + } + Console.WriteLine("_inputBuffersize (complex) set to " + (Utils.FastConvolve ? "power of 2 : " : ": ") + this._inputBufferSize.ToString()); + Console.WriteLine("_outputBuffersize (real) set to : " + this._outputBufferSize.ToString()); + Console.WriteLine("_soundCardRatio set to : " + this._soundCardRatio.ToString()); + } + catch + { + this.Stop(); + throw; + } + } + + private int GetDecimationStageCount() + { + if (this._inputSampleRate <= (double)this._minOutputSampleRate) + { + return 0; + } + int num = 1024; + while (this._inputSampleRate < (double)(this._minOutputSampleRate * num) && num > 0) + { + num /= 2; + } + return (int)Math.Log((double)num, 2.0); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/SyndromeDetector.cs b/SDRSharper.Radio/SDRSharp.Radio/SyndromeDetector.cs new file mode 100644 index 0000000..3b8ea39 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/SyndromeDetector.cs @@ -0,0 +1,160 @@ +namespace SDRSharp.Radio +{ + public class SyndromeDetector + { + protected enum BlockSequence + { + GotA, + GotB, + GotC, + GotD, + WaitBitSync, + GotBitSync + } + + private const int MaxCorrectableBits = 5; + + private const int CheckwordBitsCount = 10; + + private readonly RdsDumpGroups _dumpGroups; + + private readonly bool _useFec = Utils.GetBooleanSetting("RdsUseFec"); + + private readonly ushort[] _blocks = new ushort[4]; + + private BlockSequence _sequence = BlockSequence.WaitBitSync; + + private ushort _syndrome; + + private uint _raw; + + private int _count; + + public SyndromeDetector(RdsDumpGroups dumpGroups) + { + this._dumpGroups = dumpGroups; + } + + public void Clock(bool b) + { + this._raw <<= 1; + this._raw |= (uint)(b ? 1 : 0); + this._count++; + if (this._sequence == BlockSequence.WaitBitSync) + { + this._syndrome = SyndromeDetector.BuildSyndrome(this._raw); + this._syndrome ^= 984; + this._sequence = ((this._syndrome != 0) ? BlockSequence.WaitBitSync : BlockSequence.GotA); + this._blocks[0] = (ushort)(this._raw >> 10 & 0xFFFF); + this._count = 0; + } + if (this._count == 26) + { + this.ProcessSyndrome(); + if (this._sequence == BlockSequence.GotD) + { + this._dumpGroups.AnalyseFrames(this._blocks[0], this._blocks[1], this._blocks[2], this._blocks[3]); + this._sequence = BlockSequence.GotBitSync; + } + this._count = 0; + } + } + + private void ProcessSyndrome() + { + this._syndrome = SyndromeDetector.BuildSyndrome(this._raw); + switch (this._sequence) + { + case BlockSequence.GotBitSync: + this._syndrome ^= 984; + this._sequence = BlockSequence.GotA; + break; + case BlockSequence.GotA: + this._syndrome ^= 980; + this._sequence = BlockSequence.GotB; + break; + case BlockSequence.GotB: + this._syndrome ^= (ushort)(((this._blocks[1] & 0x800) == 0) ? 604 : 972); + this._sequence = BlockSequence.GotC; + break; + case BlockSequence.GotC: + this._syndrome ^= 600; + this._sequence = BlockSequence.GotD; + break; + } + int sequence = (int)this._sequence; + if (this._syndrome != 0) + { + if (this._useFec) + { + int num = this.ApplyFEC(); + if (this._syndrome != 0 || num > 5) + { + this._sequence = BlockSequence.WaitBitSync; + } + else + { + this._blocks[sequence] = (ushort)(this._raw & 0xFFFF); + } + } + else + { + this._sequence = BlockSequence.WaitBitSync; + } + } + else + { + this._blocks[sequence] = (ushort)(this._raw >> 10 & 0xFFFF); + } + } + + private int ApplyFEC() + { + uint num = 33554432u; + int num2 = 0; + for (int i = 0; i < 16; i++) + { + bool flag = (this._syndrome & 0x200) == 512; + bool flag2 = (this._syndrome & 0x20) == 0; + this._raw ^= ((flag && flag2) ? num : 0); + this._syndrome <<= 1; + this._syndrome ^= (ushort)((flag && !flag2) ? 1465 : 0); + num2 += ((flag && flag2) ? 1 : 0); + num >>= 1; + } + this._syndrome &= 1023; + return num2; + } + + private static ushort BuildSyndrome(uint raw) + { + ushort[] array = new ushort[16] + { + 732, + 366, + 183, + 647, + 927, + 787, + 853, + 886, + 443, + 513, + 988, + 494, + 247, + 679, + 911, + 795 + }; + uint num = raw & 0x3FFFFFF; + ushort num2 = (ushort)(num >> 16); + for (int i = 0; i < 16; i++) + { + num2 = (ushort)(num2 ^ (((num & 0x8000) == 32768) ? array[i] : 0)); + num <<= 1; + } + return num2; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Trig.cs b/SDRSharper.Radio/SDRSharp.Radio/Trig.cs new file mode 100644 index 0000000..f33ece4 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Trig.cs @@ -0,0 +1,100 @@ +using System; + +namespace SDRSharp.Radio +{ + public static class Trig + { + private const int ResolutionInBits = 16; + + private static readonly int _mask; + + private static readonly float _indexScale; + + private static readonly UnsafeBuffer _sinBuffer; + + private static readonly UnsafeBuffer _cosBuffer; + + private unsafe static readonly float* _sinPtr; + + private unsafe static readonly float* _cosPtr; + + unsafe static Trig() + { + Trig._mask = 65535; + int num = Trig._mask + 1; + Trig._sinBuffer = UnsafeBuffer.Create(num, 4); + Trig._cosBuffer = UnsafeBuffer.Create(num, 4); + Trig._sinPtr = (float*)(void*)Trig._sinBuffer; + Trig._cosPtr = (float*)(void*)Trig._cosBuffer; + Trig._indexScale = (float)num / 6.28318548f; + for (int i = 0; i < num; i++) + { + Trig._sinPtr[i] = (float)Math.Sin((double)(((float)i + 0.5f) / (float)num * 6.28318548f)); + Trig._cosPtr[i] = (float)Math.Cos((double)(((float)i + 0.5f) / (float)num * 6.28318548f)); + } + for (float num2 = 0f; num2 < 6.28318548f; num2 += 1.57079637f) + { + Trig._sinPtr[(int)(num2 * Trig._indexScale) & Trig._mask] = (float)Math.Sin((double)num2); + Trig._cosPtr[(int)(num2 * Trig._indexScale) & Trig._mask] = (float)Math.Cos((double)num2); + } + } + + public unsafe static float Sin(float angle) + { + return Trig._sinPtr[(int)(angle * Trig._indexScale) & Trig._mask]; + } + + public unsafe static float Cos(float angle) + { + return Trig._cosPtr[(int)(angle * Trig._indexScale) & Trig._mask]; + } + + public unsafe static Complex SinCos(float rad) + { + int num = (int)(rad * Trig._indexScale) & Trig._mask; + Complex result = default(Complex); + result.Real = Trig._cosPtr[num]; + result.Imag = Trig._sinPtr[num]; + return result; + } + + public static float Atan2(float y, float x) + { + if ((double)x == 0.0) + { + if ((double)y > 0.0) + { + return 1.57079637f; + } + if ((double)y == 0.0) + { + return 0f; + } + return -1.57079637f; + } + float num = y / x; + float num2; + if ((double)Math.Abs(num) < 1.0) + { + num2 = num / (1f + 0.2854f * num * num); + if ((double)x < 0.0) + { + if ((double)y < 0.0) + { + return num2 - 3.14159274f; + } + return num2 + 3.14159274f; + } + } + else + { + num2 = 1.57079637f - num / (num * num + 0.2854f); + if ((double)y < 0.0) + { + return num2 - 3.14159274f; + } + } + return num2; + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/UnsafeBuffer.cs b/SDRSharper.Radio/SDRSharp.Radio/UnsafeBuffer.cs new file mode 100644 index 0000000..6ef506d --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/UnsafeBuffer.cs @@ -0,0 +1,70 @@ +using System; +using System.Runtime.InteropServices; + +namespace SDRSharp.Radio +{ + public sealed class UnsafeBuffer : IDisposable + { + private readonly GCHandle _handle; + private unsafe void* _ptr; + private int _length; + private Array _buffer; + + public unsafe void* Address + { + get + { + return this._ptr; + } + } + + public int Length => + this._length; + + private unsafe UnsafeBuffer(Array buffer, int realLength, bool aligned) + { + this._buffer = buffer; + this._handle = GCHandle.Alloc(this._buffer, GCHandleType.Pinned); + this._ptr = (void*)this._handle.AddrOfPinnedObject(); + if (aligned) + { + this._ptr = (void*)((long)this._ptr + 15 & -16); + } + this._length = realLength; + } + + ~UnsafeBuffer() + { + this.Dispose(); + } + + public unsafe void Dispose() + { + if (this._handle.IsAllocated) + { + this._handle.Free(); + } + this._buffer = null; + this._ptr = null; + this._length = 0; + GC.SuppressFinalize(this); + } + + public static unsafe implicit operator void*(UnsafeBuffer unsafeBuffer) + { + return unsafeBuffer.Address; + } + + public static UnsafeBuffer Create(Array buffer) => + new UnsafeBuffer(buffer, buffer.Length, false); + + public static UnsafeBuffer Create(int size) => + Create(1, size, true); + + public static UnsafeBuffer Create(int length, int sizeOfElement) => + Create(length, sizeOfElement, true); + + public static UnsafeBuffer Create(int length, int sizeOfElement, bool aligned) => + new UnsafeBuffer(new byte[(length * sizeOfElement) + (aligned ? 0x10 : 0)], length, aligned); + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Utils.cs b/SDRSharper.Radio/SDRSharp.Radio/Utils.cs new file mode 100644 index 0000000..f02c580 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Utils.cs @@ -0,0 +1,645 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Globalization; +using System.IO; +using System.Reflection; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; + +namespace SDRSharp.Radio +{ + public static class Utils + { + public static Assembly UnmanagedDLLAssemblyVer = Assembly.GetExecutingAssembly(); + + private const string Libc = "msvcrt.dll"; + + private static SortedDictionary _settings = new SortedDictionary(); + + public static int ProcessorCount; + + public static bool Chk1; + + public static float Value1 = 1f; + + public static bool ChkAver; + + public static bool FastFFT; + + public static bool FastConvolve; + + public static int PhaseAverage; + + public static int PhaseGain; + + private static Pen _outlinePen = new Pen(Color.Black); + + private static FontFamily _fontFamily = new FontFamily("Arial"); + + public static SortedDictionary Settings + { + get + { + return Utils._settings; + } + set + { + Utils._settings = value; + } + } + + public static void Log(string msg, bool create = false) + { + string path = "Debug_" + Thread.CurrentThread.ManagedThreadId.ToString() + ".log"; + if (create) + { + File.Delete(path); + } + using (StreamWriter streamWriter = new StreamWriter(path, true)) + { + streamWriter.WriteLine(DateTime.Now.ToString("hh:mm:ss.fff") + " - " + msg); + } + } + + public static Color ChangeColor(Color col, int delta) + { + int val = col.R + delta; + int val2 = col.G + delta; + int val3 = col.B + delta; + return Color.FromArgb(Math.Min(255, Math.Max(0, val)), Math.Min(255, Math.Max(0, val2)), Math.Min(255, Math.Max(0, val3))); + } + + public static Color ChangeColor(Color col, float factor) + { + int val = (int)((float)(int)col.R * factor); + int val2 = (int)((float)(int)col.G * factor); + int val3 = (int)((float)(int)col.B * factor); + return Color.FromArgb(Math.Min(255, Math.Max(0, val)), Math.Min(255, Math.Max(0, val2)), Math.Min(255, Math.Max(0, val3))); + } + + public static ColorBlend BackGroundBlend(Color color, int height, int margin) + { + ColorBlend colorBlend = new ColorBlend(3); + colorBlend.Colors = new Color[3] + { + Color.Black, + color, + Color.Black + }; + colorBlend.Positions = new float[3] + { + 0f, + (float)(height - margin) / (float)(height + margin), + 1f + }; + return colorBlend; + } + + public static PathGradientBrush BackgroundBrush(string name, Color color, Rectangle r, bool spectrum, bool border) + { + return Utils.BackgroundBrush(name, color, r.Width, r.Height, spectrum, border); + } + + public static PathGradientBrush BackgroundBrush(string Name, Color color, int width, int height, bool spectrum, bool border) + { + if (width != 0 && height != 0) + { + using (GraphicsPath graphicsPath = new GraphicsPath()) + { + if (Name.Contains("spectrum")) + { + graphicsPath.AddRectangle(new Rectangle(-1 * width, (int)(-0.1 * (double)height), 3 * width, (int)(1.2 * (double)height))); + } + else if (Name.Contains("Analyzer")) + { + graphicsPath.AddRectangle(new Rectangle((int)(-0.05 * (double)width), (int)(-0.1 * (double)height), (int)(1.1 * (double)width), (int)(1.2 * (double)height))); + } + else if (Name.Contains("cope")) + { + graphicsPath.AddRectangle(new Rectangle(0, 0, width, height)); + } + else + { + graphicsPath.AddRectangle(new Rectangle((int)(-0.1 * (double)width), (int)(-0.1 * (double)height), (int)(1.2 * (double)width), (int)(1.2 * (double)height))); + } + int num = 100; + PathGradientBrush pathGradientBrush = new PathGradientBrush(graphicsPath); + if (Name.Contains("spectrum")) + { + pathGradientBrush.SurroundColors = new Color[1] + { + Utils.ChangeColor(color, 0.1f) + }; + pathGradientBrush.CenterColor = Utils.ChangeColor(color, 0.9f); + pathGradientBrush.CenterPoint = new Point(width / 2, height * 2); + } + else if (Name.Contains("Analyzer")) + { + pathGradientBrush.SurroundColors = new Color[1] + { + Utils.ChangeColor(color, 0.1f) + }; + pathGradientBrush.CenterColor = Utils.ChangeColor(color, 0.7f); + pathGradientBrush.CenterPoint = new Point(width / 2, (int)((double)height * 1.5)); + } + else if (Name.Contains("cope")) + { + pathGradientBrush.SurroundColors = new Color[1] + { + Utils.ChangeColor(color, 0.1f) + }; + pathGradientBrush.CenterColor = Utils.ChangeColor(color, (Name == "scope") ? 0.6f : 0.5f); + pathGradientBrush.CenterPoint = new Point(width / 2, height / 2); + num = 40; + } + else + { + pathGradientBrush.SurroundColors = new Color[1] + { + Utils.ChangeColor(color, 0.2f) + }; + pathGradientBrush.CenterColor = Utils.ChangeColor(color, 0.5f); + pathGradientBrush.CenterPoint = new Point(width / 2, (int)((double)height * 0.66)); + } + Blend blend = new Blend(6); + blend.Positions = new float[6] + { + 0f, + 0.2f, + 0.35f, + 0.43f, + 0.5f, + 1f + }; + blend.Factors = new float[6] + { + 0f, + 0.6f, + 0.8f, + 0.9f, + 0.95f, + 1f + }; + float num2 = (float)num / (float)Math.Min(width, height); + for (int i = 0; i < blend.Positions.Length - 1; i++) + { + blend.Positions[i] *= num2 / 0.5f; + } + pathGradientBrush.Blend = blend; + return pathGradientBrush; + } + } + return null; + } + + public unsafe static void ManagedMemcpy(void* dest, void* src, int len) + { + byte* ptr = (byte*)dest; + byte* ptr2 = (byte*)src; + if (len >= 16) + { + do + { + *(int*)ptr = *(int*)ptr2; + *(int*)(ptr + 4) = *(int*)(ptr2 + 4); + *(int*)(ptr + 8) = *(int*)(ptr2 + 8); + *(int*)(ptr + 12) = *(int*)(ptr2 + 12); + ptr += 16; + ptr2 += 16; + } + while ((len -= 16) >= 16); + } + if (len > 0) + { + if ((len & 8) != 0) + { + *(int*)ptr = *(int*)ptr2; + *(int*)(ptr + 4) = *(int*)(ptr2 + 4); + ptr += 8; + ptr2 += 8; + } + if ((len & 4) != 0) + { + *(int*)ptr = *(int*)ptr2; + ptr += 4; + ptr2 += 4; + } + if ((len & 2) != 0) + { + *(short*)ptr = *(short*)ptr2; + ptr += 2; + ptr2 += 2; + } + if ((len & 1) != 0) + { + *ptr = *ptr2; + } + } + } + + [DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl, EntryPoint = "memcpy")] + public unsafe static extern void* Memcpy(void* dest, void* src, int len); + + [DllImport("winmm.dll", EntryPoint = "timeBeginPeriod", SetLastError = true)] + public static extern uint TimeBeginPeriod(uint uMilliseconds); + + [DllImport("winmm.dll", EntryPoint = "timeEndPeriod", SetLastError = true)] + public static extern uint TimeEndPeriod(uint uMilliseconds); + + public static string GetSetting(string name) + { + if (Utils.Settings.ContainsKey(name)) + { + return Utils.Settings[name]; + } + Console.WriteLine("XML Setting '" + name + "' not found."); + try + { + return ConfigurationManager.AppSettings[name]; + } + catch + { + return "App Setting '" + name + "' not found."; + } + } + + public static double GetDoubleSetting(string name, double defaultValue) + { + string setting = Utils.GetSetting(name); + if (double.TryParse(setting, NumberStyles.Number, (IFormatProvider)CultureInfo.InvariantCulture, out double result)) + { + return result; + } + return defaultValue; + } + + public static bool GetBooleanSetting(string name) + { + string str; + try + { + str = (Utils.GetSetting(name) ?? string.Empty); + } + catch + { + return false; + } + str += " "; + return "YyTt".IndexOf(str[0]) >= 0; + } + + public static Color GetColorSetting(string name, Color defaultColor) + { + try + { + string setting = Utils.GetSetting(name); + int red = int.Parse(setting.Substring(0, 2), NumberStyles.HexNumber); + int green = int.Parse(setting.Substring(2, 2), NumberStyles.HexNumber); + int blue = int.Parse(setting.Substring(4, 2), NumberStyles.HexNumber); + return Color.FromArgb(red, green, blue); + } + catch + { + return defaultColor; + } + } + + public static ColorBlend GetGradientBlend(int alpha, string settingName) + { + ColorBlend colorBlend = new ColorBlend(); + string text; + try + { + text = (Utils.GetSetting(settingName) ?? string.Empty); + } + catch + { + text = string.Empty; + } + string[] array = text.Split(','); + if (array.Length < 2) + { + colorBlend.Colors = new Color[6] + { + Color.White, + Color.LightBlue, + Color.DodgerBlue, + Color.FromArgb(0, 0, 80), + Color.Black, + Color.Black + }; + for (int i = 0; i < colorBlend.Colors.Length; i++) + { + colorBlend.Colors[i] = Color.FromArgb(alpha, colorBlend.Colors[i]); + } + } + else + { + colorBlend.Colors = new Color[array.Length]; + for (int j = 0; j < array.Length; j++) + { + string text2 = array[j]; + int red = int.Parse(text2.Substring(0, 2), NumberStyles.HexNumber); + int green = int.Parse(text2.Substring(2, 2), NumberStyles.HexNumber); + int blue = int.Parse(text2.Substring(4, 2), NumberStyles.HexNumber); + colorBlend.Colors[j] = Color.FromArgb(red, green, blue); + } + } + float[] array2 = new float[colorBlend.Colors.Length]; + float num = 1f / (float)(array2.Length - 1); + for (int k = 0; k < array2.Length; k++) + { + byte r = colorBlend.Colors[k].R; + byte g = colorBlend.Colors[k].G; + byte b = colorBlend.Colors[k].B; + colorBlend.Colors[k] = Color.FromArgb(alpha, r, g, b); + array2[k] = (float)k * num; + } + colorBlend.Positions = array2; + return colorBlend; + } + + public static void AddString(GraphicsPath path, string text, float fontSize, int x, int y) + { + path.AddString(text, Utils._fontFamily, 0, fontSize, new Point(x, y), StringFormat.GenericTypographic); + } + + public static void DrawPath(Graphics graphics, GraphicsPath path, Brush brush, int outlineWidth) + { + SmoothingMode smoothingMode = graphics.SmoothingMode; + InterpolationMode interpolationMode = graphics.InterpolationMode; + graphics.SmoothingMode = SmoothingMode.AntiAlias; + graphics.InterpolationMode = InterpolationMode.HighQualityBicubic; + Utils._outlinePen.Width = (float)outlineWidth; + graphics.DrawPath(Utils._outlinePen, path); + graphics.FillPath(brush, path); + graphics.SmoothingMode = smoothingMode; + graphics.InterpolationMode = interpolationMode; + } + + public static int GetIntSetting(string name, int defaultValue) + { + string setting = Utils.GetSetting(name); + if (int.TryParse(setting, out int result)) + { + return result; + } + return defaultValue; + } + + public static long GetLongSetting(string name, long defaultValue) + { + string setting = Utils.GetSetting(name); + if (long.TryParse(setting, out long result)) + { + return result; + } + return defaultValue; + } + + public static string IntArrayToString(params int[] values) + { + StringBuilder stringBuilder = new StringBuilder(); + foreach (int value in values) + { + stringBuilder.Append(value); + stringBuilder.Append(','); + } + return stringBuilder.ToString().TrimEnd(','); + } + + public static int[] GetIntArraySetting(string name, int[] defaultValue) + { + try + { + string setting = Utils.GetSetting(name); + string[] array = setting.Split(','); + int num = array.Length; + if (defaultValue != null && defaultValue.Length > num) + { + num = defaultValue.Length; + } + int[] array2 = new int[num]; + for (int i = 0; i < array.Length; i++) + { + array2[i] = int.Parse(array[i]); + } + if (defaultValue != null) + { + for (int j = array.Length; j < defaultValue.Length; j++) + { + array2[j] = defaultValue[j]; + } + } + return array2; + } + catch + { + return defaultValue; + } + } + + public static string GetStringSetting(string name, string defaultValue) + { + string setting = Utils.GetSetting(name); + if (string.IsNullOrEmpty(setting)) + { + return defaultValue; + } + return setting; + } + + public static void SaveSetting(string key, object value) + { + string value2 = Convert.ToString(value, CultureInfo.InvariantCulture); + Utils.SaveSetting(key, value2); + } + + public static void SaveSetting(string key, string value) + { + Utils.Settings[key] = value; + } + + public static int Val(string str, int def = 0) + { + if (!int.TryParse(str, out int result)) + { + result = def; + return result; + } + return result; + } + + public static double ValD(string str, double def = 0.0) + { + if (!double.TryParse(str, NumberStyles.Any, (IFormatProvider)CultureInfo.InvariantCulture, out double result)) + { + result = def; + return result; + } + return result; + } + + public static float ValF(string str, float def = 0f) + { + if (!float.TryParse(str, NumberStyles.Any, (IFormatProvider)CultureInfo.InvariantCulture, out float result)) + { + result = def; + return result; + } + return result; + } + + public static string Signal(int dBm, int showDbm, bool unit) + { + switch (showDbm) + { + case 0: + return string.Format(unit ? "{0:##0.0}dBm" : "{0:##0}", dBm); + case 1: + return string.Format(unit ? "{0:##0.0}dBuv" : "{0:##0}", dBm + 107); + case 3: + return string.Format(unit ? "{0:##0} %" : "{0:##0}", Math.Max(0, dBm + 133)); + default: + if (dBm > -73) + { + return string.Format(unit ? "S9+{0:#0}" : "+{0:#0}", dBm + 73); + } + if (dBm + 127 < 0) + { + return ""; + } + return string.Format(unit ? "S{0:0.#}" : "S{0:0}", (float)(dBm + 127) / 6f); + } + } + + public unsafe static void ClrBuf(float* acc, int length) + { + for (int i = 0; i < length; i++) + { + acc[i] = 0f; + } + } + + public unsafe static void ClrBuf(Complex* acc, int length) + { + for (int i = 0; i < length; i++) + { + acc[i].Real = 0f; + acc[i].Imag = 0f; + } + } + + public unsafe static void AddBufs(float* acc, float* buf, int length) + { + for (int i = 0; i < length; i++) + { + acc[i] += buf[i]; + } + } + + public unsafe static void AddBufs(Complex* acc, Complex* buf, int length) + { + for (int i = 0; i < length; i++) + { + acc[i].Real += buf[i].Real; + acc[i].Imag += buf[i].Imag; + } + } + + public unsafe static void RemBufs(float* acc, float* buf, int length) + { + for (int i = 0; i < length; i++) + { + acc[i] -= buf[i]; + } + } + + public unsafe static void RemBufs(Complex* acc, Complex* buf, int length) + { + for (int i = 0; i < length; i++) + { + acc[i].Real -= buf[i].Real; + acc[i].Imag -= buf[i].Imag; + } + } + + public unsafe static void DivBuf(float* acc, int length, int cnt) + { + for (int i = 0; i < length; i++) + { + acc[i] /= (float)cnt; + } + } + + public unsafe static void DivBuf(Complex* acc, int length, int cnt) + { + for (int i = 0; i < length; i++) + { + acc[i].Real /= (float)cnt; + acc[i].Imag /= (float)cnt; + } + } + + public static long niceVal(float value, int n = 0) + { + int num = (int)Math.Log10((double)value) - n; + long num2 = (long)Math.Pow(10.0, (double)num); + return (long)value / num2 * num2; + } + + public static Color HslToRgb(float H, float S, float L) + { + float num3; + float num2; + float num; + if (S == 0f) + { + num3 = (num2 = (num = L)); + } + else + { + float num4 = ((double)L < 0.5) ? (L * (1f + S)) : (L + S - L * S); + float p = 2f * L - num4; + num3 = Utils.hue2rgb(p, num4, H + 0.333333343f); + num2 = Utils.hue2rgb(p, num4, H); + num = Utils.hue2rgb(p, num4, H - 0.333333343f); + } + return Color.FromArgb((int)Math.Round((double)(num3 * 255f)), (int)Math.Round((double)(num2 * 255f)), (int)Math.Round((double)(num * 255f))); + } + + private static float hue2rgb(float p, float q, float t) + { + if (t < 0f) + { + t += 1f; + } + if (t > 1f) + { + t -= 1f; + } + if (6f * t < 1f) + { + return p + (q - p) * 6f * t; + } + if (2f * t < 1f) + { + return q; + } + if (3f * t < 2f) + { + return p + (q - p) * (0.6666667f - t) * 6f; + } + return p; + } + + public static Hsl RgbToHsl(Color color) + { + return new Hsl(color.GetHue() / 360f, color.GetSaturation(), color.GetBrightness()); + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/Vfo.cs b/SDRSharper.Radio/SDRSharp.Radio/Vfo.cs new file mode 100644 index 0000000..90d082b --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/Vfo.cs @@ -0,0 +1,1109 @@ +using System; + +namespace SDRSharp.Radio +{ + public sealed class Vfo + { + private const float TimeConst = 0.001f; + + public const int DefaultCwSideTone = 600; + + public const int DefaultSSBBandwidth = 2400; + + public const int DefaultWFMBandwidth = 180000; + + public const int MinSSBAudioFrequency = 400; + + public const int MinBCAudioFrequency = 20; + + public const int MaxBCAudioFrequency = 16000; + + public const int MaxNFMBandwidth = 15000; + + public const int MinNFMAudioFrequency = 300; + + public const int EnvelopeFrequency = 6000; + + private readonly AutomaticGainControl _agc = new AutomaticGainControl(); + + private readonly AutomaticGainControl _agcX = new AutomaticGainControl(); + + private readonly AutomaticGainControl _agcY = new AutomaticGainControl(); + + private readonly AutomaticGainControl _agcEnv = new AutomaticGainControl(); + + private readonly DownConverter _downConverter = new DownConverter(); + + private readonly DownConverter _downConverter2 = new DownConverter(); + + private readonly AmDetector _amDetector = new AmDetector(); + + private readonly SamDetector _samDetector = new SamDetector(); + + private readonly FmDetector _fmDetector = new FmDetector(); + + private readonly PmDetector _pmDetector = new PmDetector(); + + private readonly SsbDetector _lsbDetector = new SsbDetector(SsbDetector.Mode.LSB); + + private readonly SsbDetector _usbDetector = new SsbDetector(SsbDetector.Mode.USB); + + private readonly CwDetector _cwDetector = new CwDetector(); + + private readonly DsbDetector _dsbDetector = new DsbDetector(); + + private readonly StereoDecoder _stereoDecoder = new StereoDecoder(); + + private readonly RdsDecoder _rdsDecoder = new RdsDecoder(); + + private IQFirFilter _realIqFilter; + + private CpxFirFilter _cpxIqFilter; + + private readonly FirFilter _audioFilter = new FirFilter(); + + private readonly FirFilter _rFilter = new FirFilter(); + + private readonly FirFilter _lFilter = new FirFilter(); + + private readonly VfoHookManager _hookManager; + + private CpxBandFilter _envFilter = new CpxBandFilter(); + + private CpxBandFilter[] _notchFilter = new CpxBandFilter[4] + { + new CpxBandFilter(), + new CpxBandFilter(), + new CpxBandFilter(), + new CpxBandFilter() + }; + + private int _notch = -1; + + private int _notchWidth; + + private int _notchFrequency; + + private DcRemover _dcRemover = new DcRemover(0.001f); + + private IQDecimator _baseBandDecimator; + + private IQDecimator _envelopeDecimator; + + private DetectorType _detectorType; + + private DetectorType _actualDetectorType; + + private WindowType _windowType; + + private double _sampleRate; + + private int _bandwidth; + + private int _frequency; + + private int _frequencyOffset; + + private int _filterOrder; + + private bool _needNewFilters; + + private int _decimationStageCount; + + private int _baseBandDecimationStageCount; + + private int _audioDecimationStageCount; + + private int _envelopeDecimationStageCount; + + private bool _needNewDecimators; + + private bool _decimationModeHasChanged; + + private int _cwToneShift; + + private bool _needConfigure; + + private bool _useAgc; + + private float _agcThreshold; + + private float _agcDecay; + + private float _agcSlope; + + private bool _agcUseHang; + + private int _squelchThreshold; + + private bool _stereo; + + private bool _filterAudio; + + private UnsafeBuffer _rawAudioBuffer; + + private unsafe float* _rawAudioPtr; + + private UnsafeBuffer _envBuf; + + private unsafe Complex* _envPtr; + + private UnsafeBuffer _rBuf; + + private UnsafeBuffer _lBuf; + + private unsafe float* _rPtr; + + private unsafe float* _lPtr; + + private DemodType _demodX; + + private DemodType _demodY; + + private float _rfGain = 0.05f; + + public DetectorType DetectorType + { + get + { + return this._detectorType; + } + set + { + if (value != this._detectorType) + { + this._decimationModeHasChanged = ((this._detectorType == DetectorType.WFM && value != DetectorType.WFM) || (this._detectorType != DetectorType.WFM && value == DetectorType.WFM)); + if (this._decimationModeHasChanged) + { + this._needNewDecimators = true; + } + this._detectorType = value; + this._needConfigure = true; + } + } + } + + public double RFgain + { + set + { + this._rfGain = (float)Math.Pow(10.0, value / 20.0); + } + } + + public float FreqErr => this._pmDetector.FreqErr; + + public DemodType DemodX + { + get + { + return this._demodX; + } + set + { + this._demodX = value; + } + } + + public DemodType DemodY + { + get + { + return this._demodY; + } + set + { + this._demodY = value; + } + } + + public int Frequency + { + get + { + return this._frequency; + } + set + { + if (this._frequency != value) + { + this._frequency = value; + this._needConfigure = true; + } + } + } + + public double DownConverterFrequency => this._downConverter.Frequency; + + public int FilterOrder + { + get + { + return this._filterOrder; + } + set + { + if (this._filterOrder != value) + { + this._filterOrder = value; + this._needNewFilters = true; + this._needConfigure = true; + } + } + } + + public double SampleRate + { + get + { + return this._sampleRate; + } + set + { + if (this._sampleRate != value) + { + this._sampleRate = value; + this._needNewDecimators = true; + this._needConfigure = true; + } + } + } + + public WindowType WindowType + { + get + { + return this._windowType; + } + set + { + if (this._windowType != value) + { + this._windowType = value; + this._needNewFilters = true; + this._needConfigure = true; + } + } + } + + public int Bandwidth + { + get + { + return this._bandwidth; + } + set + { + if (this._bandwidth != value) + { + this._bandwidth = value; + this._needNewFilters = true; + this._needConfigure = true; + } + } + } + + public int FrequencyOffset + { + get + { + return this._frequency; + } + set + { + if (this._frequencyOffset != value) + { + this._frequencyOffset = value; + this._needConfigure = true; + } + } + } + + public bool UseAGC + { + get + { + return this._useAgc; + } + set + { + this._useAgc = value; + } + } + + public float AgcThreshold + { + get + { + return this._agcThreshold; + } + set + { + if (this._agcThreshold != value) + { + this._agcThreshold = value; + this._needConfigure = true; + } + } + } + + public float AgcDecay + { + get + { + return this._agcDecay; + } + set + { + if (this._agcDecay != value) + { + this._agcDecay = value; + this._needConfigure = true; + } + } + } + + public float AgcSlope + { + get + { + return this._agcSlope; + } + set + { + if (this._agcSlope != value) + { + this._agcSlope = value; + this._needConfigure = true; + } + } + } + + public bool AgcHang + { + get + { + return this._agcUseHang; + } + set + { + if (this._agcUseHang != value) + { + this._agcUseHang = value; + this._needConfigure = true; + } + } + } + + public int SquelchThreshold + { + get + { + return this._squelchThreshold; + } + set + { + if (this._squelchThreshold != value) + { + this._squelchThreshold = value; + this._needConfigure = true; + } + } + } + + public bool IsSquelchOpen + { + get + { + if (this._actualDetectorType == DetectorType.NFM && this._fmDetector.IsSquelchOpen) + { + goto IL_0042; + } + if (this._actualDetectorType == DetectorType.AM && this._amDetector.IsSquelchOpen) + { + goto IL_0042; + } + if (this._actualDetectorType == DetectorType.SAM) + { + return this._amDetector.IsSquelchOpen; + } + return false; + IL_0042: + return true; + } + } + + public int DecimationStageCount + { + get + { + return this._decimationStageCount; + } + set + { + if (this._decimationStageCount != value) + { + this._decimationStageCount = Math.Abs(value); + this._needNewDecimators = true; + this._needConfigure = true; + this.setDecimationCount(); + } + } + } + + public int BaseBandDecimationStageCount => this._baseBandDecimationStageCount; + + public int EnvelopeDecimationStageCount => this._envelopeDecimationStageCount; + + public int CWToneShift + { + get + { + return this._cwToneShift; + } + set + { + if (this._cwToneShift != value) + { + this._cwToneShift = value; + this._needNewFilters = true; + this._needConfigure = true; + } + } + } + + public bool Stereo + { + get + { + return this._stereo; + } + set + { + if (this._stereo != value) + { + this._stereo = value; + this._needConfigure = true; + } + } + } + + public bool SignalIsStereo + { + get + { + if (this._actualDetectorType == DetectorType.WFM && this._stereo) + { + return this._stereoDecoder.IsPllLocked; + } + return false; + } + } + + public string RdsStationName => this._rdsDecoder.ProgramService; + + public string RdsStationText => this._rdsDecoder.RadioText; + + public bool FilterAudio + { + get + { + return this._filterAudio; + } + set + { + this._filterAudio = value; + this._stereoDecoder.DoFiltering = value; + } + } + + public Vfo(VfoHookManager hookManager = null) + { + this._hookManager = hookManager; + this._bandwidth = 2400; + this._filterOrder = 500; + this._needConfigure = true; + } + + public void SetNotch(int notch, int offset, int width) + { + if (this._notchFilter[notch] != null && this._notch == notch && this._notchFrequency == this._frequency + offset && this._notchWidth == width) + { + return; + } + this._notch = notch; + this._notchFrequency = offset; + this._notchWidth = width; + this._needConfigure = true; + this._needNewFilters = true; + } + + public void RdsReset() + { + this._rdsDecoder.Reset(); + } + + private void configure() + { + this._actualDetectorType = this._detectorType; + this._downConverter.SampleRate = this._sampleRate; + this._downConverter.Frequency = (double)this._frequency; + this._downConverter2.SampleRate = this._sampleRate; + this._downConverter2.Frequency = (double)(this._frequency - 6000); + if (this._needNewDecimators) + { + this.setDecimationCount(); + this._baseBandDecimator = new IQDecimator(this._baseBandDecimationStageCount, this._sampleRate, false, Utils.ProcessorCount > 1); + this._envelopeDecimator = new IQDecimator(this._envelopeDecimationStageCount, this._sampleRate, false, Utils.ProcessorCount > 1); + if (this._hookManager != null) + { + this._hookManager.SetProcessorSampleRate(ProcessorType.RawIQ, this._sampleRate); + this._hookManager.SetProcessorSampleRate(ProcessorType.FrequencyTranslatedIQ, this._sampleRate); + this._hookManager.SetProcessorSampleRate(ProcessorType.DecimatedAndFilteredIQ, this._sampleRate / (double)(1 << this._baseBandDecimationStageCount)); + this._hookManager.SetProcessorSampleRate(ProcessorType.DemodulatorOutput, this._sampleRate / (double)(1 << this._baseBandDecimationStageCount)); + this._hookManager.SetProcessorSampleRate(ProcessorType.FilteredAudioOutput, this._sampleRate / (double)(1 << this._decimationStageCount)); + } + this._needNewFilters = true; + } + if (this._needNewFilters) + { + this.initFilters(); + this._samDetector.Range = (float)(this._bandwidth / 2); + } + if (this._needNewDecimators) + { + double num = this._sampleRate / Math.Pow(2.0, (double)this._baseBandDecimationStageCount); + this._usbDetector.SampleRate = num; + this._lsbDetector.SampleRate = num; + this._cwDetector.SampleRate = num; + this._fmDetector.SampleRate = num; + this._pmDetector.SampleRate = num; + this._samDetector.SampleRate = (float)num; + this._samDetector.BandWidth = 500f; + this._samDetector.LockTime = 2f; + this._samDetector.LockTreshold = 3f; + this._stereoDecoder.Configure(this._fmDetector.SampleRate, this._audioDecimationStageCount); + this._rdsDecoder.SampleRate = this._fmDetector.SampleRate; + } + this._fmDetector.SquelchThreshold = this._squelchThreshold; + this._amDetector.SquelchThreshold = this._squelchThreshold; + this._stereoDecoder.ForceMono = !this._stereo; + switch (this._actualDetectorType) + { + case DetectorType.AM: + case DetectorType.DSB: + case DetectorType.SAM: + this._downConverter.Frequency += (double)this._frequencyOffset; + break; + case DetectorType.USB: + this._usbDetector.BfoFrequency = -this._bandwidth / 2; + this._downConverter.Frequency -= (double)this._usbDetector.BfoFrequency; + break; + case DetectorType.LSB: + this._lsbDetector.BfoFrequency = -this._bandwidth / 2; + this._downConverter.Frequency += (double)this._lsbDetector.BfoFrequency; + break; + case DetectorType.CW: + this._cwDetector.BfoFrequency = this._cwToneShift; + this._downConverter.Frequency += (double)this._frequencyOffset; + break; + case DetectorType.NFM: + this._fmDetector.Mode = FmMode.Narrow; + this._downConverter.Frequency += (double)this._frequencyOffset; + break; + case DetectorType.WFM: + this._fmDetector.Mode = FmMode.Wide; + this._downConverter.Frequency += (double)this._frequencyOffset; + break; + } + this._agc.SampleRate = this._sampleRate / Math.Pow(2.0, (double)this._decimationStageCount); + this._agc.Decay = this._agcDecay; + this._agc.Slope = this._agcSlope; + this._agc.Threshold = this._agcThreshold; + this._agc.UseHang = this._agcUseHang; + this._agcX.SampleRate = this._sampleRate / Math.Pow(2.0, (double)this._decimationStageCount); + this._agcX.Decay = this._agcDecay; + this._agcX.Slope = this._agcSlope; + this._agcX.Threshold = this._agcThreshold; + this._agcX.UseHang = this._agcUseHang; + this._agcY.SampleRate = this._sampleRate / Math.Pow(2.0, (double)this._decimationStageCount); + this._agcY.Decay = this._agcDecay; + this._agcY.Slope = this._agcSlope; + this._agcY.Threshold = this._agcThreshold; + this._agcY.UseHang = this._agcUseHang; + this._agcEnv.SampleRate = this._sampleRate / Math.Pow(2.0, (double)this._decimationStageCount); + this._agcEnv.Decay = this._agcDecay; + this._agcEnv.Slope = this._agcSlope; + this._agcEnv.Threshold = this._agcThreshold; + this._agcEnv.UseHang = this._agcUseHang; + this._decimationModeHasChanged = false; + this._needNewDecimators = false; + this._needNewFilters = false; + } + + private void setDecimationCount() + { + if (this._actualDetectorType == DetectorType.WFM) + { + double num = this._sampleRate / Math.Pow(2.0, (double)this._decimationStageCount); + this._audioDecimationStageCount = 0; + while (num * Math.Pow(2.0, (double)this._audioDecimationStageCount) < 180000.0 && this._audioDecimationStageCount < this._decimationStageCount) + { + this._audioDecimationStageCount++; + } + this._baseBandDecimationStageCount = this._decimationStageCount - this._audioDecimationStageCount; + } + else + { + this._baseBandDecimationStageCount = this._decimationStageCount; + this._audioDecimationStageCount = 0; + } + long num2 = (long)this._sampleRate; + this._envelopeDecimationStageCount = 0; + while (this._envelopeDecimationStageCount < 16) + { + num2 /= 2; + if (num2 < 48000) + { + break; + } + this._envelopeDecimationStageCount++; + } + Console.WriteLine("decimation=" + this._decimationStageCount.ToString() + ", basebandDecimation=" + this._baseBandDecimationStageCount.ToString() + ", audioDecimation=" + this._audioDecimationStageCount.ToString()); + } + + private void initFilters() + { + int num = this._bandwidth / 2; + int filterOrder = (this._actualDetectorType == DetectorType.WFM) ? 60 : this._filterOrder; + float[] coefficients = FilterBuilder.MakeLowPassKernel(this._sampleRate / Math.Pow(2.0, (double)this._baseBandDecimationStageCount), filterOrder, (double)num, this._windowType); + if (this._realIqFilter == null) + { + this._realIqFilter = new IQFirFilter(coefficients, this._actualDetectorType == DetectorType.WFM, 1); + } + else + { + this._realIqFilter.SetCoefficients(coefficients); + } + if (this._cpxIqFilter == null) + { + this._cpxIqFilter = new CpxFirFilter(coefficients); + } + else + { + this._cpxIqFilter.SetCoefficients(coefficients); + } + this._envFilter.MakeCoefficients(this._sampleRate / Math.Pow(2.0, (double)this._envelopeDecimationStageCount), 6000, num, this._windowType, false); + if (this._notch >= 0) + { + this._notchFilter[this._notch].MakeCoefficients(this._sampleRate / Math.Pow(2.0, (double)this._baseBandDecimationStageCount), this._notchFrequency, this._notchWidth, this._windowType, true); + this._notch = -1; + } + int num2 = 0; + int num3 = 10000; + switch (this._actualDetectorType) + { + case DetectorType.AM: + case DetectorType.SAM: + num2 = 20; + num3 = Math.Min(this._bandwidth / 2, 16000); + break; + case DetectorType.CW: + num2 = this._cwToneShift - this._bandwidth / 2; + num3 = this._cwToneShift + this._bandwidth / 2; + break; + case DetectorType.LSB: + case DetectorType.USB: + num2 = 400; + num3 = this._bandwidth; + break; + case DetectorType.DSB: + num2 = 400; + num3 = this._bandwidth / 2; + break; + case DetectorType.NFM: + num2 = 300; + num3 = this._bandwidth / 2; + break; + } + coefficients = FilterBuilder.MakeBandPassKernel(this._sampleRate / Math.Pow(2.0, (double)(this._baseBandDecimationStageCount + this._audioDecimationStageCount)), this._filterOrder, (double)num2, (double)num3, this._windowType); + this._audioFilter.SetCoefficients(coefficients); + this._rFilter.SetCoefficients(coefficients); + this._lFilter.SetCoefficients(coefficients); + } + + public unsafe int ProcessBuffer(Complex* iqBuffer, float* audioBuffer, int iqLen, float* xBuf, float* yBuf, float* envelopBuf) + { + if (this._needConfigure) + { + this.configure(); + this._needConfigure = false; + } + if (this._demodX == DemodType.Envelope || this._demodY == DemodType.Envelope || envelopBuf != null) + { + if (this._envBuf == null || this._envBuf.Length != iqLen) + { + if (this._envBuf != null) + { + this._envBuf.Dispose(); + } + this._envBuf = UnsafeBuffer.Create(iqLen, sizeof(Complex)); + this._envPtr = (Complex*)(void*)this._envBuf; + } + Utils.Memcpy(this._envPtr, iqBuffer, iqLen * sizeof(Complex)); + this._downConverter2.Process(this._envPtr, iqLen); + int num = iqLen; + if (this._envelopeDecimator.StageCount > 0) + { + this._envelopeDecimator.Process(this._envPtr, iqLen); + num = iqLen >> this._envelopeDecimationStageCount; + } + this._envFilter.Process(this._envPtr, num); + if (this._demodX == DemodType.Envelope) + { + for (int i = 0; i < num; i++) + { + xBuf[i] = this._envPtr[i].Real * 0.005f; + } + this.doAgcAndGain(this._agcX, xBuf, num); + if (this._useAgc) + { + for (int j = 0; j < num; j++) + { + xBuf[j] *= 0.33f; + } + } + } + if (this._demodY == DemodType.Envelope) + { + for (int k = 0; k < num; k++) + { + yBuf[k] = this._envPtr[k].Imag * 0.005f; + } + this.doAgcAndGain(this._agcY, yBuf, num); + if (this._useAgc) + { + for (int l = 0; l < num; l++) + { + yBuf[l] *= 0.33f; + } + } + } + if (envelopBuf != null) + { + for (int m = 0; m < num; m++) + { + envelopBuf[m] = this._envPtr[m].Imag * 0.005f; + } + this.doAgcAndGain(this._agcEnv, envelopBuf, num); + if (this._useAgc) + { + for (int n = 0; n < num; n++) + { + envelopBuf[n] *= 0.33f; + } + } + } + } + this._downConverter.Process(iqBuffer, iqLen); + if (this._hookManager != null) + { + this._hookManager.ProcessFrequencyTranslatedIQ(iqBuffer, iqLen); + } + int num2 = iqLen; + if (this._baseBandDecimator.StageCount > 0) + { + this._baseBandDecimator.Process(iqBuffer, iqLen); + num2 = iqLen >> this._baseBandDecimationStageCount; + } + if (!Utils.FastConvolve) + { + this._realIqFilter.Process(iqBuffer, num2); + } + else + { + this._cpxIqFilter.Process(iqBuffer, num2); + } + if (this._hookManager != null) + { + this._hookManager.ProcessDecimatedAndFilteredIQ(iqBuffer, num2); + } + for (int num3 = 0; num3 <= 3; num3++) + { + if (this._notchFilter[num3] != null && this._notchFilter[num3].Width > 0) + { + this._notchFilter[num3].Process(iqBuffer, num2); + } + } + if (this._actualDetectorType == DetectorType.RAW) + { + Utils.Memcpy(audioBuffer, iqBuffer, num2 * sizeof(Complex)); + } + else + { + if (this._rawAudioBuffer == null || this._rawAudioBuffer.Length != num2) + { + if (this._rawAudioBuffer != null) + { + this._rawAudioBuffer.Dispose(); + } + this._rawAudioBuffer = UnsafeBuffer.Create(num2, 4); + this._rawAudioPtr = (float*)(void*)this._rawAudioBuffer; + } + if (this.DetectorType == DetectorType.SAM && (this._rBuf == null || this._rBuf.Length != num2)) + { + if (this._rBuf != null) + { + this._rBuf.Dispose(); + } + if (this._lBuf != null) + { + this._lBuf.Dispose(); + } + this._rBuf = UnsafeBuffer.Create(num2, 4); + this._lBuf = UnsafeBuffer.Create(num2, 4); + this._rPtr = (float*)(void*)this._rBuf; + this._lPtr = (float*)(void*)this._lBuf; + } + if (this._actualDetectorType != DetectorType.WFM) + { + Vfo.scaleIQ(iqBuffer, num2); + } + } + int num4 = num2 * 2; + this.demodulate(iqBuffer, xBuf, yBuf, num2); + if (this._demodX == DemodType.AM) + { + this.doAgcAndGain(this._agcX, xBuf, num2); + } + if (this._demodY == DemodType.AM) + { + this.doAgcAndGain(this._agcY, yBuf, num2); + } + if (this._actualDetectorType == DetectorType.RAW) + { + return num2; + } + if (this._actualDetectorType == DetectorType.SAM && this._stereo) + { + if (Utils.Chk1) + { + if (this._filterAudio) + { + this._rFilter.Process(this._rPtr, num2); + } + this.doAgcAndGain(this._agcX, this._rPtr, num2); + if (this._filterAudio) + { + this._lFilter.Process(this._lPtr, num2); + } + this.doAgcAndGain(this._agcY, this._lPtr, num2); + } + int num5 = 0; + for (int num6 = 0; num6 < num2; num6++) + { + audioBuffer[num5++] = this._rPtr[num6]; + audioBuffer[num5++] = this._lPtr[num6]; + } + if (!Utils.Chk1) + { + if (this._filterAudio) + { + this._audioFilter.Process(audioBuffer, num2 * 2); + } + this.doAgcAndGain(this._agc, audioBuffer, num2 * 2); + } + return num2; + } + if (this._hookManager != null) + { + this._hookManager.ProcessDemodulatorOutput(this._rawAudioPtr, num2); + } + if (this._actualDetectorType != DetectorType.WFM) + { + if (this._filterAudio) + { + this._audioFilter.Process(this._rawAudioPtr, num2); + } + if (this._actualDetectorType != 0) + { + this.doAgcOrGain(this._agc, this._rawAudioPtr, num2); + } + } + if (this._actualDetectorType == DetectorType.AM) + { + this._dcRemover.Process(this._rawAudioPtr, num2); + } + if (this._actualDetectorType != DetectorType.WFM) + { + Vfo.monoToStereo(this._rawAudioPtr, audioBuffer, num2); + } + else + { + this._rdsDecoder.Process(this._rawAudioPtr, num2); + this._stereoDecoder.Process(this._rawAudioPtr, audioBuffer, num2); + num4 >>= this._audioDecimationStageCount; + } + if (this._hookManager != null) + { + this._hookManager.ProcessFilteredAudioOutput(audioBuffer, num4); + } + return num2; + } + + private unsafe void doAgcOrGain(AutomaticGainControl agc, float* buffer, int length) + { + if (this._useAgc) + { + agc.Process(buffer, length); + } + else + { + this.DoRFgain(buffer, length); + } + } + + private unsafe void doAgcAndGain(AutomaticGainControl agc, float* buffer, int length) + { + if (this._useAgc) + { + agc.Process(buffer, length); + } + this.DoRFgain(buffer, length); + } + + private unsafe void DoRFgain(float* buffer, int length) + { + for (int i = 0; i < length; i++) + { + buffer[i] *= this._rfGain; + } + } + + private unsafe static void scaleIQ(Complex* buffer, int length) + { + for (int i = 0; i < length; i++) + { + buffer[i].Real *= 0.01f; + buffer[i].Imag *= 0.01f; + } + } + + private unsafe static void monoToStereo(float* input, float* output, int inputLength) + { + for (int i = 0; i < inputLength; i++) + { + float* intPtr = output; + output = intPtr + 1; + *intPtr = *input; + float* intPtr2 = output; + output = intPtr2 + 1; + *intPtr2 = *input; + input++; + } + } + + private unsafe void demodulate(Complex* iq, float* xBuf, float* yBuf, int length) + { + switch (this._demodX) + { + case DemodType.AM: + this._amDetector.Demodulate(iq, xBuf, length); + break; + case DemodType.FM: + this._fmDetector.Demodulate(iq, xBuf, length); + break; + case DemodType.PM: + this._pmDetector.Demodulate(iq, xBuf, length); + break; + case DemodType.IQ: + for (int i = 0; i < length; i++) + { + xBuf[i] = iq[i].Real; + } + break; + } + if (this._demodY == this._demodX && this.DemodX != 0) + { + Utils.Memcpy(yBuf, xBuf, length * 4); + } + else + { + switch (this._demodY) + { + case DemodType.AM: + this._amDetector.Demodulate(iq, yBuf, length); + break; + case DemodType.FM: + this._fmDetector.Demodulate(iq, yBuf, length); + break; + case DemodType.PM: + this._pmDetector.Demodulate(iq, yBuf, length); + break; + case DemodType.IQ: + for (int j = 0; j < length; j++) + { + yBuf[j] = iq[j].Real; + } + break; + } + } + switch (this._actualDetectorType) + { + case DetectorType.RAW: + break; + case DetectorType.NFM: + case DetectorType.WFM: + if (this._demodX == DemodType.FM) + { + Utils.Memcpy(this._rawAudioPtr, xBuf, length * 4); + } + else if (this._demodY == DemodType.FM) + { + Utils.Memcpy(this._rawAudioPtr, yBuf, length * 4); + } + else + { + this._fmDetector.Demodulate(iq, this._rawAudioPtr, length); + } + break; + case DetectorType.AM: + if (this._demodX == DemodType.AM) + { + Utils.Memcpy(this._rawAudioPtr, xBuf, length * 4); + } + else if (this._demodY == DemodType.AM) + { + Utils.Memcpy(this._rawAudioPtr, yBuf, length * 4); + } + else + { + this._amDetector.Demodulate(iq, this._rawAudioPtr, length); + } + break; + case DetectorType.SAM: + if (!this._stereo) + { + this._samDetector.Demodulate(iq, this._rawAudioPtr, length, false, false); + } + else + { + this._samDetector.Demodulate(iq, this._rPtr, this._lPtr, length); + } + break; + case DetectorType.DSB: + this._dsbDetector.Demodulate(iq, this._rawAudioPtr, length); + break; + case DetectorType.LSB: + this._lsbDetector.Demodulate(iq, this._rawAudioPtr, length); + break; + case DetectorType.USB: + this._usbDetector.Demodulate(iq, this._rawAudioPtr, length); + break; + case DetectorType.CW: + this._cwDetector.Demodulate(iq, this._rawAudioPtr, length); + break; + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/VfoHookManager.cs b/SDRSharper.Radio/SDRSharp.Radio/VfoHookManager.cs new file mode 100644 index 0000000..459c452 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/VfoHookManager.cs @@ -0,0 +1,192 @@ +using System.Collections.Generic; + +namespace SDRSharp.Radio +{ + public class VfoHookManager + { + private readonly List _filteredAudioProcessors = new List(); + + private readonly List _demodulatorOutputProcessors = new List(); + + private readonly List _rawIQProcessors = new List(); + + private readonly List _frequencyTranslatedIQProcessors = new List(); + + private readonly List _decimatedAndFilteredIQProcessors = new List(); + + public Vfo Vfo + { + get; + set; + } + + public void RegisterStreamHook(object hook, ProcessorType processorType) + { + switch (processorType) + { + case ProcessorType.RawIQ: + lock (this._rawIQProcessors) + { + this._rawIQProcessors.Add((IIQProcessor)hook); + } + break; + case ProcessorType.FrequencyTranslatedIQ: + lock (this._frequencyTranslatedIQProcessors) + { + this._frequencyTranslatedIQProcessors.Add((IIQProcessor)hook); + } + break; + case ProcessorType.DecimatedAndFilteredIQ: + lock (this._decimatedAndFilteredIQProcessors) + { + this._decimatedAndFilteredIQProcessors.Add((IIQProcessor)hook); + } + break; + case ProcessorType.DemodulatorOutput: + lock (this._demodulatorOutputProcessors) + { + this._demodulatorOutputProcessors.Add((IRealProcessor)hook); + } + break; + case ProcessorType.FilteredAudioOutput: + lock (this._filteredAudioProcessors) + { + this._filteredAudioProcessors.Add((IRealProcessor)hook); + } + break; + } + } + + public void UnregisterStreamHook(object hook) + { + if (hook != null) + { + if (hook is IIQProcessor) + { + IIQProcessor item = (IIQProcessor)hook; + lock (this._rawIQProcessors) + { + this._rawIQProcessors.Remove(item); + } + lock (this._frequencyTranslatedIQProcessors) + { + this._frequencyTranslatedIQProcessors.Remove(item); + } + lock (this._decimatedAndFilteredIQProcessors) + { + this._decimatedAndFilteredIQProcessors.Remove(item); + } + } + else if (hook is IRealProcessor) + { + IRealProcessor item2 = (IRealProcessor)hook; + lock (this._demodulatorOutputProcessors) + { + this._demodulatorOutputProcessors.Remove(item2); + } + lock (this._filteredAudioProcessors) + { + this._filteredAudioProcessors.Remove(item2); + } + } + } + } + + public void SetProcessorSampleRate(ProcessorType processorType, double sampleRate) + { + switch (processorType) + { + case ProcessorType.RawIQ: + this.SetSampleRate(this._rawIQProcessors, sampleRate); + break; + case ProcessorType.FrequencyTranslatedIQ: + this.SetSampleRate(this._frequencyTranslatedIQProcessors, sampleRate); + break; + case ProcessorType.DecimatedAndFilteredIQ: + this.SetSampleRate(this._decimatedAndFilteredIQProcessors, sampleRate); + break; + case ProcessorType.DemodulatorOutput: + this.SetSampleRate(this._demodulatorOutputProcessors, sampleRate); + break; + case ProcessorType.FilteredAudioOutput: + this.SetSampleRate(this._filteredAudioProcessors, sampleRate); + break; + } + } + + public unsafe void ProcessRawIQ(Complex* buffer, int length) + { + this.ProcessHooks(this._rawIQProcessors, buffer, length); + } + + public unsafe void ProcessDecimatedAndFilteredIQ(Complex* buffer, int length) + { + this.ProcessHooks(this._decimatedAndFilteredIQProcessors, buffer, length); + } + + public unsafe void ProcessFrequencyTranslatedIQ(Complex* buffer, int length) + { + this.ProcessHooks(this._frequencyTranslatedIQProcessors, buffer, length); + } + + public unsafe void ProcessDemodulatorOutput(float* buffer, int length) + { + this.ProcessHooks(this._demodulatorOutputProcessors, buffer, length); + } + + public unsafe void ProcessFilteredAudioOutput(float* buffer, int length) + { + this.ProcessHooks(this._filteredAudioProcessors, buffer, length); + } + + private void SetSampleRate(List processors, double sampleRate) + { + lock (processors) + { + for (int i = 0; i < processors.Count; i++) + { + processors[i].SampleRate = sampleRate; + } + } + } + + private void SetSampleRate(List processors, double sampleRate) + { + lock (processors) + { + for (int i = 0; i < processors.Count; i++) + { + processors[i].SampleRate = sampleRate; + } + } + } + + private unsafe void ProcessHooks(List processors, Complex* buffer, int length) + { + lock (processors) + { + for (int i = 0; i < processors.Count; i++) + { + if (processors[i].Enabled) + { + processors[i].Process(buffer, length); + } + } + } + } + + private unsafe void ProcessHooks(List processors, float* buffer, int length) + { + lock (processors) + { + for (int i = 0; i < processors.Count; i++) + { + if (processors[i].Enabled) + { + processors[i].Process(buffer, length); + } + } + } + } + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/WindowType.cs b/SDRSharper.Radio/SDRSharp.Radio/WindowType.cs new file mode 100644 index 0000000..27663f3 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/WindowType.cs @@ -0,0 +1,13 @@ +namespace SDRSharp.Radio +{ + public enum WindowType + { + None, + Hamming, + Blackman, + BlackmanHarris4, + BlackmanHarris7, + HannPoisson, + Youssef + } +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/dLOFrequencyChangeAccepted.cs b/SDRSharper.Radio/SDRSharp.Radio/dLOFrequencyChangeAccepted.cs new file mode 100644 index 0000000..b00d0a9 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/dLOFrequencyChangeAccepted.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio +{ + public delegate void dLOFrequencyChangeAccepted(); +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/dLOFrequencyChanged.cs b/SDRSharper.Radio/SDRSharp.Radio/dLOFrequencyChanged.cs new file mode 100644 index 0000000..254f170 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/dLOFrequencyChanged.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio +{ + public delegate void dLOFrequencyChanged(int frequency); +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/dProhibitLOChanges.cs b/SDRSharper.Radio/SDRSharp.Radio/dProhibitLOChanges.cs new file mode 100644 index 0000000..359dcd4 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/dProhibitLOChanges.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio +{ + public delegate void dProhibitLOChanges(); +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/dSampleRateChanged.cs b/SDRSharper.Radio/SDRSharp.Radio/dSampleRateChanged.cs new file mode 100644 index 0000000..9dafc1a --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/dSampleRateChanged.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio +{ + public delegate void dSampleRateChanged(int newSamplerate); +} diff --git a/SDRSharper.Radio/SDRSharp.Radio/dTuneFrequencyChanged.cs b/SDRSharper.Radio/SDRSharp.Radio/dTuneFrequencyChanged.cs new file mode 100644 index 0000000..99cbb56 --- /dev/null +++ b/SDRSharper.Radio/SDRSharp.Radio/dTuneFrequencyChanged.cs @@ -0,0 +1,4 @@ +namespace SDRSharp.Radio +{ + public delegate void dTuneFrequencyChanged(int frequency); +} diff --git a/SDRSharper.sln b/SDRSharper.sln new file mode 100644 index 0000000..09d70ce --- /dev/null +++ b/SDRSharper.sln @@ -0,0 +1,123 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27428.2005 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDRSharper", "SDRSharper\SDRSharper.csproj", "{2410E537-F98E-41A6-BD14-CDD209550D37}" + ProjectSection(ProjectDependencies) = postProject + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B} = {6D7BB10F-7F11-4661-A425-B55EAB00AB1B} + {1AEB0726-F178-4E46-8060-6D03136C031E} = {1AEB0726-F178-4E46-8060-6D03136C031E} + {A9303279-7855-4867-AA5D-91BC5DD98346} = {A9303279-7855-4867-AA5D-91BC5DD98346} + {E732C8AC-E488-4A56-BCEB-DA66374422AA} = {E732C8AC-E488-4A56-BCEB-DA66374422AA} + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373} = {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDRSharp.Radio", "SDRSharper.Radio\SDRSharp.Radio.csproj", "{E732C8AC-E488-4A56-BCEB-DA66374422AA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDRSharp.CollapsiblePanel", "SDRSharper.CollapsiblePanel\SDRSharp.CollapsiblePanel.csproj", "{6D7BB10F-7F11-4661-A425-B55EAB00AB1B}" + ProjectSection(ProjectDependencies) = postProject + {1AEB0726-F178-4E46-8060-6D03136C031E} = {1AEB0726-F178-4E46-8060-6D03136C031E} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDRSharp.Common", "SDRSharper.Common\SDRSharp.Common.csproj", "{A9303279-7855-4867-AA5D-91BC5DD98346}" + ProjectSection(ProjectDependencies) = postProject + {E732C8AC-E488-4A56-BCEB-DA66374422AA} = {E732C8AC-E488-4A56-BCEB-DA66374422AA} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDRSharp.Controls", "SDRSharper.Controls\SDRSharp.Controls.csproj", "{1AEB0726-F178-4E46-8060-6D03136C031E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SDRSharp.PanView", "SDRSharper.PanView\SDRSharp.PanView.csproj", "{DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}" + ProjectSection(ProjectDependencies) = postProject + {E732C8AC-E488-4A56-BCEB-DA66374422AA} = {E732C8AC-E488-4A56-BCEB-DA66374422AA} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2410E537-F98E-41A6-BD14-CDD209550D37}.Debug|Any CPU.ActiveCfg = Debug|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Debug|Any CPU.Build.0 = Debug|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Debug|x64.ActiveCfg = Debug|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Debug|x64.Build.0 = Debug|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Debug|x86.ActiveCfg = Debug|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Debug|x86.Build.0 = Debug|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Release|Any CPU.ActiveCfg = Release|x86 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Release|Any CPU.Build.0 = Release|x86 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Release|x64.ActiveCfg = Release|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Release|x64.Build.0 = Release|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Release|x86.ActiveCfg = Release|x64 + {2410E537-F98E-41A6-BD14-CDD209550D37}.Release|x86.Build.0 = Release|x64 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Debug|Any CPU.ActiveCfg = Debug|x64 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Debug|Any CPU.Build.0 = Debug|x64 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Debug|x64.ActiveCfg = Debug|x86 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Debug|x64.Build.0 = Debug|x86 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Debug|x86.ActiveCfg = Debug|x64 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Debug|x86.Build.0 = Debug|x64 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Release|Any CPU.Build.0 = Release|Any CPU + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Release|x64.ActiveCfg = Release|x86 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Release|x64.Build.0 = Release|x86 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Release|x86.ActiveCfg = Release|x64 + {E732C8AC-E488-4A56-BCEB-DA66374422AA}.Release|x86.Build.0 = Release|x64 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Debug|x64.ActiveCfg = Debug|x86 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Debug|x64.Build.0 = Debug|x86 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Debug|x86.ActiveCfg = Debug|x86 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Debug|x86.Build.0 = Debug|x86 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Release|Any CPU.ActiveCfg = Release|x86 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Release|Any CPU.Build.0 = Release|x86 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Release|x64.ActiveCfg = Release|x86 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Release|x64.Build.0 = Release|x86 + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Release|x86.ActiveCfg = Release|Any CPU + {6D7BB10F-7F11-4661-A425-B55EAB00AB1B}.Release|x86.Build.0 = Release|Any CPU + {A9303279-7855-4867-AA5D-91BC5DD98346}.Debug|Any CPU.ActiveCfg = Debug|x64 + {A9303279-7855-4867-AA5D-91BC5DD98346}.Debug|Any CPU.Build.0 = Debug|x64 + {A9303279-7855-4867-AA5D-91BC5DD98346}.Debug|x64.ActiveCfg = Debug|x86 + {A9303279-7855-4867-AA5D-91BC5DD98346}.Debug|x64.Build.0 = Debug|x86 + {A9303279-7855-4867-AA5D-91BC5DD98346}.Debug|x86.ActiveCfg = Debug|Any CPU + {A9303279-7855-4867-AA5D-91BC5DD98346}.Debug|x86.Build.0 = Debug|Any CPU + {A9303279-7855-4867-AA5D-91BC5DD98346}.Release|Any CPU.ActiveCfg = Release|x86 + {A9303279-7855-4867-AA5D-91BC5DD98346}.Release|Any CPU.Build.0 = Release|x86 + {A9303279-7855-4867-AA5D-91BC5DD98346}.Release|x64.ActiveCfg = Release|x86 + {A9303279-7855-4867-AA5D-91BC5DD98346}.Release|x64.Build.0 = Release|x86 + {A9303279-7855-4867-AA5D-91BC5DD98346}.Release|x86.ActiveCfg = Release|Any CPU + {A9303279-7855-4867-AA5D-91BC5DD98346}.Release|x86.Build.0 = Release|Any CPU + {1AEB0726-F178-4E46-8060-6D03136C031E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1AEB0726-F178-4E46-8060-6D03136C031E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1AEB0726-F178-4E46-8060-6D03136C031E}.Debug|x64.ActiveCfg = Debug|Any CPU + {1AEB0726-F178-4E46-8060-6D03136C031E}.Debug|x64.Build.0 = Debug|Any CPU + {1AEB0726-F178-4E46-8060-6D03136C031E}.Debug|x86.ActiveCfg = Debug|x86 + {1AEB0726-F178-4E46-8060-6D03136C031E}.Debug|x86.Build.0 = Debug|x86 + {1AEB0726-F178-4E46-8060-6D03136C031E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1AEB0726-F178-4E46-8060-6D03136C031E}.Release|Any CPU.Build.0 = Release|Any CPU + {1AEB0726-F178-4E46-8060-6D03136C031E}.Release|x64.ActiveCfg = Release|x86 + {1AEB0726-F178-4E46-8060-6D03136C031E}.Release|x64.Build.0 = Release|x86 + {1AEB0726-F178-4E46-8060-6D03136C031E}.Release|x86.ActiveCfg = Release|Any CPU + {1AEB0726-F178-4E46-8060-6D03136C031E}.Release|x86.Build.0 = Release|Any CPU + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Debug|x64.ActiveCfg = Debug|Any CPU + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Debug|x64.Build.0 = Debug|Any CPU + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Debug|x86.ActiveCfg = Debug|x86 + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Debug|x86.Build.0 = Debug|x86 + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Release|Any CPU.Build.0 = Release|Any CPU + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Release|x64.ActiveCfg = Release|x86 + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Release|x64.Build.0 = Release|x86 + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Release|x86.ActiveCfg = Release|Any CPU + {DA8F0AD0-73BE-4FA0-B8AE-315BE25DF373}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FBDEF464-0574-4888-8858-903F55689593} + EndGlobalSection +EndGlobal diff --git a/SDRSharper/App.config b/SDRSharper/App.config new file mode 100644 index 0000000..eb0edc7 --- /dev/null +++ b/SDRSharper/App.config @@ -0,0 +1,86 @@ + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDRSharper/Decompiled with ILSpy.txt b/SDRSharper/Decompiled with ILSpy.txt new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/MainForm.Designer.cs b/SDRSharper/MainForm.Designer.cs new file mode 100644 index 0000000..f1ff124 --- /dev/null +++ b/SDRSharper/MainForm.Designer.cs @@ -0,0 +1,4936 @@ +using SDRSharp.PanView; + +namespace SDRSharp +{ + public partial class MainForm : Telerik.WinControls.UI.RadForm, global::SDRSharp.Common.ISharpControl, global::System.ComponentModel.INotifyPropertyChanged + { + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); + this.openDlg = new System.Windows.Forms.OpenFileDialog(); + this.panSplitContainer = new System.Windows.Forms.SplitContainer(); + this.spectrumAnalyzer = new SDRSharp.PanView.SpectrumAnalyzer(); + this.panSplitContainer2 = new System.Windows.Forms.SplitContainer(); + this.waterfall = new SDRSharp.PanView.Waterfall(); + this.panSplitContainer3 = new System.Windows.Forms.SplitContainer(); + this.panSplitContainer4 = new System.Windows.Forms.SplitContainer(); + this.ifAnalyzer = new SDRSharp.PanView.SpectrumAnalyzer(); + this.ifWaterfall = new SDRSharp.PanView.Waterfall(); + this.panSplitContainer5 = new System.Windows.Forms.SplitContainer(); + this.panelAG = new System.Windows.Forms.Panel(); + this.btnShowLog = new SDRSharp.Controls.gButton(); + this.tbIntensityAg = new SDRSharp.Controls.gSliderV(); + this.toolTip = new System.Windows.Forms.ToolTip(this.components); + this.frequencyNumericUpDown = new SDRSharp.PanView.Indicator(); + this.audioButton = new SDRSharp.Controls.gButton(); + this.tbContrastAg = new SDRSharp.Controls.gSliderV(); + this.tbAgSpeed = new SDRSharp.Controls.gSliderV(); + this.playBar = new SDRSharp.Controls.gProgress(); + this.fftSpeedTrackBar = new SDRSharp.Controls.gSliderV(); + this.tbFloorSA = new SDRSharp.Controls.gSliderV(); + this.tbSpanSA = new SDRSharp.Controls.gSliderV(); + this.tbContrastWv = new SDRSharp.Controls.gSliderV(); + this.gBsetScale = new SDRSharp.Controls.gButton(); + this.fftZoomCombo = new SDRSharp.Controls.gCombo(); + this.chkLock = new SDRSharp.Controls.gButton(); + this.cmbBandWidth = new SDRSharp.Controls.gCombo(); + this.iqSourceComboBox = new SDRSharp.Controls.gCombo(); + this.playStopButton = new SDRSharp.Controls.gButton(); + this.configureSourceButton = new SDRSharp.Controls.gButton(); + this.audioGainTrackBar = new SDRSharp.Controls.gSliderH(); + this.scope = new SDRSharp.PanView.Scope(); + this.fastFftCheckBox = new SDRSharp.Controls.gButton(); + this.bftResolutionComboBox = new SDRSharp.Controls.gCombo(); + this.chkBaseBand = new SDRSharp.Controls.gButton(); + this.latencyNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.fftWindowComboBox = new SDRSharp.Controls.gCombo(); + this.chkFastConv = new SDRSharp.Controls.gButton(); + this.filterOrderNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.filterTypeComboBox = new SDRSharp.Controls.gCombo(); + this.swapIQCheckBox = new SDRSharp.Controls.gButton(); + this.squelchNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.useSquelchCheckBox = new SDRSharp.Controls.gButton(); + this.stepSizeComboBox = new SDRSharp.Controls.gCombo(); + this.snapFrequencyCheckBox = new SDRSharp.Controls.gButton(); + this.cmbDbm = new SDRSharp.Controls.gCombo(); + this.agcCheckBox = new SDRSharp.Controls.gButton(); + this.rawRadioButton = new SDRSharp.Controls.gButton(); + this.correctIQCheckBox = new SDRSharp.Controls.gButton(); + this.gBexpand = new SDRSharp.Controls.gButton(); + this.tbvPeakRel = new SDRSharp.Controls.gSliderV(); + this.tbvPeakDelay = new SDRSharp.Controls.gSliderV(); + this.tbvAudioAvg = new SDRSharp.Controls.gSliderV(); + this.tbvAudioRel = new SDRSharp.Controls.gSliderV(); + this.tbvCarrierAvg = new SDRSharp.Controls.gSliderV(); + this.tbTrigL = new SDRSharp.Controls.gSliderH(); + this.cmbHchannel = new SDRSharp.Controls.gCombo(); + this.tbGain = new SDRSharp.Controls.gSliderH(); + this.tbAverage = new SDRSharp.Controls.gSliderH(); + this.chkHrunDC = new SDRSharp.Controls.gButton(); + this.chkAver = new SDRSharp.Controls.gButton(); + this.chkVrunDC = new SDRSharp.Controls.gButton(); + this.chkHinvert = new SDRSharp.Controls.gButton(); + this.chkXY = new SDRSharp.Controls.gButton(); + this.chkVinvert = new SDRSharp.Controls.gButton(); + this.cmbTim = new SDRSharp.Controls.gCombo(); + this.cmbHor = new SDRSharp.Controls.gCombo(); + this.cmbVer = new SDRSharp.Controls.gCombo(); + this.tbRFgain = new SDRSharp.Controls.gSliderH(); + this.cmbVchannel = new SDRSharp.Controls.gCombo(); + this.gBexpandScope = new SDRSharp.Controls.gButton(); + this.cwShiftNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.outputDeviceComboBox = new SDRSharp.Controls.gCombo(); + this.inputDeviceComboBox = new SDRSharp.Controls.gCombo(); + this.sampleRateComboBox = new SDRSharp.Controls.gCombo(); + this.filterAudioCheckBox = new SDRSharp.Controls.gButton(); + this.fmStereoCheckBox = new SDRSharp.Controls.gButton(); + this.chkNotch0 = new SDRSharp.Controls.gButton(); + this.chkNLimiter = new SDRSharp.Controls.gButton(); + this.tbNLRatio = new SDRSharp.Controls.gSliderH(); + this.tbNLTreshold = new SDRSharp.Controls.gSliderH(); + this.agcThresholdNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.agcDecayNumericUpDown = new SDRSharp.Controls.gSliderH(); + this.agcSlopeNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.agcUseHangCheckBox = new SDRSharp.Controls.gButton(); + this.cmbAudio = new SDRSharp.Controls.gCombo(); + this.chkIF = new SDRSharp.Controls.gButton(); + this.chkWF = new SDRSharp.Controls.gButton(); + this.dbmOffsetUpDown = new SDRSharp.Controls.gUpDown(); + this.chkAutoSize = new SDRSharp.Controls.gButton(); + this.frequencyShiftNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.markPeaksCheckBox = new SDRSharp.Controls.gButton(); + this.frequencyShiftCheckBox = new SDRSharp.Controls.gButton(); + this.fftResolutionComboBox = new SDRSharp.Controls.gCombo(); + this.fftAverageUpDown = new SDRSharp.Controls.gUpDown(); + this.useTimestampsCheckBox = new SDRSharp.Controls.gButton(); + this.chkIndepSideband = new SDRSharp.Controls.gButton(); + this.gradientButtonSA = new SDRSharp.Controls.gButton(); + this.remDcSlider = new SDRSharp.Controls.gSliderH(); + this.label50 = new System.Windows.Forms.Label(); + this.label49 = new System.Windows.Forms.Label(); + this.label44 = new System.Windows.Forms.Label(); + this.audiogram = new SDRSharp.PanView.Waterfall(); + this.afAnalyzer = new SDRSharp.PanView.SpectrumAnalyzer(); + this.wideScope = new SDRSharp.PanView.Scope(); + this.afWaterfall = new SDRSharp.PanView.Waterfall(); + this.label31 = new System.Windows.Forms.Label(); + this.label29 = new System.Windows.Forms.Label(); + this.label30 = new System.Windows.Forms.Label(); + this.labSpeed = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.label32 = new System.Windows.Forms.Label(); + this.labInt = new System.Windows.Forms.Label(); + this.labCon = new System.Windows.Forms.Label(); + this.MnuSA = new System.Windows.Forms.ContextMenuStrip(this.components); + this.mnuSetNotch = new System.Windows.Forms.ToolStripMenuItem(); + this.MnuClearNotch = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); + this.mnuVfoA = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuVfoB = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuVfoC = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.mnuShowWaterfall = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuShowBaseband = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); + this.mnuShowAudio = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuShowAudiogram = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuShowEnvelope = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.mnuStationList = new System.Windows.Forms.ToolStripMenuItem(); + this.mnuAutoScale = new System.Windows.Forms.ToolStripMenuItem(); + this.setColoursToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.iqTimer = new System.Windows.Forms.Timer(this.components); + this.labZoom = new System.Windows.Forms.Label(); + this.controlPanel = new System.Windows.Forms.Panel(); + this.AdvancedCollapsiblePanel = new SDRSharp.CollapsiblePanel.CollapsiblePanel(); + this.barMeter = new SDRSharp.Radio.BarMeter(); + this.labCPU = new SDRSharp.Controls.gLabel(); + this.labProcessTmr = new System.Windows.Forms.Label(); + this.labPerformTmr = new System.Windows.Forms.Label(); + this.labFftTmr = new System.Windows.Forms.Label(); + this.label58 = new System.Windows.Forms.Label(); + this.label57 = new System.Windows.Forms.Label(); + this.label52 = new System.Windows.Forms.Label(); + this.centerFreqNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.cmbCenterStep = new SDRSharp.Controls.gCombo(); + this.label5 = new System.Windows.Forms.Label(); + this.label28 = new System.Windows.Forms.Label(); + this.chk1 = new SDRSharp.Controls.gButton(); + this.label1 = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.filterBandwidthNumericUpDown = new SDRSharp.Controls.gUpDown(); + this.label55 = new System.Windows.Forms.Label(); + this.label59 = new System.Windows.Forms.Label(); + this.radioCollapsiblePanel = new SDRSharp.CollapsiblePanel.CollapsiblePanel(); + this.label60 = new System.Windows.Forms.Label(); + this.samRadioButton = new SDRSharp.Controls.gButton(); + this.amRadioButton = new SDRSharp.Controls.gButton(); + this.dsbRadioButton = new SDRSharp.Controls.gButton(); + this.panel1 = new System.Windows.Forms.Panel(); + this.butVfoC = new SDRSharp.Controls.gButton(); + this.butVfoB = new SDRSharp.Controls.gButton(); + this.butVfoA = new SDRSharp.Controls.gButton(); + this.label38 = new System.Windows.Forms.Label(); + this.lsbRadioButton = new SDRSharp.Controls.gButton(); + this.cwRadioButton = new SDRSharp.Controls.gButton(); + this.nfmRadioButton = new SDRSharp.Controls.gButton(); + this.usbRadioButton = new SDRSharp.Controls.gButton(); + this.wfmRadioButton = new SDRSharp.Controls.gButton(); + this.scopeCollapsiblePanel = new SDRSharp.CollapsiblePanel.CollapsiblePanel(); + this.label51 = new System.Windows.Forms.Label(); + this.label43 = new System.Windows.Forms.Label(); + this.label42 = new System.Windows.Forms.Label(); + this.label41 = new System.Windows.Forms.Label(); + this.label40 = new System.Windows.Forms.Label(); + this.label19 = new System.Windows.Forms.Label(); + this.label39 = new System.Windows.Forms.Label(); + this.label27 = new System.Windows.Forms.Label(); + this.label20 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.label35 = new System.Windows.Forms.Label(); + this.labTbGain = new System.Windows.Forms.Label(); + this.labTbAverage = new System.Windows.Forms.Label(); + this.label36 = new System.Windows.Forms.Label(); + this.label34 = new System.Windows.Forms.Label(); + this.labFast = new System.Windows.Forms.Label(); + this.label48 = new System.Windows.Forms.Label(); + this.label45 = new System.Windows.Forms.Label(); + this.label46 = new System.Windows.Forms.Label(); + this.label47 = new System.Windows.Forms.Label(); + this.audioCollapsiblePanel = new SDRSharp.CollapsiblePanel.CollapsiblePanel(); + this.label2 = new System.Windows.Forms.Label(); + this.chkNotch3 = new SDRSharp.Controls.gButton(); + this.chkNotch2 = new SDRSharp.Controls.gButton(); + this.chkNotch1 = new SDRSharp.Controls.gButton(); + this.label12 = new System.Windows.Forms.Label(); + this.labSampling = new System.Windows.Forms.Label(); + this.label11 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.agcCollapsiblePanel = new SDRSharp.CollapsiblePanel.CollapsiblePanel(); + this.panel2 = new System.Windows.Forms.Panel(); + this.label33 = new System.Windows.Forms.Label(); + this.labNLTreshold = new System.Windows.Forms.Label(); + this.labNLRatio = new System.Windows.Forms.Label(); + this.label22 = new System.Windows.Forms.Label(); + this.label53 = new System.Windows.Forms.Label(); + this.label56 = new System.Windows.Forms.Label(); + this.agcDecayLabel = new System.Windows.Forms.Label(); + this.displayCollapsiblePanel = new SDRSharp.CollapsiblePanel.CollapsiblePanel(); + this.label3 = new System.Windows.Forms.Label(); + this.label54 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.labSmeter = new System.Windows.Forms.Label(); + this.wDecayTrackBar = new SDRSharp.Controls.gSliderH(); + this.wAttackTrackBar = new SDRSharp.Controls.gSliderH(); + this.labFftAverage = new System.Windows.Forms.Label(); + this.sDecayTrackBar = new SDRSharp.Controls.gSliderH(); + this.sAttackTrackBar = new SDRSharp.Controls.gSliderH(); + this.label23 = new System.Windows.Forms.Label(); + this.label26 = new System.Windows.Forms.Label(); + this.label24 = new System.Windows.Forms.Label(); + this.label25 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label21 = new System.Windows.Forms.Label(); + this.label13 = new System.Windows.Forms.Label(); + this.scrollPanel = new System.Windows.Forms.Panel(); + this.pnlScroll = new System.Windows.Forms.Panel(); + this.gThumb = new SDRSharp.Controls.gButton(); + this.labBandWidth = new System.Windows.Forms.Label(); + this.label37 = new System.Windows.Forms.Label(); + this.labSpectrum = new SDRSharp.Controls.gLabel(); + this.tbIntensityWv = new SDRSharp.Controls.gSliderV(); + this.fftZoomTrackBar = new SDRSharp.Controls.gSliderH(); + this.radThemeManager1 = new Telerik.WinControls.RadThemeManager(); + this.visualStudio2012DarkTheme1 = new Telerik.WinControls.Themes.VisualStudio2012DarkTheme(); + this.chkScrollPanel = new Telerik.WinControls.UI.RadCheckBox(); + this.gButton1 = new SDRSharp.Controls.gButton(); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer)).BeginInit(); + this.panSplitContainer.Panel1.SuspendLayout(); + this.panSplitContainer.Panel2.SuspendLayout(); + this.panSplitContainer.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer2)).BeginInit(); + this.panSplitContainer2.Panel1.SuspendLayout(); + this.panSplitContainer2.Panel2.SuspendLayout(); + this.panSplitContainer2.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer3)).BeginInit(); + this.panSplitContainer3.Panel1.SuspendLayout(); + this.panSplitContainer3.Panel2.SuspendLayout(); + this.panSplitContainer3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer4)).BeginInit(); + this.panSplitContainer4.Panel1.SuspendLayout(); + this.panSplitContainer4.Panel2.SuspendLayout(); + this.panSplitContainer4.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer5)).BeginInit(); + this.panSplitContainer5.Panel1.SuspendLayout(); + this.panSplitContainer5.Panel2.SuspendLayout(); + this.panSplitContainer5.SuspendLayout(); + this.panelAG.SuspendLayout(); + this.MnuSA.SuspendLayout(); + this.controlPanel.SuspendLayout(); + this.AdvancedCollapsiblePanel.SuspendLayout(); + this.radioCollapsiblePanel.SuspendLayout(); + this.panel1.SuspendLayout(); + this.scopeCollapsiblePanel.SuspendLayout(); + this.audioCollapsiblePanel.SuspendLayout(); + this.agcCollapsiblePanel.SuspendLayout(); + this.panel2.SuspendLayout(); + this.displayCollapsiblePanel.SuspendLayout(); + this.scrollPanel.SuspendLayout(); + this.pnlScroll.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.chkScrollPanel)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + this.SuspendLayout(); + // + // openDlg + // + this.openDlg.DefaultExt = "wav"; + this.openDlg.Filter = "WAV files|*.wav"; + // + // panSplitContainer + // + this.panSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.panSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; + this.panSplitContainer.Location = new System.Drawing.Point(228, 42); + this.panSplitContainer.Name = "panSplitContainer"; + this.panSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // panSplitContainer.Panel1 + // + this.panSplitContainer.Panel1.Controls.Add(this.spectrumAnalyzer); + this.panSplitContainer.Panel1MinSize = 70; + // + // panSplitContainer.Panel2 + // + this.panSplitContainer.Panel2.Controls.Add(this.panSplitContainer2); + this.panSplitContainer.Panel2.Controls.Add(this.label31); + this.panSplitContainer.Panel2MinSize = 140; + this.panSplitContainer.Size = new System.Drawing.Size(1023, 694); + this.panSplitContainer.SplitterDistance = 189; + this.panSplitContainer.TabIndex = 13; + // + // spectrumAnalyzer + // + this.spectrumAnalyzer.Attack = 0.9D; + this.spectrumAnalyzer.BackgroundColor = System.Drawing.Color.Empty; + this.spectrumAnalyzer.BandType = SDRSharp.PanView.BandType.Center; + this.spectrumAnalyzer.CenterFixed = true; + this.spectrumAnalyzer.CenterFrequency = ((long)(0)); + this.spectrumAnalyzer.CenterStep = 10000; + this.spectrumAnalyzer.DataType = SDRSharp.Radio.DataType.RF; + this.spectrumAnalyzer.Decay = 0.3D; + this.spectrumAnalyzer.DisplayFrequency = ((long)(0)); + this.spectrumAnalyzer.Dock = System.Windows.Forms.DockStyle.Fill; + this.spectrumAnalyzer.FilterBandwidth = 10000; + this.spectrumAnalyzer.FilterOffset = 100; + this.spectrumAnalyzer.Frequency = ((long)(0)); + this.spectrumAnalyzer.IndepSideband = false; + this.spectrumAnalyzer.Location = new System.Drawing.Point(0, 0); + this.spectrumAnalyzer.MarkPeaks = false; + this.spectrumAnalyzer.MaxPower = 0F; + this.spectrumAnalyzer.MinPower = -130F; + this.spectrumAnalyzer.Name = "spectrumAnalyzer"; + this.spectrumAnalyzer.ShowDbm = 0; + this.spectrumAnalyzer.Size = new System.Drawing.Size(1023, 189); + this.spectrumAnalyzer.SpectrumColor = System.Drawing.Color.DarkGray; + this.spectrumAnalyzer.SpectrumFill = 0; + this.spectrumAnalyzer.SpectrumWidth = 2048001; + this.spectrumAnalyzer.StationList = ""; + this.spectrumAnalyzer.StatusText = ""; + this.spectrumAnalyzer.StepSize = 1000; + this.spectrumAnalyzer.TabIndex = 98; + this.spectrumAnalyzer.UseSmoothing = true; + this.spectrumAnalyzer.UseSnap = false; + this.spectrumAnalyzer.Zoom = 1F; + this.spectrumAnalyzer.FrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_FrequencyChanged); + this.spectrumAnalyzer.DisplayFrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_DisplayFrequencyChanged); + this.spectrumAnalyzer.CenterFrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_CenterFrequencyChanged); + this.spectrumAnalyzer.BandwidthChanged += new SDRSharp.PanView.ManualBandwidthChange(this.panview_BandwidthChanged); + this.spectrumAnalyzer.NotchChanged += new SDRSharp.PanView.ManualNotchChange(this.panview_NotchChanged); + this.spectrumAnalyzer.StationDatachanged += new System.EventHandler(this.spectrumAnalyzer_StationDatachanged); + this.spectrumAnalyzer.AutoZoomed += new System.EventHandler(this.panview_AutoZoomed); + // + // panSplitContainer2 + // + this.panSplitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; + this.panSplitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; + this.panSplitContainer2.Location = new System.Drawing.Point(0, 0); + this.panSplitContainer2.Name = "panSplitContainer2"; + this.panSplitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // panSplitContainer2.Panel1 + // + this.panSplitContainer2.Panel1.Controls.Add(this.waterfall); + this.panSplitContainer2.Panel1MinSize = 70; + // + // panSplitContainer2.Panel2 + // + this.panSplitContainer2.Panel2.Controls.Add(this.panSplitContainer3); + this.panSplitContainer2.Panel2MinSize = 70; + this.panSplitContainer2.Size = new System.Drawing.Size(1023, 501); + this.panSplitContainer2.SplitterDistance = 228; + this.panSplitContainer2.TabIndex = 107; + // + // waterfall + // + this.waterfall.Attack = 0.9D; + this.waterfall.AutoSize = true; + this.waterfall.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66))))); + this.waterfall.BandType = SDRSharp.PanView.BandType.Center; + this.waterfall.CenterFixed = false; + this.waterfall.CenterFrequency = ((long)(0)); + this.waterfall.CenterStep = 0; + this.waterfall.DataType = SDRSharp.Radio.DataType.RF; + this.waterfall.Decay = 0.5D; + this.waterfall.DisplayFrequency = ((long)(0)); + this.waterfall.Dock = System.Windows.Forms.DockStyle.Fill; + this.waterfall.FilterBandwidth = 10000; + this.waterfall.FilterOffset = 0; + this.waterfall.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.waterfall.Frequency = ((long)(0)); + this.waterfall.Horizontal = false; + this.waterfall.IndepSideband = false; + this.waterfall.Location = new System.Drawing.Point(0, 0); + this.waterfall.MaxPower = 0F; + this.waterfall.MinPower = -130F; + this.waterfall.Name = "waterfall"; + this.waterfall.RecordStart = new System.DateTime(((long)(0))); + this.waterfall.ShowDbm = 0; + this.waterfall.Size = new System.Drawing.Size(1023, 228); + this.waterfall.SpectrumWidth = 2048001; + this.waterfall.StepSize = 0; + this.waterfall.TabIndex = 99; + this.waterfall.TimestampInterval = 150; + this.waterfall.UseSmoothing = true; + this.waterfall.UseSnap = false; + this.waterfall.UseTimestamps = 0; + this.waterfall.WaveStart = new System.DateTime(((long)(0))); + this.waterfall.Zoom = 1F; + this.waterfall.FrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_FrequencyChanged); + this.waterfall.CenterFrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_CenterFrequencyChanged); + this.waterfall.DisplayFrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_DisplayFrequencyChanged); + this.waterfall.BandwidthChanged += new SDRSharp.PanView.ManualBandwidthChange(this.panview_BandwidthChanged); + this.waterfall.AutoZoomed += new System.EventHandler(this.panview_AutoZoomed); + this.waterfall.MouseDown += new System.Windows.Forms.MouseEventHandler(this.waterfall_MouseDown); + this.waterfall.Resize += new System.EventHandler(this.waterfall_Resize); + // + // panSplitContainer3 + // + this.panSplitContainer3.Dock = System.Windows.Forms.DockStyle.Fill; + this.panSplitContainer3.Location = new System.Drawing.Point(0, 0); + this.panSplitContainer3.Name = "panSplitContainer3"; + // + // panSplitContainer3.Panel1 + // + this.panSplitContainer3.Panel1.Controls.Add(this.panSplitContainer4); + this.panSplitContainer3.Panel1MinSize = 70; + // + // panSplitContainer3.Panel2 + // + this.panSplitContainer3.Panel2.Controls.Add(this.panSplitContainer5); + this.panSplitContainer3.Panel2.Resize += new System.EventHandler(this.panSplitContainer3_Panel2_Resize); + this.panSplitContainer3.Panel2MinSize = 0; + this.panSplitContainer3.Size = new System.Drawing.Size(1023, 269); + this.panSplitContainer3.SplitterDistance = 542; + this.panSplitContainer3.TabIndex = 0; + // + // panSplitContainer4 + // + this.panSplitContainer4.Dock = System.Windows.Forms.DockStyle.Fill; + this.panSplitContainer4.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; + this.panSplitContainer4.Location = new System.Drawing.Point(0, 0); + this.panSplitContainer4.Name = "panSplitContainer4"; + this.panSplitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // panSplitContainer4.Panel1 + // + this.panSplitContainer4.Panel1.Controls.Add(this.ifAnalyzer); + // + // panSplitContainer4.Panel2 + // + this.panSplitContainer4.Panel2.Controls.Add(this.ifWaterfall); + this.panSplitContainer4.Size = new System.Drawing.Size(542, 269); + this.panSplitContainer4.SplitterDistance = 143; + this.panSplitContainer4.TabIndex = 100; + this.panSplitContainer4.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.panSplitContainer4_SplitterMoved); + // + // ifAnalyzer + // + this.ifAnalyzer.Attack = 0.9D; + this.ifAnalyzer.BackgroundColor = System.Drawing.Color.Empty; + this.ifAnalyzer.BandType = SDRSharp.PanView.BandType.Center; + this.ifAnalyzer.CenterFixed = true; + this.ifAnalyzer.CenterFrequency = ((long)(0)); + this.ifAnalyzer.CenterStep = 10000; + this.ifAnalyzer.DataType = SDRSharp.Radio.DataType.IF; + this.ifAnalyzer.Decay = 0.3D; + this.ifAnalyzer.DisplayFrequency = ((long)(0)); + this.ifAnalyzer.Dock = System.Windows.Forms.DockStyle.Fill; + this.ifAnalyzer.FilterBandwidth = 10000; + this.ifAnalyzer.FilterOffset = 0; + this.ifAnalyzer.Frequency = ((long)(0)); + this.ifAnalyzer.IndepSideband = false; + this.ifAnalyzer.Location = new System.Drawing.Point(0, 0); + this.ifAnalyzer.MarkPeaks = false; + this.ifAnalyzer.MaxPower = 0F; + this.ifAnalyzer.MinPower = -130F; + this.ifAnalyzer.Name = "ifAnalyzer"; + this.ifAnalyzer.ShowDbm = 0; + this.ifAnalyzer.Size = new System.Drawing.Size(542, 143); + this.ifAnalyzer.SpectrumColor = System.Drawing.Color.DarkGray; + this.ifAnalyzer.SpectrumFill = 0; + this.ifAnalyzer.SpectrumWidth = 96001; + this.ifAnalyzer.StationList = ""; + this.ifAnalyzer.StatusText = ""; + this.ifAnalyzer.StepSize = 1000; + this.ifAnalyzer.TabIndex = 99; + this.ifAnalyzer.UseSmoothing = true; + this.ifAnalyzer.UseSnap = false; + this.ifAnalyzer.Zoom = 6.4F; + this.ifAnalyzer.FrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_FrequencyChanged); + this.ifAnalyzer.CenterFrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_CenterFrequencyChanged); + this.ifAnalyzer.BandwidthChanged += new SDRSharp.PanView.ManualBandwidthChange(this.panview_BandwidthChanged); + this.ifAnalyzer.NotchChanged += new SDRSharp.PanView.ManualNotchChange(this.panview_NotchChanged); + this.ifAnalyzer.AutoZoomed += new System.EventHandler(this.panview_AutoZoomed); + // + // ifWaterfall + // + this.ifWaterfall.Attack = 0.9D; + this.ifWaterfall.AutoSize = true; + this.ifWaterfall.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66))))); + this.ifWaterfall.BandType = SDRSharp.PanView.BandType.Center; + this.ifWaterfall.CenterFixed = false; + this.ifWaterfall.CenterFrequency = ((long)(0)); + this.ifWaterfall.CenterStep = 0; + this.ifWaterfall.DataType = SDRSharp.Radio.DataType.IF; + this.ifWaterfall.Decay = 0.5D; + this.ifWaterfall.DisplayFrequency = ((long)(0)); + this.ifWaterfall.Dock = System.Windows.Forms.DockStyle.Fill; + this.ifWaterfall.FilterBandwidth = 10000; + this.ifWaterfall.FilterOffset = 0; + this.ifWaterfall.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ifWaterfall.Frequency = ((long)(0)); + this.ifWaterfall.Horizontal = false; + this.ifWaterfall.IndepSideband = false; + this.ifWaterfall.Location = new System.Drawing.Point(0, 0); + this.ifWaterfall.MaxPower = 0F; + this.ifWaterfall.MinPower = -130F; + this.ifWaterfall.Name = "ifWaterfall"; + this.ifWaterfall.RecordStart = new System.DateTime(((long)(0))); + this.ifWaterfall.ShowDbm = 0; + this.ifWaterfall.Size = new System.Drawing.Size(542, 122); + this.ifWaterfall.SpectrumWidth = 96001; + this.ifWaterfall.StepSize = 0; + this.ifWaterfall.TabIndex = 100; + this.ifWaterfall.TimestampInterval = 150; + this.ifWaterfall.UseSmoothing = true; + this.ifWaterfall.UseSnap = false; + this.ifWaterfall.UseTimestamps = 0; + this.ifWaterfall.WaveStart = new System.DateTime(((long)(0))); + this.ifWaterfall.Zoom = 1F; + this.ifWaterfall.FrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_FrequencyChanged); + this.ifWaterfall.BandwidthChanged += new SDRSharp.PanView.ManualBandwidthChange(this.panview_BandwidthChanged); + this.ifWaterfall.AutoZoomed += new System.EventHandler(this.panview_AutoZoomed); + // + // panSplitContainer5 + // + this.panSplitContainer5.Dock = System.Windows.Forms.DockStyle.Fill; + this.panSplitContainer5.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; + this.panSplitContainer5.Location = new System.Drawing.Point(0, 0); + this.panSplitContainer5.Name = "panSplitContainer5"; + this.panSplitContainer5.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // panSplitContainer5.Panel1 + // + this.panSplitContainer5.Panel1.Controls.Add(this.panelAG); + this.panSplitContainer5.Panel1.Controls.Add(this.audiogram); + this.panSplitContainer5.Panel1.Controls.Add(this.afAnalyzer); + this.panSplitContainer5.Panel1.Resize += new System.EventHandler(this.panSplitContainer5_Panel1_Resize); + // + // panSplitContainer5.Panel2 + // + this.panSplitContainer5.Panel2.Controls.Add(this.wideScope); + this.panSplitContainer5.Panel2.Controls.Add(this.afWaterfall); + this.panSplitContainer5.Panel2.Resize += new System.EventHandler(this.panSplitContainer5_Panel2_Resize); + this.panSplitContainer5.Size = new System.Drawing.Size(477, 269); + this.panSplitContainer5.SplitterDistance = 150; + this.panSplitContainer5.TabIndex = 0; + // + // panelAG + // + this.panelAG.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.panelAG.Controls.Add(this.btnShowLog); + this.panelAG.Controls.Add(this.tbIntensityAg); + this.panelAG.Controls.Add(this.tbContrastAg); + this.panelAG.Controls.Add(this.tbAgSpeed); + this.panelAG.Controls.Add(this.label50); + this.panelAG.Controls.Add(this.label49); + this.panelAG.Controls.Add(this.label44); + this.panelAG.Location = new System.Drawing.Point(402, 0); + this.panelAG.Name = "panelAG"; + this.panelAG.Size = new System.Drawing.Size(70, 120); + this.panelAG.TabIndex = 125; + // + // btnShowLog + // + this.btnShowLog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnShowLog.Arrow = 99; + this.btnShowLog.Checked = false; + this.btnShowLog.Edge = 0.15F; + this.btnShowLog.EndColor = System.Drawing.Color.White; + this.btnShowLog.EndFactor = 0.2F; + this.btnShowLog.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnShowLog.ForeColor = System.Drawing.Color.CornflowerBlue; + this.btnShowLog.Location = new System.Drawing.Point(28, 92); + this.btnShowLog.Name = "btnShowLog"; + this.btnShowLog.NoBorder = false; + this.btnShowLog.NoLed = false; + this.btnShowLog.RadioButton = false; + this.btnShowLog.Radius = 4; + this.btnShowLog.RadiusB = 0; + this.btnShowLog.Size = new System.Drawing.Size(36, 20); + this.btnShowLog.StartColor = System.Drawing.Color.Black; + this.btnShowLog.StartFactor = 0.35F; + this.btnShowLog.TabIndex = 126; + this.btnShowLog.Tag = ""; + this.btnShowLog.Text = "Log"; + this.toolTip.SetToolTip(this.btnShowLog, "Log scale on/off"); + this.btnShowLog.CheckedChanged += new System.EventHandler(this.btnShowLog_CheckedChanged); + // + // tbIntensityAg + // + this.tbIntensityAg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbIntensityAg.Button = false; + this.tbIntensityAg.Checked = false; + this.tbIntensityAg.ColorFactor = 0.5F; + this.tbIntensityAg.Location = new System.Drawing.Point(26, 19); + this.tbIntensityAg.Margin = new System.Windows.Forms.Padding(4); + this.tbIntensityAg.Maximum = -40; + this.tbIntensityAg.Minimum = -140; + this.tbIntensityAg.Name = "tbIntensityAg"; + this.tbIntensityAg.Size = new System.Drawing.Size(16, 68); + this.tbIntensityAg.TabIndex = 109; + this.tbIntensityAg.Tag = ""; + this.tbIntensityAg.TickColor = System.Drawing.Color.Silver; + this.tbIntensityAg.Ticks = 0; + this.tbIntensityAg.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbIntensityAg, "Intensity"); + this.tbIntensityAg.Value = -40; + this.tbIntensityAg.ValueChanged += new System.EventHandler(this.tbIntensityAG_ValueChanged); + // + // toolTip + // + this.toolTip.AutomaticDelay = 100; + this.toolTip.AutoPopDelay = 3000; + this.toolTip.InitialDelay = 100; + this.toolTip.ReshowDelay = 20; + this.toolTip.ShowAlways = true; + this.toolTip.UseAnimation = false; + this.toolTip.UseFading = false; + // + // frequencyNumericUpDown + // + this.frequencyNumericUpDown.AutoSize = true; + this.frequencyNumericUpDown.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.frequencyNumericUpDown.ForeColor = System.Drawing.SystemColors.ControlText; + this.frequencyNumericUpDown.Increment = new decimal(new int[] { + 0, + 0, + 0, + 0}); + this.frequencyNumericUpDown.Label = "Freq"; + this.frequencyNumericUpDown.Location = new System.Drawing.Point(337, 5); + this.frequencyNumericUpDown.Margin = new System.Windows.Forms.Padding(4); + this.frequencyNumericUpDown.Maximum = new decimal(new int[] { + 0, + 0, + 0, + 0}); + this.frequencyNumericUpDown.Minimum = new decimal(new int[] { + 999999999, + 0, + 0, + -2147483648}); + this.frequencyNumericUpDown.Name = "frequencyNumericUpDown"; + this.frequencyNumericUpDown.Size = new System.Drawing.Size(293, 38); + this.frequencyNumericUpDown.TabIndex = 93; + this.toolTip.SetToolTip(this.frequencyNumericUpDown, "Click/scroll digit to set VFO freq."); + this.frequencyNumericUpDown.ToolTip = this.toolTip; + this.frequencyNumericUpDown.Value = new decimal(new int[] { + 298954296, + 2, + 0, + 0}); + this.frequencyNumericUpDown.ValueChanged += new SDRSharp.PanView.ManualValueChange(this.frequencyNumericUpDown_ValueChanged); + // + // audioButton + // + this.audioButton.Arrow = 0; + this.audioButton.Checked = true; + this.audioButton.Edge = 0.15F; + this.audioButton.EndColor = System.Drawing.Color.White; + this.audioButton.EndFactor = 0.2F; + this.audioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.audioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.audioButton.Location = new System.Drawing.Point(7, 39); + this.audioButton.Name = "audioButton"; + this.audioButton.NoBorder = false; + this.audioButton.NoLed = true; + this.audioButton.RadioButton = false; + this.audioButton.Radius = 6; + this.audioButton.RadiusB = 0; + this.audioButton.Size = new System.Drawing.Size(49, 26); + this.audioButton.StartColor = System.Drawing.Color.Black; + this.audioButton.StartFactor = 0.35F; + this.audioButton.TabIndex = 109; + this.audioButton.Text = "Mute"; + this.toolTip.SetToolTip(this.audioButton, "Mute audio [Spacebar]"); + this.audioButton.CheckedChanged += new System.EventHandler(this.audioButton_CheckedChanged); + // + // tbContrastAg + // + this.tbContrastAg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbContrastAg.Button = false; + this.tbContrastAg.Checked = false; + this.tbContrastAg.ColorFactor = 0.5F; + this.tbContrastAg.Location = new System.Drawing.Point(48, 19); + this.tbContrastAg.Margin = new System.Windows.Forms.Padding(4); + this.tbContrastAg.Maximum = 80; + this.tbContrastAg.Minimum = 10; + this.tbContrastAg.Name = "tbContrastAg"; + this.tbContrastAg.Size = new System.Drawing.Size(16, 68); + this.tbContrastAg.TabIndex = 110; + this.tbContrastAg.Tag = ""; + this.tbContrastAg.TickColor = System.Drawing.Color.Silver; + this.tbContrastAg.Ticks = 0; + this.tbContrastAg.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbContrastAg, "Contrast"); + this.tbContrastAg.Value = 50; + this.tbContrastAg.ValueChanged += new System.EventHandler(this.tbContrasAG_ValueChanged); + // + // tbAgSpeed + // + this.tbAgSpeed.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbAgSpeed.Button = false; + this.tbAgSpeed.Checked = false; + this.tbAgSpeed.ColorFactor = 0.5F; + this.tbAgSpeed.ForeColor = System.Drawing.Color.Black; + this.tbAgSpeed.Location = new System.Drawing.Point(5, 19); + this.tbAgSpeed.Margin = new System.Windows.Forms.Padding(4); + this.tbAgSpeed.Maximum = 8; + this.tbAgSpeed.Minimum = 0; + this.tbAgSpeed.Name = "tbAgSpeed"; + this.tbAgSpeed.Size = new System.Drawing.Size(16, 68); + this.tbAgSpeed.TabIndex = 111; + this.tbAgSpeed.Tag = ""; + this.tbAgSpeed.TickColor = System.Drawing.Color.Silver; + this.tbAgSpeed.Ticks = 5; + this.tbAgSpeed.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbAgSpeed, "Audiogram speed"); + this.tbAgSpeed.Value = 0; + this.tbAgSpeed.ValueChanged += new System.EventHandler(this.tbAgSpeed_ValueChanged); + // + // playBar + // + this.playBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.playBar.Location = new System.Drawing.Point(229, 735); + this.playBar.Margin = new System.Windows.Forms.Padding(4); + this.playBar.Name = "playBar"; + this.playBar.Size = new System.Drawing.Size(1020, 22); + this.playBar.TabIndex = 107; + this.playBar.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.playBar, "Playback progress, click to position"); + this.playBar.ValueChanged += new System.EventHandler(this.playBar_ValueChanged); + // + // fftSpeedTrackBar + // + this.fftSpeedTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.fftSpeedTrackBar.Button = false; + this.fftSpeedTrackBar.Checked = false; + this.fftSpeedTrackBar.ColorFactor = 0.5F; + this.fftSpeedTrackBar.ForeColor = System.Drawing.Color.Black; + this.fftSpeedTrackBar.Location = new System.Drawing.Point(1259, 387); + this.fftSpeedTrackBar.Margin = new System.Windows.Forms.Padding(4); + this.fftSpeedTrackBar.Maximum = 11; + this.fftSpeedTrackBar.Minimum = 0; + this.fftSpeedTrackBar.Name = "fftSpeedTrackBar"; + this.fftSpeedTrackBar.Size = new System.Drawing.Size(15, 68); + this.fftSpeedTrackBar.TabIndex = 105; + this.fftSpeedTrackBar.Tag = ""; + this.fftSpeedTrackBar.TickColor = System.Drawing.Color.Silver; + this.fftSpeedTrackBar.Ticks = 5; + this.fftSpeedTrackBar.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.fftSpeedTrackBar, "Waterfall speed"); + this.fftSpeedTrackBar.Value = 0; + this.fftSpeedTrackBar.ValueChanged += new System.EventHandler(this.fftSpeedTrackBar_ValueChanged); + // + // tbFloorSA + // + this.tbFloorSA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbFloorSA.Button = false; + this.tbFloorSA.Checked = false; + this.tbFloorSA.ColorFactor = 0.5F; + this.tbFloorSA.Location = new System.Drawing.Point(1259, 148); + this.tbFloorSA.Margin = new System.Windows.Forms.Padding(4); + this.tbFloorSA.Maximum = -60; + this.tbFloorSA.Minimum = -160; + this.tbFloorSA.Name = "tbFloorSA"; + this.tbFloorSA.Size = new System.Drawing.Size(15, 68); + this.tbFloorSA.TabIndex = 101; + this.tbFloorSA.Tag = ""; + this.tbFloorSA.TickColor = System.Drawing.Color.Orange; + this.tbFloorSA.Ticks = 0; + this.tbFloorSA.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbFloorSA, "Spectrum floor"); + this.tbFloorSA.Value = -100; + this.tbFloorSA.ValueChanged += new System.EventHandler(this.tbFloorSA_Changed); + // + // tbSpanSA + // + this.tbSpanSA.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbSpanSA.Button = false; + this.tbSpanSA.Checked = false; + this.tbSpanSA.ColorFactor = 0.5F; + this.tbSpanSA.Location = new System.Drawing.Point(1259, 59); + this.tbSpanSA.Margin = new System.Windows.Forms.Padding(4); + this.tbSpanSA.Maximum = 140; + this.tbSpanSA.Minimum = 30; + this.tbSpanSA.Name = "tbSpanSA"; + this.tbSpanSA.Size = new System.Drawing.Size(15, 68); + this.tbSpanSA.TabIndex = 100; + this.tbSpanSA.Tag = ""; + this.tbSpanSA.TickColor = System.Drawing.Color.Orange; + this.tbSpanSA.Ticks = 0; + this.tbSpanSA.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbSpanSA, "Spectrum span"); + this.tbSpanSA.Value = 50; + this.tbSpanSA.ValueChanged += new System.EventHandler(this.tbSpanSA_Changed); + // + // tbContrastWv + // + this.tbContrastWv.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbContrastWv.Button = false; + this.tbContrastWv.Checked = false; + this.tbContrastWv.ColorFactor = 0.5F; + this.tbContrastWv.Location = new System.Drawing.Point(1259, 264); + this.tbContrastWv.Margin = new System.Windows.Forms.Padding(4); + this.tbContrastWv.Maximum = 150; + this.tbContrastWv.Minimum = 40; + this.tbContrastWv.Name = "tbContrastWv"; + this.tbContrastWv.Size = new System.Drawing.Size(15, 68); + this.tbContrastWv.TabIndex = 103; + this.tbContrastWv.Tag = ""; + this.tbContrastWv.TickColor = System.Drawing.Color.Orange; + this.tbContrastWv.Ticks = 0; + this.tbContrastWv.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbContrastWv, "Waterfall contrast"); + this.tbContrastWv.Value = 50; + this.tbContrastWv.ValueChanged += new System.EventHandler(this.tbContrastWv_Changed); + // + // gBsetScale + // + this.gBsetScale.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.gBsetScale.Arrow = 0; + this.gBsetScale.Checked = false; + this.gBsetScale.Edge = 0.15F; + this.gBsetScale.EndColor = System.Drawing.Color.White; + this.gBsetScale.EndFactor = 0.2F; + this.gBsetScale.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.gBsetScale.ForeColor = System.Drawing.Color.CornflowerBlue; + this.gBsetScale.Location = new System.Drawing.Point(1180, 11); + this.gBsetScale.Name = "gBsetScale"; + this.gBsetScale.NoBorder = false; + this.gBsetScale.NoLed = true; + this.gBsetScale.RadioButton = false; + this.gBsetScale.Radius = 6; + this.gBsetScale.RadiusB = 0; + this.gBsetScale.Size = new System.Drawing.Size(33, 20); + this.gBsetScale.StartColor = System.Drawing.Color.Black; + this.gBsetScale.StartFactor = 0.35F; + this.gBsetScale.TabIndex = 102; + this.gBsetScale.Tag = ""; + this.gBsetScale.Text = "Set "; + this.toolTip.SetToolTip(this.gBsetScale, "(Re)set spectrum floor"); + this.gBsetScale.CheckedChanged += new System.EventHandler(this.gBsetScale_CheckedChanged); + // + // fftZoomCombo + // + this.fftZoomCombo.BackColor = System.Drawing.Color.Transparent; + this.fftZoomCombo.ForeColor = System.Drawing.Color.RoyalBlue; + this.fftZoomCombo.Items.Add("Full"); + this.fftZoomCombo.Items.Add("2.0 Mhz"); + this.fftZoomCombo.Items.Add("1.6 Mhz"); + this.fftZoomCombo.Items.Add("1.0 Mhz"); + this.fftZoomCombo.Items.Add("800 kHz"); + this.fftZoomCombo.Items.Add("500 kHz"); + this.fftZoomCombo.Items.Add("400 kHz"); + this.fftZoomCombo.Items.Add("250 kHz"); + this.fftZoomCombo.Items.Add("192 kHz"); + this.fftZoomCombo.Items.Add("96 kHz"); + this.fftZoomCombo.Items.Add("48 kHz"); + this.fftZoomCombo.Items.Add("25 kHz"); + this.fftZoomCombo.Items.Add("10 kHz"); + this.fftZoomCombo.Items.Add("5 kHz"); + this.fftZoomCombo.Items.Add("2 kHz"); + this.fftZoomCombo.Items.Add("1 kHz"); + this.fftZoomCombo.Location = new System.Drawing.Point(983, 11); + this.fftZoomCombo.Margin = new System.Windows.Forms.Padding(5); + this.fftZoomCombo.Name = "fftZoomCombo"; + this.fftZoomCombo.SelectedIndex = -1; + this.fftZoomCombo.Size = new System.Drawing.Size(80, 21); + this.fftZoomCombo.TabIndex = 100; + this.fftZoomCombo.Text = "xxxx"; + this.toolTip.SetToolTip(this.fftZoomCombo, "RF zoom bandwidth"); + this.fftZoomCombo.ToolTip = this.toolTip; + this.fftZoomCombo.SelectedIndexChanged += new System.EventHandler(this.fftZoomCombo_SelectedIndexChanged); + // + // chkLock + // + this.chkLock.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.chkLock.Arrow = 0; + this.chkLock.BackColor = System.Drawing.Color.White; + this.chkLock.Checked = false; + this.chkLock.Edge = 0.15F; + this.chkLock.EndColor = System.Drawing.Color.White; + this.chkLock.EndFactor = 0.2F; + this.chkLock.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkLock.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkLock.Location = new System.Drawing.Point(638, 7); + this.chkLock.Name = "chkLock"; + this.chkLock.NoBorder = false; + this.chkLock.NoLed = false; + this.chkLock.RadioButton = false; + this.chkLock.Radius = 6; + this.chkLock.RadiusB = 0; + this.chkLock.Size = new System.Drawing.Size(40, 29); + this.chkLock.StartColor = System.Drawing.Color.Black; + this.chkLock.StartFactor = 0.35F; + this.chkLock.TabIndex = 94; + this.chkLock.Text = "Lock"; + this.toolTip.SetToolTip(this.chkLock, "Enable carrier locking"); + this.chkLock.CheckedChanged += new System.EventHandler(this.chk1_CheckedChanged); + // + // cmbBandWidth + // + this.cmbBandWidth.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.cmbBandWidth.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.cmbBandWidth.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cmbBandWidth.ForeColor = System.Drawing.Color.RoyalBlue; + this.cmbBandWidth.Items.Add("manual"); + this.cmbBandWidth.Items.Add("100 Hz"); + this.cmbBandWidth.Items.Add("300 Hz"); + this.cmbBandWidth.Items.Add("500 Hz"); + this.cmbBandWidth.Items.Add("1.0 kHz"); + this.cmbBandWidth.Items.Add("2.4 kHz"); + this.cmbBandWidth.Items.Add("3.0 kHz"); + this.cmbBandWidth.Items.Add("4.5 kHz"); + this.cmbBandWidth.Items.Add("5 kHz"); + this.cmbBandWidth.Items.Add("6 kHz"); + this.cmbBandWidth.Items.Add("8 kHz"); + this.cmbBandWidth.Items.Add("10 kHz"); + this.cmbBandWidth.Items.Add("20 kHz"); + this.cmbBandWidth.Items.Add("25 kHz"); + this.cmbBandWidth.Items.Add("50 kHz"); + this.cmbBandWidth.Items.Add("100 kHz"); + this.cmbBandWidth.Items.Add("180 kHz"); + this.cmbBandWidth.Items.Add("250 kHz"); + this.cmbBandWidth.Location = new System.Drawing.Point(816, 9); + this.cmbBandWidth.Margin = new System.Windows.Forms.Padding(5); + this.cmbBandWidth.Name = "cmbBandWidth"; + this.cmbBandWidth.SelectedIndex = -1; + this.cmbBandWidth.Size = new System.Drawing.Size(90, 24); + this.cmbBandWidth.TabIndex = 95; + this.cmbBandWidth.Text = "xxxx"; + this.toolTip.SetToolTip(this.cmbBandWidth, "AF bandwidth"); + this.cmbBandWidth.ToolTip = this.toolTip; + this.cmbBandWidth.SelectedIndexChanged += new System.EventHandler(this.cmbBandWidth_SelectedIndexChanged); + // + // iqSourceComboBox + // + this.iqSourceComboBox.BackColor = System.Drawing.Color.Transparent; + this.iqSourceComboBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.iqSourceComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.iqSourceComboBox.Location = new System.Drawing.Point(76, 9); + this.iqSourceComboBox.Margin = new System.Windows.Forms.Padding(5); + this.iqSourceComboBox.Name = "iqSourceComboBox"; + this.iqSourceComboBox.SelectedIndex = -1; + this.iqSourceComboBox.Size = new System.Drawing.Size(146, 24); + this.iqSourceComboBox.TabIndex = 0; + this.iqSourceComboBox.Text = "xxxx"; + this.toolTip.SetToolTip(this.iqSourceComboBox, "Select RF input device"); + this.iqSourceComboBox.ToolTip = this.toolTip; + this.iqSourceComboBox.SelectedIndexChanged += new System.EventHandler(this.iqSourceComboBox_SelectedIndexChanged); + // + // playStopButton + // + this.playStopButton.Arrow = 99; + this.playStopButton.Checked = false; + this.playStopButton.Edge = 0.2F; + this.playStopButton.EndColor = System.Drawing.Color.Silver; + this.playStopButton.EndFactor = 0.3F; + this.playStopButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.playStopButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.playStopButton.Location = new System.Drawing.Point(281, 7); + this.playStopButton.Name = "playStopButton"; + this.playStopButton.NoBorder = false; + this.playStopButton.NoLed = false; + this.playStopButton.RadioButton = false; + this.playStopButton.Radius = 6; + this.playStopButton.RadiusB = 0; + this.playStopButton.Size = new System.Drawing.Size(45, 29); + this.playStopButton.StartColor = System.Drawing.Color.Black; + this.playStopButton.StartFactor = 0.35F; + this.playStopButton.TabIndex = 2; + this.playStopButton.Text = "Play"; + this.toolTip.SetToolTip(this.playStopButton, "Start/stop radio"); + this.playStopButton.CheckedChanged += new System.EventHandler(this.playStopButton_Click); + this.playStopButton.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.playStopButton_PreviewKeyDown); + // + // configureSourceButton + // + this.configureSourceButton.Arrow = 0; + this.configureSourceButton.Checked = false; + this.configureSourceButton.Edge = 0.15F; + this.configureSourceButton.EndColor = System.Drawing.Color.White; + this.configureSourceButton.EndFactor = 0.2F; + this.configureSourceButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.configureSourceButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.configureSourceButton.Location = new System.Drawing.Point(228, 9); + this.configureSourceButton.Name = "configureSourceButton"; + this.configureSourceButton.NoBorder = false; + this.configureSourceButton.NoLed = true; + this.configureSourceButton.RadioButton = false; + this.configureSourceButton.Radius = 6; + this.configureSourceButton.RadiusB = 0; + this.configureSourceButton.Size = new System.Drawing.Size(45, 24); + this.configureSourceButton.StartColor = System.Drawing.Color.Black; + this.configureSourceButton.StartFactor = 0.35F; + this.configureSourceButton.TabIndex = 1; + this.configureSourceButton.Text = "Config"; + this.toolTip.SetToolTip(this.configureSourceButton, "Configure RF input or select wave-file."); + this.configureSourceButton.Click += new System.EventHandler(this.frontendGuiButton_Click); + // + // audioGainTrackBar + // + this.audioGainTrackBar.Button = false; + this.audioGainTrackBar.Checked = false; + this.audioGainTrackBar.ColorFactor = 0.5F; + this.audioGainTrackBar.ForeColor = System.Drawing.Color.Maroon; + this.audioGainTrackBar.Location = new System.Drawing.Point(62, 42); + this.audioGainTrackBar.Margin = new System.Windows.Forms.Padding(4); + this.audioGainTrackBar.Maximum = 57; + this.audioGainTrackBar.Minimum = 40; + this.audioGainTrackBar.Name = "audioGainTrackBar"; + this.audioGainTrackBar.Size = new System.Drawing.Size(144, 20); + this.audioGainTrackBar.TabIndex = 1; + this.audioGainTrackBar.TickColor = System.Drawing.Color.Gainsboro; + this.audioGainTrackBar.Ticks = 10; + this.audioGainTrackBar.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.audioGainTrackBar, "AF audio gain"); + this.audioGainTrackBar.Value = 40; + this.audioGainTrackBar.ValueChanged += new System.EventHandler(this.audioGainTrackBar_ValueChanged); + // + // scope + // + this.scope.AudioAvg = 0; + this.scope.AudioRel = 6; + this.scope.BackgoundColor = System.Drawing.Color.Empty; + this.scope.CarrierAvg = 0; + this.scope.HblockDC = false; + this.scope.Hchannel = SDRSharp.Radio.DemodType.Empty; + this.scope.Hdiv = 1F; + this.scope.Hinvert = false; + this.scope.Hshift = 0F; + this.scope.Location = new System.Drawing.Point(1, 52); + this.scope.Name = "scope"; + this.scope.PeakDelay = 0; + this.scope.PeakRel = 0; + this.scope.ShowBars = true; + this.scope.ShowLines = false; + this.scope.Size = new System.Drawing.Size(197, 237); + this.scope.SpectrumFill = 0; + this.scope.StatusText = null; + this.scope.TabIndex = 28; + this.scope.Tdiv = 0F; + this.toolTip.SetToolTip(this.scope, "AF/audio scope"); + this.scope.TraceColor = System.Drawing.Color.DarkGray; + this.scope.TrigLevel = 0F; + this.scope.VblockDC = false; + this.scope.Vchannel = SDRSharp.Radio.DemodType.Empty; + this.scope.Vdiv = 1F; + this.scope.Vinvert = false; + this.scope.Vshift = 0F; + this.scope.XYmode = false; + this.scope.XYPositionChanged += new SDRSharp.PanView.Scope.delPositionChanged(this.scope_XYPositionChanged); + // + // fastFftCheckBox + // + this.fastFftCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.fastFftCheckBox.Arrow = 99; + this.fastFftCheckBox.Checked = false; + this.fastFftCheckBox.Edge = 0.15F; + this.fastFftCheckBox.EndColor = System.Drawing.Color.White; + this.fastFftCheckBox.EndFactor = 0.2F; + this.fastFftCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.fastFftCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.fastFftCheckBox.Location = new System.Drawing.Point(152, 76); + this.fastFftCheckBox.Name = "fastFftCheckBox"; + this.fastFftCheckBox.NoBorder = false; + this.fastFftCheckBox.NoLed = false; + this.fastFftCheckBox.RadioButton = false; + this.fastFftCheckBox.Radius = 6; + this.fastFftCheckBox.RadiusB = 0; + this.fastFftCheckBox.Size = new System.Drawing.Size(46, 25); + this.fastFftCheckBox.StartColor = System.Drawing.Color.Black; + this.fastFftCheckBox.StartFactor = 0.35F; + this.fastFftCheckBox.TabIndex = 136; + this.fastFftCheckBox.Text = "Fast"; + this.toolTip.SetToolTip(this.fastFftCheckBox, "use Fast scrolling FFT display"); + this.fastFftCheckBox.CheckedChanged += new System.EventHandler(this.fastFftCheckBox_CheckedChanged); + // + // bftResolutionComboBox + // + this.bftResolutionComboBox.BackColor = System.Drawing.Color.Transparent; + this.bftResolutionComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.bftResolutionComboBox.Items.Add("512"); + this.bftResolutionComboBox.Items.Add("1024"); + this.bftResolutionComboBox.Items.Add("2048"); + this.bftResolutionComboBox.Items.Add("4096"); + this.bftResolutionComboBox.Items.Add("8192"); + this.bftResolutionComboBox.Items.Add("16384"); + this.bftResolutionComboBox.Location = new System.Drawing.Point(57, 104); + this.bftResolutionComboBox.Margin = new System.Windows.Forms.Padding(5); + this.bftResolutionComboBox.Name = "bftResolutionComboBox"; + this.bftResolutionComboBox.SelectedIndex = -1; + this.bftResolutionComboBox.Size = new System.Drawing.Size(83, 20); + this.bftResolutionComboBox.TabIndex = 109; + this.bftResolutionComboBox.Text = "xxxx"; + this.toolTip.SetToolTip(this.bftResolutionComboBox, "FFT resolution IF/AF spectrum"); + this.bftResolutionComboBox.ToolTip = this.toolTip; + this.bftResolutionComboBox.SelectedIndexChanged += new System.EventHandler(this.bftResolutionComboBox_SelectedIndexChanged); + // + // chkBaseBand + // + this.chkBaseBand.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.chkBaseBand.Arrow = 99; + this.chkBaseBand.Checked = false; + this.chkBaseBand.Edge = 0.15F; + this.chkBaseBand.EndColor = System.Drawing.Color.White; + this.chkBaseBand.EndFactor = 0.2F; + this.chkBaseBand.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkBaseBand.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkBaseBand.Location = new System.Drawing.Point(152, 136); + this.chkBaseBand.Name = "chkBaseBand"; + this.chkBaseBand.NoBorder = false; + this.chkBaseBand.NoLed = false; + this.chkBaseBand.RadioButton = false; + this.chkBaseBand.Radius = 6; + this.chkBaseBand.RadiusB = 0; + this.chkBaseBand.Size = new System.Drawing.Size(46, 23); + this.chkBaseBand.StartColor = System.Drawing.Color.Black; + this.chkBaseBand.StartFactor = 0.35F; + this.chkBaseBand.TabIndex = 99; + this.chkBaseBand.Text = "IF"; + this.toolTip.SetToolTip(this.chkBaseBand, "Show IF in RF spectrum"); + this.chkBaseBand.CheckedChanged += new System.EventHandler(this.chkBaseBand_CheckedChanged); + // + // latencyNumericUpDown + // + this.latencyNumericUpDown.ForeColor = System.Drawing.Color.Yellow; + this.latencyNumericUpDown.Increment = 10; + this.latencyNumericUpDown.Location = new System.Drawing.Point(56, 321); + this.latencyNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.latencyNumericUpDown.Maximum = ((long)(2000)); + this.latencyNumericUpDown.Minimum = ((long)(1)); + this.latencyNumericUpDown.Name = "latencyNumericUpDown"; + this.latencyNumericUpDown.Size = new System.Drawing.Size(83, 21); + this.latencyNumericUpDown.TabIndex = 89; + this.latencyNumericUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.latencyNumericUpDown, "Audio latency (100ms)"); + this.latencyNumericUpDown.Value = ((long)(100)); + this.latencyNumericUpDown.Enter += new System.EventHandler(this.gUpDown_Enter); + this.latencyNumericUpDown.Leave += new System.EventHandler(this.gpUpDown_Leave); + // + // fftWindowComboBox + // + this.fftWindowComboBox.BackColor = System.Drawing.Color.Transparent; + this.fftWindowComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.fftWindowComboBox.Items.Add("None"); + this.fftWindowComboBox.Items.Add("Hamming"); + this.fftWindowComboBox.Items.Add("Blackman"); + this.fftWindowComboBox.Items.Add("Blackman-Harris 4"); + this.fftWindowComboBox.Items.Add("Blackman-Harris 7"); + this.fftWindowComboBox.Items.Add("Hann-Poisson"); + this.fftWindowComboBox.Items.Add("Youssef"); + this.fftWindowComboBox.Location = new System.Drawing.Point(57, 25); + this.fftWindowComboBox.Margin = new System.Windows.Forms.Padding(5); + this.fftWindowComboBox.Name = "fftWindowComboBox"; + this.fftWindowComboBox.SelectedIndex = -1; + this.fftWindowComboBox.Size = new System.Drawing.Size(139, 20); + this.fftWindowComboBox.TabIndex = 85; + this.fftWindowComboBox.Tag = ""; + this.fftWindowComboBox.Text = "xxxx"; + this.toolTip.SetToolTip(this.fftWindowComboBox, "FFT/spectrum window type"); + this.fftWindowComboBox.ToolTip = this.toolTip; + this.fftWindowComboBox.SelectedIndexChanged += new System.EventHandler(this.fftWindowComboBox_SelectedIndexChanged); + // + // chkFastConv + // + this.chkFastConv.Arrow = 99; + this.chkFastConv.Checked = false; + this.chkFastConv.Edge = 0.15F; + this.chkFastConv.EndColor = System.Drawing.Color.White; + this.chkFastConv.EndFactor = 0.2F; + this.chkFastConv.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkFastConv.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkFastConv.Location = new System.Drawing.Point(152, 106); + this.chkFastConv.Name = "chkFastConv"; + this.chkFastConv.NoBorder = false; + this.chkFastConv.NoLed = false; + this.chkFastConv.RadioButton = false; + this.chkFastConv.Radius = 6; + this.chkFastConv.RadiusB = 0; + this.chkFastConv.Size = new System.Drawing.Size(46, 21); + this.chkFastConv.StartColor = System.Drawing.Color.Black; + this.chkFastConv.StartFactor = 0.35F; + this.chkFastConv.TabIndex = 91; + this.chkFastConv.Tag = ""; + this.chkFastConv.Text = " Conv."; + this.toolTip.SetToolTip(this.chkFastConv, "use \'Fast-Convolve\' for FFT calculation"); + this.chkFastConv.CheckedChanged += new System.EventHandler(this.chkFastConv_CheckedChanged); + // + // filterOrderNumericUpDown + // + this.filterOrderNumericUpDown.ForeColor = System.Drawing.Color.RoyalBlue; + this.filterOrderNumericUpDown.Increment = 10; + this.filterOrderNumericUpDown.Location = new System.Drawing.Point(57, 78); + this.filterOrderNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.filterOrderNumericUpDown.Maximum = ((long)(9999)); + this.filterOrderNumericUpDown.Minimum = ((long)(10)); + this.filterOrderNumericUpDown.Name = "filterOrderNumericUpDown"; + this.filterOrderNumericUpDown.Size = new System.Drawing.Size(83, 20); + this.filterOrderNumericUpDown.TabIndex = 88; + this.filterOrderNumericUpDown.Tag = ""; + this.filterOrderNumericUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.filterOrderNumericUpDown, "AF/bandwidth filter order"); + this.filterOrderNumericUpDown.Value = ((long)(400)); + this.filterOrderNumericUpDown.ValueChanged += new System.EventHandler(this.filterOrderNumericUpDown_ValueChanged); + this.filterOrderNumericUpDown.Enter += new System.EventHandler(this.gUpDown_Enter); + this.filterOrderNumericUpDown.Leave += new System.EventHandler(this.gpUpDown_Leave); + // + // filterTypeComboBox + // + this.filterTypeComboBox.BackColor = System.Drawing.Color.Transparent; + this.filterTypeComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.filterTypeComboBox.Items.Add("Hamming"); + this.filterTypeComboBox.Items.Add("Blackman"); + this.filterTypeComboBox.Items.Add("Blackman-Harris 4"); + this.filterTypeComboBox.Items.Add("Blackman-Harris 7"); + this.filterTypeComboBox.Items.Add("Hann-Poisson"); + this.filterTypeComboBox.Items.Add("Youssef"); + this.filterTypeComboBox.Location = new System.Drawing.Point(57, 50); + this.filterTypeComboBox.Margin = new System.Windows.Forms.Padding(5); + this.filterTypeComboBox.Name = "filterTypeComboBox"; + this.filterTypeComboBox.SelectedIndex = -1; + this.filterTypeComboBox.Size = new System.Drawing.Size(139, 20); + this.filterTypeComboBox.TabIndex = 86; + this.filterTypeComboBox.Tag = ""; + this.filterTypeComboBox.Text = "xxxx"; + this.toolTip.SetToolTip(this.filterTypeComboBox, "AF/bandwidth filter type."); + this.filterTypeComboBox.ToolTip = this.toolTip; + this.filterTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.filterTypeComboBox_SelectedIndexChanged); + // + // swapIQCheckBox + // + this.swapIQCheckBox.Arrow = 99; + this.swapIQCheckBox.Checked = false; + this.swapIQCheckBox.Edge = 0.15F; + this.swapIQCheckBox.EndColor = System.Drawing.Color.White; + this.swapIQCheckBox.EndFactor = 0.2F; + this.swapIQCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.swapIQCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.swapIQCheckBox.Location = new System.Drawing.Point(149, 109); + this.swapIQCheckBox.Name = "swapIQCheckBox"; + this.swapIQCheckBox.NoBorder = false; + this.swapIQCheckBox.NoLed = false; + this.swapIQCheckBox.RadioButton = false; + this.swapIQCheckBox.Radius = 6; + this.swapIQCheckBox.RadiusB = 0; + this.swapIQCheckBox.Size = new System.Drawing.Size(46, 24); + this.swapIQCheckBox.StartColor = System.Drawing.Color.Black; + this.swapIQCheckBox.StartFactor = 0.35F; + this.swapIQCheckBox.TabIndex = 18; + this.swapIQCheckBox.Text = "Swap"; + this.toolTip.SetToolTip(this.swapIQCheckBox, "Swap RF spectrum "); + this.swapIQCheckBox.CheckedChanged += new System.EventHandler(this.swapIQCheckBox_CheckedChanged); + // + // squelchNumericUpDown + // + this.squelchNumericUpDown.ForeColor = System.Drawing.Color.RoyalBlue; + this.squelchNumericUpDown.Increment = 1; + this.squelchNumericUpDown.Location = new System.Drawing.Point(51, 132); + this.squelchNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.squelchNumericUpDown.Maximum = ((long)(32767)); + this.squelchNumericUpDown.Minimum = ((long)(-32767)); + this.squelchNumericUpDown.Name = "squelchNumericUpDown"; + this.squelchNumericUpDown.Size = new System.Drawing.Size(79, 21); + this.squelchNumericUpDown.TabIndex = 14; + this.squelchNumericUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.squelchNumericUpDown, "Squelch level (dBm)"); + this.squelchNumericUpDown.Value = ((long)(22)); + this.squelchNumericUpDown.ValueChanged += new System.EventHandler(this.squelchNumericUpDown_ValueChanged); + this.squelchNumericUpDown.Enter += new System.EventHandler(this.gUpDown_Enter); + this.squelchNumericUpDown.Leave += new System.EventHandler(this.gpUpDown_Leave); + // + // useSquelchCheckBox + // + this.useSquelchCheckBox.Arrow = 99; + this.useSquelchCheckBox.Checked = false; + this.useSquelchCheckBox.Edge = 0.15F; + this.useSquelchCheckBox.EndColor = System.Drawing.Color.White; + this.useSquelchCheckBox.EndFactor = 0.2F; + this.useSquelchCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.useSquelchCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.useSquelchCheckBox.Location = new System.Drawing.Point(0, 129); + this.useSquelchCheckBox.Name = "useSquelchCheckBox"; + this.useSquelchCheckBox.NoBorder = false; + this.useSquelchCheckBox.NoLed = false; + this.useSquelchCheckBox.RadioButton = false; + this.useSquelchCheckBox.Radius = 6; + this.useSquelchCheckBox.RadiusB = 0; + this.useSquelchCheckBox.Size = new System.Drawing.Size(46, 24); + this.useSquelchCheckBox.StartColor = System.Drawing.Color.Black; + this.useSquelchCheckBox.StartFactor = 0.35F; + this.useSquelchCheckBox.TabIndex = 13; + this.useSquelchCheckBox.Text = "SQ"; + this.toolTip.SetToolTip(this.useSquelchCheckBox, "AM/FM squelch on/off"); + this.useSquelchCheckBox.CheckedChanged += new System.EventHandler(this.useSquelchCheckBox_CheckedChanged); + // + // stepSizeComboBox + // + this.stepSizeComboBox.BackColor = System.Drawing.Color.Transparent; + this.stepSizeComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.stepSizeComboBox.Items.Add("1 Hz"); + this.stepSizeComboBox.Items.Add("10 Hz"); + this.stepSizeComboBox.Items.Add("100 Hz"); + this.stepSizeComboBox.Items.Add("500 Hz"); + this.stepSizeComboBox.Items.Add("1 kHz"); + this.stepSizeComboBox.Items.Add("2.5 kHz"); + this.stepSizeComboBox.Items.Add("5 kHz"); + this.stepSizeComboBox.Items.Add("6.25 kHz"); + this.stepSizeComboBox.Items.Add("8.33 kHz"); + this.stepSizeComboBox.Items.Add("9 kHz"); + this.stepSizeComboBox.Items.Add("10 kHz"); + this.stepSizeComboBox.Items.Add("12.5 kHz"); + this.stepSizeComboBox.Items.Add("25 kHz"); + this.stepSizeComboBox.Items.Add("50 kHz"); + this.stepSizeComboBox.Items.Add("100 kHz"); + this.stepSizeComboBox.Items.Add("150 kHz"); + this.stepSizeComboBox.Items.Add("200 kHz"); + this.stepSizeComboBox.Items.Add("250 kHz"); + this.stepSizeComboBox.Location = new System.Drawing.Point(51, 106); + this.stepSizeComboBox.Margin = new System.Windows.Forms.Padding(5); + this.stepSizeComboBox.Name = "stepSizeComboBox"; + this.stepSizeComboBox.SelectedIndex = -1; + this.stepSizeComboBox.Size = new System.Drawing.Size(79, 21); + this.stepSizeComboBox.TabIndex = 10; + this.stepSizeComboBox.Text = "xxxx"; + this.toolTip.SetToolTip(this.stepSizeComboBox, "Stepsize for VFO freq. snap"); + this.stepSizeComboBox.ToolTip = this.toolTip; + this.stepSizeComboBox.SelectedIndexChanged += new System.EventHandler(this.stepSizeComboBox_SelectedIndexChanged); + // + // snapFrequencyCheckBox + // + this.snapFrequencyCheckBox.Arrow = 99; + this.snapFrequencyCheckBox.Checked = false; + this.snapFrequencyCheckBox.Edge = 0.15F; + this.snapFrequencyCheckBox.EndColor = System.Drawing.Color.White; + this.snapFrequencyCheckBox.EndFactor = 0.2F; + this.snapFrequencyCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.snapFrequencyCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.snapFrequencyCheckBox.Location = new System.Drawing.Point(0, 102); + this.snapFrequencyCheckBox.Name = "snapFrequencyCheckBox"; + this.snapFrequencyCheckBox.NoBorder = false; + this.snapFrequencyCheckBox.NoLed = false; + this.snapFrequencyCheckBox.RadioButton = false; + this.snapFrequencyCheckBox.Radius = 6; + this.snapFrequencyCheckBox.RadiusB = 0; + this.snapFrequencyCheckBox.Size = new System.Drawing.Size(46, 24); + this.snapFrequencyCheckBox.StartColor = System.Drawing.Color.Black; + this.snapFrequencyCheckBox.StartFactor = 0.35F; + this.snapFrequencyCheckBox.TabIndex = 16; + this.snapFrequencyCheckBox.Tag = ""; + this.snapFrequencyCheckBox.Text = "Snap"; + this.toolTip.SetToolTip(this.snapFrequencyCheckBox, "Snap VFO freq. to stepsize"); + this.snapFrequencyCheckBox.CheckedChanged += new System.EventHandler(this.stepSizeComboBox_SelectedIndexChanged); + // + // cmbDbm + // + this.cmbDbm.BackColor = System.Drawing.Color.Transparent; + this.cmbDbm.ForeColor = System.Drawing.Color.RoyalBlue; + this.cmbDbm.Items.Add("dBm"); + this.cmbDbm.Items.Add("dBuV"); + this.cmbDbm.Items.Add("S-pts"); + this.cmbDbm.Items.Add("%"); + this.cmbDbm.Location = new System.Drawing.Point(51, 80); + this.cmbDbm.Margin = new System.Windows.Forms.Padding(5); + this.cmbDbm.Name = "cmbDbm"; + this.cmbDbm.SelectedIndex = -1; + this.cmbDbm.Size = new System.Drawing.Size(79, 21); + this.cmbDbm.TabIndex = 11; + this.cmbDbm.Text = "xxxx"; + this.toolTip.SetToolTip(this.cmbDbm, "Spectrum/S-meter labels"); + this.cmbDbm.ToolTip = this.toolTip; + this.cmbDbm.SelectedIndexChanged += new System.EventHandler(this.cmbDbm_SelectedIndexChanged); + // + // agcCheckBox + // + this.agcCheckBox.Arrow = 99; + this.agcCheckBox.Checked = false; + this.agcCheckBox.Edge = 0.15F; + this.agcCheckBox.EndColor = System.Drawing.Color.White; + this.agcCheckBox.EndFactor = 0.2F; + this.agcCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.agcCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.agcCheckBox.Location = new System.Drawing.Point(149, 166); + this.agcCheckBox.Name = "agcCheckBox"; + this.agcCheckBox.NoBorder = false; + this.agcCheckBox.NoLed = false; + this.agcCheckBox.RadioButton = false; + this.agcCheckBox.Radius = 6; + this.agcCheckBox.RadiusB = 0; + this.agcCheckBox.Size = new System.Drawing.Size(46, 24); + this.agcCheckBox.StartColor = System.Drawing.Color.Black; + this.agcCheckBox.StartFactor = 0.35F; + this.agcCheckBox.TabIndex = 19; + this.agcCheckBox.Text = "AGC"; + this.toolTip.SetToolTip(this.agcCheckBox, "Automatic Gain Control on/off"); + this.agcCheckBox.CheckedChanged += new System.EventHandler(this.agcCheckBox_CheckedChanged); + // + // rawRadioButton + // + this.rawRadioButton.Arrow = 99; + this.rawRadioButton.Checked = false; + this.rawRadioButton.Edge = 0.15F; + this.rawRadioButton.EndColor = System.Drawing.Color.White; + this.rawRadioButton.EndFactor = 0.2F; + this.rawRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.rawRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.rawRadioButton.Location = new System.Drawing.Point(149, 76); + this.rawRadioButton.Name = "rawRadioButton"; + this.rawRadioButton.NoBorder = false; + this.rawRadioButton.NoLed = false; + this.rawRadioButton.RadioButton = true; + this.rawRadioButton.Radius = 6; + this.rawRadioButton.RadiusB = 0; + this.rawRadioButton.Size = new System.Drawing.Size(46, 24); + this.rawRadioButton.StartColor = System.Drawing.Color.Black; + this.rawRadioButton.StartFactor = 0.35F; + this.rawRadioButton.TabIndex = 10; + this.rawRadioButton.Text = "RAW"; + this.toolTip.SetToolTip(this.rawRadioButton, "RAW mode for use with VB cable"); + this.rawRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // correctIQCheckBox + // + this.correctIQCheckBox.Arrow = 99; + this.correctIQCheckBox.Checked = false; + this.correctIQCheckBox.Edge = 0.15F; + this.correctIQCheckBox.EndColor = System.Drawing.Color.White; + this.correctIQCheckBox.EndFactor = 0.2F; + this.correctIQCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.correctIQCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.correctIQCheckBox.Location = new System.Drawing.Point(149, 137); + this.correctIQCheckBox.Name = "correctIQCheckBox"; + this.correctIQCheckBox.NoBorder = false; + this.correctIQCheckBox.NoLed = false; + this.correctIQCheckBox.RadioButton = false; + this.correctIQCheckBox.Radius = 6; + this.correctIQCheckBox.RadiusB = 0; + this.correctIQCheckBox.Size = new System.Drawing.Size(46, 24); + this.correctIQCheckBox.StartColor = System.Drawing.Color.Black; + this.correctIQCheckBox.StartFactor = 0.35F; + this.correctIQCheckBox.TabIndex = 73; + this.correctIQCheckBox.Text = " Corr"; + this.toolTip.SetToolTip(this.correctIQCheckBox, "Correct RF center spike"); + this.correctIQCheckBox.CheckedChanged += new System.EventHandler(this.autoCorrectIQCheckBox_CheckStateChanged); + // + // gBexpand + // + this.gBexpand.Arrow = 0; + this.gBexpand.Checked = false; + this.gBexpand.Edge = 0.15F; + this.gBexpand.EndColor = System.Drawing.Color.White; + this.gBexpand.EndFactor = 0.2F; + this.gBexpand.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.gBexpand.ForeColor = System.Drawing.Color.CornflowerBlue; + this.gBexpand.Location = new System.Drawing.Point(179, 271); + this.gBexpand.Name = "gBexpand"; + this.gBexpand.NoBorder = false; + this.gBexpand.NoLed = true; + this.gBexpand.RadioButton = false; + this.gBexpand.Radius = 4; + this.gBexpand.RadiusB = 0; + this.gBexpand.Size = new System.Drawing.Size(17, 16); + this.gBexpand.StartColor = System.Drawing.Color.Black; + this.gBexpand.StartFactor = 0.35F; + this.gBexpand.TabIndex = 123; + this.gBexpand.Text = "..."; + this.toolTip.SetToolTip(this.gBexpand, "More scope options"); + this.gBexpand.CheckedChanged += new System.EventHandler(this.gBexpand_CheckedChanged); + // + // tbvPeakRel + // + this.tbvPeakRel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbvPeakRel.Button = false; + this.tbvPeakRel.Checked = false; + this.tbvPeakRel.ColorFactor = 0.6F; + this.tbvPeakRel.ForeColor = System.Drawing.Color.Red; + this.tbvPeakRel.Location = new System.Drawing.Point(168, 450); + this.tbvPeakRel.Margin = new System.Windows.Forms.Padding(4); + this.tbvPeakRel.Maximum = 10; + this.tbvPeakRel.Minimum = -10; + this.tbvPeakRel.Name = "tbvPeakRel"; + this.tbvPeakRel.Size = new System.Drawing.Size(15, 73); + this.tbvPeakRel.TabIndex = 48; + this.tbvPeakRel.Tag = "1"; + this.tbvPeakRel.TickColor = System.Drawing.Color.Silver; + this.tbvPeakRel.Ticks = 5; + this.tbvPeakRel.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbvPeakRel, "Peak release speed"); + this.tbvPeakRel.Value = 0; + this.tbvPeakRel.ValueChanged += new System.EventHandler(this.tbvPeakRel_ValueChanged); + // + // tbvPeakDelay + // + this.tbvPeakDelay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbvPeakDelay.Button = false; + this.tbvPeakDelay.Checked = false; + this.tbvPeakDelay.ColorFactor = 0.6F; + this.tbvPeakDelay.ForeColor = System.Drawing.Color.Red; + this.tbvPeakDelay.Location = new System.Drawing.Point(131, 449); + this.tbvPeakDelay.Margin = new System.Windows.Forms.Padding(4); + this.tbvPeakDelay.Maximum = 10; + this.tbvPeakDelay.Minimum = -10; + this.tbvPeakDelay.Name = "tbvPeakDelay"; + this.tbvPeakDelay.Size = new System.Drawing.Size(15, 73); + this.tbvPeakDelay.TabIndex = 47; + this.tbvPeakDelay.Tag = "1"; + this.tbvPeakDelay.TickColor = System.Drawing.Color.Silver; + this.tbvPeakDelay.Ticks = 5; + this.tbvPeakDelay.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbvPeakDelay, "Peak attack speed"); + this.tbvPeakDelay.Value = 0; + this.tbvPeakDelay.ValueChanged += new System.EventHandler(this.tbvPeakDelay_ValueChanged); + // + // tbvAudioAvg + // + this.tbvAudioAvg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbvAudioAvg.Button = false; + this.tbvAudioAvg.Checked = false; + this.tbvAudioAvg.ColorFactor = 0.6F; + this.tbvAudioAvg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0))))); + this.tbvAudioAvg.Location = new System.Drawing.Point(92, 450); + this.tbvAudioAvg.Margin = new System.Windows.Forms.Padding(4); + this.tbvAudioAvg.Maximum = 10; + this.tbvAudioAvg.Minimum = -10; + this.tbvAudioAvg.Name = "tbvAudioAvg"; + this.tbvAudioAvg.Size = new System.Drawing.Size(15, 73); + this.tbvAudioAvg.TabIndex = 46; + this.tbvAudioAvg.Tag = "1"; + this.tbvAudioAvg.TickColor = System.Drawing.Color.Silver; + this.tbvAudioAvg.Ticks = 5; + this.tbvAudioAvg.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbvAudioAvg, "Audio averaging speed"); + this.tbvAudioAvg.Value = 0; + this.tbvAudioAvg.ValueChanged += new System.EventHandler(this.tbvAudioAvg_ValueChanged); + // + // tbvAudioRel + // + this.tbvAudioRel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbvAudioRel.Button = false; + this.tbvAudioRel.Checked = false; + this.tbvAudioRel.ColorFactor = 0.6F; + this.tbvAudioRel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0))))); + this.tbvAudioRel.Location = new System.Drawing.Point(53, 449); + this.tbvAudioRel.Margin = new System.Windows.Forms.Padding(4); + this.tbvAudioRel.Maximum = 10; + this.tbvAudioRel.Minimum = -10; + this.tbvAudioRel.Name = "tbvAudioRel"; + this.tbvAudioRel.Size = new System.Drawing.Size(15, 73); + this.tbvAudioRel.TabIndex = 45; + this.tbvAudioRel.Tag = "1"; + this.tbvAudioRel.TickColor = System.Drawing.Color.Silver; + this.tbvAudioRel.Ticks = 5; + this.tbvAudioRel.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbvAudioRel, "Audio release speed"); + this.tbvAudioRel.Value = 0; + this.tbvAudioRel.ValueChanged += new System.EventHandler(this.tbvAudioRel_ValueChanged); + // + // tbvCarrierAvg + // + this.tbvCarrierAvg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbvCarrierAvg.Button = false; + this.tbvCarrierAvg.Checked = false; + this.tbvCarrierAvg.ColorFactor = 0.6F; + this.tbvCarrierAvg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0))))); + this.tbvCarrierAvg.Location = new System.Drawing.Point(13, 450); + this.tbvCarrierAvg.Margin = new System.Windows.Forms.Padding(4); + this.tbvCarrierAvg.Maximum = 10; + this.tbvCarrierAvg.Minimum = -10; + this.tbvCarrierAvg.Name = "tbvCarrierAvg"; + this.tbvCarrierAvg.Size = new System.Drawing.Size(15, 73); + this.tbvCarrierAvg.TabIndex = 44; + this.tbvCarrierAvg.Tag = "1"; + this.tbvCarrierAvg.TickColor = System.Drawing.Color.Silver; + this.tbvCarrierAvg.Ticks = 5; + this.tbvCarrierAvg.ToolTip = null; + this.toolTip.SetToolTip(this.tbvCarrierAvg, "Carrier avaraging speed"); + this.tbvCarrierAvg.Value = 0; + this.tbvCarrierAvg.ValueChanged += new System.EventHandler(this.tbvCarrierAvg_ValueChanged); + // + // tbTrigL + // + this.tbTrigL.Button = false; + this.tbTrigL.Checked = false; + this.tbTrigL.ColorFactor = 0.55F; + this.tbTrigL.ForeColor = System.Drawing.Color.Black; + this.tbTrigL.Location = new System.Drawing.Point(132, 360); + this.tbTrigL.Margin = new System.Windows.Forms.Padding(4); + this.tbTrigL.Maximum = 50; + this.tbTrigL.Minimum = -50; + this.tbTrigL.Name = "tbTrigL"; + this.tbTrigL.Size = new System.Drawing.Size(66, 17); + this.tbTrigL.TabIndex = 33; + this.tbTrigL.TickColor = System.Drawing.Color.Black; + this.tbTrigL.Ticks = 0; + this.tbTrigL.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbTrigL, "Vertical triggel level"); + this.tbTrigL.Value = 0; + this.tbTrigL.ValueChanged += new System.EventHandler(this.tbTrigL_ValueChanged); + // + // cmbHchannel + // + this.cmbHchannel.BackColor = System.Drawing.Color.Transparent; + this.cmbHchannel.ForeColor = System.Drawing.Color.RoyalBlue; + this.cmbHchannel.Items.Add("AM"); + this.cmbHchannel.Items.Add("FM"); + this.cmbHchannel.Items.Add("PM"); + this.cmbHchannel.Items.Add("Audio"); + this.cmbHchannel.Items.Add("Envel."); + this.cmbHchannel.Items.Add("IQ"); + this.cmbHchannel.Location = new System.Drawing.Point(68, 391); + this.cmbHchannel.Margin = new System.Windows.Forms.Padding(5); + this.cmbHchannel.Name = "cmbHchannel"; + this.cmbHchannel.SelectedIndex = -1; + this.cmbHchannel.Size = new System.Drawing.Size(62, 21); + this.cmbHchannel.TabIndex = 31; + this.cmbHchannel.Text = "xxxx"; + this.toolTip.SetToolTip(this.cmbHchannel, "Vetical input"); + this.cmbHchannel.ToolTip = this.toolTip; + this.cmbHchannel.SelectedIndexChanged += new System.EventHandler(this.cmbHchannel_SelectedIndexChanged); + // + // tbGain + // + this.tbGain.Button = false; + this.tbGain.Checked = false; + this.tbGain.ColorFactor = 0.55F; + this.tbGain.ForeColor = System.Drawing.Color.Black; + this.tbGain.Location = new System.Drawing.Point(99, 570); + this.tbGain.Margin = new System.Windows.Forms.Padding(4); + this.tbGain.Maximum = 100; + this.tbGain.Minimum = 1; + this.tbGain.Name = "tbGain"; + this.tbGain.Size = new System.Drawing.Size(78, 16); + this.tbGain.TabIndex = 42; + this.tbGain.Tag = "1"; + this.tbGain.TickColor = System.Drawing.Color.Black; + this.tbGain.Ticks = 0; + this.tbGain.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbGain, "Carrier lock speed"); + this.tbGain.Value = 15; + this.tbGain.ValueChanged += new System.EventHandler(this.tbGain_ValueChanged); + // + // tbAverage + // + this.tbAverage.Button = false; + this.tbAverage.Checked = false; + this.tbAverage.ColorFactor = 0.55F; + this.tbAverage.ForeColor = System.Drawing.Color.Black; + this.tbAverage.Location = new System.Drawing.Point(99, 549); + this.tbAverage.Margin = new System.Windows.Forms.Padding(4); + this.tbAverage.Maximum = 100; + this.tbAverage.Minimum = 1; + this.tbAverage.Name = "tbAverage"; + this.tbAverage.Size = new System.Drawing.Size(78, 15); + this.tbAverage.TabIndex = 31; + this.tbAverage.Tag = "1"; + this.tbAverage.TickColor = System.Drawing.Color.Black; + this.tbAverage.Ticks = 0; + this.tbAverage.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbAverage, "Carrier lock averaging"); + this.tbAverage.Value = 7; + this.tbAverage.ValueChanged += new System.EventHandler(this.tbAverage_ValueChanged); + // + // chkHrunDC + // + this.chkHrunDC.Arrow = 99; + this.chkHrunDC.Checked = false; + this.chkHrunDC.Edge = 0.15F; + this.chkHrunDC.EndColor = System.Drawing.Color.White; + this.chkHrunDC.EndFactor = 0.2F; + this.chkHrunDC.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkHrunDC.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkHrunDC.Location = new System.Drawing.Point(67, 362); + this.chkHrunDC.Name = "chkHrunDC"; + this.chkHrunDC.NoBorder = false; + this.chkHrunDC.NoLed = false; + this.chkHrunDC.RadioButton = false; + this.chkHrunDC.Radius = 6; + this.chkHrunDC.RadiusB = 0; + this.chkHrunDC.Size = new System.Drawing.Size(46, 23); + this.chkHrunDC.StartColor = System.Drawing.Color.Black; + this.chkHrunDC.StartFactor = 0.35F; + this.chkHrunDC.TabIndex = 30; + this.chkHrunDC.Text = "DC"; + this.toolTip.SetToolTip(this.chkHrunDC, "Enable DC"); + this.chkHrunDC.CheckedChanged += new System.EventHandler(this.chkHrunDC_CheckedChanged); + // + // chkAver + // + this.chkAver.Arrow = 0; + this.chkAver.Checked = false; + this.chkAver.Edge = 0.15F; + this.chkAver.EndColor = System.Drawing.Color.White; + this.chkAver.EndFactor = 0.2F; + this.chkAver.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkAver.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkAver.Location = new System.Drawing.Point(14, 561); + this.chkAver.Name = "chkAver"; + this.chkAver.NoBorder = false; + this.chkAver.NoLed = false; + this.chkAver.RadioButton = false; + this.chkAver.Radius = 6; + this.chkAver.RadiusB = 0; + this.chkAver.Size = new System.Drawing.Size(38, 26); + this.chkAver.StartColor = System.Drawing.Color.Black; + this.chkAver.StartFactor = 0.35F; + this.chkAver.TabIndex = 43; + this.chkAver.Tag = "1"; + this.chkAver.Text = " Filter"; + this.toolTip.SetToolTip(this.chkAver, "Carrier lock filtering"); + this.chkAver.CheckedChanged += new System.EventHandler(this.chkAver_CheckedChanged); + // + // chkVrunDC + // + this.chkVrunDC.Arrow = 99; + this.chkVrunDC.Checked = false; + this.chkVrunDC.Edge = 0.15F; + this.chkVrunDC.EndColor = System.Drawing.Color.White; + this.chkVrunDC.EndFactor = 0.2F; + this.chkVrunDC.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkVrunDC.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkVrunDC.Location = new System.Drawing.Point(0, 362); + this.chkVrunDC.Name = "chkVrunDC"; + this.chkVrunDC.NoBorder = false; + this.chkVrunDC.NoLed = false; + this.chkVrunDC.RadioButton = false; + this.chkVrunDC.Radius = 6; + this.chkVrunDC.RadiusB = 0; + this.chkVrunDC.Size = new System.Drawing.Size(47, 23); + this.chkVrunDC.StartColor = System.Drawing.Color.Black; + this.chkVrunDC.StartFactor = 0.35F; + this.chkVrunDC.TabIndex = 26; + this.chkVrunDC.Text = "DC"; + this.toolTip.SetToolTip(this.chkVrunDC, "Enable DC"); + this.chkVrunDC.CheckedChanged += new System.EventHandler(this.chkVrunDC_CheckedChanged); + // + // chkHinvert + // + this.chkHinvert.Arrow = 99; + this.chkHinvert.Checked = false; + this.chkHinvert.Edge = 0.15F; + this.chkHinvert.EndColor = System.Drawing.Color.White; + this.chkHinvert.EndFactor = 0.2F; + this.chkHinvert.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkHinvert.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkHinvert.Location = new System.Drawing.Point(67, 336); + this.chkHinvert.Name = "chkHinvert"; + this.chkHinvert.NoBorder = false; + this.chkHinvert.NoLed = false; + this.chkHinvert.RadioButton = false; + this.chkHinvert.Radius = 6; + this.chkHinvert.RadiusB = 0; + this.chkHinvert.Size = new System.Drawing.Size(47, 22); + this.chkHinvert.StartColor = System.Drawing.Color.Black; + this.chkHinvert.StartFactor = 0.35F; + this.chkHinvert.TabIndex = 29; + this.chkHinvert.Text = "Inv. "; + this.toolTip.SetToolTip(this.chkHinvert, "Invert H channel"); + this.chkHinvert.CheckedChanged += new System.EventHandler(this.chkHinvert_CheckedChanged); + // + // chkXY + // + this.chkXY.Arrow = 99; + this.chkXY.BackColor = System.Drawing.Color.White; + this.chkXY.Checked = false; + this.chkXY.Edge = 0.15F; + this.chkXY.EndColor = System.Drawing.Color.White; + this.chkXY.EndFactor = 0.2F; + this.chkXY.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkXY.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkXY.Location = new System.Drawing.Point(138, 388); + this.chkXY.Name = "chkXY"; + this.chkXY.NoBorder = false; + this.chkXY.NoLed = false; + this.chkXY.RadioButton = false; + this.chkXY.Radius = 6; + this.chkXY.RadiusB = 0; + this.chkXY.Size = new System.Drawing.Size(38, 24); + this.chkXY.StartColor = System.Drawing.Color.Black; + this.chkXY.StartFactor = 0.35F; + this.chkXY.TabIndex = 34; + this.chkXY.Text = "XY"; + this.toolTip.SetToolTip(this.chkXY, "XY mode on/off"); + this.chkXY.CheckedChanged += new System.EventHandler(this.chkXY_CheckedChanged); + // + // chkVinvert + // + this.chkVinvert.Arrow = 99; + this.chkVinvert.Checked = false; + this.chkVinvert.Edge = 0.15F; + this.chkVinvert.EndColor = System.Drawing.Color.White; + this.chkVinvert.EndFactor = 0.2F; + this.chkVinvert.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkVinvert.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkVinvert.Location = new System.Drawing.Point(0, 336); + this.chkVinvert.Name = "chkVinvert"; + this.chkVinvert.NoBorder = false; + this.chkVinvert.NoLed = false; + this.chkVinvert.RadioButton = false; + this.chkVinvert.Radius = 6; + this.chkVinvert.RadiusB = 0; + this.chkVinvert.Size = new System.Drawing.Size(48, 22); + this.chkVinvert.StartColor = System.Drawing.Color.Black; + this.chkVinvert.StartFactor = 0.35F; + this.chkVinvert.TabIndex = 25; + this.chkVinvert.Text = "Inv."; + this.toolTip.SetToolTip(this.chkVinvert, "Invert V channel"); + this.chkVinvert.CheckedChanged += new System.EventHandler(this.chkVinvert_CheckedChanged); + // + // cmbTim + // + this.cmbTim.BackColor = System.Drawing.Color.Transparent; + this.cmbTim.ForeColor = System.Drawing.Color.RoyalBlue; + this.cmbTim.Items.Add("10 ms"); + this.cmbTim.Items.Add("5 ms"); + this.cmbTim.Items.Add("2 ms"); + this.cmbTim.Items.Add("1 ms"); + this.cmbTim.Items.Add("500 us"); + this.cmbTim.Items.Add("200 us"); + this.cmbTim.Items.Add("100 us"); + this.cmbTim.Location = new System.Drawing.Point(137, 309); + this.cmbTim.Margin = new System.Windows.Forms.Padding(5); + this.cmbTim.Name = "cmbTim"; + this.cmbTim.SelectedIndex = -1; + this.cmbTim.Size = new System.Drawing.Size(62, 21); + this.cmbTim.TabIndex = 32; + this.cmbTim.Text = "xxxx"; + this.toolTip.SetToolTip(this.cmbTim, "Timebase/speed"); + this.cmbTim.ToolTip = this.toolTip; + this.cmbTim.SelectedIndexChanged += new System.EventHandler(this.cmbTim_SelectedIndexChanged); + // + // cmbHor + // + this.cmbHor.BackColor = System.Drawing.Color.Transparent; + this.cmbHor.ForeColor = System.Drawing.Color.RoyalBlue; + this.cmbHor.Items.Add("10 mV"); + this.cmbHor.Items.Add("5 mV"); + this.cmbHor.Items.Add("2 mV"); + this.cmbHor.Items.Add("1 mV"); + this.cmbHor.Items.Add("0.5 mV"); + this.cmbHor.Items.Add("0.2 mV"); + this.cmbHor.Items.Add("0.1 mV"); + this.cmbHor.Location = new System.Drawing.Point(69, 309); + this.cmbHor.Margin = new System.Windows.Forms.Padding(5); + this.cmbHor.Name = "cmbHor"; + this.cmbHor.SelectedIndex = -1; + this.cmbHor.Size = new System.Drawing.Size(62, 21); + this.cmbHor.TabIndex = 28; + this.cmbHor.Text = "xxxx"; + this.toolTip.SetToolTip(this.cmbHor, "Horizontal scale"); + this.cmbHor.ToolTip = this.toolTip; + this.cmbHor.SelectedIndexChanged += new System.EventHandler(this.cmbHor_SelectedIndexChanged); + // + // cmbVer + // + this.cmbVer.BackColor = System.Drawing.Color.Transparent; + this.cmbVer.ForeColor = System.Drawing.Color.RoyalBlue; + this.cmbVer.Items.Add("10 mV"); + this.cmbVer.Items.Add("5 mV"); + this.cmbVer.Items.Add("2 mV"); + this.cmbVer.Items.Add("1 mV"); + this.cmbVer.Items.Add("0.5 mV"); + this.cmbVer.Items.Add("0.2 mV"); + this.cmbVer.Items.Add("0.1 mV"); + this.cmbVer.Location = new System.Drawing.Point(1, 309); + this.cmbVer.Margin = new System.Windows.Forms.Padding(5); + this.cmbVer.Name = "cmbVer"; + this.cmbVer.SelectedIndex = -1; + this.cmbVer.Size = new System.Drawing.Size(62, 21); + this.cmbVer.TabIndex = 24; + this.cmbVer.Text = "xxxx"; + this.toolTip.SetToolTip(this.cmbVer, "Vertical scale"); + this.cmbVer.ToolTip = this.toolTip; + this.cmbVer.SelectedIndexChanged += new System.EventHandler(this.cmbVer_SelectedIndexChanged); + // + // tbRFgain + // + this.tbRFgain.Button = false; + this.tbRFgain.Checked = false; + this.tbRFgain.ColorFactor = 0.5F; + this.tbRFgain.ForeColor = System.Drawing.Color.Black; + this.tbRFgain.Location = new System.Drawing.Point(54, 24); + this.tbRFgain.Margin = new System.Windows.Forms.Padding(4); + this.tbRFgain.Maximum = 40; + this.tbRFgain.Minimum = -55; + this.tbRFgain.Name = "tbRFgain"; + this.tbRFgain.Size = new System.Drawing.Size(140, 18); + this.tbRFgain.TabIndex = 23; + this.tbRFgain.TickColor = System.Drawing.Color.Silver; + this.tbRFgain.Ticks = 10; + this.tbRFgain.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbRFgain, "Gain for sope display."); + this.tbRFgain.Value = 0; + this.tbRFgain.ValueChanged += new System.EventHandler(this.tbRFgain_ValueChanged); + // + // cmbVchannel + // + this.cmbVchannel.BackColor = System.Drawing.Color.Transparent; + this.cmbVchannel.ForeColor = System.Drawing.Color.RoyalBlue; + this.cmbVchannel.Items.Add("AM"); + this.cmbVchannel.Items.Add("FM"); + this.cmbVchannel.Items.Add("PM"); + this.cmbVchannel.Items.Add("Audio"); + this.cmbVchannel.Items.Add("Envel."); + this.cmbVchannel.Items.Add("IQ"); + this.cmbVchannel.Location = new System.Drawing.Point(1, 390); + this.cmbVchannel.Margin = new System.Windows.Forms.Padding(5); + this.cmbVchannel.Name = "cmbVchannel"; + this.cmbVchannel.SelectedIndex = -1; + this.cmbVchannel.Size = new System.Drawing.Size(62, 21); + this.cmbVchannel.TabIndex = 27; + this.cmbVchannel.Text = "xxxx"; + this.toolTip.SetToolTip(this.cmbVchannel, "Horizontal input"); + this.cmbVchannel.ToolTip = this.toolTip; + this.cmbVchannel.SelectedIndexChanged += new System.EventHandler(this.cmbVchannel_SelectedIndexChanged); + // + // gBexpandScope + // + this.gBexpandScope.Arrow = 0; + this.gBexpandScope.Checked = false; + this.gBexpandScope.Edge = 0.15F; + this.gBexpandScope.EndColor = System.Drawing.Color.White; + this.gBexpandScope.EndFactor = 0.2F; + this.gBexpandScope.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.gBexpandScope.ForeColor = System.Drawing.Color.CornflowerBlue; + this.gBexpandScope.Location = new System.Drawing.Point(180, 396); + this.gBexpandScope.Name = "gBexpandScope"; + this.gBexpandScope.NoBorder = false; + this.gBexpandScope.NoLed = true; + this.gBexpandScope.RadioButton = false; + this.gBexpandScope.Radius = 4; + this.gBexpandScope.RadiusB = 0; + this.gBexpandScope.Size = new System.Drawing.Size(17, 16); + this.gBexpandScope.StartColor = System.Drawing.Color.Black; + this.gBexpandScope.StartFactor = 0.35F; + this.gBexpandScope.TabIndex = 35; + this.gBexpandScope.Text = "..."; + this.toolTip.SetToolTip(this.gBexpandScope, "More audio-bar options"); + this.gBexpandScope.CheckedChanged += new System.EventHandler(this.gBexpandScope_CheckedChanged); + // + // cwShiftNumericUpDown + // + this.cwShiftNumericUpDown.ForeColor = System.Drawing.Color.RoyalBlue; + this.cwShiftNumericUpDown.Increment = 10; + this.cwShiftNumericUpDown.Location = new System.Drawing.Point(54, 144); + this.cwShiftNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.cwShiftNumericUpDown.Maximum = ((long)(1200)); + this.cwShiftNumericUpDown.Minimum = ((long)(200)); + this.cwShiftNumericUpDown.Name = "cwShiftNumericUpDown"; + this.cwShiftNumericUpDown.Size = new System.Drawing.Size(82, 21); + this.cwShiftNumericUpDown.TabIndex = 57; + this.cwShiftNumericUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.cwShiftNumericUpDown, "CW shift (tone)"); + this.cwShiftNumericUpDown.Value = ((long)(600)); + this.cwShiftNumericUpDown.ValueChanged += new System.EventHandler(this.cwShiftNumericUpDown_ValueChanged); + this.cwShiftNumericUpDown.Enter += new System.EventHandler(this.gUpDown_Enter); + this.cwShiftNumericUpDown.Leave += new System.EventHandler(this.gpUpDown_Leave); + // + // outputDeviceComboBox + // + this.outputDeviceComboBox.BackColor = System.Drawing.Color.Transparent; + this.outputDeviceComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.outputDeviceComboBox.Location = new System.Drawing.Point(54, 85); + this.outputDeviceComboBox.Margin = new System.Windows.Forms.Padding(5); + this.outputDeviceComboBox.Name = "outputDeviceComboBox"; + this.outputDeviceComboBox.SelectedIndex = -1; + this.outputDeviceComboBox.Size = new System.Drawing.Size(142, 21); + this.outputDeviceComboBox.TabIndex = 55; + this.outputDeviceComboBox.Text = "(no device found)"; + this.toolTip.SetToolTip(this.outputDeviceComboBox, "Audio output device"); + this.outputDeviceComboBox.ToolTip = this.toolTip; + this.outputDeviceComboBox.SelectedIndexChanged += new System.EventHandler(this.audioDeviceComboBox_SelectedIndexChanged); + // + // inputDeviceComboBox + // + this.inputDeviceComboBox.BackColor = System.Drawing.Color.Transparent; + this.inputDeviceComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.inputDeviceComboBox.Location = new System.Drawing.Point(54, 57); + this.inputDeviceComboBox.Margin = new System.Windows.Forms.Padding(5); + this.inputDeviceComboBox.Name = "inputDeviceComboBox"; + this.inputDeviceComboBox.SelectedIndex = -1; + this.inputDeviceComboBox.Size = new System.Drawing.Size(142, 21); + this.inputDeviceComboBox.TabIndex = 54; + this.inputDeviceComboBox.Text = "(no device found)"; + this.toolTip.SetToolTip(this.inputDeviceComboBox, "Audio input device"); + this.inputDeviceComboBox.ToolTip = this.toolTip; + this.inputDeviceComboBox.SelectedIndexChanged += new System.EventHandler(this.audioDeviceComboBox_SelectedIndexChanged); + // + // sampleRateComboBox + // + this.sampleRateComboBox.BackColor = System.Drawing.Color.Transparent; + this.sampleRateComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.sampleRateComboBox.Items.Add("1000 s/sec"); + this.sampleRateComboBox.Items.Add("3000 s/sec"); + this.sampleRateComboBox.Items.Add("5000 s/sec"); + this.sampleRateComboBox.Items.Add("8000 s/sec"); + this.sampleRateComboBox.Items.Add("11025 s/sec"); + this.sampleRateComboBox.Items.Add("16000 s/sec"); + this.sampleRateComboBox.Items.Add("22050 s/sec"); + this.sampleRateComboBox.Items.Add("24000 s/sec"); + this.sampleRateComboBox.Items.Add("32000 s/sec"); + this.sampleRateComboBox.Items.Add("44100 s/sec"); + this.sampleRateComboBox.Items.Add("48000 s/sec"); + this.sampleRateComboBox.Items.Add("80000 s/sec"); + this.sampleRateComboBox.Items.Add("96000 s/sec"); + this.sampleRateComboBox.Items.Add("120000 s/sec"); + this.sampleRateComboBox.Items.Add("125000 s/sec"); + this.sampleRateComboBox.Items.Add("150000 s/sec"); + this.sampleRateComboBox.Items.Add("192000 s/sec"); + this.sampleRateComboBox.Location = new System.Drawing.Point(54, 116); + this.sampleRateComboBox.Margin = new System.Windows.Forms.Padding(5); + this.sampleRateComboBox.Name = "sampleRateComboBox"; + this.sampleRateComboBox.SelectedIndex = -1; + this.sampleRateComboBox.Size = new System.Drawing.Size(88, 21); + this.sampleRateComboBox.TabIndex = 56; + this.sampleRateComboBox.Text = "(unknown)"; + this.toolTip.SetToolTip(this.sampleRateComboBox, "Minimum audio sampling rate"); + this.sampleRateComboBox.ToolTip = this.toolTip; + this.sampleRateComboBox.SelectedIndexChanged += new System.EventHandler(this.sampleRateComboBox_SelectedIndexChanged); + // + // filterAudioCheckBox + // + this.filterAudioCheckBox.Arrow = 99; + this.filterAudioCheckBox.Checked = false; + this.filterAudioCheckBox.Edge = 0.15F; + this.filterAudioCheckBox.EndColor = System.Drawing.Color.White; + this.filterAudioCheckBox.EndFactor = 0.2F; + this.filterAudioCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.filterAudioCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.filterAudioCheckBox.Location = new System.Drawing.Point(148, 116); + this.filterAudioCheckBox.Name = "filterAudioCheckBox"; + this.filterAudioCheckBox.NoBorder = false; + this.filterAudioCheckBox.NoLed = false; + this.filterAudioCheckBox.RadioButton = false; + this.filterAudioCheckBox.Radius = 6; + this.filterAudioCheckBox.RadiusB = 0; + this.filterAudioCheckBox.Size = new System.Drawing.Size(50, 24); + this.filterAudioCheckBox.StartColor = System.Drawing.Color.Black; + this.filterAudioCheckBox.StartFactor = 0.35F; + this.filterAudioCheckBox.TabIndex = 58; + this.filterAudioCheckBox.Text = "Filter"; + this.toolTip.SetToolTip(this.filterAudioCheckBox, "Enable audio filter"); + this.filterAudioCheckBox.CheckedChanged += new System.EventHandler(this.filterAudioCheckBox_CheckStateChanged); + // + // fmStereoCheckBox + // + this.fmStereoCheckBox.Arrow = 99; + this.fmStereoCheckBox.Checked = false; + this.fmStereoCheckBox.Edge = 0.15F; + this.fmStereoCheckBox.EndColor = System.Drawing.Color.White; + this.fmStereoCheckBox.EndFactor = 0.2F; + this.fmStereoCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.fmStereoCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.fmStereoCheckBox.Location = new System.Drawing.Point(148, 144); + this.fmStereoCheckBox.Name = "fmStereoCheckBox"; + this.fmStereoCheckBox.NoBorder = false; + this.fmStereoCheckBox.NoLed = false; + this.fmStereoCheckBox.RadioButton = false; + this.fmStereoCheckBox.Radius = 6; + this.fmStereoCheckBox.RadiusB = 0; + this.fmStereoCheckBox.Size = new System.Drawing.Size(50, 24); + this.fmStereoCheckBox.StartColor = System.Drawing.Color.Black; + this.fmStereoCheckBox.StartFactor = 0.35F; + this.fmStereoCheckBox.TabIndex = 59; + this.fmStereoCheckBox.Text = "Ster."; + this.toolTip.SetToolTip(this.fmStereoCheckBox, "Enable FM stereo / AM pseudo"); + this.fmStereoCheckBox.CheckedChanged += new System.EventHandler(this.fmStereoCheckBox_CheckedChanged); + // + // chkNotch0 + // + this.chkNotch0.Arrow = 0; + this.chkNotch0.Checked = false; + this.chkNotch0.Edge = 0.15F; + this.chkNotch0.EndColor = System.Drawing.Color.White; + this.chkNotch0.EndFactor = 0.2F; + this.chkNotch0.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkNotch0.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkNotch0.Location = new System.Drawing.Point(54, 23); + this.chkNotch0.Name = "chkNotch0"; + this.chkNotch0.NoBorder = false; + this.chkNotch0.NoLed = false; + this.chkNotch0.RadioButton = false; + this.chkNotch0.Radius = 6; + this.chkNotch0.RadiusB = 0; + this.chkNotch0.Size = new System.Drawing.Size(30, 26); + this.chkNotch0.StartColor = System.Drawing.Color.Black; + this.chkNotch0.StartFactor = 0.35F; + this.chkNotch0.TabIndex = 50; + this.chkNotch0.Text = "1"; + this.toolTip.SetToolTip(this.chkNotch0, "IF/baseband notch"); + this.chkNotch0.CheckedChanged += new System.EventHandler(this.chkNotch_CheckedChanged); + // + // chkNLimiter + // + this.chkNLimiter.Arrow = 99; + this.chkNLimiter.Checked = false; + this.chkNLimiter.Edge = 0.15F; + this.chkNLimiter.EndColor = System.Drawing.Color.White; + this.chkNLimiter.EndFactor = 0.2F; + this.chkNLimiter.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkNLimiter.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkNLimiter.Location = new System.Drawing.Point(1, 7); + this.chkNLimiter.Name = "chkNLimiter"; + this.chkNLimiter.NoBorder = false; + this.chkNLimiter.NoLed = false; + this.chkNLimiter.RadioButton = false; + this.chkNLimiter.Radius = 6; + this.chkNLimiter.RadiusB = 0; + this.chkNLimiter.Size = new System.Drawing.Size(46, 24); + this.chkNLimiter.StartColor = System.Drawing.Color.Black; + this.chkNLimiter.StartFactor = 0.35F; + this.chkNLimiter.TabIndex = 65; + this.chkNLimiter.Tag = ""; + this.chkNLimiter.Text = "NLim"; + this.toolTip.SetToolTip(this.chkNLimiter, "Noise Limiter on/off"); + this.chkNLimiter.CheckedChanged += new System.EventHandler(this.chkNLimiter_CheckedChanged); + // + // tbNLRatio + // + this.tbNLRatio.Button = false; + this.tbNLRatio.Checked = false; + this.tbNLRatio.ColorFactor = 0.55F; + this.tbNLRatio.ForeColor = System.Drawing.Color.Black; + this.tbNLRatio.Location = new System.Drawing.Point(86, 33); + this.tbNLRatio.Margin = new System.Windows.Forms.Padding(4); + this.tbNLRatio.Maximum = 100; + this.tbNLRatio.Minimum = 0; + this.tbNLRatio.Name = "tbNLRatio"; + this.tbNLRatio.Size = new System.Drawing.Size(110, 16); + this.tbNLRatio.TabIndex = 67; + this.tbNLRatio.TickColor = System.Drawing.Color.Orange; + this.tbNLRatio.Ticks = 0; + this.tbNLRatio.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbNLRatio, "Agressiveness"); + this.tbNLRatio.Value = 50; + this.tbNLRatio.ValueChanged += new System.EventHandler(this.tbNLRatio_ValueChanged); + // + // tbNLTreshold + // + this.tbNLTreshold.Button = false; + this.tbNLTreshold.Checked = false; + this.tbNLTreshold.ColorFactor = 0.55F; + this.tbNLTreshold.ForeColor = System.Drawing.Color.Black; + this.tbNLTreshold.Location = new System.Drawing.Point(86, 9); + this.tbNLTreshold.Margin = new System.Windows.Forms.Padding(4); + this.tbNLTreshold.Maximum = -90; + this.tbNLTreshold.Minimum = -140; + this.tbNLTreshold.Name = "tbNLTreshold"; + this.tbNLTreshold.Size = new System.Drawing.Size(110, 15); + this.tbNLTreshold.TabIndex = 66; + this.tbNLTreshold.TickColor = System.Drawing.Color.Orange; + this.tbNLTreshold.Ticks = 0; + this.tbNLTreshold.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.tbNLTreshold, "Limiting level (dBm)"); + this.tbNLTreshold.Value = -120; + this.tbNLTreshold.ValueChanged += new System.EventHandler(this.tbNLTreshold_ValueChanged); + // + // agcThresholdNumericUpDown + // + this.agcThresholdNumericUpDown.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.agcThresholdNumericUpDown.ForeColor = System.Drawing.Color.RoyalBlue; + this.agcThresholdNumericUpDown.Increment = 10; + this.agcThresholdNumericUpDown.Location = new System.Drawing.Point(122, 25); + this.agcThresholdNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.agcThresholdNumericUpDown.Maximum = ((long)(0)); + this.agcThresholdNumericUpDown.Minimum = ((long)(-160)); + this.agcThresholdNumericUpDown.Name = "agcThresholdNumericUpDown"; + this.agcThresholdNumericUpDown.Size = new System.Drawing.Size(75, 21); + this.agcThresholdNumericUpDown.TabIndex = 62; + this.agcThresholdNumericUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.agcThresholdNumericUpDown, "AGC treshold level (dBm)"); + this.agcThresholdNumericUpDown.Value = ((long)(-50)); + this.agcThresholdNumericUpDown.ValueChanged += new System.EventHandler(this.agcThresholdNumericUpDown_ValueChanged); + // + // agcDecayNumericUpDown + // + this.agcDecayNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.agcDecayNumericUpDown.Button = false; + this.agcDecayNumericUpDown.Checked = false; + this.agcDecayNumericUpDown.ColorFactor = 0.5F; + this.agcDecayNumericUpDown.ForeColor = System.Drawing.Color.Black; + this.agcDecayNumericUpDown.Location = new System.Drawing.Point(86, 79); + this.agcDecayNumericUpDown.Margin = new System.Windows.Forms.Padding(4); + this.agcDecayNumericUpDown.Maximum = 2000; + this.agcDecayNumericUpDown.Minimum = 10; + this.agcDecayNumericUpDown.Name = "agcDecayNumericUpDown"; + this.agcDecayNumericUpDown.Size = new System.Drawing.Size(110, 15); + this.agcDecayNumericUpDown.TabIndex = 64; + this.agcDecayNumericUpDown.Tag = "AGC decay"; + this.agcDecayNumericUpDown.TickColor = System.Drawing.Color.Silver; + this.agcDecayNumericUpDown.Ticks = 0; + this.agcDecayNumericUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.agcDecayNumericUpDown, "AGC decay speed"); + this.agcDecayNumericUpDown.Value = 100; + this.agcDecayNumericUpDown.ValueChanged += new System.EventHandler(this.agcDecayNumericUpDown_ValueChanged); + // + // agcSlopeNumericUpDown + // + this.agcSlopeNumericUpDown.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.agcSlopeNumericUpDown.ForeColor = System.Drawing.Color.RoyalBlue; + this.agcSlopeNumericUpDown.Increment = 1; + this.agcSlopeNumericUpDown.Location = new System.Drawing.Point(122, 52); + this.agcSlopeNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.agcSlopeNumericUpDown.Maximum = ((long)(10)); + this.agcSlopeNumericUpDown.Minimum = ((long)(0)); + this.agcSlopeNumericUpDown.Name = "agcSlopeNumericUpDown"; + this.agcSlopeNumericUpDown.Size = new System.Drawing.Size(75, 21); + this.agcSlopeNumericUpDown.TabIndex = 63; + this.agcSlopeNumericUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.agcSlopeNumericUpDown, "AGC slope"); + this.agcSlopeNumericUpDown.Value = ((long)(0)); + this.agcSlopeNumericUpDown.ValueChanged += new System.EventHandler(this.agcSlopeNumericUpDown_ValueChanged); + this.agcSlopeNumericUpDown.Enter += new System.EventHandler(this.gUpDown_Enter); + this.agcSlopeNumericUpDown.Leave += new System.EventHandler(this.gpUpDown_Leave); + // + // agcUseHangCheckBox + // + this.agcUseHangCheckBox.Arrow = 99; + this.agcUseHangCheckBox.Checked = false; + this.agcUseHangCheckBox.Edge = 0.15F; + this.agcUseHangCheckBox.EndColor = System.Drawing.Color.White; + this.agcUseHangCheckBox.EndFactor = 0.2F; + this.agcUseHangCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.agcUseHangCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.agcUseHangCheckBox.Location = new System.Drawing.Point(0, 27); + this.agcUseHangCheckBox.Name = "agcUseHangCheckBox"; + this.agcUseHangCheckBox.NoBorder = false; + this.agcUseHangCheckBox.NoLed = false; + this.agcUseHangCheckBox.RadioButton = false; + this.agcUseHangCheckBox.Radius = 6; + this.agcUseHangCheckBox.RadiusB = 0; + this.agcUseHangCheckBox.Size = new System.Drawing.Size(46, 24); + this.agcUseHangCheckBox.StartColor = System.Drawing.Color.Black; + this.agcUseHangCheckBox.StartFactor = 0.35F; + this.agcUseHangCheckBox.TabIndex = 61; + this.agcUseHangCheckBox.Text = "Hang"; + this.toolTip.SetToolTip(this.agcUseHangCheckBox, "AGC hang on/off"); + this.agcUseHangCheckBox.CheckedChanged += new System.EventHandler(this.agcUseHangCheckBox_CheckedChanged); + // + // cmbAudio + // + this.cmbAudio.BackColor = System.Drawing.Color.Transparent; + this.cmbAudio.ForeColor = System.Drawing.Color.RoyalBlue; + this.cmbAudio.Items.Add("None"); + this.cmbAudio.Items.Add("Spect."); + this.cmbAudio.Items.Add("A-gram"); + this.cmbAudio.Items.Add("Envelope"); + this.cmbAudio.Location = new System.Drawing.Point(126, 34); + this.cmbAudio.Margin = new System.Windows.Forms.Padding(5); + this.cmbAudio.Name = "cmbAudio"; + this.cmbAudio.SelectedIndex = -1; + this.cmbAudio.Size = new System.Drawing.Size(71, 21); + this.cmbAudio.TabIndex = 128; + this.cmbAudio.Text = "xxxx"; + this.toolTip.SetToolTip(this.cmbAudio, "Select AF audio display"); + this.cmbAudio.ToolTip = this.toolTip; + this.cmbAudio.SelectedIndexChanged += new System.EventHandler(this.cmbAudio_SelectedIndexChanged); + // + // chkIF + // + this.chkIF.Arrow = 0; + this.chkIF.Checked = true; + this.chkIF.Edge = 0.15F; + this.chkIF.EndColor = System.Drawing.Color.White; + this.chkIF.EndFactor = 0.2F; + this.chkIF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkIF.ForeColor = System.Drawing.Color.Orange; + this.chkIF.Location = new System.Drawing.Point(54, 39); + this.chkIF.Name = "chkIF"; + this.chkIF.NoBorder = false; + this.chkIF.NoLed = false; + this.chkIF.RadioButton = false; + this.chkIF.Radius = 4; + this.chkIF.RadiusB = 0; + this.chkIF.Size = new System.Drawing.Size(30, 20); + this.chkIF.StartColor = System.Drawing.Color.Black; + this.chkIF.StartFactor = 0.35F; + this.chkIF.TabIndex = 70; + this.toolTip.SetToolTip(this.chkIF, "Show IF/baseband spectrum"); + this.chkIF.CheckedChanged += new System.EventHandler(this.chkFFT_CheckedChanged); + // + // chkWF + // + this.chkWF.Arrow = 0; + this.chkWF.Checked = true; + this.chkWF.Edge = 0.15F; + this.chkWF.EndColor = System.Drawing.Color.White; + this.chkWF.EndFactor = 0.2F; + this.chkWF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkWF.ForeColor = System.Drawing.Color.Orange; + this.chkWF.Location = new System.Drawing.Point(9, 39); + this.chkWF.Name = "chkWF"; + this.chkWF.NoBorder = false; + this.chkWF.NoLed = false; + this.chkWF.RadioButton = false; + this.chkWF.Radius = 4; + this.chkWF.RadiusB = 0; + this.chkWF.Size = new System.Drawing.Size(30, 20); + this.chkWF.StartColor = System.Drawing.Color.Black; + this.chkWF.StartFactor = 0.35F; + this.chkWF.TabIndex = 69; + this.toolTip.SetToolTip(this.chkWF, "Show RF waterfall"); + this.chkWF.CheckedChanged += new System.EventHandler(this.chkFFT_CheckedChanged); + // + // dbmOffsetUpDown + // + this.dbmOffsetUpDown.ForeColor = System.Drawing.Color.RoyalBlue; + this.dbmOffsetUpDown.Increment = 6; + this.dbmOffsetUpDown.Location = new System.Drawing.Point(53, 258); + this.dbmOffsetUpDown.Margin = new System.Windows.Forms.Padding(5); + this.dbmOffsetUpDown.Maximum = ((long)(120)); + this.dbmOffsetUpDown.Minimum = ((long)(-120)); + this.dbmOffsetUpDown.Name = "dbmOffsetUpDown"; + this.dbmOffsetUpDown.Size = new System.Drawing.Size(62, 21); + this.dbmOffsetUpDown.TabIndex = 95; + this.dbmOffsetUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.dbmOffsetUpDown, "S-meter offset/correction"); + this.dbmOffsetUpDown.Value = ((long)(0)); + this.dbmOffsetUpDown.ValueChanged += new System.EventHandler(this.dbmOffsetUpDown_ValueChanged); + // + // chkAutoSize + // + this.chkAutoSize.Arrow = 99; + this.chkAutoSize.Checked = false; + this.chkAutoSize.Edge = 0.15F; + this.chkAutoSize.EndColor = System.Drawing.Color.White; + this.chkAutoSize.EndFactor = 0.2F; + this.chkAutoSize.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkAutoSize.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkAutoSize.Location = new System.Drawing.Point(152, 153); + this.chkAutoSize.Name = "chkAutoSize"; + this.chkAutoSize.NoBorder = false; + this.chkAutoSize.NoLed = false; + this.chkAutoSize.RadioButton = false; + this.chkAutoSize.Radius = 6; + this.chkAutoSize.RadiusB = 0; + this.chkAutoSize.Size = new System.Drawing.Size(46, 30); + this.chkAutoSize.StartColor = System.Drawing.Color.Black; + this.chkAutoSize.StartFactor = 0.35F; + this.chkAutoSize.TabIndex = 110; + this.chkAutoSize.Tag = ""; + this.chkAutoSize.Text = "Auto\\size"; + this.toolTip.SetToolTip(this.chkAutoSize, "Auto IF/AF spectrum resizing"); + this.chkAutoSize.CheckedChanged += new System.EventHandler(this.chkAutoSize_CheckedChanged); + // + // frequencyShiftNumericUpDown + // + this.frequencyShiftNumericUpDown.ForeColor = System.Drawing.Color.RoyalBlue; + this.frequencyShiftNumericUpDown.Increment = 1000; + this.frequencyShiftNumericUpDown.Location = new System.Drawing.Point(55, 68); + this.frequencyShiftNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.frequencyShiftNumericUpDown.Maximum = ((long)(100000000000000)); + this.frequencyShiftNumericUpDown.Minimum = ((long)(-100000000000000)); + this.frequencyShiftNumericUpDown.Name = "frequencyShiftNumericUpDown"; + this.frequencyShiftNumericUpDown.Size = new System.Drawing.Size(124, 21); + this.frequencyShiftNumericUpDown.TabIndex = 72; + this.frequencyShiftNumericUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.frequencyShiftNumericUpDown, "Frequency shift for up/down convertor"); + this.frequencyShiftNumericUpDown.Value = ((long)(10)); + this.frequencyShiftNumericUpDown.ValueChanged += new System.EventHandler(this.frequencyShiftNumericUpDown_ValueChanged); + this.frequencyShiftNumericUpDown.Enter += new System.EventHandler(this.gUpDown_Enter); + this.frequencyShiftNumericUpDown.Leave += new System.EventHandler(this.gpUpDown_Leave); + // + // markPeaksCheckBox + // + this.markPeaksCheckBox.Arrow = 99; + this.markPeaksCheckBox.Checked = false; + this.markPeaksCheckBox.Edge = 0.15F; + this.markPeaksCheckBox.EndColor = System.Drawing.Color.White; + this.markPeaksCheckBox.EndFactor = 0.2F; + this.markPeaksCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.markPeaksCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.markPeaksCheckBox.Location = new System.Drawing.Point(153, 96); + this.markPeaksCheckBox.Name = "markPeaksCheckBox"; + this.markPeaksCheckBox.NoBorder = false; + this.markPeaksCheckBox.NoLed = false; + this.markPeaksCheckBox.RadioButton = false; + this.markPeaksCheckBox.Radius = 6; + this.markPeaksCheckBox.RadiusB = 0; + this.markPeaksCheckBox.Size = new System.Drawing.Size(46, 24); + this.markPeaksCheckBox.StartColor = System.Drawing.Color.Black; + this.markPeaksCheckBox.StartFactor = 0.35F; + this.markPeaksCheckBox.TabIndex = 17; + this.markPeaksCheckBox.Text = "Max"; + this.toolTip.SetToolTip(this.markPeaksCheckBox, "Perform max hold"); + this.markPeaksCheckBox.CheckedChanged += new System.EventHandler(this.markPeaksCheckBox_CheckedChanged); + // + // frequencyShiftCheckBox + // + this.frequencyShiftCheckBox.Arrow = 99; + this.frequencyShiftCheckBox.Checked = false; + this.frequencyShiftCheckBox.Edge = 0.15F; + this.frequencyShiftCheckBox.EndColor = System.Drawing.Color.White; + this.frequencyShiftCheckBox.EndFactor = 0.2F; + this.frequencyShiftCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.frequencyShiftCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.frequencyShiftCheckBox.Location = new System.Drawing.Point(-1, 66); + this.frequencyShiftCheckBox.Name = "frequencyShiftCheckBox"; + this.frequencyShiftCheckBox.NoBorder = false; + this.frequencyShiftCheckBox.NoLed = false; + this.frequencyShiftCheckBox.RadioButton = false; + this.frequencyShiftCheckBox.Radius = 6; + this.frequencyShiftCheckBox.RadiusB = 0; + this.frequencyShiftCheckBox.Size = new System.Drawing.Size(45, 24); + this.frequencyShiftCheckBox.StartColor = System.Drawing.Color.Black; + this.frequencyShiftCheckBox.StartFactor = 0.35F; + this.frequencyShiftCheckBox.TabIndex = 71; + this.frequencyShiftCheckBox.Tag = ""; + this.frequencyShiftCheckBox.Text = "Shift"; + this.toolTip.SetToolTip(this.frequencyShiftCheckBox, "Frequency shift on/off"); + this.frequencyShiftCheckBox.CheckedChanged += new System.EventHandler(this.frequencyShiftCheckBox_CheckStateChanged); + // + // fftResolutionComboBox + // + this.fftResolutionComboBox.BackColor = System.Drawing.Color.Transparent; + this.fftResolutionComboBox.ForeColor = System.Drawing.Color.RoyalBlue; + this.fftResolutionComboBox.Items.Add("512"); + this.fftResolutionComboBox.Items.Add("1024"); + this.fftResolutionComboBox.Items.Add("2048"); + this.fftResolutionComboBox.Items.Add("4096"); + this.fftResolutionComboBox.Items.Add("8192"); + this.fftResolutionComboBox.Items.Add("16384"); + this.fftResolutionComboBox.Items.Add("32768"); + this.fftResolutionComboBox.Items.Add("65536"); + this.fftResolutionComboBox.Items.Add("131072"); + this.fftResolutionComboBox.Items.Add("262144"); + this.fftResolutionComboBox.Items.Add("524288"); + this.fftResolutionComboBox.Items.Add("1048576"); + this.fftResolutionComboBox.Items.Add("2097152"); + this.fftResolutionComboBox.Items.Add("4194304"); + this.fftResolutionComboBox.Location = new System.Drawing.Point(53, 198); + this.fftResolutionComboBox.Margin = new System.Windows.Forms.Padding(5); + this.fftResolutionComboBox.Name = "fftResolutionComboBox"; + this.fftResolutionComboBox.SelectedIndex = -1; + this.fftResolutionComboBox.Size = new System.Drawing.Size(92, 21); + this.fftResolutionComboBox.TabIndex = 70; + this.fftResolutionComboBox.Text = "xxxx"; + this.toolTip.SetToolTip(this.fftResolutionComboBox, "FFT resolution RF spectrum"); + this.fftResolutionComboBox.ToolTip = this.toolTip; + this.fftResolutionComboBox.SelectedIndexChanged += new System.EventHandler(this.fftResolutionComboBox_SelectedIndexChanged); + // + // fftAverageUpDown + // + this.fftAverageUpDown.ForeColor = System.Drawing.Color.RoyalBlue; + this.fftAverageUpDown.Increment = 1; + this.fftAverageUpDown.Location = new System.Drawing.Point(53, 229); + this.fftAverageUpDown.Margin = new System.Windows.Forms.Padding(5); + this.fftAverageUpDown.Maximum = ((long)(9)); + this.fftAverageUpDown.Minimum = ((long)(0)); + this.fftAverageUpDown.Name = "fftAverageUpDown"; + this.fftAverageUpDown.Size = new System.Drawing.Size(62, 21); + this.fftAverageUpDown.TabIndex = 97; + this.fftAverageUpDown.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.fftAverageUpDown, "FFT/spectrum avaraging"); + this.fftAverageUpDown.Value = ((long)(0)); + this.fftAverageUpDown.ValueChanged += new System.EventHandler(this.fftAverageUpDown_ValueChanged); + // + // useTimestampsCheckBox + // + this.useTimestampsCheckBox.Arrow = 99; + this.useTimestampsCheckBox.Checked = false; + this.useTimestampsCheckBox.Edge = 0.15F; + this.useTimestampsCheckBox.EndColor = System.Drawing.Color.White; + this.useTimestampsCheckBox.EndFactor = 0.2F; + this.useTimestampsCheckBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.useTimestampsCheckBox.ForeColor = System.Drawing.Color.CornflowerBlue; + this.useTimestampsCheckBox.Location = new System.Drawing.Point(152, 124); + this.useTimestampsCheckBox.Name = "useTimestampsCheckBox"; + this.useTimestampsCheckBox.NoBorder = false; + this.useTimestampsCheckBox.NoLed = false; + this.useTimestampsCheckBox.RadioButton = false; + this.useTimestampsCheckBox.Radius = 6; + this.useTimestampsCheckBox.RadiusB = 0; + this.useTimestampsCheckBox.Size = new System.Drawing.Size(46, 24); + this.useTimestampsCheckBox.StartColor = System.Drawing.Color.Black; + this.useTimestampsCheckBox.StartFactor = 0.35F; + this.useTimestampsCheckBox.TabIndex = 74; + this.useTimestampsCheckBox.Text = "Time"; + this.toolTip.SetToolTip(this.useTimestampsCheckBox, "Show time markers"); + this.useTimestampsCheckBox.CheckedChanged += new System.EventHandler(this.useTimestampCheckBox_CheckedChanged); + // + // chkIndepSideband + // + this.chkIndepSideband.Arrow = 99; + this.chkIndepSideband.Checked = false; + this.chkIndepSideband.Edge = 0.15F; + this.chkIndepSideband.EndColor = System.Drawing.Color.White; + this.chkIndepSideband.EndFactor = 0.2F; + this.chkIndepSideband.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkIndepSideband.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkIndepSideband.Location = new System.Drawing.Point(152, 189); + this.chkIndepSideband.Name = "chkIndepSideband"; + this.chkIndepSideband.NoBorder = false; + this.chkIndepSideband.NoLed = false; + this.chkIndepSideband.RadioButton = false; + this.chkIndepSideband.Radius = 6; + this.chkIndepSideband.RadiusB = 0; + this.chkIndepSideband.Size = new System.Drawing.Size(46, 24); + this.chkIndepSideband.StartColor = System.Drawing.Color.Black; + this.chkIndepSideband.StartFactor = 0.35F; + this.chkIndepSideband.TabIndex = 75; + this.chkIndepSideband.Tag = ""; + this.chkIndepSideband.Text = "Indep"; + this.toolTip.SetToolTip(this.chkIndepSideband, "move filter sidebands independently"); + this.chkIndepSideband.CheckedChanged += new System.EventHandler(this.chkIndepSideband_Changed); + // + // gradientButtonSA + // + this.gradientButtonSA.Arrow = 0; + this.gradientButtonSA.Checked = false; + this.gradientButtonSA.Edge = 0.15F; + this.gradientButtonSA.EndColor = System.Drawing.Color.White; + this.gradientButtonSA.EndFactor = 0.2F; + this.gradientButtonSA.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.gradientButtonSA.ForeColor = System.Drawing.Color.CornflowerBlue; + this.gradientButtonSA.Location = new System.Drawing.Point(152, 258); + this.gradientButtonSA.Name = "gradientButtonSA"; + this.gradientButtonSA.NoBorder = false; + this.gradientButtonSA.NoLed = true; + this.gradientButtonSA.RadioButton = false; + this.gradientButtonSA.Radius = 6; + this.gradientButtonSA.RadiusB = 0; + this.gradientButtonSA.Size = new System.Drawing.Size(46, 24); + this.gradientButtonSA.StartColor = System.Drawing.Color.Black; + this.gradientButtonSA.StartFactor = 0.35F; + this.gradientButtonSA.TabIndex = 80; + this.gradientButtonSA.Tag = ""; + this.gradientButtonSA.Text = "Colors"; + this.toolTip.SetToolTip(this.gradientButtonSA, "Change color settings"); + this.gradientButtonSA.Click += new System.EventHandler(this.gradientButtonSA_Click); + // + // remDcSlider + // + this.remDcSlider.Button = false; + this.remDcSlider.Checked = false; + this.remDcSlider.ColorFactor = 0.55F; + this.remDcSlider.ForeColor = System.Drawing.Color.Black; + this.remDcSlider.Location = new System.Drawing.Point(53, 288); + this.remDcSlider.Margin = new System.Windows.Forms.Padding(4); + this.remDcSlider.Maximum = 200; + this.remDcSlider.Minimum = 0; + this.remDcSlider.Name = "remDcSlider"; + this.remDcSlider.Size = new System.Drawing.Size(92, 16); + this.remDcSlider.TabIndex = 130; + this.remDcSlider.TickColor = System.Drawing.Color.Silver; + this.remDcSlider.Ticks = 5; + this.remDcSlider.ToolTip = this.toolTip; + this.toolTip.SetToolTip(this.remDcSlider, "Adjust for removing center spike"); + this.remDcSlider.Value = 100; + this.remDcSlider.ValueChanged += new System.EventHandler(this.remDcSlider_ValueChanged); + // + // label50 + // + this.label50.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label50.AutoSize = true; + this.label50.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label50.Location = new System.Drawing.Point(1, 3); + this.label50.Name = "label50"; + this.label50.Size = new System.Drawing.Size(23, 13); + this.label50.TabIndex = 114; + this.label50.Text = "Sp."; + // + // label49 + // + this.label49.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label49.AutoSize = true; + this.label49.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label49.Location = new System.Drawing.Point(23, 3); + this.label49.Name = "label49"; + this.label49.Size = new System.Drawing.Size(24, 13); + this.label49.TabIndex = 113; + this.label49.Text = "Int."; + // + // label44 + // + this.label44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label44.AutoSize = true; + this.label44.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label44.Location = new System.Drawing.Point(43, 3); + this.label44.Name = "label44"; + this.label44.Size = new System.Drawing.Size(31, 13); + this.label44.TabIndex = 112; + this.label44.Text = "Con."; + // + // audiogram + // + this.audiogram.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.audiogram.Attack = 0.9D; + this.audiogram.AutoSize = true; + this.audiogram.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66))))); + this.audiogram.BandType = SDRSharp.PanView.BandType.Center; + this.audiogram.CenterFixed = false; + this.audiogram.CenterFrequency = ((long)(0)); + this.audiogram.CenterStep = 0; + this.audiogram.DataType = SDRSharp.Radio.DataType.AF; + this.audiogram.Decay = 0.5D; + this.audiogram.DisplayFrequency = ((long)(0)); + this.audiogram.FilterBandwidth = 10000; + this.audiogram.FilterOffset = 0; + this.audiogram.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.audiogram.Frequency = ((long)(2500)); + this.audiogram.Horizontal = true; + this.audiogram.IndepSideband = false; + this.audiogram.Location = new System.Drawing.Point(0, 0); + this.audiogram.MaxPower = 0F; + this.audiogram.MinPower = -130F; + this.audiogram.Name = "audiogram"; + this.audiogram.RecordStart = new System.DateTime(((long)(0))); + this.audiogram.ShowDbm = 0; + this.audiogram.Size = new System.Drawing.Size(402, 150); + this.audiogram.SpectrumWidth = 5001; + this.audiogram.StepSize = 0; + this.audiogram.TabIndex = 108; + this.audiogram.TimestampInterval = 100; + this.audiogram.UseSmoothing = true; + this.audiogram.UseSnap = false; + this.audiogram.UseTimestamps = 0; + this.audiogram.WaveStart = new System.DateTime(((long)(0))); + this.audiogram.Zoom = 1F; + this.audiogram.FrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_FrequencyChanged); + // + // afAnalyzer + // + this.afAnalyzer.Attack = 0.9D; + this.afAnalyzer.BackgroundColor = System.Drawing.Color.Empty; + this.afAnalyzer.BandType = SDRSharp.PanView.BandType.Center; + this.afAnalyzer.CenterFixed = true; + this.afAnalyzer.CenterFrequency = ((long)(0)); + this.afAnalyzer.CenterStep = 10000; + this.afAnalyzer.DataType = SDRSharp.Radio.DataType.AF; + this.afAnalyzer.Decay = 0.3D; + this.afAnalyzer.DisplayFrequency = ((long)(0)); + this.afAnalyzer.Dock = System.Windows.Forms.DockStyle.Fill; + this.afAnalyzer.FilterBandwidth = 10000; + this.afAnalyzer.FilterOffset = 100; + this.afAnalyzer.Frequency = ((long)(0)); + this.afAnalyzer.IndepSideband = false; + this.afAnalyzer.Location = new System.Drawing.Point(0, 0); + this.afAnalyzer.MarkPeaks = false; + this.afAnalyzer.MaxPower = 0F; + this.afAnalyzer.MinPower = -130F; + this.afAnalyzer.Name = "afAnalyzer"; + this.afAnalyzer.ShowDbm = 0; + this.afAnalyzer.Size = new System.Drawing.Size(477, 150); + this.afAnalyzer.SpectrumColor = System.Drawing.Color.DarkGray; + this.afAnalyzer.SpectrumFill = 0; + this.afAnalyzer.SpectrumWidth = 5001; + this.afAnalyzer.StationList = ""; + this.afAnalyzer.StatusText = ""; + this.afAnalyzer.StepSize = 1000; + this.afAnalyzer.TabIndex = 126; + this.afAnalyzer.UseSmoothing = true; + this.afAnalyzer.UseSnap = false; + this.afAnalyzer.Zoom = 12.8F; + this.afAnalyzer.FrequencyChanged += new SDRSharp.PanView.ManualFrequencyChange(this.panview_FrequencyChanged); + this.afAnalyzer.BandwidthChanged += new SDRSharp.PanView.ManualBandwidthChange(this.panview_BandwidthChanged); + this.afAnalyzer.AutoZoomed += new System.EventHandler(this.panview_AutoZoomed); + // + // wideScope + // + this.wideScope.AudioAvg = 0; + this.wideScope.AudioRel = 6; + this.wideScope.BackgoundColor = System.Drawing.Color.Empty; + this.wideScope.CarrierAvg = 0; + this.wideScope.HblockDC = false; + this.wideScope.Hchannel = SDRSharp.Radio.DemodType.Empty; + this.wideScope.Hdiv = 1F; + this.wideScope.Hinvert = false; + this.wideScope.Hshift = 0F; + this.wideScope.Location = new System.Drawing.Point(0, 0); + this.wideScope.Name = "wideScope"; + this.wideScope.PeakDelay = 0; + this.wideScope.PeakRel = 0; + this.wideScope.ShowBars = false; + this.wideScope.ShowLines = false; + this.wideScope.Size = new System.Drawing.Size(316, 130); + this.wideScope.SpectrumFill = 0; + this.wideScope.StatusText = ""; + this.wideScope.TabIndex = 123; + this.wideScope.Tdiv = 0F; + this.wideScope.TraceColor = System.Drawing.Color.DarkGray; + this.wideScope.TrigLevel = 0F; + this.wideScope.VblockDC = false; + this.wideScope.Vchannel = SDRSharp.Radio.DemodType.Empty; + this.wideScope.Vdiv = 1F; + this.wideScope.Vinvert = false; + this.wideScope.Vshift = 0F; + this.wideScope.XYmode = false; + // + // afWaterfall + // + this.afWaterfall.Attack = 0.9D; + this.afWaterfall.AutoSize = true; + this.afWaterfall.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66))))); + this.afWaterfall.BandType = SDRSharp.PanView.BandType.Center; + this.afWaterfall.CenterFixed = false; + this.afWaterfall.CenterFrequency = ((long)(0)); + this.afWaterfall.CenterStep = 0; + this.afWaterfall.DataType = SDRSharp.Radio.DataType.AF; + this.afWaterfall.Decay = 0.5D; + this.afWaterfall.DisplayFrequency = ((long)(0)); + this.afWaterfall.Dock = System.Windows.Forms.DockStyle.Fill; + this.afWaterfall.FilterBandwidth = 10000; + this.afWaterfall.FilterOffset = 0; + this.afWaterfall.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.afWaterfall.Frequency = ((long)(0)); + this.afWaterfall.Horizontal = false; + this.afWaterfall.IndepSideband = false; + this.afWaterfall.Location = new System.Drawing.Point(0, 0); + this.afWaterfall.MaxPower = 0F; + this.afWaterfall.MinPower = -130F; + this.afWaterfall.Name = "afWaterfall"; + this.afWaterfall.RecordStart = new System.DateTime(((long)(0))); + this.afWaterfall.ShowDbm = 0; + this.afWaterfall.Size = new System.Drawing.Size(477, 115); + this.afWaterfall.SpectrumWidth = 96001; + this.afWaterfall.StepSize = 0; + this.afWaterfall.TabIndex = 126; + this.afWaterfall.TimestampInterval = 150; + this.afWaterfall.UseSmoothing = true; + this.afWaterfall.UseSnap = false; + this.afWaterfall.UseTimestamps = 0; + this.afWaterfall.WaveStart = new System.DateTime(((long)(0))); + this.afWaterfall.Zoom = 1F; + this.afWaterfall.BandwidthChanged += new SDRSharp.PanView.ManualBandwidthChange(this.panview_BandwidthChanged); + this.afWaterfall.AutoZoomed += new System.EventHandler(this.panview_AutoZoomed); + // + // label31 + // + this.label31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label31.AutoSize = true; + this.label31.ForeColor = System.Drawing.Color.Orange; + this.label31.Location = new System.Drawing.Point(989, 127); + this.label31.Name = "label31"; + this.label31.Size = new System.Drawing.Size(39, 13); + this.label31.TabIndex = 49; + this.label31.Text = "Intens"; + // + // label29 + // + this.label29.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label29.AutoSize = true; + this.label29.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label29.Location = new System.Drawing.Point(1254, 131); + this.label29.Name = "label29"; + this.label29.Size = new System.Drawing.Size(34, 13); + this.label29.TabIndex = 39; + this.label29.Text = "Floor"; + // + // label30 + // + this.label30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label30.AutoSize = true; + this.label30.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label30.Location = new System.Drawing.Point(1254, 42); + this.label30.Name = "label30"; + this.label30.Size = new System.Drawing.Size(25, 13); + this.label30.TabIndex = 38; + this.label30.Text = "Top"; + // + // labSpeed + // + this.labSpeed.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labSpeed.AutoSize = true; + this.labSpeed.ForeColor = System.Drawing.Color.RoyalBlue; + this.labSpeed.Location = new System.Drawing.Point(1254, 459); + this.labSpeed.Name = "labSpeed"; + this.labSpeed.Size = new System.Drawing.Size(23, 13); + this.labSpeed.TabIndex = 52; + this.labSpeed.Text = "-99"; + // + // label17 + // + this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label17.AutoSize = true; + this.label17.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label17.Location = new System.Drawing.Point(1249, 370); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(39, 13); + this.label17.TabIndex = 30; + this.label17.Text = "Speed"; + // + // label32 + // + this.label32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label32.AutoSize = true; + this.label32.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label32.Location = new System.Drawing.Point(1253, 247); + this.label32.Name = "label32"; + this.label32.Size = new System.Drawing.Size(36, 13); + this.label32.TabIndex = 48; + this.label32.Text = "Contr"; + // + // labInt + // + this.labInt.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labInt.AutoSize = true; + this.labInt.ForeColor = System.Drawing.Color.RoyalBlue; + this.labInt.Location = new System.Drawing.Point(1254, 588); + this.labInt.Name = "labInt"; + this.labInt.Size = new System.Drawing.Size(23, 13); + this.labInt.TabIndex = 51; + this.labInt.Text = "-99"; + this.labInt.Visible = false; + // + // labCon + // + this.labCon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labCon.AutoSize = true; + this.labCon.ForeColor = System.Drawing.Color.RoyalBlue; + this.labCon.Location = new System.Drawing.Point(1254, 575); + this.labCon.Name = "labCon"; + this.labCon.Size = new System.Drawing.Size(23, 13); + this.labCon.TabIndex = 50; + this.labCon.Text = "-99"; + this.labCon.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.labCon.Visible = false; + // + // MnuSA + // + this.MnuSA.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.mnuSetNotch, + this.MnuClearNotch, + this.toolStripSeparator4, + this.mnuVfoA, + this.mnuVfoB, + this.mnuVfoC, + this.toolStripSeparator2, + this.mnuShowWaterfall, + this.mnuShowBaseband, + this.toolStripSeparator3, + this.mnuShowAudio, + this.mnuShowAudiogram, + this.mnuShowEnvelope, + this.toolStripSeparator1, + this.mnuStationList, + this.mnuAutoScale, + this.setColoursToolStripMenuItem}); + this.MnuSA.Name = "MnuSA"; + this.MnuSA.Size = new System.Drawing.Size(171, 314); + this.MnuSA.Opening += new System.ComponentModel.CancelEventHandler(this.MnuSA_Opening); + // + // mnuSetNotch + // + this.mnuSetNotch.Name = "mnuSetNotch"; + this.mnuSetNotch.Size = new System.Drawing.Size(170, 22); + this.mnuSetNotch.Text = "Set notch"; + this.mnuSetNotch.Click += new System.EventHandler(this.mnuSetNotch_Click); + // + // MnuClearNotch + // + this.MnuClearNotch.Name = "MnuClearNotch"; + this.MnuClearNotch.Size = new System.Drawing.Size(170, 22); + this.MnuClearNotch.Text = "Clear notch"; + this.MnuClearNotch.Click += new System.EventHandler(this.MnuClearNotch_Click); + // + // toolStripSeparator4 + // + this.toolStripSeparator4.Name = "toolStripSeparator4"; + this.toolStripSeparator4.Size = new System.Drawing.Size(167, 6); + // + // mnuVfoA + // + this.mnuVfoA.Name = "mnuVfoA"; + this.mnuVfoA.Size = new System.Drawing.Size(170, 22); + this.mnuVfoA.Text = "Vfo A"; + this.mnuVfoA.Click += new System.EventHandler(this.mnuVfo_Click); + // + // mnuVfoB + // + this.mnuVfoB.Name = "mnuVfoB"; + this.mnuVfoB.Size = new System.Drawing.Size(170, 22); + this.mnuVfoB.Text = "Vfo B"; + this.mnuVfoB.Click += new System.EventHandler(this.mnuVfo_Click); + // + // mnuVfoC + // + this.mnuVfoC.Name = "mnuVfoC"; + this.mnuVfoC.Size = new System.Drawing.Size(170, 22); + this.mnuVfoC.Text = "Vfo C"; + this.mnuVfoC.Click += new System.EventHandler(this.mnuVfo_Click); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(167, 6); + // + // mnuShowWaterfall + // + this.mnuShowWaterfall.Name = "mnuShowWaterfall"; + this.mnuShowWaterfall.Size = new System.Drawing.Size(170, 22); + this.mnuShowWaterfall.Text = "Show Waterfall"; + this.mnuShowWaterfall.Click += new System.EventHandler(this.mnuShowWaterfall_Click); + // + // mnuShowBaseband + // + this.mnuShowBaseband.Name = "mnuShowBaseband"; + this.mnuShowBaseband.Size = new System.Drawing.Size(170, 22); + this.mnuShowBaseband.Text = "Show IF baseband"; + this.mnuShowBaseband.Click += new System.EventHandler(this.mnuShowBaseband_Click); + // + // toolStripSeparator3 + // + this.toolStripSeparator3.Name = "toolStripSeparator3"; + this.toolStripSeparator3.Size = new System.Drawing.Size(167, 6); + // + // mnuShowAudio + // + this.mnuShowAudio.Name = "mnuShowAudio"; + this.mnuShowAudio.Size = new System.Drawing.Size(170, 22); + this.mnuShowAudio.Text = "Show AF audio"; + this.mnuShowAudio.Click += new System.EventHandler(this.mnuShowAudio_Click); + // + // mnuShowAudiogram + // + this.mnuShowAudiogram.Name = "mnuShowAudiogram"; + this.mnuShowAudiogram.Size = new System.Drawing.Size(170, 22); + this.mnuShowAudiogram.Text = "Show audiogram"; + this.mnuShowAudiogram.Click += new System.EventHandler(this.mnuShowAudiogram_Click); + // + // mnuShowEnvelope + // + this.mnuShowEnvelope.Name = "mnuShowEnvelope"; + this.mnuShowEnvelope.Size = new System.Drawing.Size(170, 22); + this.mnuShowEnvelope.Text = "Show AM envlope"; + this.mnuShowEnvelope.Click += new System.EventHandler(this.mnuShowEnvelope_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(167, 6); + // + // mnuStationList + // + this.mnuStationList.Name = "mnuStationList"; + this.mnuStationList.Size = new System.Drawing.Size(170, 22); + this.mnuStationList.Text = "Show StationList"; + this.mnuStationList.Click += new System.EventHandler(this.mnuStationList_Click); + // + // mnuAutoScale + // + this.mnuAutoScale.Name = "mnuAutoScale"; + this.mnuAutoScale.Size = new System.Drawing.Size(170, 22); + this.mnuAutoScale.Text = "Do autoscaling"; + this.mnuAutoScale.Click += new System.EventHandler(this.mnuAutoScale_Click); + // + // setColoursToolStripMenuItem + // + this.setColoursToolStripMenuItem.Name = "setColoursToolStripMenuItem"; + this.setColoursToolStripMenuItem.Size = new System.Drawing.Size(170, 22); + this.setColoursToolStripMenuItem.Text = "Set colors"; + this.setColoursToolStripMenuItem.Click += new System.EventHandler(this.mnuSetColors_Click); + // + // iqTimer + // + this.iqTimer.Enabled = true; + this.iqTimer.Interval = 500; + this.iqTimer.Tick += new System.EventHandler(this.iqTimer_Tick); + // + // labZoom + // + this.labZoom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labZoom.AutoSize = true; + this.labZoom.ForeColor = System.Drawing.Color.CornflowerBlue; + this.labZoom.Location = new System.Drawing.Point(941, 15); + this.labZoom.Name = "labZoom"; + this.labZoom.Size = new System.Drawing.Size(36, 13); + this.labZoom.TabIndex = 19; + this.labZoom.Text = "Zoom"; + // + // controlPanel + // + this.controlPanel.AutoSize = true; + this.controlPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.controlPanel.Controls.Add(this.AdvancedCollapsiblePanel); + this.controlPanel.Controls.Add(this.radioCollapsiblePanel); + this.controlPanel.Controls.Add(this.displayCollapsiblePanel); + this.controlPanel.Controls.Add(this.agcCollapsiblePanel); + this.controlPanel.Controls.Add(this.audioCollapsiblePanel); + this.controlPanel.Controls.Add(this.scopeCollapsiblePanel); + this.controlPanel.Location = new System.Drawing.Point(0, 1); + this.controlPanel.Name = "controlPanel"; + this.controlPanel.Size = new System.Drawing.Size(202, 1695); + this.controlPanel.TabIndex = 25; + this.controlPanel.Resize += new System.EventHandler(this.controlPanel_Resize); + // + // AdvancedCollapsiblePanel + // + this.AdvancedCollapsiblePanel.Controls.Add(this.barMeter); + this.AdvancedCollapsiblePanel.Controls.Add(this.fastFftCheckBox); + this.AdvancedCollapsiblePanel.Controls.Add(this.labCPU); + this.AdvancedCollapsiblePanel.Controls.Add(this.labProcessTmr); + this.AdvancedCollapsiblePanel.Controls.Add(this.labPerformTmr); + this.AdvancedCollapsiblePanel.Controls.Add(this.labFftTmr); + this.AdvancedCollapsiblePanel.Controls.Add(this.label58); + this.AdvancedCollapsiblePanel.Controls.Add(this.label57); + this.AdvancedCollapsiblePanel.Controls.Add(this.label52); + this.AdvancedCollapsiblePanel.Controls.Add(this.bftResolutionComboBox); + this.AdvancedCollapsiblePanel.Controls.Add(this.chkBaseBand); + this.AdvancedCollapsiblePanel.Controls.Add(this.centerFreqNumericUpDown); + this.AdvancedCollapsiblePanel.Controls.Add(this.latencyNumericUpDown); + this.AdvancedCollapsiblePanel.Controls.Add(this.fftWindowComboBox); + this.AdvancedCollapsiblePanel.Controls.Add(this.cmbCenterStep); + this.AdvancedCollapsiblePanel.Controls.Add(this.label5); + this.AdvancedCollapsiblePanel.Controls.Add(this.chkFastConv); + this.AdvancedCollapsiblePanel.Controls.Add(this.label28); + this.AdvancedCollapsiblePanel.Controls.Add(this.chk1); + this.AdvancedCollapsiblePanel.Controls.Add(this.filterOrderNumericUpDown); + this.AdvancedCollapsiblePanel.Controls.Add(this.label1); + this.AdvancedCollapsiblePanel.Controls.Add(this.label16); + this.AdvancedCollapsiblePanel.Controls.Add(this.label6); + this.AdvancedCollapsiblePanel.Controls.Add(this.filterTypeComboBox); + this.AdvancedCollapsiblePanel.Controls.Add(this.label8); + this.AdvancedCollapsiblePanel.Controls.Add(this.filterBandwidthNumericUpDown); + this.AdvancedCollapsiblePanel.Controls.Add(this.label55); + this.AdvancedCollapsiblePanel.Controls.Add(this.label59); + this.AdvancedCollapsiblePanel.ExpandedHeight = 240; + this.AdvancedCollapsiblePanel.ForeColor = System.Drawing.Color.Black; + this.AdvancedCollapsiblePanel.Location = new System.Drawing.Point(0, 1451); + this.AdvancedCollapsiblePanel.Margin = new System.Windows.Forms.Padding(4); + this.AdvancedCollapsiblePanel.Name = "AdvancedCollapsiblePanel"; + this.AdvancedCollapsiblePanel.NextPanel = null; + this.AdvancedCollapsiblePanel.PanelTitle = "Advanced"; + this.AdvancedCollapsiblePanel.Size = new System.Drawing.Size(198, 240); + this.AdvancedCollapsiblePanel.TabIndex = 84; + // + // barMeter + // + this.barMeter.Location = new System.Drawing.Point(4, 204); + this.barMeter.Name = "barMeter"; + this.barMeter.Size = new System.Drawing.Size(155, 27); + this.barMeter.TabIndex = 137; + // + // labCPU + // + this.labCPU.ForeColor = System.Drawing.Color.RoyalBlue; + this.labCPU.Location = new System.Drawing.Point(158, 215); + this.labCPU.Margin = new System.Windows.Forms.Padding(4); + this.labCPU.Name = "labCPU"; + this.labCPU.Size = new System.Drawing.Size(39, 20); + this.labCPU.TabIndex = 135; + this.labCPU.Text = null; + // + // labProcessTmr + // + this.labProcessTmr.ForeColor = System.Drawing.Color.RoyalBlue; + this.labProcessTmr.Location = new System.Drawing.Point(152, 181); + this.labProcessTmr.Name = "labProcessTmr"; + this.labProcessTmr.Size = new System.Drawing.Size(25, 15); + this.labProcessTmr.TabIndex = 134; + this.labProcessTmr.Text = "999"; + // + // labPerformTmr + // + this.labPerformTmr.ForeColor = System.Drawing.Color.RoyalBlue; + this.labPerformTmr.Location = new System.Drawing.Point(82, 180); + this.labPerformTmr.Name = "labPerformTmr"; + this.labPerformTmr.Size = new System.Drawing.Size(26, 14); + this.labPerformTmr.TabIndex = 133; + this.labPerformTmr.Text = "999"; + // + // labFftTmr + // + this.labFftTmr.ForeColor = System.Drawing.Color.RoyalBlue; + this.labFftTmr.Location = new System.Drawing.Point(12, 181); + this.labFftTmr.Name = "labFftTmr"; + this.labFftTmr.Size = new System.Drawing.Size(26, 15); + this.labFftTmr.TabIndex = 132; + this.labFftTmr.Text = "999"; + // + // label58 + // + this.label58.AutoSize = true; + this.label58.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label58.Location = new System.Drawing.Point(143, 167); + this.label58.Name = "label58"; + this.label58.Size = new System.Drawing.Size(50, 13); + this.label58.TabIndex = 109; + this.label58.Text = "Proc-FFT"; + this.label58.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label57 + // + this.label57.AutoSize = true; + this.label57.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label57.Location = new System.Drawing.Point(69, 164); + this.label57.Name = "label57"; + this.label57.Size = new System.Drawing.Size(48, 13); + this.label57.TabIndex = 108; + this.label57.Text = "Perf-tmr"; + this.label57.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label52 + // + this.label52.AutoSize = true; + this.label52.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label52.Location = new System.Drawing.Point(0, 164); + this.label52.Name = "label52"; + this.label52.Size = new System.Drawing.Size(45, 13); + this.label52.TabIndex = 107; + this.label52.Text = "FFT-tmr"; + this.label52.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // centerFreqNumericUpDown + // + this.centerFreqNumericUpDown.Enabled = false; + this.centerFreqNumericUpDown.ForeColor = System.Drawing.Color.Yellow; + this.centerFreqNumericUpDown.Increment = 10; + this.centerFreqNumericUpDown.Location = new System.Drawing.Point(57, 265); + this.centerFreqNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.centerFreqNumericUpDown.Maximum = ((long)(9999999999)); + this.centerFreqNumericUpDown.Minimum = ((long)(0)); + this.centerFreqNumericUpDown.Name = "centerFreqNumericUpDown"; + this.centerFreqNumericUpDown.Size = new System.Drawing.Size(136, 20); + this.centerFreqNumericUpDown.TabIndex = 101; + this.centerFreqNumericUpDown.ToolTip = null; + this.centerFreqNumericUpDown.Value = ((long)(6000)); + this.centerFreqNumericUpDown.Visible = false; + this.centerFreqNumericUpDown.ValueChanged += new System.EventHandler(this.centerFreqNumericUpDown_ValueChanged); + // + // cmbCenterStep + // + this.cmbCenterStep.BackColor = System.Drawing.Color.Transparent; + this.cmbCenterStep.ForeColor = System.Drawing.Color.Yellow; + this.cmbCenterStep.Items.Add("1 kHz"); + this.cmbCenterStep.Items.Add("5 kHz"); + this.cmbCenterStep.Items.Add("10 kHz"); + this.cmbCenterStep.Items.Add("25 kHz"); + this.cmbCenterStep.Items.Add("50 kHz"); + this.cmbCenterStep.Items.Add("100 kHz"); + this.cmbCenterStep.Items.Add("200 kHz"); + this.cmbCenterStep.Items.Add("250 kHz"); + this.cmbCenterStep.Items.Add("500 kHz"); + this.cmbCenterStep.Items.Add("1 Mhz"); + this.cmbCenterStep.Items.Add("2 Mhz"); + this.cmbCenterStep.Location = new System.Drawing.Point(57, 241); + this.cmbCenterStep.Margin = new System.Windows.Forms.Padding(5); + this.cmbCenterStep.Name = "cmbCenterStep"; + this.cmbCenterStep.SelectedIndex = -1; + this.cmbCenterStep.Size = new System.Drawing.Size(83, 20); + this.cmbCenterStep.TabIndex = 12; + this.cmbCenterStep.Text = "xxxx"; + this.cmbCenterStep.ToolTip = null; + this.cmbCenterStep.Visible = false; + this.cmbCenterStep.SelectedIndexChanged += new System.EventHandler(this.cmbCenterStep_SelectedIndexChanged); + // + // label5 + // + this.label5.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label5.Location = new System.Drawing.Point(0, 67); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(55, 39); + this.label5.TabIndex = 20; + this.label5.Text = "Vfo filter order"; + this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label28 + // + this.label28.AutoSize = true; + this.label28.ForeColor = System.Drawing.Color.Orange; + this.label28.Location = new System.Drawing.Point(-1, 242); + this.label28.Name = "label28"; + this.label28.Size = new System.Drawing.Size(57, 13); + this.label28.TabIndex = 37; + this.label28.Text = "Cent-step"; + this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.label28.Visible = false; + // + // chk1 + // + this.chk1.Arrow = 99; + this.chk1.Checked = false; + this.chk1.Edge = 0.15F; + this.chk1.EndColor = System.Drawing.Color.White; + this.chk1.EndFactor = 0.2F; + this.chk1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chk1.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chk1.Location = new System.Drawing.Point(100, 137); + this.chk1.Name = "chk1"; + this.chk1.NoBorder = false; + this.chk1.NoLed = false; + this.chk1.RadioButton = false; + this.chk1.Radius = 6; + this.chk1.RadiusB = 0; + this.chk1.Size = new System.Drawing.Size(46, 22); + this.chk1.StartColor = System.Drawing.Color.Black; + this.chk1.StartFactor = 0.35F; + this.chk1.TabIndex = 92; + this.chk1.Text = "chk1"; + this.chk1.CheckedChanged += new System.EventHandler(this.chk1_CheckedChanged); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.ForeColor = System.Drawing.Color.Orange; + this.label1.Location = new System.Drawing.Point(0, 292); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(54, 13); + this.label1.TabIndex = 16; + this.label1.Text = "Bandwdt"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.label1.Visible = false; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label16.Location = new System.Drawing.Point(0, 51); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(57, 13); + this.label16.TabIndex = 26; + this.label16.Text = "Vfo wind."; + this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label6 + // + this.label6.ForeColor = System.Drawing.Color.Orange; + this.label6.Location = new System.Drawing.Point(0, 317); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(52, 31); + this.label6.TabIndex = 30; + this.label6.Text = "Latency (ms)"; + this.label6.Visible = false; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label8.Location = new System.Drawing.Point(0, 28); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(56, 13); + this.label8.TabIndex = 14; + this.label8.Text = "FFT wind,"; + // + // filterBandwidthNumericUpDown + // + this.filterBandwidthNumericUpDown.Enabled = false; + this.filterBandwidthNumericUpDown.ForeColor = System.Drawing.Color.Yellow; + this.filterBandwidthNumericUpDown.Increment = 10; + this.filterBandwidthNumericUpDown.Location = new System.Drawing.Point(56, 288); + this.filterBandwidthNumericUpDown.Margin = new System.Windows.Forms.Padding(5); + this.filterBandwidthNumericUpDown.Maximum = ((long)(250000)); + this.filterBandwidthNumericUpDown.Minimum = ((long)(10)); + this.filterBandwidthNumericUpDown.Name = "filterBandwidthNumericUpDown"; + this.filterBandwidthNumericUpDown.Size = new System.Drawing.Size(80, 20); + this.filterBandwidthNumericUpDown.TabIndex = 87; + this.filterBandwidthNumericUpDown.ToolTip = null; + this.filterBandwidthNumericUpDown.Value = ((long)(6000)); + this.filterBandwidthNumericUpDown.Visible = false; + this.filterBandwidthNumericUpDown.ValueChanged += new System.EventHandler(this.filterBandwidthNumericUpDown_ValueChanged); + this.filterBandwidthNumericUpDown.Enter += new System.EventHandler(this.gUpDown_Enter); + this.filterBandwidthNumericUpDown.Leave += new System.EventHandler(this.gpUpDown_Leave); + // + // label55 + // + this.label55.AutoSize = true; + this.label55.ForeColor = System.Drawing.Color.Orange; + this.label55.Location = new System.Drawing.Point(0, 268); + this.label55.Name = "label55"; + this.label55.Size = new System.Drawing.Size(58, 13); + this.label55.TabIndex = 102; + this.label55.Text = "Cent-Freq"; + this.label55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label59 + // + this.label59.AutoSize = true; + this.label59.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label59.Location = new System.Drawing.Point(0, 106); + this.label59.Name = "label59"; + this.label59.Size = new System.Drawing.Size(54, 13); + this.label59.TabIndex = 131; + this.label59.Text = "IF/AF res."; + // + // radioCollapsiblePanel + // + this.radioCollapsiblePanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.radioCollapsiblePanel.Controls.Add(this.label60); + this.radioCollapsiblePanel.Controls.Add(this.samRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.swapIQCheckBox); + this.radioCollapsiblePanel.Controls.Add(this.squelchNumericUpDown); + this.radioCollapsiblePanel.Controls.Add(this.useSquelchCheckBox); + this.radioCollapsiblePanel.Controls.Add(this.stepSizeComboBox); + this.radioCollapsiblePanel.Controls.Add(this.snapFrequencyCheckBox); + this.radioCollapsiblePanel.Controls.Add(this.cmbDbm); + this.radioCollapsiblePanel.Controls.Add(this.amRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.agcCheckBox); + this.radioCollapsiblePanel.Controls.Add(this.dsbRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.panel1); + this.radioCollapsiblePanel.Controls.Add(this.lsbRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.cwRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.rawRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.nfmRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.usbRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.wfmRadioButton); + this.radioCollapsiblePanel.Controls.Add(this.correctIQCheckBox); + this.radioCollapsiblePanel.ExpandedHeight = 197; + this.radioCollapsiblePanel.ForeColor = System.Drawing.Color.Black; + this.radioCollapsiblePanel.Location = new System.Drawing.Point(0, 4); + this.radioCollapsiblePanel.Margin = new System.Windows.Forms.Padding(4); + this.radioCollapsiblePanel.Name = "radioCollapsiblePanel"; + this.radioCollapsiblePanel.NextPanel = this.scopeCollapsiblePanel; + this.radioCollapsiblePanel.PanelTitle = "Radio"; + this.radioCollapsiblePanel.Size = new System.Drawing.Size(198, 197); + this.radioCollapsiblePanel.TabIndex = 3; + this.radioCollapsiblePanel.StateChanged += new System.EventHandler(this.collapsiblePanel_StateChanged); + // + // label60 + // + this.label60.AutoSize = true; + this.label60.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label60.Location = new System.Drawing.Point(4, 81); + this.label60.Name = "label60"; + this.label60.Size = new System.Drawing.Size(39, 13); + this.label60.TabIndex = 94; + this.label60.Text = "Signal"; + this.label60.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // samRadioButton + // + this.samRadioButton.Arrow = 99; + this.samRadioButton.Checked = false; + this.samRadioButton.Edge = 0.15F; + this.samRadioButton.EndColor = System.Drawing.Color.White; + this.samRadioButton.EndFactor = 0.2F; + this.samRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.samRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.samRadioButton.Location = new System.Drawing.Point(0, 50); + this.samRadioButton.Name = "samRadioButton"; + this.samRadioButton.NoBorder = false; + this.samRadioButton.NoLed = false; + this.samRadioButton.RadioButton = true; + this.samRadioButton.Radius = 6; + this.samRadioButton.RadiusB = 0; + this.samRadioButton.Size = new System.Drawing.Size(46, 24); + this.samRadioButton.StartColor = System.Drawing.Color.Black; + this.samRadioButton.StartFactor = 0.35F; + this.samRadioButton.TabIndex = 5; + this.samRadioButton.Text = "SAM"; + this.samRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // amRadioButton + // + this.amRadioButton.Arrow = 99; + this.amRadioButton.Checked = false; + this.amRadioButton.Edge = 0.15F; + this.amRadioButton.EndColor = System.Drawing.Color.White; + this.amRadioButton.EndFactor = 0.2F; + this.amRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.amRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.amRadioButton.Location = new System.Drawing.Point(1, 24); + this.amRadioButton.Name = "amRadioButton"; + this.amRadioButton.NoBorder = false; + this.amRadioButton.NoLed = false; + this.amRadioButton.RadioButton = true; + this.amRadioButton.Radius = 6; + this.amRadioButton.RadiusB = 0; + this.amRadioButton.Size = new System.Drawing.Size(46, 24); + this.amRadioButton.StartColor = System.Drawing.Color.Black; + this.amRadioButton.StartFactor = 0.35F; + this.amRadioButton.TabIndex = 2; + this.amRadioButton.Text = "AM"; + this.amRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // dsbRadioButton + // + this.dsbRadioButton.Arrow = 99; + this.dsbRadioButton.Checked = false; + this.dsbRadioButton.Edge = 0.15F; + this.dsbRadioButton.EndColor = System.Drawing.Color.White; + this.dsbRadioButton.EndFactor = 0.2F; + this.dsbRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.dsbRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.dsbRadioButton.Location = new System.Drawing.Point(50, 50); + this.dsbRadioButton.Name = "dsbRadioButton"; + this.dsbRadioButton.NoBorder = false; + this.dsbRadioButton.NoLed = false; + this.dsbRadioButton.RadioButton = true; + this.dsbRadioButton.Radius = 6; + this.dsbRadioButton.RadiusB = 0; + this.dsbRadioButton.Size = new System.Drawing.Size(46, 24); + this.dsbRadioButton.StartColor = System.Drawing.Color.Black; + this.dsbRadioButton.StartFactor = 0.35F; + this.dsbRadioButton.TabIndex = 6; + this.dsbRadioButton.Text = "DSB"; + this.dsbRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // panel1 + // + this.panel1.Controls.Add(this.butVfoC); + this.panel1.Controls.Add(this.butVfoB); + this.panel1.Controls.Add(this.butVfoA); + this.panel1.Controls.Add(this.label38); + this.panel1.Location = new System.Drawing.Point(0, 158); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(141, 33); + this.panel1.TabIndex = 67; + // + // butVfoC + // + this.butVfoC.Arrow = 0; + this.butVfoC.Checked = false; + this.butVfoC.Edge = 0.15F; + this.butVfoC.EndColor = System.Drawing.Color.Magenta; + this.butVfoC.EndFactor = 0.2F; + this.butVfoC.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.butVfoC.ForeColor = System.Drawing.Color.CornflowerBlue; + this.butVfoC.Location = new System.Drawing.Point(102, 3); + this.butVfoC.Name = "butVfoC"; + this.butVfoC.NoBorder = false; + this.butVfoC.NoLed = false; + this.butVfoC.RadioButton = true; + this.butVfoC.Radius = 6; + this.butVfoC.RadiusB = 0; + this.butVfoC.Size = new System.Drawing.Size(33, 26); + this.butVfoC.StartColor = System.Drawing.Color.Black; + this.butVfoC.StartFactor = 0.35F; + this.butVfoC.TabIndex = 22; + this.butVfoC.Text = "C"; + this.butVfoC.CheckedChanged += new System.EventHandler(this.butVfo_CheckedChanged); + // + // butVfoB + // + this.butVfoB.Arrow = 0; + this.butVfoB.Checked = false; + this.butVfoB.Edge = 0.15F; + this.butVfoB.EndColor = System.Drawing.Color.Aqua; + this.butVfoB.EndFactor = 0.2F; + this.butVfoB.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.butVfoB.ForeColor = System.Drawing.Color.CornflowerBlue; + this.butVfoB.Location = new System.Drawing.Point(66, 3); + this.butVfoB.Name = "butVfoB"; + this.butVfoB.NoBorder = false; + this.butVfoB.NoLed = false; + this.butVfoB.RadioButton = true; + this.butVfoB.Radius = 6; + this.butVfoB.RadiusB = 0; + this.butVfoB.Size = new System.Drawing.Size(33, 26); + this.butVfoB.StartColor = System.Drawing.Color.Black; + this.butVfoB.StartFactor = 0.35F; + this.butVfoB.TabIndex = 21; + this.butVfoB.Text = "B"; + this.butVfoB.CheckedChanged += new System.EventHandler(this.butVfo_CheckedChanged); + // + // butVfoA + // + this.butVfoA.Arrow = 0; + this.butVfoA.Checked = false; + this.butVfoA.Edge = 0.15F; + this.butVfoA.EndColor = System.Drawing.Color.GreenYellow; + this.butVfoA.EndFactor = 0.2F; + this.butVfoA.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.butVfoA.ForeColor = System.Drawing.Color.CornflowerBlue; + this.butVfoA.Location = new System.Drawing.Point(30, 3); + this.butVfoA.Name = "butVfoA"; + this.butVfoA.NoBorder = false; + this.butVfoA.NoLed = false; + this.butVfoA.RadioButton = true; + this.butVfoA.Radius = 6; + this.butVfoA.RadiusB = 0; + this.butVfoA.Size = new System.Drawing.Size(33, 26); + this.butVfoA.StartColor = System.Drawing.Color.Black; + this.butVfoA.StartFactor = 0.35F; + this.butVfoA.TabIndex = 20; + this.butVfoA.Text = "A"; + this.butVfoA.CheckedChanged += new System.EventHandler(this.butVfo_CheckedChanged); + // + // label38 + // + this.label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label38.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label38.Location = new System.Drawing.Point(1, 11); + this.label38.Name = "label38"; + this.label38.Size = new System.Drawing.Size(30, 14); + this.label38.TabIndex = 39; + this.label38.Text = "Vfo"; + this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // lsbRadioButton + // + this.lsbRadioButton.Arrow = 99; + this.lsbRadioButton.Checked = false; + this.lsbRadioButton.Edge = 0.15F; + this.lsbRadioButton.EndColor = System.Drawing.Color.White; + this.lsbRadioButton.EndFactor = 0.2F; + this.lsbRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lsbRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.lsbRadioButton.Location = new System.Drawing.Point(50, 24); + this.lsbRadioButton.Name = "lsbRadioButton"; + this.lsbRadioButton.NoBorder = false; + this.lsbRadioButton.NoLed = false; + this.lsbRadioButton.RadioButton = true; + this.lsbRadioButton.Radius = 6; + this.lsbRadioButton.RadiusB = 0; + this.lsbRadioButton.Size = new System.Drawing.Size(46, 24); + this.lsbRadioButton.StartColor = System.Drawing.Color.Black; + this.lsbRadioButton.StartFactor = 0.35F; + this.lsbRadioButton.TabIndex = 3; + this.lsbRadioButton.Text = "LSB"; + this.lsbRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // cwRadioButton + // + this.cwRadioButton.Arrow = 99; + this.cwRadioButton.Checked = false; + this.cwRadioButton.Edge = 0.15F; + this.cwRadioButton.EndColor = System.Drawing.Color.White; + this.cwRadioButton.EndFactor = 0.2F; + this.cwRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cwRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.cwRadioButton.Location = new System.Drawing.Point(100, 50); + this.cwRadioButton.Name = "cwRadioButton"; + this.cwRadioButton.NoBorder = false; + this.cwRadioButton.NoLed = false; + this.cwRadioButton.RadioButton = true; + this.cwRadioButton.Radius = 6; + this.cwRadioButton.RadiusB = 0; + this.cwRadioButton.Size = new System.Drawing.Size(46, 24); + this.cwRadioButton.StartColor = System.Drawing.Color.Black; + this.cwRadioButton.StartFactor = 0.35F; + this.cwRadioButton.TabIndex = 7; + this.cwRadioButton.Text = "CW"; + this.cwRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // nfmRadioButton + // + this.nfmRadioButton.Arrow = 99; + this.nfmRadioButton.Checked = false; + this.nfmRadioButton.Edge = 0.15F; + this.nfmRadioButton.EndColor = System.Drawing.Color.White; + this.nfmRadioButton.EndFactor = 0.2F; + this.nfmRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.nfmRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.nfmRadioButton.Location = new System.Drawing.Point(150, 50); + this.nfmRadioButton.Name = "nfmRadioButton"; + this.nfmRadioButton.NoBorder = false; + this.nfmRadioButton.NoLed = false; + this.nfmRadioButton.RadioButton = true; + this.nfmRadioButton.Radius = 6; + this.nfmRadioButton.RadiusB = 0; + this.nfmRadioButton.Size = new System.Drawing.Size(46, 24); + this.nfmRadioButton.StartColor = System.Drawing.Color.Black; + this.nfmRadioButton.StartFactor = 0.35F; + this.nfmRadioButton.TabIndex = 9; + this.nfmRadioButton.Text = "nFM"; + this.nfmRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // usbRadioButton + // + this.usbRadioButton.Arrow = 99; + this.usbRadioButton.Checked = false; + this.usbRadioButton.Edge = 0.15F; + this.usbRadioButton.EndColor = System.Drawing.Color.White; + this.usbRadioButton.EndFactor = 0.2F; + this.usbRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.usbRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.usbRadioButton.Location = new System.Drawing.Point(100, 24); + this.usbRadioButton.Name = "usbRadioButton"; + this.usbRadioButton.NoBorder = false; + this.usbRadioButton.NoLed = false; + this.usbRadioButton.RadioButton = true; + this.usbRadioButton.Radius = 6; + this.usbRadioButton.RadiusB = 0; + this.usbRadioButton.Size = new System.Drawing.Size(46, 24); + this.usbRadioButton.StartColor = System.Drawing.Color.Black; + this.usbRadioButton.StartFactor = 0.35F; + this.usbRadioButton.TabIndex = 4; + this.usbRadioButton.Text = "USB"; + this.usbRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // wfmRadioButton + // + this.wfmRadioButton.Arrow = 99; + this.wfmRadioButton.Checked = false; + this.wfmRadioButton.Edge = 0.15F; + this.wfmRadioButton.EndColor = System.Drawing.Color.White; + this.wfmRadioButton.EndFactor = 0.2F; + this.wfmRadioButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.wfmRadioButton.ForeColor = System.Drawing.Color.CornflowerBlue; + this.wfmRadioButton.Location = new System.Drawing.Point(150, 24); + this.wfmRadioButton.Name = "wfmRadioButton"; + this.wfmRadioButton.NoBorder = false; + this.wfmRadioButton.NoLed = false; + this.wfmRadioButton.RadioButton = true; + this.wfmRadioButton.Radius = 6; + this.wfmRadioButton.RadiusB = 0; + this.wfmRadioButton.Size = new System.Drawing.Size(46, 24); + this.wfmRadioButton.StartColor = System.Drawing.Color.Black; + this.wfmRadioButton.StartFactor = 0.35F; + this.wfmRadioButton.TabIndex = 8; + this.wfmRadioButton.Text = "wFM"; + this.wfmRadioButton.CheckedChanged += new System.EventHandler(this.modeRadioButton_CheckStateChanged); + // + // scopeCollapsiblePanel + // + this.scopeCollapsiblePanel.Controls.Add(this.gBexpand); + this.scopeCollapsiblePanel.Controls.Add(this.label51); + this.scopeCollapsiblePanel.Controls.Add(this.label43); + this.scopeCollapsiblePanel.Controls.Add(this.label42); + this.scopeCollapsiblePanel.Controls.Add(this.label41); + this.scopeCollapsiblePanel.Controls.Add(this.scope); + this.scopeCollapsiblePanel.Controls.Add(this.label40); + this.scopeCollapsiblePanel.Controls.Add(this.label19); + this.scopeCollapsiblePanel.Controls.Add(this.tbvPeakRel); + this.scopeCollapsiblePanel.Controls.Add(this.tbvPeakDelay); + this.scopeCollapsiblePanel.Controls.Add(this.tbvAudioAvg); + this.scopeCollapsiblePanel.Controls.Add(this.tbvAudioRel); + this.scopeCollapsiblePanel.Controls.Add(this.tbvCarrierAvg); + this.scopeCollapsiblePanel.Controls.Add(this.tbTrigL); + this.scopeCollapsiblePanel.Controls.Add(this.cmbHchannel); + this.scopeCollapsiblePanel.Controls.Add(this.tbGain); + this.scopeCollapsiblePanel.Controls.Add(this.tbAverage); + this.scopeCollapsiblePanel.Controls.Add(this.chkHrunDC); + this.scopeCollapsiblePanel.Controls.Add(this.chkAver); + this.scopeCollapsiblePanel.Controls.Add(this.chkVrunDC); + this.scopeCollapsiblePanel.Controls.Add(this.chkHinvert); + this.scopeCollapsiblePanel.Controls.Add(this.chkXY); + this.scopeCollapsiblePanel.Controls.Add(this.chkVinvert); + this.scopeCollapsiblePanel.Controls.Add(this.cmbTim); + this.scopeCollapsiblePanel.Controls.Add(this.cmbHor); + this.scopeCollapsiblePanel.Controls.Add(this.cmbVer); + this.scopeCollapsiblePanel.Controls.Add(this.label39); + this.scopeCollapsiblePanel.Controls.Add(this.tbRFgain); + this.scopeCollapsiblePanel.Controls.Add(this.label27); + this.scopeCollapsiblePanel.Controls.Add(this.label20); + this.scopeCollapsiblePanel.Controls.Add(this.label9); + this.scopeCollapsiblePanel.Controls.Add(this.label35); + this.scopeCollapsiblePanel.Controls.Add(this.labTbGain); + this.scopeCollapsiblePanel.Controls.Add(this.labTbAverage); + this.scopeCollapsiblePanel.Controls.Add(this.label36); + this.scopeCollapsiblePanel.Controls.Add(this.label34); + this.scopeCollapsiblePanel.Controls.Add(this.cmbVchannel); + this.scopeCollapsiblePanel.Controls.Add(this.labFast); + this.scopeCollapsiblePanel.Controls.Add(this.label48); + this.scopeCollapsiblePanel.Controls.Add(this.label45); + this.scopeCollapsiblePanel.Controls.Add(this.label46); + this.scopeCollapsiblePanel.Controls.Add(this.label47); + this.scopeCollapsiblePanel.Controls.Add(this.gBexpandScope); + this.scopeCollapsiblePanel.ExpandedHeight = 595; + this.scopeCollapsiblePanel.ForeColor = System.Drawing.Color.Black; + this.scopeCollapsiblePanel.Location = new System.Drawing.Point(0, 201); + this.scopeCollapsiblePanel.Margin = new System.Windows.Forms.Padding(4); + this.scopeCollapsiblePanel.Name = "scopeCollapsiblePanel"; + this.scopeCollapsiblePanel.NextPanel = this.audioCollapsiblePanel; + this.scopeCollapsiblePanel.PanelTitle = "Scope (/1000)"; + this.scopeCollapsiblePanel.Size = new System.Drawing.Size(198, 595); + this.scopeCollapsiblePanel.TabIndex = 26; + this.scopeCollapsiblePanel.Tag = "d"; + // + // label51 + // + this.label51.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label51.AutoSize = true; + this.label51.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label51.Location = new System.Drawing.Point(4, 545); + this.label51.Name = "label51"; + this.label51.Size = new System.Drawing.Size(64, 13); + this.label51.TabIndex = 122; + this.label51.Tag = "1"; + this.label51.Text = "Phase lock:"; + this.label51.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label43 + // + this.label43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label43.AutoSize = true; + this.label43.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label43.Location = new System.Drawing.Point(150, 433); + this.label43.Name = "label43"; + this.label43.Size = new System.Drawing.Size(50, 13); + this.label43.TabIndex = 116; + this.label43.Tag = "1"; + this.label43.Text = "Peak Rel"; + this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label42 + // + this.label42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label42.AutoSize = true; + this.label42.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label42.Location = new System.Drawing.Point(110, 420); + this.label42.Name = "label42"; + this.label42.Size = new System.Drawing.Size(59, 13); + this.label42.TabIndex = 115; + this.label42.Tag = "1"; + this.label42.Text = "PeakDelay"; + this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label41 + // + this.label41.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label41.AutoSize = true; + this.label41.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label41.Location = new System.Drawing.Point(74, 433); + this.label41.Name = "label41"; + this.label41.Size = new System.Drawing.Size(60, 13); + this.label41.TabIndex = 114; + this.label41.Tag = "1"; + this.label41.Text = "Audio Avg"; + this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label40 + // + this.label40.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label40.AutoSize = true; + this.label40.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label40.Location = new System.Drawing.Point(38, 420); + this.label40.Name = "label40"; + this.label40.Size = new System.Drawing.Size(57, 13); + this.label40.TabIndex = 113; + this.label40.Tag = "1"; + this.label40.Text = "Audio Rel"; + this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label19 + // + this.label19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label19.AutoSize = true; + this.label19.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label19.Location = new System.Drawing.Point(-1, 434); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(63, 13); + this.label19.TabIndex = 112; + this.label19.Tag = "1"; + this.label19.Text = "Carrier Avg"; + this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label39 + // + this.label39.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label39.AutoSize = true; + this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label39.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label39.Location = new System.Drawing.Point(0, 25); + this.label39.Name = "label39"; + this.label39.Size = new System.Drawing.Size(51, 13); + this.label39.TabIndex = 83; + this.label39.Text = "RF gain"; + this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label27 + // + this.label27.AutoSize = true; + this.label27.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label27.Location = new System.Drawing.Point(142, 341); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(52, 13); + this.label27.TabIndex = 70; + this.label27.Text = "Trig-level"; + // + // label20 + // + this.label20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label20.AutoSize = true; + this.label20.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label20.Location = new System.Drawing.Point(72, 569); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(31, 13); + this.label20.TabIndex = 76; + this.label20.Tag = "1"; + this.label20.Text = "Gain"; + this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label9 + // + this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label9.AutoSize = true; + this.label9.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label9.Location = new System.Drawing.Point(74, 549); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(26, 13); + this.label9.TabIndex = 75; + this.label9.Tag = "1"; + this.label9.Text = "Avg"; + this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label35 + // + this.label35.AutoSize = true; + this.label35.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label35.Location = new System.Drawing.Point(72, 292); + this.label35.Name = "label35"; + this.label35.Size = new System.Drawing.Size(45, 13); + this.label35.TabIndex = 55; + this.label35.Text = "Hor/div"; + // + // labTbGain + // + this.labTbGain.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labTbGain.AutoSize = true; + this.labTbGain.ForeColor = System.Drawing.Color.RoyalBlue; + this.labTbGain.Location = new System.Drawing.Point(176, 570); + this.labTbGain.Name = "labTbGain"; + this.labTbGain.Size = new System.Drawing.Size(23, 13); + this.labTbGain.TabIndex = 74; + this.labTbGain.Tag = "1"; + this.labTbGain.Text = "-99"; + this.labTbGain.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // labTbAverage + // + this.labTbAverage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labTbAverage.AutoSize = true; + this.labTbAverage.ForeColor = System.Drawing.Color.RoyalBlue; + this.labTbAverage.Location = new System.Drawing.Point(176, 550); + this.labTbAverage.Name = "labTbAverage"; + this.labTbAverage.Size = new System.Drawing.Size(23, 13); + this.labTbAverage.TabIndex = 73; + this.labTbAverage.Tag = "1"; + this.labTbAverage.Text = "-99"; + this.labTbAverage.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label36 + // + this.label36.AutoSize = true; + this.label36.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label36.Location = new System.Drawing.Point(4, 292); + this.label36.Name = "label36"; + this.label36.Size = new System.Drawing.Size(42, 13); + this.label36.TabIndex = 57; + this.label36.Text = "Ver/div"; + // + // label34 + // + this.label34.AutoSize = true; + this.label34.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label34.Location = new System.Drawing.Point(135, 292); + this.label34.Name = "label34"; + this.label34.Size = new System.Drawing.Size(54, 13); + this.label34.TabIndex = 65; + this.label34.Text = "Timebase"; + // + // labFast + // + this.labFast.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labFast.AutoSize = true; + this.labFast.ForeColor = System.Drawing.Color.CornflowerBlue; + this.labFast.Location = new System.Drawing.Point(9, 521); + this.labFast.Name = "labFast"; + this.labFast.Size = new System.Drawing.Size(26, 13); + this.labFast.TabIndex = 117; + this.labFast.Tag = "1"; + this.labFast.Text = "fast"; + this.labFast.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label48 + // + this.label48.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label48.AutoSize = true; + this.label48.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label48.Location = new System.Drawing.Point(48, 521); + this.label48.Name = "label48"; + this.label48.Size = new System.Drawing.Size(31, 13); + this.label48.TabIndex = 121; + this.label48.Tag = "1"; + this.label48.Text = "slow"; + this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label45 + // + this.label45.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label45.AutoSize = true; + this.label45.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label45.Location = new System.Drawing.Point(89, 521); + this.label45.Name = "label45"; + this.label45.Size = new System.Drawing.Size(26, 13); + this.label45.TabIndex = 118; + this.label45.Tag = "1"; + this.label45.Text = "fast"; + this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label46 + // + this.label46.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label46.AutoSize = true; + this.label46.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label46.Location = new System.Drawing.Point(124, 521); + this.label46.Name = "label46"; + this.label46.Size = new System.Drawing.Size(34, 13); + this.label46.TabIndex = 119; + this.label46.Tag = "1"; + this.label46.Text = "short"; + this.label46.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label47 + // + this.label47.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label47.AutoSize = true; + this.label47.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label47.Location = new System.Drawing.Point(164, 521); + this.label47.Name = "label47"; + this.label47.Size = new System.Drawing.Size(31, 13); + this.label47.TabIndex = 120; + this.label47.Tag = "1"; + this.label47.Text = "slow"; + this.label47.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // audioCollapsiblePanel + // + this.audioCollapsiblePanel.Controls.Add(this.cwShiftNumericUpDown); + this.audioCollapsiblePanel.Controls.Add(this.label2); + this.audioCollapsiblePanel.Controls.Add(this.outputDeviceComboBox); + this.audioCollapsiblePanel.Controls.Add(this.inputDeviceComboBox); + this.audioCollapsiblePanel.Controls.Add(this.sampleRateComboBox); + this.audioCollapsiblePanel.Controls.Add(this.filterAudioCheckBox); + this.audioCollapsiblePanel.Controls.Add(this.chkNotch3); + this.audioCollapsiblePanel.Controls.Add(this.chkNotch2); + this.audioCollapsiblePanel.Controls.Add(this.chkNotch1); + this.audioCollapsiblePanel.Controls.Add(this.fmStereoCheckBox); + this.audioCollapsiblePanel.Controls.Add(this.chkNotch0); + this.audioCollapsiblePanel.Controls.Add(this.label12); + this.audioCollapsiblePanel.Controls.Add(this.labSampling); + this.audioCollapsiblePanel.Controls.Add(this.label11); + this.audioCollapsiblePanel.Controls.Add(this.label15); + this.audioCollapsiblePanel.ExpandedHeight = 176; + this.audioCollapsiblePanel.ForeColor = System.Drawing.Color.Black; + this.audioCollapsiblePanel.Location = new System.Drawing.Point(0, 796); + this.audioCollapsiblePanel.Margin = new System.Windows.Forms.Padding(4); + this.audioCollapsiblePanel.Name = "audioCollapsiblePanel"; + this.audioCollapsiblePanel.NextPanel = this.agcCollapsiblePanel; + this.audioCollapsiblePanel.PanelTitle = "Audio"; + this.audioCollapsiblePanel.Size = new System.Drawing.Size(198, 176); + this.audioCollapsiblePanel.TabIndex = 49; + // + // label2 + // + this.label2.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label2.Location = new System.Drawing.Point(0, 31); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(52, 17); + this.label2.TabIndex = 43; + this.label2.Text = "Notches"; + // + // chkNotch3 + // + this.chkNotch3.Arrow = 0; + this.chkNotch3.Checked = false; + this.chkNotch3.Edge = 0.15F; + this.chkNotch3.EndColor = System.Drawing.Color.White; + this.chkNotch3.EndFactor = 0.2F; + this.chkNotch3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkNotch3.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkNotch3.Location = new System.Drawing.Point(166, 23); + this.chkNotch3.Name = "chkNotch3"; + this.chkNotch3.NoBorder = false; + this.chkNotch3.NoLed = false; + this.chkNotch3.RadioButton = false; + this.chkNotch3.Radius = 6; + this.chkNotch3.RadiusB = 0; + this.chkNotch3.Size = new System.Drawing.Size(30, 26); + this.chkNotch3.StartColor = System.Drawing.Color.Black; + this.chkNotch3.StartFactor = 0.35F; + this.chkNotch3.TabIndex = 53; + this.chkNotch3.Text = "4"; + this.chkNotch3.CheckedChanged += new System.EventHandler(this.chkNotch_CheckedChanged); + // + // chkNotch2 + // + this.chkNotch2.Arrow = 0; + this.chkNotch2.Checked = false; + this.chkNotch2.Edge = 0.15F; + this.chkNotch2.EndColor = System.Drawing.Color.White; + this.chkNotch2.EndFactor = 0.2F; + this.chkNotch2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkNotch2.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkNotch2.Location = new System.Drawing.Point(129, 23); + this.chkNotch2.Name = "chkNotch2"; + this.chkNotch2.NoBorder = false; + this.chkNotch2.NoLed = false; + this.chkNotch2.RadioButton = false; + this.chkNotch2.Radius = 6; + this.chkNotch2.RadiusB = 0; + this.chkNotch2.Size = new System.Drawing.Size(30, 26); + this.chkNotch2.StartColor = System.Drawing.Color.Black; + this.chkNotch2.StartFactor = 0.35F; + this.chkNotch2.TabIndex = 52; + this.chkNotch2.Text = "3"; + this.chkNotch2.CheckedChanged += new System.EventHandler(this.chkNotch_CheckedChanged); + // + // chkNotch1 + // + this.chkNotch1.Arrow = 0; + this.chkNotch1.Checked = false; + this.chkNotch1.Edge = 0.15F; + this.chkNotch1.EndColor = System.Drawing.Color.White; + this.chkNotch1.EndFactor = 0.2F; + this.chkNotch1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.chkNotch1.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkNotch1.Location = new System.Drawing.Point(91, 23); + this.chkNotch1.Name = "chkNotch1"; + this.chkNotch1.NoBorder = false; + this.chkNotch1.NoLed = false; + this.chkNotch1.RadioButton = false; + this.chkNotch1.Radius = 6; + this.chkNotch1.RadiusB = 0; + this.chkNotch1.Size = new System.Drawing.Size(30, 26); + this.chkNotch1.StartColor = System.Drawing.Color.Black; + this.chkNotch1.StartFactor = 0.35F; + this.chkNotch1.TabIndex = 51; + this.chkNotch1.Text = "2"; + this.chkNotch1.CheckedChanged += new System.EventHandler(this.chkNotch_CheckedChanged); + // + // label12 + // + this.label12.AutoSize = true; + this.label12.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label12.Location = new System.Drawing.Point(0, 86); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(45, 13); + this.label12.TabIndex = 26; + this.label12.Text = "Output"; + // + // labSampling + // + this.labSampling.ForeColor = System.Drawing.Color.CornflowerBlue; + this.labSampling.Location = new System.Drawing.Point(0, 111); + this.labSampling.Name = "labSampling"; + this.labSampling.Size = new System.Drawing.Size(57, 30); + this.labSampling.TabIndex = 28; + this.labSampling.Text = "min. sampling"; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label11.Location = new System.Drawing.Point(0, 61); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(35, 13); + this.label11.TabIndex = 24; + this.label11.Text = "Input"; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label15.Location = new System.Drawing.Point(0, 146); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(52, 13); + this.label15.TabIndex = 32; + this.label15.Text = "CW Shift"; + this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // agcCollapsiblePanel + // + this.agcCollapsiblePanel.Controls.Add(this.panel2); + this.agcCollapsiblePanel.Controls.Add(this.agcThresholdNumericUpDown); + this.agcCollapsiblePanel.Controls.Add(this.agcDecayNumericUpDown); + this.agcCollapsiblePanel.Controls.Add(this.agcSlopeNumericUpDown); + this.agcCollapsiblePanel.Controls.Add(this.agcUseHangCheckBox); + this.agcCollapsiblePanel.Controls.Add(this.label22); + this.agcCollapsiblePanel.Controls.Add(this.label53); + this.agcCollapsiblePanel.Controls.Add(this.label56); + this.agcCollapsiblePanel.Controls.Add(this.agcDecayLabel); + this.agcCollapsiblePanel.ExpandedHeight = 165; + this.agcCollapsiblePanel.ForeColor = System.Drawing.Color.Black; + this.agcCollapsiblePanel.Location = new System.Drawing.Point(0, 972); + this.agcCollapsiblePanel.Margin = new System.Windows.Forms.Padding(4); + this.agcCollapsiblePanel.Name = "agcCollapsiblePanel"; + this.agcCollapsiblePanel.NextPanel = this.displayCollapsiblePanel; + this.agcCollapsiblePanel.PanelTitle = "AGC"; + this.agcCollapsiblePanel.Size = new System.Drawing.Size(198, 165); + this.agcCollapsiblePanel.TabIndex = 60; + // + // panel2 + // + this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel2.Controls.Add(this.chkNLimiter); + this.panel2.Controls.Add(this.label33); + this.panel2.Controls.Add(this.tbNLRatio); + this.panel2.Controls.Add(this.labNLTreshold); + this.panel2.Controls.Add(this.tbNLTreshold); + this.panel2.Controls.Add(this.labNLRatio); + this.panel2.Location = new System.Drawing.Point(0, 102); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(198, 58); + this.panel2.TabIndex = 103; + // + // label33 + // + this.label33.AutoSize = true; + this.label33.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label33.Location = new System.Drawing.Point(4, 35); + this.label33.Name = "label33"; + this.label33.Size = new System.Drawing.Size(34, 13); + this.label33.TabIndex = 76; + this.label33.Tag = "Ratio"; + this.label33.Text = "Ratio"; + this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // labNLTreshold + // + this.labNLTreshold.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labNLTreshold.ForeColor = System.Drawing.Color.RoyalBlue; + this.labNLTreshold.Location = new System.Drawing.Point(48, 3); + this.labNLTreshold.Name = "labNLTreshold"; + this.labNLTreshold.Size = new System.Drawing.Size(33, 23); + this.labNLTreshold.TabIndex = 102; + this.labNLTreshold.Text = "100"; + this.labNLTreshold.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // labNLRatio + // + this.labNLRatio.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labNLRatio.ForeColor = System.Drawing.Color.RoyalBlue; + this.labNLRatio.Location = new System.Drawing.Point(48, 30); + this.labNLRatio.Name = "labNLRatio"; + this.labNLRatio.Size = new System.Drawing.Size(33, 23); + this.labNLRatio.TabIndex = 101; + this.labNLRatio.Text = "100"; + this.labNLRatio.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // label22 + // + this.label22.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label22.Location = new System.Drawing.Point(55, 46); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(66, 26); + this.label22.TabIndex = 13; + this.label22.Text = "Slope (dB)"; + this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label53 + // + this.label53.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label53.Location = new System.Drawing.Point(54, 23); + this.label53.Name = "label53"; + this.label53.Size = new System.Drawing.Size(70, 26); + this.label53.TabIndex = 96; + this.label53.Text = "Thresh. (dB)"; + this.label53.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label56 + // + this.label56.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label56.Location = new System.Drawing.Point(-1, 63); + this.label56.Name = "label56"; + this.label56.Size = new System.Drawing.Size(56, 38); + this.label56.TabIndex = 99; + this.label56.Text = "Decay (ms)"; + this.label56.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // agcDecayLabel + // + this.agcDecayLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.agcDecayLabel.ForeColor = System.Drawing.Color.RoyalBlue; + this.agcDecayLabel.Location = new System.Drawing.Point(46, 80); + this.agcDecayLabel.Name = "agcDecayLabel"; + this.agcDecayLabel.Size = new System.Drawing.Size(38, 19); + this.agcDecayLabel.TabIndex = 98; + this.agcDecayLabel.Text = "-100 dB"; + this.agcDecayLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight; + // + // displayCollapsiblePanel + // + this.displayCollapsiblePanel.Controls.Add(this.label3); + this.displayCollapsiblePanel.Controls.Add(this.remDcSlider); + this.displayCollapsiblePanel.Controls.Add(this.cmbAudio); + this.displayCollapsiblePanel.Controls.Add(this.label54); + this.displayCollapsiblePanel.Controls.Add(this.label7); + this.displayCollapsiblePanel.Controls.Add(this.chkIF); + this.displayCollapsiblePanel.Controls.Add(this.chkWF); + this.displayCollapsiblePanel.Controls.Add(this.dbmOffsetUpDown); + this.displayCollapsiblePanel.Controls.Add(this.chkAutoSize); + this.displayCollapsiblePanel.Controls.Add(this.labSmeter); + this.displayCollapsiblePanel.Controls.Add(this.frequencyShiftNumericUpDown); + this.displayCollapsiblePanel.Controls.Add(this.markPeaksCheckBox); + this.displayCollapsiblePanel.Controls.Add(this.frequencyShiftCheckBox); + this.displayCollapsiblePanel.Controls.Add(this.fftResolutionComboBox); + this.displayCollapsiblePanel.Controls.Add(this.wDecayTrackBar); + this.displayCollapsiblePanel.Controls.Add(this.fftAverageUpDown); + this.displayCollapsiblePanel.Controls.Add(this.wAttackTrackBar); + this.displayCollapsiblePanel.Controls.Add(this.labFftAverage); + this.displayCollapsiblePanel.Controls.Add(this.useTimestampsCheckBox); + this.displayCollapsiblePanel.Controls.Add(this.sDecayTrackBar); + this.displayCollapsiblePanel.Controls.Add(this.sAttackTrackBar); + this.displayCollapsiblePanel.Controls.Add(this.label23); + this.displayCollapsiblePanel.Controls.Add(this.label26); + this.displayCollapsiblePanel.Controls.Add(this.label24); + this.displayCollapsiblePanel.Controls.Add(this.label25); + this.displayCollapsiblePanel.Controls.Add(this.label4); + this.displayCollapsiblePanel.Controls.Add(this.chkIndepSideband); + this.displayCollapsiblePanel.Controls.Add(this.label21); + this.displayCollapsiblePanel.Controls.Add(this.label13); + this.displayCollapsiblePanel.Controls.Add(this.gradientButtonSA); + this.displayCollapsiblePanel.ExpandedHeight = 314; + this.displayCollapsiblePanel.ForeColor = System.Drawing.Color.Black; + this.displayCollapsiblePanel.Location = new System.Drawing.Point(0, 1137); + this.displayCollapsiblePanel.Margin = new System.Windows.Forms.Padding(4); + this.displayCollapsiblePanel.Name = "displayCollapsiblePanel"; + this.displayCollapsiblePanel.NextPanel = this.AdvancedCollapsiblePanel; + this.displayCollapsiblePanel.PanelTitle = "FFT Display"; + this.displayCollapsiblePanel.Size = new System.Drawing.Size(198, 314); + this.displayCollapsiblePanel.TabIndex = 68; + // + // label3 + // + this.label3.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label3.Location = new System.Drawing.Point(0, 288); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(53, 15); + this.label3.TabIndex = 131; + this.label3.Text = "DC spike"; + // + // label54 + // + this.label54.AutoSize = true; + this.label54.ForeColor = System.Drawing.Color.Orange; + this.label54.Location = new System.Drawing.Point(180, 70); + this.label54.Name = "label54"; + this.label54.Size = new System.Drawing.Size(20, 13); + this.label54.TabIndex = 127; + this.label54.Text = "Hz"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label7.Location = new System.Drawing.Point(51, 23); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(47, 13); + this.label7.TabIndex = 124; + this.label7.Text = "show IF"; + // + // labSmeter + // + this.labSmeter.ForeColor = System.Drawing.Color.CornflowerBlue; + this.labSmeter.Location = new System.Drawing.Point(0, 251); + this.labSmeter.Name = "labSmeter"; + this.labSmeter.Size = new System.Drawing.Size(63, 30); + this.labSmeter.TabIndex = 94; + this.labSmeter.Text = "S-meter offs. (dB)"; + // + // wDecayTrackBar + // + this.wDecayTrackBar.Button = false; + this.wDecayTrackBar.Checked = false; + this.wDecayTrackBar.ColorFactor = 0.55F; + this.wDecayTrackBar.ForeColor = System.Drawing.Color.Black; + this.wDecayTrackBar.Location = new System.Drawing.Point(53, 171); + this.wDecayTrackBar.Margin = new System.Windows.Forms.Padding(4); + this.wDecayTrackBar.Maximum = 50; + this.wDecayTrackBar.Minimum = 0; + this.wDecayTrackBar.Name = "wDecayTrackBar"; + this.wDecayTrackBar.Size = new System.Drawing.Size(92, 15); + this.wDecayTrackBar.TabIndex = 79; + this.wDecayTrackBar.TickColor = System.Drawing.Color.Orange; + this.wDecayTrackBar.Ticks = 0; + this.wDecayTrackBar.ToolTip = null; + this.wDecayTrackBar.Value = 10; + this.wDecayTrackBar.ValueChanged += new System.EventHandler(this.wDecayTrackBar_ValueChanged); + // + // wAttackTrackBar + // + this.wAttackTrackBar.Button = false; + this.wAttackTrackBar.Checked = false; + this.wAttackTrackBar.ColorFactor = 0.55F; + this.wAttackTrackBar.ForeColor = System.Drawing.Color.Black; + this.wAttackTrackBar.Location = new System.Drawing.Point(53, 147); + this.wAttackTrackBar.Margin = new System.Windows.Forms.Padding(4); + this.wAttackTrackBar.Maximum = 50; + this.wAttackTrackBar.Minimum = 0; + this.wAttackTrackBar.Name = "wAttackTrackBar"; + this.wAttackTrackBar.Size = new System.Drawing.Size(92, 16); + this.wAttackTrackBar.TabIndex = 78; + this.wAttackTrackBar.TickColor = System.Drawing.Color.Orange; + this.wAttackTrackBar.Ticks = 0; + this.wAttackTrackBar.ToolTip = null; + this.wAttackTrackBar.Value = 10; + this.wAttackTrackBar.ValueChanged += new System.EventHandler(this.wAttackTrackBar_ValueChanged); + // + // labFftAverage + // + this.labFftAverage.ForeColor = System.Drawing.Color.CornflowerBlue; + this.labFftAverage.Location = new System.Drawing.Point(0, 231); + this.labFftAverage.Name = "labFftAverage"; + this.labFftAverage.Size = new System.Drawing.Size(59, 19); + this.labFftAverage.TabIndex = 96; + this.labFftAverage.Text = "FFT aver."; + // + // sDecayTrackBar + // + this.sDecayTrackBar.Button = false; + this.sDecayTrackBar.Checked = false; + this.sDecayTrackBar.ColorFactor = 0.55F; + this.sDecayTrackBar.ForeColor = System.Drawing.Color.Black; + this.sDecayTrackBar.Location = new System.Drawing.Point(53, 121); + this.sDecayTrackBar.Margin = new System.Windows.Forms.Padding(4); + this.sDecayTrackBar.Maximum = 50; + this.sDecayTrackBar.Minimum = 0; + this.sDecayTrackBar.Name = "sDecayTrackBar"; + this.sDecayTrackBar.Size = new System.Drawing.Size(92, 16); + this.sDecayTrackBar.TabIndex = 77; + this.sDecayTrackBar.TickColor = System.Drawing.Color.Orange; + this.sDecayTrackBar.Ticks = 0; + this.sDecayTrackBar.ToolTip = null; + this.sDecayTrackBar.Value = 10; + this.sDecayTrackBar.ValueChanged += new System.EventHandler(this.sDecayTrackBar_ValueChanged); + // + // sAttackTrackBar + // + this.sAttackTrackBar.Button = false; + this.sAttackTrackBar.Checked = false; + this.sAttackTrackBar.ColorFactor = 0.55F; + this.sAttackTrackBar.ForeColor = System.Drawing.Color.Black; + this.sAttackTrackBar.Location = new System.Drawing.Point(53, 100); + this.sAttackTrackBar.Margin = new System.Windows.Forms.Padding(4); + this.sAttackTrackBar.Maximum = 50; + this.sAttackTrackBar.Minimum = 0; + this.sAttackTrackBar.Name = "sAttackTrackBar"; + this.sAttackTrackBar.Size = new System.Drawing.Size(92, 15); + this.sAttackTrackBar.TabIndex = 76; + this.sAttackTrackBar.TickColor = System.Drawing.Color.Orange; + this.sAttackTrackBar.Ticks = 0; + this.sAttackTrackBar.ToolTip = null; + this.sAttackTrackBar.Value = 10; + this.sAttackTrackBar.ValueChanged += new System.EventHandler(this.sAttackTrackBar_ValueChanged); + // + // label23 + // + this.label23.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label23.Location = new System.Drawing.Point(0, 101); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(48, 14); + this.label23.TabIndex = 23; + this.label23.Text = "SA att."; + // + // label26 + // + this.label26.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label26.Location = new System.Drawing.Point(0, 149); + this.label26.Name = "label26"; + this.label26.Size = new System.Drawing.Size(59, 15); + this.label26.TabIndex = 25; + this.label26.Text = "WF att."; + // + // label24 + // + this.label24.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label24.Location = new System.Drawing.Point(0, 121); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(49, 14); + this.label24.TabIndex = 24; + this.label24.Text = "decay"; + // + // label25 + // + this.label25.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label25.Location = new System.Drawing.Point(0, 172); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(59, 15); + this.label25.TabIndex = 26; + this.label25.Text = "decay"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label4.Location = new System.Drawing.Point(1, 23); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(54, 13); + this.label4.TabIndex = 123; + this.label4.Text = "Waterfall"; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label21.Location = new System.Drawing.Point(0, 200); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(49, 13); + this.label21.TabIndex = 18; + this.label21.Text = "Resolut."; + // + // label13 + // + this.label13.AutoSize = true; + this.label13.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label13.Location = new System.Drawing.Point(92, 36); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(38, 13); + this.label13.TabIndex = 129; + this.label13.Text = "Audio"; + // + // scrollPanel + // + this.scrollPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left))); + this.scrollPanel.AutoScroll = true; + this.scrollPanel.Controls.Add(this.pnlScroll); + this.scrollPanel.Controls.Add(this.controlPanel); + this.scrollPanel.Location = new System.Drawing.Point(7, 68); + this.scrollPanel.Name = "scrollPanel"; + this.scrollPanel.Size = new System.Drawing.Size(227, 689); + this.scrollPanel.TabIndex = 28; + // + // pnlScroll + // + this.pnlScroll.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left))); + this.pnlScroll.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32))))); + this.pnlScroll.Controls.Add(this.gThumb); + this.pnlScroll.Location = new System.Drawing.Point(203, 7017); + this.pnlScroll.Name = "pnlScroll"; + this.pnlScroll.Size = new System.Drawing.Size(13, 56075); + this.pnlScroll.TabIndex = 26; + this.pnlScroll.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pnlScroll_MouseDown); + // + // gThumb + // + this.gThumb.Arrow = 5; + this.gThumb.Checked = false; + this.gThumb.Edge = 0.01F; + this.gThumb.EndColor = System.Drawing.Color.LightGray; + this.gThumb.EndFactor = 0.45F; + this.gThumb.Location = new System.Drawing.Point(1, 0); + this.gThumb.Name = "gThumb"; + this.gThumb.NoBorder = true; + this.gThumb.NoLed = true; + this.gThumb.RadioButton = false; + this.gThumb.Radius = 1; + this.gThumb.RadiusB = 0; + this.gThumb.Size = new System.Drawing.Size(11, 100); + this.gThumb.StartColor = System.Drawing.Color.Black; + this.gThumb.StartFactor = 0.45F; + this.gThumb.TabIndex = 0; + this.gThumb.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gThumb_MouseDown); + this.gThumb.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gThumb_MouseMove); + this.gThumb.MouseUp += new System.Windows.Forms.MouseEventHandler(this.gThumb_MouseUp); + // + // labBandWidth + // + this.labBandWidth.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.labBandWidth.AutoSize = true; + this.labBandWidth.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labBandWidth.ForeColor = System.Drawing.Color.CornflowerBlue; + this.labBandWidth.Location = new System.Drawing.Point(783, 14); + this.labBandWidth.Name = "labBandWidth"; + this.labBandWidth.Size = new System.Drawing.Size(25, 13); + this.labBandWidth.TabIndex = 45; + this.labBandWidth.Text = "BW"; + this.labBandWidth.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label37 + // + this.label37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.label37.AutoSize = true; + this.label37.ForeColor = System.Drawing.Color.CornflowerBlue; + this.label37.Location = new System.Drawing.Point(1073, 14); + this.label37.Name = "label37"; + this.label37.Size = new System.Drawing.Size(38, 13); + this.label37.TabIndex = 101; + this.label37.Text = "Spect."; + // + // labSpectrum + // + this.labSpectrum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labSpectrum.ForeColor = System.Drawing.Color.RoyalBlue; + this.labSpectrum.Location = new System.Drawing.Point(1113, 12); + this.labSpectrum.Margin = new System.Windows.Forms.Padding(4); + this.labSpectrum.Name = "labSpectrum"; + this.labSpectrum.Size = new System.Drawing.Size(59, 20); + this.labSpectrum.TabIndex = 108; + this.labSpectrum.Text = "250 Khz"; + // + // tbIntensityWv + // + this.tbIntensityWv.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.tbIntensityWv.Button = false; + this.tbIntensityWv.Checked = false; + this.tbIntensityWv.ColorFactor = 0.5F; + this.tbIntensityWv.Location = new System.Drawing.Point(1259, 492); + this.tbIntensityWv.Margin = new System.Windows.Forms.Padding(4); + this.tbIntensityWv.Maximum = -60; + this.tbIntensityWv.Minimum = -160; + this.tbIntensityWv.Name = "tbIntensityWv"; + this.tbIntensityWv.Size = new System.Drawing.Size(17, 68); + this.tbIntensityWv.TabIndex = 104; + this.tbIntensityWv.Tag = "Waterfall intensity"; + this.tbIntensityWv.TickColor = System.Drawing.Color.Orange; + this.tbIntensityWv.Ticks = 0; + this.tbIntensityWv.ToolTip = null; + this.tbIntensityWv.Value = -100; + this.tbIntensityWv.Visible = false; + this.tbIntensityWv.ValueChanged += new System.EventHandler(this.tbIntensityWv_Changed); + // + // fftZoomTrackBar + // + this.fftZoomTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.fftZoomTrackBar.Button = false; + this.fftZoomTrackBar.Checked = false; + this.fftZoomTrackBar.ColorFactor = 0.5F; + this.fftZoomTrackBar.Location = new System.Drawing.Point(981, 11); + this.fftZoomTrackBar.Margin = new System.Windows.Forms.Padding(4); + this.fftZoomTrackBar.Maximum = 50; + this.fftZoomTrackBar.Minimum = 0; + this.fftZoomTrackBar.Name = "fftZoomTrackBar"; + this.fftZoomTrackBar.Size = new System.Drawing.Size(65, 18); + this.fftZoomTrackBar.TabIndex = 96; + this.fftZoomTrackBar.TickColor = System.Drawing.Color.Orange; + this.fftZoomTrackBar.Ticks = 0; + this.fftZoomTrackBar.ToolTip = null; + this.fftZoomTrackBar.Value = 0; + this.fftZoomTrackBar.Visible = false; + this.fftZoomTrackBar.ValueChanged += new System.EventHandler(this.fftZoomTrackBar_ValueChanged); + // + // chkScrollPanel + // + this.chkScrollPanel.AllowShowFocusCues = false; + this.chkScrollPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.chkScrollPanel.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkScrollPanel.DisplayStyle = Telerik.WinControls.DisplayStyle.Text; + this.chkScrollPanel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold); + this.chkScrollPanel.ForeColor = System.Drawing.Color.CornflowerBlue; + this.chkScrollPanel.Location = new System.Drawing.Point(9, 13); + this.chkScrollPanel.Margin = new System.Windows.Forms.Padding(0); + this.chkScrollPanel.Name = "chkScrollPanel"; + // + // + // + this.chkScrollPanel.RootElement.EnableFocusBorderAnimation = false; + this.chkScrollPanel.RootElement.FocusBorderWidth = 0; + this.chkScrollPanel.Size = new System.Drawing.Size(62, 16); + this.chkScrollPanel.TabIndex = 110; + this.chkScrollPanel.Text = "SideBar"; + this.chkScrollPanel.ThemeName = "VisualStudio2012Dark"; + this.chkScrollPanel.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On; + this.chkScrollPanel.UseMnemonic = false; + this.chkScrollPanel.CheckStateChanged += new System.EventHandler(this.chkScrollPanel_CheckedChanged); + ((Telerik.WinControls.UI.RadCheckBoxElement)(this.chkScrollPanel.GetChildAt(0))).ToggleState = Telerik.WinControls.Enumerations.ToggleState.On; + ((Telerik.WinControls.UI.RadCheckBoxElement)(this.chkScrollPanel.GetChildAt(0))).DisplayStyle = Telerik.WinControls.DisplayStyle.Text; + ((Telerik.WinControls.UI.RadCheckBoxElement)(this.chkScrollPanel.GetChildAt(0))).Text = "SideBar"; + ((Telerik.WinControls.UI.RadCheckBoxElement)(this.chkScrollPanel.GetChildAt(0))).FocusBorderWidth = 0; + ((Telerik.WinControls.UI.RadCheckBoxElement)(this.chkScrollPanel.GetChildAt(0))).EnableFocusBorderAnimation = false; + ((Telerik.WinControls.UI.RadCheckmark)(this.chkScrollPanel.GetChildAt(0).GetChildAt(1).GetChildAt(1))).FocusBorderWidth = 0; + ((Telerik.WinControls.UI.RadCheckmark)(this.chkScrollPanel.GetChildAt(0).GetChildAt(1).GetChildAt(1))).EnableFocusBorderAnimation = false; + ((Telerik.WinControls.Primitives.BorderPrimitive)(this.chkScrollPanel.GetChildAt(0).GetChildAt(2))).Width = 0F; + ((Telerik.WinControls.Primitives.BorderPrimitive)(this.chkScrollPanel.GetChildAt(0).GetChildAt(2))).LeftWidth = 0F; + ((Telerik.WinControls.Primitives.BorderPrimitive)(this.chkScrollPanel.GetChildAt(0).GetChildAt(2))).TopWidth = 0F; + ((Telerik.WinControls.Primitives.BorderPrimitive)(this.chkScrollPanel.GetChildAt(0).GetChildAt(2))).RightWidth = 0F; + ((Telerik.WinControls.Primitives.BorderPrimitive)(this.chkScrollPanel.GetChildAt(0).GetChildAt(2))).BottomWidth = 0F; + ((Telerik.WinControls.Primitives.BorderPrimitive)(this.chkScrollPanel.GetChildAt(0).GetChildAt(2))).AutoSize = true; + ((Telerik.WinControls.Primitives.BorderPrimitive)(this.chkScrollPanel.GetChildAt(0).GetChildAt(2))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed; + // + // gButton1 + // + this.gButton1.Arrow = 0; + this.gButton1.Checked = false; + this.gButton1.Edge = 0.15F; + this.gButton1.EndColor = System.Drawing.Color.White; + this.gButton1.EndFactor = 0.2F; + this.gButton1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold); + this.gButton1.ForeColor = System.Drawing.Color.CornflowerBlue; + this.gButton1.Location = new System.Drawing.Point(1420, 10); + this.gButton1.Name = "gButton1"; + this.gButton1.NoBorder = false; + this.gButton1.NoLed = true; + this.gButton1.RadioButton = false; + this.gButton1.Radius = 6; + this.gButton1.RadiusB = 0; + this.gButton1.Size = new System.Drawing.Size(58, 20); + this.gButton1.StartColor = System.Drawing.Color.Black; + this.gButton1.StartFactor = 0.35F; + this.gButton1.TabIndex = 112; + this.gButton1.Text = "About"; + this.gButton1.CheckedChanged += new System.EventHandler(this.gButton1_CheckedChanged); + // + // MainForm + // + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.ClientSize = new System.Drawing.Size(1284, 763); + this.Controls.Add(this.gButton1); + this.Controls.Add(this.chkScrollPanel); + this.Controls.Add(this.labSpectrum); + this.Controls.Add(this.audioButton); + this.Controls.Add(this.panSplitContainer); + this.Controls.Add(this.playBar); + this.Controls.Add(this.labSpeed); + this.Controls.Add(this.fftSpeedTrackBar); + this.Controls.Add(this.tbIntensityWv); + this.Controls.Add(this.tbFloorSA); + this.Controls.Add(this.tbSpanSA); + this.Controls.Add(this.label29); + this.Controls.Add(this.tbContrastWv); + this.Controls.Add(this.labInt); + this.Controls.Add(this.label37); + this.Controls.Add(this.labCon); + this.Controls.Add(this.gBsetScale); + this.Controls.Add(this.label32); + this.Controls.Add(this.fftZoomCombo); + this.Controls.Add(this.label30); + this.Controls.Add(this.scrollPanel); + this.Controls.Add(this.frequencyNumericUpDown); + this.Controls.Add(this.chkLock); + this.Controls.Add(this.cmbBandWidth); + this.Controls.Add(this.labBandWidth); + this.Controls.Add(this.iqSourceComboBox); + this.Controls.Add(this.playStopButton); + this.Controls.Add(this.configureSourceButton); + this.Controls.Add(this.fftZoomTrackBar); + this.Controls.Add(this.audioGainTrackBar); + this.Controls.Add(this.labZoom); + this.Controls.Add(this.label17); + this.HelpButton = true; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.KeyPreview = true; + this.MinimumSize = new System.Drawing.Size(500, 300); + this.Name = "MainForm"; + // + // + // + this.RootElement.ApplyShapeToControl = true; + this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; + this.Text = "SDRSharper Revised"; + this.ThemeName = "VisualStudio2012Dark"; + this.Activated += new System.EventHandler(this.MainForm_Activated); + this.Closing += new System.ComponentModel.CancelEventHandler(this.MainForm_Closing); + this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); + this.Load += new System.EventHandler(this.MainForm_Load); + this.Shown += new System.EventHandler(this.MainForm_Shown); + this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown); + this.Move += new System.EventHandler(this.MainForm_Move); + this.Resize += new System.EventHandler(this.MainForm_Resize); + this.panSplitContainer.Panel1.ResumeLayout(false); + this.panSplitContainer.Panel2.ResumeLayout(false); + this.panSplitContainer.Panel2.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer)).EndInit(); + this.panSplitContainer.ResumeLayout(false); + this.panSplitContainer2.Panel1.ResumeLayout(false); + this.panSplitContainer2.Panel1.PerformLayout(); + this.panSplitContainer2.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer2)).EndInit(); + this.panSplitContainer2.ResumeLayout(false); + this.panSplitContainer3.Panel1.ResumeLayout(false); + this.panSplitContainer3.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer3)).EndInit(); + this.panSplitContainer3.ResumeLayout(false); + this.panSplitContainer4.Panel1.ResumeLayout(false); + this.panSplitContainer4.Panel2.ResumeLayout(false); + this.panSplitContainer4.Panel2.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer4)).EndInit(); + this.panSplitContainer4.ResumeLayout(false); + this.panSplitContainer5.Panel1.ResumeLayout(false); + this.panSplitContainer5.Panel1.PerformLayout(); + this.panSplitContainer5.Panel2.ResumeLayout(false); + this.panSplitContainer5.Panel2.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.panSplitContainer5)).EndInit(); + this.panSplitContainer5.ResumeLayout(false); + this.panelAG.ResumeLayout(false); + this.panelAG.PerformLayout(); + this.MnuSA.ResumeLayout(false); + this.controlPanel.ResumeLayout(false); + this.AdvancedCollapsiblePanel.ResumeLayout(false); + this.AdvancedCollapsiblePanel.PerformLayout(); + this.radioCollapsiblePanel.ResumeLayout(false); + this.radioCollapsiblePanel.PerformLayout(); + this.panel1.ResumeLayout(false); + this.scopeCollapsiblePanel.ResumeLayout(false); + this.scopeCollapsiblePanel.PerformLayout(); + this.audioCollapsiblePanel.ResumeLayout(false); + this.audioCollapsiblePanel.PerformLayout(); + this.agcCollapsiblePanel.ResumeLayout(false); + this.panel2.ResumeLayout(false); + this.panel2.PerformLayout(); + this.displayCollapsiblePanel.ResumeLayout(false); + this.displayCollapsiblePanel.PerformLayout(); + this.scrollPanel.ResumeLayout(false); + this.scrollPanel.PerformLayout(); + this.pnlScroll.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.chkScrollPanel)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + private global::System.ComponentModel.IContainer components; + private global::System.Windows.Forms.OpenFileDialog openDlg; + private global::SDRSharp.PanView.SpectrumAnalyzer spectrumAnalyzer; + private global::SDRSharp.PanView.Waterfall waterfall; + private global::System.Windows.Forms.Label label12; + private global::System.Windows.Forms.Label label11; + private global::System.Windows.Forms.Label labSampling; + private global::System.Windows.Forms.SplitContainer panSplitContainer; + private global::System.Windows.Forms.Label label8; + private global::System.Windows.Forms.Timer iqTimer; + private global::System.Windows.Forms.Label labZoom; + private global::System.Windows.Forms.Label label21; + private global::System.Windows.Forms.Label label22; + private global::System.Windows.Forms.Label label1; + private global::System.Windows.Forms.Label label16; + private global::System.Windows.Forms.Label label5; + private global::SDRSharp.CollapsiblePanel.CollapsiblePanel radioCollapsiblePanel; + private global::SDRSharp.CollapsiblePanel.CollapsiblePanel audioCollapsiblePanel; + private global::SDRSharp.CollapsiblePanel.CollapsiblePanel agcCollapsiblePanel; + private global::SDRSharp.CollapsiblePanel.CollapsiblePanel displayCollapsiblePanel; + private global::System.Windows.Forms.Label label6; + private global::System.Windows.Forms.Label label15; + private global::System.Windows.Forms.Panel controlPanel; + private global::System.Windows.Forms.Label label25; + private global::System.Windows.Forms.Label label26; + private global::System.Windows.Forms.Label label24; + private global::System.Windows.Forms.Label label23; + private global::System.Windows.Forms.Panel scrollPanel; + private global::System.Windows.Forms.Label label29; + private global::System.Windows.Forms.Label label30; + private global::System.Windows.Forms.Label labInt; + private global::System.Windows.Forms.Label labCon; + private global::System.Windows.Forms.Label label31; + private global::System.Windows.Forms.Label label32; + private global::System.Windows.Forms.Label label17; + private global::System.Windows.Forms.Label labBandWidth; + private global::System.Windows.Forms.Label label34; + private global::System.Windows.Forms.Label label35; + private global::System.Windows.Forms.Label label36; + private global::SDRSharp.PanView.Scope scope; + private global::SDRSharp.CollapsiblePanel.CollapsiblePanel scopeCollapsiblePanel; + private global::System.Windows.Forms.Label label27; + private global::System.Windows.Forms.Label labTbGain; + private global::System.Windows.Forms.Label labTbAverage; + private global::System.Windows.Forms.Label label28; + private global::System.Windows.Forms.Label labSpeed; + private global::SDRSharp.PanView.Indicator frequencyNumericUpDown; + private global::System.Windows.Forms.ContextMenuStrip MnuSA; + private global::System.Windows.Forms.ToolStripMenuItem mnuVfoA; + private global::System.Windows.Forms.ToolStripMenuItem mnuVfoB; + private global::System.Windows.Forms.ToolStripMenuItem mnuVfoC; + private global::System.Windows.Forms.ToolStripSeparator toolStripSeparator2; + private global::System.Windows.Forms.ToolStripMenuItem mnuStationList; + private global::System.Windows.Forms.ToolStripMenuItem mnuAutoScale; + private global::System.Windows.Forms.Label label20; + private global::System.Windows.Forms.Label label9; + private global::System.Windows.Forms.Label label2; + private global::System.Windows.Forms.Label label33; + private global::System.Windows.Forms.Label label39; + private global::SDRSharp.Controls.gButton playStopButton; + private global::SDRSharp.Controls.gSliderH tbRFgain; + private global::SDRSharp.Controls.gButton configureSourceButton; + private global::SDRSharp.Controls.gCombo iqSourceComboBox; + private global::SDRSharp.Controls.gButton chkLock; + private global::SDRSharp.Controls.gCombo cmbBandWidth; + private global::SDRSharp.Controls.gSliderH audioGainTrackBar; + private global::SDRSharp.Controls.gButton amRadioButton; + private global::SDRSharp.Controls.gButton dsbRadioButton; + private global::SDRSharp.Controls.gCombo cmbCenterStep; + private global::SDRSharp.Controls.gCombo stepSizeComboBox; + private global::SDRSharp.Controls.gButton wfmRadioButton; + private global::SDRSharp.Controls.gButton nfmRadioButton; + private global::SDRSharp.Controls.gButton rawRadioButton; + private global::SDRSharp.Controls.gButton usbRadioButton; + private global::SDRSharp.Controls.gButton cwRadioButton; + private global::SDRSharp.Controls.gButton lsbRadioButton; + private global::SDRSharp.Controls.gButton swapIQCheckBox; + private global::SDRSharp.Controls.gSliderH fftZoomTrackBar; + private global::SDRSharp.Controls.gButton chkVinvert; + private global::SDRSharp.Controls.gCombo cmbTim; + private global::SDRSharp.Controls.gCombo cmbHor; + private global::SDRSharp.Controls.gCombo cmbVer; + private global::SDRSharp.Controls.gButton chkXY; + private global::SDRSharp.Controls.gCombo cmbHchannel; + private global::SDRSharp.Controls.gCombo cmbVchannel; + private global::SDRSharp.Controls.gButton chkHrunDC; + private global::SDRSharp.Controls.gButton chkVrunDC; + private global::SDRSharp.Controls.gButton chkHinvert; + private global::System.Windows.Forms.Panel pnlScroll; + private global::SDRSharp.Controls.gButton gThumb; + private global::SDRSharp.Controls.gSliderV tbFloorSA; + private global::SDRSharp.Controls.gSliderV tbSpanSA; + private global::SDRSharp.Controls.gSliderV fftSpeedTrackBar; + private global::SDRSharp.Controls.gSliderV tbIntensityWv; + private global::SDRSharp.Controls.gSliderV tbContrastWv; + private global::SDRSharp.Controls.gCombo filterTypeComboBox; + private global::SDRSharp.Controls.gCombo outputDeviceComboBox; + private global::SDRSharp.Controls.gCombo inputDeviceComboBox; + private global::SDRSharp.Controls.gCombo sampleRateComboBox; + private global::SDRSharp.Controls.gButton chkNotch3; + private global::SDRSharp.Controls.gButton chkNotch2; + private global::SDRSharp.Controls.gButton chkNotch1; + private global::SDRSharp.Controls.gButton chkNotch0; + private global::SDRSharp.Controls.gButton chkAver; + private global::SDRSharp.Controls.gButton fmStereoCheckBox; + private global::SDRSharp.Controls.gButton filterAudioCheckBox; + private global::SDRSharp.Controls.gButton chkFastConv; + private global::SDRSharp.Controls.gButton chk1; + private global::SDRSharp.Controls.gUpDown latencyNumericUpDown; + private global::SDRSharp.Controls.gUpDown cwShiftNumericUpDown; + private global::SDRSharp.Controls.gUpDown filterOrderNumericUpDown; + private global::SDRSharp.Controls.gUpDown filterBandwidthNumericUpDown; + private global::SDRSharp.Controls.gButton agcUseHangCheckBox; + private global::SDRSharp.Controls.gUpDown agcSlopeNumericUpDown; + private global::SDRSharp.Controls.gSliderH tbNLTreshold; + private global::SDRSharp.Controls.gSliderH tbNLRatio; + private global::SDRSharp.Controls.gButton chkNLimiter; + private global::SDRSharp.Controls.gSliderH sAttackTrackBar; + private global::SDRSharp.Controls.gUpDown frequencyShiftNumericUpDown; + private global::SDRSharp.Controls.gButton frequencyShiftCheckBox; + private global::SDRSharp.Controls.gButton gradientButtonSA; + private global::SDRSharp.Controls.gButton useTimestampsCheckBox; + private global::SDRSharp.Controls.gButton chkIndepSideband; + private global::SDRSharp.Controls.gButton correctIQCheckBox; + private global::SDRSharp.Controls.gSliderH wDecayTrackBar; + private global::SDRSharp.Controls.gSliderH wAttackTrackBar; + private global::SDRSharp.Controls.gSliderH sDecayTrackBar; + private global::SDRSharp.Controls.gSliderH tbTrigL; + private global::SDRSharp.Controls.gCombo fftWindowComboBox; + private global::SDRSharp.Controls.gCombo fftResolutionComboBox; + private global::SDRSharp.Controls.gSliderH tbGain; + private global::SDRSharp.Controls.gSliderH tbAverage; + private global::SDRSharp.Controls.gSliderV tbvPeakDelay; + private global::SDRSharp.Controls.gSliderV tbvAudioAvg; + private global::SDRSharp.Controls.gSliderV tbvAudioRel; + private global::SDRSharp.Controls.gSliderV tbvCarrierAvg; + private global::System.Windows.Forms.Label label43; + private global::System.Windows.Forms.Label label42; + private global::System.Windows.Forms.Label label41; + private global::System.Windows.Forms.Label label40; + private global::System.Windows.Forms.Label label19; + private global::SDRSharp.Controls.gSliderV tbvPeakRel; + private global::System.Windows.Forms.Label label48; + private global::System.Windows.Forms.Label label47; + private global::System.Windows.Forms.Label label46; + private global::System.Windows.Forms.Label label45; + private global::System.Windows.Forms.Label labFast; + private global::SDRSharp.Controls.gButton gBexpandScope; + private global::SDRSharp.Controls.gButton gBsetScale; + private global::System.Windows.Forms.SplitContainer panSplitContainer2; + private global::SDRSharp.PanView.Waterfall audiogram; + private global::SDRSharp.Controls.gSliderV tbContrastAg; + private global::SDRSharp.Controls.gSliderV tbIntensityAg; + private global::SDRSharp.Controls.gSliderV tbAgSpeed; + private global::System.Windows.Forms.Label label49; + private global::System.Windows.Forms.Label label44; + private global::System.Windows.Forms.Label label50; + private global::System.Windows.Forms.Label label51; + private global::System.Windows.Forms.ToolStripMenuItem mnuSetNotch; + private global::System.Windows.Forms.ToolStripMenuItem MnuClearNotch; + private global::SDRSharp.PanView.Scope wideScope; + private global::System.Windows.Forms.Panel panelAG; + private global::System.Windows.Forms.Label label53; + private global::System.Windows.Forms.Label label56; + private global::System.Windows.Forms.Label agcDecayLabel; + private global::SDRSharp.Controls.gSliderH agcDecayNumericUpDown; + private global::SDRSharp.Controls.gUpDown agcThresholdNumericUpDown; + private global::System.Windows.Forms.Label labNLTreshold; + private global::System.Windows.Forms.Label labNLRatio; + private global::SDRSharp.CollapsiblePanel.CollapsiblePanel AdvancedCollapsiblePanel; + private global::System.Windows.Forms.Panel panel2; + private global::SDRSharp.Controls.gUpDown dbmOffsetUpDown; + private global::System.Windows.Forms.Label labSmeter; + private global::System.Windows.Forms.Label labFftAverage; + private global::SDRSharp.Controls.gButton btnShowLog; + private global::System.Windows.Forms.SplitContainer panSplitContainer3; + private global::SDRSharp.PanView.SpectrumAnalyzer ifAnalyzer; + private global::SDRSharp.Controls.gButton chkIF; + private global::SDRSharp.Controls.gButton chkWF; + private global::System.Windows.Forms.Label label4; + private global::System.Windows.Forms.Label label7; + private global::System.Windows.Forms.Label label54; + private global::System.Windows.Forms.Label label55; + private global::SDRSharp.Controls.gCombo fftZoomCombo; + private global::SDRSharp.PanView.SpectrumAnalyzer afAnalyzer; + private global::SDRSharp.Controls.gCombo cmbAudio; + private global::System.Windows.Forms.Label label13; + private global::System.Windows.Forms.ToolStripMenuItem setColoursToolStripMenuItem; + private global::System.Windows.Forms.ToolStripSeparator toolStripSeparator4; + private global::System.Windows.Forms.ToolStripMenuItem mnuShowWaterfall; + private global::System.Windows.Forms.ToolStripMenuItem mnuShowBaseband; + private global::System.Windows.Forms.ToolStripSeparator toolStripSeparator3; + private global::System.Windows.Forms.ToolStripSeparator toolStripSeparator1; + private global::SDRSharp.Controls.gButton samRadioButton; + private global::SDRSharp.Controls.gCombo cmbDbm; + private global::SDRSharp.Controls.gUpDown squelchNumericUpDown; + private global::SDRSharp.Controls.gButton snapFrequencyCheckBox; + private global::SDRSharp.Controls.gButton useSquelchCheckBox; + private global::SDRSharp.Controls.gButton agcCheckBox; + private global::System.Windows.Forms.Panel panel1; + private global::SDRSharp.Controls.gButton butVfoC; + private global::SDRSharp.Controls.gButton butVfoB; + private global::SDRSharp.Controls.gButton butVfoA; + private global::System.Windows.Forms.Label label38; + private global::System.Windows.Forms.Label label37; + private global::SDRSharp.Controls.gButton gBexpand; + private global::System.Windows.Forms.ToolTip toolTip; + private global::SDRSharp.Controls.gCombo bftResolutionComboBox; + private global::System.Windows.Forms.Label label59; + private global::System.Windows.Forms.Label label58; + private global::System.Windows.Forms.Label label57; + private global::System.Windows.Forms.Label label52; + private global::SDRSharp.Controls.gButton chkBaseBand; + private global::SDRSharp.Controls.gUpDown centerFreqNumericUpDown; + private global::SDRSharp.Controls.gUpDown fftAverageUpDown; + private global::SDRSharp.Controls.gButton chkAutoSize; + private global::SDRSharp.Controls.gProgress playBar; + private global::System.Windows.Forms.Label label60; + private global::SDRSharp.Controls.gButton markPeaksCheckBox; + private global::System.Windows.Forms.Label labProcessTmr; + private global::System.Windows.Forms.Label labPerformTmr; + private global::System.Windows.Forms.Label labFftTmr; + private global::SDRSharp.Controls.gLabel labCPU; + private global::SDRSharp.Controls.gLabel labSpectrum; + private global::System.Windows.Forms.SplitContainer panSplitContainer4; + private global::SDRSharp.PanView.Waterfall ifWaterfall; + private global::System.Windows.Forms.SplitContainer panSplitContainer5; + private global::SDRSharp.PanView.Waterfall afWaterfall; + private global::System.Windows.Forms.ToolStripMenuItem mnuShowAudio; + private global::System.Windows.Forms.ToolStripMenuItem mnuShowAudiogram; + private global::System.Windows.Forms.ToolStripMenuItem mnuShowEnvelope; + private global::SDRSharp.Controls.gButton fastFftCheckBox; + private global::SDRSharp.Radio.BarMeter barMeter; + private global::SDRSharp.Controls.gButton audioButton; + private global::SDRSharp.Controls.gSliderH remDcSlider; + private global::System.Windows.Forms.Label label3; + private Telerik.WinControls.RadThemeManager radThemeManager1; + private Telerik.WinControls.Themes.VisualStudio2012DarkTheme visualStudio2012DarkTheme1; + private Telerik.WinControls.UI.RadCheckBox chkScrollPanel; + private Controls.gButton gButton1; + } +} diff --git a/SDRSharper/MainForm.cs b/SDRSharper/MainForm.cs new file mode 100644 index 0000000..3c324fe --- /dev/null +++ b/SDRSharper/MainForm.cs @@ -0,0 +1,5605 @@ +//Remember to double-check reference version - VS2017 doesn't do a good job of it when changing builds +using System; +using System.Collections.Generic; +using System.Collections.Specialized; +using System.ComponentModel; +using System.Configuration; +using System.Diagnostics; +using System.Drawing; +using System.Drawing.Drawing2D; +using System.Globalization; +using System.IO; +using System.Reflection; +using System.Runtime.Remoting; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading; +using System.Windows.Forms; +using System.Xml.Serialization; +using SDRSharp.CollapsiblePanel; +using SDRSharp.Common; +using SDRSharp.Controls; +using SDRSharp.PanView; +using SDRSharp.Radio; +using SDRSharp.Radio.PortAudio; + +namespace SDRSharp +{ + public partial class MainForm : Telerik.WinControls.UI.RadForm, ISharpControl, INotifyPropertyChanged + { + #region [Misc] + public static Assembly UnmanagedDLLAssemblyVer = Assembly.GetExecutingAssembly(); + + public event PropertyChangedEventHandler PropertyChanged; + + public DetectorType DetectorType + { + get + { + return this._vfo.DetectorType; + } + set + { + switch (value) + { + case DetectorType.NFM: + this.nfmRadioButton.Checked = true; + return; + case DetectorType.WFM: + this.wfmRadioButton.Checked = true; + return; + case DetectorType.AM: + this.amRadioButton.Checked = true; + return; + case DetectorType.DSB: + this.dsbRadioButton.Checked = true; + return; + case DetectorType.LSB: + this.lsbRadioButton.Checked = true; + return; + case DetectorType.USB: + this.usbRadioButton.Checked = true; + return; + case DetectorType.CW: + this.cwRadioButton.Checked = true; + return; + case DetectorType.RAW: + this.rawRadioButton.Checked = true; + return; + case DetectorType.SAM: + this.samRadioButton.Checked = true; + return; + default: + return; + } + } + } + + public WindowType FilterType + { + get + { + return this.filterTypeComboBox.SelectedIndex + WindowType.Hamming; + } + set + { + this.filterTypeComboBox.SelectedIndex = value - WindowType.Hamming; + } + } + + public bool IsPlaying + { + get + { + return this._streamControl.IsPlaying; + } + } + + public long Frequency + { + get + { + return (long)this.frequencyNumericUpDown.Value; + } + set + { + this.frequencyNumericUpDown.Value = value; + } + } + + public long CenterFrequency + { + get + { + return this.centerFreqNumericUpDown.Value; + } + set + { + if (this._frontendController != null) + { + this.centerFreqNumericUpDown.Value = value; + this._fftSkipCnt = -2; + return; + } + if (this.SourceIsWaveFile && value >= this.centerFreqNumericUpDown.Value - (decimal)this._streamControl.SampleRate && value <= this.centerFreqNumericUpDown.Value + (decimal)this._streamControl.SampleRate) + { + return; + } + throw new ApplicationException("Cannot set the center frequency when no front end is connected"); + } + } + + public long FrequencyShift + { + get + { + return this.frequencyShiftNumericUpDown.Value; + } + set + { + this.frequencyShiftNumericUpDown.Value = value; + } + } + + public bool FrequencyShiftEnabled + { + get + { + return this.frequencyShiftCheckBox.Checked; + } + set + { + this.frequencyShiftCheckBox.Checked = value; + } + } + + public int FilterBandwidth + { + get + { + return (int)this.filterBandwidthNumericUpDown.Value; + } + set + { + this.filterBandwidthNumericUpDown.Value = (long)value; + } + } + + public int FilterOrder + { + get + { + return (int)this.filterOrderNumericUpDown.Value; + } + set + { + this.filterOrderNumericUpDown.Value = (long)value; + } + } + + public bool SquelchEnabled + { + get + { + return this.useSquelchCheckBox.Checked; + } + set + { + this.useSquelchCheckBox.Checked = value; + } + } + + public int SquelchThreshold + { + get + { + return (int)this.squelchNumericUpDown.Value; + } + set + { + this.squelchNumericUpDown.Value = (long)value; + } + } + + public int CWShift + { + get + { + return (int)this.cwShiftNumericUpDown.Value; + } + set + { + this.cwShiftNumericUpDown.Value = (long)value; + } + } + + public bool SnapToGrid + { + get + { + return this.snapFrequencyCheckBox.Checked; + } + set + { + this.snapFrequencyCheckBox.Checked = value; + } + } + + public bool SwapIq + { + get + { + return this.swapIQCheckBox.Checked; + } + set + { + this.swapIQCheckBox.Checked = value; + } + } + + public bool FmStereo + { + get + { + return this.fmStereoCheckBox.Checked; + } + set + { + this.fmStereoCheckBox.Checked = value; + } + } + + public bool MarkPeaks + { + get + { + return this.markPeaksCheckBox.Checked; + } + set + { + this.markPeaksCheckBox.Checked = value; + } + } + + public int AudioGain + { + get + { + return this.audioGainTrackBar.Value; + } + set + { + this.audioGainTrackBar.Value = value; + } + } + + public bool FilterAudio + { + get + { + return this.filterAudioCheckBox.Checked; + } + set + { + this.filterAudioCheckBox.Checked = value; + } + } + + public bool UseAgc + { + get + { + return this.agcCheckBox.Checked; + } + set + { + this.agcCheckBox.Checked = value; + } + } + + public bool AgcHang + { + get + { + return this.agcUseHangCheckBox.Checked; + } + set + { + this.agcUseHangCheckBox.Checked = value; + } + } + + public int AgcThreshold + { + get + { + return (int)this.agcThresholdNumericUpDown.Value; + } + set + { + this.agcThresholdNumericUpDown.Value = (long)value; + } + } + + public int AgcDecay + { + get + { + return this.agcDecayNumericUpDown.Value; + } + set + { + this.agcDecayNumericUpDown.Value = value; + } + } + + public int AgcSlope + { + get + { + return (int)this.agcSlopeNumericUpDown.Value; + } + set + { + this.agcSlopeNumericUpDown.Value = (long)value; + } + } + + public int SAttack + { + get + { + return this.sAttackTrackBar.Value; + } + set + { + this.sAttackTrackBar.Value = value; + } + } + + public int SDecay + { + get + { + return this.sDecayTrackBar.Value; + } + set + { + this.sDecayTrackBar.Value = value; + } + } + + public int WAttack + { + get + { + return this.wAttackTrackBar.Value; + } + set + { + this.wAttackTrackBar.Value = value; + } + } + + public int WDecay + { + get + { + return this.wDecayTrackBar.Value; + } + set + { + this.wDecayTrackBar.Value = value; + } + } + + public bool UseTimeMarkers + { + get + { + return this.useTimestampsCheckBox.Checked; + } + set + { + this.useTimestampsCheckBox.Checked = value; + } + } + + public string RdsProgramService + { + get + { + return this._vfo.RdsStationName; + } + } + + public string RdsRadioText + { + get + { + return this._vfo.RdsStationText; + } + } + + public int RFBandwidth + { + get + { + return (int)this._vfo.SampleRate; + } + } + + public bool SourceIsWaveFile + { + get + { + return this.iqSourceComboBox.SelectedIndex == this.iqSourceComboBox.Items.Count - 2; + } + } + + public bool IsSquelchOpen + { + get + { + return true; + } + } + + public int FFTResolution + { + get + { + return this._fftBins; + } + } + + public int FFTSkips + { + set + { + this._fftSkips = value; + } + } + #endregion + + #region [MachineType] + public static MachineType GetDllMachineType(string dllPath) + { + //see http://www.microsoft.com/whdc/system/platform/firmware/PECOFF.mspx + //offset to PE header is always at 0x3C + //PE header starts with "PE\0\0" = 0x50 0x45 0x00 0x00 + //followed by 2-byte machine type field (see document above for enum) + FileStream fs = new FileStream(dllPath, FileMode.Open, FileAccess.Read); + BinaryReader br = new BinaryReader(fs); + + fs.Seek(0x3c, SeekOrigin.Begin); + Int32 peOffset = br.ReadInt32(); + fs.Seek(peOffset, SeekOrigin.Begin); + UInt32 peHead = br.ReadUInt32(); + + if (peHead != 0x00004550) // "PE\0\0", little-endian + throw new Exception("Can't find PE header"); + + MachineType machineType = (MachineType)br.ReadUInt16(); + + br.Close(); + fs.Close(); + return machineType; + } + + public enum MachineType : ushort + { + IMAGE_FILE_MACHINE_UNKNOWN = 0x0, + IMAGE_FILE_MACHINE_AM33 = 0x1d3, + IMAGE_FILE_MACHINE_AMD64 = 0x8664, + IMAGE_FILE_MACHINE_ARM = 0x1c0, + IMAGE_FILE_MACHINE_EBC = 0xebc, + IMAGE_FILE_MACHINE_I386 = 0x14c, + IMAGE_FILE_MACHINE_IA64 = 0x200, + IMAGE_FILE_MACHINE_M32R = 0x9041, + IMAGE_FILE_MACHINE_MIPS16 = 0x266, + IMAGE_FILE_MACHINE_MIPSFPU = 0x366, + IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466, + IMAGE_FILE_MACHINE_POWERPC = 0x1f0, + IMAGE_FILE_MACHINE_POWERPCFP = 0x1f1, + IMAGE_FILE_MACHINE_R4000 = 0x166, + IMAGE_FILE_MACHINE_SH3 = 0x1a2, + IMAGE_FILE_MACHINE_SH3DSP = 0x1a3, + IMAGE_FILE_MACHINE_SH4 = 0x1a6, + IMAGE_FILE_MACHINE_SH5 = 0x1a8, + IMAGE_FILE_MACHINE_THUMB = 0x1c2, + IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169, + } + + // returns true if the dll is 64-bit, false if 32-bit, and null if unknown + public static bool? UnmanagedDllIs64Bit(string dllPath) + { + switch (GetDllMachineType(dllPath)) + { + case MachineType.IMAGE_FILE_MACHINE_AMD64: + case MachineType.IMAGE_FILE_MACHINE_IA64: + return true; + case MachineType.IMAGE_FILE_MACHINE_I386: + return false; + default: + return null; + } + } + + public static string getArch() + { + MachineType dlltype = GetDllMachineType(Application.ExecutablePath); + + if (dlltype.Equals(MachineType.IMAGE_FILE_MACHINE_I386)) + { + Console.WriteLine("Dll architecture: x86/32bit"); + arch = "x86"; + } + else if (dlltype.Equals(MachineType.IMAGE_FILE_MACHINE_AMD64)) + { + Console.WriteLine("Dll architecture: x64/64bit"); + arch = "x64"; + } + + return arch; + } + #endregion + + #region [Main/Init] + public unsafe MainForm() + { + this._stopwatch.Start(); + base.SuspendLayout(); + this._iqPtr = (Complex*)this._iqBuffer; + this._afqPtr = (Complex*)this._afqBuffer; + this._ifqPtr = (Complex*)this._ifqBuffer; + this._fftPtr = (Complex*)this._fftBuffer; + this._aftPtr = (Complex*)this._aftBuffer; + this._iftPtr = (Complex*)this._iftBuffer; + this._fftWindowPtr = (float*)this._fftWindow; + this._bftWindowPtr = (float*)this._bftWindow; + this._rfSpectrumPtr = (float*)this._rfSpectrum; + this._rfAveragePtr = (float*)this._rfAverage; + this._afSpectrumPtr = (float*)this._afSpectrum; + this._iftSpectrumPtr = (float*)this._iftSpectrum; + this._scaledRfSpectrumPtr = (byte*)this._scaledRfSpectrum; + this._scaledAfSpectrumPtr = (byte*)this._scaledAfSpectrum; + this._scaledIFTSpectrumPtr = (byte*)this._scaledIFTSpectrum; + GradientDialog.GradientChanged += this.GradientDialog_GradientChanged; + MainForm.loadSettings(); + Utils.Log("Settings loaded", false); + this._streamControl = new StreamControl(); + this._iqBalancer = new IQBalancer(); + this._fractResampler = new FractResampler(); + this._audioDecimator = new FloatDecimator(1); + this._vfoHookManager = new VfoHookManager(); + this._vfo = new Vfo(this._vfoHookManager); + this._vfoHookManager.Vfo = this._vfo; + this.InitializeComponent(); + Utils.Log("Component initialized", false); + this.InitialiseSharpPlugins(); + Utils.Log("Plugins initialized", false); + this.InitializeGUI(); + Utils.Log("GUI initialized", false); + this.barMeter.DrawBackground(0, 1000, 200); + this.scrollPanel.AutoScroll = false; + Console.WriteLine("MainForm constructor " + this._stopwatch.ElapsedMilliseconds + " ms"); + base.ResumeLayout(); + } + + private void MainForm_Load(object sender, EventArgs e) + { + Console.WriteLine("MainForm_Load " + this._stopwatch.ElapsedMilliseconds + " ms"); + int index = Utils.GetIntSetting("iqSource", this.iqSourceComboBox.Items.Count - 1); + this.iqSourceComboBox.SelectedIndex = ((index < this.iqSourceComboBox.Items.Count) ? index : (this.iqSourceComboBox.Items.Count - 1)); + Utils.Log("IQ source selected.", false); + this._formLoaded = true; + base.Size = this._lastSize; + base.Location = this._lastLocation; + this.panSplitContainer.SplitterDistance = Utils.GetIntSetting("splitterPosition", this.panSplitContainer.SplitterDistance); + this.panSplitContainer2.SplitterDistance = Utils.GetIntSetting("splitter2Position", this.panSplitContainer2.SplitterDistance); + this.panSplitContainer3.Panel2MinSize = 150; + this.panSplitContainer3.SplitterDistance = Utils.GetIntSetting("splitter3Position", this.panSplitContainer3.SplitterDistance); + this.panSplitContainer4.SplitterDistance = Utils.GetIntSetting("splitter4Position", this.panSplitContainer4.SplitterDistance); + this.panSplitContainer5.SplitterDistance = Utils.GetIntSetting("splitter5Position", this.panSplitContainer5.SplitterDistance); + Utils.Log("MainForm loaded", false); + } + + private void MainForm_Shown(object sender, EventArgs e) + { + this._stopwatch.Stop(); + Console.WriteLine("MainForm_Shown " + this._stopwatch.ElapsedMilliseconds + " ms"); + if (this.iqSourceComboBox.SelectedItem.ToString().IndexOf("extio", StringComparison.CurrentCultureIgnoreCase) >= 0) + { + this._frontendController.ShowSettingGUI(this); + } + Utils.Log("MainForm shown", false); + } + + private unsafe void InitializeGUI() + { + this._initializing = true; + this.playStopButton.SetColor(Color.Silver); + this._modeStates[DetectorType.AM] = Utils.GetIntArraySetting("stateAM", MainForm._defaultAMState); + this._modeStates[DetectorType.SAM] = Utils.GetIntArraySetting("stateSAM", MainForm._defaultDSBState); + this._modeStates[DetectorType.DSB] = Utils.GetIntArraySetting("stateDSB", MainForm._defaultDSBState); + this._modeStates[DetectorType.LSB] = Utils.GetIntArraySetting("stateLSB", MainForm._defaultSSBState); + this._modeStates[DetectorType.USB] = Utils.GetIntArraySetting("stateUSB", MainForm._defaultSSBState); + this._modeStates[DetectorType.CW] = Utils.GetIntArraySetting("stateCW", MainForm._defaultCWState); + this._modeStates[DetectorType.WFM] = Utils.GetIntArraySetting("stateWFM", MainForm._defaultWFMState); + this._modeStates[DetectorType.NFM] = Utils.GetIntArraySetting("stateNFM", MainForm._defaultNFMState); + this._modeStates[DetectorType.RAW] = Utils.GetIntArraySetting("stateRAW", MainForm._defaultRAWState); + this._inputDevices = AudioDevice.GetDevices(DeviceDirection.Input); + this._outputDevices = AudioDevice.GetDevices(DeviceDirection.Output); + if (this._inputDevices == null) + { + MessageBox.Show("Error setting audiodevices, portaudio.dll missing?"); + Utils.Log("PortAudio.dll missing.", false); + throw new ApplicationException(); + } + int defaultIndex = 0; + int savedIndex = -1; + string savedDeviceName = Utils.GetStringSetting("inputDevice", string.Empty); + for (int i = 0; i < this._inputDevices.Count; i++) + { + Utils.Log(" Audio input device " + this._inputDevices[i].ToString() + " found.", false); + int len = Math.Min(24, this._inputDevices[i].ToString().Length); + this.inputDeviceComboBox.Items.Add(this._inputDevices[i].ToString().Substring(0, len)); + if (this._inputDevices[i].IsDefault) + { + defaultIndex = i; + } + if (this.inputDeviceComboBox.Items[this.inputDeviceComboBox.Items.Count - 1] == savedDeviceName) + { + savedIndex = i; + } + } + if (this.inputDeviceComboBox.Items.Count > 0) + { + this.inputDeviceComboBox.SelectedIndex = ((savedIndex >= 0) ? savedIndex : defaultIndex); + } + defaultIndex = 0; + savedIndex = -1; + savedDeviceName = Utils.GetStringSetting("outputDevice", string.Empty); + for (int j = 0; j < this._outputDevices.Count; j++) + { + Utils.Log(" Audio output device " + this._outputDevices[j].ToString() + " found.", false); + int len2 = Math.Min(24, this._outputDevices[j].ToString().Length); + this.outputDeviceComboBox.Items.Add(this._outputDevices[j].ToString().Substring(0, len2)); + if (this._outputDevices[j].IsDefault) + { + defaultIndex = j; + } + if (this.outputDeviceComboBox.Items[this.outputDeviceComboBox.Items.Count - 1] == savedDeviceName) + { + savedIndex = j; + } + } + if (this.outputDeviceComboBox.Items.Count > 0) + { + this.outputDeviceComboBox.SelectedIndex = ((savedIndex >= 0) ? savedIndex : defaultIndex); + } + this._streamControl.ProcessBufferPtr += this.ProcessBuffer; + if (Utils.Settings.Count == 0) + { + Environment.Exit(1); + } + this.cwShiftNumericUpDown.Value = (long)Utils.GetIntSetting("cwShift", 600); + this.cwShiftNumericUpDown_ValueChanged(null, null); + this.agcCheckBox.Checked = true; + this.agcCheckBox_CheckedChanged(null, null); + this.agcThresholdNumericUpDown.Value = (long)Utils.GetIntSetting("agcThreshold", -100); + this.agcThresholdNumericUpDown_ValueChanged(null, null); + this.agcDecayNumericUpDown.Value = Utils.GetIntSetting("agcDecay", 100); + this.agcDecayNumericUpDown_ValueChanged(null, null); + this.agcSlopeNumericUpDown.Value = (long)Utils.GetIntSetting("agcSlope", 0); + this.agcSlopeNumericUpDown_ValueChanged(null, null); + this.agcUseHangCheckBox.Checked = Utils.GetBooleanSetting("agcHang"); + this.agcUseHangCheckBox_CheckedChanged(null, null); + this.centerFreqNumericUpDown.Value = 0L; + this.centerFreqNumericUpDown_ValueChanged(null, null); + this.snapFrequencyCheckBox.Checked = Utils.GetBooleanSetting("snapToGrid"); + this.swapIQCheckBox.Checked = Utils.GetBooleanSetting("swapIQ"); + this.swapIQCheckBox_CheckedChanged(null, null); + this.correctIQCheckBox.Checked = Utils.GetBooleanSetting("correctIQ"); + this.autoCorrectIQCheckBox_CheckStateChanged(null, null); + this.markPeaksCheckBox.Checked = Utils.GetBooleanSetting("markPeaks"); + this.markPeaksCheckBox_CheckedChanged(null, null); + this.fmStereoCheckBox.Checked = Utils.GetBooleanSetting("fmStereo"); + this.fmStereoCheckBox_CheckedChanged(null, null); + this.audioGainTrackBar.Value = Utils.GetIntSetting("audioGain", 30); + this.audioGainTrackBar_ValueChanged(null, null); + this.fftZoomCombo.SelectedIndex = Utils.GetIntSetting("zoomIndex", 0); + this.latencyNumericUpDown.Value = (long)Utils.GetIntSetting("latency", 100); + base.WindowState = (FormWindowState)Utils.GetIntSetting("windowState", 0); + int left = 0; + foreach (Screen scr in Screen.AllScreens) + { + left = Math.Min(left, scr.Bounds.Left); + } + int[] locationArray = Utils.GetIntArraySetting("windowPosition", null); + this._lastLocation = base.Location; + if (locationArray == null) + { + return; + } + this._lastLocation.X = Math.Max(0, locationArray[0]); + this._lastLocation.Y = Math.Max(0, locationArray[1]); + int[] sizeArray = Utils.GetIntArraySetting("windowSize", null); + this._lastSize = base.Size; + if (sizeArray == null) + { + return; + } + this._lastSize.Width = Math.Min(Screen.PrimaryScreen.Bounds.Width, sizeArray[0]); + this._lastSize.Height = Math.Min(Screen.PrimaryScreen.Bounds.Height, sizeArray[1]); + this.waterfall.FilterOffset = (this.spectrumAnalyzer.FilterOffset = 0); + this.ifWaterfall.FilterOffset = (this.ifAnalyzer.FilterOffset = 0); + this.afWaterfall.FilterOffset = (this.afAnalyzer.FilterOffset = 0); + this.audiogram.FilterOffset = (this.afWaterfall.FilterOffset = (this.afAnalyzer.FilterOffset = 0)); + this.spectrumAnalyzer.DisplayFrequency = 0L; + this.spectrumAnalyzer.CenterFrequency = 0L; + this.ifAnalyzer.DisplayFrequency = 0L; + this.ifAnalyzer.CenterFrequency = 0L; + this.afAnalyzer.Frequency = 1L; + this.afWaterfall.Frequency = 1L; + this.frequencyShiftNumericUpDown.Value = Utils.GetLongSetting("frequencyShift", 0L); + this.frequencyShiftNumericUpDown_ValueChanged(null, null); + this.frequencyShiftCheckBox.Checked = Utils.GetBooleanSetting("frequencyShiftEnabled"); + this.frequencyShiftCheckBox_CheckStateChanged(null, null); + Utils.Log("VFO initialized.", false); + this._fftTimer = new System.Windows.Forms.Timer(this.components); + this._fftTimer.Tick += this.fftTimer_Tick; + this._fftTimer.Interval = 20; + this._performTimer = new System.Windows.Forms.Timer(this.components); + this._performTimer.Tick += this.performTimer_Tick; + this._performTimer.Interval = 40; + this._performTimer.Enabled = true; + this.fftResolutionComboBox.SelectedIndex = Utils.GetIntSetting("fftResolution", 3); + this.fftWindowComboBox.SelectedIndex = Utils.GetIntSetting("fftWindowType", 3); + this.fftSpeedTrackBar.Value = Math.Min(this.fftSpeedTrackBar.Maximum - 2, Utils.GetIntSetting("fftSpeed", 4)); + this.fftSpeedTrackBar_ValueChanged(null, null); + this.tbAgSpeed.Value = Math.Min(this.tbAgSpeed.Maximum - 2, Utils.GetIntSetting("agSpeed", 4)); + this.tbAgSpeed_ValueChanged(null, null); + this.spectrumAnalyzer.Attack = Utils.GetDoubleSetting("spectrumAnalyzerAttack", 0.9); + this.ifAnalyzer.Attack = 0.0; + this.afAnalyzer.Attack = 0.0; + this.sAttackTrackBar.Value = (int)(this.spectrumAnalyzer.Attack * (double)this.sAttackTrackBar.Maximum); + this.spectrumAnalyzer.Decay = Utils.GetDoubleSetting("spectrumAnalyzerDecay", 0.3); + this.ifAnalyzer.Decay = 0.0; + this.afAnalyzer.Decay = 0.0; + this.sDecayTrackBar.Value = (int)(this.spectrumAnalyzer.Decay * (double)this.sDecayTrackBar.Maximum); + this.waterfall.Attack = Utils.GetDoubleSetting("waterfallAttack", 0.9); + this.wAttackTrackBar.Value = (int)(this.waterfall.Attack * (double)this.wAttackTrackBar.Maximum); + this.waterfall.Decay = Utils.GetDoubleSetting("waterfallDecay", 0.5); + this.wDecayTrackBar.Value = (int)(this.waterfall.Decay * (double)this.wDecayTrackBar.Maximum); + this.remDcSlider.Value = Utils.GetIntSetting("removeDC", 100); + this.ifWaterfall.Attack = this.waterfall.Attack; + this.ifWaterfall.Decay = this.waterfall.Decay; + this.afWaterfall.Attack = this.waterfall.Attack; + this.afWaterfall.Decay = this.waterfall.Decay; + this.audiogram.Attack = this.waterfall.Attack; + this.audiogram.Decay = this.waterfall.Decay; + int t = Utils.GetIntSetting("useTimeMarkers", 0); + this.useTimestampsCheckBox.Checked = (t > 0); + this.useTimestampsCheckBox.Text = ((t != 2) ? "Time" : "UTC"); + this.useTimestampCheckBox_CheckedChanged(null, null); + this.GetColorSettings(); + this.spectrumAnalyzer.ContextMnu = this.MnuSA; + this.waterfall.ContextMnu = this.MnuSA; + this.ifAnalyzer.ContextMnu = this.MnuSA; + this.ifWaterfall.ContextMnu = this.MnuSA; + this.afAnalyzer.ContextMnu = this.MnuSA; + this.afWaterfall.ContextMnu = this.MnuSA; + this.audiogram.ContextMenuStrip = this.MnuSA; + this.scope.ContextMenuStrip = this.MnuSA; + this.wideScope.ContextMenuStrip = this.MnuSA; + this.cmbDbm.SelectedIndex = Utils.GetIntSetting("dBm", 0); + this.dbmOffsetUpDown.Value = (long)Utils.GetIntSetting("dBmOffset", 0); + this.chkWF.Checked = Utils.GetBooleanSetting("showWaterfall"); + this.chkIF.Checked = Utils.GetBooleanSetting("showBaseband"); + this.cmbAudio.SelectedIndex = Utils.GetIntSetting("showAudio", 0); + int maxPwr = -50; + int minPwr = -120; + this.tbSpanSA.Value = Math.Max(this.tbSpanSA.Minimum, Math.Min(this.tbSpanSA.Maximum, Utils.GetIntSetting("spanSA", this.tbSpanSA.Minimum + this.tbSpanSA.Maximum - (maxPwr - minPwr)))); + this.tbFloorSA.Value = Math.Max(this.tbFloorSA.Minimum, Math.Min(this.tbFloorSA.Maximum, Utils.GetIntSetting("floorSA", this.tbFloorSA.Minimum + this.tbFloorSA.Maximum - minPwr))); + maxPwr = -50; + minPwr = -140; + this.tbContrastWv.Value = Math.Max(this.tbContrastWv.Minimum, Math.Min(this.tbContrastWv.Maximum, Utils.GetIntSetting("contrastWV", this.tbContrastWv.Minimum + this.tbContrastWv.Maximum - (maxPwr - minPwr)))); + this.tbIntensityWv.Value = Math.Max(this.tbIntensityWv.Minimum, Math.Min(this.tbIntensityWv.Maximum, Utils.GetIntSetting("intensityWV", this.tbIntensityWv.Minimum + this.tbIntensityWv.Maximum - minPwr))); + this.tbContrastAg.Value = Math.Max(this.tbContrastAg.Minimum, Math.Min(this.tbContrastAg.Maximum, Utils.GetIntSetting("contrastAG", this.tbContrastAg.Minimum + this.tbContrastAg.Maximum - (maxPwr - minPwr)))); + this.tbIntensityAg.Value = Math.Max(this.tbIntensityAg.Minimum, Math.Min(this.tbIntensityAg.Maximum, Utils.GetIntSetting("intensityAG", this.tbIntensityAg.Minimum + this.tbIntensityAg.Maximum - minPwr))); + this.cmbVer.SelectedIndex = Utils.GetIntSetting("verticalVoltsPerDiv", 2); + this.cmbHor.SelectedIndex = Utils.GetIntSetting("horizontalVoltsPerDiv", 2); + this.cmbTim.SelectedIndex = Utils.GetIntSetting("horizontalTimePerDiv", 3); + this.chkXY.Checked = Utils.GetBooleanSetting("XYmode"); + this.chkXY_CheckedChanged(null, null); + this.tbTrigL.Value = Utils.GetIntSetting("triggerLevel", 0); + this.wideScope.TrigLevel = 0.1f; + this.scope.Hshift = (float)Utils.GetIntSetting("horizontalShift", 0) / 100f; + this.scope.Vshift = (float)Utils.GetIntSetting("verticalShift", 0) / 100f; + this.chkHrunDC.Checked = Utils.GetBooleanSetting("horizontalDC"); + this.chkVrunDC.Checked = Utils.GetBooleanSetting("verticalDC"); + this.cmbVchannel.SelectedIndex = Utils.GetIntSetting("verticalChannel", 0); + this.cmbHchannel.SelectedIndex = Utils.GetIntSetting("horizontalChannel", 2); + this.tbRFgain_ValueChanged(null, null); + int centerStep = Utils.GetIntSetting("centerStep", -1); + if (centerStep >= 0) + { + this.cmbCenterStep.SelectedIndex = centerStep; + } + this.chkLock.Checked = Utils.GetBooleanSetting("chkLock"); + this.chkAver.Checked = Utils.GetBooleanSetting("chkAver"); + this.chk1.Checked = false; + this.chkFastConv.Checked = true; + this.tbAverage.Value = Utils.GetIntSetting("tbAverage", 400); + this.tbGain.Value = Utils.GetIntSetting("tbGain", 20); + this.tbAverage_ValueChanged(null, null); + this.tbGain_ValueChanged(null, null); + this.chkIndepSideband.Checked = Utils.GetBooleanSetting("IndepSideband"); + this.chkAutoSize.Checked = Utils.GetBooleanSetting("AutoResize"); + this.chkBaseBand.Checked = false; + this.fastFftCheckBox.Checked = Utils.GetBooleanSetting("FastFFT"); + this.scrollPanel.Visible = this.chkScrollPanel.Checked; + this.chkNLimiter.Checked = false; + this.tbNLTreshold.Value = Utils.GetIntSetting("NlTreshold", -100); + this.tbNLRatio.Value = Utils.GetIntSetting("NlRatio", 50); + this.tbvCarrierAvg.Value = Utils.GetIntSetting("carrierAvg", 0); + this.tbvAudioRel.Value = Utils.GetIntSetting("audioRel", 0); + this.tbvAudioAvg.Value = Utils.GetIntSetting("audioAvg", 0); + this.tbvPeakDelay.Value = Utils.GetIntSetting("peakDelay", 0); + this.tbvPeakRel.Value = Utils.GetIntSetting("peakRel", 0); + this.btnShowLog.Checked = Utils.GetBooleanSetting("showLog"); + this.fftAverageUpDown.Value = (long)Utils.GetIntSetting("FFTaverage", 0); + this.gBexpand_CheckedChanged(null, null); + this.gBexpandScope_CheckedChanged(null, null); + this._maxStations = Utils.GetIntSetting("StationlistMax", 10); + this.butVfoA.Tag = Utils.GetStringSetting("vfoA", ""); + this.butVfoB.Tag = Utils.GetStringSetting("vfoB", ""); + this.butVfoC.Tag = Utils.GetStringSetting("vfoC", ""); + this.audioButton.NoKeyDown = true; + Utils.Log("GUI initialized.", false); + this.LoadFrequencyList(); + Utils.Log("Frequency list loaded.", false); + NameValueCollection frontendPlugins = (NameValueCollection)ConfigurationManager.GetSection("frontendPlugins"); + foreach (object obj in frontendPlugins.Keys) + { + string key = (string)obj; + try + { + Utils.Log(" Frontend plugin " + key + " found.", false); + if (!(key == "SDR-IQ")) + { + string fullyQualifiedTypeName = frontendPlugins[key]; + string[] patterns = fullyQualifiedTypeName.Split(new char[] + { + ',' + }); + string typeName = patterns[0]; + string assemblyName = patterns[1]; + ObjectHandle objectHandle = Activator.CreateInstance(assemblyName, typeName); + IFrontendController controller = (IFrontendController)objectHandle.Unwrap(); + this._frontendControllers.Add(key, controller); + this.iqSourceComboBox.Items.Add(key); + } + } + catch (Exception ex) + { + Utils.Log("Error loading '" + frontendPlugins[key] + "' - " + ex.Message, false); + MessageBox.Show("Error loading '" + frontendPlugins[key] + "' - " + ex.Message); + } + } + + string[] extIOs = Directory.GetFiles(".", "ExtIO_*.dll"); + + bool? SDRSharpMain = UnmanagedDllIs64Bit(Application.ExecutablePath); + if (SDRSharpMain.HasValue) + { + if ((bool)SDRSharpMain) + { + arch = "x64"; + } + else + { + arch = "x32"; + } + } + else + { + arch = "x32"; + } + + foreach (string extIO in extIOs) + { + if (extIO.Contains(arch) == true) + { + try + { + ExtIOController controller2 = new ExtIOController(extIO); + Utils.Log(" ExtIO controller " + Path.GetFileName(extIO) + " found.", false); + string displayName = Path.GetFileName(extIO).Replace(".dll", ""); + this._frontendControllers.Add(displayName, controller2); + this.iqSourceComboBox.Items.Add(displayName); + } + catch (Exception ex2) + { + Utils.Log("Error loading '" + Path.GetFileName(extIO) + "'\r\n" + ex2.Message, false); + MessageBox.Show("Error loading '" + Path.GetFileName(extIO) + "'\r\n" + ex2.Message, "Information", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + } + } + + } + ExtIO.SampleRateChanged += this.ExtIO_SampleRateChanged; + ExtIO.LOFreqChanged += this.ExtIO_LOFreqChanged; + this.iqSourceComboBox.Items.Add("Recording (*.wav)"); + this.iqSourceComboBox.Items.Add("Other (Soundcard)"); + Utils.Log("Plugins initialized.", false); + this._waveFile = Utils.GetStringSetting("waveFile", string.Empty); + this.Text = MainForm._baseTitle; + if (this.iqSourceComboBox.SelectedIndex != this.iqSourceComboBox.Items.Count - 2) + { + this.centerFreqNumericUpDown.Value = Utils.GetLongSetting("centerFrequency", this.centerFreqNumericUpDown.Value); + this.centerFreqNumericUpDown_ValueChanged(null, null); + long vfo = Utils.GetLongSetting("vfo", this.centerFreqNumericUpDown.Value); + if (vfo >= this.frequencyNumericUpDown.Minimum && vfo <= this.frequencyNumericUpDown.Maximum) + { + this.frequencyNumericUpDown.Value = vfo; + } + else + { + this.frequencyNumericUpDown.Value = this.centerFreqNumericUpDown.Value + this._frequencyShift; + } + } + Utils.Log("IQ source selected.", false); + ThreadPool.QueueUserWorkItem(new WaitCallback(this.TuneThreadProc)); + string vfoSel = Utils.GetStringSetting("vfoSel", ""); + if (vfoSel == "A") + { + this.butVfoA.Checked = true; + } + if (vfoSel == "B") + { + this.butVfoB.Checked = true; + } + if (vfoSel == "C") + { + this.butVfoC.Checked = true; + } + this.filterAudioCheckBox.Checked = false; + this._vfo.FilterAudio = false; + + this._initializing = false; + + } + #endregion + + #region [Misc 2] + public void GetColorSettings() + { + string name = "backgrounds"; + int[] defaultValue = new int[5]; + this._backgrounds = Utils.GetIntArraySetting(name, defaultValue); + string name2 = "traceColors"; + int[] defaultValue2 = new int[5]; + this._traceColors = Utils.GetIntArraySetting(name2, defaultValue2); + string name3 = "spectrumFill"; + int[] defaultValue3 = new int[5]; + this._spectrumFill = Utils.GetIntArraySetting(name3, defaultValue3); + for (int i = 0; i <= this._saBlends.GetUpperBound(0); i++) + { + this._saBlends[i] = Utils.GetGradientBlend(255, "saBlends" + i.ToString()); + this._wfBlends[i] = Utils.GetGradientBlend(255, "wfBlends" + i.ToString()); + this._agBlends[i] = Utils.GetGradientBlend(255, "agBlends" + i.ToString()); + } + this._saBlendIndex = Utils.GetIntSetting("saGradient", 1); + this._wfBlendIndex = Utils.GetIntSetting("wfGradient", 1); + this._agBlendIndex = Utils.GetIntSetting("agGradient", 1); + this.spectrumAnalyzer.SpectrumFill = this._spectrumFill[this._saBlendIndex - 1]; + this.spectrumAnalyzer.SpectrumColor = Color.FromArgb(this._traceColors[this._saBlendIndex - 1]); + this.spectrumAnalyzer.BackgroundColor = Color.FromArgb(this._backgrounds[this._saBlendIndex - 1]); + this.spectrumAnalyzer.GradientColorBlend = this._saBlends[this._saBlendIndex - 1]; + this.ifAnalyzer.GradientColorBlend = this._saBlends[this._saBlendIndex - 1]; + this.afAnalyzer.GradientColorBlend = this._saBlends[this._saBlendIndex - 1]; + this.scope.SpectrumFill = this.spectrumAnalyzer.SpectrumFill; + this.scope.TraceColor = this.spectrumAnalyzer.SpectrumColor; + this.scope.BackgoundColor = this.spectrumAnalyzer.BackgroundColor; + this.scope.GradientColorBlend = this._saBlends[this._saBlendIndex - 1]; + this.wideScope.GradientColorBlend = this._saBlends[this._saBlendIndex - 1]; + this.waterfall.BackgroundColor = this.spectrumAnalyzer.BackgroundColor; + this.ifWaterfall.BackgroundColor = this.waterfall.BackgroundColor; + this.afWaterfall.BackgroundColor = this.waterfall.BackgroundColor; + this.audiogram.BackgroundColor = this.waterfall.BackgroundColor; + this.waterfall.GradientColorBlend = this._wfBlends[this._wfBlendIndex - 1]; + this.ifWaterfall.GradientColorBlend = this.waterfall.GradientColorBlend; + this.afWaterfall.GradientColorBlend = this.waterfall.GradientColorBlend; + this.audiogram.GradientColorBlend = this._agBlends[this._agBlendIndex - 1]; + } + + public void PutColorSettings() + { + Utils.SaveSetting("saGradient", this._saBlendIndex.ToString()); + Utils.SaveSetting("wfGradient", this._wfBlendIndex.ToString()); + Utils.SaveSetting("agGradient", this._agBlendIndex.ToString()); + for (int i = 0; i <= this._saBlends.GetUpperBound(0); i++) + { + Utils.SaveSetting("saBlends" + i.ToString(), MainForm.GradientToString(this._saBlends[i].Colors)); + Utils.SaveSetting("wfBlends" + i.ToString(), MainForm.GradientToString(this._wfBlends[i].Colors)); + Utils.SaveSetting("agBlends" + i.ToString(), MainForm.GradientToString(this._agBlends[i].Colors)); + } + Utils.SaveSetting("spectrumFill", Utils.IntArrayToString(this._spectrumFill)); + Utils.SaveSetting("traceColors", Utils.IntArrayToString(this._traceColors)); + Utils.SaveSetting("backgrounds", Utils.IntArrayToString(this._backgrounds)); + } + + private void ExtIO_LOFreqChanged(int frequency) + { + base.BeginInvoke(new Action(delegate + { + if (this._streamControl.SampleRate == 0.0) + { + return; + } + if (Math.Abs(this.centerFreqNumericUpDown.Value - (long)frequency) < 10L) + { + return; + } + this._extioChangingFrequency = true; + this.centerFreqNumericUpDown.Value = (long)frequency; + this._extioChangingFrequency = false; + })); + } + + private void ExtIO_SampleRateChanged(int newSamplerate) + { + base.BeginInvoke(new Action(delegate + { + if (this._streamControl.IsPlaying) + { + this._extioChangingSamplerate = true; + try + { + this._streamControl.Stop(); + this.Open(); + this._streamControl.Play(); + } + finally + { + this._extioChangingSamplerate = false; + } + } + })); + } + + private void MainForm_Closing(object sender, CancelEventArgs e) + { + this._terminated = true; + GradientDialog.CloseGradient(); + this.StopRadio(); + if (this._frontendController != null) + { + this._frontendController.Close(); + this._frontendController = null; + } + foreach (string item in this.iqSourceComboBox.Items) + { + string name = item.ToString(); + if (name.IndexOf("extio", StringComparison.CurrentCultureIgnoreCase) >= 0) + { + this._frontendController = this._frontendControllers[name]; + this._frontendController.Close(); + } + } + foreach (ISharpPlugin plugin in this._sharpPlugins.Values) + { + plugin.Close(); + } + Utils.SaveSetting("spectrumAnalyzerAttack", this.spectrumAnalyzer.Attack); + Utils.SaveSetting("spectrumAnalyzerDecay", this.spectrumAnalyzer.Decay); + Utils.SaveSetting("waterfallAttack", this.waterfall.Attack); + Utils.SaveSetting("waterfallDecay", this.waterfall.Decay); + Utils.SaveSetting("removeDC", this.remDcSlider.Value); + Utils.SaveSetting("useTimeMarkers", (!this.useTimestampsCheckBox.Checked) ? 0 : ((this.useTimestampsCheckBox.Text == "Time") ? 1 : 2)); + Utils.SaveSetting("fftSpeed", this.fftSpeedTrackBar.Value); + Utils.SaveSetting("agSpeed", this.tbAgSpeed.Value); + Utils.SaveSetting("fftWindowType", this.fftWindowComboBox.SelectedIndex); + Utils.SaveSetting("fftResolution", this.fftResolutionComboBox.SelectedIndex); + Utils.SaveSetting("cwShift", this.cwShiftNumericUpDown.Value); + Utils.SaveSetting("detectorType", (int)this.DetectorType); + Utils.SaveSetting("useAGC", this.agcCheckBox.Checked); + Utils.SaveSetting("agcThreshold", (int)this.agcThresholdNumericUpDown.Value); + Utils.SaveSetting("agcDecay", this.agcDecayNumericUpDown.Value); + Utils.SaveSetting("agcSlope", (int)this.agcSlopeNumericUpDown.Value); + Utils.SaveSetting("agcHang", this.agcUseHangCheckBox.Checked); + Utils.SaveSetting("snapToGrid", this.snapFrequencyCheckBox.Checked); + Utils.SaveSetting("frequencyShift", this.frequencyShiftNumericUpDown.Value); + Utils.SaveSetting("frequencyShiftEnabled", this.frequencyShiftCheckBox.Checked); + Utils.SaveSetting("swapIQ", this.swapIQCheckBox.Checked); + Utils.SaveSetting("correctIQ", this.correctIQCheckBox.Checked); + Utils.SaveSetting("IQgain", this._iqBalancer.Gain); + Utils.SaveSetting("IQphase", this._iqBalancer.Phase); + Utils.SaveSetting("markPeaks", this.markPeaksCheckBox.Checked); + Utils.SaveSetting("fmStereo", this.fmStereoCheckBox.Checked); + Utils.SaveSetting("latency", (int)this.latencyNumericUpDown.Value); + if (this.labSampling.Text.Substring(0, 5) == "Input") + { + Utils.SaveSetting("sampleRate", this.sampleRateComboBox.Text.Replace(" s/sec", "")); + } + else + { + Utils.SaveSetting("minOutputSampleRate", this.sampleRateComboBox.Text.Replace(" s/sec", "")); + } + Utils.SaveSetting("audioGain", this.audioGainTrackBar.Value); + Utils.SaveSetting("zoomIndex", this.fftZoomCombo.SelectedIndex); + Utils.SaveSetting("windowState", (int)base.WindowState); + Utils.SaveSetting("windowPosition", Utils.IntArrayToString(new int[] + { + this._lastLocation.X, + this._lastLocation.Y + })); + Utils.SaveSetting("windowSize", Utils.IntArrayToString(new int[] + { + this._lastSize.Width, + this._lastSize.Height + })); + Utils.SaveSetting("collapsiblePanelStates", Utils.IntArrayToString(this.GetCollapsiblePanelStates())); + if (base.WindowState != FormWindowState.Minimized) + { + Utils.SaveSetting("splitterPosition", this.panSplitContainer.SplitterDistance); + } + if (base.WindowState != FormWindowState.Minimized) + { + Utils.SaveSetting("splitter2Position", this.panSplitContainer2.SplitterDistance); + } + if (base.WindowState != FormWindowState.Minimized) + { + Utils.SaveSetting("splitter3Position", this.panSplitContainer3.SplitterDistance); + } + if (base.WindowState != FormWindowState.Minimized) + { + Utils.SaveSetting("splitter4Position", this.panSplitContainer4.SplitterDistance); + } + if (base.WindowState != FormWindowState.Minimized) + { + Utils.SaveSetting("splitter5Position", this.panSplitContainer5.SplitterDistance); + } + Utils.SaveSetting("iqSource", this.iqSourceComboBox.SelectedIndex); + Utils.SaveSetting("waveFile", this._waveFile ?? ""); + Utils.SaveSetting("vfo", (long)this.frequencyNumericUpDown.Value); + Utils.SaveSetting("inputDevice", this.inputDeviceComboBox.SelectedItem); + Utils.SaveSetting("outputDevice", this.outputDeviceComboBox.SelectedItem); + Utils.SaveSetting("floorSA", this.tbFloorSA.Value); + Utils.SaveSetting("spanSA", this.tbSpanSA.Value); + Utils.SaveSetting("contrastWV", this.tbContrastWv.Value); + Utils.SaveSetting("intensityWV", this.tbIntensityWv.Value); + Utils.SaveSetting("contrastAG", this.tbContrastAg.Value); + Utils.SaveSetting("intensityAG", this.tbIntensityAg.Value); + Utils.SaveSetting("dBm", this.cmbDbm.SelectedIndex); + Utils.SaveSetting("dBmOffset", this.dbmOffsetUpDown.Value); + Utils.SaveSetting("horizontalShift", (int)(this.scope.Hshift * 100f)); + Utils.SaveSetting("verticalShift", (int)(this.scope.Vshift * 100f)); + Utils.SaveSetting("triggerLevel", this.tbTrigL.Value); + Utils.SaveSetting("horizontalDC", this.chkHrunDC.Checked); + Utils.SaveSetting("verticalDC", this.chkVrunDC.Checked); + Utils.SaveSetting("XYmode", this.chkXY.Checked); + Utils.SaveSetting("horizontalTimePerDiv", this.cmbTim.SelectedIndex); + Utils.SaveSetting("horizontalVoltsPerDiv", this.cmbHor.SelectedIndex); + Utils.SaveSetting("verticalVoltsPerDiv", this.cmbVer.SelectedIndex); + Utils.SaveSetting("horizontalChannel", this.cmbHchannel.SelectedIndex); + Utils.SaveSetting("verticalChannel", this.cmbVchannel.SelectedIndex); + Utils.SaveSetting("showWaterfall", this.chkWF.Checked); + Utils.SaveSetting("showBaseband", this.chkIF.Checked); + Utils.SaveSetting("showAudio", this.cmbAudio.SelectedIndex); + Utils.SaveSetting("centerStep", this.cmbCenterStep.SelectedIndex); + Utils.SaveSetting("chkLock", this.chkLock.Checked); + Utils.SaveSetting("chkAver", this.chkAver.Checked); + Utils.SaveSetting("tbAverage", this.tbAverage.Value); + Utils.SaveSetting("tbGain", this.tbGain.Value); + string tag = this.makeVfoTag(); + if (this.butVfoA.Checked) + { + this.butVfoA.Tag = tag; + } + else if (this.butVfoB.Checked) + { + this.butVfoB.Tag = tag; + } + else if (this.butVfoC.Checked) + { + this.butVfoC.Tag = tag; + } + Utils.SaveSetting("vfoA", this.butVfoA.Tag); + Utils.SaveSetting("vfoB", this.butVfoB.Tag); + Utils.SaveSetting("vfoC", this.butVfoC.Tag); + if (this.butVfoA.Checked) + { + Utils.SaveSetting("vfoSel", "A"); + } + if (this.butVfoB.Checked) + { + Utils.SaveSetting("vfoSel", "B"); + } + if (this.butVfoC.Checked) + { + Utils.SaveSetting("vfoSel", "C"); + } + Utils.SaveSetting("IndepSideband", this.chkIndepSideband.Checked); + Utils.SaveSetting("AutoResize", this.chkAutoSize.Checked); + Utils.SaveSetting("FastFFT", this.fastFftCheckBox.Checked); + Utils.SaveSetting("NlTreshold", this.tbNLTreshold.Value); + Utils.SaveSetting("NlRatio", this.tbNLRatio.Value); + Utils.SaveSetting("carrierAvg", this.tbvCarrierAvg.Value); + Utils.SaveSetting("audioRel", this.tbvAudioRel.Value); + Utils.SaveSetting("audioAvg", this.tbvAudioAvg.Value); + Utils.SaveSetting("peakDelay", this.tbvPeakDelay.Value); + Utils.SaveSetting("peakRel", this.tbvPeakRel.Value); + Utils.SaveSetting("showLog", this.btnShowLog.Checked); + Utils.SaveSetting("FFTaverage", this.fftAverageUpDown.Value); + if (this.butVfoA.Checked || this.butVfoB.Checked || this.butVfoC.Checked) + { + this._modeStates[this._vfo.DetectorType] = this.GetModeState(); + Utils.SaveSetting("stateAM", Utils.IntArrayToString(this._modeStates[DetectorType.AM])); + Utils.SaveSetting("stateSAM", Utils.IntArrayToString(this._modeStates[DetectorType.SAM])); + Utils.SaveSetting("stateDSB", Utils.IntArrayToString(this._modeStates[DetectorType.DSB])); + Utils.SaveSetting("stateLSB", Utils.IntArrayToString(this._modeStates[DetectorType.LSB])); + Utils.SaveSetting("stateUSB", Utils.IntArrayToString(this._modeStates[DetectorType.USB])); + Utils.SaveSetting("stateCW", Utils.IntArrayToString(this._modeStates[DetectorType.CW])); + Utils.SaveSetting("stateWFM", Utils.IntArrayToString(this._modeStates[DetectorType.WFM])); + Utils.SaveSetting("stateNFM", Utils.IntArrayToString(this._modeStates[DetectorType.NFM])); + Utils.SaveSetting("stateRAW", Utils.IntArrayToString(this._modeStates[DetectorType.RAW])); + } + this.saveSettings(); + } + + private static void loadSettings() + { + XmlSerializer serializer = new XmlSerializer(typeof(List)); + try + { + FileStream fs = new FileStream(Application.StartupPath + "\\Settings.xml", FileMode.Open); + List list = (List)serializer.Deserialize(fs); + fs.Close(); + Utils.Settings.Clear(); + foreach (MainForm.Setting kv in list) + { + Utils.Settings.Add(kv.Key, kv.Value); + } + } + catch (Exception ex) + { + MessageBox.Show("Init File 'Settings.xml' could not be loaded.\n\n" + ex.Message); + } + } + + private static string rv(string s) + { + char[] arr = s.ToCharArray(); + Array.Reverse(arr); + return new string(arr); + } + + private void saveSettings() + { + List list = new List(Utils.Settings.Count); + foreach (string key in Utils.Settings.Keys) + { + list.Add(new MainForm.Setting(key, Utils.Settings[key])); + } + XmlSerializer serializer = new XmlSerializer(typeof(List)); + FileStream fs = new FileStream(Application.StartupPath + "\\Settings.xml", FileMode.Create); + serializer.Serialize(fs, list); + fs.Close(); + } + + private void LoadFrequencyList() + { + int oldFreq = -1; + string stations = ""; + this._frequencyList.Clear(); + bool fmScan = false; + bool start = false; + string id = ""; + int count = 0; + try + { + StreamReader sr = new StreamReader(Application.StartupPath + "\\eibi.csv", Encoding.Default); + string input; + while ((input = sr.ReadLine()) != null) + { + if (input.StartsWith("FMSCAN")) + { + fmScan = true; + } + if (fmScan) + { + if (input.StartsWith("====")) + { + start = true; + } + if (start) + { + this.ReadFMscan(input, ref oldFreq, ref id, ref count, ref stations); + } + } + else + { + string[] fields = input.Split(new char[] + { + ';' + }); + double frequency = Utils.ValD(fields[0], 0.0); + if (frequency > 1610.0) + { + } + int intFreq = (int)frequency; + if (intFreq != oldFreq) + { + if (stations.Length > 0) + { + this._frequencyList.Add(oldFreq, stations); + } + oldFreq = intFreq; + stations = ""; + } + int i = fields[4].LastIndexOf('('); + if (i > 0) + { + fields[4] = fields[4].Substring(0, i - 1); + } + fields[9] = fields[9].Replace("km", ""); + fields[10] = fields[10].Replace("n", ""); + fields[10] = fields[10].Replace("d", ""); + fields[6] = fields[6].Replace("dB", ""); + stations = stations + ((stations.Length == 0) ? "" : ";") + string.Join(",", fields); + } + } + sr.Close(); + } + catch (Exception ex) + { + MessageBox.Show("Failed to load station list file 'eibi.csv'.\n\n" + ex.Message); + } + } + + private bool ReadFMscan(string input, ref int oldFreq, ref string id, ref int count, ref string stations) + { + string[] fields = input.Split(new char[] + { + ',' + }); + double frequency = Utils.ValD(fields[0], 0.0); + if (frequency > 1610.0) + { + } + int intFreq = (int)frequency; + if (intFreq != oldFreq) + { + if (stations.Length > 0) + { + this._frequencyList.Add(oldFreq, stations); + } + oldFreq = intFreq; + stations = ""; + count = 0; + } + string[] outp = new string[11]; + outp[4] = fields[3].Replace(';', ':'); + outp[7] = fields[5].Replace(';', ':'); + if (outp[4] + outp[7] == id) + { + return false; + } + id = outp[4] + outp[7]; + if (count > this._maxStations) + { + return false; + } + count++; + outp[0] = fields[0]; + outp[5] = fields[1]; + outp[3] = outp[5]; + outp[9] = fields[11]; + outp[10] = fields[9]; + outp[1] = fields[15]; + outp[2] = fields[16]; + double power = Utils.ValD(outp[10], 0.001); + int distance = Utils.Val(outp[9], 1); + double loss = 299792.0 / frequency / (12.566370614359172 * (double)distance * 1000.0); + double dbm = 10.0 * Math.Log10(power * 1000000.0 * loss * loss) - 70.0; + outp[6] = ((int)dbm + 107).ToString(); + stations = stations + ((stations.Length == 0) ? "" : ";") + string.Join(",", outp); + return true; + } + + private void SaveStationList() + { + if (this._frequencyList.Count == 0) + { + return; + } + StreamWriter sw = new StreamWriter(Application.StartupPath + "\\eibi.csv", false, Encoding.Default); + foreach (KeyValuePair kvp in this._frequencyList) + { + string[] stations = kvp.Value.Split(new char[] + { + ';' + }); + for (int i = 0; i <= stations.GetUpperBound(0); i++) + { + string station = stations[i].Replace(',', ';'); + sw.WriteLine(station); + } + } + sw.Close(); + } + + private int[] GetModeState() + { + int[] result = new int[9]; + result[0] = (int)this.cmbBandWidth.Tag; + result[1] = this.FilterOrder; + result[2] = (int)this.FilterType; + result[3] = this.SquelchThreshold; + result[4] = (this.SquelchEnabled ? 1 : 0); + result[5] = (this.SnapToGrid ? 1 : 0); + result[6] = this.stepSizeComboBox.SelectedIndex; + return result; + } + + private void SetModeState(int[] state) + { + this.FilterBandwidth = state[0]; + this.FilterOrder = state[1]; + this.FilterType = (WindowType)state[2]; + this.SquelchThreshold = state[3]; + this.SquelchEnabled = (state[4] != 0); + this.SnapToGrid = (state[5] == 1); + this.stepSizeComboBox.SelectedIndex = Math.Min(this.stepSizeComboBox.Items.Count - 1, state[6]); + this.filterBandwidthNumericUpDown_ValueChanged(null, null); + this.stepSizeComboBox_SelectedIndexChanged(null, null); + this.useSquelchCheckBox_CheckedChanged(null, null); + } + + private unsafe int ProcessBuffer(Complex* iqBuffer, float* audioBuffer, int iqLen, int audioLen) + { + this._iqBalancer.Process(iqBuffer, iqLen); + if (this._xBuf == null || this._xBuf.Length != iqLen) + { + if (this._xBuf != null) + { + this._xBuf.Dispose(); + } + this._xBuf = UnsafeBuffer.Create(iqLen, 4); + this._xPtr = (float*)this._xBuf; + } + if (this._yBuf == null || this._yBuf.Length != iqLen) + { + if (this._yBuf != null) + { + this._yBuf.Dispose(); + } + this._yBuf = UnsafeBuffer.Create(iqLen, 4); + this._yPtr = (float*)this._yBuf; + } + if (this._audioBuf == null || this._audioBuf.Length != audioLen) + { + if (this._audioBuf != null) + { + this._audioBuf.Dispose(); + } + this._audioBuf = UnsafeBuffer.Create(audioLen, sizeof(Complex)); + this._audioPtr = (Complex*)this._audioBuf; + } + if (this._envBuf == null || this._envBuf.Length != iqLen) + { + if (this._envBuf != null) + { + this._envBuf.Dispose(); + } + this._envBuf = UnsafeBuffer.Create(iqLen, 4); + this._envPtr = (float*)this._envBuf; + } + if (this._vfoHookManager != null) + { + this._vfoHookManager.ProcessRawIQ(iqBuffer, iqLen); + } + if (this._fftSkips < -2) + { + this._fftSkips++; + } + if (this.spectrumAnalyzer.DataType == DataType.RF) + { + if (!this._extioChangingSamplerate && this._fftStream.Length < this._maxIQSamples) + { + this._fftStream.Write(iqBuffer, iqLen); + if (this._fftBufferIsWaiting) + { + this._fftBufferIsWaiting = false; + this._fftEvent.Set(); + } + if (this._speedError) + { + this.labSpeed.BackColor = this.BackColor; + } + this._speedError = false; + } + else if (base.WindowState != FormWindowState.Minimized && this._isActive && this._fftStream.Length > 0) + { + Console.WriteLine("_fftStream reached max of " + this._maxIQSamples.ToString() + ", fftSkips=" + this._fftSkips.ToString()); + this._fftSkips = Math.Min(this._fftSkips + 1, 40); + if (this._fftSkips > 0) + { + if (!this._speedError) + { + this.labSpeed.BackColor = Color.Red; + } + this._speedError = true; + } + } + } + + if (this.wideScope.Visible) + { + this._envPtr = (float*)this._envBuf; + } + else + { + this._envPtr = null; + } + + int basebandLen = this._vfo.ProcessBuffer(iqBuffer, audioBuffer, iqLen, this._xPtr, this._yPtr, this._envPtr); + if (this.amRadioButton.Checked && this.chkNLimiter.Checked) + { + this._nLimiter.process(audioBuffer, audioLen); + } + int audioSize = this._streamControl.AudioStreamSize; + if (this._streamControl.SoundCardRatio > 1.0 && audioSize > 0) + { + int min = (int)((double)audioLen / this._streamControl.SoundCardRatio); + if (audioSize < min && this._AsioCorrection > 0f) + { + this._AsioCorrection = 0f; + Console.WriteLine("AudioStreamSize < " + min.ToString() + ", correction=0"); + } + else if (audioSize > 2 * min && this._AsioCorrection == 0f) + { + this._AsioCorrection = 0.001f; + Console.WriteLine("AudioStreamSize > 2 * " + min.ToString() + ", correction=-" + this._AsioCorrection.ToString()); + } + audioLen = this._fractResampler.Resample(audioLen, this._streamControl.SoundCardRatio + (double)this._AsioCorrection, audioBuffer, audioBuffer); + } + if (this.spectrumAnalyzer.DataType == DataType.IF) + { + if (!this._extioChangingSamplerate && this._fftStream.Length < this._maxIQSamples) + { + this._fftStream.Write(iqBuffer, basebandLen); + if (this._fftBufferIsWaiting) + { + this._fftBufferIsWaiting = false; + this._fftEvent.Set(); + } + } + } + else if (this.spectrumAnalyzer.DataType == DataType.AF && !this._extioChangingSamplerate && this._fftStream.Length < this._maxIQSamples) + { + this.audioToComplex(audioBuffer, this._audioPtr, audioLen); + this._fftStream.Write(this._audioPtr, audioLen / 2); + if (this._fftBufferIsWaiting) + { + this._fftBufferIsWaiting = false; + this._fftEvent.Set(); + } + } + if (!this._extioChangingSamplerate && this._iftStream.Length < this._maxIFSamples) + { + this._iftStream.Write(iqBuffer, basebandLen); + } + if (!this._extioChangingSamplerate && this._aftStream.Length < this._maxAFSamples) + { + this.audioToComplex(audioBuffer, this._audioPtr, audioLen); + this._aftStream.Write(this._audioPtr, audioLen / 2); + } + DemodType demodX = DemodType.Empty; + DemodType demodY = DemodType.Empty; + if (this.scopeCollapsiblePanel.PanelState == PanelStateOptions.Expanded || this.wideScope.Visible) + { + demodX = this.scope.Hchannel; + if (this._vfo.DemodX != demodX) + { + this._vfo.DemodX = demodX; + } + demodY = this.scope.Vchannel; + if (this._vfo.DemodY != demodY) + { + this._vfo.DemodY = demodY; + } + } + this.chkLock.Enabled = (demodX == DemodType.PM || demodY == DemodType.PM); + if (this.chkLock.Enabled && this.chkLock.Checked) + { + if (this.frequencyNumericUpDown.InvokeRequired) + { + this.frequencyNumericUpDown.BeginInvoke(new MethodInvoker(delegate + { + this.DoVfoCorrection(); + })); + } + else + { + this.DoVfoCorrection(); + } + } + if (demodX == DemodType.Audio) + { + int i = 0; + for (int j = 0; j < audioLen; j += 2) + { + this._xPtr[(int)(IntPtr)(i++) * 4] = audioBuffer[j]; + } + } + if (demodY == DemodType.Audio) + { + int k = 0; + for (int l = 0; l < audioLen; l += 2) + { + this._yPtr[(int)(IntPtr)(k++) * 4] = audioBuffer[l]; + } + } + int timeOut = 1; + if (this.scopeCollapsiblePanel.PanelState == PanelStateOptions.Expanded) + { + int len = iqLen >> ((demodY == DemodType.Envelope) ? this._vfo.EnvelopeDecimationStageCount : this._vfo.BaseBandDecimationStageCount); + if (this.scope.InvokeRequired) + { + this.scope.BeginInvoke(new MethodInvoker(delegate + { + this.scope.Render(this._xPtr, this._yPtr, len, this._streamControl.BufferSizeInMs, timeOut); + })); + } + else + { + this.scope.Render(this._xPtr, this._yPtr, len, this._streamControl.BufferSizeInMs, timeOut); + } + } + if (this._envPtr != null) + { + int elen = iqLen >> this._vfo.EnvelopeDecimationStageCount; + if (this.wideScope.InvokeRequired) + { + this.wideScope.BeginInvoke(new MethodInvoker(delegate + { + this.wideScope.Render(this._xPtr, this._envPtr, elen, this._streamControl.BufferSizeInMs, timeOut); + })); + } + else + { + this.wideScope.Render(this._xPtr, this._envPtr, elen, this._streamControl.BufferSizeInMs, timeOut); + } + } + if (this._streamControl.IsPlaying && this.AdvancedCollapsiblePanel.PanelState == PanelStateOptions.Expanded && this.barMeter.Draw(this._streamControl.AudioStreamSize, 10)) + { + this.labCPU.Text = this._streamControl.AudioStreamSize.ToString(); + } + if (!this.audioButton.Checked) + { + for (int m = 0; m < audioLen; m++) + { + audioBuffer[m] = 0f; + } + } + return audioLen; + } + + private void logMinMax(int size) + { + if (this._upwards && size < this._prevSize) + { + this._upwards = false; + this._maxSize = this._prevSize; + Console.WriteLine("AudioStream MAX=" + this._maxSize.ToString()); + } + else if (size > this._prevSize) + { + this._upwards = true; + this._minSize = this._prevSize; + Console.WriteLine("AudioStream MIN=" + this._minSize.ToString()); + } + this._prevSize = size; + } + + private unsafe void audioToComplex(float* audioPtr, Complex* cpxPtr, int len) + { + int i = 0; + for (int j = 0; j < len; j += 2) + { + if ((double)Math.Abs(audioPtr[j]) < 1E-20) + { + cpxPtr[i].Real = 0f; + } + else + { + cpxPtr[i].Real = audioPtr[j]; + } + cpxPtr[i++].Imag = 0f; + } + } + + private void DoVfoCorrection() + { + if (this._terminated) + { + return; + } + long newFreq = (long)(this.frequencyNumericUpDown.Value - (decimal)this._vfo.FreqErr * 100m); + if (newFreq >= this.frequencyNumericUpDown.Minimum && newFreq <= this.frequencyNumericUpDown.Maximum) + { + this.frequencyNumericUpDown.Value = newFreq; + } + } + + private void ProcessFFT(object parameter) + { + DataType dataType = DataType.none; + int prevInterval = 0; + this._actualFftBins = 0; + this._actualIftBins = 0; + this._actualAftBins = 0; + while (this._streamControl.IsPlaying || this._extioChangingSamplerate) + { + long elap = this._processTmr.Elaps(100); + if (elap > 0L) + { + this.labProcessTmr.Text = elap.ToString(); + } + if (this._fftTimer.Interval * this._waterfallTimout != prevInterval) + { + prevInterval = this._fftTimer.Interval * this._waterfallTimout; + } + if (Utils.FastFFT) + { + Application.DoEvents(); + } + int sampleRate = (int)this._streamControl.SampleRate; + int ifSampleRate = sampleRate >> this._vfo.BaseBandDecimationStageCount; + int afSampleRate = sampleRate >> this._vfo.DecimationStageCount; + if (this._streamControl.SoundCardRatio > 1.0) + { + afSampleRate = (int)((double)afSampleRate / this._streamControl.SoundCardRatio); + } + if (dataType == DataType.IF) + { + sampleRate = ifSampleRate; + } + else if (dataType == DataType.AF) + { + sampleRate = afSampleRate; + } + if (this.spectrumAnalyzer.DataType != dataType) + { + dataType = this.spectrumAnalyzer.DataType; + this._fftStream.Flush(); + this._actualFftBins = 0; + Console.WriteLine("ProcessFFT DataType changed, samplerate=" + sampleRate.ToString()); + Console.WriteLine("ProcessIFT Samplerate=" + ifSampleRate.ToString()); + Console.WriteLine("ProcessAFT Samplerate=" + afSampleRate.ToString()); + } + this.readAndRunFFT(sampleRate); + if (this.ifAnalyzer.Visible) + { + this.readAndRunIFT(ifSampleRate); + } + if (this.afAnalyzer.Visible || this.audiogram.Visible) + { + this.readAndRunAFT(afSampleRate); + } + if (Utils.FastFFT) + { + this.renderFFT(sampleRate); + this.renderIFT(ifSampleRate); + this.renderAFT(afSampleRate); + this.getWaterfallSpeed(); + } + } + this._fftStream.Flush(); + this._iftStream.Flush(); + this._aftStream.Flush(); + this._actualFftBins = 0; + this._actualIftBins = 0; + this._actualAftBins = 0; + Console.WriteLine("ProcessFFT stopped"); + } + + private unsafe void readAndRunFFT(int sampleRate) + { + if (this._actualFftBins != this._fftBins) + { + for (int i = 0; i < this._fftBins; i++) + { + this._iqPtr[i].Real = 0f; + this._iqPtr[i].Imag = 0f; + } + this._actualFftBins = this._fftBins; + } + float time = Utils.FastFFT ? 0.0005f : 0.001f; + int samplesToRead = (int)((float)(sampleRate * this._fftTimer.Interval) * time); + int samplesToUse = Math.Min(samplesToRead, this._actualFftBins); + int excessSamples = samplesToRead - samplesToUse; + this._maxIQSamples = (int)((double)(sampleRate * this._streamControl.BufferSizeInMs) * 0.0015); + if (samplesToUse < this._actualFftBins) + { + Utils.Memcpy((void*)this._iqPtr, (void*)(this._iqPtr + samplesToUse), (this._actualFftBins - samplesToUse) * sizeof(Complex)); + } + int total = 0; + while (this._streamControl.IsPlaying && total < samplesToUse) + { + total += this._fftStream.Read(this._iqPtr, this._actualFftBins - samplesToUse + total, samplesToUse - total); + } + if (excessSamples > 0) + { + this._fftStream.Advance(excessSamples); + } + if (!this._rfSpectrumAvailable && (!Utils.FastFFT || --this._fftSkipCnt < 0)) + { + this._fftSkipCnt = this._fftSkips; + DataType dataType = this.spectrumAnalyzer.DataType; + float compensation = 8f - this._fftGain + (float)this.dbmOffsetUpDown.Value; + if (dataType == DataType.IF) + { + compensation = 49f - this._bftGain + (float)this.dbmOffsetUpDown.Value; + if (this.wfmRadioButton.Checked) + { + compensation -= 35f; + } + } + else if (dataType == DataType.AF) + { + compensation = 65f - this._bftGain; + } + Utils.Memcpy((void*)this._fftPtr, (void*)this._iqPtr, this._actualFftBins * sizeof(Complex)); + if (dataType == DataType.RF) + { + Fourier.ApplyFFTWindow(this._fftPtr, this._fftWindowPtr, this._actualFftBins); + } + else + { + Fourier.ApplyFFTWindow(this._fftPtr, this._bftWindowPtr, this._actualFftBins); + } + Fourier.ForwardTransform(this._fftPtr, this._actualFftBins, true); + Fourier.SpectrumPower(this._fftPtr, this._rfSpectrumPtr, this._actualFftBins, compensation, false); + if (this.fftAverageUpDown.Value > 0L) + { + int avg = (int)this.fftAverageUpDown.Value + 1; + float level = this.spectrumAnalyzer.MinPower + (this.spectrumAnalyzer.MaxPower - this.spectrumAnalyzer.MinPower) / 5f; + for (int j = 0; j < this._actualFftBins; j++) + { + if (this._rfAveragePtr[j] > level) + { + this._rfAveragePtr[j] = this._rfSpectrumPtr[j]; + } + else + { + this._rfAveragePtr[j] = ((float)(avg - 1) * this._rfAveragePtr[j] + this._rfSpectrumPtr[j]) / (float)avg; + } + } + Utils.Memcpy((void*)this._rfSpectrumPtr, (void*)this._rfAveragePtr, this._actualFftBins * 4); + } + this._rfSpectrumSamples = this._actualFftBins; + this._rfSpectrumAvailable = true; + } + if (this._fftStream.Length <= this._maxIQSamples) + { + this._fftBufferIsWaiting = true; + this._fftEvent.WaitOne(); + } + } + + private unsafe void readAndRunIFT(int ifSampleRate) + { + if (this._actualIftBins != this._bftBins) + { + for (int i = this._actualIftBins; i < this._bftBins; i++) + { + this._ifqPtr[i].Real = 0f; + this._ifqPtr[i].Imag = 0f; + } + this._actualIftBins = this._bftBins; + } + float time = Utils.FastFFT ? 0.0005f : 0.001f; + int samplesToRead = (int)((float)(ifSampleRate * this._fftTimer.Interval) * time); + int samplesToUse = Math.Min(samplesToRead, this._actualIftBins); + int excessSamples = samplesToRead - samplesToUse; + this._maxIFSamples = (int)((double)(ifSampleRate * this._streamControl.BufferSizeInMs) * 0.0015); + if (samplesToUse < this._actualIftBins) + { + Utils.Memcpy((void*)this._ifqPtr, (void*)(this._ifqPtr + samplesToUse), (this._actualIftBins - samplesToUse) * sizeof(Complex)); + } + int total = 0; + while (this._streamControl.IsPlaying && total < samplesToUse) + { + total += this._iftStream.Read(this._ifqPtr, this._actualIftBins - samplesToUse + total, samplesToUse - total); + } + if (excessSamples > 0) + { + this._iftStream.Advance(excessSamples); + } + if (!this._ifSpectrumAvailable && (!Utils.FastFFT || this._fftSkipCnt == this._fftSkips)) + { + float compensation = 51f - this._bftGain + (float)this.dbmOffsetUpDown.Value; + if (this.wfmRadioButton.Checked) + { + compensation -= 35f; + } + else if (this.rawRadioButton.Checked) + { + compensation -= 48f; + } + Utils.Memcpy((void*)this._iftPtr, (void*)this._ifqPtr, this._actualIftBins * sizeof(Complex)); + Fourier.ApplyFFTWindow(this._iftPtr, this._bftWindowPtr, this._actualIftBins); + Fourier.ForwardTransform(this._iftPtr, this._actualIftBins, true); + Fourier.SpectrumPower(this._iftPtr, this._iftSpectrumPtr, this._actualIftBins, compensation, false); + this._ifSpectrumSamples = this._actualIftBins; + this._ifSpectrumAvailable = true; + } + } + + private unsafe void readAndRunAFT(int afSampleRate) + { + if (this._actualAftBins != this._bftBins) + { + for (int i = this._actualAftBins; i < this._bftBins; i++) + { + this._afqPtr[i].Real = 0f; + this._afqPtr[i].Imag = 0f; + } + this._actualAftBins = this._bftBins; + } + float time = Utils.FastFFT ? 0.0005f : 0.001f; + int samplesToRead = (int)((float)(afSampleRate * this._fftTimer.Interval) * time); + int samplesToUse = Math.Min(samplesToRead, this._actualAftBins); + int excessSamples = samplesToRead - samplesToUse; + this._maxAFSamples = (int)((double)(afSampleRate * this._streamControl.BufferSizeInMs) * 0.0015); + if (samplesToUse < this._actualAftBins) + { + Utils.Memcpy((void*)this._afqPtr, (void*)(this._afqPtr + samplesToUse), (this._actualAftBins - samplesToUse) * sizeof(Complex)); + } + int total = 0; + while (this._streamControl.IsPlaying && total < samplesToUse) + { + total += this._aftStream.Read(this._afqPtr, this._actualAftBins - samplesToUse + total, samplesToUse - total); + } + if (excessSamples > 0) + { + this._aftStream.Advance(excessSamples); + } + if (!this._afSpectrumAvailable && (!Utils.FastFFT || this._fftSkipCnt == this._fftSkips)) + { + float compensation = 55f - this._bftGain; + if (this.wfmRadioButton.Checked) + { + compensation += 10f; + } + if (this.rawRadioButton.Checked) + { + compensation -= 48f; + } + Utils.Memcpy((void*)this._aftPtr, (void*)this._afqPtr, this._actualAftBins * sizeof(Complex)); + Fourier.ApplyFFTWindow(this._aftPtr, this._bftWindowPtr, this._actualAftBins); + Fourier.ForwardTransform(this._aftPtr, this._actualAftBins, true); + Fourier.SpectrumPower(this._aftPtr, this._afSpectrumPtr, this._actualAftBins, compensation, true); + this._afSpectrumSamples = this._actualAftBins; + this._afSpectrumAvailable = true; + } + } + + private unsafe void renderFFT(int sampleRate) + { + bool render = this._streamControl.IsPlaying; + if (!this.spectrumAnalyzer.Visible) + { + render = false; + } + if (render) + { + DataType dataType = this.chkBaseBand.Checked ? DataType.IF : DataType.RF; + if (Utils.Chk1 && dataType == DataType.IF) + { + dataType = DataType.AF; + } + if (this.spectrumAnalyzer.DataType != dataType || (dataType != DataType.AF && this.spectrumAnalyzer.SpectrumWidth != sampleRate) || (dataType == DataType.AF && this.spectrumAnalyzer.SpectrumWidth != sampleRate / 2)) + { + for (int i = 1; i < this.fftZoomCombo.Items.Count; i++) + { + int spectrum = this.getFrequency(this.fftZoomCombo.Items[i]); + this.fftZoomCombo.setEnabled(i, spectrum <= sampleRate); + } + this.spectrumAnalyzer.DataType = dataType; + if (dataType == DataType.RF) + { + this.spectrumAnalyzer.SpectrumWidth = sampleRate; + this.spectrumAnalyzer.CenterFrequency = this.centerFreqNumericUpDown.Value + this._frequencyShift; + this.spectrumAnalyzer.Frequency = (long)this.frequencyNumericUpDown.Value; + this.spectrumAnalyzer.UseSnap = this.snapFrequencyCheckBox.Checked; + } + else if (dataType == DataType.IF) + { + this.spectrumAnalyzer.SpectrumWidth = sampleRate; + this.spectrumAnalyzer.Frequency = (long)this.frequencyNumericUpDown.Value; + if (this.spectrumAnalyzer.SpectrumWidth < this.spectrumAnalyzer.FilterBandwidth) + { + this.filterBandwidthNumericUpDown.Value = (long)(this.spectrumAnalyzer.SpectrumWidth / 1000 * 1000); + } + this.spectrumAnalyzer.UseSnap = false; + } + else + { + this.spectrumAnalyzer.SpectrumWidth = sampleRate / 2; + this.spectrumAnalyzer.Frequency = 0L; + if (this.spectrumAnalyzer.SpectrumWidth < this.spectrumAnalyzer.FilterBandwidth / 2) + { + this.filterBandwidthNumericUpDown.Value = (long)(this.spectrumAnalyzer.SpectrumWidth / 500 * 1000); + } + this.spectrumAnalyzer.UseSnap = false; + } + this.spectrumAnalyzer.MaxPower = this.spectrumAnalyzer.MaxPower; + this.waterfall.DataType = dataType; + this.waterfall.UseSnap = this.spectrumAnalyzer.UseSnap; + this.waterfall.CenterFrequency = this.spectrumAnalyzer.CenterFrequency; + this.waterfall.Frequency = this.spectrumAnalyzer.Frequency; + this.waterfall.SpectrumWidth = this.spectrumAnalyzer.SpectrumWidth; + this.labSpectrum.Text = ((float)this.spectrumAnalyzer.SpectrumWidth / 1000f).ToString() + " kHz"; + this.fftZoomCombo_SelectedIndexChanged(null, null); + this._floorValueNeeded = 15; + } + int offset = 0; + int samples = this._rfSpectrumSamples; + if (dataType == DataType.AF) + { + samples >>= 1; + offset = samples; + } + if (--this._rfTimout <= 0) + { + this._rfTimout = this._spectrumTimeout; + this.spectrumAnalyzer.Render(this._rfSpectrumPtr + offset, samples); + } + if (this.waterfall.Visible) + { + if (this.waterfall.WaveStart != this._streamControl.WaveStart) + { + this.waterfall.WaveStart = this._streamControl.WaveStart; + } + this.waterfall.RenderAndDraw(this._rfSpectrumPtr + offset, samples, this._waterfallTimout, this._fftTimer.Interval); + } + else + { + int j = 0; + j++; + } + } + this._rfSpectrumAvailable = false; + if (this._fftBufferIsWaiting) + { + this._fftBufferIsWaiting = false; + this._fftEvent.Set(); + } + } + + private unsafe void renderIFT(int ifSamplerate) + { + bool render = this._streamControl.IsPlaying; + if (base.WindowState == FormWindowState.Minimized) + { + render = false; + } + if (render && this.ifAnalyzer.Visible) + { + int samplerate = (int)((double)ifSamplerate / this._streamControl.SoundCardRatio); + if (this.ifAnalyzer.SpectrumWidth != samplerate) + { + this.ifAnalyzer.DataType = DataType.IF; + this.ifAnalyzer.SpectrumWidth = samplerate; + this.ifAnalyzer.Frequency = (long)this.frequencyNumericUpDown.Value; + this.ifAnalyzer.Zoom = (float)(this.chkAutoSize.Checked ? -1 : 1); + this.ifWaterfall.DataType = this.ifAnalyzer.DataType; + this.ifWaterfall.SpectrumWidth = this.ifAnalyzer.SpectrumWidth; + this.ifWaterfall.Frequency = this.ifAnalyzer.Frequency; + this.ifWaterfall.Zoom = this.ifAnalyzer.Zoom; + if (this._vfo.DetectorType != DetectorType.WFM && this.ifAnalyzer.SpectrumWidth < this.ifAnalyzer.FilterBandwidth) + { + this.filterBandwidthNumericUpDown.Value = (long)(this.ifAnalyzer.SpectrumWidth / 1000 * 1000); + } + } + int samples = (int)((double)this._ifSpectrumSamples / this._streamControl.SoundCardRatio); + int offset = (this._ifSpectrumSamples - (int)((double)this._ifSpectrumSamples / this._streamControl.SoundCardRatio)) / 2; + if (--this._ifTimeout <= 0) + { + this._ifTimeout = this._spectrumTimeout; + this.ifAnalyzer.Render(this._iftSpectrumPtr + offset, samples); + } + if (this.ifWaterfall.Visible) + { + this.ifWaterfall.RenderAndDraw(this._iftSpectrumPtr + offset, samples, this._waterfallTimout, this._fftTimer.Interval); + } + } + this._ifSpectrumAvailable = false; + } + + private unsafe void renderAFT(int afSamplerate) + { + bool render = this._streamControl.IsPlaying && this._afSpectrumSamples > 0; + if (base.WindowState == FormWindowState.Minimized) + { + render = false; + } + if (render) + { + int halfTheSamples = this._afSpectrumSamples / 2; + float* halfSpectrumPtr = this._afSpectrumPtr + halfTheSamples; + if (this.afAnalyzer.Visible) + { + if (this.afAnalyzer.SpectrumWidth != afSamplerate / 2) + { + this.afAnalyzer.DataType = DataType.AF; + this.afAnalyzer.SpectrumWidth = afSamplerate / 2; + this.afAnalyzer.CenterFrequency = (long)(afSamplerate / 4); + this.afAnalyzer.Frequency = 0L; + this.afAnalyzer.Zoom = (float)(this.chkAutoSize.Checked ? -1 : 1); + this.afWaterfall.DataType = this.afAnalyzer.DataType; + this.afWaterfall.SpectrumWidth = this.afAnalyzer.SpectrumWidth; + this.afWaterfall.CenterFrequency = this.afAnalyzer.CenterFrequency; + this.afWaterfall.Frequency = 0L; + this.afWaterfall.Zoom = this.afAnalyzer.Zoom; + if (this._vfo.DetectorType != DetectorType.WFM && this.ifAnalyzer.SpectrumWidth < this.afAnalyzer.FilterBandwidth) + { + this.filterBandwidthNumericUpDown.Value = (long)(this.ifAnalyzer.SpectrumWidth / 1000 * 1000); + } + } + if (--this._afTimeout <= 0) + { + this._afTimeout = this._spectrumTimeout; + this.afAnalyzer.Render(halfSpectrumPtr, halfTheSamples); + } + if (this.afWaterfall.Visible) + { + this.afWaterfall.RenderAndDraw(halfSpectrumPtr, halfTheSamples, this._waterfallTimout, this._fftTimer.Interval); + } + } + if (this.audiogram.Visible) + { + int bw = this.FilterBandwidth; + if (this._vfo.DetectorType == DetectorType.CW) + { + bw = this._vfo.CWToneShift * 4; + } + else if (this.waterfall.BandType != BandType.Center) + { + bw *= 2; + } + double f = 1.0; + if (this.chkAutoSize.Checked) + { + f = Math.Min(1.0, (double)((float)bw / (float)afSamplerate)); + } + int spectrumWidth = (int)((double)(afSamplerate / 2) * f); + if (this.audiogram.SpectrumWidth != spectrumWidth) + { + this.audiogram.SpectrumWidth = spectrumWidth; + this.audiogram.CenterFrequency = (long)(spectrumWidth / 2); + this.audiogram.Frequency = 0L; + if (spectrumWidth < 1000) + { + this.btnShowLog.Checked = false; + } + } + if (this.audiogram.WaveStart != this._streamControl.WaveStart) + { + this.audiogram.WaveStart = this._streamControl.WaveStart; + } + this.audiogram.RenderAndDraw(halfSpectrumPtr, (int)((double)halfTheSamples * f), this._audiogramTimout, this._fftTimer.Interval); + } + } + this._afSpectrumAvailable = false; + } + + private void performTimer_Tick(object sender, EventArgs e) + { + int avgCount = 30; + long elap = this._performTmr.Elaps(100); + if (elap > 0L) + { + this.labPerformTmr.Text = elap.ToString(); + } + if (this._floorValueNeeded >= -avgCount) + { + this._floorValueNeeded--; + } + if (this._floorValueNeeded <= 0 && this._floorValueNeeded >= -avgCount && this.spectrumAnalyzer.DataType == DataType.RF) + { + this._fftMinimum = this.getFFTminimum(this.spectrumAnalyzer.DataType) + (this._fftGain - 84f) / 4f; + if (this._floorValueNeeded == 0 || this._floorValueNeeded == -avgCount) + { + if (this._floorValueNeeded == 0) + { + this._fftAverageMin = this._fftMinimum; + } + else + { + this._fftMinimum = this._fftAverageMin; + } + if (this.fftAverageUpDown.Value > 0L) + { + this._fftMinimum -= 5f; + } + Console.WriteLine("_fftMinumum=" + this._fftMinimum.ToString() + ", fftGain=" + this._fftGain.ToString()); + this.tbFloorSA.Value = Math.Min(this.tbFloorSA.Maximum, Math.Max(this.tbFloorSA.Minimum, this.tbFloorSA.Minimum + this.tbFloorSA.Maximum - (int)this._fftMinimum)); + if (this._floorValueNeeded == -avgCount) + { + this.startSpeedCalc(); + } + } + else if (this._floorValueNeeded > -avgCount) + { + this._fftAverageMin = 0.95f * this._fftAverageMin + 0.05f * this._fftMinimum; + } + } + if (this._gainValueNeeded >= 0) + { + this._gainValueNeeded--; + } + if (this._gainValueNeeded == 1) + { + this.setRfGainFromSmeter(); + } + else if (this._gainValueNeeded == 0) + { + this.wideScope.Reset(); + } + this.spectrumAnalyzer.Perform(); + if (this.ifAnalyzer.Visible) + { + this.ifAnalyzer.Perform(); + } + if (this.afAnalyzer.Visible) + { + this.afAnalyzer.Perform(); + } + if (this.waterfall.Visible) + { + this.waterfall.Perform(); + } + else + { + int i = 1; + i++; + } + this.ifWaterfall.Perform(); + this.afWaterfall.Perform(); + this.audiogram.Perform(); + if (this.scopeCollapsiblePanel.PanelState == PanelStateOptions.Expanded) + { + this.scope.Perform(false); + } + if (this.wideScope.Visible) + { + this.wideScope.Perform(false); + } + if (this.SourceIsWaveFile) + { + int msec10 = (int)DateTime.Now.Subtract(this._streamControl.WaveStart).TotalMilliseconds / 10; + if (this._streamControl.IsPlaying && this._duration > 0) + { + this.playBar.Draw(msec10); + } + } + if ((double)this._streamControl.ClipLevel > 0.99) + { + this.audioButton.ForeColor = Color.CornflowerBlue; + return; + } + this.audioButton.ForeColor = Color.Lime; + } + + private void setRfGainFromSmeter() + { + double gain = -68.0 - 0.95 * (double)this.spectrumAnalyzer.SignalDbm + (double)this.dbmOffsetUpDown.Value; + if ((this.amRadioButton.Checked || this.samRadioButton.Checked || this.rawRadioButton.Checked) && this.spectrumAnalyzer.SignalDbm > -130) + { + this.tbRFgain.Value = (int)Math.Min((double)this.tbRFgain.Maximum, gain); + } + } + + private void setBftBins() + { + int sampleRate = (int)this._streamControl.SampleRate >> this._streamControl.DecimationStageCount; + int bftBins; + if (sampleRate < 16001) + { + bftBins = 1024; + } + else if (sampleRate < 32001) + { + bftBins = 2048; + } + else if (sampleRate < 64001) + { + bftBins = 4096; + } + else + { + bftBins = 8192; + } + if (this.btnShowLog.Checked) + { + bftBins *= 2; + } + for (int i = 0; i < this.bftResolutionComboBox.Items.Count - 1; i++) + { + if (this.getFrequency(this.bftResolutionComboBox.Items[i]) == bftBins) + { + this.bftResolutionComboBox.SelectedIndex = i; + return; + } + } + } + + private unsafe float getFFTminimum(DataType dataType) + { + int skip = this._actualFftBins / 10; + if (dataType == DataType.IF) + { + skip = (int)((float)(this.spectrumAnalyzer.SpectrumWidth - this.FilterBandwidth) * (float)this._actualFftBins / (float)this.spectrumAnalyzer.SpectrumWidth / 2f); + } + float fftMin; + float fftMax; + Fourier.AverageMinimum(this._rfSpectrumPtr, this._actualFftBins, skip, out fftMin, out fftMax); + return fftMin; + } + + private void fftTimer_Tick(object sender, EventArgs e) + { + if (!this._streamControl.IsBuffering) + { + return; + } + if (Utils.FastFFT) + { + this.labFftTmr.Text = this._fftSkips.ToString(); + } + this._fftTimer.Enabled = false; + if (Utils.FastFFT) + { + this.ProcessFFT(null); + return; + } + int sampleRate = (int)this._streamControl.SampleRate; + int ifSampleRate = sampleRate >> this._vfo.BaseBandDecimationStageCount; + int afSampleRate = sampleRate >> this._vfo.DecimationStageCount; + if (this._streamControl.SoundCardRatio > 1.0) + { + afSampleRate = (int)((double)afSampleRate / this._streamControl.SoundCardRatio); + } + DataType dataType = this.spectrumAnalyzer.DataType; + if (dataType == DataType.IF) + { + sampleRate = ifSampleRate; + } + else if (dataType == DataType.AF) + { + sampleRate = afSampleRate; + } + this.renderFFT(sampleRate); + this.renderIFT(ifSampleRate); + this.renderAFT(afSampleRate); + this.getWaterfallSpeed(); + this._fftTimer.Enabled = true; + } + + private void iqTimer_Tick(object sender, EventArgs e) + { + if (this.Text.Length == 0) + { + return; + } + string last = this.Text.Substring(this.Text.Length - 1); + if (last == ")") + { + Utils.Log("iqTimer start.", false); + this.playStopButton.SetColor(Color.Lime); + this.Text = MainForm._baseTitle + " [" + File.GetLastWriteTime(Assembly.GetExecutingAssembly().Location).ToString("dd-MMM-yyyy") + "]"; + } + else if (this.correctIQCheckBox.Checked) + { + this.Text = MainForm._baseTitle + string.Format(" - IQ Imbalance: Gain = {0:F3} Phase = {1:F3}°", this._iqBalancer.Gain, Math.Asin((double)this._iqBalancer.Phase) * 180.0 / 3.1415926535897931); + } + else if (this.SourceIsWaveFile) + { + string curFile = (this._streamControl.WaveFile == null) ? this._waveFile : this._streamControl.WaveFile.FileName; + int duration = (this._streamControl.WaveFile == null) ? 0 : this._streamControl.WaveFile.Duration; + if (!this.Text.Contains(curFile)) + { + if (curFile == this._waveFile) + { + this._duration = 0; + } + if (duration > 0) + { + this.playBar.DrawBackground(this._duration * 100, (this._duration + duration) * 100); + } + this._duration += duration; + } + this.Text = MainForm._baseTitle + " - " + curFile + string.Format(" [{0:00}m{1:00}] ", duration / 60, duration % 60); + } + else if (last != "]") + { + this.Text = MainForm._baseTitle; + } + if (this._vfo.SignalIsStereo) + { + this.Text += " ((( stereo )))"; + } + if (this.frequencyNumericUpDown.Value > 30000000m) + { + this.spectrumAnalyzer.StatusText = string.Empty; + } + if (this._vfo.DetectorType == DetectorType.WFM) + { + if (!string.IsNullOrEmpty(this._vfo.RdsStationName.Trim())) + { + this.spectrumAnalyzer.StatusText = this._vfo.RdsStationName; + } + if (!string.IsNullOrEmpty(this._vfo.RdsStationText)) + { + SpectrumAnalyzer spectrumAnalyzer = this.spectrumAnalyzer; + spectrumAnalyzer.StatusText = spectrumAnalyzer.StatusText + " [ " + this._vfo.RdsStationText + " ]"; + } + } + } + + private unsafe void BuildFFTWindow() + { + float[] window = FilterBuilder.MakeWindow(this._fftWindowType, this._fftBins); + fixed (float* windowPtr = window) + { + Utils.Memcpy(this._fftWindow, (void*)windowPtr, this._fftBins * 4); + } + } + + private unsafe void BuildBFTWindow() + { + float[] window = FilterBuilder.MakeWindow(this._fftWindowType, this._bftBins); + fixed (float* windowPtr = window) + { + Utils.Memcpy(this._bftWindow, (void*)windowPtr, this._bftBins * 4); + } + } + + private void iqSourceComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + this.StopRadio(); + this.spectrumAnalyzer.CenterFixed = this.SourceIsWaveFile; + this.waterfall.CenterFixed = this.SourceIsWaveFile; + this.afAnalyzer.CenterFixed = true; + this.playBar.Visible = this.SourceIsWaveFile; + if (!this.SourceIsWaveFile) + { + this.panSplitContainer.Height = this.scrollPanel.Top + this.scrollPanel.Height - this.panSplitContainer.Top; + } + else + { + this.panSplitContainer.Height = this.scrollPanel.Top + this.scrollPanel.Height - this.panSplitContainer.Top - this.playBar.Height; + } + string oldsampling = this.labSampling.Text; + this.labSampling.Text = "Min-outp sampling"; + this.configureSourceButton.Text = "Config"; + if (this.iqSourceComboBox.SelectedIndex == this.iqSourceComboBox.Items.Count - 1) + { + if (this._frontendController != null) + { + this._frontendController.Close(); + this._frontendController = null; + } + this.inputDeviceComboBox.Enabled = true; + this.outputDeviceComboBox.Enabled = true; + this.sampleRateComboBox.Enabled = true; + this.labSampling.Text = "Input sampling"; + this.storeSampling(oldsampling, this.labSampling.Text); + this.centerFreqNumericUpDown.Enabled = true; + this.centerFreqNumericUpDown.Value = 0L; + this.centerFreqNumericUpDown_ValueChanged(null, null); + this.frequencyNumericUpDown.Value = this._frequencyShift; + this.frequencyNumericUpDown_ValueChanged(null, null); + this.configureSourceButton.Visible = false; + return; + } + this.configureSourceButton.Visible = true; + if (this.iqSourceComboBox.SelectedIndex == this.iqSourceComboBox.Items.Count - 2) + { + if (this._frontendController != null) + { + this._frontendController.Close(); + this._frontendController = null; + } + this.configureSourceButton.Text = "Select"; + this.inputDeviceComboBox.Enabled = false; + this.outputDeviceComboBox.Enabled = true; + this.storeSampling(oldsampling, this.labSampling.Text); + this.latencyNumericUpDown.Enabled = true; + this.centerFreqNumericUpDown.Enabled = false; + if (this._formLoaded) + { + this.SelectWaveFile(); + } + return; + } + this.frequencyShiftCheckBox.Enabled = true; + this.frequencyShiftNumericUpDown.Enabled = this.frequencyShiftCheckBox.Checked; + string frontendName = this.iqSourceComboBox.SelectedItem; + try + { + if (this._frontendController != null) + { + this._frontendController.Close(); + } + this._frontendController = this._frontendControllers[frontendName]; + this._frontendController.Open(); + this.inputDeviceComboBox.Enabled = this._frontendController.IsSoundCardBased; + if (this._frontendController.IsSoundCardBased) + { + this.labSampling.Text = "Input Sampling"; + Regex regex = new Regex(this._frontendController.SoundCardHint, RegexOptions.IgnoreCase); + if (regex.ToString().Length > 0) + { + for (int i = 0; i < this.inputDeviceComboBox.Items.Count; i++) + { + string item = this.inputDeviceComboBox.Items[i].ToString(); + if (regex.IsMatch(item)) + { + this.inputDeviceComboBox.SelectedIndex = i; + break; + } + } + if (this._frontendController.Samplerate > 0.0) + { + this.sampleRateComboBox.Text = this._frontendController.Samplerate.ToString(); + } + } + } + this.storeSampling(oldsampling, this.labSampling.Text); + this._vfo.Frequency = 0; + this.centerFreqNumericUpDown.Enabled = true; + if (this.centerFreqNumericUpDown.Value == 0L) + { + this.centerFreqNumericUpDown.Value = this._frontendController.Frequency; + this.centerFreqNumericUpDown_ValueChanged(null, null); + } + } + catch (Exception ex) + { + if (this._frontendController != null) + { + if (this._frontendController is ExtIOController) + { + this._frontendController.Stop(); + } + this._frontendController.Close(); + } + this._frontendController = null; + MessageBox.Show(frontendName + " is either not connected or its driver is not working properly.\n" + ex.Message, "Information", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); + this.iqSourceComboBox.SelectedIndex = this.iqSourceComboBox.Items.Count - 1; + } + } + + private void storeSampling(string oldSampling, string newSampling) + { + if (oldSampling == newSampling) + { + return; + } + if (newSampling.Substring(0, 5) == "Input") + { + if (this._streamControl.MinOutputSampleRate > 18000) + { + Utils.SaveSetting("minOutputSampleRate", this._streamControl.MinOutputSampleRate.ToString()); + } + this.sampleRateComboBox.Text = Utils.GetStringSetting("sampleRate", "32000") + " s/sec"; + } + else + { + if (this.sampleRateComboBox.SelectedIndex >= 0) + { + Utils.SaveSetting("sampleRate", this.sampleRateComboBox.Text.Replace(" s/sec", "")); + } + this.sampleRateComboBox.Text = Utils.GetStringSetting("minOutputSampleRate", "18000") + " s/sec"; + } + for (int i = 0; i < this.sampleRateComboBox.Items.Count; i++) + { + if (this.sampleRateComboBox.Items[i] == this.sampleRateComboBox.Text) + { + this.sampleRateComboBox.SelectedIndex = i; + } + } + } + + private void SelectWaveFile() + { + if (this.openDlg.ShowDialog() == DialogResult.OK) + { + this.StopRadio(); + this._waveFile = this.openDlg.FileName; + this.playStopButton_Click(null, null); + } + } + + private void Open() + { + AudioDevice inputDevice = null; + if (this.inputDeviceComboBox.Items.Count > 0) + { + inputDevice = this._inputDevices[this.inputDeviceComboBox.SelectedIndex]; + } + if (this.outputDeviceComboBox.Items.Count == 0) + { + throw new ApplicationException("No audio output device found."); + } + AudioDevice outputDevice = this._outputDevices[this.outputDeviceComboBox.SelectedIndex]; + long oldCenterFrequency = this.centerFreqNumericUpDown.Value; + double sampleRate = 0.0; + Match match = Regex.Match(this.sampleRateComboBox.Text, "([0-9\\.]+)", RegexOptions.IgnoreCase); + if (match.Success) + { + sampleRate = Utils.ValD(match.Groups[1].Value, 0.0); + } + if (this.SourceIsWaveFile) + { + this._streamControl.MinOutputSampleRate = (int)sampleRate; + } + else if (this._frontendController == null || this._frontendController.IsSoundCardBased) + { + this._streamControl.MinOutputSampleRate = Utils.GetIntSetting("minOutputSampleRate", 18000); + } + else + { + this._streamControl.MinOutputSampleRate = (int)sampleRate; + } + if (this.SourceIsWaveFile) + { + if (!File.Exists(this._waveFile)) + { + throw new ApplicationException("File '" + this._waveFile + "'not found."); + } + this._duration = this._streamControl.OpenFile(this._waveFile, outputDevice.Index, (int)this.latencyNumericUpDown.Value); + this.playBar.DrawBackground(0, this._duration * 100); + this.waterfall.RecordStart = this.getRecordStartFromFile(this._waveFile); + this.audiogram.RecordStart = this.waterfall.RecordStart; + this.waterfall.ScanLineMsec = 999; + this.audiogram.ScanLineMsec = 999; + match = Regex.Match(Path.GetFileName(this._waveFile), "([0-9]+)kHz", RegexOptions.IgnoreCase); + if (match.Success) + { + int center = int.Parse(match.Groups[1].Value) * 1000; + this.centerFreqNumericUpDown.Value = (long)center; + } + else + { + this.centerFreqNumericUpDown.Value = 0L; + } + this.centerFreqNumericUpDown_ValueChanged(null, null); + if (-this.frequencyShiftNumericUpDown.Value > this.centerFreqNumericUpDown.Value) + { + this.frequencyShiftCheckBox.Checked = false; + } + } + else if (this._frontendController == null || this._frontendController.IsSoundCardBased) + { + if (inputDevice == null) + { + throw new ApplicationException("No audio input device found."); + } + this._streamControl.OpenSoundDevice(inputDevice.Index, outputDevice.Index, sampleRate, (int)this.latencyNumericUpDown.Value); + } + else + { + this._streamControl.OpenPlugin(this._frontendController, outputDevice.Index, (int)this.latencyNumericUpDown.Value); + } + this._vfo.SampleRate = this._streamControl.SampleRate; + this._vfo.DecimationStageCount = this._streamControl.DecimationStageCount; + int spectrumWidth = (int)this._streamControl.SampleRate; + this.labSpectrum.Text = ((float)spectrumWidth / 1000f).ToString() + " kHz"; + int i = this.cmbCenterStep.Items.Count - 1; + while (i >= 0 && this.getFrequency(this.cmbCenterStep.Items[i].ToString()) > spectrumWidth) + { + i--; + } + this.cmbCenterStep.SelectedIndex = i; + this.frequencyNumericUpDown.Maximum = this.centerFreqNumericUpDown.Value + (long)((int)(this._streamControl.SampleRate / 2.0)) + this._frequencyShift; + this.frequencyNumericUpDown.Minimum = this.centerFreqNumericUpDown.Value - (long)((int)(this._streamControl.SampleRate / 2.0)) + this._frequencyShift; + if (this.centerFreqNumericUpDown.Value != oldCenterFrequency) + { + this.frequencyNumericUpDown.Value = this.centerFreqNumericUpDown.Value + this._frequencyShift; + this.fftZoomTrackBar.Value = 0; + this.fftZoomCombo.SelectedIndex = 0; + this.fftZoomTrackBar_ValueChanged(null, null); + } + this.frequencyNumericUpDown_ValueChanged(null, null); + this.BuildFFTWindow(); + this.BuildBFTWindow(); + this._fftSkips = -2; + } + + private DateTime getRecordStartFromFile(string waveFile) + { + Path.GetFileName(waveFile); + string[] fields = waveFile.Split(new char[] + { + '_' + }); + DateTime recordStart = DateTime.MinValue; + if (fields.Length >= 3) + { + string date = fields[1]; + string time = fields[2]; + if (time.Substring(time.Length - 1, 1).ToUpper() == "Z") + { + time = time.Substring(0, time.Length - 1); + } + if (!DateTime.TryParseExact(date + time, "yyyyMMddHHmmss", null, DateTimeStyles.None, out recordStart)) + { + recordStart = DateTime.MinValue; + } + } + if (recordStart == DateTime.MinValue) + { + recordStart = File.GetCreationTime(waveFile); + } + if (this.useTimestampsCheckBox.Text != "UTC") + { + recordStart = recordStart.ToLocalTime(); + } + return recordStart; + } + + private void audioGainTrackBar_ValueChanged(object sender, EventArgs e) + { + this._streamControl.AudioGain = (float)this.audioGainTrackBar.Value; + this.NotifyPropertyChanged("AudioGain"); + } + + private void filterAudioCheckBox_CheckStateChanged(object sender, EventArgs e) + { + this._vfo.FilterAudio = this.filterAudioCheckBox.Checked; + this.NotifyPropertyChanged("FilterAudio"); + } + + private void playStopButton_Click(object sender, EventArgs e) + { + try + { + if (this._streamControl.IsPlaying) + { + this.toolTip.Active = true; + this.StopRadio(); + } + else + { + this.toolTip.Active = false; + this.StartRadio(); + } + } + catch (Exception ex) + { + this.StopRadio(); + MessageBox.Show(this, ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand); + } + } + + private void frequencyNumericUpDown_ValueChanged(object sender, EventArgs e) + { + if (this._frequencyChangeBusy) + { + return; + } + long freq = (long)this.frequencyNumericUpDown.Value; + this._frequencyChangeBusy = true; + if (!this.centerFreqNumericUpDown.Enabled) + { + if (freq < this.frequencyNumericUpDown.Minimum) + { + freq = (long)this.frequencyNumericUpDown.Minimum; + } + if (freq > this.frequencyNumericUpDown.Maximum) + { + freq = (long)this.frequencyNumericUpDown.Maximum; + } + this.frequencyNumericUpDown.Value = freq; + } + else if ((float)freq < (float)this.waterfall.DisplayFrequency - (float)this.waterfall.SpectrumWidth / this.waterfall.Zoom / this._frequencyBounds || (float)freq > (float)this.waterfall.DisplayFrequency + (float)this.waterfall.SpectrumWidth / this.waterfall.Zoom / this._frequencyBounds) + { + long oldVfo = this.spectrumAnalyzer.Frequency - this.spectrumAnalyzer.CenterFrequency; + this.centerFreqNumericUpDown.Value = freq - oldVfo - this._frequencyShift; + if (this.centerFreqNumericUpDown.Value < 0L) + { + this.centerFreqNumericUpDown.Value = 0L; + } + } + this._frequencyBounds = 2.2f; + this._frequencyChangeBusy = false; + int oldFrequency = (int)(this.spectrumAnalyzer.Frequency + 500L) / 1000; + this._vfo.Frequency = (int)(this.frequencyNumericUpDown.Value - this.centerFreqNumericUpDown.Value - this._frequencyShift); + this.spectrumAnalyzer.Frequency = (long)this.frequencyNumericUpDown.Value; + this.waterfall.Frequency = this.spectrumAnalyzer.Frequency; + this.ifAnalyzer.Frequency = this.spectrumAnalyzer.Frequency; + this.ifWaterfall.Frequency = this.spectrumAnalyzer.Frequency; + if (this._vfo.DetectorType == DetectorType.WFM) + { + this._vfo.RdsReset(); + } + this.NotifyPropertyChanged("Frequency"); + if (this._streamControl.IsPlaying && this.spectrumAnalyzer.DataType == DataType.RF) + { + long frequency = (long)(this.frequencyNumericUpDown.Value + 500m) / 1000L; + if (frequency == (long)oldFrequency) + { + return; + } + if (frequency > 3000000L) + { + return; + } + string station = ""; + string stations; + if (!this._frequencyList.TryGetValue((int)frequency, out stations)) + { + stations = ""; + } + if (stations.Length > 0) + { + int i = stations.IndexOf(';'); + if (i < 0) + { + i = stations.Length; + } + if (i > 0) + { + station = stations.Substring(0, i); + string[] fields = station.Split(new char[] + { + ',' + }); + if (fields.GetUpperBound(0) >= 9) + { + i = fields[7].IndexOf('('); + string site = (i < 2) ? fields[7] : fields[7].Substring(0, i - 1); + int dbm = Utils.Val(fields[6], 0) - 107; + station = string.Concat(new string[] + { + fields[3], + "/", + fields[5], + " ", + fields[4], + " - ", + site, + ", ", + fields[9], + "km ", + fields[10], + "kW ", + Utils.Signal(dbm, this.cmbDbm.SelectedIndex, true) + }); + } + } + } + this.spectrumAnalyzer.StatusText = station; + this.spectrumAnalyzer.StationList = stations; + } + } + + private void spectrumAnalyzer_StationDatachanged(object sender, EventArgs e) + { + string stations = this.spectrumAnalyzer.StationList; + if (stations == null) + { + return; + } + int frequency = (int)(this.spectrumAnalyzer.Frequency + 500L) / 1000; + if (this._frequencyList.ContainsKey(frequency)) + { + this._frequencyList[frequency] = stations; + } + } + + private void centerFreqNumericUpDown_ValueChanged(object sender, EventArgs e) + { + if (this.centerFreqNumericUpDown.Value < 0L) + { + this.centerFreqNumericUpDown.Value = 0L; + } + long newCenterFreq = this.centerFreqNumericUpDown.Value; + if (Math.Abs(newCenterFreq - this.spectrumAnalyzer.CenterFrequency) > (long)this.waterfall.SpectrumWidth && this._streamControl.IsPlaying) + { + this._floorValueNeeded = 10; + } + this.waterfall.CenterFrequency = newCenterFreq + this._frequencyShift; + this.spectrumAnalyzer.CenterFrequency = newCenterFreq + this._frequencyShift; + long newFreq = newCenterFreq + (long)this._vfo.Frequency + this._frequencyShift; + this.frequencyNumericUpDown.Maximum = 9223372036854775807m; + this.frequencyNumericUpDown.Minimum = -9223372036854775808m; + this.frequencyNumericUpDown.Value = newFreq; + if (this._vfo.SampleRate > 0.0) + { + this.frequencyNumericUpDown.Maximum = newCenterFreq + (long)((int)(this._vfo.SampleRate / 2.0)) + this._frequencyShift; + this.frequencyNumericUpDown.Minimum = newCenterFreq - (long)((int)(this._vfo.SampleRate / 2.0)) + this._frequencyShift; + } + if (this.snapFrequencyCheckBox.Checked) + { + if (this.waterfall.StepSize > 0) + { + this.frequencyNumericUpDown.Maximum = (long)this.frequencyNumericUpDown.Maximum / (long)this.waterfall.StepSize * (long)this.waterfall.StepSize; + } + this.frequencyNumericUpDown.Minimum = 2L * this.spectrumAnalyzer.CenterFrequency - this.frequencyNumericUpDown.Maximum; + } + if (this._frontendController != null && !this.SourceIsWaveFile && !this._extioChangingFrequency) + { + lock (this) + { + this._frequencyToSet = newCenterFreq; + } + } + if (this._vfo.DetectorType == DetectorType.WFM) + { + this._vfo.RdsReset(); + } + this.NotifyPropertyChanged("CenterFrequency"); + } + + private void TuneThreadProc(object state) + { + Console.WriteLine("TuneThread started"); + Utils.Log("TuneThread started", true); + while (!this._terminated) + { + long copyOfFrequencyToSet; + lock (this) + { + copyOfFrequencyToSet = this._frequencyToSet; + } + if (this._frontendController != null && this._frequencySet != copyOfFrequencyToSet) + { + this._frequencySet = copyOfFrequencyToSet; + this._frontendController.Frequency = copyOfFrequencyToSet; + } + Thread.Sleep(1); + } + Console.WriteLine("TuneThread stopped"); + } + + private void panview_NotchChanged(object sender, NotchEventArgs e) + { + gButton chk = (gButton)this.audioCollapsiblePanel.Controls["chkNotch" + e.Notch.ToString()]; + string i = ((UserControl)sender).Name.Substring(0, 4); + if (i != "spec") + { + this.spectrumAnalyzer.SetNotch(e.Notch, e.Offset, e.Width, e.Active); + } + if (i != "base") + { + this.ifAnalyzer.SetNotch(e.Notch, e.Offset, e.Width, e.Active); + } + if (!e.Active) + { + this._vfo.SetNotch(e.Notch, 0, 0); + } + else + { + this._vfo.SetNotch(e.Notch, e.Offset, e.Width); + } + if (e.Active && e.Width > 0) + { + chk.Checked = true; + } + if (!e.Active && e.Width < 0) + { + chk.Checked = false; + } + } + + private void panview_FrequencyChanged(object sender, FrequencyEventArgs e) + { + if (e.Frequency >= this.frequencyNumericUpDown.Minimum && e.Frequency <= this.frequencyNumericUpDown.Maximum) + { + if (this.scopeCollapsiblePanel.PanelState == PanelStateOptions.Expanded && !this.agcCheckBox.Checked) + { + this.agcCheckBox.Checked = true; + } + this._frequencyBounds = 2f; + this.frequencyNumericUpDown.Value = e.Frequency; + return; + } + e.Cancel = true; + } + + private void panview_DisplayFrequencyChanged(object sender, FrequencyEventArgs e) + { + if (this.centerFreqNumericUpDown.Enabled) + { + return; + } + this.spectrumAnalyzer.DisplayFrequency = e.Frequency; + this.waterfall.DisplayFrequency = e.Frequency; + this.ifAnalyzer.Frequency = this.spectrumAnalyzer.Frequency; + this.ifWaterfall.Frequency = this.spectrumAnalyzer.Frequency; + } + + private void panview_CenterFrequencyChanged(object sender, FrequencyEventArgs e) + { + if (this.SourceIsWaveFile) + { + e.Cancel = true; + return; + } + long f = e.Frequency - this._frequencyShift; + if (f < 0L) + { + f = 0L; + e.Cancel = true; + } + if (Math.Abs(f - this.centerFreqNumericUpDown.Value) >= (long)(this.waterfall.SpectrumWidth - 1) && this._streamControl.IsPlaying) + { + this._floorValueNeeded = 5; + } + if (this.scopeCollapsiblePanel.PanelState == PanelStateOptions.Expanded && !this.agcCheckBox.Checked) + { + this.agcCheckBox.Checked = true; + } + this.centerFreqNumericUpDown.Value = f; + } + + private void panview_BandwidthChanged(object sender, BandwidthEventArgs e) + { + if ((long)e.Bandwidth < this.filterBandwidthNumericUpDown.Minimum) + { + e.Bandwidth = (int)this.filterBandwidthNumericUpDown.Minimum; + } + else if ((long)e.Bandwidth > this.filterBandwidthNumericUpDown.Maximum) + { + e.Bandwidth = (int)this.filterBandwidthNumericUpDown.Maximum; + } + int maxRate = (int)this._streamControl.SampleRate >> this._vfo.BaseBandDecimationStageCount; + if (this._streamControl.SoundCardRatio > 1.0) + { + maxRate = (int)((double)maxRate / this._streamControl.SoundCardRatio); + } + e.Bandwidth = Math.Min(e.Bandwidth, maxRate); + this._bandwidthChangeBusy = true; + this.filterBandwidthNumericUpDown.Value = (long)e.Bandwidth; + this._bandwidthChangeBusy = false; + this._vfo.FrequencyOffset = e.Offset; + this.spectrumAnalyzer.FilterOffset = (this.waterfall.FilterOffset = e.Offset); + this.ifAnalyzer.FilterOffset = (this.ifWaterfall.FilterOffset = e.Offset); + this.afAnalyzer.FilterOffset = (this.afWaterfall.FilterOffset = e.Offset); + } + + private void panview_AutoZoomed(object sender, EventArgs e) + { + if (this.ifAnalyzer.Visible) + { + this.ifAnalyzer.Zoom = (float)(this.chkAutoSize.Checked ? -1 : 1); + } + if (this.ifWaterfall.Visible) + { + this.ifWaterfall.Zoom = (float)(this.chkAutoSize.Checked ? -1 : 1); + } + if (this.afAnalyzer.Visible) + { + this.afAnalyzer.Zoom = (float)(this.chkAutoSize.Checked ? -1 : 1); + } + if (this.afWaterfall.Visible) + { + this.afWaterfall.Zoom = (float)(this.chkAutoSize.Checked ? -1 : 1); + } + } + + private void filterBandwidthNumericUpDown_ValueChanged(object sender, EventArgs e) + { + if (this._vfo.DetectorType != DetectorType.WFM) + { + int baseBandDecimationStageCount = this._vfo.BaseBandDecimationStageCount; + } + this._vfo.Bandwidth = (int)this.filterBandwidthNumericUpDown.Value; + this.spectrumAnalyzer.FilterBandwidth = this._vfo.Bandwidth; + this.waterfall.FilterBandwidth = this._vfo.Bandwidth; + this.ifAnalyzer.FilterBandwidth = this._vfo.Bandwidth; + this.ifWaterfall.FilterBandwidth = this._vfo.Bandwidth; + this.audiogram.FilterBandwidth = this._vfo.Bandwidth; + this.afAnalyzer.FilterBandwidth = this._vfo.Bandwidth; + this.afWaterfall.FilterBandwidth = this._vfo.Bandwidth; + int bw = this._vfo.Bandwidth; + if (this._vfo.DetectorType == DetectorType.AM || this._vfo.DetectorType == DetectorType.SAM || this._vfo.DetectorType == DetectorType.DSB) + { + bw /= 2; + } + int i = this.cmbBandWidth.Items.Count - 1; + while (i > 0 && this.getFrequency(this.cmbBandWidth.Items[i]) != bw) + { + i--; + } + if (i == 0) + { + this.cmbBandWidth.Items[0] = bw.ToString(); + } + this.cmbBandWidth.SelectedIndex = i; + this.NotifyPropertyChanged("FilterBandwidth"); + } + + private void filterOrderNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._vfo.FilterOrder = (int)this.filterOrderNumericUpDown.Value; + this.NotifyPropertyChanged("FilterOrder"); + } + + private void filterTypeComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + this._vfo.WindowType = this.filterTypeComboBox.SelectedIndex + WindowType.Hamming; + this.NotifyPropertyChanged("FilterType"); + } + + private void autoCorrectIQCheckBox_CheckStateChanged(object sender, EventArgs e) + { + this._iqBalancer.AutoBalanceIQ = this.correctIQCheckBox.Checked; + this.NotifyPropertyChanged("CorrectIq"); + } + + private void frequencyShiftCheckBox_CheckStateChanged(object sender, EventArgs e) + { + this.frequencyShiftNumericUpDown.Enabled = this.frequencyShiftCheckBox.Checked; + this.frequencyNumericUpDown.Minimum = -9223372036854775808m; + this.frequencyNumericUpDown.Maximum = 9223372036854775807m; + if (this.frequencyShiftCheckBox.Checked) + { + this._frequencyShift = this.frequencyShiftNumericUpDown.Value; + this.frequencyNumericUpDown.Value += this._frequencyShift; + } + else + { + long shift = this._frequencyShift; + this._frequencyShift = 0L; + this.frequencyNumericUpDown.Value -= shift; + } + this.centerFreqNumericUpDown_ValueChanged(null, null); + this.NotifyPropertyChanged("FrequencyShiftEnabled"); + } + + private void frequencyShiftNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._frequencyShift = this.frequencyShiftNumericUpDown.Value; + this.centerFreqNumericUpDown_ValueChanged(null, null); + this.NotifyPropertyChanged("FrequencyShift"); + } + + private void modeRadioButton_CheckStateChanged(object sender, EventArgs e) + { + this.filterOrderNumericUpDown.Enabled = !this.wfmRadioButton.Checked; + this.agcDecayNumericUpDown.Enabled = (!this.wfmRadioButton.Checked && !this.nfmRadioButton.Checked); + this.agcSlopeNumericUpDown.Enabled = (!this.wfmRadioButton.Checked && !this.nfmRadioButton.Checked); + this.agcThresholdNumericUpDown.Enabled = (!this.wfmRadioButton.Checked && !this.nfmRadioButton.Checked); + this.agcUseHangCheckBox.Enabled = (!this.wfmRadioButton.Checked && !this.nfmRadioButton.Checked); + this.agcCheckBox.Enabled = (!this.wfmRadioButton.Checked && !this.nfmRadioButton.Checked); + this.useSquelchCheckBox.Enabled = (this.nfmRadioButton.Checked || this.amRadioButton.Checked); + this.squelchNumericUpDown.Enabled = (this.useSquelchCheckBox.Enabled && this.useSquelchCheckBox.Checked); + this.cwShiftNumericUpDown.Enabled = (this.cwRadioButton.Checked || this.rawRadioButton.Checked); + if (this._vfo.DetectorType == DetectorType.RAW && !this.rawRadioButton.Checked) + { + this.audioGainTrackBar.Value = Utils.GetIntSetting("audioGain", 30); + } + bool snap = this.snapFrequencyCheckBox.Checked; + this.snapFrequencyCheckBox.Checked = false; + if (this._formLoaded || !this.wfmRadioButton.Checked) + { + this.filterAudioCheckBox.Checked = true; + } + bool check = sender != null && ((gButton)sender).Checked; + if (!this._initializing && !check) + { + this._modeStates[this._vfo.DetectorType] = this.GetModeState(); + } + if (this.amRadioButton.Checked) + { + this._vfo.DetectorType = DetectorType.AM; + } + else if (this.samRadioButton.Checked) + { + this.filterBandwidthNumericUpDown.Value = 6000L; + this._vfo.DetectorType = DetectorType.SAM; + } + else if (this.dsbRadioButton.Checked) + { + this._vfo.DetectorType = DetectorType.DSB; + } + else if (this.lsbRadioButton.Checked) + { + this._vfo.DetectorType = DetectorType.LSB; + } + else if (this.usbRadioButton.Checked) + { + this._vfo.DetectorType = DetectorType.USB; + } + else if (this.nfmRadioButton.Checked) + { + this._vfo.DetectorType = DetectorType.NFM; + } + else if (this.cwRadioButton.Checked) + { + this._vfo.DetectorType = DetectorType.CW; + } + else if (this.wfmRadioButton.Checked) + { + this._vfo.DetectorType = DetectorType.WFM; + for (int i = 1; i < this.cmbBandWidth.Items.Count; i++) + { + this.cmbBandWidth.setEnabled(i, true); + } + } + else + { + if (!this.rawRadioButton.Checked) + { + return; + } + this._vfo.DetectorType = DetectorType.RAW; + this.waterfall.FilterOffset = 0; + if (this._formLoaded) + { + this.audioGainTrackBar.Value = 0; + } + } + if (this._vfo.DetectorType == DetectorType.LSB) + { + this.waterfall.BandType = BandType.Lower; + this.waterfall.FilterOffset = 400; + } + else if (this._vfo.DetectorType == DetectorType.USB) + { + this.waterfall.BandType = BandType.Upper; + this.waterfall.FilterOffset = 400; + } + else + { + this.waterfall.BandType = BandType.Center; + this.waterfall.FilterOffset = 0; + } + this.spectrumAnalyzer.BandType = this.waterfall.BandType; + this.ifAnalyzer.BandType = (this.ifWaterfall.BandType = this.waterfall.BandType); + this.afAnalyzer.BandType = (this.afWaterfall.BandType = this.waterfall.BandType); + if (check) + { + this.SetModeState(this._modeStates[this._vfo.DetectorType]); + this.fmStereoCheckBox.Enabled = (this.wfmRadioButton.Checked || this.samRadioButton.Checked); + this.fmStereoCheckBox.Text = (this.samRadioButton.Checked ? " Pseud" : "Ster."); + } + this.spectrumAnalyzer.FilterOffset = this.waterfall.FilterOffset; + this.ifAnalyzer.FilterOffset = (this.ifWaterfall.FilterOffset = this.waterfall.FilterOffset); + this.afAnalyzer.FilterOffset = (this.afWaterfall.FilterOffset = this.waterfall.FilterOffset); + this.spectrumAnalyzer.DetectorType = this._vfo.DetectorType; + this.ifAnalyzer.DetectorType = this._vfo.DetectorType; + this.afAnalyzer.DetectorType = this._vfo.DetectorType; + this.afWaterfall.DetectorType = this._vfo.DetectorType; + this.afAnalyzer.BandType = this.waterfall.BandType; + this.afAnalyzer.Zoom = (float)(this.chkAutoSize.Checked ? -1 : 1); + this.scope.ShowLines = (this._vfo.DetectorType == DetectorType.AM || this._vfo.DetectorType == DetectorType.SAM); + this.snapFrequencyCheckBox.CheckedChanged -= this.stepSizeComboBox_SelectedIndexChanged; + this.snapFrequencyCheckBox.Checked = snap; + this.snapFrequencyCheckBox.CheckedChanged += this.stepSizeComboBox_SelectedIndexChanged; + this.NotifyPropertyChanged("DetectorType"); + } + + private void fmStereoCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._vfo.Stereo = this.fmStereoCheckBox.Checked; + this.NotifyPropertyChanged("FmStereo"); + } + + private void cwShiftNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._vfo.CWToneShift = (int)this.cwShiftNumericUpDown.Value; + this.waterfall.FilterOffset = this._vfo.CWToneShift - this._vfo.Bandwidth / 2; + this.ifAnalyzer.FilterOffset = this.waterfall.FilterOffset; + this.ifWaterfall.FilterOffset = this.waterfall.FilterOffset; + this.afAnalyzer.FilterOffset = this.waterfall.FilterOffset; + this.afWaterfall.FilterOffset = this.waterfall.FilterOffset; + this.spectrumAnalyzer.FilterOffset = this.waterfall.FilterOffset; + this.NotifyPropertyChanged("CWShift"); + } + + private void squelchNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._vfo.SquelchThreshold = (int)this.squelchNumericUpDown.Value; + this.NotifyPropertyChanged("SquelchThreshold"); + } + + private void useSquelchCheckBox_CheckedChanged(object sender, EventArgs e) + { + this.squelchNumericUpDown.Enabled = this.useSquelchCheckBox.Checked; + if (this.useSquelchCheckBox.Checked) + { + this._vfo.SquelchThreshold = (int)this.squelchNumericUpDown.Value; + } + else + { + this._vfo.SquelchThreshold = 0; + } + this.NotifyPropertyChanged("SquelchEnabled"); + } + + private void stepSizeComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + this.spectrumAnalyzer.UseSnap = this.snapFrequencyCheckBox.Checked; + this.waterfall.UseSnap = this.snapFrequencyCheckBox.Checked; + int stepSize = this.getFrequency(this.stepSizeComboBox.Text); + if (stepSize > 0) + { + this.frequencyNumericUpDown.Increment = stepSize; + this.spectrumAnalyzer.StepSize = stepSize; + this.waterfall.StepSize = stepSize; + this.ifAnalyzer.StepSize = stepSize; + this.ifWaterfall.StepSize = stepSize; + this.afAnalyzer.StepSize = stepSize; + this.ifWaterfall.StepSize = stepSize; + this.audiogram.StepSize = stepSize; + if (this.snapFrequencyCheckBox.Checked && !this.SourceIsWaveFile) + { + this.frequencyNumericUpDown.Maximum = decimal.MaxValue; + this.frequencyNumericUpDown.Minimum = decimal.MinValue; + this.centerFreqNumericUpDown.Value = (this.centerFreqNumericUpDown.Value + (long)(stepSize / 2)) / (long)stepSize * (long)stepSize; + this.frequencyNumericUpDown.Value = ((long)this.frequencyNumericUpDown.Value + (long)(stepSize / 2)) / (long)stepSize * (long)stepSize; + this.frequencyNumericUpDown.Maximum = this.centerFreqNumericUpDown.Value + this._frequencyShift + (long)((int)(this._vfo.SampleRate / 2.0)); + this.frequencyNumericUpDown.Minimum = this.centerFreqNumericUpDown.Value + this._frequencyShift - (long)((int)(this._vfo.SampleRate / 2.0)); + this.frequencyNumericUpDown.Maximum = (long)this.frequencyNumericUpDown.Maximum / (long)this.waterfall.StepSize * (long)this.waterfall.StepSize; + this.frequencyNumericUpDown.Minimum = 2L * this.spectrumAnalyzer.CenterFrequency - this.frequencyNumericUpDown.Maximum; + } + } + if (sender == this.snapFrequencyCheckBox) + { + this.NotifyPropertyChanged("SnapToGrid"); + } + this.NotifyPropertyChanged("StepSize"); + } + + private void cmbCenterStep_SelectedIndexChanged(object sender, EventArgs e) + { + this.spectrumAnalyzer.UseSnap = this.snapFrequencyCheckBox.Checked; + this.waterfall.UseSnap = this.snapFrequencyCheckBox.Checked; + int stepSize = this.getFrequency(this.cmbCenterStep.Text); + if (stepSize > 0) + { + this.centerFreqNumericUpDown.Increment = stepSize; + this.spectrumAnalyzer.CenterStep = stepSize; + this.ifAnalyzer.CenterStep = stepSize; + } + this.NotifyPropertyChanged("CenterStep"); + } + + private void frontendGuiButton_Click(object sender, EventArgs e) + { + if (this.SourceIsWaveFile) + { + this.SelectWaveFile(); + return; + } + if (this._frontendController != null) + { + this._frontendController.ShowSettingGUI(this); + } + } + + private void agcCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._vfo.UseAGC = this.agcCheckBox.Checked; + this.agcThresholdNumericUpDown.Enabled = this.agcCheckBox.Checked; + this.agcDecayNumericUpDown.Enabled = this.agcCheckBox.Checked; + this.agcSlopeNumericUpDown.Enabled = this.agcCheckBox.Checked; + this.agcUseHangCheckBox.Enabled = this.agcCheckBox.Checked; + if (this.agcCheckBox.Checked) + { + this.tbRFgain.Value = 0; + } + else + { + this.setRfGainFromSmeter(); + } + this.wideScope.Reset(); + if (!this.agcCheckBox.Checked) + { + this.scope.Reset(); + } + this.NotifyPropertyChanged("UseAgc"); + } + + private void agcUseHangCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._vfo.AgcHang = this.agcUseHangCheckBox.Checked; + this.NotifyPropertyChanged("UseHang"); + } + + private void agcDecayNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._vfo.AgcDecay = (float)this.agcDecayNumericUpDown.Value; + this.agcDecayLabel.Text = this.agcDecayNumericUpDown.Value.ToString(); + this.NotifyPropertyChanged("AgcDecay"); + } + + private void agcThresholdNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._vfo.AgcThreshold = (float)((int)this.agcThresholdNumericUpDown.Value); + this.NotifyPropertyChanged("AgcThreshold"); + } + + private void agcSlopeNumericUpDown_ValueChanged(object sender, EventArgs e) + { + this._vfo.AgcSlope = (float)((int)this.agcSlopeNumericUpDown.Value); + this.NotifyPropertyChanged("AgcSlope"); + } + + private void swapIQCheckBox_CheckedChanged(object sender, EventArgs e) + { + this._streamControl.SwapIQ = this.swapIQCheckBox.Checked; + this.NotifyPropertyChanged("SwapIq"); + } + + private void chkFFT_CheckedChanged(object sender, EventArgs e) + { + this.panSplitContainer.Panel1Collapsed = false; + this.panSplitContainer.Panel2Collapsed = (!this.chkWF.Checked && !this.chkIF.Checked && this.cmbAudio.SelectedIndex == 0); + this.panSplitContainer2.Panel1Collapsed = !this.chkWF.Checked; + this.panSplitContainer2.Panel2Collapsed = (!this.chkIF.Checked && this.cmbAudio.SelectedIndex == 0); + this.panSplitContainer3.Panel1Collapsed = !this.chkIF.Checked; + this.panSplitContainer3.Panel2Collapsed = (this.cmbAudio.SelectedIndex == 0); + this.panSplitContainer5.Panel1Collapsed = (this.cmbAudio.SelectedIndex != 1 && this.cmbAudio.SelectedIndex != 2); + this.panSplitContainer5.Panel2Collapsed = (this.cmbAudio.SelectedIndex != 1 && this.cmbAudio.SelectedIndex != 3); + this.panSplitContainer4.Panel2Collapsed = (this.cmbAudio.SelectedIndex != 1 && this.cmbAudio.SelectedIndex != 0); + this.ifAnalyzer.Visible = this.chkIF.Checked; + this.ifWaterfall.Visible = (this.chkIF.Checked && (this.cmbAudio.SelectedIndex == 1 || this.cmbAudio.SelectedIndex == 0)); + this.afAnalyzer.Visible = (this.cmbAudio.SelectedIndex == 1); + this.afWaterfall.Visible = (this.cmbAudio.SelectedIndex == 1); + this.panelAG.Visible = (this.cmbAudio.SelectedIndex == 2); + this.audiogram.Visible = (this.cmbAudio.SelectedIndex == 2); + this.wideScope.Visible = (this.cmbAudio.SelectedIndex == 3); + if (!this.audiogram.Visible) + { + this.tbAgSpeed.Value = Math.Min(this.tbAgSpeed.Maximum - 2, this.tbAgSpeed.Value); + } + if (!this.waterfall.Visible) + { + this.fftSpeedTrackBar.Value = Math.Min(this.fftSpeedTrackBar.Maximum - 2, this.fftSpeedTrackBar.Value); + } + this.mnuShowWaterfall.Checked = this.chkWF.Checked; + this.mnuShowBaseband.Checked = this.chkIF.Checked; + this.mnuShowAudio.Checked = (this.cmbAudio.SelectedIndex == 1); + this.mnuShowAudiogram.Checked = (this.cmbAudio.SelectedIndex == 2); + this.mnuShowEnvelope.Checked = (this.cmbAudio.SelectedIndex == 3); + } + + private void cmbAudio_SelectedIndexChanged(object sender, EventArgs e) + { + this.chkFFT_CheckedChanged(null, null); + } + + private void fftResolutionComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + this._fftBins = int.Parse(this.fftResolutionComboBox.SelectedItem.ToString()); + this._fftGain = (float)(Math.Log((double)this._fftBins, 2.0) * 6.0); + this.BuildFFTWindow(); + this._fftSkips = -2; + this.NotifyPropertyChanged("FFTResolution"); + } + + private void bftResolutionComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + this._bftBins = int.Parse(this.bftResolutionComboBox.SelectedItem.ToString()); + this._bftGain = (float)(Math.Log((double)this._bftBins, 2.0) * 6.0); + this.BuildBFTWindow(); + } + + private void fftWindowComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + this._fftWindowType = (WindowType)this.fftWindowComboBox.SelectedIndex; + this.BuildFFTWindow(); + this.BuildBFTWindow(); + } + + private void gradientButtonSA_Click(object sender, EventArgs e) + { + new Thread(delegate () + { + GradientDialog.ShowGradient(this._saBlendIndex, this._saBlends, this._backgrounds, this._traceColors, this._spectrumFill, "SPECTRUM/SCOPE"); + }).Start(); + } + + private void gradientButtonWF_Click(object sender, EventArgs e) + { + new Thread(delegate () + { + GradientDialog.ShowGradient(this._wfBlendIndex, this._wfBlends, this._backgrounds, this._traceColors, this._spectrumFill, "WATERFALL"); + }).Start(); + } + + private void gradientButtonAG_Click(object sender, EventArgs e) + { + new Thread(delegate () + { + GradientDialog.ShowGradient(this._agBlendIndex, this._agBlends, this._backgrounds, this._traceColors, this._spectrumFill, "AUDIOGRAM"); + }).Start(); + } + + private void GradientDialog_GradientChanged(object sender, GradientEventArgs e) + { + if (this._colorInvokeBusy || (e.Index > 0 && (e.Blend == null || e.Blend.Positions.Length == 0))) + { + return; + } + base.BeginInvoke(new MethodInvoker(delegate + { + this._colorInvokeBusy = true; + this.InvokedGradientChange(e); + })); + } + + private void InvokedGradientChange(GradientEventArgs e) + { + int i = e.Index - 1; + string p = e.Parent.Substring(0, 1); + if (e.Parent == "undo") + { + this.GetColorSettings(); + } + else if (e.Parent == "save") + { + this.PutColorSettings(); + } + else if (e.Index == -1) + { + if (p == "S") + { + this.gradientButtonSA_Click(this, null); + } + else if (p == "W") + { + this.gradientButtonWF_Click(this, null); + } + else if (p == "A") + { + this.gradientButtonAG_Click(this, null); + } + } + else if (p == "S") + { + this._saBlendIndex = e.Index; + this._spectrumFill[i] = e.Fill; + this._backgrounds[i] = e.Back; + this._traceColors[i] = e.Trace; + this._saBlends[i] = e.Blend; + this.spectrumAnalyzer.SpectrumFill = this._spectrumFill[i]; + this.spectrumAnalyzer.SpectrumColor = Color.FromArgb(this._traceColors[i]); + this.scope.SpectrumFill = this.spectrumAnalyzer.SpectrumFill; + this.scope.TraceColor = this.spectrumAnalyzer.SpectrumColor; + Color color = Color.FromArgb(this._backgrounds[i]); + if (this.spectrumAnalyzer.BackgroundColor != color) + { + this.spectrumAnalyzer.BackgroundColor = color; + this.ifAnalyzer.BackgroundColor = color; + this.afAnalyzer.BackgroundColor = color; + this.scope.BackgoundColor = color; + this.wideScope.BackgoundColor = color; + this.waterfall.BackgroundColor = this.spectrumAnalyzer.BackgroundColor; + this.ifWaterfall.BackgroundColor = this.spectrumAnalyzer.BackgroundColor; + this.afWaterfall.BackgroundColor = this.spectrumAnalyzer.BackgroundColor; + this.audiogram.BackgroundColor = this.spectrumAnalyzer.BackgroundColor; + } + this.spectrumAnalyzer.GradientColorBlend = e.Blend; + this.ifAnalyzer.GradientColorBlend = e.Blend; + this.afAnalyzer.GradientColorBlend = e.Blend; + this.scope.GradientColorBlend = e.Blend; + this.wideScope.GradientColorBlend = e.Blend; + } + else if (p == "W") + { + this._wfBlendIndex = e.Index; + this._wfBlends[i] = e.Blend; + this.waterfall.GradientColorBlend = e.Blend; + this.ifWaterfall.GradientColorBlend = e.Blend; + this.afWaterfall.GradientColorBlend = e.Blend; + } + else if (p == "A") + { + this._agBlendIndex = e.Index; + this._agBlends[i] = e.Blend; + this.audiogram.GradientColorBlend = e.Blend; + } + this._colorInvokeBusy = false; + } + + private static string GradientToString(Color[] colors) + { + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < colors.Length; i++) + { + sb.AppendFormat(",{0:X2}{1:X2}{2:X2}", colors[i].R, colors[i].G, colors[i].B); + } + return sb.ToString().Substring(1); + } + + private void sAttackTrackBar_ValueChanged(object sender, EventArgs e) + { + this.spectrumAnalyzer.Attack = (double)this.sAttackTrackBar.Value / (double)this.sAttackTrackBar.Maximum; + this.ifAnalyzer.Attack = 1.0; + this.afAnalyzer.Attack = 1.0; + this.NotifyPropertyChanged("SAttack"); + } + + private void sDecayTrackBar_ValueChanged(object sender, EventArgs e) + { + this.spectrumAnalyzer.Decay = (double)this.sDecayTrackBar.Value / (double)this.sDecayTrackBar.Maximum; + this.ifAnalyzer.Decay = 1.0; + this.afAnalyzer.Decay = 1.0; + this.NotifyPropertyChanged("SDecay"); + } + + private void wAttackTrackBar_ValueChanged(object sender, EventArgs e) + { + this.waterfall.Attack = (double)this.wAttackTrackBar.Value / (double)this.wAttackTrackBar.Maximum; + this.ifWaterfall.Attack = this.waterfall.Attack; + this.afWaterfall.Attack = this.waterfall.Attack; + this.audiogram.Attack = this.waterfall.Attack; + this.NotifyPropertyChanged("WAttack"); + } + + private void wDecayTrackBar_ValueChanged(object sender, EventArgs e) + { + this.waterfall.Decay = (double)this.wDecayTrackBar.Value / (double)this.wDecayTrackBar.Maximum; + this.ifWaterfall.Decay = this.waterfall.Decay; + this.afWaterfall.Decay = this.waterfall.Decay; + this.audiogram.Decay = this.waterfall.Decay; + this.NotifyPropertyChanged("WDecay"); + } + + private void markPeaksCheckBox_CheckedChanged(object sender, EventArgs e) + { + this.spectrumAnalyzer.MarkPeaks = this.markPeaksCheckBox.Checked; + this.ifAnalyzer.MarkPeaks = this.markPeaksCheckBox.Checked; + this.afAnalyzer.MarkPeaks = this.markPeaksCheckBox.Checked; + this.NotifyPropertyChanged("MarkPeaks"); + } + + private void useTimestampCheckBox_CheckedChanged(object sender, EventArgs e) + { + if (this.SourceIsWaveFile) + { + this.waterfall.RecordStart = this.getRecordStartFromFile(this._waveFile); + this.audiogram.RecordStart = this.waterfall.RecordStart; + } + if (!this._initializing && !this.useTimestampsCheckBox.Checked) + { + if (this.useTimestampsCheckBox.Text == "UTC") + { + this.useTimestampsCheckBox.Text = "Time"; + } + else + { + this.useTimestampsCheckBox.Text = "UTC"; + this.useTimestampsCheckBox.Checked = true; + } + } + this.waterfall.UseTimestamps = ((!this.useTimestampsCheckBox.Checked) ? 0 : ((this.useTimestampsCheckBox.Text == "Time") ? 1 : 2)); + this.audiogram.UseTimestamps = this.waterfall.UseTimestamps; + this.NotifyPropertyChanged("UseTimeMarkers"); + } + + private void fftSpeedTrackBar_ValueChanged(object sender, EventArgs e) + { + this.setFftInterval(); + this.startSpeedCalc(); + this.showWaterfallSpeed(); + } + + private void fftZoomCombo_SelectedIndexChanged(object sender, EventArgs e) + { + if (!this._streamControl.IsPlaying) + { + return; + } + double scale = 1.0; + if (this.fftZoomCombo.SelectedIndex > 0 && this.fftZoomCombo.SelectedIndex < this.fftZoomCombo.Items.Count) + { + double spectrum = (double)this.getFrequency(this.fftZoomCombo.Text); + if (spectrum > (double)this.spectrumAnalyzer.SpectrumWidth) + { + this.fftZoomCombo.SelectedIndex = 0; + } + else + { + scale = (double)this.spectrumAnalyzer.SpectrumWidth / spectrum; + } + } + this.spectrumAnalyzer.Zoom = (float)scale; + this.waterfall.Zoom = (float)scale; + int i = this.cmbCenterStep.Items.Count - 1; + while (i >= 0 && (double)this.getFrequency(this.cmbCenterStep.Items[i].ToString()) > (double)this.spectrumAnalyzer.SpectrumWidth / scale) + { + i--; + } + this.cmbCenterStep.SelectedIndex = i; + this.labSpectrum.Text = Convert.ToInt32((float)this.spectrumAnalyzer.SpectrumWidth / 1000f).ToString() + " kHz"; + } + + private void fftZoomTrackBar_ValueChanged(object sender, EventArgs e) + { + this.fftZoomCombo_SelectedIndexChanged(sender, e); + } + + private void MainForm_Move(object sender, EventArgs e) + { + if (base.WindowState != FormWindowState.Minimized && this._formLoaded) + { + this._lastLocation = base.Location; + } + this._fftSkips = -20; + } + + private void MainForm_Resize(object sender, EventArgs e) + { + if (base.WindowState == FormWindowState.Minimized || !this._formLoaded) + { + return; + } + if (base.WindowState != FormWindowState.Minimized) + { + this._lastSize = base.Size; + } + int width = base.Width; + int left = this.playStopButton.Left; + int left2 = this.playStopButton.Left; + this.chkLock.Left = this.frequencyNumericUpDown.Left + this.frequencyNumericUpDown.Width + 10; + this.labBandWidth.Left = (this.chkLock.Left + this.chkLock.Width + this.labZoom.Left - (this.labBandWidth.Width + this.cmbBandWidth.Width + 5)) / 2; + this.cmbBandWidth.Left = this.labBandWidth.Left + this.labBandWidth.Width + 5; + this.fftZoomCombo.Location = this.fftZoomTrackBar.Location; + this.pnlScroll.Top = 0; + this.pnlScroll.Height = this.scrollPanel.Height; + this.controlPanel.Top = 2; + this.SetThumb(this.gThumb.Top); + this._fftSkips = -20; + } + + private void panSplitContainer3_Panel2_Resize(object sender, EventArgs e) + { + this.wideScope.Tdiv = this.scope.Tdiv; + } + + private void panSplitContainer5_Panel1_Resize(object sender, EventArgs e) + { + } + + private void panSplitContainer5_Panel2_Resize(object sender, EventArgs e) + { + this.wideScope.Location = this.afWaterfall.Location; + this.wideScope.Size = this.panSplitContainer5.Panel2.Size; + if ((double)this.wideScope.Width < 0.3 * (double)this.spectrumAnalyzer.Width) + { + this.wideScope.Tdiv = this.scope.Tdiv / 4f; + return; + } + if ((double)this.wideScope.Width < 0.6 * (double)this.spectrumAnalyzer.Width) + { + this.wideScope.Tdiv = this.scope.Tdiv / 2f; + return; + } + this.wideScope.Tdiv = this.scope.Tdiv; + } + + private int[] GetCollapsiblePanelStates() + { + List states = new List(); + for (SDRSharp.CollapsiblePanel.CollapsiblePanel currentPanel = this.radioCollapsiblePanel; currentPanel != null; currentPanel = currentPanel.NextPanel) + { + states.Add((int)currentPanel.PanelState); + } + return states.ToArray(); + } + + private void chkAver_CheckedChanged(object sender, EventArgs e) + { + Utils.ChkAver = this.chkAver.Checked; + } + + private void chk1_CheckedChanged(object sender, EventArgs e) + { + Utils.Chk1 = this.chk1.Checked; + this.startSpeedCalc(); + this._fftSkips = -1; + } + + private void chkFastConv_CheckedChanged(object sender, EventArgs e) + { + Utils.FastConvolve = this.chkFastConv.Checked; + } + + private void cmbDbm_SelectedIndexChanged(object sender, EventArgs e) + { + this.spectrumAnalyzer.ShowDbm = this.cmbDbm.SelectedIndex; + this.waterfall.ShowDbm = this.cmbDbm.SelectedIndex; + } + + private void dbmOffsetUpDown_ValueChanged(object sender, EventArgs e) + { + this._floorValueNeeded = 5; + } + + private void tbSpanSA_Changed(object sender, EventArgs e) + { + int floorValue = this.tbFloorSA.Minimum + this.tbFloorSA.Maximum - this.tbFloorSA.Value; + int spanValue = this.tbSpanSA.Minimum + this.tbSpanSA.Maximum - this.tbSpanSA.Value; + this.spectrumAnalyzer.MinPower = (float)floorValue; + this.spectrumAnalyzer.MaxPower = (float)Math.Min(20, floorValue + spanValue); + this.ifAnalyzer.MinPower = this.spectrumAnalyzer.MinPower - 10f; + this.ifAnalyzer.MaxPower = this.spectrumAnalyzer.MaxPower; + this.afAnalyzer.MinPower = -130f; + this.afAnalyzer.MaxPower = -130f + this.ifAnalyzer.MaxPower - this.ifAnalyzer.MinPower; + this._fftSkips = -1; + } + + private void tbFloorSA_Changed(object sender, EventArgs e) + { + int floorValue = this.tbFloorSA.Minimum + this.tbFloorSA.Maximum - this.tbFloorSA.Value; + int spanValue = this.tbSpanSA.Minimum + this.tbSpanSA.Maximum - this.tbSpanSA.Value; + if (floorValue + spanValue > 20) + { + Console.WriteLine("Floor+Span > 25"); + } + this.spectrumAnalyzer.MinPower = (float)floorValue; + this.spectrumAnalyzer.MaxPower = (float)Math.Min(20, floorValue + spanValue); + this.ifAnalyzer.MinPower = this.spectrumAnalyzer.MinPower - 10f; + this.ifAnalyzer.MaxPower = this.spectrumAnalyzer.MaxPower; + this.afAnalyzer.MinPower = -130f; + this.afAnalyzer.MaxPower = -130f + this.ifAnalyzer.MaxPower - this.ifAnalyzer.MinPower; + this.tbIntensityWv.Value = Math.Min(this.tbIntensityAg.Maximum, Math.Max(this.tbIntensityAg.Minimum, this.tbFloorSA.Value)); + } + + private void tbContrastWv_Changed(object sender, EventArgs e) + { + int intensityValue = this.tbIntensityWv.Minimum + this.tbIntensityWv.Maximum - this.tbIntensityWv.Value; + int contrastValue = this.tbContrastWv.Minimum + this.tbContrastWv.Maximum - this.tbContrastWv.Value; + if (intensityValue + contrastValue > 20) + { + Console.WriteLine("Intens+Contr > 25"); + } + this.waterfall.MinPower = (float)intensityValue; + this.waterfall.MaxPower = (float)Math.Min(20, intensityValue + contrastValue); + this.ifWaterfall.MinPower = this.waterfall.MinPower; + this.ifWaterfall.MaxPower = this.waterfall.MaxPower; + this.afWaterfall.MinPower = -130f; + this.afWaterfall.MaxPower = -130f + this.ifWaterfall.MaxPower - this.ifWaterfall.MinPower; + this.labCon.Text = Utils.Signal((int)this.waterfall.MaxPower, this.cmbDbm.SelectedIndex, false); + this._fftSkips = -1; + } + + private void tbIntensityWv_Changed(object sender, EventArgs e) + { + int intensityValue = this.tbIntensityWv.Minimum + this.tbIntensityWv.Maximum - this.tbIntensityWv.Value; + int contrastValue = this.tbContrastWv.Minimum + this.tbContrastWv.Maximum - this.tbContrastWv.Value; + if (intensityValue + contrastValue > 20) + { + Console.WriteLine("Intens+Contr > 25"); + } + this.waterfall.MinPower = (float)intensityValue; + this.waterfall.MaxPower = (float)Math.Min(20, intensityValue + contrastValue); + this.ifWaterfall.MinPower = this.waterfall.MinPower; + this.ifWaterfall.MaxPower = this.waterfall.MaxPower; + this.afWaterfall.MinPower = -130f; + this.afWaterfall.MaxPower = -130f + this.ifWaterfall.MaxPower - this.ifWaterfall.MinPower; + this.labInt.Text = Utils.Signal((int)this.waterfall.MinPower, this.cmbDbm.SelectedIndex, false); + this._fftSkips = -1; + } + + private void cmbBandWidth_SelectedIndexChanged(object sender, EventArgs e) + { + if (this._bandwidthChangeBusy) + { + return; + } + bool doubleBW = this._vfo.DetectorType == DetectorType.AM || this._vfo.DetectorType == DetectorType.SAM || this._vfo.DetectorType == DetectorType.DSB; + int bw = this.getFrequency(this.cmbBandWidth.Text); + if (doubleBW) + { + bw *= 2; + } + if (bw > 0) + { + this.filterBandwidthNumericUpDown.Value = (long)bw; + } + if (this.cmbBandWidth.SelectedIndex > 0) + { + bw = this.getFrequency(this.cmbBandWidth.SelectedItem); + if (doubleBW) + { + bw *= 2; + } + if (bw > 0) + { + this.cmbBandWidth.Tag = bw; + } + } + if (this.waterfall.BandType == BandType.Center && this.cmbBandWidth.SelectedIndex > 0) + { + this.spectrumAnalyzer.FilterOffset = (this.waterfall.FilterOffset = 0); + this.ifAnalyzer.FilterOffset = (this.ifWaterfall.FilterOffset = 0); + this.afAnalyzer.FilterOffset = (this.afWaterfall.FilterOffset = 0); + this.audiogram.FilterOffset = 0; + this._vfo.FrequencyOffset = 0; + } + this.panview_AutoZoomed(null, null); + } + + private void cmbTim_SelectedIndexChanged(object sender, EventArgs e) + { + this.scope.Tdiv = this.StrToVal(this.cmbTim.SelectedItem.ToString()); + this.wideScope.Tdiv = this.scope.Tdiv; + this.panSplitContainer3_Panel2_Resize(null, null); + } + + private void cmbVer_SelectedIndexChanged(object sender, EventArgs e) + { + this.scope.Vdiv = this.StrToVal(this.cmbVer.SelectedItem.ToString()); + this.wideScope.Vdiv = this.scope.Vdiv; + } + + private void cmbHor_SelectedIndexChanged(object sender, EventArgs e) + { + this.scope.Hdiv = this.StrToVal(this.cmbHor.SelectedItem.ToString()); + this.wideScope.Hdiv = this.scope.Hdiv; + } + + private float StrToVal(string str) + { + int i = str.IndexOf(' '); + if (i < 0) + { + i = str.Length; + } + float val = (float)Utils.ValD(str.Substring(0, i), 0.0); + if (str.IndexOf('m') >= 0) + { + val /= 1000f; + } + if (str.IndexOf('u') >= 0) + { + val /= 1000000f; + } + if (str.IndexOf('k') >= 0) + { + val *= 1000f; + } + if (str.IndexOf('K') >= 0) + { + val *= 1000f; + } + return val; + } + + private void chkVinvert_CheckedChanged(object sender, EventArgs e) + { + this.scope.Vinvert = this.chkVinvert.Checked; + this.wideScope.Vinvert = this.chkVinvert.Checked; + } + + private void chkHinvert_CheckedChanged(object sender, EventArgs e) + { + this.scope.Hinvert = this.chkHinvert.Checked; + this.wideScope.Hinvert = this.chkHinvert.Checked; + } + + private void chkXY_CheckedChanged(object sender, EventArgs e) + { + this.scope.XYmode = this.chkXY.Checked; + this.wideScope.XYmode = false; + this.cmbHor.Enabled = this.scope.XYmode; + this.cmbHchannel.Enabled = this.scope.XYmode; + this.chkHrunDC.Enabled = this.scope.XYmode; + this.chkHinvert.Enabled = this.scope.XYmode; + this.tbTrigL.Enabled = !this.scope.XYmode; + if (this.scope.Vchannel == DemodType.AM) + { + this.chkVrunDC.Checked = false; + } + } + + private void chkHrunDC_CheckedChanged(object sender, EventArgs e) + { + this.scope.HblockDC = !this.chkHrunDC.Checked; + this.wideScope.HblockDC = !this.chkHrunDC.Checked; + } + + private void chkVrunDC_CheckedChanged(object sender, EventArgs e) + { + this.scope.VblockDC = !this.chkVrunDC.Checked; + this.wideScope.VblockDC = !this.chkVrunDC.Checked; + } + + private void cmbVchannel_SelectedIndexChanged(object sender, EventArgs e) + { + this.wideScope.Vchannel = DemodType.Envelope; + this.scope.Vchannel = this.cmbVchannel.SelectedIndex + DemodType.AM; + if (this.scope.Vchannel == DemodType.AM) + { + this.chkVrunDC.Checked = true; + } + } + + private void cmbHchannel_SelectedIndexChanged(object sender, EventArgs e) + { + this.scope.Hchannel = this.cmbHchannel.SelectedIndex + DemodType.AM; + if (this.scope.Vchannel == DemodType.AM) + { + this.chkVrunDC.Checked = true; + } + } + + private void scope_XYPositionChanged(object sender, PositionEventArgs e) + { + if (e.Trig) + { + this.tbTrigL.Value = (int)(e.Ypos * 100f); + } + } + + private void tbTrigL_ValueChanged(object sender, EventArgs e) + { + this.scope.TrigLevel = (float)this.tbTrigL.Value / 100f; + } + + private void tbAverage_ValueChanged(object sender, EventArgs e) + { + this.labTbAverage.Text = this.tbAverage.Value.ToString(); + Utils.PhaseAverage = this.tbAverage.Value; + } + + private void tbGain_ValueChanged(object sender, EventArgs e) + { + this.labTbGain.Text = this.tbGain.Value.ToString(); + Utils.PhaseGain = this.tbGain.Value; + } + + private int getFrequency(string text) + { + Match match = Regex.Match(text, "([0-9\\.]+) Mhz", RegexOptions.None); + if (match.Success) + { + return (int)(double.Parse(match.Groups[1].Value, CultureInfo.InvariantCulture) * 1000000.0); + } + match = Regex.Match(text, "([0-9\\.]+) kHz", RegexOptions.None); + if (match.Success) + { + return (int)(double.Parse(match.Groups[1].Value, CultureInfo.InvariantCulture) * 1000.0); + } + match = Regex.Match(text, "([0-9]+) Hz", RegexOptions.None); + if (match.Success) + { + return int.Parse(match.Groups[1].Value); + } + return Utils.Val(text, 0); + } + #endregion + + #region [Plugins Load] + private void InitialiseSharpPlugins() + { + this._sharpControlProxy = new SharpControlProxy(this); + NameValueCollection sharpPlugins = (NameValueCollection)ConfigurationManager.GetSection("sharpPlugins"); + if (sharpPlugins == null) + { + MessageBox.Show("Configuration section 'sharpPlugins' was not found. Please check 'SDRSharp.exe.config'.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + return; + } + foreach (object obj in sharpPlugins.Keys) + { + string key = (string)obj; + try + { + string fullyQualifiedTypeName = sharpPlugins[key]; + string[] patterns = fullyQualifiedTypeName.Split(new char[] + { + ',' + }); + string typeName = patterns[0]; + string assemblyName = patterns[1]; + ObjectHandle objectHandle = Activator.CreateInstance(assemblyName, typeName); + ISharpPlugin plugin = (ISharpPlugin)objectHandle.Unwrap(); + this._sharpPlugins.Add(key, plugin); + plugin.Initialize(this._sharpControlProxy); + if (plugin.HasGui) + { + this.CreatePluginCollapsiblePanel(plugin); + } + } + catch (Exception ex) + { + MessageBox.Show("Error loading '" + sharpPlugins[key] + "' - " + ex.Message); + } + } + int[] collapsiblePanelStates = Utils.GetIntArraySetting("collapsiblePanelStates", null); + if (collapsiblePanelStates != null) + { + SDRSharp.CollapsiblePanel.CollapsiblePanel currentPanel = this.radioCollapsiblePanel; + int i = 0; + while (i < collapsiblePanelStates.Length && currentPanel != null) + { + currentPanel.PanelState = (PanelStateOptions)collapsiblePanelStates[i]; + currentPanel = currentPanel.NextPanel; + i++; + } + } + this.radioCollapsiblePanel.PanelState = PanelStateOptions.Collapsed; + if (collapsiblePanelStates[0] == 1) + { + this.radioCollapsiblePanel.PanelState = PanelStateOptions.Expanded; + } + } + + private void CreatePluginCollapsiblePanel(ISharpPlugin plugin) + { + UserControl panelContents = plugin.GuiControl; + if (panelContents != null) + { + panelContents.Padding = new Padding(0, 20, 0, 0); + SDRSharp.CollapsiblePanel.CollapsiblePanel newPanel = new SDRSharp.CollapsiblePanel.CollapsiblePanel(); + newPanel.PanelTitle = plugin.DisplayName + " (Plugin)"; + newPanel.ForeColor = Color.Black; + newPanel.PanelState = PanelStateOptions.Collapsed; + newPanel.Controls.Add(panelContents); + if (this.displayCollapsiblePanel.NextPanel == null) + { + this.displayCollapsiblePanel.NextPanel = newPanel; + } + else + { + newPanel.NextPanel = this.displayCollapsiblePanel.NextPanel; + this.displayCollapsiblePanel.NextPanel = newPanel; + } + newPanel.Width = this.displayCollapsiblePanel.Width; + newPanel.ExpandedHeight = panelContents.Height; + newPanel.StateChanged += this.collapsiblePanel_StateChanged; + panelContents.Width = newPanel.Width; + this.controlPanel.Controls.Add(newPanel); + } + } + #endregion + + #region [Misc 3] + public void StartRadio() + { + if (this.playStopButton.Text != "Stop") + { + this.playStopButton.Text = "Stop"; + this.playStopButton.SetColor(Color.Red); + } + if (this._frontendController != null) + { + this._frontendController.HideSettingGUI(); + } + this.Open(); + if (this.frequencyNumericUpDown.Value > 0m && this.frequencyNumericUpDown.Value <= 30000000m) + { + if (this.wfmRadioButton.Checked) + { + this.amRadioButton.Checked = true; + } + } + else if (this.frequencyNumericUpDown.Value > 97000000m && this.frequencyNumericUpDown.Value < 106000000m && !this.wfmRadioButton.Checked) + { + this.wfmRadioButton.Checked = true; + if (this.scopeCollapsiblePanel.PanelState == PanelStateOptions.Expanded) + { + this.scopeCollapsiblePanel.PanelState = PanelStateOptions.Collapsed; + } + } + this._streamControl.Play(); + if (this._frontendController != null) + { + this._frontendController.HideSettingGUI(); + } + this.setBftBins(); + this.setFftInterval(); + this._fftStream.Flush(); + this._iftStream.Flush(); + this._aftStream.Flush(); + if (Utils.FastFFT) + { + Console.WriteLine("ProcessFft started from Gui Thread"); + } + else + { + ThreadPool.QueueUserWorkItem(new WaitCallback(this.ProcessFFT)); + Console.WriteLine("ProcessFft started from ThreadPool"); + } + this._fftTimer.Enabled = true; + this.inputDeviceComboBox.Enabled = false; + this.outputDeviceComboBox.Enabled = false; + this.latencyNumericUpDown.Enabled = false; + if (this._frontendController != null) + { + this._frontendController.Frequency = this.centerFreqNumericUpDown.Value; + } + this.spectrumAnalyzer.StatusText = ""; + this.ifAnalyzer.StatusText = ""; + this.afAnalyzer.StatusText = ""; + this.wideScope.StatusText = ""; + this._floorValueNeeded = 15; + int samplerate = (int)this._streamControl.SampleRate >> this._vfo.BaseBandDecimationStageCount; + if (this._vfo.DetectorType == DetectorType.AM || this._vfo.DetectorType == DetectorType.SAM || this._vfo.DetectorType == DetectorType.DSB) + { + samplerate >>= 1; + } + if (this._streamControl.SoundCardRatio > 1.0) + { + samplerate = (int)((double)samplerate / this._streamControl.SoundCardRatio); + } + for (int i = 1; i < this.cmbBandWidth.Items.Count; i++) + { + int width = this.getFrequency(this.cmbBandWidth.Items[i]); + this.cmbBandWidth.setEnabled(i, this._vfo.DetectorType == DetectorType.WFM || width <= samplerate); + } + if (this._streamControl.InputType == InputType.SoundCard) + { + this.remDcSlider.Enabled = true; + this._iqBalancer.RemoveDC = (((float)this.remDcSlider.Value == 0f) ? 0f : (1f / (float)this.remDcSlider.Value)); + this._iqBalancer.Reset((float)Utils.GetDoubleSetting("IQgain", 1.0), (float)Utils.GetDoubleSetting("IQphase", 0.0)); + } + else if (this._streamControl.InputType == InputType.Plugin && this.iqSourceComboBox.SelectedItem.ToString().Contains("RTL")) + { + this.remDcSlider.Enabled = true; + this._iqBalancer.RemoveDC = (((float)this.remDcSlider.Value == 0f) ? 0f : (1f / (float)this.remDcSlider.Value)); + this._iqBalancer.Reset((float)Utils.GetDoubleSetting("IQgain", 1.0), (float)Utils.GetDoubleSetting("IQphase", 0.0)); + } + else + { + this.remDcSlider.Enabled = false; + this._iqBalancer.RemoveDC = 0f; + this._iqBalancer.Reset(1f, 0f); + } + this.NotifyPropertyChanged("StartRadio"); + } + + public unsafe void StopRadio() + { + if (this.playStopButton.Text != "Play") + { + this.playStopButton.Text = "Play"; + this.playStopButton.SetColor(Color.Lime); + } + this._streamControl.Stop(); + this._vfo.SampleRate = 2048000.0; + this._xBuf = null; + this._yBuf = null; + this._fftStream.Write(this._iqPtr, this._fftBins + 1); + this._iftStream.Write(this._ifqPtr, this._bftBins + 1); + this._aftStream.Write(this._afqPtr, this._bftBins + 1); + if (!this.SourceIsWaveFile) + { + this.inputDeviceComboBox.Enabled = (this._frontendController == null || this._frontendController.IsSoundCardBased); + } + this.latencyNumericUpDown.Enabled = true; + this.outputDeviceComboBox.Enabled = true; + this._fftEvent.Set(); + this.spectrumAnalyzer.StatusText = "RF spectrum"; + this.ifAnalyzer.StatusText = "IF baseband [right click to (re)set notch]"; + this.afAnalyzer.StatusText = "AF audio spectrum"; + this.wideScope.StatusText = "AM audio envelope"; + this.NotifyPropertyChanged("StopRadio"); + } + + public unsafe void GetSpectrumSnapshot(byte[] destArray) + { + Fourier.ScaleFFT(this._rfSpectrumPtr, this._scaledRfSpectrumPtr, this._rfSpectrumSamples, -130f, 0f); + fixed (byte* destPtr = destArray) + { + Fourier.SmoothCopy(this._scaledRfSpectrumPtr, destPtr, this._rfSpectrumSamples, destArray.Length, 1f, 0); + } + } + + public void RegisterStreamHook(object streamHook, ProcessorType processorType) + { + if (!this._streamControl.IsPlaying) + { + this._vfoHookManager.RegisterStreamHook(streamHook, processorType); + } + } + + public void UnregisterStreamHook(object streamHook) + { + if (!this._streamControl.IsPlaying) + { + this._vfoHookManager.UnregisterStreamHook(streamHook); + } + } + + private void NotifyPropertyChanged(string property) + { + PropertyChangedEventHandler handler = this.PropertyChanged; + if (handler != null) + { + this.PropertyChanged(this, new PropertyChangedEventArgs(property)); + } + } + + protected override bool ProcessCmdKey(ref Message msg, Keys keyData) + { + switch (keyData) + { + case Keys.RButton | Keys.MButton | Keys.Space | Keys.Control: + if (this.audioGainTrackBar.Value < this.audioGainTrackBar.Maximum) + { + this.audioGainTrackBar.Value++; + return true; + } + return true; + case Keys.Back | Keys.Space | Keys.Control: + if (this.audioGainTrackBar.Value > this.audioGainTrackBar.Minimum) + { + this.audioGainTrackBar.Value--; + return true; + } + return true; + } + return base.ProcessCmdKey(ref msg, keyData); + } + + private void MainForm_KeyDown(object sender, KeyEventArgs e) + { + if (!this._keyPreview) + { + return; + } + Keys keyCode = e.KeyCode; + if (keyCode > Keys.Space) + { + if (keyCode <= Keys.Z) + { + if (keyCode == Keys.Home) + { + this._floorValueNeeded = 5; + goto IL_5E3; + } + switch (keyCode) + { + case Keys.D0: + case Keys.D1: + case Keys.D2: + case Keys.D3: + case Keys.D4: + case Keys.D5: + case Keys.D6: + case Keys.D7: + case Keys.D8: + case Keys.D9: + break; + case Keys.RButton | Keys.Back | Keys.ShiftKey | Keys.Space: + case Keys.LButton | Keys.RButton | Keys.Back | Keys.ShiftKey | Keys.Space: + case Keys.MButton | Keys.Back | Keys.ShiftKey | Keys.Space: + case Keys.LButton | Keys.MButton | Keys.Back | Keys.ShiftKey | Keys.Space: + case Keys.RButton | Keys.MButton | Keys.Back | Keys.ShiftKey | Keys.Space: + case Keys.LButton | Keys.RButton | Keys.MButton | Keys.Back | Keys.ShiftKey | Keys.Space: + case (Keys)64: + case Keys.E: + case Keys.F: + case Keys.H: + case Keys.I: + case Keys.J: + case Keys.P: + case Keys.Q: + case Keys.R: + case Keys.S: + case Keys.T: + case Keys.V: + case Keys.X: + case Keys.Y: + goto IL_5E3; + case Keys.A: + this.amRadioButton.Checked = true; + goto IL_5E3; + case Keys.B: + this._numEntry = "B"; + goto IL_5E3; + case Keys.C: + this._numEntry = "C"; + goto IL_5E3; + case Keys.D: + this.dsbRadioButton.Checked = true; + goto IL_5E3; + case Keys.G: + this._numEntry = "G"; + goto IL_5E3; + case Keys.K: + case Keys.M: + goto IL_2F6; + case Keys.L: + this.lsbRadioButton.Checked = true; + goto IL_5E3; + case Keys.N: + this.nfmRadioButton.Checked = true; + goto IL_5E3; + case Keys.O: + if (e.Modifiers == Keys.Control) + { + this.frontendGuiButton_Click(null, null); + goto IL_5E3; + } + goto IL_5E3; + case Keys.U: + this.usbRadioButton.Checked = true; + goto IL_5E3; + case Keys.W: + this.wfmRadioButton.Checked = true; + goto IL_5E3; + case Keys.Z: + this._numEntry = "Z"; + goto IL_5E3; + default: + goto IL_5E3; + } + } + else + { + switch (keyCode) + { + case Keys.F1: + this.butVfoA.Checked = true; + goto IL_5E3; + case Keys.F2: + this.butVfoB.Checked = true; + goto IL_5E3; + case Keys.F3: + this.butVfoC.Checked = true; + goto IL_5E3; + case Keys.F4: + goto IL_5E3; + case Keys.F5: + this.playStopButton.Checked = true; + goto IL_5E3; + default: + if (keyCode != Keys.OemPeriod) + { + goto IL_5E3; + } + break; + } + } + this._numEntry += ((e.KeyCode == Keys.OemPeriod) ? "." : ((char)e.KeyValue).ToString()); + goto IL_5E3; + } + if (keyCode <= Keys.Return) + { + if (keyCode != Keys.Back) + { + if (keyCode != Keys.Return) + { + goto IL_5E3; + } + } + else + { + if (this._numEntry.Length > 0) + { + this._numEntry = this._numEntry.Substring(0, this._numEntry.Length - 1); + goto IL_5E3; + } + goto IL_5E3; + } + } + else + { + if (keyCode == Keys.Escape) + { + this._numEntry = ""; + goto IL_5E3; + } + if (keyCode != Keys.Space) + { + goto IL_5E3; + } + this.audioButton.Checked = !this.audioButton.Checked; + goto IL_5E3; + } + IL_2F6: + float val = 0f; + if (this._numEntry == null) + { + return; + } + if (this._numEntry.Length == 0) + { + return; + } + string prefix = this._numEntry.Substring(0, 1); + if (prefix.CompareTo("9") > 0) + { + this._numEntry = this._numEntry.Substring(1); + } + if (float.TryParse(this._numEntry, NumberStyles.Any, CultureInfo.InvariantCulture, out val)) + { + int freq = (int)((double)(val * 1000f) + 0.1); + if (e.KeyCode == Keys.M) + { + freq *= 1000; + } + if (prefix == "B") + { + if ((long)freq <= this.filterBandwidthNumericUpDown.Maximum && (long)freq >= this.filterBandwidthNumericUpDown.Minimum) + { + this.filterBandwidthNumericUpDown.Value = (long)freq; + } + } + else if (prefix == "G") + { + float gn = (float)(this.audioGainTrackBar.Maximum - this.audioGainTrackBar.Minimum) * val / 100f; + this.audioGainTrackBar.Value = this.audioGainTrackBar.Minimum + (int)gn; + } + else if (prefix == "C") + { + int i = this.FrequencyIndex(this.cmbCenterStep, freq.ToString()); + if (i >= 0) + { + this.cmbCenterStep.SelectedIndex = i; + } + } + else if (prefix == "Z") + { + int j = this.FrequencyIndex(this.stepSizeComboBox, freq.ToString()); + if (j >= 0) + { + this.stepSizeComboBox.SelectedIndex = j; + } + } + else if (!this.centerFreqNumericUpDown.Enabled || ((double)freq >= (double)this.waterfall.DisplayFrequency - (double)((float)this.waterfall.SpectrumWidth / this.waterfall.Zoom) / 2.2 && (double)freq <= (double)this.waterfall.DisplayFrequency + (double)((float)this.waterfall.SpectrumWidth / this.waterfall.Zoom) / 2.2)) + { + if (freq <= this.frequencyNumericUpDown.Maximum && freq >= this.frequencyNumericUpDown.Minimum) + { + this.frequencyNumericUpDown.Value = freq; + } + } + else if ((long)freq <= this.centerFreqNumericUpDown.Maximum && (long)freq >= this.centerFreqNumericUpDown.Minimum) + { + int stepSize = this.getFrequency(this.stepSizeComboBox.Text); + int offset = (int)((float)this.waterfall.SpectrumWidth / this.waterfall.Zoom / 20f); + offset = offset / stepSize * stepSize; + this.centerFreqNumericUpDown.Value = (long)(freq - offset); + this.frequencyNumericUpDown.Value = freq; + this.agcCheckBox.Checked = true; + } + } + this._numEntry = ""; + IL_5E3: + if (this._numEntry.Length == 0) + { + this.frequencyNumericUpDown.ShowValue((int)this.waterfall.Frequency); + return; + } + if (this._numEntry.Substring(0, 1) != "B") + { + float val2 = 0f; + if (float.TryParse(this._numEntry, NumberStyles.Any, CultureInfo.InvariantCulture, out val2)) + { + this.frequencyNumericUpDown.ShowValue((int)((double)(val2 * 1000f) + 0.1)); + } + } + } + + private void butVfo_CheckedChanged(object sender, EventArgs e) + { + gButton butVfo = (gButton)sender; + if (!butVfo.Checked) + { + butVfo.Tag = this.makeVfoTag(); + } + else + { + string tag = (string)butVfo.Tag; + if (tag == null || tag.Length == 0) + { + butVfo.Tag = this.makeVfoTag(); + } + else + { + string[] fields = tag.Split(new char[] + { + ',' + }); + if (fields.GetUpperBound(0) >= 3) + { + int freq; + int.TryParse(fields[1], out freq); + int value; + if (freq < this.centerFreqNumericUpDown.Value + this._frequencyShift - (decimal)this._streamControl.SampleRate / 2m || freq > this.centerFreqNumericUpDown.Value + this._frequencyShift + (decimal)this._streamControl.SampleRate / 2m) + { + if (this.SourceIsWaveFile) + { + return; + } + int.TryParse(fields[0], out value); + this.centerFreqNumericUpDown.Value = (long)value; + } + this.frequencyNumericUpDown.Value = freq; + int.TryParse(fields[2], out value); + this.DetectorType = (DetectorType)value; + int.TryParse(fields[3], out value); + this.filterBandwidthNumericUpDown.Value = (long)value; + this.agcCheckBox.Checked = true; + this.frequencyNumericUpDown_ValueChanged(null, null); + this.panview_AutoZoomed(null, null); + } + } + } + this.mnuVfoA.Checked = this.butVfoA.Checked; + this.mnuVfoB.Checked = this.butVfoB.Checked; + this.mnuVfoC.Checked = this.butVfoC.Checked; + } + + private string makeVfoTag() + { + return string.Concat(new string[] + { + this.CenterFrequency.ToString(), + ", ", + this.Frequency.ToString(), + ", ", + ((int)this.DetectorType).ToString(), + ", ", + this.FilterBandwidth.ToString() + }); + } + + private void chkIndepSideband_Changed(object sender, EventArgs e) + { + this.spectrumAnalyzer.IndepSideband = this.chkIndepSideband.Checked; + this.waterfall.IndepSideband = this.chkIndepSideband.Checked; + this.ifAnalyzer.IndepSideband = this.chkIndepSideband.Checked; + this.ifWaterfall.IndepSideband = this.chkIndepSideband.Checked; + } + + private int FrequencyIndex(gCombo cmb, string text) + { + int freq = this.getFrequency(text); + int i = cmb.Items.Count - 1; + while (i >= 0 && this.getFrequency(cmb.Items[i]) != freq) + { + i--; + } + return i; + } + + private void playStopButton_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) + { + if (e.KeyCode == Keys.Return) + { + e.IsInputKey = true; + } + } + + private void chkScrollPanel_CheckedChanged(object sender, EventArgs e) + { + this.scrollPanel.Visible = this.chkScrollPanel.Checked; //HERE + if (this.scrollPanel.Visible) + { + this.panSplitContainer.Left = this.scrollPanel.Width + 1; + this.panSplitContainer.Width = this.tbSpanSA.Left - this.scrollPanel.Width - 12; + } + else + { + this.panSplitContainer.Left = this.scrollPanel.Left; + this.panSplitContainer.Width = this.tbSpanSA.Left - 20; + } + this._fftSkips = -2; + } + + private unsafe void calcFFTs() + { + int size = 16384; + this._stopwatch.Reset(); + this._stopwatch.Start(); + for (int i = 0; i < 100; i++) + { + Fourier.ForwardTransformOrgOrg(this._fftPtr, size); + } + this._stopwatch.Stop(); + Console.WriteLine("dummy " + this._stopwatch.ElapsedMilliseconds.ToString()); + this._stopwatch.Reset(); + this._stopwatch.Start(); + for (int j = 0; j < 100; j++) + { + Fourier.ForwardTransformOrgOrg(this._fftPtr, size); + } + this._stopwatch.Stop(); + Console.WriteLine("Org(float) " + this._stopwatch.ElapsedMilliseconds.ToString()); + this._stopwatch.Reset(); + this._stopwatch.Start(); + for (int k = 0; k < 100; k++) + { + Fourier.ForwardTransformOrg(this._fftPtr, size); + } + this._stopwatch.Stop(); + Console.WriteLine("Org(double) " + this._stopwatch.ElapsedMilliseconds.ToString()); + this._stopwatch.Reset(); + this._stopwatch.Start(); + for (int l = 0; l < 100; l++) + { + Fourier.ForwardTransformLut(this._fftPtr, size); + } + this._stopwatch.Stop(); + Console.WriteLine("Lut " + this._stopwatch.ElapsedMilliseconds.ToString()); + this._stopwatch.Reset(); + this._stopwatch.Start(); + for (int m = 0; m < 100; m++) + { + Fourier.ForwardTransformRot(this._fftPtr, size); + } + this._stopwatch.Stop(); + Console.WriteLine("Rot " + this._stopwatch.ElapsedMilliseconds.ToString()); + } + + private void chkNotch_CheckedChanged(object sender, EventArgs e) + { + if (!Utils.FastConvolve) + { + MessageBox.Show("Fast convolve not enabled, notching not supplied\n Stop Radio, click 'Fast Convolve' and Start Radio"); + } + gButton but = (gButton)sender; + int num = Utils.Val(but.Name.Substring(but.Name.Length - 1, 1), 0); + this.spectrumAnalyzer.SetNotch(num, 0, 0, but.Checked); + this.ifAnalyzer.SetNotch(num, 0, 0, but.Checked); + if (but.Checked && !this.chkIF.Checked) + { + this.chkIF.Checked = true; + MessageBox.Show("Use below 'IF Baseband spectrum' and drag mouse to move/resize notch."); + } + } + + private void sampleRateComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + if (!this._formLoaded) + { + return; + } + if (!this._streamControl.IsPlaying) + { + return; + } + this.StopRadio(); + this._vfo.AgcThreshold -= 1f; + this._vfo.AgcThreshold += 1f; + this.StartRadio(); + this.modeRadioButton_CheckStateChanged(null, null); + } + + private void chkBaseBand_CheckedChanged(object sender, EventArgs e) + { + } + + private void chkNLimiter_CheckedChanged(object sender, EventArgs e) + { + this.tbNLRatio.Enabled = this.chkNLimiter.Checked; + this.tbNLTreshold.Enabled = this.chkNLimiter.Checked; + } + + private void tbNLTreshold_ValueChanged(object sender, EventArgs e) + { + this._nLimiter.Treshold = this.tbNLTreshold.Value; + this.labNLTreshold.Text = this.tbNLTreshold.Value.ToString(); + } + + private void tbNLRatio_ValueChanged(object sender, EventArgs e) + { + this._nLimiter.Ratio = (double)this.tbNLRatio.Value; + this.labNLRatio.Text = Math.Pow(10.0, (double)(-1f + (float)this.tbNLRatio.Value / 50f)).ToString("0.0"); + } + + private void tbRFgain_ValueChanged(object sender, EventArgs e) + { + this._vfo.RFgain = (double)this.tbRFgain.Value; + Console.WriteLine("RFgain=" + this.tbRFgain.Value.ToString()); + this.wideScope.Reset(); + } + + private void gThumb_MouseDown(object sender, MouseEventArgs e) + { + if (e.Button != MouseButtons.Left) + { + return; + } + this._oldTop = this.gThumb.Top; + this._oldCur = Control.MousePosition.Y; + } + + private void gThumb_MouseMove(object sender, MouseEventArgs e) + { + if (this._oldCur == 0 || e.Button != MouseButtons.Left) + { + return; + } + this.SetThumb(this._oldTop + Control.MousePosition.Y - this._oldCur); + } + + private void gThumb_MouseUp(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + this._oldCur = 0; + } + } + + private void pnlScroll_MouseDown(object sender, MouseEventArgs e) + { + this.SetThumb(this.pnlScroll.Top + e.Y); + } + + private void controlPanel_Resize(object sender, EventArgs e) + { + this.SetThumb(this.gThumb.Top); + } + + private void SetThumb(int newPos) + { + int h = (int)((float)this.scrollPanel.Height / (float)this.controlPanel.Height * (float)this.pnlScroll.Height); + if (h > this.pnlScroll.Height) + { + h = this.pnlScroll.Height; + } + if (this.gThumb.Height != h) + { + this.gThumb.Height = h; + } + int p = Math.Max(0, Math.Min(newPos, this.pnlScroll.Height - this.gThumb.Height)); + if (p != this.gThumb.Top) + { + this.gThumb.Top = p; + } + p = -(int)((float)p / (float)this.pnlScroll.Height * (float)this.controlPanel.Height); + if (this.controlPanel.Top != p) + { + this.controlPanel.Top = p; + } + base.Invalidate(); + } + + private void tbvCarrierAvg_ValueChanged(object sender, EventArgs e) + { + this.scope.CarrierAvg = this.tbvCarrierAvg.Value; + } + + private void tbvAudioRel_ValueChanged(object sender, EventArgs e) + { + this.scope.AudioRel = this.tbvAudioRel.Value; + } + + private void tbvAudioAvg_ValueChanged(object sender, EventArgs e) + { + this.scope.AudioAvg = this.tbvAudioAvg.Value; + } + + private void tbvPeakDelay_ValueChanged(object sender, EventArgs e) + { + this.scope.PeakDelay = this.tbvPeakDelay.Value; + } + + private void tbvPeakRel_ValueChanged(object sender, EventArgs e) + { + this.scope.PeakRel = this.tbvPeakRel.Value; + } + + private void gBexpand_CheckedChanged(object sender, EventArgs e) + { + if (!this.gBexpand.Checked) + { + this.scopeCollapsiblePanel.ExpandedHeight = this.scope.Top + this.scope.Height + 5; + } + else if (!this.gBexpandScope.Checked) + { + this.scopeCollapsiblePanel.ExpandedHeight = this.chkXY.Top + this.chkXY.Height + 10; + } + else + { + this.scopeCollapsiblePanel.ExpandedHeight = this.chkAver.Top + this.chkAver.Height + 8; + } + if (this.scopeCollapsiblePanel.PanelState == PanelStateOptions.Expanded) + { + this.scopeCollapsiblePanel.Height = this.scopeCollapsiblePanel.ExpandedHeight; + } + } + + private void gBexpandScope_CheckedChanged(object sender, EventArgs e) + { + this.gBexpand_CheckedChanged(sender, e); + } + + private void gBsetScale_CheckedChanged(object sender, EventArgs e) + { + this._floorValueNeeded = 5; + } + + private void gUpDown_Enter(object sender, EventArgs e) + { + this._keyPreview = false; + } + + private void gpUpDown_Leave(object sender, EventArgs e) + { + this._keyPreview = true; + } + + private void tbContrasAG_ValueChanged(object sender, EventArgs e) + { + int intensityValue = this.tbIntensityAg.Minimum + this.tbIntensityAg.Maximum - this.tbIntensityAg.Value; + int contrastValue = this.tbContrastAg.Minimum + this.tbContrastAg.Maximum - this.tbContrastAg.Value; + if (intensityValue + contrastValue > 25) + { + return; + } + this.audiogram.MinPower = (float)intensityValue; + this.audiogram.MaxPower = (float)(intensityValue + contrastValue); + } + + private void tbIntensityAG_ValueChanged(object sender, EventArgs e) + { + int intensityValue = this.tbIntensityAg.Minimum + this.tbIntensityAg.Maximum - this.tbIntensityAg.Value; + int contrastValue = this.tbContrastAg.Minimum + this.tbContrastAg.Maximum - this.tbContrastAg.Value; + if (intensityValue + contrastValue > 40) + { + return; + } + this.audiogram.MinPower = (float)intensityValue; + this.audiogram.MaxPower = (float)(intensityValue + contrastValue); + } + + private void tbAgSpeed_ValueChanged(object sender, EventArgs e) + { + this.setFftInterval(); + this.startSpeedCalc(); + } + + private unsafe void fftAverageUpDown_ValueChanged(object sender, EventArgs e) + { + for (int i = 0; i < this._actualFftBins; i++) + { + this._rfAveragePtr[i] = this._rfSpectrumPtr[i]; + } + } + + private void logFactorUpDown_ValueChanged(object sender, EventArgs e) + { + } + + private void btnShowLog_CheckedChanged(object sender, EventArgs e) + { + this.audiogram.ShowLog = this.btnShowLog.Checked; + this.setBftBins(); + } + + private void setFftInterval() + { + int wfSpeed = this.fftSpeedTrackBar.Value; + int agSpeed = this.tbAgSpeed.Value; + int oldInterval = this._fftTimer.Interval; + if (wfSpeed == this.fftSpeedTrackBar.Maximum || agSpeed == this.tbAgSpeed.Maximum) + { + this._fftTimer.Interval = 10; + } + else if (wfSpeed == this.fftSpeedTrackBar.Maximum - 1 || agSpeed == this.tbAgSpeed.Maximum - 1) + { + this._fftTimer.Interval = 20; + } + else + { + this._fftTimer.Interval = 40; + } + int incr = 0; + if (this._fftTimer.Interval == 20) + { + incr = 1; + } + if (this._fftTimer.Interval == 40) + { + incr = 2; + } + wfSpeed += incr; + agSpeed += incr; + if (Utils.FastFFT) + { + this._spectrumTimeout = 120 / this._fftTimer.Interval; + } + else + { + this._spectrumTimeout = 40 / this._fftTimer.Interval; + } + int val = this.fftSpeedTrackBar.Maximum + this.fftSpeedTrackBar.Minimum - wfSpeed; + this._waterfallTimout = (int)Math.Pow(2.0, (double)val); + val = this.tbAgSpeed.Maximum + this.tbAgSpeed.Minimum - agSpeed; + this._audiogramTimout = (int)Math.Pow(2.0, (double)val); + if (Utils.FastFFT && this._waterfallTimout * this._fftTimer.Interval < 40) + { + this.waterfall.UseTimestamps = 0; + } + else + { + this.waterfall.UseTimestamps = ((!this.useTimestampsCheckBox.Checked) ? 0 : ((this.useTimestampsCheckBox.Text == "Time") ? 1 : 2)); + } + if (this._fftTimer.Interval != oldInterval) + { + this._delta100 = this._delta100 * (long)this._fftTimer.Interval / (long)oldInterval; + } + this._fftSkips = -1; + } + + private void waterfall_Resize(object sender, EventArgs e) + { + this.showWaterfallSpeed(); + } + + private void startSpeedCalc() + { + this._stopwatch.Reset(); + this._count100 = 100; + this._stopwatch.Start(); + } + + private void getWaterfallSpeed() + { + if (this._count100 <= 0) + { + return; + } + if (--this._count100 > 0) + { + return; + } + this._stopwatch.Stop(); + this._delta100 = this._stopwatch.ElapsedMilliseconds; + this._stopwatch.Reset(); + this.showWaterfallSpeed(); + } + + private void showWaterfallSpeed() + { + if (this._delta100 == 0L) + { + return; + } + this.waterfall.ScanLineMsec = (int)((long)this._waterfallTimout * this._delta100 / 100L); + this.ifWaterfall.ScanLineMsec = (int)((long)this._waterfallTimout * this._delta100 / 100L); + this.audiogram.ScanLineMsec = (int)((long)((this._audiogramTimout == 1) ? 1 : (this._audiogramTimout / 2)) * this._delta100 / 100L); + float secs; + if (this.waterfall.Horizontal) + { + secs = (float)((long)this._waterfallTimout * this._delta100 * (long)this.waterfall.Width) / 100000f; + } + else + { + secs = (float)((long)this._waterfallTimout * this._delta100 * (long)this.waterfall.Height) / 100000f; + } + if (secs < 10f) + { + this.labSpeed.Text = string.Format("{0:0.0} s", secs); + return; + } + if (secs < 100f) + { + this.labSpeed.Text = string.Format("{0:#0} s", secs); + return; + } + if (secs < 600f) + { + this.labSpeed.Text = string.Format("{0:#0}m{1:00}", (int)(secs / 60f), (int)(secs % 60f)); + return; + } + if (secs < 3600f) + { + this.labSpeed.Text = string.Format("{0:#0} m", (int)(secs / 60f)); + return; + } + this.labSpeed.Text = string.Format("{0:#0}h{1:00}", (int)(secs / 3600f), (int)(secs % 3600f / 60f)); + } + + private void collapsiblePanel_StateChanged(object sender, EventArgs e) + { + SDRSharp.CollapsiblePanel.CollapsiblePanel pnl = (SDRSharp.CollapsiblePanel.CollapsiblePanel)sender; + if (pnl.PanelTitle.Contains("Recording")) + { + this.spectrumAnalyzer.CenterSnap = (pnl.PanelState == PanelStateOptions.Expanded); + this.waterfall.CenterSnap = (pnl.PanelState == PanelStateOptions.Expanded); + if (pnl.PanelState == PanelStateOptions.Expanded) + { + int step = Math.Min(1000, this.spectrumAnalyzer.StepSize); + long f = this.centerFreqNumericUpDown.Value; + this.centerFreqNumericUpDown.Value = (f + (long)(Math.Sign(f) * step / 2)) / (long)step * (long)step; + } + } + } + + private void audioDeviceComboBox_SelectedIndexChanged(object sender, EventArgs e) + { + string name = ((gCombo)sender).Name; + string item = ((gCombo)sender).SelectedItem.ToString().ToUpper(); + if (name.Contains("output")) + { + this._streamControl.UseASIO = (item.Contains("ASIO") || item.Contains("CABL") || item.Contains("VIRT")); + } + if (!this._formLoaded) + { + return; + } + if (!item.ToUpper().Contains("[WDS]")) + { + return; + } + for (int i = 0; i < this.outputDeviceComboBox.Items.Count; i++) + { + string alt = this.outputDeviceComboBox.Items[i].ToString(); + if (alt.ToUpper().Contains("[MME]")) + { + MessageBox.Show("Please use [MME] device, this might give lower latencies."); + return; + } + } + } + + private void mnuSetNotch_Click(object sender, EventArgs e) + { + if (!this.chkNotch0.Checked) + { + this.chkNotch0.Checked = true; + return; + } + if (!this.chkNotch1.Checked) + { + this.chkNotch1.Checked = true; + return; + } + if (!this.chkNotch2.Checked) + { + this.chkNotch2.Checked = true; + return; + } + if (!this.chkNotch3.Checked) + { + this.chkNotch3.Checked = true; + } + } + + private void MnuClearNotch_Click(object sender, EventArgs e) + { + if (this.chkNotch3.Checked) + { + this.chkNotch3.Checked = false; + return; + } + if (this.chkNotch2.Checked) + { + this.chkNotch2.Checked = false; + return; + } + if (this.chkNotch1.Checked) + { + this.chkNotch1.Checked = false; + return; + } + if (this.chkNotch0.Checked) + { + this.chkNotch0.Checked = false; + } + } + + private void mnuVfo_Click(object sender, EventArgs e) + { + ToolStripMenuItem mnu = (ToolStripMenuItem)sender; + string a; + if ((a = mnu.Text.Substring(4)) != null) + { + if (a == "A") + { + this.butVfoA.Checked = true; + return; + } + if (a == "B") + { + this.butVfoB.Checked = true; + return; + } + if (!(a == "C")) + { + return; + } + this.butVfoC.Checked = true; + } + } + + private void mnuAutoScale_Click(object sender, EventArgs e) + { + this._floorValueNeeded = 5; + } + + private void mnuSetColors_Click(object sender, EventArgs e) + { + string parent = ((ContextMenuStrip)((ToolStripMenuItem)sender).Owner).SourceControl.Name; + if (parent.Contains("lyzer")) + { + this.gradientButtonSA_Click(this, null); + return; + } + if (parent.Contains("fall")) + { + this.gradientButtonWF_Click(this, null); + return; + } + if (parent.Contains("scope")) + { + this.gradientButtonSA_Click(this, null); + return; + } + this.gradientButtonAG_Click(this, null); + } + + private void mnuShowWaterfall_Click(object sender, EventArgs e) + { + this.chkWF.Checked = !this.chkWF.Checked; + } + + private void mnuShowBaseband_Click(object sender, EventArgs e) + { + this.chkIF.Checked = !this.chkIF.Checked; + } + + private void mnuShowAudio_Click(object sender, EventArgs e) + { + this.cmbAudio.SelectedIndex = (this.mnuShowAudio.Checked ? 0 : 1); + } + + private void mnuShowAudiogram_Click(object sender, EventArgs e) + { + this.cmbAudio.SelectedIndex = (this.mnuShowAudiogram.Checked ? 0 : 2); + } + + private void mnuShowEnvelope_Click(object sender, EventArgs e) + { + this.cmbAudio.SelectedIndex = (this.mnuShowEnvelope.Checked ? 0 : 3); + } + + private void mnuStationList_Click(object sender, EventArgs e) + { + this.spectrumAnalyzer.ShowStationList(); + } + + private void MnuSA_Opening(object sender, CancelEventArgs e) + { + string parent = ((ContextMenuStrip)sender).SourceControl.Name; + this.mnuStationList.Visible = parent.Contains("pectrum"); + this.mnuAutoScale.Visible = this.mnuStationList.Visible; + } + + private void chkAutoSize_CheckedChanged(object sender, EventArgs e) + { + this.panview_AutoZoomed(null, null); + } + + private void playBar_ValueChanged(object sender, EventArgs e) + { + if (this._streamControl.WaveFile == null) + { + return; + } + long position = (long)((float)this._streamControl.WaveFile.Size * this.playBar.Fraction); + this._streamControl.WaveFile.Position = position; + DateTime start = DateTime.Now.AddSeconds((double)(-1f * ((float)this._duration - (float)this._streamControl.WaveFile.Duration * (1f - this.playBar.Fraction)))); + this._streamControl.WaveStart = start; + } + + private void waterfall_MouseDown(object sender, MouseEventArgs e) + { + } + + private void panSplitContainer4_SplitterMoved(object sender, SplitterEventArgs e) + { + this.panSplitContainer5.SplitterDistance = e.SplitY; + } + + private void MainForm_Activated(object sender, EventArgs e) + { + this._isActive = true; + this._fftSkips = -2; + } + + private void MainForm_Deactivate(object sender, EventArgs e) + { + this._isActive = false; + } + + private void fastFftCheckBox_CheckedChanged(object sender, EventArgs e) + { + if (this._streamControl.IsPlaying) + { + this.StopRadio(); + } + Utils.FastFFT = this.fastFftCheckBox.Checked; + } + + private void audioButton_CheckedChanged(object sender, EventArgs e) + { + this.audioButton.Text = (this.audioButton.Checked ? "Mute" : "Audio"); + } + + private void remDcSlider_ValueChanged(object sender, EventArgs e) + { + if (this.remDcSlider.Enabled) + { + this._iqBalancer.RemoveDC = ((this.remDcSlider.Value == 0) ? 0f : (1f / (float)this.remDcSlider.Value)); + } + } + + private void gButton1_CheckedChanged(object sender, EventArgs e) + { + RadAboutBox1 _About = new RadAboutBox1(); + _About.Show(); + + /* + string helpFile = "help.txt"; + if (File.Exists(helpFile)) + { + Process.Start(helpFile); + return; + } + MessageBox.Show(helpFile + " not found."); + */ + } + #endregion + + #region [Declarations] + private const int FREQ = 0; + private const int TIME = 1; + private const int DAYS = 2; + private const int CTRY = 3; + private const int NAME = 4; + private const int LANG = 5; + private const int DBUV = 6; + private const int SITE = 7; + private const int EMP = 8; + private const int DIST = 9; + private const int POWR = 10; + private const int MaxFFTBins = 4194304; + private const int MaxBFTBins = 32768; + static DateTime now = DateTime.Now; + public static string arch = getArch(); + +#if DEBUG + private static string _baseTitle = "SDRSharper Revised "; // + now.ToLocalTime().ToShortTimeString() + " " + now.ToLocalTime().ToShortDateString(); +#else + private static string _baseTitle = "SDRSharper Revised "; // + now.ToLocalTime().ToShortTimeString() + " " + now.ToLocalTime().ToShortDateString(); +#endif + + private static readonly int[] _defaultAMState = new int[] + { + 9000, + 450, + 3, + 50, + 0, + 1, + 4 + }; + + private static readonly int[] _defaultDSBState = new int[] + { + 6000, + 500, + 3, + 50, + 0, + 1, + 2 + }; + + private static readonly int[] _defaultSSBState = new int[] + { + 2400, + 500, + 3, + 50, + 0, + 1, + 2 + }; + + private static readonly int[] _defaultCWState = new int[] + { + 300, + 800, + 3, + 50, + 0, + 1, + 2 + }; + + private static readonly int[] _defaultNFMState = new int[] + { + 8000, + 300, + 3, + 50, + 1, + 1, + 11 + }; + + private static readonly int[] _defaultWFMState = new int[] + { + 180000, + 100, + 3, + 50, + 0, + 1, + 14 + }; + + private static readonly int[] _defaultRAWState = new int[] + { + 10000, + 450, + 3, + 50, + 0, + 1, + 4 + }; + + private WindowType _fftWindowType; + private IFrontendController _frontendController; + private readonly Dictionary _frontendControllers = new Dictionary(); + private readonly IQBalancer _iqBalancer; + private readonly Vfo _vfo; + private readonly VfoHookManager _vfoHookManager; + private readonly StreamControl _streamControl; + private FractResampler _fractResampler; + private FloatDecimator _audioDecimator; + private readonly Limiter _nLimiter = new Limiter(); + private readonly ComplexFifoStream _fftStream = new ComplexFifoStream(BlockMode.BlockingRead); + private readonly ComplexFifoStream _iftStream = new ComplexFifoStream(BlockMode.BlockingRead); + private readonly ComplexFifoStream _aftStream = new ComplexFifoStream(BlockMode.BlockingRead); + private readonly FloatFifoStream _spectrumStream = new FloatFifoStream(BlockMode.None); + private readonly UnsafeBuffer _fftWindow = UnsafeBuffer.Create(4194304, 4); + private unsafe readonly float* _fftWindowPtr; + private readonly UnsafeBuffer _bftWindow = UnsafeBuffer.Create(2097152, 4); + private unsafe readonly float* _bftWindowPtr; + private unsafe readonly UnsafeBuffer _iqBuffer = UnsafeBuffer.Create(4194304, sizeof(Complex)); + private unsafe readonly Complex* _iqPtr; + private unsafe readonly UnsafeBuffer _fftBuffer = UnsafeBuffer.Create(4194304, sizeof(Complex)); + private unsafe readonly Complex* _fftPtr; + private readonly UnsafeBuffer _rfSpectrum = UnsafeBuffer.Create(4194304, 4); + private unsafe readonly float* _rfSpectrumPtr; + private readonly UnsafeBuffer _rfAverage = UnsafeBuffer.Create(4194304, 4); + private unsafe readonly float* _rfAveragePtr; + private readonly UnsafeBuffer _scaledRfSpectrum = UnsafeBuffer.Create(4194304, 1); + private unsafe readonly byte* _scaledRfSpectrumPtr; + private unsafe readonly UnsafeBuffer _afqBuffer = UnsafeBuffer.Create(4194304, sizeof(Complex)); + private unsafe readonly Complex* _afqPtr; + private unsafe readonly UnsafeBuffer _aftBuffer = UnsafeBuffer.Create(4194304, sizeof(Complex)); + private unsafe readonly Complex* _aftPtr; + private readonly UnsafeBuffer _afSpectrum = UnsafeBuffer.Create(4194304, 4); + private unsafe readonly float* _afSpectrumPtr; + private readonly UnsafeBuffer _scaledAfSpectrum = UnsafeBuffer.Create(4194304, 1); + private unsafe readonly byte* _scaledAfSpectrumPtr; + private unsafe readonly UnsafeBuffer _ifqBuffer = UnsafeBuffer.Create(4194304, sizeof(Complex)); + private unsafe readonly Complex* _ifqPtr; + private unsafe readonly UnsafeBuffer _iftBuffer = UnsafeBuffer.Create(4194304, sizeof(Complex)); + private unsafe readonly Complex* _iftPtr; + private readonly UnsafeBuffer _iftSpectrum = UnsafeBuffer.Create(4194304, 4); + private unsafe readonly float* _iftSpectrumPtr; + private readonly UnsafeBuffer _scaledIFTSpectrum = UnsafeBuffer.Create(4194304, 1); + private unsafe readonly byte* _scaledIFTSpectrumPtr; + private readonly SharpEvent _fftEvent = new SharpEvent(false); + private UnsafeBuffer _xBuf; + private unsafe float* _xPtr; + private UnsafeBuffer _yBuf; + private unsafe float* _yPtr; + private UnsafeBuffer _audioBuf; + private unsafe Complex* _audioPtr; + private UnsafeBuffer _envBuf; + private unsafe float* _envPtr; + private System.Windows.Forms.Timer _fftTimer; + private System.Windows.Forms.Timer _performTimer; + private long _frequencyToSet; + private long _frequencySet; + private long _frequencyShift; + private int _maxIQSamples; + private int _maxAFSamples; + private int _maxIFSamples; + private int _fftBins; + private int _bftBins; + private int _actualFftBins; + private int _actualIftBins; + private int _actualAftBins; + private int _rfSpectrumSamples; + private int _afSpectrumSamples; + private int _ifSpectrumSamples; + private bool _rfSpectrumAvailable; + private bool _afSpectrumAvailable; + private bool _ifSpectrumAvailable; + private bool _fftBufferIsWaiting; + private bool _extioChangingFrequency; + private bool _extioChangingSamplerate; + private bool _terminated; + private string _waveFile; + private int _duration; + private Point _lastLocation; + private Size _lastSize; + private bool _initializing; + private bool _formLoaded; + private int _gainValueNeeded = -1; + private int _floorValueNeeded = -99; + private float _fftMinimum; + private float _fftAverageMin; + private string _numEntry = ""; + private bool _keyPreview = true; + private int _spectrumTimeout = 3; + private int _rfTimout; + private int _ifTimeout; + private int _afTimeout; + private int _waterfallTimout = 10; + private int _audiogramTimout = 10; + private bool _frequencyChangeBusy; + private bool _bandwidthChangeBusy; + private float _frequencyBounds = 2.2f; + private Stopwatch _stopwatch = new Stopwatch(); + private int _count100; + private long _delta100; + private bool _speedError; + private int _fftSkips; + private int _fftSkipCnt; + private bool _isActive; + private Dictionary _frequencyList = new Dictionary(); + private int _maxStations = 10; + private ColorBlend[] _saBlends = new ColorBlend[5]; + private ColorBlend[] _wfBlends = new ColorBlend[5]; + private ColorBlend[] _agBlends = new ColorBlend[5]; + private int[] _backgrounds = new int[10]; + private int[] _traceColors = new int[10]; + private int[] _spectrumFill = new int[10]; + private int _wfBlendIndex = 1; + private int _saBlendIndex = 1; + private int _agBlendIndex = 1; + private int _oldCur; + private int _oldTop; + private List _inputDevices = new List(); + private List _outputDevices = new List(); + private readonly Dictionary _sharpPlugins = new Dictionary(); + private readonly Dictionary _modeStates = new Dictionary(); + private SharpControlProxy _sharpControlProxy; + private float _fftGain; + private float _bftGain; + private float _AsioCorrection; + private int _prevSize; + private int _minSize; + private int _maxSize = 10000; + private bool _upwards; + private bool _colorInvokeBusy; + private Counter _fftTmr = new Counter(); + private Counter _performTmr = new Counter(); + private Counter _processTmr = new Counter(); + + public struct Setting + { + public Setting(string key, string value) + { + this.Key = key; + this.Value = value; + } + [XmlAttribute] + public string Key; + [XmlAttribute] + public string Value; + } + #endregion + } +} diff --git a/SDRSharper/MainForm.resx b/SDRSharper/MainForm.resx new file mode 100644 index 0000000..052c205 --- /dev/null +++ b/SDRSharper/MainForm.resx @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 115, 17 + + + 205, 17 + + + 296, 17 + + + 389, 17 + + + 551, 17 + + + + + AAABAAQAQEAAAAEAIAAoQAAARgAAACAgAAABACAAKBAAAG5AAAAYGAAAAQAgACgJAACWUAAAEBAAAAEA + IAAoBAAAvlkAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAAAP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAAAAAAAAAAAAAA/wAA + AP8AAAAAAAAAAMDAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/AAAAAAAA + AAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDA + wP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wD4AP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8A+AD/APgA/wAAAP8AAAD/APgA/wD4 + AP8A+AD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAA + AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8A+AD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAA + AADAwMD/wMDA/wAAAP8AAAD/APgA/wD4AP8A+AD/APgA/wAAAP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DA + wP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8A+AD/APgA/wAA + AP8AAAD/APgA/wD4AP8A+AD/APgA/wD4AP+AgID/AAAA/wAAAP8AAAD/APgA/wD4AP8A+AD/AAAA/wAA + AP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAA + AP8AAAD/gICA/4CAgP8A+AD/APgA/wD4AP8A+AD/gICA/4CAgP+AgID/APgA/wD4AP8A+AD/gICA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8AAAD/APgA/wD4AP8A+AD/APgA/wD4AP+AgID/gICA/4CA + gP+AgID/APgA/wD4AP+AgID/gICA/wD4AP8A+AD/APgA/wD4AP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP8A+AD/APgA/4CAgP+AgID/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAA + AAAAAAAAwMDA/8DAwP8AAAD/AAAA/4CAgP+AgID/APgA/wD4AP8A+AD/APgA/4CAgP+AgID/gICA/wD4 + AP8A+AD/gICA/4CAgP+AgID/APgA/wD4AP8A+AD/APgA/wAAAP8AAAD/APgA/wD4AP8A+AD/APgA/wD4 + AP+AgID/gICA/4CAgP+AgID/gICA/wD4AP8A+AD/gICA/4CAgP8A+AD/APgA/wD4AP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/APgA/wD4AP+AgID/gICA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAA + AP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4 + AP8AAAD/AAAA/4CAgP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/APgA/wD4 + AP8A+AD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/8DA + wP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/APgA/wD4 + AP8AAAD/AAAA/wD4AP8A+AD/APgA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DA + wP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8A+AD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wD4AP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAA + AP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAA + AAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4 + AP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4 + AP8A+AD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAA + AP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wD4AP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4 + AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDA + wP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4 + AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAA + AADAwMD/wMDA/wAAAP8AAAD/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/APgA/wD4AP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wD4AP8A+AD/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wD4AP8A+AD/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP8A+AD/APgA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wAAAP8AAAD/wMDA/8DA + wP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/APgA/wD4AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAA + AAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAA + AP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4 + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DA + wP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wD4AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DA + wP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAA + AP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAA + AAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4 + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDA + wP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/APgA/wD4AP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/AAAA/wAAAP/AwMD/wMDA/wAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wD4 + AP8A+AD/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wAA + AP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAA + AADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DA + wP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAA + AAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAA + AP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DA + wP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DA + wP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAA + AP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAA + AAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/wAAAP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/APgA/wD4 + AP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/AAAA/wAA + AP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/wD4AP8A+AD/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDA + wP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAA + AADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DA + wP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAAAAAAAAAAA + AP8AAAD/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAA + AAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAA/wAAAP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAAAAAAAAAAAAKAAAACAA + AABAAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAAAAAAAAAAP8AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAAAAAAAAD/AAAAAMDA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP8AAAAAAAAA/wAA + AP8AAAAAwMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/wAA + AAAAAAD/AAAA/wAAAADAwMD/AAAA/wD4AP8AAAv/AAAA/wAAAP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/APgA/wAAAP8A+AD/APgA/wAAAP8A+AD/APgA/wAAC/8AAAv/AAAL/wAA + AP/AwMD/AAAAAAAAAP8AAAD/AAAAAMDAwP8AAAD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/AAAA/8DAwP8AAAAAAAAA/wAAAP8AAAAAwMDA/wAAAP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/AAAA/wD4AP8A+AD/APgA/wAA + AP8A+AD/APgA/wAAAP8AAAD/wMDA/wAAAAAAAAD/AAAA/wAAAADAwMD/AAAA/4CAgP8A+AD/APgA/4CA + gP+AgID/gICA/4CAgP8A+AD/APgA/wAAAP8A+AD/APgA/wD4AP+AgID/gICA/wD4AP+AgID/APgA/wD4 + AP+AgID/gICA/4CAgP8A+AD/gICA/wAAAP/AwMD/AAAAAAAAAP8AAAD/AAAAAMDAwP8AAAD/AAAA/wD4 + AP8A+AD/AAAA/4CAgP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4AP8A+AD/AAAA/4CAgP8AAAD/APgA/wAA + AP8A+AD/APgA/wAAC/8AAAv/AAAA/wD4AP8AAAD/AAAA/8DAwP8AAAAAAAAA/wAAAP8AAAAAwMDA/wAA + AP8AAAD/APgA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wD4AP8A+AD/APgA/wAAAP8AAAD/gICA/wAA + AP8AAAD/AAAA/wD4AP8AAAD/AAAL/wAAAP8AAAD/APgA/wAAAP8AAAD/wMDA/wAAAAAAAAD/AAAA/wAA + AADAwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAA + AP+AgID/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAv/AAAA/wAAAP8A+AD/AAAA/wAAAP/AwMD/AAAAAAAA + AP8AAAD/AAAAAMDAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAAAP8AAAD/APgA/wAA + AP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAAC/8AAAD/AAAA/wD4AP8AAAD/AAAA/8DA + wP8AAAAAAAAA/wAAAP8AAAAAwMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/AAAA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wD4AP8AAAD/AAAL/wAAAP8AAAD/gICA/wAA + AP8AAAD/wMDA/wAAAAAAAAD/AAAA/wAAAADAwMD/AAAA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/wD4AP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/APgA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/wAAAP/AwMD/AAAAAAAAAP8AAAD/AAAAAMDAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAA + C/8AAAD/AAAA/4CAgP8AAAD/AAAA/8DAwP8AAAAAAAAA/wAAAP8AAAAAwMDA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wD4 + AP8AAAD/AAAL/wAAAP8AAAD/gICA/wAAAP8AAAD/wMDA/wAAAAAAAAD/AAAA/wAAAADAwMD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/AAAA/wAAAP8AAAD/AAAA/wD4AP8AAAD/AAAA/wAAAP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAv/AAAA/wAAAP+AgID/AAAA/wAAAP/AwMD/AAAAAAAAAP8AAAD/AAAAAMDA + wP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAC/8AAAv/AAAA/4CAgP8AAAD/AAAA/8DAwP8AAAAAAAAA/wAA + AP8AAAAAwMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAA + AP8AAAD/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAL/wAAAP8AAAD/gICA/wAAAP8AAAD/wMDA/wAA + AAAAAAD/AAAA/wAAAADAwMD/AAAA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wD4 + AP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wAA + AP/AwMD/AAAAAAAAAP8AAAD/AAAAAMDAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/APgA/wAAAP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAC/8AAAD/AAAA/4CA + gP8AAAD/AAAA/8DAwP8AAAAAAAAA/wAAAP8AAAAAwMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAL/wAA + AP8AAAD/gICA/wAAAP8AAAD/wMDA/wAAAAAAAAD/AAAA/wAAAADAwMD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/AAAA/wAAAP8AAAD/AAAA/wD4AP8AAAD/AAAA/wAAAP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAv/AAAA/wAAAP+AgID/AAAA/wAAAP/AwMD/AAAAAAAAAP8AAAD/AAAAAMDAwP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAC/8AAAD/AAAA/4CAgP8AAAD/AAAA/8DAwP8AAAAAAAAA/wAAAP8AAAAAwMDA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAL/wAAAP8AAAD/gICA/wAAAP8AAAD/wMDA/wAAAAAAAAD/AAAA/wAA + AADAwMD/AAAA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wD4AP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wAAAP/AwMD/AAAAAAAA + AP8AAAD/AAAAAMDAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAAAP8AAAD/APgA/wAA + AP8AAAD/AAAA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAC/8AAAD/AAAA/4CAgP8AAAD/AAAA/8DA + wP8AAAAAAAAA/wAAAP8AAAAAwMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/AAAA/wAAAP8AAAD/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAL/wAAAP8AAAD/gICA/wAA + AP8AAAD/wMDA/wAAAAAAAAD/AAAA/wAAAADAwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP/AwMD/AAAAAAAAAP8AAAD/AAAAAMDAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP8AAAAAAAAA/wAAAAAAAAD/AAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAAAAAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAAAAAAAAAoAAAAGAAAADAA + AAABACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAHsAAACXAAAAlwAAAJcAAACXAAAAlwAA + AJcAAACXAAAAlwAAAJcAAACXAAAAlwAAAJcAAACXAAAAlwAAAJcAAACXAAAAlwAAAJcAAACXAAAAlwAA + AHsAAAARAAAAe1tbW4fo6Oh53d3ded3d3Xnb29t519fXed3d3Xnd3d153d3ded3d3Xnd3d1529vbednZ + 2Xnd3d153d3ded3d3XnZ19l529vbed3d3Xnd3d156OjoeVlZWYcAAAB7AAAAnOrq6np4d3j/QjFC/0I6 + Qv9FOUX/TUFN/0I8Qv9CQUL/QkJC/0JCQv9CQEL/SD5I/0s6S/9CMkL/QjBC/0I5Qv9PQk//RTNF/0Iy + Qv9CNkL/eXh5/+zu7HcAAACdAAAAlt7T3ns4RDj/AIMA/wAaAP8AKAD/Ll8u/wAHAP8AAAD/AAAA/wAA + AP8AAAD/Ei8S/yOXI/8AXAD/AJEA/wAeAP8NcA3/AI8A/wBJAP8AMwD/OT05/9/b33kAAACXAAAAltzL + 3HtBVkH/APsA/wDSAP8A9AD/APwA/wDvAP8AlQD/AA0A/wAAAP8AfgD/APoA/wD2AP8A6AD/ALkA/wDu + AP8A5AD/AKgA/wD/AP8AdwD/QjdC/93b3XkAAACXAAAAltbR1ntMRkz/Mpoy/wD/AP9HtUf/ItMi/y3G + Lf8P/w//AJ8A/wA9AP8A/wD/KNMo/2FyYf8itSL/M4sz/wX/Bf9anFr/Zj9m/ynHKf8rbyv/TT1N/9fZ + 13kAAACXAAAAltrc2ntDMkP/Cj4K/wDsAP8eKB7/SWFJ/w8ED/8FNgX/APgA/wD/AP8AoQD/NCg0/1RE + VP8Hhwf/Cm8K/wK/Av9fUF//IA4g/wiICP8IUwj/RDVE/9vb23kAAACXAAAAltzc3HtBPEH/AA8A/wBY + AP8PAw//WVFZ/wAAAP8AAAD/AH0A/wD/AP8AJQD/Kxkr/0RJRP8AHAD/AFAA/wCAAP9VQVX/DQAN/wCF + AP8ASAD/QjJC/93d3XkAAACXAAAAltzc3HtAQUD/AAAA/wAAAP8KCgr/U1RT/wAAAP8AAAD/AEAA/wC5 + AP8AAAD/JyUn/0JCQv8AAAD/AFAA/wCBAP9TQFP/CQAJ/wCAAP8APgD/QTNB/93d3XkAAACXAAAAltra + 2ntERET/JSUl/ywrLP83Nzf/ZGRk/ysrK/8uKS7/HXMd/xSUFP8vJy//SUlJ/1paWv8uKS7/HXId/xSZ + FP9oVGj/NjI2/yxPLP8kLCT/RUNF/9vb23kAAACXAAAAltjY2HtGRkb/Ozs7/0hISP9OTk7/bW1t/0ZG + Rv9LQ0v/LoQu/yCnIP9MQUz/Wlpa/2ZmZv9LQ0v/LoQu/yCoIP9zX3P/Tk9O/0hASP87OTv/R0hH/9nZ + 2XkAAACXAAAAltzc3HtAQED/AAAA/wAAAP8ICAj/U1NT/wAAAP8AAAD/AE8A/wCCAP8AAAD/JSUl/0FB + Qf8AAAD/AE4A/wB7AP9SQFL/BwcH/wAAAP8AAAD/QUFB/93d3XkAAACXAAAAltzc3HtBQUH/AAAA/wAA + AP8RERH/VlZW/wAAAP8AAAD/AFYA/wCHAP8AAAD/LCws/0ZGRv8AAAD/AEEA/wA1AP9WTFb/EBAQ/wAA + AP8AAAD/QkJC/93d3XkAAACXAAAAltzc3HtBQUH/AAAA/wAAAP8ODg7/VVVV/wAAAP8AAAD/AFQA/wCG + AP8AAAD/Kioq/0VFRf8AAAD/AAcA/wACAP9VVFX/DQ0N/wAAAP8AAAD/QkJC/93d3XkAAACXAAAAltbW + 1ntHR0f/SUlJ/1hYWP9cXFz/cnJy/1ZWVv9bUVv/OI44/yeuJ/9dT13/ZGRk/21tbf9WVlb/VlNW/1ZU + Vv9yc3L/W1tb/1hYWP9ISEj/SEhI/9fX13kAAACXAAAAltra2ntCQkL/Dg4O/xEREf8gICD/XFxc/xER + Ef8SEBL/C2EL/wiPCP8SEBL/Nzc3/05OTv8RERH/ERER/xEREf9cXFz/Hx8f/xEREf8ODg7/Q0ND/9vb + 23kAAACXAAAAltzc3HtBQUH/AAAA/wAAAP8ODg7/VVVV/wAAAP8AAAD/AFQA/wCFAP8AAAD/Kioq/0RE + RP8AAAD/AAAA/wAAAP9VVVX/DQ0N/wAAAP8AAAD/QkJC/93d3XkAAACXAAAAltzc3HtAQED/AAAA/wAA + AP8MDAz/VFRU/wAAAP8AAAD/AFEA/wCDAP8AAAD/Jycn/0JCQv8AAAD/AAAA/wAAAP9TU1P/CQkJ/wAA + AP8AAAD/QUFB/93d3XkAAACXAAAAltra2ntERET/JSUl/y4uLv8sLCz/YGBg/ywsLP8uKS7/HXUd/xSd + FP8vKC//SUlJ/1paWv8rKyv/Kysr/ysrK/9kZGT/NjY2/ywsLP8kJCT/RUVF/9vb23kAAACXAAAAltjY + 2HtGRkb/Ozs7/0pKSv9GRkb/bGxs/0dHR/9LQ0v/Lnsu/yChIP9MQUz/W1tb/2hoaP9GRkb/RkZG/0ZG + Rv9vb2//Tk5O/0hISP87Ozv/R0dH/9nZ2XkAAACXAAAAlt7e3ns4ODj/AAAA/wAAAP8AAAD/QkJC/wAA + AP8AAAD/AAEA/wA/AP8AAAD/FxcX/zExMf8AAAD/AAAA/wAAAP9BQUH/AAAA/wAAAP8AAAD/OTk5/9/f + 33kAAACXAAAAnOrq6np3d3f/QUFB/0FBQf9CQkL/R0dH/0FBQf9BQUH/QUJB/0FGQf9BQUH/RERE/0ZG + Rv9BQUH/QUFB/0FBQf9HR0f/QkJC/0FBQf9BQUH/eHh4/+zs7HcAAACdAAAAfFtbW4fm5uZ73Nzce9zc + 3Hva2tp71tbWe9zc3Hvc3Nx73Nrce9zW3Hvc3Nx72trae9jY2Hvc3Nx73Nzce9zc3HvW1tZ72trae9zc + 3Hvc3Nx75ubme1lZWYYAAAB8AAAAEgAAAHwAAACWAAAAlgAAAJYAAACWAAAAlgAAAJYAAACWAAAAlgAA + AJYAAACWAAAAlgAAAJYAAACWAAAAlgAAAJYAAACWAAAAlgAAAJYAAACWAAAAlgAAAHwAAAASKAAAABAA + AAAgAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAoJiiHPDw8gDo6OoA4ODiAOjo6gDo6 + OoA6OjqAODg4gDo4OoA6OjqAODg4gDo4OoA8PDyAKCgohwAAAEEmJiaGlJSUyV5UXuBgTWDgZlBm4F5P + XuBeXl7gXlde4GZTZuBgT2DgXk9e4GVVZeBeUF7gXk9e4JSYlMkmJiaHPjI+f1duV+QAfwD/AGIA/wiC + CP8AKgD/AAAA/wAEAP8Gigb/AJ0A/wB/AP8AfwD/AJoA/wBTAP9WVVblPjo+gDYuNn9oZWjfD9MP/xn0 + Gf8c3hz/EOMQ/wBbAP8AogD/Jdwl/yi0KP8Q0hD/J9Qn/zmVOf8XnRf/ZlNm4Dg2OIA4Ojh/Ykti3wVm + Bf8Zaxn/Oys7/wgeCP8A8AD/ALUA/0IlQv8gUSD/BosG/z9pP/8kMiT/CGUI/15PXuA6OjqAOjo6f1tb + W98AAAD/DA0M/zQvNP8AAAD/AIIA/wBDAP8yIDL/DAAM/wBWAP8zTzP/CyoL/wBSAP9dTV3gOjo6gDY2 + Nn9jY2PfLywv/0RCRP9XWFf/OzQ7/yCHIP8vSy//WFNY/0Y2Rv8ghSD/TnNO/0ZGRv8vPC//Y15j4Dg4 + OIA4ODh/YGBg3xAQEP8kJCT/Q0ND/xQSFP8Ldgv/EDAQ/0I8Qv8lFiX/C2wL/z9kP/8lHSX/EA0Q/15e + XuA6OjqAOjo6f1tbW98AAAD/CgoK/zIyMv8AAAD/AGUA/wAWAP8xKzH/CwYL/wAeAP8xOjH/CwoL/wAA + AP9dXV3gOjo6gDY2Nn9jY2PfLy8v/0RERP9XV1f/OzQ7/yCLIP8vUS//WFJY/0NDQ/84NDj/V1VX/0RE + RP8vLy//Y2Nj4Dg4OIA4ODh/YGBg3xAQEP8kJCT/Q0ND/xQSFP8Ldgv/EDAQ/0I8Qv8kJCT/ExMT/0JC + Qv8kJCT/EBAQ/15eXuA6OjqAOjo6f1tbW98AAAD/CgoK/zIyMv8AAAD/AGUA/wAWAP8xKzH/CwsL/wAA + AP8xMTH/CwsL/wAAAP9dXV3gOjo6gDY2Nn9jY2PfMDAw/z4+Pv9VVVX/OzU7/yCPIP8vUi//WVNZ/0ND + Q/84ODj/WFhY/0VFRf8vLy//Y2Nj4Dg4OIA8PDx/WVlZ5AUFBf8XFxf/MzMz/wkHCf8AOwD/BR0F/zQv + NP8YGBj/CAgI/zMzM/8YGBj/BQUF/1paWuU8PDyAJiYmhpaWlshdXV3fW1tb32FhYd9bW1vfW1tb31tb + W99hYWHfW1tb31tbW99hYWHfW1tb311dXd+UlJTJJiYmhwAAAD8mJiaGOjo6fzg4OH82NjZ/Ojo6fzo2 + On86ODp/NjY2fzg4OH86Ojp/NjY2fzg4OH86Ojp/JiYmhgAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + + + \ No newline at end of file diff --git a/SDRSharper/Program.cs b/SDRSharper/Program.cs new file mode 100644 index 0000000..39d0c73 --- /dev/null +++ b/SDRSharper/Program.cs @@ -0,0 +1,85 @@ +using System; +using System.Diagnostics; +using System.Drawing.Text; +using System.IO; +using System.Runtime.InteropServices; +using System.Windows.Forms; +using Microsoft.Win32; +using SDRSharp.Radio; + +namespace SDRSharp +{ + public static class Program + { + [DllImport("gdi32.dll")] + private static extern int AddFontResource(string lpszFilename); + [STAThread] + private static void Main() + { + Utils.Log("Program start", true); + string fontFile = "LCD-BOLD.TTF"; + string fontDestination = Environment.GetEnvironmentVariable("SystemRoot"); + if (fontDestination == null) + { + fontDestination = Environment.GetEnvironmentVariable("Windir"); + } + if (fontDestination != null) + { + fontDestination = Path.Combine(fontDestination, "Fonts"); + } + if (fontDestination != null) + { + fontDestination = Path.Combine(fontDestination, fontFile); + if (!File.Exists(fontDestination)) + { + try + { + File.Copy(Path.Combine(Directory.GetCurrentDirectory(), fontFile), fontDestination); + Utils.Log("LCD font " + fontFile + " installed", false); + PrivateFontCollection fontCol = new PrivateFontCollection(); + fontCol.AddFontFile(fontDestination); + string actualFontName = fontCol.Families[0].Name; + Program.AddFontResource(fontDestination); + Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Fonts", actualFontName, fontFile, RegistryValueKind.String); + MessageBox.Show("LCD font installed, please restart again."); + return; + } + catch (UnauthorizedAccessException) + { + MessageBox.Show("Trying to install LCD font.\nplease right-click on SDRSharper.exe\nand once use 'Run as administrator'."); + } + catch (FileNotFoundException) + { + MessageBox.Show("LCD Fontfile " + fontFile + " not available."); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message); + } + } + } + if (Environment.OSVersion.Platform == PlatformID.Win32Windows || Environment.OSVersion.Platform == PlatformID.Win32NT) + { + Process process = Process.GetCurrentProcess(); + process.PriorityBoostEnabled = true; + process.PriorityClass = ProcessPriorityClass.RealTime; + Utils.TimeBeginPeriod(1u); + } + Utils.ProcessorCount = 1; + DSPThreadPool.Initialize(); + Utils.Log("Threadpool initialized", false); + Control.CheckForIllegalCrossThreadCalls = false; + Utils.Log("Explicitely enabled VisualStyles", false); + Application.EnableVisualStyles(); + Utils.Log("Start FormMain", false); + Application.Run(new MainForm()); + if (Environment.OSVersion.Platform == PlatformID.Win32Windows || Environment.OSVersion.Platform == PlatformID.Win32NT) + { + Utils.TimeEndPeriod(1u); + } + DSPThreadPool.Terminate(); + Utils.Log("Program exit", false); + Application.Exit(); + } + } +} diff --git a/SDRSharper/Properties/AssemblyInfo.cs b/SDRSharper/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..7bbc962 --- /dev/null +++ b/SDRSharper/Properties/AssemblyInfo.cs @@ -0,0 +1,18 @@ +using System; +using System.Diagnostics; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security; +using System.Security.Permissions; + +[assembly: AssemblyVersion("0.9.0.0")] +[assembly: AssemblyProduct("SDRSharper Revised")] +[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] +[assembly: CompilationRelaxations(8)] +[assembly: AssemblyTitle("SDRSharper")] +[assembly: AssemblyCopyright("Copyright © BluGecko 2018")] +[assembly: AssemblyDescription("Software Defined Radio")] +[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] +[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] +[assembly: AssemblyFileVersion("0.9.0.0")] + diff --git a/SDRSharper/Properties/Resources.Designer.cs b/SDRSharper/Properties/Resources.Designer.cs new file mode 100644 index 0000000..3293749 --- /dev/null +++ b/SDRSharper/Properties/Resources.Designer.cs @@ -0,0 +1,83 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SDRSharp.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SDRSharp.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap aboutG { + get { + object obj = ResourceManager.GetObject("aboutG", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap aboutH { + get { + object obj = ResourceManager.GetObject("aboutH", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/SDRSharper/Properties/Resources.resx b/SDRSharper/Properties/Resources.resx new file mode 100644 index 0000000..c24ccad --- /dev/null +++ b/SDRSharper/Properties/Resources.resx @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\aboutG.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\aboutH.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/SDRSharper/Properties/licenses.licx b/SDRSharper/Properties/licenses.licx new file mode 100644 index 0000000..26744fd --- /dev/null +++ b/SDRSharper/Properties/licenses.licx @@ -0,0 +1,8 @@ +Telerik.WinControls.RadThemeManager, Telerik.WinControls, Version=2017.2.502.20, Culture=neutral, PublicKeyToken=5bb2a467cbec794e +Telerik.WinControls.UI.RadSeparator, Telerik.WinControls.UI, Version=2017.2.502.20, Culture=neutral, PublicKeyToken=5bb2a467cbec794e +Telerik.WinControls.Themes.VisualStudio2012DarkTheme, Telerik.WinControls.Themes.VisualStudio2012Dark, Version=2017.2.502.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e +Telerik.WinControls.UI.RadLabel, Telerik.WinControls.UI, Version=2017.2.502.20, Culture=neutral, PublicKeyToken=5bb2a467cbec794e +Telerik.WinControls.UI.RadCheckBox, Telerik.WinControls.UI, Version=2017.2.502.20, Culture=neutral, PublicKeyToken=5bb2a467cbec794e +Telerik.WinControls.RadThemeManager, Telerik.WinControls, Version=2017.2.502.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e +Telerik.WinControls.UI.RadButton, Telerik.WinControls.UI, Version=2017.2.502.20, Culture=neutral, PublicKeyToken=5bb2a467cbec794e +Telerik.WinControls.Themes.VisualStudio2012DarkTheme, Telerik.WinControls.Themes.VisualStudio2012Dark, Version=2017.2.502.20, Culture=neutral, PublicKeyToken=5bb2a467cbec794e diff --git a/SDRSharper/RadAboutBox1.Designer.cs b/SDRSharper/RadAboutBox1.Designer.cs new file mode 100644 index 0000000..7b83382 --- /dev/null +++ b/SDRSharper/RadAboutBox1.Designer.cs @@ -0,0 +1,152 @@ +namespace SDRSharp +{ + partial class RadAboutBox1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RadAboutBox1)); + this.radThemeManager1 = new Telerik.WinControls.RadThemeManager(); + this.visualStudio2012DarkTheme1 = new Telerik.WinControls.Themes.VisualStudio2012DarkTheme(); + this.radButton1 = new Telerik.WinControls.UI.RadButton(); + this.radLabel1 = new Telerik.WinControls.UI.RadLabel(); + this.radLabel2 = new Telerik.WinControls.UI.RadLabel(); + this.radLabel3 = new Telerik.WinControls.UI.RadLabel(); + this.radLabel4 = new Telerik.WinControls.UI.RadLabel(); + ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + this.SuspendLayout(); + // + // radButton1 + // + this.radButton1.Location = new System.Drawing.Point(421, 319); + this.radButton1.Name = "radButton1"; + this.radButton1.Size = new System.Drawing.Size(110, 24); + this.radButton1.TabIndex = 0; + this.radButton1.Text = "&Ok"; + this.radButton1.ThemeName = "VisualStudio2012Dark"; + this.radButton1.Click += new System.EventHandler(this.radButton1_Click); + // + // radLabel1 + // + this.radLabel1.BackColor = System.Drawing.Color.Transparent; + this.radLabel1.ForeColor = System.Drawing.Color.CornflowerBlue; + this.radLabel1.ImageAlignment = System.Drawing.ContentAlignment.TopLeft; + this.radLabel1.Location = new System.Drawing.Point(13, 3); + this.radLabel1.Name = "radLabel1"; + // + // + // + this.radLabel1.RootElement.AutoSize = false; + this.radLabel1.RootElement.EnableRippleAnimation = false; + this.radLabel1.Size = new System.Drawing.Size(55, 18); + this.radLabel1.TabIndex = 1; + this.radLabel1.Text = "radLabel1"; + this.radLabel1.TextWrap = false; + this.radLabel1.ThemeName = "VisualStudio2012Dark"; + this.radLabel1.UseMnemonic = false; + // + // radLabel2 + // + this.radLabel2.BackColor = System.Drawing.Color.Transparent; + this.radLabel2.ForeColor = System.Drawing.Color.CornflowerBlue; + this.radLabel2.Location = new System.Drawing.Point(13, 52); + this.radLabel2.Name = "radLabel2"; + this.radLabel2.Size = new System.Drawing.Size(55, 18); + this.radLabel2.TabIndex = 2; + this.radLabel2.Text = "radLabel2"; + // + // radLabel3 + // + this.radLabel3.BackColor = System.Drawing.Color.Transparent; + this.radLabel3.ForeColor = System.Drawing.Color.CornflowerBlue; + this.radLabel3.Location = new System.Drawing.Point(272, 52); + this.radLabel3.Name = "radLabel3"; + this.radLabel3.Size = new System.Drawing.Size(55, 18); + this.radLabel3.TabIndex = 3; + this.radLabel3.Text = "radLabel3"; + // + // radLabel4 + // + this.radLabel4.AutoSize = false; + this.radLabel4.BackColor = System.Drawing.Color.CornflowerBlue; + this.radLabel4.ForeColor = System.Drawing.Color.Black; + this.radLabel4.Location = new System.Drawing.Point(260, 58); + this.radLabel4.Name = "radLabel4"; + this.radLabel4.Size = new System.Drawing.Size(1, 115); + this.radLabel4.TabIndex = 4; + // + // RadAboutBox1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackgroundImage = global::SDRSharp.Properties.Resources.aboutH; + this.ClientSize = new System.Drawing.Size(543, 355); + this.Controls.Add(this.radLabel4); + this.Controls.Add(this.radLabel3); + this.Controls.Add(this.radLabel2); + this.Controls.Add(this.radLabel1); + this.Controls.Add(this.radButton1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "RadAboutBox1"; + this.Padding = new System.Windows.Forms.Padding(9); + // + // + // + this.RootElement.ApplyShapeToControl = true; + this.ShowIcon = false; + this.ShowInTaskbar = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "About"; + this.ThemeName = "VisualStudio2012Dark"; + this.TopMost = true; + ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private Telerik.WinControls.RadThemeManager radThemeManager1; + private Telerik.WinControls.Themes.VisualStudio2012DarkTheme visualStudio2012DarkTheme1; + private Telerik.WinControls.UI.RadButton radButton1; + private Telerik.WinControls.UI.RadLabel radLabel1; + private Telerik.WinControls.UI.RadLabel radLabel2; + private Telerik.WinControls.UI.RadLabel radLabel3; + private Telerik.WinControls.UI.RadLabel radLabel4; + } +} diff --git a/SDRSharper/RadAboutBox1.cs b/SDRSharper/RadAboutBox1.cs new file mode 100644 index 0000000..09abef2 --- /dev/null +++ b/SDRSharper/RadAboutBox1.cs @@ -0,0 +1,431 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Windows.Forms; +using System.Reflection; +using System.IO; +using System.Runtime.Versioning; + +namespace SDRSharp +{ + partial class RadAboutBox1 : Telerik.WinControls.UI.RadForm + { + public static string arch = ""; + + public RadAboutBox1() + { + InitializeComponent(); + + string xresult, xresult_core, xresult_plugins = ""; + + #region [Assembly Header] + // Initialize the AboutBox to display the product information from the assembly information. + // Change assembly information settings for your application through either: + // - Project->Properties->Application->Assembly Information + // - AssemblyInfo.cs + + this.Text = String.Format("About {0}", AssemblyTitle); + xresult = AssemblyProduct; + xresult += String.Format(" Version {0}", AssemblyVersion) + "\r\n"; + xresult += AssemblyCopyright + "\r\n\r\n"; + //xresult += AssemblyCompany + "\r\n"; + //xresult += AssemblyDescription + "\r\n\r\n"; + #endregion + + xresult_core = "Core Versions:\r\n"; + + #region [SDRSharper Revised] + bool? SDRSharpMain = UnmanagedDllIs64Bit(Application.ExecutablePath); + if (SDRSharpMain.HasValue) + { + if ((bool)SDRSharpMain) + { + arch = "x64"; + } + else + { + arch = "x32"; + } + } + else + { + arch = "Any CPU"; + } + + Assembly attributes = MainForm.UnmanagedDLLAssemblyVer; + TargetFrameworkAttribute x = (System.Runtime.Versioning.TargetFrameworkAttribute)attributes.GetCustomAttribute(typeof(TargetFrameworkAttribute)); + if (x == null) + { + x = new TargetFrameworkAttribute("Pre-.NET Framework 4.0"); + x.FrameworkDisplayName = "Pre-.NET Framework 4.0"; + } + + xresult_core += arch + " - " + x.FrameworkDisplayName.Replace(" Framework ", " ") + " - SDRSharperR.exe\r\n"; + arch = ""; + #endregion + + #region [Radio] + bool? SDRSharpRadio = UnmanagedDllIs64Bit(Application.StartupPath + "\\SDRSharp.Radio.dll"); + if (SDRSharpRadio.HasValue) + { + if ((bool)SDRSharpRadio) + { + arch = "x64"; + } + else + { + arch = "x32"; + } + } + else + { + arch = "Any CPU"; + } + + attributes = Radio.Utils.UnmanagedDLLAssemblyVer; + x = (System.Runtime.Versioning.TargetFrameworkAttribute)attributes.GetCustomAttribute(typeof(TargetFrameworkAttribute)); + if (x == null) + { + x = new TargetFrameworkAttribute("Pre-.NET Framework 4.0"); + x.FrameworkDisplayName = "Pre-.NET Framework 4.0"; + } + + xresult_core += arch + " - " + x.FrameworkDisplayName.Replace(" Framework ", " ") + " - SDRSharp.Radio.dll\r\n"; + arch = ""; + #endregion + + #region [Controls] + bool? SDRSharpControls = UnmanagedDllIs64Bit(Application.StartupPath + "\\SDRSharp.Controls.dll"); + if (SDRSharpControls.HasValue) + { + if ((bool)SDRSharpControls) + { + arch = "x64"; + } + else + { + arch = "x32"; + } + } + else + { + arch = "Any CPU"; + } + + attributes = SDRSharp.Controls.ControlsUtils.UnmanagedDLLAssemblyVer; + x = (System.Runtime.Versioning.TargetFrameworkAttribute)attributes.GetCustomAttribute(typeof(TargetFrameworkAttribute)); + if (x == null) + { + x = new TargetFrameworkAttribute("Pre-.NET Framework 4.0"); + x.FrameworkDisplayName = "Pre-.NET Framework 4.0"; + } + + xresult_core += arch + " - " + x.FrameworkDisplayName.Replace(" Framework ", " ") + " - SDRSharp.Controls.dll\r\n"; + arch = ""; + #endregion + + #region [CollapsiblePanel] + bool? SDRSharpCollapsiblePanel = UnmanagedDllIs64Bit(Application.StartupPath + "\\SDRSharp.CollapsiblePanel.dll"); + if (SDRSharpCollapsiblePanel.HasValue) + { + if ((bool)SDRSharpCollapsiblePanel) + { + arch = "x64"; + } + else + { + arch = "x32"; + } + } + else + { + arch = "Any CPU"; + } + + attributes = CollapsiblePanel.CollapsiblePanelUtils.UnmanagedDLLAssemblyVer; + x = (System.Runtime.Versioning.TargetFrameworkAttribute)attributes.GetCustomAttribute(typeof(TargetFrameworkAttribute)); + if (x == null) + { + x = new TargetFrameworkAttribute("Pre-.NET Framework 4.0"); + x.FrameworkDisplayName = "Pre-.NET Framework 4.0"; + } + + xresult_core += arch + " - " + x.FrameworkDisplayName.Replace(" Framework ", " ") + " - SDRSharp.CollapsiblePanel.dll\r\n"; + arch = ""; + #endregion + + #region [PanView] + bool? SDRSharpPanView = UnmanagedDllIs64Bit(Application.StartupPath + "\\SDRSharp.PanView.dll"); + if (SDRSharpPanView.HasValue) + { + if ((bool)SDRSharpPanView) + { + arch = "x64"; + } + else + { + arch = "x32"; + } + } + else + { + arch = "Any CPU"; + } + + attributes = PanView.PanViewUtils.UnmanagedDLLAssemblyVer; + x = (System.Runtime.Versioning.TargetFrameworkAttribute)attributes.GetCustomAttribute(typeof(TargetFrameworkAttribute)); + if (x == null) + { + x = new TargetFrameworkAttribute("Pre-.NET Framework 4.0"); + x.FrameworkDisplayName = "Pre-.NET Framework 4.0"; + } + + xresult_core += arch + " - " + x.FrameworkDisplayName.Replace(" Framework ", " ") + " - SDRSharp.PanView.dll\r\n"; + arch = ""; + #endregion + + #region [Common] + bool? SDRSharpCommon = UnmanagedDllIs64Bit(Application.StartupPath + "\\SDRSharp.Common.dll"); + if (SDRSharpCommon.HasValue) + { + if ((bool)SDRSharpCommon) + { + arch = "x64"; + } + else + { + arch = "x32"; + } + } + else + { + arch = "Any CPU"; + } + + attributes = Common.CommonUtils.UnmanagedDLLAssemblyVer; + x = (System.Runtime.Versioning.TargetFrameworkAttribute)attributes.GetCustomAttribute(typeof(TargetFrameworkAttribute)); + if (x == null) + { + x = new TargetFrameworkAttribute("Pre-.NET Framework 4.0"); + x.FrameworkDisplayName = "Pre-.NET Framework 4.0"; + } + + xresult_core += arch + " - " + x.FrameworkDisplayName.Replace(" Framework ", " ") + " - SDRSharp.Common.dll\r\n"; + arch = ""; + #endregion + + xresult_plugins = "Plugin Versions:\r\n"; + + #region [FrequencyManager] + bool? SDRSharpFreqMan = UnmanagedDllIs64Bit(Application.StartupPath + "\\SDRSharp.FrequencyManager.dll"); + if (SDRSharpCommon.HasValue) + { + if ((bool)SDRSharpFreqMan) + { + arch = "x64"; + } + else + { + arch = "x32"; + } + } + else + { + arch = "Any CPU"; + } + + attributes = FrequencyManager.FreqManUtils.UnmanagedDLLAssemblyVer; + x = (System.Runtime.Versioning.TargetFrameworkAttribute)attributes.GetCustomAttribute(typeof(TargetFrameworkAttribute)); + if (x == null) + { + x = new TargetFrameworkAttribute("Pre-.NET Framework 4.0"); + x.FrameworkDisplayName = "Pre-.NET Framework 4.0"; + } + + xresult_plugins += arch + " - " + x.FrameworkDisplayName.Replace(" Framework ", " ") + " - SDRSharp.FrequencyManager.dll\r\n"; + arch = ""; + #endregion + + radLabel1.Text = xresult; + radLabel2.Text = xresult_core; + radLabel3.Text = xresult_plugins; + } + + public static MachineType GetDllMachineType(string dllPath) + { + //see http://www.microsoft.com/whdc/system/platform/firmware/PECOFF.mspx + //offset to PE header is always at 0x3C + //PE header starts with "PE\0\0" = 0x50 0x45 0x00 0x00 + //followed by 2-byte machine type field (see document above for enum) + FileStream fs = new FileStream(dllPath, FileMode.Open, FileAccess.Read); + BinaryReader br = new BinaryReader(fs); + + fs.Seek(0x3c, SeekOrigin.Begin); + Int32 peOffset = br.ReadInt32(); + fs.Seek(peOffset, SeekOrigin.Begin); + UInt32 peHead = br.ReadUInt32(); + + if (peHead != 0x00004550) // "PE\0\0", little-endian + throw new Exception("Can't find PE header"); + + MachineType machineType = (MachineType)br.ReadUInt16(); + + br.Close(); + fs.Close(); + + return machineType; + } + + public enum MachineType : ushort + { + IMAGE_FILE_MACHINE_UNKNOWN = 0x0, + IMAGE_FILE_MACHINE_AM33 = 0x1d3, + IMAGE_FILE_MACHINE_AMD64 = 0x8664, + IMAGE_FILE_MACHINE_ARM = 0x1c0, + IMAGE_FILE_MACHINE_EBC = 0xebc, + IMAGE_FILE_MACHINE_I386 = 0x14c, + IMAGE_FILE_MACHINE_IA64 = 0x200, + IMAGE_FILE_MACHINE_M32R = 0x9041, + IMAGE_FILE_MACHINE_MIPS16 = 0x266, + IMAGE_FILE_MACHINE_MIPSFPU = 0x366, + IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466, + IMAGE_FILE_MACHINE_POWERPC = 0x1f0, + IMAGE_FILE_MACHINE_POWERPCFP = 0x1f1, + IMAGE_FILE_MACHINE_R4000 = 0x166, + IMAGE_FILE_MACHINE_SH3 = 0x1a2, + IMAGE_FILE_MACHINE_SH3DSP = 0x1a3, + IMAGE_FILE_MACHINE_SH4 = 0x1a6, + IMAGE_FILE_MACHINE_SH5 = 0x1a8, + IMAGE_FILE_MACHINE_THUMB = 0x1c2, + IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169, + } + + public static bool? UnmanagedDllIs64Bit(string dllPath) // returns true if the dll is 64-bit, false if 32-bit, and null if unknown + { + switch (GetDllMachineType(dllPath)) + { + case MachineType.IMAGE_FILE_MACHINE_AMD64: + case MachineType.IMAGE_FILE_MACHINE_IA64: + return true; + case MachineType.IMAGE_FILE_MACHINE_I386: + return false; + default: + return null; + } + } + + public static string getArch(string path) + { + MachineType dlltype = GetDllMachineType(path); + + if (dlltype.Equals(MachineType.IMAGE_FILE_MACHINE_I386)) + { + Console.WriteLine("Dll architecture: x86/32bit"); + arch = "x86"; + } + else if (dlltype.Equals(MachineType.IMAGE_FILE_MACHINE_AMD64)) + { + Console.WriteLine("Dll architecture: x64/64bit"); + arch = "x64"; + } + + return arch; + } + + private void radButton1_Click(object sender, EventArgs e) + { + this.Close(); + } + + + #region Assembly Attribute Accessors + + public string AssemblyTitle + { + get + { + // Get all Title attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false); + // If there is at least one Title attribute + if (attributes.Length > 0) + { + // Select the first one + AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; + // If it is not an empty string, return it + if (titleAttribute.Title != "") + return titleAttribute.Title; + } + // If there was no Title attribute, or if the Title attribute was the empty string, return the .exe name + return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); + } + } + + public string AssemblyVersion + { + get + { + return Assembly.GetExecutingAssembly().GetName().Version.ToString(); + } + } + + public string AssemblyDescription + { + get + { + // Get all Description attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); + // If there aren't any Description attributes, return an empty string + if (attributes.Length == 0) + return ""; + // If there is a Description attribute, return its value + return ((AssemblyDescriptionAttribute)attributes[0]).Description; + } + } + + public string AssemblyProduct + { + get + { + // Get all Product attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false); + // If there aren't any Product attributes, return an empty string + if (attributes.Length == 0) + return ""; + // If there is a Product attribute, return its value + return ((AssemblyProductAttribute)attributes[0]).Product; + } + } + + public string AssemblyCopyright + { + get + { + // Get all Copyright attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); + // If there aren't any Copyright attributes, return an empty string + if (attributes.Length == 0) + return ""; + // If there is a Copyright attribute, return its value + return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + } + } + + public string AssemblyCompany + { + get + { + // Get all Company attributes on this assembly + object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); + // If there aren't any Company attributes, return an empty string + if (attributes.Length == 0) + return ""; + // If there is a Company attribute, return its value + return ((AssemblyCompanyAttribute)attributes[0]).Company; + } + } + #endregion + + + } +} diff --git a/SDRSharper/RadAboutBox1.resx b/SDRSharper/RadAboutBox1.resx new file mode 100644 index 0000000..1b96dca --- /dev/null +++ b/SDRSharper/RadAboutBox1.resx @@ -0,0 +1,532 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 179, 17 + + + + + AAABAAQAQEAAAAEAIAAoQAAARgAAACAgAAABACAAKBAAAG5AAAAYGAAAAQAgACgJAACWUAAAEBAAAAEA + IAAoBAAAvlkAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAAAP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAAAAAAAAAAAAAAAAAAAAAAAP8AAAD/AAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAAAAAAAAAAAAAA/wAA + AP8AAAAAAAAAAMDAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/AAAAAAAA + AAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDA + wP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wD4AP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8A+AD/APgA/wAAAP8AAAD/APgA/wD4 + AP8A+AD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAA + AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8A+AD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAA + AADAwMD/wMDA/wAAAP8AAAD/APgA/wD4AP8A+AD/APgA/wAAAP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DA + wP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8A+AD/APgA/wAA + AP8AAAD/APgA/wD4AP8A+AD/APgA/wD4AP+AgID/AAAA/wAAAP8AAAD/APgA/wD4AP8A+AD/AAAA/wAA + AP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAA + AP8AAAD/gICA/4CAgP8A+AD/APgA/wD4AP8A+AD/gICA/4CAgP+AgID/APgA/wD4AP8A+AD/gICA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAAAP8AAAD/APgA/wD4AP8A+AD/APgA/wD4AP+AgID/gICA/4CA + gP+AgID/APgA/wD4AP+AgID/gICA/wD4AP8A+AD/APgA/wD4AP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP8A+AD/APgA/4CAgP+AgID/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAA + AAAAAAAAwMDA/8DAwP8AAAD/AAAA/4CAgP+AgID/APgA/wD4AP8A+AD/APgA/4CAgP+AgID/gICA/wD4 + AP8A+AD/gICA/4CAgP+AgID/APgA/wD4AP8A+AD/APgA/wAAAP8AAAD/APgA/wD4AP8A+AD/APgA/wD4 + AP+AgID/gICA/4CAgP+AgID/gICA/wD4AP8A+AD/gICA/4CAgP8A+AD/APgA/wD4AP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/APgA/wD4AP+AgID/gICA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAA + AP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4 + AP8AAAD/AAAA/4CAgP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4AP8A+AD/APgA/wD4 + AP8A+AD/APgA/wD4AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/APgA/wD4 + AP8A+AD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/8DA + wP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4 + AP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/APgA/wD4 + AP8AAAD/AAAA/wD4AP8A+AD/APgA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DA + wP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8A+AD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4AP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wD4AP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAA + AP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/APgA/wD4AP8A+AD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAA + AAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4 + AP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4 + AP8A+AD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAA + AP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wD4AP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4 + AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDA + wP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4 + AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAA + AADAwMD/wMDA/wAAAP8AAAD/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/APgA/wD4AP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wD4AP8A+AD/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wD4AP8A+AD/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP8A+AD/APgA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wAAAP8AAAD/wMDA/8DA + wP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/APgA/wD4AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAA + AAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAA + AP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4 + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DA + wP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wD4AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DA + wP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAA + AP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAA + AAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4 + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDA + wP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/APgA/wD4AP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/AAAA/wAAAP/AwMD/wMDA/wAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wD4 + AP8A+AD/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/wAA + AP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAA + AADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DA + wP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAA + AAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAA + AP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DA + wP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/APgA/wD4AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DA + wP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CA + gP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAA + AP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAA + AAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/wAAAP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/APgA/wD4 + AP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/AAAA/wAA + AP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/wD4AP8A+AD/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CAgP+AgID/gICA/4CA + gP+AgID/gICA/wAAAP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDA + wP/AwMD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8A+AD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CA + gP+AgID/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAA + AP8AAAD/AAAAAAAAAADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wD4AP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP+AgID/gICA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAA + AAAAAAAAAAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8A+AD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/gICA/4CAgP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/wMDA/8DAwP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/APgA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/4CAgP+AgID/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAA + AADAwMD/wMDA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAAAAAAAAwMDA/8DAwP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/wMDA/8DA + wP8AAAAAAAAAAAAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAMDAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/AAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAAAAAAAADAwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DA + wP/AwMD/wMDA/8DAwP/AwMD/wMDA/8DAwP/AwMD/wMDA/wAAAAAAAAAAAAAA/wAAAP8AAAAAAAAAAAAA + AP8AAAD/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAA + AAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAA/wAAAP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAAAAAAAAAAAAAAAAAAAKAAAACAA + AABAAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAyQAAANYAAADWAAAA1gAA + ANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADWAAAA1gAA + ANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADWAAAAygAAACQAAAAAAAAAIwEBAcM4ODg7dnZ2KXZ2 + dil2dnYpdnZ2KXZ2dil2dnYpdnZ2KXZ2dil2dnYpdnZ2KXZ2dil2dnYpdnZ2KXZ2dil2dnYpdnZ2KXZ2 + dil2dnYpdnZ2KXZ2dil2dnYpdnZ2KXZ2dil2dnYpdnZ2KXZ2dik5OTk6AQEBwwAAACUAAADKNTU1OsfH + x9O9vb3otra26La2tui2trbotra26LOzs+i2trbotra26La2tui2trbotra26La2tui2trbotra26LOz + s+i2trbotra26La2tui2trbotra26LOzs+i2trbotra26La2tui2trbovb296MbGxtU5OTk6AAAAygAA + ANt4eHgkuLi46yQiJP8RABH/EQQR/xEREf8TDBP/HBYc/xMRE/8RDxH/ERER/xEREf8RERH/ERER/xER + Ef8TEBP/HBUc/xMAE/8RCRH/EQAR/xEEEf8TEhP/IhIi/xMDE/8RAxH/EQsR/xELEf8iISL/trm27YeH + hyQAAADbAAAA1mpqaim4srjmDhcO/wB2AP8ARQD/AAAA/wUUBf9balv/BQAF/wAAAP8AAAD/AAAA/wAA + AP8AAAD/AAAA/wUABf9bcVv/BXIF/wAdAP8AfQD/AEAA/wAAAP8rjSv/AGEA/wBJAP8ADQD/ABcA/wwQ + DP+2tbbodnZ2KQAAANYAAADWampqKbiwuOYTJRP/AP8A/wDoAP8AXQD/AOcA/wjtCP8BmAH/AKQA/wAW + AP8AAAD/AAAA/wAAAP8AUgD/AbYB/wfsB/8A/wD/AO0A/wD8AP8A7gD/AIwA/wD3AP8A9AD/AP8A/wDs + AP8AlAD/ERER/7aztuh2dnYpAAAA1gAAANZqamopuLG45hQjFP8K3gr/Af4B/wD7AP8M+gz/AvkC/wD/ + AP8B/wH/AOsA/wBNAP8AAAD/AAwA/wDrAP8A/wD/Be0F/wubC/8C3gL/Cj0K/wHnAf8A/wD/H84f/xYs + Fv8Lugv/AvwC/wobCv8SCRL/tra26HZ2dikAAADWAAAA1mpqaimysrLmHRgd/1x5XP8I9gj/BP4E/3KA + cv80xDT/G9Ab/1GbUf8E/wT/AO0A/wAgAP8ApwD/AP8A/yDOIP96fnr/Z2pn/xLiEv9dgF3/BfEF/x3a + Hf+Ae4D/d2N3/2R5ZP8S6xL/WGxY/xwWHP+zs7PodnZ2KQAAANYAAADWampqKbi4uOYUDBT/ChEK/wH/ + Af8AvQD/Gg4a/1WHVf8OHA7/EAEQ/wFOAf8A/wD/APEA/wD/AP8AqgD/FBQU/3Zidv8WLhb/AsoC/wov + Cv8A8AD/FIYU/3RadP8WERb/CxsL/wLXAv8JHQn/EgwS/7a2tuh2dnYpAAAA1gAAANZqamopuLi45hMP + E/8AAwD/ALwA/wBLAP8JAAn/dGp0/wwGDP8AAAD/AAAA/wCoAP8A/wD/APQA/wANAP8LAAv/bmlu/wkr + Cf8AYQD/AAgA/wDVAP8LKgv/bmZu/wkDCf8AEAD/ANUA/wAQAP8RCxH/tra26HZ2dikAAADWAAAA1mpq + aim4uLjmExQT/wAAAP8AKQD/AAoA/wwJDP9vb2//DAwM/wAAAP8AAAD/AA0A/wD4AP8AwQD/AAQA/wwJ + DP9vb2//DA8M/wAEAP8AFQD/ANIA/wwhDP9vaG//DAYM/wATAP8A2QD/ABQA/xELEf+2trbodnZ2KQAA + ANYAAADWampqKbi4uOYTExP/AAAA/wAAAP8AAAD/CQoJ/29vb/8JCQn/AAAA/wAAAP8ADgD/AOkA/wBC + AP8AAAD/CQoJ/29vb/8JCAn/AAAA/wAUAP8A0gD/CSEJ/25nbv8JAgn/ABMA/wDUAP8ADwD/EQsR/7a2 + tuh2dnYpAAAA1gAAANZqamopuLi45hQUFP8LCwv/DQ0N/wwMDP8XFxf/cXFx/xcXF/8MDAz/DQwN/wsj + C/8C1QL/CxoL/w0MDf8XFxf/cXFx/xcXF/8NDA3/CyIL/wLVAv8WLhb/cWpx/xcUF/8MHAz/DUkN/wsM + C/8SERL/tra26HZ2dikAAADWAAAA1mpqaimysrLmGhoa/2NjY/9xcXH/b29v/3BwcP9+fn7/cHBw/29v + b/9xbHH/ZHtk/w/mD/9kfGT/cWxx/3BwcP9+fn7/cHBw/3Fscf9ke2T/D+UP/2Z+Zv+AeoD/cHFw/29s + b/9xZnH/Y2Nj/xkZGf+zs7PodnZ2KQAAANYAAADWampqKbi4uOYUFBT/CgoK/wwMDP8MDAz/FxcX/3Fx + cf8XFxf/DAwM/wwLDP8LIgv/AtgC/wsjC/8MCwz/FxcX/3Fxcf8XFxf/DAsM/wshC/8C2AL/FS4V/3Fq + cf8XFxf/DAwM/wwMDP8KCgr/EhIS/7a2tuh2dnYpAAAA1gAAANZqamopuLi45hMTE/8AAAD/AAAA/wAA + AP8JCQn/b29v/wkJCf8AAAD/AAAA/wAUAP8A1gD/ABUA/wAAAP8JCQn/b29v/wkJCf8AAAD/ABUA/wDL + AP8JHwn/bmhu/wkJCf8AAAD/AAAA/wAAAP8RERH/tra26HZ2dikAAADWAAAA1mpqaim4uLjmExMT/wAA + AP8AAAD/AAAA/wwMDP9vb2//DAwM/wAAAP8AAAD/ABcA/wDWAP8AGAD/AAAA/wwMDP9vb2//DAwM/wAA + AP8AJwD/AHgA/wwBDP9vb2//DAwM/wAAAP8AAAD/AAAA/xEREf+2trbodnZ2KQAAANYAAADWampqKbi4 + uOYTExP/AAAA/wAAAP8AAAD/CQkJ/29vb/8JCQn/AAAA/wAAAP8AFAD/ANYA/wAVAP8AAAD/CQkJ/29v + b/8JCQn/AAAA/wAPAP8ALQD/CQIJ/29vb/8JCQn/AAAA/wAAAP8AAAD/ERER/7a2tuh2dnYpAAAA1gAA + ANZqamopuLi45hQUFP8LCwv/DQ0N/wwMDP8XFxf/cXFx/xcXF/8MDAz/DQwN/wsiC/8C2AL/CyML/w0M + Df8XFxf/cXFx/xcXF/8MDAz/DAkM/wwEDP8XGBf/cXFx/xcXF/8MDAz/DQ0N/wsLC/8SEhL/tra26HZ2 + dikAAADWAAAA1mpqaimysrLmGhoa/2NjY/9xcXH/b29v/3BwcP9+fn7/cHBw/29vb/9xbHH/ZHtk/w/m + D/9kfGT/cWxx/3BwcP9+fn7/cHBw/29vb/9vb2//b29v/3BwcP9+fn7/cHBw/29vb/9xcXH/Y2Nj/xkZ + Gf+zs7PodnZ2KQAAANYAAADWampqKbi4uOYUFBT/CgoK/wwMDP8MDAz/FxcX/3Fxcf8XFxf/DAwM/wwL + DP8LIgv/AtgC/wsjC/8MCwz/FxcX/3Fxcf8XFxf/DAwM/wwMDP8MDAz/FxcX/3Fxcf8XFxf/DAwM/wwM + DP8KCgr/EhIS/7a2tuh2dnYpAAAA1gAAANZqamopuLi45hMTE/8AAAD/AAAA/wAAAP8JCQn/b29v/wkJ + Cf8AAAD/AAAA/wAUAP8A1gD/ABUA/wAAAP8JCQn/b29v/wkJCf8AAAD/AAAA/wAAAP8JCQn/b29v/wkJ + Cf8AAAD/AAAA/wAAAP8RERH/tra26HZ2dikAAADWAAAA1mpqaim4uLjmExMT/wAAAP8AAAD/AAAA/wwM + DP9vb2//DAwM/wAAAP8AAAD/ABcA/wDWAP8AGAD/AAAA/wwMDP9vb2//DAwM/wAAAP8AAAD/AAAA/wwM + DP9vb2//DAwM/wAAAP8AAAD/AAAA/xEREf+2trbodnZ2KQAAANYAAADWampqKbi4uOYTExP/AAAA/wAA + AP8AAAD/CgoK/29vb/8JCQn/AAAA/wAAAP8AFAD/ANYA/wAVAP8AAAD/CQkJ/29vb/8JCQn/AAAA/wAA + AP8AAAD/CQkJ/29vb/8JCQn/AAAA/wAAAP8AAAD/ERER/7a2tuh2dnYpAAAA1gAAANZqamopuLi45hQU + FP8LCwv/DQ0N/w0NDf8PDw//bm5u/xgYGP8MDAz/DQwN/wsiC/8C2AL/CyML/w0MDf8XFxf/cXFx/xcX + F/8MDAz/DAwM/wwMDP8XFxf/cXFx/xcXF/8MDAz/DQ0N/wsLC/8SEhL/tra26HZ2dikAAADWAAAA1mpq + aimysrLmGhoa/2NjY/9xcXH/cnJy/1lZWf91dXX/cnJy/29vb/9xbHH/ZH1k/w/uD/9ke2T/cWxx/3Bw + cP9+fn7/cHBw/29vb/9vb2//b29v/3BwcP9+fn7/cHBw/29vb/9xcXH/Y2Nj/xkZGf+zs7PodnZ2KQAA + ANYAAADWampqKbi4uOYUFBT/CgoK/wwMDP8LCwv/Ghoa/3V1df8XFxf/DAwM/wwLDP8LFgv/AqUC/wsr + C/8MCwz/FxcX/3Nzc/8XFxf/DAwM/wwMDP8MDAz/FxcX/3Nzc/8XFxf/DAwM/wwMDP8KCgr/EhIS/7a2 + tuh2dnYpAAAA1gAAANZqamopuLi45g4ODv8AAAD/AAAA/wAAAP8DAwP/YmJi/wMDA/8AAAD/AAAA/wAA + AP8AVQD/ABwA/wAAAP8DAwP/YmJi/wMDA/8AAAD/AAAA/wAAAP8DAwP/YmJi/wMDA/8AAAD/AAAA/wAA + AP8MDAz/tra26HZ2dikAAADWAAAA23h4eCS4uLjrJSUl/xMTE/8TExP/ExMT/xMTE/8aGhr/ExMT/xMT + E/8TExP/ExMT/xMaE/8TFRP/ExMT/xMTE/8aGhr/ExMT/xMTE/8TExP/ExMT/xMTE/8aGhr/ExMT/xMT + E/8TExP/ExMT/yMjI/+4uLjuh4eHJAAAANsAAADJNDQ0O8rKytK8vLzmuLi45ri4uOa4uLjmuLi45rKy + sua4uLjmuLi45ri4uOa4uLjmuLK45ri1uOa4uLjmuLi45rKysua4uLjmuLi45ri4uOa4uLjmuLi45rKy + sua4uLjmuLi45ri4uOa4uLjmvLy85sbGxtQ0NDQ7AAAAyQAAACIBAQHDMzMzPGpqailqamopampqKWpq + ailqamopampqKWpqailqamopampqKWpqailqamopampqKWpqailqamopampqKWpqailqamopampqKWpq + ailqamopampqKWpqailqamopampqKWpqailqamopNTU1OgEBAcMAAAAkAAAAAAAAACIAAADJAAAA1gAA + ANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADWAAAA1gAA + ANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADWAAAA1gAAANYAAADKAAAAIgAAAAAoAAAAGAAAADAA + AAABACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAHsAAACXAAAAlwAAAJcAAACXAAAAlwAA + AJcAAACXAAAAlwAAAJcAAACXAAAAlwAAAJcAAACXAAAAlwAAAJcAAACXAAAAlwAAAJcAAACXAAAAlwAA + AHsAAAARAAAAe1tbW4fo6Oh53d3ded3d3Xnb29t519fXed3d3Xnd3d153d3ded3d3Xnd3d1529vbednZ + 2Xnd3d153d3ded3d3XnZ19l529vbed3d3Xnd3d156OjoeVlZWYcAAAB7AAAAnOrq6np4d3j/QjFC/0I6 + Qv9FOUX/TUFN/0I8Qv9CQUL/QkJC/0JCQv9CQEL/SD5I/0s6S/9CMkL/QjBC/0I5Qv9PQk//RTNF/0Iy + Qv9CNkL/eXh5/+zu7HcAAACdAAAAlt7T3ns4RDj/AIMA/wAaAP8AKAD/Ll8u/wAHAP8AAAD/AAAA/wAA + AP8AAAD/Ei8S/yOXI/8AXAD/AJEA/wAeAP8NcA3/AI8A/wBJAP8AMwD/OT05/9/b33kAAACXAAAAltzL + 3HtBVkH/APsA/wDSAP8A9AD/APwA/wDvAP8AlQD/AA0A/wAAAP8AfgD/APoA/wD2AP8A6AD/ALkA/wDu + AP8A5AD/AKgA/wD/AP8AdwD/QjdC/93b3XkAAACXAAAAltbR1ntMRkz/Mpoy/wD/AP9HtUf/ItMi/y3G + Lf8P/w//AJ8A/wA9AP8A/wD/KNMo/2FyYf8itSL/M4sz/wX/Bf9anFr/Zj9m/ynHKf8rbyv/TT1N/9fZ + 13kAAACXAAAAltrc2ntDMkP/Cj4K/wDsAP8eKB7/SWFJ/w8ED/8FNgX/APgA/wD/AP8AoQD/NCg0/1RE + VP8Hhwf/Cm8K/wK/Av9fUF//IA4g/wiICP8IUwj/RDVE/9vb23kAAACXAAAAltzc3HtBPEH/AA8A/wBY + AP8PAw//WVFZ/wAAAP8AAAD/AH0A/wD/AP8AJQD/Kxkr/0RJRP8AHAD/AFAA/wCAAP9VQVX/DQAN/wCF + AP8ASAD/QjJC/93d3XkAAACXAAAAltzc3HtAQUD/AAAA/wAAAP8KCgr/U1RT/wAAAP8AAAD/AEAA/wC5 + AP8AAAD/JyUn/0JCQv8AAAD/AFAA/wCBAP9TQFP/CQAJ/wCAAP8APgD/QTNB/93d3XkAAACXAAAAltra + 2ntERET/JSUl/ywrLP83Nzf/ZGRk/ysrK/8uKS7/HXMd/xSUFP8vJy//SUlJ/1paWv8uKS7/HXId/xSZ + FP9oVGj/NjI2/yxPLP8kLCT/RUNF/9vb23kAAACXAAAAltjY2HtGRkb/Ozs7/0hISP9OTk7/bW1t/0ZG + Rv9LQ0v/LoQu/yCnIP9MQUz/Wlpa/2ZmZv9LQ0v/LoQu/yCoIP9zX3P/Tk9O/0hASP87OTv/R0hH/9nZ + 2XkAAACXAAAAltzc3HtAQED/AAAA/wAAAP8ICAj/U1NT/wAAAP8AAAD/AE8A/wCCAP8AAAD/JSUl/0FB + Qf8AAAD/AE4A/wB7AP9SQFL/BwcH/wAAAP8AAAD/QUFB/93d3XkAAACXAAAAltzc3HtBQUH/AAAA/wAA + AP8RERH/VlZW/wAAAP8AAAD/AFYA/wCHAP8AAAD/LCws/0ZGRv8AAAD/AEEA/wA1AP9WTFb/EBAQ/wAA + AP8AAAD/QkJC/93d3XkAAACXAAAAltzc3HtBQUH/AAAA/wAAAP8ODg7/VVVV/wAAAP8AAAD/AFQA/wCG + AP8AAAD/Kioq/0VFRf8AAAD/AAcA/wACAP9VVFX/DQ0N/wAAAP8AAAD/QkJC/93d3XkAAACXAAAAltbW + 1ntHR0f/SUlJ/1hYWP9cXFz/cnJy/1ZWVv9bUVv/OI44/yeuJ/9dT13/ZGRk/21tbf9WVlb/VlNW/1ZU + Vv9yc3L/W1tb/1hYWP9ISEj/SEhI/9fX13kAAACXAAAAltra2ntCQkL/Dg4O/xEREf8gICD/XFxc/xER + Ef8SEBL/C2EL/wiPCP8SEBL/Nzc3/05OTv8RERH/ERER/xEREf9cXFz/Hx8f/xEREf8ODg7/Q0ND/9vb + 23kAAACXAAAAltzc3HtBQUH/AAAA/wAAAP8ODg7/VVVV/wAAAP8AAAD/AFQA/wCFAP8AAAD/Kioq/0RE + RP8AAAD/AAAA/wAAAP9VVVX/DQ0N/wAAAP8AAAD/QkJC/93d3XkAAACXAAAAltzc3HtAQED/AAAA/wAA + AP8MDAz/VFRU/wAAAP8AAAD/AFEA/wCDAP8AAAD/Jycn/0JCQv8AAAD/AAAA/wAAAP9TU1P/CQkJ/wAA + AP8AAAD/QUFB/93d3XkAAACXAAAAltra2ntERET/JSUl/y4uLv8sLCz/YGBg/ywsLP8uKS7/HXUd/xSd + FP8vKC//SUlJ/1paWv8rKyv/Kysr/ysrK/9kZGT/NjY2/ywsLP8kJCT/RUVF/9vb23kAAACXAAAAltjY + 2HtGRkb/Ozs7/0pKSv9GRkb/bGxs/0dHR/9LQ0v/Lnsu/yChIP9MQUz/W1tb/2hoaP9GRkb/RkZG/0ZG + Rv9vb2//Tk5O/0hISP87Ozv/R0dH/9nZ2XkAAACXAAAAlt7e3ns4ODj/AAAA/wAAAP8AAAD/QkJC/wAA + AP8AAAD/AAEA/wA/AP8AAAD/FxcX/zExMf8AAAD/AAAA/wAAAP9BQUH/AAAA/wAAAP8AAAD/OTk5/9/f + 33kAAACXAAAAnOrq6np3d3f/QUFB/0FBQf9CQkL/R0dH/0FBQf9BQUH/QUJB/0FGQf9BQUH/RERE/0ZG + Rv9BQUH/QUFB/0FBQf9HR0f/QkJC/0FBQf9BQUH/eHh4/+zs7HcAAACdAAAAfFtbW4fm5uZ73Nzce9zc + 3Hva2tp71tbWe9zc3Hvc3Nx73Nrce9zW3Hvc3Nx72trae9jY2Hvc3Nx73Nzce9zc3HvW1tZ72trae9zc + 3Hvc3Nx75ubme1lZWYYAAAB8AAAAEgAAAHwAAACWAAAAlgAAAJYAAACWAAAAlgAAAJYAAACWAAAAlgAA + AJYAAACWAAAAlgAAAJYAAACWAAAAlgAAAJYAAACWAAAAlgAAAJYAAACWAAAAlgAAAHwAAAASKAAAABAA + AAAgAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAoJiiHPDw8gDo6OoA4ODiAOjo6gDo6 + OoA6OjqAODg4gDo4OoA6OjqAODg4gDo4OoA8PDyAKCgohwAAAEEmJiaGlJSUyV5UXuBgTWDgZlBm4F5P + XuBeXl7gXlde4GZTZuBgT2DgXk9e4GVVZeBeUF7gXk9e4JSYlMkmJiaHPjI+f1duV+QAfwD/AGIA/wiC + CP8AKgD/AAAA/wAEAP8Gigb/AJ0A/wB/AP8AfwD/AJoA/wBTAP9WVVblPjo+gDYuNn9oZWjfD9MP/xn0 + Gf8c3hz/EOMQ/wBbAP8AogD/Jdwl/yi0KP8Q0hD/J9Qn/zmVOf8XnRf/ZlNm4Dg2OIA4Ojh/Ykti3wVm + Bf8Zaxn/Oys7/wgeCP8A8AD/ALUA/0IlQv8gUSD/BosG/z9pP/8kMiT/CGUI/15PXuA6OjqAOjo6f1tb + W98AAAD/DA0M/zQvNP8AAAD/AIIA/wBDAP8yIDL/DAAM/wBWAP8zTzP/CyoL/wBSAP9dTV3gOjo6gDY2 + Nn9jY2PfLywv/0RCRP9XWFf/OzQ7/yCHIP8vSy//WFNY/0Y2Rv8ghSD/TnNO/0ZGRv8vPC//Y15j4Dg4 + OIA4ODh/YGBg3xAQEP8kJCT/Q0ND/xQSFP8Ldgv/EDAQ/0I8Qv8lFiX/C2wL/z9kP/8lHSX/EA0Q/15e + XuA6OjqAOjo6f1tbW98AAAD/CgoK/zIyMv8AAAD/AGUA/wAWAP8xKzH/CwYL/wAeAP8xOjH/CwoL/wAA + AP9dXV3gOjo6gDY2Nn9jY2PfLy8v/0RERP9XV1f/OzQ7/yCLIP8vUS//WFJY/0NDQ/84NDj/V1VX/0RE + RP8vLy//Y2Nj4Dg4OIA4ODh/YGBg3xAQEP8kJCT/Q0ND/xQSFP8Ldgv/EDAQ/0I8Qv8kJCT/ExMT/0JC + Qv8kJCT/EBAQ/15eXuA6OjqAOjo6f1tbW98AAAD/CgoK/zIyMv8AAAD/AGUA/wAWAP8xKzH/CwsL/wAA + AP8xMTH/CwsL/wAAAP9dXV3gOjo6gDY2Nn9jY2PfMDAw/z4+Pv9VVVX/OzU7/yCPIP8vUi//WVNZ/0ND + Q/84ODj/WFhY/0VFRf8vLy//Y2Nj4Dg4OIA8PDx/WVlZ5AUFBf8XFxf/MzMz/wkHCf8AOwD/BR0F/zQv + NP8YGBj/CAgI/zMzM/8YGBj/BQUF/1paWuU8PDyAJiYmhpaWlshdXV3fW1tb32FhYd9bW1vfW1tb31tb + W99hYWHfW1tb31tbW99hYWHfW1tb311dXd+UlJTJJiYmhwAAAD8mJiaGOjo6fzg4OH82NjZ/Ojo6fzo2 + On86ODp/NjY2fzg4OH86Ojp/NjY2fzg4OH86Ojp/JiYmhgAAAEA= + + + \ No newline at end of file diff --git a/SDRSharper/SDRSharper.csproj b/SDRSharper/SDRSharper.csproj new file mode 100644 index 0000000..c1ef448 --- /dev/null +++ b/SDRSharper/SDRSharper.csproj @@ -0,0 +1,191 @@ + + + + + Debug + x86 + {2410E537-F98E-41A6-BD14-CDD209550D37} + WinExe + Properties + SDRSharp + SDRSharperR + v4.7 + 4096 + SDRSharper.ico + SDRSharp.Program + + + + x86 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + true + 4 + false + + + x86 + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + true + false + + + true + bin\x64\Debug\ + DEBUG;TRACE + true + 4096 + full + x64 + 4 + prompt + MinimumRecommendedRules.ruleset + false + + + bin\x64\Release\ + TRACE + true + true + 4096 + pdbonly + x64 + prompt + MinimumRecommendedRules.ruleset + false + + + true + bin\Debug\ + DEBUG;TRACE + true + 4096 + full + AnyCPU + 4 + prompt + MinimumRecommendedRules.ruleset + false + + + bin\Release\ + TRACE + true + true + 4096 + pdbonly + AnyCPU + prompt + MinimumRecommendedRules.ruleset + + + + False + ..\Plugins\SDRSharper.FrequencyManager\bin\Debug\SDRSharp.FrequencyManager.dll + + + + + + + + + + + + ..\..\..\..\..\..\..\Program Files (x86)\Telerik\UI for WinForms R2 2017\Bin\Telerik.WinControls.dll + True + + + + ..\..\..\..\..\..\..\Program Files (x86)\Telerik\UI for WinForms R2 2017\Bin\Telerik.WinControls.UI.dll + True + + + ..\..\..\..\..\..\..\Program Files (x86)\Telerik\UI for WinForms R2 2017\Bin\TelerikCommon.dll + True + + + + + + + + Form + + + MainForm.cs + + + + + True + True + Resources.resx + + + Form + + + RadAboutBox1.cs + + + + + + MainForm.cs + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + RadAboutBox1.cs + + + + + Designer + + + + + {6d7bb10f-7f11-4661-a425-b55eab00ab1b} + SDRSharp.CollapsiblePanel + + + {a9303279-7855-4867-aa5d-91bc5dd98346} + SDRSharp.Common + + + {1aeb0726-f178-4e46-8060-6d03136c031e} + SDRSharp.Controls + + + {da8f0ad0-73be-4fa0-b8ae-315be25df373} + SDRSharp.PanView + + + {e732c8ac-e488-4a56-bceb-da66374422aa} + SDRSharp.Radio + + + + + + + + + + \ No newline at end of file diff --git a/SDRSharper/SDRSharper.csproj.user b/SDRSharper/SDRSharper.csproj.user new file mode 100644 index 0000000..5f98653 --- /dev/null +++ b/SDRSharper/SDRSharper.csproj.user @@ -0,0 +1,6 @@ + + + + false + + \ No newline at end of file diff --git a/SDRSharper/SDRSharper.ico b/SDRSharper/SDRSharper.ico new file mode 100644 index 0000000..65db245 Binary files /dev/null and b/SDRSharper/SDRSharper.ico differ diff --git a/SDRSharper/SharpControlProxy.cs b/SDRSharper/SharpControlProxy.cs new file mode 100644 index 0000000..d1b573a --- /dev/null +++ b/SDRSharper/SharpControlProxy.cs @@ -0,0 +1,681 @@ +using System; +using System.ComponentModel; +using System.Windows.Forms; +using SDRSharp.Common; +using SDRSharp.Radio; + +namespace SDRSharp +{ + public class SharpControlProxy : ISharpControl, INotifyPropertyChanged + { + public event PropertyChangedEventHandler PropertyChanged; + public SharpControlProxy(MainForm owner) + { + this._owner = owner; + this._owner.PropertyChanged += this.PropertyChangedEventHandler; + } + public DetectorType DetectorType + { + get + { + return this._owner.DetectorType; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.DetectorType = value; + })); + return; + } + this._owner.DetectorType = value; + } + } + public WindowType FilterType + { + get + { + return this._owner.FilterType; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.FilterType = value; + })); + return; + } + this._owner.FilterType = value; + } + } + public int AudioGain + { + get + { + return this._owner.AudioGain; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.AudioGain = value; + })); + return; + } + this._owner.AudioGain = value; + } + } + public long CenterFrequency + { + get + { + return this._owner.CenterFrequency; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.CenterFrequency = value; + })); + return; + } + this._owner.CenterFrequency = value; + } + } + public int CWShift + { + get + { + return this._owner.CWShift; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.CWShift = value; + })); + return; + } + this._owner.CWShift = value; + } + } + public bool FilterAudio + { + get + { + return this._owner.FilterAudio; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.FilterAudio = value; + })); + return; + } + this._owner.FilterAudio = value; + } + } + public int FilterBandwidth + { + get + { + return this._owner.FilterBandwidth; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.FilterBandwidth = value; + })); + return; + } + this._owner.FilterBandwidth = value; + } + } + public int FilterOrder + { + get + { + return this._owner.FilterOrder; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.FilterOrder = value; + })); + return; + } + this._owner.FilterOrder = value; + } + } + public bool FmStereo + { + get + { + return this._owner.FmStereo; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.FmStereo = value; + })); + return; + } + this._owner.FmStereo = value; + } + } + public long Frequency + { + get + { + return this._owner.Frequency; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.Frequency = value; + })); + return; + } + this._owner.Frequency = value; + } + } + public long FrequencyShift + { + get + { + return this._owner.FrequencyShift; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.FrequencyShift = value; + })); + return; + } + this._owner.FrequencyShift = value; + } + } + public bool FrequencyShiftEnabled + { + get + { + return this._owner.FrequencyShiftEnabled; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.FrequencyShiftEnabled = value; + })); + return; + } + this._owner.FrequencyShiftEnabled = value; + } + } + public bool UseAgc + { + get + { + return this._owner.UseAgc; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.UseAgc = value; + })); + return; + } + this._owner.UseAgc = value; + } + } + public bool AgcHang + { + get + { + return this._owner.AgcHang; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.AgcHang = value; + })); + return; + } + this._owner.AgcHang = value; + } + } + public int AgcThreshold + { + get + { + return this._owner.AgcThreshold; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.AgcThreshold = value; + })); + return; + } + this._owner.AgcThreshold = value; + } + } + public int AgcDecay + { + get + { + return this._owner.AgcDecay; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.AgcDecay = value; + })); + return; + } + this._owner.AgcDecay = value; + } + } + public int AgcSlope + { + get + { + return this._owner.AgcSlope; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.AgcSlope = value; + })); + return; + } + this._owner.AgcSlope = value; + } + } + public bool MarkPeaks + { + get + { + return this._owner.MarkPeaks; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.MarkPeaks = value; + })); + return; + } + this._owner.MarkPeaks = value; + } + } + public bool SnapToGrid + { + get + { + return this._owner.SnapToGrid; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.SnapToGrid = value; + })); + return; + } + this._owner.SnapToGrid = value; + } + } + public bool SquelchEnabled + { + get + { + return this._owner.SquelchEnabled; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.SquelchEnabled = value; + })); + return; + } + this._owner.SquelchEnabled = value; + } + } + public int SquelchThreshold + { + get + { + return this._owner.SquelchThreshold; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.SquelchThreshold = value; + })); + return; + } + this._owner.SquelchThreshold = value; + } + } + public bool SwapIq + { + get + { + return this._owner.SwapIq; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.SwapIq = value; + })); + return; + } + this._owner.SwapIq = value; + } + } + public bool IsPlaying + { + get + { + return this._owner.IsPlaying; + } + } + public int WAttack + { + get + { + return this._owner.WAttack; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.WAttack = value; + })); + return; + } + this._owner.WAttack = value; + } + } + public int WDecay + { + get + { + return this._owner.WDecay; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.WDecay = value; + })); + return; + } + this._owner.WDecay = value; + } + } + public int SAttack + { + get + { + return this._owner.SAttack; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.SAttack = value; + })); + return; + } + this._owner.SAttack = value; + } + } + public int SDecay + { + get + { + return this._owner.SDecay; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.SDecay = value; + })); + return; + } + this._owner.SDecay = value; + } + } + public bool UseTimeMarkers + { + get + { + return this._owner.UseTimeMarkers; + } + set + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.UseTimeMarkers = value; + })); + return; + } + this._owner.UseTimeMarkers = value; + } + } + public string RdsProgramService + { + get + { + return this._owner.RdsProgramService; + } + } + public string RdsRadioText + { + get + { + return this._owner.RdsRadioText; + } + } + public bool IsSquelchOpen + { + get + { + return this._owner.IsSquelchOpen; + } + } + public int RFBandwidth + { + get + { + return this._owner.RFBandwidth; + } + } + public int FFTResolution + { + get + { + return this._owner.FFTResolution; + } + } + public int FFTSkips + { + set + { + this._owner.FFTSkips = value; + } + } + public void GetSpectrumSnapshot(byte[] destArray) + { + this._owner.GetSpectrumSnapshot(destArray); + } + public void StartRadio() + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.StartRadio(); + })); + return; + } + this._owner.StartRadio(); + } + public void StopRadio() + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.StopRadio(); + })); + return; + } + this._owner.StopRadio(); + } + public void RegisterStreamHook(object streamHook, ProcessorType processorType) + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.RegisterStreamHook(streamHook, processorType); + })); + return; + } + this._owner.RegisterStreamHook(streamHook, processorType); + } + public void UnregisterStreamHook(object streamHook) + { + if (this._owner.InvokeRequired) + { + this._owner.Invoke(new MethodInvoker(delegate + { + this._owner.UnregisterStreamHook(streamHook); + })); + return; + } + this._owner.UnregisterStreamHook(streamHook); + } + private void PropertyChangedEventHandler(object sender, PropertyChangedEventArgs e) + { + string propertyName; + switch (propertyName = e.PropertyName) + { + case "AudioGain": + case "FilterAudio": + case "Frequency": + case "CenterFrequency": + case "FilterBandwidth": + case "FilterOrder": + case "FilterType": + case "CorrectIq": + case "FrequencyShiftEnabled": + case "FrequencyShift": + case "DetectorType": + case "FmStereo": + case "CWShift": + case "SquelchThreshold": + case "SquelchEnabled": + case "SnapToGrid": + case "StepSize": + case "UseAgc": + case "UseHang": + case "AgcDecay": + case "AgcThreshold": + case "AgcSlope": + case "SwapIq": + case "SAttack": + case "SDecay": + case "WAttack": + case "WDecay": + case "MarkPeaks": + case "UseTimeMarkers": + case "StartRadio": + case "StopRadio": + case "FFTResolution": + case "BFTResolution": + { + PropertyChangedEventHandler handler = this.PropertyChanged; + if (handler != null) + { + this.PropertyChanged(sender, new PropertyChangedEventArgs(e.PropertyName)); + } + break; + } + } + } + private readonly MainForm _owner; + } +} diff --git a/SDRSharper/aboutG.jpg b/SDRSharper/aboutG.jpg new file mode 100644 index 0000000..836c6d4 Binary files /dev/null and b/SDRSharper/aboutG.jpg differ diff --git a/SDRSharper/aboutH.jpg b/SDRSharper/aboutH.jpg new file mode 100644 index 0000000..7f1c886 Binary files /dev/null and b/SDRSharper/aboutH.jpg differ diff --git a/SDRSharper/bin/32bit Release.rar b/SDRSharper/bin/32bit Release.rar new file mode 100644 index 0000000..29bbd0c Binary files /dev/null and b/SDRSharper/bin/32bit Release.rar differ diff --git a/SDRSharper/bin/64bit Release.rar b/SDRSharper/bin/64bit Release.rar new file mode 100644 index 0000000..7e005c3 Binary files /dev/null and b/SDRSharper/bin/64bit Release.rar differ diff --git a/SDRSharper/bin/x64/Debug/Debug_1.log b/SDRSharper/bin/x64/Debug/Debug_1.log new file mode 100644 index 0000000..7b4c5f2 --- /dev/null +++ b/SDRSharper/bin/x64/Debug/Debug_1.log @@ -0,0 +1,56 @@ +12:13:42.823 - Program start +12:13:42.842 - Threadpool initialized +12:13:42.843 - Explicitely enabled VisualStyles +12:13:42.844 - Start FormMain +12:13:43.688 - Settings loaded +12:13:44.737 - Component initialized +12:13:44.787 - Plugins initialized +12:13:44.894 - Audio input device [MME] Microsoft Sound Mapper - Input found. +12:13:44.895 - Audio input device [MME] CABLE Output (VB-Audio Virtual found. +12:13:44.895 - Audio input device [MME] Stereo Mix (Realtek High Defini found. +12:13:44.895 - Audio input device [MME] Microphone (Realtek High Defini found. +12:13:44.895 - Audio input device [MME] Microphone (JBL Flip 3 Hands-Fr found. +12:13:44.895 - Audio input device [WDS] Primary Sound Capture Driver found. +12:13:44.897 - Audio input device [WDS] CABLE Output (VB-Audio Virtual Cable) found. +12:13:44.897 - Audio input device [WDS] Stereo Mix (Realtek High Definition Audio) found. +12:13:44.897 - Audio input device [WDS] Microphone (Realtek High Definition Audio) found. +12:13:44.897 - Audio input device [WDS] Microphone (JBL Flip 3 Hands-Free) found. +12:13:44.897 - Audio input device [Windows WASAPI] Stereo Mix (Realtek High Definition Audio) found. +12:13:44.897 - Audio input device [Windows WASAPI] Microphone (Realtek High Definition Audio) found. +12:13:44.898 - Audio input device [Windows WASAPI] Microphone (JBL Flip 3 Hands-Free) found. +12:13:44.898 - Audio input device [Windows WASAPI] CABLE Output (VB-Audio Virtual Cable) found. +12:13:44.898 - Audio input device [Windows WDM-KS] Microphone (Realtek HD Audio Mic input) found. +12:13:44.898 - Audio input device [Windows WDM-KS] Stereo Mix (Realtek HD Audio Stereo input) found. +12:13:44.898 - Audio input device [Windows WDM-KS] Microphone (@System32\drivers\bthhfenum.sys,#2;%1 Hands-Free%0 +;(JBL Flip 3)) found. +12:13:44.898 - Audio input device [Windows WDM-KS] CABLE Output (VB-Audio Point) found. +12:13:44.901 - Audio output device [MME] Microsoft Sound Mapper - Output found. +12:13:44.901 - Audio output device [MME] Speakers (JBL Flip 3 Stereo) found. +12:13:44.901 - Audio output device [MME] Speakers / Headphones (Realtek found. +12:13:44.901 - Audio output device [MME] CABLE Input (VB-Audio Virtual C found. +12:13:44.901 - Audio output device [MME] Headset Earphone (JBL Flip 3 Ha found. +12:13:44.901 - Audio output device [WDS] Primary Sound Driver found. +12:13:44.901 - Audio output device [WDS] Speakers (JBL Flip 3 Stereo) found. +12:13:44.901 - Audio output device [WDS] Speakers / Headphones (Realtek High Definition Audio) found. +12:13:44.901 - Audio output device [WDS] CABLE Input (VB-Audio Virtual Cable) found. +12:13:44.902 - Audio output device [WDS] Headset Earphone (JBL Flip 3 Hands-Free) found. +12:13:44.902 - Audio output device [Windows WASAPI] Speakers / Headphones (Realtek High Definition Audio) found. +12:13:44.902 - Audio output device [Windows WASAPI] CABLE Input (VB-Audio Virtual Cable) found. +12:13:44.902 - Audio output device [Windows WASAPI] Headset Earphone (JBL Flip 3 Hands-Free) found. +12:13:44.902 - Audio output device [Windows WASAPI] Speakers (JBL Flip 3 Stereo) found. +12:13:44.902 - Audio output device [Windows WDM-KS] Speakers (Realtek HD Audio output) found. +12:13:44.902 - Audio output device [Windows WDM-KS] Headset Earphone (@System32\drivers\bthhfenum.sys,#2;%1 Hands-Free%0 +;(JBL Flip 3)) found. +12:13:44.902 - Audio output device [Windows WDM-KS] Speakers () found. +12:13:44.903 - Audio output device [Windows WDM-KS] Speakers (VB-Audio Point) found. +12:13:44.917 - VFO initialized. +12:13:44.984 - GUI initialized. +12:13:45.121 - Frequency list loaded. +12:13:45.122 - ExtIO controller ExtIO_RTL_x64.dll found. +12:13:45.123 - Plugins initialized. +12:13:45.124 - IQ source selected. +12:13:45.148 - GUI initialized +12:13:46.326 - IQ source selected. +12:13:46.442 - MainForm loaded +12:13:46.676 - MainForm shown +12:13:54.727 - Program exit diff --git a/SDRSharper/bin/x64/Debug/Debug_4.log b/SDRSharper/bin/x64/Debug/Debug_4.log new file mode 100644 index 0000000..4ef6acf --- /dev/null +++ b/SDRSharper/bin/x64/Debug/Debug_4.log @@ -0,0 +1 @@ +07:43:34.433 - TuneThread started diff --git a/SDRSharper/bin/x64/Debug/Debug_5.log b/SDRSharper/bin/x64/Debug/Debug_5.log new file mode 100644 index 0000000..c608297 --- /dev/null +++ b/SDRSharper/bin/x64/Debug/Debug_5.log @@ -0,0 +1 @@ +12:13:45.126 - TuneThread started diff --git a/SDRSharper/bin/x64/Debug/ExtIO_RTL_x32.dll b/SDRSharper/bin/x64/Debug/ExtIO_RTL_x32.dll new file mode 100644 index 0000000..d393d85 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/ExtIO_RTL_x32.dll differ diff --git a/SDRSharper/bin/x64/Debug/ExtIO_RTL_x64.dll b/SDRSharper/bin/x64/Debug/ExtIO_RTL_x64.dll new file mode 100644 index 0000000..ae14fcf Binary files /dev/null and b/SDRSharper/bin/x64/Debug/ExtIO_RTL_x64.dll differ diff --git a/SDRSharper/bin/x64/Debug/Help.txt b/SDRSharper/bin/x64/Debug/Help.txt new file mode 100644 index 0000000..57f1e09 --- /dev/null +++ b/SDRSharper/bin/x64/Debug/Help.txt @@ -0,0 +1,232 @@ +Below some of the additional features added to the default SDRsharp radio (2-mar-2015) + +--------------------------------------------------------------------------------------- + +Note that the upmost 'spectrumanalyzer' display is the main display to be used for controlling the SDR. + +Use 'Span', 'Floor', 'Contr(ast)' and 'Intens(ity)' sliders to change upper and lower Spectrum analyser and Waterfall signal levels. + +Use the 'set' button or 'Right' mouse-button and select 'Do autoscaling' to automatically set lower signal level when 'Play' is active. + +Use the 'dBm / dBu / S-pts / %' list box to switch betweem signal level labeling. + +Use the 'Speed' slider to independently set the waterfall speed somewhere between 20 secs and 1.5 hours. + +After having clicked somewhere in the SpectrumAnalayzer display one can use Left and Rigth arrow keys to move frequency. +Use Page-up and Page-down to move/change centerfrequency according 'Cent-step' listbox entry. + +Use mouse scroll button on one of the top Cent/Freq digits to change (center)frequency. +Click on top of bottom of digit to increase/decrease digit value by one. +Or if one of the digits shows blue use up/down arrow. + + +Shortcut keys: + + to select VFO-A to VFO-C + + A select mode AM + S Select mode SAM + L select mode LSB + U select mode USB + D select mode DSB + N select mode nFM + W select mode wFM + + B 5 set BandWidth to 5 khz (do not type the white spaces) + G 50 (Enter> set audio level (Gain) to 50% + C 100 (Enter> set Center stepsize to 100 khz + Z 9 (Enter> Set Frequency stepsiZe to 9 khz + + Perform auto scaling + + 1350 Set frequency to 1350 Khz + 1350 K Set frequency to 1350 Khz + 1.2 M Set frequency to 1.2 Mhz + +When the Spectrum display is selected (has focus) (after having clicked somewhere in the Spectrum display) +One can use the below keys: + + Right/Left arrow increase/decrease active frequency with 'stepsize' amount. + Up/Down arrow increase/decrease active frequency with' stepsize' amount. + Page-Up/Page-Down increase/decrease Center frequency with 'center step' amount. + +Use the upmost buttons on the left 'FFT display' panel to enable/disable the RF Waterfall, IF baseband, AF audio +and/orAM envelope displays. + +Right click in IF baseband spectrum display to add or remove up to 4 notches, left click to enable/disable notch. +Use mouse wheel (or drag side of notch) to change notch width. +(as an alternative one can use the 'IF' button to toggle between normal RF-spectrum and IF-baseband mode) +One can also use the IF display to more precisely set/tune main receiving frequency ans/or passband width. + +Use the 'Lock' button to enable/disable frequency locking when (Vector)Scope display is active (XY mode, X=AM, Y=PM) + +To more precisely inspect AM audio levels on the 'Scope' panel, please disable the AGC function/button. +The 'RF gain' slider will automatically adjust itself to an appropriate level. +If needed manually adjust RF gain to get the display within range. +After a frequency change the AGC function is automatically re-enabled again to avoid audio overloads. + + +'Radio' panel: + + Vfo A to C Re-use stored setting when this Vfo was last used. + For instance to quickly switch between 3 bands of interrest. + +'Audio' panel: + + [1] to [4] buttons Enable/disable audio notch 1 to 4, visible when IF passband is enabled on FFT window. + Or ... drag the notches just as if you would drag/change the Vfo passband. + Click on notch to enable/disable a previously set notch. +'FFT diplay' panel: + + 'Waterfall' To enable/disable the RF spectrum WaterFall display. + 'show IF' To enable/disable the IF baseband spectrum display + 'Audio' To enable/disable the AF audio horizontal moving display. + 'Envelope' To enable/disable the AM envlope display. + + 'S-meter offset' to change S-meter readings when using an RTL-stick or other front-end. + 'Indep sideb.' To toggle between default and Perseus style bandwidth changing (using mouse). + 'Spect' button to select/change Spectrumanalyzer fill, gradient and/or line color. + The same holds for the 'W-fall', 'Audio' and 'Scope' buttons. + +'Scope' panel -> [...] button + + 'Vfo gain' Manually adjust gain when AGC is disabled or to change scope Y axis visibility. + + 5 lower sliders to change the behaviour slow/fast of the corresponding coloured audio level meter (bars). + 'Avg' slider change averaging level for locking on Vector scope display, default value is around 40 + 'Gain' slider change amplification for locking in Vector scope display, default value is around 9 + +'Advanced' panel + + 'Auto Scale' To enable/disable auto scaling after center-frequency change. + + 'Fast conv.' Toggle between Fast Convolve and default principles for the notch filters + 'FFT wind' Select the window type for the FFT Spectrumanalyser and Waterfall displays + 'VFO wind' Select the window type to use for the VFO band filter. + 'Bandwdt' Select filter bandwidth (same as BW combo to the right of freq-indicator) + 'Filter order' To set the filter quality for the VFO filter (default=400, higher values, more CPU). + To get deeper/sharper IF baseband notches, select a lower min-samplerate on Audio panel. + 'Latency' To experiment of you are experiencing audio drop-outs (default=100ms) + +Using a RTL based dongle one can also inspect the 'audio' spectrum for commercial stereo stations in the FM band. +To do this, enable the Audio display on the FFT display panel. Tune to a station in the FM band and set the 'min +sampling' on the 'Audio' panel to 96000 using the Sampling box on the 'Audio' panel. +Select wide-FM (wFM) as the audio mode on the 'Radio' panel to be sure the bandwidth (BW) is 180 kHz or more. +Disable 'Filter audio' and toggle 'FM stereo' for best results. + +*************************************************************************************************************************** + +If your audio contains drop-outs you can experiment with the below: + +- Select a lower FFT resolution (e.g. 4096) on 'FFT display' panel. +- Decrease the speed for the FFT waterfall and/or the Audiogram. +- Select 'Audiogram' instead of Envelope scope' by disabling lower right 'Scope' button. +- Select only 'SP + Waterfall' in the 'View' combo on the 'FFT display' panel. +- Decrease the overall size of your SDRSharper window on your computer monitor. +- Disable the 'Fast Conv.' button on the 'Advanced' panel. +- Try different 'min sampling' setting on the 'Audio' panel. + Depending on sound card selected some setting(s) might to better. + +*************************************************************************************************************************** + +Some more HINTS, TRICKS and suggestions: + +- For best audiogram waterfall display select 48000 for the 'min sampling' on the 'Audio' panel. + However this will degrade the visibility on the IF spectrum display. +- For best details on the IF display, select 16000 or 24000 for the 'min sampling' on the 'Audio' panel. +- This 'min (output) sampling' value will also affect audio quality and the bandwidth for the 'Raw' output, + so it's something to experiment with. +- For more pronounced IF baseband nothes (USB, LSB, CW) use lower 'min-sampling' values e.g. 8000 or 16000. +- When SAM demodulation is selected, use the 'AM pseud' button on the 'Audio' panel to switch between mono and + 'pseudo stereo'. (Left ear one sideband, right ear the other sideband). +- Use the 'Vfo gain' slider and/or timebase combo on the collapsible 'Scope panel on the left to 'manually adjust + the amplification for the Scope and Envelope diplays + +*************************************************************************************************************************** + +For HF below 30 Mhz, the first station in the Eibi stationlist data is listed on the top line in the SpectrumAnalyzer. +Click on this top-line to view all stations for the frequency. To get a longer list, increase the max on the last line. + +To get a new actual stationlist for your location: + +1) go to http://fmscan.org/perseus.php +2) Only once, set your location using 'Perseus location search' +3) select LW/MW/SW (0-30Mhz) +4) select CSV format +5) select 'comma' as the CSV separator +6) Click 'download userlist1.txt' +7) After some time a new page shows up, right click and use 'save as' to save the data on your local hard disk. +8) Copy the file to your SDRsharp runtime folder with the name 'eibi.csv' +9) Restart SDRsharp + +**************************************************************************************************************************** + +To enable 7-segment LED indicator style numbers for Center and Frequency indicators +Install the LCD font file into your fonts folder. +You can do this by double clicking the 'LCD-N___.tff' file. + + + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + RELEASE NOTES / CHANGE LOG +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +This modification was created to support ExtIO based SDR hardware on lower HF. +Which was (and maybe still is) not possible using the original SDRSharp app. + +Get SDRSharper_02g.zip and unpack/unzip files into a single destination folder. + +See also Help.txt file included in the Zip-file or click [?] button on bottom right of SDR. + +SDRSharper Requires Microsoft .Net framework 3.5 +http://www.microsoft.com/en-us/download/details.aspx?id=21 + +On most modern W7 and above systems already available. +Although on W10 you will have to download it again. + +SDRSharper supports most ExtIO enabled SDR hardware front ends. +See lowerr list on http://www.hdsdr.de/hardware.html +Place appropriate ExtIO*.dll file in your SDRSharper folder. + +Package already contains ExtIO dll's for Perseus and PapRadio SDR. +Furthermore the RTLSDR DVBT Dongle is supported. + + +To contact author: l_o_n_g_d_i_p_o_l_e_[at]_gmx.com (without the _ char's and @ for [at]) + +- use ExtIO_PappRadio.zip for pappradio ExtIO files. +- use ExtIO_PappRadio2.zip for pappradio v2 (usb) ExtIO files. +- use ExtIO_Perseus.zip for Perseus ExtIO files. +- use ExtIO_PMSDR_XP.zip for PMSDR ExtIO files running windows-XP. +- use ExtIO_PMSDR_W7.zip for PMSDR ExtIO files running windows-7. +- use ExtIO_SI570.zip for PMSDR, FiFiSDR or other SI570 based hardware. +- use Install_CFGSR_v2.6.msi to instaal full SI570 package including drivers. + +============================================================================================ +Release notes: +============================================================================================ + +mar 04, 2015 - version 0.2g + +- Added Synchronous AM demodulation. +- Both mono and 'pseudo stereo'. +- Removed trial period restrictions. +- Minor fixes. + +feb 15, 2015 - Version 0.2g + +- Bugfix on RTL-USB selection +- Synchronous AM (SAM) demodulation added +- Some other minor improvements + +oct 2014 - version 0.2e + +- Fixed crash when using soundcard based ExtIO hardware. +- Fixed display of spurs when playing sim.wav (http://www.sm5bsz.com/lir/sim1/sim1.htm) +- Bugfix when using a system with sound input disabled. +- Added separate IF baseband spectrum display. +- Enabled zooming and tuning for wide spectrum recordings. +- Adressed some (minor) performance issues. +- Removed center frequency indicator. + +(and probably introduced some new ones..., if so let me know). diff --git a/SDRSharper/bin/x64/Debug/LCD-BOLD.TTF b/SDRSharper/bin/x64/Debug/LCD-BOLD.TTF new file mode 100644 index 0000000..8e566af Binary files /dev/null and b/SDRSharper/bin/x64/Debug/LCD-BOLD.TTF differ diff --git a/SDRSharper/bin/x64/Debug/LCD-N___.TTF b/SDRSharper/bin/x64/Debug/LCD-N___.TTF new file mode 100644 index 0000000..67c079c Binary files /dev/null and b/SDRSharper/bin/x64/Debug/LCD-N___.TTF differ diff --git a/SDRSharper/bin/x64/Debug/PortAudio_x32.dll b/SDRSharper/bin/x64/Debug/PortAudio_x32.dll new file mode 100644 index 0000000..4588ded Binary files /dev/null and b/SDRSharper/bin/x64/Debug/PortAudio_x32.dll differ diff --git a/SDRSharper/bin/x64/Debug/PortAudio_x64.dll b/SDRSharper/bin/x64/Debug/PortAudio_x64.dll new file mode 100644 index 0000000..b2b685c Binary files /dev/null and b/SDRSharper/bin/x64/Debug/PortAudio_x64.dll differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.CollapsiblePanel.dll b/SDRSharper/bin/x64/Debug/SDRSharp.CollapsiblePanel.dll new file mode 100644 index 0000000..0fbb9eb Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.CollapsiblePanel.dll differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.CollapsiblePanel.pdb b/SDRSharper/bin/x64/Debug/SDRSharp.CollapsiblePanel.pdb new file mode 100644 index 0000000..e8beaf6 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.CollapsiblePanel.pdb differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.Common.dll b/SDRSharper/bin/x64/Debug/SDRSharp.Common.dll new file mode 100644 index 0000000..79bca30 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.Common.dll differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.Common.pdb b/SDRSharper/bin/x64/Debug/SDRSharp.Common.pdb new file mode 100644 index 0000000..156e5e4 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.Common.pdb differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.Controls.dll b/SDRSharper/bin/x64/Debug/SDRSharp.Controls.dll new file mode 100644 index 0000000..6d4f2dc Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.Controls.dll differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.Controls.pdb b/SDRSharper/bin/x64/Debug/SDRSharp.Controls.pdb new file mode 100644 index 0000000..547828a Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.Controls.pdb differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.FrequencyManager.dll b/SDRSharper/bin/x64/Debug/SDRSharp.FrequencyManager.dll new file mode 100644 index 0000000..e074675 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.FrequencyManager.dll differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.FrequencyManager.pdb b/SDRSharper/bin/x64/Debug/SDRSharp.FrequencyManager.pdb new file mode 100644 index 0000000..47bde1c Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.FrequencyManager.pdb differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.PanView.dll b/SDRSharper/bin/x64/Debug/SDRSharp.PanView.dll new file mode 100644 index 0000000..28fb3f6 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.PanView.dll differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.PanView.pdb b/SDRSharper/bin/x64/Debug/SDRSharp.PanView.pdb new file mode 100644 index 0000000..d1b5560 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.PanView.pdb differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.Radio.dll b/SDRSharper/bin/x64/Debug/SDRSharp.Radio.dll new file mode 100644 index 0000000..83ae020 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.Radio.dll differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharp.Radio.pdb b/SDRSharper/bin/x64/Debug/SDRSharp.Radio.pdb new file mode 100644 index 0000000..cced16a Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharp.Radio.pdb differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharperR.exe b/SDRSharper/bin/x64/Debug/SDRSharperR.exe new file mode 100644 index 0000000..3eb078f Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharperR.exe differ diff --git a/SDRSharper/bin/x64/Debug/SDRSharperR.exe.config b/SDRSharper/bin/x64/Debug/SDRSharperR.exe.config new file mode 100644 index 0000000..eb0edc7 --- /dev/null +++ b/SDRSharper/bin/x64/Debug/SDRSharperR.exe.config @@ -0,0 +1,86 @@ + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDRSharper/bin/x64/Debug/SDRSharperR.pdb b/SDRSharper/bin/x64/Debug/SDRSharperR.pdb new file mode 100644 index 0000000..2d93ee0 Binary files /dev/null and b/SDRSharper/bin/x64/Debug/SDRSharperR.pdb differ diff --git a/SDRSharper/bin/x64/Debug/Telerik.WinControls.Themes.VisualStudio2012Dark.dll b/SDRSharper/bin/x64/Debug/Telerik.WinControls.Themes.VisualStudio2012Dark.dll new file mode 100644 index 0000000..29091ba Binary files /dev/null and b/SDRSharper/bin/x64/Debug/Telerik.WinControls.Themes.VisualStudio2012Dark.dll differ diff --git a/SDRSharper/bin/x64/Debug/Telerik.WinControls.UI.dll b/SDRSharper/bin/x64/Debug/Telerik.WinControls.UI.dll new file mode 100644 index 0000000..2374fae Binary files /dev/null and b/SDRSharper/bin/x64/Debug/Telerik.WinControls.UI.dll differ diff --git a/SDRSharper/bin/x64/Debug/Telerik.WinControls.UI.xml b/SDRSharper/bin/x64/Debug/Telerik.WinControls.UI.xml new file mode 100644 index 0000000..f290a17 --- /dev/null +++ b/SDRSharper/bin/x64/Debug/Telerik.WinControls.UI.xml @@ -0,0 +1,59540 @@ + + + + Telerik.WinControls.UI + + + + + Gets the location and size of the accessible object + + + + + Gets the location and size of the accessible object + + + + + Gets a value for the Value property while in bound mode. + + Gets an object reference pointing to the value of the Value property in bound mode. + + + + Gets a value for the Value property in unbound mode. + + Returns an object reference pointing to the value of the Value property in unbound mode. + + + + This method is called when setting the Value property of a RadListDataItem when it is in unbound mode. + + The value to set the Value property to. + + + + This method is used to assign the DataBoundItem property of this RadListDataItem. + If a user attempts to set DataBoundItem while in bound mode, an exception should be thrown. + In unbound mode this property can be set to any value and will not affect the behavior of this RadListDataItem. + + A flag that indicates if the data bound item is being set from the data binding engine or by the user. + true means it is being set by the data binding engine. + The value that will be assigned to the DataBoundItem property. + + + + Gets a value indicating whether this data item is data bound. + + + + + Gets a value that represents the ListDataLayer associated with this data item and its parent RadListControl. + The ListDataLayer encapsulates the data operations provided by RadListControl which are sorting, filtering and currency synchronization. + + + + + Gets a value representing the owner RadListElement of this data item. + + + + + Gets a value representing the owner control of this data item. + + + + + Gets or sets the visual height of this item. + This property can be set only when AutoSizeItems of the parent RadListControl is true. + + + + + Gets the index of this data item in the Items collection of RadListControl. + + + + + Gets a value that will be used in the visual representation of this item. + + + + + Gets or sets a value for the property indicated by ValueMember if in bound mode, and private value in unbound mode. + Trying to explicitly set this property in bound mode will result in an InvalidOperationException. + + + + + Gets or sets a value that indicates if this item is selected. Setting this property will cause the selection events of the owner list control to fire if there is one. + + + + + Gets or sets whether this item responds to GUI events. + + + + + Gets or sets the text for this RadListDataItem instance. + + + + + Gets or sets a text value that is used for sorting. Creating a RadProperty during data binding is too slow, this is why + this property is used instead and its value can be used for sorting. + + + + + Gets or sets an image for this RadListDataItem instance. + + + + + Gets or sets the text-image relation for this RadListDataItem instance. + + + + + Gets or sets the image alignment for this RadListDataItem instance. + + + + + Gets or sets the text alignment for this RadListDataItem instance. + + + + + Gets or sets the text orientation for this RadListDataItem instance. + + + + + Gets or sets the font for this RadListDataItem instance. + + + + + Gets or sets the text color for this RadListDataItem instance. + + + + + Gets a value that indicates if this item is currently visible. + + + + + Gets a value that visually represents this data item. If the item is not visible, this property returns null. + The visual item returned should be used only to get information about a particular item. Since visual items + are shared between different data items, properties must not be set directly on the visual item in order + to avoid uncustomizable or unwanted behavior. For example if properties are set directly to the visual item + the themes may not work correctly. + + + + + Gets or sets the preferred size for the element which will present this item. + + + + + Gets the index of item in GridViewRowCollection. + + The index. + + + + Gets or sets a value that represents the raw data item that this RadListDataItem is associated with. + This property will be non null when the item is created via RadListControl's data binding and will contain the underlaying data item. Setting this property explicitly will have no effect in unbound mode and will throw an InvalidOperationException in bound mode. + + + + + Gets or sets a value that indicates if this item is selected. Setting this property will cause the selection events of the owner list control to fire if there is one. + + + + + Represents a auto-complete tokenized text box element + + + + + Represents an independent text box element + + + + + Represent a scrollable view element with scrollbars + + + + + + A light visual element supporting text, border, image, BackColor and ForeColor with different layout adjustments. + "http://www.telerik.com/help/winforms/tpf-primitives-lightvisualelement.html" + + + + + Base class for some RadItems, used in RadTreeView, RadPanelBar, RadCalendar, etc. Incorporates basic functionality for paiting gradient + background and borders the same way FillPrimitive and BorderPrimitive do. + + + + + Gets the border thicknes of a + + The element to check. + Determines whether to consider when the border is disabled. + The border thicknes. + + + + Toggles the text primitive when text related properties are change. + + The changed property. + + + + Called when animated image frame changes. + + + + + Gets the properties, which should mapped if set to a LightVisualElement instance. Used for testing purposes. + + + + + Gets or sets the text rendering hint. + + + + + Gets or sets the text rendering hint used when this element is disabled. + + + + + Gets or Sets value indicating whether the element should paint its text + + + + + Gets or Sets value indicating whether the element should paint its background + + + + + Gets or Sets value indicating whether the element should paint its border + + + + + Gets or Sets value indicating whether the element should paint its background image. + + + + + Gets or Sets value indicating whether the element should paint its image. + + + + + + Gets or sets the + Border style. The two possible values are SingleBorder and FourBorder. In the + single border case, all four sides share the same appearance although the entire + border may have gradient. In four border case, each of the four sides may differ in + appearance. For example, the left border may have different color, shadowcolor, and + width from the rest. When SingleBorder is chosen, you should use the general + properties such as width and color, and respectively, when the FourBorder style is + chosen you should use properties prefixed with the corresponding side, for example, + LeftColor, LeftWidth for the left side. + + + + + Defines the order in which border lines are drawn. This property is considered when the is FourBorders. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the top border . This property + has effect only if FourBorders style is used in BoxStyle property, + and affects only the top border. + + + + + Gets or sets a float value width of the right border. This + property has effect only if FourBorders style is used in BoxStyle + property, and affects only the right border. + + + + + Gets or sets a float value width. This property has effect only if + FourBorders style is used in BoxStyle property, and affects only the + bottom border. + + + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets a value indicating the TextImageRelation: ImageAboveText, + ImageBeforeText, Overlay, TextAboveImage, and TextBeforeImage. + + + + + Gets and sets the left border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the left border. + + + + + Gets and sets the top border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the top border. + + + + + Gets and sets the right border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the right border. + + + + + Gets and sets the bottom border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the bottom border. + + + + + Gets and sets the left shadow color. This option applies only if + fourBorders is chosen, and affects only the left border. + + + + + Gets and sets the top shadow color. This option applies only if + fourBorders is chosen, and affects only the top border. + + + + + Gets and sets the right shadow color. This option applies only if + fourBorders is chosen, and affects only the right border. + + + + + Gets and sets the bottom shadow color. This option applies only if + fourBorders is chosen, and affects only the bottom border. + + + + + Determines whether text will be clipped within the calculated text paint rectangle. + + + + + Gets or sets the transparent color for the image. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Gets or sets a value indicating whether image transparency is supported. + + + + + Determines whether character trimming will be automatically applied to the element if text cannot be fitted within the available space. + + + + + Determines whether ampersand character will be treated as mnemonic or not. + + + + + Gets or sets a value indicating whether text will be wrapped when exceeding the width of the element. + + + + + Determines whether keyboard focus cues are enabled for this element. + + + + + Determines whether trailing spaces will be included when text size is measured. + + + + + Gets the text structure used to render text + + + + + Creates the scroll bar element. + + + + + + Creates the view element. + + + + + + This method provides a chance to initialize the ViewElement object. + + The view element. + + + + Measures the view element. + + Size of the available. + + + + + Arranges the view element. + + The view element rect. + + + + Arranges the horizontal scroll bar. + + The view element rect. + The client rect. + + + + + Arranges the vertical scroll bar. + + The view element rect. + The hscroll bar rect. + The client rect. + + + + Gets the horizontal scroll bar. + + + The horizontal scroll bar. + + + + + Gets the vertical scroll bar. + + + The vertical scroll bar. + + + + + Gets or sets the view element. + + + The view element. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Creates an instance of + + + + + + Called when the context menu is opening. + + The menu. + + + + + Raises the event. + + The instance containing the event data. + + + + Clamps the offset to valid text position bounds + + The offset. + + + + + Determines whether the text can be inserted + + The text. + + true if this text can be inserted; otherwise, false. + + + + + Determines whether the current position is valid for the auto-complete operation + + + true if [is valid auto complete position]; otherwise, false. + + + + + Performs the auto-complete for concrete operation. + + The context. + + + + Performs the auto complete override. + + The context. + + + + Gets the text that is as filter condition in auto-completion + + The start position. + The end position. + + + + + Gets the auto-complete drop down location. + + + + + + Gets the lines of the text box element. + + + + + + Sets the lines of the text box element. + + The lines. + + + + Creates the caret of the text box element. + + + + + + Creates the auto-complete list element. + + + + + + Creates the auto-complete drop down. + + + + + + Gets the size of the auto-complete drop down. + + + + + + Shows the drop down. + + The location. + + + + Closes the auto-complete drop down. + + + + + Closes the drop down. + + The reason. + + + + Moves the current selection in the text box to the Clipboard. + + + + + + Copies the current selection in the text box to the Clipboard. + + + + + + Replaces the current selection in the text box with the contents of the Clipboard. + + + + + + Inserts the text at current position + + The text. + + + + + Deletes the selected text or character at the current position + + + + + + /// Deletes the selected text or character at the current position + + if set to true deletes next character. + + + + + Appends text to the current text of a text box. + + The text. + + + + Appends text to the current text of a text box and selects it + + The text. + if set to true selects the text. + + + + Selects a range of text in the text box. + + The start. + The length. + + + + Selects all text in the text box element. + + + + + Specifies that the value of the SelectionLength property is zero so that no characters are selected in the element. + + + + + + Scrolls the contents of the control to the current caret position. + + + + + Clears all text from the text box element. + + + + + Gets or sets the current text in the text box element. + + + + + Gets or sets the prompt text that is displayed when the text box contains no text. + + + The null text. + + + + + Gets or sets the color of the null text. + + + The color of the null text. + + + + + Gets or sets the lines of text in a text box element. + + + The lines. + + + + + Gets or sets a value indicating the currently selected text in the element. + + + The selected text. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box element. + + + The length of the max. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text box element types a TAB character in the element instead of moving the focus to the next element in the tab order. + + + true if [accepts tab]; otherwise, false. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline TextBox element creates a new line of text in the element or activates the default button for the form. + + + true if [accepts return]; otherwise, false. + + + + + Gets or sets a value indicating whether this is a multiline text box. + + + true if multiline; otherwise, false. + + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Indicates whether a multiline text box control automatically wraps words to the beginning of the next line when necessary. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets the length of text in the element. + + + The length of the text. + + + + + Gets or sets the caret position. + + + The index of the caret. + + + + + Gets or sets the starting point of text selected in the text box. + + + The selection start. + + + + + Gets or sets the number of characters selected in the text box. + + + The length of the selection. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets or sets whether the TextBox element modifies the case of characters as they are typed. + + + The character casing. + + + + + Gets the associated caret. + + + + + Represents the associated keyboard and mouse input handler. + + + The input handler. + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets a value indicating whether the caret is visible in read only mode. + + + true if the caret is visible; otherwise, false. + + + + + Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the element loses focus. + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the associated context menu. + + + The context menu. + + + + + Gets or sets the navigator of the text position. + + + The navigator. + + + + + Gets the auto-complete list element. + + + + + Gets the view element of the null text. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets the auto complete display member. + + + The auto complete display member. + + + + + Gets or sets a value specifying the source of complete items used for automatic completion. + + + The auto complete data source. + + + + + Gets a value specifiying the complete items used for automatic completion. + + + + + Gets or sets the size of the drop down max. + + + The size of the drop down max. + + + + + Gets or sets the size of the drop down min. + + + The size of the drop down min. + + + + + Gets or sets the max count of visible items in auto-complete drop down + + + The max drop down item count. + + + + + Gets a value indicating whether this auto-complete drop down is open. + + + true if the drop down is open; otherwise, false. + + + + + Gets or sets when the vertical scroll bar should appear in a multiline TextBox element. + + + The state of the vertical scroll bar. + + + + + Gets or sets when the horizontal scroll bar should appear in a multiline TextBox element. + + + The state of the horizontal scroll bar. + + + + + Gets a value indicating whether this text box can perform auto complete operation. + + + true if this instance can perform auto complete; otherwise, false. + + + + + Gets the auto complete drop down. + + + + + Gets the clear button. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when the context menu is opening. + + + + + Occurs when text selection is changing. + + + + + Occurs when text selection is changed. + + + + + Fired when the Input Method Editor starts the composition. + + + + + Fired when the Input Method Editor completes the composition. + + + + + Fired when the Input Method Editor has a result ready. For languages like Korean + this might happen before the composition has ended. + + + + + Initializes a new instance of the class. + + + + + Creates the tokenized item collection. + + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets or sets a property name which will be used to extract a value from the data items + + + + + Gets or sets the delimiter used to tokenize the text + + + The delimiter. + + + + + Gets the tokenized items. + + + + + Gets the auto complete view element. + + + + + Gets or sets the auto complete drop down location. + + + The auto complete popup location. + + + + + Occurs when text is validating as token + + + + + Represent a virtualize panel element provider + + The type of view element. + The type of virtualized item. + + + + + + + + + + Represents interface for virtualized element provider + + + + + + Gets the element. + + The data. + The context. + + + + + Caches the element. + + The element. + + + + + Shoulds the update. + + The element. + The data. + The context. + + + + + Determines whether the specified element is compatible with its data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Gets the size of the element. + + The data. + + + + + Gets the size of the element. + + The element. + + + + + Clears the cached elements. + + + + + Gets or sets the default size of the element. + + + The default size of the element. + + + + + Creates the element. + + The data. + The context. + + + + + Gets the element from cache. + + The data. + The context. + + + + + Gets the element from cache or creates it. + + The data. + The context. + + + + + Pre-initialize cached element. + + The element. + The context. + + + + Caches the element. + + The element. + + + + + Determine whether the element should be updated. + + The element. + The data. + The context. + + + + + Determines whether the specified element is compatible with concrete data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Gets the size of the element. + + The item. + + + + + Gets the size of the element. + + The element. + + + + + Clears the cache. + + + + + Gets or sets the default size of the element. + + + The default size of the element. + + + + + Gets the cached elements count. + + + The cached elements count. + + + + + Creates the element. + + The data. + The context. + + + + + Shoulds the update. + + The element. + The data. + The context. + + + + + Represents a traverser that enumerates collection. + + + + + + Represents traverser class that enumerates items. + + + + + + Moves the previous. + + + + + + Moves to end. + + + + + + Gets or sets the position. + + + The position. + + + + + Initializes a new instance of the class. + + The collection. + + + + Advances the enumerator to the next element of the collection. + + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Moves the previous. + + + + + + Moves to end. + + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Called when items are navigated. + + The current. + + + + + Moves the next core. + + + + + + Moves the previous core. + + + + + + Gets or sets the collection. + + + The collection. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets or sets the position. + + + The position. + + + + + Occurs when items are navigated. + + + + + Moves the next core. + + + + + + Gets or sets the font for this RadListDataItem instance. + + + + + Represents a virtaulizable element interface + + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance. + + + + + Determines whether element is compatible with the specified data. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the associated data. + + + The data. + + + + + Applies or resets alternating row color of the current visual item. + + + + + Gets or sets a value indicating whether this item has odd position. + + + + + Clears all Checked Items + + + + + Represents a auto-complete list element in . + + + + + Represents a auto-complete list element in . + + + + + This class is used to represent data in a list similar to the ListBox control provided by Microsoft. + + + + + Performs events subscription to internal objects. + The base implementation must always be called. + + + + + Performs events unsubscription from internal objects. + The base implementation must always be called. + + + + + This method creates an object that implements IVirtualizedElementProvider. Child elements are not yet created + in this method. + + A new instance of an implementation of IVirtualizedElementProvider. + + + + Creates an instance of ITraverser which traverses the child elements. + + + + + + Creates an instance of ItemScroller. Child elements are not yet created in this method. + + + + + + This method provides a chance to setup the ItemScroller. + + The item scroller on which properties will be set. + + + + This method provides a chance to setup the the VirtualizedStackContainer. + + The view element on which properties will be set. + + + + Measures the item. + + The item. + Size of the available. + + + + + Gets the desired size of the item. + + The item. + + + + + Called when auto size is changed. + + + + + Gets the Element with the specified item. + + + + + + Updates on measure. + + Size of the available. + + + + + Updates the items fit to size mode. + + + + + Gets or sets the items. + + + The items. + + + + + Gets the associated scroller. + + + The scroller. + + + + + Gets or sets a value indicating whether items fit to size. + + + true if [fit items to size]; otherwise, false. + + + + + Gets or sets the items orientation. + + + The orientation. + + + + + Gets or sets a value indicating whether items auto sizing. + + + true if [auto size items]; otherwise, false. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Creates a new instance of the RadListElement class. + + + + + Creates an instance of the data layer object responsibe for items management in bound or unbound mode. + + + + + + Creates an instance of the element provider object which is responsible for mapping logical and visual items and determining + when a visual item must be updated to reflect the state of its corresponding logical item. + + + + + + Creates an instance of the visual element responsible for displaying the visual items in a particular layout. + + + + + + Finds the first item in the RadList control that matches the specified string. + + The string to search for. + Determines whether the search is case sensitive or not. + The zero-based index of the first item found; returns null if no match is found. + + + + Raises the event. + + + An instance that contains the event data. + + + + + + Suspends notifications of changing groups. + This method is cumulative, that is, if SuspendGroupRefresh is called N times, ResumeGroupRefresh must also be called N times. + + + + + Resumes refreshing of groups. + + Indicates whether refreshing of groups should be performed. + + + + Refreshes the groups. + + + + + Scrolls to the active item if it is not null and if it is not fully visible. + + + + + Forces re-evaluation of the current data source (if any). + + + + + Suspends internal notifications and processing in order to improve performance. + This method is cumulative, that is, if BeginUpdate is called N times, EndUpdate must also be called N times. + + + + + Resumes the internal notifications and processing previously suspended by BeginUpdate. + + + + + Defers the refresh. + + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Clears the currently selected items and selects all items in the closed range [startIndex, endIndex]. + + The first index at which to start selecting items. + The index of one item past the last one to be selected. + + + + Scrolls to the provided item so that the item will appear at the top of the view if it is before the currently visible items + and at the bottom of the view if it is after the currently visible items. + + The item to scroll to. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the beginning of the items. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Creates a new item traverser and updates the current. + If group refresh is suspended this method has no effect. + + + + + This method returns true if the ActiveItem is fully visible. + + + + + Gets the index of the last visible item. + + + + + Gets the index of the first visible item. + + + + + Gets the index of the middle visible item. + + + + + Determines if the provided visual item intersects the view but is not contained in it. + + + + + If the object assigned to the DataSource property is of type Component, this callback will be invoked if + the data source is disposed which cause all data items to become disposed. + + + + + Handles changes in the data layer. + Nothing will done if we the RadListElement is in a BeginUpdate state. + + + + + Syncronizes the properties of all visual elements with their data items. + + + + + When the data layer changes the current position, this callback triggers the selection logic with the new position. + + + + + Fires the SelectedIndexChanged event. + + + + + Fires the SelectedIndexChanging event. + + + + + Fires the SelectedValueChanged event if SelectedValue has actually changed since many items can have the same value. + + + + + Fires the ItemDataBinding event. + + + + + Fires the ItemDataBound event. + + + + + Fires the CreatingVisualItem event. + + + + + Fires the SortStyleChanged event. + + + + + Fires the VisualItemFormattingeEvent with the provided visual item. + + + + + Performs scrolling logic depending on the delta from the mouse wheel. + + + + + Raises the ItemsChanged event with the provided arguments. + + The arguments that contain the data relevant to the items change. + + + + Raises the ItemsChanging event with the provided arguments. + + The arguments that contain the data relevant to the pending items change. + + + + Raises the DataItemPropertyChanged + + + + + + + Handles the mouse input by finding the RadElement involved with the mouse and sending the element and event information to the appropriate + subsystem of RadListElement. + + + + + Performs logical branching depending on the type of the routed event. + + + + + Performs logical branching of the selection logic depending on the notification reason. + + + + + Handles the keyboard input by delegating the information of the event to the appropriate RadListElement subsystem. + + + + + Finds an item with the text provided by an internal search buffer after the character argument is appended to the buffer. + The search buffer is reset after a user defined time since the last character was typed. By default this is 300 ms. + Users can set the KeyboardSearchResetInterval property to a custom interval. + + A character that will be appended to the search buffer. + + + + Handles the space key press depending on the SelectionMode and the state of the control key. + + + + + This method is the entry point for the selection logic if initiated by the keyboard. + + + + + Determines whether the selection logic should select the next or the previous item depending on the which arrow key is pressed. + + + + + This method is the entry point in RadListElements selection logic. + + + + + Performs logical branching of the MultiExtended selection logic depending on the parameters. + + + + + This method performs only logical branching of the selection logic depending on the input type parameter. + + + + + This method is for clarity. CodeMultiSimple is the same as MouseMultiSimple but does not change the current position of the data layer. + + + + + Toggles the Selected state of the item at the specified index and fires selection events depending on the second argument. + + The index of the item which will selected or deselected. + Indicates whether to change the current positio of the data layer and therefore fire selecton events. + + + + Handles the MultiSimple selection logic for adding items. + + + + + Handles the MultiSimple selection logic for removing items. + + + + + Selects the item at the specified index and clears all other selected items and updates the active item. + This method triggers selection events. + + The index of the item which will be selected. + + + + Selects all items in the range [startIndex, endIndex] and clears all other selected items. + This method triggers selection events. + + The beginning of the selection range. + The end of the selected range. + + + + This method sets the provided item as active and the previous one to inactive. There can be only active item at a time. + + The item to set to an active state. + The value to which the Active property of item will be set. + + + + Sets the SelectedItem and thus SelectedIndex to the logical item with the specified value. If there are many items with the same value the first item found will be selected. + This method triggers selection events. + + The value for which to find an item. + + + + Sets the the selected data item to the specified item. If the item is different than the current one the selection events will be fired. + This method triggers selection events. + + + + + + Sets the selected index to the specified value if it is different than the current value and fires the selection events. + This method triggers selection events. + + + + + + Determines if RadListElement is ready for data binding. This is true only when Items is empty or DataSource is different from null. + If RadListElement is not ready for binding an InvalidOperationException is thrown. + + + + + Determines if this list element is ready for unbound mode. + If it is not an invalid operation exception is thrown. + RadListElement is ready for unbound mode if it has not data source set. + + + + + Returns the value of the Value property of the RadListDataItem at the specified index. + + The index of the item from which to get the Value property. + + + + + Returns the index of the provided list data item. This index determines the items position in the data view. + + The index for which to return an index. + Returns the index of the provided item. + + + + Gets the text of the data item provided in the argument depending on the ItemTextComparisonMode property. + + The data item for which to get the Text value. + The text value of the provided data item. + + + + Determines whether the provided index is in the range [0, Items.Count) + + The index to validate. + Returns true if the index is inside [0, Items.Count) and false otherwise. + + + + Swaps two integers. + + + + + Disposes every item in the Items collection. + + + + + Converts the provided ListSortDirection to SortStyle. + + The ListSortDirection to be converted to SortStyle. + The converted SortStyle value. + + + + Sets the sort comparer. + + The comparer. + The direction. + + + + Sets the sort style to the specified value and fires the SortStyle changed event if the new value is different than the previous value. + + + + + + Sets the selection mode of this RadListElement to the provided value. + + The new selection mode. + + + + Gets property name by which items will be sorted when SortStyle is set. + If DisplayMember is an empty string, items will be sorted by their text, otherwise + they will be sorted according to the DisplayMember. + + Returns the property by which items will be sorted. + + + + Clamps the provided value parameter to be be in the closed range [min, max]. + + The left bound of the range. + The right bound of the range. + The value to be clamped to the range specified by the previous two parameters. + + + + This is a helper method which keeps track of the number of subscriptions to the CurrentPositionChanged event of the data layer. + + + + + This is a helper method which keeps track of the number of unsubscriptions from the CurrentPositionChanged event of the data layer. + + + + + This method is for testing purposes. It invokes the MultiExtended selection logic with the supplied parameters. + + The index to which the selection will span starting from SelectedIndex. + An enumeration indicating whether the input comes from the keyboard, the mouse or from code. + If this flag is true the selection logic will invoke MultiExtended as if the shift key was pressed. + If this flag is true the selection logic will invoke MultiExtended as if the control key was pressed. + + + + Returns the logical item associated with the top visible item if the layout is vertical and the left most item if the layout is horizontal. + + + + + + Gets a value indicating whether the oldSelectedIndex is reset to initial state. + The old selected index is in initial state only when the list control is newly + constructed and has not yet had any selected items, or when the data layer sends + a reset notification. This happens when the data source is changed. + + + + + Gets a value indicating whether the SelectedValue property is different after the selection last changed. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + Always false when kinetic scrolling is enabled. + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Gets or sets a value indidcating the alternating item color for odd items. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether kinetic scrolling is enabled. + + + + + Gets or sets the offset of the items when they are displayed in a collapsible group. + + + + + Gets or sets the offset of the items when they are displayed in a non-collapsible group. + + + + + Gets or sets a value that indicates if this RadListElement will stop firing the ItemsChanging and ItemsChanged events. + + + + + Gets or sets a value that indicates whether text case will be taken into account when sorting. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value of this property is 300 ms. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListElement is focused. + + + + + Gets or sets a value that determines whether the FindString() method searches via the text property + set by the user or by the text provided by the data binding logic, that is, by DisplayMember. + + + + + Gets or sets a Predicate that will be called for every data item in order to determine + if the item will be visible. + + + + + Gets or sets a filter expression that determines which items will be visible. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets an object that implements IComparer and sorts the items according to its logic. + + + + + Gets or sets the active item. This property is meaningful only when SelectionMode is MultiSimple or MultiExtended with the Control key pressed. + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + Gets or sets the SelectionMode which determines selection behavior of RadListElement. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + Setting this property throws an InvalidOperationException if Items is not empty and the data source is null. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets a string which will be used to get a description text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets a string which will be used to get a description text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the item height for the items. This property is disregarded when AutoSizeItems is set to true. + + + + + Gets or sets the sort style. It can be Ascending, Descending or None. Sorting is performed according to the property specified by DisplayMember. + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + Gets or sets the scrolling mode. + + + + + Gets a boolean value that indicates whether the is a filter currently set either with the Filter or FilterExpression properties. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + This event fires when the SelectedValue changes. This is will not always fire when the SelectedItem or SelectedIndex changes because the new item may have the same value. + + + + + This event fires when selected index changes. This always happens when the SelectedItem changes. + + + + + This event fires before SelectedIndexChanged and provides a means for cancelling the whole selection operation. + Someties this event will not fire since cancelling the change is not possible, for example when the DataSource is set to null. + + + + + This item fires for data item that is being created during data binding and fires before the ItemDataBound event. The event provides a means for changing the instance of the data item + to a custom data item. + + + + + This event fires after a data item has been created and bound. + + + + + This event fires while creating visual items. This happens on during initial layout and during resizing if the new size is larger and thus allowing more items to be visualized. + The event provides a means to create a custom visual item. + + + + + This event fires after the sorting style changes. + + + + + The visual item formatting fires whenever the state of a visible logical item changes and when scrolling. + + + + + This event fires whenever an item is added, removed, set or if the whole items collection was modified. + + + + + This event fires right before adding, removing or setting an item. This event will not fire if an item is added to a data source directly + because there is no way for RadListElement to be notified before the change. + + + + + This event fires whenever a RadProperty of a data item changes. This event is most often used to listen changes in Selected and Active properties of the data items. + + + + + This class is used to compare data items when sorting in ascending order. + + + + + This class is used to compare data items when sorting in descending order. + + + + + Raises the event. + + The action. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether the two text variables are equal + + The suggestion. + The pattern. + + true if the specified suggestion is matching; otherwise, false. + + + + + Determines whether the suggested text matches the pattern text + + The suggestion. + The pattern. + + true if [is exact suggestion] [the specified suggestion]; otherwise, false. + + + + + Suspends the event. + + + + + Resumes the event. + + + + + Performs text suggestion for concrete text pattern + + The pattern. + The start position. + The end position. + + + + Performs text suggestion for concrete text pattern + + The pattern. + The start position. + The end position. + if set to true [notify]. + + + + Performs text suggestion for concrete text pattern + + The pattern. + + + + Custom filtering predicated + + The item. + + + + + Custom filtering predicated. + + The item. + + + + + Sets the suggested text. + + The text. + The action. + + + + Gets the suggested text from + + The item. + if set to true [perform append]. + + + + + Gets the first fully visible item. + + + + + + Gets the last fully visible item. + + + + + + Gets the fully visible item. + + if set to true [first item]. + + + + + Gets the visual item at point. + + The location. + + + + + Finds by text + + The text. + + + + + Gets or sets the auto complete mode. + + + The auto complete mode. + + + + + Gets the suggested text. + + + + + Gets the text search criteria. + + + + + Gets a value indicating whether this text and suggested text are matched. + + + true if they are matched; otherwise, false. + + + + + Gets a value indicating whether the auto-complete mode is suggest mode. + + + true if the mode is suggest mode; otherwise, false. + + + + + Gets a value indicating whether the auto-complete mode is append mode. + + + true if the mode is append mode; otherwise, false. + + + + + Gets or sets the start position where the suggestion is performed + + + + + Gets or sets the end position where the suggestion is performed + + + + + Occurs when suggested text is changed + + + + + Represents a CheckedDropDown List. The RadCheckedDropDownList class is essentially a simple + wrapper for the RadDropDownListElement. The latter + may be included in other telerik controls. All UI and logic functionality is + implemented by the RadDropDownListElement class. + RadDropDownList act to transfer event to and from its + RadDropDownListElement instance. + + + + + Represents a combo box class. The RadDropDownList class is essentially a simple + wrapper for the RadDropDownListElement. The latter + may be included in other telerik controls. All UI and logic functionality is + implemented by the RadDropDownListElement class. + RadDropDownList act to transfer event to and from its + RadDropDownListElement instance. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the DropDownList box. + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Raises the event. + + + An instance that contains the event data. + + + + + + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from zero based index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Forces re-evaluation of the current data source (if any). + + + + + Displays the popup on the screen. + + + + + HIde the popup from the screen. + + + + + Call BeginUpdate at the begining of a block that makes many modifications in the GUI + + + + + + Call EndUpdate at the end of a block that makes many modifications in the GUI + + + + + + Defers the refresh. + + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + /// + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets that RadListDataItem Image will be displayd in Editor Element when DropDownStyle is set to DropDownStyleList + \ + + + + Gets a reference to the drop down form associated with this RadDropDownList. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + + Rotate items on double click in the edit box part + + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + + Gets or sets the sort style. It can be Ascending, Descending or None. Sorting is performed according to the property specified by DisplayMember. + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + + /// + Gets or sets the easing type of the animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + + + Gets or sets the height in pixels of the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + DefaultItems count in drop-down portion of the RadDropDownList. + + + + + Gets or sets the drop down maximum size. + + + + Represent the DropDownListElement element + + + + + Represent the List element + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Indicating whether the Popup part of the control + are displayed. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets an object that implements IComparer which is used when sorting items. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + Occurs when a key is pressed while the control has focus. + + 1 + + + + Occurs when a key is released while the control has focus. + + 1 + + + + Occurs when a key is pressed while the control has focus. + + + + + Fires when the popup-form is opened. + + + + + Fires when the popup-form is about to be opened. + + + + + Fires when the popup is about to be closed. + + + + + Fires when the popup is closed. + + + + + This event fires when the selected index property changes. + + + + + This event fires before SelectedIndex changes. This event allows the operation to be cancelled. + + + + + This event fires only if the SelectedValue has really changed. For example it will not fire if the previously selected item + has the same value as the newly selected item. + + + + + This event fires before a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event fires for every item provided by the data source. + This event allows a custom RadListDataItem to be provided by the user. + + + + + This event fires after a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event is fired for every item provided by the data source. + + + + + This event allows the user to create custom visual items. + It is fired initially for all the visible items and when the control is resized afterwards. + + + + + This event fires when the SortStyle property changes. + + + + + The VisualItemFormatting event fires whenever a property of a visible data item changes + and whenever a visual item is associated with a new data item. During scrolling for example. + + + + + This property is not applicable for RadCheckedDropDownList + + + + + This property is not applicable for RadCheckedDropDownList + + + + + Show or Hide the CheckAll item + + + + + Gets or sets a value indicating whether the hosted textbox is multiline. + + + true if multiline; otherwise, false. + + + + + This property is not applicable for RadCheckedDropDownList. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a value specifying the style of the DropDownList + This property is not applicable for RadCheckedDropDownList + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets a value indicating whether items checked state is synchronized with the text in the editable area. + + + + + Gets the associated auto complete text box element. + + + + + Occurs when text is validating as token + + + + + /// Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + TextBox Property + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Represents the base for all editor elements. Provides the default visual states such as IsFocused and Disabled. + + + + + This interface supports the editor infrastructure of the RadGridView. + + + + + Occurs when the editor is validating the value. + + + + + Occurs when the editor is finished validating the value. + + + + + Occurs when the editor value is being changed. Cancelable event. + + + + + Occurs when the value of the editor changes. + + + + + Occurs when internally the editor detects an error or when the Validating event fails. + + + + + Gets the VisualElement that must receive the focus, when the editor is invoked. + + + + + + Initializes the provider. + + + + + Initializes the provider. + + value to be pre-loaded inside the initialized editor. + + + + Initializes the provider. + + the owner + value to be pre-loaded inside the initialized editor. + + + + Occurs when internally the editor detects an error or when the Validating event fails. + + + + + Gets whether the editor is instantiated on demand or is always availabele. + Example: GridBooleanCellElement and GridViewBooleanColumn. + + + + + Closes the popup if it is open, or shows the popup if it is closed. + + + + + Closes the popup with a RadPopupCloseReason.CloseCalled reason. + + + + + Closes the popup with the provided reason for closing. + + the reason for the close operation as specified through RadPopupCloseReason enumeration. + + + + Displays the popup on the screen. + + + + + Used to initialize the size of the popup + when it is initially opened and the + element tree is loaded. + + + + + Performs the core popup display logic. + + The popup form that is about to be displayed. + + + + Gets the screen coordinated where the popup should be displayed. + + + + + + + Gets the display size for the popup. + + The popup which size should beretrieved. + True to perform explicit measure, false otherwise. + + + + + Applies any Min/Max size restrictions to the popup form. + + + + + + Syncronizes the theme of the editor itself with the popup that is about to be displayed. + + + + + + Determines whether the popup form may be displayed. + + + + + + Creates the popup instance. You have to override this method in order to provide a popup + that is specialized by its content. Example: In a combo box you have to override and provide a specialized class + that contains and handles the listbox element. + + The popup instance. + + + + Gets a valid instance of the popup, that is properly + initialized to work with the PopupEditorBaseElement. + + The popup instance. + + + + Gets the popup form + + + + + + + + + + + + + + + + + + + + + + + + + Main entry point for updating DropDownList + + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the ComboBox. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + AutoCompleteValueMember Property + + + + + AutoCompleteDataMember Property + + + + + Gets or sets the height in pixels of the drop-down portion of the ComboBox. + + + + + Popup Property + + + + + DefaultItemsCountInDropDown Property + + + + + The input element hosted in the popup form. In the case of + DropDownList the control is a ListElement. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Defers the refresh. + + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + main update entry point + + contains notification context + + + + This method is used internally! + + + + + Creates the auto complete append handler. + + + + + + Creates the auto complete suggest helper. + + + + + + Gets or sets a value indicating whether the SelectedIndex is synchronized with the text in the editable area. + + + + + Get or set the text in Editable area + + + + + Gets a value that indicates if the popup associated with this RadDropDownListElement is open. + + + + + Represent list of all AutoComplete Helpers + + + + + Gets or sets that RadListDataItem Image will be displayd in Editor Element when DropDownStyle is set to DropDownStyleList + + + + + Gets or sets a Predicate that will be called for every data item in order to determine + if the item will be visible. + + + + + Gets or sets a filter expression that determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + EditableElement Property + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a value specifying the style of the combo box. + + + + + + + + + + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + For information on this property please refer to the MSDN. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the item height for the items. + + + + + TextBox Property + + + + + ArrowButton Property + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + Rotate items on double click in the edit box part + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + AutoCompleteSuggest Property + + + + + AutoCompleteAppend Property + + + + + Get or sets the minimum width of the arrow button element. + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the drop down minimum width. + + + + + This property is not applicable for RadCheckedDropDownList + + + + + This property is not applicable for RadCheckedDropDownList + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets a value indicating whether items checked state is synchronized with the text in the editable area. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Indexes the of. + + The item. + + + + + Indexes the of. + + The text. + + + + + Determines whether [contains] [the specified text]. + + The text. + + true if [contains] [the specified text]; otherwise, false. + + + + + Displays a flat collection of labeled items with checkbox, each represented by a ListViewDataItem. + + + + + Displays a flat collection of labeled items, each represented by a ListViewDataItem. + + + + + Creates an instance of . + + + + + Executed on EndInit() method. + + The sender. + The event args. + + + + Suspend any item change notifications until is called. + + + + + Resumes the item change notifications. + + + + + Finds an item with the specified key. + + The key of the searched item. + + + + + Finds an item with the specified key. + + The key of the searched item. + Indicates if the search should check only visible items. + + + + + Selects a set of items. + + The items to select. + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Saves the changes. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Discards the changes. + + [true] if success, [false] otherwise + + + + Expands all the groups in the control. + + + + + Collapses all the groups in the control. + + + + + Checks the selected items. + + + + + Unchecks the selected items. + + + + + Checks all of the items. + + + + + Unchecks all of the items. + + + + + Fires when a group has been expanded. + + + + + Fires when a group is about to expand. Cancelable. + + + + + Occurs when the BindingContext has changed. + + + + + Occurs when the process of binding to a data source has finished + + + + + Occurs when a ListViewDataItem is about to be selected. Cancelable. + + + + + Occurs when the content of the SelectedItems collection has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the ViewType of RadListView is changed. + + + + + Occurs when the ViewType of RadListView is about to change. Cancelable. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user moves the mouse over a ListViewDataItem. + + + + + Occurs when the user hovers a ListViewDataItem. + + + + + Occurs when the mouse pointer enters a ListViewDataItem. + + + + + Occurs when the mouse pointer leaves a ListViewDataItem. + + + + + Occurs when the user clicks a ListViewDataItem. + + + + + Occurs when the user double-clicks a ListViewDataItem. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Occurs when a ListViewDataItem changes its state and needs to be formatted. + + + + + Occurs when a ListViewDataItem needs to be created. + + + + + Occurs when a BaseListViewVisualItem needs to be created; + + + + + Occurs when a DetailsView cell needs to be formatted. + + + + + Occurs when a data-bound item is being attached to a ListViewDataItem. + + + + + Occurs when the CurrentItem property is changed. + + + + + Occurs when the CurrentItem property is about to change. Cancelable. + + + + + Occurs when an editor is required. + + + + + Occurs when an edit operation is about to begin. Cancelable. + + + + + Occurs when an editor is initialized. + + + + + Occurs when a ListViewDataItem is edited. + + + + + Fires when a validation error occurs. + + + + + Occurs when an edit operation needs to be validated. + + + + + Occurs when the value of a ListViewDataItem is changed. + + + + + Occurs when the value of a ListViewDataItem is about to change. Cancelable. + + + + + Occurs when a needs to be created. + + + + + Occurs when a needs to be created. + + + + + Occurs when an item is about to be removed using the Delete key. Cancelable. + + + + + Occurs when an item is removed using the Delete key. + + + + + Gets or sets a value indicating whether column names which differ only in the casing are allowed. + + + + + Gets or sets the position of the checkboxes when ShowCheckBoxes is true. + + + + + Gets or sets the alignment of the checkboxes within the item when ShowCheckBoxes is true. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the last added item in the RadListView DataSource will be selected by the control. + + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets a value indicating whether the checkboxes should be in ThreeState mode. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + + + + + Gets or sets a value indicating whether grid lines should be shown in DetailsView. + + + + + Gets or sets a value indicating whether items can be selected with mouse dragging. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. Always false when lasso selection is enabled. + + + + + Gets or sets a value indicating whether items should react on mouse hover. + + + + + Gets or sets a value indicating whether the items should be sorted when clicking on header cells. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default item size. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets the space between the items. + + + + + Gets a collection of filter descriptors by which you can apply filter rules to the items. + + + + + Gets or sets the filter predicate used for filtering operation. + + The filter. + + + + Gets a value indicating whether the control is in bound mode. + + + + + Gets a collection containing the groups of the RadListView. + + + + + Gets or sets the value member. + + + + + Gets or sets the display member. + + + + + Gets or sets the checked member. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether custom grouping is enabled. + + + + + Gets a collection of SortDescriptor which are used to define sorting rules over the + ListViewDataItemCollection. + + + + + Gets a collection of GroupDescriptor which are used to define grouping rules over the + ListViewDataItemCollection. + + + + + Gets or sets the data source of a RadListView. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the selected item. + + + + + Gets or sets the index of the selected item. + + + + + Gets or sets the current item. + + + + + Gets or sets the current column in Details View. + + + + + Indicates whether there is an active editor. + + + + + Gets or sets a collection of ListViewDetailColumn object which represent the columns in DetailsView. + + + + + Gets or sets a collection of ListViewDataItem object which represent the items in RadListView. + + + + + Gets or sets a value indicating whether the column headers should be drawn. + + + + + Gets or sets a value indicating whether the items should be shown in groups. + + + + + Gets a collection containing the selected items. + + + + + Gets a collection containing the checked items. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating if the user can resize the columns. + + + + + Gets or sets value indicating if the user can reorder columns via drag and drop. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets value indicating whether multi selection is enabled. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets value indicating whether the user can remove items with the Delete key. + + + + + Gets the currently active editor. + + + + + Gets or sets the type of the view. + + + + + Gets the of the control. + + + + + Gets or sets the height of the header in Details View. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListView is focused. + + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + RadListView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadListView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + Returns a flag indicating whether the sizing element is at the bottom of the window. + If true, the size of the popup should increase. If false, the size should decrease. + + + + + + Gets or sets a boolean value that + determines whether the SizeGripItem + can resize the hosting control. + + + + + Base interface for providers. + + The type used to specialize the provider implementation. + + + + Gets IEnumerable<T> for items that match the conditions defined by the specified predicate. + + The Predicate<T> delegate that defines the conditions of the item to search for. + IEnumerable<T> for items that match the conditions defined by the specified predicate, if found; + + + + Inserts an item of type T. + + The item of type T to insert. + + + + Updates he first occurrence of a specific item in the data store. + + The item of type T to update. + Name of the property which value changed. + Null or an empty string if all properties should be updated. + + + + Removes the first occurrence of a specific item from the data store. + + The item of type T to delete. + + + + The ItemsChanged event is raised by the provider to inform all listeners that the items in the data store have changed. + + + + + The PositionChanged event is raised by the provider to inform all listeners that the current position in data items list has changed. + + + + + Gets or sets the current position in the list of data items. + + + + + Gets or sets a data store mapping to the provider. + + + + + Associates a source properties collection with the corresponding properties collection exposed by the scheduler events. + It is used in common by all RadScheduler data providers. + Contains a collection of SchedulerMapping objects, and is implemented by the + + + + + Searches for a SchedulerMapping instance that binds a property of an item from the data store to + a property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + Property name of an item in RadScheduler. + The first element that matches the property name, if found. + + + + Searches for a SchedulerMapping instance that binds a property of an item from the data store to + a property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + Property name of an item in the data store. + The first element that matches the property name, if found. + + + + Represents the method that will handle the type conversion between the values of corresponding properties. + + The value to be converted. + The converter applied. + The converted value. + + + + Contains information about a list change event. + + + + + + Initializes a new instance of the class. + + Type of the list change. + + + + Initializes a new instance of the class. + + Type of the list change. + The new item. + The new index. + + + + Initializes a new instance of the class. + + Type of the list change. + The changed item. + Name of the property. + + + + Initializes a new instance of the class. + + Type of the list change. + The new item. + The old item. + + + + Initializes a new instance of the class. + + Type of the list change. + The new items. + + + + Initializes a new instance of the class. + + Type of the list change. + The changed items. + Name of the property. + + + + Initializes a new instance of the class. + + Type of the list change. + The new items. + The old items. + + + + Gets the type of the list change. + + The type of the list change. + + + + Gets the new items. + + The new items. + + + + Gets the old items. + + The old items. + + + + Gets the name of the property. + + The name of the property. + + + + Represents the simple binding between the property of an item from the data store and + the property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + + + + Initializes a new instance of the SchedulerMapping class that simple-binds the + indicated property of an item from RadScheduler to the specified item from the data store. + + Property name of an item in RadScheduler. + Property name of an item in the data store. + + + + The callback that converts the given value object from the data store to the specified type of the RadScheduler corresponding item. + + + + + The callback that converts the given value object from a RadScheduler item to the specified type of the data store corresponding item. + + + + + Gets or sets the RadScheduler item property name that is mapped. + + + + + Gets or sets the data store item property name that is mapped. + + + + + Base class for all generic RadDock objects - such as Services, Settings, etc. + + + + + Forces object clean-up and resource release. + + + + + Performs the actual dispose logic. + + True to notify that managed resources should also be disposed. + + + + Disposes any managed resources associated with this object. + + + + + Disposes any unmanaged resources associated with this instance. + + + + + Raises the PropertyChanging notification. + + + True to indicate that the change is accepted, false otherwise. + + + + Raises the PropertyChanged event. + + + + + + Determines whether the property with the specified name needs serialization. + + + + + + + Notifies that the object is disposed. + + + + + + + + + + Represents the action button element + + + + + Represents a button element. The button element could be placed in each control's + Items collection. It encapsulates all the necessary logic related to the user + interaction and UI. The RadButton class is a simple + wrapper for the RadButtonElement class. The RadButton + acts to transfer events to and from its corresponding RadButtonElement instance. + The RadButtonElement which is essentially the RadButton control may be nested in + other telerik controls. + + + + + Represents a button item. + + + + Initializes a new instance of the RadButtonItem class. + + + + + Initializes a new instance of the RadButtonItem class and sets it's Text property to + the provided string. + + + + + + Initializes a new instance of the RadButtonItem class, sets it's Text and Image + properties to the provided string and Image. + + + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Specifies the options for display of image and text primitives in the element. + + + + + Gets a value indicating whether the button item is in the pressed state. + + + + + Determines if this button is the default button for the form it is on. + + + + + Determines whether the Image value of the current item is shared (reused by ither items). + This flag is true by default. If it is set to false, then the item itselft will dispose the Image upon its disposal. + + + + + Initializes a new instance of the RadButtonElement class. + + + + + + + + + + + + + + + + + Gets the FillPrimitive element that is reponsible for painting of the background of the control + + + + + Gets the BorderPrimitive element that is reponsible for painting of the border of the control + + + + + Gets the TextPrimitive element that is reponsible for painting of the border of the control + + + + + Gets a reference to the ImagePrimitive of the RadButtonElement. + + + + + Gets a reference to the FocusPrimitive of the RadButtonElement. + + + + + Gets a reference to the ImageAndTextLayoutPanel of the RadButtonElement. + + + + + Gets the large image that is displayed on a button element. + + + + + Gets the large image list index value of the image displayed on the button control. + + + + + Gets the large key accessor for the image in the ImageList. + + + + + Gets or sets the large image that is displayed on a button element. + + + + + Gets or sets the small image list index value of the image displayed on the button control. + + + + + Gets or sets the small key accessor for the image in the ImageList. + + + + + Specifies whether the button should use the original image list or the small image list. + + + + + Angle of rotation for the button image. + Unlike AngleTransform the property ImagePrimitiveAngleTransform rotates the image only. + AngleTransform rotates the whole button + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + Gets or sets a value indicating whether the border is shown. + + + + + This property is used internally! + + + + + Values used by RadDropDownButton, to determine the mouse position relative to the action or arrow button part. + + + + + This class represents the popup of the + control. + + + + + Represents a drop down menu used in radComboBox and radMenu. + + + + + Represents a base class for all popup-forms used throughout the suite. + + + + + An interface for all Popup-forms used in RadControls for WinForms. + + + + + Shows the IPopupControl at the specific location. + + An instance of the Rectangle struct + which represents a portion of the screen which the IPopupControl + is aligned to. + + + + Closes the IPopupControl. + + + + + Tries to close the . + + An instance of the class + containing information about the close request. + + + + This method determines whether the IPopupControl can be closed. + Used in the PopupManager class to prevent the IPopupControl from closing + in specific occasions. + + The reason why the IPopupControl is closed. + True if the IPopupControl can be closed, otherwise false. + + + + Executes when a key is pressed. + + An instance of the + struct which contains the key information. + A boolean value that determines whether the + IPopupControl processes the message. + + + + Callback for handling the WM_MOUSEWHEEL message. + + + + True if the message is processed, false otherwise. + + + + Gets a instance that represents + a collection of logical children of this IPopupControl. + The OwnerPopup property of these children would point + to this IPopupControl instance. + + + + + Gets the owner IPopupControl of this IPopupControl. + + + + + Gets the Bounds rectangle of the IPopupControl. + + + + + Gets the owner element of the IPopupControl. + + + + + Creates an instance of the RadPopupFormBase class. + + + + + Shows the popup based on the value + set to its Location property. + + + + + Shows the popup at the location passed + as a parameter. The location is in screen coordinates + + An instance of the struct that represents the location. + + + + Shows the control based on the screen rectangle + of a given control. + + The control which defines the location of the popup. + + + + Closes the popup. + + + + + Fires when the popup is opened. + + + + + Fires when the popup is about to open. + + A CancelEventArgs object that contains information about the event + + + + Fires when the popup is closed. + + A RadPopupClosedEventArgs instance + that contains information about what caused the popup to close. + + + + Fires when the popup is about to close. + + A RadPopupClosingEventArgs instance that + contains information about the event + + + + Updates the Aero effects support upon property change. + + + + + Updates the location of the popup based on the + alignment rectangle and the current alignment settings. + You can adjust the alignment settings by using the + VerticalPopupAlignment and HorizontalPopupAlignment properties. + + The alignment rectangle based on which the popup is positioned. + + + + Updates the location of the popup based on the last used + alignment rectangle and the current alignment settings. + You can adjust the alignment settings by using the + VerticalPopupAlignment and HorizontalPopupAlignment properties. + + + + + This method returns a point which defines the position of the popup. + By default, aligns the popup based on the + and the current alignment settings. You can adjust the alignment settings + by settin the HorizontalPopupAlignment and VerticalPopupAlignment properties. + + The alignment rectangle based on which + the popup is aligned. + An instance of the struct + that represents the calculated position of the popup. + + + + This method returns a point which defines the position of the popup. + By default, aligns the popup based on the + and the current alignment settings. You can adjust the alignment settings + by settin the HorizontalPopupAlignment and VerticalPopupAlignment properties. + + An instance of the class + that represents the screen where the popup is about to be positioned. + The alignment rectangle based on which + the popup is aligned. + An instance of the struct + that represents the calculated position of the popup. + + + + Gets the screen on which the popup will be displayed. + + The alignment rectangle for the popup. + An instance of the class that represents + the screen where the popup will be displayed. + + + + Gets an instance of the class + that represents the screen where the popup is displayed. + + + + + Gets a which represents the available bounds for the popup to show. + By default this method returns the bounds of the screen. + + An instance of the class that represents + the active screen where the popup is about to be shown. + An instance of the struct that represents the + available bounds for the popup based on the active screen. + + + + Calculates the horizontal position of the popup + according to the current + and . + + The screen in which the popup will be aligned. + The alignment rectangle of the popup. + The calculated location that will be corrected if needed. + An instance of the struct that represents the corrected location of the popup + + + + Calculates the vertical position of the popup + according to the current + and . + + The screen in which the popup will be aligned. + The alignment rectangle of the popup. + The calculated location that will be corrected if needed. + An integer that represents the corrected vertical location of the popup + + + + Calculates the horizontal popup location based on the . + This method uses the HorizontalPopupAlignment property setting. + + An instance of the struct + that represents the alignment rectangle. + Returns an integer that represents the X coordinate of the popup. + + + + Calculates the vertical popup location based on the . + This method uses the VerticalPopupAlignment property setting. + + An instance of the struct + that represents the alignment rectangle. + Returns an integer that represents the Y coordinate of the popup. + + + + Fires when a drop-down animation is about to begin. + + + + + This method is executed when the popup needs to receive manual horizontal alignment. + This can happen when there is no reasonable possibility for the + alignment routines to define a proper horizontal position for the popup. + In this way the developer is enabled to define a horizontal position + according to their preferences. + + The proposed alignment rectangle with screen coordinates.. + The proposed coordinates. + The proposed available space for the popup.. + An instance of the struct that represents the location of the popup. + + + + Checks whether the current alignment rectangle intersects with the popup's bounds + according to a given popup location. + + An instance of the struct that represents + the current alignment rectangle. + An instance of the struct that represents the proposed popup location. + An instance of the struct that represents the available bounds on the screen. + An instance of the struct that represents the result of the operation. + + + + This method is executed when the popup needs to receive manual vertical alignment. + This can happen when there is no reasonable possibility for the + alignment routines to define a proper vertical position for the popup. + In this way the developer is enabled to define a vertical position + according to their preferences. + + The proposed alignment rectangle with screen coordinates.. + The proposed coordinates. + The proposed available space for the popup.. + An instance of the struct that represents the location of the popup. + + + + Shows the popup. + + The alignment rectangle. + + + + Closes the popup. + + The info. + + + + Called when the popup is closing. + + The info. + + + + + Called when popup is closed. + + The info. + + + + Closes the IPopupControl. + + + + + + This method determines whether the IPopupControl can be closed. + Used in the PopupManager class to prevent the IPopupControl from closing + in specific occasions. + + The reason why the IPopupControl is closed. + + True if the IPopupControl can be closed, otherwise false. + + + + + Executes when a key is pressed. + + An instance of the + struct which contains the key information. + + A boolean value that determines whether the + IPopupControl processes the message. + + + + + Determines whether the MouseWheel event is handled by the popup. + + + + + + + + Raises the MouseWheel event. + + + + + + Gets or sets the direction of the drop-down + animation. + + + + + Gets or sets the easing type for the drop down animations. + + + + + Gets or sets the count of the frames of the drop down animation. + + + + + Gets or sets a bool value determining + whether popup animation is enabled. + + + + + Gets or sets a value determining what animation type to use when showing the popup. + + + + + Gets or sets the frame count + for the fade animation. + + + + + Gets or sets the time interval for each fade animation frame. + + + + + Gets or sets a float value that determines the opacity of the popup. + This property accepts values from 0.0 to 1.0. For example, + to make the popup semi-transparent, set the property to 0.5. + + + + + Gets or sets a boolean value which determines + whether the popup drops a shadow. + + + + + Enables the support for Windows Vista DWM effects. + + + + + Gets or sets a value indicating the type + of the fade animation. + + + + + Gets or sets a value from the enum + which defines how the size of the popup is fit to the currently active screen. + + + + + Gets or sets a value from the enum + which determines what part of the screen is considered when positioning the popup. + + + + + Gets or sets a value from the which defines how the popup will be positioned according to the + alignment rectangle when its location cannot be adjusted so that it meets all popup alignment and alignment correction mode requirements. + + + + + Defines how the popup will be horizontally aligned in case of lack of + screen space. + + + + + Defines how the popup will be vertically aligned in case of lack of + screen space. + + + + + Gets or sets a value that defines the vertical alignment + of the popup based on the alignment rectangle passed + in the ShowPopup method. + + + + + Gets or sets a value that defines the horizontal alignment + of the popup based on the alignment rectangle passed + in the ShowPopup method. + + + + + Gets the RadElement that owns this popup. + + + + + + + + + + Gets a instance that represents + a collection of logical children of this IPopupControl. + The OwnerPopup property of these children would point + to this IPopupControl instance. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + Fires when a fade animation has finished. The + event args contain information about the type of the animation. + + + + + Fires when the popup-form is about to be opened. + + + + + Fires when the popup-form is opened. + + + + + Fires when the popup is about to be closed. + + + + + Fires when the popup is closed. + + + + + Creates an instance of the PopupAnimationProperties class. + This class encapsulates a WindowAnimationEngine instance + and exposes its properties. + + The WindowAnimationEngine instance. + + + + Gets or sets the direction of the drop-down animation. + + + + + Gets or sets the count of the frames of the animation. + + + + + Gets or sets the easing type of the animation. + + + + + Gets an integer value representing the animation + step. + + + + + Gets the + instance associated with the AnimationProperties instance. + + + + + Gets a boolean value indicating whether the popup is visible. + + + + + Gets menu items collection + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Initializes a new instance of the RadDropDownMenu class + + + + + Creates an instance of the RadDropDownMenu class. + + An instance of the RadElement class + that represents the owner of this drop down menu + + + + Displays the RadDropDownMenu in its default position. + + + + + Displays the RadDropDownMenu relative to the specified screen location. + + The horizontal screen coordinate, in pixels. + The vertical screen coordinate, in pixels. + + + + Displays the RadDropDownMenu relative to the specified screen location. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + + + + Positions the ToolStripDropDown relative to the specified screen location and with the specified direction. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the RadDropDownMenu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + + + + Positions the RadDropDownMenu relative to the specified control location and with the specified direction. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the RadDropDownMenu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + + + + Positions the RadDropDownMenu relative to the specified RadItem location and with the specified direction. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified RadItem location and + with specified direction and offset according to the owner. + + The RadItem that is the reference point for the RadDropDownMenu position. + Specifies the offset from the owner in pixels. + One of the RadDirection values. + + + + Gets the item that has been clicked. This property is valid when the drop-down is closed by an item click. + + + + + Gets or sets the popup element. + + + + + Indicates whether the DropDown contains one or two cloumns of items. + + + + + Gets or sets menu header column text + + + + + Gets or sets menu header column image + + + + + Represents a combo box element. + + + + + Initializes a new instance of the RadComboBoxElement class. + + + + + Gets the text of the specified item. + + + + + Raises the CaseSensitiveChanged event. + + + + + Raises the DropDownStyleChanged event. + + + + + Raises the SelectedIndexChanged event. + + + + + Raises the SelectedValueChanged event. + + + + + Raises the SortedChanged event. + + + + + Processes the Enter key + + An instance of + + + + Processes the Escape key + + An instance of + true if the event is processed, false otherwise + + + + Finds the first item in the combo box that starts with the specified string. + + The String to search for. + The first RadCOmboBoxItem found; returns null if no match is found. + + + + Finds the first item in the combo box that matches the specified string. + + The String to search for. + The first item found; returns null if no match is found. + + + + Finds the index of the item with the specified text. The passed argument + is compared with the DisplayMember value for each item in the items collection. + + The text of the item which index is to be acquired. + The index of the item if found, otherwise -1. + + + + Call BeginUpdate at the begining of a block that makes many modifications in the GUI + + + + + + Call BeginUpdate at the end of a block that makes many modifications in the GUI + + + + + + Call the GetItemHeight member function to retrieve the height of list items in a combo box. + + Specifies the item of the combo box whose height is to be retrieved. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + LimitToList Property + + + + + Gets a value indicating whether a keyboard command has been issued. + + + + + Gets or set the value in Milliseconds indicating delay between last key press and filtering operation + + + + + Gets a value indicating whether the drop down is shown. + + + + + Gets the arrow button element. + + + + + Gets the fill element. + + + + + Gets the border element. + + + + + Specifies the mode for the automatic completion feature used in the ComboBox + and the TextBox controls. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + Rotate items on double click in the edit box part + + + + + Gets or sets a boolean value determining whether the user can scroll through the items + when the popup is closed by using the mouse wheel. + + + + + Gets or sets the height in pixels of the drop-down portion of the ComboBox. + + + + + Gets or sets a value specifying the style of the combo box. + + + + + Gets whether the text input control of the combo box is in editable mode. + + + + + Gets or sets the width of the of the drop-down portion of a combo box. + + + + + Gets or sets a value indicating whether the control should show or not partial items. + + + + + Gets a collection representing the items contained in this ComboBox. + + + + + Gets a value indicating whether the combo box is displaying its drop-down portion. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the ComboBox. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the currently selected item. + + + + + Gets or sets the index specifying the currently selected item. + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets a value indicating the sort style the of items in the combo box. + + + + Gets or sets the displayed text. + + + + Gets or sets a value indicating whether the ComboBox DropDown will be enabled when it shows. + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + Gets the TextBoxElement which is used in the ComboBox. + + + + + Gets or sets a value indicating whether RadScrollViewer uses UI virtualization. + + + + + Gets or sets the property to display. + + + + + Gets or sets the data source. + + + + + Gets or sets the IFormatProvider that provides custom formatting behavior. + + + + + Gets or sets the format-specifier characters that indicate how a value is to be displayed. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + + Gets or sets value specifying the currently selected item. + + + + + Gets or sets t he property to use as the actual value for the items. + + + + + Occurs when the CaseSensitive property has changed. + + + + + Occurs when the SelectedIndex property has changed. + + + + Fires when the selected value is changed. + + + + Occurs when the Sorted property has changed. + + + + + Represents a date time editor. + + + + + Abstract class that represents basic logic for editor + + + + + Sets the IsInBeginEditMode property. This method is used internally. + + The new value of the IsInBeginEditMode property + + + + Initializes the editor. Used internally in RadGridView. + + The owner of this editor. + The value of the editor. + + + + Starts the editing process. Used internally in RadGridView. + + + + + Finishes the editing process. Used internally in RadGridView. + + + + + + Validates the value currently entered in the editor. + + + + + + Begins the editor initialization process. + + + + + Finishes the editor initialization process. + + + + + Fires the event. + + A that contains the event data. + + + + Fires the event. + + + + + Fires the event. + + A that contains the event data. + + + + Fires the event. + + + + + Fires the event. + + + + + + Creates a new editor element. + + a if successful + + + + Gets a value indicating whether this is the active editor in grid. + + + + + Gets a value indicating whether the editor is initializing. + + + + + Gets a value indicating whether the editor is in BeginMode mode. + + + + + Gets the element that owns this editor. + + + + + Gets a value indicating whether the editor is in RightToLeft mode. + + + + + Gets the type of the editor value + + + + + Gets or sets the editor value. + + + + + Gets a value indicating whether the editor value is modified. + + + + + Gets the associated with this editor. + + + + + Fires when changing the value of the editor. + + + + + Fires when the editor value has been changed. + + + + + Fires when the editor is validating. + + + + + Fires when the editor has finished validating. + + + + + Fires when a validation error is occurred. + + + + + Initializes a new instance of the RadDateTimeEditor class. + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + Gets or sets the minimum date and time that can be selected in the editor. + + + + + Gets or sets the maximum date and time that can be selected in the editor. + + + + + Gets or sets the custom date/time format string. + + + + + Represents a date time editor element used in RadDateTimeEditor + + + + + Represents the RadDateTimePickerElement class + + + + + Represents the IsDropDownShown dependancy property + + + + + Represents RadDateTimePickerElement's constructor + + + + + Represents RadDateTimePickerElement's constructor + + + + + + Creates a new instance of + + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Gets the minimum date value allowed for the DateTimePicker control. + + + + + Gets the date as a string + + string value + + + + Resets the current value + + + + + Gets the current behavior of the control. By default it is showing a calendar in the drop down + + + + + + Sets the current value to behave as a null value + + + + + Raises the FormatChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the NullableValueChanged event + + + + + + Raises the PropertyChanged event + + + + + + Sets the behavior of the date picker + + + + + + Closes the popup if it is open, or shows the popup if it is closed. + + + + + Gets an instance of RadTextBoxElement + + + + Gets or sets a value indicating whether RadDateTimePicker is read-only. + + true if the RadDateTimePicker is read-only; otherwise, false. The default is + false. + 1 + + + + Indicates whether a spin box rather than a drop down calendar is displayed for editing the control's value + + + + + Gets or sets the CultureInfo supported by this RadCalendar object. + Describes the names of the culture, the writing system, and + the calendar used, as well as access to culture-specific objects that provide + methods for common operations, such as formatting dates and sorting strings. + + + The culture names follow the RFC 1766 standard in the format + "<languagecode2>-<country/regioncode2>", where <languagecode2> is + a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> + is an uppercase two-letter code derived from ISO 3166. For example, U.S. English is + "en-US". In cases where a two-letter language code is not available, the + three-letter code derived from ISO 639-2 is used; for example, the three-letter + code "div" is used for cultures that use the Dhivehi language. Some culture names + have suffixes that specify the script; for example, "-Cyrl" specifies the Cyrillic + script, "-Latn" specifies the Latin script. + The following predefined CultureInfo names and identifiers are + accepted and used by this class and other classes in the System.Globalization + namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Culture NameCulture IdentifierLanguage-Country/Region
"" (empty string)0x007Finvariant culture
af0x0036Afrikaans
af-ZA0x0436Afrikaans - South Africa
sq0x001CAlbanian
sq-AL0x041CAlbanian - Albania
ar0x0001Arabic
ar-DZ0x1401Arabic - Algeria
ar-BH0x3C01Arabic - Bahrain
ar-EG0x0C01Arabic - Egypt
ar-IQ0x0801Arabic - Iraq
ar-JO0x2C01Arabic - Jordan
ar-KW0x3401Arabic - Kuwait
ar-LB0x3001Arabic - Lebanon
ar-LY0x1001Arabic - Libya
ar-MA0x1801Arabic - Morocco
ar-OM0x2001Arabic - Oman
ar-QA0x4001Arabic - Qatar
ar-SA0x0401Arabic - Saudi Arabia
ar-SY0x2801Arabic - Syria
ar-TN0x1C01Arabic - Tunisia
ar-AE0x3801Arabic - United Arab Emirates
ar-YE0x2401Arabic - Yemen
hy0x002BArmenian
hy-AM0x042BArmenian - Armenia
az0x002CAzeri
az-AZ-Cyrl0x082CAzeri (Cyrillic) - Azerbaijan
az-AZ-Latn0x042CAzeri (Latin) - Azerbaijan
eu0x002DBasque
eu-ES0x042DBasque - Basque
be0x0023Belarusian
be-BY0x0423Belarusian - Belarus
bg0x0002Bulgarian
bg-BG0x0402Bulgarian - Bulgaria
ca0x0003Catalan
ca-ES0x0403Catalan - Catalan
zh-HK0x0C04Chinese - Hong Kong SAR
zh-MO0x1404Chinese - Macau SAR
zh-CN0x0804Chinese - China
zh-CHS0x0004Chinese (Simplified)
zh-SG0x1004Chinese - Singapore
zh-TW0x0404Chinese - Taiwan
zh-CHT0x7C04Chinese (Traditional)
hr0x001ACroatian
hr-HR0x041ACroatian - Croatia
cs0x0005Czech
cs-CZ0x0405Czech - Czech Republic
da0x0006Danish
da-DK0x0406Danish - Denmark
div0x0065Dhivehi
div-MV0x0465Dhivehi - Maldives
nl0x0013Dutch
nl-BE0x0813Dutch - Belgium
nl-NL0x0413Dutch - The Netherlands
en0x0009English
en-AU0x0C09English - Australia
en-BZ0x2809English - Belize
en-CA0x1009English - Canada
en-CB0x2409English - Caribbean
en-IE0x1809English - Ireland
en-JM0x2009English - Jamaica
en-NZ0x1409English - New Zealand
en-PH0x3409English - Philippines
en-ZA0x1C09English - South Africa
en-TT0x2C09English - Trinidad and Tobago
en-GB0x0809English - United Kingdom
en-US0x0409English - United States
en-ZW0x3009English - Zimbabwe
et0x0025Estonian
et-EE0x0425Estonian - Estonia
fo0x0038Faroese
fo-FO0x0438Faroese - Faroe Islands
fa0x0029Farsi
fa-IR0x0429Farsi - Iran
fi0x000BFinnish
fi-FI0x040BFinnish - Finland
fr0x000CFrench
fr-BE0x080CFrench - Belgium
fr-CA0x0C0CFrench - Canada
fr-FR0x040CFrench - France
fr-LU0x140CFrench - Luxembourg
fr-MC0x180CFrench - Monaco
fr-CH0x100CFrench - Switzerland
gl0x0056Galician
gl-ES0x0456Galician - Galician
ka0x0037Georgian
ka-GE0x0437Georgian - Georgia
de0x0007German
de-AT0x0C07German - Austria
de-DE0x0407German - Germany
de-LI0x1407German - Liechtenstein
de-LU0x1007German - Luxembourg
de-CH0x0807German - Switzerland
el0x0008Greek
el-GR0x0408Greek - Greece
gu0x0047Gujarati
gu-IN0x0447Gujarati - India
he0x000DHebrew
he-IL0x040DHebrew - Israel
hi0x0039Hindi
hi-IN0x0439Hindi - India
hu0x000EHungarian
hu-HU0x040EHungarian - Hungary
is0x000FIcelandic
is-IS0x040FIcelandic - Iceland
id0x0021Indonesian
id-ID0x0421Indonesian - Indonesia
it0x0010Italian
it-IT0x0410Italian - Italy
it-CH0x0810Italian - Switzerland
ja0x0011Japanese
ja-JP0x0411Japanese - Japan
kn0x004BKannada
kn-IN0x044BKannada - India
kk0x003FKazakh
kk-KZ0x043FKazakh - Kazakhstan
kok0x0057Konkani
kok-IN0x0457Konkani - India
ko0x0012Korean
ko-KR0x0412Korean - Korea
ky0x0040Kyrgyz
ky-KZ0x0440Kyrgyz - Kazakhstan
lv0x0026Latvian
lv-LV0x0426Latvian - Latvia
lt0x0027Lithuanian
lt-LT0x0427Lithuanian - Lithuania
mk0x002FMacedonian
mk-MK0x042FMacedonian - FYROM
ms0x003EMalay
ms-BN0x083EMalay - Brunei
ms-MY0x043EMalay - Malaysia
mr0x004EMarathi
mr-IN0x044EMarathi - India
mn0x0050Mongolian
mn-MN0x0450Mongolian - Mongolia
no0x0014Norwegian
nb-NO0x0414Norwegian (Bokmål) - Norway
nn-NO0x0814Norwegian (Nynorsk) - Norway
pl0x0015Polish
pl-PL0x0415Polish - Poland
pt0x0016Portuguese
pt-BR0x0416Portuguese - Brazil
pt-PT0x0816Portuguese - Portugal
pa0x0046Punjabi
pa-IN0x0446Punjabi - India
ro0x0018Romanian
ro-RO0x0418Romanian - Romania
ru0x0019Russian
ru-RU0x0419Russian - Russia
sa0x004FSanskrit
sa-IN0x044FSanskrit - India
sr-SP-Cyrl0x0C1ASerbian (Cyrillic) - Serbia
sr-SP-Latn0x081ASerbian (Latin) - Serbia
sk0x001BSlovak
sk-SK0x041BSlovak - Slovakia
sl0x0024Slovenian
sl-SI0x0424Slovenian - Slovenia
es0x000ASpanish
es-AR0x2C0ASpanish - Argentina
es-BO0x400ASpanish - Bolivia
es-CL0x340ASpanish - Chile
es-CO0x240ASpanish - Colombia
es-CR0x140ASpanish - Costa Rica
es-DO0x1C0ASpanish - Dominican Republic
es-EC0x300ASpanish - Ecuador
es-SV0x440ASpanish - El Salvador
es-GT0x100ASpanish - Guatemala
es-HN0x480ASpanish - Honduras
es-MX0x080ASpanish - Mexico
es-NI0x4C0ASpanish - Nicaragua
es-PA0x180ASpanish - Panama
es-PY0x3C0ASpanish - Paraguay
es-PE0x280ASpanish - Peru
es-PR0x500ASpanish - Puerto Rico
es-ES0x0C0ASpanish - Spain
es-UY0x380ASpanish - Uruguay
es-VE0x200ASpanish - Venezuela
sw0x0041Swahili
sw-KE0x0441Swahili - Kenya
sv0x001DSwedish
sv-FI0x081DSwedish - Finland
sv-SE0x041DSwedish - Sweden
syr0x005ASyriac
syr-SY0x045ASyriac - Syria
ta0x0049Tamil
ta-IN0x0449Tamil - India
tt0x0044Tatar
tt-RU0x0444Tatar - Russia
te0x004ATelugu
te-IN0x044ATelugu - India
th0x001EThai
th-TH0x041EThai - Thailand
tr0x001FTurkish
tr-TR0x041FTurkish - Turkey
uk0x0022Ukrainian
uk-UA0x0422Ukrainian - Ukraine
ur0x0020Urdu
ur-PK0x0420Urdu - Pakistan
uz0x0043Uzbek
uz-UZ-Cyrl0x0843Uzbek (Cyrillic) - Uzbekistan
uz-UZ-Latn0x0443Uzbek (Latin) - Uzbekistan
vi0x002AVietnamese
vi-VN0x042AVietnamese - Vietnam
+
+
+ + + Gets the default null date + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + When ShowCheckBox is true, determines that the user has selected a value + + + + + Gets or sets the custom date/time format string. + + + + + Gets or sets the format of the date and time displayed in the control. + + + + + Gets or sets the location of the drop down showing the calendar + + + + + Gets or sets the size of the calendar in the drop down + + + + + Indicates whether a check box is displayed in the control. When the check box is unchecked no value is selected + + + + + Gets or sets whether the current time is shown. + + + + + Set ot get which part of the datetime structure will be included when checking for NullValue. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the text that is displayed when the DateTimePicker contains a null + reference. + + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Gets the minimum date value allowed for the DateTimePicker control. + + + + + Gets or sets the minimum date and time that can be selected in the control. + + + + + Gets or sets the maximum date and time that can be selected in the control. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the value of the control has changed + + + + + Occurs when the value of the control has changed + + + + + Occurs when the format of the control has changed + + + + + Occurs when the value of the control is changing + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Occurs before the CheckBox's state changes. + + + + + Occurs when the CheckBox's state changes. + + + + + Occurs when the value of the checkbox in the editor is changed + + + + + Get nested RadCalendar in the popup part of the RadDateTimePicker + + + + + + Show or Hide the nested TimePicker element in the popup part of the RadDateTimePicker + + + + + + Represents a DropDownList editor. + + + + + Initializes a new instance of the RadDropDownListEditor class. + + + + + Gets or sets a value specifying the style of the DropDownList. + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, veritcal or a combination of them. + + + + + Represents a DropDownList editor element. + + + + + Represents a numeric up/down editor. + + + + + Gets or sets the minimum value that could be set in the editor. + + + + + Gets or sets the maximum value that could be set in the editor. + + + + + Gets or sets the value which is added to/subtracted from the current value of the editor. + + + + + Gets or sets the number of decimal places to display in the editor. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the editor. + + + + + Gets or sets the type of the value to use in the editor. + + + + + Represents a numeric up/down editor element. + + + + + Represents a numeric up/down element. The RadSpinEditor + class is a simple wrapper for the numeric up/down element class. The + RadSpinEdit acts to transfer events to and from its + corresponding numeric up/down element instance. The numeric up/down element which is + essentially the numeric up/down element control may be nested in + other telerik controls. + + + + + create child elements + + + + + Creates the button element for the increment button. + + A to be placed in the . + + + + Creates the button element for the decrement button. + + A to be placed in the . + + + + increase or decrease value in the numeric up/dowm with step value + + + + + + This method is used internally! + + the new flag state. + + + + This method is used internally! + + the new flag state. + + + + Gets or Sets represent the Value in the numeric up/down - this value can be NULL + + + + + Gets or set how to interpret the empty text in the editor portion of the control + if true the empty value will set NULL in NullableValue property + + + + + Gets reference to the SpinControl's Down Button + + + + + Gets reference to the SpinControl's Up Button + + + + + Gets or sets the number of decimal places to display in the RadSpinEdit + + + + + represent the default value in the numeric up/down + + + + + Gets or sets a value indicating whether the RadSpinEdit should display the value it contains in hexadecimal format. + + + + + Gets or sets a value indicating whether the user can use the UP ARROW and DOWN ARROW keys to select values. + + + + + Gets or sets a value indicating whether the text can be changed by the use of the up or down buttons only. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the RadSpinEdit + + + + + Gets contained in the spin editor. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + allow element to be stretched bertically + + + + + represent the decimal in the numeric up/down + + + + + Gets or sets the value which is added to/subtracted from the current value of the spin editor. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + Gets or sets whether RadSpinEditor will be used as a numeric textbox. + + + + + Gets or sets whether by right-mouse clicking the up/down button you set the max/min value respectively. + + + + + set or get the Max numeric value in the numeric up/dowm + + + + + Gets or sets a value indicating whether the border is shown. + + + + + Gets or sets a value indicating that value will revert to minimum value after reaching maximum and to maximum after reaching minimum. + + + + + Gets or sets a value indicating whether the user can change the value with mouse wheel. + + + true if [enable mouse wheel]; otherwise, false. + + + + + Occurs before the value of the SpinEdit is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Occurs when the user presses a key. + + + + + Initializes a new instance of the GridSpinEditorElement class. + + + + + Represents a text editor. + + + + + Gets or sets the null text for the editor. + + + + + Indicates if all charactes should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Represents a text editor. + + + + + Initializes a new instance of the RadTextBoxEditor class. + + + + + Gets or sets the null value for the editor. + + + + + Indicates if all charactes should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Represents a text box editor element. + + + + + Represents a text box element. The RadTextBox + class is a simple wrapper for the RadTextBoxElement class. All UI and logic + functionality is implemented in the RadTextBoxElement class. + RadTextBox class acts to transfer events to and from + its corresponding RadTextBoxElement instance. The RadTextBoxElement may be nested + in other telerik controls. + + + + Initializes a new instance of the RadTextBoxElement class. + + + + Initializes a new instance of RadTextBoxElemenet + + + + + + Raises the MultilineChanged event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextChanging event. + + + + + Raises the TextChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Raises the ModifiedChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the AcceptsTabChanged event. + + + + + Gets an instance of the corresponding RadTextBoxItem + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + Gets or sets a value indicating whether the border is shown. + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Occurs when the value of the AcceptsTab property has changed. + + + + + Occurs when the value of the HideSelection property changes. + + + + + Occurs when the value of the Modified property has changed. + + + + + Occurs when the value of the Multiline property has changed. + + + + + Occurs when the ReadOnly property changes. + + + + + Occurs when the value of the TextAlign property has changed. + + + + + Occurs + when text is being changed. + + + + + Occurs + when text has changed. + + + + + Represents a TimePicker editor. + + + + + This class manages all opened popups per UI thread. + + + + + Adds a popup form to the popups of the PopupManager and + registers a message hook if the form provided is the first one. + + The popup to add. + + + + Removes the provided popup from the popups of the PopupManager and unregisters the message hook + if there are no more popups. + + The popup to remove. + + + + Attempts to close an implementation. + + The popup to close. + + + + Closes all popups managed by the PopupManager. + + Clarification why all popups need to be closed. + + + + Closes all popups from a leaf to the root. + + The reason why popups are closed. + The leaf popup from which to start closing the hierarchy. + + + + Checks if the PopupManager monitors the provided popup. + + The popup to check for. + + + + + This method begins to close all IPopupControl instances + starting from the end of the collection. If a IPopupControl + cannot be closed, the iteration stops and all popups previously added + to the collection will not be closed. + + + + + Gets the count of the IPopupControl instances + currently registered in the PopupManager. + + + + + The popup which was last activated. + + + + + Gets the only instance of the PopupManager class. Other instances can not be created. + + + + + Represents a calculator editor element used in calculator editors. + + + + + Encapsulates the UI representation and functionality of RadCalculatorDropDown. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + + + + Gets or sets the calculator value. + + + + + Gets or sets the editor content element. + + + + + Gets or sets the arrow button. + + + + + Gets or sets the popup. + + + + + Gets the content element. + + + + + Gets the memory element. + + + + + Gets or sets the default popup width. + + + + + Gets or sets the default popup height. + + + + + Gets or sets the minimum popup width. + + + + + Gets or sets the minimum popup height. + + + + + Gets RadCalculatorElement FillPrimitive + + + + + Gets the RadCalculatorElement BorderPrimitive + + + + + Gets or sets a value indicating whether RadCalculatorDropDownElement is read only. + + + true if RadCalculatorDropDownElement is read only; otherwise, false. + + + + + Fires when the value of the calculator is changing. + + + + + Fires when the value of the calculator is changing. + + + + + Fires after the color dialog is closed. + + The event arguments. + + + + Fires right after the editor value is changed. + + The event arguments. + + + + Fires right before the editor value is changed. + + The event arguments. + + + + Fires when the is clicked. + + The event arguments. + + + + Gets the value of the editor. + + + + + Gets the that shows the color in the editor. + + + + + Gets or set the that is displayed when the button is clicked. + + + + + Gets the that opens the . + + + + + Gets or sets a value indicating if the user is allowed to type in the text field. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Occurs after the editor has changed the value during the editing process. + + + + + Occurs when the dialog window is closed. + + + + + Represents a date time editor element used in date time editors. + + + + + Represents a class that handles append auto-complete mode in + + + + + Owner Property + + + + + LimitToList Property + + + + + Initializes a new instance of the class. + + The element. + + + + Sets the editable element text. + + Index of the item. + + + + Represents a DropDownList element used in drop down list editors. + + + + + Constructor + + There is no mask applied by default + + + + handles the key press + + + + + + Fires the ValueChanged event + + + + + + Fires the ValueChanging event + + + + + + Determines whether to add minus sign to the value. + + + + + + + Format the specified text using the specified mask + + The mask to use + The text to format + The formatted text string + There are four overloads for this method. + + + + Format the specified text using the specified mask and prompt + character. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The formatted text string. + + + + Format the specified text using the specified mask, prompt + character, and culture information. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The culture information to use. If null, + the current culture is used. + The formatted text string. + + + + Format the specified text using the specified mask, prompt + character, and culture information and return the result + values. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The culture information to use. If null, + the current culture is used. + The result of formatting the text. + The position related to the result + hint. + The formatted text string. + + + + Gets the text which is in the clipboard + + + + + + This is used to set or get the label text. + + When set, the text is formatted according to the current + masked text provider settings. If the mask is empty, the text is + set as-is. When retrieved, the text is returned in its formatted + state. Use to get the text without + the mask applied. + + + + Represent the RadMaskedEditBox ContextMenu + + + + Gets or sets a value that determines whether literals and prompt characters + are included in the formatted string. + One of the values. The + default is . + Property + set with a value that is not + valid. + + + + This returns a clone of the masked text provider currently being + used by the masked label control. + + + + + This returns the result hint for the last assignment to the + property. + + If the assigned text could not be properly formatted, + this will contain a hint as to why not. Positive values + indicate success. Negative values indicate failure. + + + + This returns the result hint position for the last assignment to + the property. + + If the assigned text could not be properly formatted, + this will contain the position of the first failure. + + + + This read-only property returns the unmasked copy of the text + + + + + This is used to set or get the culture information associated with + the masked label. + + This is thrown if the + culture value is null + + + + This is used to set or get the mask for the label text + + + + + This is used to set or get the prompt character for display + in the label text. + + The default is an underscore (_). + + + + This is used to set or get whether or not prompt characters are + also displayed in the label text. + + By default, prompt characters are not shown. + + + + Gets or sets the mask type. + + + + + Gets or sets the edited value + + + + + Gets or set a value indicating whether end users can set the value to NULL. + This can be achieved by pressing Ctrl + Del or Ctrl + 0 key combinations. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + Gets or sets the mask type. + + + + + Represents a numeric up/down element used by spin editors.. + + + + + Initializes a new instance of the RadSpinEditorElement class. + + + + + Represents a textbox editor element used in RadTextBoxEditor + + + + + Represent a continuous band in Linear Gauge + + + + Gets or sets a value indicating element visibility. + + Setting this property affects also the children of the element. Collapsed means the element and its children would not be painted and would not be + calculated in the layout. + This property has no effect in design-time on objects. + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + The RadLinearGauge control is designed to display a a single quantitative measure. + + + + + The RadLinearGauge control is designed to display a simple value within a definite range. + + + + XmlWriter to use by the built-in serializer + + + + Stores to a stream RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores to a file RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML reader, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + The ValueChanged event fires when the value is modified. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Specifies the gauge's value + + + + + Set or Get Gauge Orientation + + + + + Gets the serialization info for RadRadialGauge used by Save/Load loyout methods to persist grid settings to/from XML. + By default, or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + This portion of the bullet graph displays the primary data. + + + + + Presents a value which should be less visually dominant than the featured measure, but easy to see in relation to the featured measure. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Represents the scale labels. + + + + + Specifies the font size. Default value is 8. + + + + + Specifies the start value from which the labels are displayed. + + + + + Specifies the end value to which the labels are displayed. + + + + + Controls how far according to the gauge's arc the labels are rendered + + + + + Specifies the format of the label's value. + + + + + Controls how many labels will be displayed next ticks for the specified range. + + + + + Represent a continuous band in Linear Gauge + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + Present additional information for the RadLinearGauge. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Controls whether the specific ticks are circle or not. + + + + + Specifies the value offset of the needle according to the gauge's value. + + + + + Indicates whether the needle's value is bound to the gauge's Value. + + + + + Specifies the inner radius of the needle's start point. + + + + + Specifies the value with which the needle juts out from the center point. + + + + + Specifies the outer radius of the needle's start point. + + + + + Controls the needle width. + + + + + Specifies the needle's value. + + + + + Controls how long the needle will be rendered. + + + + + Present additional information for the RadLinearGauge, e.g. current value + + + + + Indicates whether the single label's text is bound to the gauge's Value. + + + + + Controls the label's location (x, y) according to the center point. LocationPercentage accepts values withing the range [(-1,-1), (1,1)]. + + + + + Specifies the label size. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Represents the scale ticks. + + + + + Specifies at which index the visible ticks range will start. + + + + + Specifies at which index the visible ticks range will end. + + + + + Controls how far according to the gauge's arc the ticks will be rendered. + + + + + Specifies the width of ticks. + + + + + Specifies the color for the ticks + + + + + Specifies the ticks back length towards the center point. + + + + + Controls the ticks length. + + + + + Specifies how many ticks will be displayed. + + + + + Represent main needle element. This element is container for all other elements in the Gauge + + + + + The ValueChanged event fires when the value is modified. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Specifies the gauge's value + + + + + Set or Get Gauge Orientation + + + + + Represent a continuous band spanning the entire sweep angle. + + + + + Controls the radius of the arc. + + + + + The width of the arc. + + + + + The start of the arc. + + + + + The end value of the arc. + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents the scale labels displayed next to the ticks. + + + + + Specifies the font size. Default value is 8. + + + + + Specifies the start value from which the labels are displayed. + + + + + Specifies the end value to which the labels are displayed. + + + + + Controls how far according to the gauge's arc the labels are rendered + + + + + Specifies the format of the label's value. + + + + + Controls how many labels will be displayed next ticks for the specified range. + + + + + Represent a scale indicator that points to a value. + + + + + Specifies the value offset of the needle according to the gauge's value. + + + + + Indicates whether the needle's value is bound to the gauge's Value. + + + + + Specifies the inner radius of the needle's start point. + + + + + Specifies the value with which the needle juts out from the center point. + + + + + Specifies the outer radius of the needle's start point. + + + + + Controls the needle width. + + + + + Specifies the needle's value. + + + + + Controls how long the needle will be rendered. + + + + + Present additional information for the RadRadialGauge, e.g. current value + + + + + Indicates whether the single label's text is bound to the gauge's Value. + + + + + Controls the label's location (x, y) according to the center point. LocationPercentage accepts values withing the range [(-1,-1), (1,1)]. + + + + + Specifies the label size. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Represents the scale ticks. + + + + + Specifies at which index the visible ticks range will start. + + + + + Specifies at which index the visible ticks range will end. + + + + + Controls how far according to the gauge's arc the ticks will be rendered. + + + + + Controls whether the specific ticks are circle or not. + + + + + Specifies the width of ticks. + + + + + Specifies the color for the ticks + + + + + Specifies the ticks back length towards the center point. + + + + + Controls the ticks length. + + + + + Specifies how many ticks will be displayed. + + + + + The RadRadialGauge control is designed to display a value within a definite range + + + + XmlWriter to use by the built-in serializer + + + + Stores to a stream RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores to a file RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML reader, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + The ValueChanged event fires when the value is modified. + + + + + Controls the RadRadialGauge's offset in vertical direction. + + + + + Controls the RadRadialGauge's offset in horizontal direction. + + + + + Specifies the gauge's value + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Gets the serialization info for RadRadialGauge used by Save/Load loyout methods to persist grid settings to/from XML. + By default, or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Represent main needle element. This element is container for all other elements in the Gauge + + + + + The ValueChanged event fires when the value is modified. + + + + + Specifies the gauge's value + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Controls the RadRadialGauge's offset in vertical direction. + + + + + Controls the RadRadialGauge's offset in horizontal direction. + + + + + This class represents the custom editor + shown when the FadeAnimationType of the popup + is adjusted in the Visual Studio Designer. + + + + + Creates an instance of the FadeAnimationTypeEditorUI class. + This class represents the control used to set the + FadeAnimationType property while in the Visual Studio + Designer. + + The inital value of the property. + + + + Gets the result of the editor execution. + + + + + This class stores information about a close request sent to an . + The class stores the reason for the close request, information about the operation result, + and an instance to a context. + + + + + Creates an instance of the class. + The default value of the Closed property is true. + + A value from the enum + that determines the reason for the close request. + A request context. + + + + Defines whether the request is executed or not. + + + + + The reason for the close request. + + + + + The context associated with this the close request. + + + + + This class represents a base class for popup controls + used by editors like ComboBox, MultiColumnComboBox etc. + + + + + This class represents a pop-up form that exposes sizing-grip and + thus can be resized by the user. + + + + + Creates an instance of the RadSizablePopupControl class. + + The owner of the popup-form + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets the element that represents the sizing grip + of the popup. + + + + + Gets the DockLayoutPanel that holds the sizing grips. + + + + + Creates an instance of the RadEditorPopupControlBase class. + This class is used in all popup-powered controls. + + An instance of the RadItem class that + represents the owner of the popup. + + + + Gets or sets the header text of the drop-down menu. + + + + + Gets or sets the header image of the drop-down menu. + + + + + Gets an instance of the + class that represents layout panel that provides scrolling functionality. + + + + + Gets or sets the left column minimal width. + + + + + Gets or sets the right column minimal width. + + + + + This class represents the Telerik's Form control. + You can create RadForm controls by inheriting from this class. + + + + + Represents a RadFormControl. RadFormControlBase is an abstract class and is base class for + all telerik windows forms. + + + + + Determines whether the control and all its child elements should use the new layout system. + + + + + + Loads the element tree. While not loaded, no layout operations are allowed upon the tree. + By default, the tree will be loaded when the control is displayed for the first time. + + + + + Loads the element tree using the specified desired size. + + + + + + Notifies that the control is about to be visualized. + + + + + + In this override we reset the RootElement's BackColor property + since the DocumentDesigner class sets the BackColor of the + Form to Control when initializing and thus overrides the theme. + + + + + + Calls the base OnPaint implementation. This method + can be used by the form behavior to call the base + implementation in case it is needed. + + + + + Calls the base OnPaintBackground implementation. This method + can be used by the form behavior to call the base + implementation in case it is needed. + + + + + Processes a dialog box key. + + true if the keystroke was processed and consumed by the control; otherwise, false to allow further processing. + + + One of the values that represents the key to process. + + + + Updates which button is the default button. + + + + Determines whether the BackColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the specified RadProperty should be serialized. + + + + + + + Called to initialize the behavior of the form. + + + + + + Resets the behavior associated with the Form. This method is used internally. + + Determines whether the InitializeFormBehavior method + will be called after the p + + + + Processes a focus request from the specified element. + + The element that requested the focus. + True if focus is approved, false otherwise. + + + + Processes a capture request from the specified element. + + The element which requested the capture. + + True if the capture request is approved, otherwise false. + + + + Gets a value indicating if control themes by default define PropertySettings for the specified element. + If true is returned the ThemeResolutionService would not not set any theme to the element to avoid duplicatingthe style + settings of the element. + + + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disbaled for this control. + + + + + Gets a boolean value which determines + whether the control is loaded. + + + + + Gets or sets the FormBorderStyle of the Form. + + + + + Gets the behavior associated with this form if any. + + + + + Gets or sets a boolean value indicating whether the Form + customizes its NC area when under Vista with Composition enabled. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this speciffic control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + Gets or sets the Font of the control. This is actually the Font property of the root element. + + + + + Occurs when a RadItem instance iside the RadControl requires ToolTip text. + + + + + Occurs prior the ScreenTip of a RadItem instance inside the RadControl is displayed. + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Prevent the Form from getting the mouse capture when the capture is requested + by one of the system buttons. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + The text associated with this control. + + + + + Gets the RadFormElement instance that represents + the element hierarchy which builds the RadForm appearance. + + + + + Gets or sets the scaling mode of the form's icon. + + + + + Gets or sets a boolean value indicating whether the Form + customizes its NC area when under Vista with Composition enabled. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Enable or Disable the selection of the next or prev. part of the date with arrow keys + + + + + Gets or sets the date and time format used by + RadDateInput. + + + A string specifying the date format used by RadDateInput. The + default value is "d" (short date format). + + + + private void Page_Load(object sender, System.EventArgs e) + { + RadDateInput1.DateFormat = "M/d/yyyy"; //Short date pattern. The same as "d". + } + + + Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load + RadDateInput1.DateFormat = "M/d/yyyy" 'Short date pattern. The same as "d". + End Sub + + + + + + Gets or sets a value that indicates the end of the century that is used to interpret + the year value when a short year (single-digit or two-digit year) is entered in the input. + + + The year when the century ends. Default is 2029. + + + Having a value of 2029 indicates that a short year will be interpreted as a year between 1930 and 2029. + For example 55 will be interpreted as 1955 but 12 -- as 2012 + + + + + Gets a value that indicates the start of the century that is used to interpret + the year value when a short year (single-digit or two-digit year) is entered in the input. + + + The year when the century starts. Default is 2029. + + + Having a value of 2029 indicates that a short year will be interpreted as a year between 1930 and 2029. + For example 55 will be interpreted as 1955 but 12 -- as 2012 + + + + + Removes the assigned characters between the specified positions from the formatted + string. + + true if the character was successfully removed; otherwise, false. + + + The zero-based index of the first assigned character to remove. + + + The zero-based index of the last assigned character to remove. + + + + + Initializes a new instance of the NumericTextBoxProvider> + class using the specified mask and culture. + + + A that represents the input mask. + + + A that is used to set region-sensitive + separator characters. + + + + + + . + Replaces all ocurances of given parameters with string.Empty. + + + + + Gets the culture that determines the value of the localizable separators and + placeholders in the input mask. + + + A containing the culture information + associated with the input mask. + + + + + Gets the input mask. + + + A containing the full mask. + + + + + Raises the event. + + + An that contains event data. + + + + + Gets or sets the text insertion mode of the masked text box control. + + + An value that indicates the current insertion mode. The default is . + + + An invalid value was supplied when setting this property. + + + + + Occurs after the insert mode has changed. + + + + + Gets a value that specifies whether new user input overwrites existing input. + + true if will overwrite existing characters as the user enters new ones; false if will shift existing characters forward. The default is false. + + 1 + + + + Uses a mask to distinguish between proper and improper user input + + + + + Clears all text from the text box control and Value. + + + + + Clears information about the most recent operation from the undo buffer of the + text box. + + + + + selects the whole text + + + + + Fires the ValueChanging event + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the character used as the placeholder in a masked editor. + + + + + Gets or sets a mask expression. + + + + + Gets or sets the mask type. + + + + + Gets or sets the value associated to the mask edit box + + + + Gets or sets a value that determines whether literals and prompt characters + are included in the formatted string. + One of the values. The + default is . + Property + set with a value that is not + valid. + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + Gets or sets the horizontal alignment of the text. + + + + + Gets or sets + a value indicating whether the defined shortcuts are enabled. + + + + + Gets or sets + the starting point of text selected in the text box. + + + + + Gets or sets a value indicating whether the RadTextBox control has been modified + by the user since the control was created or since its contents were last set. + + + + + Gets or sets + a value indicating whether this is a multiline TextBox control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Gets or sets + a value indicating whether the contents of the TextBox control can be + changed. + + + + + Gets or sets + which scroll bars should appear in a multiline TextBox control. + + + + + Gets or sets a value indicating the currently selected text in the + control. + + + + + Gets or sets + the number of characters selected in the text box. + + + + + Gets or sets a value indicating whether the selected text remains highlighted + even when the RadTextBox has lost the focus. + + + + + Gets or sets + the lines of text in multiline configurations. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline RadTextBox + control creates a new line of text in the control or activates the default button for + the form. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text + box control types a TAB character in the control instead of moving the focus to the + next control in the tab order. + + + + + Gets or sets a value indicating whether the RadTextBox control modifies the + case of characters as they are typed. + + + + + Gets or sets the current culture associated to the RadMaskBox + + + + + Gets or set a value indicating whether end users can set the value to NULL. + This can be achieved by pressing Ctrl + Del or Ctrl + 0 key combinations. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + Occurs when the RadItem has focus and the user pressees a key down + + + + + Occurs when the RadItem has focus and the user pressees a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Represents an application drop down menu in Office 2007 style. + + + + + + Represents a drop down button. Essentially the RadDropDownButton class is a + simple wrapper for + RadDropDownButtonElement. + + You can set items that appear when the drop down button is pressed. Also you + can configure the visual appearance in numerous ways through themes. + + The RadDropDownButtonElement class + implements all UI and logic functionality. The RadDropDownButton acts to + transfer the events to and from its + RadDropDownButtonElementinstance. + + + + + Initializes a new instance of the RadDropDownButton class. + + + + Override this method to create custom main element. By default the main element is an instance of + RadDropDownButtonElement. + + Instance of the one-and-only child of the root element of RadDropDownButton. + + + + + + + + + + + + + + + + + + Gets or sets the text value that is displayed on the button. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the instance of RadDropDownButtonElement wrapped by this control. RadDropDownButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDropDownButton. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets a collection representing the right column items of RadApplicationMenu. + + + + + Gets a collection representing the button items of RadApplicationMenu. + + + + + Gets or sets the right column width + + + + + Gets or sets the whether RadApplicationMenu will have TwoColumnDropDownMenu. + + + + + Represents a rad dropdown button element. The + RadDropDownButton control is a simple wrapper + for the RadDropDownButtonElement. All UI and logic functionality is implemented in + RadDropDownButtonElement class. The + RadDropDownButton acts to transfer events to + and from its RadDropDownButtonElement instance. RadDropDownButtonElement can be + nested in other telerik controls. + + + + Initializes a new instance of the DropDownButtonElement class. + + + Determines whether the event is passed up in the control hierarchy. + + + + Shows the drop down menu at given location + + The upper left corner of the drop down in screen coordinates + + + Shows the drop down menu. + + + Hides the drop down menu. + + + + Raises the DropDownOpening event. + + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosed event. + + + + + Fires when the drop-down of the button is about to close. + + An instance of the + class that contains information about the event. + + + + Gets the drop down menu + + + + + Gets the arrow button + + + + + Gets the action button + + + + + Gets or sets the minimum size of the arrow button + + + + + Gets or sets a value indicating the position where the arrow button appears in drop-down button. + + + + + Gets or sets a value indicating the direction in which the dropdown item emerges from its parent container. + + + + + Gets or sets the expand arrow button + + + + + Gets a value indicating whether the drop down is shown + + + + + Gets the Items collection where you can add and remove items from the + DropDownButton. + + + + + Indicates whether the DropDown of the button should have two columns or one column. + + + + + Gets or sets a value indicating whether an arrow button is displayed on the drop-down buuton. + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Specifies the logical combination of image and text primitives in the element. + + + + + Gets a value indicating whether the button item is in the pressed state. + + + + + Gets the border element + + + + + Occurs when the drop-down is opening. + + + + + Occurs when the drop-down has opened. + + + + + Occurs when the drop-down window has closed. + + + + + Occurs when the drop-down window is about to close. + + + + + Gets or sets value indicating whether DropDownMenu will have the same class name as the owner control or its own. + True means that the same class name will be used as the control that opened the dropdown. + + + + + Gets or sets the whether RadApplicationMenu will have TwoColumnDropDownMenu. + + + + + Represents an application drop down menu in Office 2007 style. + + + + + Gets or sets the right column width + + + + + Gets a collection representing the right column items of RadApplicationMenu. + + + + + Gets a collection representing the button items of RadApplicationMenu. + + + + + Represents a context menu + + + + + Displays the context menu in its default position. + + + + + Displays the context menu relative to the specified screen location. + + The horizontal screen coordinate, in pixels. + The vertical screen coordinate, in pixels. + + + + Displays the context menu relative to the specified screen location. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified screen location and with the specified direction. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the context menu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified control location and with the specified direction. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the context menu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified RadItem location and with the specified direction. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified RadItem location and + with specified direction and offset according to the owner. + + The RadItem that is the reference point for the RadDropDownMenu position. + Specifies the offset from the owner in pixels. + One of the RadDirection values. + + + + Raises the DropDownOpening event. + + The event arguments + + + + Raises the DropDownClosing event. + + The event arguments + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosed event. + + + + + Occurs when the drop down is opening. + + + + + Occurs when the drop down is closing. + + + + + Occurs when the drop down is opened. + + + + + Occurs when the drop down is closed. + + + + + Gets menu items collection + + + + + Gets or sets control's preferred theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Gets menu drop down panel + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disabled for this control. + + + + + This class represents the drop-down menu + used in the + component. + + + + + Represents a base class for the RadMenuItem class. + + + + + Initializes a new instance of the RadMenuItemBase class. + + + + + Calls the ShowPopup method and displays the child items in a popup window. + + + + + Closes the RadMenuItemBase popup. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An instance of the class + that contains information about the event. + + + + Raises the event. + + An that contains the event data. + + + + Occurs after the menu item dropdown opens. + + + + + Occurs before the menu item dropdown opens. + + + + + Occurs after the menu item dropdown closes. + + + + + Occurs before the popup is creating. + + + + + Occurs before the popup is closed. + + + + + Gets a value indiciating that the popup containing this menu item's children is shown. + + + + + Gets or sets the direction of the popup which is opened by this menu item. + + + + + Gets a collection of the child items. + + + + + Gets or sets menu header column text + + + + + Gets or sets menu header column image + + + + + Returns the control that owns this item. This can be a RadMenu or RadDropDownMenu. + + + + + Gets a values indicating whether this item has child items to show. + + + + + Gets the drop down menu associated with this menu item + + + + + Gets a value indicating whether this item has child items. + + + + + Gets a value indicating whether this item is in the root items collection. + + + + + Gets or sets the parent menu item. + + + + + Gets the next child item in the parent item's Items collection. + + + + + Gets the previous child item in the parent item's Items collection. + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Provides a reference to the ButtonElement element in the menu item. + + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets the ImagePrimitive of this RadMenuHeaderItem. + + + + + Gets the FillPrimitive of this RadMenuHeaderItem. + + + + + Gets the BorderPrimitive of this RadMenuHeaderItem. + + + + + Gets the TextPrimitive of this RadMenuHeaderItem. + + + + + Represents a menu item which has a combobox placed inside. + + + + + Provides a reference to the hosted control in the menu item. + + + + + Creates an instance of the RadMenuItemPopup class. + This class represents the popup which is used to display menu + items in the RadMenu control. + + An instance of the RadItem class which represents the + owner of the popup. + + + + Defines the animation type used in popups + + + + + No animation is applied. + + + + + The control fades in upon showing. + + + + + The control uses easing animation. + + + + + Both easing and fade animation will be applied. + + + + + Defines the type of fade animation. + + + + + No fade animation is applied. + + + + + The control fades in upon showing. + + + + + The control fades out upon closing. + + + + + Defines the horizontal alignment of the popup + based on the alignment rectangle passed + in the ShowPopup method. + + + + + The left edge of the popup is aligned to the left edge of the alignment rectangle. + + + + + The left edge of the popup is aligned to the right edge of the alignment rectangle. + + + + + The right edge of the popup is aligned to the left edge of the alignment rectangle. + + + + + The right edge of the popup is aligned to the right edge of the alignment rectangle. + + + + + Defines the vertical alignment of the popup + based on the alignment rectangle passed + in the ShowPopup method. + + + + + The top edge of the popup is aligned to the top edge of the alignment rectangle. + + + + + The top edge of the popup is aligned to the bottom edge of the alignment rectangle. + + + + + The bottom edge of the popup is aligned to the top edge of the alignment rectangle. + + + + + The bottom edge of the popup is aligned to the bottom edge of the alignment rectangle. + + + + + Defines the popup alignment correction mode. + The values of this enumerator define how the popup alignment + is adjusted when the default aligning routine is not able + to properly position the popup due to lack of screen space. + + + + + No adjustments to the coordinates are applied. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen, whereby + the popup edge is aligned with an edge of the alignment rectangle. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen, whereby + the popup edge is aligned with an outer edge of the alignment rectangle. + The popup does not cross the alignment rectangle bounds. + + + + + This enum defines how the size of a is + fitted to the screen bounds. + + + + + The size of the popup is not fit to the bounds of the screen. + + + + + The width of the popup is fit to the available space on the screen. + + + + + The height of the popup is fit to the available space on the screen. + + + + + This eunm defines the possible screen space usage modes. + + + + + The whole screen is used when positioning the popup. + + + + + The working area of the screen is used when positioning the popup. + + + + + An enum that defines the possible overlap modes which are + used to position the popup when its location cannot be adjusted so + that it meets all alignment and alignment correction requirements. + + + + + The popup's bounds can overlap with the alignment rectangle. + + + + + The popup will be snapped to the first possible outer edge of the alignment rectangle so that it does not overlap it. + The order of the considered edges depends on the popup alignment settings. + + + + + The RadScrollablePanel control can be used as a container for different UI elements. + This control is powered by the Telerik Presentation Framework and supports + gradient backgrounds, shapes and theming. This control supports also theming + of the scrollbars. + + + + + This method inserts the scrollbars and the container + in the Controls collection of this control. + + + + + Calculates the non-client margin of the control + based on the radius of the round rect shape. + + An instance of the struct + which represents the left, top, right and bottom margin. + + + + This method initializes the scrollbars and the + container control. + + + + + Resizes the panel to fit its contents. + + + + + Gets or sets a value indicating whether the focused control inside the RadScrollablePanel + will be automatically scrolled into view when gaining focus. + + + + + Gets or sets the state of the vertical scroll bar which indicates + whether it will be always visible(), + always hidden() + or determined by the content() - default + + + + + Gets or sets the state of the horizontal scroll bar which indicates + whether it will be always visible(), + always hidden() + or determined by the content() - default + + + + + Gets the current client area margin + of the control. + + + + Gets the default size of the control. + The default System.Drawing.Size of the control. + The default Size of the control. + + + + Gets an instance of the + class which represents the main element of the control. + + + + + Gets the container panel that holds + all the components added to the panel. + + + + + Gets the vertical scrollbar of the control. + + + + + Gets the horizontal scrollbar of the control. + + + + + This property is not relevant for this class. + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + /// + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + + + + + + + + + + + + + + + + + + + + + ArrowButton Property + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + Represents an interface for printable objects. + + + + + Called when the printing begins. + + The that has initiated the printing. + The event args. + The number of pages. + + + + Called when the printing ends. + + The that has initiated the printing. + The event args. + [false] if cancel + + + + Prints the page with the specified number. + + The number of the current page. + The that has initiated the printing. + The event args. + [true] if there are more pages, [false] otherwise + + + + Gets a print settings dialog that is specific for the printable object. + + The that has initiated the printing. + The dialog. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the associated with the event. + + + + + Gets the graphics object which is used for painting. + + + + + Gets the bounds in which the element is being painted. + + + + + Represents an UI dialog for editing print settings. + + + + + Loads the settings when the dialog is shown. + + + + + Saves all settings from the dialog into the . + + + + + Creates the specific control for editing the settings of the printed control. + + The that will be displayed on the first page of this dialog + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the page view control of the dialog. + + The page view. + + + + Gets the shown in this dialog. + + + + + If [true] a Preview button is shown, otherwise an OK button is shown. + + + + + Defines a reusable object that sends output to a printer and manages the whole printing process, + when printing from an application. Can be associated with any object that implements the interface. + + + + + Prints the header part of the page. + + The printing arguments. + + + + Prints the footer part of the page. + + The printing arguments. + + + + Prints the watermark of the page. + + The printing arguments. + + + + Called when the associated printable object has changed. + + + + + Parses a given string for special words. + + The string. + The parsed string. + + + + Gets or sets the currently selected page. This page will be the first to be printed when the PrintRange + is set to Current or Selection. + + + + + Gets or sets the count of the selected pages. This indicates how many pages will be printed when the PrintRange + is set to Selection. + + + + + Gets or sets the font of the page header. + + + + + Gets or sets the font of the page footer. + + + + + [true] if the LeftHeader and RightHeader should be reversed on even pages, [false] otherwise. + + + + + [true] if the LeftFooter and RightFooter should be reversed on even pages, [false] otherwise. + + + + + Gets or sets the text that will be printed near the upper left corner of the page. + + + + + Gets or sets the text that will be printed near the upper right corner of the page. + + + + + Gets or sets the text that will be printed at the top center of the page. + + + + + Gets or sets the text that will be printed near the bottom left corner of the page. + + + + + Gets or sets the text that will be printed near the bottom right corner of the page. + + + + + Gets or sets the text that will be printed at the bottom center of the page. + + + + + Gets or sets the height of the header area. + + + + + Gets or sets the height of the header area. + + + + + Gets or sets the object, associated with this document. + + + + + Gets the number of the page being printed. + The value of this property changes during the printing process. + + + + + Gets the total page count. The value is populated when the printing process begins. + + + + + Indicates whether the printing process is running. + + + + + Draws the element using the object in the given rectangle. + + The graphics object used for the drawing. + The draw area. + + + + Draws the element using the object in the given rectangle. + + The graphics object used for the drawing. + The draw area. + + + + Gets or sets the padding arround the text. + + + + + Gets or sets a value indicating whether the text should be drawn. + + + + + Gets or sets the rotation angle of the element. + + + + + Gets or sets the scale factors of the element. + + + + + Gets or sets whether a fill should be drawn. + + + + + Gets or sets whether a border should be drawn. + + + + + Gets or sets whether the cell is right to left. + + + + + Gets or sets the fore color of the element. + + + + + Gets or sets the back color of the element. + + + + + Gets or sets the back color of the element. + + + + + Gets or sets the text alignment of the element. + + + + + Gets or sets the text to be drawn. + + + + + Gets or sets the font used for drawing the text. + + + + + Gets or sets the string trimming mode. + + + + + Gets or sets the string format flags. + + + + + Gets or sets the image of the element. + + + + + Gets or sets the image layout. + + + + + Gets or sets the image alignment + + + + + Represents a series of points that will define the shape of the element. + + + + + Gets or sets a value indicating whether html text will be interpreted or will be printed directly. + + + + + A control which is responsible for displaying print documents. + + + + + Gets or sets the border color for each page. + + + + + Gets or sets the inner border color for each page. + + + + + Gets or sets the current scroll position. + + + + + A dialog for previwing and setting before printing. + + + + + Scrolls the preview with a specified offset. + + The offset. + + + + Sets the zoom factor of the preview. + + The zoom factor. + + + + Localizes the strings in the dialog with strings from the current + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the that should be previewed. + + + + + Gets the RadMenu instance of the form. + + + + + Gets the RadCommandBar instance of the form. + + + + + Gets the that is shown by this dialog. + + + + + Gets the that is shown by this dialog. + + + + + Checks whether the watermark should be printed on the given page. + + The page to check. + True if the watermark should be printed, otherwise false. + + + + Gets a list of integer values for the string Pages. + + + + + Gets or sets a value indicating whether the watermark is printed on all pages. + + + + + Gets or sets a string which indicates on which pages the watermark should be printed. + + + + + Gets or sets the fore color of the text. + + + + + Gets or sets the text. + + + + + Gets or sets the font of the text. + + + + + Gets or sets a value indicating whether the watermark is drawn under or over the printed content. + + + + + Gets a value indicating whether there is a text to be printed. + + + + + Gets or sets the angle at which the text is rotated. + + + + + Gets or sets the text opacity. + + + + + Gets or sets the text horizontal offset. + + + + + Gets or sets the text vertical offset. + + + + + Gets a value indicating whether there is an image to be printed. + + + + + Gets or sets the path to the image. + + + + + Gets or sets the image opacity. + + + + + Gets or sets the image horizontal offset. + + + + + Gets or sets the image vertical offset. + + + + + Gets or sets a value indicating whether the image should tiled. + + + + + Represent a stack layout element + + + + + Arranges the items horizontally. + + The final size. + + + + Arranges the items horizontaly. + + The client rect. + The final size. + Width of the stretchable. + The spacing. + + + + Arranges the items vertically. + + The final size. + + + + Arranges the element. + + The element. + The client rect. + The final rect. + The final size. + + + + Aligns the rectangle according to orientation and element's alignment. + + The element. + The arrange rect. + + + + + Gets or sets the item orientation. + + + The orientation. + + + + + Gets or sets the element spacing between items. + + + The element spacing. + + + + + Gets or sets the right to left mode. + + + The right to left mode. + + + + + Gets or sets a value indicating whether to fit the available size. + + + true if fit the available size; otherwise, false. + + + + + Gets or sets a comparer to be used for defining the order of the child elements. + + + + + Right to left modes in + + + + + Represents a selectable option displayed on a or + in a drop down panel. + + + + + Initializes a new instance of the RadMenuItem class. + + + + + Initializes a new instance of the RadMenuItem class using the displayed + text. + + + + + + Initializes a new instance of the RadMenuItem class using the displayed text. + + + + + + + Raises the ToggleStateChanging event. + + + + + Raises the ToggleStateChanged event. + + + + + Determines whether the arrow is currently displayed for this item. + + + + + Occurs before the item's toggle state changes. + + + + + Occurs when the item's toggle state changes. + + + + + Gets or sets the text that appears as a HintText for a menu item. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + + Gets or sets if the arrow is shown when the menu item contains sub menu. + + + + + Gets or sets the font of the descrition text of the RadMenuItem. + + + + + Gets the visibility of description text element + + + + + Gets or sets the description text associated with this item. + + + + + Gets or sets a value indicating whether a menu item should toggle its CheckState on mouse click. + + + + + Gets the FillPrimitive of RadMenuItem responsible for the background appearance. + + + + + Gets the BorderPrimitive of RadMenuItem responsible for appearance of the border. + + + + Gets or sets a value indicating whether the menu item is checked. + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of a merged item within the current menu. + + + + + Gets or sets the visibility of the separator element between the text and the description text + + + + + Gets or sets the name of the control for use by accessibility client applications. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents event data for some of the progress bar event: + ValueChanged, + MinimumChanged, + MaximumChanged, + StepChanged, + StepWidthChanged, + DashChanged, + IntegralDashChanged, + SeparatorWidthChanged, + TextOrientationChanged, + TextAlignmentChanged, + ProgressOrientationChanged, + ShowProgressIndicatorsChanged and + SeparatorColorChanged. + + + + + Initializes a new instance of the ProgressBarEventArgs class using the sender + of the event. + + Represents the event sender. + + + + Gets or sets the event sender. + + event sender. + + + + Exposes the reason for a progress bar or waiting bar event. + + + + + Indicates that value1 or value2 has been changed. + + + + + Indicates that the Minimum property has been changed. + + + + + Indicates that the Maximum property has been changed. + + + + + Indicates that the Step has been changed. + + + + + Indicates that the Step width has been changed. + + + + + Indicates that the Dash property has been changed. + + + + + Indicates that the Hatch property has been changed. + + + + + Indicates that the IntegralDash property has been changed. + + + + + Indicates that the Text property has been changed. + + + + + Indicates that the SeparatorWidth property has been changed. + + + + + Indicates that the TextOrientatio property has been changed. + + + + + Indicates that the TextAlignment property has been changed. + + + + + Indicates that the ProgressOrientation property has been changed. + + + + + Indicates that the ProgressOrientation property has been changed. + + + + + Indicates that one of the separator colors property has been changed. + + + + + Indicates that the separators gradeient angle property has been changed. + + + + + Indicates that the separator color stop has changed + + + + + Indicates that the separator number of colors changed. + + + + + Initializes the fields. + + + + + Rrepresents a progress indicator used in + + + + + Represents a state manager for the progress bar progress indicators. + + + + + Creates the state manager. + + + + + + Represents a state manager for + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Virtual function that draws the primitive on the screen. + + The graphics object. + The angle. + The scale. + + + + Gets or sets the width of the separator. + + + The width of the separator. + + + + + Gets or sets the width of the step. + + + The width of the step. + + + + + Gets or sets the separator color1. + + + The separator color1. + + + + + Gets or sets the separator color2. + + + The separator color2. + + + + + Gets or sets the separator color3. + + + The separator color3. + + + + + Gets or sets the separator color4. + + + The separator color4. + + + + + Gets or sets the separator gradient angle. + + + The separator gradient angle. + + + + + Gets or sets the separator gradient percentage1. + + + The separator gradient percentage1. + + + + + Gets or sets the separator gradient percentage2. + + + The separator gradient percentage2. + + + + + Gets or sets the number of colors to be used. + + + The number of colors. + + + + + Gets or sets the flow direction of the progress indicator. + + + The progress orientation. + + + + + Gets or sets the sweep angle. + + + The sweep angle. + + + + + Gets or sets a value indicating whether this is dash. + + + true if dash; otherwise, false. + + + + + Gets or sets a value indicating whether this is hatch. + + + true if hatch; otherwise, false. + + + + + Initializes the fields. + + + + + Gets or sets whether this progress indicatior will automatically control its + opacity when close to or over the second progress indicator. + + + + + Gets or sets the minimum opacity level this progress indicator will go to + when over the second progress indicator when AutoOpacity property is set + to true. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + The RadRangeAttribute is an attribute which specifies the allowed range of values. + It can be applied to properties declarations only. + It is used by an editor when the propertyes is being edited. + + + + + Creates a new instance of the attribute withe the specific range. + + The minimum possible value in the range. + The maximum possible value in the range. + + + + Gets the minimum value of the specified range. + + + + + Gets the maximum value of the specified range. + + + + + The RadSortOrderAttribute is an attribute which specifies the sort order for properties inside . + It can be applied to properties declarations only. + + + + + Creates a new instance of the attribute with the specified value. + + The value defining the sort order. + + + + Gets the value of the attribute. + + + + + Defines an interface used to acces property information in RadPropertyGrid. + + + + + Gets the property name. + + + + + Gets the property display name + + + + + Gets or sets the property value. + + + + + Gets the property description. + + + + + Gets a value indicating whether the property is read only. + + + + + Gets the property category. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the property type. + + + + + Gets the associated with this property. + + + + + Gets the associated with this property. + + + + + Gets the associated with this property. + + + + + Gets the property name. + + + + + Gets the property display name + + + + + Gets or sets the property value. + + + + + Gets or sets the description associated with this property. + + + + + Gets the categoty of the property from its or returns "Other" if no category is specified. + + + + + Gets a value indicating whether the property is editable. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the property type. + + + + + Gets the property descriptor for this property. + + + + + Gets the UITypeEditor associated with this property + + + + + Gets the TypeConverter associated with this property + + + + + Gets the associated with this accessor. + + + + + Expands this instance. + + + + + Collapses this instance. + + + + + Gets the group item. + + The group item. + + + + Gets the expanded state of the group. + + + + + Expandes the item. + + + + + Collapses the item. + + + + + Ensures that this item is visible in the content of the RadPropertyGridElement. + + + + + Selects the grid tiem. + + + + + Allows PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Gets the parent property grid that the item is assigned to. + + + + + Gets or sets a value indicating whether this instance is visible. + + + true if this instance is visible; otherwise, false. + + + + + Gets or sets a value indicating whether this item is selected. + + + true if this item is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this item is expanded. + + + true if this item is expanded; otherwise, false. + + + + + Gets or sets a value indicating whether the item can respond to user interaction. + + The default value is true. + + + + Gets or sets the height of the item. + + The default value is 20. + + + + Gets or sets the image of the node. + + ImageIndex Property + ImageKey Property + + + + Gets or sets the left image list index value of the image displayed when the tree + node is not selected. + + Image Property + ImageKey Property + + + + Gets or sets the key + for the left image associated with this tree node when the node is not selected. + + Image Property + ImageIndex Property + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the description associated with this item. + + + + + Gets or sets the tool tip text associated with this item. + + + + Gets or sets the context menu associated to the item. + Returns an instance of RadDropDownMenu Class that + is associated with the item. The default value is null. + + This property could be used to associate a custom menu and replace the property grid's + default. If the context menu is invoked by right-clicking an item, the property grid's menu + will not be shown and the context menu assigned to this item will be shown instead. + + + + + Gets or sets the tag object that can be used to store user data, corresponding to the item. + + The tag. + + + + Gets a value indicating how deep in the hierarchy this propety is. + + + + + Gets the child items list associated with this item. + + + + + Gets a value indicating whether this item is expandable. + + + + + Gets the parent item for this item. + + + + + Gets the property name + + + + + Resets the property value to its default value. + + + + + Selects this item and puts the Property grid in edit mode. + + + + + Gets the child items for a given item. + + The parent item for which to get the child items. + The instance of the item. + The type of the property. + Collection of . + + + + Gets the default value of the current item. A return parameter determines if the operation succeeded. + + An object where the default value will be stored if there is such. + True if the item has a default value otherwise false. + + + + Determines if the item should update its child items based on the types of the old value and the new one. + + The old value of this item. + The new value of this item. + True if child items should be updated otherwise false. + + + + Converts a string into a password string. + + The input. + + + + + Gets the property name + + + + + Gets or sets the text that would be displayed for this property. + + + + + Gets or sets the description associated with this item. + + + + + Gets the category of the property from its or returns "Other" if no category is specified. + + + + + Gets a value indicating whether the property is read only. + + + + + Gets or sets the item value. + + The text. + + + + Gets the value of the property as a string using its . + + + + + Gets the original property value. + + + + + Gets a value indicating whether the property value is modified. + + + + + Gets a value indicating whether this is a complex property. + + + + + Gets or sets a value defining the sort order of the item when no other sorting is applied. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the sub items of the current if it is composed of several subitems. + + + + + Gets or sets the parent of this item. + + + + + Gets or sets an error message to be displayed when property value validation fails. + + + + + Gets the UITypeEditor associated with this property + + + + + Gets the TypeConverter associated with this property + + + + + Gets the property type + + + + + Gets the property descriptor for this property. + + + + + Gets the item accessor for this property item. + + + + + Gets the items. + + + + + + Sets the current. + + The item. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets the property grid element. + + The tree view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Gets the text displayed for this group. + + + + + Gets the items collection of the group. + + + + + Gets a value indicating whether this item is expandable. + + + + + Gets the group created by the Group Factory + + + + + Gets the name of this group. + + + + + Represents a text box control editor in . + + + + + Gets the PropertyGridTableElement. + + + + + Gets the item tha is being processed. + + + + + Gets or sets the GroupKey. The GroupKey is a unique identifier for a group. + + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + PropertyGridSpreadExport is a powerful exporting API, allowing to export RadPropertyGrid to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The RadPropertyGrid to export. + + + + Initializes a new instance of the class. + + The RadPropertyGrid to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export child items grouped. + + + + + Gets or sets a value indicating whether to export item descriptions. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets the indent of child items. + + + + + Gets or sets a value indicating how children of collapsed items are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting item of RadPropertyGrid. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting item. + + + + + Defines the mode that uses to best fit its columns. + + + + + Maximizes the visibility of the strings in the Labels column. + + + + + Maximizes the visibility of the strings in the Values column. + + + + + Uses a mechanism that makes a maximum number of strings from both columns visibile. + + + + + Provides localization services for RadBrowseEditor. + + + + + Represents localization strings in RadBrowserEditor. + + + + + Specifies the navigation mode that will be used when user click on header element. + + + + + Exposes the top instance of CalendarView or its derived + types.v + Every CalendarView class handles the real calculation and + rendering of RadCalendar's calendric information. The + CalendarView has the + + CalendarViewCollection collection which contains all the sub views in case of multi view + setup. + + + + + Gets the parent calendar that the current view is assigned to. + + + + Gets or sets the selected cell. + + + + Gets the items collection of the element + + + + + Displays a collection of labeled items, each represented by a ListViewDataItem. + + + + + Shows the of CardTemplate and puts the selected item in customize mode. + + + + + Closes the and puts the selected item out of customize mode. + + + + + Gets the card view element. + + The card view element. + + + + Gets the RadLayoutControl used as a card template. + + + + + Gets or sets the default item size. + + + + + Gets or sets the space between the items. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Occurs when a new is created. + + + + + Occurs when a needs to be formatted. + + + + + Represents the main element of . + + + + + Represents the main element of . + + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Saves the changes. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Discards the changes. + + [true] if success, [false] otherwise + + + + Creates a view element corresponding to the current ViewType. + + The view element. + + + + Suspend any item change notifications until is called. + + + + + Resumes the item change notifications. + + + + + Finds an item with the specified key. + + The key of the searched item. + + + + + Finds an item with the specified key. + + The key of the searched item. + Indicates if the search should check only visible items. + + + + + Causes synchronization of the visual items with the logical ones. + + + + + Ensures that a given item is visible on the client area. + + The item to ensure visibility of. + + + + Ensures that a given item is visible on the client area. + + The item to ensure visibility of. + Indicates whether the view should be scrolled horizontally. + + + + Ensures that a given column is visible on the client area. + + The column to ensure visibility of. + + + + Selects a range of items. + + The items. + + + + Expands all the groups in the element. + + + + + Collapses all the groups in the element. + + + + + Checks all of the selected items. + + + + + Unchecks all of the selected items. + + + + + Checks all of the items. + + + + + Unchecks all of the items. + + + + + Updates the contents of the collection. + + + + + Scrolls the view with a given amount. + + The amount to scroll the view with. + + + + Fires when a group has been expanded. + + + + + Fires when a group is about to expand. Cancelable. + + + + + Occurs when a ListViewDataItem is about to be selected. Cancelable. + + + + + Occurs when the content of the SelectedItems collection has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the index of the selected item has changed. + + + + + Occurs when the ViewType of RadListView is changed. + + + + + Occurs when the ViewType of RadListView is about to change. Cancelable. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user moves the mouse over a ListViewDataItem. + + + + + Occurs when the user hovers a ListViewDataItem. + + + + + Occurs when the mouse pointer enters a ListViewDataItem. + + + + + Occurs when the mouse pointer leaves a ListViewDataItem. + + + + + Occurs when the user clicks a ListViewDataItem. + + + + + Occurs when the user double-clicks a ListViewDataItem. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Occurs when a ListViewDataItem changes its state and needs to be formatted. + + + + + Occurs when a ListViewDataItem needs to be created. + + + + + Occurs when a BaseListViewVisualItem needs to be created; + + + + + Occurs when a DetailsView cell needs to be formatted. + + + + + Occurs when a data-bound item is being attached to a ListViewDataItem. + + + + + Occurs when the CurrentItem property is changed. + + + + + Occurs when the CurrentItem property is about to change. Cancelable. + + + + + Occurs when an editor is required. + + + + + Occurs when an edit operation is about to begin. Cancelable. + + + + + Occurs when an editor is initialized. + + + + + Occurs when a ListViewDataItem is edited. + + + + + Fires when a validation error occurs. + + + + + Occurs when an edit operation needs to be validated. + + + + + Occurs when the value of a ListViewDataItem is changed. + + + + + Occurs when the value of a ListViewDataItem is about to change. Cancelable. + + + + + Occurs when a needs to be created. + + + + + Occurs when a needs to be created. + + + + + Occurs when an item is about to be removed using the Delete key. Cancelable. + + + + + Occurs when an item is removed using the Delete key. + + + + + Gets or sets a value indicating whether column names which differ only in the casing are allowed. + + + + + Gets or sets a value indicating whether the last added item in the RadListView DataSource will be selected by the control. + + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets a value indicating whether the checkboxes should be in ThreeState mode. + + + + + Gets or sets a value indicating whether grid lines shoud be shown in DetailsView. + + + + + Gets or sets a value indicating whether items can be selected with mouse dragging. + + + + + Gets or sets a value indicating whether items should react on mouse hover. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. Always false when lasso selection is enabled. + + + + + Gets or sets a value indicating whether the items should be sorted when clicking on header cells. + + + + + Gets or sets a value indicating whether the column headers should be drawn. + + + + + Gets or sets a value indicating whether the items should be shown in groups. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating if the user can reorder columns via drag and drop. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + Always false when using data source, grouping, filtering, sorting, kinetic scrolling or lasso selection. + + + + + Gets or sets value indicating if the user can resize the columns. + + + + + Gets or sets the current column in Details View. + + + + + Indicates whether there is an active editor. + + + + + Gets or sets the current item. + + + + + Gets or sets the index of the selected item. + + + + + Gets or sets the selected item. + + + + + Gets a collection containing the selected items. + + + + + Gets a collection containing the checked items. + + + + + Gets or sets value indicating whether multi selection is enabled. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets value indicating whether the user can remove items with the Delete key. + + + + + Gets the currently active editor. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default group item size. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets the fill color of the lasso selection rectangle. + + + + + Gets or sets the border color of the lasso selection rectangle. + + + + + Gets or sets the space between the items. + + + + + Gets or sets a collection of ListViewDetailColumn object which represent the columns in DetailsView. + + + + + Gets a value indicating whether the control is in bound mode. + + + + + Gets a collection containing the groups of the RadListViewElement. + + + + + Gets or sets the value member. + + + + + Gets or sets the display member. + + + + + Gets or sets the checked member. + + + + + Gets the DataView collection. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether custom grouping is enabled. + + + + + Gets a collection of filter descriptors by which you can apply filter rules to the items. + + + + + Gets a collection of SortDescriptor which are used to define sorting rules over the + ListViewDataItemCollection. + + + + + Gets a collection of GroupDescriptor which are used to define grouping rules over the + ListViewDataItemCollection. + + + + + Gets the source of the items. + + + + + Gets or sets a collection of ListViewDataItem object which represent the items in RadListViewElement. + + + + + Gets the element that represents the active view. + + + + + Gets or sets the type of the view. + + + + + Gets or sets the data source of a RadListViewElement. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the height of the header in Details View. + + + + + Gets or sets the that is responsible for resizing the columns. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when BaseListViewElement is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + Occurs when the BindingContext has changed. + + + + + Occurs when the process of binding to a data source has finished + + + + + Gets or sets the BindingContext. + + + + + Creates a view element for the current CardView. + + The view element. + + + + Shows the of CardTemplate and puts the selected item in customize mode. + + + + + Closes the and puts the selected item out of customize mode. + + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Initializes the editor. + + The visual item. + The initializable. + The editor. + + + + Sets the selected item value. + + The instance containing the event data. + The new value. + + + + Gets the used as a card template. + + + + + Occurs when a new is created in + + + + + Occurs when a needs to be formatted. + + + + + Represents a base class for view elements. + + + + + Gets the at a specified location. + + The location. + The . + + + + Gets the at a specified location. + + The location. + The . + + + + Scrolls the view with a given amount. + + The amount to scroll with. + + + + Ensures that a given is visible on the client area. + + The to ensure visibility of. + + + + Ensures that a given is visible on the client area. + + The to ensure visibility of. + Indicates if the view should be scrolled horizontally. + + + + Clears the selection. + + + + + Toggles the CheckState of given item. + + The item whose CheckState will be toggled. + + + + Returns a value indicating whether the current view supports given orientation. + + The orientation. + [true] if the current view supports the orientation, [false] otherwise. + + + + Ensures that a given is visible by scrolling the view horizontally. + + The item to ensure visibility of. + + + + Ensures that a given is visible by scrolling the view vertically. + + The item to ensure visibility of. + + + + Ensures that a given is visible when it is below the last visible item in the view. + + The item to ensure visibility of. + + + + Called when the orientation of the view has changed. + + + + + Updates the horizontal scrollbar. + + + + + Updates the visibility of the horizontal scrollbar. + + + + + Processes the MouseUp event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the MouseMove event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the MouseDown event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the KeyDown event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Handles a press of the PageUp key. + + The event args. + + + + Handles a press of the PageDown key. + + The event args. + + + + Handles a press of the Delete key. + + The event args. + + + + Handles a press of the End key. + + The event args. + + + + Handles a press of the Home key. + + The event args. + + + + Handles a press of the Escape key. + + The event args. + + + + Handles a press of the F2 key. + + The event args. + + + + Handles a press of the Left key. + + The event args. + + + + Handles a press of the Right key. + + The event args. + + + + Handles a press of the Down key. + + The event args. + + + + Handles a press of the Up key. + + The event args. + + + + Handles a press of the Space key. + + The event args. + + + + Handles navigation upon key press. + + The character of the pressed key. + + + + This method traverses through the items in the control and fills a queue with these items that start with the . + + + + + + Gets the previous visible item of a given . + + The current item. + The previous item. + + + + Gets the next visible item of a given . + + The current item. + The next item. + + + + Processes the MouseWheel event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the selection of a specified item. + + The which is being processed. + The modifier keys which are pressed during selection. + [true] if the selection is triggered by mouse input, [false] otherwise. + + + + Selects all items that are whitin the lasso rectangle. + + + + + Selects all items that are whitin the specified rectangle. + + + + + Begins the lasso selection. + + + + + Ends the lasso selection. + + + + + Gets the drag hint location according to the specified item. + + The drop target item. + The mouse location in client coordinates. + The location of the drag hint. + + + + Indicates whether an item should be dropped after the given target according to the specified location. + + The drop target item. + The drop location. + [true] if a dropped item should be inserted after the target, [false] otherwise. + + + + Gets the size of the drag hint according to the speficied target. + + The drop target. + The size of the drag hint. + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where a column will be dropped after a drag operation. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets the orientation of the view element. + + + + + Gets the that owns the view. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default group item size. + + + + + Gets or sets the fill color of the lasso selection rectangle. + + + + + Gets or sets the border color of the lasso selection rectangle. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Updates the items layout. + + + + + Shows the customize dialog. + + + + + Closes the customize dialog. + + + + + Gets all child items. + + The items. + + + + + Gets the field names. + + + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + XmlWriter to use by the built-in serializer + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + The stream to write to. + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + The file to write to. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The XmlReader to read the XML from. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The stream to read from. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The file to read from. + + + + Gets the default serialization info for RadLayoutControl used by Save/Load layout methods to persist the layout to/from XML. + + The default serialization info. + + + + Initializes the items of the default context menu. + + + + + Gets the designer host. + + The list view element. + + + + + Gets a value indicating whether the owner is data bound or has any columns created. + + The list view element. + + + + + Synchronizes given CardViewContainerElement to the container of CardTemplate. + + The given container. + The visual item that owns the container. + + + + Updates item bounds and synchronizes properties. + + + + + + + + Handles the RadPropertyChanged event of the GroupItem control. + + The source of the event. + The instance containing the event data. + + + + Gets the item synchronization properties. + + The item synchronization properties. + + + + Gets the layout control used as a template for all displayed cards. + + + + + Gets or sets the context menu. + + + + + Gets the card view element. + + The card view element. + + + + Gets or sets the default item size. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets the serialization info for RadLayoutControl used by Save/Load layout methods to persist the layout to/from XML. + By default or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Updates the scrollbar metrics. + + + + + Gets the card items container. + + + + + Gets the horizontal . + + + + + Gets the vertical . + + + + + Represents the method that will handle the creating events of CardViewContainerElement items. + + The event sender, typically this is + Instance of containing the data related with this event + + + + Provides data for the CardViewItemCreating event. + + + + + Initializes a new instance of the CardViewItemCreatingEventArgs. + + The CardTemplate item. + The newly created item. + The visual item. + + + + Gets the from CardTemplate. + + + + + Gets or sets the created . + + + + + Gets the . + + + + + Represents the method that will handle the formatting events of CardViewContainerElement items. + + The event sender, typically this is + Instance of containing the data related with this event + + + + Provides data for the CardViewItemFormatting event. + + + + + Initializes a new instance of the CardViewItemFormattingEventArgs class. + + The + The + + + + Gets the . + + + + + Gets the . + + + + + Fires the VisualItemCreating event of . + + The visual item. + The view type of + The data item for which a visual item is being created + The new visual item. + + + + An element which hosts and provides the layout of items that inherit from the . + This element can be found at the root level of , as well as + in or . + + + + + A common interface for elements which host items. + + + + + Gets the the drag hint preview rectangle if an item were to be dragged at a given point. + + The dragged item. + The point in control coordinates. + The preview rectangle. + + + + Gets the the drag hint preview rectangle if an item were to be dragged at a given point. + + The dragged item. + The point in control coordinates. + The type of the dragged item. + The preview rectangle. + + + + Handles dropping an element over another at the specified position. + + The drop target element. + The dragged element. + The specified position. + + + + Rebuilds the layout of the container. + + + + + Rebuilds the layout of the container. + + If [true], forces a layout update. + + + + Updates the layout of the inner controls. + + + + + Updates the layout of the inner controls. + + If [true], goes into nested s recursively. + + + + Gets or sets the fill color of the drag preview rectangle. + + + + + Gets or sets the border color of the drag preview rectangle. + + + + + Gets the associated with this container. + + + + + The collection of items which this container hosts. + + + + + Represents an item which hosts other items that inherit from . + Has a header element and a which holds the items. + Can be expanded and collapsed. + + + + + A base class for all items which can be placed in + + + + + Gets the which owns this item. Can be either + or . + + The owner item. + + + + Gets a value indicating whether this item is currently hidden. + + + + + Gets or sets a value indicating whether this item can be deleted by the + end-user from the Customize dialog. + + + + + Called when the group is expanded or collapsed to do the necessary updates. + + + + + Gets or sets a value indicating whether the line in the header element should be shown. + + + + + Gets the header element of the group. + + + + + Gets or sets a value indicating whether the group is currently expanded. + + + + + Gets or sets the height of the header. + + + + + Gets the container element which hosts the items within the group. + + + + + Gets the items within the group. + + + + + This method is used internally! + + + + + This method is used internally! + + + + + + Gets or sets the name of field associated with this item. + + + + + Gets the field. + + + + + This method is used internally! + + + + + + Gets the rectangle in which the text part will be arranged. + + The client area of the item. + The arrange rectangle of the text part. + + + + Gets the rectangle in which the editor will be arranged. + + The client area of the item. + The arrange rectangle of the editor. + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the proportional size of the text part which will be used + when TextSizeMode is set to proportional. + + + + + Gets or sets the fixed size of the text part which will be used + when TextSizeMode is set to fixed. + + + + + Gets or sets the minimum size of the text part. + + + + + Gets or sets the maximum size of the text part. + + + + + Gets or sets the way in which the text part will be sized - proportionally or fixed-size. + + + + + Gets the editor label item. + + + + + Gets or sets the name of field associated with this item. + + + + + Gets the card field. + + + + + The dialog which is opened when is in edit mode. Provides interface + to access the hidden items, bring new items to the control, or preview and edit the existing item structure. + + + + + Called to update the Hidden Items group in the Items tab + + + + + Called to update the tree view in the Structure tab + + + + + Gets the text which should be displayed in an item in the Hidden Items group or the Structure tree view. + + The item to get the text for. + The text for the item. + + + + Gets the image which should be displayed in an item in the Hidden Items group or the Structure tree view. + + The item to get the image for. + The image for that item. + + + + Called to rearrange the items when the RightToLeft property of the dialog has changed. + + + + + Called when the drag drop service of the list view has started. + + + + + Called to handle dropping a dragged item from the list view on the Items tab. + + + + + Handles dropping a list view item over a . + + The dragged list view item. + The drop target item. + + + + Handles dropping a list view item over an empty container. + + The container. + The dragged item. + + + + Called to create a new when dropping an item from the New Items group. + + The dragged item. + The newly created item + + + + Handles the DragOver event of the list view's drag drop service. + + + + + Gets the drag context of a dragged item. + + The dragged item. + The type of the associated item. + + + + Handles the NodeRemoving event of the tree view on the structure tab. + + + + + Handles the Click event of the Save Layout button. + + + + + Handles the Click event of the Load Layout button. + + + + + Handles the NodeEdited event of the tree view on the Structure tab. + + + + + Handles the SelectedNodeChanged event of the tree view on the Structure tab. + + + + + Handles the MouseMove event of the tree view on the Structure tab. + + + + + Handles the MouseDown event of the tree view on the Structure tab. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Gets or sets the image of the element. + + + The image. + + + + + Gets the image primitive. + + + The image primitive. + + + + + This class represents the container which holds + all controls put in a + control. The scrolling support comes from this container. + + + + + Creates an instance of the + class. This constructor is used by the Visual Studio Designer. + + + + + Creates an instance of the + class. + + An instance of the + class which represents the owner of this container. + + + + Gets or sets a value indicating whether the focused control inside the RadScrollablePanel + will be automatically scrolled into view when gaining focus. + + + + + Initializes a new instance of the class. + + + + + Initializes the internal container which holds the controls. + + + + + Creates the child items. + + The parent. + + + + Creates the controls container which holds the controls. + + + + + + Creates the collapsible panel element. + + + + + + Creates a new instance of the control collection for the control. + + + A new instance of assigned to the control. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + An that contains the event data. + + + + Gets the default size of the control. + + The default of the control. + + + + Gets the controls container. + + + The controls container. + + + + + Gets the panel container which contains the controls of the RadCollapsiblePanel. + + + The panel container. + + + + + Gets the collapsible panel element. + + + The collapsible panel element. + + + + + Gets or sets the expand direction. + + + The expand direction. + + + + + Gets or sets a value indicating whether to use animation to expand or collapse the control. + + + true if the expand/collapse animations are enabled; otherwise, false. + + + + + Gets or sets the content sizing mode. + + + The content sizing mode. + + + + + Gets a or Sets value indicating whether the control is expanded. + + + true if the control is expanded; otherwise, false. + + + + + Gets a value indicating whether the control is currently animating. + + + true if the control is currently animating; otherwise, false. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + Gets or sets the header text. + + + The header text. + + + + + This value is set when the control is about to be collapsed and is used to restore the control's size when expanding. It should only be set by the control itself. + + + + + Gets or sets the animation interval. + + + The animation frames. + + + + + Gets or sets the animation frames. + + + The animation frames. + + + + + Gets or sets the easing type to be applied to the animation when expanding or collapsing + + + The animation easing type. + + + + + Gets or sets the type of the expand or collapse animation. + + + The type of the animation. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + Occurs after the control is expanded. + + + + + Occurs after the control is collapsed. + + + + + Occurs before the control is expanded. + + + + + Occurs before the control is collapsed. + + + + + Synchronizes its size, location and margin with the specified instance + + The element to synchronize with. + + + + Synchronizes its size with the specified instance + + The element to synchronize with. + + + + Synchronizes its location with the specified instance + + The element to synchronize with. + + + + Synchronizes its margin with the specified instance + + The element to synchronize with. + + + + Suspends the child controls layout. + + + + + Suspends the child controls layout where the controls are not docked. + + + + + Resumes the child controls layout. + + if set to true [perform layout]. + + + + Resumes the child controls layout. + + + + + Draws the control to a + + A new instance of + + + + Gets the container panel that holds + all the components added to the panel. + + + + + Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent. + + One of the values. The default is . + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usaage of the control. + + + + + Initializes a new instance of the class. + + The owner control. + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the header element. + + + + + + Creates the layout element. + + + + + + Raises the event. + + The instance containing the event data. + + + + Called when the button in the CollapsiblePanel's header is clicked. + + The sender. + The instance containing the event data. + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + If the Control is expanded it will be collapsed and vice-versa. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Creates the instance which will be used to animate the control. + Create it according to its value. + + + + + + Creates the instance which will be used to animate the control. + + if set to true expand animation will be created, otherwise collapse animation will be created. + + + + + Sets the control bounds after it is collapsed. + + + + + Creates the expand animation. + + + + + + Setups the reveal expand animation. + + The animation to be set up. + + + + Setups the slide expand animation. + + The animation to be set up. + + + + Creates the collapse animation. + + The new instance + + + + Setups the reveal collapse animation. + + The animation to be set up. + + + + Setups the slide collapse animation. + + The animation to be set up. + + + + Executes the collapse preparations. This method is invoked before the panel starts collapsing. + + If the current enumeration is not supported + + + + Executes the collapse finalizations. This method is invoked after the panel has collapsed. + + If the current enumeration is not supported + + + + Executes the expand preparations. This method is invoked before the panel starts expanded. + + If the current enumeration is not supported + + + + Executes the expand finalizations. This method is invoked after the panel has expanded. + + If the current enumeration is not supported + + + + Gets the object to be animated. This object is used by the current animation object. + + + If the current enumeration is not supported + + + + Gets the header element. + + + The header element. + + + + + Gets or sets the expand direction. + + + The expand direction. + + + + + Gets or Sets a value indicating whether the control is expanded. + + + true if the control is expanded; otherwise, false. + + + + + Gets or sets a value indicating whether to use animation to expand or collapse the control. + + + true if the expand/collapse animations are enabled; otherwise, false. + + + + + Gets or sets the content sizing mode. + + + The content sizing mode. + + + + + Gets or sets a value indicating whether the control is currently animating. + + + true if the control is currently animating; otherwise, false. + + + + + Gets or sets the animation interval. + + + The animation interval. + + + + + Gets or sets the animation frames. + + + The animation frames. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + Gets the layout element. + + + The layout element which is responsible for the position of the ControlsContainer + + + + + Gets or sets the header text. + + + The header text. + + + + + This value is set when the control is about to be collapsed and is used to restore the control's size when expanding. It should only be set by the control itself. + + + + + Gets or sets the easing type to be applied to the animations + + + The animation easing type. + + + + + Gets or sets the type of the expand or collapse animation. + + + The type of the animation. + + + + + Occurs when the control is expanded. + + + + + Occurs when the control is collapsed. + + + + + Occurs when the control is about to be expanded. Cancelable. + + + + + Occurs when the control is about to be collapsed. Cancelable. + + + + + Initializes member fields to their default values. + This method is called prior the CreateChildItems one and allows for initialization of members on which child elements depend. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the button element. + + + + + + Creates the text element. + + + + + + Creates the line element. + + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the expand collapse button element. + + + The expand collapse button element. + + + + + Gets the header text element. + + + The header text element. + + + + + Gets the header line element. + + + The header line element. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + The content will be horizontally positioned in the center of its parent. + + + + + The content will be horizontally positioned to the center of its parent. + + + + + The content will be horizontally positioned to the left of its parent. + + + + + The content will stretched so all children have equal width. + + + + + The content will be vertically positioned in the center of its parent. + + + + + The content will be vertically positioned to the bottom of its parent. + + + + + The content will be vertically positioned to the top of its parent. + + + + + The content will stretched so all children have equal height. + + + + + Gets or sets the name of the descriptor. + + The name of the descriptor. + + + + Gets or sets the type of the descriptor. + + The type of the descriptor. + + + + Gets or sets a value indicating if this descriptor item is auto generated. + + The is auto generated. + + + + Gets or sets the default filter operator. + + The default filter operator. + + + + Gets or sets the default value. + + The default value. + + + + Gets the filter operators. + + The filter operators. + + + + Gets the filter operation context. + + The filter operation context. + + + + Gets or sets the data source that populates the items for the . + + + + + Gets or sets a string that specifies the property or database column from which to get values that correspond to the items in the . + + + + + Gets or sets a string that specifies the property or database column from which to retrieve strings for display in the items. + + + + + Specifies the mode for the automatic completion feature used in the . + + + + + Gets or sets a value specifying the style of the . + + + + + Gets or sets the editor's value. + + + + + Gets or sets a value indicating whether the node is selected. + + + + + Gets or sets a value indicating that this is the current node. + + + + + Gets or sets a value indicating whether the node is expanded. + + + + + Gets or sets a value indicating whether the control contains the focus. + + + + + Gets a value indicating whether the node is currently at root level. + + + + + Gets or sets the arbitrary height for this particular node. + Valid when the owning RadTreeViewElement's AllowArbitraryHeight property is set to true. + + + + + Gets a value indicating that this is the hot tracking node. + + + + + Gets a value indicating whether this node contains child nodes. + + + + + Synchronizes this instance. + + + + + Sets the control cursor. + + The cursor. + + + + Gets or sets the currently editing element. + + The editing element. + + + + Gets the drag element. + + The drag element. + + + + Gets the close button. + + The close button. + + + + Gets the data filter element. + + The data filter element. + + + + Initializes new instance of the RadTreeNode class. + + The text to be used as label text. + A boolean value indicating whether the node is expanded. + + + + Finds the specified match. + + The match. + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Initiates the editing of the tree node. + + + + + + Ends the edit. + + + + + + Cancels the edit. + + + + + + Collapses the tree node. + + + + + Collapses the and optionally collapses its children. + + if set to true [ignore children]. + + + + Ensures that the tree node is visible, expanding tree nodes and scrolling the tree view control as necessary. + + + + + Expands the tree node. + + + + + Expands all the child tree nodes. + + + + + Returns the number of child tree nodes. + + if set to true [include sub trees]. + + + + + Removes the current tree node from the tree view control. + + + + + Toggles the tree node to either the expanded or collapsed state. + + + + + Returns a that represents the tree node. + + + A that represents the tree node. + + + + + This method is used internally! + + + + + Execute the action for every RadTreeNode in the branch + + + + + + Creates a new object that is a copy of the current instance. + + + A new object that is a copy of this instance. + + + + + Allows PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Sets the IBindingList which holds the child nodes in Object Relational Binding mode + + + + + + Gets the last matches using Find method. + + Gets the last matches using Find method. + + + + Gets the style. + + The style. + + + + Gets a value indicating whether this instance has style. + + true if this instance has style; otherwise, false. + + + + Gets or sets a value indicating whether the node can respond to user interaction. + + The default value is true. + + + + Gets the root parent node for this RadTreeView. + + The default value is null. + + + + Gets the parent tree view that the tree node is assigned to. + + + + + Gets or sets a value indicating whether this is checked. + + true if checked; otherwise, false. + + + + Gets or sets the state of the check element. + + The state of the check. + + + + Gets or sets the type of the check element. + + The type of the check. + + + Gets or sets the context menu associated to the node. + + Returns an instance of RadDropDownMenu Class that + is associated with the node. The default value is null. + + + This property could be used to associate a custom menu and replace the treeview's + default. If the context menu is invoked by right-clicking a node, the treeview's menu + will not be shown and the context menu assigned to this node will be shown + instead. + + RadContextMenu Property (Telerik.WinControls.UI.RadTreeView) + + + + Gets or sets a value indicating whether this instance is visible. + + + true if this instance is visible; otherwise, false. + + + + + Gets the index. + + The index. + + + + Gets a value indicating whether this instance is editing. + + + true if this instance is editing; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is selected. + + + true if this instance is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is current. + + + true if this instance is current; otherwise, false. + + + + + Gets or sets the tree view element. + + The tree view element. + + + + Gets or sets a value indicating whether this instance is expanded. + + + true if this instance is expanded; otherwise, false. + + + + + Gets or sets the parent. + + The parent. + + + + Gets or sets the text. + + The text. + + + + Gets or sets the node value. + + The text. + + + + Gets the nodes. + + The nodes. + + + + Gets the level. + + The level. + + + + + Gets or sets the name of the RadTreeNode. + + A String that represents the name of the tree node. + + The Name of a TreeNode is also the node's key, when the node is part of a + TreeNodeCollection. If the node does not + have a name, Name returns an empty string (""). + + + + + Gets the first node. + + The first node. + + + + Gets the last node. + + The last node. + + + + Gets the next node. + + The next node. + + + + Gets the next visible node. + + The next visible node. + + + + Gets the prev node. + + The prev node. + + + + Gets the prev visible node. + + The prev visible node. + + + + Gets or sets the tag object that can be used to store user data, corresponding to the tree node. + + The tag. + + + + Gets or sets the text that appears when the mouse pointer hovers over a tree node. + + The default value is "". + + + + Gets the full path. + + The full path. + + + + Gets or sets the image of the node. + + ImageIndex Property + ImageKey Property + + + + Gets or sets the left image list index value of the image displayed when the tree + node is not selected. + + Image Property + ImageKey Property + + + + Gets or sets the key for the left image associated with this tree node. + + Image Property + ImageIndex Property + + + + Gets or sets the height of the tree node in the tree view control. + + The default value is 20. + + + + Gets or sets the measured desired width for this node. + + + + + Gets or sets the measured desired width for this node. + + + + + Gets or sets a value indicating whether [allow drop]. + + true if [allow drop]; otherwise, false. + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets a value if the node is root node + + + + + Gets the data-bound object that populated the node. + + + + + Gets or sets the font of the node text. + + The default value is null. + + + + Gets or sets the foreground color of the tree node. This color is applied to the text label. + + + + + Gets or sets the backcolor of the tree node. Color type represents an ARGB color. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, gel, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the border color of the tree node. + + + + + Gets or sets gradient angle for linear gradient. + + GradientStyle Property + GradientPercentage Property + GradientPercentage2 Property + NumberOfColors Property + The default value is 90.0. + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + GradientStyle Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + GradientStyle Property + GradientPercentage Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + The default value is + GradientStyles.Linear. + + GradientStyles Enumeration + GradientPercentage Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + + + + Gets or sets the number of used colors in the gradient effect. + + BackColor Property + BackColor2 Property + BackColor3 Property + BackColor4 Property + GradientStyle Property + The default value is 4. + + + + Gets or sets the text alignment. + + + The default value is ContentAlignment.MiddleLeft. + + + + + Gets the associated group node. + + The associated group node. + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the drop down button. + + The drop down button. + + + + Compares the specified x. + + The x. + The y. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Synchronizes this instance. + + + + + Gets the value of field, operator and value elements. + + + + + + Updates the descriptor value. + + The value. + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the criteria node. + + The criteria node. + + + + Gets the field element. + + The field element. + + + + Gets the operator element. + + The operator element. + + + + Gets the value element. + + The value element. + + + + Removes the current tree node from the tree view control. + + + + + Gets the formatted value. + + + + + Gets or sets the associated filter descriptor. + + The descriptor. + + + + Gets or sets the descriptor item. + + The descriptor item. + + + + Gets or sets the property name of associated filter descriptor. + + The name of the property. + + + + Gets or sets the filter operator of associated filter descriptor. + + The filter operator. + + + + Gets or sets the value of associated filter descriptor. + + The descriptor value. + + + + Gets the type of the value. + + The type of the value. + + + + Gets or sets the node value. + + The text. + + + + Creates a new tree node in the target RadTreeView using the information from the source tree. + + The source tree node. + A new instance of if successfull. + + + + Gets or sets a value indicating whether show drop hint should be shown. + + true if [show drop hint]; otherwise, false. + + + + Gets or sets a value indicating whether drag hint should be shown. + + true if [show drag hint]; otherwise, false. + + + + Determines whether this instance can start the specified context. + + The context. + + + + + Determines whether this instance [can drag over] the specified drop position. + + The drop position. + The target node element. + + + + + Cancels the preview drag drop. + + The instance containing the event data. + + + + + Gets the editor element. + + The editor. + + + + + Gets the editor. + + The editor. + + + + Gets or sets the type of the editor. + + The type of the editor. + + + + Creates the element. + + The data. + The context. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Synchronizes this instance. + + + + + Updates the descriptor value. + + The value. + + + + Gets the logical operator form text. + + The text. + + + + + Gets the logical operator of group node. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the size of the editor. + + Size of the available. + The editor element. + + + + + Gets the group node. + + The group node. + + + + Gets the logical operator element. + + The logical operator element. + + + + Gets the text element. + + The text element. + + + + Gets the logical operator. + + The logical operator. + + + + Adds child descriptor. + + The descriptor to add. + + + + Removes child descriptor. + + The descriptor to remove. + + + + Removes the current tree node from the tree view control. + + + + + Gets or sets the associated composite descriptor. + + The composite descriptor. + + + + Gets or sets the logical operator of associated CompositeDescriptor. + + The logical operator. + + + + Gets or sets the associated add node. + + The associated add node. + + + + Gets or sets the full desired size calculated by the virtualized container + + + + + Gets the first found item, with property name equal to item descriptor name specified, case-sensitive. + + RadItem if found, null (Nothing in VB.NET) otherwise + + + + + Gets the operator. + For example: If the operator is LIKE and the value is '%s%' - returns Contains. + + The filter operator. + The value. + + + + + Gets the display value. Returns a value depending on filter operator. + + The filter operator. + The value. + + + + + Gets the display name from localization provider. + + The filter operator. + The value. + + + + + Gets the filter operations that are suitable for the given data type. + + Type of the data. + + + + + Gets the name. + + The name. + + + + Gets the operator. + + The operator. + + + + Updates the properties from current SourceControl. + + + + + Gets the field names. + + + + + + Applies the filter to the SourceControl. + + The expression. + Thrown if the SourceControl is not initialized. + Thrown if the SourceControl is not implementer of System.ComponentModel.IBindingListView, System.Data.DataTable or System.Data.DataView + + + + Gets the type of the field. + + Name of the field. + + + + + Gets the property descriptor. + + Name of the property. + + + + + Gets or sets the source control. + + The source control. + + + + Gets or sets the property descriptors. + + The property descriptors. + + + + Creates the provider. + + The source control. + + + + + Applies the filter expression to the DataFilter. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the data filter. + + The data filter. + + + + Gets or sets the data source of DataFilter. + + The data source. + + + + RadDataFilter localization strings. + + + + + Provides localization services for RadDataFilter. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + Displays a hierarchical collection of filter expressions. + + + + + Displays a hierarchical collection of labeled items, each represented by a RadTreeNode. + + + + + Sets the error. + + The text. + The RAD tree node. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The new node if the operation is successful. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The path separator. + The new node if the operation is successful. + + + + Gets a node by specifying a path to it. + + The path to the node. + The node if found. + + + + Gets a node by specifying a path to it. + + The path to the node. + The path separator. + The node if found. + + + + Gets a node with the specified name. + + The name of the node. + A node with the specified name. + + + + Gets a node with the specified name. + + The name of the node. + /// The node which the should be taken as a root. + A node with the specified name. + + + + Brings the into view. + + The node. + + + + Finds the specified match. + + The match. + + + + + Finds the specified match. + + The match. + The argument. + + + + + Finds the specified text. + + The text. + + + + + Execute the specified action for every RadTreeNode in the tree + + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Finds the nodes. + + The text. + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Begins the edit. + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Loads the XML. + + Name of the file. + The extra types that will be load + + + + Loads the XML. + + The stream. + The extra types that will be load + + + + Saves the XML. + + Name of the file. + The extra types that will be saved + + + + Saves the XML. + + The stream. + The extra types that will be saved + + + + Disables any update of the tree view. + + + + + Ends the update. + + + + + Defers the refresh. + + + + + + Collapses all the tree nodes. + + + + + Collapses all nodes in a given collection. + + The collection of nodes to be collapsed. + + + + Expands all the tree nodes. + + + + + Expands all nodes in a given collection. + + The collection of nodes to be expanded. + + + + Retrieves the tree node that is at the specified point. + + The System.Drawing.Point to evaluate and retrieve the node from. + The System.Windows.Forms.TreeNode at the specified point, in tree view (client) coordinates, or null if there is no node at that location. + + + + Retrieves the tree node at the point with the specified coordinates. + + The System.Drawing.Point.X position to evaluate and retrieve the node from. + The System.Drawing.Point.Y position to evaluate and retrieve the node from. + The System.Windows.Forms.TreeNode at the specified location, in tree view (client) coordinates, or null if there is no node at that location. + + + + Retrieves the number of tree nodes, optionally including those in all subtrees, assigned to the tree view control. + + The number of tree nodes, optionally including those in all subtrees, assigned to the tree view control. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Executes a command over an entire subtree starting with the specified nodes. + + The nodes form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The results from the batch execution. + + + + Executes a command over an entire subtree starting with the specified node. + + The node form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The first result from the batch execution. + + + + Executes a command over an entire subtree starting with the specified node. + + The node form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The results from the batch execution. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a value indicating whether the TreeView load child Nodes collection in NodesNeeded event only when Parent nodes expanded. + + true if [lazy mode]; otherwise, false. + + + + Gets or sets the color of the drop hint. + + + The drop feedback is a visual cue that assists the user with information where to + drop during the drag and drop operation. + + ShowDropHint Property + + The default value is + + black. + + + + + Gets or sets a value indicating whether [show drop feedback]. + + true if [show drop feedback]; otherwise, false. + + + + Gets or sets a value indicating whether [show drop feedback]. + + true if [show drop feedback]; otherwise, false. + + + + Contains data binding settings for related data. + + + + Gets or sets the type of the expand animation enumeration. + AllowPlusMinusAnimation enumeration + PlusMinusAnimationStep Property + ExpandAnimation Enumeration + + The default value is ExpandAnimation.Opacity. + + + + Gets or sets the opacity animation step for expand/collapse animation. + + Returns a double value from double.Epsilon to 1 representing the opacity changing step with + which the plus minus buttons are animated. The default value is 0.025. + + + + + Gets or sets a value indicating whether animation of collapse/expand images is enabled. + + ShowExpanCollapse Property + PlusMinusAnimationStep Property + The default value is false. + + + + The default image index for nodes. + + The index of the image. + + + + The default image key for nodes. + + The image key. + + + + Gets or sets a value indicating whether drag and drop operation with treeview + nodes is enabled. + + AllowDragDropBetweenTreeViews Property + AllowDrop Property (Telerik.WinControls.UI.RadTreeNode) + The default value is false. + + + + Gets or sets a value indicating whether the user is allowed to select more than one tree node at time + + true if [multi select]; otherwise, false. + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets the associated with this control. + + + + The for this control, or null if there is no . The default is null. + + + + + Gets or sets the filter. + + The filter. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets a value indicating whether checkboxes are displayed beside the nodes. + + The default value is false. + + + + Gets or sets a value indicating whether the child nodes should be auto checked when RadTreeView is in tri state mode + + The default value is false. + + + + Gets or sets a value indicating whether the highlight spans the width of the tree + view. + + The default value is false. + + + + Gets or sets a value indicating whether [hide selection]. + + true if [hide selection]; otherwise, false. + + + + Gets or sets a value indicating whether [hot tracking]. + + true if [hot tracking]; otherwise, false. + + + + Gets or sets the indent. + + The indent. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets a value indicating whether nodes can have different height. + + The default value is false. + + + Gets or sets the spacing in pixels between nodes. + The default value is 0. + + + + Gets or sets a value indicating whether editing is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether adding new nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether removing nodes is allowed. + + true if [allow edit]; otherwise, false. + + + Gets a value indicating whether there is an open editor in the tree view. + + + Gets the active editor in the tree. + + The IValueEditor Interface if any. + + + + + Gets or sets the color of the line. + + The color of the line. + + + + Gets or sets the path separator. + + The path separator. + + + + Gets or sets the selected node. + + The selected node. + + + + Gets the checked nodes. + + The checked nodes. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets a value indicating whether expand/collapse (plus-minus) buttons are + shown next to nodes with children. + + The default value is true. + + + + Gets the top node. + + The top node. + + + + Gets the visible count. + + The visible count. + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the display member. + + The display member. + + + + Gets or sets the value member. + + The value member. + + + + Gets or sets the checked member. + + The checked member. + + + + Gets or sets the child member. + + The child member. + + + + Gets or sets the parent member. + + The parent member. + + + + Gets the collection of tree nodes that are assigned to the tree view control. + + A System.Windows.Forms.TreeNodeCollection that represents the tree nodes assigned to the tree view control. + + + + Gets the tree view element. + + The tree view element. + + + + Gets the Horizontal scroll bar. + + The Horizontal scroll bar. + + + + Gets the Vertical scroll bar. + + The Vertical scroll bar. + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Dot. + + + + + Gets or sets a value indicating whether tri state mode is enabled. + + The default value is false. + + + + Gets or sets a value indicating the default tree view toggle mode. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadTreeView is focused. + + The default value is false. + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + The default value is 300ms. + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + RadTreeView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadTreeView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs when the RadTreeView NodesNeeded event is handled and LazyMode property is true. + + + + + Occurs when the RadTreeView report the data error. + + + + + Occurs when the user begins dragging an item. + + + + + Occurs when TreeView required editor. + + + + + Occurs before the tree node label text is edited. + + + + + Occurs when initializing the active editor. + + + + + Occurs after the tree node label text is edited. + + + + + Occurs when the editor is changing the value during the editing process. + + + + + Occurs when the editor finished the value editing. + + + + + Occurs when the editor changed the value editing. + + + + + Occurs when editor validating fails. + + + + + Occurs when a drag is ending + + + + + Occurs when a drag has ended + + + + + Occurs when a drag is starting + + + + + Occurs when a drag has started + + + + + Occurs when drag feedback is needed for a node. + + + + + Occurs before a tree node is selected. + + + + + Occurs after the tree node is selected. + + For more information about handling events, see also SelectedNodeChanging. + + + + + + Occurs when selected nodes has been cleared. + + + + + Occurs when SelectedNodes collection has been changed. + + + + + Occurs when the user presses a mouse button over a RadTreeNode. + + + + + Occurs when the user releases a mouse button over a RadTreeNode. + + + + + Occurs when the user moves the mouse in the area of a RadTreeNode. + + + + + Occurs when the mouse enters the area of a RadTreeNode. + + + + + Occurs when the mouse leaves the area of a RadTreeNode. + + + + + Occurs when the mouse hovers over a RadTreeNode. + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when the value of the Checked property of a RadTreeNode is changing. + + + + + Occurs when the value of the Checked property of a RadTreeNode is changed. + + + + + Occurs before the value of the Expanded property of a tree node is changed. + + + + + Occurs after the value of the Expanded property of a tree node is changed. + + + + + Occurs when the Nodes collection requires to be populated in Load-On-Demand mode using LazyTreeNodeProvider. + + + + + Occurs when the node changes its state and needs to be formatted. + + + + + Occurs when a new node is going to be created. + + + + + Occurs when a new node element is going to be created. + + + + + Occurs when opening the context menu. + + + + + Occurs after a node is removed. + + + + + Occurs before a node is removed. + + + + + Occurs after a node is being added. + + + + + Occurs after a node is bound to a data item. + + + + + Occurs before a node is being added. + + + + + Gets or sets a value indicating whether single node expand is enabled. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Applies the filter to the DataSource. + + + + + Signals the object that initialization is complete. + + + + + Loads the XML with reader. + + The reader. + The extra types. + + + + Saves the XML with writer. + + The writer. + The extra types. + + + + Gets or sets the auto generate descriptor items. + + The auto generate descriptor items. + + + + A collection of descriptor items used to identify the property names and their corresponding types. + + + + + Gets or sets the data source that the is displaying filters for. + + + + + Gets the data filter element. + + The data filter element. + + + + Gets or sets the expression. + + The expression. + + + + Gets or sets a value indicating whether the name of fields in fields drop down should be sorted. + + + + + Gets the collection of tree nodes. + + + A System.Windows.Forms.TreeNodeCollection that represents the tree nodes assigned to the data filter control. + + + + + Gets or sets a value indicating whether drag and drop operation with RadDataFilter + nodes is enabled. + + AllowDragDropBetweenTreeViews Property + AllowDrop Property (Telerik.WinControls.UI.RadTreeNode) + The default value is false. + + + + Gets or sets a value indicating whether adding new nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether removing nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether editing is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets the color of the line. + + The color of the line. + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Solid. + + + + + Gets or sets a value indicating the default tree view toggle mode. + + + + + Raises the event. + + The instance containing the event data. + + + + Sets the error. + + The text. + The RAD tree node. + The context where this error occured. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The new node if the operation is successful. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The path separator. + The new node if the operation is successful. + + + + Gets a node by specifying a path to it. + + The path to the node. + The node if found. + + + + Gets a node by specifying a path to it. + + The path to the node. + The path separator. + The node if found. + + + + Gets a node with the specified name. + + The name of the node. + A node with the specified name. + + + + Gets a node with the specified name. + + The name of the node. + /// The node which the should be taken as a root. + A node with the specified name. + + + + Puts the current node in edit mode. + + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Updates the visual items in the three view + + Indicated the update action + + + + Updates the visual items in the three view + + Indicated the update action + Array representing the nodes which should be updated + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Defers the refresh. + + + + + + Collapses all. + + + + + Expands all. + + + + + Gets an enumerator which enumerates all nodes in the tree. + + The enumerator. + + + + Gets an enumerator which enumerates all descendant nodes of a node. + + The enumerator. + + + + Gets the node at. + + The x. + The y. + + + + + Gets the node at. + + The pt. + + + + + Gets the node element at. + + The x. + The y. + + + + + Gets the node element at. + + The pt. + + + + + Gets the node count. + + if set to true [include sub trees]. + + + + + Finds the specified match. + + The match. + + + + + Finds the specified text. + + The text. + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Finds the nodes. + + The text. + + + + + Execute the specified action for every RadTreeNode in the tree + + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Scrolls to. + + The delta. + + + + Ensures that the specified tree node is visible within the tree view element, scrolling the contents of the element if necessary. + + The node to scroll into view + + + + Ensures that the specified tree node is visible within the tree view element, scrolling the contents of the element if necessary. + This method expands parent items when necessary. + + The node to bring into view + + + + This method traverses through the visible nodes of RadTreeView and returns a node that matches the . + + + + + + + Occurs when [data error]. + + + + + Occurs when [binding context changed]. + + + + + Occurs when is formatting + + + + + Occurs when is created. + + + + + Occurs when is created. + + + + + Occurs after a node is bound to a data item. + + + + + Occurs when is mouse down. + + + + + Occurs when is mouse up. + + + + + Occurs when mouse is move over a . + + + + + Occurs when LazyMode is true and NodesNeeded event is handled + + + + + Occurs when mouse enters a + + + + + Occurs when mouse leaves a + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when is hovered. + + + + + Occurs when node's checked state is changing. + + + + + Occurs when node's checked state is changed. + + + + + Occurs when node is expanding. + + + + + Occurs when node has been expanded. + + + + + Occurs when the selected node is changing + + + + + Occurs when selected node has been changed. + + + + + Occurs when selected node has been cleared. + + + + + Occurs when SelectedNodes collection has been changed. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when node's value is changing. + + + + + Occurs when node's value has been changed. + + + + + Occurs when node's value is validating. + + + + + Occurs when validation error occurs by canceling the ValueValidating event. + + + + + Occurs when the user begins dragging an item. + + + + + Occurs when a drag is starting + + + + + Occurs when a drag has started + + + + + Occurs when a drag is ending + + + + + Occurs when a drag has ended + + + + + Occurs when drag feedback is needed for a node. + + + + + Occurs when nodes are needed in load on demand hierarchy + + + + + Occurs after a node is removed. + + + + + Occurs after a node is being added. + + + + + Gets or sets the default sort Comparer for RadTreeView. The default comparer compares the nodes according to their text. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether the TreeView load child Nodes collection in NodesNeeded event only when Parend nodes expanded. + + true if [lazy mode]; otherwise, false. + + + + Gets or sets a value indicating whether the child nodes should be auto checked when RadTreeView is in tri state mode + + The default value is false. + + + + Contains data binding settings for related data. + + + + Gets or sets the type of the expand animation enumeration. + AllowPlusMinusAnimation enumeration + PlusMinusAnimationStep Property + ExpandAnimation Enumeration + + + The default value is ExpandAnimation.Opacity. + + + + Gets or sets the opacity animation step for expand/collapse animation. + + Returns a double value from double.Epsilon to 1 representing the opacity changing step with + which the plus minus buttons are animated. The default value is 0.025. + + + + + Gets or sets a value indicating whether animation of collapse/expand images is enabled. + + ShowExpanCollapse Property + PlusMinusAnimationStep Property + The default value is false. + + + + The default image index for nodes. + + The index of the image. + + + + The default image key for nodes. + + The image key. + + + + + Gets or sets a value indicating whether [tri state mode]. + + true if [tri state mode]; otherwise, false. + + + + Gets or sets the toggle mode. + + The toggle mode. + + + + Gets or sets the drag drop service used when dragging nodes within RadTreeView or between different instances of RadTreeView. + + The drag drop service. + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where an item will be dropped after a drag operation. + + + + + Gets the last node. + + The last node. + + + + Gets or sets a value indicating whether [allow drag drop]. + + true if [allow drag drop]; otherwise, false. + + + + Gets or sets a value indicating whether [multi select]. + + true if [multi select]; otherwise, false. + + + + Gets or sets a value indicating whether [show expander]. + + true if [show expander]; otherwise, false. + + + + Gets the selected nodes. + + The selected nodes. + + + + Gets the checked nodes. + + The checked nodes. + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating whether [check boxes]. + + true if [check boxes]; otherwise, false. + + + + Gets or sets a value indicating whether [hide selection]. + + true if [hide selection]; otherwise, false. + + + + Gets or sets a value indicating whether [hot tracking]. + + true if [hot tracking]; otherwise, false. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets the active editor. + + The active editor. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets the default RadTreeNode edit mode. + + The edit mode. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets a value indicating whether there is an open editor in the tree view. + + + + + Gets or sets the selected node. + + The selected node. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets a value indicating whether [show root lines]. + + true if [show root lines]; otherwise, false. + + + + Gets or sets a value indicating whether [show node tool tips]. + + true if [show node tool tips]; otherwise, false. + + + + Gets the first visible tree node in the tree view. + + + + + Gets or sets the color of the lines connecting the nodes in the tree view. + + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Dot. + + + + + Gets the number of tree nodes that are visible in the tree view + + + + + Gets or sets the path separator. + + The path separator. + + + + Gets or sets the tree node provider. + + The tree node provider. + + + + Gets or sets the binding context. + + The binding context. + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets the nodes. + + The nodes. + + + + Gets or sets the indent of nodes, applied to each tree level. + + + + + Gets or sets the filter. + + The filter. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a property name which will be used to extract a value from the data items. The value of the property with + this name will be available via the Value property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to extract the checked state of the data items. The value of the property with + this name will be available via the Checked property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the text of the data items. The value of the property with + this name will be available via the Text property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets the expand image + + + + + Gets or sets the expand image + + + + + Gets or sets the hovered expand image + + + + + Gets or sets the hovered collapse image + + + + + Gets or sets a value indicating whether nodes can have different height. + + The default value is false. + + + + Gets or sets a value indicating whether to select the full row. + + The default value is false. + + + + Gets or sets the vertical spacing among nodes. + + + + + Gets or sets the alternating row color. + + + + + Gets or sets a value indicating whether to show rows with alternating row colors. + + + + + Gets the index of the first visible node. + + + + + Gets or sets a value indicating whether single node expand is enabled. + + + + + Gets or sets a property that controls the visibility of the horizontal scrollbar. + + + + + Gets or sets a property that controls the visibility of the vertical scrollbar. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether to scroll horizontally RadTreeView to ensure that the clicked node is visible. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Provides a callback so that the default filtering expression parser can be substituted. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadTreeViewElement is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Gets or sets the expand timer interval - this is the interval of time in milliseconds which will pass before a hovered node is being expanded during drag and drop operation. + + + The expand timer interval. + + + + + Builds the tree based on the collection of filter descriptors. + + + + + Applies the filter to the DataSource. + + + + + Adds child nodes, based on the given filter descriptor and its child descriptors. + + The filter. + The node, that will be the parent of created nodes. + + + + Removes the child node. + + The node to remove. + + + + Removes the child node. + + The parent node. + The child node. + + + + Clears the child nodes of given group node. + + The node. + + + + Validates if adding new node is allowed. + + + + + Gets the default name of field property. + + + + + Updates the value and operator of the descriptor. + + The descriptor. + + + + Gets the field names. + + + + + Gets the type of the editor. + + Type of the value. + + + + + Puts the current node in edit mode. + + + + + Ends the init. + + + + + Normalizes the expression. + + + + + Normalizes the child descriptor. + + The composite descriptor. + + + + Called when [editor required]. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Setups the drop down list. + + The criteria node. + The editor. + The display value. + + + + Gets the editor. + + Type of the editor. + + + + + Initializes the editor. + + Type of the value. + The editor. + + + + Gets the type of the field by given property name. + + Name of the property. + + + + Initializes the spin editor. + + The spin editor. + Type of the value. + + + + Saves the editor value. + + The node element. + The new value. + + + + Gets the designer host. + + + + + Updates the nodes collection by removing all the nodes that does not have corresponding property name in the Descriptors collection. + + + + + Gets or sets the provider. + + The provider. + + + + Gets or sets the data source that the is displaying filters for. + + + + + Gets or sets the expression. + + The expression. + + + + A collection of descriptor items used to identify the property names and their corresponding types. + + + + + Gets or sets the auto generate descriptor items. + + The auto generate descriptor items. + + + + Gets or sets a value indicating whether the name of fields in fields drop down should be sorted. + + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow drag drop]. + + true if [allow drag drop]; otherwise, false. + + + + Gets or sets the default date editor format. + + The default date editor format. + + + + Gets or sets the default custom date editor format. + + The default custom date editor format. + + + + Represents a to be used in control. + + + + + Represents an item of which can have an associated control. + Responsible for arranging the associated control within the . + Can display a text in addition to the control. + + + + + Gets the rectangle in which the text part will be arranged. + + The client area of the item. + The arrange rectangle of the text part. + + + + Gets the rectangle in which the associated control will be arranged. + + The client area of the item. + The arrange rectangle of the control. + + + + Updates the bounds of the associated control. + + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the proportional size of the text part which will be used + when TextSizeMode is set to proportional. + + + + + Gets or sets the fixed size of the text part which will be used + when TextSizeMode is set to fixed. + + + + + Gets or sets the minimum size of the text part. + + + + + Gets or sets the maximum size of the text part. + + + + + Gets or sets the way in which the text part will be sized - proportionally or fixed-size. + + + + + Gets or sets the control associated with this item. + + + + + Gets the arrange rectangle of the validation text label. + + The client rectangle of the item. + The arrange rectangle of the validation label. + + + + Gets or sets the fixed size of the validation label. If set to 0, the text will be autosized. + + + + + Gets the validation label element. + + + + + An extension of the which adds data binding functionality. + When set with a DataSource, RadDataLayout automatically generates editors for each + of the fields in the datasource. Provides validation functionality and additional + interface for displaying validation messages. + + + + + Initializes a new instance of the class. + + + + + Initializes the and the ValidationPanel + + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Updates the validation panel visibility. + + + + + Gets the instance of which is the main element + in the hierarchy tree and encapsulates the actual functionality of RadDataLayout. + + + + + Gets or sets the DataSource. Setting the DataSource will auto-generate editors + for the fields in it. + + + + + Gets or sets the number of columns which will be used to arrange generated controls. + + Number Of Columns should be at least one + + + + Gets the validation panel. + + + + + Gets the inner . + + + + + Gets or sets a value indicating whether the validation panel should appear. + + + + + Gets or sets a value indicating the flow direction of generated editors when the ColumnCount property has value bigger than 1. + + + + + The ItemDefaultHeight property sets the height that generated items should have. + + + + + Gets the BindingManagerBase manager that is used to manage the current DataSource. + + + + + If [true], the labels will have a fixed size, best-fitted to the largest text in the column. + If [false], the labels will have their default proportional size. + + + + + Gets the current object. + + + + + Occurs when the value of editor is changed. + + + + + Occurs when the value of editor is about to change. + + + + + Occurs when editor is being initialized. This event is cancelable + + + + + Occurs when the editor is Initialized. + + + + + This event is firing when the item associated with a given field is about to be Initialized. This event is cancelable.. + + + + + Occurs the item is already Initialized. + + + + + Occurs when a binding object for an editor is about to be created. This event is cancelable. + + + + + Occurs when binding object is created. + + + + + Gets the margin around the client area of the control. + In the default case, this should be the border thickness. + + + + + The main element of control. Handles the logic of creating and arranging items + when the control is databound. + + + + + The error icon property + + + + + Initializes the fields. + + + + + Binds this instance. + + + + + Clears this instance. + + + + + Initializes the data entry. + + + + + Finds the required properties. + + + + + Arranges the controls. + + + + + Creates a control with the specified type for a given property. + + The property. + The suggested editor type. + A Control instance. + + + + Generates the controls run time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Generates the controls design time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Creates the binding. + + The control. + Name of the property. + The data member. + Binding. + + + + Arranges the labels. + + + + + Gets the suggested editor type for the specified property type. + + The property type. + The type of the suggested editor. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + The ItemDefaultHeight property sets the height that generated items should have. + + + + + Gets or sets the number of columns which will be used to arrange generated controls. + + Number Of Columns should be at least one + + + + Gets or sets a value indicating the flow direction of generated editors when the ColumnCount property has value bigger than 1. + + + + + If [true], the labels will have a fixed size, best-fitted to the largest text in the column. + If [false], the labels will have their default proportional size. + + + + + Gets or sets the data source. + + + + + Gets the current object. + + + + + Gets the manager. + + + + + Gets or sets the icon of the Error provider. + + The error icon. + + + + Represents a data entry. The RadDataEntry class is essentially a simple wrapper + for the RadScrollablePanelElement. All UI and + logic functionality is implemented in the + RadScrollablePanelElement class. The RadDataEntry acts + to transfer the events to and from its corresponding + RadScrollablePanelElement instance. The + RadScrollablePanelElement may be nested in other + telerik controls. + + + + + The validation panel + + + + + The show validation panel + + + + + Initializes a new instance of the class. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Creates the panel element. + + RadScrollablePanelElement. + + + + Creates the controls instance. + + Control.ControlCollection. + + + + Wires the events. + + + + + Unwires the events. + + + + + This method initializes the scrollbars and the + container control. + + + + + This method inserts the scrollbars and the container + in the Controls collection of this control. + + + + + Handles the ControlRemoved event of the ValidationPanel control. + + The source of the event. + The instance containing the event data. + + + + Handles the ControlAdded event of the ValidationPanel control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemValidated event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemValidating event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the BindingCreated event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the BindingCreating event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the EditorInitialized event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the EditorInitializing event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemInitializing event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemInitialized event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Updates the validation panel visibility. + + + + + Gets or sets whether the edit control is auto-sized + + true if [automatic size]; otherwise, false. + + + + Gets the default size of the control. + + The default System.Drawing.Size of the control. + The default Size of the control. + + + + Gets the instance of RadDataEntryElement wrapped by this control. RadDataEntryElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDataEntry. + + The data entry element. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets a value indicating whether the amount of columns that RadDataEntry will use to arrange generated controls. + + The number of columns. + + + + Gets or sets a value indicating whether the generated editors should fit their width to width of the RadDataEntry. + + true if [fit to parent width]; otherwise, false. + + + + Gets the validation panel. + + The validation panel. + + + + Gets or sets a value indicating whether [show validation panel]. + + true if [show validation panel]; otherwise, false. + + + + Gets or sets a value indicating whether generating flow of editors when the ColumnCount property has value bigger than 1. + + The flow direction. + + + + Gets or sets the between the generated items. + + The item space. + + + + The ItemDefaultSize property sets the size that generated items should have if FitToParentWidth property has value false. + When property the FitToParentWidth has value true the width of items are calculated according the width of the RadDataEntry + + The default size of the item. + + + + Gets the BindingManagerBase manager that is used for current DataSource. + + The manager. + + + + In RadDataEntry control there is logic that arranges the labels of the editors in one column according to the longest text. + This logic can be controlled by the AutoSizeLabels property. + + true if [resize labels]; otherwise, false. + + + + Gets the current object. + + The current object. + + + + Occurs when the value of editor is changed. + + + + + Occurs when the value of editor is about to change. + + + + + Occurs when editor is being initialized. This event is cancelable + + + + + Occurs when the editor is Initialized. + + + + + This event is firing when the panel that contains the label, editor and validation label is about to be Initialized. This event is cancelable.. + + + + + Occurs the item is already Initialized. + + + + + Occurs when a binding object for an editor is about to be created. This event is cancelable. + + + + + Occurs when binding object is created. + + + + + This class represents the main element of the + control. This element contains + a + and a . + + + + + Creates an instance of the RadPanelElement class. + + + + + Gets an instance of the + class which represents the text of the panel. + + + + + Gets an instance of the class + which represents the border of the panel. + + + + + Gets an instance of the + class which represents the fill of the panel. + + + + + Creates an instance of the + class. This constructor is used by the Visual Studio Designer. + + + + + Creates an instance of the class. + + An instance of the + class which represents the owner of this container. + + + + Class RadDataEntryElement. + + + + + The error icon property + + + + + Initializes the fields. + + + + + Binds this instance. + + + + + Clears this instance. + + + + + Initializes the data entry. + + + + + Finds the required properties. + + + + + Arranges the controls. + + + + + Creates the enum. + + The property. + Control. + + + + Creates the text box. + + The property. + Control. + + + + Creates the image. + + The property. + Control. + + + + Creates the color. + + The property. + Control. + + + + Creates the boolean. + + The property. + Control. + + + + Creates the date time. + + The property. + Control. + + + + Generates the controls run time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Generates the controls design time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Setups the inner controls. + + The pair. + Size of the property item control. + The property item control location. + The property item container. + The label control. + The validation control. + The editor control. + + + + Arranges the labels. + + + + + Creates the binding. + + The control. + Name of the property. + The data member. + Binding. + + + + Converts the image to icon. + + The image. + Icon. + + + + Clears the borders. + + + + + Handles the Validated event of the control control. + + The source of the event. + The instance containing the event data. + + + + Handles the Validating event of the control control. + + The source of the event. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Gets or sets a value indicating whether the amount of columns that RadDataEntry will use to arrange generated controls. + + The number of columns. + Number Of Columns should be at least one + + + + Gets or sets a value indicating whether generating flow of editors when the ColumnCount property has value bigger than 1. + + The filling order. + + + + Gets or sets the between the generated items. + + The item space. + + + + Gets or sets a value indicating whether the generated editors should fit their width to width of the RadDataEntry. + + true if [fit to parent width]; otherwise, false. + + + + The ItemDefaultSize property sets the size that generated items should have if FitToParentWidth property has value false. When property the FitToParentWidth has value true the width of items are calculated according the width of the RadDataEntry + + The default size of the item. + + + + In RadDataEntry control there is logic that arranges the labels of the editors in one column according to the longest text. This logic can be controlled by the AutoSizeLabels property. + + true if [resize labels]; otherwise, false. + + + + Gets or sets the data source. + + The data source. + + + + Gets the current object. + + The current object. + + + + Gets the manager. + + The manager. + + + + Gets the type of the theme effective. + + The type of the theme effective. + + + + Gets the data entry control. + + The data entry control. + + + + Gets or sets the icon of the Error provider. + + The error icon. + + + + Class RadBindingNavigator. + + + + + Creates the element. + + An instance of . + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Propagete ThemeName to child bar's menu + + + + + Apllies the orientation to the control and its child elements. + + The orientation to apply + Indicates whether events should be fired + + + + Gets the binding navigator element. + + The binding navigator element. + + + + Gets or sets the binding source. + + The binding source. + + + + Gets or sets the count item format. + + The count item format. + + + + Gets or sets a value indicating whether the control will handle internally the creation of new items. + + true if [automatic handle add new]; otherwise, false. + + + + Gets the rows of the binding navigator. + + + + + Gets or sets which RadBindingNavigator borders are docked to its parent control and determines + how a control is resized with its parent. + + + One of the values. The default + is . + + + The value assigned is not one of the + values. + + 1 + + + + Gets the menu opened upon rightclick on the control. + + + + + Gets the width and height of a rectangle centered on the point the mouse button was pressed, within which a drag operation will not begin. + + + + + Gets or sets the orientation of the RadBindingNavigator - could be horizontal or vertical. + This property is controlled by the Dock property of the RadBindingNavigator control. + + + + + Occurs before the orientation is changed. + + + + + Occurs after the orientation is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs after a floating strip is docked. + + + + + Represents the RootElement of the RadBindingNavigator control. + + + + + Represents the main element of the RadCommandBar control. + Contains a collection of element. + + + + + Represents a base class for most of the elements. + + + + + Gets or sets the orientation of the element - colud be horizontal or vertical. + + + + + Gets or sets the name that is displayed in command bar dialogs and context menus. + + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is going to be floating. + True if the creating of a floating form should be canceled, False otherwise. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is made floating. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is going to be docked. + True if the docking of a floating form should be canceled, False otherwise. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that was docked. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Moves a specific to the upper . + + The element to move. + The that contains the element to move. + + + + Moves a specific to the lower . + + The element to move. + The that contains the element to move. + + + + Saves the visual state of the to a specified file. + + The name of the destination file. + + + + Saves the visual state of the to a specified stream. + + The destination stream. + + + + Saves the visual state of the to a specified XmlWriter. + + The XmlWriter to save the visual state data. + + + + Loads the visual state of the from a specified file. + + The name of the file containing the visual state data. + + + + Loads the visual state of the from a specified stream. + + The source stream. + + + + Loads the visual state of the from a specified XmlReader. + + The XmlReader to read the visual state data. + + + + Creates a floating form of a specified . + + The strip element of which the floating form should be created. + The that contains the strip element. + The initial location of the floating form. + + + + Creates an XmlDocument containing the current visual state data of the . + + The created document. + + + + Restores the visual state of the from the specified XmlDocument. + + The document containing the visual state data. + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs when a floating strip is docked. + + + + + Gets the object that provides information about strips owned by the . + + + + + Gets or sets the size in pixels when current strip is being Drag and Drop in next or previous row + + + + + Gets or sets the orientation of the . + + + + + Gets the rows of the . + + + + + Allows inheritors to provide custom load logic. + + + + + Maps the controls. + + + + + Adds the standard items. + + + + + Disposes the managed resources of this instance. + + + + + Creates the first top strip element child elements. + + + + + Creates the second bottom strip element child elements. + + + + + Attaches the events. + + + + + Unwires the buttons and text box events. + + + + + Raises the standard .NET PropertyChanged event. + + The instance containing the event data. + + + + Handles the Click event of the FirstButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the PreviousButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the NextButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the LastButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the KeyDown event of the currentNumberTextBox control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the DeleteButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the AddNewButton control. + + The source of the event. + The instance containing the event data. + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Binds this instance. + + + + + Updates the visibility. + + + + + Updates the text box. + + + + + Updates the label text. + + + + + Updates the add new button visibility. + + + + + Gets or sets the command bar row element. + + The command bar row element. + + + + Gets the first top strip element. + + The first top strip element. + + + + Gets or sets the first button. + + The first button. + + + + Gets or sets the previous button. + + The previous button. + + + + Gets or sets the current number text box. + + The current number text box. + + + + Gets or sets the page label. + + The page label. + + + + Gets or sets the next button. + + The next button. + + + + Gets or sets the last button. + + The last button. + + + + Gets or sets the second bottom strip element. + + The second bottom strip element. + + + + Gets or sets the add new button. + + The add new button. + + + + Gets or sets the delete button. + + The delete button. + + + + Gets or sets the binding source. + + The binding source. + + + + Gets the type of the theme effective. + + The type of the theme effective. + + + + Gets or sets the image of the button that navigates to the first item. + + The first item button image. + + + + Gets or sets the image of the button that navigates to the previous item. + + The previous item button image. + + + + Gets or sets the image of the button that navigates next item. + + The next item button image. + + + + Gets or sets the image of the button that navigates to the last item. + + The last item button image. + + + + Gets or sets the image of the button that adds new item. + + The add new button image. + + + + Gets or sets the image of the button that deletes the current item. + + The delete button image. + + + + Gets or sets the count item format. + + The count item format. + + + + Gets or sets a value indicating whether the control will handle internally the creation of new items. + + true if adding new items is handled by the binding navigator; otherwise, false. + + + + Enumerate the which part will be included when checking for NullValue. + + + + + Only Date + + + + + Only Time + + + + + Both + + + + + Represents an arrow button element. Each telerik control has a + corresponding tree of RadElements; the RadArrowButtonElement can be nested + in other telerik controls. + + + + Gets the default size of the + + + Gets or sets the + %arrow direction:Telerik.WinControls.Primitives.ArrowPrimitive.ArrowDirection%. + + + Gets the BorderPrimitive object. + + + Gets the FillPrimitive object. + + + Gets the ArrowPrimitive object. + + + + If set to true shows and OverflowPrimitive instead of an ArrowPrimitive. + + + + + This class represents the dialog form shown to the user when they drop + a RadRibbonBar control on a RadForm control in the Visual Studio designer. + + + + + Creates an instance of the RadFormDesignerRibbonDialog + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + This is a base class for a behavior that can be associated with a + RadFormControlBase instance. The behavior defines the behavior and appearance of the form. + + + + + Creates an instance of the RadFormBehaviorBase class. + This instance has no Form associated with it. + + + + + Creates an instance of the RadFormBehaviorBase class. + + + An implementation of the IComponentTreeHandler which + this behavior applies to + + + + Creates an instance of the RadFormBehavior class. + + + An implementation of the IComponentTreeHandler which + this behavior applies to + + + + + Occurs when a form is associated with the behavior. + + + + + Gets the RadElement instance that represents the root element + containing the hierarchy that builds the visual appearance of the form. + + + + + Determines whether the CreateChildItems call is + routed to the handler of the behavior. + Used by the RadFormControlBase class. + + + + + Gets the width of the form border + + + + + Gets the height of the caption that is drawn + by the behavior. + + + + + Gets the margin that describes the size and position + of the client area. + + + + + A class that represents a border for a Form which is built by images. + + + + + Gets a Padding object that represents + the left, top, right and bottom width of the border. + + + + + Gets or sets the left Image which represents the + transition between the image border and the + title bar element. + + + + + Gets or sets the right Image which represents the + transition between the image border and the + title bar element. + + + + + Gets or sets the texture for the left image border. + + + + + Gets or sets the texture for the bottom image border. + + + + + Gets or sets the texture for the right image border. + + + + + Gets or sets the image for the bottom left border corner. + + + + + Gets or sets the image for the bottom right border corner. + + + + + This class represents the root element of a RadFormControlBase Element Tree. + This class is needed because some extended region calculations are needed when the control + is a Form and shape is applied to it. + + + + + Creates an instance of the FormRootElement class. + + The RadFormControlBase which is owner of this root element + + + + A standard behavior for RadForm. + + + + + This class represents a base class for all behaviors that + modify the non-client area of the form and enable custom painting + in it. + + + + + Creates an instance of the ThemedFormBehavior class. + + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + A flag that determines whether the CreateChildItems + call is rerouted to the behavior. + + + + This method transforms screen coordinates + into local coordinates. + + The screen point to transform. + The transformed point. If the handle of the associated Form is + not created, the method returns the input. + + + + This method returns the maximum available height according + to the current position of the form in multi-monitor setup. + + + + + + Fires when the window state of the form is changed. Uses the SIZE_* values + to define the window states. + + The old window state of the form. + The new window state of the form + + + + Immediately refreshes the whole non-client area of the form + which this behavior is associated with. + + + + + Invalidates the specified bounds in the non-client area + of the form this behavior is associated with. + + + + + + This event is fired when the WM_GETMINMAXINFO message is sent to the form. + + Contains information about the position, maximum/minimum size of the form etc. + Can be modified to adjust the settings applied to the form. + + + + This event is fired when the WM_NCPAINT message is sent to the form. + + The NC Graphics. + + + + Paints an element on a specified graphics. + + The Graphics object to paint on. + The clipping rectangle. + The element to paint. + + + + Gets a bool value that determines whether the Form's window state is maximized. + + + + + Gets a bool value that determines whether the Form's window state is minimized. + + + + + Gets a boolean value that determines whether the Form's window state is normal. + + + + + Gets an integer value that determines the current Form state: + Possible values come from the SIZE_RESTORED, SIZE_MAXIMIZED, SIZE_MINIMIZED win32 constants. + + + + + Gets a boolean value showing whether a MDI child form is maximized. + + + + + Gets the MdiClient control of the Form. + Returns null if the Form is not MdiContainer. + + + + + Gets a boolean value determining whether there is a Menu in the Form. + + + + + Gets the maximized MDI child if any. + + + + + This rectangle represents the top sizing frame of a window. + + + + + This rectangle represents the topleft sizing corner of a window. + + + + + This rectangle represents the left sizing frame of a window. + + + + + This rectangle represents the bottomleft sizing corner of a window. + + + + + This rectangle represents the bottom sizing frame of a window. + + + + + This rectangle represents the bottomright sizing corner of a window. + + + + + This rectangle represents the right sizing frame of a window. + + + + + This rectangle represents the topright sizing corner of a window. + + + + + This rectangle represents the caption frame of a window. + + + + + This rectangle represents the left border frame of a window. + + + + + This rectangle represents the bottom border frame of a window. + + + + + This rectangle represents the right border frame of a window. + + + + + This rectangle represents the client rectangle of a window. + + + + + Gets the rectangle that contains the menu of the form. + + + + + Gets the rectangle that contains the system buttons of the form. + + + + + Gets the rectangle that contains the form's icon. + + + + + Gets the rectangle that contains the form's caption text. + + + + + Gets or sets a bool value indiciating + whether the behavior applies NC theming + to the form. + + + + + Gets the current form CreateParams settings. + + + + + Gets or sets the form associated with this behavior. + Used only in design-time. + IMPORTANT: This property can be assigned only one time. + An InvalidOperationException is thrown when the property + is assigned more than once. + + + + + Creates an instance of the RadFormBehavior class. + This instance has no Form associated with it. + + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + A flag that determines whether the CreateChildItems + call is rerouted to the behavior. + + + + Calculates the bounding rectangle of the vertical scrollbar. + + An instance of the Rectangle struct that represents + the position and the size of the vertical scrollbar + + + + Calculates the bounding rectangle of the horizontal scrollbar. + + An instance of the Rectangle struct that represents + the position and the size of the horizontal scrollbar. + + + + This method synchronizes the values of the standard vertical scrollbar + with the RadScrollBarElement in the Form's element hierarchy. + + + + + This method synchronizes the values of the standard horizontal scrollbar + with the RadScrollBarElement in the Form's element hierarchy. + + + + + Gets the Caption Height according to the Styles applied and + the current state of the form. + + A value representing the height of the caption. + + + + Gets a Padding object which represents the window NC margin according + to the currently set styles. + + The form NC margin. + + + + Calculates the client margin based on the current form and form element settings + + + + + + This method translates a point which is in client coordinates + to a point in NC coordinates. Used when the Form has captured the mouse + and NC mouse events have to be processed. + + A point in client coordinates. + The point in NC coordinates. + + + + Fires when a Form has been associated with the behavior. + + + + + This method adjusts the Element tree according + to the current AllowTheming property value. + If AllowTheming is true, the Element tree is painted, + otherwise not. + + + + + Changes the visibility of the separate items within the RadFormElement's element tree + according to the current Form state. + + The state of the Form as it comes from the WM_SIZE message + + + + This method adjusts the FormElement according to the styles currently applied to the Form. + For example, the MinimizeButton, MaximizeButton and CloseButton in the Title Bar are enabled/disabled + according to whether the corresponding window style is applied. + + + + + Gets the bounding rectangle of the sizing grip that appears + when both scrollbars are visible. + + + + + Gets the bounding rectangle of the horizontal scrollbar. + Returns an empty rectangle if the scrollbar is not visible. + + + + + Gets the bounding rectangle of the vertical scrollbar. + Returns an empty rectangle if the scrollbar is not visible. + + + + + Gets or sets a boolean value indicating + whether the behavior paints in the NC area of the + Form when OS is Vista or later and Composition is enabled. + + + + + Gets the Caption Height of the Form. + + + + + Gets the Border width of the Form. + + + + + Gets the margin that determines the position and size of the client + area of the Form. + + + + + A Delegate which is used for invoking the base implementation of WndProc of this form. + + + + + + This is the class that represents the element hierarchy which + is painted in the non-client area of a RadForm. + + + + + Gets or sets a boolean value to determine whether the form + should appear as active or inactive. + Using this property, you can override the default theme styles + which define different appearance of the form when in active/inactive state. + + + + + Gets the square element that appears at the end of the horizontal + scrollbar. + + + + + Gets the composed width of the border + built on the width of the line and image borders. + + + + + Gets the MdiControlStrip item that should appear + below the title bar when a MDI child is maximized. + + + + + Gets the BorderPrimitive of the RadFormElement. + + + + + Gets the FormImageBorderPrimitive of the RadFormElement. + + + + + Gets the RadFormTitleBarElement of the RadFormElement. + + + + + Gets the horizontal scrollbar element of the form element. + + + + + Gets the vertical scrollbar element of the form element. + + + + + Gets an instance of the + class that represents the fill of the MDI strip. + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + Gets the ImagePrimitive representing the Icon + of the currently maximized MDI child. + + + + + This class represents a Form that hosts a RadRibbonBar control and extends the behavior + of a standard form by providing Office 2007 form-like appearance. + + + + + Gets the RadRibbonBar control associated with this form. + + + + + Gets or sets a boolean value that determines + whether Vista Aero effects are enabled. + + + + + Creates an instance of the class. + + + + + Creates an instance of the class. + The implementation + which this behavior is associated with. + + + + + Creates an instance of the class. + + The associated implementation. + Determines whether the behavior + handles the CreateChildItems call. + + + + This method adjusts the form's element tree according to the composition state + of MS Windows. If Composition is enabled, the element tree is hidden and the glass + effects of the form are visible. + + + + + This method translates a point which is in client coordinates + to a point in NC coordinates. Used when the Form has captured the mouse + and NC mouse events have to be processed. + + A point in client coordinates. + The point in NC coordinates. + + + + Returns a zero for the caption height. + + + + + Gets an integer representing the top client margin of + the form when composition is enabled. + + + + + Gets a boolean value indicating whether composition effects + are enabled for the form. + + + + + Gets a value indicating whether composition effects are enabled for the Operating System. + + + + + Gets or sets value indicating whether the RadRibbonBar + is drawn over the Aero glass under Vista or later + versions of Windows. + + + + + This class serves as a dummy MenuStrip used by the RadRibbonFormBehavior + to prevent the default MDI caption from being painted when a MDI child is maximized + since the RadRibbonBar controls takes care to handle MDI children. + + + + + A class that represents the Border Primitive used in the new RadRibbonForm. + + + + + Gets or sets the color of the form's first broder. + + + + + Gets or sets the color of the form's second broder. + + + + + Gets or sets the color of the form's client area shadow. + + + + + This is the class that represents the element hierarchy which + is painted in the non-client area of a RadForm. + + + + + Gets the BorderPrimitive of the RadFormElement. + + + + + Represents a title bar element. All logic and UI functionality + is implemented in the RadFormTitleBarElement class. + You can use RadFormTitleBarElement events to substitute the title bar in a + borderless application. + + + + + Represents a title bar element. The RadTitleBar class is a simple + wrapper for the RadTitleBarElement class. The former acts to transfer events to and + from its corresponding RadTitleBarElement instance. All logic and UI functionality + is implemented in the RadTitleBarElement class. + You can use RadTitleBarElement events to substitute the title bar in a + borderless application. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Determines whether the parent form can be resized by dragging the title bar's edges. + + + + + Determines whether the parent form can be moved by dragging the title bar. + + + + + Fires when a close action is performed by the user (the close button is pressed + or the system menu is pressed twice). The system menu is not visible by default. + Use the Visual Style Builder to set which elements are visible and to change their + appearance. + + + + + Fires when a minimize action is performed by the user + + + + + Fires when a maximize/restore action is performed by the user (maximizes button + is pressed or the title bar is double clicked). + + + + + An Icon that represents the icon for the form. + + + + + Represents the default context menu for a . + + + + + Initializes a new instance of the class. + + The RadGanttView element. + + + + Raises the DropDownOpening event. + + The event arguments + + + + Called when the Add menu item is clicked. + + The menu item. + + + + Called when the Delete menu item is clicked. + + The menu item. + + + + Called when one of the Progress menu items is clicked. + + The menu item. + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Gets the add menu item. + + + The add menu item. + + + + + Gets the add child menu item. + + + The add child menu item. + + + + + Gets the add sibling menu item. + + + The add sibling menu item. + + + + + Gets the delete menu item. + + + The delete menu item. + + + + + Gets the progress menu item. + + + The progress menu item. + + + + + Gets or sets a value indicating whether progress menu items should be shown. + + + true if progress menu items should be shown; otherwise, false. + + + + + Gets or sets the step by which the progress values will increment. + + + The progress step. + + + + + Represents a menu item for the . + + + + + Initializes a new instance of the class. + + The command. + The text. + + + + Gets the command of this menu item. + + + The command. + + + + + Represents an abstract class containing the methods needed to be implemented so one can populate a + + + + + Initializes a new instance of the class. + + The gantt. + + + + Gets the items. + + + + + + Sets the current. + + The GanttView data item. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets the Gantt view. + + The Gantt view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Represents a class that describes the relations used to extract data from a data source to populate a . + + + + + Gets or sets the name of the relation. + + The name of the relation. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets the tasks data member. + + The data member. + + + + Gets or sets the links data member. + + The data member. + + + + Gets or sets the title member. + + The title member. + + + + Gets or sets the parent member. + + The parent member. + + + + Gets or sets the child member. + + The child member. + + + + Gets or sets the start member. + + The start member. + + + + Gets or sets the end member. + + The end member. + + + + Gets or sets the progress member. + + The progress member. + + + + Gets or sets the link start member. + + The link start member. + + + + Gets or sets the link end member. + + The link end member. + + + + Gets or sets the link type member. + + The link type member. + + + + Represents the converter used to convert the type of the links from/to the data source format to/from the enumeration. + + + + + Converts the given value to a instance. + + The value. + + + + + Converts a instance to another type; + + Type of the link. + + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Represents the data item uses to represent the data it is displaying. + + + + + Initializes a new instance of the class. + + + + + Sets a boolean property. + + Name of the property. + The property key. + The new value. + + + + + Notifies the that the expanded property of this item changed. + + The item. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Expands this item. + + + + + Performs an update with the specified update actions. + + The update actions. + + + + Updates the parent item. + + + + + Sets the data bound item for this data item. + + if set to true the method assumes the data is set through data binding. + The value. + DataBoundItem can not be set explicitly in bound mode. + + + + Called when the Start property of a child item changes. + + The child item which Start changed. + + + + Called when the End property of a child item changes. + + The child item which End changed. + + + + Called when the Progress property of a child item changes. + + The child item which Progress changed. + + + + Called when a child item is added. + + The child item that is added. + + + + Called when a child item is removed. + + The child item that is removed. + + + + Called when the collection that will hold this children of this item is being created. + + + + + + Called when a child Start or End changes. + + + + + Called when a child progress changes. + + + + + Gets or sets the title. + + + The title. + + + + + Gets or sets the start. + + + The start. + + + + + Gets or sets the end. + + + The end. + + + + + Gets or sets the progress. + + + The progress. + + + + + Gets or sets a value indicating whether this is visible. + + + true if visible; otherwise, false. + + + + + Gets or sets the tag. + + + The tag. + + + + + Gets the child items of this item. + + + The child items. + + + + + Gets or sets a value indicating whether this instance is current. + + + true if this instance is current; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is selected. + + + true if this instance is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is enabled. + + + true if this instance is enabled; otherwise, false. + + + + + Gets the hierarchy level of this task. + + The level. + + + + Gets the parent of this data item. + + The parent. + + + + Gets the index of this item in its parent items collection. + + The index. + + + + Gets or sets a value indicating whether this item is expanded. + + + true if this item is expanded; otherwise, false. + + + + + Gets the next item. + + The next item. + + + + Gets the prev visible item. + + The prev visible item. + + + + Gets or sets a value indicating whether the item is read only. + + + true if the item is read only; otherwise, false. + + + + + Gets or sets the context menu associated to the item. + + + Returns an instance of RadDropDownMenu Class that + is associated with the node. The default value is null. + + RadContextMenu Property (Telerik.WinControls.UI.RadTreeView) + + This property could be used to associate a custom menu and replace the ganttview's + default. If the context menu is invoked by right-clicking an item, the ganttview's menu + will not be shown and the context menu assigned to this item will be shown instead. + + + + + Gets a value indicating whether this data item is used in the RadGanttView. + + + + + Gets the data bound item. + + + The data bound item. + + + + + Gets or sets the value within the specified column of this item. + + + The value. + + The column. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The owner. + + + + Refreshes this instance. + + + + + Gets the gantt view data item enumerator. + + + + + + Gets the gantt view data item enumerator. + + The position. + + + + + Gets the gantt view data item enumerator. + + The item. + + + + + Updates this instance. + + + + + Updates the view. + + + + + Inserts the item at the specified index. + + The index. + The item. + + + + + Sets the item at the specified index. + + The index. + The item. + + + + Removes the item at the specified index. + + The index. + + + + Removes all the items. + + + + + Raises the NotifyCollectionChanged event. + + The item. + + + + Raises the NotifyCollectionChanging event. + + The item. + + + + Raises the event. + + The instance containing the event data. + + + + Syncs the version of this collection with the binding provider. + + + + + Resets the version of this collection. + + + + + Gets the owner. + + The owner. + + + + Gets the gantt view. + + The tree view. + + + + Gets a value indicating whether the collection needs a refresh. + + + true if a refresh is needed; otherwise, false. + + + + + Gets a value indicating whether this instance is empty. + + + true if this instance is empty; otherwise, false. + + + + + Initializes a new instance of the class. + + The owner. + + + + Determines the index of a specific item. + + The object to locate. + + The index of if found in the collection; otherwise, -1. + + + + + Inserts an item to the collection at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the collection. + + + + Adds the item to the collection. + + The object to add. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + + + Removes all items. + + + + + Determines whether the collection contains a specific value. + + The object to locate. + + true if is found; otherwise, false. + + + + + Copies all items to the given array. + + The array. + Index of the array. + + + + Removes the first occurrence of a specific object. + + The object to remove. + + true if was successfully removed; otherwise, false. + + + + + Returns an enumerator that iterates through the collection. + + + An IEnumerator that can be used to iterate through the collection. + + + + + Gets the gantt view data item enumerator. + + + + + + Gets the gantt view data item enumerator. + + The position. + + + + + Gets the gantt view data item enumerator. + + The item. + + + + + Updates this instance. + + + + + + Updates the view. + + + + + + Gets or sets the element at the specified index. + + The index. + + + + + Gets the number of elements contained in this collection. + + + The number of elements contained in this collection. + + + + + Gets a value indicating whether ththis collection is read-only. + + true if this collection is read-only; otherwise, false. + + + + + Gets a value indicating whether this instance is attached. + + + true if this instance is attached; otherwise, false. + + + + + Gets a value indicating whether this instance is empty. + + + true if this instance is empty; otherwise, false. + + + + + Represents a data item used by to store links. + + + + + Raises the event. + + The name of the property that changed. + + + + Raises the event. + + The instance containing the event data. + + + + Sets the data bound item for this link. + + if set to true the method assumes the value is set through data binding. + The value. + DataBoundItem can not be set explicitly in bound mode. + + + + Gets or sets the start item for this link. + + + The start item. + + + + + Gets or sets the end item for this link. + + + The end item. + + + + + Gets or sets the type of this link. + + + The type of the link. + + + + + Gets the data bound item of this link. + + + The data bound item. + + + + + Gets the points wehre this link will be drawn. + + + The lines. + + + + + Gets the that owns this link. + + + The gantt view element. + + + + + Occurs when a property value changes. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The gantt view element. + + + + Refreshes this instance. + + + + + Syncs the version of this instance with the binding provider. + + + + + Resets the version of this instance. + + + + + Inserts the item at the specified index. + + The index. + The item. + + + + + Sets the item at the specified index. + + The index. + The item. + + + + Removes the item at the specified index. + + The index. + + + + Removes all the items. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the that owns this collection. + + + The gantt view element. + + + + + Gets a value indicating whether this instance needs refresh. + + + true if a refresh is needed; otherwise, false. + + + + + Represents a column shown in . + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The name. + + + + Initializes a new instance of the class. + + The name. + The header text. + + + + Initializes a new instance of the class. + + The name. + The header text. + Name of the field. + + + + Fires the PropertyChanged event. + + Name of the property. + + + + Updates the width. + + + + + Gets or sets the name of the column. + + + The name. + + + + + Gets or sets a value indicating the type of the data this column is displaying. + + + + + Gets or sets the tag of the column. + + + The tag. + + + + + Gets or sets the header text of the column. + + + The header text. + + + + + Gets or sets the name of the field used to populate this column + + + The name of the field. + + + + + Gets or sets the format string. + + + The format string. + + + + + Gets or sets a value indicating whether this is visible. + + + true if visible; otherwise, false. + + + + + Gets or sets a value indicating whether this is current. + + + true if current; otherwise, false. + + + + + Gets the that is the owner of this column. + + + The owner. + + + + + Gets or sets the width of the column. + + + The width. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the accessor of the column. + + + The accessor. + + + + + Occurs when a property value changes. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The owner. + + + + Adds a column with the specified name. + + The name. + + + + Adds a column with the the specified name and header text. + + The name. + The header text. + + + + Removes a column with the specified column name. + + Name of the column. + + + + Determines whether the collection contains a column with the specified column name. + + Name of the column. + + true if a column with the specified name is contained in the collection; otherwise, false. + + + + + Gets the index of the column with the specified name or -1 if the column is not found. + + Name of the column. + The index of the column if found otherwise returns -1. + + + + Adds the specified collection of columns to the collection. + + The columns. + + + + Adds the specified collection of columns to the collection. + + The columns. + + + + Renames the column with the specified name with the new name. + + The name. + The new name. + + + + Sets a unique name name to the column. + + The column. + + + + Gets a unique name for a column of the collection. + + A base name to use. + the unique name for the collection. + + + + Inserts the item. + + The index. + The column. + The approved action. + + + + Removes the item. + + The index. + + + + Clears the items. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the that owns this collection. + + + The owner. + + + + + Gets the with the specified column name. + + + The . + + Name of the column. + + + + + Defines the type of range the timeline of a will be displayed in. + + + + + Weeks view + + + + + Months view + + + + + Years view + + + + + Years view with half years for the sub items. + + + + + Years view with quarters for the sub items. + + + + + Days view + + + + + Days view with half hours for the sub items. + + + + + Days view with quarter hours for the sub items. + + + + + Hours view. + + + + + When this value is set the user is responsible for providing the items for the gantt timeline view. + + + + + Defines the type of the link a represents. + + + + + A finish to finish link. + + + + + A finish to start link. + + + + + A start to finish link. + + + + + A start to start link. + + + + + Defines when will enter edit mode. + + + + + Edit mode will begin on every click. + + + + + Edit mode will begin on second click. + + + + + Represents the event arguments for the CreateDataItem event of RadGanttView. + + + + + Gets or sets the data item. + + + The data item. + + + + + Represents the event arguments for the CreateLinkDataItem event of RadGanttView. + + + + + Gets or sets the link data item. + + + The link data item. + + + + + Represents the event arguments for an item event raised by RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Gets the item. + + + The item. + + + + + Represents the event arguments for the HeaderCellElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The cell element. + + + + Gets or sets the cell element. + + + The cell element. + + + + + Initializes a new instance of the class. + + The data item. + + + + Gets the data item. + + + + + Gets or sets the item element. + + + + + Represents the event arguments for a link event of RadGanttView. + + + + + Initializes a new instance of the class. + + The link. + + + + Gets the link. + + + The link. + + + + + Represents the event arguments of the ContextMenuOpening event of . + + + + + Represents the event arguments for a cancelable item event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Gets the item. + + + The item. + + + + + Initializes a new instance of the class. + + The item. + The menu. + + + + Gets or sets the menu. + + + The menu. + + + + + Represents the event arguments for the DataCellElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The cell element. + + + + Gets or sets the cell element. + + + The cell element. + + + + + Represents the event arguments for the EditorRequired event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + Type of the editor. + + + + Gets the current column of the item. + + + The column. + + + + + Gets or sets the editor that will be used for editing. + + + The editor. + + + + + Gets or sets the type of the editor. + + + The type of the editor. + + + + + Represents the event arguments for the ExpandedChanged event of RadGanttView. + + + + + Represents the event arguments for the ExpandedChanging event of RadGanttView. + + + + + Represents the event arguments for the GraphicalViewItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents the event arguments for the ItemAdded event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemAdding event of RadGanttView. + + + + + Initializes a new instance of the class. + + The data item. + + + + Represents the event arguments for the ItemChildIdNeeded event of . + + + + + Initializes a new instance of the class. + + The item. + + + + Gets or sets the child id that will be used to identify the item. + + + The child id. + + + + + Represents the event arguments for the ItemDataBound event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemDataError event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The error text. + The context. + + + + Gets the error text. + + + The error text. + + + + + Gets the context of the error. + + + The context. + + + + + Represents the event arguments for the ItemEdited event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The editor. + if set to true [commit]. + + + + Gets a value indicating whether the edit operation will be committed. + + + true if commit; otherwise, false. + + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the ItemEditing event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + The editor. + + + + Gets the column. + + + The column. + + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the EditorInitialized event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The editor. + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the ItemElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The view element. + + + + Gets the view element. + + + The view element. + + + + + Gets or sets the item element. + + + The item element. + + + + + Represents the event arguments of the ItemPaint event of . + + + + + Initializes a new instance of the class. + + The element. + The graphics. + + + + Gets the element which is painted. + + + The element. + + + + + Gets the graphics object used for drawing. + + + The graphics. + + + + + Represents the event arguments for the ItemRemoved event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemValidated event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + + + + Gets the column. + + + The column. + + + + + Represents the event arguments for the ItemValidating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + The new value. + The old value. + + + + Gets the column. + + + The column. + + + + + Gets the new value. + + + The new value. + + + + + Gets the old value. + + + The old value. + + + + + Represents the event arguments for the LinkAdded event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the even arguments for the LinkAdding event of RadGanttView. + + + + + Represents the event arguments for a cancelable link event of RadGanttView. + + + + + Initializes a new instance of the class. + + The link. + + + + Gets the link. + + + The link. + + + + + Initializes a new instance of the class. + + The link data item. + + + + Represents the event arguments for the LinkDataBound event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the LinkDataError event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The error text. + The context. + + + + Gets the error text. + + + The error text. + + + + + Gets the context of the error. + + + The context. + + + + + Represents the event arguments for the LinkRemoved event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the SelectedItemChanged event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the SelectedItemChanging event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the CellFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The cell element. + The column. + + + + Gets the column. + + + The column. + + + + + Gets the cell element. + + + The cell element. + + + + + Represents the event arguments for the ItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents the event arguments for the TimelineItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item. + + + The item. + + + + + Gets the item element. + + + The item element. + + + + + Localizes the strings in the control by using the current . + + + + + Loads the from the printed into the dialog + + The print settings. + + + + Loads the into the dialog. + + The print settings. + + + + Saves all settings form the dialog. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the settings edited in the dialog. + + + The print settings. + + + + + Displays a hierarchical collection of task items along with the relations between them. Each item is represented by a and each link is represented by a . + + + + + Creates the child items. + + The parent. + + + + Creates the . + + + + + + Determines whether the pressed key is input key. + + The key data. + + true if the pressed key is an input key; otherwise, false. + + + + + Disables all notifications in the RadGanttView + + + + + Ends the update. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Processes a dialog key. + + One of the values that represents the key to process. + + true if the key was processed by the control; otherwise, false. + + + + + Handles windows messages. + + The message. + + + + Hanles the windows message for showing the context menu. + + The m. + + + + Directly prints the to the default printer. + + + + + Directly prints the to the default printer or shows printer settings and then prints the . + + Indicates whether printer settings dialog should be shown. + + + + Directly prints the to the default printer or shows printer settings and then prints the . + + Indicates whether printer settings dialog should be shown. + As instance of used to control the print process. + + + + Shows a for editing the print settings. + + + + + Shows a for editing the print settings. + + As instance of used to control the print process. + + + + Called when the printing begins. + + The that has initiated the printing. + The event args. + + The number of pages that will be printed. + + + + + Called when the printing ends. + + The that has initiated the printing. + The event args. + + false if the printing was canceled + + + + + Prints the page with the specified number. + + The number of the current page. + The that has initiated the printing. + The event args. + + true if there are more pages, false otherwise + + + + + Gets a print settings dialog that is specific for the printable object. + + The that has initiated the printing. + + The dialog. + + + + + Draws the current page by slicing a portion of the big bitmap. + + The graphics object. + The printed page. + + + + Draws the grid portion of the gantt view and the graphical view to the big bitmap. + + The BMP. + + + + Draws the grid cells and graphical tasks to the bitmap. + + The graphics. + + + + Draws the links to the bitmap. + + The g. + + + + Draws the header and the timeline view items to bitmap. + + The BMP. + + + + Draws the timeline items to bitmap. + + The g. + + + + Draws the header cells to bitmap. + + The g. + + + + Prints a gantt view element to the graphics object. + + The g. + The context. + The rect. + The text. + The data item. + + + + Gets the shape of an element based on the print context and the provided rectangle. + + The context. + The rect. + + + + + Gets an initialized print element based on the provided context. + + The context. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item that will be printed. + The index of the item in a flat representation of the items hierarchy. + + + + + Gets the link lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the start to start lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the start to finish lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the finish to start lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the finish to finish lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Gets the collection of links. + + + The links. + + + + + Gets the collection of task items. + + + The task items. + + + + + Gets the collection of columns shown in the . + + + The columns. + + + + + Gets or sets the ratio between the text view and the graphical view. + + + The ratio. + + + + + Gets or sets the height of the items. + + + The height of the item. + + + + + Gets or sets the height of the header row and the timeline container. + + + The height of the header. + + + + + Gets or sets the width of the splitter. + + + The width of the splitter. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets or sets a value indicating whether summary items are editable by the user or their value is auto-calculated from their sub items. + + + + + Gets or sets the gantt view behavior. + + + The gantt view behavior. + + + + + Gets or sets the drag drop service. + + + The drag drop service. + + + + + Gets or sets a link type converter that will be used to convert values coming from the data source to and vice versa. + + + The link type converter. + + + + + Gets or sets the selected item. + + The selected item. + + + + Gets or sets the current column. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the name of the list or table in the data source from which the will extract tasks data. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the title of the data items. + + + + + Gets or sets a property name which will be used to extract the start of the data items. + + + + + Gets or sets a property name which will be used to extract the end of the data items. + + + + + Gets or sets a property name which will be used to extract the Progress of the data items. + + + + + Gets or sets the name of the list or table in the data source from which the will extract links data. + + + + + Gets or sets a property name which will be used to extract links start item. + + + + + Gets or sets a property name which will be used to extract the links end item. + + + + + Gets or sets a property name which will be used to extract the link type of the data items. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether custom painting is enabled. + + + true if custom painting is enabled; otherwise, false. + + + + + Gets the default size of the control. + + + The default of the control. + + + + + Gets or sets the context menu associated with the control. + + + A that represents the context menu associated with the control. + + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets or sets a instance, which enables integration with other controls. + + + The data provider. + + + + + Gets or sets a instance, which hold the default print settings. + + + The print settings. + + + + + Gets or sets a value indicating whether the gantt view is read only. + + + true if the gantt view is read only; otherwise, false. + + + + + RadGanttView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadGanttView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs when an item needs an id for storing in data sources. + + + + + Occurs when an item is painted. Allows custom painting over the item. EnableCustomPainting must be set to true for this event to be fired. + + + + + Occurs when a context menu is about to be opened. + + + + + Occurs when a new data item is created. + + + + + Occurs when a new link data item is created. + + + + + Occurs before an is added to the Items collection. + + + + + Occurs before an is added to the Links collection. + + + + + Occurs when there is an error in the data layer of RadGanttView related to data operations with Item objects. + + + + + Occurs when there is an error in the data layer of RadGanttView related to data operations with Link objects. + + + + + Occurs when the selected item is about to be changed. + + + + + Occurs when selected item has been changed. + + + + + Occurs when an item is about to be expanded or collapsed. + + + + + Occurs after an item is expanded or collapsed. + + + + + Occurs when an item is data bound. + + + + + Occurs when a new item is added to the Items collection. + + + + + Occurs when an item removed from the Items collection. + + + + + Occurs when an item's property is changed. + + + + + Occurs when a link is data bound. + + + + + Occurs when a new link added to the Links collection. + + + + + Occurs when a link is removed from the Links collection. + + + + + Occurs when a new header cell element needs to be created. + + + + + Occurs when a new data cell element needs to be created. + + + + + Occurs when the content of a cell needs to be formatted for display. + + + + + Occurs when an item in the state changes and it needs to be formatted. + + + + + Occurs when the state of a timeline item changes and it needs to be formatted. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a link item in the changes and it needs to be formatted. + + + + + Occurs when an item element needs to be created. + + + + + Occurs when a timeline item element needs to be created. + + + + + Occurs when an element will be printed. Allows formatting of the element. + + + + + Occurs after an element is printed. Allows for custom painting over the element. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + + + + Creates the the . + + The gantt view. + + + + + Creates the . + + + + + + Creates the . + + The gantt view. + + + + + Performs an update according the specified update action. + + The update action. + + + + Performs an update according the specified update action. + + The update action. + The items. + + + + Updates the visual items in the gantt view + + Indicates the update action + Array representing the items which should be updated + + + + Updates the instance when an item expanded state changes. + + The item. + + + + + Updates the scrollers on add. + + The item. + + + + Updates the scrollers. + + The skip item. + The update action. + + + + Synchronizes all item elements. + + + + + Creates a new task. + + A new + + + + Creates a new link. + + A new + + + + Begins an update. + + + + + Ends an update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Processes the item for selection. + + The item. + + + + Processes the item as current. + + The item. + + + + + Ensures that the specified item is visible within the gantt view element, scrolling the contents of the element if necessary. + + The item to scroll into view + + + + Ensures the item is visible vertically. + + The item. + The item element. + + + + + Ensures the item visible vertically. + + The item. + + + + + Ensures that the specified item is visible within the gantt view element, scrolling the contents of the element if necessary. + This method expands parent items when necessary. + + The item to bring into view + + + + Clears the selection. + + + + + Puts the current item in edit mode. + + + + + + Commits any changes and ends the edit operation on the current item. + + + + + + Close the currently active editor and discard changes. + + + + + + Ends the editing of an item and commits or discards the changes. + + Determines if the changes are commited [true] or discarded [false]. + + + + + Gets the type of the editor to be used for editing the given item and column. + + The item. + The column. + + + + + Determines whether the given type is a numeric type. + + The type to check. + + true if the type is numeric; otherwise, false. + + + + + Gets an editor based on its type. + + Type of the editor. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Called when [selected item changed]. + + The item. + + + + Called when an item expanded is changing. + + The item. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Processes mouse down. + + The instance containing the event data. + + + + + Processes mouse move. + + The instance containing the event data. + + + + + Processes mouse up. + + The instance containing the event data. + + + + + Processes mouse click. + + The instance containing the event data. + + + + + Processes double click. + + The instance containing the event data. + + + + + Processes mouse enter. + + The instance containing the event data. + + + + + Processes mouse leave. + + The instance containing the event data. + + + + + Processes mouse wheel. + + The instance containing the event data. + + + + + Processes mouse hover. + + The instance containing the event data. + + + + + Processes key down. + + The instance containing the event data. + + + + + Processes key press. + + The instance containing the event data. + + + + + Processes key up. + + The instance containing the event data. + + + + + Gets or sets a value indicating whether summary items are editable by the user or their value is auto-calculated from their sub items. + + + + + Gets a value indicating whether the inks collection is populated. + + + true if this instance has links; otherwise, false. + + + + + Gets the collection of links. + + + The links. + + + + + Gets the collection of task items. + + + The task items. + + + + + Gets the . + + + The text view element. + + + + + Gets the . + + + The graphical view element. + + + + + Gets the . + + + The splitter element. + + + + + Gets the columns shown in the . + + + The columns. + + + + + Gets the root item for the gantt view hierarchye. + + + The root. + + + + + Gets or sets a value indicating whether custom painting is enabled. + + + true if custom painting is enabled; otherwise, false. + + + + + Gets or sets the ratio between the text view and the graphical view. + + + The ratio. + + + + + Gets or sets the minimum width of a column. + + + The minimum width of a column. + + + + + Gets or sets the height of the items. + + + The height of the item. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the height of the header row and the timeline container. + + + The height of the header. + + + + + Gets or sets the minimum length of the link. + + + The minimum length of the link. + + + + + Gets or sets the width of the splitter. + + + The width of the splitter. + + + + + Gets or sets the minimum width of a task when resizing it with the mouse. The size is in pixels and is for the current zoom. + + + The minimum width of the task. + + + + + Gets or sets a value indicating whether the gantt view is read only. + + + true if the gantt view is read only; otherwise, false. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets the active editor. + + + + + Gets or sets the begin edit mode. + + + The begin edit mode. + + + + + Gets or sets the drag drop service. + + + The drag drop service. + + + + + Gets or sets the gantt view behavior. + + + The gantt view behavior. + + + + + Gets the that is responsible for kinetic scrolling. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a link type converter that will be used to convert values coming from the data source to and vice versa. + + + The link type converter. + + + + + Gets or sets the selected item. + + The selected item. + + + + Gets or sets the current column. + + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets or sets the default sort Comparer for RadGanttView. The default comparer compares the items according to their start time. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the name of the list or table in the data source from which the will extract tasks data. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the title of the data items. + + + + + Gets or sets a property name which will be used to extract the start of the data items. + + + + + Gets or sets a property name which will be used to extract the end of the data items. + + + + + Gets or sets a property name which will be used to extract the Progress of the data items. + + + + + Gets or sets the name of the list or table in the data source from which the will extract links data. + + + + + Gets or sets a property name which will be used to extract links start item. + + + + + Gets or sets a property name which will be used to extract the links end item. + + + + + Gets or sets a property name which will be used to extract the link type of the data items. + + + + + Gets the binding provider. + + + The binding provider. + + + + + Gets the data item provider. + + + The data item provider. + + + + + Gets or sets a value indicating whether to disable ensure item visible horizontal. + + + true if ensure item visible horizontal is disabled; otherwise, false. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether the default context menu may be shown. + + + true if the default context menu may be shown; otherwise, false. + + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets or sets the BindingContext for the object. + + + + + Occurs when an item needs an id for storing in data sources. + + + + + Occurs when an item is painted. Allows custom painting over the item. EnableCustomPainting must be set to true for this event to be fired. + + + + + Occurs when a context menu is about to be opened. + + + + + Occurs when the binding context is changed. + + + + + Occurs when a new data item is created. + + + + + Occurs when a new link data item is created. + + + + + Occurs before an is added to the Items collection. + + + + + Occurs before an is added to the Links collection. + + + + + Fired when there is an error in the data layer of RadGanttView related to data operations with Item objects. + + + + + Fired when there is an error in the data layer of RadGanttView related to data operations with Link objects. + + + + + Occurs when the selected item is about to be changed. + + + + + Occurs when selected item has been changed. + + + + + Occurs when an item is about to be expanded or collapsed. + + + + + Occurs after an item is expanded or collapsed. + + + + + Occurs when an item is data bound. + + + + + Occurs when a new item is added to the Items collection. + + + + + Occurs when an item removed from the Items collection. + + + + + Occurs when an item's property is changed. + + + + + Occurs when a link is data bound. + + + + + Occurs when a new link added to the Links collection. + + + + + Occurs when a link is removed from the Links collection. + + + + + Occurs when a new header cell element needs to be created. + + + + + Occurs when a new data cell element needs to be created. + + + + + Occurs when the content of a cell needs to be formatted for display. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a timeline item changes and it needs to be formatted. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a link item in the changes and it needs to be formatted. + + + + + Occurs when an item element needs to be created. + + + + + Occurs when a timeline item element needs to be created. + + + + + Occurs when an editor is required to edit a cell the text view. + + + + + Occurs when an cell is about to be edited. + + + + + Occurs when an editor has been initialized. + + + + + Occurs when an item validating is edited and needs to be validated. + + + + + Occurs when an item is validated. + + + + + Occurs when an item has been edited. + + + + + Occurs when the root item is created. + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Represents a traverser which can traverse the hierarchical data structure of the data displayed by a . + + + + + Initializes a new instance of the class. + + The owner. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + + + + Moves to the previous. + + + + + + Moves to the last item. + + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Advances the enumerator to the next element of the collection. + + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Moves to the specified item. + + The item. + + + + + Moves to the next item. + + true if the move was successful; otherwise false + + + + Moves to the previous item. + + true if the move was successfull; otherwise false + + + + Gets the last visible item in the given parent children. + + The parent. + + + + + Gets or sets a value indicating whether the traverser will go through an item's children no matter if it is expanded or not. + + + true if traversing all items; otherwise, false. + + + + + Occurs when the traverser moves. + + + + + Gets or sets the position. + + + The position. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Represents the method that will handle events in . + + + + + + + Represents the event arguments for the Traversing event of a + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + true if GanttViewRowInfo is processed otherwise, false. + + + + Gets the row. + + The row. + + + + Represents a class that is responsible for handling all the input for a + + + + + Initializes a new instance of the class. + + + + + Represents the base item element for the graphical and text view elements of + + + + + Represents the base visual item for all elements in + + + + + Initializes the class. + + + + + Attaches the specified data to the element. + + The data. + The context. + + + + Detaches this instance from the data it has been previously attached to. + + + + + Synchronizes this instance with its data item. + + + + + Determines whether the specified data is compatible with this element. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the data item of this element. + + + The data. + + + + + Gets or sets a value indicating whether this is selected. + + + true if selected; otherwise, false. + + + + + Gets or sets a value indicating whether this is current. + + + true if current; otherwise, false. + + + + + Represents the base view element for the and . + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Creates the element provider for the items of this view element. + + + + + + Gets the gantt view element that parents this instance. + + + The gantt view element. + + + + + Represents the class that handles the drag drop operations in . + + + + + Initializes a new instance of the class. + + The owner. + + + + Prepares the context for the drag drop operation. + + + + + + Notifies that a start request has occured. Cancelable. + + + + + + Handles the mouse move. + + The mouse pos. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Notifies that a stop request has occured. Cancelable. + + + + + + Notifies that a running operation has stopped. + Allows inheritors to perform some additional logic upon stop. + + + + + Location from where Drag is started + + + + + Gets or sets the owner. + + + The owner. + + + + + Represents the element used as a separator between the and . + + + + + Initializes the fields. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Represetns the element provider used by the virtualized view elements for creating visual item elements. + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates an element for the given data opbecj in the given context. + + The data. + The context. + + + + + Gets the size of the element based on the given data item. + + The item. + + + + + Called when a new item element is created. + + The item. + + + + + Represents the base item element for all items inside the . + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + The graphical view element. + + + + Creates the task element. + + + + + + Creates the left handle element. + + + + + + Creates the right handle element. + + + + + + Paints the children. + + The graphics. + The clip rectangle. + The angle. + The scale. + if set to true [use relative transformation]. + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance with its data item. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the graphical view element. + + + The graphical view element. + + + + + Gets the task element. + + + The task element. + + + + + Gets the left link handle element. + + + The left link handle element. + + + + + Gets the right link handle element. + + + The right link handle element. + + + + + Represents a base class for all task elements in a . + + + + + Initializes the fields. + + + + + Initializes the class. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether the element may be dragged. + + + + + + + Determines whether this instance can be resized. + + + true if this instance can be resized; otherwise, false. + + + + + Gets or sets a value indicating whether the mouse is over the left area where resize could start. + + + true if this instance is mouse over start resize rectangle; otherwise, false. + + + + + Gets or sets a value indicating whether the mouse is over the right area where resize could start. + + + true if this instance is mouse over end resize rectangle; otherwise, false. + + + + + Represents the element which displays the graphical part of a . + + + + + Initializes the fields. + + + + + Creates the child elements. + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Disposes the managed resources. + + + + + Updates the timeline data items. + + + + + Builds the timeline elements. + + + + + Applies the scroll offset to the link lines. + + The lines. + + + + + Determines whether the given link should be drawn. + + The link. + The link lines. + + + + + Calculates the link lines for all links. + + + + + Calculates the link lines for all links connected to the given item. + + The item. + + + + Calculates the link lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Calculates the start to start lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Calculates the start to finish lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Calculates the finish to start lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Calculates the finish to finish lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Populates the flat tasks collection which is used for positioning links. + + + + + Returns a value indicating whether a line represented with two points intersects the given rectangle. + + The begin point of the line. + The end point of the line. + The rectangle. + + + + + Returns a value indicating whether two lines intersect. + + The begin point of the first line. + The end point of the first line + The begin point of the second line. + The end point of the second line. + + + + + Updates the specified update action. + + The update action. + + + + Updates the scrollers. + + The update action. + + + + Synchronizes the item elements. + + + + + Updates the inner state. + + + + + Updates the timeline zoom. + + + + + Updates the text view scroller when the scroll bar is moved. + + + + + Called when the OnePixelTime property is assigned a new value. + + Indicated whether the change results in a zoom-in or zoom-out. + + + + Returns a rectangle with zero width representing the coordinates where an object should be positioned or drawn for the given item and time. + + The item . + The datetime. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + if set to true the horizontal scroll bar offset is taken into account. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + if set to true the horizontal scroll bar offset is taken into account. + if set to true the vertical scroll bar offset is taken into account. + if set to true the header header height is added to the y coordinate of the result. + + + + + Scrolls the graphical view to the given date. The date is placed in the middle of the view. + + The date to scroll to. + true if the scroll operation was successful otherwise false. + + + + Paints the children. + + The graphics. + The clip rectangle. + The angle. + The scale. + if set to true [use relative transformation]. + + + + Draws the link lines. + + The graphics. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Gets the horizontal scroll bar element. + + + The horizontal scroll bar element. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets the today indicator element. + + + The today indicator element. + + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets the timeline today indicator element. + + + The timeline today indicator element. + + + + + Gets the timeline scroller. + + + The timeline scroller. + + + + + Gets the timeline container. + + + The timeline container. + + + + + Gets the timeline items. + + + The timeline items. + + + + + Gets or sets the behavior which handles the perations related to the gantt view timeline items. + + + + + Gets or sets the timeline start date. + + + The timeline start. + + + + + Gets or sets the timeline end date. + + + The timeline end. + + + + + Gets or sets the type of the timeline range. + + + The timeline range. + + + + + Gets or sets a value indicating whether the TimeRange of the gantt view will be handled by the control. + + + + + Gets or sets how much time a single pixel represents. + + + The one pixel time. + + + + + Gets or sets the color of the links. + + + The color of the links. + + + + + Gets or sets the size of the links handles. + + + The size of the links handles. + + + + + Gets or sets the new link instance. This is not null when a new link is being created. + + + The new link. + + + + + Gets or sets a value indicating whether a new link is being created. + + + true if a new link is being created; otherwise, false. + + + + + Represents a milestone element in a + + + + + Initializes the fields. + + + + + Determines whether this instance can be resized. + + + true if this instance can be resized; otherwise, false. + + + + + Represents an element that displayes a milestone item in a + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates the task element. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Represents a summary element in a + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the progress indicator element. + + + + + + Gets the element used for indicating the progress of the summary element. + + + + + Gets the left edge element of the summary element. + + + + + Gets the right edge element of the summary element. + + + + + Gets the element thats between the two edges of the summary element. + + + + + Represents an element that displays a summary item in a + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates the task element. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Represents a task element in a . + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the progress indicator element. + + + + + + Gets the progress indicator element. + + + The progress indicator element. + + + + + + + + + + Represents an element that displayes a task item in a + + + + + Initializes the fields. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Represents an element that visualizes the progress of a summary. + + + + + Represents an element that visualizes the progress of a task. + + + + + Gets a list of s that will be shown in the timeline. + + + + + Returns a list of s for week range. + + + + + Returns a list of s for month range. + + + + + Returns a list of s for year range. + + + + + Returns a list of s for year range with half years for the sub-items. + + + + + Returns a list of s for year range with quarter years for the sub-items. + + + + + Returns a list of s for day range. + + + + + Returns a list of s for day range with half hours for the sub-items. + + + + + Returns a list of s for da range with quarter hours for the sub-items. + + + + + Returns a list of s for hour range. + + + + + Gets the week number for the given date using ISO8601 stadard. + + The date. + + + + + Gets the time line top element text. + + The item to get text for. + + + + + Gets the timeline lower element text for the specified index. + + The timeline item. + The index of the lower element. + + + + + Gets the number of cells and optionally a start index to be displayed for the given timeline data item and time range. + + The data item for which the cell info is calculated. + The time range for which the cell info is calculated. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Creates the element. + + + + + + Fills the RangesMinWidths property (dictionary) with the minimum width for each . These values are used when AutomaticTimelineTimeRange is se to true. + + + + + Gets a new time range based on the current state of the . If no change is needed returns the value of the input range. + + The current . + Indicates whether a zoom-in or a zoom-out operation is performed. + A value of the enumeration. If no change is needed returns the input range. + + + + Gets the gantt graphical view this behavior is associated with. + + + + + Gets or sets the format for the upper row items of the timeline. + + + The timeline upper item format. + + + + + Gets or sets the format for the lower row items of the timeline. + + + The timeline lower item format. + + + + + Gets a value which enlarges the timeline end so only whole cells would be displayed. + + + + + Gets a value which enlarges the timeline start so only whole cells would be displayed. + + + + + Gets a dictionary where the key is a time ranges and the value is the minimum width for a single item in the timeline view for that time range. + + + + + Gets or sets the number of cells to be added. + + + + + Gets or sets a value indicating the first cell index. The value is optional. + + + + + Represents an element displayed in the timeline of a + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + The element. + + + + Represents a virtualized stack container that shows the items in the timeline of a + + + + + + + + + + + + + Type of the ViewElement + + + + Updates the items' layout + + + + + Begins the measure. + + Size of the available. + + + + + Ends the measure. + + + + + + Determines whether the specified item is visible. + + The item. + + true if item is visible; otherwise, false. + + + + + Gets the element context. + + + + + + Removes the element. + + The position. + + + + Inserts the element. + + The position. + The element. + The data. + + + + Finds the compatible element. + + The position. + The data. + + + + + Updates the element at concrete position + + The position. + The data. + + + + + Gets or sets the associated element provider. + + + The element provider. + + + + + Gets or sets the associated data provider. + + + The data provider. + + + + + Gets a value indicating whether the data provider is empty. + + + true if data provider is empty; otherwise, false. + + + + + Measures the element core. + + The element. + Size of the available. + + + + + Arranges the element core. + + The element. + The final size. + The arrange rect. + + + + + Adds artificial offset on IsItemVisible when we want to use the method to hide the items + which are above the top edge of the control (we hide them to improve the virtualization performance). + The artificial offset will make the ArrangeOverride method start arranging items from + their actual position, as if the hidden items were there. + + The offset to add. + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the items orientation. + + + The orientation. + + + + + Gets or sets a value indicating whether the elements fit to size. + + + true if [fit elements to size]; otherwise, false. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the that is the owner of this container. + + + The owner. + + + + + Represents a data item for a timeline. + + + + + Initializes a new instance of the class. + + The start. + The end. + The range. + The one pixel time. + + + + Gets or sets the start date for the item. + + + The start. + + + + + Gets or sets the end date for the item. + + + The end. + + + + + Gets or sets the range. + + + The range. + + + + + Gets or sets how much time a single pixel represents. + + + The one pixel time. + + + + + Gets the width of this item. + + + The width. + + + + + Represents the provider that creates elements for the timeline of a . + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates a new element. + + The data. + The context. + + + + + Gets the size of the element for a given item. + + The item. + + + + + Called when a new item element is created. + + The item. + + + + + Gets the that is the owner of this provider. + + + The owner. + + + + + Represents the stack container in the lower half of a timeline item. + + + + + Represents an element that is used in a timeline. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the timeline item top element. + + + + + + Creates the timeline item bottom stack element. + + + + + + Initializes a new instance of the class. + + The data. + The graphical view element. + + + + Calculates the items that will be displayed in the timeline. + + + + + Called when the displayed data is changed. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance with its data item. + + + + + Determines whether the specified data is compatible with this element. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the graphical view element that parents this element. + + + The graphical view element. + + + + + Gets the top element. + + + The top element. + + + + + Gets the bottom stack element. + + + The bottom element. + + + + + Gets the data item for this element. + + + The data. + + + + + Represents the top portion of a . + + + + + Represents the bottom portion of a . + + + + + Represent item scroller + + + + + + Called when tool tip text is needed. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Scrolls to item. + + The item. + + + + + Scrolls to item. + + The item. + if set to true scroll visibility is checked before processing scrolling. + + + + + Scrolls to begin. + + + + + + Scrolls to end. + + + + + + Scrolls to specified position. + + The position. + + + + + Scrolls down to specified position. + + The step. + + + + + Gets the height of the scroll. + + The item. + + + + + Scrolls up. + + The step. + + + + + Updates the on scroll. + + The instance containing the event data. + + + + + Updates the scroll range. + + + + + Updates the scroll value. + + + + + Updates the scroll range with concrete range. + + The width. + if set to true [update scroll value]. + + + + Updates the scroll step. + + + + + Sets the scroll bar visibility. + + + + + Shows scroller's tool tip + + + + + Determines the ToolTip text + + + Returns the ToolTip's text + + + + + Determines the traverser's current item index + + + The Index of the current item + + + + + Hides scroller's tooltip + + + + + When set to true, allows the scroller to scroll through the items + when the scrollbar is not visible. + + + + + Gets the max width of item. + + + The width of the max item. + + + + + Gets or sets the state of the scroll. + + + The state of the scroll. + + + + + Gets or sets the associated traverser. + + + The traverser. + + + + + Gets or sets the associated scrollbar. + + + The scrollbar. + + + + + Gets or sets the element provider. + + + The element provider. + + + + + Gets or sets the scroll mode. + + + The scroll mode. + + + + + Gets or sets the client size. + + + The size of the client. + + + + + Gets or sets the item height. + + + The height of the item. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Gets the position. + + + The position. + + + + + Gets or sets the tool tip. + + + The tool tip. + + + + + Gets or sets a value indicating whether scrolling is asynchronous. + + + true if [asynchronous scrolling]; otherwise, false. + + + + + Occurs when the scroller is updated. + + + + + Occurs when tool tip text is needed. + + + + + Updates the scroll range. + + + + + Represents the layout for the expander element of each row in a + + + + + Initializes a new instance of the class. + + The item element. + + + + Creates the self-referencing cell's elements. + + The cell element. + + + + Disposes all MANAGED resources - such as Bitmaps, GDI+ objects, etc. + + + + + Disposes the link elements. + + + + + Updates the associated instance of expander primitive + + + + + Updates the indent items + + + + + Binds the row properties. + + + + + Unbinds the row properties. + + + + + Gets the data item assiciated with the layout + + + + + Gets the item element assiciated with the layout + + + + + Gets the expander element assiciated with the layout + + + + + Gets the stack layout element. + + The stack layout element. + + + + Gets the cell element. + + The cell element. + + + + Gets the witdh of the hierarchy indent. + + + + + Gets a value that indicates the indents count + + + + + Gets a collection that contains all indents + + + + + Represents a stack element which holds the expander element, the indent element(s) and the cell. + + + + + Represents an element that is used for displaying indentation in a item element. + + + + + Initializes a new instance of the class. + + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents an item element of a text part. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + The text view. + + + + Creates the column container. + + + + + + Creates the element provider. + + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance and all cells. + + + + + Disposes the self reference layout. + + + + + Synchronizes the properties. + + + + + Updates the info of each cell. + + + + + Gets the cell element for the given column. + + The column. + + + + + Gets or sets a value indicating whether this instance is expanded. + + + true if this instance is expanded; otherwise, false. + + + + + Gets the cell container. + + + The cell container. + + + + + Gets the self reference layout. + + + The self reference layout. + + + + + Gets the . + + + The text view. + + + + + Represents the element for a cell in a text part. + + + + + Initializes the fields. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + The owner. + The column. + + + + Disposes the managed resources. + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance. + + + + + Gets a value indicating whether the type specified is a numeric type. + + The type to check. + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Updates the info. + + + + + Updates the core. + + + + + Updates the self reference layout. + + + + + Arranges the self reference panel. + + The final size. + The client rect. + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Gets the editor element. + + The editor. + + + + + Gets the column of this cell. + + + The data. + + + + + Gets the column. + + + The column. + + + + + Gets the owner of this cell. + + + The owner. + + + + + Gets the data item. + + + The data item. + + + + + Gets the self reference layout. + + + The self reference layout. + + + + + Gets the expander. + + + The expander. + + + + + Gets a value indicating whether this instance is first cell. + + + true if this instance is first cell; otherwise, false. + + + + + Gets a value indicating whether this instance is last cell. + + + true if this instance is last cell; otherwise, false. + + + + + Gets a value indicating whether this instance can update info. + + + true if this instance can update info; otherwise, false. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets the editor. + + + The editor. + + + + + Privedes cell elements for the item elements of + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates a new element for the given data and context. + + The data. + The context. + + + + + Gets the size of the element. + + The item. + + + + + Gets the owner. + + + The owner. + + + + + Represents a container in which columns can be displayed. + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets or sets the owner. + + + The owner. + + + + + Gets or sets a value indicating whether [scroll columns]. + + + true if [scroll columns]; otherwise, false. + + + + + Represetns a scroller for the columns. + + + + + Represents a traverser which can traverse the columns of a + + + + + Initializes a new instance of the class. + + The columns. + + + + Called when [items navigating]. + + The current. + + + + + Represents the element that displayes the grid part of a + + + + + Creates the child elements. + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Gets the first visible column. + + The first visible column. If there are no visible columns returns null. + + + + Gets the last visible column. + + The first visible column. If there are no visible columns returns null. + + + + Columnses the collection changed. + + The instance containing the event data. + + + + Updates the specified update action. + + The update action. + + + + Synchronizes the item elements. + + + + + Gets the first visible column. + + + The first visible column. + + + + + Gets the last visible column. + + + The last visible column. + + + + + Gets the column container. + + + The column container. + + + + + Gets the column scroller. + + + The column scroller. + + + + + Gets the columns. + + + The columns. + + + + + Gets or sets the indent of the hierarchy rows. + + + The indent. + + + + + Represents a header cell element of a column in a + + + + + Initializes a new instance of the class. + + The owner. + The column. + + + + Synchronizes this instance. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether this instance [can be resized]. + + + true if this instance [can be resized]; otherwise, false. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Gets or sets a value indicating whether this instance is mouse over resize rectangle. + + + true if this instance is mouse over resize rectangle; otherwise, false. + + + + + Privedes header cell elements for the item elements of + + + + + Creates a new element for the given data and context. + + The data. + The context. + + + + + Gets the size of the element. + + The item. + + + + + Represents the expander item of a row in a . + + + + + Represents an expander that is drawn in expander cells + + + + + This event fires when the expanded state is changed. + + + + + Initializes a new instance of the class. + + + + + Paints the sign's fill + + The IGraphics to use for painting the sign's fill + Rectangle containing sign bounds + + + + Paint the sign's border + + The IGraphics to use for painting the sign's border + Rectangle containing sign bounds + + + + Paints the sign + + The IGraphics to use fo painting the sign + Rectangle containing sign bounds + + + + Gets or sets the padding sizes of the sign. + + + + + Gets or sets the width of the sign. + + + + + Gets or sets the border width of the sign. + + + + + Gets or sets the padding sizes of the border around the sign. + + + + + Gets or sets a value indicating that the sign's border must be drawn + + + + + Gets or sets a value indicating that the sign's fill must be drawn + + + + + Gets or sets the sign's border color + + + + + Gets or sets sign's back color + + + + + Gets or sets sign's second back color + + + + + Gets or sets sign's third back color + + + + + Gets or sets sign's fourth back color + + + + + Gets or sets the number of colors used for drawing sign's background + + + + + Gets or sets the gradient style of sign's background + + + + + Gets or sets the gradient angle of sign's background + + + + + Gets or sets the gradient percentage of sign's background + + + + + Gets or sets the second gradient percentage of sign's background + + + + + Gets or sets the sign's style + + + + + Gets or sets a value indicating that the sign must maintain square size + + + + + Gets or sets the sign's size + + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Gets or sets the sign image. + + + + + Gets or sets a value detemining the link lines that be rendered around the expander sign + + + + + Gets or sets a value determining the style of the link lines + + + + + Gets or sets a value determining the color of the link lines + + + + + Defines a lines that will be render around the primitive + + + + + Initializes a new instance of the class. + + The item element. + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Gets the item element. + + + The item element. + + + + + Represents a draggable, selectable, and resize-able item which displays a snapshot + of its associated . This item is used in + when the + is in customize mode. + + + + + Invalidates the preview of the associated item. + + + + + Gets or sets the overlay color which is displayed when the item is selected. + + + + + Gets or sets the border color which is displayed when the item is selected. + + + + + Gets the associated . + + + + + Gets the inner container of the current item. Such will exist if this item represents a + + + + + + Gets the inner item of the current item. Such will exist if this item represents a + . + + + + + Gets or sets a value indicating whether the item is currently selected. + + + + + An element which hosts . + The main element of . Also used + as a child in when the represented item + is . + + + + + A responsible for the drag operations in . + + + + + Represents a control which overlays the when the last is put in customize mode. + + + + + Updates the preview of the underlying items. + + + + + Updates the preview of the underlying items. + + If [true], child elements will be reinitialized, + if [false], only the snapshot of existing elements will be updated. + + + + Selects the specified item. + + The item to select. + + + + Selects the specified item. + + The item to select. + If [true], item will be added to the current selection, + otherwise only the specified item will be selected + + + + Gets the items from all levels in the control. + + An enumeration to the items. + + + + Gets all items which are descendants of the specified parent element. + + The parent element. + An enumeration to the items. + + + + Sets the bounds of the drag preview rectangle. + + The bounds. + + + + Finds the associated of the specified . + + The specified item. + The associated draggable item. + + + + Starts the with the specified item as a drag context. + + The item to drag. + + + + Gets the owning + + + + + Gets the main element of the control. + + + + + The responsible for the drag operations in the control. + + + + + Gets a collection of the selected items. + + + + + Provides access to the default icons and images used in . + + + + + The image displayed next to in the customize dialog. + + + + + The Customize context menu icon. + + + + + The image displayed next to an empty in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The icon of the LoadLayout button in the customize dialog. + + + + + The icon of the SaveLayout button in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + Provides options for sizing the text part of the + + + + + Text will be sized proportionally to the whole size of the item. + + + + + Text will have a fixed size in pixels. + + + + + Provides options for arranging the text part of the + + + + + The text will appear above the control. + + + + + The text will appear below the control. + + + + + The text will appear on the left side of the control. + + + + + The text will appear on the right side of the control. + + + + + Represents a item which can display text. + + + + + Represents a item which displays a separator line. + Stands for visually separating logical groups of controls. + + + + + Gets or sets the thickness of the item. + + + + + Gets the current orientation of the item. The orientation is automatically + determined depending on the item's position. + + + + + Represents a item which displays a splitter line. + The splitter stands for visually separating logical groups of controls. In addition, + it allows the end user to resize the groups on both sides of it by dragging the splitter + with the mouse. + + + + + Gets or sets the image used by the splitter when in horizontal orientation. + + + + + Gets or sets the image used by the splitter when in vertical orientation. + + + + + A items which displays s + in a tabbed interface. + + + + + Gets the index at which a group should be inserted if dropped at the specified point. + + The specified point. + The index at which the group should be inserted. + + + + Gets the drag preview rectangle which is used when dropping over the tab items. + + The desired insert index + The bounds of the drag preview rectangle. + + + + Gets the main tab strip element. + + + + + Gets a collection of s which will be displayed + in the tabbed interface of this item. + + + + + Gets the of the selected . + + + + + Gets the selected . + + + + + A inheritor used to display the tab strip + inside s in . + + + + + Encapsulates the UI representation of a RadPageView instance. Different views will be described by different instances of this class. + + + + + Base element for all visual elements across RadPageView. + + + + + Adds padding and border size to the provided measured size. + + + + + + + Applies the Min/Max size constraints to the already measured size. + + + + + + + Gets the content orientation for this item. + + + + + Gets the content orientation for this item. + + + + + Gets or sets the padding that defines the offset of element's fill. + This does not affect element's layout logic such as size and location but has only appearance impact. + + + + + Gets or sets the padding that defines the offset of the border. + This does not affect element's layout logic such as size and location but has only appearance impact. + + + + + Gets an instance of the class that + represents the content area associated with the given item. By default, this method + returns the main content area of the control. + + + + + + + Gets the area, where the currently active page may be displayed. + + + + + Gets the rectangle where items reside. + + + + + + Displays the item list menu, using the provided element as menu's owner. + + + + + + Displays the item list menu, using the provided element as menu's owner and the specified horizontal and vertical alignment. + + + + + + + + + + + + + + Gets the item that contains the porvided point (in control's client coordinates). + + + + + + + Arranges the items and returns the available rectangle where the content area should be positioned. + + + + + + + Gets the default (automatic) item orientation, which may depend on some settings in inheritors such as RadPageViewStripElement. + + True to indicate that content orientation is to be retrieved, false to get orientation for border and fill. + + + + + Puts the current node in edit mode. + + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Gets the RadElement instance that parents all the items. + + + + + Determines CloseButton will be displayed in each item, allowing that item to be closed. + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where an item will be dropped after a drag operation. + + + + + Gets or sets the RadDragDropService instance which handles item drag requests. + + + + + Gets or sets the mode that controls item drag operation within the element. + + + + + Determines whether the currently selected item will be automatically scrolled into view. + + + + + Gets or sets the spacing between two items within the element. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Defines how each item's border and fill is oriented within this instance. + + + + + Gets the RadPageView instance that owns this element. May be null if element is hosted on another RadControl instance. + + + + + Gets the element which represents the content area of the tab view. + + + + + Gets the header element of the view. + + + + + Gets the footer element of the view. + + + + + Gets or sets the currently selected item in the view. + + + + + Gets or sets the mouse button that will be used to select items. Equals to MouseButtons.Left by default. + + + + + Gets all the items currently present within this element. + + + + + Gets or sets whether the pages will be wrapped around when performing selection using the arrow keys. + If the property is set to true, pressing the right arrow key when the last page is selected will result in selecting the first page. + + true if [wrapped around]; otherwise, false. + + + + Determines whether selecting an item will update the element's ContentArea. + + + + + Gets or sets the active editor. + + The active editor. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets a value indicating whether there is an open editor in the tree view. + + + + + Gets the RadPageViewStripItem which stands for adding + new pages on click. + + + + + Gets or sets the item of the page which is opened for preview on the far side of the + regular items. + + + + + Determines if the PinButton will be displayed in each item, allowing that item to be pinned. + + + + + Gets or sets the visibility of the internal NewItem. + + + + + Determines whether strip scrolling will be animated. + + + + + Gets or sets the easing type of the strip scroll animation. + + + + + Gets the container that holds item layout and strip buttons panel. + + + + + Determines scroll buttons' visibility. + + + + + Determines the alignment of items within the strip layout. + + + + + Determines the fit mode to be applied when measuring child items. + + + + + Gets or sets the alignment of item strip within the view. + + + + + Selects the specified . + + The group item to select. + + + + Gets the currently selected . + + + + + An inheritor of used in . + Stands for displaying the tabs of s inside a . + Keeps track of its associated . + + + + + Indicates whether the item is pinned. Pinned items appear in from of the others. + + + + + Indicates whether the item is opened for preview. + + + + + Gets or sets the length of the associated + with this . By default, this property returns -1; + + + + + Determines whether the content of the current item is visible. This property is equivalent + to the IsSelected property, however its semantics can be changed in scenarios where multiple + content areas can be visible as in the . + + + + + Determines whether the current instance is internally created by the ViewElement and represents some built-in functionality. + + + + + Gets the RadPageViewItemButtonsPanel that contains all the buttons, associated with the item. + + + + + Gets or sets the alignment of item's associated buttons. + + + + + Gets or sets a boolean value that determines whether the item margin will be automatically + flipped according to the orientation of the items in the control. + + + + + Gets or sets the title of the item. Title is visualized in the Header area of the owning view element. + + + + + Gets or sets the description of the item. Description is visualized in the Footer area of the owning view element. + + + + + Gets or sets the RadElement instance that represents the content of this item. + The content is used when item is not bound to a RadPageViewPage instance. + + + + + Gets the size that is forced by the layout element for this item. It may differ from the DesiredSize one. + + + + + Gets the current size of the item. This may differ from Bounds.Size as it reflects internal changes within the item itself. + + + + + Determines whether the item is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Gets the RadPageViewPage instance associated with this item. + + + + + Gets the RadPageViewElement that owns this item. + + + + + Gets or sets a property which determines whether to consider the ItemBorderAndFillOrientation of RadPageViewElement. + + + + + The associated with this tab strip item. + + + + + Represents a visual element, which contains set of common buttons for a instance. + + + + + Gets or sets the size to be applied to each of the embedded buttons. + + + + + Gets or sets the spacing between each two buttons. + + + + + Gets the RadPageViewButtonElement instance which represents the CloseButton for the owning item. + + + + + Gets the RadPageViewPinButtonElement instance which represents the PinButton for the owning item. + + + + + Provides localization settings for . + + + + + String IDs for the localizable strings in . + + + + + Provides the resize functionality for . + + + + + Begins the resize operation given a starting point and resize orientation. + + The starting point. + The resize direction. + [true] if successful, [false] otherwise. + + + + Begins the resize operation given a . + + The splitter item. + [true] if successful, [false] otherwise. + + + + If the behavior is active, moves the resize position to the specified point. + + The point in coordinates relative to the owning . + + + + Ends the resize operation. + + + + + Gets the mouse cursor that should be displayed at the specified position. + + The point in coordinates relative to the owning . + The cursor. + + + + Indicates whether the behavior is currently active. + + + + + Provides the XML serialization functionality for . + + + + + A container control which keeps its child controls arranged in a consistent way and scales their layout as the control size changes. + Allows runtime customization and serializing the layout. + + + + + Initializes the items of the default context menu. + + + + + Puts the control in an initialization state where it will not update until EndUpdate is called. + + + + + Puts the control out of the initialization state caused by calling BeginUpdate and updates it. + + + + + Adds a control at a specified position next to a specified control. + + The control to add. + An existing control next to which the new control will be added. + The position at which the new control will be added. + + + + Adds a control at a specified position next to a specified item. + + The control to add. + An existing item next to which the new control will be added. + The position at which the new control will be added. + + + + Adds a control to the specified container. + + The control to add. + The container. + + + + Adds an item at a specified position next to a specified existing control. + + The item to add. + An existing control next to which the new control will be added. + The position at which the new control will be added. + + + + Adds an item at a specified position next to a specified existing item. + + The item to add. + An existing item next to which the new control will be added. + The position at which the new control will be added. + + + + Adds an item at the root level of the control and rebuilds the layout. + + The item to add. + + + + Adds an item to the specified container and rebuilds its layout. + + The item to add. + The container to add the item to. + + + + Removes the specified control from the RadLayoutControl. + + The control to remove. + + + + Removes the specified item from the RadLayoutControl. + + The item to remove. + + + + Resizes the specified item with a specified amount. Resize direction depends + on the position of item. + + The item to resize. + The amount to resize with. + + + + Resizes the specified control with a specified amount. Resize direction depends + on the position of item. + + The control to resize. + The amount to resize with. + + + + Hides an item from the RadLayoutPanel and places it in the HiddenItems collection. + + The item to hide. + + + + Hides a control from the RadLayoutPanel and places it in the HiddenItems collection. + + The control to hide. + + + + Shows the control which allows reordering + and resizing the items. + + + + + Hides the . + + + + + Shows the and puts the control in customize mode. + + + + + Gets the initial location of the . + + The location. + + + + Closes the and puts the control out of customize mode. + + + + + Finds the item associated with a given control. + + The control. + The control's associated item. + + + + Finds the item associated with a given control. + + The control. + [true] if the HiddenItems collection should be searched, + [false] otherwise. + The control's associated item. + + + + Gets the items from all levels which are nested in the control. + + An enumeration of the items. + + + + Gets the items from all levels which are nested in the control. + + + + + + + Updates the scrollbar metrics. + + + + + Updates the bounds of nested controls. + + + + + Gets the mouse cursor which should be shown at a given point. + + The point. + The cursor to be shown at that point. + + + + Gets the that should be activated at a given point. + + The point. + The resizing behavior at that point. + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + XmlWriter to use by the built-in serializer + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + The stream to write to. + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + The file to write to. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The file to read from. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The stream to read from. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The XmlReader to read the XML from. + + + + Called after load layout to ensure the visibility of the controls is the same + as the visibility of the items. + + + + + Gets the default serialization info for RadLayoutControl used by Save/Load loyout methods to persist the layout to/from XML. + + The default serialization info. + + + + Fired when the items of the control or the items of the inner containers + (such as groups and tabbed groups) have changed. + + + + + Gets or sets a value indicating whether the control should draw its border. + + + + + Gets or sets the Customize Dialog form which is shown via the context menu. + + + + + Gets or sets a value indicating whether resizing is enabled when the Customize Dialog is not shown. + + + + + Gets or sets a value indicating whether the end-user is allowed to hide and show existing items. + + + + + Gets or sets a value indicating whether the end-user is allowed show the Customize Dialog and modify the existing layout. + + + + + Gets or sets the context menu. + + + + + Gets the vertical . + + + + + Gets the horizontal . + + + + + Gets the main which hosts the items on the root level. + + + + + Gets a collection containing the items on the root level. + + + + + Gets a collection containing the hidden items. + + + + + Gets the control which appears when the Customize Dialog is shown. + + + + + Indicates whether the DragOverlay control is visible. + + + + + Indicates whether the user is currently resizing the items. + + + + + If the user is currently resizing, returns the active , otherwise returns null. + + + + + Gets the serialization info for RadLayoutControl used by Save/Load loyout methods to persist the layout to/from XML. + By default or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Gets the margin around the client area of the control. + In the default case, this should be the border thickness. + + + + + Adds the control to the underlying collection without creating a for it. + + The control to add. + + + + Removes the control from the underlying collection without destroying its associated item. + + + + + + Finds the item associated with a given control. + + The control. + The associated item. + + + + This class represents data in a list layout similar to the ListBox control provided by Microsoft. + + + + + Initializes all event key objects and performs other static initialization. + + + + + Subscribes to the relevant events of the underlaying RadListElement. + + + + + Unsubscribes from the relevant events of the underlaying RadListElement. + + + + + + + + Forces re-evaluation of the current data source (if any). + + + + + Suspends internal notifications and processing in order to improve performance. + This method is cumulative, that is, if BeginUpdate is called N times, EndUpdate must also be called N times. + Calling BeginUpdate will cause the ItemsChanged event to stop firing until EndUpdate is called. + + + + + Resumes the internal notifications and processing previously suspended by BeginUpdate. + + + + + Defers the refresh. + + + + + + Selects all items if the SelectionMode allows it. + This method throws an InvalidOperationException if SelectionMode is One or None. + + + + + Clears the currently selected items and selects all items in the closed range [startIndex, endIndex]. + + The first index at which to start selecting items. + The index of one item past the last one to be selected. + + + + Scrolls to the provided item so that the item will appear at the top of the view if it is before the currently visible items + and at the bottom of the view if it is after the currently visible items. + + The item to scroll to. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the beginning of the items. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Raises the event. + + + An instance that contains the event data. + + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Indicates whether the items should be displayed in groups. + + + + + Gets the collection of groups that items are grouped into + + + + + Gets or sets a value that indicates whether text case will be taken into account when sorting. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListControl is focused. + + + + + The ListElement responsible for the majority of the control logic. The RadListControl is a wrapper of the RadListElement. + + + + + Gets the Items collection. Items can not be modified in data bound mode, and a DataSource can not be assigned while there + are items in this collection. + + + + + Provides a read only interface to the selected items. In order to select an item, use its Selected property. + + + + + Gets or sets the SelectionMode of RadListControl. This property has a similar effect to the SelectionMode of the + standard Microsoft ListBox control. + + + + + Gets or sets the SelectedValue. A linear search is performed to find a data item that has the same value + in its Value property and SelectedItem and SelectedIndex are updated to it and its index respectively. + + + + + Gets or sets the active item. The Active item is relevant only in MultiSimple SelectionMode or MultiExtended in combination with + the control keyboard key. + + + + + Gets or sets the currently selected item. + + + + + Gets or sets the currently selected index. + + + + + Gets or sets an object which will provide the data to be visualized as a list. + + + + + Gets or sets a property name which will be used to extract a string value from the data items in order to provide + a meaningful display value. + + + + + Gets or sets a property name which will be used to extract a value from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets the sort style. + + + + + Gets or set the scroll mode. + + + + + Gets or sets a format string which will be used for visual formatting of the items text. + + + + + Gets or sets a value that indicates whether the FormatString and FormatInfo properties will be used to format + the items text. Setting this property to false may improve performance. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets a value that determines whether the FindString() method searches via the text property + set by the user or by the text provided by the data binding logic, that is, by DisplayMember. + + + + + Gets or sets a value that indicates if this RadListControl will stop firing the ItemsChanging and ItemsChanged events. + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + This event fires when the selected index property changes. + + + + + This event fires before SelectedIndex changes. This event allows the operation to be cancelled. + + + + + This event fires only if the SelectedValue has really changed. For example it will not fire if the previously selected item + has the same value as the newly selected item. + + + + + This event fires before a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event fires for every item provided by the data source. + This event allows a custom RadListDataItem to be provided by the user. + + + + + This event fires after a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event is fired for every item provided by the data source. + + + + + This event allows the user to create custom visual items. + It is fired initially for all the visible items and when the control is resized afterwards. + + + + + This event fires when the SortStyle property changes. + + + + + The VisualItemFormatting event fires whenever a property of a visible data item changes + and whenever a visual item is associated with a new data item. During scrolling for example. + + + + + This event fires when the SelectedItems collection changes. + + + + + This event fires before the SelectedItems collection changes. + + + + + RadListControl consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadListControl consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Defines the alignment of checkbox within a . + + + + + Checkbox is aligned next to the near edge. + + + + + Checkbox is centered within the layout. + + + + + Checkbox is aligned next to the far edge. + + + + + ListViewSpreadExport is a powerful exporting API, allowing to export RadListView to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The ListView to export. + + + + Initializes a new instance of the class. + + The ListView to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export images. + + + + + Gets or sets a value indicating whether to export hierarchy and group child rows grouped. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets a value indicating how children of collapsed items are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting item of RadListView. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting item. + + + + + Defines values for specifying how the width of a column is adjusted. + + + + + The column width does not automatically adjust. + + + + + The column width adjusts to fit the contents of the header cell. + + + + + The column width adjusts to fit the contents of the data cells. + + + + + The column width adjusts to fit the contents of all cells + + + + + A helper class that process best fitting of columns + + + + + Initializes a new instance of the class. + + The detail list view. + + + + Performs best fit for specified column + + An instance of that will be best fitted + + + + Performs best fit for all columns + + + + + Bests the fit columns. + + The mode. + + + + Process all best fit column requests + + + + + Performs best fit for all columns + + + + + Performs best fit for specified column + + An instance of that will be best fitted + The mode. + + + + Determines whether the instance of can be best fitted. + + The item. + + true if the instance of can be best fitted ; otherwise, false. + + + + + Gets the desired cell's width + + An instance of + Returns the desired cell's with + + + + Sets 's width + + An instance of . + The desired width + + + + Gets the table element. + + The table element. + + + + Gets the best fit requests. + + The best fit requests. + + + + Best Fit All Columns Request + + + + + Requests the best fit columns. + + + + + Enqueues the best fit columns. + + The mode. + + + + Requests the best fit column. + + The column. + + + + Removes and returns the object at the beginning of the queue + + Returns BestFitRequest + + + + Dequeues the specified column's request from the queue + + The column's request that should be removed + Returns BestFitReques + + + + Represents BestFitRequest type + + + + + BestFit Operation for specified column + + + + + BestFit Operation for all columns + + + + + Represent best fit request + + + + + Initializes a new instance of the class. + + The operation. + The column. + + + + Initializes a new instance of the class. + + The operation. + + + + Initializes a new instance of the class. + + The operation. + The mode. + + + + Compares the current instance to the specified request. + + The request. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the operation. + + The operation. + + + + Gets the auto size mode. + + + + + Gets the column. + + The column. + + + + Gets the related with the page. + + + + + Gets the editor value. + + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Creates Heart like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Initializes a new instance of the RadRating class + + + + + CreateChildItems + + + + + + Set the default control size. + + + + + Gets or sets whether the edit control is auto-sized. + + + + + Gets or sets the direction of rating element paint (Standard, Reversed). + + + + + Gets or sets the orientation of the rating control. + + + + + Gets or sets the selection mode of the rating control. + + + + + Gets the rating items collection. + + + The items. + + + + + Gets or sets the average value of rating element. + + + + + Gets or sets the minimum value of rating element. + + + + + Gets or sets the maximum value of rating element. + + + + + Gets or sets the text of the Caption label. + + + + + Gets or sets the text of the Sub Caption label. + + + + + Gets or sets the text of the description label. + + + + + Gets the instance of RadRatingElement wrapped by this control. RadRatingElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRatingControl. + + + + + Gets or sets whether the rating is ReadOnly. + The Value of the element can still be set in ReadOnly mode, nothing else. + + + + + Occurs before the value of the RatingElement is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Gets the rating items collection. + + + The items. + + + + + Gets or sets the text of the Caption label. + + + The caption. + + + + + Gets or sets the text of the Sub Caption label. + + + The sub caption. + + + + + Gets the caption element. + + + The caption element. + + + + + Gets the sub caption element. + + + The sub caption element. + + + + + Gets the description element. + + + The description element. + + + + + Gets the elements layout. + + + The elements layout. + + + + + Gets or sets the tool tip format string. + + + The tool tip format string. + + + + + Gets or sets the selected value. + + + The selected value. + + + + + Gets or sets the current value. + + + The current value. + + + + + Gets or sets the hover value. + + + The hover value. + + + + + Gets or sets whether the Hover layer should be applied. + + + + + Gets or sets the value of the rating. + + + + + Gets or sets the minimum value of rating element. + + + The minimum. + + The Minimum should be lower than the Maximum + + + + Gets or sets the maximum value of rating element. + + + The maximum. + + The Maximum should be bigger than the Minimum + + + + Gets or sets the orientation of the rating control (Horizontal, Vertical). + + + + + Gets or sets the selection mode of the rating control (full item, half item, precise selection). + + + + + Gets or sets a value indicating whether the element is read-only. + + + + + Gets or sets the text of the description label. + + + + + GGets or sets the direction of rating element paint (Standard, Reversed). + + + The direction. + + + + + Gets or sets the tool tip precision. + + + The tool tip precision. + + + + + Gets or sets the percentage rounding. + + + The percentage rounding. + + + + + Gets or sets the tool tip offset. + + + The tool tip offset. + + + + + Gets or sets the duration of the tool tip. + + + + + Occurs before the value of the RatingElement is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Represents a state manager for + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Creates a new star shape with the specified number of arms and inner radius. + + + + + Creates a new star shape with the specified number of arms and inner radius. + + The number of arms the star will have. + The ratio between the inner and out ration of the star. + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Gets or sets the number of arms. + + + + + Gets or sets the ration between the inner and out radius. + + + + + Represents a logical data item that contains the tokenzied text and its value + + + + + Initializes a new instance of the class. + + The text. + The value. + + + + Compares the current object with another object of the same type. + + An object to compare with this object. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the parameter.Zero This object is equal to . Greater than zero This object is greater than . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the event. + + Name of the property. + + + + Raises the event. + + The instance containing the event data. + + + + Gets the text. + + + + + Gets the value. + + + + + Occurs when a property value changes. + + + + + Represents a collection of + + + + + Initializes a new instance of the class. + + The text box. + + + + Initializes a new instance of the class. + + The text box. + The list. + + + + Raises the event. + + The instance containing the event data. + + + + Finds the specified text in the collection + + The text. + + + + + Fins all tokenized item that contains this text. + + The text. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Occurs when the collection is changed. + + + + + Represents the method that handles validation of tokens in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + if set to true [is valid token]. + + + + Gets the text of the token. + + + + + Gets or sets a value indicating whether the text is valid token. + + + true if the text is token; otherwise, false. + + + + + The AccessibleObject of + + + + + Initializes a new instance of the class. + + The text box control. + + + + Gets the associated text box. + + + + + Represents a close event arguments when closed + + + + + Represents event data of the RadPopupClosed event. + + + + + Initializes a new instance of the RadPopupClosedEventArgs class using + the closing reason. + + + closing reason + + + + + Initializes a new instance of the class. + + The reason. + The instance containing the event data. + + + + Gets the input arguments. + + + + + Represents the method that is called when is formatted. + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text block. + + + + Gets the text block to be formatted + + + + + X-coordinate comparer of + + + + + Initializes a new instance of the class. + + The x coordinate. + + + + Compares the specified x value. + + The x value. + The y value. + + + + + Edit operation in + + + + + Insert text operation + + + + + Replace text operation + + + + + Delete text operation + + + + + The autocomplete drop down of + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the associated text box. + + + + + Gets the associated list element. + + + + + Represents a tokenized text block in + + + + + Represents a single word in + + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Measures the textblock available size. + + Size of the available. + + + + Arranges the textblock final rectangle. + + The final rectangle. + + + + Gets or sets the index of the block + + + The index. + + + + + Gets or sets the block according to the previous one + + + The offset. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + Gets or sets the block's text + + + The text. + + + + + Gets the desired size of the block + + + The size of the desired. + + + + + Gets the control bounding rectangle. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Creates the tokenized text item. + + The text. + The value. + + + + + Creates the text content element. + + + + + + Creates the remove button element. + + + + + + Called when the remove button is clicked. + + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Gets the associated tokenized text item. + + + + + Gets the content element that contains the text + + + + + Gets the remove button. + + + + + Gets or sets a value indicating whether the block can be remove by clicking the Remove button. + + + true if [allow remove]; otherwise, false. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the index of the block + + + The index. + + + + + Gets a value indicating the offset. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + An view port element of + + + + + An editable and selectable + + + + + The wrap layout of + + + + + Initializes a new instance of the class. + + + + + Called when text block is formatting. + + The text block. + + + + Raises the event. + + The instance containing the event data. + + + + Called when a property is changing. + + Name of the property. + The old value. + The new value. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Notifies the text changing. + + The start position. + The length. + The old text. + The new text. + The action. + + + + + Notifies the text changed. + + The text. + The caret position. + The action. + + + + Performs measurement and arrangement of child elements. + + + + + Clamps the desired size in the valid available size bounds. + + The available size. + The desired size. + + + + + Merge and measure block. + + The text block. + The available size. + + + + Measures and perfroms wrapping for blocks in WordWrap mode + + The available size. + Index of the current block. + Document desired size. + Index of the current line. + The current block offset. + + + + + Adds the desired size of the line to document desired size. + + The line. + Size of the desired. + + + + Adds the desired size of the block to desired size of line. + + Size of the block desired. + The line. + + + + Gets the baseline offset. + + The line. + The text block. + + + + + Checks that tow block are splitted block + + The first block. + The second block. + + + + + Gets the next block for this index + + The index. + + + + + Gets the previous block for this index + + The index. + + + + + Determines whether this panel has text. + + + true if this panel has text; otherwise, false. + + + + + Gets the line info by its index + + Index of the line. + + + + + Creates the block for concrete and instance. + + The text + The type. + + + + + Clears the presented text + + + + + Gets the text between start and end position + + The start position. + The end position. + + + + + Gets the block's text. + + The block. + The start. + The length. + + + + + Search a text block by X coordinate. + + The line. + The x. + + + + + Search a text block by offset. + + The line. + The offset. + + + + + Search a line by using concrete comparer + + The line. + The comparer. + + + + + Determines whether the text is tab, whitespace, line feed or carriage return symbol. + + The text. + + true if [is special text] [the specified text]; otherwise, false. + + + + + Determines whether the text contains a new line + + The text + + true if [contains new line] [the specified text]; otherwise, false. + + + + + Determines whether the specified text is whitespace. + + The text. + + true if the specified text is whitespace; otherwise, false. + + + + + Determines whether the specified text is tab. + + The text. + + true if the specified text is tab; otherwise, false. + + + + + Determines whether the text is tab or whitespace. + + The text. + + true if the text is tab or whitespace; otherwise, false. + + + + + Determines whether the text is line feed symbol. + + The text. + + true if the text is line feed symbol; otherwise, false. + + + + + Determines whether the text is carriage return symbol. + + The text. + + true if the text is carriage return symbol; otherwise, false. + + + + + Gets the bounds of the Viewport + + + + + Gets or sets the spacing between lines when the is in multiline mode. + + + The line spacing. + + + + + Gets the logical lines of . + + + + + Gets the length of the text. + + + The length of the text. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets or sets a value indicating whether [word wrap]. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets a value indicating whether this is multiline. + + + true if multiline; otherwise, false. + + + + + Occurs when text block is formatting. + + + + + Occurs when a property value is changing. + + + + + Occurs when an instance of is created + + + + + Suspends notifcations when text is editing. + + + + + Resumes notifcations when text is editing. + + + + + Resumes notifcations when text is editing. + + if set to true the event is fired. + The new text. + The caret position. + The action. + + + + Convert point to absolute point according to the current scroll offset + + The point. + + + + + Gets the location of instance + + The position. + + + + + Deletes the text range + + The start position. + The end position. + + + + + Inserts the specified text in concerte position. + + The position. + The text. + + + + + Replaces the text ranged with a new text + + The start position. + The end position. + The text. + + + + + Replaces the text ranged with a new text + + The start position. + The end position. + The text. + + + + + Replaces the text range in + + The target block. + The start char position. + The end char position. + The text. + + + + Replaces the text range in concrete special + + The target block. + The start char position. + The end char position. + The text. + + + + Replaces the text range in concrete non-special + + The target block. + The start char position. + The end char position. + The text. + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets the scroller for Vertical Scrollbar + + + The Vertical Scroller + + + + + Gets or sets the scroller for Horizontal Scrollbar + + + The Horizontal Scroller + + + + + Gets or sets the selection primitive that renders the selection + + + The selection primitive. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Gets a value indicating whether this textbox is editing mode. + + + true if this textbox is editing; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Determines whether the specified text block is delimiter. + + The text block. + + true if the specified text block is delimiter; otherwise, false. + + + + + Removes range of the editable block. + + The block. + The start char position. + The text. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The token text. + + + + + Gets or sets the delimiter used to tokenize the text + + + The delimiter. + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets or sets the height of the min line. + + + The height of the min line. + + + + + Occurs when text is validating as token + + + + + Represents a keyboard and mouse input handler + + + + + Represents a keyboard and mouse input handler + + + + + Represents a keyboard and mouse input handler + + + + + Processes the key down. + + The instance containing the event data. + + + + + Processes the key up. + + The instance containing the event data. + + + + + Processes the key press. + + The instance containing the event data. + + + + + Processes the mouse down. + + The instance containing the event data. + + + + + Processes the mouse up. + + The instance containing the event data. + + + + + Processes the mouse move. + + The instance containing the event data. + + + + + Processes the mouse wheel. + + The instance containing the event data. + + + + + Processes the double click. + + The instance containing the event data. + + + + + Processes the mouse leave. + + The instance containing the event data. + + + + Prcesses the mouse enter. + + The instance containing the event data. + + + + Initializes a new instance of the class. + + The text box element. + + + + Determines whether the mouse input should be handled + + The mouse position. + + + + + Processes the mouse down. + + The instance containing the event data. + + + + + Processes the mouse up. + + The instance containing the event data. + + + + + Processes the mouse move. + + The instance containing the event data. + + + + + Processes the mouse leave. + + The instance containing the event data. + + + + Prcesses the mouse enter. + + The instance containing the event data. + + + + Processes the mouse selection. + + The location. + + + + + Sets the current cursor position + + The location. + + + + Processes the mouse wheel. + + The instance containing the event data. + + + + + Processes the context menu. + + The location. + + + + + Processes the double click. + + The instance containing the event data. + + + + + Processes the key down. + + The instance containing the event data. + + + + + Processes delete of + + if set to true [move next]. + + + + + Processes the select of all + + + + + + Processes the copy operation of + + + + + + Processes the paste operation of text + + + + + + Processes the cut. + + + + + + Processes the tab key. + + The instance containing the event data. + + + + + Selects the next or previous control. + + if set to true [forward]. + + + + + Processes the navigation key. + + The instance containing the event data. + + + + + Processes the list navigation. + + The instance containing the event data. + + + + + Processes the enter key. + + The instance containing the event data. + + + + + Processes the page key. + + The instance containing the event data. + + + + + Processes the key press. + + The instance containing the event data. + + + + + Processes the insert. + + The text. + + + + + Processes the key up. + + The instance containing the event data. + + + + + Initializes a new instance of the class. + + The text box element. + + + + Gets the text block at point. + + The location. + + + + + Represent a navigator in + + + + + Represent a navigator in + + + + + Represent a navigator in + + + + + Suspends the notifications. + + + + + Resumes the notifications. + + + + + Navigates by specified keys. + + The instance containing the event data. + + + + + Saves the current selection position. + + + + + Restores the saved selection position. + + + + + Scrolls to caret position. + + + + + + Selects the specified range. + + The start. + The end. + + + + + Gets the position from point. + + The point. + + + + + Gets the position from offset. + + The offset. + + + + + Gets the previous position. + + The position. + + + + + Gets the next position. + + The position. + + + + + Gets or sets the selection start. + + + The selection start. + + + + + Gets or sets the selection end. + + + The selection end. + + + + + Gets or sets the caret position. + + + The caret position. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Occurs when selection is changing. + + + + + Occurs when selection is changed. + + + + + Initializes a new instance of the class. + + The text box element. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Saves the current selection position. + + + + + Restores the saved selection position. + + + + + Suspends the notifications. + + + + + Resumes the notifications. + + + + + Gets the position from offset. + + The offset. + + + + + Gets the position from point. + + The point. + + + + + Gets the text position from line. + + The line. + The x. + + + + + Scrolls to caret position. + + + + + + Navigates by specified keys. + + The instance containing the event data. + + + + + Navigates at line. + + The instance containing the event data. + The position. + + + + + Gets the previous position. + + The position. + + + + + Gets the previous position resursively. + + The position. + + + + + Gets the next position. + + The position. + + + + + Gets the next position recursively. + + The position. + + + + + Navigates to line. + + The instance containing the event data. + The position. + + + + + Selects the specified range. + + The start. + The end. + + + + + Selects the override. + + if set to true [notify]. + + + + Sets the caret position. + + + + + Gets the associated text box element. + + + + + Gets or sets the selection start. + + + The selection start. + + + + + Gets or sets the selection end. + + + The selection end. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Gets or sets the caret position. + + + The caret position. + + + + + Occurs when selection is changing. + + + + + Occurs when selection is changed. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the editable position. + + The position. + if set to true [next]. + + + + + Represents a text box control that tokenized a text by specified delimiter + + + + + Enables the user to enter text, and provides multiline editing + + + + + Initializes a new instance of the class. + + + + + Creates the associated text box element. + + + + + + Appends text to the current text of a text box. + + The text. + + + + Clears all text from the text box element. + + + + + Specifies that the value of the SelectionLength property is zero so that no characters are selected in the element. + + + + + + Scrolls the contents of the control to the current caret position. + + + + + Selects a range of text in the text box. + + The selection start + The selection length + + + + Selects all text in the text box. + + + + + Moves the current selection in the text box to the Clipboard. + + + + + + Copies the current selection in the text box to the Clipboard. + + + + + + Replaces the current selection in the text box with the contents of the Clipboard. + + + + + + Inserts the specified text to the textbox + + The text. + + + + + Deletes the text at current position + + + + + + Deletes the text at the next current position + + if set to true deletes next character. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the size of the drop down max. + + + The size of the drop down max. + + + + + Gets or sets the size of the drop down min. + + + The size of the drop down min. + + + + + Gets or sets the max count of visible items in auto-complete drop down + + + The max drop down item count. + + + + + Gets the associated text box element. + + + + + Gets the auto-complete list element. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Gets or sets when the vertical scroll bar should appear in a multiline TextBox. + + + The state of the vertical scroll bar. + + + + + Gets or sets when the horizontal scroll bar should appear in a multiline TextBox. + + + The state of the horizontal scroll bar. + + + + + Gets or sets the auto complete display member. + + + The auto complete display member. + + + + + Gets or sets a value specifying the source of complete items used for automatic completion. + + + The auto complete data source. + + + + + Gets a value specifiying the complete items used for automatic completion. + + + + + Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the element loses focus. + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the caret position. + + + The index of the caret. + + + + + Gets or sets the starting point of text selected in the text box. + + + The selection start. + + + + + Gets or sets the number of characters selected in the text box. + + + The length of the selection. + + + + + Gets the length of text in the element. + + + The length of the text. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box element. + + + The length of the max. + + + + + Gets or sets the current text in the text box element. + + + + + Gets or sets the prompt text that is displayed when the text box contains no text. + + + The null text. + + + + + Gets or sets the color of the null text. + + + The color of the null text. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets or sets the lines of text in a text box control. + + + The lines. + + + + + Gets or sets a value indicating the currently selected text in the text box. + + + The selected text. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text box element types a TAB character in the element instead of moving the focus to the next element in the tab order. + + + true if [accepts tab]; otherwise, false. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline TextBox control creates a new line of text in the control or activates the default button for the form. + + + true if [accepts return]; otherwise, false. + + + + + Gets or sets a value indicating whether this is a multiline text box. + + + true if multiline; otherwise, false. + + + + + Indicates whether a multiline text box control automatically wraps words to the beginning of the next line when necessary. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets or sets whether the TextBox control modifies the case of characters as they are typed. + + + The character casing. + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets a value indicating whether the caret is visible in read only mode. + + + true if the caret is visible; otherwise, false. + + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Occurs when text selection is changing. + + + + + Occurs when text selection is changed. + + + + + Occurs when the text is changing. + + + + + Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when opening the context menu. + + + + + Fired when the Input Method Editor starts the composition. + + + + + Fired when the Input Method Editor completes the composition. + + + + + Fired when the Input Method Editor has a result ready. For languages like Korean + this might happen before the composition has ended. + + + + + Initializes a new instance of the class. + + + + + Gets the associated auto complete text box element. + + + + + Gets or sets the delimiter used to tokenize the text. + + + The delimiter. + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets the tokenized items. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets a property name which will be used to extract a value from the data items + + + + + Occurs when text is validating as token + + + + + Creates a new instance of the . + + + + + Fires right after the editor value is changed. + + The event arguments. + + + + Fires right before the editor value is changed. + + The event arguments. + + + + Fires after the dialog is closed. + + The event arguments. + + + + Fires when the is clicked. + + The event arguments. + + + + Sets the value of the editor. + + The new value to set. + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be placed in the browse editor and will be used to open + the . + + + + + + Gets the value of the editor. + + + + + Gets or sets the type of dialog to be opened when the browse button is pressed. + + + + + Gets the that opens the . + + + + + Gets the that will open upon pressing the browse button. + + + + + Determines if users can input text directly into the text field. + + + + + Fires after the dialog window is closed. + + + + + Fires right before the value is changed. Cancelable event. + + + + + Fires after the editor value is changed. + + + + + Represents a browser control box. The RadBrowseEditor class is a simple wrapper for the + RadBrowseEditorElement class. The RadBrowseEditor acts + to transfer events to and from its corresponding + RadBrowseEditorElement. The + RadBrowseEditorElement which is essentially the + RadBrowseEditor control may be nested in other telerik controls. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadBrowseEditorElement of this control. + + + + + Gets the OpenFileDialog of this control. + + + + + Gets or sets the type of dialog to be opened when the browse button is pressed. + + + + + Gets or sets the value of the editor. + + + + + Determines if users can input text directly into the text field.. + + + + + Fires after the dialog window is closed. + + + + + Fires right before the value is changed + + + + + Fires after the editor value is changed. + + + + + Fires when the ReadOnly property value is changed. + + + + + Creates a RadTimePicker instance. + + + + + Determines whether the Clock will show the system time. + + + + + Determines whether the Clock will show the system time. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + RadClock consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Shows the UITypeEditor + + + + + Occurs when the button of the editor is clicked. + + + + + Determines if the editor should be closed after the value has been changed. + + The current value of the editor. + The new value of the editor. + True if editor should be closed other wise false. + + + + Selects the whole text inside the editor tex box. + + + + + Validates if the text input in the text box is a valid value for the edited item + + True if the value is valid otherwise false. + + + + Gets the that is opening. + + + + + Gets or sets a value indicating whether the editor will loop through its values when double clicked. + + + true if the editor will loop through its values when double clicked; otherwise, false. + + + + + Provides information about the type of the editor required by the + GridTableViewManager when instantiating the requested type of column. + + + + + Initializes with editor type defined. + + + + + Initializes setting the required editor type. + + The type of the editor required. + + + + Initializes setting the required editor type. + The IInputEditor property is initialized by GridViewEditManager prior to event call, + if default implementation is available. + + The type of the editor required. + IInputEditor instance if available. + + + + Gets or sets the type of the editor required by the edited control if no default editor is available. + + + + + Gets or sets the ICellEditor instance if created outside the GridViewEditorManager. + Also if a default editor is provided by the RadGridView, it is available for post-initialization + or substitution. + + + + + Provides information about the new value that is edited inside the active + cell editor. + + + + + Gets the new value that is edited by the active editor. + + + + + Gets the new value that is edited by the active editor. + + + + + Sets the visibility of the sort/group items depending on whether the functionality is enabled. + + + + + Gets the Expand/Collapse menu item. + + + + + Gets the Edit menu item + + + + + Gets the Reset menu item. + + + + + Gets the Sort menu item. + + + + + Gets the Show description menu item. + + + + + Gets the Show toolbar menu item. + + + + + Represents a property descriptor for properties. + + + + + Creates a new instance of the class. + + The collection of objects whose properties will be exposed. + The original property descriptors for the objects. + + + + Gets a value indicating whether a property cam be reseted. + + Always returns true. + + + + Gets a common value of all objects or returns null if object's values differ. + + Returns a common value or null + + + + Resets the values of all objects for this property. + + + + + Sets a value to all objects. + + The value to set. + + + + + Gets a value indicating whether value should be serialized. + + Always returns true. + + + + Returns the type of component this property descriptor is for. + + + + + Gets a value indicating whether this property is read only. Always returns false. + + + + + Returns the type of the property. + + + + + Represents a for the + used in the . + + + + + Returns an instance of the . + + + + + Represents a for the . + + + + + Creates a new instance of the . + + The collection of objects. + + + + Returns a with the common properties of the objects in the + . + + The common properties of the objects in the . + + + + Returns a with the common properties of the objects in the + to which the specified attributes have been applied. + + The attributes by which to filter the properties. + The common properties of the objects in the . + + + + Represents a collection of objects. It can be used in a property grid to edit the common properties of the objects. + + + + + Creates a new empty . + + + + + Creates a new with the specified objects. + + The objects to fill the collection with. + + + + Gets the index of a given object. + + The object to look for. + The index of the object or -1 if the object is not present in the collection. + + + + Inserts an object in the given index. + + The index to insert on. + The object to insert. + + + + Removes an object from the specified index. + + The index to remove from. + + + + Adds an object to the collection. + + The object to add. + + + + Clears the entire collection. + + + + + Checks whether the collection contains the given object. + + The object to check for. + True if the object is present in the collection, otherwise false. + + + + Copies the objects from the collection to a specified array starting at the given index. + + The destination array. + The index to start at in the destination array. + + + + Removes a specified object from the collection. + + The object to remove. + True if the object was removed otherwise false. + + + + Gets or sets the object on the specified index. + + The index of the object + + + + Gets the number of items currently in the collection. + + + + + Gets a value indicating whether the collection si read only. Always returns false. + + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + The category the item would be grouped in. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + The category the item would be grouped in. + Determines if the property would be editable. + + + + Resets the value to the initial state. + + + + + Called when the PropertyChanged event is fired. + + + + + Gets or sets the Type of the property. + + + + + Gets or sets the name that would be displayed in the RadPropertyGrid + + + + + Gets or sets the value of the item. + + + + + Gets or sets the description to be displayed in the RadPropertyGrid for this item. + Same as setting a to a property. + + + + + Gets or sets a value indication whether this property item would be read only in the RadPropertyGrid. + Same as setting a to a property. + + + + + Gets or sets the category of this item. + Same as setting a to a property. + + + + + Gets or sets the text to be displayed instead of the property name. + Same as setting a to a property. + + + + + Gets or sets a collection of attributes to be applied to the item in the property grid. + If an attribute covered by property of the is added the + attribute in this collection will be ignored. will always be ignored. + + + + + Gets or sets the that contains this item. + + + + + Occurs when any of the properties is changed. + + + + + A descriptor for the used in the . + + + + + Creates a new instance of the . + + The item this descriptor would represent. + + + + Returns a value indicating if Reset can be performed for this item. + + Always returns true. + + + + Resets the value of the current item to its initial value. + + + + + Gets the value of the current item. + + The value of the item. + + + + Sets a new value to the current item. + + The value to be set to the current item. + + + + + Gets a value indicating whether the value should be serialized. + + Always returns true. + + + + Gets the type of component this descriptor is used for. + + + + + Gets a value indicating whether the current item is read only. + + + + + Gets the type of the current item. + + + + + Type descriptor provider for the . + + + + + Gets a type descriptor for the given instance. + + + The instance to get a type descriptor for. + The type descriptor. + + + + Custom type descriptor for the . + + + + + Creates a new instace of the + + The this descriptor is used for. + + + + Returns a collection of property descriptors corresponding to the items in the current . + + A collection of . + + + + Returns a collection of property descriptors corresponding to the items in the current . + + A collection of . + + + + Collection of items which can be set as a property grid selected object. + It's items would be displayed in the property grid as properties of an object. + + + + + Creates a new instace of the + + + + + Adds an item to the collection. + + The item to add. + + + + Adds an item to the collection. + + Type of the item. + Name to be displayed in the RadPropertyGrid. + Value for the item. + + + + Adds a collection of items to this collection. + + The collection of items to add. + + + + Inserts the item on the specified index. + + The index to insert on. + The item to insert. + + + + Gets the index of the item. + + The item which index to return + The index of the item if found and -1 if item is not in the collection. + + + + Checks whether a specific item is present in the collection. + + The item to check. + True if the item is contained in the collection otherwise false. + + + + Removes the specified item form the collection. + + The item to remove from the collection. + True if the removal was successful otherwise false. + + + + Removes the item with the specified name form the collection. + + The name of the item to remove. + True if the removal was successfull otherwise false. + + + + Removes an item from the specified index. + + The index to remove on. + + + + Clears the entire collection. + + + + + Copies the items of the collection to the specified array starting from the provided index. + + The destination array. + The index in the destination array. + + + + Gets the generic enumerator for this collection. + + The generic enumerator. + + + + Gets the enumerator for this collection. + + The enumerator. + + + + Gets the number of items in the collection. + + + + + Gets a value indicating whether the collection is read only. + + + + + Gets or sets the item at the specified index. + + The index. + The item on the specified index. + + + + Gets or sets the item with the specified name. + + The property name. + Returns the item if its present in the collection otherwise returns null + + + + Gets a value indicating whether the item is selected. + + + + + Gets a value indicating whether the item is expanded. + + + + + Gets a value indicating whether the control contains the focus. + + + + + Gets the that is parent to this item. + + + + + Gets a value indicating whether a given point is in a location where resize should be initialized when the left mouse button is pressed. + + The point to check for. + true if point is in location for resize otherwise false. + + + + Attaches a logical item to this visual element. + + The logical item. + The context. + + + + Detaches the currently attached logical item. + + + + + Syncronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets or sets a value indicating whether this item has a parent or not. + + + + + Gets or sets a value indicating whether this item has changed its value or not. + + + + + Gets or sets a value indicating whether this property can be edited. + + + + + Gets the header element of the . + + + + + Gets the property grid item indent element + + + + + Gets the property grid item expander element. + + + + + Gets the property grid item text element. + + + + + Gets the property grid item value element + + + + + Gets the logical item attached to this visual element. + + + + + Synchronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets the property grid item check box element + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Syncronizes changes with other elements. + + + + + Editing begins when the cell receives focus. + + + + + Editing begins when a focused cell is clicked again. + + + + + Editing begins only when the method is called. + + + + + Represents a toggle button element. The toggle button supports two or three + states depending on the IsThreeState property. + + The RadToggleButton class is a simple wrapper + for the RadToggleButtonElement class. All UI and logic functionality is + implemented in the RadToggleButtonElement class. The + RadToggleButton acts to transfer events to + and from its corresponding RadToggleButtonElement instance. The latter can be + nested in other telerik controls. + + + + + Initializes a new instance of the RadToggleButtonElement class. + + + + Raises the StateChanging event. + + + + + Raises the CheckStateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the StateChanged event. + + + + + Raises the IsCheckedChanged event. + + + + + Occurs before the elements's state changes. + + + + + Occurs when the elements's state changes. + + + + + Occurs before the elements's check state changes. + + + + + Occurs when the elements's check state changes. + + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + Gets or sets a value indicating whether the button is checked. + + + + Gets or sets a value indicating whether the toggle button has three or two + states. + + + + + Gets or sets a value indicating whether the toggle button element is read only. + + + true if the toggle button element is read only; otherwise, false. + + + + + Executes a search with the current state of the filter. + + + + + Synchronizes the default toggle buttons in the + with the PropertySort property of the . + + + + + Executed when one of the toggle buttons changes. + + The button that triggered the event. + The event arguments. + + + + Gets the parent . + + + + + Gets the that enables CategorizedAlphabetical view in the + + + + + Gets the that enables Alphabetical view in the + + + + + Gets the . + + + + + Gets or sets the property name by which the search will be performed. + + + + + Gets or sets the filter operator which will be used for the search. + + + + + Gets or sets the value by which the search will be performed. + + + + + Gets or sets the height of the . + + + + + Begins the resize of the description element. + + The offset used to resize the description element. + + + + Gets the . + + + + + Gets the . + + + + + Gets the . + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the is visible. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Expands all the categories in the . + + + + + Collapses all the categories in the . + + + + + Resets the selected property to its default value. + + + + + Gets the . + + + + + Gets the . + + + + + Gets the + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the should be visible. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether the data can be grouped programatically. + + + + + Displays the properties of an object in a grid with two columns with a property name in the first column and value in the second. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Expands all the categories in the . + + + + + Collapses all the categories in the . + + + + + Resets the selected property to its default value. + + + + + Puts the current item in edit mode. + + true if successful. + + + + Commits any changes and ends the edit operation on the current item. + + true if successful. + + + + Close the currently active editor and discard changes. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a value indicating whether the data can be grouped programmatically. + + + + + Gets a value indicating whether there are currently open editors. + + + + + Gets or sets a value indicating whether the user is allowed to edit the values of the properties. + + + + + Gets the active editor. + + + + + Gets or sets a value indicating how user begins editing a cell. + + + + + Gets or sets a value indicating whether the groups will be expanded or collapsed upon creation. + + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadPropertyGrid is focused. + + The default value is false. + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + The default value is 300. + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the selected item. + + + + + Gets or sets the object which properties the is displaying. + + + + + Gets or sets the objects which properties the is displaying. + + + + + Gets the Items collection. + + + + + Gets the Groups collection. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets the group descriptors. + + + + + Gets the filter descriptors. + + + + + Gets the sort descriptors. + + + + + Gets or sets the sort order of items. + + + + + Gets or sets the mode in which the properties will be displayed in the . + + + + + Gets or sets a value indicating whether the is visible. + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the search box of the should be visible + + + + + Gets the of this control. + + + + + Gets or sets the height of the items. + + The height of the item. + + + + Gets or sets the distance between items of the RadPropertyGridElement. + + + + + Gets or sets the width of the indentation of subitems. + + + + + RadPropertyGrid consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadPropertyGrid consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs before the selected object is changed. + + + + + Occurs after the selected object is changed. + + + + + Occurs before a property grid item is selected. + + + + + Occurs after the property item is selected. + + For more information about handling events, see also SelectedItemChanging. + + + + + + Occurs when opening the context menu. + + + + + Fires for custom grouping operation. + + + + + Occurs when the user presses a mouse button over a property grid item. + + + + + Occurs when the user moves the mouse in the area of a property grid item. + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs before the value of the Expanded property of a property grid item is changed. + + + + + Occurs after the value of the Expanded property of a property grid item is changed. + + + + + Occurs when the item changes its state and needs to be formatted. + + + + + Occurs when a new item element is going to be created. + + + + + Occurs when a new item element is going to be created. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when item's value is changing. + + + + + Occurs when a property value changes. + + + + + Fires when a property value is validating. + + + + + Fires when a property has finished validating. + + + + + Fires before the value in an editor is being changed. The action can be canceled. + + + + + Fires when the value of an editor changes. + + + + + This property determines whether the traverser will traverse only via expanded items or through all items + true to traverse all items, false to traverse expanded items only + + + + + Represents the method that will handle events in . + + + + + + + Provides data for all events used in + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + true if [process PropertyGridItemBase]; otherwise, false. + + + + Gets the item. + + The item. + + + + Gets or sets the text of the title. + + + + + Gets or sets the text of the content. + + + + + Gets the . + + + + + Gets the . + + + + + Gets or sets the height of the . + + + + + Gets the parent of this element. + + + + + Attaches a logical item to this visual element. + + The logical item. + The context. + + + + Detaches the currently attached logical item. + + + + + Syncronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets the property grid group item expander element. + + + + + Gets the property grid group item text element. + + + + + Gets the logical item currently attached to this visual element. + + + + + Syncronizes element with data item. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Updates the visual items in the property grid + + Indicated the update action + + + + Gets the element at specified coordinates. + + The x coordinate. + The y coordinate. + An instance of if successful. + + + + Ensures the item is visible within the RadPropertygridElement and scrolls the element if needed. + + The item to visualize. + + + + Scrolls the scrollbar to bring the specified into view. + + The item to visualize. + + + + Initializes and returns the context menu associated with the specified . + + The element. + An instance of if successfull. + + + + Makes the property grid columns even. + + + + + Sorts the sub items of all expanded items. + + + + + Ensures the item is visible within the RadPropertygridElement and scrolls the element if needed. + + The item to visualize. + + + + Performs the needed operations on the data layer when the mode is changed. + + + + + + Gets the default property for the selected object + + The that is the default property. + + + + Updates the scroll bars visibility. + Specifies the action which caused the update. + + + + + Syncronizes all visual elements. + + + + + This method traverses through the visible items of RadPropetyGrid and returns an item matching the . + + + + + + + Gets the type of editor used for a editing the given item. + + The item to get editor type for. + The type of the editor + + + + Puts the current item in edit mode. + + + + + + Commits any changes and ends the edit operation on the current item. + + + + + + Close the currently active editor and discard changes. + + + + + + Ends the editing of an item and commits or discards the changes. + + Determines if the changes are commited [true] or discarded [false]. + + + + + Gets an editor depending on the type of the value to be edited. + + The type of the value. + + + + + Returns a value indicating whether the is editable + + The item to check. + True if item can be edited. Otherwise false. + + + + Gets or sets a value indicating whether the data can be grouped programmatically. + + + + + Gets or sets a value indicating whether the values of the items should be invalidated the next time a grouping and/or sorting is performed. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets the that is a parent to this element. + + + + + Gets the active editor. + + + + + Gets or sets the mode in which the properties will be displayed in the . + + + + + Gets or sets the minimum width columns can have. + + + + + Gets a value indicating whether there are currently open editors. + + + + + Gets or sets a value indicating whether the user is allowed to edit the values of the properties. + + + + + Gets or sets a value that indicates whether editors specified with an EditorAttribute will be used without considering built-in editors. + + + + + Gets or sets the width of the "column" that holds the values. + + + + + Gets or sets a value indicating whether the groups will be expanded or collapse upon creation. + + + + + Gets the group descriptors. + + The group descriptors. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets or sets the height of the items. + + The height of the item. + + + + Gets or sets the width of the indentation of subitems. + + + + + Gets or sets the object which properties the RadPropertyGrid is displaying. + + + + + Gets or sets the objects which properties the RadPropertyGrid is displaying. + + + + + Gets the collection to which the RadPropertyGrid is bound to. + + + + + Gets the selected item. + + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating how user begins editing a cell. + + + + + Gets or sets the distance between property grid items. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadPropertyGrid is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Fires for custom grouping operation. + + + + + Occurs before the selected object is changed. + + + + + Occurs after the property grid selected object has been changed. + + + + + Occurs when is formatting + + + + + Occurs when a mouse button is pressed on the . + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when mouse moves over a . + + + + + Occurs when item is expanding. + + + + + Occurs when item has been expanded. + + + + + Occurs when the selected item is changing + + + + + Occurs when selected item has been changed. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when item's value is changing. + + + + + Occurs when item's value has been changed. + + + + + Fires when a property value is validating. + + + + + Fires when a peoperty has finished validating. + + + + + Fires before the value in an editor is being changed. The action can be canceled. + + + + + Fires when the value of an editor changes. + + + + + Occurs when [binding context changed]. + + + + + Docks the search button on the left or right side of the search text box depending on the RightToLeft state. + + + + + Gets the search button. + + + + + Represents base class for button elements used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorButton. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorOperationButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorCommandButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorDeleteButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorEqualsButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorMemoryButtonElement. + + Button text. + + + + Represents arrow button used in RadCalculatorDropDown. + + + + + Represents memory element used in RadCalculatorContentElement. + + + + + Represents a control with calculator functionality. + + + + + Creates a RadCalculatorDropDown instance. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadCalculatorElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the calculator value. + + + + + Gets or sets a value indicating whether the calculator drop down is read only. + + + true if the calculator drop down is read only; otherwise, false. + + + + + Fires when the value of the calculator is changing. + + + + + Fires when the value of the calculator is changing. + + + + + Event needed by the engine behind simple data binding so that it can work two way. In order to receive notifications for changes in the calculator value subscribe to the CalculatorValueChanged event. + + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorDigitButtonElement. + + Button text. + + + + Represents the content element of RadCalculatorDropDown. + + + + + Creates new instance of RadCalculatorContentElement. + + + + + + Gets the owner RadCalculatorElement. + + + + + Gets or sets the memory value. + + + + + Gets the grid layout. + + + The grid layout. + + + + + Gets the button add. + + + The button add. + + + + + Gets the button substract. + + + The button substract. + + + + + Gets the button multiply. + + + The button multiply. + + + + + Gets the button divide. + + The button divide. + + + + Gets the button SQRT. + + The button SQRT. + + + + Gets the button percent. + + The button percent. + + + + Gets the button reciprocal. + + The button reciprocal. + + + + Gets the button sign. + + The button sign. + + + + Gets the button equals. + + The button equals. + + + + Gets the button C. + + The button C. + + + + Gets the button CE. + + The button CE. + + + + Gets the button delete. + + The button delete. + + + + Gets the button mplus. + + The button mplus. + + + + Gets the button mminus. + + The button mminus. + + + + Gets the button MS. + + The button MS. + + + + Gets the button MR. + + The button MR. + + + + Gets the button MC. + + The button MC. + + + + Gets the button 0. + + The button 0. + + + + Gets the button 1. + + The button 1. + + + + Gets the button 2. + + The button 2. + + + + Gets the button 3. + + The button 3. + + + + Gets the button 4. + + The button 4. + + + + Gets the button 5. + + The button 5. + + + + Gets the button 6. + + The button 6. + + + + Gets the button 7. + + The button 7. + + + + Gets the button 8. + + The button 8. + + + + Gets the button 9. + + The button 9. + + + + Gets the button point. + + The button point. + + + + RadCalculatorDropDown arithmetic operations. + + + + + Represents the editor content element of RadCalculatorDropDown. + + + + + Creates new instance of RadCalculatorEditorContentElement. + + + + + Indicates whether the fast navigation buttons were used. + + + + + Gets the direction of the navigation. + + + + + Arguments class used when the SelectionChanging event is fired. + + + + + Gets a refference to the Dates which will be selected + + + + + Gets a refference to the SelectedDates collection, represented by the Telerik RadCalendar component + that rise the SelectionChanging event. + + + + + The public delegate for the SelectionChanging event. + + + + + Arguments class used with the ElementRender event. + + + + + Gets a refference to the LightVisualElement object that represents visually the specified day to render. + + + + + Gets a refference to the RadCalendarDay logical object that represents the specified day to render. + + + + + Gets a refference to the CalendarView object currently displayed by RadCalendar, + that contains the specified day to render. + + + + + The public delegate for ElementRender event. + + + + + Indicates whether the fast navigation buttons were used. + + + + + Gets the direction of the navigation. + + + + + Gets or sets the start date of the new view. + + + + + Arguments class used when the ViewChangingEvent event is fired. + + + + + Gets the new CalendarView instance that will substitute the view currently displayed by RadCalendar. + + + + + The public delegate for the ViewChanging event. + + + + + RadCalendarDay represents a object that maps date value to corresponding visual settings. + Also the object implements Boolean properties that represent the nature of the selected date - + whether it is a weekend, disabled or selected in the context of the calendar. Mostly the values + of those properties are set at runtime when a RadCalendarDay instance is constructed and passed + to the DayRender event. + + + + + Sets whether RadCalendarDay object is associated with a DateTime equal to today's date. + + True if RadCalendarDay object is associated with today's date. + + + + Sets whether RadCalendarDay object is associated with a DateTime that represents a weekend day. + + True if RadCalendarDay object is associated with a DateTime that represents a weekend day. + + + + Checks whether RadCalendarDay object is associated with a DateTime that represents a recurring event. + + the DateTime to compare. + the System.Globalization.Calendar object used to check whether the DateTime + represents a recurring event. + + + + + Removes the time component of a DateTime object, thus leaving only the date part. + + the DateTime object to be processed. + the DateTime object containing only the date part of the original DateTime object. + + + + + + the DateTime object associated with this particular RadCalendarDay. + + + + + + + the DateTime object associated with this particular RadCalendarDay. + the CalendarDayCollection that contains this particular RadCalendarDay. + + + + + Raises the PropertyChanged event. + + The name of the property. + + + + Raises the PropertyChanged event. + + PropertyChangedEventArgs instance containing the name of the property. + + + + Gets or sets the image associated with a particular RadCalendarDay object. + + + + + Gets or sets the template associated with a particular RadCalendarDay object. + The template must inherit from RadHostItem. + + + + + Gets or sets the date represented by this RadCalendarDay. + + + + + Gets or sets a value indicating whether the RadCalendarDay is qualified as available for selection. + + + + + Gets or sets a value indicating whether the RadCalendarDay is selected + + + + + Gets or sets a value indicating whether the RadCalendarDay is disabled + + + + + Gets or sets a value indicating whether the RadCalendarDay represents the current date. + + + + + Gets or sets a value indicating whether the RadCalendarDay settings are repeated/recurring through out the valid + date range displayed by the calendar. + + + The RecurringEvents enumeration determines which part of the date is handled (day or day and month). + + + + + Gets or sets a value indicating whether the RadCalendarDay is mapped to a date that represents a non working + day/weekend. + + + + + Gets or sets the text displayed when the mouse pointer hovers over the calendar day. + + + + + The owner of RadCalendarDay object. + + + + + Used to handle all requests for layout invalidation through a single place + + + + + Used to handle all requests for repainting through a single place + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Summary description for CalendarDayCollection. + + + + + Finds the RadCalendarDay with specified key, optionally searching child days. + + The date bound to a particular RadCalendarDay object to search for. + An array of RadCalendarDay objects whose Date property matches the specified key. + + + + Returns the index of the specified RadCalendarDay object in the collection. + + The RadCalendarDay object to locate in the collection. + The zero-based index of the item found in the CalendarDayCollection; otherwise, -1. + + + + Adds an collection of previously created RadCalendarDay objects to the collection. + + An array of RadCalendarDay objects representing the views to add to the collection. + + + + Adds a previously created RadCalendarDay object to the end of the CalendarDayCollection. + + The RadCalendarDay object to add to the collection. + + + + Adds a DateTime object to the end of the CalendarDayCollection. + + The DateTime object to add to the collection. + + + + Adds a collection of date time values to the collection. + + An IEnumerable of DateTime objects to add to the collection. + + + + Returns an enumerator that can be used to iterate through the RadCalendarDay collection. + + An IEnumerator that represents the RadCalendarDay collection. + + + + Inserts an existing RadCalendarDay object into the CalendarDayCollection at the specified location. + + The indexed location within the collection to insert the RadCalendarDay object. + The RadCalendarDay object to insert into the collection. + + + + Removes the specified RadCalendarDay object from the CalendarDayCollection. + + The RadCalendarDay object to remove. + + + + Returns an enumerator that can be used to iterate through the RadCalendarDay collection. + + An IEnumerator that represents the RadCalendarDay collection. + + + + Removes all RadCalendarDay objects in the collection of CalendarDays. + + + + + Copies the elements of CalendarDayCollection to a new + of elements. + + A one-dimensional of + elements containing copies of the elements of the . + Please refer to for details. + + + + Copies the elements of the CalendarDayCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from CalendarDayCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a RadCalendarDay object to the collection of CalendarDays. + + The RadCalendarDay object to add to the collection. + + + + Removes all RadCalendarDay objects in the collection of CalendarDays. + + + + + Checks whether a specific RadCalendarDay object is in the collection of CalendarDays. + + The RadCalendarDay object to search. + True if the RadCalendarDay is found, false otherwise. + + + + Returns a zero based index of a RadCalendarDay object depending on the passed index. + + The zero-based index, RadCalendarDay object or the date represented by the searched RadCalendarDay object. + A zero based index of the RadCalendarDay object in the collection, or -1 if the RadCalendarDay object is not found. + + + + Adds a RadCalendarDay object in the collection at the specified index. + + The index after which the RadCalendarDay object is inserted. + The RadCalendarDay object to insert. + + + + Deletes a RadCalendarDay object from the collection. + + The RadCalendarDay object to remove. + + + + Deletes the RadCalendarDay object from the collection at the specified index. + + The index in collection at which the RadCalendarDay object will be deleted. + + + + Creates a new CalendarDayCollection object that is a copy of the current instance. + + A new CalendarDayCollection object that is a copy of this instance. + + + + Creates a new object that is a copy of the current instance. + + A new object that is a copy of this instance. + + + + Gets a value indicating whether access to the CalendarDayCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the CalendarDayCollection. + + + + + Gets a value indicating whether the CalendarDayCollection has a fixed size. + + + + + Gets a value indicating whether the CalendarDayCollection is read-only. + + + + + Gets or sets the RadCalendarDay at the specified indexed location in the collection. + + The indexed location of the RadCalendarDay in the collection. + The RadCalendarDay at the specified indexed location in the collection. + + + + Gets the total number of RadCalendarDay objects in the collection. + + + + + Gets or sets the RadCalendarDay at the specified indexed location in the collection. + + The indexed location of the RadCalendarDay in the collection. + The RadCalendarDay at the specified indexed location in the collection. + + + + Gets or sets a RadCalendarDay object depending on the passed key. + Only integer and string indexes are valid. + + + + + Summary description for CalendarView. + + + + + Determines if a DateTime object belongs to the dates range managed by a particular CalendarView. + + The DateTime object to be tested. + True if the DateTime object belongs to the dates range managed by a particular CalendarView; False otherwise. + + + + Adds the specified date to the SelectedDates collection of RadCalendar. + + The DateTime object to add. + + + + Adds the specified range of dates to the SelectedDates collection of RadCalendar. + + array of DateTime objects to add. + + + + Adds the specified range of dates to the SelectedDates collection of RadCalendar. + + A System.DateTime that specifies the initial date to add to the SelectedDates collection. + A System.DateTime that specifies the end date to add to the SelectedDates collection. + + + + Gets a DateTime object that is part of the date range handled by the previous calendar view. + Used for traversal of the calendar. + + The DateTime object + + + + Gets a DateTime object that is part of the date range handled by the next calendar view. + Used for traversal of the calendar. + + The DateTime object + + + + + + + + + + + + Ensures that the child views collection is created. + + + + + Initializes properly the ViewStartDate, ViewEndDate, ViewRenderStartDate, ViewRenderEndDate properties + + + + + handles the page down key. + + The key data to be processed. + + + + handles the page up key. + + The key data to be processed. + + + + handles the down arrow key. + + The key data to be processed. + + + + handles the up arrow key. + + The key data to be processed. + + + + handles the End key. + + The key data to be processed. + + + + handles the Home key. + + The key data to be processed. + + + + handles the left arrow key. + + The key data to be processed. + + + + handles the right arrow key. + + The key data to be processed. + + + + Toogles the date selection (Enter key). + + The key data to be processed. + + + + Verifies CalendarView settings required for correct presentation of calendrical information. + + + + + Returns the DateTime object that is used by the CalendarView to initialize. + + DateTime object that is used by the CalendarView to initialize. + + + + handles key events that require processing from CalendarView. + + The key data to be processed. + + + + Creates a CalendarView object based on the logic implemented by the CalendarView instance + that implements the method. + + DateTime object that is used to create the CalendarView. + The created CalendarView object. + + + + Raises the PropertyChanged event + + The name of the property + + + + Gets the parent calendar that the current view is assigned to. + + + + + Gets the parent tree node of the current tree node. + + + + + Gets the collection of nodes that are assigned to the tree view control. + + + + + Gets or sets the name of the node. + + + + + Gets or sets whether tool tips are displayed for this specific control. + + + + Gets or sets the format string that is applied to the days cells tooltip. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'dddd, MMMM dd, yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + + Gets or sets the orientation (rendering direction) of the calendar component. + Default value is Horizontal. + + + + + Member + Description + + + Horizontal + Renders the calendar data row after row. + + + Vertical + Renders the calendar data column after + column. + + + + + + + Gets or sets the horizontal alignment of the view title. + The ContentAlignment enumeration is defined in + System.Windows.Forms.VisualStyles + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Gets or sets a value indicating whether the tree node is visible or partially visible. + + + + + Gets the root parent node for this instance. + + + + + Gets a value indicating whether the CalendarView is the top most view displayed by RadCalendar. + + + + + Gets the zero-based depth of the tree node in the RadTreeView tree. + Returns -1 if the node is outside of a tree view. + + + + + Gets or sets a value indicating whether the calendar view is in read-only mode. + + + + + Gets or sets the text displayed for the complete CalendarView + selection element in the view selector cell. + + + The text displayed for the CalendarView selection element in the + selector cell. The default value is "". + + + Use the ViewSelectorText property to provide custom text for + the CalendarView complete selection element in the selector + cell. +
+ + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the ViewSelectorText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the EnableViewSelector + property is set to true. +
+
+ + + Use the RowHeaderText property to provide custom text for + the CalendarView complete row header element. +
+ + + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the RowHeaderText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the ShowRowsHeaders + property is set to true. +
+ + The text displayed for the CalendarView header element. The default value is "". + + + Gets or sets the text displayed for the row header element. + +
+ + + Use the ColumnHeaderText property to provide custom text + for the CalendarView complete column header element. +
+ + + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the ColumnHeaderText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the ShowColumnHeaders + property is set to true. +
+ + The text displayed for the CalendarView column header element. The default value is "". + + + Gets or sets the text displayed for the column header element. + +
+ + + The image displayed for the CalendarView column header element in the + header cells. The default value is "". + + + Gets or sets the image displayed for the column header element. + + + This property applies only if the ShowColumnHeaders property + is set to true. If ColumnHeaderText is set too, + its value is set as an alternative text to the image of the column header. + When using this property, the whole image URL is generated using also the + value. + Example: + ShowColumnHeaders="true"
+ ImagesBaseDir = "Img/"
+ ColumnHeaderImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + The image displayed for the CalendarView row header element. The default value is "". + + + Gets or sets the image displayed for the row header element. + + + This property applies only if the ShowRowHeaders property is + set to true. If RowHeaderText is set too, its + value is set as an alternative text to the image of the row header. + When using this property, the whole image URL is generated using also the + value. + Example:
+ ShowRowHeaders = "true"
+ ImagesBaseDir = "Img/"
+ RowHeaderImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + Gets or sets the margin of the view cells + + + + + Gets or sets the margin of the view cells + + + + + Gets or sets the image displayed for the complete + selection element in the view selector cell. + + + The image displayed for the CalendarView selection element in + the selector cell. The default value is "". + + + When using this property, the whole image URL is generated using also the + value. + Example:
+ ImagesBaseDir = "Img/"
+ ViewSelectorImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + Gets or sets whether the month matrix, when rendered will show days from other (previous or next) + months or will render only blank cells. + + + + Gets or sets whether the fish eye functionality is enabled. + + + Gets or sets the zooming factor of a cell which is handled by the fish eye functionality. + + + + Gets or sets the predefined pairs of rows and columns, so that the product of + the two values is exactly 42, which guarantees valid calendar layout. It is applied + on a single view level to every + + + + + + The Width applied to a Header + + + + + The Height applied to a Header + + + + Gets or sets whether a single CalendarView object will display a selector. + + + + Gets or sets the the count of rows to be displayed by a multi month CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a multi month CalendarView. + + + + Gets or sets whether a single CalendarView object will display a title row. + + + Gets or sets the format string used to format the text inside the header row. + + + Gets or sets whether a CalendarView object will display a header row. + + + Gets or sets whether a CalendarView object will display a header column. + + + + Gets or sets whether row headers ( if displayed by a MonthView object) + will act as row selectors. + + + + + Gets or sets whether column headers ( if displayed by a MonthView object) + will act as column selectors. + + + + + Gets or sets whether a selector for the entire CalendarView ( + MonthView ) will appear on the calendar. + + + + + Gets a value indicating whether the CalendarView has child views. + + + + + Gets the DateTime object that is the first date to be rendered by CalendarView. + While ViewStartDate is the start date that is handled by a particular CalendarView instance, + the ViewRenderStartDate might belong to a different (previous) CalendarView object. + + + + + Gets the DateTime object that is the last date to be rendered by CalendarView. + While ViewEndDate is the start date that is handled by a particular CalendarView instance, + the ViewRenderEndDate might belong to a different (next) CalendarView object. + + + + + Gets or sets a DateTime value specifying the starting date for the period handled by a CalendarView instance. + + + + + Gets or sets a DateTime value specifying the ending date for the period handled by a CalendarView instance. + + + + + Gets or sets the size and location of the tree node in pixels, relative to the parent layout. + + + + + Gets or sets the the count of rows to be displayed by a CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a CalendarView. + + + + + Gets the previous available view. Used for traversal of the calendar. + + + + + Gets the next available view. Used for traversal of the calendar. + + + + + Gets the default System.Globalization.Calendar instance as + specified by the default culture. + + + A calendar divides time into measures, such as weeks, months, and years. The + number, length, and start of the divisions vary in each calendar. + Any moment in time can be represented as a set of numeric values using a + particular calendar. For example, the last vernal equinox occurred at (0.0, 0, 46, + 8, 20, 3, 1999) in the Gregorian calendar. An implementation of Calendar can + map any DateTime value to a similar set of numeric values, and + DateTime can map such sets of numeric values to a textual representation + using information from Calendar and DateTimeFormatInfo. The + textual representation can be culture-sensitive (for example, "8:46 AM March 20th + 1999 AD" for the en-US culture) or culture-insensitive (for example, + "1999-03-20T08:46:00" in ISO 8601 format). + A Calendar implementation can define one or more eras. The + Calendar class identifies the eras as enumerated integers where the current + era (CurrentEra) has the value 0. + In order to make up for the difference between the calendar year and the + actual time that the earth rotates around the sun or the actual time that the moon + rotates around the earth, a leap year has a different number of days than a + standard calendar year. Each Calendar implementation defines leap years + differently. + For consistency, the first unit in each interval (for example, the first + month) is assigned the value 1. + The System.Globalization namespace includes the following + Calendar implementations: GregorianCalendar, + HebrewCalendar, HijriCalendar, + JapaneseCalendar, JulianCalendar, + KoreanCalendar, TaiwanCalendar, and + ThaiBuddhistCalendar. + + + + + Gets or sets the vertical spacing between the calendar cells + + + + + Gets or sets the horizontal spacing between the calendar cells + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Updates correctly the visual appearance of RadCalendar. Updates the parential + dependencies (parent and Calendar properties) also. + + the CalendarView that will be updated + + + + Finds the calendar views with specified key, optionally searching child views. + + The name of the calendar view to search for. + true to search child views; otherwise, false. + An array of CalendarView objects whose Name property matches the specified key. + + + + Returns the index of the specified calendar view in the collection. + + The CalendarView to locate in the collection. + The zero-based index of the item found in the calendar view collection; otherwise, -1. + + + + Adds an collection of previously created CalendarView objects to the collection. + + An array of CalendarView objects representing the views to add to the collection. + + + + Adds a previously created CalendarView object to the end of the CalendarViewCollection. + + The CalendarView object to add to the collection. + The zero-based index value of the CalendarView object added to the CalendarViewCollection. + + + + Returns an enumerator that can be used to iterate through the CalendarView collection. + + An IEnumerator that represents the CalendarView collection. + + + + Inserts an existing CalendarView object into the CalendarViewCollection at the specified location. + + The indexed location within the collection to insert the CalendarView object. + The CalendarView object to insert into the collection. + + + + Removes the specified CalendarView object from the CalendarViewCollection. + + The CalendarView object to remove. + + + + Returns an enumerator that can be used to iterate through the CalendarView collection. + + An IEnumerator that represents the CalendarView collection. + + + + Removes all CalendarView objects from the collection. + + + + + Copies the elements of the CalendarViewCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from CalendarViewCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a previously created CalendarView object to the end of the CalendarViewCollection. + + The CalendarView object to add to the collection. + The zero-based index value of the CalendarView object added to the CalendarViewCollection. + + + + Removes all CalendarView objects from the collection. + + + + + Determines whether the specified CalendarView object is a member of the collection. + + The CalendarView to locate in the collection. + true if the CalendarView is a member of the collection; otherwise, false. + + + + Returns the index of the specified calendar view in the collection. + + The CalendarView to locate in the collection. + The zero-based index of the item found in the calendar view collection; otherwise, -1. + + + + Inserts an existing CalendarView object into the CalendarViewCollection at the specified location. + + The indexed location within the collection to insert the CalendarView object. + The CalendarView object to insert into the collection. + + + + Removes the specified CalendarView object from the CalendarViewCollection. + + The CalendarView object to remove. + + + + Removes the element at the specified index of the CalendarViewCollection. + + The zero-based index of the element to remove. + + + + Gets the total number of CalendarView objects in the collection. + + + + + Gets or sets the CalendarView at the specified indexed location in the collection. + + The indexed location of the CalendarView in the collection. + The CalendarView at the specified indexed location in the collection. + + + + Gets or sets by name the CalendarView instance in the collection. + + The name of the CalendarView in the collection. + The CalendarView with a specified name in the collection. + + + + Gets a value indicating whether access to the CalendarViewCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the CalendarViewCollection. + + + + + Gets a value indicating whether the CalendarViewCollection has a fixed size. + + + + + Gets a value indicating whether the CalendarViewCollection is read-only. + + + + + Gets or sets the CalendarView at the specified indexed location in the collection. + + The indexed location of the CalendarView in the collection. + The CalendarView at the specified indexed location in the collection. + + + + Specifies the display formats for the days of the week used as selectors by + RadCalendar.You can specify whether the days of the week are displayed as + the full name, short (abbreviated) name, first letter of the day, or first two letters of the day. + + + + + The days of the week displayed in full format. For example, Tuesday. + + + + + The days of the week displayed in abbreviated format. For example, Tues. + + + + + The days of the week displayed with just the first letter. For example, T. + + + + + The days of the week displayed with just the first two letters. For example, Tu. + + + + + The shortest unique abbreviated day names associated with the current DateTimeFormatInfo object. + + + + + Indicates the first day of the week to use when calling date-related functions. + + + + + Sunday + + + + + Monday + + + + + Tuesday + + + + + Wednesday + + + + + Thursday + + + + + Friday + + + + + Saturday + + + + + Handled by the current System.Globalization.Calendar object. + + + + + Summary description for MonthLayout. + Layout_7columns_x_6rows - horizontal layout + Layout_14columns_x_3rows - horizontal layout + Layout_21columns_x_2rows - horizontal layout + Layout_7rows_x_6columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + Layout_14rows_x_3columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + Layout_21rows_x_2columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + + + + Allows the calendar to display the days in a 7 by 6 matrix. + + 1 + + + + Alows the calendar to display the days in a 14 by 3 matrix. + + 2 + + + + Allows the calendar to display the days in a 21 by 2 matrix. + + 4 + + + + Allows the calendar to display the days in a 7 by 6 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 8 + + + + Allows the calendar to display the days in a 14 by 3 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 16 + + + + Allows the calendar to display the days in a 21 by 2 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 32 + + + + Summary description for RecurringEvents. + DayInMonth - Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day. + DayAndMonth - The month and the day part of the date is taken into account. That gives the ability to serve events repeated in a specific month on the same day. + Today - gives the ability to control the visual appearace of today's date. + None - Default value, means that the day in question is a single point event, no recurrences. + + + + + Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day. + + 1 + + + + The month and the day part of the date are taken into account. That gives the ability to serve events repeated in a specific month on the same day. + + 2 + + + + The week day is taken into account. That gives the ability to serve events repeated in a specific day of the week. + + 4 + + + + The week day and the month are taken into account. That gives the ability to serve events repeated in a specific week day in a specific month. + + 8 + + + + Gives the ability to control the visual appearace of today's date. + + 16 + + + + Default value, means that the day in question is a single point event, no recurrence. + + 32 + + + + Summary description for CalendarView. + + + + + Gets the string representation for a particular day in the week. + + Specifies the day of the week. + the string representation for the specified day. + + + + Retrieves the ToolTip text associated with a particular RadCalendarDay object. + + RadCalendarDay object + The retrieved ToolTip text associated with a particular RadCalendarDay object + + + + Gets the RadCalendarDay object associated with a particular DateTime object if any. + + DateTime object to be tested. + The retrieved RadCalendarDay object. + + + + Gets the month name. + + + + + Returns the number of months displayed by a particular MonthView (in this case 1). + + + + + Summary description for CalendarView. + + + + + Calculates the correct position of the CalendarView + + + + + Returns the index of the specified DateTime object in the collection. + + The DateTime object to locate in the collection. + The zero-based index of the item found in the DateTimeCollection; otherwise, -1. + + + + Adds a previously created DateTime object to the end of the DateTimeCollection. + + The DateTime object to add to the collection. + The zero-based index value of the DateTime object added to the DateTimeCollection. + + + + Returns an enumerator that can be used to iterate through the DateTime collection. + + An IEnumerator that represents the DateTime collection. + + + + Inserts an existing DateTime object into the DateTimeCollection at the specified location. + + The indexed location within the collection to insert the DateTime object. + The DateTime object to insert into the collection. + + + + CanAdd method verify whether the date can be add to the collection. + + The DateTime object to insert into the collection. + + + + Removes the specified DateTime object from the DateTimeCollection. + + The DateTime object to remove. + + + + Removes all DateTime objects from the collection. + + + + + Removes a range of DateTime elements from the DateTimeCollection. + + The zero-based starting index of the range of elements to remove. + The number of elements to remove. + + + + Adds an array of previously created DateTime objects to the collection. + + An array of DateTime objects representing the dates to add to the collection. + + + + Determines whether the specified DateTime object is a member of the collection. + + The DateTime to locate in the collection. + true if the DateTime is a member of the collection; otherwise, false. + + + + Copies the elements of the DateTime collection to a new DateTime array. + + A DateTime array + + + + Returns an enumerator that can be used to iterate through the DateTime collection. + + An IEnumerator that represents the DateTime collection. + + + + Copies the elements of the DateTimeCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from DateTimeCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a previously created DateTime object to the end of the DateTimeCollection. + + The DateTime object to add to the collection. + The zero-based index value of the DateTime object added to the DateTimeCollection. + + + + Removes all DateTime objects from the collection. + + + + + Determines whether the specified DateTime object is a member of the collection. + + The DateTime to locate in the collection. + true if the DateTime is a member of the collection; otherwise, false. + + + + Returns the index of the specified DateTime object in the collection. + + The DateTime object to locate in the collection. + The zero-based index of the item found in the DateTimeCollection + + + + Inserts an existing DateTime object into the DateTimeCollection at the specified location. + + The indexed location within the collection to insert the DateTime object. + The DateTime object to insert into the collection. + + + + Removes the specified DateTime object from the DateTimeCollection. + + The DateTime object to remove. + + + + Removes the element at the specified index of the DateTimeCollection. + + The zero-based index of the element to remove. + + + + Creates a new DateTimeCollection object that is a copy of the current instance. + + A new DateTimeCollection object that is a copy of this instance. + + + + Creates a new object that is a copy of the current instance. + + A new object that is a copy of this instance. + + + + Gets the total number of DateTime objects in the collection. + + + + + Gets or sets the DateTime at the specified indexed location in the collection. + + The indexed location of the DateTime in the collection. + The DateTime at the specified indexed location in the collection. + + + + Gets a value indicating whether access to the DateTimeCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the DateTimeCollection. + + + + + Gets a value indicating whether the DateTimeCollection has a fixed size. + + + + + Gets a value indicating whether the DateTimeCollection is read-only. + + + + + Gets or sets the DateTime at the specified indexed location in the collection. + + The indexed location of the DateTime in the collection. + The DateTime at the specified indexed location in the collection. + + + + The RadCalendar main class. + + + + + Raises the SelectionChanging event. + + A DateTimeCollection collection used by SelectionEventArgs. + A List with Dates which will be selected + SelectionEventArgs instance. + + + + Raises the SelectionChanged event. + + + + + Raises the ElementRender event of the RadCalendar control and allows you to provide a custom + handler for the ElementRender event. + + A LightVisualElement object that contains information about the cell to render. + A RadCalendarDay that contains information about the day to render. + A CalendarView that contains the day to render. + + + + Raises the ViewChanging event. + + A CalendarView collection used by ViewChangingEventArgs. + ViewChangingEventArgs instance. + + + + Raises the ViewChanged event. + + + + + Remove focused date and change the current view to today + + Indicates that all selected dates will be cleared as well. + + + + Removes the time component of a DateTime object, thus leaving only the date part. + + the DateTime object to be processed. + the DateTime object containing only the date part of the original DateTime object. + + + + Ensures that a valid CalendarView object is instantiated and used by RadCalendar as default view. + + The CalendarView object to be used as default view. + + + + Explicitely invalidates RadCalendar layout. Can be used when batch updates to calendar properties are made + outside of the control that require control invalidation. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the row in the multi-view table where the focused date is positioned. + + + + + The column in the multi-view table where the focused date is positioned. + + + + + Gets the instance of RadCalendarElement wrapped by this control. RadCalendarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadCalendar. + + + + + Specifies the navigation mode that will be used when user click on header element.Zoom navigation mode is not supporting in MultipleView of RadCalendar + + + + + Occurs when the view is about to be changed by the navigation elements. + + + + + Occurs when the view is changed by the navigation elements. + + + + + SlectionChanged event is fired when a new date is added or removed from + the SelectedDates collection. + + + + + SlectionChanged event is fired when a new date is added or removed from the + SelectedDates collection. + + + + + ElementRender event is fired after the generation of every calendar cell + object and just before it gets rendered. It is the last place where + changes to the already constructed calendar cells can be made. + + + + + ViewChanging event is fired when a navigation to a different date range is required. + + + + + ViewChanged event is fired when a navigation to a different date + range occurred. Generally this is done by using the normal navigation buttons. + + + + + Specifies the display formats for the days of the week used as selectors by RadCalendar. + + + Use the DayNameFormat property to specify the name format for the days + of the week. This property is set with one of the DayNameFormat + enumeration values. You can specify whether the days of the week are displayed as + the full name, short (abbreviated) name, first letter of the day, or first two + letters of the day. + The DayNameFormat enumeration represents the display formats for the + days of the week used as selectors by RadCalendar. + + + Member name + Description + + + FirstLetter + The days of the week displayed with just the first letter. For + example, T. + + + FirstTwoLetters + The days of the week displayed with just the first two + letters. For example, Tu. + + + Full + The days of the week displayed in full format. For example, + Tuesday. + + + Short + The days of the week displayed in abbreviated format. For + example, Tues. + + + Shortest + The shortest unique abbreviated day names associated with the current DateTimeFormatInfo + object. + + + + + + + Gets or sets a DateTimeFormatInfo instance that defines the + culturally appropriate format of displaying dates and times as specified by the default + culture. + + + A DateTimeFormatInfo can be created only for the invariant + culture or for specific cultures, not for neutral cultures. + The cultures are generally grouped into three sets: the invariant culture, + the neutral cultures, and the specific cultures. + The invariant culture is culture-insensitive. You can specify the invariant + culture by name using an empty string ("") or by its culture identifier 0x007F. + InvariantCulture retrieves an instance of the invariant culture. + It is associated with the English language but not with any country/region. It can + be used in almost any method in the Globalization namespace that requires a + culture. If a security decision depends on a string comparison or a case-change + operation, use the InvariantCulture to ensure that the behavior will be + consistent regardless of the culture settings of the system. However, the invariant + culture must be used only by processes that require culture-independent results, + such as system services; otherwise, it produces results that might be + linguistically incorrect or culturally inappropriate. + A neutral culture is a culture that is associated with a language but not + with a country/region. A specific culture is a culture that is associated with a + language and a country/region. For example, "fr" is a neutral culture and "fr-FR" + is a specific culture. Note that "zh-CHS" (Simplified Chinese) and "zh-CHT" + (Traditional Chinese) are neutral cultures. + The user might choose to override some of the values associated with the + current culture of Windows through Regional and Language Options (or Regional + Options or Regional Settings) in Control Panel. For example, the user might choose + to display the date in a different format or to use a currency other than the + default for the culture. + If UseUserOverride is true and the specified culture + matches the current culture of Windows, the CultureInfo uses those + overrides, including user settings for the properties of the + DateTimeFormatInfo instance returned by the DateTimeFormat property, + the properties of the NumberFormatInfo instance returned by the + NumberFormat property, and the properties of the + CompareInfo instance returned by the CompareInfo + property. If the user settings are incompatible with the culture associated with + the CultureInfo (for example, if the selected calendar is not one of the + OptionalCalendars ), the results of the methods and the values of + the properties are undefined.
+
+ Note: In this version of RadCalendar the + NumberFormatInfo instance returned by the + NumberFormat property is not taken into account.
+
+
+ + + Gets or sets the CultureInfo supported by this RadCalendar object. + Describes the names of the culture, the writing system, and + the calendar used, as well as access to culture-specific objects that provide + methods for common operations, such as formatting dates and sorting strings. + + + The culture names follow the RFC 1766 standard in the format + "<languagecode2>-<country/regioncode2>", where <languagecode2> is + a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> + is an uppercase two-letter code derived from ISO 3166. For example, U.S. English is + "en-US". In cases where a two-letter language code is not available, the + three-letter code derived from ISO 639-2 is used; for example, the three-letter + code "div" is used for cultures that use the Dhivehi language. Some culture names + have suffixes that specify the script; for example, "-Cyrl" specifies the Cyrillic + script, "-Latn" specifies the Latin script. + The following predefined CultureInfo names and identifiers are + accepted and used by this class and other classes in the System.Globalization + namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Culture NameCulture IdentifierLanguage-Country/Region
"" (empty string)0x007Finvariant culture
af0x0036Afrikaans
af-ZA0x0436Afrikaans - South Africa
sq0x001CAlbanian
sq-AL0x041CAlbanian - Albania
ar0x0001Arabic
ar-DZ0x1401Arabic - Algeria
ar-BH0x3C01Arabic - Bahrain
ar-EG0x0C01Arabic - Egypt
ar-IQ0x0801Arabic - Iraq
ar-JO0x2C01Arabic - Jordan
ar-KW0x3401Arabic - Kuwait
ar-LB0x3001Arabic - Lebanon
ar-LY0x1001Arabic - Libya
ar-MA0x1801Arabic - Morocco
ar-OM0x2001Arabic - Oman
ar-QA0x4001Arabic - Qatar
ar-SA0x0401Arabic - Saudi Arabia
ar-SY0x2801Arabic - Syria
ar-TN0x1C01Arabic - Tunisia
ar-AE0x3801Arabic - United Arab Emirates
ar-YE0x2401Arabic - Yemen
hy0x002BArmenian
hy-AM0x042BArmenian - Armenia
az0x002CAzeri
az-AZ-Cyrl0x082CAzeri (Cyrillic) - Azerbaijan
az-AZ-Latn0x042CAzeri (Latin) - Azerbaijan
eu0x002DBasque
eu-ES0x042DBasque - Basque
be0x0023Belarusian
be-BY0x0423Belarusian - Belarus
bg0x0002Bulgarian
bg-BG0x0402Bulgarian - Bulgaria
ca0x0003Catalan
ca-ES0x0403Catalan - Catalan
zh-HK0x0C04Chinese - Hong Kong SAR
zh-MO0x1404Chinese - Macau SAR
zh-CN0x0804Chinese - China
zh-CHS0x0004Chinese (Simplified)
zh-SG0x1004Chinese - Singapore
zh-TW0x0404Chinese - Taiwan
zh-CHT0x7C04Chinese (Traditional)
hr0x001ACroatian
hr-HR0x041ACroatian - Croatia
cs0x0005Czech
cs-CZ0x0405Czech - Czech Republic
da0x0006Danish
da-DK0x0406Danish - Denmark
div0x0065Dhivehi
div-MV0x0465Dhivehi - Maldives
nl0x0013Dutch
nl-BE0x0813Dutch - Belgium
nl-NL0x0413Dutch - The Netherlands
en0x0009English
en-AU0x0C09English - Australia
en-BZ0x2809English - Belize
en-CA0x1009English - Canada
en-CB0x2409English - Caribbean
en-IE0x1809English - Ireland
en-JM0x2009English - Jamaica
en-NZ0x1409English - New Zealand
en-PH0x3409English - Philippines
en-ZA0x1C09English - South Africa
en-TT0x2C09English - Trinidad and Tobago
en-GB0x0809English - United Kingdom
en-US0x0409English - United States
en-ZW0x3009English - Zimbabwe
et0x0025Estonian
et-EE0x0425Estonian - Estonia
fo0x0038Faroese
fo-FO0x0438Faroese - Faroe Islands
fa0x0029Farsi
fa-IR0x0429Farsi - Iran
fi0x000BFinnish
fi-FI0x040BFinnish - Finland
fr0x000CFrench
fr-BE0x080CFrench - Belgium
fr-CA0x0C0CFrench - Canada
fr-FR0x040CFrench - France
fr-LU0x140CFrench - Luxembourg
fr-MC0x180CFrench - Monaco
fr-CH0x100CFrench - Switzerland
gl0x0056Galician
gl-ES0x0456Galician - Galician
ka0x0037Georgian
ka-GE0x0437Georgian - Georgia
de0x0007German
de-AT0x0C07German - Austria
de-DE0x0407German - Germany
de-LI0x1407German - Liechtenstein
de-LU0x1007German - Luxembourg
de-CH0x0807German - Switzerland
el0x0008Greek
el-GR0x0408Greek - Greece
gu0x0047Gujarati
gu-IN0x0447Gujarati - India
he0x000DHebrew
he-IL0x040DHebrew - Israel
hi0x0039Hindi
hi-IN0x0439Hindi - India
hu0x000EHungarian
hu-HU0x040EHungarian - Hungary
is0x000FIcelandic
is-IS0x040FIcelandic - Iceland
id0x0021Indonesian
id-ID0x0421Indonesian - Indonesia
it0x0010Italian
it-IT0x0410Italian - Italy
it-CH0x0810Italian - Switzerland
ja0x0011Japanese
ja-JP0x0411Japanese - Japan
kn0x004BKannada
kn-IN0x044BKannada - India
kk0x003FKazakh
kk-KZ0x043FKazakh - Kazakhstan
kok0x0057Konkani
kok-IN0x0457Konkani - India
ko0x0012Korean
ko-KR0x0412Korean - Korea
ky0x0040Kyrgyz
ky-KZ0x0440Kyrgyz - Kazakhstan
lv0x0026Latvian
lv-LV0x0426Latvian - Latvia
lt0x0027Lithuanian
lt-LT0x0427Lithuanian - Lithuania
mk0x002FMacedonian
mk-MK0x042FMacedonian - FYROM
ms0x003EMalay
ms-BN0x083EMalay - Brunei
ms-MY0x043EMalay - Malaysia
mr0x004EMarathi
mr-IN0x044EMarathi - India
mn0x0050Mongolian
mn-MN0x0450Mongolian - Mongolia
no0x0014Norwegian
nb-NO0x0414Norwegian (Bokmål) - Norway
nn-NO0x0814Norwegian (Nynorsk) - Norway
pl0x0015Polish
pl-PL0x0415Polish - Poland
pt0x0016Portuguese
pt-BR0x0416Portuguese - Brazil
pt-PT0x0816Portuguese - Portugal
pa0x0046Punjabi
pa-IN0x0446Punjabi - India
ro0x0018Romanian
ro-RO0x0418Romanian - Romania
ru0x0019Russian
ru-RU0x0419Russian - Russia
sa0x004FSanskrit
sa-IN0x044FSanskrit - India
sr-SP-Cyrl0x0C1ASerbian (Cyrillic) - Serbia
sr-SP-Latn0x081ASerbian (Latin) - Serbia
sk0x001BSlovak
sk-SK0x041BSlovak - Slovakia
sl0x0024Slovenian
sl-SI0x0424Slovenian - Slovenia
es0x000ASpanish
es-AR0x2C0ASpanish - Argentina
es-BO0x400ASpanish - Bolivia
es-CL0x340ASpanish - Chile
es-CO0x240ASpanish - Colombia
es-CR0x140ASpanish - Costa Rica
es-DO0x1C0ASpanish - Dominican Republic
es-EC0x300ASpanish - Ecuador
es-SV0x440ASpanish - El Salvador
es-GT0x100ASpanish - Guatemala
es-HN0x480ASpanish - Honduras
es-MX0x080ASpanish - Mexico
es-NI0x4C0ASpanish - Nicaragua
es-PA0x180ASpanish - Panama
es-PY0x3C0ASpanish - Paraguay
es-PE0x280ASpanish - Peru
es-PR0x500ASpanish - Puerto Rico
es-ES0x0C0ASpanish - Spain
es-UY0x380ASpanish - Uruguay
es-VE0x200ASpanish - Venezuela
sw0x0041Swahili
sw-KE0x0441Swahili - Kenya
sv0x001DSwedish
sv-FI0x081DSwedish - Finland
sv-SE0x041DSwedish - Sweden
syr0x005ASyriac
syr-SY0x045ASyriac - Syria
ta0x0049Tamil
ta-IN0x0449Tamil - India
tt0x0044Tatar
tt-RU0x0444Tatar - Russia
te0x004ATelugu
te-IN0x044ATelugu - India
th0x001EThai
th-TH0x041EThai - Thailand
tr0x001FTurkish
tr-TR0x041FTurkish - Turkey
uk0x0022Ukrainian
uk-UA0x0422Ukrainian - Ukraine
ur0x0020Urdu
ur-PK0x0420Urdu - Pakistan
uz0x0043Uzbek
uz-UZ-Cyrl0x0843Uzbek (Cyrillic) - Uzbekistan
uz-UZ-Latn0x0443Uzbek (Latin) - Uzbekistan
vi0x002AVietnamese
vi-VN0x042AVietnamese - Vietnam
+
+
+ + + Gets the default System.Globalization.Calendar instance as + specified by the default culture. + + + A calendar divides time into measures, such as weeks, months, and years. The + number, length, and start of the divisions vary in each calendar. + Any moment in time can be represented as a set of numeric values using a + particular calendar. For example, the last vernal equinox occurred at (0.0, 0, 46, + 8, 20, 3, 1999) in the Gregorian calendar. An implementation of Calendar can + map any DateTime value to a similar set of numeric values, and + DateTime can map such sets of numeric values to a textual representation + using information from Calendar and DateTimeFormatInfo. The + textual representation can be culture-sensitive (for example, "8:46 AM March 20th + 1999 AD" for the en-US culture) or culture-insensitive (for example, + "1999-03-20T08:46:00" in ISO 8601 format). + A Calendar implementation can define one or more eras. The + Calendar class identifies the eras as enumerated integers where the current + era (CurrentEra) has the value 0. + In order to make up for the difference between the calendar year and the + actual time that the earth rotates around the sun or the actual time that the moon + rotates around the earth, a leap year has a different number of days than a + standard calendar year. Each Calendar implementation defines leap years + differently. + For consistency, the first unit in each interval (for example, the first + month) is assigned the value 1. + The System.Globalization namespace includes the following + Calendar implementations: GregorianCalendar, + HebrewCalendar, HijriCalendar, + JapaneseCalendar, JulianCalendar, + KoreanCalendar, TaiwanCalendar, and + ThaiBuddhistCalendar. + + + + + Gets or sets the format string that will be applied to the dates presented in the + calendar area. + + + For additional details see Date Format Pattern + topic + + + + + Specifies the day to display as the first day of the week on the + RadCalendar control. + + + The FirstDayOfWeek enumeration represents the values that specify + which day to display as the first day of the week on the RadCalendar control. + + + Member name + Description + + + Default + The first day of the week is specified by the system + settings. + + + Friday + The first day of the week is Friday. + + + Monday + The first day of the week is Monday. + + + Saturday + The first day of the week is Saturday. + + + Sunday + The first day of the week is Sunday. + + + Thursday + The first day of the week is Thursday. + + + Tuesday + The first day of the week is Tuesday. + + + Wednesday + The first day of the week is Wednesday. + + + + + + Gets or sets the format string that is applied to the calendar title. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'MMMM yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + Gets or sets the format string that is applied to the days cells tooltip. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'dddd, MMMM dd, yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + + Gets or sets whether tool tips are displayed for this speciffic control. + + + + + Gets or sets the separator string that will be put between start and end months in a multi view title. + + + + + Gets or sets the the count of rows to be displayed by a single CalendarView. + + + If the calendar represents a multi view, this property applies to the child views + inside the multi view. + + + + + Gets or sets the the count of columns to be displayed by a single CalendarView. + + + If the calendar represents a multi view, this property applies to the child views + inside the multi view. + + + + + Gets the today button of the footer element + + + + + Gets the clear button of the footer element + + + + + The Width applied to a Header + + + + + The Height applied to a Header + + + + + Gets or sets the horizontal alignment of the date cells content inside the + calendar area. + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Gets or sets the the count of rows to be displayed by a multi month CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a multi month CalendarView. + + + + + Gets or sets the maximum date valid for selection by + Telerik RadCalendar. Must be interpreted as the higher bound of the valid + dates range available for selection. Telerik RadCalendar will not allow + navigation or selection past this date. + + + This property has a default value of 12/30/2099 + (Gregorian calendar date). + + + + + Gets or sets the minimal date valid for selection by + Telerik RadCalendar. Must be interpreted as the lower bound of the valid + dates range available for selection. Telerik RadCalendar will not allow + navigation or selection prior to this date. + + + This property has a default value of 1/1/1980 + (Gregorian calendar date). + + + + + Gets or sets a value indicating whether the calendar is in read-only mode. + + + + + Sets or returns the currently selected date. The default value is the value of + System.DateTime.MinValue. + + + Use the SelectedDate property to determine the selected date on the >RadCalendar control. + The SelectedDate property and the SelectedDates collection are closely related. + When the AllowMultipleSelect property is set to false, a mode that allows only a single date selection, + SelectedDate and SelectedDates[0] have the same value and SelectedDates.Count equals 1. + When the AllowMultipleSelect property is set to true, mode that allows multiple date + selections, SelectedDate and SelectedDates[0] have the same value. + The SelectedDate property is set using a System.DateTime object. + When the user selects a date on the RadCalendar control, the SelectionChanged + event is raised. The SelectedDate property is updated to the selected date. + The SelectedDates collection is also updated to contain just this + date. +
+ Note Both the SelectedDate property and the + SelectedDates collection are updated before the SelectionChanged + event is raised. You can override the date selection by using the + OnSelectionChanged event handler to manually set the + SelectedDate property. The SelectionChanged event does not get + raised when this property is programmatically set. +
+
+
+ + + Gets or sets the value that is used by RadCalendar to determine + the viewable area displayed . + + + By default, the FocusedDate property returns the current + system date when in runtime, and in design mode defaults to + System.DateTime.MinValue. When the FocusedDate is + set, from that point, the value returned by the FocusedDate + property is the one the user sets. + + + + + Gets a collection of DateTime objects that represent the + selected dates on the RadCalendar control. + + + A DateTimeCollection that contains a collection of System.DateTime objects representing the selected + dates on the RadCalendar control. The default value is an empty DateTimeCollection. + + + Use the SelectedDates collection to determine the currently selected + dates on the control. + The SelectedDate property and the SelectedDates collection are closely related. When the AllowMultipleSelect + property is set to false, a mode that allows only a single date selection, + SelectedDate and SelectedDates[0] have the same value and + SelectedDates.Count equals 1. When the AllowMultipleSelect + property is set to true, mode that allows multiple date selections, + SelectedDate and SelectedDates[0] have the same value. + The SelectedDates property stores a collection of DateTime objects. + When the user selects a date or date range (for example with the column or + rows selectors) on the RadCalendar control, the SelectionChanged + event is raised. The selected dates are added to the SelectedDates + collection, accumulating with previously selected dates. The range of dates are not + sorted by default. The SelectedDate property is also updated to + contain the first date in the SelectedDates collection. + You can also use the SelectedDates collection to programmatically + select dates on the Calendar control. Use the Add, Remove, Clear, and SelectRange + methods to programmatically manipulate the selected dates in the SelectedDates collection. +
+ Note Both the SelectedDate property and the + SelectedDates collection are updated before the SelectionChanged + event is raised.You can override the dates selection by using the + OnSelectionChanged event handler to manually set the + SelectedDates collection. The SelectionChanged event is not + raised when this collection is programmatically set. +
+
+
+ + + Gets or sets whether navigating RadCalendar is allowed. + + + + + Gets or sets whether the fast navigation in RadCalendar is allowed. + + + + + Gets or sets the text displayed for the previous month navigation control. Will be + applied only if there is no image set (see + NavigationPrevImage). + + + Use the NavigationPrevText property to provide custom text for the + previous month navigation element in the title section of + RadCalendar. + + + The text displayed for the CalendarView previous month + navigation cell. The default value is "&lt;". + + + + + Gets or sets the text displayed for the next month navigation control. Will be + applied if there is no image set (see + NavigationNextImage). + + + The text displayed for the CalendarView next month navigation + cell. The default value is "&gt;". + + + Use the NavigationNextText property to provide custom text for the + next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed for the fast navigation previous month control. + + + The text displayed for the CalendarView selection element in the + fast navigation previous month cell. The default value is + "&lt;&lt;". + + + Use the FastNavigationPrevText property to provide custom text for + the next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed for the fast navigation next month control. + + + The text displayed for the CalendarView selection element in the + fast navigation next month cell. The default value is "&gt;&gt;". + + + Use the FastNavigationNextText property to provide custom text for + the next month navigation element in the title section of RadCalendar. + + + + + Gets or sets the image that is displayed for the previous month navigation control. + + + + + Gets or sets the image that is displayed for the next month navigation control. + + + + + Gets or sets the image that is displayed for the previous month fast navigation control. + + + + + Gets or sets the image that is displayed for the next month fast navigation control. + + + + + Gets or sets the text displayed as a tooltip for the previous month navigation control. + + + Use the NavigationPrevToolTip property to provide custom text for the + tooltip of the previous month navigation element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView previous month + navigation cell. The default value is "&lt;". + + + + + Gets or sets the text displayed as a tooltip for the next month navigation control. + + + The tooltip text displayed for the CalendarView next month + navigation cell. The default value is "&gt;". + + + Use the NavigationNextToolTip property to provide custom text for the + tooltip of the next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed as a tooltip for the fast navigation previous + month control. + + + Use the FastNavigationPrevToolTip property to provide custom text for + the tooltip of the fast navigation previous month element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView fast navigation + previous month cell. The default value is "&lt;&lt;". + + + + + Gets or sets the text displayed as a tooltip for the fast navigation previous + month control. + + + Use the FastNavigationPrevToolTip property to provide custom text for + the tooltip of the fast navigation previous month element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView fast navigation + previous month cell. The default value is "&lt;&lt;". + + + + + Gets or sets the horizontal alignment of the view title. + The ContentAlignment enumeration is defined in + System.Windows.Forms.VisualStyles + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Allows RadCalendar to render multiple months in a single view. + + + + + Allows the selection of dates. If not set, selection is forbidden, and if any dates are all ready selected, they are cleared. + + + + + Allows the selection of multiple dates. If not set, only a single date is selected, and if any dates + are all ready selected, they are cleared. + + + + Gets or sets whether the navigation buttons should be visible. + + + Gets or sets whether the fast navigation buttons should be visible. + + + Gets or sets whether RadCalendar will display a footer row. + + + Gets or sets whether RadCalendar will display a header/navigation row. + + + Gets or sets whether the column headers will appear on the calendar. + + + Gets or sets whether the row headers will appear on the calendar. + + + Gets or sets whether a single CalendarView object will display a header . + + + Gets or sets whether a single CalendarView object will display a selector. + + + + Gets or sets whether the view selector will be allowed to select all dates presented by the CalendarView. + + + + Gets or sets the zooming factor of a cell which is handled by the zooming (fish eye) functionality. + + + Gets or sets whether the zooming functionality is enabled. + + + + Gets or sets whether row headers ( if displayed by a MonthView object) + will act as row selectors. + + + + + Gets or sets whether column headers ( if displayed by a MonthView object) + will act as column selectors. + + + + + Gets or sets whether the month matrix, when rendered will show days from other (previous or next) + months or will render only blank cells. + + + + + Gets or sets the predefined pairs of rows and columns, so that the product of + the two values is exactly 42, which guarantees valid calendar layout. It is applied + on a single view level to every MonthView instance in the calendar. + + + The following values are applicable and defined in the MonthLayout + enumeration:
+
+ Layout_7columns_x_6rows - horizontal layout
+
+ Layout_14columns_x_3rows - horizontal layout
+
+ Layout_21columns_x_2rows - horizontal layout
+
+ Layout_7rows_x_6columns - vertical layout, required when AllowColumnHeaderSelectors is true and + Orientation is set to Vertical.
+
+ Layout_14rows_x_3columns - vertical layout, required when AllowColumnHeaderSelectors + is true and Orientation is set to Vertical.
+
+ Layout_21rows_x_2columns - vertical layout, required when AllowColumnHeaderSelectors is true and Orientation + is set to Vertical.
+
+
+ + + RadCalendar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadCalendar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Use the RowHeaderText property to provide custom text for + all row header elements. + + + The text displayed for all CalendarView row header elements. The default value is "". + + + Gets or sets the text displayed for all row header elements. + + + + + The image displayed for all CalendarView row header elements. The default value is "". + + + Gets or sets the image displayed for all row header elements. + + + + + Use the ColumnHeaderText property to provide custom text + for all CalendarView column header elements. + + + The text displayed for all CalendarView column header elements. The default value is "". + + + Gets or sets the text displayed for all column header elements. + + + + + The image displayed for all CalendarView column header elements. The default value is null. + + + Gets or sets the image displayed for all column header elements. + + + + + Gets or sets the text displayed for the view selector. + + + The text displayed for the view selector. The default value is "x". + + + Use the ViewSelectorText property to provide custom text for + the CalendarView selector element. + + + + + Gets or sets the image displayed for the view selector element. + + + The image displayed for the CalendarView selector element. The default value is null. + + + + + Gets or sets the orientation (rendering direction) of the calendar component. + Default value is Horizontal. + + + + + Member + Description + + + Horizontal + Renders the calendar data row after row. + + + Vertical + Renders the calendar data column after + column. + + + + + + + Gets or sets an integer value representing the number of CalendarView + views that will be scrolled when the user clicks on a fast navigation button. + + + + + A collection of special days in the calendar to which may be applied specific formatting. + + + + + Gets or sets the padding of the calendar cells. + + + + + Gets or sets the vertical spacing between the calendar cells. + + + + + Gets or sets the horizontal spacing between the calendar cells. + + + + + Gets or sets the margin of the calendar cells. + + + + + Exposes the top instance of CalendarView or its derived types. + Every CalendarView class handles the real calculation and + rendering of RadCalendar's calendric information. The + CalendarView has the ChildViews collection which contains all the sub views in case of a multi view + setup. + + + + Indicates the fish eye feature factor of a cell. + + + Gets or sets the zooming factor of a cell. + + + Gets or sets the week end cell. + + + Gets or sets the date which that cell is representing. + + + Gets or sets a cell representing a special day. + + + Gets or sets the today cell. + + + Gets or sets the today cell. + + + Gets or sets the out of range cell. + + + Gets or sets the cell which is from other month. + + + Gets or sets the selected cell. + + + + enable or disable animation on mouse click + + + + Specifies the type of a selector sell. + + + + Rendered as the first cell in a row. When clicked if UseRowHeadersAsSelectors is true, + it will select the entire row. + + + + + Rendered as the first cell in a column. When clicked if UseColumnHeadersAsSelectors is true, + it will select the entire column. + + + + + Rendered in the top left corner of the calendar view. When clicked if EnableViewSelector is true, + it will select the entire view. + + + + + Gets or sets the count of the items in the fast navigation drop down + + + + + first button + + + + + Last button + + + + + previuos button + + + + + next button + + + + + today button + + + + + label element + + + + + Gets or sets date time format + + + + + Gets or sets date time format + + + + + Gets or sets a value whether drop down fast navigation is enabled. + + + + Gets or sets whether the fish eye functionality is enabled + + + Gets or sets the zooming factor of a cell which is handled by the fish eye functionality.. + + + Gets or sets the width of header cells. + + + Gets or sets the height of header cells. + + + + first button + + + + + Last button + + + + + previuos button + + + + + next button + + + + + Sets the way opacity is applied to carousel items + + + + + Opacity is not modified + + + + + Selected item is with opacity 1.0. Opacity decreases corresponding to the distance from the selected item. + + + + + Opacity increases relatively to items' ZIndex. The Item with greatest ZIndex has opacity of 1.0 + + + + + CreateNewCarouselItem delegate usined by RadCarousel control + + + + + Arguments of CreateNewCarouselItem event + + + + + Initializes a new instance of the class. + + The new carousel item. + + + + Gets or sets the newly created item that will be added in RadCarousel + + + + + Represents a custom made ellipse path which will be used to specify the path travelled by carousel items when animated + + + + + Gets or sets the angle where itms new items will first appear in the carousel view. + + + + + RadCarouselContentItem with CarouselElement and Reflection primitive + + + + + create element with HostedItem + + + + + + Custom implementation for RadCarouselItem + + + + + + + Represent the HostedItem + + + + + Gets the owner RadCarouselElement. + + The owner. + + + Represents a RadCarouselReflectionItem primitive that is drawn on the screen. + + + + Default cstor for RadCarouselReflectionPrimitive + + which element will be draw + + + + repaint Reflection Image + + + + + ElementInvalidated + + + + + + + Represent ItemReflectionPercentage + + + + + Represents a color editor box. The RadColorBox class is a simple wrapper for the + RadColorBoxElement class. The RadColorBox acts + to transfer events to and from its corresponding + RadColorBoxElement. The + RadColorBoxElement which is essentially the + RadColorBox control may be nested in other telerik controls. + + + + Sets input focus to the control. + true if the input focus request was successful; otherwise, false. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadColorDialog of this control. + + + + + Gets the RadColorBoxElement of this control. + + + + + Gets or sets the value of the editor. + + + + + Determines if users can input text directly into the text field.. + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Fires after the color dialog is closed. + + + + + Fires right before the value is changed. Cancelable event. + + + + + Fires after the editor value is changed. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Represents data item for the list of strips in the customize dialog of the . + + + + + Represents visual item for the list of strips in the customize dialog of the . + + + + + Represents data item for the list of strip items in the customize dialog of the . + + + + + Represents visual item for the list of strip items in the customize dialog of the . + + + + + Provides customization dialogs for the customization of a . + + + + + Creates an instance of a dialog form. + + + object that contains information about strips. + A refference to the created form. + + + + Creates a default localization provider. + + A new instance of the default localization provider. + + + + Fires when the current dialog provider has changed. + + + + + Fires when a customize dialog is shown + + + + + Fires before a customize dialog is shown + + + + + Gets or sets the current localization provider. + + + + + Represents a simple dialog that provides customization options for the element. + + + + + Creates a customize dialog that provides customization options for the strips in the specified . + + The from which the information for the strips will be taken. + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Sets the strings values depending on the current localization provider. + + + + + Represents a form that holds the items of a that has been undocked and is floating. + + + + + Tries to dock the floating strip in a specified . + + The control into which the strip should be docked. + + + + Tries to dock the floating strip on a specified point of screen. The docking will be completed only if + the control under that point is . + + The location in screen coordinates where the strip should try to dock. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the control that hosts the floating items. + + + + + Gets or sets the parent of the control to which the floating strip belongs. + + + + + Gets the which contains information about the floating strip. + + + + + Gets or sets the which the floating form is hosting. + + + + + Provides localization services for . + + + + + Represents localization strings for . + + + + + Holds information about the strips in a + + + + + Adds information about a specific strip to the + + The object to add info about. + + + + Removes information about a specific strip from the + + The object to remove info about. + + + + Gets a list of elements for which the is storing info. + + + + + Represents a menu item on the context menu opened by right click on the RadCommandBar control. + Has a coresponding element and controls its VisibleInCommandBar property. + + + + + This create the default layout + + + + + + Represent Layout that holds elements over the menu + + + + + Represents an arrow button element. Each telerik control has a + corresponding tree of RadElements; the RadArrowButtonElement can be nested + in other telerik controls. + + + + Gets or sets the + %arrow direction:Telerik.WinControls.Primitives.ArrowPrimitive.ArrowDirection%. + + + Gets the ArrowPrimitive object. + + + + Represents a drop down list in . + + + + + A base class for all of the items contained in . + + + + + Raises the event. + + Event data. + + + + Raises the event. + + Event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + Event data. + + + + Occurs when the orientation is changed + + + + + Occurs before the orientation is changed + + + + + Occurs when the property is changed. + + + + + Show or hide item from the strip overflow menu + + + + + Gets or sets the Orientation of the item. + + + + + Show or hide item from the strip + + + + + Gets or sets that the orientation will be inherit from parent + + + + + Occurs when the element is double-clicked. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the DropDownList box. + + + + + selects the hosted control + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the hosted . + + + + + Gets the collection of data-binding objects for this IBindableComponent. + + + + + Gets or sets the BindingContext for the object. + + + + + Gets the items collection of the . + + + + + Gets a reference to the drop down form associated with this RadDropDownList. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + + Rotate items on double click in the edit box part + + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + + /// + Gets or sets the easing type of the animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + + + Gets or sets the height in pixels of the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + DefaultItems count in drop-down portion of the RadDropDownList. + + + + + Gets or sets the drop down maximum size. + + + + Represent the DropDownListElement element + + + + + Represent the List element + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Indicating whether the Popup part of the control + are displayed. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Show or hide item from the strip + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Occurs when the popup is about to be opened. + + + + + Occurs when the popup is opened. + + + + + Occurs when the popup is about to be closed. + + + + + Occurs when the popup is closed. + + + + + Occurs when the CommandBarTextBox has focus and the user presses a key + + + + + Occurs when the CommandBarTextBox has focus and the user releases the pressed key up + + + + + Occurs when the CommandBarTextBox has focus and the user presses a key down + + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Represents a button in . + + + + + Represents a drop down button in . + + + + + Gets the arrow part of the button. + + + + + Gets or sets the drop down menu, opened on click. + + + + + Gets menu items collection + + + + + Represents a host for elements in . + + + + + Gets or sets the hosted . + + + + + Gets or sets the hosted . + + + + + Show or hide item from the strip + + + + + Represents a label in . + + + + + Represents a separator for the items in . + + + + + Gets or sets the thickness of the separator item. + + + + + Represents a split button in . + + + + + Raises the event. + + true if the event should be canceled, false otherwise. + + + + Raises the event. + + + + + Occurs when the default item is changed. + + + + + Occurs before the default item is changed. + + + + + Gets or sets the default item of the split button. + + + + + Represetns a text box in . + + + + + Appends the given text + + + + + + Clears the editing control's text + + + + + Clears and undoes the text + + + + + Copies the selected text + + + + + Cuts the selected text + + + + + clears the selection + + + + + Gets a character from a given point + + + + + + + Gets the index of a character at a given point + + + + + + + gets the index of the first char in a given line + + + + + + + gets the first char index at the current line + + + + + + Gets a line number from a char index + + + + + + + Gets the position from a char index + + + + + + + pastes the text in the clipboard + + + + + Pasted a given text + + + + + + scrolls the textbox to the caret position + + + + + Makes a selection in a given range specified by a start position and selection length + + + + + + + selects the whole text + + + + + selects the hosted control + + + + + Show or hide item from the strip + + + + + Gets or sets the hosted . + + + + + Gets or sets the prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the number of characters selected in the editable portion of the textbox. + + + + + Gets or sets the starting index of text selected in the textbox. + + + + + Occurs when the CommandBarTextBox has focus and the user pressees a key + + + + + Occurs when the CommandBarTextBox has focus and the user releases the pressed key up + + + + + Occurs when the CommandBarTextBox has focus and the user pressees a key down + + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Occurs when the element recieves focus. + + + + + Occurs when the element loses focus. + + + + + Represents a toggle button in . + + + + + Raises the StateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the StateChanged event. + + + + + Raises the IsCheckedChanged event. + + + + + Occurs when the IsChecked property is changed. + + + + + Occurs before the toggle state is changed. + + + + + Occurs when the toggle state is changed. + + + + + Occurs when the elements's check state changes. + + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + + Gets or sets a value indicating whether the toggle button has three or two + states. + + + + + + Represents a RadCommandBar control - a flexible component for implementation of tool and + button bars featuring docking behavior, toggling buttons, shrinkable toolbars. The RadCommandBar is responsible for managing + RadCommandBarBaseItem items which are positioned on some + of the CommandBarStripElement elements /// + + + Only items that inherit the RadCommandBarBaseItem class + can be placed inside the strip elements. You han use the special CommandBarHostItem + to host any other RadElement. + + + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Propagete ThemeName to child bar's menu + + + + + Apllies the orientation to the control and its child elements. + + The orientation to apply + Indicates whether events should be fired + + + + Gets or sets which RadCommandBar borders are docked to its parent control and determines + how a control is resized with its parent. + + + One of the values. The default + is . + + + The value assigned is not one of the + values. + + 1 + + + + Gets the menu opened upon rightclick on the control. + + + + + Gets or sets the size in pixels when current strip is being Drag and Drop in next or previous row. + + + + + Gets or sets the RadCommandBarElement of the RadCommandBar control. + + + + + Gets or sets the orientation of the commandbar - could be horizontal or vertical. + This property is controlled by the Dock property of the RadCommandBar control. + + + + + RadCommandBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadCommandBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs before the orientation is changed. + + + + + Occurs after the orientation is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs when a floating strip is docked. + + + + + Gets the rows of the commandbar. + + + + + Represents the RootElement of the RadCommandBar control. + + + + + Raises a bubble event to notify its parents about the beginning of a drag. + + A that contains the + event data. + true if the drag should be canceled, false otherwise. + + + + Raises a bubble event to notify its parents about the end of a drag. + + A that contains the + event data. + + + + Raises a bubble event to notify its parents about the drag. + + A that contains the + event data. + + + + Paints the dots of the grip element. + + The IGraphics object where the element should be painted. + The angle under which the element should be painted. + The factor of scaling the element. + + + + Gets the delta of the drag. + + + + + Gets whether the item is being dragged. + + + + + Gets or sets the orientation of the grip element. + + + + + Gets or sets the that owns the grip element. + + + + + Gets or sets the size of the painted dots. + + + + + Gets or sets the space between dots. + + + + + Gets or sets the shadow offset of the dots. + + + + + Gets or sets the number of dots. + + + + + Gets or sets the elements orientation inside the stacklayout. + Possible values are horizontal and vertical. + + + + + Represent a single strip with controls inside + + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The collection that is changed. + The targeted element of the collection. + The type of the operation. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Forces the drag to end. + + + + + Measures the items with the size given and calculates the expected size of the strip + including the and . + + The size to measure the items with. + The calculated size of the strip. + + + + Subscribes to the children's events. + + + + + Unsubscribe from the children's events. + + + + + Applies an orientation to the strip and its children. + + The orientation to apply. + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Items collection is changed. + + + + + Occurs when item is clicked. + + + + + Occurs when item is moved to the overflow panel. + + + + + Occurs when item is moved out from the overflow panel. + + + + + Occurs before oferflow menu is opened. + + + + + Occurs when overflow menu is opened. + + + + + Occurs before oferflow menu is opened. + + + + + Occurs when overflow menu is opened. + + + + + Occurs before VisibleInCommandBar property is changed. + + + + + Occurs when VisibleInCommandBar property is changed. + + + + + Occurs before item is moved in or out of the UncheckedItems collection. + + + + + Occurs when item is moved in or out of the UncheckedItems collection. + + + + + Occurs before VisibleInCommandBar property is changed. + + + + + Occurs when VisibleInCommandBar property is changed. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Gets the form in which the items are placed where the strip is floating. + + + + + Gets the layout panel in which the items are arranged. + + + + + Gets or sets Overflow menu single strip minimum size. + + + + + Gets or sets Overflow menu single strip maximum size. + + + + + Gets or sets the desired location of the strip element. + + + + + + Gets or sets if the strip can be dragged. + + + + + + Gets or sets if the strip can be floating. + + + + + + Gets the delta of the drag. + + + + + + Gets or sets whether the strip is beeing dragged. + + + + + Gets or sets whether the strip is visible in the command bar. + This property is changed by the context menu which is opened on right click on the control. + + + + + + Gets or sets the elements orientation inside the line element. + Possible values are horizontal and vertical. + + + + + Gets whether the strip has items in its overflow panel. + + + + + Gets or sets the element of the strip. + + + + + Gets or sets the element of the strip. + + + + + Gets the items contained in the strip. + + + + + Represent a layout for the items contained in a strip + + + + + Represent the overflow button at the end of each strip + + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + The element that is reponsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is reponsible for firing the event. + A that contains the + event data. + + + + Gets the "Add or Remove Items" menu item from overflow menu + + + + + Gets the menu item from overflow menu which opens the Customize Dialog + + + + + Gets the overflow panel which contains the overflowed items + + + + + Gets the RadDropDownMenu that is shown on click. + + + + + Gets whether there are items in the overflow panel. + + + + + Gets or sets the orientation of the overflow button. + + + + + Gets or sets the dropdown menu element theme name. + + + + + Gets or sets the panel in which overflowed items are arranged. + + + + + Gets or sets the ArrowPrimitive element of the button. + + + + + This event fires before oferflow menu is opened. + + + + + This event fires when overflow menu is opened. + + + + + This event fires before oferflow menu is opened. + + + + + This event fires when overflow menu is opened. + + + + + Represents a menu item from drop down menu opened by the . + Has a coresponding item from the Items collection and + controls its VisibleInStrip property. + + + + + Create RadCommandBarOverflowMenuItem instance + + Which item will be show in menu + Menu that should be updated on representedItem visibility is changed + + + + Gets or sets the image that is displayed on menu item element. + + + + + Gets or sets the text that is displayed on menu item element. + + + + + Gets or sets whether the item is in checked state. + This property affects the VisibleInStrip property of the coresponding item in . + + + + + Represents a row of the . + Contains a collection of elements. + + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Moves specified in coresponding row + if its property points to a location in other row. + + The to move. + + + + Applies the new orientation to the element and its children. + + The orientation to apply. + + + + Gets or sets the that owns this row. + + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Gets the elements contained in this row. + + + + + This class provides API for managing components. + + + + + Gets an instance of the struct + that represents the location of the current alert + according to its screen position setting and + the currently opened alerts. + + An instance of the + class that represents the alert which position to define. + The evaluated position in screen coordinates. + + + + Sets the active screen. The active screen is used + to calculate the positioning of all desktop alerts. + + An instance of the + class that is the active screen to set. + + + + Gets an enumerator for the currently shown dekstop alerts. + + + + + + Recalculates the location of all opened alerts + based on their screen position. + + + + + Registers an instance of the and + displays it on the screen according to its + + + + + + Unregisters a desktop alert from the manager. + + The alert to unregister. + + + + Evaluates whether a given + is registered with the . + + The to check. + + + + + Fires when an instance of the class + is registered with this . + + + + + Fires when an instance of the class + is removed from this . + + + + + Gets the only instance of the + class. + + + + + Gets an instance of the class + that represents the screen onto which the + positions the alert popups. + + + + + This class encapsulates information relevant to the events of the . + + + + + Creates an instance of the class + with a specified . + + + + + + Gets an instance of the class + associated with the event context. + + + + + This class represents the popup of a component. + This popup hosts an instance of the class which + represents the element hierarchy of the alert. + + + + + Creates an instance of the class. + + An instance of the class that + represents the owner alert of the + + + + Creates an instance of the class + with specified owner. + + An instance of the class that + represents the owner element of the + An instance of the class that + represents the owner alert of the + + + + Stops the auto-close timer. + + + + + Restarts the auto-close timer. + + + + + Gets a sets a boolean value determining whether the alert popup will be automatically + closed after a given amount of time. + + + + + Gets or sets the amount of time in seconds after + which the alert will be automatically closed. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets a boolean value determining whether the popup is pinned on the screen. + + + + + Gets or sets a boolean value determining whether the popup + can be moved by dragging it by the grip. + + + + + Gets an instance of the which + represents the main alert element. + + + + + Gets or sets the caption text of the alert. + + + + + Gets or sets the content text of the alert. + + + + + Gets or sets the content image of the alert. + + + + + Gets an instance of the that + holds the buttons items added to the alert component. + + + + + This class represents the element which holds the buttons + that can be added in a window. + + + + + Gets an instance of the that + represents the buttons collection of the window. + + + + + Gets an instance of the + that represents the layout panel which holds the added buttons. + + + + + This class represents the caption of a . + It contains caption grip which is used to move the alert window, close + button and options drop-down button. + + + + + Gets an instance of the class + that represents the part of a that + can be used to move the component on the screen. + + + + + Gets an instance of the class + that represents the part of a that contains + the text and the system buttons. + + + + + This class represents the caption grip of a window. + + + + + This class represents the content of a component. + The content usually is built of an image and HTML enabled text. + + + + + This element represents the text and system buttons part of a component. + + + + + Gets an instance of the that + represents the layout panel which holds the alert window's + text and system buttons elements. + + + + + Gets an instance of the that + represents the layout panel which holds the alert window's caption + buttons. + + + + + Gets an instance of the class + that represents the text of the text + caption. + + + + + Gets an instance of the class + that represents the close button of a component. + + + + + Gets an instance of the class + that represents the pin button of a component. + + + + + Gets an instance of the class + that represents the options button of a component. + + + + + This class represents the main element of a window. + + + + + Gets or sets a value indicating whether the control is automatically resized by Height + to display its entire contents. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets an instance of the class + that represents the alert's content image. + + + + + Gets or sets the text of the caption. + + + + + Gets or sets the content text of the . + This is the actual text displayed in a . + + + + + Gets an instance of the class + that represents the caption of a component. + The caption contains moving grip and system buttons. + + + + + Gets an instance of the class + that represents the main content element of a component. + This element contains an image and a text element. + + + + + Gets an instance of the class + that represents the panel which holds the buttons added to the + component. + + + + + This class encapsulates information needed for displaying a . + The class contains caption text, content text, content image and a collection of buttons. + + + + + Creates an instance of the class + with specified content text. + + The text which will be displayed as a content of the + + + + Creates an instance of the class + with specified content text and caption text. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + + + + Creates an instance of the class + with specified content text, caption text and content image. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + An instance of the class that will be displayed as a content image of the + + + + Creates an instance of the class + with specified content text, caption text, content image and a collection of buttons. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + An instance of the class that will be displayed as a content image of the + An instance of the class that holds the buttons which will be displayed in the + + + + Represents a set of possible screen positions for a + windows. + + + + + The window is shown + at the position that is set to the Location property. + + + + + The window is shown + at the bottom right part of the working area + of the current screen. + + + + + The window is shown + centered at the bottom part of the working area + of the current screen. + + + + + The window is shown + at the bottom left part of the working area + of the current screen. + + + + + The window is shown + at the top right part of the working area + of the current screen. + + + + + The window is shown + centered at the top part of the working area + of the current screen. + + + + + The window is shown + at the top left part of the working area + of the current screen. + + + + + This class represents a Desktop Alert component which can be used to + display a small window on the screen to notify the user that an + event occurred. The location of the window and the way it appears + can be customized. + + + + + Creates an instance of the class. + + + + + Creates an instance of the class. + + An implementation of the interface + that holds this instance. + + + + Returns an instance of the class + that represents the alert's popup + + + + + Displays the alert popup on the screen at the specified location. + + + + + Hides the alert popup from the screen. + + + + + Resets the explicit location modifier. In other words, if the user + has modified the location of the alert's popup, the + will not consider it when rearranging the visible alerts. This method + will reset the explicit location modifier and thus the + will continue managing the location of the alert according to its location settings. + + + + + Gets or sets a value indicating whether the control is automatically resized by Height + to display its entire contents. + + + + Gets or sets a value indicating whether control's elements are aligned + to support locales using right-to-left fonts. + One of the values. + The default is . + The assigned + value is not one of the values. + + + + + Gets or sets a boolean value determining whether a sound is played + when the alert's popup is shown. + + + + + Gets or sets the sound which is played when the alert's popup is shown + and the PlaySound property is set to true. + + + + + Gets or sets the initial opacity of the alert's popup. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets a boolean value determining whether the alert's + popup will be pinned on the screen. If pinned, the alert's popup + will not be automatically closed upon mouse click outside its bounds + or if the AutoClose property is set to true. + + + + + Gets or sets a boolean value determining whether the popup + can be moved by dragging the caption grip. + + + + + Gets or sets a boolean value determining whether the alert's popup + will be animated. + + + + + Gets or sets a value determining the direction of the alert's popup animation. + + + + + Gets or sets the count of the alert's drop-down animation frames. + + + + + Gets or sets the type of the drop-down animation easing. + + + + + Gets or sets a value from the + enumerator that determines the type of fade animation performed + when the alert's popup is opened/closed. + + + + + Gets or sets the interval in milliseconds between two animation frames. + + + + + Gets or sets the count of animation frames for the fade animation. + + + + + Gets a sets a boolean value determining whether the alert popup will be automatically + closed after a given amount of time. + + + + + Gets or sets the amount of time in seconds after + which the alert will be automatically closed. + + + + + Gets or sets a value of the + enum which defines the position of the alert popup + on the working area of the active screen. + + + + + Gets or sets an instance of the struct + which defines fixed size for the alert's popup. The default + value is an empty size. In this case the popup adjusts its + size according to its content. Otherwise the value of this property is + considered. + + + + + Gets or sets the content image of the . + + + + + Gets or sets the text displayed in the alert popup. This text + can be additinally HTML formatted to achieve better appearance. + + + + + Gets or sets the alert's caption text. + The caption text is displayed below the moving grip of the alert's popup. + + + + + Gets or sets the items collection containing the button items shown at the bottom + part of the desktop alert's popup. + + + + + Gets the items collection containing the items added to the options drop-down button + of the desktop alert's popup. + + + + + Gets an instance of the class + that represents the popup of the desktop alert. + + + + + This element is used for the sole purpose of storing the current DPI scale. + + + + + Fires when the alert's popup is about to be opened. The opening + action can be canceled by modifying the arguments of this event. + + + + + Fires when the alert's popup was opened. + + + + + Fires when the alert's popup is about to be closed. + The closing action can be canceled by modifying the + arguments of this event.. + + + + + Fires when the alert's popup was closed. + + + + + IsItemsDirty Property + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + DropDownList Property + + + + + represent Navigation Button position + + + + + RadCarouses is a control that animates a group of items in Carousel-style + rotation. + + + You can add item to RadCarousel control using Items collection, or through binding + to data by assigning its DataSource properties. In order to manage the display of + great number of items you may need to set the + property to true. In this case you should specify the maximum + visible number of item, using the property. + Item path can be specified through property. Each + carousel path instance contains properties to adjust various aspects of the path + curve, including "start" and "end" position, selected items position. If you use a + RadCarousel bound to a data, you would need to handle the + ItemDataBound event to change each carouselItem's + properties according to items in the data source. You may also need to handle the + CreateNewCarouselItem event, to change the default type of items + RadCarousel will produce when data binding. + + + + + Enable or disable the re-animation of RadCarousel on form maximize, minimize or resize + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the default size of the control. + + + + + Gets a reference to the Carousel element, which encapsulates the most of the + functionality of RadCarousel + + + + + Gets ot sets the number of animation frames between two positions + + + + + Gets or sets the delay in ms. between two frames of animation + + + + + Gets or sets a value indicating that the Carousel will loop items automatically + + + + + Gets or sets a value indicating whether carousel will increment or decrement item indexes when in auto-loop mode. + + + + + Gets or sets a value indicating when carousel will pause looping if in auto-loop mode. + + + + + Gets or sets a value indicating the interval (in seconds) after which the carousel will resume looping when in auto-loop mode. + + + + + + + + + + + + + Gets or sets the item in the carousel that is currently selected. + + + + + + + Gets or sets the field from the data source to use as the actual value for the + carousel items. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + + Gets or sets the number of items that carousel displays when is set to true. + + + + + Get or sets value indicating the maximum number of items that will be displayed in + the carousel, even when there are more Items in the + collection. Virtualizing the carousel would significantly improve its performance. + + + False indicates that all items be displayed. + It depends on SelectedIndex, which items are displayed in this case. + + + + + Gets or sets value indicating that when item position goes beyond the carousel + path, it will be displayed again in the beginning of the carousel path. + + + + + + + + Sets the way opacity is applied to carousel items + + + + + Gets or sets value indicating the minimum value of the opacity applied to items + + + + + + + + Gets or sets value indicating which of the predefined animations will be applied to carousel items + + + + + Gets or sets the default action when item is clicked as member. + + The item click default action. + + + + Gets or sets value indicating the height (in percentage - values from 0.0. to 1.0) of reflection that will be painted bellow each carousel item. + + The item reflection percentage. + + 0.0 indicates no reflection and 1.0 indicates 100% of the height of the original item + + + + + Present the Previous button + + + + + Pressent the Next button + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Represent the Navigation buttons Positions + + + + + + + + + + + + + + + + + + + + Gets or sets a value indicating whether the keyboard navigation is enabled. + + + + + Provides values for ItemClickDefaultAction property + + + + + Indicates that item click will not be handeled by default + + + + + Indicates that item will be set selected when clicked. + + + + + RadElement that animates a list of items using Carousel-style view, used by control + + + + + Fires the ItemLeaving event + + Event specific arguemtns + + + + Fires the ItemEntering event + + Event specific arguemtns + + + + Raises the CreateNewCarouselItem event. + + + + + Raises the ItemDataBound event. + + + + + Raises the SelectedItemChanged event. + + + + + Raises the SelectedValueChanged event. + + + + + Raises the SelectedIndexChanged event. + + + + + Finds the first item in the list box that matches the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + Initiates batch update of the items. + + + Ends batch update of the items. + + + Gets the value of the given item. + + + + Finds the first item in the list with Text that starts with the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + + Finds the first item in the list with Text containing the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + + Occurs when an Item is about to leave carousel view + + + + + Occurs when an Item is about to enter carousel view + + + + + Occurs before a new databound carousel item is created. You can use this event to + replace the default item. + + + + Occurs after an Item is databound. + + + Occurs when the selected items is changed. + + + Fires when the selected value is changed. + + + Fires when the selected index is changed. + + + Gets a collection of RadItem objects managed by RadCarousel. + + Items are populated automatically when RadCarousel is data-bound. When using , carousel displays only number of items at a time. + + + + Gets the element, which contains all visible carousel items + + + + Gets or sets a value indicating whether sorting of carousel items is + case-sensitive. + + + + + Gets or sets a value indicating whether the keyboard navigation is enabled. + + + + Gets or sets the item in the carousel that is currently selected. + + + Gets or sets the index the currently selected item. + + + Gets or sets a value defining the currently selected item. + + + + Gets or sets the field from the data source to use as the actual value for the + carousel items. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + Gets or sets the data source that the carousel will bind to. + + + + Gets or sets the default action when item is clicked as member. + + The item click default action. + + + + Gets or sets value indicating the height (in percentage - values from 0.0. to 1.0) of reflection that will be painted bellow each carousel item. + + The item reflection percentage. + + 0.0 indicates no reflection and 1.0 indicates 100% of the height of the original item + + + + + Set ot get the Carousel animation frames + + + + + Set ot get the Carousel animation frames delay + + + + + Gets or sets a value indicating the interval (in seconds) after which the carousel will resume looping when in auto-loop mode. + + + + + Present the Previous button + + + + + Pressent the Next button + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Represent the Navigation buttons Possitions + + + + + Type of animation to be applied on carousel items + + + + + Enable or disable the re-animation of RadCarousel on form maximize, minimeze or resize + + + + + Sets the way opacity is applied to carousel items + + + + + Gets the owner RadCarouselElement. + + The owner. + + + + Gets or sets CarouselPath object that defines the curve which carousel items will animate through + + + + + Gets or sets carousel items' animation easing. + + + + + + + + Gets or sets the set of animations to be applied on carousel items + + + + + Set ot get the Carousel animation frames + + + + + Set ot get the Carousel animation frames + + + + + Gets or sets a value indicating whether carousel will increnment or decrement item indexes when in auto-loop mode. + + + + + Gets or sets a value indicating that the Carousel will loop items automatically + + + + + Gets or sets a value indicating when carousel will pause looping if in auto-loop mode. + + + + + Gets or sets the font for this RadListDataItem instance. + + + + Represents the method that will handle the DataBindingComplete event of a RadListView and RadDropDownList + 2 + + + Provides data for the ListBindingCompleteEventHandler event. + 2 + + + Initializes a new instance of the ListBindingCompleteEventArgs class. + One of the values. + + + Gets a value specifying how the list changed. + One of the values. + 1 + + + + Gets or sets the font. Font type defines a particular format for text, including + font face, size, and style attributes. + + + + + Contains the visual list item which is to be formatted in the VisualItemFormatting event of RadListControl. + + + + + Gets the visual list item which is to be formatted. + + + + + Allows setting custom instances of the visual list items in RadListControl. + + + + + Gets or sets the custom visual list item that will be used as visual representation + of the data items. + + + + + Allows setting custom instances of the data items in RadListControl. + + + + + Gets or sets a data item that will be used to store logical information + to represent data records. + + + + + Provides a data item that was just bound during RadListControls data binding. + + + + + Gets the data item that was just associated with a data record. + The data record can be accessed through the DataBoundItem property. + + + + + Provides the new sort style after the same property of RadListControl changes. + + + + + Gets the new sort style value. + + + + + This interface is used to provide alternative ways to compare strings. + Users can assign their custom comparer to the FindStringComparer property of the respective control. + + + + + This class is used to create the initial instance of the IFindStringComparer. + It uses the string StartsWith method. + + + + + This class is used to precisely compare strings. It searches for an item whose text is exactly equal to the provided string. + + + + + This class is used to determine whether a string contains another string. + + + + + This enum is used in RadListControl.FindString() to determine whether an item is searched via the text property + set by the user or the text provided by the data binding logic. + + + + + Clears this instance. + + + + + Gets a value for the Value property in unbound mode. + + Returns an object reference pointing to the value of the Value property in unbound mode. + + + + This method is called when setting the Value property of a RadListDataItem when it is in unbound mode. + + The value to set the Value property to. + + + + Key object that is used by the FindByKey method of RadListView. + By default this property holds a reference to the . + + + + + Gets or sets the key for the left image associated with this list view item. + + Image Property + ImageIndex Property + + + + Gets or sets the left image list index value of the image displayed. + + Image Property + ImageKey Property + + + + Gets or sets a value that indicates if this item is current. + + + + + Gets a value indicating whether this instance has style. + + true if this instance has style; otherwise, false. + + + + Gets or sets a value for the property indicated by ValueMember if in bound mode, and private value in unbound mode. + Trying to explicitly set this property in bound mode will result in an InvalidOperationException. + + + + + Gets or sets the text. + + The text. + + + + Gets a value that indicates if this item is selected. + + + + + Gets a value that indicates if this item is currently visible. + + + + + Gets a value that indicating the current check state of the item. + + + + + This collection is used for adding items at design time. It should not be used in runtime. + + + + + Gets or sets the backcolor of the list node. Color type represents an ARGB color. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, gel, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the border color of the list item. + + + + + Gets or sets gradient angle for linear gradient. + + GradientStyle Property + GradientPercentage Property + GradientPercentage2 Property + NumberOfColors Property + The default value is 90.0. + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + GradientStyle Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + GradientStyle Property + GradientPercentage Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + The default value is + GradientStyles.Linear. + + GradientStyles Enumeration + GradientPercentage Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + + + + Gets or sets the number of used colors in the gradient effect. + + BackColor Property + BackColor2 Property + BackColor3 Property + BackColor4 Property + GradientStyle Property + The default value is 4. + + + + Gets or sets the relation between the image and the text. + + + + + Gets or sets the font. + + The font. + + + + Gets or sets the color of the fore. + + The color of the fore. + + + + Gets or sets the color of the border. + + The color of the border. + + + + Gets or sets the back color4. + + The back color4. + + + + Gets or sets the back color3. + + The back color3. + + + + Gets or sets the back color2. + + The back color2. + + + + Gets or sets the color of the back. + + The color of the back. + + + + Gets or sets the number of colors. + + The number of colors. + + + + Gets or sets the gradient percentage2. + + The gradient percentage2. + + + + Gets or sets the gradient percentage. + + The gradient percentage. + + + + Gets or sets the gradient angle. + + The gradient angle. + + + + Gets or sets the gradient style. + + The gradient style. + + + + Gets or sets the text alignment. + + The text alignment. + + + + Gets or sets the image alignment. + + The image alignment. + + + + Sets the owner for this column. This method is used internally, never call it directly. + + The owner element. + + + + Adjusts the column width to fit the contents of all cells in the column, including the header cell. + + + + + Gets the that owns this column. + + + + + Gets the maximum width that the column can be resized to. + + + + + Gets the minimum width that the column can be resized to. + + + + + Gets the current width of the column. + + + + + Gets the name of the field of the bound item corresponding to this column. + + + + + Gets the name of the column. Must be unique for each column in the same . + + + + + Gets or sets the text that will be displayed in the header cells. + + + + + Gets a value indicating whether the column is in bound mode. + + + + + Gets or sets a value indicating whether this column is current. + + + + + Gets or sets a value indicating whether this column will be visible in DetailsView. + + + + + Gets or sets the mode by which the column automatically adjusts its width after BestFit is executed. + + + + + Gets or sets a value indicating whether the group's items should be displayed. + + + + + Gets the items in this group. + + + + + Gets the data group that is assigned to this group. + + + + + Clears this instance. + + + + + Used by the best fit columns mechanism so the cell measure would ignore the column width. + + + + + Represents the method that will handle events in . + + + + + + + Provides data for all events used in + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + + + + Defines the check on click mode. Check on click states are used in RadListView and RadCheckedListBox. + + + + + Item CheckState is not toggled on click. + + + + + Item is selected and CheckState is toggled on first click. + + + + + Item is selected on first click. On second click the CheckState is toggled. + + + + + Determines whether this instance can execute a best fit columns operation. + + + true if this instance can execute a best fit columns operation; otherwise, false. + + + + + Widens / shrinks a column based on the space required by the text in the columns. + + The column. + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + The mode. + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where a column will be dropped after a drag operation. + + + + + Represents the view type of . + + + + + Represents a simple list view type. + + + + + Represents an icon view type. + + + + + Represents a detailed view type. + + + + + Represents a check box element. The RadCheckBox + class is a simple wrapper for the RadCheckBoxElement class. The + RadCheckBox acts to transfer events to and from its + corresponding RadCheckBoxElement instance. The radCheckBoxElement which is + essentially the RadCheckBox control may be nested in + other telerik controls. + + + + Gets or sets a value indicating the alignment of the check box. + + + + Gets an instance of the class + that represents the check box part of the . + + + + + Gets the item that is being dropped. + + + + + Gets the item that the DraggedItem is being dropped on. + + + + + Gets the item that is being dropped. + + + + + Gets the item that the DraggedItem is being dropped on. + + + + + Provides data for the RadPageViewItemsChanged event. + + + + + Gets the changed item. + + + + + Gets the change operation. + + + + + Initializes a new instance of the RadPageViewItemsChangedEventArgs class. + + The changed item. + The change operation. + + + + Provides data for the RadPageViewItemSelected event. + + + + + Gets the previous selected item of RadPageView. + + + + + Gets the selected item of RadPageView. + + + + + Initializes a new instance of the RadPageViewItemSelectedEventArgs class. + + The previous selected item of RadPageView. + The selected item of RadPageView. + + + + Provides data for the RadPageViewItemSelecting event. + + + + + Gets the selected item of RadPageView. + + + + + Gets the item to be selected. + + + + + Initializes a new instance of the RadPageViewItemSelectingEventArgs class. + The selected item of RadPageView. + The item to be selected. + + + + + Gets or sets the rectangle (in screen coordinates) which will be used to align the menu. + + + + + Gets a list with all the items that will be displayed. + + + + + Gets or sets the horizontal alignment of the menu that will display the items. + + + + + Gets or sets the vertical alignment of the menu that will display the items. + + + + + Gets the view mode associated with the event. + + + + + Determines whether the event may continue or it should be canceled. + + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + Gets or sets the width of the items area. + + + + + Represents a page in a RadPageView instance. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the image to be displayed by the associated RadPageViewItem instance. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the length of the current . The length + represents the fixed amount of space the page will take when the layout of the control is performed. + Note: This property is only functional when the control + is in ExplorerBar mode and its content size mode is set to FixedLength. + + + + + Gets or sets a boolean value determining whether the content of the current + is visible. This property is only functional in the + when the control is in ExplorerBar view mode. + + + + + Gets or sets the tooltip to be displayed when the item hovers page's associated item. + + + + + Gets or sets the text to be displayed in the associated item. + + + + + Gets the RadPageView instance that owns this page. + + + + + Gets the RadPageViewItem instance which is the UI representation of this page. + + + + + Gets or sets the size of the item of RadPageView.This size will be used in is PageViewItemSizeMode.Individual mode. + + + + + This enumerator defines the possible size modes for the content areas in a . + The size modes define how the content areas are calculated according to their content or the size of the + control. + + + + + The length of the content area is fixed and is defined by the PageLength value for each . + + + + + The length of the content area is automatically calculated to fit the length of the content. + + + + + The length of all visible content areas is equal. This usually implies that no scrollbars are shown. + + + + + This class contains layout information about a and + performs base layout operations over an item like measuring. + + + + + This class represents the element that implements the ExplorerBar view of the control. + This view allows for multiple visible pages, whereby items can be expanded/collapsed to show their content in an associated page. + + + + + Gets or sets a value from the enum + which determines the location of the items in relation to the content area. + + + + + Gets or sets a value from the enum + that determines how items in the stack view are selected and positioned. + + + + + Scroll in RadPageViewExplorerBar mode to control. + Control will be focused + + control to scroll + + + + Gets an instance of the that represents + the scrollbar of the . + + + + + Gets or sets a value from the enum + that defines how the content areas for each item are sized. + + + + + This class represents a single item in the 's explorer bar view mode. + + + + + Creates an instance of the . + + + + + Creates an instance of the . + + + + + Creates an instance of the . + + + + + Gets or sets a boolean value that determines whether the content of the + is expanded. + + + + + Gets or sets an instance of the that + represents the content holder of this . + + + + + Gets an instance of the class which is + the layout panel that holds instances of the + class representing items currently collapsed by using the overflow grip. + + + + + Gets the overflow menu button. + + + + + Gets the overflow drop-down menu. + + + + + Gets the overflow menu item used to show fewer items in the stack. + + + + + Gets the overflow menu item used to show more buttons in the stack. + + + + + Gets the overflow menu item used to add/remove items in the stack. + + + + + Represents a simple button within a RadPageViewElement. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Gets an array containing the items that are currently hidden by using the + overflow grip. + + + + + Gets an array containing the items that are currently unchecked by using the + overflow menu. + + + + + This method returns the count of the items which are currently + visible to the user. + + + + + + Makes an item invisible. The item will appear as unchecked in the + overflow menu. + + The item to make invisible. + + + + Makes an item visible. The item will appear as checked in the + overflow menu. + + The item to make visible. + + + + Drags the overflow grip down to hide the first possible visible item. + + True if the drag operation succeeds, otherwise false. + + + + Drags the overflow grip up to show the first possible hidden item. + + True if the drag operation succeeds, otherwise false. + + + + Shows a given amount of items from the hidden items + in the starting from the + bottom part of the stack. + + The count of the items to be shown. + + + + Hides a given amount of items from the visible items + in the starting from the + bottom part of the stack. + + The count of the items to be hidden. + + + + Gets the element that represents the container which holds + the buttons shown when items in the stack are hidden by using + the overflow grip. + + + + + Gets the element which represents the grip which can be dragged + to adjust the count of visible items in the stack. + + + + + Gets or sets the image that is shown on the + item in the overflow drop-down menu that is used to + show more buttons in the control. + + + + + Gets or sets the image that is shown on the + item in the overflow drop-down menu that is used to + show fewer buttons in the control. + + + + + Gets the collection containing the unchecked items. + + + + + Fires when the user clicks on a button associated with a instance. + This buttons is shown when the item is collapsed by using the overflow grip. + + + + + Fires when an item is shown in the . + + + + + Fires when an item is collapsed in the . + + + + + Fires when an item is checked in the overflow drop-down menu of the . + + + + + Fires when an item is unchecked in the overflow drop-down menu of the . + + + + + Gets or sets the associated overflow button with the current page view item. + This button is displayed below all items in the overflow items panel when the item + is collapsed by using the outlook grip. + When setting this property, the previously set item is disposed. + + + + + Defines possible alignment of buttons within RadPageViewItem instance. + + + + + Buttons overlay item's content. + + + + + Buttons are before item's content. + + + + + Buttons are after item's content. + + + + + Buttons are above item's content. + + + + + Buttons are below item's content. + + + + + Defines possible modes for dragging items within a RadPageView instance + + + + + Item dragging is disabled. + + + + + A preview is generated, indicating where the item will be inserted when dropped. This mode is cancelable. + + + + + The item is immediately reordered when moved to a different position. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently set as preview. + + + + + Represents a Label(static) element - such as Header and Footer - within a RadPageViewElement instance. + + + + + This enumerator defines the possible selection modes for items + in a . + + + + + The selected item is highlighted and its content is displayed in the content area. + + + + + The selected item is highlighted and its content is displayed before it according to the stack orientation. + + + + + The selected item is highlighted and its content is displayed after it according to the + stack orientation. + + + + + This enumerator defines the possible positioning + options for the items of a . + + + + + Positions the items to the left side of the content area. + + + + + Positions the items to the top of the content area. + + + + + Positions the items to the right of the content area. + + + + + Positions the items to the bottom of the content area. + + + + + Defines the visibility of the New item in a RadPageViewStripElement instance. + + + + + Represents a separator which is just a line separating one group of + controls from another. The RadSeparator is a simple wrapper of the + RadSeparatorElement class. + + + + + Gets or sets whether the edit control is auto-sized + + + + + + + + + + + + + + + + + + + + Gets the instance of RadSeparatorElement wrapped by this control. RadSeparatorElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSeparator. + + + + + RadSeparator consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Represents an enumration of the possible transitions which a uses to change its content. + + + + + Represent a live tile that can change dinamically its content by using animations. + + + + + Represents a tile that can be arranged in a control. + + + + + Gets the zero-based index of the column in which the tile should be arranged. + + + + + Gets the zero-based index of the row in which the tile should be arranged. + + + + + Gets or sets the number of cells that the tile should occupy in a column. + + + + + Gets or sets the number of cells that the tile should occupy in a row. + + + + + Gets or sets the padding according to the currently occupied cell. + + + + + Cancels the currently running animations. + + + + + Pauses the change of the content. + + + + + Continues the change of the content. + + + + + Moves to the next frame. + + + + + Changes the content of the tile by setting the CurrentItem property. Called on an interval specified by the ContentChangeInterval property. + + + + + Gets or sets the interval at which the content of changes. + + + + + Gets or sets a value indicating whether the animations are enabled. + + + + + Gets or sets the number of frames of the transition animation. + + + + + Gets or sets the interval between each frame of the transition animation. + + + + + Gets a collection of objects that represent the content items of the . + + + + + Gets or sets the type of the transition animation. + + + + + Gets or sets the currently displayed item. + + + + + Represent a panoramic view control that can display and arrange tiles in grouped or ungrouped manner. + + + + + Creates the main element of the control. + + The created element. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the way that RadPanorama should handle mouse wheel input. + + + + + Gets or sets a value that indicates whether the newly added tiles should be automatically arranged. + + + + + Enables or Disables the build in zoom functionality + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets a value indicating whether reordering of tiles via drag and drop is allowed. + + + + + Gets or sets a value indicating whether the groups or the items should be displayed. + + + + + Gets or sets a value indicating whether the background image should be scrolled along with the tiles. + + + + + Gets or sets the position on which the scrollbar should be aligned. + + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets the that represents the main element of the control. + + + + + Gets or sets the image that is displayed in the background. + + + + + Gets or sets the size of the image that is displayed in the background. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Gets a collection of objects that represent the tiles that are displayed. + + + + + Gets a collection of objects that represent the tiles that are displayed. + + + + + RadPanorama consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Enumerates the possible alignments of a horizontal scrollbar. + + + + + Provides options for the way that the MouseWheel should be handled. + + + + + Do not handle mouse wheel. + + + + + Zoom the view on mouse wheel. + + + + + Scroll the view on mouse wheel. + + + + + Scroll the view on mouse wheel, zoom the view on Control + mouse wheel. + + + + + Represents the main element of control. + + + + + Scrolls the view with a specified offset. + + The offset. + + + + Scrolls the view with a specified offset. + + The offset. + If the method is called too often, set this to [true] to improve performance. + + + + Updates the view according to the current value of the scrollbar. + + + + + Zooms the view out. + + + + + Zooms the view in towards the specified location. + + The location. + + + + Gets or sets the way that RadPanorama should handle mouse wheel input. + + + + + Gets or sets a value that indicates whether the newly added tiles should be automatically arranged. + + + + + Enables or Disables the build in zoom functionality + + + + + Indicates whether the view is zoomed out. + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets a value indicating whether reordering of tiles via drag and drop is allowed. + + + + + Gets or sets a value indicating whether the groups or the items should be displayed. + + + + + Gets or sets a value indicating whether the background image should be scrolled along with the tiles. + + + + + Gets or sets the position on which the scrollbar should be aligned. + + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets or sets the image that is displayed in the background. + + + + + Gets or sets the size of the image that is displayed in the background. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Gets the scrollbar of the view. + + + + + Gets the image primitive that represents tha image in the background. + + + + + Gets the layout that arranges the tiles in ungrouped mode. + + + + + Gets the layout that arranges the tile groups. + + + + + Gets or sets the that is responsible for the drag-drop reorder of tiles. + + + + + Gets the that is responsible for kinetic scrolling behavior with the mouse pointer. + + + + + Gets a collection of items that should be displayed in grouped mode. + + + + + Gets a collection of items that should be displayed in ungrouped mode. + + + + + Gets or sets the offset from the edges of the control at which automatic + scrolling starts. + + + + + Represent a container for grouped tiles that is displayed in control. + + + + + Updates the number of rows and columns before each layout update. + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets the height of the group title. + + + + + Gets the layout panel that arranges the tiles. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Represents the caret of + + + + + Initializes a new instance of the class. + + + + + Shows this caret. + + + + + Hides this caret. + + + + + Suspends the blinking of this caret. + + + + + Resumes the blinking of this caret + + + + + Gets or sets the caret position. + + + The position. + + + + + Gets or sets the height of the caret + + + The height. + + + + + Gets or sets the width of the caret + + + The width. + + + + + Represent the selection paiting primitive + + + + + Initializes a new instance of the class. + + The text box. + + + + Invalidates the specified selection start. + + The selection start. + The selection end. + if set to true [repaint]. + + + + Gets the rectangle of + + The current line. + + + + + Draws the primitive on the screen. + + + + + + + + Gets or sets a value indicating whether the primitive should be painted + be painted. + + + + + Gets or sets a value indicating whether the selection should be hidden if focused is lost + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets the associated text box element. + + + + + Represents a single word in + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Gets or sets the word's text + + + The text. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + Gets or sets the word according to the previous one + + + The offset. + + + + + Gets or sets the index of the word + + + The index. + + + + + Gets or sets a value indicating whether the word's background can be painted. + + + true if paint the background; otherwise, false. + + + + + Represents text measurer of . + + + + + Measures a text. + + The text. + The font. + + + + + Search the index position where the text should be wrapped for the available width. + + The text. + The font. + The available width. + + + + + Searches the text's index where the caret should be positioned + + The text. + The font. + The available width. + + + + + Represents an action when auto-complete performs + + + + + No action + + + + + Append action + + + + + Replace action + + + + + Represents the method that will handle the create text block in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Gets the text for which the block is created. + + + + + Gets or sets the text block. + + + The text block. + + + + + Represents the method that will handle when the selection is changed in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The selection start. + Length of the selection. + + + + Gets the selection start. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Represents the method that will handle when the selection is changing in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The old selection start. + Old length of the selection. + The new selection start. + New length of the selection. + + + + Gets the old selection start. + + + + + Gets the old length of the selection. + + + The old length of the selection. + + + + + Gets the new selection start. + + + + + Gets the new length of the selection. + + + The new length of the selection. + + + + + Represents the method that suggested text is changed in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text. + The suggested text. + The start position. + The end position. + The action. + + + + Gets the text. + + + + + Gets the suggested text. + + + + + Gets the auto-complete action. + + + + + Gets or sets the start position. + + + The start position. + + + + + Gets or sets the end position. + + + The end position. + + + + + Represents text changed action + + + + + Text editing + + + + + Text property change + + + + + Represents text changed event arguments + + + + + Initializes a new instance of the class. + + The text. + The caret position. + The action. + + + + Gets the text. + + + + + Gets the caret position. + + + + + Gets the text change action. + + + + + Represents text changing event arguments + + + + + Initializes a new instance of the class. + + The start position. + The length. + The old text. + The new text. + The action. + + + + Gets the text change action. + + + + + Gets the start position. + + + + + Gets the selection length. + + + + + Represent a method that handles menu opening in + + The sender. + The instance containing the event data. + + + + Event arguments of + + + + + Initializes a new instance of the class. + + The context menu. + + + + Gets the context menu. + + + + + Represents a logical line in + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start block. + The end block. + The size. + + + + Gets or sets the start block. + + + The start block. + + + + + Gets or sets the end block. + + + The end block. + + + + + Gets or sets the location. + + + The location. + + + + + Gets or sets the size. + + + The size. + + + + + Gets the control bounding rectangle. + + + + + Index comparer of + + + + + Initializes a new instance of the class. + + Index of the block. + + + + Compares the specified line. + + The line. + The null line. + + + + + Represents collection of + + + + + Adds the specified line. + + The line. + + + + Removes the range. + + The index. + The count. + + + + Removes all items from the . + + The is read-only. + + + + Binaries the search by Y coordinate. + + The y. + + + + + Binaries the search by offset. + + The offset. + + + + + Binaries the index of the search by block. + + The index. + + + + + Binaries the search. + + The comparer. + + + + + Offset comparer of + + + + + Initializes a new instance of the class. + + The offset. + + + + Compares the specified line. + + The line. + The null line. + + + + + Y-coordinate comparer of + + + + + Initializes a new instance of the class. + + The y coorditante. + + + + Compares the specified line X. + + The line X. + The line Y. + + + + + Offset comparer of + + + + + Initializes a new instance of the class. + + The offset. + + + + Compares the specified x. + + The x. + The null object. + + + + + Represents a localizable provider of + + + + + Gets the localized string by identifier + + The id. + + + + + Contains identifiers of the localizable strings in + + + + + Represent a text position in + + + + + Initializes a new instance of the class. + + The line. + The text block. + The char position. + + + + Compares to + + The position. + + + + + Equalses the specified position. + + The position. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Performs an implicit conversion from to . + + The start. + + The result of the conversion. + + + + + Implements the operator >. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator >=. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator <. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator <=. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator ==. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator !=. + + The start. + The end. + + The result of the operator. + + + + + Gets the length. + + The start. + The end. + + + + + Gets the first position. + + The layout panel. + + + + + Gets the last position. + + The layout panel. + + + + + Swaps two positions + + The start position. + The end position. + + + + Gets the line. + + + + + Gets the text block. + + + + + Gets the char position in + + + + + Represents a context menu of + + + + + Initializes a new instance of the class. + + The text box. + + + + Adds the menu item by localizable string identifier + + The string id. + + + + + Gets the associated text box. + + + + + Represents a scroller in + + + + + Initializes a new instance of the class. + + The scroll bar. + + + + Raises the event. + + The instance containing the event data. + + + + Suspends the notifications of event. + + + + + Resumes the notifications of event. + + + + + Updates the scroll range. + + Size of the client. + Size of the desired. + + + + Updates the scroll bar + + + + + Sets the scroll bar visibility. + + + + + Gets the max value of the scrollbar + + + + + Gets or sets the value of the scrollbar + + + The value. + + + + + Gets the associated scroll bar. + + + + + Gets or sets the state of the scrollbar. + + + The state of the scrollbar. + + + + + Gets the size of the client area. + + + The size of the client. + + + + + Gets the desired size of the document + + + The size of the desired. + + + + + Gets or sets the large change of the scrollbar. + + + The large change. + + + + + Gets or sets the small change of the scrollbar. + + + The small change. + + + + + Occurs when the scroller is updated. + + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Provides localization services for RadTimePicker. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + RadWizard localization strings. + + + + + Creates a RadTimePicker instance. + + + + + Fires the ValueChanging event + + + + + + + Fires the ValueChanged event + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the Text associated to the Button below TimeTables + + + + + Gets or sets the current culture associated to the RadTimePicker + + + + + Gets or sets the row height in time picker popup. + + + + + Gets or sets the columns count. + + + + + Gets or sets headers height. + + + + + Gets or sets button panel height. + + + + + Gets or sets the table width. + + + + + Set the Clock position Before Time Tables or Above Time Tables + + + + + Gets or sets a value which determines how to represent the times in time picker popup. + + + + + Gets or sets a value indicating the time interval. + + + + + Gets or sets a value indicating whether the contents of the TextBox control can be changed. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the time value assigned to the control. + + + + + Gets or sets the Minimal time value assigned to the control. + + + + + Gets or sets the Maximal time value assigned to the control. + + + + + Occurs when the editing value is changing. + + + + + Occurs when the editing value has been changed + + + + + Occurs when a cell changes its state. + + + + + Occurs when the RadItem has focus and the user pressees a key down + + + + + Occurs when the RadItem has focus and the user pressees a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Fires the ValueChanged event + + + + + + + Fires the ValueChanging event + + + + + + + Gets the culture to be used when displaying the time. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + This property is used internally. + + + + + Creates the button element for the increment button. + + A to be placed in the . + + + + Creates the button element for the decrement button. + + A to be placed in the . + + + + Enables or disables the ReadOnly mode of RadTimeBox. The default value is false. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + This property is used internally. + + + + + Occurs when the editing value is changing. + + + + + Occurs when the editing value has been changed + + + + + Represents a command area of RadWizard in Wizard97 mode. + + + + + Represents a command area of RadWizard. + + + + + Base class for RadWizard elements. + + + + + Updates the current state of the element. + + The WizardPage the element currently refers to. + + + + Gets or sets a value indicating that the element currently refers to a WizardWelcomePage. + + + + + Gets or sets a value indicating that the element currently refers to a WizardCompletionPage. + + + + + Gets the owner RadWizardElement of the element. + + + + + Creates a WizardCommandArea instance. + + + + + Creates a WizardCommandArea element. + + Owner of the element. + + + + Gets the CommandArea elements. + + + + + Gets the CommandArea Next button element. + + + + + Gets the CommandArea Cancel button element. + + + + + Gets the CommandArea Finish button element. + + + + + Gets the CommandArea Help button element. + + + + + Creates a Wizard97CommandArea instance. + + + + + Creates a Wizard97CommandArea element. + + >Owner of the element. + + + + Gets the CommandArea Back button element. + + + + + Represents a command area button element of RadWizard. + + + + + Gets or sets a value indication wether the button is focused. + + + + + Represents a button element of RadWizard in Aero mode. + + + + + Represents a top element of RadWizard in Aero mode. + + + + + Creates a WizardAeroTopElement instance. + + + + + Creates a WizardAeroTopElement. + + Owner of the element. + + + + Gets the AeroTopElement Back button element. + + + + + Represents a page header of RadWizard. + + + + + Creates a WizardPageHeaderElement instance. + + + + + Updates the current state of the element. + + + + + + Gets the element containing the WizardPageHeader title text. + + + + + Gets or sets the text of TitleElement. + + + + + Gets or sets the TitleElement visibility. + + + + + Gets the element containing the WizardPageHeader header text. + + + + + Gets or sets the text of HeaderElement. + + + + + Gets or sets the HeaderElement visibility. + + + + + Gets the element containing the WizardPageHeader icon image. + + + + + Gets or sets the WizardPageHeader icon image. + + + + + Gets or set the alignment of the WizardPageHeader icon image. + + + + + Represents an element of RadWizard which paints its text on glass. + + + + + Represents the method that will handle the ModeChanged events of RadWizard. + + The event sender. + Instance of ModeChangedEventArgs. + + + + Provides data for the ModeChanged event. + + + + + Gets the previous mode of the wizard. + + + + + Gets the current mode of the wizard. + + + + + Initializes a new instance of the ModeChangedEventArgs class. + + The previous mode of the wizard. + The current mode of the wizard. + + + + Represents the method that will handle the ModeChanging events of RadWizard. + + The event sender. + Instance of ModeChangingEventArgs. + + + + Provides data for the ModeChanging event. + + + + + Gets the current mode of the wizard. + + + + + Gets the next mode of the wizard. + + + + + Initializes a new instance of the ModeChangingEventArgs class. + + The current mode of the wizard. + The next mode of the wizard. + + + + Represents the method that will handle cancelable events of RadWizard. + + The event sender. + Instance of WizardCancelEventArgs. + + + + Provides data for cancelable events of RadWizard. + + + + + Initializes a new instance of the WizardCancelEventArgs class. + + + + + Determines whether the event is canceled or may continue. + + + + + Represents the method that will handle the SelectedPageChanged events of RadWizard. + + The event sender. + Instance of SelectedPageChangedEventArgs. + + + + Provides data for the SelectedPageChanged event. + + + + + Gets the previous selected page of the wizard. + + + + + Gets the selected page of the wizard. + + + + + Initializes a new instance of the SelectedPageChangedEventArgs class. + + The previous selected page of the wizard. + The selected page of the wizard. + + + + Represents the method that will handle the SelectedPageChanging events of RadWizard. + + The event sender. + Instance of SelectedPageChangingEventArgs. + + + + Provides data for the SelectedPageChanging event. + + + + + Gets the selected page of the wizard. + + + + + Gets the wizard page to be selected. + + + + + Initializes a new instance of the SelectedPageChangingEventArgs class. + The selected page of the wizard. + The wizard page to be selected. + + + + + Provides localization services for RadWizard. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + RadWizard localization strings. + + + + + Represents a completion page of RadWizard. + + + + + Represents a page of RadWizard. + + + + + Creates a WizardPage instance. + + + + + Returns a string representation of the page. + + The string representation of the page. + + + + Gets the owner RadWizardElement of the page. + + + + + Gets or sets the panel presenting the content area of the page. + + + + + Gets or sets the page title text. + + + + + Gets or sets the page header text. + + + + + Gets or sets a value indicating whether the page customizes its header. + + + + + Gets or sets the page's TitleElement visibility. Applies if CustomizePageHeader has value 'true'. + + + + + Gets or sets the page's HeaderElement visibility. Applies if CustomizePageHeader has value 'true'. + + + + + Gets or sets the page's IconElement image. Applies if CustomizePageHeader has value 'true'. + + + + + Gets a value indicating whether the page is selected. + + + + + Creates a WizardCompletionPage instance. + + + + + Gets or sets the Completion page image. + + + + + Represents a collection of WizardPage objects. + + + + + Creates a WizardPageCollection instance. + + Owner of the element. + + + + Inserts a WizardPage before the RadWizard CompletionPage in the collection. + + + + + + Gets the owner RadWizardElement of the collection. + + + + + Represents a welcome page of RadWizard. + + + + + Creates a WizardWelcomePage instance. + + + + + Gets or sets the Welcome page image. + + + + + RadWizard is a control which helps you to break a complex process into separate steps. + + + + + Creates a RadWizard instance. + + + + + Returns true if the focus should go the navigation buttons when the user presses Shift and Tab + + + + + Returns true if the focus should go the navigation buttons when the user presses Left arrow + + + + + Returns true if the focus should go the navigation buttons when the user presses Right arrow + + + + + Returns true if the focus should go the navigation buttons when the user presses Tab + + + + + Selects next wizard page. + + + + + Selects previous wizard page. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of . + + + + Raises the event. + + An instance of . + + + + Raises the event. + + An instance of . + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Gets the RadWizardElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the mode of the control. + + + + + Gets or sets a value indication wether the Aero style should apply when the control is in Wizard Aero mode. + + + + + Gets the pages collection. + + + + + Gets or sets the welcome page. + + + + + Gets or sets the completion page. + + + + + Gets or sets the selected page. + + + + + Gets the command area element. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header element. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets the element containing the image of the completion pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + RadWizard consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadWizard consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Fires before the mode of RadWizard is changed. + + + + + Fires after the mode of RadWizard is changed. + + + + + Fires when the next command button is clicked. + + + + + Fires when the back command button is clicked. + + + + + Fires when the finish command button is clicked. + + + + + Fires when the cancel command button is clicked. + + + + + Fires when the help command button is clicked. + + + + + Fires before the selected page of RadWizard is changed. + + + + + Fires after the selected page of RadWizard is changed. + + + + + Encapsulates the UI representation and functionality of RadWizard. + + + + + Creates a RadWizardElement instance. + + + + + Refreshes the element's view. + + + + + Selects next wizard page. + + + + + Selects previous wizard page. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Gets or sets the mode of RadWizard. + + + + + Gets the view of RadWizard. + + + + + Gets the Owner RadWizard control. + + + + + Gets or sets a value indication wether the Aero style should apply when RadWizard is in Wizard Aero mode. + + + + + Gets the pages collection. + + + + + Gets or sets the welcome page. + + + + + Gets or sets the completion page. + + + + + Gets or sets the selected page. + + + + + Gets the command area element. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header element. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets the element containing the image of the completion pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Fires before the mode of RadWizard is changed. + + + + + Fires after the mode of RadWizard is changed. + + + + + Fires when the next command button is clicked. + + + + + Fires when the back command button is clicked. + + + + + Fires before the selected page of RadWizard is changed. + + + + + Fires after the selected page of RadWizard is changed. + + + + + Represents a view element of RadWizard in Wizard97 mode. + + + + + Base class for RadWizard view elements. + + + + + Creates a WizardView instance. + + + + + Gets the owner RadWizardElement of the view. + + + + + Gets the pages collection of the Owner RadWizardElement. + + + + + Gets the welcome page of the Owner RadWizardElement. + + + + + Gets the completion page of the Owner RadWizardElement. + + + + + Gets the selected page of the Owner RadWizardElement. + + + + + Gets the command area of the view. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header of the view. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Creates a Wizard97View instance. + + + + + Creates a Wizard97View instance. + + Owner of the element. + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Represents a view element of RadWizard in Wizard Aero mode. + + + + + Creates a WizardAeroView instance. + + + + + Creates a WizardAeroView instance. + + Owner of the element. + + + + Gets the top element of RadWizard in Wizard Aero mode. + + + + + Gets the top element's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Mode of RadWizard. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the default size of the control. + + + The default of the control. + + + + + Gets the range selector element. + + + The range selector element. + + + + + Gets or Sets the orientation of the RangeSelector + + + + + Gets or sets the start of the selected range. + + + The start range. + + + + + Gets or sets the end of the selected range. + + + The end range. + + + + + Gets or sets the range selector view zoom start. + + + The range selector view zoom start. + + + + + Gets or sets the range selector view zoom end. + + + The range selector view zoom end. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Gets or sets how the associated chart will be updated. + + + Immediate, the chart will be updated while moving the thumb or the tracking element. Deferred, the chart will be updated upon releasing the thumb or the tracking element. + + + + + Gets or sets the associated control. + + + The associated control. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + RadRangeSelector consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadRangeSelector consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs when the value of left thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the value of right thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the whole selection of the controls is about to change. + + + + + Occurs when the whole selection of the controls is changed. + + + + + Occurs when scale of the controls is Initializing. + + + + + Gets the body element. + + + The body element. + + + + + Gets the scroll selector element. + + + The scroll selector element. + + + + + Gets the top left scales. + + + The top left scales. + + + + + Gets the bottom right scales. + + + The bottom right scales. + + + + + Gets or sets a value indicating whether [show scroll]. + + + true if [show scroll]; otherwise, false. + + + + + Gets or sets the scroll view position. + + + The scroll view position. + + + + + Gets or sets the orientation. + + + The orientation. + + + + + Gets or sets how the associated chart will be updated. + + + Immediate, the chart will be updated while moving the thumb or the tracking element. Deferred, the chart will be updated upon releasing the thumb or the tracking element. + + + + + Gets or sets the associated element. + + + The associated element. + + + + + Gets or sets the start range. + + + The start range. + + + + + Gets or sets the end range. + + + The end range. + + + + + Gets or sets the range selector view zoom start. + + + The range selector view zoom start. + + + + + Gets or sets the range selector view zoom end. + + + The range selector view zoom end. + + + + + Gets or sets the selection rectangle start. + + + The selection rectangle start. + + + + + Gets or sets the selection rectangle end. + + + The selection rectangle end. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Gets or sets the minimum selection length. + + + The minimum selection length. + + + + + Gets or sets the zoom factor. + + + The zoom factor. + + + + + Gets the total zoom factor. + + + The total zoom factor. + + + + + Gets or sets a value indicating whether [enable fast scrolling]. + + + true if [enable fast scrolling]; otherwise, false. + + + + + Occurs when the value of left thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the value of right thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the whole selection of the controls is about to change. + + + + + Occurs when the whole selection of the controls is changed. + + + + + Occurs when scale of the controls is Initializing + + + + Represents a repeat button element, and like all elements can be nested + in other telerik controls. RadRepeatButton is essentially a simple wrapper for + RadRepeatButtonElement. All UI and logic functionality is implemented in the + RadRepeatButtonElement class. RadRepeatButton acts to transfer events to and from + the RadRepeatButton class. + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Represents a button on the . + + + + + Represents a base class + + + + + Represents the area where backstage pages are arranged. + + + + + Represents the area where backstage items are arranged. + + + + + Gets the that owns this element. + + + + + Gets a collection representing the items contained in this BackstageView. + + + + + Gets the back button element. + + + The back button element. + + + + + Represents a page on the on which you can add any type of controls. + + + + + Gets the that this page is attached to. + + + + + Represents a tab on the which has a page associated with it. + + + + + Indicates whether this tab is selected. + + + + + Gets or sets the page that is associated with this tab item. + + + + + Occurs when the selected state of this item has changed. + + + + + Occurs when the page associated with this item has changed. + + + + + + Represents a BackstageView control - the Office 2010 replacement of ApplicationMenu. + + + It can contain tabs, pages, buttons and all other RadItems as well. + + + + + + Shows the backstage view mimicking popup. + + The location on which the backstage will be shown. + The RadRibbonBarElement that the backstage view is attached to. + + + + Shows the backstage view mimicking popup. + + + + + + Hides the backstage view. + + + + + Raises the BackstageViewClosed event. + + + + + Raises the BackstageViewClosing event. + + + + + Raises the BackstageViewOpened event. + + + + + Raises the BackstageViewOpening event. + + + + + Fires when the backstage view is closed. + + + + + Fires when the backstage view is about to close. + + + + + Fires when the backstage view is opened. + + + + + Fires when the backstage view is about to open. + + + + + Fires when an item from the items panel is clicked. + + + + + Fires when the selected tab is about to change. + + + + + Fires when the selected tab is changed. + + + + + Gets or sets a value that indicates whether the position of the BackstageView should be + automatically adjusted to the bottom of the application button of the owner . + + + + + Gets or sets the selected tab. + + + + + Indicates whether the backstage view is opened. + + + + + Gets the backstage element. + + + + + Gets the RadRibbonBar element that the backstage view is attached to. + + + + + Represents the main visual element of the . + + + + + Raises the event. + + The backstage item. + + + + Raises the event. + + The backstage tab item. + + + + + Raises the event. + + The new item. + The old item. + + + + Raises the event. + + The instance containing the event data. + + + + Gets the on which the backstage items are arranged. + + + + + Gets the on which the backstage pages are arranged. + + + + + Gets the caption element. + + + The caption element. + + + + + Gets or sets the selected tab. + + + + + Gets a collection representing the items contained in this backstage view. + + + + + Gets or sets a value indicating whether this backstage view should be opened is full screen. + + + true if full screen; otherwise, false. + + + + + Fires when an item from the items panel is clicked. + + + + + Fires when the selected tab is about to change. + + + + + Fires when the selected tab is changed. + + + + + Represents event data for the following events: OnTabSelecting + + + + + Creats a new instance of the class. + + The tab which is currently selected + The tab that is being selected. + + + + Gets the tab which is currently selected. + + + + + Gets the tab that is being selected. + + + + + Represents a toolstrip overflow button element. + + + + + Creates child elements. + + + + + Shows small arrows. + + + + + + Gets the drop down button arrow position. + + + + + Gets the overflow primitive. + + + + + Represents the method that will handle the PageViewInstanceCreated events of RadDock. + + The event sender. + Instance of PageViewInstanceCreatedEventArgs. + + + + Provides data for the PageViewInstanceCreated event. + + + + + Gets the created RadPageViewElement. + + + + + Initializes a new instance of the PageViewInstanceCreatedEventArgs class. + + The created RadPageViewElement. + + + + Gets the index at which the page was before the change. + + + + + Gets the index at which the page is currently at. + + + + + Determines whether the event is canceled or may continue. + + + + + Gets the index the page is currently at. + + + + + Gets or sets the new index to be applied to the associated page. + + + + + Represents a control that has a collection of pages and displays one page at a time. + + + + + Temporary suspends event raising. + + + + + Resumes event raising, previously suspended by a SuspendEvents call. + + + + + Occurs when an item is about to be dropped over another item. + + + + + Occurs when an item was dropped over another item. + + + + + Raised when page item is about to be created. + + + + + Raised when the current mode of the view is about to change. Cancelable. + + + + + Raised when the current mode of the view is about to change. Cancelable. + + + + + Raised when the current mode of the view has changed. + + + + + Raised when the built-in ItemsList menu is about to be displayed. Cancelable. + + + + + Raised when the built-in ItemsList menu is displayed. + + + + + Raised when a new page is about to be added to the view. Cancelable. + + + + + Raised when a new page has been successfully added to the view. + + + + + Raised when a page is about to be removed from the view. Cancelable. + + + + + Raised when a page has been successfully removed from the view. + + + + + Raised when a page is about to change its index. Cancelable. + + + + + Raised when a page's index has been successfully changed. + + + + + Raised when all pages are about to be removed from the view. Cancelable. + + + + + Raised when all pages have been successfully removed from the view. + + + + + Raised when the content of a is expanding. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is expanded. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is collapsing. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is collapsed. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when currently selected page has changed. + + + + + Raised when currently selected page has changed. + + + + + Determines whether event raising is currently enabled. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the BackColor of all pages. + + + + + Gets or sets the current mode of the view. + + + + + Gets or sets the RadPageViewPage instance that is currently selected within the view. + + + + + Gets the collection of pages for this view. + + + + + Gets the current RadPageViewElement instance that represents the UI of the view. + + + + + Gets or sets the default RadPageViewPage that will be loaded after EndInit of the control. + If the DefaultPage is null the currently selected page will be loaded. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Gets or sets the size of the items when ItemSizeMode of RadPageView is PageViewItemSizeMode.EqualSize. + + + + + RadPageView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadPageView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Gets or sets whether the pages will be wrapped around when performing selection using the arrow keys. + If the property is set to true, pressing the right arrow key when the last page is selected will result in selecting the first page. + + true if [wrapped around]; otherwise, false. + + + + Gets the instance that this object is associated with. + + + + + Gets the RadPageViewPage instance that matches the specified name. + + + + + + + Gets the RadPageViewElement instance that owns this instance. + + + + + Gets the element which hosts and arranges all the items within the strip. + + + + + Gets the element which hosts and arranges all the items within the strip. + + + + + Gets the scroll offset applied to the strip. + + + + + Gets or sets the MultiLineItemFitMode.This mode determines how the multiLine layout will behave when control is resizing. + + + + + Defines the possible alignment of the strip in a RadPageViewStripElement. + + + + + Defines the alignment of items within a strip item layout. + + + + + Items are aligned starting from the near edge. This is Left for Left-to-right layout and Right for Right-to-left layout. + + + + + Items are centered within the layout. + + + + + Items are aligned starting from the far edge. This is Right for Left-to-right layout and Left for Right-to-left layout. + + + + + Defines possible modes to fit items within a RadPageViewStripElement instance. + + + + + Each item uses its desired size. + + + + + Items are shrinked if their size exceeds the available one. + + + + + Items are expanded if their size is less than the available one. + + + + + Items are either shrinked or expanded when needed. + + + + + Items are stretched in the available height of their parent container. + + + + + Items are arranged in multiLine layout. + + + + + Defines which internal buttons will be present for a RadPageViewStripElement instance. + + + + + No buttons are available. + + + + + Buttons are automatically displayed when needed. + + + + + Allows strip to be scrolled left when not enough space is available. + + + + + Allows strip to be scrolled right when not enough space is available. + + + + + Allows currently selected item to be closed. + + + + + Displays all available items in a drop-down manner. + + + + + Both left and right scroll buttons are present. + + + + + Both scroll buttons and Close button are present. + + + + + ItemList and Close buttons are present. + + + + + All buttons are present. + + + + + Defines how an item is sized within a RadPageViewElement instance. + + + + + Each item's desired size is applied. + + + + + All items are with equal width. + + + + + All items are with equal height. + + + + + All items are with equal size. + + + + + Defines the content orientation of in RadPageViewItem. + + + + + Orientation is automatically selected depending on the item alignment within the owning RadPageViewElement. + + + + + Item's content is horizontally oriented. + + + + + Item's content is rotated by 180 degrees. + + + + + Item's content is rotated by 90 degrees. + + + + + Item's content is rotated 270 degrees. + + + + + Defines methods and properties for a collapsible element. For example, + RadRibonBarChunk is a collapsible element. + + + + + Create a Adapter if possible for Item + + + The wrapper for Item + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets a boolean value determining whether the layout panel + will collapse its content according to its size. + + + + + This class represents the drop down button which is shown when + a is collapsed. This drop down button + holds the content of the collapsed group in its popup. + + + + + This class represents the popup of a . + The contents of the group are placed in this popup when the group is collapsed. + + + + + This class represents a separator line which can be put between + items in a or . + This separator is built of two instances which are layout + together to allow two-coloured separator appearance. + + + + + Gets or sets the orientation of the separator. A separator + can be positioned vertical or horizontal. + + + + + Gets an instance of the class + which represents the primitive that is used to paint the separator. + + + + + This class represents the popup which is displayed when a collapsed tab + is selected in the RadRibbonBar control. + + + + + Creates an instance of the RibbonBarPopup class. + + + + + + Close the popup upon mouse click unless + the user has clicked on a RadElement + that opens another popup. + + + + + + Gets a boolean value indicating + whether the ribbon popup is shown. + + + + + Gets the owner RadRibbonBarElement. + + + + + Represents a ribbon tab. Ribbon tabs are used to manage between different + groups of related operations, for example, in a text editor application between + write and insert functionality. + + + + + Initializes a new instance of the RadRibbonBarCommandTab class. + + + + + This method paints the left RibbonTab shadow that appears on the right of the tab. + The method paints two 1 pixel wide vertical linear gradient lines that + create a shadow effect. The colors of the shadow can be styled by + the Visual Style Builder. + + + + + This method paints the right RibbonTab shadow that appears on the right of the tab. + The method paints two 1 pixel wide vertical linear gradient lines that + create a shadow effect. The colors of the shadow can be styled by + the Visual Style Builder. + + + + + Gets or sets the first right inner color of the RibbonTab's shadow. + + + + + Gets or sets the second right inner color of the RibbonTab's shadow. + + + + + Gets or sets the first right outer color of the RibbonTab's shadow. + + + + + Gets or sets the second right outer color of the RibbonTab's shadow. + + + + + Gets or sets the first left inner color of the RibbonTab's shadow. + + + + + Gets or sets the second left inner color of the RibbonTab's shadow. + + + + + Gets or sets the first left outer color of the RibbonTab's shadow. + + + + + Gets or sets the second left outer color of the RibbonTab's shadow. + + + + + The RibbonTab tab item + + + + + Gets an instance of the class + that represents the content layout of the tab. In this layout all + chunks visible to the end user are put. + + + + + Gets or sets the ContextualTabGroup of this CommandTab. + + + + + Gets the nested items. + + + + + Exposes the + scroll button direction. + + + + + Indicates left scroll button direction. + + + + + Indicates up scroll button direction. + + + + + Indicates right scroll button direction. + + + + + Indicates down scroll button direction. + + + + Defines the scrolling types of the RadScrollBar control. + + + + Indicates horizontal scroll type. + + + + + Indicates vertical scroll type. + + + + + Defines the possible alignment of the TabStripElement in a TabStripPanel. + + + + + The panel itself decides where the element is positioned. + + + + + The element is positioned vertically on the left edge. + + + + + The element is positioned horizontally on the top edge. + + + + + The element is positioned vertically on the right edge. + + + + + The element is positioned horizontally on the bottom edge. + + + + + Defines the possible orientation of text within a TabStripPanel. + + + + + Default orientation is used, depending on the alignment of the TabStrip. + + + + + Text is oriented horizontally. + + + + + Text is oriented vertically. + + + + Creates the main panel element and adds it in the root element. + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this speciffic control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets the object that encapsulates sizing information for this panel. + + + + + Gets the instance of RadPanelElement wrapped by this control. RadPanelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadPanel. + + + + + Applies the desired splitter width across all splitters and delegates the event to all descendant RadSplitContainer instances. + This method is used internally. + + + + + + Applies theme to all SplitterElements. + + + + + Provides a routine which merges a container with its parent (if appropriate). + The purpose of this logic is to remove internally created containers when they are not needed. + This method is used internally. + + + + + this method is used internally. + + + + + Gets SplitterElement which rectangle conttains the specified Point. + + Point to test, in SplitContainer client coordinates + SplitterElement if found, null otherwise + + + + Determines whether the container can be selected at design-time. This method is used internally. + + + + + + Updates the splitter, associated with the specified index of a child SplitPanel. + + The layout info, containing information about the operation. + The index of the panel for which the splitter should be updated. + The bounding rectangle of the splitter. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets a value indicating the splitter distance. Never set the value of this property directly. + + + + + Gets a value indicating whether the bounds of the split panels should be updated immediately on drag. + + + + + Gets the split container element. + + + + + Determines whether the container is a target of automatic defragment operation. + This property is internally used by the framework and is not intended to be directly used in code. + + + + + Gets or sets a value indicating the horizontal or vertical orientation of + the Telerik.WinControls.UI.RadSplitContainer panels. + + + + + Gets or sets the width of a single splitter on the container. + Specify zero to prevent displaying any splitters at all. + + + + + Gets or sets the layout strategy that arranges all the visible SplitPanel children. + + + + + Enable and Disable navigation buttons. + + + + + Determines whether the panels can be collapsed when clicking twice on splitter or click once on navigation button. + + + + + This property is not relevant for this class. + + + + + Occurs when any of the splitters is moving. + + + + + Occurs when any of the splitters is moved. + + + + + Occurs when some panel is collapsing. + + + + + Occurs when some panel collapsed. + + + + + Gets or sets the width of each splitter within the container. + + + + + Encapsulates the layout information for a layout pass of a RadSplitContainer. + + + + + Gets a list with all the panels that are target of a layout operation. + + + + + Gets a list with all the panels that are target of an auto-size logic. + + + + + Gets or sets the auto-size factor which depends on the auto-sizable targets per container. + + + + + Gets or sets the length (width or height, depending on the orientation) that is avilable for layout. + + + + + Gets or sets the length vailable for all panels with AutoSize mode. + + + + + Gets or sets the length of all panels which are with Absolute size mode. + + + + + Gets or sets the total length, reserved for splitters. + + + + + Gets or sets the total length, reserved for splitters. + + + + + Gets or sets the content rectangle that represents the layoutable area of the container. + + + + + Gets or sets the orientation of the associated container. + + + + + Defines the layout strategy for a RadSplitContainer. + + + + + Entry point for the entire layout operation. + Called in the OnLayout override of RadSplitContainer. + + + + + + Applies a correction in both of the specified panels, after a successful spliter drag operation. + + The panel left (top) on the splitter. + The panel right (bottom) on the splitter. + The dragged distance. + + + + Updates the layout info for a pending layout operation. + + + + + + Performs the core measure logic. + This is the pass which determines the desired size for each panel. + + + + + Performs the core layout logic. Updates each panel's bounds, keeping in mind restrictions like Minimum and Maximum size. + + + + + + Gets an integer value for the specified size (depending on the orientation of the current laid-out container). + + + + + + + Gets a single-precision value from the provides SizeF struct. + + + + + + + Gets the available length left for the panel at the specified index. + + + + + + + + + Gets the minimum size for the specified split panel. + If it is a container, the sum of minimum sizes of all child panels is calculated. + + + + + + + Special measure logic, used when there is at least one fill panel in the layout info. + + + + + Default measure logic. + + + + + Apply constraints on measured length for each layout target, + having in mind MinSize, MaxSize, available size and other conditions. + + + + + Final pass that determines whether we have less + or more measured length than the currently available one and performs the needed corrections. + + + + + Updates the provides panel after a splitter drag operation. + + + + + + + + Propagates a splitter change down to all children of the specified container. + + + + + + Gets the viewport origin for the current layout operation. + + + + + + Gets a list with all the descendant panels which SizeMode is SplitPanelSizeMode.Fill + + + + + + Gets the layout info associated with this layout strategy. + + + + + Gets or sets the Type that is treated as Root for the layout strategy. + Allows for defining how deep the search for a Fill panel should be. + + + + The main element of the RadPanel control. + + + Create the elements in the hierarchy. + + + + Gets the SplitPanel instance associated with the event. + + + + + Gets the Control instance, which Controls collection has changed. + + + + + Gets the child Control instance, inserted or removed in the Parent's collection. + + + + + Gets the action of the notification. + + + + + Defines the possible actions for a ControlTreeChanged event. + + + + + A control has been added. + + + + + A control has been removed. + + + + + Encapsulates all size-related properties for a SplitPanel instance residing on a RadSplitContainer. + + + + + Gets or sets the minimum size for the associated SplitPanel. + + + + + Gets or sets the maximum size for the associated SplitPanel. + + + + + Gets or sets the amount (in pixels) applied to the size of the panel by a splitter. + + + + + Gets or sets the scale factor for relatively-sized panels. + + + + + Gets or sets the scale factor to be used by auto-sized panels. + Usually this is internally updated by a splitter resize. + + + + + Gets or sets the size mode for the owning panel. + + + + + Gets or sets the size used when size mode is Absolute. + + + + + Gets or sets the desired (measured) size for the owning panel. + This field is internally updated by a SplitContainerLayoutStrategy upon a layout operation. + + + + + Gets the current DPI scaling. + + + + + Defines the posiible size modes for a split panel residing on a RadSplitContainer. + + + + + The panel is auto-sized. Its size depends on the size of its container + as well as the number of all auto-sizable panels within the container. + + + + + The panel has fixed size, regardless of the size of its container. + + + + + The panel occupies a relative amount of its container's available size. + + + + + A special mode, used to specify that a certain panel should fill all the available auto-sizable area. + + + + + Notifies for a change in the Image member of this panel. + + + + + + Determines whether the ToolTip property should be serialized. + + + + + + Gets or sets the Image associated with the panel. + + + + + Gets or sets the tooltip to be displayed when the mouse hovers the tabitem of this panel. + + + + + Represents an image button. + + + + + Gets or sets the image that is displayed on a button element when it is hovered. + + + + + Gets or sets the image list index value of the image displayed on the button control when it is hovered. + + + + + Gets or sets the key accessor for the image for hovered state in the ImageList. + + + + + Gets or sets the image that is displayed on a button element when it is clicked. + + + + + Gets or sets the image list index value of the image displayed on the button control when it is clicked. + + + + + Gets or sets the key accessor for the image for clicked state in the ImageList. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently pinned (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently set as preview. + + + + + Gets the TabStripButtonItem that represents the CloseButton in this TabItem. May return null if ShowCloseButton is false. + + + + + Gets the TabStripButtonItem that represents the CloseButton in this TabItem. May return null if ShowCloseButton is false. + + + + + Determines whether the CloseButton of the item will be displayed or not. + + + + + Determines whether the CloseButton of the item will be displayed or not. + + + + + Gets or sets the offset of the close button from the item's ImageAndTextLayout panel. + + + + + Disables the selection in the strip panel. + + + + + Handles the click of a CloseButton on a child TabStripItem. + Closes the corresponding TabPanel by default. + + + + + + Temporary suspends notifications like TabSelecting and TabSelected from the parented RadTabStripElement. This method is used internally. + + + + + Callback to notify the panel that a control has been successfully removed, tab strip has been updated and any additional update is allowed. + + + + + + Resumes previously suspended notifications like TabSelecting and TabSelected from the parented RadTabStripElement. This method is used internally. + + + + + Determines whether the tabstrip element is visible. + + + + + + Forces layout update by explicitly re-setting the current bounds and performing a layout pass. + + + + + Suspends the focus change in the strip panel. + + + + + Gets the default alignment of the TabStripElement. + + + + + Gets the default text orientation. + + + + + Gets or sets the text orientation of the tab used to switch among child panels. + + + + + Determines whether each TabStripItem will display a CloseButton, which allows for explicit close of its corresponding panel. + + + + + Determines whether each TabStripItem will display a CloseButton, which allows for explicit close of its corresponding panel. + + + + + Gets the point where the mouse was pressed and a drag operation has been instanciated. + + + + + Determines whether the tab used to navigate among child panels is displayed. + + + + + Gets or sets the alignment of the tab used to switch among child panels. + + + + + Determines whether the child panels' Index update is currently locked. This property is used internally. + + + + Represents a Panel that is capalbe to host standard Windows Forms controls. + + + Initializes a new instance of the RadTabStripContentPanel class. + + + + Gets the item associated with the panel. + + + + Gets or sets the background color of the tabstrip layout. + + + + Defines the possible positions of the tab items + relatively to the base area. + + + + + The tab items will appear on the left of the base area. + + + + + The tab items will appear on the right of the base area. + + + + + The tab items will appear on the top of the base area. + + + + + The tab items will appear on the bottom of the base area. + + + + + Gets or sets SliderArea's first background color. + + + + + Gets or sets SliderArea's second background color. + + + + Gets or sets RadTrackBar's ticks color. + + + Gets or sets the gradient angle of the SliderArea. + + + Gets or sets whether the TrackBar should fit to available size. + + + Gets or sets whether the SlideArea should be visible. + + + Gets or sets Ticks Visibility. + + + + The number of positions the slider moves in response to mouse clicks. + + + + + The number of positions the slider moves in response to mouse clicks. + + + + + The number of positions between tick marks. + + + + + Gets or sets TrackBar's orientation. + + + + + Gets or sets the width of TrackBar's SlideArea. + + + + + Indicates the tick style of the progress bar. Possible values are members of + %TickStyles enumeration:Telerik.WinControls.Enumerations.TickStyles%: none, + topleft, BottomRight, and both. + + + + Gets or sets a minimum int value for the trackbar position. + + + Gets or sets a maximum int value for the trackbar position. + + + + Gets or sets the position of the Slider. + + + + Initializes a new instance of the TrackbarThumb class. + + + + CreateChildElements + + + + + GetPreferredSizeCore + + + + + + + + gets or sets Thumb's width + + + + + + gets or sets whether the trackbar's thumb should use its default shape + + + + + gets ParentTrackBarElement + + + + + Represents a track bar. The trackbar class is essentially a simple wrapper + for the RadTrackBarElement. All UI and + logic functionality is implemented in the + RadTrackBarElement class. The RadTrackBar acts + to transfer the events to and from its corresponding + RadTrackBarElement instance. The + RadTrackBarElement may be nested in other + telerik controls. + + + + + Creates the associated TrackBar element. + + RadTrackBarElement + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadTrackBarElement wrapped by this control. RadTrackBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTrackBar. + + + + + Gets or sets a minimum value for the trackbar position + + + + + Gets or sets a maximum value for the trackbar position + + + + + Gets or Sets TrackBar's value + + + + + Gets or Sets whether the TrackBar's ticks should be drawn + + + + + Gets or Sets the orientation of the TrackBar + + + + + Gets or Sets the number of positions that the trackbar moves in response to mouse clicks. + + + + + Gets or Sets the number of positions that the trackbar moves in response to keyboard arrow keys and the trackbar buttons. + + + + + Gets or Sets the orientation of the text associated with TrackBar. Whether it should appear horizontal or vertical. + + + + + Gets or Sets whether the TrackBar's labels should be drawn + + + + + Gets or Sets whether the TrackBar's handles should be drawn + + + + + Gets or Sets the number of positions between large tick marks + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the Range collection. + + + + + Gets or Sets the Snap mode of the TrackBar + + + + + Gets or Sets TrackBar's Size + + + + + Gets or Sets whether the SlideArea should be visible + + + + + Gets or Sets whether the selected thumb should move on arrow key press. + + + + + Occurs when the value of the controls changes + + + + + Occurs when a Label needs to be formatted. + + + + + Occurs when a Tick needs to be formatted. + + + + Represents a trackbar element. RadTrackBarElement can be nested in other + telerik controls. Essentially, the RadTrackBar is a simple wrapper for the + RadTrackBarElement. The former transfers events to and from its corresponding + RadTrackBarElement instance. + + + + Gets the instance of TrackBarBodyElement. TrackBarBodyElement + is the core element in the hierarchy tree and encapsulates the Scale and indicators functionality. + + + + + Gets instance of TrackBarArrowButton + + + + + Gets instance of TrackBarArrowButton + + + + + Gets or sets a minimum value for the trackbar position + + + + + Gets or sets a maximum value for the trackbar position + + + + + Gets or Sets TrackBar's value + + + + + Gets or Sets whether the TrackBar's ticks should be drawn + + + + + Gets or Sets TrackBar's Orientation + + + + + Gets or Sets whether the SlideArea should be visible + + + + + Gets or Sets the number of positions that the trackbar moves in response to mouse clicks. + + + + + Gets or Sets the number of positions that the trackbar moves in response to keyboard arrow keys and the trackbar buttons. + + + + + Gets or Sets Ticks Visibility + + + + + Gets or Sets TrackBar's sliders area color + + + + + Gets or Sets TrackBar's ticks color + + + + + Gets or Sets TrackBar's sliders area color + + + + + Gets or Sets the gradient angle of the SliderArea + + + + + Gets or Sets TrackBar's thumbWidth + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets the width of TrackBar's SlideArea + + + + + Gets or Sets whether the TrackBar's labels should be drawn + + + + + Gets or Sets whether the TrackBar's handles should be drawn + + + + + Gets or Sets the number of positions between large tick marks + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets TrackBar's Size + + + + + Gets or Sets the Snap mode of the TrackBar + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the Range collection. + + + + + Gets or Sets the selected thumb + + + + + Gets or Sets whether the selcted thumb should move on arrow key press. + + + + + Occurs when the value of the controls changes + + + + + Occurs when the trackBar slider moves + + + + + Occurs when a Label needs to be formatted. + + + + + Occurs when a Tick needs to be formatted. + + + + + Represents a core range object that contains the start and end. + + + + + Creates a new object that is a copy of the current instance. + + + + + + Gets or Sets the start of the range. + + + + + Gets or Sets the end of the range. + + + + + Gets whether the range contains selected thumb" + + + + + Gets the Owner Collection + + + + + Gets or Sets the Name. + + + + + Gets or Sets the ToolTipText + + + + + Gets or Sets the Tag. + + + + + Occurs when a property value changes. + + + + + Represents a collection of + + + + + Check thumb move. + + value + isStart + range + bool + + + + Perform Thumb Move in SingleThumb Mode. + + Value + bool + + + + Returns an enumerator that iterates through the collection. + + IEnumerator + + + + Determines the index of a specific item in the Collection + + item + int + + + + Inserts an item to the Collections at the specified + index. + + index + item + + + + Removes the TrackBarRange item at the specified index. + + index + + + + Add range to the System.Collections.Generic.ICollection + + item + + + + Removes all items except the first from the System.Collections.Generic.ICollection + + + + + Determines whether the System.Collections.Generic.ICollection contains a specific value. + + + bool + + + + Copies the elements of the System.Collections.Generic.ICollection to an System.Array, starting at a particular System.Array index. + + array + arrayIndex + + + + Removes the first occurrence of a specific object from the Collection. + + item + bool + + + + Adds an item to the System.Collections.Generic.ICollection. + + value + int + + + + Determines whether the System.Collections.Generic.ICollection contains a specific value. + + value + bool + + + + Determines the index of a specific item in the System.Collections.IList. + + value + int + + + + Inserts an item to the System.Collections.IList at the specified index. + + index + value + + + + Removes the first occurrence of a specific object from the System.Collections.IList. + + value + + + + Copies the elements of the System.Collections.ICollection to an System.Array, + starting at a particular System.Array index. + + array + index + + + + Suspends all property and collection notifications. + + + + + Resumes property and collection notifications. + + + + + Gets or Sets a maximum value for the trackbar position + + + + + Gets or Sets a minimum value for the trackbar position + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the RadTrackBarElement which owns this collection + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when a property value changes. + + + + + Gets or sets the Range at the specified index. + + index + TrackBarRange + + + + Gets or sets the Range at the specified name. + + text + TrackBarRange + + + + Gets the number of elements contained in the Collection + + + + + Gets a value indicating whether the Collection is read-only. + + + + + Gets a value indicating whether the System.Collections.IList has a fixed + size. + + + + + Gets or sets the element at the specified index. + + index + object + + + + Gets a value indicating whether access to the System.Collections.ICollection + is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the System.Collections.ICollection. + + + + + Gets the nodes. + + + + + + Sets the current. + + The node. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets or sets a value indicating weather the changes in the child collections + in Object Relational Binding mode will be reflected automatically. + + + + + Gets the tree view. + + The tree view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Initializes a new instance of the class. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + The checked member. + + + + Initializes a new instance of the class. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent member. + The child member. + The value member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent member. + The child member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent child member. + + + + Gets or sets the name of the relation. + + The name of the relation. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets the data member. + + The data member. + + + + Gets or sets the display member. + + The display member. + + + + Gets or sets the parent member. + + The parent member. + + + + + Gets or sets the child member. + + The child member. + + + + + Gets or sets the value member. + + The value member. + + + + Gets or sets the checked member. + + The checked member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent child member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent member. + The child member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent member. + The child member. + The value member. + + + + Adds the specified data source. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + + + + Adds the specified data source. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + The checked member. + + + + Clears this instance. + + + + + Refreshes this instance. + + + + + Adds the tree node with specified text. + + The text. + + + + + Adds the specified text. + + The text. + Index of the image. + + + + + Adds the specified text. + + The text. + The image key. + + + + + Adds the specified key. + + The key. + The text. + Index of the image. + + + + + Adds the specified key. + + The key. + The text. + The image key. + + + + + Removes the specified name. + + The name. + + + + Determines whether [contains] [the specified name]. + + The name. + + true if [contains] [the specified name]; otherwise, false. + + + + + Indexes the of. + + The name. + + + + + Gets the owner. + + The owner. + + + + Gets the tree view. + + The tree view. + + + + Gets the with the specified name. + + + + + + Defines the expanding animation style of nodes in a + RadTreeView Class. + + + + + Indicates animation style changing the opacity of the expanding nodes. + + + + + Indicates no animation. + + + + + Specifies the type of option list formed by child nodes. + + + + + All children have a check box. + + + + + All children have a radio button. + + + + + Every child can specify whether it has a check box or a radio button. + + + + + Defines the style of the lines between the nodes in a + RadTreeView Class. + + + + Specifies a solid line. + + + Specifies a line consisting of dashes. + + + Specifies a line consisting of dots. + + + Specifies a line consisting of a repeating pattern of dash-dot. + + + Specifies a line consisting of a repeating pattern of dash-dot-dot. + + + + Gets the error text. + + The error text. + + + + Show expander + + + + + Gets the checked mode. + + + The checked mode. + + + + + TreeViewSpreadExport is a powerful exporting API, allowing to export RadTreeView to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The RadTreeView to export. + + + + Initializes a new instance of the class. + + The RadTreeView to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export images. + + + + + Gets or sets a value indicating whether to export child nodes grouped. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets the indent of child nodes. + + + + + Gets or sets a value indicating how children of collapsed nodes are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting tree node of RadTreeView. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting tree node. + + + + + RadbreadCrumb consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Gets a collection of items which are children of the TabStrip element. + + + + + Initializes a new instance of the TreeViewCheckboxEditor class. + + + + + Begins the edit. + + + + + Toggles the checkbox state. + + + + + Translates system key down events to the owner element. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the editor value. + + + + + + Gets the is modified. + + The is modified. + + + + Gets the type of the editor value + + System.Boolean + + + + Initializes a new instance of the DataFilterCheckboxEditorElement class. + + A instance. + + + + Get the checkmark element. + + + + + Gets or sets the checkmark state. + + + + + Represents a date time editor in RadTreeView. + + + + + Represents a DropDownList editor in RadTreeView. + + + + + Represents a spin editor in RadTreeView. + + + + + Represents the method that will handle events in the hierarchy traverser. + + + + + + + Provides data for all events used in the hierarchy traverser. + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the object instance to be processed by the hierarchy traverser. + + true if [process hierarchy object]; otherwise, false. + + + + Gets the node. + + The node. + + + + + + + + + Gets or sets the font. + + The font. + + + + Gets or sets the color of the fore. + + The color of the fore. + + + + Gets or sets the color of the border. + + The color of the border. + + + + Gets or sets the back color4. + + The back color4. + + + + Gets or sets the back color3. + + The back color3. + + + + Gets or sets the back color2. + + The back color2. + + + + Gets or sets the color of the back. + + The color of the back. + + + + Gets or sets the number of colors. + + The number of colors. + + + + Gets or sets the gradient percentage2. + + The gradient percentage2. + + + + Gets or sets the gradient percentage. + + The gradient percentage. + + + + Gets or sets the gradient angle. + + The gradient angle. + + + + Gets or sets the gradient style. + + The gradient style. + + + + Gets or sets the text alignment. + + The text alignment. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The table element. + + + + Gets or sets the size of the arrow. Used to calculate pixel-perfect results. + + + + + Gets or sets a value determining the shape of the link + + + + + Gets or sets a value determining the style of the link lines + + + + + Defines the differen link styles + + + + + + + + This constant is used internally. + + + + + Initializes a new instance of + + + + + + Initializes a new instance of + + + + + Raises the ModifiedChanged event. + + + + + Appends the given text + + + + + + Clears the editing control's text + + + + + Clears and undoes the text + + + + + Copies the selected text + + + + + Cuts the selected text + + + + + clears the selection + + + + + Gets a character from a given point + + + + + + + Gets the index of a character at a given point + + + + + + + gets the index of the first char in a given line + + + + + + + gets the first char index at the current line + + + + + + Gets a line number from a char index + + + + + + + Gets the position from a char index + + + + + + + pastes the text in the clipboard + + + + + Pasted a given text + + + + + + scrolls the textbox to the caret position + + + + + Makes a selection in a given range specified by a start position and selection length + + + + + + + selects the whole text + + + + + Undoes the last edit operation in the text box. + + + + + Raises the AcceptsTabChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the MultilineChanged event. + + + + + Raises the PreviewKeyDown event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets whether the control can receives the focus when tab is pressed + + + + + Gets or sets whether the text box accepts the return key + + + + + Gets or sets whether the text box accepts the tab key + + + + + Gets if the text box could undo its value + + + + + Indicates if all characters should be left alone or converted + to upper or lower case + + + + + Gets or sets the selection in the text box + + + + + The lines of the text in a multi-line edit, as an array of string values + + + + + Specifies the maximum length of characters which could be entered + + + + + Indicates the visibility level of the object + + + + + The text could span more than a line when the value is true + + + + + Gets or sets the char used for entering passwords + + + + + Gets the preferred height + + + + + Indicates whether the text could be changed or not + + + + + The scrollbars which will appear if the editing control is in multiline mode + + + + + the text which is in selection + + + + + the length of the selection + + + + + Gets or sets the start selection position + + + + + Indicates whether the shortcuts are enabled. + + + + + Gets or sets the alignment of the text in the editing control + + + + + Indicates the text length + + + + + Indicates if lines are automatically word-wrapped for + multiline editing controls + + + + + Gets or sets the prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets the TextBox control hosted in this item. + + + + + Gets or sets the vertical stretch value + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + This property is used internally. + + + + + Occurs when the TabStop property has changed. + + + + + Occurs when the AcceptsTab property has changed. + + + + + Occurs when the HideSelection property has changed. + + + + + Occurs when the Modified property has changed. + + + + + Occurs when the Multiline property has changed. + + + + + Occurs when a key is pressed while focus is on text box. + + + + + Occurs when the ReadOnly property has changed. + + + + + Occurs when the TextAlign property has changed. + + + + + Represents a base button control. The button control serves as a + RadButtonElement Class wrapper. All logic and + presentation features are implemented in a parallel hierarchy of objects. For this + reason, RadButtonElement Class may be nested in + any other telerik control, item, or element. + + + + + Initializes a new instance of the RadButtonBase class. + + + + + Override this method to create custom main element. By default the main element is an instance of + RadButtonElement. + + Instance of the one-and-only child of the root element of RadButton. + + + + Gets or sets the text associated with this item. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the instance of RadButtonElement wrapped by this control. RadButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadButton. + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + + + + + + + + + + Specifies the options for display of image and text primitives in the element. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Determines whether the button can be clicked by using mnemonic characters. + + + + + Toggles the value of RadToggleSwitch + + + + + Toggles the value of RadToggleSwitch + + Indicates whether to use animation. + + + + Sets the value of RadToggleSwitch. + + The new value. + + + + Sets the value of RadToggleSwitch. + + The new value. + Indicates whether to use animation. + + + + Gets the instance of RadToggleSwitchElement wrapped by this control. RadToggleSwitchElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadToggleSwitch. + + + + + Gets the on element of RadToggleSwitch. + + + + + Gets the off element of RadToggleSwitch. + + + + + Gets the thumb of RadToggleSwitch. + + + + + Gets or sets the text displayed when the state is On. + + + + + Gets or sets the text displayed when the state is Off. + + + + + Gets or sets width of the thumb. + + + + + Determines how far the switch needs to be dragged before it snaps to the opposite side. + + + + + Gets or sets the value. + + + + + Gets or sets a value indicating whether to use animation when changing its state. + + + + + Gets or sets the animation interval. + + + + + Gets or sets the animation frames. + + + + + Gets a value indicating whether the control is currently animating. + + + + + Determines how ToggleSwitch button should handle mouse click and drag. + + + + + Gets or sets a value indicating whether the value could be changed. + + + + + RadToggleSwitch consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadToggleSwitch consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs when the Value is about to change. Cancelable. + + + + + Occurs when the Value has changed. + + + + + Occurs when the animation starts. + + + + + Occurs when the animation finishes. + + + + + Toggles the value of RadToggleSwitch + + + + + Toggles the value of RadToggleSwitch + + Indicates whether to use animation. + + + + Sets the value of RadToggleSwitch. + + The new value. + + + + Sets the value of RadToggleSwitch. + + The new value. + Indicates whether to use animation. + + + + Cancels the currently running animation. + + + + + Gets or sets a value indicating whether to use animation when changing its state. + + + + + Gets or sets the animation interval. + + + + + Gets or sets the animation frames. + + + + + Gets a value indicating whether the control is currently animating. + + + + + Gets the on element + + + + + Gets the off element. + + + + + Gets the thumb element. + + + + + Gets or sets the value. + + + + + Gets or sets width of the thumb. + + + + + Determines how far the switch needs to be dragged before it snaps to the opposite side. + + + + + Gets or sets the text displayed when the state is On. + + + + + Gets or sets the text displayed when the state is Off. + + + + + Determines how ToggleSwitch button should handle mouse click and drag. + + + + + Gets or sets a value indicating whether the value could be changed. + + + + + + + + + + + + + + + Get or set thumb size + + + + + Gets or sets the image used by the splitter when in horizontal orientation. + + + + + Gets or sets the image used by the splitter when in vertical orientation. + + + + + This class represents the drop-down + of the RadGalleryElement. + + + + + Creates an instance of the + class. + + An instance of the + class that represents the gallery that owns this drop-down. + + + + Represents the groupbox content. + + + + + Gets the FillPrimitive contained in the Content area + + + + + Gets the BorderPrimitive contained in the Content area. + + + + + Creates child elements. Please refer to TPF documentation for more information. + + + + + Returns class name. + + class name + + + + Represents the groupbox footer. + + + + + Creates child elements. Please refer to TPF documentation for more information. + + + + + Performs layout measure. Please refer to TPF documentation for more information. + + + desired size + + + + Returns class name. + + class name + + + + Represents a groupbox. The group box major purpose is to define a radio buttons group. The RadGroupBox does not support scrolling. + The control is highly customizable using themes. + + + + + Parameterless contstructor. + + + + + Gets or sets the header text. + + + + + Gets the groupbox element. + + + + + Gets or sets the groupbox style - Standard or Office. + + + + + Gets or sets the header position - Top, Right, Bottom, Left + + + + + Gets or sets the header alignment - Near, Center, Far. + + + + + Gets or sets the header margin. + + + + + Gets or sets footer visibility. + + + + + Gets or sets the header text. + + + + + Gets or sets the footer text. + + + + + Gets or sets the header image. + + + + + Gets or sets the footer image. + + + + + Gets or sets the header image key. + + + + + Gets or sets the header image index. + + + + + Gets or sets the footer image key. + + + + + Gets or sets the footer image index. + + + + + Gets or sets the header text image relation. + + + + + Gets or sets the footer text image relation. + + + + + Gets or sets the header text alignment. + + + + + Gets or sets the footer text alignment. + + + + + Gets or sets the header image alignment. + + + + + Gets or sets the footer image alignment. + + + + + If true, the first character preceded by an ampersand will be used as mnemonic key + + + + + Gets or sets the header margin. + + + + + Gets or sets the header text. + + + + + Gets or sets the footer text. + + + + + Gets or sets the header image. + + + + + Gets or sets the footer image. + + + + + Gets or sets the header text image relation. + + + + + Gets or sets the footer text image relation. + + + + + Gets or sets the header text alignment. + + + + + Gets or sets the footer text alignment. + + + + + Gets or sets the header image alignment. + + + + + Gets or sets the footer image alignment. + + + + + Gets or sets the header image key. + + + + + Gets or sets the header image index. + + + + + Gets or sets the footer image key. + + + + + Gets or sets the footer image index. + + + + + Gets or sets the group box style - Standard, or Office. + + + + + Defines group box styles. + + + + + Prevent Design time serilizaltion for Image from theme + + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets or sets the position of text and image relative to each other. + + + + + true if the text should wrap to the available layout rectangle otherwise, false. The default is true + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + + + + + + + + + + If true, the first character preceded by an ampersand will be used as the label's mnemonic key + + + + + Gets or sets a value indicating whether the border is visible + + + + + Gets the instance of RadLabelElement wrapped by this control. RadLabelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadLabel. + + + + + A light element that inherits from , adds the base states for theming and sets the default event to Click. + + + + + IsDirty Property + + + + + Takes as parameters the that is binding + and the that is being bound to the RadItem. + + The that is binding. + The object that is being bound to the . + + + + Gets the that is bound. + + + + + Gets the that was swapped with a new RadItem. + + + + + Gets the object that is being bound to the . + + + + + Takes as parameters the that is bound + and the that is being bound to the RadItem. + + The that is bound. + The object that is being bound to the . + + + + Gets the that is bound. + + + + + Gets the object that is being bound to the . + + + + + Returns the type supported by the class implementing the ICellEditor interface. + The supported type is the data type that can be handled and edited by the editor. + + + + + Defines how the editor will be positioned relatively to the edited container + + + + + Editor is positioned inline, inside of the editor container, and logically resides in container's children + hierarchy. Usually it is recommended to use this option for compact-sized editors, + like textboxes, comboboxes, mask editors, checkboxes, etc. + + + + + Editor is positioned inside a popup control which is positioned vertically under the edited + container. Usually it is recommended to use this + option for medium to large-sized editors, like calendars, custom controls and panels, + radiobutton lists, checkbox groups, etc. + + + + + Usually this means that the editor is positioned explicitly by the edited containers's logic. + Also it is used as a default initialization value. + + + + + Provides functionality for managing editors + + + + + Returns an editor instance of the default type for the editor provider. + + An object that implements interface. + + + + Gets the default editor type for the editor provider. + + The default type. + + + + Initializes a specified editor. + + An object that implements interface. + + + + Establishes the common events and also the event-related properties and methods for basic input processing by + Telerik Presentation Foundation (TPF) elements. + + + + + This interface defines all necessary methods for custom scrolling. Performing each + scroll operation via the method (thus allowing custom + logic to be used) is called logical scrolling. The only way to enable logical + scrolling in is via implementation of this + interface. + + + + + Gets the real size of the content that the viewport must visualize. + + + + + Invalidates the viewport. + + + + + Calculate scroll value. This method is used while resizing the scroll panel. + + + + + + + + + + + + + + + Calculates the necessary offset in order to make the given child visible. + + + + Retrieves the scroll parameters. + + + + + + Returns the number of items that are visible when the viewport is scrolled to its + maximum value (the bottom for vertical stack and the right-most place for left-to-right + horizontal stack). The last item must always be fully visible. + If there are children the result will be at least 1. + + Number of full visible items in the viewport. If the items are with different sizes, + the last items are used in the calculations. + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the captured color + + + + + Fires when the color is changed. + + + + + + + + Fires when the selected color has changed + + + + + Represents a color palette + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the number of columns in the palette + + + + + Gets or sets the margin of the palette + + + + + Gets or sets the color in the palette + + + + + Gets or sets the selected color + + + + + Fires when the selected color has changed + + + + + + + + Provides different sets of colors + + + + + Gets the color correspoding to a hex value + + + + + + + Gets the hex value for the color + + + + + + + Gets the rounded value + + + + + + + Gets the set of basic colors + + + + + Gets the set of system colors + + + + + Gets the set of named colors + + + + + Provides common services for color transformations + + + + + Gets a color from RGB ratios + + + + + + + + + Gets a color quotient + + + + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the RgbValue value + + + + + Gets or sets the HSL value + + + + + Fires when the selected color changes + + + + + Represents a hexagon of discrete colors + + + + + Fires when the selected color has changed + + + + + Gets the selected color + + + + + Paints the hexagon + + + + + + Gets or sets the hexagon color + + + + + Gets a rectangle containing the hexagon + + + + + Gets or sets a value indicating whether the hexagon is hovered + + + + + Gets or sets a value indicating whether the hexagon is selected + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color mode + + + + + Gets or sets the color in HSL format + + + + + Gets or sets the color in RgbValue format + + + + + Fires when the selected color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color mode of the slider + + + + + Gets or sets the color in HSL format + + + + + Gets or sets the color in RgbValue format + + + + + Gets or sets the position of the slider arrow + + + + + Fires when the selected color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color in RgbValue format + + + + + Fires when the selected color changes + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color shown in RGB format + + + + + Gets or sets the color shown in HSL format + + + + + Fires when the selected color has changed + + + + + Represents a color selector control + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when custom colors configuration is about to be saved or loaded. + Can be used to change the default location of the configuration file. + + + + + Fires when the selected color changes + + + + + Fires when the OK button is clicked + + + + + Fires when the Cancel button is clicked + + + + + Gets or sets a value indicating whether the Analytics functionality is enable or disbale for this control. + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the selected HSL color + + + + + Gets or sets the old color + + + + + Gets the list of custom colors + + + + + Shows or hides the web colors tab + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the professional colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the hex color textbox + + + + + Gets or sets the value indicating whether the user can edit the hexadecimal color value + + + + + Gets or sets the value indicating whether the user can pick a color from the screen + + + + + Gets or sets the value indicating whether the user can save colors + + + + + Gets or sets the text of the add new color button + + + + + Sets or gets the active mode of the RadColorPicker + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the new color label + + + + + Gets or sets the heading of the old color label + + + + + Gets the DiscreteColorHexagon control + + + + + Gets or sets a value indicatign whether custom colors should be save upon exiting the color picker. + + + + + A panel holding a collection of saved colors + + + + + Safely tries to find the path to the local app data folder. + If no path is found, tries to find the path to the common app data folder. + + + + + Serializes the custom colors. + + + Deserializes the custom colors. + + + + Save the color to the next color slot + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when the selected color has changed + + + + + Fires when custom colors configuration is about to be saved or loaded. + Can be used to change the default location of the configuration file. + + + + + Gets or sets a value indicatign whether custom colors should be save upon exiting the color picker. + + + + + Gets or sets the custom directory path which will be used + when the custom colors XML file is stored on the hard drive. + + + + + Gets or sets the index of the currently selected color + + + + + Gets the currently selected color + + + + + Gets all the colors in the saved colors collection + + + + + A transparent color box where semi-transparent colors can be shown + + + + + Gets or sets the color shown in the box + + + + + A transparent color box where semi-transparent colors can be shown + + + + + Gets or set the color shown in the box + + + + + Represents the RadDateTimePicker class + + + + + Represents the RadDateTimePicker constructor + + + + + creates and initializes the RadDateTimePickerElement + + + + + + Sets the current value to behave as a null value + + + + + Raises the FormatChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanging event + + + + + + Gets the control's default size + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the culture supported by this calendar. + + + + + Gets the instance of RadDateTimePickerElement wrapped by this control. RadDateTimePickerElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDateTimePicker. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the format of the date and time displayed in the control. + + + + + Indicates whether a check box is displayed in the control. When the check box is unchecked no value is selected + + + + + Gets or sets the custom date/time format string. + + + + + When ShowCheckBox is true, determines that the user has selected a value + + + + + Gets or sets the minimum date and time that can be selected in the control. + + + + + Gets or sets the maximum date and time that can be selected in the control. + + + + + Gets or sets the location of the drop down showing the calendar + + + + + Gets or sets the size of the calendar in the drop down + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + Indicates whether a spin box rather than a drop down calendar is displayed for editing the control's value + + + + + Gets or sets the text that is displayed when the DateTimePicker contains a null + reference. + + + + Gets or sets a value indicating whether RadDateTimePicker is read-only. + + true if the RadDateTimePicker is read-only; otherwise, false. The default is + false. + 1 + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the format of the control has changed + + + + + Occurs when the value of the control has changed + + + + + Occurs when the value of the control is changing + + + + + Occurs when the value of the control is changing + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Occurs when the RadItem has focus and the user presses a key down + + + + + Occurs when the RadItem has focus and the user presses a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs before the CheckBox's state changes. + + + + + Occurs when the CheckBox's state changes. + + + + + Occurs when the value of the checkbox in the editor is changed + + + + + Represents the RadDateTimePickerCalendar class + + + + + Represents the RadDateTimePickerCalendar constructor + + + + + + Creates dateTimePicker's children + + + + + Shows the drop-down window part of the combo box + + + + + Sets the date shown in the textbox by a given value and format type. + + + + + + + Gets the instance of RadDateTimePickerElement associated to the control + + + + + Gets the RadArrowButtonElement instance + that represents the Date Time Picker's arrow + button. + + + + + Gets or sets the calendar control which is shown when the pop up control is shown + + + + + Gets or sets the drop down control which is shown when the user clicks on the arrow button + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, veritcal or a combination of them. + + + + + Gets or sets the drop down minimum size. + + + + + Gets or sets the drop down maximum size. + + + + + Gets a value representing whether the drop down is shown + + + + + The owner control of the popup + + + + + Shows the popup control with a specified popup direction and offset by the owner + + + + + + + Hides the popup + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Gets or sets the hosted control in the popup. + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Represents the RadDateTimePickerSpinEdit class + + + + + Represents the RadDateTimePickerSpinEdit constructor + + + + + + Sets the date shown in the textbox by a given value and format type. + + + + + + + Creates dateTimePicker's children + + + + + Gets the instance of RadDateTimePickerElement associated to the control + + + + + RadRotator BeginRotate Event Arguments + + + + + Delegate for the BeginRotate event + + The RadRotator that rotates + + + + + This control is transfers the web-based rotators' functionality to the Windows forms work space. + + + + + Initializes the RadRotator control + + + + + Initializes the Childs Items + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + /// + + + + + + + /// + + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + + + + Gets the instance of RadRotatorElement wrapped by this control. RadRotatorElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRotator. + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The RadItem containing , Border and Fill primitives + + + + + + + + + + + + + + + + + + + + + + + + + + Gets the collection of s that will be rotated. + + + + + Gets or Sets the that is to be displayed while loading the rest items. It is not cycled through when rotation starts. + If you want to have initial item that will be cycled through, add it to the collection + and advance to it using + + + + + + + Gets or Sets the interval between consequetive rotation animations. + + + + + Gets or Sets the swap animation's frames number + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + Gets or Sets value indicating whether opacity will be animated when switching frames + + + + + Gets or Sets value defining the initial position of the incomming item + and the final position of the outgoing item. + Note: The position is relative, in the range [-1, 1] for each of the components (X, Y). + Value of positive or negative 1 means that the object will not be in the visible area + before the animation begins (for the incomming item) or after it ends (for the outgoing item) + + + + + Gets or Sets the index of the current item. + Note: When setting the current item, the old and the new item will be swapped. + + + + + + Gets the current item. + + + + + + Gets or Sets value indicating whether the is started/stopped. + + + + + + + + Gets the in the current + + + + + + + + + + + + + + + + + + + + Represents TPF controls container + + + + + Gets the collection of s contained in the + + + + + The RadItem that implements the actual 's functionality. + + + + + Starts cycling through the elements in the collection + + set to true to initiate rotation immediately, or set to false to rotate after the time + there are no elements to rotate (Items collection is empty) + + + + Stops the rotation process. If swap is under way, it will be completed. + + + + + Initiates swap between the current item and the one whose index is supplied. + + the index of the item in the collection. The index of the home element is -1. + true on successful swap + + + + Makes transition to the default element. + + + + + Advances to the next item + + + + + Advances to the previous item + + + + + + + + + + + + + + Gets the collection of s that will be rotated. + + + + + Gets or Sets the that is to be displayed while loading the rest items. It is not cycled through when rotation starts. + If you want to have initial item that will be cycled through, add it to the collection + and advance to it using + + + + + + + Gets or Sets the interval between consequetive rotation animations. + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + Gets or Sets the swap animation's frames number + + + + + Gets or Sets value indicating whether opacity will be animated when switching frames + + + + + Gets or Sets value defining the initial position of the incomming item + and the final position of the outgoing item. + Note: The position is relative, in the range [-1, 1] for each of the components (X, Y). + Value of positive or negative 1 means that the object will not be in the visible area + before the animation begins (for the incomming item) or after it ends (for the outgoing item) + + + + + Gets or Sets the index of the current item. + Note: When setting the current item, the old and the new item will be swapped. + + + + + + Gets the current item. + + + + + + Gets or Sets value indicating whether the is started/stopped. + + + + + + + + Fires when an Item is clicked + + + + + Fires when is started. + + + + + Fires when is stopped. + + + + + Fires before s' swap begins. + + + + + Fires when s' swap has finished. + + + + + Provides information about the validation process. + + + + + Gets the exception that is caused by the validation of the edited value. Generally + the exception is populated by the validation logic and is available for rising by the editor. + + + + + Gets the edited value that fails to be validated + + + + + Represents the method that handles the Validating event. + + The source of the event. + A ValidationErrorEventArgs that contains the event data. + + + + Represents the method that handles the ValueChanging event. + + The source of the event. + A ValueChangingEventArgs that contains the event data. + + + + Adds the RadContextMenu dynamic property and enables using RadContextMenu in all controls. + + + + + Provides a menu-like interface within a button. + + + + + Create main button element that is specific for RadSplitButton. + + The element that encapsulates the functionality of RadSplitButton + + + + + + + Gets the instance of RadSplitButtonElement wrapped by this control. RadSplitButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSplitButton. + + + + + + + + + + + Raises the DropDownItemClicked event. + + + + + Get or sets the item that is activated when the button portion of the + RadSplitButtonElement is clicked or selected and Enter is pressed. + + + + + Get or sets the item that is separating the action part and the arrow part of the button. + + + + + Occurs when the default item is changed. + + + + + + Represents a checkmark element in a menu item. + + + + + Represents checkmark. + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets the instance of BorderPrimitive wrapped by this element. + + + + + Gets the instance of FillPrimitive wrapped by this element. + + + + + Gets the instance of ImagePrimitive wrapped by this element. + + + + + Gets the instance of CheckPrimitive wrapped by this element. + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed as a checkmark. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets value indicating RadCheckmark checkstate. + + + + + Determines whether the item will be used as a separate item in another element. + + + + Gets or sets value indicating whether border must be shown. + + + Gets or sets value indicating whether background must be shown. + + + + Represents a menu item which has a combobox placed inside. + + + + + Provides a reference to the ComboBox element in the menu item. + + + + + Represents a generic menu item which could have any descendant of RadElement placed inside. + Such element could be placed in the menu by setting the ContentElement property. + + + + + Gets or sets if the image column offset is shown along with content element or not. + + + + + Provides a reference to the content element in the menu item. + + + + Defines scrolling states. + + + + + + + Represents event data of the Scroll event defined in all controls providing + scrolling functionality(e.g. RadScrollBar). + + + + + Initializes a new instance of the ScrollPanelEventArgs class. + + + + + + Gets the old thumb position (point). + + + Gets the new thumb position (point). + + + + Represents event data for the + ScrollParametersChanged event. + + + + + Indicates whether the scroll parameters are for the horizontal or for the vertical scroll bar. + + + + + Scroll bar parameters taken from the scroll bar that caused the event. + All parameters are filled correctly, not only the chagned one. + + + + + Indicates whether the need for horizontal or vertical srcolling has changed + + + + + Indicates whether horizontal scrolling was necessary + + + + + Indicates whether horizontal scrolling is necessary + + + + + Represents the method that will handle the + Scroll event. + Represents the event sender. + Represents the event arguments. + + + + + Represents the method that will handle the + Scroll event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + ScrollNeedsChanged event. + + + + + + + Represents parameters of the scroll panel such as values for the small and + large changes while scrolling. + + + + + Represents horizonatal scroll parameters data: horizontal minimum and maximum + positions, and horizontal small and large change. + + + + + Represents vertical scroll parameters data: vertical minimum and maximum + positions, and vertical small and large change. + + + + + Initializes a new ScrollPanelParameters struct. + + + ScrollPanelParameters(int,int,int,int,int,int,int,int) + + + Initializes the parameters pertaining to the horizontal scrolling - small and + large horizontal changes, and minimum and maximum scrolling positions. + + + Initializes the parameters pertaining to the vertical scrolling - small and large + vertical changes, and minimum and maximum scrolling positions. + + + + + Initializes a new ScrollPanelParameters structure. + + + ScrollPanelParameters(ScrollBarParameters,ScrollBarParameters) + + Initializes the minimum horizontal scrolling position. + Initializes the maximum horizontal scrolling position. + + Initializes the small horizontal change value; the value added or substracted + from the current position when small horizontal change is initiated. + + + Initializes the large horizontal change value; the value added or substracted + from the current position when large horizontal change is initiated. + + Initializes the vertical minimum scrolling position. + Initializes the vertical maximum scrolling position. + + Initializes the small change vertical value; the value added or substracted from + the current position when small vertical change is initiated. + + + Initializes the large vertical change value; the value added or substracted from + the current position when large vertical change is initiated. + + + + + Represents a menu. It may be nested in other telerik controls. RadMenu can be + horizontal or vertical. You can add, remove, and disable menu items at run-time. It + offers full support for the Telerik RadControls + for WinForm theming engine, allowing you to easily construct a variety of stunning + visual effects. You can nest any other RadControl within a RadMenu + . For example, you can create a menu with an embedded + textbox or combobox. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Occurs when the menu Orientation property value changes. + + + + + Occurs when the menu AllItemsEqualHeight property value changes. + + + + Gets or sets the context items. + + + + Gets an instance of the class + that represents the layout panel in which the menu items reside. + + + + + + Gets all root menu items (see for more + information about menu items). + + + + Root menu items are these menu items that can be displayed in the menu when + nothing is dropped down. + + Menu items are hierarchical items - they have a parent item and a list of children + items. Children items are menu items that can be dropped down as submenu of + their parent. The difference between the root and the non-root menu items is that + root items have no parent item (the property + can be used to check if an item is a + root one). + + Note that Items contains all root menu items, not just the + items that are displayed. An item remains in the Items collection even if it is an + overflow item and is therefore not currently visible. + + RadMenuItemBase Class + + + + Gets or sets the + orientation of menu + items - Horizontal or Vertical. + + + + + Gets or sets whether all items will appear with the same size (the size of the highest item in the collection). + + + + + Gets or sets a value indicating whether the DropDown animation will be enabled when it shows. + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + Gets an instance of the class + that represents the menu background fill. + + + + + Gets an instance of the class + that represents the border of the menu. + + + + + Represents the method that will handle the RadPopupClosing event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + Represents the event arguments. + Represents the sender of the event. + + + + + Represents a method which will handle the PopupOpening event. + + Repretents the event sender. + Represents the event arguments + + + + Represents a method which will handle the FadeAnimationFinished event. + + Repretents the event sender. + Represents the event arguments + + + + Represents a method which will handle the PopupOpened event. + + Repretents the event sender. + Represents the event arguments + + + Defines the closing reasons for the popup. + + + + Specifies that the popup was closed because + another application has received the + focus. + + + + + Specifies that the popup was closed because the + mouse was clicked outside the + popup. + + + + + Specifies that popup was closed because of + keyboard activity, such as the ESC key being + pressed. + + + + + Specifies that the popup was closed because + ClosePopup() method had been called. + + + + + Specifies that the popup was closed because its parent was closed. + + + + + Instances of this class contain information + about the fade animation finished event of a popup control. + + + + + Gets a boolean value determining the type + of the fade animation. + + + + + Instances of this class contain information + about the opening event of a popup control. + + + + + Creates an instance of the + class. + + + + + Gets an instance of the + struct which contains the coordinates which will be used + to position the popup. + + + + + Represents event data of the RadPopupClosingEvent. + + + + + Initializes a new instance of the RadPopupClosingEventArgs class using the close reason. + + + + + + Defines the direction in which the drop-down window will be shown relative to its parent. + + + This enumeration is used in such controls like menus, combo boxes, etc. for example. + + + + + Indicates that the drop-down will be shown on the left side of the parent. + + + + + Indicates that the drop-down will be shown on the right side of the parent. + + + + + Indicates that the drop-down will be shown on the top side of the parent. + + + + + Indicates that the drop-down will be shown on the bottom side of the parent. + + + + + + + + Gets the screen rectangle of the provided screen. + + The screen. + Determines whether the taskbar is included in the result. + A Rectangle struct that contains the data about the bounds of the screen. + + + + Gets the valid location for a context menu + + + + + + + + + + Gets the valid location for a drop-down (for menus, combo boxes, + etc.). + + + This method calculates: + 1. The rectangle of the screen where the drop down should be shown + 2. The rectangle (in screen coordinates) of the owner element. Owner element + is the element that shows the drop-down and is connected to it - like a menu item + that shows its sub menus or a combobox element that shows its drop-down. + After calculating the screen and the element rectangles this method calls the + basic method. + + + + + + + Offset in pixels from the owner element. When this is zero there is no space + between the owner and the drop-down. + + + + + Gets the valid location for a drop-down (for menus, combo boxes, etc.). + + The popup is not allowed to be outside the screen rectangle and to be shown over + the ownerRect. + + + + + + + Offset in pixels from the owner element. When this is zero there is no space + between the owner and the drop-down. + + + + + Gets a screen from a point on the desktop. + + A Screen object that contains the given point or the PrimaryScreen on + error. + + The point on the desktop that must be in the returned screen. + + + + Gets the rectangle of the screen that contains the biggest part of a given + element. + + The rectangle of the primary screen on error. + + If the element is not added in a control or is not visible the rectangle of the + primary screen is returned. + + + + Gets the rectangle of the screen that contains given point on the desktop. + The rectangle of the primary screen on error. + The point on the desktop that must be in the returned screen rectangle. + + + + Ensures a drop-down rectangle is entirely visible in a given screen + rectangle. + + + + + Represents a progress bar. You can set progress bar appearance in numerous ways. + For example, you can use dash or dash integral style, set separator color and width, set a + background image, etc. The RadProgressBar class is a simple wrapper for the + RadProgressBarElement class. The latter may + be nested in other telerik controls. All UI and logic functionality is + implemented by the RadProgressBarElement + class. RadProgressBar acts to transfer the events to and from the + RadProgressBarElement class. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the text associated with this control. + + + The text. + + + + + Gets or sets the background image of the RadProgressBar. + + + + + Gets or sets the layout of the background image of the RadProgressBar. + + + + + Gets the instance of RadProgressBarElement wrapped by this control. RadProgressBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadProgressBar. + + + + + Gets or sets the value of the first progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the value of the second progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the minimum value for the progress. + + + The minimum. + + + + + Gets or sets the maximum value for the progress. + + + The maximum. + + + + + Gets or sets a value indicating the amount to increment the current value with. + + + The step. + + + + + Gets or sets the StepWidth between different separators. + + + The width of the step. + + + + + Indicates whether the progress bar style is dash. When style is dash + the progress line is broken into segments with separators in between them. + + + + + Indicates whether the progress bar style is hatch. When style is hatch + the progress line is covered with a hatch. You will have to change the SweepAngle + in order to see the style. + + + + + When style is dash indicates if the progress indicators will progress on steps or smoothly. + + + + + Gets or sets the first gradient color for separators + + + The separator color1. + + + + + Gets or sets the second gradient color for separators. + + + The separator color2. + + + + + Gets or sets the third gradient color for separators. + + + The separator color3. + + + + + Gets or sets the fourth gradient color for separators. + + + The separator color4. + + + + + Gets or sets the fourth gradient color for separators. + + + The separator gradient angle. + + + + + Gets or sets the first color stop in the separator gradient. + + + The separator gradient percentage1. + + + + + Gets or sets the second color stop in the separator gradient. + + + The separator gradient percentage2. + + + + + Gets or sets the number of colors used in the separator gradient. + + + The separator number of colors. + + + + + Gets or sets the separators width in pixels. + + + The width of the separator. + + + + + + + + + + + + + + + + + Gets or sets the alignment of the image of the progress line. + + + + + Gets or sets the text orientation in the progress bar. + + + + + Gets or sets the alignment of the text content on the drawing surface. + + + + + Gets or sets the progress + orientation: Bottom, Left, Right, Top. + + + + + Indicates whether the progress bar style is hatch. When true, the style is Hatch. + When both dash and hatch are true the style is hatch. + + + + + Gets or sets the angle at which the dash or hatch lines are tilted. + + + + + Fires when value is changed. + + + + + Fires when step is changed. + + + + + Fires when step width is changed. + + + + + Fires when the separator width is changed. + + + + + Fires when the minimum property is changed. + + + + + Fires when the maximum property is changed. + + + + + Fires when the dash property is changed. + + + + + Fires when the hatch property is changed. + + + + + Fires when the integral dash property is changed. + + + + + Fires when the text orientation is changed. + + + + + Fires when the text alignment is changed. + + + + + Fires when the progress orientation is changed. + + + + + Fires when show progress indicators is changed. + + + + + Fires when the separator color is changed. + + + + + Represents the method that will handle some of the following events: + ValueChanged, + StepChanged, + StepWidthChanged, + SeparatorWidthChanged, + MinimumChanged, + MaximumChanged, + DashChanged, + TextOrientationChanged, + Represents the event sender. + Represents the event arguments. + + + + + Represents a progress bar element. RadProgressBar + is a simple wrapper for RadProgressBarElement. The latter may be included in other + telerik controls. All graphical and logic functionality is implemented by + RadProgressBarElement. The RadProgressBar acts to + transfer the events to and from its RadProgressBarElement instance. + + + + + Creates the child elements and sets their locally applied values as Default + + + + + Initializes the fields. + + + + + Gets the final size of the progress indicator. + + The element. + The client rect. + The value. + + + + + Gets the final size of a vertical progress indicator. + + The client rect. + The value. + The step. + + + + + Gets the final size of a horizontal progress indicator. + + The client rect. + The value. + The step. + + + + + Gets the final size of the separators. + + The progress bar1 rectangle. + The progress bar2 rectangle. + + + + + Raises the event. + + The instance containing the event data. + + + + Advances the + current position of the progress bar by the amount of the Step property + + + + + Reverses the + advance of the current position of the second progress bar by the amount of the Step + property. + + + + + Increments Value1 with the given argument value. + + The value. + + + + Decrements Value1 with the given argument value. + + The value. + + + + Advances the + current position of the first progress bar by the amount of the Step + property. + + + + + Advances the + current position of the first progress bar by the amount of the Step + property. + + + + + Increments Value2 with the given argument value. + + The value. + + + + Decrements Value2 with the given argument value. + + The value. + + + + Gets or sets the value for the first progress indicator. + + + + + Gets or sets the value for the second progress indicator. + + + + + Gets or sets the minimum possible value for the progress bar Value1(2). + + + + + Gets or sets the maximum possible value for the progress bar Value1(2). + + + + + Gets or sets the value with which the progress bar Value1(2) will + increments/decrements. + + + + + Gets or sets the step width in pixels with which the progress bar + indicator will move if style is dash. + + + + + Gets or sets the progress orientation of the progress bar indicator. + Bottom, Left, Right, Top + + + + + Gets or sets if the progress should be show with percentages. + + + + + Gets or sets the style to dash. + + + + + Gets or sets the style to hatch. + + + + + Gets or sets the style to integral dash. To set IntegralDash you need + to first set dash to true. + + + + + Gets or sets the progress bar indicator image. + + + + + Gets or sets the layout of the image in the progress indicator. + + + + + Gets or sets the image index of the progress bar indicator image. + + + + + Gets or sets the image key for the progress bar indicator image. + + + + + Gets or sets the alignment of the image in the progress line. + + + + + Gets an instance of the class + that represents the progress indicator of the progress bar. + + + + + Gets an instance of the class + that represents the progress bar indicator. + + + + + Gets an instance of the class + that represents the separators on the progress bar indicator. + + + + + Gets or sets the separators width in pixels. + + + The width of the separator. + + + + + Gets or sets the first gradient color for separators + + + The separator color1. + + + + + Gets or sets the second gradient color for separators + + + The separator color2. + + + + + Gets or sets the third gradient color for separators + + + The separator color3. + + + + + Gets or sets the fourth gradient color for separators + + + The separator color4. + + + + + Gets or sets the angle of the separators gradient + + + + + Gets or sets the first color percentage in the separator gradient. + + + + + Gets or sets the second color percentage in the separator gradient. + + + + + Gets or sets the number of colors used in the separator gradient. + + + + + Gets an instance of the class + that represents the text of the progress bar. + + + + + Gets or sets the text associated with this element. + + + + + Gets or sets the angle at which the dash or hatch lines are tilted. + + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + Gets the element that displays the caption + + + + + Gets the element that displays the footer line + + + + + Gets the element that displays the Text + + + + + Gets the element that displays the Footer + + + + + Gets the FillPrimitive instance that represents + the screen tip fill. + + + + + Gets the BorderPrimitive instance that represents + the screen tip border. + + + + + Represents event data for the following events: OnTabSelected, OnTabHovered, + OnTabDragStarted, OnTabDragStarting, OnTabDragEnding, and OnTabDragEnded. + + + + + Initializes a new instance of the CommandTabEventArgs class using the + affected command tab. + + + + + + Gets the affected command tab. + + + + + Represents the method that will handle the following event: + CommandTabSelected. + + + + + ContextualTabGroups are used to organize RibbonBar Tabs in + groups which are visible depending on certain context. + + + + + Collection containing references to the TabItems in the group. + + + + Gets or sets the displayed text. + + + + + A collection that stores objects. + + + + + + + + Initializes a new instance of the + . + + + + + + + Initializes a new instance of the + . + + + + + + + Initializes a new instance of the + + based on another + . + + + + A from which the contents are copied + + + + + + Initializes a new instance of the + + containing any array of + objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space to the end of . + is . + + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + + Returns an enumerator that can iterate through + the . + + None. + + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + Gets or sets a value indicating the owner. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + + + + + + Initializes a new instance of the ContextualTabGroupEnumerator class + using a collection of ribbon bar command tabs. + + + + + + Moves to the next element in the collection. When invoked for the first time, + moves to the first element of the collection. + + + + Resets the iterator. + + + Gets the current element of the collection. + + + + Find main form and save it in member variable + + + + + Main method for internal logic + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + This method defines whether a Quick Access Toolbar item is visible or not. + If the method is called to hide an item, its Visibility property is set to Collapsed + and the corresponding menu item in the overflow button is unchecked. + The method throws an InvalidOperationException if the item does not below + to the current QAT collection. + + The item which visibility will be modified. + True to show an item, false to collapse it. + + + Gets the items in the tabstrip. + + + + + + + Determines whether the parent form can be moved by dragging the title bar. + + + + + Gets or sets the value of the caption + + + + + Gets the caption layout + + + + + Gets the Help button. + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + Fires when the close button is clicked + + + + + Fires when the minimize button is clicked + + + + + Fires when the maximize button is clicked + + + + + + + + Transforms the given point's X coordinate from world coordinates to local coordinates. + + The point to transform + The transformed point + + + + This method calculates the available space for the + ribbon caption text at the left side of the + contextual tab groups + The total available size for the elements + managed by this layout panel. + The width available. + + + + This method calculates the available space for the + ribbon caption text at the right side of the + contextual tab groups + The total available size for the elements + managed by this layout panel. + The width available. + + + + Determines whether the tab strip items should be reordered so that they match + the requirements for associated tab strip items. + + True if a reset is needed. Otherwise false. + + + + Checks whether the Add New Tab item is in the tab strip. + + True or false + + + + Gets the count of the empty contextual tab groups. + + The count of the empty groups. + + + + Resets the layout context variables which are used to determine the position + of the caption text, the contextual tabs and the design-time + contextual tab groups which are empty. + + + + + Gets the left most contextual tab group. + + Determines whether empty contextual groups are considered when + calculating the left most group + A reference to the left most group. Null if no groups are found. + + + + Gets the right most contextual tab group. + + Determines whether empty contextual groups are considered when + calculating the right most group + A reference to the right most contextual group. Null if no groups are found. + + + + This method reorders the TabStrip items so that they are positioned under the + ContextualTabGroup they are associated with. All tab items that are + associated with a tab groups should be positioned on the right side of the tab strip. + This algorithm begins iterating from the first to the last contextual tab group as they + appear in the collection of the ribbon bar. The associated tab items are always inserted + at the end of the tab strip. In this way the effect of positioning the last associated + tab item at the end of the corresponding contextual group is achieved. + + + + + This method calculates the size of a contextual group base on the associated tabs. + + The tab group which size is to be calculated + The calculated size of the group. + + + + This method is responsible for measuring the rightmost visible contextual group with associated tabs. + This is a private case method which is called only for the right most group, + since it has to be shrinked when the system buttons panel has to 'step' over it while resizing. + + The available size for measuring + The tab group which is to be shrinked + + + + This method is responsible for arranging the rightmost visible contextual group with associated tabs. + This is a private case method which is called only for the right most group, + since it has to be shrinked when the system buttons panel has to 'step' over it while resizing. + + The final size for arranging + The tab group which is to be arranged + + + Represents parameters of the scroll bar such as small change and + large change in the scrolling position. + + + + Represents the minimum value of the scrolling position. + + + + + Represents the maximum value of the scrolling position. + + + + + Represents a small change in the scrolling position; the value which will be + added or substracted from the current position in case of small change. + + + + + Represents a large change in the scrolling position; the value which will be + added or substracted from the current position in case of large change. + + + + Initializes a new ScrollBarParameters structure. + + Initializes the minimum value of the scrolling. + Initializes the maximum value of the scrolling. + Initializes the small change value. + Initializes the large change value. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Allow form's resize + + + + + Gets or sets the form's border color + + + + + Gets or sets the form's border width + + + + + Gets or sets an instance of the Shape object of a form. The shape of the + form is responsible for providing its' border(s) with custom shape. + + + Some predefined shapes are available, like or . + offers a way to specify element's shape with a sequance of points and curves using code + or the design time + . + + + + Gets or sets theme name. + + + Enables or disables transparent background on Vista + + + + Gets or sets the FormBorderStyle of the Form. + + + + + Represents a title bar. This control helps in creation of borderless forms by + substituting the system title bar. Subscribe for radTitleBar events to implement + the actual action for the the corresponding event. For example, on Close event + close the form of your application. + Use the Visual Style Builder to change the default appearance and the visible + elements. For example the system menu is not visible by default. + + + + + Initializes a new instance of the RadTitleBar class. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets a boolean value that determines whether the title bar + can manage the owner form. + + + + + Allow form's resize + + + + + An Icon that represents the icon for the form. + + + + + Gets the instance of RadTitleBarElement wrapped by this control. RadTitleBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTitleBar. + + + + + Fires when a minimize action is performed by the user (the minimize button is + pressed). + + + + + Fires when a maximize/restore action is performed by the user (maximizes button + is pressed or the title bar is double clicked). + + + + + Fires when the minimize in the tray button is pressed. It is hidden by default. + Use the Visual Style Builder to set which elements are visible and design their visual + appearance. + + + + + Represents the method that will handle some of the following events: Close, + MaximizeRestore, Minimize, and MinimizeInTheTray. + + + + + Represents a button control. The button control serves as a + RadButtonElement Class wrapper. All logic and + presentation features are implemented in a parallel hierarchy of objects. For this + reason, RadButtonElement Class may be nested in + any other telerik control, item, or element. + + + + + Gets or sets the DialogResult for this button. + + + + + Rec editors. It is used in + RadComboboxElement, DropDownButton, etc. + + + + + Note: this property is supposed to be used only when this.Parent.AutoSizeMode==WrapAroundChildren + + + + Represents a menu separation item. + Use it to separate logically unrelated items in the menu. + + + Initializes a new instance of the RadMenuSeparatorItem class. + + + Gets or set the sweep angle in degrees. + + + + Gets or sets the separator + orientation. Possible values are members of SepOrientation enumeration. + + + + Gets or sets separators width in pixels. + + + + Gets or sets the offset of the location where the draw of the line should start + + + + Gets a value indicating whether the RadMenuSeparator can be selected. + + + + Gets or sets a value indicating whether the text should be visible. + + + + + Represents the RadRadioButton control + + + + + Represents a RadToggleButton. A ToggleButton may have the following states: + On, Off, and Indeterminate. The button may have only the first two states if the + IsThreeState property is set to false. + + The RadToggleButton class is a simple wrapper for the + RadToggleButtonElement. All UI and + logic functionality is implemented in the + RadToggleButtonElement class. The + latter can be nested in other telerik controls. RadToggleButton acts to + transfer events to and from the its corresponding + RadToggleButtonElement instance. + + + + + Initializes a new instance of the RadToggleButton class. + + + + Initializes a new instance of the class. + + + + + Create main button element that is specific for RadToggleButton. + + The element that encapsulates the functionality of RadToggleButton + + + + Raises the StateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the CheckStateChanging event. + + + + + Raises the CheckStateChanged event. + + + + + Gets the instance of RadToggleButtonElement wrapped by this control. RadToggleButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadToggleButton. + + + + + + + Gets or sets a boolean value indicating where the button is checked. + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + Gets or sets a boolean value indicating where the button is checked. + + + + Gets or sets a value indicating whether the toggle button is read only. + + + true if the toggle button is read only; otherwise, false. + + + + Occurs when the elements's state is changing. + + + + Occurs when the element's state changes. + + + + Occurs when the elements's check state is changing. + + + + Occurs when the element's check state changed. + + + + + Create main button element that is specific for RadRadioButton. + + The element that encapsulates the funtionality of RadRadioButton + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets the default size of RadRadioButton + + + + + Gets the instance of RadRadioButtonElement wrapped by this control. RadRadioButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRadioButton. + + + + Gets or sets a value indicating the alignment of the radio button. + + + + Represents a radio button element. The RadRadioButton + class is a simple wrapper for the RadRadioButtonElement class. The + RadRadioButton acts to transfer events to and from its + corresponding RadRadioButtonElement instance. The RadRadioButtonElement which is + essentially the RadRadioButton control may be nested in + other telerik controls. + + + + + Registers the RadioCheckAlignment dependency property + + + + + initializes and adds the child elements + + + + + Fires te Click event and handles the toggle logic + + + + + Gets or sets a value indicating the alignment of the radio-mark according to the text of the button. + + + + Represents checkmark. + + + + Registers the CheckState dependency property + + + + + Registers the IsImage dependency property + + + + + Registers the IsCheckMark dependency property + + + + + Initializes the newly added children if needed. + + + + + + + handles the properties behavior when a property value is changed. + + + + + + Sets the toggle state of the RadioMark + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets an instance of the check element + + + + + Gets an instance of Image element + + + + Gets or sets value indicating RadRadiomark checkstate. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Raises the GalleryItemHover event. + + + + + Raises the DropDownOpening event. + + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosing event. + + + + + Raises the DropDownClosed event. + + + + + Gets an instance of the class + that represents the popup control which hosts the + displayed to the user when he/she clicks on the drop-down button of the gallery. + + + + + Gets an instance of the class + that represents the main element put in the + when it is shown to the user. This element holds the content of the gallery, + as well as some additional elements like sizing grip etc. + + + + + Gets the instance + that represents the Gallery Element's fill. + + + + + Gets the instance + that represents the Gallery Element's border. + + + + + Gets tne that + represents the up button in the gallery element. + + + + + Gets tne that + represents the down button in the gallery element. + + + + + Gets tne that + represents the show popup button in the gallery element. + + + + + Gets or sets a value indicating whether group filtering is enbled when filters are defined. + + + + + Gets a collection representing the group filters defined in this gallery. + + + + + Gets a collection representing the groups contained in this gallery. + + + + + Returns whether the gallery is currently dropped down. + + + + + Gets a collection representing the items contained in this gallery. + + + + + Gets or sets a value indicating whether the selection of the gallery items is enabled or not. + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the maximum number of columns to be shown in the drop-down portion of the gallery. + + + + + Gets or sets the maximum number of rows to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the minimum number of columns to be shown in the drop-down portion of the gallery. + + + + + Gets or sets the currently selected item. + + + + + Gets the Tools menu items collection where you can add and remove items from the + Tools part of the gallery + + + + + Gets or sets a value indicating whether a gallery item is zoomed-in when mouse over it. + + + + + Occurs when the mouse pointer rests on the gallery item. + + + + + Occurs when the drop-down is opening. + + + + + Occurs when the drop-down has opened. + + + + + Occurs when the drop-down is about to be closed. + + + + + Occurs when the drop-down window has closed. + + + + + Gets or sets value indicating whether DropDownMenu will have the same class name as the owner control or its own. + True means that the same class name will be used as the control that opened the dropdown. + + + + + Gets a collection representing the group items contained in this gallery filter. + + + + + Returns whether the filter is currently selected. + + + + + Gets or sets a value indicating whether the caption of the group is shown. + + + + + Gets or sets the description text associated with this item. + + + + + Angle of rotation for the button image. + Unlike AngleTransform the property ImagePrimitiveAngleTransform rotates the image only. + AngleTransform rotates the whole item + + + + + Gets or sets the font of the description text of the RadGalleryItem. + + + + + Returns whether the gallery item is currently selected. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets the element responsible for painting the background of the label + + + + + Gets the element responsible for painting the text of the label + + + + + Gets the image element responsible for painting the image part of the label. + + + + + Gets the responsible for painting the image part of the label. + + + + + Represents a check box. The RadCheckBox class is a simple wrapper for the + RadCheckBoxElement class. The RadCheckBox acts + to transfer events to and from its corresponding + RadCheckBoxElement. The + RadCheckBoxElement which is essentially the + RadCheckBox control may be nested in other telerik controls. + + + + + Create main button element that is specific for RadCheckBox. + + The element that encapsulates the functionality of RadCheckBox + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets the instance of RadCheckBoxElement wrapped by this control. RadCheckBoxElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadCheckBox. + + + + Gets or sets value indicating the checked state of the checkbox. + + Since RadCheckBox is tri-state based (ToggleState property) the Checked property is provided for compatibility only. + Checked=true corresponds to ToggleState.On and Checked=false corresponds to ToggleState.Off. + If value of ToggleState property equals , + value of Checked property is 'false'. + + + + + Gets or sets a value indication whether mnemonics are used. + + + + Gets or sets a value indicating the alignment of the check box. + + + + Represents a RadRepeatButton. If the button is continuously held pressed, it + generates clicks. The RadRepeatButton class is a simple wrapper for the + RadRepeatButtonElement class. The + RadRepeatButton acts to transfer events to and from its corresponding + RadRepeatButtonElement instance. The + RadRepeatButtonElement which is + essentially the RadRepeatButtonElement + control may be nested in other telerik controls. All graphical and logical + functionality is implemented in + RadRepeatButtonElement class. + + + + + Raises the ButtonClick event. + + + + + Gets the instance of RadRepeatButtonElement wrapped by this control. RadRepeatButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRepeatButton. + + + + + Determines whether the button can be clicked by using mnemonic characters. + + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Propagates internal element click. + + + + + Represents the method that will handle the + ToggleStateChanging + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + CheckStateChanging + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents event data of the + CheckStateChanging + event. + + + + + Initializes a new instance of the StateChangingEventArgs class using the old toggle state, the new toggle state and + + + + + + + + Gets or sets the old toggle state. + + + + + Gets or sets the new toggle state. + + + + + Represents event data of the + ToggleStateChanging + event. + + + + + Initializes a new instance of the StateChangingEventArgs class using the old toggle state, the new toggle state and + + + + + + + + Gets or sets the old toggle state. + + + + + Gets or sets the new toggle state. + + + + + Represents event data of the + ToggleStateChanged. + + + + + Initializes a new instance of the StateChangedEventArgs class. + + + + + + Gets the toggle state Off, On, or Indeterminate + + + + + Represents the method that will handle the + ToggleStateChanged + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the SelectedIndexChanged event. + A SelectedIndexChangedEventArgs that contains the event data. + The source of the event. + + + + + Represents event data of the SelectedIndexChanged event. + + + + + Initializes a new instance of the SelectedIndexChangedEventArgs class. + + + + + Gets the instance of previously selected item. + + + + + Gets the instance of currently selected item. + + + + Used to group collections of controls. + + A RadPanel is a control that contains other controls. You + can use a RadPanel to group collections of controls such as a + group control of radio buttons. If the RadPanel control's + Enabled property is set to false, the controls + contained within the RadPanel will also be disabled. + You can use the AutoScroll property to enable scroll bars in + the RadPanel control. When the AutoScroll + property is set to true, any controls located within the + RadPanel (but outside of its visible region), can be scrolled to + with the scroll bars provided. + The RadPanel control is displayed by default with border and + a text (using TextPrimitive). There is a + FillPrimitive which is transparent by default. It allows gradients + to be used for background of the RadPanel. + + + + Initializes new RadPanel + + + Creates the main panel element and adds it in the root element. + + + + Gets the instance of RadPanelElement wrapped by this control. RadPanelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadPanel. + + + + + Gets or set a value indicating whether panel will scroll automatically to show + the currently focused control inside it. + + + + + Gets or sets the alignment of the text within Panel's bounds. + + + + Gets the default size of the control. + The default System.Drawing.Size of the control. + The default Size of the control. + + + + Gets or sets a value indicating whether the control causes validation to be + performed on any controls that require validation when it receives focus. + + + true if the control causes validation to be performed on any controls requiring + validation when it receives focus; otherwise, false. + + + + The main element of the RadPanel control. + + + Create the elements in the hierarchy. + + + + Gets the of the + panel element. + + + + + Gets the of the + panel element. + + + + + Gets the of the + panel element. + + + + + This class represents the root element + of a control. + + + + + Represents a dialog containing a color picker + + + + + Creates instance of RadColorDialog class + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the color selector + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Gets or sets the active mode of the color tabstrip + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides whe professional colors tab + + + + + Shows or hides the custom colors tab + + + + + Shows or hides the hex color value + + + + + Allows or disallows editing the HEX value + + + + + Allows or disallows color picking from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the selected color has changed + + + + + Instance of this class contain information about the control to which + a container of the RadScrollablePanel is scrolled. + + + + + Gets an instance of the + class that represents the scrollable panel that holds + the gallery items when the popup is shown. + + + + + Gets an instance of the class + that represents the element holding the buttons that represent + the different filters and groups. + + + + + Gets an instance of the class + that represents the sizing grip of the dropdown. + + + + + Set theme name for the whole RadMessageBox + + + + + + Displays RadMessageBox with specified text. + + The text to display in the RadMessageBox. + One of the values + + + + Displays RadMessageBox with specified text and caption. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, and buttons. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, and buttons. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, and icon. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, and icon. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, icon and default button. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, icon and default button. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text and caption. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, and buttons. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, and buttons. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, and icon. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, and icon. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + that displays in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values that specifies right to left settings. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values that specifies right to left settings. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + that displays in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values. + + + + Gets the RadMessageBoxForm instance + + + + + Gets or set theme name for the whole RadMessageBox + + + + + Set the cursor that is displayed when the mouse pointer is over the control. + + + + + Set the message to be shown in windows taskbar. Default is false + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Set label text and size according to text string measure + + + + + + Calculate form size according to title text size + + width + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value indicating whether a beep is played when the message box is shown. + + + true if a beep is played; otherwise, false. + + + + + Sets the RadMessageBox Text + + + + + Sets the RadMessageBox caption text + + + + + RadMessageBox Icon + + + + + Gets ot sets the size of the buttons shown in the message box. + + + + + Provides Localization service for RadMessageBox + + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + present RadGripElement + + + + + creacte child elements + + + + + OnMouseDown + + + + + + OnMouseUp + + + + + + OnMouseMove + + + + + + Grip image + + + + + Represents a RadStatusStrip. The RadStatusStrip class is a simple wrapper for the + RadStatusBarElement class. The RadStatusStrip acts + to transfer events to and from its corresponding + + + + + create RadStatusStrip instance + + + + + create child items + + + + + + fire the StatusBarClick event + + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + implement default Dock style + + + + + Gets or sets the text associated with this control. + + + + + Gets or sets the visibility of the grip used to reposition the control. + + + + + Gets all the items that belong to a RadStatusStrip. + + + + + Set the RadStatusStrip's layout style + + + + + Gets the instance of RadStatusBarElement wrapped by this control. RadStatusBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadStatusStrip. + + + + + RadStatusStrip consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadStatusStrip consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + status bar click events + + + + + this event fired before Layout Style Changing + + + + + this event fired after LayoutStyle Changed + + + + + custom event handle for the click event + + + + + + + represent the RadStatusBarClickEventArgs object + + + + + create a instance of + + + + + + + present the clicked element + + + + + Represents a RadStatusBarElement. + + + + + create elements in the RadStatusBarElement + + + + + this event fired before Layout Style Changing + + + + + this event fired after LayoutStyle Changed + + + + + Gets a collection representing the "View changing" items contained in this statusbar. + + + + + get or set RadStatusBarElement orienatation + + + + + show or hide the Grip element in RadStatusStrip + + + + + Set the RadStatusStrip's layout style + + + + + enumerate RadStatusStrip LayoutStyles + + + + + represent the RadStatusBarPanelElement + + + + + create child items + + + + + Represents the StatusBarBoxLayout class + + + + + Registers the Proportion dependancy property of StatusBarBoxLayout + + + + + Registers the Orientation dependancy proeprty of StatusBarBoxLayout + + + + + Registers the StripPosition dependancy property of StatusBarBoxLayout + + + + + Gets the proportion based on a given element + + + + + + + arranges the children by a given criteria + + + + + + + Gets or sets strip orientation - it could be horizontal or vertical. + + + + + represents StripPosition enumeration + + + + Gets or sets the line width in pixels. + + + + Gets or sets the line orientation. Possible values are defined in the SepOrientation + enumeration. + + + + Gets or sets the line angle in degrees. + + + + Represents a numeric up/down control box. The RadSpinEditor class is a simple wrapper for the + RadSpinElement class. The RadSpinEditor acts + to transfer events to and from its corresponding + RadSpinElement. The + RadSpinElement which is essentially the + RadSpinEditor control may be nested in other telerik controls. + + + + + Initializes a new instance of the RadSpinEditor class + + + + + CreateChildItems + + + + + + increase or decrease value in the numeric up/dowm with step value + + + + + + set the default control size + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadSpinElement wrapped by this control. RadSpinElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSpinControl. + + + + + Gets or sets the mimimum value for the spin edit + + + + + Gets or sets the maximum value for the spin edit + + + + + Gets or sets the whether RadSpinEditor will be used as a numeric textbox. + + + + + Gets or sets whether by right-mouse clicking the up/down button you reset the value to the Maximum/Minimum value respectively. + + + + + Gets or sets a value indicating whether the border is shown. + + + + + Set or get the Step value + + + + + Set or get the Step value + + + + + Gets or sets a value indicating that value will revert to minimum value after reaching maximum and to maximum after reaching minimum. + + + + + Represents the decimal value in the numeric up/down + + + + + Represents the decimal value in the numeric up/down. The Value can be null + + + + + Gets or set how to interpret the empty text in the editor portion of the control + if true the empty value will set NULL in NullableValue property + + + + + Gets or sets a value indicating whether the user can use the UP ARROW and DOWN ARROW keys to select values. + + + + + Gets or sets a value indicating whether the text can be changed by the use of the up or down buttons only. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the RadSpinEditor + + + + + Gets or sets the number of decimal places to display in the RadSpinEditor + + + + + Gets or sets a value indicating whether the RadSpinEditor should display the value it contains in hexadecimal format. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + Occurs before the value of the SpinEdit is changed. + + + + + Occurs before the value of the SpinEdit is changing. + + + + + Occurs when the NullableValue of the SpinEdit is changed. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Initializes a new instance of the RadTextBoxBase class. + + + + + Represents RadTextBoxBase constructor + + + + + Initializes textbox's children + + + + + Appends text to the current text. + + + + + Empties the TextBox. + + + + + Undo to the previous text value before clear invocation. + + + + + Copies the text value to the clipboard. + + + + + Cuts the text value to the clipboard. + + + + + Deselects the text in the cotrol. + + + + + Retrieves the character that is closest to the specified location within the + control. + + + + + Retrieves the index of the character nearest to the specified location. + + + + + Retrieves the index of the first character of a given line. + + + + + Retrieves the index of the first character of the current line. This method + is not supported by MaskedTextBox. + + + + + Retrieves the line number from the specified character position within the + text of the control. + + + + + Retrieves the location within the control at the specified character + index. + + + + + Pastes the text value to the clipboard. + + + + + Pastes the string parameter to the clipboard. + + + + + Scrolls the contents of the control to the current caret position. + + + + + Selects the text in the TextBox from the start position inclusive to the end + position exclusive. + + + + + Selects the text in the TextBox. + + + + + Undoes the last edit operation in the text box. + + + + + Sets input focus to the control. + + true if the input focus request was successful; otherwise, false. + + + + + Activates the control. + + + + + Raises the AcceptsTabChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the ModifiedChanged event. + + + + + Raises the MultilineChanged event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Raises the TextChanging event. + + + + + Gets or sets whether the edit control is auto-sized + + + + Gets or sets the displayed text. + + + + Gets or sets + the font of the text displayed by the control. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline RadTextBox + control creates a new line of text in the control or activates the default button for + the form. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text + box control types a TAB character in the control instead of moving the focus to the + next control in the tab order. + + + + Gets value indicating whether undo is allowed. + + + + Gets or sets a value indicating whether the RadTextBox control modifies the + case of characters as they are typed. + + + + + Gets or sets a value indicating whether the selected text remains highlighted + even when the RadTextBox has lost the focus. + + + + + Gets or sets + the lines of text in multiline configurations. + + + + + Gets or sets + the maximum number of characters allowed in the text box. + + + + + Gets or sets a value indicating whether the RadTextBox control has been modified + by the user since the control was created or since its contents were last set. + + + + + Gets or sets + a value indicating whether this is a multiline TextBox control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Gets or sets + a value indicating whether the contents of the TextBox control can be + changed. + + + + + Gets or sets + which scroll bars should appear in a multiline TextBox control. + + + + + Gets or sets a value indicating the currently selected text in the + control. + + + + + Gets or sets + the number of characters selected in the text box. + + + + + Gets or sets + the starting point of text selected in the text box. + + + + + Gets or sets + a value indicating whether the defined shortcuts are enabled. + + + + Gets or sets how text is aligned in a TextBox control. + + + Gets the length of the text in the control. + + + + Gets or sets a value indicating whether a multiline text box control + automatically wraps words to the beginning of the next line when necessary. + + + + + Occurs when + the value of the AcceptsTab property has changed. + + + + + Occurs when + the value of the HideSelection property changes. + + + + + Occurs when + the value of the Modified property has changed. + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the ReadOnly property changes. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Occurs + when text is being changed. + + + + + The TextBox control that is hosted by default by RadTextBoxItem. + Children of this calss can be passed to RadTextBoxItem in order to customize the hosted text box. + + + + + Overload to automatically create the Graphics region before drawing the text prompt + + The Graphics region is disposed after drawing the prompt. + + + + Draws the NullText in the client area of the TextBox using the default font and color. + + + + + Gets or sets a color of the null text + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + + Represents a RadTextBox. The RadTextBox control serves as a simple wrapper for + RadTextBoxElement class which in turn wraps + RadTextBoxItem Class. All logic and presentation + features are implemented in a parallel hierarchy of objects. For this reason, + RadTextBoxElement class may be nested in any + other telerik control, item, or element. RadTextBox acts to transfer events to and + from its corresponding instance of the + RadTextBoxElement class. + + + + + Represents RadTextBox's constructor + + + + + Initializes textbox's children + + + + + Gets the instance of RadTextBoxElement wrapped by this control. RadTextBoxElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTextBox. + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + Gets or sets a value indicating whether the text should appear as the default password character. + + + true if the text otherwise hould appear as the default password character; false. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Represents a layout panel used in the RadCheckBoxElement. + + + + Gets or sets the offset between the check and body elements. + + The body can contain image and / or text the same way as all buttons can - + see + + + + Gets or set a value indicating the check alignment. + + + + RadScrollLayoutPanel is the layout panel that arranges viewport, horizontal and vertical scrollbars + and a spot that appears when both scrollbars are shown. + + + For more information about scrolling see the help for + RadScrollViewer class and for + IRadScrollViewport interace. + + + + + The spot between the ScrollBars when both are shown + + + + + Set visible and enabled state of the ScrollBars. + + + + + Make viewportOffset to be with correct value. + Set Value of ScrollBars using viewportOffset + + + + + Occurs when horizontal or vertical scrolling is performed + + + + + Occurs when the need for horizontal or vertical scrollbar has changed. + + + + + Occurs when property that affects the scrolling functionality is changed. + + + + + Occurs when the Viewport is changed + + + + + Gets the horizontal scrollbar + + + + + Gets the vertical scrollbar + + + + + Gets the retcangle that is between the two scrollbars when they both are shown. + + + + + Gets a value indicating whether can be performed horizontal scrolling operation + + + + + Gets a value indicating whether can be performed vertical scrolling operation + + + + Gets or sets the scroll state of the horizontal scroll bar. + State of type . Default value is AutoHide. + + + Gets or sets the scroll state of the vertical scroll bar. + State of type . Default value is AutoHide. + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets or sets the element which content will be scrolled if the scroll viewer has + not enough space for it. Very often the viewport is a layout panel that implements + . + + + Object of type RadElement which represents the content that could be scrolled if + necessary. Default value is null. + + + + + Gets or sets a value indicating whether physical or logical scrolling will be + used. + + Boolean value: when it is false logical scrolling will be used. + + + This property cannot be set to false if does not + implement . + + + Default value is true for ordinary viewports and false for viewports that + implement . + + + + + + Gets or sets the number of pixels to use when performing Line + Up/Down/Left/Right scrolling operation. + Still the scrolling position can be set with one pixel accuracy if the scroll + bar thumb is dragged. + + + + Gets the minimum possible scrolling position. + + Point which contains minimum values for scrolling in horizontal and vertical + direction. + + + + Gets the maximum opssible scrolling position. + + Point which contains maximum values for scrolling in horizontal and vertical + direction. + + + + + Gets or sets the scrolling position. The value is between + and . + + + Point which contains the current scrolling position in horizontal and vertical + direction. + + + + + + The only implementation of and base class of + all scrollable elements. + + This class contains one element called Viewport. In addition to the ordinary + property Size, Viewport has parameter called "extent size" which represents the + real size of its content. Extent size could be bigger as well as smaller than the + size of the scroll viewer. + + There are two types of viewports: ordinary elements and elements that implement + . In the first case extent size is the + size of the viewport itself. The scrolling is done on pixel basis and via + painting offset of the viewport (it is called physical scrolling). In the + second case the functions that are declared in + are called for getting extent size and + performing the scroll operation (this is called logical scrolling). + + + If the viewport implementation is of type it + still can be physically scrolled by setting the property + to true. + + + Physical scrolling has one parameter that can be set - + which represents the small change value + for the scrolling (i.e. the number of pixels for Line Up/Down/Left/Right). The + large change (Page Up/Down/Left/Right) is the corresponding size of the + viewable size of the viewport. + + + For more information about custom viewports and logical scrolling - see + . + + + Current scroll position can be get or set via the property + . In addition scrolling can be performed by calling the + methods that are implemented from . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets a value indicating whether the border is shown. + + + Gets or sets a value indicating whether the fill is shown. + + + + + + + + + + + + + Represents a menu. RadMenu can be horizontal or vertical. You can add, + remove, and disable menu items at run-time. It offers full theming support, + allowing you to easily construct a variety of stunning visual effects. You + can nest any other RadControl within a RadMenu. For + example, you can create a menu with an embedded textbox or combobox. + RadMenu is a simple wrapper for the RadMenuElement class. + + + + + Initializes a new instance of the RadMenu class. RadMenu can be horizontal or + vertical. You can add, remove, and disable menu items at run-time. It offers full + theming support, allowing you to easily construct a variety of stunning visual effects. + You can nest any other RadControl within a RadMenu. For + example, you can create a menu with an embedded textbox or combobox. + + + + + + + + + + + + + + + + + + + + + + + Gets or sets boolean value that determines whether + RadMenu handles the MDI menu functionality. + + + + + Indicates whether the menu items should be stretched to fill the available space. + + + + + Gets or sets whether the Alt or F10 keys can be used to highlight the menu. + + + + + Gets the instance of RadMenuElement wrapped by this control. RadMenuElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadMenu. + + + + + + + + + + + + + + + + + + + + + + + RadMenu consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadMenu consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This enumerator describes the states can + jump into when processing mnemonics. + + + + + When the menu is in this state, that means that Mnemonics are visible. + + + + + When the menu is in this state, that means it listens for keyboard input and can process mnemonics. + + + + + When the menu is in this state, that means it can process keyboard input not associated with mnemonics. + This can be navigation input for instance. + + + + + When the menu is in this state, that means it will not process mnemonics. + + + + + other Telerik RadControls and Windows Represents a RadRibbonBar. The + RadRibbon bar visual appearance can be customized in numerous ways through themes. + Also you can nest other telerik controls in the ribbon bar chunks thus creating + intuitive interface for your applications. All of the application's functionality + is accessible from a single ribbon. The ribbon is divided into command tabs such as + Write, Insert, and Page Layout. When the users clicks on a command tab, they see + chunks such as Clipboard, Font, and Paragraph. Each chunk can hold an unlimited + number of controls including toolbars, comboboxes, and Forms controls. + + The RadRibbonBar class is a simple wrapper for the + RadRibbonBarElement class. All UI and + logic functionality is implemented in + RadRibbonBarElement class. RadRibbonBar + acts to transfer the events to and from its + RadRibbonBarElement class. + + + + + Initializes a new instance of the RadRibbonBar control class. + + + + + + + + + + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the small image list + + + + + Gets or sets the text of the control + + + + + Gets or sets a flag indicating whether the control causes validation + + + + + + + + + + + + + + Allows the user to navigate the control using the keyboard + + + + + Represent the Ribbon Help button + + + + + Represent the Ribbon Expand button + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets a value indicating the type of the fade animation. + + + + + + + + + + + Gets the QuickAccessToolBar element + + + + + + + + + + + + + + + + + + + + Gets the options menu button + + + + + Gets the exit menu button + + + + + + + + Gets the instance of RadRibbonBarElement wrapped by this control. RadRibbonBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRibbonBar. + + + + Gets or sets a value indicating whether the ribbon bar is expanded. + + + Gets or sets a value indicating whether the ribbon bar will be collapsed or expanded on ribbon tab double click. + + + + Gets or sets if the ribbon bar has minimize button in its caption + + + + + Gets or sets if the ribbon bar has maximize button in its caption + + + + + Gets or sets if the ribbon bar has close button in its caption + + + + + Gets the localization settings associated with this control + + + + + RadRibbonBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadRibbonBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Represents a ribbon bar button group. You can group buttons that are + logically related, for example, bold, italic, and underline buttons in + a text editor application. + + + + + Fires ItemChanged event. + + + + + Fires ItemClicked event. + + + + + + + + + + + Refreshes the items nested in the argument. + + + + + + + + + + + + + Gets the collection of items in the button group. + + + Gets or sets the orientation of the elements inside the button group: Horizontal or Vertical. + + + Gets or sets a value indicating whether the border is shown. + + + Gets or sets a value indicating whether the back color is shown. + + + + Gets the stack layout panel + that holds all elements. + + + + + Represents a Ribbon Bar group. The Group can contain telerik controls. You may + group related controls in groups; this gives the application intuitive interface. + + + + + Overrides object ToString() method. Returns the value of the Text property + prefixed with the "chunk:" string. + + + + Expands the chunk. + + + Collapses the chunk. + + + + Occurs when Dialog Button is clicked + + + + + Gets an instance of the class + that represents the group's outer border. + + + + + Gets an instance of the class + that represents the group's fill; + + + + + Gets an instance of the class + that represents the caption's fill; + + + + + Gets an instance of the class + that represents the body's fill; + + + + + Get or sets value indicating whether Dialog button is visible or hidden. + + + + Gets a collection of nested items. + + + Gets or sets the orientation of the items inside the chunk. Possible values are: Horizontal and + Vertical. + + + + Gets or sets the image that is displayed when the chunk is collapsed. + + + + + Get or Set collapsing order weight - biger mean to start collapsing from this RadRibbonbarGroup + + + + + + A collection that stores objects. + + + + + + + + Initializes a new instance of the + . + + + + + + Initializes a new instance of the . + + Collection owner. + + + Fires when the collection is changed. + + + + Represents a ribbon bar element. The RadRibbonBarElement can be nested in other + telerik controls. Essentially RadRibbonBar class is a simple wrapper for + RadRibbonBarElement class. RadRibbonBar acts to transfer events to and from the its + corresponding instance of the RadRibbonBarElement. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An instance that contains the event data. + + + + Calls the OnCommandTabCollapsed event. + For internal use only. + + The event args associated with this event + + + + Calls the OnCommandTabExpanded event. + For internal use only. + + The event args associated with this event + + + + Gets or sets a boolean value determining whether the groups are collapsed according to the ribbon's size. + + + + + Gets or sets the Minimize button + + + + + Gets or sets the Maximize button + + + + + Gets or sets the Close button + + + + Gets a collection of the command tabs. + + + + Gets or the localization settings for this element + + + + + Gets a collection of contextual tab groups. + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Get or sets value indicating whether RibbonBar Expand button is visible or hidden. + + + + + Gets the collection of quick access menu items. + + + + Gets or sets the height of the quick access. + + + Gets or sets if the quick access toolbar is below the ribbon. + + + + Gets or sets the image of the start button placed in the top left corner. + + + + + Gets the application menu element + + + + + Gets the options menu button + + + + + Gets the exit menu button + + + + + Gets the collection of the start button menu item. + + + + + Gets the collection of the start button menu items which appear on the right. + + + + + Gets the collection of the start button menu DropDown which is displayed when the button has two columns. + + + + + Gets or sets the width of the start menu + + + + + Gets an instance of the TabStripElement which is used to display the tab items in the RibbonBarElement. + + + + + Gets the instance of the currently selected command tab. + + + + + Gets or sets a boolean value indicating whether the + RadRibbonBarElement is expanded or not. + + + + + Gets the QuickAccessToolBar + + + + + Gets the instance + that represents the fill of the ribbon's caption. + + + + + Gets the instance + that represents the border of the ribbon's caption. + + + + + Occurs just before a command tab is selected. + + + + + Occurs when a command tab is selected. + + + + + Occurs when a command tab is expanded by double clicking a collapsed command tab item. + + + + + Occurs when a command tab is collapsed by double clicking an expanded command tab item. + + + + + Gets an instance of the RibbonBarPopup class which represents the + RadRibbonBar popup. + + + + + Implements + the basic functionality of a horizontal scroll bar control. + + + + Implements the basic functionality for the scrolling. + + + This class can be used both for horizontal and for vertical scrolling through its + property . Only the + specialized children are put in the Toolbox: + and . + + + To adjust the value range of the scroll bar control set the + and + properties. To adjust the + distance the scroll thumb moves, set the + and + properties. To adjust the starting point of the scroll thumb, set the + property when the control is + initially displayed. + + + + + + Decrements the thumb position by the number of small steps given as a parameter. + The distance of a small step is determined by the + SmallChange property. + + + + + Increments the thumb position by the number of small steps given as a parameter. + The distance of a small step is determined by the + SmallChange property. + + + + + Decrements the thumb position by the number of large steps given as a parameter. + The distance of a large step is determined by the + LargeChange property. + + + + + Increments the thumb position by the number of large steps given as a parameter. + The distance of a large step is determined by the + LargeChange property. + + + + + Scrolls to the first position specified by the Minimum + property. + + + + + Scrolls to the last position specified by the Maximum + property. + + + + + Scrolls to the specified position. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadScrollBarElement wrapped by this control. RadScrollBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of both + RadHScrollBar and RadVScrollBar. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RadScrollBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadScrollBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + + + + + + + Gets or sets the ScrollType. Possible values are defined in the ScrollType + enumeration: Vertical, and Horizontal. + + + + Implements the basic functionality for scrolling. + + + This class can be used both for horizontal and for vertical scrolling via its + property . In the Toolbox only the specialized + children are put: and + . + + + To adjust the value range of the scroll bar control, set the + and properties. To adjust + the distance the scroll thumb moves, set the and + properties. To adjust the starting point of the + scroll thumb, set the property when the control is + initially displayed. + + + + + + + + + + Retrieves the srolling parameters. + ScrollBarParameters Structure + + + Sets the given scroll parameters. + ScrollBarParameters Structure + + + + Simulate scrolling - just like the top / left button is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is decremented with (numSteps * SmallChange) + + + + Simulate scrolling - just like the bottom / right button is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is incremented with (numSteps * SmallChange) + + + + Simulate scrolling - just like the top / left area according the thumb is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is decremented with (numSteps * LargeChange) + + + + Simulate scrolling - just like the bottom / right area according the thumb is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is incremented with (numSteps * LargeChange) + + + + Simulate scrolling with positioning the thumb on its first position. + Unlike setting property Value this function fires scrolling events. + + + + + Simulate scrolling with positioning the thumb on its last position. + Unlike setting property Value this function fires scrolling events. + + + + Scrolls just like the thumb is dragged at given position + Position of the thumb (in screen coordinates). + + + + Occurs when the scroll thumb has been moved by either a mouse or keyboard + action. + + + + + Occurs when the property is changed, either by a + event or programmatically. + + + + + Occurs when a property that affects the scrolling is changed. + See for more information on which properties affect the scrolling. + + + + + Indicates whether invalid values should be clamped or an exception should be thrown + + + + + Gets the first button element of this scrollbar + + + + + Gets the second button element of this scrollbar + + + + + Gets or sets a value between 0.0 and 1.0 that indicates what part of the scrollable area + can be occupied by the thumb. If the value is 0.0 then the thumb should be with length 0 + but the property MinThumbLength will cause the thumb to be larger. + If the value is 1.0 the the thumb takes the whole area between the two scrolling buttons. + Negative value means that the thumb length should be calculated automatically based on + Minimum, Maximum and LargeChange values. + + + + + + Gets or sets the minimum length of the scrolling thumb. See + for more information about thumb length. + + + + An integer value that gives the minimum thumb length. It is taken into account no + matter if the thumb length is calculated automatically or the thumb length is set + explicitly. + The thumb length could be smaller than MinThumbLength if there is no space in the scroll bar. + + + + + Gets the length of the scrolling thumb. Thumb length is the thumb's height + for vertical scroll bar and the thumb's width for horizontal scroll bar. + + + + + Controls the angle that the fill primitive will be rotated when switching from horizontal to vertical orientation + + + + Gets or sets the upper limit of the scrollable range. + A numeric value. The default value is 100. + + NOTE: The value of a scroll bar cannot reach its maximum value through user + interaction at run time. The maximum value that can be reached is equal to the + Maximum property value minus the + property + value plus 1. The maximum value can only be reached programmatically. + + + + Gets or sets the lower limit for the values of the scrollable range. + A numeric value. The default value is 0. + + The value of a scroll bar cannot reach its maximum value through user + interaction at run time. The maximum value that can be reached is equal to the + Maximum property value minus the + property + value plus 1. The maximum value can only be reached programmatically. + + + + + Gets or sets a numeric value that represents the current position of the scroll thumb on + the scroll bar. + + + A numeric value that is within the and + range. The default value is 0. + + + + + Gets or sets the value to be added to or subtracted from the + property when the scroll thumb is moved a small distance. + + A numeric value. The default value is 1. + + When the user presses one of the arrow keys, clicks one of the scroll bar + buttons or calls one of the LineXXX() functions, the Value property changes + according to the value set in the SmallChange property. + + + + + Gets or sets a value to be added to or subtracted from the + property when the scroll + thumb is moved a large distance. + + A numeric value. The default value is 10. + + When the user presses the PAGE UP or PAGE DOWN key, clicks in the scroll bar + track on either side of the scroll thumb, or calls one of the PageXXX() functions, the + Value property changes according to the value set in the LargeChange + property. + + + + + Gets or sets the scroll type - it could be horizontal + or vertical. + + + + + Gets the thumb element of this scrollbar + + + + + Gets or sets the scroll timer delay + + + + Represents a vertical scroll bar. + + + + Gets or sets the ScrollType. Possible values are + defined in the ScrollType enumeration: Horizontal and Vertical. + + + + + Represents a scrollbar button. There are two buttons in the implementation of the + RadScrollBar: FirstButton and SecondButton. + + + + Initializes a new instance of the ScrollBarButton class. + + + + Initializes a new instance of the ScrollBarButton class using + scrollButtonDirection. + + + + + Gets or sets a value indicating the button + direction defined in the ScrollButtonDirection enumeration: up, right, + buttom, and left. + + + + + Gets an instance of contained in the button. + + + + + Gets an instance of contained in the button. + + + + + Gets an instance of contained in the button. + + + + Represents a scrollbar thumb in the scroll bar. + + + + Gets a value indicating whether the thumb is in pressed state. + + + + + Gets or sets the image associated with the thumb + + + + + Gets an instance of contained in the thumb. + + + + + Gets the contained in the thumb. + + + + + RadWebBrowserElement extends RadWebBrowserItem adding border and background fill. + + + + + + + + + + + + + + + + + + + + + Gets the of the + + + + + + Gets the of the + + + + + + Gets or Sets value indicating whether the is visible + + + + + + RadWebBrowserItem hosts WebBrowser control to allow using it in the TPF structure. + + + + + Gets or Sets the Url that is to be browsed. + + + + + + Gets or Sets the HTML document content. + + + + + + Gets the HTML document title content. + + + + + + Fires when document loading has completed. + + + + + + Fires when file has been downloaded + + + + + + Fires when the browser has navigated to a new document and has begun loading it. + + + + + + + Fires before the browser navigates to a new document + + + + + + + Fires before new browser window is opened + + + + + + Fires before System.Windows.Forms.Control.KeyDown event when a key is pressed while focus is on this control. + + + + + Fires when the RadWebBrowserItem has updated information on the download progress of a document it is navigating to. + + + + + + Fires when the System Colors change + + + + + Gets or sets the zoom popup shadow + + + + + Gets or sets the animation frames count + + + + + Gets or sets the animation interval (in miliseconds) + + + + + Provides data for the ToolTipTextNeeded event used in ItemScroller + + + + + Initializes a new instance of the GridElementToolTipTextNeededEventArgs class. + + The tool tip. + The row index of the first visible item. + The first visible item. + The default tooltip text. + + + + Gets the item index of the first visible item. + + + + + Gets the item associated with this ToolTip. + + + + + Represent a interface that is traversable + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Specifies the mode in which an ItemScroller will scroll the items in its view. + + + + + Items are scrolled one at a time. The scrollbar maximum is equal to the number of the items in the view. + The scrollbar SmallChange is equal to 1 and each small increment or decrement will move the items in the view with one whole item. + + + + + Items are scrolled smoothly. The scrollbar maximum is equal to the sum of the heights of all the items in the view. + The scrollbar SmallChange is calculated automatically. Increments and decrements will move the items in the view with the actual value of the scrollbar. + + + + + Works in a similar way as Smooth with the difference that the view is updated only when the scrollbar thumb is released. A tooltip helps indicated the + position to which the view will be scrolled to. + + + + + Represent a navigating event handler raised by ItemScroller + + + The sender. + The e. + + + + Event arguments of ItemsNavigatingEventHandler + + Item + + + + Initializes a new instance of the class. + + The navigating item. + + + + Gets the item. + + + The item. + + + + + Gets or sets a value indicating whether the item should be skipped. + + + true if skip the item; otherwise, false. + + + + + Represent a generic scroll view element + + + + + Container element of + + + + + Gets or sets the element count. + + The element count. + + + + Gets or sets the color of the elements. + + The color. + + + + Gets or sets the secondary color of the elements. + + The secondary color. + + + + Gets or sets the inner radius. + + The inner radius. + + + + Gets or sets the radius. + + The radius. + + + + Gets or sets the initial start element angle. + + The initial start element angle. + + + + Gets or sets the rotation direction. + + The rotation direction. + + + + Gets or sets the element gradient percentage. + + The element gradient percentage. + + + + Gets or sets the element gradient percentage. + + The element gradient percentage. + + + + Gets or sets the element back color3. + + The element back color3. + + + + Gets or sets the element back color3. + + The element back color3. + + + + Gets or sets the element number of colors. + + The element number of colors. + + + + Gets or sets the current leading element angle. + + The current leading element angle. + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the last dot radius. + + The last dot radius. + + + + Gets or sets the line thickness. + + The line thickness. + + + + Checks if an angle is in given range(by given start and end angles) depending on the RotationDirection. + + The angle to check. + Start of range. + End of range. + + + + + Gets or sets a value indicating whether to expand and collapse the ring. + + Boolean. + + + + Gets or sets the sweep angle. + + The sweep angle. + + + + Gets or sets the minimal sweep angle. + + The minimal sweep angle. + + + + Gets or sets the outer ring sweep angle. + + The outer ring sweep angle. + + + + Gets or sets the width of the outer ring. + + The width of the outer ring. + + + + Gets or sets the background color of the outer ring. + + The outer ring background color. + + + + Gets or sets the inner ring sweep angle. + + The inner ring sweep angle. + + + + Gets or sets the inner ring start angle measured in degrees. + + The inner ring start angle. + + + + Gets or sets the width of the inner ring. + + The width of the inner ring. + + + + Gets or sets the background color of the inner ring. + + The inner ring background color. + + + + Gets or sets the distance between segments. + + + + + Represents accelerating dots moving in a line. + + + + + Gets a value indicating whether the WaitingDirection is vertical(Top or Bottom). + + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the acceleration speed. + + The acceleration speed. + + + + Gets or sets the distance between dots. + + The distance between dots. + + + + Gets or sets a value, indicating the distance(in percent) which each ball moves with slow speed. + + The slow speed range. + + + + Gets or sets the waiting direction. + + The waiting direction. + + + + Gets or sets the empty frames count between animation cycles. + + The delay between animation cycles. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the acceleration speed. + + The acceleration speed. + + + + Gets or sets the max speed sweep angle. + + The max speed sweep angle. + + + + Gets or sets the sweep angle dot travels before the end of animation cycle. + + The dot sweep angle life cycle. + + + + Gets or sets the distance between dots. + + The distance between dots. + + + + Gets or sets the empty frames count between animation cycles. + + The delay between animation cycles. + + + + Represents the content element of . + + + + + The waiting style property of + + + + + Clears all indicators and creates new, depending on the WaitingStyle value. + + + + + Gets the reversed direction. + + The direction. + + + + + Increments the offset of the indicator + + The value. + + + + Determines whether this instance is vertical. + + + true if this instance is vertical; otherwise, false. + + + + + Resets the waiting state of the indicator. + + + + + Updates the indicator stretch orientation. + + The indicator. + + + + Updates the vertical state property of the indicator. + + The indicator. + + + + Adds the indicator step. + + The step. + The index of the indicator. + + + + + Arranges the indeterminate indicator elements. + + The client rectangle. + + + + Calculates the indicator step. + + The client rectangle. + + + + + Gets the final size of the throbber indicator element. + + The element. + The client rectangle. + + + + + Gets the final size of the dash element. + + The element. + The client rectangle. + + + + + Moves the indicator element. + + The element. + The client rectangle. + The waiting direction. + + + + + Sets the elements visibility. + + The style. + + + + Sets the indicators visibility. + + The visibility. + + + + Sets the dash initial position. + + The element. + The client rectangle. + + + + + Updates the offset. + + The client rectangle. + + + + Obsolete. Use WaitingIndicators instead. + + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets an instance of the class + that represents the waiting bar text element + + + + + Gets an instance of the class + that represents the waiting bar separator element + + + + + Gets and sets the direction of waiting. + Range: Bottom, Left, Right, Top + + + + + Indicates whether the element is currently waiting + + + + + Gets or sets the style of the WaitingBarElement. + + + + + Returns true if WaitingStyle is Indeterminate, Throbber or Dash. + + + + + The RadWaitingBar class is a simple wrapper for the + RadWaitingBarElement class. + The latter implements all UI and logic functionality. + The RadWaitingBar class acts to transfer events to and from the + RadWaitingBarElement class. + RadWaitingBarElement can be + nested in other telerik controls. + + + + + Creates the waiting bar element. + + + + + + exclude WaitingBarElement from Serilization + + should serialize + + + + Starts the waiting animation. + + + + + Stops the waiting animation. + + + + + Resets the waiting indicator to initial position. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Obsolete. Use WaitingIndicators instead. + + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets the instance of RadWaitingBarElement wrapped by this control. RadWaitingBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadWaitingBar. + + + + + Sets the DefaultSize of RadWaitingBar + + + + + Gets and sets the image property of the indicator + + + + + Gets and sets the image index property of the indicator + + + + + Gets and sets the image key property of the indicator + + + + + Indicates whether the control is currently waiting + + + + + Indicates the orientation of the RadWaitingBar + + + + + Indicates whether the indicators are stretched horizontally + + + + + Indicates whether the indicators are stretched vertically + + + + + Sets the style of RadWaitingBar + + + + + Gets and sets the text of the control's textElement + + + + + Gets and sets the WaitingDirection of the RadWaitingBarElement + + + + + Gets and sets the size of the indicator in pixels + + + + + Gets and sets the speed of the animation. Higher value moves the indicator more quickly across the bar + + + + + Gets and sets the number of pixels the indicator moves each step + + + + + Shows text in RadWaitingBar. + + + + + Gets/Sets the control to associated it. RadWaitingBar will be shown in the middle of the associated control when started. + + + + + Gets the associated panel. + + + + + Starts control waiting + + + + + Ends control waiting + + + + + Represents a waiting bar element. It may be included in other telerik controls. + All graphical and logical functionality is implemented in RadWaitingBarElement. + + + + + The timer + + + + + The continue waiting + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Starts the waiting process + + + + + Stops the waiting process + + + + + Sets the indicator to its starting position depending on the WaitingDirection + + + + + Gets an instance of the class + that represents the waiting bar content element + + + + + Obsolete. Use WaitingIndicators instead. + + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets an instance of the class + that represents the waiting bar text element + + + + + Gets an instance of the class + that represents the waiting bar separator element + + + + + Gets and sets the Image of the element's indicator + + + + + Gets and sets the ImageIndex of the element's indicator + + + + + Gets and sets the ImageKey of the element's indicator + + + + + Shows text in RadWaitingBarElement. + + + + + Indicates whether the indicators are stretched horizontally + + + + + Indicates whether the indicators are stretched vertically + + + + + Sets the style of the WaitingBarElement + + + + + Gets and sets the size of the indicator in pixels + + + + + Indicates whether the element is currently waiting + + + + + When set to vertical the RadWaitingBar WaitingDirection property is set to Bottom + When set to horizontal the RadWaitingBar WaitingDirection is property is set to Right + + + + + Gets and sets the direction of waiting, e.g. + the Right value moves the indicator from left to right + Range: Bottom, Left, Right, Top + + + + + Gets and sets the speed of the indicator + Greater value results in faster indicator + Range: [0, 100] + + + + + Gets and sets the step in pixels which moves the indicator + + + + + Occurs when waiting is started. + + + + + Occurs when waiting is stopped. + + + + + The state manager class of + + + + + Represents a collection of items. + + + + + Initializes a new instance of the class. + + + + + Represents waiting bar indicator element + + + + + Initializes the class. + + + + + Gets the separator element. + + + The separator element. + + + + + Gets a offset of the indicator. + + + + + The state manager class of . + + + + + The state manager class of + + + + + Represents 's text element + + + + + Represents separator element in . + + + + + Initializes the class. + + + + + Sets and gets the width of each separator line in pixels + + + + + Sets and gets the distance between two adjacent separator lines + + + + + Sets and gets the orientation of the separator element + + + + + Sets and gets the angle of rotation of all separator lines + + + + + Indicates whether separator lines should be drawn + + + + + Indicates whether a second set of separator lines should be drawn + + + + + Represents a collection of items. + + + + + Initializes a new instance of the class. + + +
+
diff --git a/SDRSharper/bin/x64/Debug/Telerik.WinControls.dll b/SDRSharper/bin/x64/Debug/Telerik.WinControls.dll new file mode 100644 index 0000000..363ae5d Binary files /dev/null and b/SDRSharper/bin/x64/Debug/Telerik.WinControls.dll differ diff --git a/SDRSharper/bin/x64/Debug/Telerik.WinControls.xml b/SDRSharper/bin/x64/Debug/Telerik.WinControls.xml new file mode 100644 index 0000000..06b79ca --- /dev/null +++ b/SDRSharper/bin/x64/Debug/Telerik.WinControls.xml @@ -0,0 +1,22298 @@ + + + + Telerik.WinControls + + + + + This interface represents a monitor which receives trace events from RadControls. You can implement it if you need to + receive trace events from the controls used in your application. + + + + + This method is called when an atomic feature is executed. + + The feature to be tracked. + + + + This method is called when a feature is initiated. + + The feature that was initiated. + + + + This method is called when a feature finishes execution. + + The feature that finished. + + + + This method is called when a feature is canceled. + + The feature that was canceled. + + + + Traces an error in a specified feature. + + The feature in which the error occurred. + The error that occurred. + + + + This method is called when a value connected with a specific feature is tracked. + + The feature that produced the value. + The value that was tracked by the feature. + + + + Gets or sets the monitor, which the controls report to. + + + + + Notifies listeners of dynamic changes, such as when items get added and removed or the whole list is refreshed. + + + You can enumerate over any collection that implements the IEnumerable interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the INotifyCollectionChanged interface. This interface exposes the CollectionChanged event that must be raised whenever the underlying collection changes. + + + + + Occurs when the collection changes. + + + + + Moves the specified old index. + + The old index. + The new index. + + + + Adds the range. + + The items. + + + + Adds the range. + + The items. + + + + Begins the update. + + + + + Ends the update. + + + + + Defers the refresh. + + + + + + Defines possible reasons for a CurrentChanged notification from RadCollectionView. + + + + + The default reason for causing the event. + + + + + The event was caused by an Add operation. + + + + + The event was caused by a Move operation. + + + + + The event was caused by an EndUpdate operation. + + + + + The event was caused by a Sync operation. + + + + + String + + + + + Number + + + + + DateTime + + + + + Boolean + + + + + Null + + + + + Other + + + + + Used when exporting null value. + + + + + General format + + + + + Displays anything as text (i.e. Left aligned without formatting) + + + + + Displays numeric values with two fixed decimals + + + + + Displays numeric values with two fixed decimals and digit grouping + + + + + Displays numeric values as percentage values + + + + + Displays numeric values in scientific notation + + + + + Displays numeric or date values as formatted date values + + + + + Displays numeric or date values as short date format + + + + + Displays numeric or date values as medium date format + + + + + Displays numeric or date values as long date format + + + + + Displays numeric date as currency + + + + + Displays numeric or date values in a long time format + + + + + Displays numeric or date values in a medium time format + + + + + Displays numeric or date values in a short time format + + + + + Custom defined format + + + + + The cell content type + + + + + Cell does not contain anything + + + + + Cell contains a string + + + + + Cell contains a number + + + + + Cell contains a DateTime value + + + + + Cell contains a bool value + + + + + Cell contains a formula + + + Cell contains a formula which cannot be resolved + + + + + Gets or sets the type of the grid row. + + The type of the row. + + + + Gets or sets the index of the grid row. + + The index of the row. + + + + Gets or sets the type of the grid column. + + The type of the column. + + + + Gets or sets the index of the grid column. + + The index of the column. + + + + Gets or sets the cell style info. + + The cell style info. + + + + This creates a linear gradient depending on number of colors needed + + + + + this.editor.Position = savePosition; + + Horizontal offset that will be set as new Matrix position + Vertical offset that will be set as new Matrix position + + + + Enum listing the export formats supported by RadSpreadProessing. + + + + + XLSX format + + + + + PDF format + + + + + CSV format + + + + + Txt format + + + + + Enum listing the export formats supported by RadSpreadStreamProessing. + + + + + XLSX format + + + + + CSV format + + + + + Enum listing the different options when exporting to a file + + + + + Export as new sheet in existing file + + + + + Export in new file or override existing file + + + + + Load expression items list from embedded in Telerik assembly xml source + + + + + Load expression items list + + Xml file path + + + + Load expression items list + + + + + + Sets the first page as the current page. + + true if the operation was successful; otherwise, false. + + + + Sets the last page as the current page. + + true if the operation was successful; otherwise, false. + + + + Moves to the page after the current page. + + true if the operation was successful; otherwise, false. + + + + Requests a page move to the page at the specified index. + + true if the operation was successful; otherwise, false. + The index of the page to move to. + + + + Moves to the page before the current page. + + true if the operation was successful; otherwise, false. + + + + Gets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Occurs when the IPagedCollectionView.PageIndex has changed. + + + + + Occurs before the IPagedCollectionView.PageIndex is changed. + + + + + Gets a value that indicates whether the IPagedCollectionView.PageIndex value is allowed to change. + + true if the IPagedCollectionView.PageIndex value is allowed to change; otherwise, false. + + + + Gets a value that indicates whether a page index change is in process. + + true if the page index is changing; otherwise, false. + + + + Gets the zero-based index of the current page. + + The zero-based index of the current page. + + + + Gets or sets the number of items to display on a page. + + The number of items to display on a page. + + + + Gets the total number of items in the source collection. + + The total number of items in the source collection, or -1 if the total number is unknown. + + + + Gets or sets the tag. + + The tag. + + + + Determines whether [contains] [the specified value]. + + The value. + + true if [contains] [the specified value]; otherwise, false. + + + + + Copies to. + + The array. + The index. + + + + Indexes the of. + + The value. + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Use the StyleBuilderReadOnly attribute to mark properties that should appear as readonly when edited in the Visual + Style Builder application + + + + + This attribute should be used on classes which will be present in the Visual Studio toolbox (i.e. the ones that should also have a attribute). + + + + + Creates a new instance of the ToolboxCategory attribute with the specified title. + + The title of the category where the control will be placed + + + + Theme manager Component is used to load user-defined themes for RadControls in an application. + Use the LoadedThemes property to add new team source files. Themes load immediately when correct + property values specified and last for the life time of the application. After a theme is loaded + it can be used by the corresponding types of controls placed on any Form of the application. + + + + + ThemeSource is used to load user-defined themes for RadControls in an application. + Themes load immediately when correct property values specified and last for the life + time of the application. After a theme is loaded it can be used by the corresponding + types of controls placed on any Form of the application. ThemeSource object are generally + used by ThemeManager component placed on a Form + + + + + Base for all TPF classes. Implements WPF-like property system with different value sources. + Provides public interface for getting, setting value or re-setting property value. + + + + + Represents a basic object which implements IDisposable interface. + + + + + Gets the current bit state for the object, defined by the provided key. + + + + + + + Applies the specified boolean value to the BitVector of the object. + + + + + + + Notifies the object for a change in its bit state. + + + + + + + + Releases all resources associated with this object. + + + + + Performs the actual Dispose logic. + + + + + + Performs the core resources release logic. + + + + + + Disposes all MANAGED resources - such as Bitmaps, GDI+ objects, etc. + + + + + Releases any UNMANAGED resources used by this object. + NOTE: If you declare some unmanaged resources in your class, + you should override its finalizer and put disposing logic there also. + + + + + Gets the RadBitVector64 structure that holds all the bit states of the object. + + + + + Provides a simple list of delegates. + + + + + Determines whether the object is in a process of being disposed of. + + + + + Determines whether the object is already disposed. + + + + + Replaces the default property descriptors of properties of the object in order to perform Rad-Object specific + tasks like checking ShouldSerialize and RadProperty-DefaultValue... + + + + + + + + + + + + Removes all references to external property modifiers such as + property bindings, style settings and animations. + + + + + Allows PropertyChanging and PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Gets the RadPropertyValue structure that holds information + about the specified property's effective value for this instance. + May be null if no effective value is recorded. + + + + + + + Applies the provided value as an override + of the Default value provided by the specified property's metadata. + + + + + + + + Marks the current PropertyValue entry for the specified property as "Set at design-time". + This is used by our custom code-dom serializer to determine which properties needs to be persisted. + + + + + + Applies the specified value as Local for the desired property + and raises the flag IsLocalValueSetAtDesignTime for that property. + All design-time direct property modifications (e.g. item.Text = "Item1") + should be done through this method for the property to be properly serialized. + If a property is modified through a property grid, the custom property descriptor will automatically apply this logic. + This method is used internally. + + + + + + + Retrieves the current value for the specified property. + + + + + + + Applies the provided value as Local for the specified property. + + + + The result of the operation. + + + + Resets the current value of the specified property. + This method will remove any effective value modifier + (such as style or animation setting) for the specified property. + + The RadProperty that should be reset. + The result of the operation. + + + + Resets the current value of the specified property using the provided flags. + + The RadProperty that should be reset. + Additional flags that specify which effective modifiers should be reset. + The result of the operation. + + + + Forces re-evaluation of the current value for the specified property. + + + The result of the operation. + + + + Gets the source of the current value for the specified property. + + + + + + + Gets the registered property with the specified name. + + + + + + + Performs the core value update logic. + + + The result of the operation. + + + + Performs the core logic of updating property value. + + The property value structure, holding property information. + Additional modifier, like IPropertySetting + The actual new value to be set, valid for Local and DefaultValue sources. + Specifies the source of the provided new value. + The result of the operation. + + + + Resets the specified property value, using the provided reset flags. + + + + The result of the operation. + + + + Allows inheritors to provide custom default value. + + + + + + + + Allows inheritors to force a coersion of the current calculated value for the given property. + + The property value. + The current caluclated value of the property. + Null if no coersion is needed. + + + + Determines whether the property defined by the provided property descriptor should be serialized. + + + + + + + Checks needed conditions to perform property update. + + + + + + + Performs the following logic: + 1. Compares oldValue and newValue and returns ValueUpdateResult.NotChanged if they are equal. + 2. Raises the PropertyChanging notification. If the event is canceled returns ValueUpdateResult.Canceled. + 3. Raises PropertyChanged notification and returns ValueUpdateResult.Updated. + + + + + + The result of the operation. + + + + Determines whether the object can raise PropertyChanging and PropertyChanged notifications. + Current implementation checks whether the object is disposing or is already disposed of. + + + + + + + Gets the animation (if any) attached to the current property. + + + + + + + Gets notified for a change in an animated property. + + The property which is currently animated. + + + + Binds the specified property to a property of the provided binding source object. + + Our property that is about to be bound. + The object to which source property belongs. + The property to which we will bind. + Additional options, specifying the binding operation. + + + + Removes the binding for the specified property. + + + The result of the operation. + + + + Gets notified that the specified object has bound to a property of ours. + + The instance that has bound the specified property. + + + + + Gets notified that the specified object has unbound itself from a property of ours. + + + + + + + Notifies a binding source that a change occured in a two-way bound property. + + + + + + + Gets notified for a change in an already bound external property. + + + + + + Detaches binding reference from the binding source. + + + + + + Registers a style setting for this instance. + + + + + + Called when element style condition changes. This method is used internally. + + + + + + Called when element style condition changes. This method is used internally. + + + + + + Searches up in the chain of InheritanceParents for a value for the specified property. + + The property to examine. + + + + + Raises the event. + + + + + + Raises the event. + + + + + + Raises the PropertyChanged event. + + The name of the property. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Determines whether the specified property may be canceled. + + The metadata associated with the property change. + + + + Occurs when a property of an object changes. + Note: if a property which is not a RadProperty changes, + the developer is responsible for firing this event by using the + API. + + + + + Occurs when a property of a RadObject changes. + + + + + Occurs prior to property of a RadObject changes. + + + + + Gets a collection containing property values. + + + + + Gets the RadObject which is treated as the parent from which inheritable properties are composed. + + + + + Determines whether the element is in design mode. + + + Gets or sets a value indicating whether design mode is active. + + + + + Gets or sets a Filter instance, used to filter the ICustomPropertyDescriptor.GetProperties collection. + + + + + Gets the RadObjectType which is associated with this system type. + + + + + Gets or sets the BindingContext for the object. + + + + + Loads the theme from the file resource specified and registers it into ThemeResolutionService. Thais method is called + immediately when correct ThemeLocation and StorageType are specified. + + + + + Indicates whether the specified theme was loaded successfully. + + + + + Gets value indicating the error message if Theme was not loaded successfully. + + + + + Gets or sets the full resource name if StorageType is Resource. Example: "MyNamespace.MyThemeFileName.xml". + If the StorageType specified is File, then the value of this property should represent the full or relative file path, + accessible by the application. The "~" sign can be used to substitute the application executable path. + Eg. "C:\MyApp\MyThemeFileName.xml" or "..\..\MyThemeFileName.xml" or "~\MyThemeFileName.xml" + + + + + Gets or sets the owner theme manager component. Generally used by Form's designer. + + + + + Gets or sets File or Resource type of storage for the theme file + + + + + Gets a value indicating whether property values are valid + + + + + Represents + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of the. + + + + Owner component + + + + + + Initializes a new instance of the based on another . + + + + A from which the contents are copied + + + Owner component + + + + + + Initializes a new instance of the containing any array of objects. + + + + A array of objects with which to intialize the collection + + + Owner component + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Defines the theme storage type. + + + + + Indicates that the theme is contained in a external file. + + + + + Indicates that the theme is contained as a resource. + + + + + Represent the ColorChangedEventArgs class + + + + + Represents event arguments for the + %ColorChanged:Telerik.WinControls.CaptureBox.ColorChanged% event. + + + Represents the changed color. + + + + + Represents event arguments for the + event. + + + Represents the changed color. + + + + + Modes the RadColorPicker can be in + + + + + This class is used to hold the event arguments + for the CustomColorsConfigLocationNeeded event of the CustomColors control. + + + + + Creates an instance of the CustomColorsEventArgs class. + + The location of the config file. + The name of the config file. + + + + Gets or sets the file name of the configuration file. + + + + + Gets or sets the path where the configuration file will be stored. + + + + + Represents color in HSL color space. + + + Used for color blending operations, defined in HSL color space which are more precise than in RGB. + HSL colors are used by theming and painting sub-systems of RadControls. + + + + + H Channel value + + + + + S Channel value + + + + + L Channel value + + + + + RGB color value + + + + + Gets or sets color'a alpha chanel level in terms of argb color. Used mainly for conversion from/to ARGB color values. + + + + + Wraps the functionality provided by the color picker + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Shows or hides the basic colors tab + + + + + Gets or sets the active mode of the color tabs + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides the professional colors tab + + + + + Shows or hides the custom colors panel + + + + + Shows or hides the hex color textbox + + + + + Allows or disallows editing the hex value + + + + + Allows or disallows picking colors from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the OK Button is clicked + + + + + Fires when the Cancel Button is clicked + + + + + Gets the color selector + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Gets or sets the active mode of the color tabstrip + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides whe professional colors tab + + + + + Shows or hides the custom colors tab + + + + + Shows or hides the hex color value + + + + + Allows or disallows editing the HEX value + + + + + Allows or disallows color picking from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the selected color has changed + + + + + Represents a dialog that can be used to select color with rich UI and extended functionality. + + + + + Resets the properties of a color dialog box to their default values. Replaces the underlaying ColorDialogForm + with new instance + + 1 + + + + Shows modal dialog box. + + + + true if the dialog box was successfully run; otherwise, false. + + + A value that represents the window handle of the owner window for the common dialog box. + + + + Gets the instance of RadColorDialogForm, which incorporates various settings of the + underlaying color selection Form and ColorSelector user control. + + + + + Gets or sets the icon displayed for this dialog. + + + + Gets or sets a value indicating whether control's elements are aligned + to support locales using right-to-left fonts. + One of the values. + The default is . + The assigned + value is not one of the values. + + + + + Gets or sets the selected color. References to SelectedColor of . + + + + + Gets or sets the selected color. References to SelectedColor of . + + + + + Gets the user-defined colors. References to CustomColors of . + + + + + Represents the method that will handle the ColorChanged event. + + + + + + + + + + + + + + + + + + + Fires when the selected color changes + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + + + + Represents a RadControl. RadControl is an abstract class and is base class for + all Telerik controls. + + + + + Returns the value for some ambient properties like BackColor, ForelColor, Font, etc. + + + + + + + Updates after a change in an ambient property like BackColor, ForeColor, Font, etc. + + + + + + Creates the input behavior instance. Allows inheritors to provide custom input implementations. + + + + + + Loads the element tree. While not loaded, no layout operations are allowed upon the tree. + By default, the tree will be loaded when the control is displayed for the first time. + + + + + Loads the element tree using the specified desired size. + + + + + + This method is used internally! + + + + + + Determines whether the BackColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Notifies that the control is about to be visualized. + + + + + + Processes a focus request from the specified element. + + The element that requested the focus. + True if focus is approved, false otherwise. + + + + Processes a capture request from the specified element. + + The element which requested the capture. + + True if the capture request is approved, otherwise false. + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + Suspends layout during initialization. + + + Resumes layout. + + + + Raises the PropertyChanged event + + The name of the property + + + + Fires the ZoomGesture event. + + The arguments for the ZoomGesture event. + + + + Fires the RotateGesture event. + + The arguments for the RotateGesture event. + + + + Fires the PanGesture event. + + The arguments for the PanGesture event. + + + + Fires the TwoFingerTapGesture event. + + The arguments for the TwoFingerTapGesture event. + + + + Fires the PressAndTapGesture event. + + The arguments for the PressAndTapGesture event. + + + + Enable firing gesture events of the specified type. + + The type of gesture events to enable. + + + + Disable firing gesture events of the specified type. + + The type of gesture events to disable. + + + + Checks whether the 's theme is defined by the control. + + + If true is returned the ThemeResolutionService would not not set any theme to the element + to avoid duplicating the style settings of the element. + + The element to should be checked. + true if the control defines theme for this element, false otherwise. + + + + Replaces the default style group for specific element. + + The style group to replace. + The element on which this style should apply. + An instance of is successfull. + + + + Strips all html tags of the text set to the control and returns only the plain text. + + Plain text stripped of any html tags. + + + + Determines whether an element from this element tree may be displayed in the EditUIElements dialog. + + + + + + + Method used by control Code Dom serializer to access element in the collection of RootElement. + + + + + + + Determines whether the specified RadProperty should be serialized. + + + + + + + Determines whether an element may be edited via the EditUIElements dialog at design-time. + + + + + + + This method is used internally! + + The default size for this control + + + + This method is used internally! + + + + + + + Determines whether the control is properly loaded. + + + + + Set or get the default value for UseCompatibleTextRendering property. + + + + Gets the input behavior for the control. + + + Gets the RootElement of the control. + + + Gets or sets padding within the control. + A representing the control's + internal spacing characteristics. + + + + Gets or sets control's preferred theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets value indicating whether the control is styled through theme + + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usage of the control. + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Gets or sets the image scaling size. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets or sets the size that is the upper limit that GetPreferredSize can + specify. + + + + + Gets or sets the size that is the lower limit that GetPreferredSize can + specify + + + + + Gets or sets a value indicating whether the control causes validation to be performed on any controls that require validation when it receives focus. + + + + + Gets or sets the SmallImageList that contains the small images which are displayed when there's not enough space. + + + + Gets or sets the small image scaling size. + + + + Determines whether the control is currently displayed on the screen. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + Gets or sets the Font of the control. This is actually the Font property of the root element. + + + + + Occurs when a RadItem instance inside the RadControl requires ToolTip text. + + + + + Occurs prior the ScreenTip of a RadItem instance inside the RadControl is displayed. + + + + Fires when the theme name is changed. + + + Fires when the control is initialized. + + + + Occurs when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Occurs when a zoom gesture was sent by a touch input device. + + + + + Occurs when a rotate gesture was sent by a touch input device. + + + + + Occurs when a pan gesture was sent by a touch input device. + + + + + Occurs when a two-finger-tap gesture was sent by a touch input device. + + + + + Occurs when a press-and-tap gesture was sent by a touch input device. + + + + + Gets or sets a value indicating whether the Gestures functionality is enabled. + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disabled for this control. + + + + + Gets or sets the Analytics Name associated with this control. + By default the Control Name property is logged. + If you want to customize the information which will be logged for this control + set this property to a preferred value. + + + + + Gets or sets a value indicating whether the RadControls Accessible custom object is enabled. + + + + + Gets or sets a value indicating whether the CodedUI Tests functionality is requested from external program such a Narrator. + + + + + Gets or sets a value indicating whether the CodedUI Tests functionality is enabled. + + + + + Gets or sets the default value for EnableCodedUITests property. + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets a value indicating whether the gradient editor is in loading state. This property is used internally. + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the values + + + + + Fires when the color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the different positions where an item can be docked + + + + + Defines element selector types. + + + + + Selects an element based on its type. + + + + + Selects an element based on its class property. + + + + + Selects an element based on its visual state property. + + + + + Defines the different sign styles + + + + + plus/minus sign + + + + + up/down arrow + + + + + image + + + + + Triangle + + + + + TextWrapExpand Modes + + + + + Indicates Indeterminate style + + + + + Indicates Throbber style + + + + + Indicates Dash style + + + + + Shows a line of moving dots. + + + + + Shows a ring of moving dots. + + + + + Shows a ring, composed of lines. + + + + + Shows a ring, composed of segments. + + + + + Shows a ring, composed of dots. + + + + + Shows a rotating fading ring. + + + + + Shows two rotating rings in opposite directions. + + + + + [true] if the event has been handled and should not be proccessed further, [false] otherwise. + + + + + The type of the gesture that has occured. + + + + + [true] if this is the beggining of the gesture, [false] otherwise. + + + + + [true] if this is the end of the gesture, [false] otherwise. + + + + + [true] if the event was caused by inertia, [false] otherwise. + + + + + The location of the gesture. + + + + + Initializes a new instance of the class. + + The index of the requested page. + + + + Gets the index of the requested page. + + The index of the requested page. + + + + The possition offset according to the previous pan event. + + + + + A direction vector that indicates the direction of the velocity. + + + + + The offset of the tapping finger according to the pressing finger. + + + + + The rotation angle in radians. + + + + + The zoom factor according to the previous zoom gesture event. + + + + + The center of the zoom gesture. + + + + + Exposes methods and properties for a concrete property setttings used in StyleSheets and Themes. + PropertySetting can customize the current value of any RadPropertry of any RadElement instance. + + + + + Retrieves the current value of the property. + + + + + + + + + + + Applies the value to the element given as a parameter. + + + the element that the property value is applied to. + + + + + Unapply the property to the element given as a parameter. + + + the element that the property value is unapplied to. + + + + + Gets or sets the property itself. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + + + + + + Represents the item which could be added to an ItemsCollection and can be selected, deleted or moved during VS design time. + + + + + + + + Extends RadElement and adds visual properties common to all elements. + + + + + RadElement class represents the smallest unit in a RadControl that can be painted or that has a layout slot in a RadControl. + Generally each RadCotnrol is composed of a tree of RadElements. The tree has as a root the and + children property. + + + Elements nesting also represents the visual nesting. Elements are painted starting + from the root to the leaves of the tree. the leaves are most often primitive + elements like, text, fills, borders and so on. Elements that are descendants of + LayoutPanel are responsible for arranging their children in the available space + and/or for notifying the parent that the layout space is not enough to expand. + Layout behavior of each element can be adjusted using the properties: + , , + (old layouts), and and for + the new layouts. + RadElement is the base class of all elements that need to take advantage of TPF features, like + property inheritance, layouts, styling + with the Visual Style Builder application. Each property change of a RadElement or + of its inheritance parent would result in calling the method OnPropertyChange, + which can be overridden in order to customize the response to changes of any + RadPoperty. + + + + + Defines a visual element which may be displayed using system skins (UxTheme semantic). + + + + + Gets the VisualStyleElement which represents the current state of this instance for Windows XP. + + + + + + Gets the VisualStyleElement which represents the current state of this instance for Windows Vista. + + + + + + Determines whether to use system skins or not. + If this is false, the default TPF rendering will be used. + If this is true and there is no system skin enabled, TPF rendering will be used. + + + + + This constant is used internally. + + + + + Creates the child elements and sets their locally applied values as Default + + + + + Temporary suspends UpdateReferences method. + Useful when modifying the element tree without changing the actual element's references. + + + + + Resumes previously suspended UpdateReference method. + + + + + Initializes member fields to their default values. + This method is called prior the CreateChildItems one and allows for initialization of members on which child elements depend. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + A callback used by the owning RadControl to notify the element for a first-time screen visualization. + + True to notify entire subtree for the load process, false otherwise. + + + + This method is used internally. + + + + + + Allows inheritors to provide custom load logic. + + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Unloads the element if it was previously loaded on an element tree. + + Reference to the element tree from which we are in a process of unload. + + + + + Executes the core unload logic. Allows inheritors to perform additional action while the element is unloading itself. + + Reference to the element tree from which we are in a process of unload. + + + + Notifies that the element has been successfully unloaded from an element tree. + Allows inheritors to provide custom logic at this stage. + + Reference to the element tree from which the element has been unloaded. + + + + The element gets notified for a change in its current ElementTree member. + + + + + + A callback used by the owning RadControl to notify the element for the beginning of a disposing process. + + + + + Applies the specified RadElement instance as parent of the current instance. + + + + + + Notifies for a change in the Parent value. + + The previous parent element (if any) + + + + Updates the local references using the provided element tree. + + + True to update inheritance chain, false otherwise. + True to update children also, false otherwise. + + + + This method is used internally! + + + + + + + Updates the state of the element when reference update is suspended and we have a change in our parent. + + + + + + Performs an update after a change in the Children collection. + + The element associated with the change. + + + + + Resets all layout related fields and puts the element in its initial layout state. + + + + + + Determines whether there is an ancestor in this element tree that is not visible. + + + + + + This method is used internally. + + + + + + Temporary suspends layout operations upon this element. + + + + + Temporary suspends layout operations upon this element. + + True to suspend children also, false otherwise. + + + + Sets the bounds of the element to the specified rectangle (locating and + size). + + + + + Sets the bounds of the element to the specified rectangle (X, Y, width and + height). + + + + + Gets the rectangle which surrounds the rotated element (if having AngleTransform property set). + + The size of the element which is accepted as a parameter (for example when returned from GetPreferredSize). + + + + + Retrieves a point in screen coordinates taking as a parameter a point which is in + element coordinates (this means that the top left corner of the element is with + coordinates 0, 0). + + + + + Retrieves a rectangle in screen coordinates taking as a parameter a rectangle + which is in element coordinates (this means that the top left corner of the element is + with coordinates 0, 0). + + + + + This method is used internally. + + + + + + Arranges the to its final location. + The element must call the Arrange method of each of its children. + + The size that is available for element. + The rectangle occupied by the element. Usually . Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion. + In this method call to the Arrange method of each child must be made. + + + + Measures the space required by the + + Used by the layout system. + + The size that is available to the . The available size can be infinity (to take the full size of the element) + The minimum size required by the element to be completely visible. Cannot be infinity. + In this method call to the Measure method of each child must be made. + + + + Gets the arrange rectangle, valid for this element. + + + + + + + Determines whether the element can perform layout operation. + + + + + + Determines whether the element is currently in valid state. + That is having a valid RadElementTree reference and being in either Constructed or Loaded state. + + + + + + Gets the offset that is caused by scrolling. The difference between this method and + PositionOffset property is that GetScrollingOffset() takes into account RightToLeft. + + The scrolling offset for this element. + + + + Returns the bounds of the area that should be invalidated when the element is invalidated. + + The bounds to invalidate. + + + + This method is executed when a property which affects the absolute position of the element has been changed. + + + + + This method is used internally. + + + + + Provides a routine to paint element's content when system skin appearance is desired. + + + + + + Virtual layer between PaintChildren() and Paint(). + Can be overridden to fully customize element hierarchy paint. + Used for painting disabled items. + + The graphics object. + The rectangle which has been invalidated. + The angle (in degrees) to which the current element is rotated. This angle is a sum of all AngleTransform properties of this element's parents. + + + + + + This method is used internally. + + + + + + + + + + Gets the VisualStyleElement instance that describes the skin appearance for the element when the current OS is Windows XP. + + + + + + Gets the VisualStyleElement instance that describes the skin appearance for the element when the current OS is Windows Vista. + + + + + + Performs initialization when the element is first-time painted using system skin. + + + + + Gets the rectangle where skin background should be painted. + Defaults to BoundingRectangle. + + + + + + The element gets notified for a change in the UseSystemSkin property. + This method will recursively notify all descendants for the change. + + + + + + Determines whether we should paint system skin. + + + + + + Composes a value which determines whether the element should use system skins when painting. + This method will traverse the element and control tree and will end with the global UseSystemSkin property. + + + + + + Maps a style property to another property. This method is used + to map corresponding properties of LightVisualElement + instances and instances. + + An instance of the + class that represents the property to map. + + An instance of the + class which represents the mapped property. If no property is found, + the method returns null + + + + Gets the IFilter instance that may be used to filter the properties, treated as Stylable for this element. + + + + + + Resets the Style modifier of each registered property. + + + + + Resets the Style modifier for the specified property. Will reset all properties if null is passed. + + + + + Adds a property change behavior to the list of behaviors of the element. + + + Behaviors can be used to specify how an element should respond when a certain element property changes. + Behaviors are used internally by stylesheets when applying to an hierarchy of elements. + + behavior instance - should not be null (or Nothing in VB.NET) + + + + + + list of behaviors + + + + Used internally to support RadControl infrastructure. This method is not intended for use directly from your code. + + + + + + This method is used internally. + + + + + This method is used internally. + + + + + Gets a list of child elements using the type to filter the results. + + + + + + + Searches up the parent chain and returns the first parent with the provided ThemeEffectiveType. + + + + + + Searches up the parent chain and returns the first parent of type T. + + + + + + + Gets a boolean value that determines whether a given element + resides in the element hierarchy of this element. + + An instance of the + class which is checked. + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of type T. + + + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of type T. + + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of the specified Type. + + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided predicate. + + The mode used to traverse the subtree. + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided predicate. + + The filter that defines the match criteria. + The mode used to traverse the subtree. + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided filter. + + The filter that defines the match criteria. + The mode used to traverse the subtree. + + + + + Gets a list with all the descendants that match the provided filter. + + + + + + + + Gets a list with all the descendants that match the provided filter. + + + + + + + + Provides a routine which enumerates all ancestors up in the parent chain of this element, which match the provided Filter. + + + + + + + Provides a routine which enumerates all ancestors up in the parent chain of this element, which match the provided predicate. + + The predicate used to filter parents. + + + + + Forces an update in the z-ordered collection after a change in the Children collection. + + + + + + + Allows enumerating of this element's children, using the specified options. + + + + + + + Sends this element to the beginning of its parent's z-ordered collection. + + + + + Sends this element at the end of its parent's z-ordered collection. + + + + + Method used by control Code Dom serializer to access items in the collection + + + + + + + Get a value indicating whether the element is a direct or indirect child of specified parent element + + Parent to test + true if the element is child of parent, false otherwise + + + + This method sets the focused state of an element. It is used internally. + + The new focused state. + + + + This method is used internally! + + + + + Raises the Click event. + + + + + Raises the DoubleClick event. + + + + + Raises the MouseWheel event. + + + + + + This method is used internally! + + + + + + Updates the ContainsMouse property. The notification may be received from a child whose IsMouseOver property has changed. + + + + + Updates the ContainsFocus property. The notification may be received from a child whose IsFocused property has changed. + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + Invalidates all Ambient (inherited) properties down in the parent chain. + Called when the parent for this element changes. + + True to update children also, false otherwise. + + + + The object gets notified for a parent property change. + + + + + + Add the ElementTree property if we are in the context of RadControlSpy. + + + + + + + Tunnels and bubbles on MouseClick on current element + + + + + Tunnels and bubbles on MouseDoubleClick on current element + + + + + Tunnels and bubbles on MouseDown on current element + + + + + Tunnels and bubbles on MouseUp on current element + + + + + Tunnels and bubbles on MouseWheel on current element + + + + + Routed event key for ChildElementAdded event. Bubbles when element is added + + + + + Routed event key for ParentChanged event. Tunnels when element parent changes + + + + + Tunnels when bounds changed in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + Tunnels and bubbles when changes the current element + + + + + Tunnels when the Enabled property changes in order to notify any children that should take special actions. + + + + + Tunnels when the winforms control has been changed. + + + + + Used by RadControlSpy to display certain hidden properties in the Property Grid. + + + + + Get or sets the maximum size to apply on an element when layout is calculated. + + + + + Property key of the ZIndex Property. + + + + + This field is used internally. + + + + + Gets the current state of the element. + + + + + Gets the layout manager of the element. Will be null until the element is loaded on a visual scene. + + + + + Gets the element desired size. + + + + + Gets a value indicating whether the layout is suspended or not. + + + + + Represents the rectangle which surrounds the element bounds after the rotation caused by setting the AngleTransform property to some degree. The rectangle is in parent element's coordinates. + + + + + Represents the rectangle which surrounds the element bounds after the rotation caused by setting the AngleTransform property to some degree. The rectangle is in control coordinates. + + + + + This property is used internally. + + + + + Gets the level of this element in the ElementTree it currently resides. + + + + + This event occurs after printing the element. It is used internally. + + + + + Gets or sets the mode that describes the usage of system skinning (if available). + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets a value indicating whether the element can have its own style with style conditions. + + + + + Defines whether stylesheet rules should be applied for this element and its children, or only for this element + + + + + Gets a reference to the tree object, that contains information about the scene where the element is currently visualized. + + + + + Gets the collection of elements that are child elements in the element + tree. + + + + + Enumerates entire subtree of elements (using depth-first approach), + starting from this one as a root. + + + + Gets a reference to the parent element in the visual element tree. + + + + + + + Gets the count of all elements, which visibility is not ElementVisibility.Collapsed. + + + + + Occurs when the mouse pointer rests on the element. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + Occurs when the mouse pointer is over the element and a mouse button is pressed. + + + + + Occurs when the mouse pointer is over the element and a mouse button is released. + + + + + Occurs when the element is clicked. + + + + + Occurs when the element is double-clicked. + + + + + Occurs when the mouse pointer enters the element. + + + + + Occurs when the RadItem has focus and the user scrolls up or down the mouse wheel + + + + + Occurs when the mouse pointer leaves the element. + + + + + Occurs when the children collection of the element is changed. + + + + + Determines whether the element or one of its descendants currently contains the keyboard focus. + + + + + Specifies whether the Item should handle MouseOver, MouseMove and related mouse events. + + + By default only elements that inherit RadItem can process mouse input. + + + + + Gets or sets a value indicating whether the element should pass the handled mouse + event to the first parent element which has the + property set to true. + + + + + Gets or sets a value indicating whether the element size will be calculated + automatically by the layout system. Value of false indicates that the element's size + will not be changed when calculating the layout. + + + + + Gets or sets a value corresponding to the bounding rectangle of the element. + Location and/or Size portions of the bounds may be calculated automatically based + on the current and + settings. + + + + + Gets or sets the location of the element based on the element parent rectangle. + Corresponds to .Location + + + + + Gets or sets the size of the element which is the height and width of the visual + rectangle that would contain the graphics of the element. Size corresponds to + element's Bounds.Size. When the AutoSize property is set + to true setting the Size property to some value has no effect. + + + + + Gets or sets the border thickness of the element. This thickness is included into the + element's bounding rectangle. + + + + + Gets or sets the padding sizes of the element. The paddings are included into the + element's bounding rectangle. + + + + + Gets or sets a value corresponding to the margins of the element. Margins are not + included into the element's bounding rectangle. + + + + + Gets or sets the preferred location of the element if its size is less than its + parent size. + + + + + Gets or sets the way the element should calculate its , when + the property is set to true. + + + + + Gets or sets a value indicating the way element will fill its available size when + parent element is calculating element size and location. + + + + + Gets or sets a value indicating whether the element can respond to user + interaction. + + + By default, if element is currently selected when Enabled set to false, next element would be selected. + Values inherits from Parent.Enabled. + When a scrollable control is disabled, the scroll bars are also disabled. + For example, a disabled multiline textbox is unable to scroll to display all the lines of text. + + + + + Gets or sets a value indicating whether the element can receive input + focus. + + + + + Gets a value indicating whether the element has input focus. + + + + + Gets or sets a value indicating whether the mouse has entered the bounds of the + element or any of its sibling elements in the parent RadItem. + + + + + Gets or sets a value indicating whether the mouse has entered the bounds of the + element. + + + + + Gets or sets a value indicating whether the mouse button has been pressed when + inside the bounds of the element. + + + + + Provide for use within TelerikLayoutEngine. + + + + Gets or sets a value indicating whether the element should be painted. + + Children visibility is not be affected. + + + + Gets or sets a value indicating element visibility. + + Setting this property affects also the children of the element. Collapsed means the element and its children would not be painted and would not be + calculated in the layout. + This property has no effect in design-time on objects. + + + + Gets a value indicating if the element is visible. + + + Represents the element unique name. + + + + Gets or sets a string value indicating the element visual class name. It's used + when a stylesheet has been applied to this element. + + + Style sheets contain groups of property settings categorized by element type and/or class, thus + element "class" is used to determine whether certain style rule would be applied over an element. + Generally this property is assigned by the control developer but it can be changed design time or runtime if + certain element is decided to have different style class. + + + + + Indicates whether the painting of the element and its children should be + restricted to its bounds. + + + + + Gets or sets an instance of the Shape object of an element. The shape of the + element is both responsible for clipping the element's children and for providing its' + border(s) with custom shape. + + + Value of null (or Nothing in VisualBasic.Net) indicates that element has rectangular (or no) shape. + Shape is an object that defines the bounding graphics path of an element. Graphics clip is always applied when an element has shape. + Shape is considered when painting the border element, and when hit-testing an element. + Some predefined shapes are available, like or . + offers a way to specify element's shape with a sequence of points and curves using code + or the design time + . + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Get or sets the maximum size to apply on an element when layout is + calculated. + + + + + Gets of sets the order of painting an element compared to its sibling elements. Greater ZIndex means an element would be + painted on top of other elements amongst its siblings. ZIndex changes the order of the elements in the list returned by + . + + + + + Gets or sets the direction of flow of the elements and whether elements are aligned to support locales + using right-to-left fonts. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets the RadImageShape that describes the background of the element. + + + + + Determines whether the element or one of its descendants currently contains the mouse. + + + + + Gets or sets a value indicating the scale transform factors, when painting the + element and its children. + + + + + Gets or sets the rotation transform angle used when painting the element and its + children. + + + + + Gets or sets the offset of the origin of the coordinate system used when + painting the element and its children. + + + TrnslateTransform of the graphics is used prior to painting the element and after painting element children, + to reset the transformation + + + + + Gets or sets whether the properties of this element should be serialized + + + + + Gets or sets whether the element should be serialized in designer + + + + + Gets or sets whether the children of this element should be serialized + + + + Gets or sets a value indicating maximum rendered frames per second. + + + + Gets a value indicating if theme finished applying + + + + + Gets a value indicating if a theme should be applied + + + + + Gets a value indicating whether the AngleTransform should use + the center of the object as origin for the transformation. + + + + + Specifies when the Click event should fire. + + + + + Gets or sets a value indicating whether the DoubleClick event will fire for this item. + + + + + Determines whether mouse will be captured upon MouseDown event. + + + + + This property is used internally! + + + + + Gets or sets the stylesheet associated with the element. + + + Stylesheets provide dynamic property settings for elements' RadProperties organized into groups, each regarding a + certain state of the element. State means a property has certain value. + Style of an element can affect also element children. + Generally element style is set through control theme, which is a holder for various styles for many controls. + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Fires when the font is changed. + + + + + Gets or sets the DefaultSize. + + + + + Gets or sets the forecolor. Color type represents an ARGB color. + + + + + Gets or sets the backcolor. Color type represents an ARGB color. + + + + + Gets or sets the font. Font type defines a particular format for text, including + font face, size, and style attributes. + + + + + Gets or sets the smoothing mode of an element. Smoothing mode enumeration defines + possible values. + + + + + Gets or sets the opacity of an element. Value 0.0f indicates that the element is completely transparent, + 1.0f means the element is not transparent (the default value). + + + + + This constant is used internally. + + + + + Gets or sets a value indicating whether design mode is active. + + + + + Gets the collection of data-binding objects for this IBindableComponent. + + + + + Exposes methods and properties for draggable elements. + + + + + Determines that the element is availble for dragging. + + An instance of which represents a dragging start location. + True if the object can be dragged, otherwise false. + + + + Gets the assosiated with dragged element data context. + + + + + + Gets the image used by the DragDropService to indicate that the element is being dragged. + Usually this is a snapshot of the element itself. + + + + + + Determines whether this instance may enter drag operation. + + + + + Exposes methods for drop targets + + + + + Completes drag-drop operation of instance of the IDraggable over the specified target. + + An instance of which represents a drop location. + An instance of the IDraggable which is dragged over the target. + + + + + + The current position of the mouse cursor + An instance of the IDraggable which is dragged over the specified target. + True if the operation finished successfully, otherwise false. + + + + Drop operations to occur in the drop target. Called when the cursor first enters the specified target. + + The current position of the mouse cursor + An instance of the IDraggable which is dragged over the target. + + + + Special behavior when the drag operation leaves the specified target. + + The old position of the mouse cursor + An instance of the IDraggable which is dragged over the target. + + + + Determines whether the instance allows for drop operations. + + + + + Occurs when the complete keyboard combination for a registered RadShortcut is triggerred. + + + + + + Occurs when a registered shortcut's keyboard combination is partially complete. + E.g. if we have Ctrl+C+V and Ctrl+C is pressed the event will be raised. + + + + + + This constant is used internally. + + + + + Raises the KeyDown event. + + + + + + Raises the KeyPress event. + + + + + + Raises the KeyUp event. + + + + + Raises the event. + + A that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Determines if the item displays any text. + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + Add the VisualState property if we are in the context of RadControlSpy. + + + + + + + Calls the appropriate gesture event according to the GestureType property of the event arguments. + + The event arguments. + + + + Fires the TwoFingerTapGesture event. + + The arguments for the TwoFingerTapGesture event. + + + + Fires the PressAndTapGesture event. + + The arguments for the PressAndTapGesture event. + + + + Fires the PanGesture event. + + The arguments for the PanGesture event. + + + + Fires the RotateGesture event. + + The arguments for the RotateGesture event. + + + + Fires the ZoomGesture event. + + The arguments for the ZoomGesture event. + + + + Determines whether the element may be dragged. + + + + + + + Gets the context, associated with a drag operation. + + + + + + Gets the image to be used as a hint when this element is being dragged. + + + + + + Core logic when a drag-drop is performed over this element. + Allows inheritors to provide their own implementations. + + + + + + + Determines whether the element may be treated as a drop target during drag-and-drop operation. + + + + + + + + Allows the element to perform additional action upon mouse entering its bounds upon a drag-and-drop operation. + + + + + + + Allows the element to perform additional action upon mouse leaving its bounds upon a drag-and-drop operation. + + + + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + The value of the Class property of the child element for which + the override stands. (e.g. ButtonFill, ButtonBorder, etc.) + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + The type of the child element for which + the override stands. (e.g. typeof(FillPrimitive), typeof(BorderPrimitive), etc.) + + + + Resets all overrides for the theme settings of a given property. + + The property to reset overrides for. + + + + Resets all overrides for the theme settings of a given property and a given state. + + The property to reset overrides for. + The state to reset. + + + + Resets all theme override settings for this element. + + + + + Suspends the apply of theme settings. + + + + + Resumes the apply of theme settings. + + + + + Gets the available visual states for this item. Visual states can be combined using "." (dot). + + A list with the available visual states for this element. + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Occurs when the TextOrientation property value changes. + + + + + Occurs when the FlipText property value changes. + + + + + Gets or sets whether the item should use the default way for painting the item when disabled (making it gray) or whether + the disabled appearance should be controlled by the theme. + + + + + Specifies the orientation of the text associated with this item. Whether it should appear horizontal or vertical. + + + + + Specifies the text associated with this item will be flipped. + + + + + Gets or sets the text associated with this item. + + + + + Gets a value indicating whether the item can be selected. + + + + + This property is used internally. + + + + + This property is used internally. + + + + + Occurs when the RadItem has focus and the user pressees a key down + + + + + Occurs when the RadItem has focus and the user pressees a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when a zoom gesture was sent by a touch input device. + + + + + Occurs when a rotate gesture was sent by a touch input device. + + + + + Occurs when a pan gesture was sent by a touch input device. + + + + + Occurs when a two-finger-tap gesture was sent by a touch input device. + + + + + Occurs when a press-and-tap gesture was sent by a touch input device. + + + + + Gets or sets string representing the current visual state of the Item which is used by themes to determine the appearance of the item and its child elements + + + + + Determines whether the element may be dragged by a RadDragDropService instance. + + + + + Determines whether the element may accept a drop operation. + + + + + Gets the collection of all RadShortcut instances registered with this item. + + + + + Gets or sets the description that will be reported to accessibility client applications. + + + + + Gets or sets the name of the control for use by accessibility client applications. + + + + + Gets or sets the accessible role of the item, which specifies the type of user interface element + of the item. + + + + + This property is used internally! + + + + + Gets or sets a value indicating whether the Analytics functionality is enable or disbale for this item. + + + + + Initializes a new instance of the class. + + + + + Gets or sets value indicating whether Office 2007 UI compliant screen tip sizing should be used + + + + + Override this property and provide custom screentip template description in DesignTime + + + + + Gets the screen tip actual template type. Used for component serialization. + + + + + Gets a value indicating screen tip preset size. + + + + + Sets the screntip element to be wrapped by this control. + + An instance of RadScreenTipElement + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the method that will handle a CollectionChanged event. + + the %sender:System.Collections.CollectionBase% of the event + the %event arguments:Telerik.WinControls.UI.CollectionChangedEventArgs" + + + + Represents event data for the CollectionChanged event. + + + + + Initializes a new instance of the CollectionChangedEventArgs class using the + target, the index of the item, and the item's change operation. + + + + + + + + Gets or sets a value specifing the target. + + + + + Gets or sets a value indicating the index in the collection of the changed item. + + + + + Gets or sets a value indicating the items chnage operation. + + + + + Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed. + + + + + + Notifies listeners of dynamic changes, such as when items get added and removed or the whole list is refreshed. + + + You can enumerate over any collection that implements the IEnumerable interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the INotifyCollectionChanged interface. This interface exposes the CollectionChanged event that must be raised whenever the underlying collection changes. + + + + + Occurs before the collection changes. + + + + + Notifies clients that a property value is changing. + + + + + Occurs when a property value is changing. + + + + + Initializes a new instance of the ObservableCollection class. + + + + + Initializes a new instance of the ObservableCollection class that contains elements copied from the specified list. + + + + + + Overridden. Removes all items from the collection. + + + + + Overridden. Inserts an item into the collection at the specified index. + + + + + + + Moves the item at the specified index to a new location in the collection. + + + + + + + Moves the item at the specified index to a new location in the collection. + + + + + + + Suspends event notification. + + + + + Resumes event notification. + + + + + Resumes event notification. + + + + + Calls the NotifyListenersCollectionChanged method with the provided arguments if not in a batch update. + + + + + + Raises the CollectionChanged event with the provided arguments. + + + + + + Calls the NotifyListenersCollectionChanging method with the provided arguments if not in a batch update. + + + + + + Raises the CollectionChanging event with the provided arguments. + + + + + + Overridden. Removes the item at the specified index of the collection. + + + + + + Overridden. Replaces the element at the specified index. + + + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + A instance containing event data. + + + + Raises the PropertyChanging event + + The name of the property + + + + Raises the NotifyPropertyChanging event + + A instance containing event data. + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs before an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + true to indicate the collection has completed update; otherwise false. + + + + + Occurs when a property of an object changes. + Calling the event is developer's responsibility. + + + + + Occurs before a property of an object changes. + + + + + Interface to the node + + + + + Interface to the tree + + + + + Add item + + + + + Add or get item + + + + + Find item + + + + + Delete item by key + + + + + Delete specific item + + + + + Clear the tree + + + + + Get synchornization root + + + + + Interface to the tree + + + + + Get first node + + + + + Get last node + + + + + Get next node + + + + + Get prior node + + + + + Get number of nodes in the tree + + + + + Interface to the tree which supports direct access to the items + + + Interface to the tree + + + + + Get item by order index + + + + + Get index by item + + + + + Parameters of ordered node + + + + + Node's rank + + + + + Number of sub nodes + + + + + Ordered node + + + + + Node of the red-black tree + + Key type + Node's parameter + + + + Set parent node + + + + + Set left node + + + + + Set right node + + + + + Update reference count + + + + + Node parameters + + + + + Constructor + + + + + Copy from other node + + + + + Parent node + + + + + Left node + + + + + Right node + + + + + Key value of the node + + + + + Colour of the node + + + + + Constructor + + + + + Set parent node + + + + + Set left node + + + + + Set right node + + + + + Update reference count + + + + + Copy from other node + + + + + Basic RBTree with ordering + + Operation like Add and Remove are an O(2logN) operations. + Operation Find is O(logN) operation. + + + + + Base class for the tree. + Based on the Damian Ivereigh implementation + Support for the multi-trees has been added. + Do not use this class directly. Use RBTree, RBMultiTree, RBOrderedTree and RBOrderedMultiTree classes + + Key type + Node type + Node parameter type + + + + Add item + + + + + Add or get item + + + + + Find item + + + + + Delete item by key + + + + + Clear + + + + + Delete item by key + + + + + Get first node + + + + + Get last node + + + + + Get next node + + + + + Get prior node + + + + + Comparator + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Add new key into the tree + + This operation is O(logN) operation + + In case the key is already in the tree + + + + Add new key into the tree or get existing node + This operation is O(logN) operation + + + + + Remove key from the dictionary + This operation is O(logN) operation + + + + + Remove all items + + + + + Remove node from the dictionary + This operation is O(1) operation + + + + + Find key in the dictionary + This operation is O(logN) operation + + + + + Get first node + This operation is O(logN) operation + + + + + Get last node + This operation is O(logN) operation + + + + + Get next node + This operation is O(logN) operation + + + + + Get previous node + This operation is O(logN) operation + + + + + Get enumerator + + + + + Get enumerator + + + + + Balance tree past inserting + + + + + Create new node + + + + + Go trough tree and find the node by the key. + Might add new node if node doesn't exist. + + + + + Rotate our tree Left + + X rb_left_rotate(X)---> Y + / \ / \ + A Y X C + / \ / \ + B C A B + + N.B. This does not change the ordering. + + We assume that neither X or Y is NULL + + + + + Rotate our tree Right + + X Y + / \ / \ + A Y leftArrow--rb_right_rotate(Y) X C + / \ / \ + B C A B + + N.B. This does not change the ordering. + + We assume that neither X or Y is NULL + > + + + + Return a pointer to the smallest key greater than x + + + + + Return a pointer to the largest key smaller than x + + + + + Delete the node z, and free up the space + + + + + Restore the reb-black properties after a delete + + + + + + Is tree unique + + + + + Object can be used for synchronization + + + + + Root of the tree + + + + + Number of nodes in the tree + + + + + Get collection object for this + + + + + Adapter implementing collection interface + + + + + Referenced tree + + + + + Constructor + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Get item by order index + This operation is O(logN) operation + + + + + Get order index of item + This operation is O(logN) operation + + + + + Get item by order index + + + + + Get index by item + + + + + Unique ordered RBTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Non-unique RBMultiTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Tree node + + + + + Constructor + + + + + Unique RBTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Non-unique RBMultiTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Generic tree enumerator + + Node type + Key type + >Node parameter + + + + Tree + + + + + Current item + + + + + + Constructor + + + + + Move to next element + + + + + Reset enumeration + + + + + Dispose object + + + + + Get current element + + + + + Get current element + + + + + Generic tree value's enumerator + + Node type + Key type + Node parameter + + + + Tree + + + + + Current item + + + + + Constructor + + + + + Move to next element + + + + + Reset enumeration + + + + + Dispose object + + + + + Get current element + + + + + Get current element + + + + + Colour of the node + + + + + Red + + + + + Black + + + + + Represents a read-only data collection that provides notifications when the original has changed. + + + + + + Initializes a new instance of the with an instance of a /> + + + + + + Fires the CollectionChanged event. + + + + + + Fires the PropertyChnaged event. + + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Gets the type. + + + The type. + + + + + Gets or sets the session identifier. + + + The session identifier. + + + + + Gets the instalation key. + + + The instalation key. + + + + + Converts an ISO 8601 time/date format string, which is used by JSON and others, + into a DateTime object. + + + + + + + Converts a DateTime object into an ISO 8601 string. This version + always returns the string in UTC format. + + + + + + + Ensures a two-digit number with leading zero if necessary. + + + + + + + Ensures a three-digit number with leading zeros if necessary. + + + + + + + The ASP.NET Ajax team made up their own time date format for JSON strings, and it's + explained in this article: http://msdn.microsoft.com/en-us/library/bb299886.aspx + Converts a DateTime to the ASP.NET Ajax JSON format. + + + + + + + Converts an ASP.NET Ajax JSON string to DateTime + + + + + + + Converts a Unicode character to a string of its ASCII equivalent. + Very simple, it works only on ordinary characters. + + + + + + + Returns null if no DTE instance is available. + + EnvSessionManager or Null depending on whether DTE is available. + + + + Tries to add the item to the collection. If it already exists it won't be added. + + The item to be added. + + + + Represents a small rectangular pop-up window that displays a brief description of a control's purpose when the user rests the pointer on the control. + Provides extended functionality by removing the necessity to have a control in the element tree + + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + An containing the duration, in milliseconds, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + A containing the offset, in pixels, relative to the upper-left corner of the screen, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + The horizontal offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + The vertical offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + The horizontal offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + The vertical offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + An containing the duration, in milliseconds, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + A containing the offset, in pixels, relative to the upper-left corner of the screen, to display the . + An containing the duration, in milliseconds, to display the . + + + + Hides this instance. + + + + + Repository for Telerik-related resources. Not for general use. + + + + + Represents a rectangle with chamfered corners. + + + + Represents element shape. Base class for specialized shapes such as + EllipseShape, RoundRectShape, Office12Shape, etc. + + + + Retrieves the shape of the element. GraphicsPath represents a series of connected + lines and curves. + + + + + Retrieves the contour of the element0. GraphicsPath represents a series of + connected lines and curves. + + + + Creates path using a rectangle for bounds. + + + Creates path using a rectangle for bounds. + + + + Serializes properties. Required for serialization mechanism of telerik + framework. + + + + + Deserializes properties. Required for the deserialization mechanism of telerik + framework. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The width of the chamfer. + + + + Initializes a new instance of the class. + + The width of the chamfer. + The angle of the chamfer in degrees. + + + + Initializes a new instance of the class. + + The width of the chamfer. + The angle of the chamfer in degrees. + if set to true the top left corner will be chamfered. + if set to true the bottom left corner will be chamfered. + if set to true the bottom right corner will be chamfered. + if set to true the top right corner will be chamfered. + + + + Creates path using a rectangle for bounds. + + + + + + + Serializes properties. Required for telerik serialization mechanism. + + + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + + Gets or sets the width of the chamfer. + + + + + Gets or sets the angle of the chamfer in degrees. The value must be between 0 inclusive and 90 exclusive. + + + + + Gets or sets a value indicating whether the top left corner of the shape will be chamfered. + + + true if the top left corner is be chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the top right corner of the shape will be chamfered. + + + true if the top right corner is be chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the bottom right corner of the shape will be chamfered. + + + true if the bottom right corner is chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the bottom left corner of the shape will be chamfered. + + + true if the bottom left corner is chamfered; otherwise, false. + + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Should snap to the line or curve + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + The default constructor sets the following default values: + FieldWidth = 1.0f; + SnapRelative = 0.2f; + SnapDelta = 0.2f; + SnapType = SnapTypes.Relative; + + + + + Set the snap type to be one of the following: + SnapTypes.Relative - snap distance is relative to the FieldWidth + + SnapTypes.Fixed - snap distance is fixed + + + + + Width of a single box in the snap grid. + It's value cannot be less than or equal to zero. + + + + + Sets/Gets the snap distance for fixed type snapping. + Does not activate fixed type snapping. + + + + + + Sets/Gets the relative snap distance. + Does not activate relative type snapping. + + + + + + Gets the precached snap distance. + Doesn't need to be equal to any of the SnapFixed or SnapRelative properties. + + + + Represents custom shape of an element. + + + Initializes a new instance of the CustomShape class. + + + Creates a path using a ractangle for bounds. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets a List of Shape points. + + + Gets or sets a Rectangle indicating the dimension of the shape. + + + + Represents a shape editor control. + + + + + Draws grid lines in the specified rectangle with the specified color + + + + + + + + Translates a rectangle in accordance with the offsets due to scrolling + + + + + + + Translates a point in accordance with the offsets due to scrolling + + + + + + + Updates the bounds of the drawable area + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents a shape point. + + + + + Represents a base class of the ShapePoint class. + + + + + Initializes a new instance of the ShapePointbase class. + + + + + Initializes a new instance of the ShapePoint class using X and Y + coordinates. + + + + + Initializes a new instance of the ShapePoint class using a Point structure. + + + + + + Initializes a new instance of the ShapePoint class using an instance of the + ShapePointBase class. + + + + + + Sets the X and Y coordinates of the shape point. + + + + + + + Sets the point position from a Point structure. + + + + + + Retrieves a Point structure corresponding to the point position. + + + + + + + + + + + + + Retrieves a string representation of the ShapePointBase class. + + + + + + Gets or sets a float value indicating the X coordinate of the shape point. + + + + + Gets or sets a float value indicating the Y coordinate of the shape point. + + + + + Gets or sets a value indicating the anchor style. + + + + + Gets or sets a boolean value indicating whether the shape point is locked. + + + + + Initializes a new instance of the ShapePoint class. + + + + + Initializes a new instance of the ShapePoint class from + the X and Y coordinates of the point. + + + + + + + Initializes a new instance of the ShapePoint class from a Point structure. + + + + + Initializes a new instance of the ShapePoint class using a ShapePoint instance. + + + + + + Retrieves the line direction of the line that passes through the instance + point and the point given as an argument. + + + + + + + Creates a Bezier curve between the current point and the point given as a + parameter. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets the first control point. + + + + + Gets or sets the second control point. + + + + + Exposes the line direction. + + + + + Exposes the line position. + + + + + Indicates horizontal position. + + + + + Indicates vertical position. + + + + + The default constructor sets the following default values: + FieldWidth = 1.0f; + SnapRelative = 0.2f; + SnapDelta = 0.2f; + SnapType = SnapTypes.Relative; + + + + + Set the snap type to be one of the following: + SnapTypes.Relative - snap distance is relative to the FieldWidth + + SnapTypes.Fixed - snap distance is fixed + + + + + Width of a single box in the snap grid. + It's value cannot be less than or equal to zero. + + + + + Sets/Gets the snap distance for fixed type snapping. + Does not activate fixed type snapping. + + + + + + Sets/Gets the relative snap distance. + Does not activate relative type snapping. + + + + + + Gets the precached snap distance. + Doesn't need to be equal to any of the SnapFixed or SnapRelative properties. + + + + Represents donut like shape. + + + + Creates donut-like path. Overrides the method defined in its base class - + ElementShape. + + + + Represents element shape converter. + + + Represents ellipse shape. + + + + Creates ellipse shape. Overrides the method defined in its base class - + ElementShape. + + + + + Defines possible modes to be used when rendering an image. + + + + + Image is painted without any modification. + + + + + Image is stretched within the paint rectangle. + + + + + Image is stretched by the X axis and tiled by the Y one. + + + + + Image is stretched by the Y axis and tiled by the X one. + + + + + Inner image segment is tiled while all others are stretched. + + + + + Image is centered within the paint rectangle. + + + + + Image is centered by the X axis and stretched by the Y one. + + + + + Image is centered by the Y axis and stretched by the X one. + + + + + Image is centered by the X axis and tiled by the Y one. + + + + + Image is centered by the Y axis and tiled by the X one. + + + + + Image is tiled within the paint rectangle. + + + + + Image is flipped by the X axis and tiled within the paint rectangle. + + + + + Image is flipped by the X and Y axis and tiled within the paint rectangle. + + + + + Image is flipped by the Y axis and tiled within the paint rectangle. + + + + + Gets the segment associated with this object. + + + + + Gets or sets the image part associated with this object. + + + + + Represents an image which may be divided in 9 different segments where only the inner one is stretched within the paint rectangle. + + + + + Gets or sets the RotateFlipType value that defines additional transform on the rendered image. + + + + + Gets or sets the interpolation mode to be applied on the device context when image is rendered. + + + + + Determines which segments from the image will be painted. + + + + + Determines whether the image will be rendered using segments. + + + + + Gets or sets the mode to be used when image is painted. + + + + + Gets or sets the image to be rendered. + + + + + Gets or sets the string representation of the + + + + + Gets or sets the opacity of the rendered image. Valid values are within the interval [0, 1]. + + + + + Gets or sets the Padding structure that defines the margins of the segmented image. + + + + + Gets or sets the Padding structure that defines offset when the image is rendered to the destination rectangle. + + + + Represents the shape of the MS Office forms. + + + Greates the path. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets whether the bottom edges of the form should be rounded. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + Creates donut-like path. Overrides the method defined in its base class - + ElementShape. + + + + Represents round rectangle shape. + + + Initializes a new instance of the RoundRectShape class. + + + Initializes a new instance of the RoundRectShape class. + + + Initializes a new instance of the RoundRectShape class using a radius. + + + Initializes a new instance of the RoundRectShape class using a radius and rounded corners. + + + Greates round rectangle like path. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets the radius of the shape. + + + + Gets or sets value indicating whether the bottom left corner of the shape should be round + + + + + Gets or sets value indicating whether top left corner of the shape should be round + + + + + Gets or sets value indicating whether bottom right corner of the shape should be round + + + + + Gets or sets value indicating whether top right corner of the shape should be round + + + + Represents IE like tab shape. Shapes are series of connected lines and curves. + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents office 12 like tab. + + + + Creates office 12 like tab. Overrides the method defined in its base class - + ElementShape. + + + + Represents VS like tab shape. Shapes are series of connected lines and curves. + + + + Creates VS like tab shape. Overrides CreatePath method in its base class - + ElementShape. + + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets the orientation of this shape. + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents RadElementTree. Every Telerik control has a corresponding tree of + RadElements. This gives a lot of flexibility in building controls allowing, for + example, inheritance of properties from the ancenstor nodes. + + + + Initializes a new instance of RadElementTree class. + + + + Gets the element of specific type at specific coordinates if it handles the mouse input. + + Element location in control coordinates + The element if successfull, otherwise null + + + + Gets the element at specific coordinates if it handles the mouse input. + + Element location in control coordinates + The element if successfull, otherwise null + + + + Gets the element at specific coordinates if it meets the predicate criteria. + + Element location in control coordinates + Specify a predicate or null if the first element should be returned. + The element if successfull, otherwise null + + + + Retrieves the size of a rectangular area into which a control can be + fitted. This override is called only when AutoSize is true. + + + + Gets the RootElement of the tree. + + + Gets or sets the RadControl for the corresponding tree. + + + Gets the bridge between the abstract RadElement layout and the RadControl instance. + + + Gets the tree name. + + + + + + + + + Represents a collection of PropertyChangeBahavior instances. + See also RadElement.AddBehavior + + + + + Represents a routed event. Routed events can be tunnel or bubble event + according to the routed direction of the event. + + + + + Gets or sets the event name. + + + + + Gets the owner's type. + + + + + Represents a raised routed event. + + + + + Initializes a new instance of the RaisedRoutedEvent class. + + + + + Initializes a new instance of the RaisedRoutedEvent class using + routed event, event sender, sender's type, and routing direction (tunnel + or bubble). + + + + + + + + + Compares the instance with the other event arguments and the sender of the event. + + + + + + + + Compares the instance with another event passed as a parameter. + + + + + + + Gets or sets a value indicating the routed event. + + + + + Gets or sets a string value indicating the routed event name. + + + + + Gets or sets the sender's type. + + + + + Gets or sets the sender. + + + + + Gets or sets the routing direction - tunnel or bubble. + + + + + Defines the routing directions for an events. + + + + + Indicates a tunnel event. + + + + + Indicates a bubble event. + + + + + Represents event arguments for a routed event. + + + + + Initializes a new instance of the RoutedEventArgs class using EventsArgs to + initializes its base class and the RoutedEvent. + + + + + + + Gets or sets the original EventArgs. + + + + + Gets or sets a value indicating the RoutedEvent. + + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Gets or sets a value indicating the routing direction for the event. + + + + + A collection of the RoutedEventBehavior objects. Used by the StyleSheet system. + + + + + Represets an animated property setting + + + + + Initializes new instance of + + + + + Initializes new instance of + + The property to animate. + The number of frames. + The interval between animation frames. + The step used to calculate the next value. + + + + Initializes new instance of + + The property to animate. + The start value. + The end value. + The number of frames. + The interval between animation frames. + + + + Gets or sets the property that will be animated. + + + + + Gets or sets the start value for the animation. + + + + + Gets or sets the end value for the animation. + + + + + Gets or sets the maximum allowed value when using OutElastic mode + + + + + Gets or sets the step used when calculating the next value. + + + + + Gets or sets the number of frames in which the animation will run. + + + + + Gets or sets the interval between animation frames. + + + + + Gets or sets a value indicating the time delay before starting the animation. + + + + + Gets or sets a value indicating whether to set a random delay before starting the animation. + The random delay applies if the value of this property is different from 0. + + + + + Gets or sets the easing to be used when applying animation values. + + + + + Gets or sets a value that determines whether the animation value remains applied after the animation finishes. + + + + + Static value indicating whether animations are enabled at global level. + + + + + Occurs when the animation finishes. + + + + + Occurs when the animation starts. + + + + + Calculates int values for property animation. + + + + + Calculates values used in each frame of property animation. + Also supports converting animation step values to and from a string for + theme serialization. + + + + + Calculates the animated value from start value, end value, current value, + current frame, total number of frames and the specified animation calulator. + + + + + + + + + + + + + + + + + + + + Retrieves the animation step as a string value. + + + + + + + Converts a string to an animation value. + + + + + + + Calculates the animation step from start value, end value, and the total number of frames. + + + + + + + + + Calculates the animation end value from start value, step, and the total number of frames. + + + + + Represents a map of CLR types and corresponding type using when property animation is running and + for animations serialization in themes. + + + + + Animates color values using ColorAnimationStep objects. + + + + + Calculates double values for the property animation. + + + + + Calculates float values for the property animation. + + + + + Calculates Font values for property animation, using FontAnimationStep values. + + + + + Calculates int values for property animation. + + + + + Calculates animation rectangle values. + + + + + Represents a value point animation calculator. + + + + + Represents a value point animation calculator using floating point values. + + + + + Calculates animation rectangle values. + + + + + Represents a value size animation calculator. + + + + + Represents a value size animation calculator using floating point values. + + + + + Represents a numerical value calculator. It is used internally by StyleSheet + system to calculate the value changes when animating RadElement properties. + + + + + Calculates the current value of some property from the initial value, end value, current frame, and the numbers of frames. + + + + + + + + + + Calculates the current value of some property from the initial value, end value, current frame, and the number of frames. + + + + + + + + + + Caclulates the current value of a property from the initial value, end value, current frame, and the number of frames. + + + + + + + + + + Defines the time of the animation occurrence. + + + + + Indicates that no animation is played. + + + + + Indicates that animation is played on applying a setting. + + + + + Indicates that animation is played on up-apply a setting. + + + + + Indicates that animation is always played. + + + + + Defines the possible types of animation looping. + + + + + No animation looping is enabled. + + + + + The animation is started from the beginning after it ends. + + + + + The animation is started again, whereby + end and start values are swapped. + + + + + Defines the animation type. + + + + + + + + + + + + + + + Defines the easing equations for the easing animations. + + + + + Contains information about the way Animation has finished + + + + + Gets value indicating whether the animation has been interrupted by another one. + + + + + Gets value indicating whether the animation has been interrupted by another one. + + + + + Gets the element (if it exists) associated with the specified animation. + + + + + Gets the object associated with the specified animation. + + + + + AnimationStartedEventHandler delegate + + + + + + + AnimationFinishedEventHandler delegate + + + + + + + Event raised during animation notifying the new size for the panel + + the object sending the notification + the new size for the window collasping/expanding + + + + Event raised when animation is finished + + + + + Event raised in parallel with the executing animation. + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Initializes a new instnace of the PropertySetting class. + + + + + Initializes a new instnace of the PropertySetting class by specifying property name and its value. + + A property name. + A property value. + + + + Initializes a new instnace of the PropertySetting class by specifying property and its value. + + A property. + A property value. + + + + Initializes a new instnace of the PropertySetting class by using an exising property setting instance. + + An existing property setting. + + + + Gets or sets the property mapper used to map property names based on the stylable element type. + + + + + Gets the current property value for the specified + + The object. + The current property value for the object. + + + + Applies the property setting on the specified element. + + An instance of + + + + Unapplies the property setting from the specified element. + + An instance of + + + + Resolves the object based on its arguments. + + The type which owns this property. + The property name. + Specifies whether to search base classes if the current type does not contain the specified property. + An instance of if successful. + + + + Gets or sets the property name. + + + + + Gets or sets the full property name (including the class name). + + + + + Gets or sets the property value. + + + + + Gets or sets the property end value (creates an animated property setting). + + + + + Gets an instance of related with this setting. + + + + + Gets the associated RadProperty. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class by using an existing instance. + + The PropertySettingGroup to be used as a source. + + + + Applies the property settings contained in this group to the specified element. + + The element. + + + + Searches for a property setting for the specified property. + + The property to search for + An instance of if successfull. + + + + Searches for a property setting for the specified property. + + The name of the property to search for + An instance of if successfull. + + + + Gets or sets value indicating the key of a repository item which this group is based on. + + + + + Gets the for this property setting group. + + + + + Gets a collection of the property settings for the property setting group. + + + + + Gets a collection of repository settings for the property setting group. + + + + + Initializes a new instance of the ElementSelector class. + + + + + Initializes a new instance of the ElementSelector class by specifying element state. + Sets thw type property to VisualStateSelector. + + The element state. + + + + Initializes a new instance of the ElementSelector class by specifying selector properties. + + The selector type. + The selector value + + + + Initializes a new instance of the ElementSelector class by using an existing one. + + The ElementSelector to be used as a source. + + + + Determines whether the selector is compatible with the specified element. + + The element to compare with. + true if the element is compatible. + + + + Determines whether the selector is valid an element with specific state. + + The element to compare with. + The element state. + true if the selector is valid. + + + + Determines whether the selector is compatible with specific selector. + + The selector. + true if successfull. + + + + Gets or sets the selector value. + + + + + Gets or sets the selector type. + + + + + Gets or sets the child selector. + + + + + Initializes a new instance of the StyleGroup class. + + + + + Initializes a new instance of the StyleGroup class by adding a default style registration. + + The default style registration. + + + + Initializes a new instance of the StyleGroup class by specifying an element type. + Creates a new ElementTypeDefault registration. + + The element type. + + + + Initializes a new instance of the StyleGroup class by using an existing StyleGroup instance. + + The StyleGroup to be used as a source. + + + + Determines whether the style group is compatible with the specified control type. + + The control type. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified control. + + The control. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified stylable node. + + The stylable node. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified style group. + + The stye group. + true if the style group is compatible. + + + + Creates a new style sheet based on this style group for the specified element. + + The element. + An instance of if successful. + + + + Combines the style group with a specified style group by adding its property setting groups. + + style group to combine with. + Specifies whether to replace existing styles. + + + + Saves all style settings presented in this group in a file with XML formatting. + + The theme name to be stored in the file. + The name of the file to be created. + + + + Creates a new theme which is a cloned version of all styles existing in this style group. + + The name of the new theme. + An instance of the Theme class if successfull. + + + + Gets a collection with property setting groups for the style group. + + + + + Gets a collection with style registrations for the style group. + + + + + Initializes a new instance of the StyleRegistration class. + + + + + Initializes a new instance of the StyleRegistration class by creating an ElementTypeDefault registration. + + The full element type. + + + + Initializes a new instance of the StyleRegistration class by using an existing StyleRegistration instance. + + The StyleRegistration to be used as a source. + + + + Initializes a new instance of the StyleRegistration class. + + The registration type. + The full element type. + The full control type. + The element name. + The control name. + + + + Determines whether the style registration is valid for the specified control. + + The control to check. + true if the style registration is compatible. + + + + Checks whether the style registration conatins a style for a child element of the specified stylable node. + + The to check. + true if this style registration is compatible. + + + + Determines whether the style registration is valid for the specified control type. + + The control type to check. + true if the style registration is compatible. + + + + Determines whether the style registration is valid for the specified stylable node. + + The stylable node to check. + true if the style registration is compatible. + + + + Determines whether the style registration is compatible with existing style registration. + + The style registration to check. + true if the style registration is compatible. + + + + Gets or sets the registration type. + + + + + Gets or sets the element type. + + + + + Gets or sets the control type. + + + + + Gets or sets the element name. + + + + + Gets or sets the control name. + + + + + Initializes a new instance of the StyleRepository class. + + + + + Initializes a new instance of the StyleRepository class and specifies the repository key. + + The repository key. + + + + Initializes a new instance of the StyleRepository class and specifies its main properties. + + The style repository type. It can be: Border, Gradient, Image and Layout + The repository name. + The repository key. + + + + Initializes a new instance of the StyleRepository class by using an existigng instance. + + The StyleRepository to be used as a source + + + + Initializes the repository and maps its properties. + + + + + Searches for a specific property setting in the repository. + + The property name to search for. + An instance of + + + + Searches for a specific property setting in the repository. + + The property to search for. + An instance of + + + + Gets or sets the repository type. + + + + + Gets or sets the repository name. + + + + + Gets or sets the repository key. + + + + + Gets a collection containing the repository settings. + + + + + Initializes a new instance of the Theme class. + + + + + Initializes a new instance of the Theme class. + + The name of the theme. + + + + Searches for a StyleGroup based on the control type. + + The control type to search for. + An instance of if successfull. + + + + Searches for a StyleGroup for a specified control. + + The control to search for. + An instance of if successfull. + + + + Searches for a StyleGroup for a specified stylable node. + + The stylable node to search for. + An instance of if successfull. + + + + Searches for a StyleRepository based on its key. + + The repository key to search for. + An instance of if successfull + + + + Relates repositories with style groups. + + + + + Determines whether this theme is compatible with the specified theme name. + + Theme name to compare with. + true if successfull. + + + + Creates a new theme by reading a TSSP file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading an XML file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading a CSS like file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading a CSS like formatted text. + + The text containing a theme in CSS style syntax. + An instance of if successfull. + + + + Creates a new theme by reading a file. The function determines the correct file format by using file extension. + + The file location. + An instance of if successfull. + + + + Creates a new theme by loading it from a resource. The function determines the correct file format by using file extension. + + The assembly to load from. + The location of the resource. + An instance of if successfull. + + + + Creates a new cloned version of the class. + + A new instance of the Theme class + + + + Combines two themes. + + The source theme. + Determines whether to merge repositories. + Determines whether to replace existing styles. + + + + Gets or sets the name of the theme. + + + + + Gets a collection containing the style groups for the theme. + + + + + Gets a collection containing the repositiories for the theme. + + + + + Gets or sets a value indicating whether the theme should be visible at design time. This property value is not serialized. + + + + + Initializes a new instance of the StyleSheet class. + + + + + Applies contained property setting groups, if their conditions are ture. + + The element. + Specifies whether to apply initial condition if the element is in other state. + + + + Gets a collection of the property setting groups for the property setting group. + + + + + Searches for a theme with specific name. + + The theme name to search for. + an instance of if successfull. + + + + Searches for a theme with specific name. + + The theme name to search for. + Sepecifies whether to fallback to control default theme if no other theme is found. + an instance of if successfull. + + + + Adds a new theme to the repository. + + The theme to add. + + + + Adds a new theme to the repository. + + The theme to add. + Specifies whether to replace all matching styles if a theme with the same name exists. + + + + Removes a theme from the repository. + + The theme to remove. + + + + Registers a theme without loading it. + + The theme component to register + + + + Gets or sets the default control theme. + + + + + Gets a list with all loaded themes. + + + + + Gets a list with all theme names that are available. + + + + + Checks is a given element or any of its descendants contain the focus. + + The element. + [true] if the element or any of its children contain focus, [false] otherwise. + + + + This method is used internally. + + + + + + + Clears all resources reserved for the KeyTips functionality + + + + + This method is used internally. + + + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the tool tip + + The tool tip. + + + + Gets or sets the value of how much the tooltip will be moved on the Y coordinate + + + + + Gets or sets the value of how much the tooltip will be moved on the X coordinate + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets value indicating whether the control should show all screen tips under the control client rectangle, as required for the RibbonBar control, for example + + + + + Gets the shortcust collection. + + + + + This property is used internally! + + + + + Gets whether this instance of RadControl is on a active form + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets whether Key Tips (Office 2007 like accelerator keys map) + are used for this specific control. + + + + + Determines whether the mouse over the owning IComponentTreeHandler instance. + + + + + Only RadItem should manipulate this property + + + + + Gets the current selected element (hovered by the mouse). + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + This method is used internally. + + + + + + Fires when hovered element is changed. + + + + Suspends the animated property changes for the control. When animation are suspended property changes still occur but without aniumations. + + + + + Resumes the animated property changes for the conrol. For more info see + + + + + Gets the currently used theme. + + + + + Gets or sets control's preffered theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usage of the control. + + + + + Gets the version of the style applied to this themable element tree. This property is used internally. + + + + + Gets or sets a value indicating whether to fallback to control default theme if the control does not support the current theme. + + + + + Gets value indicating whether the animated property changes are suspended for the control. Also see . + + + + + Represents the method that will handle the + %HoveredElementChanged:HoveredElementChanged% event. + + Initializes the event sender. + Initializes the %event arguments:HoveredElementChangedEventArgs%. + + + + Represents event data for the HoveredElementChanged event. + + + + + Initializes a new instance of the HoveredElementChangedEventArgs class. + + + + + + An interface which provides methods for handling a collection of RadItems. + This interface is used throughout controls which represent a list of items. + + + + + Returns the selected item in the control. + + An reference to a RadItem instance which represents + the currently selected item. + + + + Selects an item in the control. + + A reference to a RadItem instance which + represents the item which is to be selected. + + + + Gets an item from the collection that is next to a certain item. + + The item which neighbour to return. + The direction in which to look for the neighbour. + A reference to a RadItem instance which represents the neighbour item. + + + + Selects an item from the collection that is next to a certain item. + + The item which neighbour to return. + The direction in which to look for the neighbour. + A reference to a RadItem instance which represents the neighbour item. + + + + Gets the first visible item from the collection. + In a IItemsControl that is the first item that is visible on the control. + + A reference to a RadItem instance that represents + the first visible control. + + + + Gets the last visible item from the collection. + In a IItemsControl that is the last item that is visible on the control. + + A reference to a RadItem instance that represents + the last visible control. + + + + Selects the first visible item on the IItemsControl. + + A reference to a RadItem instance that represents the item selected. + + + + Selects the last visible item on the IItemsControl. + + A reference to a RadItem instance that represents the item selected. + + + + Defines whether the IItemsControl can execute navigation + operation based on the keydata provided. + + An instance of the + struct that defines the key command issued. + True if navigation possible, otherwise false. + + + + Defines whether the IItemsControl has an item that + corresponds to the mnemonic passed in the parameter. + + A character that defines the mnemonic command issued. + True if mnemonic can be processed, otherwise false. + + + + Fires when an item has been selected. + + + + + Fires when an item has been deselected. + + + + + Gets a collection containing the items + that are currently active. + + + + + Gets the collection of items associated + with the IItemsControl. + + + + + Gets or sets a boolean value that determines whether + the rollover items functionality will be allowed. + + + + + Gets or sets a boolean value that determines whether + keyboard input will be processed by the IItemsControl. + + + + + Gets the item affected by the operation. + + + + + Represents event data for the ItemUpdated event. + + + + + Initializes a new instance of the ItemUpdatedEventArgs class using the RadItem. + + + + + + Gets the RadItem that is updated. + + + + + Represents a encapsulated implementation of the IItemsControl interface. + + + + + Represents a Win2K+ layered window semantic, which allows for semi-transparent windows. + + + + + Default constructor. + + + + + + + + + + + + + + + + + Provides special handling for the WM_MOUSEACTIVATE, WM_PAINT and WM_NCHITTEST messages. + + + + + + Brings the window on top of the z-order. + + + + + + Sends the window to back of the z-order. + + + + + + Suspends any Layered-related updates for the window. + Useful for multiple properties set-up without sequential update for each property change. + + + + + Resumes previously suspended updates and forces Layered update. + + + + + Resumes previously suspended updates. Optionally preforms Layered update. + + + + + + Displays the window to user using the specified location and current size. + + + + + Performs painting of the window. + Default implementation simply paints the BackgroundImage (if any). + + The graphics to use. + The off-screen bitmap instance the graphics is created from. + + + + Updates the layered window. + + + + + Performs native layered window update, using the Win32 UpdateLayeredWindow API. + + + + + + + + + + + Gets or sets the Image that represents the Layered window. + + + + + Gets the final Bitmap that represents the content of the Layered Window. + + + + + Determines whether window's handle will be re-created upon a Size change. + If the window is large - e.g. 800*600 pixels, + applying new size may cause flicker due to the nature of Layered Windows semantic. + + + + + Determines whether the window is updated (used UpdateLayeredWindow API). + + + + + Gets or sets the Alpha (transparency) value - [0, 1] - for the window. + + + + + Gets the current size used by the window to visualize itself. + + + + + Gets or sets the size of the window. + + + + + Determines whether the window is TopMost (above all floating windows). + + + + + Determines whether the Control is visible for mouse input. + + + + + This class represents a that allows for non-client area modification and paiting. + + + + + This is a helper class which avoids design time error when control design time is opened directly. + + + + + Represents the method that will handle the ScreenTipNeeded event of a RadControl. + + + + + Provides data for the ScreenTipNeeded event. + + + + + Initializes a new instance of the class. + + The item. + + + + Initializes a new instance of the class. + + The item. + The offset. + + + + Gets the item for which the ScreenTipNeeded event occurs. + + The item. + + + + Gets or sets the delay. + + The delay. + + + + Gets or sets the offset. + + The offset. + + + + + + + + + + + Represents the method that will handle the ThemeNameChanged event. + + + Initializes the event sender. + + + Initializes the %event arguments:ThemeNameChangedEventArgs%. + + + + + Represents the event data for the %ThemeNameChanged:ThemeNameChanged% event. + + + + + Represents the old theme name. + + + + + Represents the new theme name. + + + + + Initializes a new instance of the ThemeNameChangedEventArgs class. + + + Initializes the old theme name. + + + Initializes the new theme name. + + + + + Represents the method that will handle the ToolTipTextNeeded event of a RadCOntrol. + + The source of the event. + A ToolTipTextNeededEventArgs that contains the event data. + + + + Provides data for the ToolTipTextNeeded event. + + + + + Initializes a new instance of the class. + + The tool tip. + + + + Initializes a new instance of the class. + + The tool tip. + The tool tip text. + + + + Initializes a new instance of the class. + + The tool tip. + The tool tip text. + The offset. + + + + Gets or sets the ToolTip text. + + + + + Gets or sets the offset from the Cursor.HotSpot + + The offset. + + + + Gets the tool tip. + + + + + Inserts the with duplicates. + + The value. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The source collection view. + + + + Gets the view. + + The source. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + + + + + Gets or sets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the group descriptors. + + The group descriptors. + + + + Gets or sets the filter. + + The filter. + + + + Gets the expression. + + The filter descriptor. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the operator. + + The operator. + + + + Gets or sets the value. + + The value. + + + + Gets the filter expression. + + The filter expression. + + + + Gets a value indicating whether this instance is default filter descriptor of the column + + + true if this instance is default; otherwise, false. + + + + + Gets the expression. + + The filter descriptor. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the date value. + + The date value. + + + + Gets the filter expression. + + The filter expression. + + + + Get or set if the time part of date value should be ignored. + + + + + Passeses the filter. + + The item. + + + + + Suspends event notification. + + + + + Resumes event notification. + + + + + Resumes event notification. + + + + + Defers the refresh. + + + + + + Copies to array. + + The array. + Index of the array. + + + + Loads the data. + + The collection. + + + + Finds the specified item index. + + Index of the item. + The data bound item. + + + + + Searches the Groups collection for a match, using the Keys in the provided group. + + + + + + + Determines whether the specified group is present within this view. + + + + + + + Indexes the of. + + The item. + + + + + Determines whether [contains] [the specified item]. + + The item. + + true if [contains] [the specified item]; otherwise, false. + + + + + Evaluates the specified expression. + + The expression. + The item. + + + + + Evaluates the specified expression. + + The expression. + The start index. + The count. + + + + + Evaluates the specified expression. + + The expression. + The items. + + + + + This method is used internally. + + + + + + + + + Try to evaluate the specified expression. + + The expression. + The items. + Index of item, which the result will be calculated for + Expression result + + + + + This method is used internally. + + + + + Moves the current to. + + The item. + + + + + Moves the current to first. + + + + + + Moves the current to last. + + + + + + Moves the current to next. + + + + + + Moves the current to position. + + The position. + + + + + The core update routine for the current position. + + New position of the current item. + True to raise CurrentChanged regardless of whether actual position change is available. + + + + + Moves the current to previous. + + + + + + Refreshes this data view. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Ensures the index of the page is within the valid pages range. + + + + + Raises the NotifyPropertyChanged event + + + + + + Sets the first page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Sets the last page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Moves to the page after the current page. + + + true if the operation was successful; otherwise, false. + + + + + Requests a page move to the page at the specified zero-based index. + + The zero-based index of the page to move to. + + true if the operation was successful; otherwise, false. + + + + + Moves to the page before the current page. + + + true if the operation was successful; otherwise, false. + + + + + Fires the PageChanging event. Returns the value of the Cancel event argument. + + The new index. + True if the event was canceled, otherwise false. + + + + Fires the PageChanged event. + + + + + Gets or sets the comparer. + + The comparer. + + + + Gets or sets the comparer. + + The comparer. + + + + Gets or sets a value indicating whether [change current on add]. + + true if [change current on add]; otherwise, false. + + + + Gets a value indicating whether this item collection is empty. + + true if this item collection is empty; otherwise, false. + + + + Gets a value that indicates whether the underlying collection provides change notifications. + + + true if this instance is dynamic; otherwise, false. + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Indicates whether string comparisons of data are case-sensitive. + + + + + Gets or sets the filter expression. + + The filter expression. + + + + Gets or sets a value indicating whether filtering will be performed or it will be handled by the user/data source. + + + + + Gets or sets a value indicating whether sorting will be performed or it will be handled by the user/data source. + + + + + Gets a value indicating whether this instance has filter applied. + + + true if this instance has filter applied; otherwise, false. + + + + + Gets a value indicating whether this instance has group applied. + + true if this instance has group applied; otherwise, false. + + + + Gets a value indicating the current version of the view. + + + + + This property is used internally. + + + + + This property is used internally. + + + + + Gets a value indicating whether this instance has sort applied. + + true if this instance has sort applied; otherwise, false. + + + + Gets or sets the current item. + + The current item. + + + + Gets or sets the current position. + + The current position. + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Gets the source collection. + + The source collection. + + + + Gets the sort descriptions. + + The sort descriptions. + + + + Gets the group descriptions. + + The group descriptions. + + + + Provides a callback so that the default filtering expression parser can be substituted. + + + + + Gets a value indicating whether this instance is incremental filtering. + + + true if this instance is incremental filtering; otherwise, false. + + + + + Default callback so that the default filtering expression parser can be substituted. + + + + + Gets the groups. + + The groups. + + + + Gets the default group predicate. + + The default group predicate. + + + + Gets or sets a value indicating whether paging is performed before grouping or vice versa. + + + true if paging is performed before grouping; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Occurs when the IPagedCollectionView.PageIndex has changed. + + + + + Occurs before the IPagedCollectionView.PageIndex is changed. + + + + + Gets a value that indicates whether the IPagedCollectionView.PageIndex value is allowed to change. + + true if the IPagedCollectionView.PageIndex value is allowed to change; otherwise, false. + + + + Gets a value that indicates whether a page index change is in process. + + true if the page index is changing; otherwise, false. + + + + Gets the zero-based index of the current page. + + The zero-based index of the current page. + + + + Gets or sets the number of items to display on a page. + + The number of items to display on a page. + + + + Gets the total number of items in the source collection. + + The total number of items in the source collection, or -1 if the total number is unknown. + + + + Gets the total number of pages with the current page size. + + + + + Gets or sets the comparer. + + The comparer. + + + + Gets the groups. + + The groups. + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Gets the type of the . + + The filter descriptor. + + + + + Creates the descriptor. + + The type. + + + + + + + Creates the descriptor. + + The type. + Name of the property. + Type of the data that will be filtered. + The values. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Converts to the filter descriptor to concrete type + + The type. + The converted instance of + + + + Converts to the filter descriptor to a concrete type. + + The type to which the filter will be converted. + The type of data that will be filtered. + + The converted instance of + + + + + Gets or sets the logical operator. + + The logical operator. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets or sets a value indicating whether [not operator]. + + true if [not operator]; otherwise, false. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the operator. + + The operator. + + + + Gets a value indicating whether this instance contains FilterDescriptor's with different PropertyName. + + + true if any child filters have the same name; otherwise false. + + + + + Gets the filter expression. + + The filter expression. + + + + + + + + + Type is not predefined. + + + + + Between + + + + + Not Between + + + + + Determines whether [contains] [the specified item]. + + The item. + + true if [contains] [the specified item]; otherwise, false. + + + + + Indexes the of. + + The item. + + + + + Evaluates the specified expression. + + The expression. + + + + + Gets the items contained in this group. This method is used internally. + + A list containing group items. + + + + Get the zero-based depth of the Group + + + + + Gets or sets the header. + + The header. + + + + Gets the key of the group. + + The key. + + + + Gets the item count. + + The item count. + + + + Gets the item at the specified index. + + + + + + Gets the parent. + + The parent. + + + + Gets the groups. + + The groups. + + + + This property is used internally. + + + + + Adds the specified property name. + + Name of the property. + The filter operator. + The value. + + + + Indexes the of. + + Name of the property. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Removes the specified property name. + + Name of the property. + + + + + Removes the specified property name. + + Name of the property. + The predicate which determine weather the filter can be deleted. + + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the logical operator. + + The logical operator. + + + + Gets or sets the expression. + + The expression. + + + + Gets the group list contained in this collection. This property is used internally. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Gets or sets the aggregates. + + The aggregates. + + + + Gets or sets the format. + + The format. + + + + Gets or sets the expression. + + The expression. + + + + Gets the group names. + + The group names. + + + + Adds the specified property name. + + Name of the property. + The direction. + + + + Removes the specified property name. + + Name of the property. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + + true if [contains] [the specified property name]; otherwise, false. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Finds all sort descriptors associated with the group descriptors by property name + + Name of the property. + All sort descriptors contained in the group descriptors by the specified propertyName + + + + Finds all sort descriptors associated with the group descriptors by property name + + Name of the property. + if set to true [case sensitive]. + All sort descriptors contained in the group descriptors by the specified propertyName + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the expression. + + The expression. + + + + Used to build groups from indexer + + + + + + Performs the grouping operation for specified items. + + The items. + The level. + The parent. + + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the default group predicate. + + The group predicate. + + + + Gets a value indicating whether [needs refresh]. + + true if [needs refresh]; otherwise, false. + + + + Gets the collection view associated with this builder. + + + + + + + + + + + Evaluates the specified expression. + + The expression. + The item. + + + + + Evaluates the specified expression. + + The expression. + The start index. + The count. + + + + + Sets the view in dirty state. + + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the source collection. + + The source collection. + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + This method is called right befor the event is fired. + + + + + + Raises the PropertyChanging event + + The name of the property + + The value that is goint to be set to the property. + + + + Raises the PropertyChanging event + + The name of the property + true if the event has been canceled, for more information see + + + + Raises the PropertyChanging event. + Note: This method is called even when the notifications are suspended. + + A instance containing event data. + + + + This method is called right before the event is fired. + Note: If is true, this method is not called. + + + + + + General method for setting the value of the field related to the property that is modified. + This method confirms that the old and new values are different, then fires the + event, then sets the given value to the supplied field, + and fires the event. + Note: If the event is canceled, the last two actions are + not performed. + + + + public class MyNotificationsTest : NotifyPropertyBase + { + private int myInt = 0; + private int myInt2 = 0; // + + public int AsInt + { + get + { + return this.myField; + } + set + { + if (SetProperty("AsInt", ref this.myInt, value)) + { + // perform additional actions when new value is set to myInt. + } + } + } + + public int AsInt2 + { + get + { + return (float)this.myInt2; + } + set + { + // The following property setter is the same as the previous one. + if (this.myInt2 != value) + { + PropertyChangingEventArgs2 ea = new PropertyChangingEventArgs2("AsInt2", value); + OnPropertyChanging(ea); + + if (!ea.Cancel) + { + this.myInt2 = (int)ea.Value; + OnPropertyChanged("AsInt2"); + + // perform additional actions when new value is set to myInt2. + } + } + } + } + } + + + The two setter implementations are identical. If you require to perform some actions before + the event is fired, you can use the second implementation, or, + a better solution is to override the method and place + the code there. + The type of the field that is to be modified. + The name of the property, that will appear as propertyName in the and event args. + The field, that is related to the property. + The value that is to be set to the field in case the event is not being Canceled. + true if new value is being set + + + + Occurs when a property of an object changes. + + + + + Occurs before a property of an object changes. + + + + + Sets the last page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Gets or sets the sort comparer. + + The comparer. + + + + Gets or sets the group comparer. + + The group comparer. + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the default group predicate. + + The default group predicate. + + + + Gets or sets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Refreshes this instance. + + + + + Resets this instance. + + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + if set to true [notify updates]. + + + + Adds the new. + + + + + + Adds the created item to ListSource. + + + + + + Moves the specified item. + + The old index. + The new index. + + + + Raises a CollectionChanged notification with action ItemChanging. Must be paired with the NotifyItemChanged method. + + + + + + Raises a CollectionChanged notification with action ItemChanged. Must be paired with the NotifyItemChanging method. + + + + + + Raises a CollectionChanged notification with action ItemChanging. Must be paired with the NotifyItemChanged method. + + + + + + + Raises a CollectionChanged notification with action ItemChanged. Must be paired with the NotifyItemChanging method. + + + + + + + Returns the that represents the properties on each item used to bind data. + + An array of objects to find in the collection as bindable. This can be null. + + The that represents the properties on each item used to bind data. + + + + + Returns the name of the list. + + An array of objects, for which the list name is returned. This can be null. + The name of the list. + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + + + The is read-only. + + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + + + The is read-only. + + + + + Adds an item to the . + + The object to add to the . + + The is read-only. + + + + + Used internally by the design time property editor. + + + + + Removes all items from the . + + + The is read-only. + + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies the elements of the to an , starting at a particular index. + + The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. + The zero-based index in at which copying begins. + + is null. + + + is less than 0. + + + is multidimensional. + -or- + is equal to or greater than the length of . + -or- + The number of elements in the source is greater than the available space from to the end of the destination . + -or- + Type T cannot be cast automatically to the type of the destination . + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + + The is read-only. + + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Gets or sets the position. + + The position. + + + + Gets the current. + + The current. + + + + Gets the collection view. + + The collection view. + + + + Gets or sets the name of the list or table in the data source for which the is bound. + + + + + Gets or sets the data source of the . + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Occurs when a property value changes. + + + + + Gets or sets the item at the specified index. + + + + + + Gets a value indicating whether the is read-only. + + + true if the is read-only; otherwise, false. + + + + + Determines whether this instance is in a Begin/End update block. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Raises the event. + + Name of the property. + The old value. + The new value. + Returns [TRUE] If the events is not canceled, otherwise [FALSE]. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the direction. + + The direction. + + + + Gets or sets the owner. + + The owner. + + + + Adds the specified property name. + + Name of the property. + The direction. + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Indexes the of. + + Name of the property. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Removes the specified property name. + + Name of the property. + + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the expression. + + The expression. + + + + Represents a new item's data. + + + + + Initializes a new instance of the NewItemData class. + + + + + Gets an implementation + which is owned by this component. This method is used + by the ThemeNameEditor to prefilter + the available themes for the current component. + + An implementation which + is owned by this . + + + + Gets or sets the theme name of the component. + + + + + + + + + + + + + + Represents a item's edit text attribute. + + + + + Represents a new item attribute. + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + + + Gets a string representing the new item text. + + + + + Gets a value indicating whether the item should be editable. + + + + + Gets a value indicating whether a glyph should be added. + + + + + Gets a value indicating whether a verb should be added. + + + + + + + + RadPropertyDefaultValueAttribute constructor + + The name of the property which provides the default value. + Type of the object that ownes the RadProperty which provides the default value. + + + + Attribute that can be applied to hide a class when searching for possible new-item-types when a RadControl + is in design mode + + + + + A dummy ISite implementation, which provides support for custom services. + + + + + Represents a dependency between two properties. + Used by a RadObject to bind a RadProperty to an external one and always use its value. + The binding may be also two-way, in which special case the bound property updates its source. + + + + + Initializes a new instance of the RadPropertyBinding class. + + + + + + + + + + + + + + + Updates the binding source property. + + + + + + Gets the binding source. + + + + + Represents an object which property is bound to some other object's property. + Stores the object itself and its bound property. Used internally by the DPS to notify + bound objects for a change in a binding source property. + + + + + Stores all the information needed for composing a RadProperty's value for a given object. + + + + + Internal constructor used to store existing property state. + + + + + + Resets all references - such as binding references and property modifiers. + + + + + Restores the state of this property using the provided source. + + + + + + Registers an object which is bound to this property value. + + + + + + Gets the current value and optionally forces re-evaluation. + + + + + + + Removes previously registered bound object. + + + + + + Notifies all bound objects for a change in this property. + + + + + Forces value composition, using default precedence order. + + + + + Resets the state of the inherited value. + + True if the property needs re-evaluation, false otherwise. + + + + Applies the specified value as local and forces current value re-evaluation. + + + + + + Applies the specified value as local and forces current value re-evaluation. + + + + + + Applies the specified animation and forces current value re-evaluation. + + + + + + Applies the specified style setting and forces current value re-evaluation. + + + + + + Applies the specified binding and forces current value re-evaluation. + + + + + + Determines whether the specified object is already bound. + + + + + + + Begins an update operation. + + Value composition will be locked. + Specifies that we are currently applying new value. + + + + Registers the provided value as a default for the property. + + + + + + Assigns the specified value and source as current. + Internally checks for possible coersion. + + + + + + + Retrieves the default value for the property. + Custom value may be defined, using the DefaultValueCallback + + + + + + Sets a new style version for this property value. This method is used internally. + + The new version + + + + Determines whether we have objects already bound to this property. + + + + + Determines whether current value composition is currently locked. + + + + + Determines whether we are in a process of updating a modifier. + + + + + Gets the index of the associated RadProperty. + + + + + Gets the current value for the property. + + + + + Gets the local value for this property. + + + + + Gets the value which is set through a two-way property binding. + This value has higher priority that the local one. + + + + + Gets the property binding relation for this property. + + + + + Gets the animation setting (if any) for this property. + + + + + Gets the current style setting for the property. + + + + + Gets the current animated value. + + + + + Gets the source of the current value. + + + + + Gets the Metadata associated with this property for the current owner. + + + + + The current value is forced to some custom value by a Coerce callback. + + + + + Gets the custom default value associated with this property. + + + + + Determines whether the current local value (if any) is set at design-time. + + + + + Gets the current style version + + + + + Allows RadObject inheritors to replace RadProperty instances with another one. + + + + + + + Represents a storage for RadPropertyValue entries, which are accessed by their GlobalIndex property. + + + + + Resets all properties with local values. This method is used internally. + + + + + This method is used internally. + + + + + Used to resolve Telerik types + + + + + Gets or sets value indicating whether the TypeResolver should look up types in the calling assembly only. + This option (if set to true) is very usefull particularly in the case when all the assemblies of the application, including the + Telerik assemblies are merged into a single assembly. + + + + + Gets or sets value indicating the search pattern for assembly in the domain that contains the types referenced in RadControls theme files. + + By default the types referencd in theme files are contained in assemblies with the name "Telerik" + + + + + + Gets or sets value indicating the version of the assembly specified in TypeResolverAssemblyName + + + + + Gets the only instance of the resolver. + + + + + Exposes the ImageList property. All classes that implement this interface + provide an image list. + + + + + Gets the image list. + + + + + Initializes a new instance of the CommandBase class. + + + + + Initializes a new instance of the CommandBase class using command name. + + + + + + Initializes a new instance of the CommandBase class. + + + + + + + Retrieves a text representation of the instance. + + + + + + Executes the command. + + + + + Executes the command with the given settings. + + + + + + + + + + + + + + + + + + Gets or sets the command name/ + + + + + Gets or sets the command type. + + + + + Represents per-thread static instance of special RadControl, which may be used for explicit measure of RadElement instance. + This functionality is required for example in the RadComboBox, when we need to calculate the size of the drop-down before it is displayed. + + + + + Gets the element's desired size, using the specified available. + + + + + + + + Gets the instance of the measurement tree (valid per UI thread) + + + + + Represents a collection which stores RadElement instances + and is sorted by ZIndex property of each element. + + + + + The collection gets notified for a change in the ZIndex of the specified property. + + + + + + The collection gets notified for a change in the Visibility property of the specified element. + + + + + + Puts the specified element at the beginning of the collection + + + + + + Puts the specified element at the end of the collection + + + + + + Finds the insert index for the specified element. + Since the collection is sorted by each element's Z-index, + we perform a binary search to determine at which position the element should be inserted. + + + + + + + Compares two elements by their z-index first + and if they equals, the index in their Parent collection is used. + + + + + + + + Gets the count of all elements, which visibility is not ElementVisibility.Collapsed. + + + + + + + + + + Indicates that an insert operation will commence. + + + + + Indicates that an insert operation is performed. + + + + + Indicates that a remove operation will commence. + + + + + Indicates that a remove operation is performed. + + + + + Indicates that an item is going to be set + + + + + Indicates that an item is set + + + + + Indicates that the items will be cleared + + + + + Indicates that the items are cleared + + + + + Indicates that the items will be sorted + + + + + Indicates that the items are sorted + + + + + Indicates that a number of items were added to the collection via the AddRange method + + + + + Represents the method that will handle the %ItemChanged:ItemChanged% event. + + + + + + + + + A collection that stores objects. + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + Retrieves an array of the items in the collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Defines the order in which border lines are drawn. + + + + + Defines the options used by CheckPrimitive check box + + + + + Indicates XP check primitive style. + + + + + Indicates Vista check primitive style. + + + + + Indicates Mac check primitive style. + + + + + Indicates empty check primitive. + + + + + Indicates Windows8 check primitive style. + + + + + + + + + + + + + + + + + + + + Normalize the value of the function's argument + to ensure the correct overload is matched. + + + + + + + + + + + + -1: value1 < value2 + 0: value1 = value2 + 1: value1 > value2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Escapes the name. + + The name. + + + + + Escapes the LIKE value. + + The value without wildcards. + + + + + Escapes the filtering value. + + The value without wildcards. + + + + + + + + + + + + + + + + + + + + Set or get default expression context class, which will be used for determinating the expression functions. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Use for all op except And, Or, In, Is and IsNot + + if false to stop processing the op and return the retValue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Encapsulates common mothods related with Control Tree. + + + + + Brings the window on top of the z-order. + + + + + + + Sends the + + + + + + + Forces the non-client area of the specified Control instance to be re-evaluated. + + + + + + + Determines whether the specified Child is contained within the specified Parent's Control Tree. + + + + + + + + Gets the Control instance that currently contains the Keyboard focus. + + + + + + Determines whether the specified ControlStyle is applied to the provided control. + + + + + + + + Sends a WM_SETREDRAW message to the control, preventing any paint operation afterwards. + + + + + + Resumes Control's painting, previously suspended by a BeginUpdate call. + + + + + + + Enumerates the Control tree, starting from the provided parent as a root, + and collects all the child controls that match the specified filter. + + + + + + + + + Gets the Control of type T that is descendant of the specified parent and is anchored to the specified current T instance. + + A Control of Type T. + The parent control, which descendants are to be examined. + The current T instance to start the search from. + True to perform depth-first traversal of the Control Tree, false to look-up direct children only. + True to search for a T instance that is next to the current specified one, false to search for a T instance that is previous to the current specified one. + True to start the search from the beginning when end of the search is reached. + + + + + Gets the first Control of Type T, which is descendant of the specified Parent. + + + + + + + + + Gets the last Control of Type T, which is descendant of the specified Parent. + + + + + + + + + Collects all child controls of given type. + + + + + + + + + Enumerates all child controls of the specified parent and optionally traverses the entire tree using Depth-first approach. + + + + + + + + Enumerates all child controls of the specified parent and optionally traverses the entire tree using Depth-first approach. + + + + + + + + + Searches up the parent chain of controls, looking for an ancestor of the specified type. + + + + + + + + Searches down the control tree, using breadth-first approach, for a descendant of the specified type. + + + + + + + + Provides common helper methods related with image manipulation. + TODO: Should be moved to base assembly, making it accessible for all Telerik Assemblies. + + + + + Crops recatnalge from image + + An instance of . + An instance of + Cropped image with the size of cropped rectangle + + + + Encapsulates common functionality related with reflection-based operations such as Cloning, Field Copying, etc. + + + + + Copies all the fields, which are not marked by the [NonSerialized] attribute and are not Delegate instances, + from the source object to the target one. Reference type fields will be copied by reference rather than cloned. + + + + + + + + Creates a new instance of type T and copies its fields from the provided source instance. + Reference type fields will be copied by reference rather than cloned. + + + + + + + + An extended interface that supports some additional notifications sent by the ReflectionHelper. + + + + + The instance gets notified for a field copy process. + + + + + The instance gets notified for a clone complete process. + + + + + Defines helper methods for manipulating assembly resources. + + + + + Creates a new Image instance from the specified embedded resource for the specified type. + + + + + + + + Creates a new Cursor instance from the specified embedded resource for the specified type. + + + + + + + + Get bounding rectangle arround rotated one. + + Rectangle that is to be rotated + + Returns the bounding rectangle around the rectangle + that is rotated according to the given matrix + + + + Gets the color of the pixel at the specified location on the screen. + + The location in screen coordinates to get the color for. + The color of the pixed at the specified location. + + + + Converts a key to string taking into account the currently selected keyboard leyout. + + The key to convert. + The string mapped to the provided key. + + + + Defines possible reasons for a Reset notification from RadCollectionView. + + + + + Entire data has changed. + + + + + Reset has been initiated by a change in collection's filtering logic. + + + + + Reset has been initiated by a change in collection's grouping logic. + + + + + Reset has been initiated by a change in collection's sorting logic. + + + + + Reset has been initiated by a change in collection's paging logic. + + + + + This interface gives the ability to create reusable providers for VisualElements + that are in some relation with logical data objects. + + + + + + + Create element using the pased data + + Logical data that will be used to initialize the element. + The newly created element if everything is OK; null on error. + + + + Cleans up when an element that is created with CreateElement() is no longer necessary. + + + + + + Initialize already created element with logical data (if possible). + + the element to be initilaized + with this data the given element should be initialized + false if the element cannot be initialized with the given data + + + + Check if an element can be initialized with some logical data. + + + + true if the lement can be initialized with the data. + + + + Describes the action that caused a CollectionChanged event. + + + + + One or more items were added to the collection. + + + + + One or more items were removed from the collection. + + + + + One or more items were replaced in the collection. + + + + + One or more items were moved within the collection. + + + + + The content of the collection changed dramatically. + + + + + The collection has been updated in a batch operation. + + + + + An item in the collection is about to change. + + + + + An item in the collection has changed. + + + + + Provides data for the CollectionChanged event. + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a Reset change. + + The action that caused the event. This must be set to Reset. + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change or a reset change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + + Initializes a new instance of the class. + + The action. + The new item. + The old item. + The index. + Name of the property. + + + + Gets the name of the changed property when the Action is ItemChanged. + + + + + Provides data for the CollectionChanged event. + + + + + Gets the reason for a Reset notification. + + + + + Gets the list of new items involved in the change. + + + + + Gets the index at which the change occurred. + + + + + Gets the list of items affected by a Replace, Remove, or Move action. + + + + + Gets the index at which a Move, Remove, ore Replace action occurred. + + + + + Represents the method that handles the CollectionChanged event. + + The object that raised the event. + Information about the event. + + + + Provides data for the CollectionChanging event. + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a Reset change. + + The action that caused the event. This must be set to Reset. + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item change or a reset change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item Replace change. + + + + + + + + + Provides data for the CollectionChanging event. + + + + + Gets the property arguments when property changing has been fired. + + The property arguments. + + + + Gets the list of new items involved in the change. + + + + + Gets the index at which the change occurred. + + + + + Gets the list of items affected by a Replace, Remove, or Move action. + + + + + Gets the index at which a Move, Remove, ore Replace action occurred. + + + + + Represents the method that handles the CollectionChanging event. + + The object that raised the event. + Information about the event. + + + + Represents the method that will handle the Telerik.WinControls.Interfaces.INotifyPropertyChanging.PropertyChanging + event of an Telerik.WinControls.Interfaces.INotifyPropertyChanging interface. + + The source of the event. + A System.ComponentModel.PropertyChangingEventArgs that contains the event data. + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Encapsulates the data, associated with the IShortcutProvider.OnShortcut callback. + + + + + Gets the control that is currently focused and which will receive the keyboard event. + + + + + Gets the shortcut that is triggerred. + + + + + Determines whether the event is handled. If true, the keyboard message will not be dispatched to the focused control. + + + + + Gets an array with the currently collected key strokes. + + + + + Describes a combination of keys that may be used as a shortcut to RadItem.PerformClick method or any other arbitrary command. + + + + + Default constructor. Initializes an empty RadShortcut instance. + + + + + Initializes a new RadShortcut instance, using the specified modifiers and key mappings. + + + + + + + Determines whether the specified Keys are part + + + + + + + + Determines whether the specified Keys are part of a shortcut combination. + E.g. if we have a key mapping CTRL+M+O and the provided keys are CTRL+M, the method will return true. + + + + + + + + Determines whether the specified key is present in the RadDockShortcut KeyMappings list. + + + + + + + Gets the human-readable represention of the current key settings. + + + + + + Gets a list with all the Keys that form the shortcut combination. + E.g. we may have M+O and a Modifier CTRL, then the valid shortcut will be CTRL+M+O + + + + + Gets or sets the Keys value that describes the modifiers for the shortcut. + + + + + Determines whether the Control modifier key is applied. + + + + + Determines whether the Alt modifier key is applied. + + + + + Determines whether the Shift modifier key is applied. + + + + + Gets a human readable string representation of the collection. + + + + + + Gets the IShortcutProvider instance that owns this collection. + + + + + Gets the count of all shortcut providers currently registered with this instance. + + + + + Represents layout container which implements column and row span and different column and row sizing modes - proportional, fixed, and auto. + + + + + Represents a base class for all layout panels. Layout panels are RadElements. + They are the elements in the control tree responsible for the layout of primitives. + Layout panels determine the position and size of the primitives inside them. + Because panels are RadElements, panels can be nested thus providing an + arbitrary complex layout. + + + + + This constant is used internally. + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Creates new instance of GridLayout. + + + + + Creates new instance of GridLayout. + + Number of columns. + Number of rows. + + + + Gets or sets the columns of the layout container. + + + + + Gets or sets the rows of the layout container. + + + + + GridLayout sizing type options. + + + + + Represents GridLayout column. + + + + + Represents base class for GridLayout element. + + + + + Represents GridLayout row. + + + + + scrol to line + + line index to scrool - zero besed + + + + Scroll to element + + + + + + how many lines we have + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + which is the current line + + + + + This class is used as a base class for all Localization Provider classes + used in RadControls. + + + + + Creates a default localization provider. + + A new instance of the default localization provider. + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + Fires when the current localization provider has changed. + + + + + Gets or sets the current localization provider. + + + + + Gets a CultureInfo object corresponding to the current localization provider. + + + + + Represents a light-weight 3*3 Matrix to be used for GDI+ transformations. + + + + + Initializes a new RadMatrix, using the specified parameters. + + + + + + + + + + + Copy constructor. + + + + + + Initializes a new RadMatrix, using the elements of the specified GDI+ Matrix instance. + + + + + + Initializes a new RadMatrix, applying the specified X and Y values as DX and DY members of the matrix. + + + + + + Initializes a new RadMatrix, scaling it by the provided parameters, at the origin (0, 0). + + + + + + + Initializes a new RadMatrix, scaling it by the provided parameters, at the specified origin. + + + + + + + + Initializes a new RadMatrix, rotated by the specified angle (in degrees) at origin (0, 0). + + + + + + Initializes a new RadMatrix, rotated by the specified angle (in degrees) at the provided origin. + + + + + + + Determines whether the current matrix is empty. + + + + + Determines whether this matrix equals to the Identity one. + + + + + Gets the determinant - [(M11 * M22) - (M12 * M21)] - of this Matrix. + + + + + Determines whether this matrix may be inverted. That is to have non-zero determinant. + + + + + Gets the scale by the X axis, provided by this matrix. + + + + + Gets the scale by the Y axis, provided by this matrix. + + + + + Gets the rotation (in degrees) applied to this matrix. + + + + + Gets all the six fields of the matrix as an array. + + + + Represents shadow settings. + + + + Initializes a new instance of the ShadowSettings class using point and + shadow color. + + + + Initializes a new instance of the ShadowSettings class. + + + Gets or sets the shadow depth. + + + Gets or sets the shadow color. + + + + Specifies arrow directions for the arrow primitive: Up, Right, Down, and + Left. + + + + + Indicates left pointed arrow. + + + + + Indicates up pointed arrow. + + + + + Indicates right pointed arrow. + + + + + Indicates down pointed arrow. + + + + + Represents the BoxLayout class + + + + + Registers the Proportion dependancy property of BoxLayout + + + + + Registers the Orientation dependancy proeprty of BoxLayout + + + + + Registers the StripPosition dependancy property of BoxLayout + + + + + Gets the proportion based on a given element + + The element which proportion will be get. + The proportion value. + + + + Sets the proportion (attached property) of a given element. + + The element which proportion will be set. + The proportion value. + + + + Handles the properties values changes of BoxLayout + + + + + + measures the size to layout the children + + + + + + + arranges the children by a given criteria + + + + + + + Gets or sets strip orientation - it could be horizontal or vertical. + + + + + represents StripPosition enumeration + + + + Adds a delegate to the list. + The object that owns the event. + The delegate to add to the list. + + + Removes a delegate from the list. + The object that owns the event. + The delegate to remove from the list. + + + Raises the specified event. + The object that owns the event. + An that contains the event data. + + + + Gets or sets whether the rollover items functionality of the RadItemsControl will be allowed. + + + + + Gets or sets whether the RadItemsControl processes the keyboard. + + + + + Represents the method that will handle the + RadPropertyChange event. + + + + + Represents a click command. + + + + + Exposes the Items property for accessing a collection of the items in a + combobox. + + + + + Gets a collection representing the collection of the items contained + in this ComboBox. + + + + Defines the border rendering style. + + + + All four borders share same customization, using gradient, regarding parent element's shape. + + + + + Each of the four borders and their "shadow" colors can have disparate customization. Note that shape and gradient would NOT be applied. + + + + + Draw inner and outer gradient borders, regarding parent element's shape. Inner and outer borders would share the specified border width. + + + + + Defines the options used by RadElement.GetChildren(options) method. + + + + + Indicates that all children are returned. + + + + + Indicates that children are returned sorted according to their z-index. + + + + + Indicates that children are returned in reverse order. + + + + + Indicates that collapsed children are included. + + + + + Indicates that only children, which visibility is ElementVisibility.Visible, are included. + + + + + Defines the sorting style of items in a control. + + + + + Indicates ascending sorting. + + + + + Indicates descending sorting. + + + + + Indicates no sorting. + + + + + Defines the click modes. + + + + + Indicates that the mouse is released. + + + + + Indicates that the mouse is pressed. + + + + + Indicates that the mouse hovers. + + + + + Defines the drop down style used by RadComboBox. + + + + + Indicates that the text area is editable. + + + + + Indicates that the text area cannot be edited. + + + + + Defines element's visibility. + + + + + Indicates that the element is visible. + + + + + Indicates that the element is hidden. + + + + + Indicates that the element is collapsed. + + + + + Indicates how the image is scaled. ImageScaling members are None and + SizeToFit. The latter fits the image to the parent size. + + + + + + + + + Defines the progress bar orientation. + + + + Indicates top orientation. + + + + + Indicates bottom orientation. + + + + + Indicates left orientation. + + + + + Indicates right orientation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Defines the life cycle of a RadElement instance. + + + + + The element is in its initial state. + + + + + The element is in a process of being constructed. + + + + + The element is already constructed but not loaded yet. + + + + + The element is loading. That is it is initializing on the owning control. + + + + + The element is prepared for visualizing. + + + + + Special state, indicating that the element has been loaded once and removed from the element tree. + + + + + The element is in a process of being disposed of. + + + + + The element is already disposed of. + + + + + Defines separators orientation. + + + + + Indicates Verical separators orientation. + + + + + Indicates Horizontal separators orientation. + + + + + Indicates Custom separators orientation. + + + + + Defines the toggle states. Toggle states are used in RadToggleButton. + + + + + Indicates off state. + + + + + Indicates on state. + + + + + Indicates a third state for the toggle button - indeterminate. + + + + + Initializes a new instance of the Formatter class. + + + + + Exposes methods and properties for e hierarchical items such as + RadMenuItem. + + + + + Gets or sets the item's owner. + + + + + Gets a value indicating whether the item has children. + + + + + Gets a value indicating whether the item is the root element if the + hierarchy. + + + + + Gets or sets the item's parent. + + + + + Gets the root item of this item's hierarchy. + + + + + Gets the next item. + + + + + Gets the previous item. + + + + + Initializes a new instance of the ChordMessageFilter class. + + Instance of the ChordMessageFilter class + + + + Filters out a message before it is dispatched. + + + Use PreFilterMessage to filter out a message before it is dispatched to a control or form. + For example, to stop the Click event of a Button control from being dispatched to the control, + you implement the PreFilterMessage method and return a true value when the Click message occurs. + You can also use this method to perform code work that you might need to do before the message is + dispatched. + + The message to be dispatched. You cannot modify this message. + true to filter the message and stop it from being dispatched; false to allow the message to continue to the next filter or control. + + + + Calculates the character code of alphanumeric key of the Keys enum instance + + An instance of the Keys enumaration + The character code of the alphanumeric key + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Represents the state of the modifier keys (SHIFT, CTRL, and ALT) in a + Chord. + + + + + Initializes a new instance of the ChordModifier using data + provided by Keys input. + + + + + Initializes a new instance of the ChordModifier using explicit + setting for every property. + + + + + Initializes a new instance of the ChordModifier using data + provided by another instance. + + + + + Initializes a new instance of the ChordModifier class with + default settings. + + + + + Updates a ChordModifier instance based on a Keys input value + + ChordModifier instance to update + Keys input value + ChordModifier instance with updated states + + + + Creates new ChordModifier instance based on a Keys input value + + Keys input value + ChordModifier instance + + + + Removes all data from the ChordModifier. + + + + + Compares this instance to a specified object or ChordModifier and returns an indication of their relative values. + + + A signed number indicating the relative values of this instance and + value. +
+ + + + Return Value + + + Description + + + + + Less than zero + + + This instance is less than + value. + + + + + Zero + + + This instance is equal to + value. + + + + + Greater than zero + + + This instance is greater than + value. + -or- + value is a null reference + (Nothing in Visual Basic). + + + +
+

Collapse imageExceptions

+
+ + An object to compare, or a null reference (Nothing in Visual + Basic). + +
+ + + Raises the PropertyChanged event + + The name of the property + + + + Gets a value indicating if any of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state. + + + + + Gets a value indicating if the SHIFT modifier key is in a pressed state. + + + + + Gets a value indicating if the CTRL modifier key is in a pressed state. + + + + + Gets a value indicating if the ALT modifier key is in a pressed state. + + + + + Notifies clients that a property value has changed. + + + + + Represents a base class for all container controls - + controls that contain other controls. + + + + + Initializes a new instance of the ContainerControlBase class. + + + + Adds a delegate to the list. + The object that owns the event. + The delegate to add to the list. + + + Removes a delegate from the list. + The object that owns the event. + The delegate to remove from the list. + + + Raises the specified event. + The object that owns the event. + An that contains the event data. + + + + Raises the BorderStyleChanged event. + + An EventArgs that contains the event data. + + + + Overrides Control.CreateControlsInstance. + + A new instance of ContainerControlBase.ContainerTypedControlCollection assigned to the control. + + + Raises the event. + A containing the event data. + + + Sets the value of the specified property. + The property whose value to set. + An object representing the value to assign to the property. + + + Retrieves the value of the specified property. + The property whose value to retrieve. + + + Removes the specified property from the properties collection. + The property to remove. + + + Retrieves a boolean value indicating if the specified property has been explicitly set. + The property to evaluate. + + + + Occurs when the value of the BorderStyle property has changed. + + + + + Encapsulates the information needed when creating a control. + + + + + Specifies the border style for a control. + + + + + Gets the space, in pixels, that is specified by default between controls. + + + + + Gets the internal spacing, in pixels, of the contents of a control. + + + + + this is the statistical weight of the container which is taken into account + when the contaner participates in a layout chain. + + + + + + + + Represents the method that will handle the + Activate event. + + + + + Represent a chord. + + + + + Initializes a new instance of the Chord class. + + + + + Initializes a new isntance of the Chord class using a list of keys. + + + + + + Initializes a new instance of the Chord class using a list of keys + and %chord modifier:Telerik.WinControls.Keyboard.ChordModifier%. + + + + + + + Initializes a new instance of the Chord class using a string of keys. + + + + + Clears the chord. + + + Retrieves the string representation of the instance. + + + Processes the modifiers. + + + + + + + + + Compares two instance for equality. + returns 0 if equal, a positive number if the first is greater than the + second, and a negative number otherwise. + + + + + + Gets or sets a list of keys in this instance. + + + Gets or sets the keys in this chord. + + + Gets the modifier strings. + + + Gets the chord keys. + + + Gets or sets the chord modifier. + + + + Represents keyboard shortcuts. + + + + Initializes a new instance of the Shortcuts class. + + + Initializes a new instance of the Shortcuts class. + + + + Adds the command bindings. + + + + + + Adds command bindings. + + + + + + Adds commands bindings. + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when a shortcut is activated. + + + + + Gets the input bindings. + + + + + Represents a mouse timer. + + + + + Represents a property. Supports telerik dependency properties system by + encapsulating a property of a certain RadElement instance. + + + + + Gets the hashcode of the Name string. Pre-computed for faster dictionary operations. + + + + + One-way binding + + + + + Two-way binding. Both source and target objects can modify the current value. + + + + + No notifications are raised for the bound object. + + + + + Binding value is preserved as local upon unbind. + + + + + Supports methods for bound properties of two instances. + + + + + Supports methods for general binding of properties of two + instances. + + + + + Initializes a new instance of the RadPropertyBinding class. + + + + + + + + + + + + + + + + + + + + + + Reset the bound properties + + + + + Updates the binding source property. + + + + + + + Gets the binding source. + + + + + Supports metadata for each class inherited from + + + + + Represents a property key. + + + + + Singleton. + + + + + Represents metadata for a RadProperty. RadPropertyMetadata describes the property. + For example, through DefaultValue property you can get or set the default value + for the property. + + + + Initializes a new instance of the RadPropertyMetadata class. + + + Initializes a new instance of the RadPropertyMetadata class using the default value of the property. + + + + Initializes a new instance of the RadPropertyMetadata class using a property + changed callback. + + + + + Initializes a new instance of the RadPropertyMetadata class using an object + and a property changed callback. + + + + Gets a value indicating whether the property is read-only. + + + Gets or sets the default value of the property. + + + Gets or sets a value indicating whether the property is inherited. + + + + Gets or sets the PropertyChangedCallback + + + + + Represents element's layout data. + + + + + Initializes a new instance of the ElementLayoutData class from + the element and its PerformLayoutType. + + + + + + + Gets or sets the element. + + + + + + + + + + + + + + + Represents an item that contains external control. There is no limitation for the control type - could + be any descendant of the class Control. + + + + + This constant is used internally. + + + + + Updates the visibility, which is bound to the item's current IsVisible state, of the hosted control. + + + + + Gets the instance of the hosted control. + + + + + Gets or sets whether the mouse and keyboard messages from the hosted control + can be routed to the owner control. + + + + You can use ElementTree.Control to get + the owner control. + + + To get the hosted control use HostedControl + property. + + + + + + Gets or sets the CausesValidation property of the hosted + control. + + + Using this property is equivalent to using + HostedControl.CausesValidation + + + + + Gets or sets a value that determines whether the control should be clipped when it requires more space than available. + + + + + Corresponds to the hosted control's Validated event + + + + + Corresponds to the hosted control's Validating event + + + + + Occurs when the element recieves focus. + + + + + Occurs when the element loses focus. + + + + + Defines the display style of an item. + + + + + Specifies that neither image nor text is rendered. + + + + Specifies that only text is rendered. + + + + Specifies that only an image is rendered. + + + + + Specifies that both an image and text are to be rendered. + + + + + Defines the gradient effects: Solid, Linear, + Radial, Glass, OfficeGlass, Gel, and Vista. + + + + + Indicates that no gradient effect is used. + + + + + Indicates that linear gradient effect is used. + + + + + Indicates that radial gradient effect is used. + + + + + Indicates that glass gradient effect is used. + + + + + Indicates that OfficeGlass gradient effect is used. + + + + + Indicates that OfficeGlassRect gradient effect is used. + + + + + Indicates that gel gradient effect is used. + + + + + Indicates that vista gradient effect is used. + + + + + Defines properties for the box-model; Elements are nodes of a tree, and a + rectangular box is generated for each element. + + + + Gets or sets a value indicating the box width. + + + Gets or sets a value indicating the left width. + + + Gets or sets a value indicating the top width. + + + Gets or sets a value indicating the right width. + + + Gets or sets a value indicating the botton width. + + + Gets a value indicating the offset. + + + Gets a value indicating the border size. + + + Gets a value indicating the horizontal width. + + + Gets a value indicating the vertical width. + + + + Defines methods and properties for a calapsible element. For example, + RadRibonBarChunk is a collapsible element. + + + + + Expands the element. + + + + + Collapses the element. + + + + + Gets or sets a value indicating the expanded size of the element. + + + + + Gets the max number of steps needed for collapsing the collapsible element. + + + + + Gets the current collapse step for the collapsible element. + + + + Defines properties and methods for the default layout engine. + + + Retrieves parent's padding. + + + Retrieves check size structure. + + + Sets coerced size taken as parameter. + + + Gets the face rectangle. + + + Invalidates layout - needs redrawing. + + + + + + + + + Retrieves a value indicating whether the element is valid wrap element. + + + Performs registered suspended layout. + + + Retrieves transformation point. The point is a Point structure. + + + Retrieves transformation by alignment point using size and inner bounds. + + + Retrieves Border offset. + + + Retrieves border size. + + + Retrieves the border size of its child. + + + Invalidates the cached border. + + + Gets a value indicating the available size. + + + + Represents a panel with two children an image element and a text element + + + + + Gets or sets a value indicating the image alignment. + + + + + Gets or sets a value indicating text alignment. + + + + + Gets or sets a value indicating the TextImageRelation: ImageAboveText, ImageBeforeText, Overlay, TextAboveImage, and TextBeforeImage. + + + + + Gets or sets a value indicating the DisplayStyle: None, Image, Text and ImageAndText. + + + + + Content within a user interface is often larger than the visible area that + the user can see. Large Telerik elements can be put in scroll viewer in order to + scroll their content in small visible area. + + Every element that support scrolling must implement this interface. Currently + only class RadScrollViewer implements this interface and all + Telerik elements that can be scrolled inherit that class. + + + + + + Scrolls down within viewport by one logical unit. + + + + + Scrolls left within viewport by one logical unit. + + + + + Scrolls right within viewport by one logical unit. + + + + + Scrolls up within viewport by one logical unit. + + + + + Scrolls down within viewport by one page. + + + + + Scrolls left within viewport by one page. + + + + + Scrolls right within viewport by one page. + + + + + Scrolls up within viewport by one page. + + + + + Scrolls vertically to the beginning of the content. + + + + + Scrolls vertically to the end of the content. + + + + + Scrolls horizontally to the beginning of the content. + + + + + Scrolls horizontally to the end of the content. + + + + + Scrolls both horizontally and vertically to the beginning of the content. + + + + + Scrolls both horizontally and vertically to the end of the content. + + + + + Gets whether the scroll viewer uses a virtualized viewport + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + This class supports the TPF internal infrastructure and is not intended to be used directly from your code. + + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Represents a base type for all primitives. Defines PaintPrimitive method that is + overridden in all derived classes. + Primitives are these RadElement(s) that are actually drawn on the + screen. + + + + Draws the primitive on the screen. + + + Gets or sets a value indicating whether the primitive should + be painted. + + + Virtual function that draws the primitive on the screen. + + + Gets a value indicating whether the primitive has content. + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + Represents a line that is drawn on the screen. + + + + Represents a filling that is drawn on the screen. + + + + + Draws the primitive on the screen. + + + + + Gets or sets background color. This property is applicable to radial, glass, office glass, gel, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, office glass, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or sets the number of used colors in the gradient effect. + + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + + + Gets or sets gradient angle for linear gradient. + + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + + + + Specifies whether the FillPrimitive should fill the GraphicsPath defined by its Parent.Shape. If false, it will fill its bounding rectangle. + + + + + This property is used internally! + + + + Draws the primitive on the screen. + + + Gets or sets the line width in pixels. + + + + Gets or sets the line orientation. Possible values are defined in the SepOrientation + enumeration. + + + + Gets or sets the line angle in degrees. + + + + Initializes a new instance of the ArrowPrimitive class using the + ArrowDirection enumeration. Possible directions are up, bottom, left, and + right. + + + + + Gets or sets the arrow direction. The possible values are contained in the + ArrowDirection enumeration: up, left, right, and bottom. + + + + Represents the internal part of the progress bar. + + + Draws the primitive on the screen. + + + + indicates that Progress Bar has Image + + + + + Gets or sets progress bar orientation. Possible values are indicates in + ProgressOrientaion enumeration: up, left, bottom, and right. + + + + + Indicates whether the progress bar style is dash. If both dash and hash are + true, hatch style is chosen. + + + + + Indicates whether the progress bar style is hatch. When true, the style is Hatch. + When both dash and hatch are true the style is hatch. + + + + Gets or sets the angle in degrees of the progress bar dash or hatch parts. + + + Gets or sets the step width in pixels between separators. + + + Gets or sets separators width in pixels. + + + + Gets or sets the value of the first progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the value of the second progress line. There could be two progress + lines in the progress bar. + + + + Specifies minimum value for the progress. + + + Gets or sets maximum value for the progress. + + + + indicates Stap value + + + + Gets or sets the first color that is used in gradient effect. + + + Gets or sets the second color that is used in gradient effect. + + + Represents a check box primitive that is drawn on the screen. + + + + Default constructor + + + + + Copy constructor + + + + + + GetBaseLineFromFont Method + + A Font + A float + + + + Get or sets HTML tag of the current text block + + + + + Get or sets FontSize the current text block + Note: recreate the font + + + + + Get or sets Image for the current text block + Current block should be named Image block + + + + + Get or sets the Size the current text block + + + + + current block content alignment + + + + + Get or set the text + + + + + BaseLine Property + + + + + Move text blocks to next line if there is not avaible space for the current line + + + + + + + Calculate Size of the whole FormattedTextBlock + + + + + + + + + + + Calculate text size of the Single Text Line + + + + + + + Draw whole FormattedTextBlock + + + + + + + + + + + + Occurs when the mouse is up the element. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + BaseLine Property + + + + + This method draws text to a Bitmap graphics which is used when an element/control is in Disabled state. GDI does not draw text well on a bitmap graphics surface, + hence the need for this method. + + + + Retrieves the text size. + + + + check is the Text contains html command + + text to be checked + text to check + + + + Main function for parsing process + + text to parse + base Font color + base font + base font size + base textaligment + Formatted text block that contains the whole structure + + + + Main function for parsing process + + text to parse + base Font color + base font + base font size + base textaligment + base font style etc. Regular, Bold + Formatted text block that contains the whole structure + + + + Parse single HTML tag and apply settings + + + + + + + + + + + process single token from Html string + + + + + + + a FormattedText object + + + + Handles <u><i><b> tags + + + + + + + + + Handles <color=value> + + + + + + + + Handles <size=[+|-] valie> + + + + + + + + Handles <font=value> + + + + + + + A String Tokenizer that accepts Strings as source and delimiter. Only 1 delimiter is supported (either String or char[]). + + + + + Constructor for StringTokenizer Class. + + The Source String. + The Delimiter String. If a 0 length delimiter is given, " " (space) is used by default. + + + + Method to get the number of tokens in this StringTokenizer. + + The number of Tokens in the internal ArrayList. + + + + Method to get the next (string)token of this StringTokenizer. + + A string representing the next token; null if no tokens or no more tokens. + + + + + Represents a track bar that is drawn on the screen. + + Extends + BasePrimitive + + + + + Gets or Sets RadTrackBar's ticks color + + + Gets or Sets the gradient angle of the SliderArea + + + Gets or Sets whether the TrackBar should fit to available size + + + Gets or Sets whether the SlideArea should be visible + + + Gets or Sets Ticks Visibility + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or Sets TrackBar's thumbWidth + + + + + Gets or Sets TrackBar's Orientation + + + + + Indicates the tick style of the progress bar. Possible values are members of + %TickStyles enumeration:Telerik.WinControls.Enumerations.TickStyles%: none, + topleft, BottomRight, and both. + + + + + The number of positions between tick marks + + + + + Gets or Sets the width of TrackBar's SlideArea + + + + Gets or sets a minimum int value for the trackbar position. + + + Gets or sets a maximum int value for the trackbar position. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Interface provides methods for registering and accessing . + + + + + Retrieves currently registered Service by the specified type. + + A type derived from + + + + + Registers the specified service with ourselves. + + An instance of type derived from . + + + + Represents abstact class that provides service capabilities. + + + + + Initializes a new instance of the RadService class. + + + + + Determines whether the service is operational and may perform actions. + + + + + + Starts the Service. + If the service was previously paused, it should be re-started with the Resume method. + + A context passed to the service. + + + + Stops currently working or previously stopped service. + + True to indicate that current operation ended successfully, false otherwise. + + + + Pauses a currently running operation. + + + + + Resumes previously paused operation. + + + + + Determines whether the service may be started. + Validation is as follows: + 1. Check whether Enabled is true. + 2. Check the context through IsContextValid method. An exception is thrown if context is invalid. + 3. Checks the current state - it should be Initial or Stopped. + + + + + + + Notifies that the service has been successfully started. + Allows inheritors to perform some additional logic upon start. + + + + + Notifies that a start request has occured. Cancelable. + + + + + + Notifies that a running operation has stopped. + Allows inheritors to perform some additional logic upon stop. + + + + + Notifies that a stop request has occured. Cancelable. + + + + + + Evaluates the provided context. Some services may not operate without certain context provided. + + + + + + + Performs the core Start logic. + + + + + Stops the service. Performs the core logic. + + + + + Aborts the current operation without applying any changes. + + + + + Ends the current operation and applies all changes. + + + + + Performs the core Resume logic. + + + + + Performs the core Pause logic. + + + + + Sets the provided object as the current context. + + + + + + Notifies for a change in the Enabled state. + + + + + Gets the context associated with the current operation. + This member is valid only while the Service is started or paused. + + + + + Raised when the service is about to be started. + + + + + Raised right after the service is started. + + + + + Raised when the service is about to be stopped. + + + + + Raised when the service is stopped. + + + + + Determines whether the service is available at design-time. False by default. + + + + + Gets the current state of the service. + + + + + Gets the name of the service. + + + + + Determines whether the Service is enabled (may be started). + If the Service is working and its is disabled, it will end its current operation. + + + + + Represents event data when RadService is starting. + + + + + Initializes a new instance of the RadServiceStartingEventArgs class. + + The context that is passed prior to the Start request. + + + + Gets the Context, passed to the service as a start parameter. + + + + + Represents the states of + + + + + The state of , when is created. + + + + + The state of , when is stopped. + + + + + The state of , when is working. + + + + + The state of , when is paused. + + + + + Represents event data when RadService is stopping. + + + + + Initializes a new instance of the RadServiceStoppingEventArgs class. + + + + + + Gets or sets the Commit parameter of the Stop request. + + + + + Gets the currently dragged instance. + + + + + Determines whether a default hint will be generated. Usually this is a snapshot of the dragged item. + + + + + Gets or sets the context associated with a drag operation. + + + + + Determines whether a drag operation may start. + + + + + Gets or sets the drop target for the operation. + + + + + Represents a service that manages drag and drop actions. + + + + + Initializes a new instance of the DragDropService class. + + + + + Begins a drag pass. Allows for service automation. + + The position of the mouse cursor in screen coordinates. + An instance of IDraggable that is dragged. + + + + Ends a drag pass. Allows for service automation. + + The end position of the mouse cursor in screen coordinates. + An instance of . + + + + Ends a drag pass. Allows for service automation. + + + + + Mocks a mouse move to a specific point. Allows for service automation. + + + + + Determines whether a drop operation will be committed (a valid drop target is found). + + + + + Gets or sets the cursor to be used when a valid drop target is hit-tested. + + + + + Gets or sets the cursor to be used when a valid drop target is hit-tested. + + + + + Determines whether a default preview is generated for a ISupportDrag instance if its GetPreview method returns null. + + + + + Gets current drop target, where the mouse cursor points. + + + + + Gets the current drop location in the context of the current target. + + + + + Gets the Hint window. + + The hint window. + + + + Gets or sets the image to be used as a preview while dragging. + + + + + Gets or sets the cursor to be used while dragging. + + + + + Defines the element's property options. + + + + + Indicates that there are no property options. + + + + + Indicates that the property can inherit a value. + + + + + Indicates that the property invalidates the layout. + + + + + Indicates that the property affects the layout. + + + + + Invalidates measure + + + + + Invalidates arrange + + + + + Invalidates parent's measure + + + + + Invalidates parent's arrange + + + + + Indicates that the property affects the display. + + + + + Indicates that the property affects the theme. + + + + + The property supports cancellation. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollection class. + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Gets or sets the owner of the collection. + + + + + Represents the method that will handle the TextChanging event. + + + + + + + Represents a Z-order comparer. The Z-Order determines the overlapping of the + RadElements. + + + + + Initializes a new instance of the RadElementZOrderComparer class. + + + + + + Compares the Z-order of the two RadElement arguments. Retrieves 0 if the + two elements are equal, positive number if the first element has a greater + Z-Order than the second argument, and a negative number otherwise. + + + + + + + + + + + + + + + + + + + + + + + Layout panel which docks its children to the sides of the area it contains + + + + + Gets the dock property of an element + + + + + + + Sets the docking position of an element + + + + + + + Gets or sets a property indicating whether the last child will fill the remaining area + + + + ElementWithCaptionLayoutPanel is a container for elements with a caption. + + + + Gets or sets a boolean value indicating whether there is a caption on the + top. + + + + + Layout panel is a container for other elements. It orders the contained + elements as a stack vertically or horizontally. When the elements pass through the + left end of the stacklayout, the last one is put on a new line. If horizontal is + chosen the width of all elements is the width of the largest element in the + column. + + + + + This constant is used internally. + + + + + ArrangeOverride + + + + + + + Gets or sets the elements orientation inside the stacklayout. + Possible values are horizontal and vertical. + + + + + Gets or sets a value indicating whether the elements have equal size. + + + + + Gets or sets a value indicating whether the elements have equal width. + + + + + Gets or sets a value indicating whether the elements have equal height. + + + + + ChildrenForcedSize + + + + + Gets or sets a value indicating whether maximum size dimensions are + flipped. + + + + Gets or sets a value indicating whether elements are collapsed on resize. + + + + Gets or sets a value indicating whether the panel will use its direct parent size to arrange the child elements or + whether it will use the first ancestor which is a layout panel or an element with AutoSizeMode = FitToAvailableSize. + + + + + Gets or sets a value indicating whether the panel is in Strip mode or not. When in Strip mode the panel doesn't + move the child elements to a new row when there's not enough space but rather arranges all elements on a single row. + + + + + Notifies all children when same child changes. Effectively redraws all + children in the panel. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the method that will handle HandleExecute, and Execucted events. + + + + + Represents the method that will handle HandleExecute, and Executed events. + + Initializes the event sender. + Initializes the event argument data. + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + Represents an arrow that is drawn on the screen. + + Extends %BasePrimitive:Telerik.WinControls.Primitives.BasePrimitive%. + + + + + Initializes a new instance of the ArrowPrimitive class. + + + + Initializes a new instance of the ArrowPrimitive class using the + ArrowDirection enumeration. Possible directions are up, bottom, left, and + right. + + + + Draws the primitive on the screen. + + + + Gets or sets the arrow direction. The possible values are contained in the + ArrowDirection enumeration: up, left, right, and bottom. + + + + + Tunnels when the AutoSize property of RadControl changes in order to notify any children that should take special actions. + + + + + Tunnels when some of the stretch properties (horizontal or vertical) has changed in order to notify any children that should take special actions. + + + + + Tunnels when the layout has been suspended in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + Tunnels when the layout has been resumed in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + This method is used internally. + + + + + This method is used internally. + + + + + Paints the RootElement and its element tree. Intended for use by RadControl inheritors. + + IGrpahics object to be used to paint elements + Clipping rectangle to be painted. Only those elements from the tree which intersect with this rectangle will be painted. + + + + Paints the RootElement and its element tree. Intended for use by RadControl inheritors. + + IGrpahics object to be used to paint elements + Clipping rectangle to be painted. Only those elements from the tree which intersect with this rectangle will be painted. + + + + + Gets or sets the forecolor. Color type represents an ARGB color. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value corresponding to the bounding rectangle of the owning Control. + + + + + Gets or sets value indicating whether the shape set to the root element would be applied as a region to + the RadControl that contains the element. + + + + + This property is used internally! + + + + + When set, replaces the default control size. + + + + + Defines the usage of a given attached property. + + + + + + + + + + + + + + + + + + + + + + + + + Represents the method that will be an alternative expression storage callback. + + + + + + + + + Represents the method that will be a coerce value callback. + + + + + + + + Represents the method that will be a property changed callback. + + + + + + Initializes the property change arguments. + + + + + Defines the source of current property value. See also + %RadObject.GetValueSource:
+ Telerik.WinControls.RadObject.GetValueSource%. +
+
+ + + Indicates that the reason is unknown. + + + + + Indicates that the default value is set. + + + + + Indicates that the property changed is inherited. + + + + + An overriden default value, has higher priority than Default and Inherited source. + + + + + Indicates that the reason for the property change is an applied theme. + + + + + Value is set locally through a CLR property setter. + + + + + Indicates that the reason for the property change is data binding. + + + + + A value is applied through two-way binding. + + + + + Indicates that the reason for the property change is an animation effect. + + + + + Defines a mask enumeration which is used when updating rad properties' values. + + + + + Defines the possible results for a property value update operation. + + + + + A composite value update is still running. + + + + + There was no need of updating the property. + + + + + The property has been successfully updated and its value has changed. + + + + + The property has been successfully updated but its value has not changed. + + + + + Update operation was canceled. + + + + + Defines basic methods for Telerik layout architecture. Since all layout panels + update their layout automatically through events, this functions are rarely used + directly. + + + + + Performs layout changes based on the element given as a paramater. + Sizes and places are determined by the concrete layout panel that is used. + For example if StackLayoutPanel is used, the element will be placed next to + the previously placed element. Since all layout panels update their layout + automatically through events, this function is rarely used directly. + + + + + + Retrieves the preferred size of the layout panel. If the proposed size is + smaller than the minimal one, the minimal one is retrieved. Since all layout + panels update their layout automatically through events, this function is + rarely used directly. + + + + + + + + + + Classes that implement IGraphics interface are capable of drawing on the + computer screen. Classes that implement this interface can use different APIs to + perform the actual drawing: GDI+, DirectX, etc. + + + + Changes the opacity level of the current device context. + + + Restores the opacity of the current device context to the previous value. + + + + Saves the current smothingMode, and changes the smoothingmode for the current device + context. + + + + Restores the smoothing mode to the previous value. + + + Draws a rectangle specified by a rectangle structure and a color. + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment and pen + width. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment and pen + width. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment, pen width and DashStyle. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment, pen width and DashStyle. + + + + + Updates the clipping region of the current Graphics object to exclude + the area specified by a Rectangle structure. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth and angle. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth, angle and DashStyle. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth, angle and DashStyle. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment and penWidth. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment and penWidth. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment, penWidth and DashStyle. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment, penWidth and DashStyle. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment and penwidth. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment and penwidth. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment, penwidth and DashStyle. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment, penwidth and DashStyle. + + + + Draws an ellipse defined by a bounding rectangle and color. + + + + Draws the specified text string with specified Rectangle, Font, Color, + ContentAlignment, StringFormat and Orientation. + + + + + Draws the specified text string with specified Rectangle, Font, Color, + ContentAlignment, StringFormat and Orientation. + + + + + Draws the specified text string with specified Rectangle, Font, Color, + ContentAlignment, StringFormat, ShadowSettings, TextRenderingHint and + Orientation. + + + + + Draws the specified Image object with the specified Rectangle, Image, + ContentAlignment and disable flag. + + + + + Draws the specified Image object with the specified Point, Image and disable + flag. + + + + + Draws a bitmap image specified by image object and position from the left-upper + corner of the current device context. + + + + + Draws a bitmap image specified by image object and position from the left-upper + corner of the current device context and specified opacity. + + + + + Draws a bitmap image specified by image object, position from the left-upper + corner of the current device context and specified size. + + + + + Draws a bitmap image specified by image object, position from the left-upper + corner of the current device context, opacity and specified size. + + + + Draws a path specified by GraphicsPath, color, pen alignment and pen width. + + + Draws a path specified by GraphicsPath, color, pen alignment, pen width and DashStyle. + + + Draws a path specified by GraphicsPath, color, pen alignment, pen width and DashStyle. + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth and angle. + + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth, angle and DashStyle. + + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth, angle and DashStyle. + + + + + Draws a line specified by color, initial x point, initial y point, final x and + final y point. + + + + + Draws a line specified by color, initial x point, initial y point, final x and + final y point. + + + + + Draws a line specified by color, initial x point, initial y point, final x, final y point and width + + + + + Draws a line specified by color, DashStyle, initial x point, initial y point, final x + and final y point. + + + + + Draws a redial gradient path specified by Graphicspath, bounding rectangle, color, + color gradient array, penalignment and penwidth. + + + + + Draws a redial gradient path specified by Graphics path, bounding rectangle, color, + color gradient array, pen alignment and pen width. + + + + + Draws a redial gradient path specified by Graphics path, bounding rectangle, color, + color gradient array, pen alignment and pen width. + + + + + Draws a custom gradient path specified by GraphicsPath, GraphicsPath for the + gradient, color, gradient color array, penalignment and penwidth. + + + + Creates a mask specified by color and bitmap. + + + + Fills the interior of a rectangle specified by the + borderRectangle and using for color the second argument. + + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + Defines the way the image is populated in the rectangle + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + Defines the way the image is populated in the rectangle + + + + Fills gradient rectangle specified by rectangle structure, color, color, color, + color, GradientStyles, and angle. + + + + + Fills the gradient rectangle specified by rectangle structure, color gradient array, + float offset array, GradientStyles, angle, gradientPercentage, and + gradientPercentage2. + + + + + Fills the gradient rectangle specified by rectangle structure, color gradient array, + float offset array, GradientStyles, angle, gradientPercentage, and + gradientPercentage2. + + + + + Fills the glass gradient rectangle specified by rectangle structure, color, color, + color, color, and gradient percentage. + + + + + Fills the office glass gradient rectangle specified by rectangle structure, color, + color, color, color, and gradientPercentage and gradientPercentage2. + + + + + Fills the vista gradient rectangle specified by rectangle structure, color, color, + color, color, gradient percentage, and gradientPercentage2. + + + + + Fills the gel gradient rectangle specified by rectangle structure, color, color, and + gradientPercentage. + + + + + Fills the interior of a polygon defined by an array of points specified by + Point structures and + color. + + + + + Fills the interior of a polygon defined by color and an array of points specified + by Point structures. + + + + + Fills the interior of a polygon defined by brush and an array of points specified + by Point structures. + + + + + Draws a round rectangle specified by Rectangle structure, color, float borderWidth, + and radius in pixels. + + + + + Translates the local geometric transformation of this TextureBrush object by + the specified dimensions. This method prepends the translation to the + transformation. + + + + + Translates the local geometric transformation of this TextureBrush object by the + specified dimensions. This method prepends the translation to the + transformation. + + + + + Rotates the local geometric transformation by the specified angle. This method + prepends the rotation to the transformation. + + + + + Resets the + world transformation matrix of this Graphics to the identity matrix. + + + + + Scales the world transformation matrix by the specified amount. + + + + Gets the clipping rectangle; the rectangle which needs redrawing. + + + Gets the current context device - graphics object. + + + Gets or sets the opacity level of the device context. + + + + Implements functionality for drawing GDI+ graphics. + + + + + Initializes a new instance of RadGdiGraphics class using GDI graphics context. + + + + + + Draws a border specified by rectangle structure, IBorderElement. + + + + + Disposes the object. + + + + + Disposes the GDI+ graphics context. + + + + + Gets or sets current GDI+ graphics context. + + + + Represents a border that is drawn on the screen. + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Gets the border thickness. + + An instance of representing the border thickness. + + + + + Gets or sets the + Border style. The two possible values are SingleBorder and FourBorder. In the + single border case, all four sides share the same appearance although the entire + border may have gradient. In four border case, each of the four sides may differ in + appearance. For example, the left border may have different color, shadowcolor, and + width from the rest. When SingleBorder is chosen, you should use the general + properties such as width and color, and respectively, when the FourBorder style is + chosen you should use properties prefixed with the corresponding side, for example, + LeftColor, LeftWidth for the left side. + + + + + + + + + + Gets or sets float value indicating the width of the border + measured in pixels. It is only used when SingleBorder style is chosen for the + BoxStyle property which effectively means that all four borders share the same + width. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the top border . This property + has effect only if FourBorders style is used in BoxStyle property, + and affects only the top border. + + + + + Gets or sets a float value width of the right border. This + property has effect only if FourBorders style is used in BoxStyle + property, and affects only the right border. + + + + + Gets or sets a float value width. This property has effect only if + FourBorders style is used in BoxStyle property, and affects only the + bottom border. + + + + + Gets and sets the left border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the left border. + + + + + Gets and sets the top border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the top border. + + + + + Gets and sets the right border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the right border. + + + + + Gets and sets the bottom border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the bottom border. + + + + + Gets and sets the left shadow color. This option applies only if + fourBorders is chosen, and affects only the left border. + + + + + Gets and sets the top shadow color. This option applies only if + fourBorders is chosen, and affects only the top border. + + + + + Gets and sets the right shadow color. This option applies only if + fourBorders is chosen, and affects only the right border. + + + + + Gets and sets the bottom shadow color. This option applies only if + fourBorders is chosen, and affects only the bottom border. + + + + + Specifies whether the BorderPrimitive should draw the GraphicsPath defined by its Parent.Shape. If false, it will draw its bounding rectangle. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Specifies the pattern of dashed lines drawn when the BorderDashStyle is custom. + + + + + Gets the border offset of the primitive. It effectively retrieves the upper-left + corner inside the primitive border. It takes into consideration the BoxStyle property + and possible different widths of the left and the upper side. + + + + Retrieves size of the combined bottom, right, upper, and left border. + + + Gets the horizontal width of the combined left and right border. + + + Gets the vertical width of the combined bottom and upper border. + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + Represents a check box primitive that is drawn on the screen. + + + + Gets or sets a value indicating the style of the check box primitive. + + + + + Gets or sets a value indicating whether to draw the background. + + + + + Gets or sets a value that determines whether the checkmark size is fixed to 8;8 pixels. + + + + + Gets or sets a value that determines the checkmark thickness. Use this property only when UseFixedCheckSize property is set to false. + + + + + Gets or sets a value that determines how the checkmark position in Indeterminate state will be adjusted vertical (in pixels). + + + + + Gets or sets a value that determines how the checkmark position in Indeterminate will be adjusted horizontal (in pixels). + + + + + Gets or sets a value that determines how the checkmark width in Indeterminate state will be adjusted (in pixels). + + + + + Gets or sets a value that determines how the checkmark height in Indeterminate state will be adjusted (in pixels). + + + + Represents an image that is drawn on the screen. + + + Draws the primitive on the screen. + + + + Gets or sets the flag controlling whether the image primitive fills up the available area horizontally + + + + + Gets or sets the flag controlling whether the image primitive fills up the available area vertically + + + + + Gets or sets the way ImagePrimitive will layout its image on the screen. + + + + + Gets or sets the desired size to be used when displaying the image. Works when ImageScalingMode is set to FitToSize. + + + + Gets or sets the image that is displayed. + + + + Gets the Image that will be painted on the screen, with settings such as Opacity and Flip applied. + + + + Gets or sets the image list index value of the displayed image. + + + Gets or sets the key accessor for the image in the ImageList. + + + Specifies whether the image should be taken from the SmallImageList or from the ImageList when the ImageIndex/ImageKey property is set. + + + + Gets or sets image scaling. Possible values are members of ImageScaling + enumeration: None and SizeToFit. + + + + Gets actual index. + + + Gets a value indicating whether the primitive has content. + + + + Gets or sets the transparent color for the image + + + + + Gets or sets the type of rotate/flip to be applied. + + + + + Represents text that is drawn on the screen. + Extends %BasePrimitive:Telerik.WinControls.Primitives.BasePrimitive%. + + + + + Draws the primitive on the screen. + + + + + Returns the text as a string. + + + + + Gets or sets the text rendering hint. + + + + + Gets or sets the text rendering hint used when this instance is disabled. + + + + + This property is used internally. + + + + + Gets or sets the displayed text. + + + + + Allow StretchHorizontally + + + + + Allow StretchVertically + + + + + Gets or sets a value indicating whether the additional label text is to be indicated by an ellipsis. + + + true if the additional label text is to be indicated by an ellipsis otherwise, false. Default value is true. + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + Gets or sets a value indicating whether the text should wrapped to the available layout rectangle. + + + true if the text should wrapped to the available layout rectangle otherwise, false. + + + + + Gets or sets a value indicating whether the control interprets an ampersand character (&) + in the control's Text property to be an access key prefix character. + + + true if the label doesn't display the ampersand character and underlines the character + after the ampersand in its displayed text and treats the underlined character as an access key; + otherwise, false if the ampersand character is displayed in the text of the control. + The default is true. + + + + + Gets or sets a value indicating whether if the keyboard accelerators are visible. + + + true if if the keyboard accelerators are visible otherwise, false. + + + + + Gets or sets the text orientation. Possible values are horizontal + and vertical. + + + + + Gets or sets whether the text will be flipped. + + + + + Gets or sets the text alignment. Possible values are included in + the ContentAlignment enumeration. + + + + + Gets a value indicating whether the primitive has content. + + + + + Gets or sets the shadow settings. + + + + + Gets an instance of the structure which contains information on how to render the text in this element + + + + + ComplexCondition evaluates two conditions related with a binary operator. + Inherits Condition + + + + + Defines a base abstract class that describes a condition which checks when to apply + a style rule. SimpleCondition evaluates when a property of an Element equals a + certain value. RoutedEventCondition evaluates if a routed event is currently + tunneling/bubbling through an Element. ComplexCondition evaluates two conditions + related with a binary operator. + + + + + Retrieves a value indicating whether to apply a style rule. + + + + + + + Retrieves a list of the affected properties of the current condition. + + + + + Retrieves a list of the affected events of the current condition. + + + + + Initializes a new instance of the ComplexCondition class. + + + + + Initializes a new instance of the ComplexCondition class from the first condition, + binary operator, and second condition. + + + + + + + + Evaluates the complex condition. + + + + + + + Retrives a string representation of the ComplexCondition class. + + + + + + Gets or sets the first condition. + + + + + Gets or sets the binary operator to be used for evaluating the condition. + + + + + Gets or sets the second condition. + + + + + A binary opeartor used by the CompolexCondition class. + + + + + Indicates conjunction. + + + + + Indicates disjunction. + + + + + Indicates exclusive or. + + + + + See BinaryOperator, + Condition + + + + + + + + + + + + + + + SimpleCondition evaluates when a property of an Element equals a certain value. + + + + + Initializes a new instance of the SimpleCondition class. + + + + + + Initializes a new instance of the SimpleCondition class from the setting to check, and the + unary operator to use. + + + + + + + Initializes a new instance of the SimpleCondition class from the property, value and unary operator + + + + + Initializes a new instance of the SimpleCondition class from the property and value + + + + + Evaluates the target RadElement using the unary operator. + + + + + + + Retrieves the string representation of the current instance. + + + + + + Gets or sets the unary operator of the simple condition. + + + + + Gets or sets the setting of the current property. + + + + + Represents a class selector. Class selectors are used to apply the same + customization to all elements that belong to the same class. This + behavior is very similar to that of the CSS class selectors. + + + + + Represents a base class for other selectors. telerik presentation framework + selectors are similar to CSS selectors. + + + + Represents a base class for the HierarchicalSelector class. + Selectors in telerik presentation framework are very similar to CSS + selectors. + + + Exposes methods and properties required for a general selector. + Selectors in telerik presentation framework are like CSS selectors. + + + + Gets value indicating whether the selector applies to the specified element + + + + + + + Gets value indicating whether the selector applies to the specified element, without checking conditions that apply to properties of the element. + + + + + + Retrieves an array of selected elements of the element given as an + argument. + + + + Method supports obsolete theming infrastructure + + + + + + Applies the property settings to the given element. Method supports obsolete theming infrastructure. + + + + Gets value indicating whether the selector Equals to the specified selector + + + + + + + Method supports obsolete theming infrastructure. + If HasApplyCondition returns true, this method should add the RadProperties that the selector depends, so style manager + can refresh afected element by the selector selector, when property changes + + + + + Gets a value indicating whether a condition has been applied. + + + + Gets or sets the child selector. + + + + + Selector Key + + + + Retrieves a value indicating whether the customization should be + un-applied to the given element.. + + + Retrieves a value indicating whether value is set for the element. + + + Gets or sets the Condition upon which to apply the customization. + + + Gets or sets the condition upon which to un-apply the customization. + + + Gets or sets a value indicating whether auto-un-apply is on or off. + + + Gets or sets a value indicating whether the current selector is the active one in style builder + + + Gets a value indicating whether the an apply condition is set. + + + Retrieves the selected elements of the given element. + + + Initializes a new instance of the class selector class. + + + + Initializes a new instance of the class selector class using string for the class + name. + + + + Gets or sets a value indicating the class name. + + + + Represents a name selector. Name selectors are used to apply customization to the + element having the specified name. This behavior is very similar to that of CSS id + selectors. + + + + Initializes a new instance of the NameSelector class. + + + + Initializes a new instance of the NameSelector class using the name of the + element. + + + + + Gets or sets the element's name. Customization is applied only to the element + having this name. + + + + + Initializes a new instance of the SelectorCollection class. + + + + + Initializes a new instance of the SelectorCollection class. + + + + + Represents a type selector. Type selectors are used to apply the same + customization to all elements of the same type. Behavior is very similar to that + of the CSS type selectors. + + + + Initializes a new instance of the TypeSelector class. + + + + Initializes a new instance of the TypeSelector class using the type that will be + affected. + + + + Gets or sets the element type that will be affected by the Type selector. + + + + Gets or sets value corresponding to the VisualState of the item that the selector targets + + + + + Gets the Color defined for the current element. + + + + + + + Sets the specified element as the "Current" for painting. + + + True if the element may be painted (there is a theme part defined for it), false otherwise. + + + + Paints the current element (previously specified by the SetCurrentElement method) + on the provided graphics surface, within the desired bounds. + + + + + + + Invalidates all opened forms upon a user-triggered change in this class. + + + + + closes all currently opened HTheme handles + + + + + Looks-up a HTheme handle. + + + + + + + Used internally by the framework to determine whether we just want to skip TPF's drawing. + + + + + Used to instruct the system skin painting mechanism that a custom painting will be performed + in the PaintElementSkin method. + + + + + Gets the currently attached element. + + + + + Returns true on Windows Vista or newer operating systems; otherwise, false. + + + + + Determines whether system skins will be applied on RadControls + + + + + Gets the only instance of this manager. + + + + + Mode is inherited by the parent chain. + + + + + Only direct element can use skins, value cannot be used for inheritance + + + + + The element and all its descendants may use skins. + + + + + Only direct element is forbidden to use skins, its children can compose this value up from the parent chain. + + + + + Element and all its descendants are forbidden to use system skins. + + + + + Contains definitions for the MS Windows Vista Aero theme. + + + + + Vista comboboxes + + + + + Vista DateTimePickers + + + + + Vista TextBoxes + + + + + Vista Headers + + + + + Vista Listboxes + + + + + Vista ListViews + + + + + Vista Flyout + + + + + Vista Flyout + + + + + Defines the possible formats used when serializing an archive package. + + + + + Binary format. + + + + + XML format. + + + + + Decompresses the stream using Binary format. + + + + + + + Decompresses the stream in the provided file using Binary format. + + + + + + + Gets the default format for this package. + + + + + Gets or sets the format used to persist the package. + + + + + Gets the list which contains the streams of this package. + + + + + Encapsulates information for a single stream within a zipped stream. + + + + + Gets or sets the context associated with the archive. + + + + + Gets the raw bytes of the underlying stream. + + + + + Gets or sets the already zipped raw bytes of the underlying stream. + + + + + Gets the count of the raw bytes that form the stream. + + + + + Gets or sets the name of this archive. + + + + + Gets the information about the format of the underlying stream. + + + + + Represents an archive package where each stream is a compressed XmlTheme. + + + + + Gets all the themes that reside within this package. + + + + + + An archived stream, which persists a XmlTheme instance. + + + + + Defines the types of registrations of a StyleSheet in the ThemeResolutionService. + + + + + Implements whether an instances of a class need validation after theme + deserialization. + + + + + Initializes a new instance of the RadStylesheetRelation class. + + + + + Determines whether the specified relation is equal to this one. + + + + + + + Gets or sets a value indicating the builder registration type. + + + + + Gets or sets a string value indicating the control type. + + + + + Gets or sets a string value indicating the element type. + + + + + Gets or sets a value indicating the control name. + + + + + Gets or sets a string value indicating the element name. + + + + + Marker attribute - informs StyleXmlSerializer that property should be serialized as an attribute, when serializing + RadControl style + + + + + Serializes components to XML, using the same rules that apply in Code Dom serialization, in VS designer. + + + + + Constructs new instance of the class, providing extended properties serialization information + + Extends the properties serialization information. + + + + Constructs new instance of the class, providing extended serialization information. + + Dictionary to use that maps type names to XML element names. Keys of the dictionary entries should be type full names. Values should correspond to the type instances. + Extends the properties serialization information. + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + object that owns the property (collection) currently deserialized + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + object that owns the property (collection) currently deserialized + + + + + + Reads the collection items if reader is positioned on an element that is a collection. + + + + + + property used to match objects in collection + + + + Reads the collection items if reader is positioned on an element that is a collection. + + + + + + property used to match objects in collection + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + property used to match objects in collection + + + + + States whether the list specified by toRead should not be cleared before reading + + + + Matches the instance of the element by an attribute value and then deserializes its properties. + If the instance is not found in existingInstancesToMatch, + new instance of type instanceType will be created and added to existingInstancesToMatch list. + + + + + + + the list with existing instances + index of the element if found in existingInstanceToMatch + + + + Reads properties of an object and subobject the reader is currently + positioned on. + + Xml reader instance, positioned on the element to read. + object instance to be processed + + + + Reads properties of an object and subobject the reader is currently + positioned on. + + Xml reader instance, positioned on the element to read. + parent object instance, null if there is no parent object information + object instance to be processed + + + + Override to provide alternative deserialization of objects. + + + + value indicating whether the object should be processed any further by serializer + + + + Deserializes a specified property of an object + + Xml reader, positioned on the element corresponding to the property to deserialize + Property descriptor of the property to deserialize + Object that owns the property to deserialize + + + + Override to provide custom processing of collection being deserialized + + + + + + True if the list does not require further processing by the deserializer, False to use the default deserialization + + + + Serializes the given object using the specified XmlWriter. + + + + + + + Provides logic to determine whether property value should be serialized. + + + ShouldSerialize value resolution is as follows: + + 1. ComponentSerializationInfo.SerializeDefaultValues + 2. overwriteMetadata contains attribute DesignerSerializationVisibilityAttribute.Content + 3. property.ShouldSerialize + + + + property to serialize + collection of extra serialization attributes for the property, corresponding to ComponentSerializationInfo + value indicating whether property value should be serialized + + + + Gets or sets value indicating whether the serializer will search all domain assemblies for a specified type + (by FullName) or will search only assemblies related to telerik + + + + + Utility class for Design - Time VisualStudio.NET project management. + + + + + Represents a property setting. Each property of Telerik controls can be + serialized and deserialized through an instance of this class. The + XMLPropertySetting instance describes the affected control, its property, and + the current value. XmlPropertySetting is very similar to CSS style properties. + + + + + Deserializes the property given as a string. For example, + Telerik.WinControls.VisualElement.ForeColor. + + + + + + + Deserializes the property given as a string. For example, + Telerik.WinControls.VisualElement.ForeColor. + + + + + + + Serializes the given dependency property with the given value. + + + + + + + + Deserializes the given dependency property with the given value. + + + + + + + + Retrieves a string representation of the class. + + + + + + Retrieves the name of the property. + + + + + + Retrieves the deserialized property. + + + + + + Gets or sets a string value indicating the property. + For example, Telerik.WinControls.VisualElement.ForeColor. + + + + + Gets or sets an object value indicating the value of the property. For example, + the value of Telerik.WinControls.VisualElement.ForeColor property + could be "navy" or "128, 0, 255, 63". + + + Here is how XmlPropertySetting determines whether to serialize Value or ValueString property when used in + ThemeComponent with CodeDom serialization. + + If the property belongs to an object from System, Telerik.WinControl or Telerik.WinCotnrols.UI assembly + then Value will be serialized (the actual object). For values that are defined in other assemblies ValueString + will be serialized. Tthis is Value, serialized as string using the TypeConverter specified by the corresponing RadProperty. + This is important for late-binding for types declared in different assemblies: egg. Docking + Otherwise a problem will occur when adding a ThemeComponent on the Form in a project which does not + reference Docking or Grid, etc, or custom controls assembly. + + For xml serializtion, property serialize always as string using the TypeConverter specified by the corresponing RadProperty. + + + + + Gets or sets the value serialized to string using the corresponding property TypeConverter. Generally used in rear cases by CodeDom + Serializer, if theme is serializaed to CodeDom + + + + + Represents + + + + + Represents a class selector that can be serialized and deserialized. + Telerik class selectors are very similar to CSS class selectors. + + + + + Initializes a new instance of the XmlClassSelector class. + + + + + Initializes a new instance of the XmlClassSelector class using an element + given as a string. + + + + + + Retrieves the string representation of the class. + + + + + + Retrieves a boolean value indicating whether this and the argument are equal. + + + + + + + Serves as a hash function for the XmlClassSelector type. + + + + + + Gets or sets a string value indicating the class. + + + + + Represents a serializable correspodence to the ComplexCondtion class. + + + + + Represents a serializable condition. + + + + + Build the expression string. + + + + + + Deserializes the condition. + + + + + + Deserializes the properties for a given condition. + + + + + + Creates a new instance of the Condition class. + + + + + + Compares two XmlComplexCondtion(s) for equality. + + + + + + + Retrieves a hash code for the current instance. + + + + + + Gets or sets a value indicating the first condition. + + + + + Gets or sets a value indicating the binary operator for the condition. + + + + + Gets or sets a value indicating the second condition. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents a group of property settings. + + + + + Retrieves the string representation of the instance. + + + + + + Determines whether the BasedOn property should be serialized. + + + + + + Gets or sets the collection of properties. + + + + + Gets or sets the collection of selectors. + + + + + Retrieve the name of the group. + + + + + Gets or sets value indicating the key of a repository item which this group is based on. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + + + + + + Represents a base class for the XML serialization converters. + + + + + + + + + + + + + + Gets or sets value indicating the key of the group uised to identfy the group when referenced + by other groups when basedOn is specified. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents a serializable correspondence to the SimpleCondtion class. + + + + + Compares two instances for equality. + + + + + + + Gets or sets a value indicating the UnaryOperator used in the condition. + + + + + Gets or sets the XML property setting for the instance. + + + + + Gets value indicating the location of the theme file that the XmlStyleSheet has been loaded from. + + + + + Represents a registration for the Style Builder. The class is responsible + for the serialization and deserialization of a group of telerik controls. + + + + + Initializes a new instance of the XmlStyleBuilderRegistration class. + + + + + Initializes a new instance of the XmlStyleBuilderRegistration class + from xml style sheet, control type, and element type. + + + + + + + + Retrieves the style builder registration. + + + + + + Gets or sets a string value indicating the builder type. + + + + + Gets or sets a value indicating the xml builder data. + + + + + Represents a theme for a telerik control. Themes can be serialized and + deserialized, thus saving and loading the theme for a given control. + XmlTheme implements IXmlSerializable which provides custom formatting for + XML serialization and deserialization. + + Removed the Serializable attribute since many of the classes used in this class are also not serializable. + This causes the deserialization of the theme to fail when requested in the Visual Studio designer from the + theme components context menu. + [Serializable] + + + + Initializes a new instance of the XmlTheme class. + + + + + Initializes a new instance of the XmlTheme class from XmlStyleSheet, + control type, and element type. + + + + + + + + Loads a theme from a System.IO.Stream instance. + + + + + + + Load a XML theme from a TextReader. + + + + + + + Loads a theme from a XML reader. + + + + + + + Saves the theme to a XMLWriter. + + + + + + Retrieves the serialization string of the given type. + + + + + + + Deserializes the provided deserialization string. + + + + + + + Get the StyleRepository associated with this theme. + + StyleReposity contains named lists of PropertySettings, reffered by Key property, that can be inherited by the PropertySettingGroups of this theme. + This is done by associating BsedOn property of the property setting group with PropertySettings list key. + Since each theme can have only one repository, when different XmlTheme are registered with repositories for the same theme + the repositories are merged. If a PropertySettings list with the same Key is defined in several XmlTheme repository instances, the last laoded one overrides + any existing list. + + + + + + Gets value indicating whether this XmlTheme defines StyleRepository + + + + + Gets or sets a string value indicating the theme name. + + + + + Gets or sets the Builder Registration for the theme. Each builder registration + corresponds to a theme for single telerik control. + + + + + Gets or sets value corresponding to the VisualState of the item that the selector targets + + + + + Class used by RadThemeManager to recognize classes that load themes from resources in a class library + + + + + This method is used internally. + + + + + Gets the ThemeName of the theme component + + + + + this class is used internally. + + + + + Combines ThemeRoleName with state names using "." as delimiter and sets the result to AttachedElement.Class + + + + + + + Combines state names, using stateDelimiter Character. + + + Egg. combining "Selected" and "MouseOver" gives "Selected.MouseOver"; + combining "" and "MouseOver" gives "MouseOver" + + + + + + + + Represents event data for the + + + + + Represents the method that will handle a ThemeChanged event. + + + Initializes the event sender. + + + Initializes the %event argument:ThemeChangedEventArgs%. + + + + + A Class that represents storage for themes in an application that contains + RadControls. + + + + A theme consists of one or more + StyleSheet objects, and one or more + StyleSheetRelation objects. + + + The style sheet object defines the appearance + and/or certain aspects of behavior of one RadControl or + RadItem. + + StyleSheetRelation objects contain data that maps a control + and a certain StyleSheet. + Theme.ThemeName is used by RadControl to + automatically query ThemeResolutionService, upon + Initialize and retrieve its StyleSheet. Use the + API of this class to register, un-register, query themes storage for specific + themes by attributes like Name, certain relations, etc. + + + + + Returns a previously loaded font by given font name. + + The name of font. + The FontFamily or null if font with given name is not loaded. + + + + Call to subscribe for theme change event, for the specified control theme class name. Note the event may be fired from another thread + + + + + + Call to unsubscribe for theme change event. + + + + + + Gets a list of all registered themes. + + + + + + Gets any themes registered for a specific control by control type name or control name. + + + + + + + Get previously registered theme by theme name. + + + + + + + Applies the specified ThemeName to all RadControls that are children of the specified Control and its child Controls + + + + + + + Loads a theme package, stored in the provided file. + + + + + + + Loads a theme package stored in the provided file. + + + True to throw an exception if it occurs, false otherwise. + + + + + Loads a theme package, stored in the provided embedded resource. + The calling assembly is used to read the manifest resource stream. + + + + + + + Loads a theme package from an embedded resource in the specified assembly. + + + + + Loads a theme package stored in the provided embedded resource. + + + True to throw an exception if it occurs, false otherwise. + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + Suspends the ThemeChange event. This method is used internally. + + + + + Resumes the ThemeChange event. This method is used internally. + + + + + Resumes the ThemeChange event. This method is used internally. + + Determines whether to fire the ThemeChanged event. + + + + Creates and registers an empty Theme if one is not already registered. + + + + + + + Clears all stylesheets registered previously with the themeName specified. + + + + + + Gets all StyleSheets registered under a theme name. + + + + + + + Registers a StyleSheet found in styleBuilderRegistration using also the registration details specified under the theme name specified. + + + + + + + Registers a StyleBuilder for specific type of controls and specific type of elements under the name given. + + + + + + + + + Removes an instance of the class + from the dictionaries with registered style builders. + + The instance to remove. + + + + Gets or sets value indicating the theme name that will be used by all controls in the application. + + + If the value of this property is null or empty each control will be assigned a theme, corresponding on the + property of the control. Otherwise the ThemeName property will be disregarded. + If a specific control in the application has no theme registered with the name specified by ApplicationThemeName, it will be + assigned its ControlDefault theme name. + + + + + Determines whether animations are allowed across entire application. + + + + + "ControlDefault" theme name + + + + + Represents a property settings collection. Property settings are very + similar to CSS style properties. + + + + + Gets or sets the StyleBuilder instance. + + + + + Gets the name of the theme for which StyleBuilder is required. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of the . + + + + + + + Initializes a new instance of the based on another . + + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + Copies the elements of an IList of RadElements to the end of the . + + + An List of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Moves the element at position a given position to a new position + + The zero-based index of the element to move + The zero-based index of the position where the element is to be placed + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Provides XmlSerialization parsing for ColorBlend extention and + calculates color-blending values for color values of PropertySetting and AnimatedPropertySettings. + + + + + + + IValueProvider GetValue implementation + + + + + + Gets the original Color value + + + + + Gets value corresponding to the name of the ThemeParameter used for color blending calculations + + + + + Instances of this type are used by to provide information used to control + XML of properties and sub-objets. + + + + + Gets a collection of attributes for properties that would override the original designer serialization + metadata for these properties + + + + + Gets or sets value indicating whether the serializer will use the serialization visibility attributes + of the properties of the serialized objects or only those found in + + + + + Gets or sets value indincating whether the serializer will force serialization of properties, disregarding + the values of the DefaultValue attribute or ShouldSerialize method + + + + + Attribute for telerik theme serialization. + + + + + Base class for all block transformations. + + + + + Defines the basic operations of the cryptographic or compression transformations. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets transformation header (if required). + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Releases the resources used by the current instance of the ZipArchive class. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Validates parameters of the input buffer. + + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Indicates whether buffer block size should be validated. Should be true for the TransformBlock and false for the TransformFinalBlock. + Indicates whether count can be zero. + + + + Validates parameters of the transform operation. + + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + Indicates whether input count can be zero. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets transformation header (if required). + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Gets or sets value which indicates whether the transformation uses + input buffer of the fixed size. + + + + + Implements Adler-32 checksum algorithm. + + + + + Interface which must be implemented by all implementations of the checksum algorithm. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Base for modulo arithmetic (largest prime smaller than 65536). + + + + + Number of iterations we can safely do before applying the modulo. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Implements CRC-32 checksum algorithm. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Specifies values that indicate compression method. + + + + + The file is stored (no compression). + + + + + The file is Deflated. + + + + + The file is compressed using LZMA algorithm. + + + + + Represents stream which allows read/write compressed information from/to given input stream. + + + + + Operational stream. Base class for cryptographic and compression streams. + + + + + Initializes a new instance of the OperationStream class. + + The base input/output stream. + Stream operational mode. + Specified mode is not allowed for the given stream. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Clears all buffers for this stream and causes any buffered data to be written to the underlying device. + + + + + Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + An array of bytes. When this method returns, the buffer contains the specified byte array with the + values between offset and (offset + count - 1) replaced by the bytes read from the current source. + The zero-based byte offset in buffer at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many + bytes are not currently available, or zero (0) if the end of the stream has been reached. + The associated with + current object does not match the underlying stream. + For example, this exception is thrown when using with an underlying stream that is write only. + The parameter is less than zero.-or- The parameter is less than zero. + Thesum of the and parameters is longer than the length of the buffer. + + + + Sets the position within the current stream. + + A byte offset relative to the origin parameter. + A value of type SeekOrigin indicating the reference point used to obtain the new position. + The new position within the current stream. + + + + Sets the length of the current stream. + + The desired length of the current stream in bytes. + + + + Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + An array of bytes. This method copies count bytes from buffer to the current stream. + The zero-based byte offset in buffer at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + + + + Validate read/write operation parameters. + + Operation buffer. + Offset. + Count. + Indicates whether count can be zero. + + + Updates the underlying data source or repository with the current state of the buffer, then clears the buffer. + The current stream is not writable.-or- The final block has already been transformed. + + + + Ensure that current stream is not disposed. + + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Initialize internal buffers. + + + + + Initialize transformation. + + + + + Read transformation header. + + + + + Write transformation header. + + + + + Gets a value indicating whether the current stream supports reading. + + + + + Gets a value indicating whether the current stream supports seeking. + + + + + Gets a value indicating whether the current stream supports writing. + + + + Gets a value which indicates whether the final buffer block has been written/read to/from the underlying stream. + true if the final block has been flushed or end of underlying stream is reached; otherwise, false. + + + + Gets the length in bytes of the stream. + + + + + Gets or sets the position within the current stream. + + + + + Gets value which specify total plain bytes count (not-compressed and not-encrypted). + + + + + Gets value which specify total transformed bytes count (compressed or encrypted). + + + + + Gets input stream. + + + + + Gets stream mode. + + + + + Gets or sets value which indicates whether this stream is disposed already. + + + + + Gets or sets block transformation is used for read/write operations. + + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression settings. + Specified mode is not allowed for the given stream. + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression settings. + Indicates whether the CRC32 (true) or Adler32 (false) checksum algorithm will be used. + Encryption settings. + Specified mode is not allowed for the given stream. + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression algorithm. + Checksum algorithm. + Specified mode is not allowed for the given stream. + + + + Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + An array of bytes. When this method returns, the buffer contains the specified byte array with the + values between offset and (offset + count - 1) replaced by the bytes read from the current source. + The zero-based byte offset in buffer at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many + bytes are not currently available, or zero (0) if the end of the stream has been reached. + The associated with + current object does not match the underlying stream. + For example, this exception is thrown when using with an underlying stream that is write only. + The parameter is less than zero.-or- The parameter is less than zero. + Thesum of the and parameters is longer than the length of the buffer. + + + + Sets the length of the current stream. + + The desired length of the current stream in bytes. + + + + Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + An array of bytes. This method copies count bytes from buffer to the current stream. + The zero-based byte offset in buffer at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Initialize compressed stream. + + The base input/output stream. + Compression algorithm. + Checksum algorithm. + + + + Event occurs when calculation of the checksum for this stream is completed. + + + + + Gets checksum calculated for this stream starting from + the first read/write operation and up to the Flush call. + + + + + Gets the compressed size of the stream. + + + + + Gets or sets the checksum algorithm will be used during compression-decompression. + + + + + Base class for the compression settings. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + Called when property value is changed. + + Property name. + + + + Occurs when a property value changes. + + + + + Gets or sets compression method. + + + + + Represents base class for all compression and decompression functionality. + + + + + Initializes a new instance of the CompressionTransformBase class. + + + + + Transforms the specified region of the input byte array and copies + the resulting transform to the specified region of the output byte array. + + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Transforms current input buffer. + + The final block flag. + True when output still available. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Specifies values for header type of the compressed stream. + + + + + Compressed stream does not contain a header. + + + + + Compressed stream is formatted in accordance with RFC 1950 + (ZLIB Compressed Data Format Specification version 3.3). + + + + + The compression level to be used for compression of data. + + + + + The data will be simply stored, + no compression should be performed. + + + + + Same as NoCompression. + + + + + The fastest but least effective compression. + + + + + A synonym for Fastest. + + + + + A little slower, but better, than level 1. + + + + + A little slower, but better, than level 2. + + + + + A little slower, but better, than level 3. + + + + + A little slower than level 4, but with better compression. + + + + + The default compression level with + a good balance of speed and compression efficiency. + + + + + A synonym for Optimal. + + + + + Pretty good compression. + + + + + Better compression than Level7. + + + + + The best compression, where best means + greatest reduction in size of the input data. + This is also the slowest compression. + + + + + A synonym for Best compression level. + + + + + Class which implements Deflate compression algorithm. + + + + + Interface which must be implemented by all implementations of the compression algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Represents a state of current block. + + + + + Block is not completed, need more input or more output. + + + + + Block flush performed. + + + + + Finish started, need only more output at next deflate. + + + + + Finish done, accept no more input or output. + + + + + Compressor which implements Deflate compression. + + + + + Represents base class for Deflate compression and decompression functionality. + + + + + Initializes a new instance of the DeflateTransformBase class. + + Deflate settings. + + + + The default number of window bits for the Deflate algorithm. + 15 is the maximum number of window bits for the Deflate algorithm (32K window). + + + + + Initializes a new instance of the DeflateCompressor class. + + Deflate settings. + + + + Creates RFC 1950 (ZLIB Compressed Data Format Specification version 3.3) header + to be written into the output stream. + + + + + Restore the heap property by moving down the tree starting at specified node, + exchanging a node with the smallest of its two sons if necessary, stopping + when the heap property is re-established (each father smaller than its two sons). + + The tree. + Index of node. + + + + Transforms current input buffer. + + The final block flag. + True when still output available. + + + + Scan a literal or distance tree to determine the frequencies of the codes + in the bit length tree. + + The tree. + Max code. + + + + Construct the Huffman tree for the bit lengths. + + The index of the last bit length code to send. + + + + Send the header for a block using dynamic Huffman trees: the counts, + the lengths of the bit length codes, the literal tree and the distance tree. + + Length of literal codes. + Length of distance codes. + Length of bit length codes. + + + + Send a literal or distance tree in compressed form, + using the codes in bit length tree. + + The tree. + Max code. + + + + Output a block of bytes on the stream. + + Buffer. + Start index. + Length. + + + + Save the match info and tally the frequency counts. + + Distance. + Length or unmatched char. + Return true if the current block must be flushed. + + + + Send the block data compressed using the given Huffman trees. + + Literal tree. + Distance tree. + + + + Flush the bit buffer and align the output on a byte boundary. + + + + + Copy a stored block, storing first the length + and its one's complement if requested. + + Buffer. + Length. + Should send the header. + + + + Send a stored block. + + Offset in window. + Length. + The flag of last block. + + + + Determine the best encoding for the current block: dynamic trees, static + trees or store, and output the encoded block. + + Offset in window. + Length. + The flag of last block. + + + + Fill the window if necessary. + + + + + Compress as much as possible from the input stream, return the current + block state. + This function does not perform lazy evaluation of matches and inserts + new strings in the dictionary only for unmatched strings or for short + matches. It is used only for the fast compression options. + + Flush flag. + Returns the current block state. + + + + Copy without compression as much as possible from the input buffer. + + Flush flag. + Returns the current block state. + + + + Same as above, but achieves better compression. We use a lazy + evaluation for matches: a match is finally adopted only if there is + no better match at the next window position. + + Flush flag. + Returns the current block state. + + + + Initialize the tree data structures. + + + + + Sets configuration parameters by the compression level. + + Compression level. + + + + Flush as much pending output as possible. + All deflate output goes through this function. + + + + + Read a new buffer from the current input stream, update + total number of bytes read. All deflate input goes through + this function. + + Buffer. + Start position in buffer. + Size. + + + + + Represents configuration of deflate algorithm. + + + + + Returns instance of Config class by the compression level. + + Compression level. + Instance of Config class. + + + + Use a faster search when the previous match is longer + than this reduce lazy search above this match length. + + + + + Attempt to find a better match only when the current match is + strictly smaller than this value. This mechanism is used only for + compression levels >= 4. For levels 1,2,3: MaxLazy is actually + MaxInsertLength (See DeflateFast). + Do not perform lazy search above this match length. + + + + + Quit search above this match length. + + + + + To speed up deflation, hash chains are never searched beyond this length. + A higher limit improves compression ratio but degrades the speed. + + + + + Represents constants for deflate compression. + + + + + Z-lib header: the deflate compression method. + + + + + Bit length codes must not exceed MaxBitLengthBits bits. + + + + + Repeat previous bit length 3-6 times (2 bits of repeat count). + + + + + Repeat a zero length 3-10 times (3 bits of repeat count). + + + + + Repeat a zero length 11-138 times (7 bits of repeat count). + + + + + Decompressor which implements Deflate compression. + + + + + Initializes a new instance of the DeflateDecompressor class. + + Deflate settings. + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + + Transforms current input buffer. + + The final block flag. + True when still output available. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Represents a state of decompressor process. + + + + + Represents a type of block in deflated data. + + + + + Compression settings of the Deflate method. + + + + + Initializes a new instance of the DeflateSettings class. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + The compression level of deflate algorithm to be used for deflating by a CompressedStream. + + + + + Gets or sets compression stream header type. + + + + + Inflates data using a lookup table combined with a HuffmanTree. + + + + + Initializes static members of the InflateTree class. + + + + + Initializes a new instance of the InflateTree class. + + + + + Tries to get enough bits from input and try to decode them. + + Input buffer. + Next symbol or -1 when there is no enough bits in input. + + + + Calculate the huffman codes according to RFC 1951. + + Huffman codes. + + + + Represents input buffer for inflating data using Huffman coding. + + + + + Initializes a new instance of the InputBitsBuffer class. + + + + + Checks available bits in the bit buffer. + + Count of bits. + True if available. + + + + Gets available bits from buffer. + + Count of required bits. + Bits data. + + + + Read bytes to output buffer. + + Output buffer. + Offset. + Length. + Count of bytes which are read. + + + + Set current working buffer. + + Bytes buffer. + Offset. + Length. + + + + Skips bits in bit buffer. + + Count of bits to skip. + + + + Skips to the next byte boundary. + + + + + Gets 16 or more bits into bit buffer. + + Bit buffer. + + + + Available bits in bit buffer. + + + + + Available bytes. + + + + + Is input required. + + + + + Represents output window for inflating data using Huffman coding. + + + + + Initializes a new instance of the OutputWindow class. + + + + + Adds a byte to output window. + + Byte. + + + + Copies bytes within output window. + Moves backwards distance bytes and copy length bytes. + + Length. + Distance. + + + + Read bytes to output buffer. + + Output buffer. + Offset. + Length. + Count of bytes which are read. + + + + Reads bytes from input. + + InputBitsBuffer. + Length. + Count of read bytes. + + + + Gets available bytes count. + + + + + Gets free bytes count. + + + + + Represents Huffman static tree. + + + + + Initializes static members of the StaticTree class. + + + + + Initializes a new instance of the StaticTree class. + + + + + Static tree. + + + + + Extra bits for each code. + + + + + Base index for extra bits. + + + + + Max number of elements in the tree. + + + + + Max bit length for the codes. + + + + + Deflates data using Huffman coding. + + + + + Reverse the first specified bits of a code, + using straightforward code (a faster method would use a table). + + Value. + The length of bits to reverse. + Result of reverse. + + + + Map from a distance to a distance code. + + + No side effects. DistanceCode[256] and DistanceCode[257] are never used. + + + + + Construct one Huffman tree and assigns the code bit strings and lengths. + Update the total bit length for the current block. + + Deflate compressor. + + + + Generate the codes for a given tree and bit counts (which need not be optimal). + + The tree. + Max code. + Bit length count. + + + + Compute the optimal bit lengths for a tree and update the total bit length for the current block. + + Deflate compressor. + + + + The Optimization Data for LZMA match finder. + + + + + Represents the LZMA range encoder. + + + + + Class which implements Deflate compression algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Compressor which implements LZMA compression. + + + + + Represents base class for LZMA compression and decompression functionality. + + + + + Initializes a new instance of the class. + + Settings. + + + + Initializes a new instance of the class. + + Settings. + + + + Creates transformation header to be written into the output stream. + + + + + Transforms current input buffer. + + The final block flag. + True when output still available. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources + (true) on only unmanaged resources (false) should be released. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Decompressor which implements LZMA decompression algorithm. + + + + + Initializes a new instance of the class. + + Settings. + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Represents a state of decompressor process. + + + + + Specifies values for a type of the match finder for LZMA compression. + + + + + The match finder uses two bytes for the hash. + + + + + The match finder uses four bytes for the hash. + + + + + Compression settings of the Deflate method. + + + + + Initializes a new instance of the class. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + Gets or sets dictionary size [0 - 27]. + Default value is 23 (8MB). + + + + + Gets or sets number of position state bits for LZMA [0 - 4]. + Default value is 2. + + + + + Gets or sets number of literal context bits for LZMA [0 - 8]. + Default value is 3. + + + + + Gets or sets number of literal position bits for LZMA [0 - 4]. + Default value is 3. + + + + + Gets or sets number of fast bytes [5 - 273]. + Default value is 32. + + + + + Gets or sets a type of the match finder. + + + + + Gets or sets length of the stream for compressing. + Used for single compressed streams only (not for ZIP archives). + Allows to avoid using the end of stream marker for compressed stream. + If it is set to -1, then the marker will be used. + + + + + Gets or sets length of the stream for decompressing. + + + + + Gets or sets a value which indicates whether + the compression stream should use zip header type. + + + + + Represents LZMA state for compressing and for decompressing. + + + + + Class which implements Store (no compression) algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Compressor which implements Store compression. + + + + + Base class for the Store (no compression) transformation. + + + + + Initializes a new instance of the StoreTransformBase class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Decompressor which implements Store compression. + + + + + Compression settings of the Store method. + + + + + Initializes a new instance of the StoreSettings class. + + + + + Platform independent manager. + + + + + Interface which provides platform-specific operations. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + + + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + Encoding. + true if encoding is allowed in the ZIP file. + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Cryptographic stream. Allows encrypt or decrypt information from the given input stream. + + + + + Initializes a new instance of the CryptoStream class. + + Input stream. + Stream operational mode. + Crypto provider. + Specified mode is not allowed for the given stream. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Crypto provider which implements traditional PKWARE encryption. + + + + + Interface which provides method to encrypt/decrypt data in the ZIP archive. + + + + + Creates an decryptor object. + + A decryptor object. + + + + Creates an encryptor object. + + An encryptor object. + + + + Initialize crypto provider using given encryption settings. + + Encryption settings. + + + + Creates an decryptor object. + + A decryptor object. + + + + Creates an encryptor object. + + + + + + Initialize crypto provider using given encryption settings. + + Encryption settings. + + + + Base class for the transformations which implements traditional PKWARE encryption/decryption. + + + + + Initializes a new instance of the DefaultCryptoTransformBase class. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Update encryption keys. + + Byte. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Gets encoding byte. + + + + + Crypto transformation which implements traditional PKWARE decryption. + + + + + Initializes a new instance of the DefaultDecryptor class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Encryption settings for the default cryptographic provider (traditional PKWARE encryption. + + + + + Base class for the encryption settings. + + + + + Called when property value is changed. + + Property name. + + + + Occurs when a property value changes. + + + + + Gets name of the algorithm will be used for encryption/decryption. + + + + + Initializes a new instance of the DefaultEncryptionSettings class. + + + + + Gets or sets password will be used for encryption/decryption. + + + + + Gets or sets last modification file date and time. + + + + + Crypto transformation which implements traditional PKWARE encryption. + + + + + Initializes a new instance of the DefaultEncryptor class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + The exception that is thrown when a data stream is in an invalid format. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with a specified error message. + The error message that explains the reason for the exception. + + + Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. + The error message that explains the reason for the exception. + The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. + + + + Common interface for the data structures defined in the ZIP File Format Specification. + + + + + Read data from the binary reader. + + Binary reader to read data from. + true if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents the compression types. + + + + + This is the default compression type which uses the deflate algorithm. + + + + + This compression type uses the LZMA algorithm. + + + + + Represents the compression methods. + + + + + This is the default compression method. + + + + + This is the no-compression method. + + + + + This is the fastest compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is the the best compression method. + + + + + This is the the best compression method. + + + + + Represents a stream that can read from a compressed stream. + + + + + Initializes a new instance of the ZipInputStream class. + + + The stream that will be decompressed. + + + + + Reads a byte from the stream and advances the position within the stream + by one byte, or returns -1 if at the end of the stream. + The unsigned byte cast to an 32-bit integer, or -1 if at the end of the stream. + + + + + The stream that is decompressed. + + + + + Gets the uncompressed size of the stream. + + + + + Represents a stream that can write into a compressed stream. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + /// + The compression method. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + /// + The compression level. + + + + + Writes a byte to the current position in the stream and advances the + position within the stream by one byte. + + The byte to write to the stream. + + + + Create DeflateSettings for specified compression level. + + Compression level. + DeflateSettings. + + + + The stream that is decompressed. + + + + + Gets the uncompressed size of the stream. + + + + + Represents the ZipPackage class. + + + + + Represents a package of compressed files in the zip archive format. + + + + + Value that describes the type of action the zip archive can perform on entries. + + + + + Binary reader is used to read from working stream. + + + + + Binary writer is used to write to working stream. + + + + + Track whether Dispose has been called. + + + + + Encoding of the entry name. + + + + + Original archive stream. If this stream doesn't support seeking then + temporary working stream will be created. + + + + + Working archive stream. If original stream doesn't support seeking then + temporary working stream will be created. + + + + + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + + + + + Indicates whether the central directory have been read. + + + + + ZIP Archive End of Central Directory. + + + + + ZIP64 End of Central Directory Locator. + + + + + ZIP64 End of Central Directory Record. + + + + + ZIP entries. + + + + + Initializes a new instance of the ZipArchive class from the specified stream. + + The stream that contains the archive to be read. + + + + Initializes a new instance of the ZipArchive class. + + The stream that contains the archive to be read. + One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries. + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter + only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Initializes a new instance of the ZipArchive class. + + The stream that contains the archive to be read. + One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries. + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter + only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + Compression settings. + Encryption settings. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Creates an empty entry that has the specified path and entry name in the zip archive. + + A path, relative to the root of the archive, that specifies the name of the entry to be created. + An empty entry in the zip archive. + The entry name is empty. + The entry name is null. + The zip archive does not support writing. + The zip archive has been disposed. + + + + Creates an empty entry that has the specified path and entry name in the zip archive. + + A path, relative to the root of the archive, that specifies the name of the entry to be created. + Compression settings. + An empty entry in the zip archive. + The entry name is empty. + The entry name is null. + The zip archive does not support writing. + The zip archive has been disposed. + + + + Releases the resources used by the current instance of the ZipArchive class. + + + + + Retrieves a wrapper for the specified entry in the zip archive. + + A path, relative to the root of the archive, that identifies the entry to retrieve. + A wrapper for the specified entry in the archive; null if the entry does not exist in the archive. + The entry name is empty. + The entry name is null. + The zip archive does not support reading. + The zip archive has been disposed. + The zip archive is corrupt, and its entries cannot be retrieved. + + + + Release the unmanaged resources used by the current instance of the ZipArchive class. + + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + + + + Called by the Dispose() and Finalize() methods to release the unmanaged + resources used by the current instance of the ZipArchive class, and optionally + finishes writing the archive and releases the managed resources. + + True to finish writing the archive and release unmanaged and managed resources; + false to release only unmanaged resources. + + + + Dispose streams. + + + + + Writes archive to the original stream. + + + + + Occurs when a property value changes. + + + + + Gets the collection of entries that are currently in the zip archive. + + The zip archive does not support reading. + The zip archive has been disposed. + The zip archive is corrupt, and its entries cannot be retrieved. + + + + Gets entry name encoding. + + + + + Gets a value that describes the type of action the zip archive can perform on entries. + + + + + Gets compression settings. + + + + + Gets encryption settings. + + + + + Gets number of the disk. + + + + + Gets reader for the working stream. + + + + + Gets writer for the working stream. + + + + + Gets start of the central directory. + + + + + Initializes a new instance of the ZipPackage class from the specified stream. + + The stream that contains the archive to be read. + Mode. + + + + This method is used to create a ZipPackage from a stream. + + Stream. + ZipPackage instance. + + + + This method is used to create a ZipPackage with the passed file name. + + File name. + ZipPackage instance. + + + + Checks whether the stream that represents a zip file is actually a zip file. + + Stream. + True if the stream represents a zip file. + + + + Checks whether the file with the passed file name is actually a zip file. + + File name. + True if the file represents a zip file. + + + + Opens zip archive from the Stream. + + Stream. + ZipPackage instance. + + + + This method is used to open a ZipPackage with the passed file name. + + File name. + File access. + ZipPackage instance. + + + + Adds a file with the passed file name in the ZipPackage. + + File name. + + + + Adds a file with the passed file name in the ZipPackage. + + + + + Adds the files from the passed IEnumerable of file names in the ZipPackage. + + + + + Adds the files from the passed IEnumerable of file names in the ZipPackage. + + + + + Adds a file with the passed file name in the ZipPackage and associates it with the passed file name in zip. + + + + + Adds a file with the passed file name in the ZipPackage and associates it with the passed file name in zip. + + + + + Adds a file with the passed file name in the ZipPackage, associates it with the passed file name in zip and sets a date time for the entry. + + + + + Adds a file with the passed file name in the ZipPackage, associates it with the passed file name in zip and sets a date time for the entry. + + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + Compression type. + + + + Adds a stream in the ZipPackage, compresses it with the passed compress method, + associates it with the passed file name in zip and sets a date time for the entry. + + Stream. + File name in zip archive. + Compression level. + Date and time of file. + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + Compression level. + Date and time of file. + Compression type. + + + + Closes the ZipPackage. + + If the parameter is set to true then closes the file. + + + + Gets the index of the entry in the list of entries of the ZipPackage. + + File name in zip archive. + Index of entry or -1 when the entry is not found. + + + + Removes the passed entry from the ZipPackage. + + + + + Gets the file name for the ZipPackage. + + + + + Gets the collection of entries that are currently in the zip archive. + + The zip archive does not support reading. + The zip archive has been disposed. + + + + Represents the ZipPackageEntry class. + + + + + Initializes a new instance of the ZipPackageEntry class. + + ZipArchiveEntry. + + + + Opens the entry from the zip archive. + + The stream that represents the contents of the entry. + + + + Deletes the entry. + + + + + Gets the file attributes for the entry. + + + + + Gets the compressed size for the entry. + + + + + Gets the file name in the ZipPackage for the entry. + + + + + Gets the uncompressed size for the entry. + + + + + Static class which provides access to the platform-specific settings for all + parts of the ZIP library. + + + + + Gets or sets platform manager. + + + + + Operational mode of the cryptographic and compression streams. + + + + + Read operation is allowed. + + + + + Write operation is allowed. + + + + + Represents header of the transformation. + The extra data precedes the transformed data which provides + some additional information about transformation (compression or encryption). + + + + + Initializes a new instance of the TransformationHeader class. + + + + + Gets or sets buffer to store header information. + + + + + Gets or sets number of byte to read. + + + + + Gets initialization data of the header. + + + + + Gets length of the transformation header. + + + + + Gets or sets the flag which indicates + that the compressed size should include the header size. + + + + + Platform manager which can be used with full version of the .NET Framework. + + + + + Initializes a new instance of the DotNetPlatformManager class. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + Encoding. + true if encoding is allowed in the ZIP file. + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets or sets type of the temporary stream. The default value is TemporaryStreamType.Memory. + + + + + Type of the temporary stream. + + + + + The temporary stream represents temporary file in the file system. + + It allows manipulations with large archives and minimize memory consumption. + + + + The temporary stream represents data in the memory. + + It is the fastest way of the data manipulation. + + + + Provides static methods for creating, extracting, and opening zip archives. + + + + + Archives a file by compressing it and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + New entry in archive. + + + + Archives a file by compressing it using the specified compression level and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + New entry in archive. + + + + Archives a file by compressing it using the specified compression settings and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + Compression settings. + New entry in archive. + + + + Creates a zip archive that contains the files and directories from the specified directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression level, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression level, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression settings, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + Compression settings. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Extracts all the files in the specified zip archive to a directory on the file system. + + The path to the archive that is to be extracted. + The path to the directory in which to place the extracted files, + specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + + + + Extracts all the files in the specified zip archive to a directory on the file system and uses the specified character encoding for entry names. + + The path to the archive that is to be extracted. + The path to the directory in which to place the extracted files, + specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The encoding to use when reading or writing entry names in this archive. + Specify a value for this parameter only when an encoding is required for interoperability with zip archive + tools and libraries that do not support UTF-8 encoding for entry names. + + + + Extracts all the files in the zip archive to a directory on the file system. + + The zip archive to extract files from. + The path to the directory to place the extracted files in. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + + + + Extracts an entry in the zip archive to a file. + + The zip archive entry to extract a file from. + The path of the file to create from the contents + of the entry. You can specify either a relative or an absolute path. A relative path + is interpreted as relative to the current working directory. + + + + Extracts an entry in the zip archive to a file, and optionally overwrites an existing file that has the same name. + + The zip archive entry to extract a file from. + The path of the file to create from the contents + of the entry. You can specify either a relative or an absolute path. A relative path + is interpreted as relative to the current working directory. + True to overwrite an existing file that has the same name as the destination file; otherwise, false. + + + + Opens a zip archive at the specified path and in the specified mode. + + The path to the archive to open, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that specifies the actions which are allowed on the entries in the opened archive. + The opened zip archive. + + + + Opens a zip archive at the specified path and in the specified mode. + + The path to the archive to open, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that specifies the actions which are allowed on the entries in the opened archive. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + The opened zip archive. + + + + Opens a zip archive for reading at the specified path. + + The path to the archive to open, specified as a relative or absolute path. + A relative path is interpreted as relative to the current working directory. + The opened zip archive. + + + + Indicates whether specified directory is empty or not. + + Directory info. + True if directory is empty; otherwise - false. + + + + This method is used to copy the source stream to the destination stream. + + + + + + + Represents data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Represents base fields of data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets crc-32. + + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Data descriptor header signature. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents Zip64 end of central directory locator described in the + ZIP File Format Specification v6.3.3, #4.3.15. + + + + + Zip64 end of central directory locator signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets number of the disk with the + start of the zip64 end of + central directory. + + + + + Gets or sets relative offset of the zip64 + end of central directory record. + + + + + Gets or sets number of disks. + + + + + Represents Zip64 end of central directory record described in the + ZIP File Format Specification v6.3.3, #4.3.14. + + + + + Zip64 end of central directory record signature. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets size of zip64 end of central + directory record. + + + + + Gets or sets byte which indicates the ZIP specification version + supported by the software used to encode the file. + + + + + Gets or sets byte which indicates the compatibility + of the file attribute information. + + + + + Gets or sets version needed to extract. + + + + + Gets or sets number of this disk. + + + + + Gets or sets number of the disk with the start of the central directory. + + + + + Gets or sets total number of entries in the central directory on this disk. + + + + + Gets or sets total number of entries in the central directory. + + + + + Gets or sets size of the central directory. + + + + + Gets or sets offset of start of central directory with respect to the starting disk number. + + + + + Represents a compressed file within a zip archive. + + + + + Track whether Dispose has been called. + + + + + Initializes a new instance of the ZipArchiveEntry class. + + Zip archive. + Central directory header correspondent to this entry. + + + + Initializes a new instance of the ZipArchiveEntry class. + + Zip archive. + Entry name. + + + + Deletes the entry from the zip archive. + + The entry is already open for reading or writing. + The zip archive for this entry was opened in a mode other than Update. + The zip archive for this entry has been disposed. + + + + Releases the resources used by the current instance of the ZipArchiveEntry class. + + + + + Opens the entry from the zip archive. + + The stream that represents the contents of the entry. + The resulting stream depends on the zip archive mode. + If zip archive mode is then read-only stream without seeking support is returned (). + If zip archive mode is then write-only stream without seeking support is returned (). + If zip archive mode is then read/write stream which supports seeking is returned. + + The entry is already currently open for writing. + -or- + The entry has been deleted from the archive. + -or- + The archive for this entry was opened with the Create mode, and this entry has already been written to. + The entry is either missing from the archive or is corrupt and cannot be read. + -or- + The entry has been compressed by using a compression method that is not supported. + The zip archive for this entry has been disposed. + + + + Checks entry integrity. + + Message will be thrown if entry don't pass integrity check. + True - if entry is OK; false - otherwise. + + + + Writes central directory header. + + + + + Called by the Dispose() and Finalize() methods to release the unmanaged + resources used by the current instance of the ZipArchive class, and optionally + finishes writing the archive and releases the managed resources. + + True to finish writing the archive and release unmanaged and managed resources; + false to release only unmanaged resources. + + + + Occurs when a property value changes. + + + + + The zip archive that the entry belongs to, or null if the entry has been deleted. + + + + + Gets compressed size of the entry in the zip archive. + + + + + Gets or sets external file attributes. + + + + + Gets the relative path of the entry in the zip archive. + + + + + Gets or sets the last time the entry in the zip archive was changed. + + + + + Gets the uncompressed size of the entry in the zip archive. + + + + + Gets the file name of the entry in the zip archive. + + + + + Gets or sets compression method. + + + + + Gets or sets offset of the compressed data. + + + + + Gets disk start number. + + + + + Gets or sets offset of the local header. + + + + + Gets temporary stream which contains uncompressed data for update. + + + + + Specifies values for interacting with zip archive entries. + + + + + Only creating new archive entries is permitted. + + + + + Only reading archive entries is permitted. + + + + + Both read and write operations are permitted for archive entries. + + + + + Provides common internal static methods. + + + + + Copy specified number of bytes from one stream to another. + + Input stream. + Output stream. + Number of bytes to copy. + + + + Converts .NET DateTime structure to the MS-DOS date-time. + + DateTime structure to convert. + Packed date-time. + + + + Gets compression algorithm which corresponds to the given compression settings. + + Compression settings to get algorithm for. + Compression algorithm. + Compression method is not supported. + + + + Gets compression settings for the specified compression method. + + Compression method to get settings for. + Base settings to copy parameters from. + Compression settings. + Compression method is not supported. + + + + Detect whether the given path string ends with directory separator char (i.e. given path represents directory). + + Path string. + True if path string ends with directory separator char; otherwise - false. + + + + Gets value which indicates whether specified compression method is supported. + + Compression method to check. + True - if compression method is supported; false - otherwise. + + + + Converts MS-DOS date-time to the .NET DateTime structure. + + Packed date-time to convert. + DataTime structure. + + + + Read specified number of bytes from the given stream to the buffer. + + Stream to read data from. + Buffer to write data to. + Number of bytes to read. + + + + Seek given stream backward to the data signature. + + Stream to seek. + Signature to find. + true if signature is found, otherwise false. + + + + Represents central directory header record described in the + ZIP File Format Specification v6.3.3, #4.3.12. + + + + + Represents file header base class for + the local file header and central directory header + which are described in the ZIP File Format Specification v6.3.3, #4.3.7 and #4.3.12. + + + + + Represents base fields of data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets crc-32. + + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Copy properties from the given file header to this object. + + File header to copy properties from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets version needed to extract. + + + + + Gets or sets general purpose bit flag. + + + + + Gets or sets compression method. + + + + + Gets or sets last modification file date and time. + + + + + Gets or sets file name. + + + + + Gets or sets extra fields data. + + The extra fields data. + + + + Gets or sets list of extra fields. + + + + + Central directory header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets byte which indicates the ZIP specification version + supported by the software used to encode the file. + + + + + Gets or sets byte which indicates the compatibility + of the file attribute information. + + + + + Gets or sets disk number start. + + + + + Gets or sets internal file attributes. + + + + + Gets or sets external file attributes. + + + + + Gets or sets relative offset of local header. + + + + + Gets or sets file comment. + + + + + Represents data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Data descriptor header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Copy properties from the given file header to this object. + + File header to copy properties from. + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Represents general purpose bit flag for Methods 8 and 9 - Deflating + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 2 Bit 1 + 0 0 Normal (-en) compression option was used. + + + + + Bit 2 Bit 1 + 0 1 Maximum (-exx/-ex) compression option was used. + + + + + Bit 2 Bit 1 + 1 0 Fast (-ef) compression option was used. + + + + + Bit 2 Bit 1 + 1 1 Super Fast (-es) compression option was used. + + + + + Represents end of central directory record described in the + ZIP File Format Specification v6.3.3, #4.3.16. + + + + + End of central directory signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + true if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets number of this disk. + + + + + Gets or sets number of the disk with the start of the central directory. + + + + + Gets or sets total number of entries in the central directory on this disk. + + + + + Gets or sets total number of entries in the central directory. + + + + + Gets or sets size of the central directory. + + + + + Gets or sets offset of start of central directory with respect to the starting disk number. + + + + + Gets or sets .ZIP file comment. + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Gets extra field collection. + + The header info. + IEnumerable of ExtraFieldBase instances. + + + + Gets extra field data. + + Extra field collection. + Extra field data. + + + + Should implement parsing of extra field data. + + Extra field data. + + + + Gets extra field data. + + Byte array of extra field data. + + + + Gets known extra field type. + + + + + Gets extra field type (Header ID). + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets vendor version for this record. + + + + + Gets or sets signature (AE). + + + + + Gets or sets bit length of encryption key. + 1 - 128-bit , 2 - 192-bit , 3 - 256-bit. + + + + + Gets or sets method. + + + + + Gets extra field type (Header ID). + + + + + Represents identifier of the encryption algorithm described in the + ZIP File Format Specification v6.3.3, #7.2.3.2. + + + + + Unknown algorithm. + + + + + DES algorithm. + + + + + RC2 algorithm. + The version needed to extract up to 5.2. + + + + + 3DES 168 bit algorithm. + + + + + 3DES 112 bit algorithm. + + + + + AES 128 bit algorithm. + + + + + AES 192 bit algorithm. + + + + + AES 256 bit algorithm. + + + + + RC2 algorithm. + The version needed to extract 5.2 and higher. + + + + + Blowfish algorithm. + + + + + Twofish algorithm. + + + + + RC4 algorithm. + + + + + Represents extra field type (Header ID) described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Unknown extra field type. + + + + + Zip64 extra field type. + + + + + Ntfs extra field type. + + + + + StrongEncryption extra field type. + + + + + UnixTime extra field type. + + + + + AesEncryption extra field type. + + + + + Represents strong encryption extra field described in the + ZIP File Format Specification v6.3.3, #4.5.12. + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets format definition for this record. + + + + + Gets or sets encryption algorithm identifier. + + + + + Gets or sets bit length of encryption key. + + + + + Gets or sets processing flags. + + + + + Gets extra field type (Header ID). + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Initializes a new instance of the UnknownExtraField class. + + Header Id. + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets extra field type (Header ID). + + + + + Gets or sets extra field data. + + + + + Represents Zip64 Extended Information Extra Field described in the + ZIP File Format Specification v6.3.3, #4.5.3. + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets original uncompressed file size. + + + + + Gets or sets size of compressed data. + + + + + Gets or sets offset of local header record. + + + + + Gets or sets number of the disk on which this file starts. + + + + + Gets extra field type (Header ID). + + + + + Represents general purpose bit flag in the + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 0: If set, indicates that the file is encrypted. + + + + + Bit 3: If this bit is set, the fields crc-32, compressed + size and uncompressed size are set to zero in the + local header. The correct values are put in the + data descriptor immediately following the compressed + data. + + + Note: PKZIP version 2.04g for DOS only + recognizes this bit for method 8 compression, newer + versions of PKZIP recognize this bit for any + compression method. + + + + + Bit 4: Reserved for use with method 8, for enhanced + deflating. + + + + + Bit 5: If this bit is set, this indicates that the file is + compressed patched data. + + + Note: Requires PKZIP version 2.70 or greater. + + + + + Bit 6: Strong encryption. If this bit is set, you MUST + set the version needed to extract value to at least + 50 and you MUST also set bit 0. If AES encryption + is used, the version needed to extract value MUST + be at least 51. See the section describing the Strong + Encryption Specification for details. Refer to the + section in this document entitled "Incorporating PKWARE + Proprietary Technology into Your Product" for more + information. + + + + + Bit 11: Language encoding flag (EFS). If this bit is set, + the filename and comment fields for this file + MUST be encoded using UTF-8 (see APPENDIX D). + + + + + Bit 13: Set when encrypting the Central Directory to indicate + selected data values in the Local Header are masked to + hide their actual values. See the section describing + the Strong Encryption Specification for details. Refer + to the section in this document entitled "Incorporating + PKWARE Proprietary Technology into Your Product" for + more information. + + + + + Represents general purpose bit flag for the Method 6 - Imploding + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + For Method 6 - Imploding. + Bit 1: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + an 8K sliding dictionary was used. If clear, + then a 4K sliding dictionary was used. + + + + + For Method 6 - Imploding. + Bit 2: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + 3 Shannon-Fano trees were used to encode the + sliding dictionary output. If clear, then 2 + Shannon-Fano trees were used. + + + + + Represents local file header record described in the + ZIP File Format Specification v6.3.3, #4.3.7. + + + + + Local file header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Initializes a new instance of the LocalFileHeader class. + + + + + Initializes a new instance of the LocalFileHeader class. + + File header to copy properties from. + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents general purpose bit flag for the Method 14 - LZMA + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 1: If the compression method used was type 14, + LZMA, then this bit, if set, indicates + an end-of-stream (EOS) marker is used to + mark the end of the compressed data stream. + If clear, then an EOS marker is not present + and the compressed data size must be known + to extract. + + + + + Version needed to extract. + + +
+
diff --git a/SDRSharper/bin/x64/Debug/TelerikCommon.dll b/SDRSharper/bin/x64/Debug/TelerikCommon.dll new file mode 100644 index 0000000..4b858ed Binary files /dev/null and b/SDRSharper/bin/x64/Debug/TelerikCommon.dll differ diff --git a/SDRSharper/bin/x64/Debug/eibi-readme.txt b/SDRSharper/bin/x64/Debug/eibi-readme.txt new file mode 100644 index 0000000..9443588 --- /dev/null +++ b/SDRSharper/bin/x64/Debug/eibi-readme.txt @@ -0,0 +1,1243 @@ +How to use EiBi frequency lists. +================================ + +OVERVIEW +A) Conditions of use. +B) How to use. +C) Available formats. +D) Codes used. + +================================ + + +A) Conditions of use. + +All my frequency lists are free of cost, and any person +is absolutely free to download, use, copy, or distribute +these files or to use them within third-party software. +Should any mistake, omission or misinformation be found +in my lists, please send your helpful comment to +Eike.Bierwirth (at) gmx.de +[replace the "(at)" by the @ sign] + + +B) How to use. + I) Try to identify a signal on the radio: + You will need to know the frequency you tuned to in kHz, and the + time of the reception in UTC. + Search for the frequency in the list. Check all entries for this frequency: + - The listening time should fall inbetween the start and end times given for the broadcast. + - The day of the week should match. (If none is given in the list, the broadcast is daily.) + - Try to guess the language you hear, if you don't know it. + - Try to estimate the probability of propagation. The last column gives you information about + the transmitter site (if not, the transmitter is in the home country of the station.) + The target-area code should give you a clue if the signal is beamed in your direction or not. + If you are right in the target area, great. If you are "behind" it (from the transmitter's + point of view) or inbetween, your chances are also good. If the line connecting transmitter + and target area is perpendicular to the line connecting the transmitter to your location, + chances are lower. They are also lower if the target area is very close to the transmitter, + while you are far away. + Still, all rules can be turned upside-down by propagation conditions. You might sit in a good + direction but the waves may skip 80 kilometers above you in the ionosphere. Listed information + may be wrong, misleading, or outdated. Transmitters may fail, be upgraded, or drift in frequency. + Transmitter sites may change (for example, fire in the control room, hurricane tore the antenna + down, and transmissions have all been redirected to the Jlich transmitter). Broadcasters and + transmitter operators may mix up programmes or tune to the wrong frequency. + My lists will be useful for fast identification of many stations on the band, but in a number of + cases it will be of no use to you or it may bring you to a wrong conclusion. NO WARRANTY in case + of a wrong ID, an embarrasingly wrong log or reception report sent out etc. + + The ONLY 100% ID is that which you hear on the radio yourself. Even QSLs may be wrong. + + II) Find a broadcast you would like to hear: + Make extensive use of the SEARCH and SORT functions of the computer programme which you use. + For text-format files I use TextPad, a freely downloadable text editor. Software has been + written by very nice colleages of us to display the files in a more convenient manner, + namely: + + ShortwaveLog, by Robert Sillett, N3OEA, which you can find on http://www.shortwavelog.com/ + + RadioExplorer, by Dmitry Nefedov, Russia, which you can find on http://www.radioexplorer.com.ru/ + + For the CSV files, I recommend the GuindaSoft Lister, freely downloadable from + http://guindasoft.impreseweb.com/utile/utile.html + Click on the column headers to sort first by time, then by language or station or however you + wish. Try it out. + + +C) Available formats. + +Since B06, the fundamental database is a CSV semicolon-separated list. +IDL is used to transfer this into a frequency-sorted and a time-sorted text file. + +Naming of files is +sked-Xzz.csv for the CSV database; +freq-Xzz.txt for the frequency-sorted text file; +bc-Xzz.txt for the time-sorted text file; +where Xzz stands for the current broadcasting season: + X=A: Summer season + X=B: Winter season + zz: Two-character number for the year. E.g., + A99: Summer season 1999 + B06: Winter season 2006/2007. + +The change from A to B or from B to A usually coincides with the +change of clock to or from Daylight Saving Time in many parts of +the world. The U.S.A., however, decided to use Daylight Saving Time +for an even longer period, beginning in 2007. + +The download of freq and bc files shall furthermore be possible +in PDF, DOC, and zipped format. + + + + +D) Codes used. + I) Language codes. + II) Country codes. + III) Target-area codes. + IV) Transmitter-site codes. + + I) Lanuage codes. + + Numbers are number of speakers. 4m = 4 millions. + On the right in [brackets] the German translation, if significantly different. + + + -TS Time Signal Station [Zeitzeichensender] + A Arabic [Arabisch] + AB Abkhaz: Georgia (0.1m) [Abchasisch] + AC Aceh: Sumatera, Indonesia + ACH Achang (South-East Asia) + AD Adygea: Caucasus (0.2m) + ADI Adi: India-Assam (0.4m) + AF Afrikaans: South Africa, Namibia (6.4m) + AFA Afar: Djibouti (0.3m), Ethiopia (0.45m), Eritrea (0.3m) + AFG Pashto and Dari (main Afghan languages) + AH Amharic: Ethiopia (20m) [Amharisch] + AJ Adja (West Africa) + AK Akha: Burma (0.2m), China-Yunnan (0.13m) + AL Albanian: Albania (Tosk)(3m), Macedonia/Yugoslavia (Gheg)(2m) [Albanisch] + ALG Algerian (Arabic) + AM Amoy: S China (25m), Taiwan (15m), SoEaAsia (5m); very close to TW-Taiwanese) + Ang Angelus programme of Vaticane Radio + AR Armenian: Armenia (3m), USA (1m), RUS,GEO,SYR,LBN,IRN,EGY [Armenisch] + AR-W: Western, AR-E: Eastern + ARO Aromanian: Greece, Albania, Macedonia (0.1m) + ARU Arunachal (India) + ASS Assamese: Assam/India (14m) + ASY Assyrian: Middle East (0.1m) [Assyrisch] + ATS Atsi / Zaiwa (Myanmar: 13,000; China: 70,000) + Aud Papal Audience (Vaticane Radio) [Audienz des Papstes] + AV Avar: Dagestan, S Russia (0.6m) [Awarisch] + AW Awadhi: N&Ce India (20m) + AY Aymara: Bolivia (2m) + AZ Azeri: Azerbaijan (7m) [Aserbaidschanisch] + B Brazilian (Portuguese dialect) [Brasil.Portugiesisch] + BAD Badaga: India-Tamil Nadu (0.17m) + BAG Bagri (India 1.7m, PAK 0.2m) + BAJ Bajau: Malaysia-Sabah (50,000) + BAK Baku (SE Asia) + BAL Balinese: Bali / Indonesia (4m) [Balinesisch] + BAN Banjar: Indonesia/Borneo (3m) + BAO Baoule: Cote d'Ivoire (2m) + BAR Bari: S Sudan (0.3m) + BAS Bashkir: Ce Russia (1m) [Baschkirisch] + BAY Bayash Romani / Gypsy (Serbia, Croatia) + BB Braj Bhasa/Braj Bhasha: India (40,000) + BC Baluchi: Pakistan (1m), Iran (0.5m), Afghanistan (0.2m) + BE Bengali/Bangla: Bangladesh (100m), India (68m) + BEM Bemba (Zambia) + BH Bhili: Ce India (1.6m) + BHN Bahnar (Vietnam) + BI Bile: Eritrea-Keren (70,000) + BID Bidayuh (Malaysia-Sarawak) + BIS Bisaya (Malaysia-Sarawak) + BJ Bhojpuri/Bihari: India (23m), Nepal (1.4m) + BK Balkarian (Russian Caucasus) + BLK Balkan Romani (Gypsy) (Bulgaria, 1m) [Roma-Sprache] + BLT Balti: Pakistan (0.3m) + BM Bambara: Mali (2.7m) + BNA Borana Oromo: Ethiopia (4m) + BNG Bangala (Ce Angola) + BNJ Banjari / Gormati / Lambadi (India-Maharashtra,Karnataka,Andhra Pr.: 2m) + BON Bondo (India) + BOR Boro / Bodo (India-Assam,W Bengal: 0.5m) + BOS Bosnian (derived from Serbocroat) (4m) [Bosnisch] + BR Burmese (Barma / Myanmar) [Birmanisch] + BRA Brahui: Pakistan (1.5m), Afghanistan (0.2m) + BRB Bariba / Baatonum: Benin (0.5m) + BRI Brij (India) + Bru Bru (Vietnam) + BSL Bislama (Vanuatu) + BT Black Tai / Tai Dam (Vietnam: 500,000) + BTK Batak-Toba (Indonesia/Sumatra) + BU Bulgarian: Bulgaria (8m), Moldova (0.36m), Ukraine (0.2m) [Bulgarisch] + BUG Bugis (Indonesia/Celebes/Sunda) + BUK Bukharian (Central Asia - Uzbek??) + BUN Bundeli / Bundelkhandi (India: 1m) + BUR Buryat (South Siberia, similar to Mongolian) [Burjatisch] + BY Byelorussian [Weissrussisch] + C Chinese (if not specified) [Chinesisch] + CA Cantonese / Yue (South China 50m, others 15m) [Kantonesisch] + CC Chaochow (South China, close to TW-Taiwanese, AM-Amoy, SWT-Swatow) + CD Chowdary/Chaudhry/Chodri (India) + CEB Cebuano (Philippines) + CH Chin (not further specified) + C-A Chin-Asho: Myanmar-Arakan Hills (10,000) + C-D Chin-Daai (Myanmar) + Chinyanja: See NY-Nyanja + CHE Chechen (Chechnya, S Russia) [Tschetschenisch] + CHG Chattisgarhi: India-Mad.Pr.,Orissa,Bihar (11m) + CHI Chitrali + C-K Chin-Khumi: Myanmar (77,000) + C-O Chin-Thado (India) + CHR Chrau (Vietnam) + CHT Chatrali (Pakistan) + CHU Chuwabu (Mozambique) + C-T Chin-Tidim: Myanmar (0.2m), India (0.15m) + C-Z Chin-Zomin / Zomi-Chin (SEA) + CI Circassic (Cherkessia, S Russia) [Tscherkessisch] + CKM Chakma (India) + CKW Chokwe: Angola (0.5m), DR Congo (0.5m) + COF Cofan (Ecuador) + COK Cook Islands Maori + CR Creole (Caribbean) [Kreolisch] + CRU Chru (Vietnam) + CT Catalan: Spain, Andorra (31000) [Katalanisch] + CV Chuvash (Chuvashia/Russia) [Tschuwaschisch] + CW Chewa /Chichewa (Malawi) + CZ Czech [Tschechisch] + D German [Deutsch] + D-P Lower German (Northern Germany, USA) [Plattdeutsch] + DA Danish [Daenisch] + DAO Dao: Vietnam (0.5m) + DD Dhodiya (India) + DEG Degar / Montagnard (Vietnam) + DEN Dendi: Benin (30,000) + DH Dhivehi (Maldives) + DI Dinka (Sudan) + DIA Dial Arabic (North Africa) + DIT Ditamari / Tamari: Benin (20,000) + DN Damara-Nama service in Namibia (Languages: Damara, Nama) + DO Dogri-Kangri: N India (2m) + DR Dari / Eastern Farsi: Afghanistan (6m), Pakistan (1m) + DU Dusun (Malaysia-Sabah) + DUN Dungan (Central Asia) + DY Dyula (Burkina, Ivory Coast, Mali) + DZ Dzonkha: Bhutan (0.4m) + E English + EC Eastern Cham (Vietnam) + EDI English, German, Italian + E-C Col.English (S Sudan) + EGY Egyptian Arabic + E-L English Learning Programme (BBC) [Englisch-Sprachkurs] + EO Esperanto + ES Estonian [Estnisch] + Ewe Ewe (Ghana) + F French [Franzoesisch] + FA Faroese [Faeringisch] + FI Finnish [Finnisch] + FJ Fijian + FON Fon / Fongbe (West Africa) + FP Filipino + FS Farsi / Persian [Persisch] + FT Fiote (Angola-Cabinda) + FU Fulani/Fulfulde (0.25m BFA, 0.3m BEN, 5m CME) + FUJ FutaJalon (West Africa) + Fujian: see TW-Taiwanese + GA Garhwali: India-Kashmir,Uttar Pr. (2m) + GD Greenlandic [Groenlaendisch] + GE Georgian [Georgisch] + GJ Gujari/Gojri (India/Pakistan) + GL Galicic/Gallego (Spain) [Gallizisch] + GM Gamit: India-Gujarat (0.2m) + GO Gorontalo (Indonesia) + GON Gondi (India-Madhya Pr.,Maharashtra: 3m) + GR Greek [Griechisch] + GU Gujarati: India (43m) + GUA Guaran (Paraguay) + GUR Gurage/Guragena: Ethiopia (1m) + HA Haussa (Nigeria) + HAD Hadiya (Ethiopia) + HAR Haryanvi: India (13m) + HB Hebrew (Israel) [Hebraeisch] + HD Hindko (Pakistan) + HI Hindi: India (180m) + HK Hakka (South China 26m, TWN 2m, others 6m) + Hokkien: see TW-Taiwanese + HM Hmong (Vietnam) + HMA Hmar (India - Assam,Manipur,Mizoram 50,000) + HMB Hmong-Blue/Njua (Laos/Thailand) + HMW Hmong-White/Daw (Laos/Thailand) + HN Hani (S China) + HO Ho (India) + HR Croatian (Hrvatski) [Kroatisch] + Hre Hre (Vietnam) + HU Hungarian [Ungarisch] + HUA Huarani (Ecuador) + HUI Hui (China) + HZ Hazaragi: Afghanistan (1.4m), Iran (0.3m) + I Italian [Italienisch] + IB Iban (Malaysia - Sarawak) + IF If: Togo (100,000) + IG Igbo / Ibo: Nigeria (18m) + ILC Ilocano (Philippines) + ILG Ilonggo (Philippines) + IN Indonesian / Bahasa Indonesia [Indonesisch] + INU Inuktikut (Inuit language, Canada/Greenland) + IRQ Iraqi + IS Icelandic [Islaendisch] + J Japanese [Japanisch] + Jeh Jeh (Vietnam) + JG Jingpho (SE Asia) + JL Joula/Jula (West Africa) + JOR Jordanian + JR Jarai / Giarai / Jra (Vietnam) + JU Juba (Arabic; Chad, Sudan) + JV Javanese (Java/Indonesia) + K Korean [Koreanisch] + KA Karen (Burma) + K-P Karen-Pao (Burma) + K-S Karen-Sgaw (Burma) + K-W Karen-Pwo (Burma) + KAD Kadazan (Malaysia - Sabah) + KAL Kalderash Romani (Gypsy) (Romania) [Roma-Sprache] + KAB Kabardino (Caucasus) + KAM Kambaata (Ethiopia) + KAN Kannada (South India) + KAO Kaonde (Zambia) + KAR Karelian (Russia, close to Finnish border). [Karelisch] + Programme includes Finnish and Vespian parts. + KAT Katu (Vietnam) + KAY Kayan (Burma) + KB Kabyle: Algeria (2.5m) [Kabylisch/Berber] + KBO Kok Borok/Tripuri: India (0.7m) + KC Kachin (Burma) + KG Kyrgyz /Kirghiz: Kyrgystan (2.5m), China (0.1m) [Kirgisisch] + KH Khmer: Cambodia (6m), Vietnam (0.7m) [Kambodschanisch] + KHA Kham / Khams, Eastern (NE Tibet: 1m) + KHM Khmu (Laos 400,000, Vietnam 40,000) + KIM Kimwani (East Africa) + KiR KiRundi: Burundi (0.45m) + KK KiKongo/Kongo: DR Congo, Angola (3.5m) + KMB Kimbundu/Mbundu/Luanda: Angola (3m) + KNK KinyaRwanda-KiRundi service of the Voice of America / BBC + KNU Kanuri: Nigeria (3m), Chad (0.1m), Niger,Cameroon (0.1m) + KO Kosovar Albanian (Kosovo/Serbia) + KOH Koho/Kohor (Vietnam) + KOM Komering (Indonesia) + KON Konkani (India) + KOY Koya (India-Andhra Pr.: 300,000) + KPK Karakalpak (W Uzbekistan) + KRB Karbi / Mikir / Manchati (NE India: 0.5m) + KRI Krio (Sierra Leone) + KRW KinyaRwanda (Rwanda) + KS Kashmiri: India (4m), Pakistan (0.1m) + KU Kurdish + KuA Kurdish and Arabic + KuF Kurdish and Farsi + KUI Kui (India) + KUj Kirmanji Kurdish + KUL Kulina (Brazil) + KUK Kuki (India) + KUM Kumaoni/Kumauni (India) + KUN Kunama: Eritrea (0.14m) + KUR Kurukh / Kuruk: India (2m) + KUs Sorani Kurdish + KUT Kutchi (India 800,000) + KWA Kwanyama/Kuanyama (Ce Angola) + KYK Kayan/Kenyah (Malaysia-Sarawak) + KZ Kazakh: Kazakhstan (7m), China (1m), Mongolia (0.1m) [Kasachisch] + L Latin [Lateinisch] + LA Ladino (Hispanic Jewish lang.) + LAH Lahu (China 400,000; Myanmar 150,000) + LAM Lampung (Indonesia) + LAO Lao [Laotisch] + LaS Ladino and Spanish + LB Lun Bawang / Murut (Malaysia-Sarawak) + LBO Limboo (NE India) + LEP Lepcha (NE India) + LHO Lhotshampa (Bhutan) + LIM Limba (Sierra Leone) + LIN Lingala (Congo) + LIS Lisu (Burma/S China) + LND Lunda Ndembo (Angola) + LO Lomwe (Mocambique) + LOK Lokpa / Lukpa: Benin (50,000) + LOZ Lozi / Silozi (Zambia 500,000, ZWE+BOT 100,000) + LT Lithuanian [Litauisch] + LTO Oriental Liturgy of Vaticane Radio [Oestl.Lithurgie] + LU Lunda (Angola) + LUC Luchazi: Angola (0.24m), Zambia (0.05m) + LUN Lunyaneka/Nyaneka: Angola (0.4m) + LUR Luri (Iran) + LUV Luvale (Angola) + LV Latvian [Lettisch] + M Mandarin (Standard Chinese / Beijing dialect) + MA Maltese [Maltesisch] + MAD Madurese (Madura / Indonesia) + MAG Maghi/Magahi/Maghai (India) + MAI Maithili / Maithali (India: 22m, Nepal: 2m) + MAK Makonde (Tanzania/Mocambique) + MAL Malayalam (South India) + MAM Mamay / Rahanwein (Somalia) + MAN Manchu (Vietnam) + MAO Maori (New Zealand) + MAR Marathi (India) + MAS Masaai/Massai/Masai (E Africa) + MC Macedonian (2m) [Makedonisch] + MCH Mavchi/Mouchi/Mauchi/Mawchi/Monchi (India-Gujarat,Maharashtra: 72,000) + MEI Meithei/Manipuri: India (1.3m) + MEN Mende (Sierra Leone) + MEW Mewari/Mewadi (India) + MIE Mien / Iu Mien: S China (0.5m), Vietnam (0.3m) + MKB Minangkabau (Indonesia) + MKS Makasar (Indonesia) + MKU Makua / Makhuwa (N Mocambique) + ML Malay: Malaysia, Singapore, Brunei (18m) [Malaiisch] + MLK Malinke (West Africa) + MNO Mnong: Vietnam (0.1m) + MO Mongolian / Halh (MNG: 2m) [Mongolisch] + MOc Chinese / Peripheral Mongolian (N China: 3m) + Mon Mon (Burma) + MOO Moore: Burkina Faso (4.5m) + MOR Moro/Moru (S Sudan) + MR Maronite + MRC Moroccan (Arabic) + MRI Mari (Russia) + MRU Maru (Burma) + MSY Malagasy (Madagaskar) [Madegassisch] + MUG Mugrabian (North Africa) + MUN Mundari: India (1.5m) + MUO Muong (Vietnam) + MUR Murut (Malaysia-Borneo) + MW Marwari / Rajasthani (India) + MZ Mizo (South Asia) + NAG Naga-Makware (India/Burma) + NDA Ndau (Mocambique) + NDE Ndebele (S Africa/Zimbabwe) + NE Nepali: Nepal (10m), India (6m) [Nepalesisch] + NG Nagpuri / Sadani / Sadri (NE India: 2m) + NGA Ngangela/Nyemba (Angola) + NI Ni (South Asia) + NIC Nicobari (Nicobar Islands, India) + NIU Niuean (Niue / S Pacific) + NL Dutch (Nederlands) [Niederlaendisch] + Flemish is included here ;-) + NO Norwegian [Norwegisch] + NP Nupe (Nigeria) + NU Nuer: Sudan (0.75m), Ethiopia (0.04m) + NUN Nung (Vietnam) + NW Newari (India) + NY Nyanja / Chinyanja (Malawi 3m, Zambia 1m, ZWE+MOZ 1m) + OG Ogan (Indonesia) + OH Otjiherero service in Namibia (Languages: Herero, SeTswana) + OO Oromo: Ethiopia (8m) + OR Oriya / Orissa (India) + OS Ossetic (Caucasus) [Ossetisch] + OW Oshiwambo service in Angola and Namibia (Languages: Ovambo, Kwanyama) + P Portuguese [Portugiesisch] + PAL Palaung - Pale (Burma 300,000) + PED Pedi (S Africa) + PF Pashto and Farsi + PJ Punjabi (India/Pakistan) + PO Polish (Poland) [Polnisch] + POT Pothwari (Pakistan) + PS Pashto / Pushtu: Afghanistan (8m), Iran (0.1m) + PU Pulaar: Senegal (2m) + Q Quechua: Bolivia (2.8m) + QI Quichua: Ecuador + QQ Qashqai: Iran (1.5m) + R Russian [Russisch] + RAD Rade/Ede (Vietnam) + REN Rengao (Vietnam) + RH Rahanwein (Somalia) + RO Romanian [Rumaenisch] + ROG Roglai (Vietnam) + ROM Romanes (Gypsy) [Roma-Sprache] + Ros Rosary session of Vaticane Radio [Rosenkranz] + RWG Rawang (Burma) + S Spanish [Spanisch] + SAD Sadari (India) + SAH Saho: Eritrea, South (0.14m) + SAM Samayiki (India) + SAN Sango (Central African Rep.) + SAS Sasak (Indonesia) + SC Serbo-Croat (Yugoslav language before the [Serbokroatisch] + national and linguistic separation) + SCA Scandinavian languages (Norwegian, Swedish, Finnish) + SD Sindhi: Pakistan (17m), India (3m) + SED Sedang (Vietnam) + SEF Sefardi (Jewish language in Spain) + SEN Sena (Mocambique) + SGA Shangaan (Mocambique) + SGK Sgaw Karan + SGM Sara Gambai (Chad) + SGO Songo (Angola) + SHA Shan (Burma) + SHk Shan-Khamti (Burma) + SHC Sharchogpa (Bhutan) + SHE Sheena (Pakistan) + SHI Shiluk (Sudan, 0.18m) + SHO Shona (Zimbabwe) + SHP Sherpa (India,Nepal: 30,000) + SHU Shuwa (Arabic of Central Africa, Chad) + SI Sinhalese (Sri Lanka) + SID Sidamo/Sidama (Ethiopia, Eritrea) + SIK Sikkimese (NE India) + Silozi: See LOZ-Lozi + SIR Siraiki (Pakistan) + SK Slovak [Slowakisch] + SLM Solomon Islands Pidgin (Solomon Isl., S.Pacific) + SM Samoan: Samoa (0.2m), USA (0.1m) + SNK Sanskrit (India) + SNT Santhali: India (5.5m), Bangladesh (0.15m) + SO Somali + SON Songhai: Mali (0.6m), Niger (0.4m), Burkina (0.1m) + SOT SeSotho (Lesotho) + SOU Sous (North Africa) + SR Serbian [Serbisch] + SRA Soura / Saurashtra (India-Tamil N.,Karnataka,Andhra Pr.: 300,000) + STI Stieng: Vietnam (50,000) + SUD Sudanese (Arabia) + SUN Sundanese (Indonesia) + SUS Sousou (West Africa) + SV Slovenian [Slowenisch] + SWA Swahili (Kenya/Tanzania/Uganda) [Kisuaheli] + SWE Swedish [Schwedisch] + SWT Swatow (China) + SWZ SiSwati (Swaziland) + SYL Syrian-Lebanese Arabic + T Thai + TAG Tagalog (Philippines) + TAH Tachelhit (North Africa) + TAM Tamil (South India / Sri Lanka) [Tamilisch] + TB Tibetan: Tibet (1m), India (0.1m) [Tibetisch] + TEL Telugu (South India) + TEM Temme (Sierra Leone) + TFT Tarifit (North Africa) + TGR Tigre (Ethiopia/Eritrea) (not = Tigrinya) + THA Tharu Buksa (India-Nainital: 20,000) + TIG Tigrinya (Eritrea/Ethiopia) + TJ Tajik [Tadschikisch] + TK Turkmen [Turkmenisch] + TL Tai-Lu / Lu (S China:250,000;BRM:200,000;others 100,000) + TM Tamazight (North Africa) + TMJ Tamajeq (West Africa) + TN Tai-Nua / Chinese Shan (S China: 250,000; LAO,BRM: 200,000) + TNG Tonga (Zambia) + TO Tongan (Tonga, So.Pacific) + TOK Tokelau (Tokelau, So.Pacific) + TOR Torajanese (Indonesia) + TP Tok Pisin (PNG pidgin) + TS Tswana: Botswana (1m), South Africa (3m) + TSA Tsangla: Bhutan (0.4m). Close to Sharchagpakha. + TSH Tshwa (Mocambique) + TT Tatar: Central Russia, Volga (7m) + TTB Tatar-Bashkir service of Radio Liberty + TU Turkish: Turkey (46m), Bulgaria (0.8m) [Tuerkisch] + TUL Tulu (South India) + TUM Tumbuka (Malawi) + TUN Tunisian (Arabic) + TUR Turki + TV Tuva / Tuvinic (Tannu-Tuva, S Siberia) and Russian [Tuwinisch] + TW Taiwanese / Fujian / Hokkien (CHN 25m, TWN 15m, others 9m) + Twi Twi/Akan: Ghana (7m - Ashanti language) + TZ Tamazight/Berber: Morocco (2m), Algeria (1m) + UD Udmurt (Ce Russia) + UI Uighur: China/Xinjiang (7m), Kazakhstan (0.2m) [Uigurisch] + UK Ukrainian [Ukrainisch] + UM Umbundu: Angola (4m) + UR Urdu: Pakistan (54m) + UZ Uzbek (Southern Variant: 1m in Afghanistan) [Usbekisch] + V Vasco (Basque / Spain) [Baskisch] + Ves Vespers (Vaticane Radio) [Vesper] + Vn Vernacular = local languages (maybe various) [Lokalsprache] + VN Vietnamese [Vietnamesisch] + VV Vasavi (India) + VX Vlax Romani (Balkans) + W Wolof (Senegal) + Wa Wa (S China / Burma) + WAO Waodani (South America) + WE Wenzhou (China) + WT White Tai / Tai Don (Vietnam,Laos: 400,000) + WU Wu (China - Jiangsu, Zhejiang: 80m) + XH Xhosa (South Africa) + YAO Yao (Mocambique) + YI Yiddish (Jewish) [Jiddisch] + YIN Yi (Nosu Yi) (S China: 6 Yi dialects of each 300-800,000) + YK Yakutian / Sakha (Rep.Sakha, Siberia/Russia) [Jakutisch] + YO Yoruba: Nigeria (20m) + YOL Yolngu (NE Arnhem Land, NT, Australia; 7000 speakers) + YZ Yezidish (Armenia) + Z Zulu (South Africa) + ZA Zarma/Zama (West Africa) + ZD Zande (S Sudan) + ZG Zaghawa (Chad) + ZH Zhuang: S China (2 Zhuang dialects of 10m and 4m) + Zomi-Chin: see Chin-Zomi (C-Z) + + II) Country codes. + Countries are referred to by their ITU code. Here is a list: + + ABW Aruba + ADM Andaman & Nicobar Island + AFG Afghanistan + AFS South Africa + AGL Angola + AIA Anguilla + ALB Albania + ALG Algeria + ALS Alaska + AMS Saint Paul & Amsterdam Is. + AND Andorra + ANO Annobon I. + ARG Argentina + ARM Armenia + ARS Saudi Arabia + ASC Ascension I. + ATA Antarctica + ATG Antigua + ATN Netherlands Leeward Antilles + ATW Netherlands Windward Antilles + AUS Australia + AUT Austria + AVE Aves I. + AZE Azerbaijan + AZR Azores + B Brasil + BAH Bahamas + BAL Balleny Is. + BAN Banaba (Ocean I.) + BDI Burundi + BEL Belgium + BEN Benin + BER Bermuda + BFA Burkina Faso + BGD Bangla Desh + BHR Bahrain + BIH Bosnia-Hertsegovina + BIO Chagos Is. (Diego Garcia) (British Indian Ocean Territory) + BLR Belarus + BLZ Belize + BOL Bolivia + BOT Botswana + BOV Bouvet I. + BRB Barbados + BRM Burma (Myanmar) + BRU Brunei + BTN Bhutan + BUL Bulgaria + CAB Cabinda + CAF Central African Republic + CAN Canada + CBG Cambodia + CEU Ceuta + CGO Republic of Congo (capital Brazzaville) + CHL Chile + CHN China (People's Republic) + CHR Chrstmas I. (Indian Ocean) + CKH Cook Is. (South) (Rarotonga) + CKN North Cook Isls. (Manihiki) + CLM Colombia + CLN Sri Lanka + CLP Clipperton + CME Cameroon + CNR Canary Is. + COM Comores + CPV Cape Verde Is. + CRO Crozet I. + CTI Ivory Coast + CTR Costa Rica + CUB Cuba + CVA Vatican State + CYM Cayman Is. + CYP Gyprus + CZE Czech Republic + D Germany + DAI Daito Is. + DES Desventurados Is. + DJI Djibouti + DMA Dominica + DNK Denmarlc + DOM Dominican Republic + DRC Democratic Republic of Congo (capital Kinshasa) + E Spain + EGY Egypt + EQA Ecuador + ERI Eritrea + EST Estonia + ETH Ethiopia + EUR Iles Europe & Bassas da India + F France + FAR Faroe Is. + FIN Finland + FJI Fiji Is. + FLK Falkland Is. + FSM Federated States of Micronesia + G Great Britain and Northern Ireland + GAB Gabon + GDL Guadeloupe + GEO Georgia + GHA Ghana + GIB Gibraltar + GMB Gambia + GNB Guinea-Bissau + GNE Equatorial Guinea + GPG Galapagos Is. + GRC Greece + GRD Grenada + GRL Greenland + GTB Guantanamo Bay + GTM Guatemala + GUF French Guyana + GUI Guinea + GUM Guam + GUY Guyana + HKG Hong Kong, part of China + HMD Heard & McDonaid Is. + HND Honduras + HNG Hungary + HOL Netherlands + HRV Croatia + HTI Haiti + HWA Hawaii Is. + HWL Howland & Baker Is. + I Italy + ICO Cocos I. + IND India + INS Indonesia + IRL Ireland + IRN Iran + IRQ Iraq + ISL Iceland + ISR Israel + IWA Ogasawara (Bonin, Iwo Jima) + J Japan + JAF Jarvis (US Southem Line Isl.) + JDN Juan de Nova Island + JMC Jamaica + JMY Jan Mayen + JON Johnston Atoll + JOR Jordan + JUF Juan Femandez I. + KAL Kaliningrad + KAZ Kazakstan + KEN Kenya + KER Kerguelen + KGZ Kyrgyzstan + KIR Kiribati + KOR Korea, South + KRE Korea, North + KWT Kuwait + LAO Laos + LBN Lebanon + LBR Liberia + LBY Libya + LCA Saint Lucia + LIE Liechtenstein + LSO Lesotho + LTU Lithuania + LUX Luxembourg + LVA Latvia + MAC Macao + MAU Mauritius + MCO Monaco + MDA Moldova + MDG Madagascar + MDR Madeira + MEL Melilla + MEX Mexico + MKD Macedonia + MLA Malaysia + MLD Maldives + MLI Mali + MLT Malta + MNE Montenegro + MNG Mongolia + MOZ Mozambique + MRA Northern Mariana Islands + MRC Morocco + MRL Marshail Is. + MRN Marion & Prince Edward Is. + MRQ Marquesas Is. + MRT Martinique + MSR Montserrat + MTN Mauritania + MWI Malawi + MYT Mayotte + NCG Nicaragua + NCL New Caledonia + NFK Norfolk I. + NGR Niger + NIG Nigeria + NIU Niue + NMB Namibia + NOR Norway + NPL Nepal + NRU Nauru + NZL New Zealand + OCE Society Is. (Tahiti) + OMA Oman + PAK Pakistan + PAL Palau + PAQ Easter Island + PHL Philippines + PHX Phoenix Is. + PLM Palmyra (US Northem Line Is.) + PNG Papua New Guinea + PNR Panama Republic + POL Poland + POR Portugal + PRG Paraguay + PRU Peru + PRV Okino-Tori-Shima (Parece Vela) + PTC Pitcairn + PTR Puerto Rico + QAT Qatar + REU Reunion + ROU Roumania + RRW Rwanda + RUS Russian Federation + S Sweden + SAP San Andres & Providencia + SCN Saint Kitts - Nevis + SCO Scott I. + SDN Sudan + SEN Senegal + SEY Seychelles + SGA South Georgia Is. + SHN Saint Helena I. + SLM Solomon Is. + SLV EI Salvador + SMA Samoa (American) + SMO Samoa + SMR San Marino + SNG Singapore + SOK South Orkney Is. + SOM Somalia + SPM Saint Pierre & Miquelon + SPO Sao Paulo I. + SPR Spratly Is. + SRB Serbia + SRL Sierra Leone + SSI South Sandwich Is. + STB Saint Barthelemy + STP Sao Tome & Principe + SUI Switzerland + SUR Suriname + SVB Svalbard + SVK Slovakia + SVN Slovenia + SWZ Swaziland + SYR Syria + TCD Tchad + TCI Turks & Caicos Is. + TGO Togo + THA Thaiiand + TJK Tadjikistan + TKL Tokelau I. + TKM Turkmenistan + TON Tonga + TRC Tristan da Cunha + TRD Trinidad & Tobago + TRI Trindade & Martim Vaz Is., + TUA Tuamotu Archipelago + TUN Tunisia + TUR Turkey + TUV Tuvalu + TWN Taiwan + TZA Tanzania + UAE United Arab Emirates + UGA Uganda + UKR Ukraine + URG Uruguay + USA United States of America + UZB Uzbekistan + VCT Saint Vincent + VEN Venezuela + VIR American Virgin Is. + VRG British Virgin Is. + VTN Vietnam + VUT Vanuatu + WAK Wake I. + WAL Waliis & Futuna Is. + YEM Yemen + ZMB Zambia + ZWE Zimbabwe + + III) Target-area codes. + Af - Africa + Am - America(s) + As - Asia + C.. - Central .. + Car - Caribbean + Cau - Caucasus + CIS - Commonwealth of Independent States (Former Soviet Union) + CNA - Central North America + E.. - East .. + ENA - Eastern North America + Eu - Europe (often including North Africa/Middle East) + FE - Far East + LAm - Latin America (=Central and South America) + ME - Middle East + N.. - North .. + NAO - North Atlantic Ocean + Oc - Oceania (Australia, New Zealand, Pacific Ocean) + S.. - South .. + SAO - South Atlantic Ocean + SEA - South East Asia + SEE - South East Europe + Sib - Siberia + W.. - West .. + WNA - Western North America + + Alternatively, ITU country codes may be used if the target area is limited to + a certain country. This is often the case for domestic stations. + + IV) Transmitter site codes. + One-letter or two-letter codes for different transmitter sites within one country. + No such code is used if there is only one transmitter site in that country. + + The code is used plainly if the transmitter is located within the home country of the station. + Otherwise, it is preced by "/ABC" where ABC is the ITU code of the host country of the transmitter site. + Example: A BBC broadcast, relayed by the transmitters in Samara, Russia, would be designated as "/RUS-s". + + In many cases, a station has a "major" transmitter site which is normally not designated. Should this station + use a different transmitter site in certain cases, they are marked. + No transmitter-site code is used when the transmitter site is not known. + + AFS: Meyerton 26S35-28E08 + AGL: Mulenvos 08S53-13E20 + AIA: The Valley 18N13-63W01 + ALB: CRI: Cerrik 40N59'47"-19E59'58" (1x100kW = 2x50kW) + R Tirana: Shijiak 41N19'53"5-19E33'08"6 (1x100kW = 2x50kW) + MW: Durres/Fllake 41N22'11"-19E30'17" (500 kW) + ALS: Anchor Point 59N45-151W44 + ARG: General Pacheco 34S36-58W22 + ARM: Gavar (formerly Kamo) 40N25-45E11 + ARS: Riyadh 24N30-46E23 except j-Jeddah 21N32-39E10 + ASC: Ascension Island, 07S54-14W23 + ATA: Base Esperanza 63S24-56W59 + ATG: St.John's 17N06-61W48 (2 x 250kW) + ATN: Bonaire 12N12-68W18 + AUS: Shepparton 36S20-145E25 except: + a-Alice Springs 23S49-133E51 + b-Brandon 19S31-147E20 + d-Darwin NT 12S25-136E37 + h-Humpty Doo NT 12S34-131E05 + ka-Katherine NT 14S24-132E11 + ku-Kununurra WA 15S48-128E41 + t-Tennant Creek NT 19S40-134E16 + AUT: Moosbrunn 48N00-16E28 + AZE: Gnc 40N37-46E20 + BEL: Wavre(Waver) 50N44-04E34 + BEN: Parakou 09N20-02E38 + BGD: Dhaka 23N43-90E26 + BHR: Abu Hayan 26N02-50E37 + BIH: Bijeljina 44N42-19E10 + BIO: Diego Garcia 07S03-72E04 + BLR: Minsk-Sasnovy 53N56-27E34 except: + b - Brest 52N20-23E35 (5kW) + g - Hrodna/Grodno 53N40-23E50(5 kW) + m - Mahiliou/Mogilev ("Orsha") 53N37-30E20 (5 kW) + BOT: VoA: Mopeng Hill 21S57-27E39 + BTN: Thimphu 27N28-89E39 + BUL: Plovdiv-Padarsko 42N10-24E42 (2x500kW,3x250kW) + except s-Sofia-Kostinbrod 42N49-23E13 (2x100kW,2x50kW) + v-Varna 43N03-27E40 + 747-Petrich 41N42-23E18 (500kW) + 1224-Vidin 43N49-22E40 (500kW) + CAN: Sackville 45N53-64W19 except + c-Calgary AB + j-St John's NL 47N34-52W48 + o-Ottawa ON 40N18-75W45 + t-Toronto (Aurora) ON 44N00-79W30 + v-Vancouver BC 49N11-123W04 + CBG: Phnom Penh 11N34-104E51 + CHL: Santiago 33S27-70W41 + CHN: a-Baoji 34N30-107E10 (5x100kW) + b-Beijing 39N57-116E27 + B-Beijing 39N55-116E25 (12x100kW,9x50kW) + d-Dongfang (Hainan) 18N54-108E39 (150kW) + e-Gejiu (Yunnan) 23N21-103E08 + g-Gannan (Hezuo) 35N06-102E54 + h-Hohhot (Nei Menggu) 41N12-111E30 + j-Jinhua 28N07-119E39 + k-Kunming (Yunnan) 25N10-102E50 + ka-Kashi (Kashgar) (Xinjiang) 39N30-76E00 + L-Lingshi (Shanxi) 36N52-111E40 (6x100kW) + n-Nanning (Guangxi) 22N47-108E11 + q-Ge'ermu (Qinghai) 36N24-94E59 (100kW) + qq-Qiqihar 47N02-124E03 (500kW) + s-Shijiazhuang (Hebei) 38N04-114E28 (5x50kW) + t-Tibet (Lhasa) 29N30-90E59 + u-Urumqi (Xinjiang) 43N35-87E30 (6x500kW) + x-Xian (Shaanxi) 34N12-108E54 + 603-Guangdong 684-Dongfang 1296-Kunming + Regional Stations: Fuzhou:26N06-119E24 Lhasa:29N30-90E59 + Nanchang:28N38-115E56 Nanjing:32N02-118E44 Nanning:32N02-108E11 + Qinghai: Xining 36N38-101E36 + CLN: DW: Trincomalee 08N44-81E10 (SW 3 x 250kW, MW 400kW) + R.Japan/SLBC: Ekala 07N06-79E54 + RL/VoA: Iranawila 07N32-79E30 + CTR: Gene Scott: Cahuita 09N45-82W54 + REE: Caiari de Poroc 10N00-83W30 + CUB: La Habana (Quivicn) 22N50-82W17 + CVA: Santa Maria di Galeria 42N03-12E19 except: + v-Citta del Vaticano 41N54-12E27 + CYP: Zygi (Limassol) 34N43-33E19 except: + y-Yeni Iskele 35N13-33E55 + CZE: Litomysl 49N48-16E10 + D: b-Biblis 49N41-08E29 + be-Berlin 52N30-13E20 + d-Dillberg 49N19-11E23 + e-Erlangen 49N35-11E00 + h-Holzkirchen 47N52-11E44 + ha-Hannover 52N23-09E42 + i-Ismaning 48N15-11E45 + j-Juelich 50N57-06E22 ( 100kW) + L-Lampertheim 49N36-08E33 + n-Nauen 52N38-12E54 ( 4 x 500kW) + nu-Nuernberg 49N27-11E05 + w-Wertachtal 48N05-10E41 (13 x 500kW) + DJI: Djibouti 11N30-43E00 + DNK: Karup 56N18-09E10 + E: Noblejas 39N57-03W26 + EGY: a-Abis 31N10-30E05 + z-Abu Zaabal 30N16-31E22 + ETH: R.Ethiopia: Geja Jewe 08N47-38E38 + F: Issoudun 46N57-01E59 + r-Rennes 48N06-01W41 + FIN: YLE: Pori 61N28-21E35 + Scand.Weekend R.: Virrat 62N23-23E37 + G: r-Rampisham 50N48-02W38 + s-Skelton 54N44-02W54 + w-Woofferton 52N19-02W43 + cp-London-Crystal Palace + cr-London-Croydon + 648,1296-Orfordness (SE coast) + 198-Droitwich + GAB: Moyabi 01S40-13E31 + GEO: Dusheti 42N03-44E41 + GNE: Bata 01N48-09E46 + GRC: Avlis (38N23-23E36) + GUF: Montsinery 04N54-52W36 + GUM: AWR: Station KSDA, Agat, 13N20-144E39 + KTWR: Agana 13N17-144E40 + AFRTS: Barrigada 13N34-144E50 + GUY: Sparendaam 06N49-58W10 + HNG: Jaszbereny 47N35-19E52 + HOL: Flevo 52N21-05E27 + HRV: Deanovec 45N41-16E27 + HWA: Naalehu 19N02-155W40 + AFRTS: Pearl Harbour 21N25-158W09 + I: RAI,VoM: Roma (Prato Smeraldo) 41N48-12E31 + IRRS: unknown. Formerly Milano 45N27-09E11 + IND: a-Aligarh 28N00-78E06 + b-Bengaluru-Doddaballapur (Bangalore) 13N14-77E13 + c-Chennai(ex Madras) 13N08-80E07 + d-Delhi (Kingsway) 26N45-77E12 + g-Gorakhpur 23N52-83E28 + k-Delhi(Khampur) 28N43-77E38 + m-Mumbai (ex Bombay) 19N11-72E49 + p-Panaji (ex Goa) 15N28-73E51 + w-Guwahati 26N11-91E50 + 594,1134-Kolkata(Calcutta)-Chinsurah + 702-Jalandhar + 1053-Tuticorin + 1071-Rajkot + Regional Stations: + Aizawl(10kW):23N43-92E43 + Bhopal(50kW):23N10-77E38 + Chennai(50kW):13N08-80E07 + Delhi(Kingsway)(50kW):26N45-77E12 + Gangtok(10kW):27N22-88E37 + Guwahati(50kW):26N11-91E50 + Hyderabad(50kW):17N20-78E33 + Imphal(50kW):24N37-93E54 + Itanagar(50kW):27N04-93E36 + Jaipur(50kW):26N54-75E45 + Jammu(50kW):32N45-75E00 + Jeypore(50kW):18N55-82E34 + Kohima(50kW):25N39-94E06 + Kolkata(Calcutta)(50kW):22N27-88E18 + Kurseong(50kW):26N55-88E19 + Leh(10kW):34N08-77E29 + Lucknow(50kW):26N53-81E03 + Mumbai(50kW):19N11-72E49 + Port Blair-Brookshabad(5kW):11N37-92E45 + Ranchi(50kW):23N24-85E22 + Shillong(50kW):25N26-91E49 + Shimla(50kW):31N00-77E05 + Srinagar(50kW):34N00-74E50 + Thiruvananthapuram(Trivendrum)(50kW):08N29-76E59 + INS: Jakarta (Cimanggis) 06S12-106E51 + IRN: a-Ahwaz 31N20-48E40 + k-Kamalabad 35N46-51E27 + m-Mashhad 36N15-59E33 + s-Sirjan 29N27-55E41 + z-Zahedan 29N28-60E53 + ISL: Reykjavk 64N05-21W50 + ISR: Yavne 31N52-34E45 + J: Yamata 36N10-139E50 except: + c-Chiba(Tokyo-Nagara) + n-Nemuro(Sapporo) + JOR: Al Karanah 31N44-36E26 + KAZ: Almaty (Alma Ata, Dmitrievka) 43N17-77E00 + k-Karaturuk 43N39-77E56 + KGZ: Bishkek 42N54-74E37 + KOR: Kimjae 35N50-126E50 except: + g-Goyang, Gyeonggi-do + h-Hwasung 37N13-126E47 + p-Gimpo, Gyoenggi-do + KRE: c-Chongjin/Haeju 41N47-129E50 + e-Hyesan 41N04-128E02 + h-Hamhung 39N56-127E39 + k-Kanggye 40N58-126E36 + p-Pyongyang 39N05-125E23 + s-Sariwon 38N05-125E08 + u-Kujang 40N05-125E05 + w-Wonsan 39N05-127E25 + y-Pyongsong 40N05-124E24 + KWT: Sulaibiyah 29N10-47E45 + LAO: Vientiane 17N58-102E33 + LTU: Sitkunai 55N02-23E49 http://www.geocities.com/ratekona/sit + LUX: Junglinster 49N43-06E15 + LVA: Ulbroka 56N56-24E17 + MCO: Mont Angel/Fontbonne 43N44-07E26 + MDA: Maiac near Grigoriopol 47N14-29E24 + MDG: Talata Volonondry 18S43-47E37 + MLA: ka-Kajang 03N01-101E46 except: + kk-Kota Kinabalu 06N12-116E14 + ku-Kuching 01N33-110E20 + s-Sibu 02N18-111E49 + MLI: Bamako 12N39-08W01 + MNG: Ulaanbaatar 47N55-107E00 + MRA: RFA/RL/VoA: Tinian 15N03-145E36 except: + s-Saipan (Agingan Point) 15N07-145E42 + KFBS: Marpi, Saipan 15N16-145E48 + MRC: VoA/RL/RFE:Briech 35N34-05W58 + RTM:Tanger 35N48-05W55 except n-Nador 35N03-02W55 + Medi-1: Nador 35N03-02W55 + NOR: k-Kvitsoy 59N04-05E27 + s-Sveio 59N37-05E19 + NZL: Rangitaiki 38S50-176E25 + OMA: Radio Oman: t-Thumrait 17N38-53E56 + s-Seeb 23N40-58E10 + BBC: A'Seela 21N57-59E27 + PAK: Islamabad 33N27-73E12 except: + p-Peshawar 34N00-71E30 (10kW) + q-Quetta 30N15-67E00 (10kW) + r-Rawalpindi 33N30-73E00 (10kW) + PAL: Medorn 07N22-134E28 + PHL: RL/Voa: Tinang 15N21-120E37 except: + x-Tinang-2(portable) 15N21-120E38 (50kW) + 1143-Poro 16N26-120E17 + FEBC: Bocaue 14N48-120E55 except: + i-Iba 15N22-119E57 + RVA, R Vaticana: Palauig,Zembales 15N28-119E50 + DUR2 9581: 14N41-120E59 + POL: Warszawa 52N04-20E52 + POR: DW: Sines 37N57-08W45 (3 x 250kW) + RdP: Sao Gabriel(Lisboa) 38N45-08W40 except s-Sines. + PTR: Roosevelt Roads 18N23-67W11 + ROU: t-Tiganesti 44N42-26E06 except: + g-Galbeni 46N44-26E50 + s-Saftica 50kW + RUS: a-Armavir/Tblisskaya/Krasnodar 45N00-40E49 + ar-Arkhangelsk 64N30-40E30 + b-Blagoveshchensk (Amur) 50N16-127E30 + c-Chita (Atamanovka) (S Siberia) 51N50-113E43 + e-Ekaterinburg (S Ural) 56N55-60E36 + i-Irkutsk (Angarsk) (S Siberia) 52N18-104E18 + k-Kaliningrad-Bolshakovo 54N54-21E43 + ka-Komsomolsk-na-Amur (Far East) 50N39-136E55 + kh-Khabarovsk (Far East) 48N33-135E15 + kr-Krasnoyarsk 56N01-92E54 + ku-Kurovskaya-Avsyunino (near Moscow) 55N34-39E09 + m-Moscow/Moskva 55N45-37E18 + ma-Magadan + mu-Murmansk 68N58-32E46 + n-Novosibirsk (Oyash) 55N31-83E45 except for DW: + Novosibirsk City 55N04-82E58 + p-Petropavlovsk-Kamchatskij (Yelizovo) 52N59-158E39 + s-Samara (Zhygulevsk) 53N17-50E15 + se-Serpukhov [actually Noginsk but Noginsk closed with start of A03] 54N54-37E25 + sp-St.Petersburg (Popovka/Krasnyj Bor) 59N39-30E42 + t-Taldom - Severnyj (near Moscow) 56N44-37E38 + u-Ulan-Ude + v-Vladivostok (Razdolnoye) 43N32-131E57 + ya-Yakutsk/Tulagino 62N01-129E48 + ys-Yuzhno-Sakhalinsk (Vestochka) 46N55-142E54 + RRW: Kigali 01S53-30E07 (4 x 250kW) + S: Hoerby 55N49-13E44 + SEY: Mahe 04S36-55E28 + SNG: Kranji 01N25'23"-103E43'57" + Mediacorp 01N25'20"-103E43'30" + SRB: s-Stubline 44N34-20E09 + SRL: SLBS: Goderich 08N30-13W14 + STP: Pinheira 00N18-06E46 + SVK: Rimavska Sobota 48N23-20E00 + SWZ: Manzini 26S34-31E59 + SYR: Adra 33N27-36E30 + TCD: N'Djamena-Gredia 12N08-15E03 + THA: RL/R.THA/VoA: Udon Thani 17N25-102E48 except: + b-Bangkok / Prathum Thani(1575,4830,6070,7115) 13N47-100E30 + BBC: Nakhon Sawan 15N49-100E04 + TJK: y-Yangi Yul (Dushanbe) 38N29-68E48 + o-Orzu 37N32-68E42 + TUN: Sfax 34N48-10E53 + TUR: Emirler 39N29-32E51 except + c-Cakirlar 39N58-32E40 + TWN: h-Huwei 23N43-120E25 + k-Kouhu 23N35-120E10 + m-Minhsiung 23N29-120E27 + n-Tainan 23N11-120E38 + p-Paochung 23N43-120E18 + s-Tanshui 25N13-121E29 + t-Taipei (Pali) 25N05-121E27 + UAE: Dhabbiya 24N11-54E14 except m-Makta 24N21-54E34 + UAE R Dubai: Dubai 25N14-55E16 + UKR: Kiev/Brovary 50N31-30E46 except: + L-Lviv (Krasne) (Russian name: Lvov) 49N51-24E40 + m-Mykolaiv (Kopani) (Russian name:Nikolayev) 46N49-32E14 + x-Kharkiv (Taranivka) (Russian name: Kharkov) 49N38-36E07 + z-Zaporizhzhya + 657-Chernivtsi. 936-Krasne. + USA: c-Cypress Creek, SC 32N41-81W08 + d-Delano, CA 35N45-119W10 + g-Greenville, NC 35N35-77W22 + k-Key Saddlebunch, FL 24N34-81W45 + m-via WRMI (see below) + o-Okeechobee, FL 27N28-80W56 + w-via WWCR (see below) + KAIJ: Dallas, TX 33N13-96W52 + KJES: Vado, NM 32N08-106W35 + KTBN: Salt Lake City, UT 40N39-112W03 + KVOH: Los Angeles (Rancho Simi), CA 34N15-118W38 + WBCQ: Monticello, ME 46N20-67W50 + WBOH: Newport, NC 34N47-76W56 + WEWN: Birmingham (Vandiver), AL 33N30-86W28 + WGTG: McGaysville, GA 34N58-84W22 + WHRA: Greenbush, ME 45N08-68W34 + WHRI: Cypress Creek, SC 32N41-81W08 + WINB: Red Lion (York), PA 39N54-76W35 + WJIE: Millerstown, KY 37N26-86W02 + WMLK: Bethel, PA 40N29-76W17 + WRMI: Miami (Hialeah Gardens), FL 25N54-80W22 + WRNO: New Orleans, LA 29N50-90W07 + WTJC: Newport, NC 34N47-76W53 + WYFR: Okeechobee, FL 27N28-80W56 + WWBS: Macon, GA 32N50-83W38 + WWCR: Nashville, TN 36N13-86W54 + WWRB: Manchester / Morrison, TN 35N29-86W02 + UZB: Tashkent 41N13-69E09 + VTN: Sontay 21N12-105E22 except: + b-Buon Me Thuot 12N41-108E03 + h-Hanoi-Me Tri 21N01-105E47 + x-Xuan Mai 20N43-105E33 + YEM: a-Al Hiswah/Aden 12N50-45E02 + s-Sanaa 15N22-44E11 + diff --git a/SDRSharper/bin/x64/Debug/eibi.csv b/SDRSharper/bin/x64/Debug/eibi.csv new file mode 100644 index 0000000..bbb454d --- /dev/null +++ b/SDRSharper/bin/x64/Debug/eibi.csv @@ -0,0 +1,41310 @@ +FMSCAN userlist available at http://fmscan.org/perseus.php,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +(c) www.mwlist.org ,,,,,,,,,,,,,,,,,,,,,, +*** THIS FILE IS FOR PERSONAL USE ONLY, NOT FOR PUBLICATION ***,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +userlist1.txt file ordered by frequency and signal strength prediction for user location (06e25/52n07) on 19 Mar 2014,,,,,,,,,,,,,,,,,,,,,, +Put it into your Perseus folder and rename it to userlist1.txt or userlist2.txt (userlist.txt for software versions below 4.0),,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +this list contains combined and modified data from AMLIST (MW), EiBi, TBL (Tropical Band List) and HFCC (SW),,,,,,,,,,,,,,,,,,,, +FMSCAN developed by Peer-Axel Kroeske, DL2LBP (peeraxel@aol.com),,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +please support AMLIST.ORG by reporting new stations and submitting logs,,,,,,,,,,,,,,,,,,,,,, +on the world log map,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +MW prediction for nighttime (24h local),,,,,,,,,,,,,,,,,,,,,, +SW prediction for strongest moment within transmission time,,,,,,,,,,,,,,,,,,,,,, +Time values 0001*2359 indicate that schedule times are unknown,,,,,,,,,,,,,,,,,,,,,, +"offsets are without KHz value. ""99937"" at 1440 KHz stands for 1439.99937 KHz",,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +0:freq,1:lang,,3:prog,4:mod,5:loca,6:lat,7:lon,,9:pow,,11:dist,,,,15:TIME,16:DAYS,,18:extra,,,, +===================================================================================,,,,,,,,,,,,,,,,,,,,,, +11.904761,RUS,,Alpha/RSDN-20,b,Krasnodar (RSDN-20) (KD),45.403406,38.158108,,0.025,,2421,95,97,,,,-11.904761,,6700087,,, +11.904761,RUS,,Alpha/RSDN-20,b,Novosibirsk (RSDN-20) (NS),55.756111,84.447889,,0.025,,4850,53,121,,,,-11.904761,,6700084,,, +11.904761,RUS,,Alpha/RSDN-20,b,Khabarovsk (RSDN-20) (KH),50.072319,136.609489,,0.025,,7724,32,150,,,,-11.904761,,6700086,,, +12.648809,RUS,,Alpha/RSDN-20,b,Krasnodar (RSDN-20) (KD),45.403406,38.158108,,0.025,,2421,95,97,,,,-12.648809,,6700089,,, +12.648809,RUS,,Alpha/RSDN-20,b,Novosibirsk (RSDN-20) (NS),55.756111,84.447889,,0.025,,4850,53,121,,,,-12.648809,,6700090,,, +12.648809,RUS,,Alpha/RSDN-20,b,Khabarovsk (RSDN-20) (KH),50.072319,136.609489,,0.025,,7724,32,150,,,,-12.648809,,6700088,,, +14.880952,RUS,,Alpha/RSDN-20,b,Krasnodar (RSDN-20) (KD),45.403406,38.158108,,0.025,,2421,95,97,,,,-14.880952,,6700093,,, +14.880952,RUS,,Alpha/RSDN-20,b,Novosibirsk (RSDN-20) (NS),55.756111,84.447889,,0.025,,4850,53,121,,,,-14.880952,,6700092,,, +14.880952,RUS,,Alpha/RSDN-20,b,Khabarovsk (RSDN-20) (KH),50.072319,136.609489,,0.025,,7724,32,150,,,,-14.880952,,6700094,,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,0000-0200,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,0400-0600,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,0800-1000,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,1200-1400,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,1600-1800,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,2000-2200,1234567,-16.4,FSK, 200 Bd,86009,, +17.2,S,,SAQ,b,Grimeton (ha),57.105556,12.390278,,0.025,,675,32,80,,0800-1000,9999999,-17.2,temporary, special transmission 24.12,86011,, +18.1,RUS,,RDL,b,Arkhangelsk (AR),64.360492,41.568489,,0.025,,2420,42,97,,,,-18.1,MIL HQ Moskva VLF network,6700079,,, +18.1,RUS,,RDL,b,Krasnodar (KD),45.403403,38.158111,,0.025,,2421,95,97,,,,-18.1,MIL HQ Moskva VLF network,6700077,,, +18.1,RUS,,RDL,b,Nizhny Novgorod (NN),56.172861,43.933833,,0.025,,2454,64,98,,,,-18.1,MIL HQ Moskva VLF network,6700078,,, +18.1,RUS,,RDL,b,several tx sites,61.2,99.9,,0.025,,5299,41,126,,,,-18.1,,86014,,, +18.2,IND,,VTX3,b,South Vijayanarayanam (TN),8.387033,77.752761,,0.025,,8003,100,153,,,,-18.2,MSK/INN,86015,,, +18.3,F,,HWU,b,Rosnay (36),46.713056,1.244444,,400,,707,214,38,,,,-18.3,French Navy, M,86016,, +18.9,RUS,,RDL,b,Moskva VLF network (MV),61.2,99.9,,0.025,,5299,41,126,,,,-18.9,,86018,,, +19.2,IND,,VTX4,b,South Vijayanarayanam (TN),8.387033,77.752761,,0.025,,8003,100,153,,,,-19.2,,32200020,,, +19.6,G,,GQD,b,Anthorn (EN-CUM),54.911289,-3.281372,,30,,712,300,49,,,,-19.6,FSK,86019,,, +19.8,AUS,,NWC,b,Exmounth/NCS Harold E. Holt (WA),-21.816111,114.165278,,1000,,13104,90,127,,,,-19.8,,86020,,, +20.2,J,,JJI,b,Ebino/JMSDF (kyu-miy),32.084444,130.827778,,0.025,,9209,45,160,,,,-20.2,Japanese Navy, FSK,86022,, +20.3,I,,ICV,b,Isola di Tavolara (ot),40.923133,9.731,,0.025,,1269,167,86,,,,-20.3,,86023,,, +20.5,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,300,,2420,42,57,,0841-0847,1234567,-20.5,Beta time signal,86027,,, +20.5,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,300,,2454,64,57,,0441-0447,1234567,-20.5,Beta time signal,86028,,, +20.5,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,300,,2551,95,58,,1031-1041,1234567,-20.5,Beta time signal,86024,,, +20.5,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0641-0647,1234567,-20.5,,86026,,, +20.5,RUS,,RAB99,b,Khabarovsk (KH),48.485833,134.820139,,300,,7811,33,110,,,,-20.5,Beta time signal,6700074,,, +20.5,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,0.025,,4955,74,123,,0341-0347,1234567,-20.5,Beta time signal,34300001,,, +20.5,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,0.025,,4955,74,123,,0941-0947,1234567,-20.5,Beta time signal,34300001,,, +20.9,F,,HWU,b,Rosnay (36),46.713056,1.244444,,400,,707,214,38,,,,-20.9,French Navy, M,86030,, +20.9,F,,FTA20/HWU,b,Sainte-Assise (77),48.544722,2.578333,,0.025,,481,216,78,,,,-20.9,,86029,,, +21.1,RUS,,RDL,b,Krasnodar (KD),45.403403,38.158111,,0.025,,2421,95,97,,,,-21.1,MIL HQ Moskva VLF network,6700076,,, +21.1,RUS,,RDL,b,several tx sites,61.2,99.9,,0.025,,5299,41,126,,,,-21.1,,86031,,, +21.4,HWA,,NPM,b,Lualualei (HI),21.420139,-158.150944,,0.025,,11702,345,169,,,,-21.4,MSK,86033,,, +21.75,F,,HWU,b,Rosnay (36),46.713056,1.244444,,0.025,,707,214,80,,,,-21.75,French Navy, M, ex 21.8,86034, +22.1,G,,GQD,b,Anthorn (EN-CUM),54.911289,-3.281372,,0.025,,712,300,80,,,,-22.1,,86035,,, +22.2,J,,JJI,b,Ebino/JMSDF (kyu-miy),32.084444,130.827778,,200,,9209,45,121,,,,-22.2,Japanese Navy, FSK,86036,, +22.6,F,,HWU,b,Rosnay (36),46.713056,1.244444,,0.025,,707,214,80,,,,-22.6,French Navy, M,86037,, +23,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0635-0641,1234567,,,86040,,, +23,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,0.025,,2420,42,97,,0835-0841,1234567,,Beta time signal,86041,,, +23,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,0.025,,2551,95,98,,1026-1031,1234567,,Beta time signal,86038,,, +23,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,0.025,,2454,64,98,,0435-0441,1234567,,Beta time signal,86042,,, +23,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,0.025,,4955,74,123,,0335-0341,1234567,,Beta time signal,34300002,,, +23,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,0.025,,4955,74,123,,0935-0941,1234567,,Beta time signal,34300002,,, +23,RUS,,RAB99,b,Khabarovsk (KH),48.485833,134.820139,,0.025,,7811,33,151,,,,,Beta time signal,6700075,,, +23.4,D,,DHO38,x,Rhauderfehn Marinefunksendestelle (nds),53.081944,7.616389,,1,,135,37,53,,0000-0700,1234567,-23.4,,86043,,, +23.4,D,,DHO38,x,Rhauderfehn Marinefunksendestelle (nds),53.081944,7.616389,,1,,135,37,53,,0800-2400,1234567,-23.4,,86043,,, +24,USA,,NAA,b,Cutler (ME),44.646394,-67.281069,,1800,,5267,292,77,,,,,US Navy, MSK s, FSK (F1B), 200 Bd,86045 +24.8,USA,,NLK,b,Jim Creek/Oso Wash (WA),48.203611,-121.917056,,1200,,7834,326,105,,,,-24.8,,86046,,, +25,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,300,,2420,42,57,,0800-0825,1234567,,N0N/A1A/A9,86051,,, +25,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,300,,2420,42,57,,0825-0830,1234567,,N0N/A1A/A9,86051,,, +25,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,300,,2420,42,57,,0830-0835,1234567,,N0N/A1A/A9,86051,,, +25,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,300,,2454,64,57,,0400-0425,1234567,,SENDING 6,86052,,, +25,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,300,,2454,64,57,,0425-0430,1234567,,SENDING 6,86052,,, +25,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,300,,2454,64,57,,0430-0435,1234567,,SENDING 6,86052,,, +25,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,300,,2551,95,58,,1000-1020,1234567,,Beta time signal,86048,,, +25,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,300,,2551,95,58,,1020-1023,1234567,,Beta time signal,86048,,, +25,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,300,,2551,95,58,,1023-1026,1234567,,Beta time signal,86048,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0300-0325,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0325-0330,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0330-0335,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0900-0925,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0925-0930,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0930-0935,1234567,,miskeyed RJH86,86049,,, +25,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0600-0625,1234567,,,86050,,, +25,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0625-0630,1234567,,,86050,,, +25,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0630-0635,1234567,,,86050,,, +25,RUS,,RAB99,b,Khabarovsk (KH),48.485833,134.820139,,300,,7811,33,110,,,,,Beta time signal,86047,,, +25.2,USA,,NML4,b,Lamoure (ND),46.366014,-98.335544,,0.025,,6938,311,142,,0000-1200,.2.....,-25.2,US Navy; MSK s,86053,,, +25.2,USA,,NML4,b,Lamoure (ND),46.366014,-98.335544,,0.025,,6938,311,142,,0000-2400,1.34567,-25.2,US Navy; MSK s,86053,,, +25.2,USA,,NML4,b,Lamoure (ND),46.366014,-98.335544,,0.025,,6938,311,142,,1900-2400,.2.....,-25.2,US Navy; MSK s,86053,,, +26.7,TUR,,TBB,b,Denizky-Bafa TBB (ege-ayd),37.412722,27.323347,,0.025,,2307,127,96,,,,-26.7,MSK/ FSK +/- 2,86054,,, +27.3,RUS,,RDL,b,unknown,61.2,99.9,,0.025,,5299,41,126,,,,-27.3,,86055,,, +37.5,ISL,,NRK,b,Grindavk (sn),63.850378,-22.466772,,0.025,,2115,319,94,,,,-37.5,US Navy; 200bp,86056,,, +37.5,ISL,,TFK/NRK,b,Grindavk (sn),63.850378,-22.466772,,0.025,,2115,319,94,,,,-37.5,MSK,86057,,, +38,S,,SRC/SHR,b,Ruda (ka),57.120328,16.153083,,0.025,,838,44,81,,,,,MSK 50BD,160HZ,86058,, +40,J,,JJY,b,Ohtakadoya-yama (toh-fuk),37.3725,140.848889,,50,,9130,35,127,,,,,CW IDent H+15,86059,,, +40.8,G,,NST,b,Londonderry (NI-LDR),55.041667,-7.183333,,0.025,,953,295,83,,,,-40.8,MSK,86061,,, +40.8,PTR,,NAU,b,Aguada (PR),18.39875,-67.177433,,0.025,,7290,269,146,,,,-40.8,US Navy; FIB M,86060,,, +42.6,S,,SAS2,b,Varberg/Svenska Marinen (ha),57.125,12.236111,,0.025,,672,32,80,,,,-42.6,,86063,,, +45.9,I,,NSY,b,Niscemi (cl),37.125658,14.43635,,0.025,,1781,156,91,,,,-45.9,US Navy; 200bp,86065,,, +49,GRC,,SXA,b,Marathon (att-est),38.14515,24.019722,,0.025,,2067,132,94,,,,,,86069,,, +50,RUS,,RTZ,b,Irkutsk (IR),52.429944,103.685847,,10,,6081,48,108,,,,,Time signal, ID h+05,6700073,, +52,G,,GIY20,b,Oxford (EN-OXF),51.8,-1.183333,,0.025,,521,269,78,,,,,FAX/FSK 100 Hz,86071,,, +52,G,,GYW1,b,Crimond (SC-ABS),57.612222,-1.883889,,0.025,,809,322,81,,,,,F1B 85 Hz shif,86073,,, +52,G,,GNY1,b,Thurso/Forss (SC-HIL),58.588889,-3.633333,,0.025,,958,323,83,,,,,UK Royal Navy,86072,,, +53.4,TUR,,TBG,b,Canakkale TBG (mam-can),40.171569,26.409653,,0.025,,2022,123,93,,,,-53.4,FSK +/- 38 Hz,86074,,, +57.4,G,,GXH,b,Thurso/Forss (SC-HIL),58.588889,-3.633333,,0.025,,958,323,83,,,,-57.4,,86077,,, +57.4,ISL,,NRK,b,Grindavk (sn),63.850378,-22.466772,,0.025,,2115,319,94,,,,-57.4,US Navy; 200bp,86078,,, +60,G,,MSF,b,Anthorn (EN-CUM),54.911289,-3.281372,,17,,712,300,52,,,,,,86079,,, +60,USA,,WWVB,b,Fort Collins (CO),40.676694,-105.046639,,70,,7770,311,116,,,,,,86080,,, +60,J,,JJY,b,Hagana-yama (kyu-sag),33.465,130.175556,,50,,9046,45,127,,,,,CW IDent H+15,31400014,,, +61.8,XUE,,?,b,UNID - GIZ20 ??,,,-,,,?,?,400,,,,-61.8,,86081,,, +62.6,F,,FUG,b,La Rgine (11),43.388611,2.098333,,0.025,,1021,200,83,,,,-62.6,,2500017,,, +63.9,F,,FTA63,b,Sainte-Assise (77),48.544722,2.578333,,0.025,,481,216,78,,,,-63.9,,86082,,, +65.8,F,,FUE,b,Kerlouan (29),48.637694,-4.35075,,0.025,,854,247,82,,,,-65.8,,86083,,, +66.6,RUS,,RBU,b,Taldom (MO),56.733333,37.663333,,10,,2066,63,68,,,,-66.6,,86084,,, +68,G,,GBY20,b,Thurso/Forss (SC-HIL),58.588889,-3.633333,,0.025,,958,323,83,,,,,FSK (100Hz),86085,,, +68.5,CHN,,BPC,b,Lintong/Pucheng (SA),34.948639,109.542944,,20,,7813,58,122,,0800-1200,1234567,-68.5,Time signal,86067,,, +68.5,CHN,,BPC,b,Lintong/Pucheng (SA),34.948639,109.542944,,20,,7813,58,122,,2200-2330,1234567,-68.5,Time signal,86067,,, +72,AZE,,unid,b,Baku (bak),40.4,49.933333,,0.025,,3527,94,108,,,,,FSK,86087,,, +73.6,CAN,,CFH,b,Newport Corner/NRS (NS),44.967278,-63.982211,,0.025,,5036,290,123,,,,-73.6,,86088,,, +77.5,D,,DCF77,x,Mainflingen/PTB (hes),50.015556,9.010833,,50,,295,141,43,,,,-77.5,,86090,,, +81,G,,GYN2,b,Skelton (EN-CUM),54.731806,-2.883028,,0.025,,681,299,80,,,,,F1B 85 Hz shift,86091,,, +82.8,G,,GYB,b,London/Royal Navy (EN-GTL),51.475,0.002778,,0.025,,446,263,77,,,,-82.8,FSK 75/68,86092,,, +100,CHN,,BPL,b,Lintong/Pucheng (SA),34.948639,109.542944,,20,,7813,58,122,,1200-2200,1234567,,Time signal,36201274,,, +100,TJK,,HU,b,Dangara (ktl),38.083333,69.333333,,0.025,,5006,82,123,,,,,,34200005,,, +124.5,GRC,,SXJ,b,Kriti (krt),35.166667,25,,0.025,,2391,135,97,,,,-124.5,FSK,86095,,, +125,D,,DCF45,x,Mainflingen/PTB (hes),50.015,9.01,,1,,295,141,60,,,,,,86096,,, +129.1,D,,DCF49,x,Mainflingen/EFR (hes),50.015,9.01,,100,,295,141,40,,,,-129.1,,86098,,, +135.6,HNG,,HGA 22,b,Lakihegy/EFR-Telecontrol Szigetszentmikls (Pes),47.373056,19.004722,,100,,1045,115,48,,,,-135.6,ASCII 200/500,86099,,, +135.8,GRC,,SXV,b,Marathon (att-est),38.149553,24.023222,,0.025,,2067,132,94,,,,-135.8,FSK,86100,,, +135.9,XUU,,RTTY,b,Unknown RTTY Station,,,-,,,?,?,400,,,,-135.9,Steve Ratzlaf,86101,,, +137,FIN,,OH1LSQ,b,Vaasa,63.145833,21.541667,,0.025,,1514,30,88,,,,,,86102,,, +137.7,CAN,,VO1NA,b,Torbay (NL),47.666667,-52.733333,,1.2,,4147,287,98,,,,-137.7,Lowfer LF experiment,86106,,, +137.7,USA,,WD2XKO,b,Stanfield (NC),35.233333,-80.433333,,0.4,,6797,291,129,,,,-137.7,Lowfer,86108,,, +137.7,CAN,,VA3LK,b,Westport (ON),45.5,-75,,0.025,,5688,297,130,,,,-137.7,,86105,,, +137.7,USA,,WD2XGJ,b,Wayland/Tower Hill (MA),42.365278,-71.335556,,0.01,,5681,292,134,,2200-1300,1234567,-137.7,CW LowFER,86107,,, +137.7,NZL,,Q,b,Wellington/Quartz Hill (WGN),-41.25,174.690556,,0.025,,18517,41,191,,,,-137.7,120s dot DFCW,86104,,, +137.8,CAN,,MP,b,London (ON),42.983333,-81.25,,0.025,,6248,298,135,,,,-137.8,Operated by VE,86109,,, +137.8,USA,,WD2XFX,b,Glenpool (OK),35.95,-96,,0.18,,7685,302,141,,,,-137.8,CW LowFER,20016134,,, +137.8,CAN,,VY1JA,b,Whitehorse (YT),60.9375,-135.125,,0.025,,6989,340,143,,,,-137.8,,86111,,, +137.8,CAN,,TIL,b,Vancouver (BC),49.25,-123.133333,,0.025,,7779,328,151,,,,-137.8,,86110,,, +139,D,,DCF39,x,Burg/Brehm (san),52.288333,11.8975,,1,,374,85,61,,,,,,86113,,, +139,TUR,,TBA,b,Ankara ?,38.55,35,,0.025,,2668,113,100,,,,,FSK,86114,,, +145,LVA,,UKB/YLQ63,b,Riga (Rig),56.95,24.066667,,0.025,,1255,58,86,,,,,FSK,86115,,, +147.3,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,0000-2400,1234567,-147.3,,86118,,, +148,RUS,,UIW,f,Pevek (CK),69.666111,170.489889,,1,,6413,6,121,,0530-0730,1234567,,,6700137,,, +148,RUS,,UIW,f,Pevek (CK),69.666111,170.489889,,1,,6413,6,121,,1130-1330,1234567,,,6700137,,, +148,RUS,,UIW,f,Pevek (CK),69.666111,170.489889,,1,,6413,6,121,,1430-1630,1234567,,,6700137,,, +153,D,de,Deutschlandfunk,,Donebach (Mudau/Senderstrae) (bw),49.560278,9.176944,,250,090-130,344,144,37,,0000-2400,1234567,0,,9,,, +153,ALG,ar,Chane 1,,Kenadsa (Bchar) (8),31.57,-2.345,,2000,,2392,201,48,,0200-0100,1234567,,,8,,, +153,ALG,ar,R Algrie Int.,,Kenadsa (Bchar) (8),31.57,-2.345,,2000,,2392,201,48,,0100-0200,1234567,,,8,,, +153,ROU,ro,SRR Antena Satelor,,Braşov/Bod Colonie (BV),45.756167,25.607444,,200,,1564,109,50,,0400-2000,1234567,57,,11,,, +153,ROU,ro,SRR R Romnia Actualităţi,,Braşov/Bod Colonie (BV),45.756167,25.607444,,200,,1564,109,50,,2000-0400,1234567,57,,11,,, +153,NOR,no,NRK P1/NRK P2,,Ingy (fi),71.071667,24.087222,,100,,2286,16,60,,0000-2400,1234567,9995,,10,,, +162,F,fr,France Inter,,Allouis (18),47.171667,2.204722,,1000,,627,210,33,,0000-2400,1234567,0,,13,,, +164,MNG,mn,Mongoliin R 1,,Ulaanbaatar/Khonkhor (ulb),47.798522,107.187433,,500,,6617,50,96,,2138-1500,1234567,994,,47181,,, +166.5,USA,,WC2XSR/13,b,Jefferson (LA),29.966667,-90.15,,0.4,,7842,294,139,,,,-166.5,10s dot LowFER,86120,,, +171,MRC,,Mdi 1,,Nador (LW) (otl),35.041667,-2.920833,,1600,,2037,205,45,,0000-0400,1234567,1,,17,,, +171,MRC,,Mdi 1,,Nador (LW) (otl),35.041667,-2.920833,,1600,,2037,205,45,,0500-2400,1234567,1,,17,,, +171,RUS,ce,Rkanal Kavkaz,,Tbilisskaya (KD),45.485431,40.089333,,1200,,2549,93,52,,0300-0600,1234567,,,18,,, +171,RUS,ce,Rkanal Kavkaz,,Tbilisskaya (KD),45.485431,40.089333,,1200,,2549,93,52,,1200-1600,1234567,,,18,,, +172,AFG,,OKN,b,Kandahar (kan),31.499167,65.8525,,0.025,,5256,92,126,,,,,,11000011,,, +175.3,XUU,,P,b,Unknown,,,-,,,?,?,400,,,,-175.3,Jim Smith writ,86121,,, +177,D,de,Deutschlandr Kultur,,Zehlendorf (Oranienburg) (brb),52.795,13.385833,,500,,479,78,35,,0000-2400,1234567,2,,19,,, +182.2,USA,,BRO,b,Duluth (MN),46.783333,-92.1,,0.025,,6576,308,139,,,,-182.2,,86122,,, +183,D,fr,Europe 1,,Felsberg/Zum Sender (Sauberg) (saa),49.281111,6.677778,,2000,220,315,176,27,,0200-2300,1234567,25,,21,,, +183.2,USA,,PRK,b,Saratoga (CA),37.266667,-122.016667,,0.025,,8893,321,159,,,,-183.2,CW LowFER,86123,,, +183.3,USA,,PLI,b,Burbank (CA),34.183333,-118.316667,,0.025,,9023,317,160,,,,-183.3,PSK31; Operate,86124,,, +183.5,USA,,MEL,b,San Jose/686 N. 21st St, (CA),37.333333,-121.9,,0.025,,8881,321,159,,,,-183.5,CW LowFER,86125,, +184.3,USA,,XR,b,Friendsville (TN),35.766667,-84.133333,,0.025,,6987,294,143,,,,-184.3,,86126,,, +184.5,USA,,JDH,b,Bonaire (GA),32.55,-83.6,,0.025,,7214,291,145,,,,-184.5,,86127,,, +185.2,USA,,FAW,b,Riverton (UT),40.516667,-111.933333,,0.025,,8126,316,154,,,,-185.2,LOWFER,86128,,, +185.3,USA,,WA,b,Andover (MA),42.666667,-71.133333,,0.025,,5647,292,129,,,,-185.3,,86139,,, +185.3,USA,,WM,b,Ellsworth (NH),43.866667,-71.733333,,0.025,,5601,294,129,,,,-185.3,,86140,,, +185.3,USA,,TAG,b,Holden (MA),42.35,-71.866667,,0.025,,5716,292,130,,,,-185.3,,86134,,, +185.3,USA,,USA,b,Harwinton (CT),41.766667,-73.066667,,0.025,,5833,292,131,,,,-185.3,,86136,,, +185.3,USA,,VD,b,Burlington (CT),41.766667,-72.966667,,0.025,,5827,292,131,,,,-185.3,,86138,,, +185.3,USA,,TMO,b,New Berlin (NY),42.583333,-75.4,,0.025,,5920,295,132,,,,-185.3,,86135,,, +185.3,CAN,,MP,b,London (ON),42.983333,-81.25,,0.025,,6248,298,135,,,,-185.3,,86132,,, +185.3,USA,,NC,b,Stanfield (NC),35.233333,-80.433333,,0.025,,6797,291,141,,,,-185.3,,86133,,, +185.3,USA,,XGI,b,St. Francis (MN),45.4,-93.383333,,0.025,,6755,308,141,,,,-185.3,LOWFER,86141,,, +185.3,USA,,MO,b,Seneca (MO),36.85,-94.6,,0.025,,7528,302,148,,,,-185.3,LOWFER,86131,,, +185.3,USA,,COV,b,South Coffeyville (OK),36.994444,-95.616667,,0.025,,7574,303,149,,,,-185.3,,86129,,, +185.3,USA,,IP,b,Agricola (MS),30.8,-88.516667,,0.025,,7670,294,150,,,,-185.3,,86130,,, +185.3,USA,,UWL,b,Edmond (OK),35.65,-97.483333,,0.025,,7796,303,151,,,,-185.3,,86137,,, +185.5,USA,,RLD,b,Stanfield (NC),35.233333,-80.433333,,0.025,,6797,291,141,,,,-185.5,,86142,,, +186.5,USA,,SMV,b,Simi Valley (CA),34.266667,-118.783333,,0.025,,9036,317,160,,,,-186.5,20080930 - Hea,86143,,, +186.7,USA,,LEK,b,Aitkin (MN),46.533333,-93.716667,,0.025,,6683,309,140,,,,-186.7,,86144,,, +186.8,USA,,SJ,b,East Haven (CT),41.3,-72.866667,,0.025,,5854,292,132,,,,-186.8,,86145,,, +187.3,CAN,,VO1NA,b,Torbay (NL),47.666667,-52.733333,,1.2,,4147,287,98,,,,-187.3,Lowfer LF experiment,86146,,, +187.4,USA,,WMS,b,Jacksonville (AR),34.866667,-92.116667,,0.025,,7549,299,148,,,,-187.4,,86147,,, +188.8,CAN,,EAR,b,Saltford (ON),43.75,-81.683056,,0.025,,6217,299,135,,,,-188.8,,86148,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,0000-0700,12345..,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,0000-1615,.....67,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,0900-1400,12345..,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1600-1615,12345..,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1930-1945,.....67,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1930-1945,12345..,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,2200-2400,.....67,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,2200-2400,12345..,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,0700-0900,12345..,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1400-1600,12345..,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1615-1930,.....67,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1615-1930,12345..,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1945-2200,.....67,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1945-2200,12345..,6,,24,,, +189.3,USA,,TH,b,Colts Neck (NJ),40.283333,-74.166667,,0.025,,6011,292,133,,,,-189.3,,86149,,, +189.5,USA,,XMGR,b,Helena (AL),33.3,-86.85,,0.025,,7357,294,147,,,,-189.5,,86150,,, +194,USA,,TUK,b,Nantucket (MA),41.270833,-70.208333,,0.025,,5687,290,130,,,,,U411 ,86838,,, +195,CAN,,4Z,b,Solitare Platform (Sable Island) (NS),44.5625,-61.208333,,0.025,,4883,288,122,,,,,L400 U400 ,86251,,, +195,RUS,,F,b,Vladivostok / Knevichi (PM),43.395833,132.125,,0.025,,8188,38,155,,,,,,80001,,, +196,CHN,,OR,b,Beijing (BJ),40.104167,116.625,,0.025,,7756,50,151,,,,,,80002,,, +198,G,en,BBC R 4,,Droitwich/Mast A-B (EN-WOR),52.2955,-2.106,,500,,580,275,36,,0600-0100,1234567,0,,30,,, +198,G,en,BBC WS,,Droitwich/Mast A-B (EN-WOR),52.2955,-2.106,,500,,580,275,36,WEu,0100-0600,1234567,0,,30,,, +198,ALG,ar,Chane 1,,Berkaoui (Ouargla) (30),31.918056,5.076667,,2000,,2248,183,47,,0000-2400,1234567,,,26,,, +198,G,en,BBC R 4,,Westerglen (SC-STL),55.975556,-3.816111,,50,,793,307,48,,0600-0100,1234567,0,,29,,, +198,G,en,BBC WS,,Westerglen (SC-STL),55.975556,-3.816111,,50,,793,307,48,WEu,0100-0600,1234567,0,,29,,, +198,G,en,BBC R 4,,Burghead (SC-MOR),57.698083,-3.469778,,50,,884,318,49,,0600-0100,1234567,0,,28,,, +198,G,en,BBC WS,,Burghead (SC-MOR),57.698083,-3.469778,,50,,884,318,49,WEu,0100-0600,1234567,0,,28,,, +198,G,en,BBC R 4,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0600-0100,1234567,,,27,,, +198,G,en,BBC WS,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,WEu,0100-0600,1234567,,,27,,, +198,USA,,DIW,b,Dixon (NC),34.5625,-77.458333,,2,,6659,289,121,,,,995,L1042 U1039 10.5s,80003,,, +198,UZB,,N,b,Termez (sux),37.293056,67.336667,,0.025,,4927,84,122,,,,,,34500011,,, +199,USA,,GAO,b,Galliamo (LA),29.4375,-90.291667,,0.025,,7896,294,152,,,,1,L1036 U1039 7818s,80004,,, +200,CAN,,YAQ,b,Kasabonika (ON),53.520833,-88.625,,0.05,,5888,312,129,,,,,L385 U392 10.2s,DAID,80015,, +200,CAN,,UAB,b,Anahim Lake (BC),52.395833,-125.208333,,1,,7549,331,132,,,,0,L405 U408 10.3s,DAID,80014,, +200,USA,,HXF,b,Hartford (WI),43.354167,-88.375,,0.025,,6638,303,139,,,,0,L1021 U1021 6528s,80011,,, +200,CAN,,YDL,b,Dease Lake (BC),58.4375,-129.958333,,0.025,,7107,336,144,,,,,U410 10.08s,DAID,80016,, +200,CAN,,YJ,b,Victoria (BC),48.645833,-123.375,,0.1,,7846,327,145,,,,,U401 10.3s,DAID,80017,, +200,CAN,,5M,b,Sparwood / Elk Valley (BC),49.854167,-114.875,,0.025,,7402,323,147,,,,0,L1040 U1040 8.14s,DAID,80005,, +200,PRG,,CDE,b,Ciudad del Este (apa),-25.479167,-54.875,,1,,10474,233,149,,,,,8s,80007,,, +200,USA,,AOC,b,Arco (ID),43.604167,-113.375,,0.049,,7910,318,149,,,,,,86839,,, +200,B,,DAD,b,Diadema (SP),-23.6875,-46.625,,0.2,,9873,227,154,,,,,,80009,,, +200,AUS,,CKL,b,Clackline (WA),-31.6875,116.541667,,0.025,,14063,97,176,,,,,U1022 ,80008,,, +200,AUS,,MPA,b,Minnipa (SA),-32.854167,135.125,,0.025,,15418,83,181,,,,,,80012,,, +200,AUS,,TIB,b,Tibooburra (NSW),-29.4375,142.041667,,0.025,,15609,73,181,,,,,L1200 8s,86252,,, +200,AUS,,REN,b,Renmark (SA),-34.1875,140.708333,,0.025,,15897,79,182,,,,,,80013,,, +200,AUS,,HBA,b,Hervey Bay (QLD),-25.3125,152.875,,0.015,,15917,56,185,,,,,L1020 U1020 10s,80010,,, +200,AUS,,CBB,b,Coonabarabran (NSW),-31.3125,149.291667,,0.015,,16229,67,186,,,,,L400 U400 8s,80006,,, +201,CAN,,GL,b,La Grande Riviere (QC),53.645833,-77.708333,,0.5,,5305,307,113,,,,,U410 10.2s,DAID,80023,, +201,CAN,,RI,b,Rivire-du-Loup (QC),47.770833,-69.541667,,0.2,,5204,297,116,,,,,U423 9882s,DAID,80028,, +201,CAN,,YIF,b,Saint-Augustin (QC),51.1875,-58.625,,0.025,,4334,295,116,,,,,U393 10.0s,80030,,, +201,CAN,,ZYD,b,Reserve Mines Sydney (NS),46.229167,-60.041667,,0.025,,4704,290,120,,,,,,DAID,80039,, +201,CAN,,YKX,b,Kirkland Lake (ON),48.229167,-79.875,,0.2,,5787,303,122,,,,,U410 10123s,DAID,80031,, +201,CAN,,YAQ,b,Kasabonika (ON),53.520833,-88.625,,0.05,,5888,312,129,,,,,,86848,,, +201,CAN,,ZDV,b,Valois / Dorval (QC),45.4375,-73.791667,,0.025,,5619,296,129,,,,,U403 10.17s,DAID,80033,, +201,CAN,,U,b,London (ON),42.979167,-81.125,,0.05,,6241,298,132,,,,,U1000 ,86845,,, +201,CAN,,ZXD,b,Blatchford / Edmonton (AB),53.479167,-113.541667,,0.25,,7021,325,133,,,,108,U410 10242s,DAID,80037,, +201,CAN,,YVZ,b,Deer Lake (ON),52.645833,-94.041667,,0.025,,6223,314,135,,,,,U393 10.45s,DAID,80032,, +201,CAN,,ZXU,b,Thames London (ON),42.979167,-81.125,,0.025,,6241,298,135,,,,,U397 10.46s,DAID,80038,, +201,USA,,MNN,b,Marion (OH),40.604167,-83.041667,,0.025,,6538,297,138,,,,,L1025 U1041 ,86843,,, +201,CAN,,M,b,Fort McMurray (AB),56.645833,-111.125,,0.025,,6649,326,139,,,,,,86842,,, +201,CAN,,N,b,Downs / Winnipeg (MB),49.979167,-97.291667,,0.025,,6592,313,139,,,,,U395 ,DAID,86844,, +201,CAN,,ZMC,b,Clearwater/Fort McMurray (AB),56.645833,-111.125,,0.025,,6649,326,139,,,,,U387 ,80034,,, +201,CAN,,ZWN,b,Downs Winnipeg (Snowhill) (MB),49.979167,-97.291667,,0.025,,6592,313,139,,,,0,L380 U392 10352s,DAID,80036,, +201,CAN,,X,b,Saskatoon (AB),52.104167,-106.625,,0.025,,6853,320,142,,,,,U385 ,DAID,86846,, +201,CAN,,ZSK,b,Moonlake / Saskatoon (SK),52.104167,-106.625,,0.025,,6853,320,142,,,,,U386 10.5s,DAID,80035,, +201,USA,,DED,b,Deland (FL),29.0625,-81.291667,,0.025,,7352,287,146,,,,,,86840,,, +201,USA,,CE,b,Kobra Crestview (FL),30.854167,-86.541667,,0.025,,7541,292,148,,,,,L395 U398 6207s,80020,,, +201,USA,,APF,b,Naples (FL),26.145833,-81.791667,,0.025,,7627,285,149,,,,,,80018,,, +201,USA,,BV,b,Dewie Bartlesville (OK),36.854167,-96.041667,,0.025,,7611,303,149,,,,2,L1037 U1040 5773s,80019,,, +201,USA,,CZE,b,Clarksville (AR),33.479167,-93.458333,,0.025,,7746,299,150,,,,7,L1018 U1015 5.97s,80022,,, +201,USA,,MNE,b,Minden (LA),32.645833,-93.291667,,0.025,,7807,298,151,,,,2,L1026 U1030 7657s,80026,,, +201,USA,,GV,b,Major Greenville (TX),33.145833,-96.041667,,0.025,,7928,300,152,,,,2,L1050 U1027 5.6s,80024,,, +201,USA,,ETO,b,Silsbee (FL),30.354167,-94.125,,0.025,,8054,297,154,,,,,,86841,,, +201,USA,,PEN,b,Karpen Astoria (OR),46.145833,-123.625,,0.025,,8097,326,154,,,,0,L1028 U1028 8.0s,80027,,, +201,USA,,IP,b,Mobile (AZ),33.104167,-112.375,,0.025,,8833,312,159,,,,1,L1030 U1032 4.2s,80025,,, +201,CTR,,COT,b,Cota 47 (pta),8.5625,-83.041667,,0.025,,9220,275,160,,,,0,L1029 U1028 4771s,80021,,, +201,PRU,,RIO,b,Rioja (sam),-6.020833,-77.125,,0.025,,10097,261,163,,,,,U1055 ,80029,,, +202,CAN,,3C,b,La Prise Creek (BC),57.354167,-122.041667,,0.05,,6973,332,140,,,,,U410 ,86849,,, +202,CHN,,OD,b,Sanyuan (SA),34.604167,108.958333,,0.05,,7808,59,148,,,,,,80041,,, +202,AFS,,JB,b,Johannesburg (GT),-26.0625,28.291667,,0.08,,8950,160,154,,,,0,L1152 U1152 6.19s,80040,,, +203,CAN,,KL,b,Schefferville (QC),54.854167,-66.875,,1,,4633,304,103,,,,,U409 10.2s,DAID,80046,, +203,CAN,,T,b,Thompson (MB),55.770833,-97.875,,0.025,,6165,319,135,,,,,U385 ,DAID,86853,, +203,CAN,,ZZZ,b,Nicklebelt Thompson (MB),55.770833,-97.875,,0.025,,6165,319,135,,,,,U400 10.4s,DAID,86854,, +203,USA,,BXR,b,Big Doctor Siren (WI),45.8125,-92.375,,0.025,,6668,307,140,,,,,U1025 ,86851,,, +203,USA,,PVB,b,Platteville (WI),42.6875,-90.458333,,0.025,,6810,304,141,,,,999,L1028 U1018 6013s,80048,,, +203,USA,,AB,b,Reney Aberdeen (SD),45.395833,-98.291667,,0.025,,7016,310,143,,,,0,L1032 U1035 6072s,80042,,, +203,USA,,MWM,b,Windom (MN),43.895833,-95.125,,0.025,,6972,307,143,,,,994,L1008 U1018 7275s,80047,,, +203,USA,,DMZ,b,Dickson (TN),36.145833,-87.458333,,0.025,,7161,297,145,,,,,U1026 5.8s,80044,,, +203,CAN,,ZKI,b,Kitimat (BC),54.0625,-128.708333,,0.025,,7500,333,148,,,,,U403 9.8s,DAID,80053,, +203,USA,,RED,b,Red Lodge (MT),45.229167,-109.291667,,0.025,,7574,317,149,,,,984,L1040 U1008 3.1s,Cont. ID,80049,, +203,CAN,,YBL,b,Campbell River (BC),50.020833,-125.375,,0.025,,7785,329,151,,,,1,L381 U380 10.5s,DAID,80052,, +203,USA,,AVK,b,Alva (OK),36.770833,-98.708333,,0.025,,7769,305,151,,,,,U1020 ,86850,,, +203,USA,,TCY,b,Tracy (CA),37.6875,-121.458333,,0.025,,8828,321,159,,,,0,L1010 U1008 5.0s,80050,,, +203,USA,,NSI,b,San Nicolas (CA),33.229167,-119.458333,,0.025,,9168,317,160,,,,,L1040 U1045 ,86852,,, +203,URG,,COL,b,Colonia (co),-34.4375,-57.791667,,0.025,,11459,230,168,,,,,6.7s,80043,,, +203,AUS,,HML,b,Hamilton (VIC),-37.645833,142.041667,,0.025,,16241,83,184,,,,,L400 U400 8s,80045,,, +203,AUS,,WGT,b,Wangaratta (VIC),-36.4375,146.291667,,0.015,,16439,77,186,,,,,L400 U400 9s,80051,,, +204,CAN,,YFY,b,Forbay - Iqaluit (NU),63.729167,-68.541667,,1.5,,4325,317,98,,,,,U395 9.9s,DAID,80063,, +204,CAN,,2L,b,Rivire-aux-Saumons (QC),49.395833,-62.208333,,0.025,,4653,295,120,,,,,U400 ,80054,,, +204,USA,,EZ,b,Lizah (NJ),40.604167,-74.208333,,0.025,,5990,292,133,,,,,,86855,,, +204,USA,,GB,b,Plazz Buffalo (NY),42.854167,-78.791667,,0.025,,6109,297,134,,,,0,L1016 U1020 8.60s,80057,,, +204,USA,,MD,b,Enola Harrisburg (PA),40.229167,-76.875,,0.025,,6186,293,135,,,,0,L1038 U1038 6024s,80059,,, +204,USA,,HRA,b,Zanesville (OH),39.895833,-81.958333,,0.025,,6527,296,138,,,,,L1020 U1037 ,86856,,, +204,USA,,ZZV,b,Zanesville (OH),39.9375,-81.875,,0.025,,6518,296,138,,,,,,86859,,, +204,USA,,TWL,b,Wesley Monroe (NC),34.9375,-80.708333,,0.025,,6838,291,141,,,,0,L1018 U1026 5626s,80061,,, +204,CAN,,J,b,Regina (SK),50.4375,-104.541667,,0.025,,6901,318,142,,,,,U385 ,DAID,86857,, +204,USA,,JAU,b,Jacksboro (TN),36.354167,-84.125,,0.025,,6939,295,142,,,,,U1018 ,86858,,, +204,CAN,,ZQR,b,Findlay Regina (SK),50.4375,-104.541667,,0.02,,6901,318,143,,,,999,L390 U392 10396s,DAID,80064,, +204,USA,,LCQ,b,Lake City (FL),30.1875,-82.541667,,0.025,,7340,289,146,,,,,U1020 7537s,80058,,, +204,USA,,FDF,b,Fayette (AL),33.729167,-87.791667,,0.025,,7380,295,147,,,,,U994 5235s,80056,,, +204,USA,,ESU,b,Summerdale Foley (AL),30.479167,-87.708333,,0.025,,7646,293,149,,,,997,L1018 U1014 5.10s,80055,,, +204,USA,,RMD,b,Mc Dermitt State Mc Dermitt (OR),42.020833,-117.708333,,0.025,,8250,320,155,,,,1,L1017 U1019 6.0s,80060,,, +204,CHN,,UJ,b,Gaolan (GD),21.895833,113.291667,,0.025,,9185,64,160,,,,,9s,80062,,, +205,CAN,,YWO,b,Lupin (NT),65.770833,-111.208333,,2,,5885,333,113,,,,,U400 10.3s,DAID,80075,, +205,CAN,,YEU,b,Eureka (NU),79.979167,-85.875,,0.025,,4379,344,117,,,,,,80073,,, +205,UZB,,GZ,b,Kakaydy (sux),37.573056,67.495,,0.025,,4918,84,122,,,,,,34500012,,, +205,UZB,,TD,b,Kakaydy (sux),37.663056,67.54,,0.025,,4915,84,122,,,,,,34500015,,, +205,CAN,,XZ,b,Wawa (ON),48.020833,-84.708333,,0.13,,6076,305,127,,,,,U406 10.3s,DAID,80072,, +205,CAN,,YRQ,b,Trois-Rivires (QC),46.354167,-72.625,,0.025,,5485,297,128,,,,,U383 10530s,DAID,80074,, +205,USA,,ORE,b,Orange (MA),42.5625,-72.291667,,0.025,,5727,293,130,,,,2,L1041 U1041 5485s,80071,,, +205,USA,,CQA,b,Lakefield Celina (OH),40.479167,-84.541667,,0.025,,6638,298,139,,,,999,L1028 U1017 6750s,80067,,, +205,USA,,GM,b,WILZE Wilmington (NC),34.354167,-77.791667,,0.025,,6697,289,140,,,,999,L1038 U1038 5839s,80068,,, +205,USA,,LNH,b,Millen (GA),32.895833,-81.958333,,0.025,,7081,291,144,,,,0,L1010 U1009 5755s,80070,,, +205,B,,AAQ,b,Araraquara (SP),-21.8125,-48.125,,1,,9768,229,146,,,,,,80065,,, +205,B,,JPG,b,Jacarepagua (RJ),-22.979167,-43.375,,0.1,,9644,225,156,,,,,,80069,,, +205,USA,,COR,b,Sayler Farms Corcoran (CA),36.0625,-119.541667,,0.025,,8899,318,159,,,,996,L1025 U1015 6.9s,80066,,, +205,B,,CXM,b,Coxim (MS),-18.520833,-54.791667,,0.025,,9817,236,162,,,,,,86253,,, +206,CAN,,QI,b,Yarmouth (NS),43.8125,-66.125,,0.5,,5249,290,112,,,,,U415 10.2s,DAID,80088,, +206,CAN,,XBE,b,Bearskin Lake (ON),53.979167,-91.041667,,0.025,,5976,314,133,,,,,U384 ,DAID,80093,, +206,USA,,AP,b,Felps Alpena (MI),44.979167,-83.541667,,0.025,,6234,302,135,,,,0,L1022 U1018 8600s,80077,,, +206,USA,,GLS,b,Galveston (TX),29.354167,-94.791667,,2,,8180,297,136,,,,999,L1043 U1020 10.0s,80083,,, +206,USA,,LA,b,Artda Lansing (MI),42.770833,-84.458333,,0.025,,6456,300,138,,,,998,L1035 U1031 ,80085,,, +206,USA,,RA,b,Paser Racine (WI),42.6875,-87.875,,0.025,,6662,302,140,,,,4,L1019 U1022 8600s,80089,,, +206,USA,,IIB,b,Wapsie Independence (IA),42.4375,-91.958333,,0.025,,6915,304,142,,,,0,L1020 U1017 4974s,80084,,, +206,CAN,,EF,b,Champion Castlegar (BC),49.270833,-117.625,,0.1,,7567,324,143,,,,,U408 10.0s,DAID,80082,, +206,USA,,TEL,b,Tell City (IN),38.020833,-86.708333,,0.025,,6964,298,143,,,,,U1018 7.0s,80091,,, +206,USA,,VNC,b,Venice (FL),27.0625,-82.458333,,0.025,,7594,287,149,,,,996,L375 U372 8053s,80092,,, +206,USA,,PWT,b,Kitsap Bremerton National Airport (WA),47.479167,-122.791667,,0.025,,7937,326,152,,,,4,L1015 U1015 5.08s,80087,,, +206,USA,,LR,b,Hawke Las Cruces (NM),32.229167,-106.875,,0.025,,8624,307,158,,,,993,L1017 U1025 5.97s,80086,,, +206,USA,,SOW,b,Show Low (AZ),34.270833,-110.041667,,0.025,,8605,311,158,,,,999,L1033 U1035 8.0s,80090,,, +206,AUS,,BGO,b,Balgo Hill (WA),-20.145833,127.958333,,0.05,,13899,78,173,,,,,,80078,,, +206,AUS,,BWX,b,Barrow Island (WA),-20.854167,115.375,,0.025,,13107,89,173,,,,,,80080,,, +206,AUS,,AMK,b,Andamooka (SA),-30.4375,137.125,,0.025,,15364,79,181,,,,,,80076,,, +206,AUS,,BNA,b,Ballina (NSW),-28.854167,153.541667,,0.025,,16276,59,184,,,,,U1020 9s,86254,,, +206,AUS,,CNM,b,Coonamble (NSW),-30.979167,148.375,,0.015,,16143,68,185,,,,,L400 U400 8s,80081,,, +206,AUS,,BIK,b,Bindook (NSW),-34.1875,150.125,,0.015,,16516,70,187,,,,,L400 U400 8s,80079,,, +207,D,de,Deutschlandfunk,,Aholming/Graswegcker (bay),48.729167,12.931944,,250,080 200,595,127,39,,0000-2400,1234567,99989,,36,,, +207,ISL,is,RV Rs 1/RV Rs 2,,Eiar (au),65.368889,-14.343333,,100,,1881,329,56,,0000-2400,1234567,10,,37,,, +207,MRC,,SNRT Al Ida Al-Watania,,Azilal Demnate,31.898414,-6.5547,,400,,2481,210,56,,0500-0100,1234567,9982,,38,,, +207,CAN,,CL,b,Charlo (NB),48.020833,-66.458333,,1,,4999,295,107,,,,,U405 10411s,DAID,80094,, +207,CAN,,YNE,b,Norway House (MB),53.979167,-97.875,,1,,6304,317,120,,,,0,U399 10067s,DAID,80098,, +207,PAK,,MF,b,Muzaffarabad (ajk),34.341944,73.506667,,0.025,,5562,83,129,,,,,,31500044,,, +207,CAN,,FD,b,Brantford (ON),43.0625,-80.375,,0.025,,6190,298,135,,,,999,L392 U390 10.0s,DAID,80095,, +207,CAN,,PY,b,Fort Chipewyan (AB),58.770833,-111.125,,0.05,,6466,327,135,,,,2,L400 U403 10149s,DAID,80096,, +207,CAN,,UEM,b,Egg Island Light Station (BC),51.270833,-127.791667,,0.025,,7745,331,150,,,,,,80097,,, +208,CAN,,YSK,b,Sanikiluaq (NU),56.520833,-79.208333,,0.4,,5208,311,113,,,,,U415 10427s,DAID,80106,, +208,CAN,,P8,b,Hamel St. George de Beauce (QC),46.0625,-70.708333,,0.025,,5387,295,127,,,,,U~400 ,DAID,80102,, +208,PAK,,SB,b,Sibbi (blc),29.569444,67.846944,,0.025,,5543,92,128,,,,,,31500040,,, +208,USA,,UKT,b,Quakertown (PA),40.4375,-75.291667,,0.025,,6071,292,134,,,,998,L1053 U1049 7933s,80104,,, +208,CAN,,YKD,b,Aklavik (NT),68.229167,-135.041667,,0.025,,6261,344,136,,,,,U~400 ,80105,,, +208,USA,,JYN,b,Wayne Goldsboro (NC),35.520833,-77.875,,0.025,,6611,290,139,,,,,L1017 U1015 6136s,86860,,, +208,CAN,,8J,b,Provost (AB),52.3125,-110.291667,,0.025,,6992,322,143,,,,,U392 ,DAID,80099,, +208,USA,,CHQ,b,Charleston (MO),36.854167,-89.375,,0.025,,7219,298,145,,,,999,L1016 U1016 6.52s,80101,,, +208,USA,,BDQ,b,Bridge Morrilton (AR),35.145833,-92.708333,,0.025,,7560,299,149,,,,,U1018 5842s,80100,,, +208,CHN,,PK,b,Shanghai / Hongqiao / Nanxiang (SH),31.270833,121.291667,,0.025,,8797,52,159,,,,,L1055 ,80103,,, +209,MNG,mn,Mongoliin R 1,,Ulgii=lgii (boy),48.956944,89.970278,,30,,5579,58,98,,2200-1500,1234567,995,,47185,,, +209,MNG,mn,Mongoliin R 1,,Dalanzadgad (ogv),43.531792,104.411569,,75,,6806,55,106,,2200-1500,1234567,,,47184,,, +209,MNG,mn,Mongoliin R 1,,Choibalsan (dnd),48.004814,114.455056,,75,,6968,46,108,,2200-1500,1234567,,,47183,,, +209,CAN,,MT,b,Chiboo Chibougamau (Chapais) (QC),49.8125,-74.458333,,0.5,,5366,301,114,,,,,U408 10.25s,DAID,80125,, +209,CAN,,2V,b,Panuke Platform (NS),43.8125,-60.708333,,0.025,,4899,287,122,,,,,U401 9976s,86255,,, +209,CAN,,IB,b,Atikokan (ON),48.8125,-91.541667,,0.25,,6389,309,127,,,,0,L405 U403 10.2s,DAID,80120,, +209,ALS,,CYT,b,Yakataga (AK),60.104167,-142.458333,,1,,7231,343,129,,,,8,L1033 U1031 5.3s,TWEB,80111,, +209,USA,,GF,b,Ganse Glens Falls (NY),43.270833,-73.458333,,0.025,,5750,294,130,,,,,L1022 8600s,80116,,, +209,USA,,MJ,b,Lawrence Corner (NH),42.854167,-71.541667,,0.025,,5659,292,130,,,,0,L~1020 U~1020 8.6s,80123,,, +209,USA,,SYS,b,Stoystown Somerset (PA),40.104167,-78.875,,0.025,,6320,294,136,,,,,U1022 6.19s,80130,,, +209,USA,,GDW,b,Wiggins Gladwin (MI),43.979167,-84.458333,,0.025,,6363,301,137,,,,,U1006 5525s,80115,,, +209,USA,,CLI,b,Clintonville (WI),44.604167,-88.708333,,0.025,,6560,304,139,,,,,U1015 ,80109,,, +209,USA,,CHU,b,Caledonia (MN),43.604167,-91.458333,,0.025,,6793,305,141,,,,0,L1048 U1049 7.8s,80108,,, +209,USA,,DKB,b,De Kalb (IL),41.9375,-88.708333,,0.025,,6769,302,141,,,,998,L1034 U1021 ~6s,80112,,, +209,USA,,EY,b,Airpa Indianapolis (IN),39.9375,-86.208333,,0.025,,6781,299,141,,,,996,L1039 U1033 5652s,80114,,, +209,USA,,UKF,b,Wilki North Wilkesboro (NC),36.104167,-81.125,,0.025,,6771,293,141,,,,999,L1037 U1037 5075s,80132,,, +209,USA,,HCD,b,Hutchinson (MN),44.854167,-94.375,,0.025,,6853,308,142,,,,999,L1040 U1037 7981s,80117,,, +209,J,,MQ,b,Miyako (toh-iwa),39.854167,141.958333,,0.8,,8924,33,144,,,,15,L1005 U1035 15.1/26.1s,DAID,80124,, +209,USA,,RN,b,Warri Mc Minnville (TN),35.770833,-85.791667,,0.025,,7089,295,144,,,,,U1012 4369s,80128,,, +209,USA,,HOE,b,Homerville (GA),31.0625,-82.791667,,0.025,,7284,290,146,,,,0,L1019 U1018 5480s,80119,,, +209,USA,,EAD,b,Nevada (MO),37.854167,-94.291667,,0.025,,7426,302,147,,,,995,L1040 U1029 7.17s,80113,,, +209,USA,,PQ,b,Tlott Pascagoula (MS),30.5625,-88.541667,,0.025,,7691,293,150,,,,,,80127,,, +209,USA,,ITR,b,Kit Carson Burlington (CO),39.229167,-102.291667,,0.025,,7753,309,151,,,,999,L1014 U1020 8.5s,80121,,, +209,USA,,AEC,b,Base Camp Tonopah (NV),38.3125,-116.291667,,0.025,,8536,317,158,,,,2,L1031 U1036 7.0s,AWOS-3,80107,, +209,USA,,PCA,b,Picacho (AZ),35.270833,-112.291667,,0.025,,8628,313,158,,,,,,86861,,, +209,USA,,HGT,b,(Fort) Hunter Liggett Jolon (CA),35.979167,-121.208333,,0.025,,8982,320,160,,,,998,L1045 U1036 8.0s,80118,,, +209,MLA,,MYY,b,Miri (swk),4.3125,113.958333,,0.025,,10808,73,166,,,,1,L1014 U1016 ,80126,,, +209,AUS,,CMT,b,Clermont (QLD),-22.770833,147.625,,0.015,,15380,60,183,,,,,,80110,,, +209,AUS,,WKB,b,Warracknabeal (VIC),-36.3125,142.375,,0.025,,16168,81,183,,,,,L400 U400 9s,80133,,, +209,AUS,,TEM,b,Temora (NSW),-34.4375,147.541667,,0.025,,16369,73,184,,,,,,80131,,, +209,AUS,,KRY,b,Kingaroy (QLD),-26.5625,151.875,,0.015,,15973,59,185,,,,,L400 U400 10s,80122,,, +209,AUS,,SCO,b,Scone (NSW),-32.020833,150.791667,,0.015,,16382,66,186,,,,,L400 U400 7s,80129,,, +210,IRN,,ABD,b,Abadan (kuz),30.354167,48.208333,,0.025,,4164,109,115,,,,,,86256,,, +210,USA,,IOB,b,Mount Sterling (KY),38.0625,-83.958333,,0.049,,6793,296,138,,,,0,L1020 U1023 8600s,80140,,, +210,CAN,,F6,b,Chetwynd (BC),55.6875,-121.541667,,0.025,,7112,330,144,,,,,U409 10.2s,DAID,80137,, +210,CLM,,CLO,b,Cali (val),3.395833,-76.375,,1,,9217,266,144,,,,997,L1030 U1029 8.4s,80136,,, +210,B,,PCI,b,Pici (CE),-3.770833,-38.625,,0.025,,7516,230,148,,,,,L1039 U1040 6627s,80144,,, +210,B,,ARX,b,Arax (MG),-19.5625,-46.958333,,0.2,,9491,229,152,,,,,,80134,,, +210,AFS,,LL,b,Lanseria (GT),-25.9375,27.875,,0.025,,8927,160,159,,,,,U1037 8.2s,80141,,, +210,CHN,,RP,b,Lijia (JX),28.604167,115.708333,,0.025,,8727,58,159,,,,,,80145,,, +210,B,,FRM,b,Formosa (GO),-15.5625,-47.375,,0.025,,9127,232,160,,,,,,80138,,, +210,USA,,MY,b,Deoro San Diego (CA),32.770833,-117.041667,,0.025,,9096,315,160,,,,0,L1040 U1040 6.0s,80142,,, +210,TWN,,TC,b,Taichung (TC),24.270833,120.625,,0.025,,9403,57,161,,,,,9s,80146,,, +210,INS,,PB,b,Bengkulu (BE-bku),-3.854167,102.375,,0.025,,10753,88,165,,,,,,80143,,, +210,ARG,,ILM,b,Quilmes (ba),-34.729167,-58.208333,,0.025,,11507,230,168,,,,,5.5s,80139,,, +210,NZL,,AY,b,Appleby,-41.3125,173.125,,0.1,,18449,45,185,,,,,L400 U400 8s,80135,,, +211,CAN,,K7,b,Sainte-Anne-des-Monts (QC),49.145833,-66.541667,,0.025,,4935,297,122,,,,204,L411 U414 8294s,DAID,80150,, +211,CAN,,1J,b,Rock Island Lake (AB),55.4375,-113.625,,0.1,,6850,326,135,,,,,,86862,,, +211,USA,,AN,b,Bogga Anniston (AL),33.520833,-85.958333,,0.025,,7283,294,146,,,,0,L1042 U1042 7.80s,80147,,, +211,J,,OW,b,Itami (kns-hyo),34.8125,135.375,,0.5,,9155,40,147,,,,,L1000 5s,80152,,, +211,USA,,HGD,b,Steelhead Gooding (ID),42.895833,-114.708333,,0.05,,8035,319,150,,,,,,80149,,, +211,USA,,HDG,b,Steelhead Gooding (ID),42.895833,-114.708333,,0.025,,8035,319,153,,,,992,L1035 U1015 8.3s,80148,,, +211,USA,,ORG,b,Orange (TX),30.0625,-93.791667,,0.025,,8058,297,154,,,,4,L1035 U1042 ,80151,,, +212,RUS,,LZ,b,Ufa (BA),54.520833,55.958333,,0.025,,3234,65,105,,,,,U1020 29.9s,IDx2,80172,, +212,RUS,,RG,b,Ufa (BA),54.604167,55.875,,0.025,,3226,65,105,,,,,,80179,,, +212,CAN,,SJ,b,Saint John (NB),45.395833,-65.791667,,1,,5123,292,108,,,,,U414 10.1s,DAID,80181,, +212,CAN,,Y,b,Goose Bay (NL),53.270833,-60.541667,,0.025,,4345,299,116,,,,,,DAID,86866,, +212,CAN,,YTQ,b,Tasiujaq (QC),58.6875,-69.958333,,0.025,,4610,310,119,,,,,,80188,,, +212,CAN,,TS,b,Timmins (ON),48.5625,-81.458333,,0.4,,5854,304,120,,,,,U400 9759s,DAID,80182,, +212,PAK,,FA,b,Faisalabad (pjb),31.370278,72.995,,0.025,,5753,86,131,,,,,,31500037,,, +212,CAN,,YGX,b,Gillam (MB),56.354167,-94.708333,,0.025,,5976,318,133,,,,,U408 10.2s,DAID,80187,, +212,USA,,ESN,b,Easton (MD),38.8125,-76.041667,,0.025,,6240,291,135,,,,,U1019 4734s,80163,,, +212,USA,,HL,b,Dorch (WV),40.104167,-80.708333,,0.025,,6434,296,137,,,,4,L1034 U1041 5448s,80166,,, +212,CUB,,UMO,b,Moa (ho),20.645833,-74.958333,,0.35,,7630,277,138,,,,564,L1200 U1178 9329s,80185,,, +212,USA,,JX,b,Jakso Jackson (MI),42.3125,-84.375,,0.025,,6486,300,138,,,,1,L1035 U1036 6.0s,80169,,, +212,USA,,SSQ,b,Shell Lake (WI),45.729167,-91.958333,,0.025,,6652,307,139,,,,,,86865,,, +212,CUB,,UCF,b,Cienfuegos (cf),22.104167,-80.458333,,0.35,,7878,282,140,,,,19,L1013 U976 8.12s,80184,,, +212,USA,,AWW,b,Winchester (AL),40.1875,-84.958333,,0.025,,6686,298,140,,,,,,86863,,, +212,USA,,VP,b,Sedly Valparaiso (IN),41.4375,-86.875,,0.025,,6702,300,140,,,,0,L1032 U1027 7991s,80186,,, +212,ALS,,BCC,b,Bear Creek (AK),65.1875,-152.208333,,0.025,,6844,350,141,,,,0,L~1020 U~1020 ,80154,,, +212,CAN,,YYM,b,Cowley (AB),49.5625,-114.041667,,0.08,,7394,322,142,,,,,,80189,,, +212,USA,,DCY,b,Washington (IN),38.6875,-87.125,,0.025,,6935,298,142,,,,4,L1033 U1042 8499s,80161,,, +212,USA,,RUG,b,Rugby (ND),48.395833,-100.041667,,0.025,,6857,314,142,,,,,L1038 U1035 8.2s,86864,,, +212,CAN,,BY,b,Beechy (SK),50.854167,-107.458333,,0.025,,6997,320,143,,,,998,L400 U395 9.9s,DAID,80157,, +212,USA,,MPZ,b,Mt. Pleasant (IA),40.9375,-91.541667,,0.025,,7013,303,143,,,,1,L1020 U1023 5302s,80173,,, +212,USA,,OKZ,b,Kaolin (GA),32.979167,-82.875,,0.025,,7133,291,144,,,,,U1020 ,80174,,, +212,ALS,,CGL,b,Coghlan Island (AK),58.354167,-134.708333,,0.025,,7239,339,145,,,,0,L1037 U1036 8.5s,80159,,, +212,USA,,UC,b,Obion Union City (TN),36.3125,-88.958333,,0.025,,7239,298,145,,,,0,L1035 U1038 6.02s,80183,,, +212,CAN,,Z6,b,Golden (BC),51.3125,-116.958333,,0.025,,7352,325,146,,,,,,80190,,, +212,USA,,DBX,b,Morrison Washington (KS),39.770833,-97.041667,,0.025,,7420,306,147,,,,,U1021 5.9s,80160,,, +212,USA,,LMS,b,Louisville (MS),33.145833,-89.041667,,0.025,,7506,296,148,,,,990,L1025 U1006 6.0s,80171,,, +212,USA,,OZ,b,Ruckr Fort Rucker (Ozark) (AL),31.229167,-85.791667,,0.025,,7462,292,148,,,,2,L1041 U1045 6522s,80176,,, +212,USA,,CFV,b,Coffeyville (KS),37.104167,-95.541667,,0.025,,7561,303,149,,,,,L1029 U1020 5.62s,80158,,, +212,VTN,,DJ,b,Đ Nẵng (dan),15.979167,108.208333,,0.3,,9392,71,150,,,,0,L1025 U1025 8s,80162,,, +212,USA,,HMQ,b,Homer (LA),32.770833,-93.041667,,0.025,,7781,298,151,,,,999,L1039 U1032 7957s,80167,,, +212,USA,,HP,b,Anger Hammond (LA),30.604167,-90.458333,,0.025,,7807,295,151,,,,,L1032 U1039 6202s,80168,,, +212,USA,,BCY,b,Thorp Boise City (OK),36.770833,-102.541667,,0.025,,7982,307,153,,,,18,L1005 U1041 8.68s,80155,,, +212,CTR,,FIO,b,Fiora (alj),10.4375,-84.458333,,0.1,,9152,277,154,,,,55,L628 U748 4282s,80164,,, +212,USA,,LIU,b,Littlefield (TX),33.9375,-102.375,,0.025,,8223,305,155,,,,,U1010 ,80170,,, +212,USA,,BAZ,b,New Braunfels (TX),29.6875,-98.041667,,0.025,,8347,299,156,,,,,,80153,,, +212,USA,,OVE,b,Oroville (CA),39.479167,-121.625,,0.025,,8662,322,159,,,,999,L1038 U1036 10.0s,80175,,, +212,PNG,,MOE,b,Momote (mns),-2.016667,147.4125,,0.025,,13379,47,174,,,,,U1013 ,86257,,, +212,AUS,,PAG,b,Port Augusta (SA),-32.520833,139.708333,,0.025,,15701,78,182,,,,,,80177,,, +212,AUS,,POD,b,Portland (VIC),-38.3125,141.458333,,0.025,,16249,84,184,,,,,,80178,,, +212,AUS,,SHT,b,Shepparton (VIC),-36.4375,145.375,,0.025,,16378,78,184,,,,,,86258,,, +212,AUS,,GLI,b,Glen Innes (NSW),-29.6875,151.708333,,0.015,,16240,62,186,,,,,L400 U400 7s,80165,,, +212,AUS,,BNS,b,Bairnsdale (SA),-37.895833,147.541667,,0.015,,16629,78,187,,,,,L400 9s,80156,,, +213,CAN,,YRC,b,Saint-Honor-de-Chicoutimi (QC),48.520833,-71.125,,0.025,,5252,298,125,,,,,U395 10.23s,DAID,80191,, +213,THA,,HN,b,Hua Hin,12.643056,99.949444,,0.025,,9140,79,160,,,,,,32900031,,, +214,CAN,,K8,b,Nemiscau (QC),51.6875,-76.125,,2,,5341,304,107,,,,998,L399 U394 9.6s,DAID,80195,, +214,CAN,,YFL,b,Fort Reliance (NT),62.729167,-109.208333,,4,,6067,330,112,,,,,U410 ,86868,,, +214,CAN,,YIO,b,Pond Inlet (NU),72.6875,-77.958333,,0.025,,4395,332,117,,,,,U409 ,DAID,80201,, +214,USA,,TE,b,Torby (NJ),40.8125,-74.125,,0.025,,5969,292,133,,,,999,L1036 U1034 8120s,DAID,80199,, +214,CAN,,DA,b,Dawson (YT),64.020833,-139.208333,,0.025,,6764,344,141,,,,,U408 ,80193,,, +214,USA,,GYN,b,Gallatin (TN),36.395833,-86.375,,0.025,,7075,296,144,,,,,,86867,,, +214,J,,XA,b,Oshima (kan-tok),34.688833,139.396528,,0.5,,9338,37,148,,,,999,L1020 U998 5.0s,DAID,80200,, +214,CAN,,LU,b,Cultus Abbotsford (BC),49.020833,-122.041667,,0.025,,7761,327,151,,,,0,L412 U404 10.2s,DAID,80196,, +214,USA,,OHE,b,Monahans (TX),31.5625,-102.875,,0.025,,8462,304,158,,,,,U1025 5.0s,80198,,, +214,MEX,,CHX,b,Choix (Sinaloa) (sin),26.729167,-108.291667,,0.025,,9204,305,160,,,,31,L945 U1025 7.2s,80192,,, +214,NZL,,NV,b,Invercargill (STL),-46.4375,168.291667,,0.25,,18562,71,181,,,,,L1020 8s,80197,,, +215,RUS,,UW,b,Shumerlya,55.520833,46.458333,,0.025,,2619,66,99,,,,,L1100 ,IDx2,80221,, +215,CAN,,YTR,b,Trenton (ON),44.1875,-77.375,,0.025,,5926,297,132,,,,988,L1017 U1016 8393s,DAID,80223,, +215,CAN,,6S,b,#NAME?,43.4375,-79.875,,0.025,,6132,298,134,,,,,,86869,,, +215,USA,,PZQ,b,Rogers City (MI),45.395833,-83.791667,,0.025,,6218,302,135,,,,4,L1011 U1008 8067s,80216,,, +215,USA,,UIZ,b,Utica / Berz (MI),42.645833,-82.958333,,0.025,,6376,299,137,,,,,U1032 ,86873,,, +215,CAN,,W,b,Winnipeg (MB),49.8125,-97.291667,,0.025,,6605,313,139,,,,,U380 ,DAID,86874,, +215,CAN,,ZWW,b,Boine Muddywater (Winnipeg) (MB),49.8125,-97.291667,,0.025,,6605,313,139,,,,1,L385 U386 10567s,DAID,80225,, +215,USA,,DLZ,b,Delaware (OH),40.270833,-83.125,,0.025,,6569,297,139,,,,1,L1033 U1033 7782s,80206,,, +215,USA,,ISW,b,Wisconsin Rapids (WI),44.354167,-89.875,,0.025,,6645,305,139,,,,999,L1031 U1028 6453s,80208,,, +215,USA,,ML,b,Molli Moline (IL),41.4375,-90.625,,0.025,,6920,303,142,,,,2,L1030 U1035 6.0s,80210,,, +215,CAN,,K,b,Edmonton (AB),53.229167,-113.458333,,0.025,,7040,324,143,,,,,U~400 ,DAID,86872,, +215,CAN,,ZAB,b,Leduc Edmonton (Intl Apt) (AB),53.229167,-113.458333,,0.025,,7040,324,143,,,,,U392 11.23s,DAID,80224,, +215,SLV,,YSX,b,Ilopango (Lago de Ilopango) (ssl),13.6875,-89.125,,1.5,,9182,283,143,,,,,U1021 ~5.0s,Cont. ID,80222,, +215,USA,,AT,b,Lican Watertown (SD),44.8125,-97.125,,0.025,,7003,309,143,,,,0,L1040 U1040 5.85s,80203,,, +215,B,,NOA,b,Nova Iguau (RJ),-22.729167,-43.458333,,1,,9624,225,146,,,,,,80213,,, +215,USA,,MVQ,b,Malvern (AR),34.354167,-92.791667,,0.025,,7632,299,149,,,,,U1016 ,80212,,, +215,USA,,TQH,b,Tahlequah (OK),35.9375,-95.041667,,0.025,,7631,302,149,,,,,L973 U965 7.02s,80219,,, +215,USA,,BFK,b,Buffalo (OK),36.854167,-99.625,,0.025,,7814,305,151,,,,0,L1016 U1017 6359s,80204,,, +215,B,,MCP,b,Macap (AP),0.0625,-51.041667,,0.025,,7856,243,152,,,,,L1050 6.90s,86261,,, +215,B,,TRS,b,Teresina (PI),-5.0625,-42.791667,,0.025,,7864,233,152,,,,,L1020 7036s,80220,,, +215,USA,,CSZ,b,Crossroads Athens (TX),32.0625,-95.958333,,0.025,,8016,300,153,,,,998,L1018 U1018 7.3s,80205,,, +215,B,,PP,b,Maraca / Campo Grande (MS),-20.395833,-54.625,,0.1,,9984,235,157,,,,,L1040 ,80215,,, +215,USA,,ARU,b,Alturas Muni (CA),41.479167,-120.541667,,0.025,,8423,322,157,,,,,,86870,,, +215,B,,SGC,b,So Gabriel da Cachoeira (AM),-0.145833,-66.958333,,0.025,,8895,257,159,,,,989,L1045 U1025 6.96s,80217,,, +215,USA,,GEU,b,Glendale (AZ),33.520833,-112.291667,,0.025,,8790,312,159,,,,,,86871,,, +215,EQA,,ESM,b,Esmeraldas (esm),0.979167,-79.625,,0.025,,9651,267,162,,,,,L1041 U1068 7.23s,86260,,, +215,B,,SMR,b,Santa Maria (RS),-29.729167,-53.791667,,0.025,,10815,229,166,,,,,7.3s,80218,,, +215,CHL,,CFL,b,Calama (AN),-22.479167,-68.875,,0.025,,11016,245,166,,,,,L1018 U1018 10.08s,86259,,, +215,INS,,AL,b,Halim Perdanakusuma,-6.1875,107.041667,,0.025,,11275,85,167,,,,,U1022 ,80202,,, +215,AUS,,RMD,b,Richmond (QLD),-20.6875,143.125,,0.025,,14921,63,179,,,,,L1020 8s,86262,,, +215,AUS,,KSC,b,Kingscote (SA),-35.729167,137.541667,,0.025,,15798,84,182,,,,,U400 10.84s,80209,,, +215,AUS,,NRM,b,Narromine (NSW),-32.229167,148.208333,,0.025,,16236,69,184,,,,,L400 U400 7s,80214,,, +215,AUS,,MRY,b,Moruya (NSW),-35.895833,150.125,,0.025,,16650,72,185,,,,0,L400 U400 8s,80211,,, +215,AUS,,HAY,b,Hay (NSW),-34.5625,144.791667,,0.015,,16198,76,186,,,,,,80207,,, +216,F,fr,RMC Info,,Roumoules (04),43.792942,6.149744,,700,,925,181,38,,0300-2312,1234567,0,,41,,, +216,CAN,,ME,b,Matane (QC),48.8125,-67.541667,,0.1,,5016,297,117,,,,,U411 10.0s,DAID,80232,, +216,CAN,,YFA,b,Fort Albany (ON),52.1875,-81.708333,,0.2,,5617,307,120,,,,,U403 10.5s,DAID,80234,, +216,USA,,LRG,b,Lincoln (ME),45.354167,-68.541667,,0.025,,5300,293,126,,,,0,L1047 U1048 ,80231,,, +216,USA,,CO,b,Epsom Concord (NH),43.104167,-71.458333,,0.025,,5637,293,129,,,,4,L1040 U1048 5.9s,80227,,, +216,USA,,CLB,b,Wilmington / Carolina Beach (NC),34.104167,-77.958333,,0.025,,6727,289,140,,,,1,L1037 U1036 9.5s,80226,,, +216,USA,,JMR,b,Mora (MN),45.895833,-93.291667,,0.025,,6711,308,140,,,,,,80230,,, +216,USA,,RCR,b,Rochester (IN),41.0625,-86.208333,,0.025,,6692,300,140,,,,,L1031 U1028 ,86875,,, +216,USA,,DPY,b,Deer Park (WA),47.979167,-117.458333,,0.025,,7681,323,150,,,,,U1013 7.5s,80228,,, +216,MYA,,SW,b,Sittwe (rak),20.130833,92.883333,,0.025,,8019,80,153,,,,,,80233,,, +216,USA,,GR,b,Graye Fort Lewis (Tacoma) (WA),47.145833,-122.625,,0.025,,7963,326,153,,,,0,L1046 U1038 5.9s,80229,,, +216,USA,,GRF,b,Gray AAF (Joint Base Lewis-Mcchord) Airport (WA),47.145833,-122.625,,0.025,,7963,326,153,,,,,,86263,,, +217,USA,,HZD,b,Huntingdon (TN),36.104167,-88.458333,,0.025,,7226,297,145,,,,,U996 5.22s,80236,,, +217,USA,,RI,b,Klint Riverton (WY),43.020833,-108.291667,,0.025,,7724,315,150,,,,8,L1025 U1041 7.6s,80237,,, +217,USA,,EC,b,Meggi Cedar City (UT),37.770833,-113.041667,,0.049,,8433,315,154,,,,0,L1032 U1023 6.0s,80235,,, +217,CHN,,ZJ,b,Changzhou (JS),31.9375,119.708333,,0.025,,8651,53,159,,,,,,80238,,, +218,CAN,,YXP,b,Pangnirtung (NU),66.145833,-65.708333,,0.025,,4121,320,114,,,,,U400 10.3s,DAID,80251,, +218,CAN,,YUY,b,Rouyn-Noranda (QC),48.1875,-78.958333,,0.5,,5737,302,117,,,,,U403 10.1s,ID+4 tone,80250,, +218,CAN,,RL,b,Red Lake (ON),51.0625,-93.791667,,1,,6332,312,120,,,,4,L405 U409 10.2s,DAID,80246,, +218,CAN,,WK,b,Wabush (NL),52.854167,-66.875,,0.025,,4740,301,120,,,,,U395 9.8s,80248,,, +218,CAN,,PR,b,Prince Rupert (BC),54.270833,-130.458333,,0.5,,7532,334,135,,,,,U403 10.0s,DAID,80245,, +218,USA,,DRM,b,Drummond Island (MI),46.020833,-83.708333,,0.025,,6167,303,135,,,,,U1032 4892s,80242,,, +218,CAN,,YDM,b,Ross River (YT),61.979167,-132.458333,,0.025,,6822,339,141,,,,,U~400 ,80249,,, +218,USA,,AL,b,Alpos Alton (St Louis MO) (IL),38.854167,-89.958333,,0.025,,7090,300,144,,,,2,L1019 U1022 8600s,80239,,, +218,AUS,,BRL,b,Borroloola (NT),-16.0625,136.291667,,0.025,,14082,67,176,,,,,,80240,,, +218,AUS,,CMU,b,Cunnamulla (QLD),-28.020833,145.625,,0.1,,15720,67,176,,,,,L400 U400 8s,80241,,, +218,AUS,,WBR,b,Warburton Range (WA),-26.145833,126.541667,,0.025,,14305,84,177,,,,,L1020 U1020 9s,80247,,, +218,AUS,,PLE,b,Plenty - Melbourne (VIC),-37.729167,145.125,,0.1,,16455,80,178,,,,,L400 U400 10s,80244,,, +218,AUS,,MRB,b,Moranbah (QLD),-22.0625,148.041667,,0.025,,15341,59,181,,,,,U1020 8s,86264,,, +218,NZL,,OH,b,Ohakea,-40.1875,175.375,,0.13,,18444,37,184,,,,,4.13s,80243,,, +219,CAN,,ZQY,b,Bras dOr Sydney (NS),46.104167,-60.125,,0.025,,4717,289,120,,,,,U400 10187s,DAID,80271,, +219,CAN,,W7,b,Pabok du Rocher-Perc (QC),48.395833,-64.541667,,0.025,,4857,295,122,,,,0,L107 U411 8262s,DAID,80269,, +219,CAN,,YMG,b,Manitouwadge (ON),49.0625,-85.875,,0.1,,6065,307,128,,,,,U404 10.4s,DAID,80270,, +219,USA,,AL,b,Hawky Hawk (NY),42.8125,-73.791667,,0.025,,5804,294,131,,,,,,86877,,, +219,USA,,CX,b,Latle Harrisburg (PA),40.1875,-77.041667,,0.025,,6199,293,135,,,,999,L1040 U1040 6077s,80254,,, +219,USA,,MK,b,Muskegon (MI),43.104167,-86.208333,,0.025,,6533,301,138,,,,1,L1020 U1020 8599s,80260,,, +219,USA,,TO,b,Tophr Toledo (OH),41.5625,-83.958333,,0.025,,6519,299,138,,,,0,L1018 U1023 6234s,80268,,, +219,USA,,OQ,b,Brinn Indianapolis (IN),39.604167,-86.375,,0.025,,6817,299,141,,,,999,L1010 U1045 6.77s,80264,,, +219,CAN,,ZRS,b,Ajax Regina (SK),50.479167,-104.708333,,0.025,,6905,318,142,,,,6,L395 U396 10496s,DAID,80272,, +219,CAN,,Q,b,Regina (SK),50.479167,-104.708333,,0.02,,6905,318,143,,,,,,80265,,, +219,USA,,AWG,b,Washington (IA),41.270833,-91.708333,,0.025,,6995,303,143,,,,0,L1106 U1105 5.38s,80252,,, +219,USA,,EV,b,Vicci Evansville (IN),38.145833,-87.458333,,0.025,,6999,298,143,,,,2,L1031 U1035 6421s,80255,,, +219,CAN,,5Z,b,Oyen (AB),51.354167,-110.458333,,0.025,,7083,322,144,,,,,,86876,,, +219,USA,,AY,b,Wiket Waycross (GA),31.3125,-82.375,,0.025,,7237,290,145,,,,998,L1036 U1026 6.0s,80253,,, +219,ALS,,GAV,b,Gustavus (AK),58.4375,-135.708333,,0.025,,7255,339,146,,,,997,L1040 U1034 8.5s,80257,,, +219,USA,,OMK,b,Omak (WA),48.4375,-119.541667,,0.049,,7721,325,147,,,,998,L784 U784 6.5s,80263,,, +219,USA,,MPE,b,Philadelphia (MS),32.8125,-89.125,,0.025,,7539,295,148,,,,0,L1032 U1047 6.50s,80262,,, +219,J,,SK,b,Shinoda (kns-osk),34.479167,135.458333,,0.25,,9191,40,150,,,,,,80267,,, +219,USA,,ML,b,Sabar Monroe (LA),32.4375,-92.125,,0.025,,7754,297,151,,,,,L1025 ,80261,,, +219,USA,,HU,b,Houma (LA),29.645833,-90.625,,0.025,,7899,294,152,,,,0,L1019 U1021 8.60s,80258,,, +219,USA,,EVA,b,Silsbee (TX),30.395833,-94.125,,0.025,,8050,297,153,,,,,,86878,,, +219,USA,,FL,b,Jiffy Flower Mound (Dallas Ft. Worth Intl Apt) (TX),32.979167,-97.041667,,0.025,,8001,301,153,,,,,L1029 ,80256,,, +219,USA,,SA,b,Bluie San Antonio (TX),29.479167,-98.541667,,0.05,,8395,300,154,,,,0,L1020 U1020 7.1s,80266,,, +219,USA,,LB,b,Pollo Lubbock (TX),33.729167,-101.791667,,0.025,,8208,305,155,,,,4,L1041 U1037 5.77s,80259,,, +220,CAN,,BX,b,Blanc Sablon (Lourdes de Blanc Sablon) (QC),51.4375,-57.208333,,2,,4234,295,96,,,,0,L405 U400 10.5s,DAID,80273,, +220,CAN,,Y9,b,Digby (NS),44.5625,-65.791667,,0.025,,5178,291,125,,,,,U420 10557s,DAID,80286,, +220,IND,,SNG,b,Srinagar (JK),33.982778,74.782222,,0.025,,5675,82,130,,,,,,32200047,,, +220,USA,,IHM,b,Mansfield (MA),42.020833,-71.208333,,0.025,,5697,291,130,,,,973,L1028 U975 4864s,80280,,, +220,USA,,FZ,b,Syracuse (NY),43.104167,-76.125,,0.025,,5927,295,132,,,,2,L397 U402 5.05s,80277,,, +220,B,,TUI,b,Tucuru (PA),-3.7866,-49.714628,,1,,8137,240,138,,,,999,L1028 U1030 7158s,ID+5 gap,80284,, +220,USA,,HUR,b,Person (NC),36.229167,-79.041667,,0.025,,6630,291,139,,,,550,L1032 U1038 7.99s,80279,,, +220,USA,,DCM,b,Chester (SC),34.770833,-81.208333,,0.025,,6883,292,142,,,,982,L1052 U1022 6121s,80275,,, +220,CUB,,HG,b,Holguin (ho),20.770833,-76.291667,,0.025,,7710,278,150,,,,,U755 7010s,86266,,, +220,USA,,HLE,b,Hailey (ID),43.3125,-114.208333,,0.049,,7974,319,150,,,,998,L1030 U1030 7.9s,80278,,, +220,B,,PER,b,Perus (SP),-23.4375,-46.791667,,0.2,,9857,227,153,,,,,,80281,,, +220,B,,FNP,b,Florianpolis (SC),-27.6875,-48.541667,,0.2,,10354,227,155,,,,,,80276,,, +220,B,,IS,b,Cimbra (BA),-12.9375,-38.458333,,0.025,,8414,225,157,,,,,,86267,,, +220,USA,,VI,b,Vilia Vasalia (CA),36.270833,-119.291667,,0.025,,8868,318,159,,,,2,L1025 U1035 6.0s,80285,,, +220,TWN,,CO,b,Kaohsiung (KHS),22.580556,120.291667,,0.025,,9539,58,161,,,,,11s,80274,,, +220,USA,,RBJ,b,Robles Tucson (AZ),32.0625,-111.375,,0.01,,8878,310,163,,,,998,L1028 U1022 8.4s,80282,,, +220,B,,CAV,b,Cascavel (PR),-25.020833,-53.541667,,0.025,,10359,232,164,,,,,,86265,,, +220,SNG,,SEL,b,Selatar (ne),1.395833,103.875,,0.025,,10393,83,164,,,,946,L1023 U916 7s,80283,,, +221,CAN,,YAS,b,Kangirsuk (QC),60.020833,-70.041667,,0.5,,4551,312,106,,,,,U408 10.28s,ID+4 tone,80308,, +221,USA,,RQM,b,Rangeley (ME),44.9375,-70.791667,,0.025,,5468,294,128,,,,2,L1034 U1037 8870s,80303,,, +221,USA,,DYO,b,Smuto Rutland (VT),43.6875,-72.958333,,0.025,,5690,294,130,,,,0,L1035 U1030 8.0s,80292,,, +221,USA,,ARV,b,Arbor Vitae Minocqua (Woodruff) (WI),45.9375,-89.708333,,0.075,,6512,306,133,,,,,U1006 5480s,80288,,, +221,CAN,,HM,b,Hamilton (Carluke) (ON),43.104167,-80.041667,,0.025,,6167,298,135,,,,0,L375 U371 10489s,DAID,80294,, +221,USA,,PMZ,b,Plymouth (NC),35.8125,-76.791667,,0.025,,6518,289,138,,,,,U1035 ,80299,,, +221,USA,,RP,b,Wickr Rice Lake Airport, Carls Field (WI),45.3125,-91.791667,,0.025,,6676,307,140,,,,2,L398 U402 7916s,80302,, +221,CAN,,9A,b,Hanna (AB),51.645833,-111.875,,0.05,,7117,323,141,,,,,U386 10.47s,DAID,80287,, +221,CAN,,QU,b,Grande Prairie (AB),55.145833,-118.791667,,0.05,,7067,329,141,,,,5,L399 U403 10124s,DAID,80300,, +221,USA,,BO,b,Booie Bristol (Johnston-Kingsport) (TN),36.395833,-82.458333,,0.025,,6832,294,141,,,,995,L1042 U1025 7822s,80290,,, +221,USA,,RBW,b,Walterboro (SC),32.9375,-80.625,,0.025,,6993,290,143,,,,994,L1021 U1000 5344s,80301,,, +221,USA,,BJT,b,Bulldog Athens (GA),33.9375,-83.208333,,0.025,,7077,292,144,,,,0,L1021 U1031 6876s,80289,,, +221,USA,,PED,b,Needmore Springfield (TN),36.520833,-86.958333,,0.025,,7100,297,144,,,,,U1020 ,80298,,, +221,MEX,,SMS,b,Marcos Acapulco (Guerrero) (gue),16.770833,-99.375,,1,,9576,293,146,,,,0,L1020 U1020 ,80305,,, +221,USA,,HYE,b,Hanchey Fort Rucker (Ozark) (AL),31.354167,-85.625,,0.025,,7441,292,147,,,,999,L1041 U1046 8840s,80296,,, +221,USA,,OR,b,Henry Orlando (FL),28.520833,-81.458333,,0.025,,7407,287,147,,,,996,L403 U399 6.43s,80297,,, +221,USA,,FX,b,Praiz Fort Lauderdale (FL),26.1875,-80.291667,,0.025,,7524,284,148,,,,0,L378 U376 6156s,80293,,, +221,CTR,,CHI,b,Los Chiles (Alajuela) (alj),11.020833,-84.708333,,0.3,,9118,278,149,,,,,U970 4.7s,80291,,, +221,USA,,AYI,b,Hanco Bay Saint Louis (MS),30.4375,-89.458333,,0.025,,7759,294,151,,,,,,86879,,, +221,USA,,HS,b,Hanco Bay Saint Louis (MS),30.4375,-89.458333,,0.025,,7759,294,151,,,,0,L1025 U1026 8712s,80295,,, +221,AUS,,KU,b,Kununurra (WA),-15.770833,128.708333,,0.025,,13569,74,175,,,,,U670 ,86268,,, +221,AUS,,TAM,b,Taroom (QLD),-25.8125,149.875,,0.1,,15788,60,176,,,,,L1020 U1020 9s,80306,,, +221,AUS,,SCR,b,Southern Cross (WA),-31.229167,119.375,,0.025,,14220,94,177,,,,,,80304,,, +221,AUS,,WG,b,Wagga Wagga (NSW),-35.145833,147.458333,,0.025,,16418,74,184,,,,,L400 U400 8s,80307,,, +222,RUS,,TJ,b,Moskva/Bykovo (MV),55.604167,38.041667,,0.025,,2091,67,94,,,,,,86269,,, +222,RUS,,UI,b,Moskva/Bykovo (MV),55.604167,38.041667,,0.025,,2091,67,94,,,,,,86270,,, +222,CAN,,6Q,b,Cigar Lake (SK),58.0625,-104.541667,,0.025,,6270,324,136,,,,,U375 ,DAID,80309,, +222,USA,,CVX,b,Charlevoix (MI),45.3125,-85.291667,,0.025,,6311,303,136,,,,,,86880,,, +222,CAN,,WY,b,Wrigley (NT),63.229167,-123.458333,,0.025,,6469,336,138,,,,,U415 9.8s,DAID,80316,, +222,MEX,,CUW,b,Chihuahua (chi),28.5625,-105.958333,,0.4,,8906,304,147,,,,14,L982 U990 4.7s,80310,,, +222,USA,,FDR,b,Frederick (OK),34.354167,-98.958333,,0.025,,7993,303,153,,,,,,80311,,, +222,USA,,MY,b,Halow Marysville (CA),39.1875,-121.625,,0.025,,8690,321,159,,,,4,L1035 U1043 8.0s,80312,,, +223,CAN,,YYW,b,Armstrong (ON),50.3125,-89.041667,,0.1,,6143,309,128,,,,,U405 10.2s,DAID,80326,, +223,CAN,,YKA,b,Kamloops (BC),50.6875,-120.375,,0.5,,7541,327,135,,,,1,L407 U405 10.5s,DAID,80325,, +223,USA,,DA,b,Davee Fort Belvoir (VA),38.645833,-77.125,,0.025,,6321,292,136,,,,994,L1040 U1030 8885s,80320,,, +223,USA,,DAA,b,Davee Fort Belvoir (VA),38.645833,-77.125,,0.025,,6321,292,136,,,,,L1040 U1028 8898s,86271,,, +223,USA,,DM,b,Spence Detroit (MI),42.229167,-83.208333,,0.025,,6423,299,137,,,,0,L1020 U1022 8600s,80321,,, +223,USA,,CDI,b,Cambridge (OH),39.979167,-81.541667,,0.025,,6495,296,138,,,,,,80319,,, +223,USA,,AZW,b,Mt Airy (NC),36.395833,-80.541667,,0.025,,6712,292,140,,,,994,L1035 U1048 4313s,80318,,, +223,USA,,MW,b,Onida Franklin (OH),39.5625,-84.291667,,0.025,,6695,297,140,,,,999,L1039 U1036 4335s,80324,,, +223,USA,,GAK,b,Sioux Gateway (IA),42.395833,-96.375,,0.025,,7163,307,145,,,,,U1020 ,86881,,, +223,ALS,,AFE,b,Kake (AK),56.979167,-133.875,,0.025,,7356,338,147,,,,1,L1037 U1037 8.5s,80317,,, +223,USA,,FS,b,Wizer Fort Smith (AR),35.354167,-94.208333,,0.025,,7632,301,149,,,,0,L1048 U1051 5.64s,80323,,, +223,USA,,ES,b,Andra Alexandria (LA),31.395833,-92.208333,,0.025,,7848,297,151,,,,997,L1031 U1025 6.46s,80322,,, +224,CAN,,BK,b,Baker Lake (NT),64.3125,-96.041667,,2,,5468,326,109,,,,,U392 10.4s,DAID,80328,, +224,CAN,,QM,b,Moncton (NB),46.104167,-64.541667,,0.4,,4999,292,111,,,,,U407 10.2s,DAID,80335,, +224,CAN,,MO,b,Moosonee (ON),51.270833,-80.625,,0.4,,5620,306,117,,,,,U410 10.3s,DAID,80333,, +224,IRN,,ZD,b,Zahedan (sib),29.470833,60.895833,,0.025,,5078,98,124,,,,,,10800024,,, +224,CAN,,X,b,Mirabel (QC),45.645833,-73.958333,,0.025,,5615,297,129,,,,,,86885,,, +224,CAN,,ZMB,b,Mirabel Blainville (Montreal) (QC),45.645833,-73.958333,,0.025,,5615,297,129,,,,,U406 10.1s,DAID,80340,, +224,USA,,VWD,b,Mount Snow West Dover (VT),42.9375,-72.875,,0.025,,5737,293,130,,,,,U1003 6.2s,80337,,, +224,USA,,BH,b,Mc Den Birmingham (AL),33.520833,-86.875,,0.4,,7341,294,134,,,,995,L1044 U1039 6074s,80327,,, +224,USA,,BF,b,Bradford (PA),41.770833,-78.541667,,0.025,,6174,296,135,,,,,,86882,,, +224,USA,,II,b,Fichy Sturgeon Bay (WI),44.770833,-87.458333,,0.025,,6476,304,138,,,,,L1037 U1034 4896s,80332,,, +224,CAN,,DN,b,Dauphin (MB),51.104167,-100.041667,,0.025,,6635,316,139,,,,0,L390 U384 10421s,DAID,80329,, +224,USA,,FSE,b,Fosston (MN),47.604167,-95.791667,,0.025,,6706,311,140,,,,966,L1053 U980 35s,AWOS-3,80330,, +224,USA,,GVA,b,Geneva Henderson (KY),37.8125,-87.791667,,0.025,,7046,298,143,,,,,U1013 5855s,80331,,, +224,CAN,,N5,b,Rocky Two Rocky Mt House (AB),52.4375,-114.875,,0.025,,7168,325,145,,,,,U384 ,DBID,80334,, +224,BAH,,ZGB,b,Governors Harbor (Eleuthera) (cel),25.270833,-76.291667,,0.025,,7334,281,146,,,,,,80339,,, +224,USA,,ODD,b,Dondo Seattle (WA),47.354167,-122.291667,,0.025,,7930,326,152,,,,,L1050 U1030 6.22s,86883,,, +224,USA,,SDL,b,Scottsdale (AZ),33.645833,-111.875,,0.025,,8757,312,159,,,,,U1035 ,86884,,, +224,AUS,,WMD,b,West Maitland (NSW),-32.770833,151.541667,,0.1,,16491,66,178,,,,0,L400 U400 10s,80338,,, +224,AUS,,RPY,b,Ripley (VIC),-37.895833,144.458333,,0.025,,16422,81,184,,,,,U400 ,80336,,, +225,POL,pl,Polskie R Jedynka,,Solec Kujawski/Kabat (KP),53.022778,18.261111,,1000,,806,78,35,,0000-2400,1234567,0,,42,,, +225,CAN,,YIK,b,Ivujivik (QC),62.395833,-77.958333,,0.025,,4819,318,121,,,,,U406 10.2s,DAID,80349,, +225,CAN,,X5,b,Vegreville (AB),53.520833,-112.041667,,0.025,,6958,324,143,,,,,U417 10.37s,DAID,80348,, +225,CLM,,EPO,b,El Paso (ris),4.479167,-75.541667,,1,,9065,266,144,,,,0,L1024 U1026 5941s,80344,,, +225,MYA,,KL,b,Kalay,23.1875,94.054722,,0.025,,7838,77,151,,,,,,22100021,,, +225,B,,PRR,b,Presidente Prudente (SP),-22.1875,-51.375,,0.2,,9975,232,154,,,,998,L1021 U1018 7006s,80347,,, +225,B,,CPO,b,Campos (RJ),-21.6875,-41.291667,,0.1,,9418,224,155,,,,,,80343,,, +225,USA,,LWG,b,Lewisburg (Corvalllis) (OR),44.604167,-123.291667,,0.025,,8234,325,155,,,,994,L1050 U1045 6.0s,80345,,, +225,TWN,,MS,b,Yilan (YL),24.729167,121.708333,,0.05,,9422,56,158,,,,,,80346,,, +225,B,,BRL,b,Barcelos (AM),-0.979167,-62.958333,,0.025,,8706,253,159,,,,,L1189 U818 7096s,80341,,, +225,PRG,,ITU,b,Itaipu,-25.395833,-54.625,,0.025,,10452,232,164,,,,,5s,86272,,, +225,INS,,CB,b,Pondok Cabe,-6.354167,106.791667,,0.025,,11273,86,167,,,,,,80342,,, +226,CAN,,5W,b,Leaf Rapids (MB),56.520833,-99.958333,,0.025,,6199,320,135,,,,,U411 8.54s,DAID,80350,, +226,USA,,EZE,b,Engel Cleveland (OH),41.479167,-81.708333,,0.025,,6390,297,137,,,,1,L1037 U1039 ,80352,,, +226,USA,,FAF,b,Felker Fort Eustis (VA),37.145833,-76.625,,0.025,,6404,290,137,,,,999,L1026 U1025 8.62s,80353,,, +226,USA,,HT,b,Huntington (KY),38.354167,-82.625,,0.025,,6688,295,140,,,,3,L1040 U1046 5755s,80355,,, +226,USA,,OYI,b,Orangeburg (SC),33.4375,-80.875,,0.025,,6968,290,143,,,,,U1022 5402s,80357,,, +226,USA,,REN,b,Warren (AR),33.5625,-92.125,,0.025,,7659,298,150,,,,,L1017 U1014 4.73s,80358,,, +226,CHN,,DP,b,Dangjiazhuang (SD),36.770833,117.375,,0.025,,8090,52,154,,,,,,80351,,, +226,USA,,VC,b,Fostr Victoria (TX),28.895833,-97.041667,,0.05,,8356,298,154,,,,,L1017 U1030 ,86886,,, +226,USA,,VCT,b,Fostr Victoria (TX),28.895833,-97.041667,,0.05,,8356,298,154,,,,5,L1015 U1025 5.2s,80359,,, +226,NZL,,KK,b,Kerikeri (NTL),-35.270833,173.875,,0.13,,17896,33,182,,,,,L1020 4s,80356,,, +226,NZL,,FY,b,Ferry,-41.395833,175.125,,0.13,,18550,40,184,,,,,L1020 7s,80354,,, +227,MNG,mn,Mongoliin R 1,,Altaii=Altay (gvi),46.319722,96.251944,,75,,6129,57,100,,0000-1500,1234567,1,,47186,,, +227,MNG,mn,Mongoliin R 1,,Altaii=Altay (gvi),46.319722,96.251944,,75,,6129,57,100,,2147-2400,1234567,1,,47186,,, +227,USA,,BG,b,Totte Bangor (ME),44.729167,-68.708333,,0.025,,5352,293,126,,,,0,L1032 U1032 ,80363,,, +227,USA,,SZO,b,Sebago Fryeburg (ME),43.895833,-70.791667,,0.025,,5539,293,128,,,,12,L1006 U1031 7.94s,80381,,, +227,USA,,TAN,b,Taunton (MA),41.895833,-71.041667,,0.025,,5695,291,130,,,,,U1016 5141s,80382,,, +227,CAN,,YAC,b,Cat Lake (ON),51.729167,-91.791667,,0.05,,6180,312,132,,,,,U388 10.2s,DAID,80386,, +227,CAN,,CG,b,Castlegar (BC),49.4375,-117.541667,,0.5,,7548,324,135,,,,,U404 10.2s,DAID,80365,, +227,USA,,RJD,b,Ridgely (VA),38.979167,-75.875,,0.025,,6217,292,135,,,,,,86887,,, +227,USA,,GW,b,Aubon De Kalb County, Auburn (IN),41.3125,-84.958333,,0.025,,6598,299,139,,,,,L1036 U1036 7907s,86273,, +227,CAN,,1K,b,Zama Lake (AB),59.020833,-118.875,,0.025,,6716,331,140,,,,,U400 ,DAID,80360,, +227,USA,,SQ,b,Pnthr Connersville (IN),39.770833,-85.125,,0.025,,6729,298,140,,,,999,L1040 U1039 5871s,80380,,, +227,USA,,CPC,b,Camp Whiteville (NC),34.270833,-78.708333,,0.025,,6763,289,141,,,,999,L1022 U1028 8384s,80367,,, +227,CAN,,9X,b,Brooks (AB),50.645833,-111.958333,,0.05,,7210,322,142,,,,,U390 10.28s,DAID,80361,, +227,USA,,UZ,b,Rally Rock Hill (SC),34.895833,-81.041667,,0.025,,6862,291,142,,,,7,L1028 U1040 5875s,80385,,, +227,ALS,,MHM,b,Minchumina (AK),63.895833,-152.291667,,0.025,,6984,350,143,,,,798,L402 U~400 ,80375,,, +227,USA,,FZ,b,Eaves St. Louis (MO),38.6875,-90.541667,,0.025,,7138,301,144,,,,0,L1017 U1020 8600s,80369,,, +227,USA,,SLB,b,Storm Lake (IA),42.604167,-95.208333,,0.025,,7082,306,144,,,,,,86889,,, +227,CAN,,PK,b,Pitt Meadows (BC),49.229167,-122.708333,,0.08,,7766,327,146,,,,,,80379,,, +227,USA,,AB,b,Putny Albany (GA),31.4375,-84.291667,,0.025,,7350,291,146,,,,999,L1038 U1037 5876s,80362,,, +227,HND,,LCE,b,Goloson La Ceiba (Atlantida) (atl),15.729167,-86.875,,0.4,,8854,282,147,,,,995,L1005 U1006 4.05s,80372,,, +227,USA,,TNZ,b,Lawrence Co. Walnut Ridge (AR),36.1875,-90.958333,,0.025,,7369,299,147,,,,999,L1041 U1039 7.6s,80384,,, +227,USA,,LA,b,Wirey Lakeland (FL),27.9375,-82.041667,,0.025,,7494,287,148,,,,0,L1025 U1041 6063s,80371,,, +227,USA,,MPR,b,Mc Pherson (KS),38.354167,-97.708333,,0.025,,7578,305,149,,,,988,L1013 U1016 7.0s,80376,,, +227,USA,,TN,b,Monry Trailtown (Miami) (FL),25.854167,-81.041667,,0.025,,7602,285,149,,,,0,L1041 U1042 7232s,80383,,, +227,CHL,,CLD,b,Caldera (AT),-27.0625,-70.791667,,1,,11538,243,152,,,,1,L1016 U1018 10.3s,80366,,, +227,CHN,,BK,b,Ningbo (ZJ),29.895833,121.291667,,0.025,,8923,53,159,,,,,,80364,,, +227,USA,,SJY,b,San Jacinto (CA),33.8125,-116.958333,,0.025,,8993,315,160,,,,,L1025 U1000 6.3s,86888,,, +227,AUS,,NRB,b,Narembeen (WA),-32.0625,118.375,,0.025,,14216,96,177,,,,,U1028 ,80377,,, +227,AUS,,OOM,b,Moomba (SA),-28.104167,140.208333,,0.049,,15379,73,178,,,,,L400 U400 9s,80378,,, +227,AUS,,DYS,b,Dysart (QLD),-22.604167,148.375,,0.025,,15410,59,181,,,,,L1020 U1020 10s,80368,,, +227,AUS,,LRT,b,Lake Albert (SA),-35.6875,139.375,,0.025,,15919,82,183,,,,,L400 U400 8s,80373,,, +227,AUS,,LVG,b,Mount Livingstone (VIC),-37.145833,147.541667,,0.025,,16575,77,185,,,,,L400 U400 9s,80374,,, +227.5,AFS,,KS,b,Kroonstad (FS),-27.6875,27.291667,,0.25,,9104,161,150,,,,492,L1036 U1020 10.0s,80387,,, +228,USA,,OVY,b,Booneville (MS),34.604167,-88.625,,0.025,,7359,296,147,,,,0,L1050 U1050 ,Cont. ID,80390,, +228,USA,,BCZ,b,Choctaw Butler (AL),32.104167,-88.125,,0.025,,7536,294,148,,,,,U1020 ,80388,,, +228,J,,MI,b,Omiya (kan-sai),35.9375,139.625,,0.025,,9224,36,160,,,,,U1000 5s,80389,,, +229,XON,,1M,b,Hibernia Platform, Offshore,46.770833,-48.791667,,0.025,,3937,284,112,,,,,L1044 ,DAID,80391, +229,CAN,,PD,b,Port Hawkesbury (NS),45.645833,-61.291667,,0.025,,4820,290,121,,,,673,L1042 U387 10329s,DAID,80394,, +229,CAN,,8K,b,Valleyview (AB),55.020833,-117.291667,,0.035,,7025,328,142,,,,,U387 10.3s,DAID,80392,, +229,USA,,SD,b,Louisville (KY),38.104167,-85.791667,,0.025,,6902,297,142,,,,,,86890,,, +229,ALS,,AKW,b,Klawock (AK),55.5625,-133.041667,,0.025,,7476,337,148,,,,2,L1035 U1032 6.3s,80393,,, +230,RUS,,WZ,b,Kamenka (PZ),55.229167,37.041667,,0.025,,2030,68,93,,,,,U1000 14.8s,IDx2,80425,, +230,CAN,,QB,b,Qubec (QC),46.729167,-71.458333,,0.5,,5389,296,114,,,,0,L410 U405 9.9s,DAID,80415,, +230,CAN,,YMU,b,Umiujaq (QC),56.520833,-76.541667,,0.025,,5069,310,124,,,,,U397 10.2s,80428,,, +230,CAN,,AC,b,Pleasant Lake (Yarmouth) (NS),43.854167,-66.041667,,0.025,,5241,290,125,,,,,U391 10.51s,DAID,80395,, +230,CAN,,VG,b,Vermilion (AB),53.354167,-110.791667,,0.7,,6922,323,128,,,,,U410 10.0s,DAID,80421,, +230,CAN,,YBM,b,Saint-Bruno-de-Guigues (QC),47.4375,-79.458333,,0.025,,5818,302,131,,,,173,L46 U386 10237s,DAID,80426,, +230,USA,,BA,b,Wesie Westfield (MA),42.229167,-72.708333,,0.025,,5777,293,131,,,,,L~1000 ,86891,,, +230,CAN,,ZUC,b,Ignace (ON),49.4375,-91.708333,,0.05,,6349,310,133,,,,,U396 10.4s,DAID,80429,, +230,USA,,VQ,b,Cargl Detroit (MI),42.354167,-82.958333,,0.025,,6398,299,137,,,,0,L1016 U1023 8600s,80422,,, +230,CUB,,UCL,b,Cayo Largo del Sur (ij),21.604167,-81.541667,,0.8,,7993,282,138,,,,806,L802 U806 8024s,80420,,, +230,USA,,AQE,b,Alwood Greenville (NC),35.6875,-77.375,,0.025,,6565,290,139,,,,999,L1036 U1035 8123s,80399,,, +230,USA,,AT,b,Gamie Appleton (WI),44.145833,-88.625,,0.025,,6591,304,139,,,,998,L1019 U1021 8600s,80400,,, +230,USA,,BU,b,Boutn Columbus (OH),39.8125,-83.208333,,0.025,,6609,297,139,,,,996,L1028 U1024 8186s,80404,,, +230,USA,,SH,b,Crakk Shreveport (LA),32.520833,-93.875,,0.4,,7853,298,139,,,,998,L1038 U1034 ,80417,,, +230,USA,,PD,b,Foris Pendleton (OR),45.6875,-118.708333,,0.4,,7946,323,140,,,,,L1044 U1035 6.0s,86892,,, +230,USA,,BES,b,Bennettsville (SC),34.604167,-79.708333,,0.025,,6800,290,141,,,,983,L1045 U1013 5065s,80401,,, +230,USA,,VYS,b,Valley Peru (IL),41.354167,-89.125,,0.025,,6840,302,141,,,,,L1009 U1007 ,TWEB,86893,, +230,USA,,AND,b,Anderson Co Anderson (SC),34.479167,-82.708333,,0.025,,7001,292,143,,,,,U1021 ,80397,,, +230,USA,,BI,b,Jadan Bismarck (ND),46.6875,-100.625,,0.025,,7028,313,143,,,,4,L1030 U1027 6.12s,80402,,, +230,USA,,HPT,b,Hampton (IA),42.729167,-93.208333,,0.025,,6961,305,143,,,,995,L1030 U1018 4.8s,80407,,, +230,USA,,HSB,b,Harrisburg-Raleigh Harrisburg (IL),37.8125,-88.541667,,0.025,,7091,299,144,,,,2,L1015 U1022 5639s,80408,,, +230,USA,,RDK,b,Red Oak (IA),41.020833,-95.291667,,0.025,,7218,305,145,,,,988,L1033 U1005 6.0s,80416,,, +230,USA,,CPP,b,Cole Spring Cullman (AL),34.354167,-86.791667,,0.025,,7267,295,146,,,,,U~1000 ,80405,,, +230,CAN,,YD,b,Smithers (BC),54.729167,-127.125,,0.025,,7385,333,147,,,,,L399 U399 10.12s,DAID,80427,, +230,USA,,NRN,b,Norton (KS),39.854167,-99.875,,0.025,,7569,307,149,,,,1,L1020 U1029 5127s,80413,,, +230,B,,ALC,b,Alcantara (MA),-2.395833,-44.375,,0.025,,7696,236,150,,,,,U1013 ,80396,,, +230,B,,CPG,b,Campina Grande (PB),-7.270833,-35.875,,0.025,,7724,225,150,,,,,L1054 7633s,86275,,, +230,MYA,,KI,b,Kanti,25.987222,95.674444,,0.025,,7710,74,150,,,,,,22100024,,, +230,AFS,,WR,b,Pretoria/Wonderboom (GT),-25.645833,28.208333,,0.1,,8903,160,153,,,,0,L1024 U1024 4.35s,80424,,, +230,USA,,BNZ,b,Abbeville (LA),29.979167,-92.125,,0.025,,7963,295,153,,,,0,L1034 U1042 7.8s,80403,,, +230,USA,,VRT,b,Wilbarger Vernon (TX),34.229167,-99.291667,,0.025,,8023,303,153,,,,1,L1014 U1014 5.64s,80423,,, +230,B,,ARG,b,Araguaia (PA),-8.354167,-49.291667,,0.025,,8544,237,158,,,,,L1022 7467s,86274,,, +230,USA,,SM,b,Metre Sacramento (CA),38.8125,-121.625,,0.025,,8726,321,159,,,,0,L1035 U1032 8.0s,80419,,, +230,B,,TBT,b,Tabatinga (AM),-4.229167,-69.958333,,0.025,,9458,257,161,,,,,L1027 5118s,86276,,, +230,B,,SJC,b,So Jose dos Campos (SP),-23.229167,-45.875,,0.025,,9791,227,162,,,,,,80418,,, +230,B,,GRU,b,Guarapuava (PR),-25.395833,-51.541667,,0.025,,10288,230,164,,,,,,80406,,, +230,INS,,OR,b,Bali (BA-den),-8.729167,115.208333,,0.025,,12052,80,170,,,,,,80414,,, +230,INS,,ZM,b,Biak (PA-bia),-1.1875,136.125,,0.025,,12690,57,172,,,,,U1020 11s,86277,,, +230,AUS,,LST,b,Leinster (WA),-27.854167,120.708333,,0.025,,14045,90,176,,,,,U1022 8s,80410,,, +230,NZL,,AP,b,Taupo (BOP),-38.729167,176.041667,,0.13,,18325,32,183,,,,,L1020 U1020 9s,80398,,, +230,AUS,,KMP,b,Kempsey (NSW),-31.0625,152.791667,,0.025,,16424,63,184,,,,,L400 U400 9s,80409,,, +230,AUS,,MEA,b,Meadow - Essendon (VIC),-37.645833,144.875,,0.025,,16433,80,184,,,,,,80411,,, +230,AUS,,NIE,b,Nile (TAS),-41.645833,147.291667,,0.025,,16869,84,186,,,,,L550 U520 9s,80412,,, +231,SVK,,R,b,Malacky/Kuchyňa (BA),48.395833,17.125,,0.025,,865,114,82,,,,,,ID+10 gap,80431,, +231,USA,,BU,b,Klump Buffalo (NY),43.020833,-78.625,,0.025,,6087,297,134,,,,0,L1017 U1023 8601s,80430,,, +232,CAN,,GP,b,Gasp (QC),48.770833,-64.375,,0.4,,4824,295,109,,,,,U405 10358s,DAID,80435,, +232,USA,,MX,b,Zoote Camp Springs (MD),38.9375,-76.875,,0.025,,6283,292,136,,,,,L1022 ,80438,,, +232,USA,,CO,b,Colfa Indianapolis (IN),39.645833,-86.208333,,0.025,,6804,299,141,,,,0,L1020 U1020 8600s,80433,,, +232,TCA,,GT,b,Cockburn Town (Grand Turk Island) (gtu),21.4375,-71.125,,0.025,,7303,274,146,,,,998,L1035 U1030 6867s,80436,,, +232,USA,,MIG,b,Millington (TN),35.270833,-89.958333,,0.025,,7385,298,147,,,,,U1021 5283s,80437,,, +232,CUB,,UMZ,b,Manzanillo (gr),20.270833,-77.125,,0.025,,7809,278,151,,,,,,86894,,, +232,USA,,GF,b,Birdy Austin (TX),30.270833,-97.708333,,0.025,,8276,300,156,,,,0,L1020 U1020 ,80434,,, +232,CHN,,SB,b,Luogang (AH),31.854167,117.208333,,0.025,,8521,55,158,,,,,,80439,,, +232,SNG,,BED,b,Bedok (se),1.3125,103.958333,,0.025,,10406,83,164,,,,,U954 7s,80432,,, +233,CAN,,UM,b,Churchill Falls (NL),53.604167,-64.208333,,0.025,,4545,301,118,,,,,U410 10391s,DAID,80465,, +233,CAN,,5L,b,Donaldson (QC),61.645833,-73.291667,,0.025,,4637,315,119,,,,,,86278,,, +233,CAN,,QN,b,Nakina (ON),50.1875,-86.625,,0.4,,6023,308,121,,,,999,L408 U407 10.2s,DAID,80463,, +233,CAN,,4F,b,Galaxi 2 Platform (NS),43.895833,-60.208333,,0.025,,4861,287,122,,,,,U408 ,80440,,, +233,ALS,,ALJ,b,Johnstone Point Island (AK),60.479167,-146.625,,1,,7267,346,130,,,,999,L409 U403 8.4s,80444,,, +233,USA,,CNH,b,Claremont (NH),43.354167,-72.375,,0.025,,5677,293,130,,,,998,L1042 U1037 5898s,80449,,, +233,CAN,,ZFD,b,Fond-du-Lac (SK),59.354167,-107.208333,,0.025,,6270,326,136,,,,,U396 10.49s,DAID,80469,, +233,USA,,EY,b,Chesi Chesapeake (VA),36.604167,-76.375,,0.025,,6430,290,137,,,,,U1018 ,80452,,, +233,USA,,CQM,b,Cook (MN),47.8125,-92.708333,,0.025,,6528,309,138,,,,,L1040 ,80450,,, +233,USA,,HLM,b,Holland (MI),42.8125,-86.125,,0.025,,6550,301,138,,,,990,L1028 U1009 6318s,80455,,, +233,USA,,PDR,b,Ottawa (OH),41.020833,-83.958333,,0.025,,6561,298,139,,,,,L1015 U1018 6.2s,86897,,, +233,CAN,,BR,b,Brandon (MB),49.895833,-100.041667,,0.025,,6733,315,140,,,,998,L385 U384 10.2s,DAID,80447,, +233,USA,,OEO,b,Osceola (WI),45.3125,-92.708333,,0.025,,6726,307,140,,,,,U1024 6093s,86896,,, +233,USA,,SUT,b,Yaupon Oak Island (NC),33.9375,-78.041667,,0.025,,6746,289,140,,,,7,L1015 U1030 ,80464,,, +233,CAN,,X6,b,Creston (BC),49.1875,-116.625,,0.1,,7535,324,142,,,,,,86898,,, +233,USA,,BWP,b,Breckenridge-Wahpeton Whapeton (ND),46.229167,-96.625,,0.025,,6861,310,142,,,,18,L1020 U1059 6.67s,80448,,, +233,USA,,AG,b,Bushe Augusta (GA),33.270833,-81.958333,,0.025,,7051,291,143,,,,1,L1037 U1044 6046s,80442,,, +233,USA,,AGM,b,Sparta / Huchn (TN),35.979167,-85.625,,0.025,,7062,295,144,,,,,,80443,,, +233,USA,,GRE,b,Greenville (IL),38.854167,-89.375,,0.025,,7056,300,144,,,,,,86895,,, +233,USA,,HEM,b,Huchn Sparta (TN),35.979167,-85.625,,0.025,,7062,295,144,,,,1,L1016 U1030 5.4s,80454,,, +233,CAN,,7V,b,Jasper - Hinton (AB),53.3125,-117.791667,,0.025,,7200,327,145,,,,,U382 10.4s,DAID,80441,, +233,USA,,GAK,b,Sioux Gateway Sioux City (IA),42.395833,-96.375,,0.025,,7163,307,145,,,,997,L1059 U1028 5886s,80453,,, +233,CAN,,Y,b,Calgary (AB),51.020833,-114.041667,,0.025,,7262,323,146,,,,,L415 U415 ,DAID,86899,, +233,CAN,,ZCA,b,Blackfoot Calgary (AB),51.020833,-114.041667,,0.025,,7262,323,146,,,,993,L415 U400 ,DAID,80468,, +233,USA,,AZN,b,Amazon St. Joseph (MO),39.895833,-94.875,,0.025,,7288,304,146,,,,999,L388 U396 6.8s,80446,,, +233,CAN,,W6,b,Creston North (BC),49.1875,-116.625,,0.025,,7535,324,148,,,,,U1020 9.6s,DAID,80467,, +233,USA,,HR,b,Bakky Harrison (AR),36.145833,-93.125,,0.025,,7501,300,148,,,,1,L1034 U1036 5977s,80456,,, +233,USA,,OKS,b,Oshkosh (NE),41.395833,-102.375,,0.025,,7569,310,149,,,,9,L1000 U1006 6.9s,80460,,, +233,USA,,PK,b,Issue Dallas (DFW) (TX),32.8125,-97.041667,,0.025,,8016,301,153,,,,,L1020 ,80462,,, +233,USA,,CV,b,Abeta Arcut (Eureka) (CA),40.979167,-124.125,,0.025,,8619,324,158,,,,998,L1032 U1028 ,80451,,, +233,USA,,VHN,b,Van Horn (TX),31.0625,-104.791667,,0.025,,8614,305,158,,,,,U1020 4.9s,80466,,, +233,USA,,LG,b,Becca Long Beach (CA),33.770833,-118.041667,,0.025,,9049,316,160,,,,0,L1036 U1035 6.5s,80458,,, +233,AUS,,AYE,b,Ayers Rock (NT),-25.1875,130.958333,,0.05,,14524,79,175,,,,,U400 8s,80445,,, +233,AUS,,NWN,b,Newman (WA),-23.4375,119.791667,,0.025,,13623,87,175,,,,,U400 ,80459,,, +233,AUS,,PIY,b,Pingelly (WA),-32.520833,117.041667,,0.025,,14161,97,177,,,,,L1020 U1028 8s,80461,,, +233,AUS,,KAT,b,Katoomba (NSW),-33.729167,150.291667,,0.025,,16490,69,184,,,,,U400 9s,80457,,, +234,LUX,fr,RTL,,Beidweiler (grv),49.730328,6.320833,,1500,,265,181,28,,0000-2400,1234567,99988,,45,,, +234,CAN,,7H,b,Marystown (NL),47.145833,-55.291667,,0.025,,4342,288,116,,,,,U~400 ,DAID,80471,, +234,USA,,JTM,b,Sutton (WV),38.6875,-80.625,,0.025,,6538,294,138,,,,,,86900,,, +234,CAN,,3Y,b,Donnelly (AB),55.729167,-117.125,,0.025,,6954,328,143,,,,,U400 10.2s,DAID,80470,, +234,USA,,EQQ,b,Coweta County Newnan (GA),33.270833,-84.708333,,0.025,,7226,293,145,,,,4,L1019 U995 6199s,80472,,, +234,USA,,RYD,b,Green Cove Springs (FL),29.979167,-81.625,,0.025,,7298,288,146,,,,,U1015 ,80473,,, +234,USA,,TX,b,Tecco Texarkana (AR),33.520833,-93.958333,,0.025,,7772,299,151,,,,995,L1038 U1029 5.9s,80474,,, +234,NZL,,TY,b,Titahi Bay (WGN),-41.104167,174.791667,,0.1,,18507,40,185,,,,,U1020 4s,80475,,, +235,CAN,,9H,b,La Grande 3 (QC),53.5625,-76.208333,,0.25,,5228,306,115,,,,,U392 9876s,DAID,80476,, +235,CAN,,CN,b,Cochrane (ON),49.0625,-80.958333,,0.1,,5790,304,125,,,,,U410 10325s,DAID,80478,, +235,PAK,,KO,b,Karachi (shd),24.930278,67.246667,,0.025,,5876,96,132,,,,,,31500031,,, +235,USA,,RW,b,Jambe Rocky Mount (Wilson) (NC),35.770833,-77.958333,,0.025,,6596,290,139,,,,,U1024 ,80481,,, +235,B,,URT,b,Uruburetama (CE),-3.604167,-39.458333,,0.025,,7544,231,148,,,,11,L1044 U1068 7114s,80483,,, +235,CHN,,OC,b,Xingtang (HB),38.4375,114.541667,,0.025,,7791,52,151,,,,,,80480,,, +235,B,,URB,b,Uberaba (MG),-19.770833,-47.958333,,0.15,,9563,230,154,,,,,L1033 U1030 7112s,80482,,, +235,VTN,,XVL,b,Vungtau (bvt),10.354167,107.1,,0.13,,9818,75,155,,,,0,L1010 U1011 ,80484,,, +235,B,,NVG,b,Naveagantes (SC),-26.895833,-48.625,,0.1,,10282,227,158,,,,,,80479,,, +235,B,,BGE,b,Bage (RS),-31.395833,-54.125,,0.1,,10988,229,160,,,,,6.7s,80477,,, +236,CAN,,YHK,b,Gjoa Haven (NU),68.645833,-95.875,,0.025,,5179,331,125,,,,,U417 10.3s,DAID,80504,, +236,CAN,,OW,b,Ramsayville (Ottawa) (ON),45.354167,-75.541667,,0.06,,5731,297,126,,,,,U407 10323s,DAID,80499,, +236,USA,,XQA,b,Squaw Greenville (ME),45.520833,-69.708333,,0.025,,5361,294,127,,,,,L~1000 ,80503,,, +236,CAN,,ZRJ,b,Round Lake (ON),52.9375,-91.291667,,0.05,,6064,313,131,,,,,U392 10479s,DAID,80507,, +236,CAN,,4L,b,Chatham (ON),42.3125,-82.041667,,0.05,,6346,298,133,,,,,U1017 9799s,DAID,80485,, +236,CAN,,J,b,Juliett / Toronto (ON),43.604167,-79.708333,,0.025,,6109,298,134,,,,,,86903,,, +236,CAN,,ZLB,b,Britania Mississauga (Toronto) (ON),43.604167,-79.708333,,0.025,,6109,298,134,,,,,U412 10.5s,DAID,86904,, +236,CAN,,YZA,b,Ashcroft (BC),50.6875,-121.291667,,0.5,,7575,327,136,,,,999,L407 U405 10.1s,DAID,80505,, +236,CAN,,ZHT,b,Forks Winnipeg (MB),49.854167,-97.125,,0.05,,6593,313,136,,,,,U403 10434s,DAID,80506,, +236,USA,,BHW,b,West Branch (MI),44.229167,-84.125,,0.025,,6325,301,136,,,,,,80488,,, +236,USA,,DO,b,Dougy Blue Lake (Minocqua) (WI),45.854167,-89.708333,,0.025,,6518,306,138,,,,988,L1040 U1015 6.1s,80492,,, +236,CAN,,H,b,Winnipeg (MB),49.854167,-97.125,,0.025,,6593,313,139,,,,,L400 ,DAID,86902,, +236,USA,,RZT,b,Ross Co. Chillicothe (OH),39.4375,-83.041667,,0.025,,6628,296,139,,,,,U994 6.10s,80500,,, +236,USA,,GY,b,Garie Gary (IN),41.5625,-87.291667,,0.025,,6716,301,140,,,,990,L1028 U1011 8600s,80495,,, +236,USA,,DEH,b,Decorah (IA),43.270833,-91.708333,,0.025,,6834,305,141,,,,,U1024 4.63s,80491,,, +236,USA,,VJ,b,Whine Abingdon (VA),36.729167,-81.958333,,0.025,,6774,294,141,,,,992,L1030 U1011 5154s,80502,,, +236,USA,,HEK,b,Stuckey Hemingway (SC),33.729167,-79.541667,,0.025,,6859,290,142,,,,,U1018 ,80496,,, +236,CAN,,9Z,b,Westlock (AB),54.145833,-113.708333,,0.025,,6968,325,143,,,,,U387 10.2s,DAID,80486,, +236,CAN,,JB,b,Laberge Whitehorse (YT),60.9375,-135.125,,0.025,,6989,340,143,,,,,U398 ,80498,,, +236,USA,,CTK,b,Canton (IL),40.5625,-90.041667,,0.025,,6957,302,143,,,,0,L1019 U996 7.61s,80490,,, +236,USA,,FOR,b,Forsyth (MT),46.270833,-106.541667,,0.025,,7353,316,147,,,,998,L1032 U1034 8.0s,80493,,, +236,USA,,BW,b,Noora Bowling Green (KY),36.895833,-93.541667,,0.025,,7463,301,148,,,,,L1016 U1026 8.74s,80489,,, +236,USA,,GNI,b,Grand Isle (LA),29.1875,-90.041667,,0.025,,7901,293,152,,,,,,TWEB,86901,, +236,CLN,,KK,b,Kankesanturai/Jaffna Airport (jaf),9.795833,80.071944,,0.025,,8036,97,153,,,,,,34700022,,, +236,USA,,HQ,b,Abern Hoquiam (WA),46.979167,-123.791667,,0.025,,8023,327,153,,,,0,L1030 U1030 6.1s,80497,,, +236,THA,,UD,b,Udon (udt),17.395833,102.791667,,0.025,,8914,74,159,,,,,,80501,,, +236,AUS,,BKT,b,Burketown (QLD),-17.770833,139.541667,,0.025,,14438,65,178,,,,,U1020 9s,86279,,, +236,AUS,,GLA,b,Gladstone (QLD),-23.854167,151.208333,,0.025,,15688,57,182,,,,,,80494,,, +236,AUS,,AY,b,Albury (NSW),-36.0625,146.958333,,0.025,,16455,76,184,,,,,U400 8s,80487,,, +237,CAN,,YJI,b,Broughton / Qikiqtarjuaq (NU),67.5625,-64.041667,,1,,4015,322,97,,,,,U403 10051s,DAID,80513,, +237,CAN,,7C,b,Fogo (NL),49.645833,-54.208333,,0.025,,4137,291,114,,,,,U384 ,DAID,80508,, +237,CHN,,KQ,b,Lanzhou (GS),36.520833,103.625,,0.4,,7332,61,134,,,,,,80512,,, +237,USA,,DYL,b,Doylestown (PA),40.354167,-75.125,,0.025,,6066,292,134,,,,,,80509,,, +237,USA,,EZF,b,Shannon Fredericksburg (VA),38.270833,-77.458333,,0.025,,6371,292,137,,,,,U1017 5744s,80511,,, +237,VEN,,EPL,b,El Pinal (tch),7.520833,-71.958333,,0.025,,8555,265,158,,,,,U904 7016s,80510,,, +237,URG,,LS,b,Curbelo (ma),-34.854167,-55.125,,0.025,,11361,228,167,,,,,,86280,,, +238,USA,,MMK,b,Meriden (CT),41.520833,-72.791667,,0.025,,5833,292,131,,,,,,86905,,, +238,CAN,,K5,b,Maple Creek (SK),49.895833,-109.458333,,0.025,,7168,320,145,,,,,U993 10.0s,DAID,80514,, +238,USA,,MPA,b,Meridian Nampa (ID),43.604167,-116.541667,,0.025,,8050,320,153,,,,995,L1022 U1019 8.0s,80516,,, +238,NZL,,KT,b,Kaitaia (NTL),-35.020833,173.208333,,1.1,,17845,34,172,,,,993,L1020 U1020 7s,80515,,, +239,CAN,,FE,b,Forestville (QC),48.729167,-69.125,,0.5,,5118,297,111,,,,0,L411 U410 10153s,DAID,80525,, +239,CAN,,VO,b,Val-d'Or (QC),48.0625,-77.791667,,0.5,,5677,301,117,,,,0,L405 U405 10.3s,DAID,80538,, +239,CAN,,5Q,b,Fontanges (QC),54.5625,-71.208333,,0.025,,4893,305,122,,,,0,L405 U410 8327s,DAID,80517,, +239,CAN,,8F,b,Debert (NS),45.4375,-63.458333,,0.025,,4972,291,123,,,,,,DAID,80518,, +239,CAN,,OJ,b,High Level (AB),58.5625,-117.125,,0.35,,6698,330,129,,,,1,L400 U407 10.2s,DAID,80533,, +239,USA,,CFX,b,Cadiz (OH),40.229167,-81.041667,,0.025,,6445,296,137,,,,1,L1039 U1038 7.80s,80522,,, +239,USA,,TCU,b,Tecumseh (MI),42.020833,-83.875,,0.025,,6479,299,138,,,,2,L1018 U1022 8.1s,80535,,, +239,USA,,TN,b,Tribe Menominee (WI),45.0625,-87.708333,,0.025,,6467,304,138,,,,1,L1042 U1043 5855s,80536,,, +239,USA,,DOH,b,Fort Bragg (NC),35.104167,-79.208333,,0.025,,6729,290,140,,,,15,L1030 U1066 7.71s,80523,,, +239,USA,,EA,b,Maggs Eau Claire (WI),44.9375,-91.375,,0.025,,6682,306,140,,,,998,L1045 U1042 4.88s,80524,,, +239,USA,,HKF,b,Hook Field Middletown (OH),39.479167,-84.458333,,0.025,,6711,297,140,,,,0,L1030 U1018 6076s,80528,,, +239,USA,,BBB,b,Benson (MN),45.3125,-95.625,,0.025,,6883,309,142,,,,42,L1006 U1038 42.0s,AWOS-3,80519,, +239,USA,,FNZ,b,Ferdinand Huntingburg (IN),38.229167,-86.875,,0.025,,6957,298,143,,,,0,L1020 U1029 6315s,80526,,, +239,USA,,GIW,b,Coronaca Greenwood (SC),34.270833,-82.125,,0.025,,6981,292,143,,,,,L1044 U1017 5.50s,80527,,, +239,USA,,MIW,b,Marshalltown (IA),42.104167,-92.958333,,0.025,,6998,305,143,,,,11,L1010 U1032 ,80531,,, +239,USA,,SAR,b,Sparta (IL),38.145833,-89.708333,,0.025,,7133,300,144,,,,,L400 U400 ,86907,,, +239,J,,OH,b,Tokachi (hok),42.895833,143.125,,0.5,,8662,31,146,,,,,U1000 20s,80532,,, +239,USA,,BPW,b,Osceola (AR),35.6875,-90.041667,,0.025,,7356,298,147,,,,1,L1020 U1022 7785s,80521,,, +239,USA,,LHX,b,LA JUNTA (CO),38.0625,-103.625,,0.025,,7926,309,152,,,,,,86906,,, +239,USA,,LNC,b,Lancaster (TX),32.5625,-96.708333,,0.025,,8018,300,153,,,,,U1016 6.0s,80529,,, +239,USA,,UBC,b,Ballinger (TX),31.6875,-99.958333,,0.025,,8284,302,156,,,,6,L1016 U1016 6.4s,80537,,, +239,USA,,PWY,b,Hebronville (TX),27.4375,-98.625,,0.025,,8580,298,158,,,,,U1034 6816s,80534,,, +239,URG,,LS,b,Capitn de Corbeta C.A. Curbelo (ma),-34.854167,-55.125,,0.025,,11361,228,167,,,,,7.1s,80530,,, +239,AUS,,WOL,b,Wollongong (NSW),-34.5625,150.791667,,0.1,,16589,69,179,,,,,L400 U400 7s,80539,,, +239,AUS,,BLT,b,Ballarat (VIC),-37.520833,143.791667,,0.025,,16351,81,184,,,,,L400 U400 8s,80520,,, +239,AUS,,LIS,b,Lismore (QLD),-28.8125,153.291667,,0.025,,16257,59,184,,,,,U400 9s,86281,,, +240,RUS,,L,b,Krasnodar / Pashkovskiy (KD),45.0625,39.208333,,0.025,,2512,95,98,,,,,L385 U385 ,80546,,, +240,USA,,LE,b,Lewie Auburn (Lewiston) (ME),43.979167,-70.375,,0.025,,5508,293,128,,,,996,L1040 U1017 6.13s,80547,,, +240,PAK,,MI,b,Mianwali (pjb),32.566111,71.566111,,0.025,,5564,86,129,,,,,,31500042,,, +240,USA,,CJ,b,Calde Springfield (IL),39.8125,-89.625,,0.025,,6993,301,143,,,,0,L1044 U1044 6019s,80544,,, +240,CAN,,M9,b,Kathlyn Smithers (BC),54.8125,-127.208333,,0.025,,7380,333,147,,,,1,L407 U409 8.4s,DAID,80549,, +240,CHL,,MJL,b,Mejillones (Antofagasta) (AN),-23.104167,-70.458333,,1,,11169,246,151,,,,6,L1036 U1033 10433s,80551,,, +240,CHN,,QU,b,Beijing (BJ),39.979167,116.625,,0.025,,7767,50,151,,,,,,80552,,, +240,CUB,,USC,b,Santa Clara/Villa Santa Clara (vc),22.479167,-79.958333,,0.025,,7813,282,151,,,,999,L1027 U1027 8750s,80554,,, +240,USA,,BVS,b,Skagit / Bay View Burlington / Mt Vernon (WA),48.479167,-122.458333,,0.025,,7828,327,151,,,,999,L1030 U1015 5.8s,80543,,, +240,B,,LJS,b,Lages (SC),-27.770833,-50.291667,,0.4,,10450,228,152,,,,,,80548,,, +240,B,,MAC,b,Maca (RJ),-22.354167,-41.791667,,0.2,,9507,224,152,,,,,,80550,,, +240,USA,,AWC,b,Fort Polk (LA),31.395833,-93.291667,,0.025,,7914,297,152,,,,994,L1040 U1028 ,80541,,, +240,B,,TIR,b,Tiris (PA),2.229167,-55.958333,,0.025,,7964,249,153,,,,998,L1034 U1037 7023s,80553,,, +240,B,,IB,b,Bonsucesso (SP),-23.395833,-46.375,,0.025,,9832,227,162,,,,,,80545,,, +240,INS,,BA,b,Blora (JT-blo),-6.979167,111.458333,,0.025,,11645,82,168,,,,0,L980 U980 ,80542,,, +240,AUS,,ABA,b,Albany (WA),-34.9375,117.791667,,0.05,,14395,99,174,,,,,L400 U404 9s,80540,,, +241,CAN,,YGT,b,Igloolik (NU),69.395833,-81.791667,,0.025,,4648,328,119,,,,,U419 9833s,DAID,80562,, +241,CAN,,4F,b,Galaxi 2 Platform (NS),43.895833,-60.208333,,0.025,,4861,287,122,,,,,U408 ,86282,,, +241,CAN,,HF,b,Hearst / Rene Fontaine (ON),49.6875,-83.708333,,0.1,,5900,306,126,,,,,U407 10263s,DAID,80557,, +241,USA,,EW,b,Chesa Newark (NJ),40.604167,-74.208333,,0.025,,5990,292,133,,,,,,80555,,, +241,USA,,VKX,b,Potomac Friendly (MD),38.729167,-76.958333,,0.025,,6304,292,136,,,,,,86909,,, +241,USA,,PVG,b,Portsmouth Norfolk (VA),36.770833,-76.458333,,0.025,,6422,290,137,,,,,U1010 6073s,80559,,, +241,USA,,VBW,b,Bridgewater (VA),38.354167,-78.958333,,0.025,,6459,293,138,,,,,U1018 5595s,80561,,, +241,CAN,,YLL,b,Lloydminster (AB),53.3125,-110.041667,,0.014,,6894,323,144,,,,993,L400 U388 9.5s,DAID,80563,, +241,VIR,,SX,b,Peste (stc),17.6875,-64.875,,0.025,,7193,267,145,,,,,L1043 6159s,80560,,, +241,USA,,ECY,b,Elk City (OK),35.4375,-99.375,,0.025,,7922,304,152,,,,,L1021 U1015 6.17s,86908,,, +241,USA,,EZY,b,Elk City (OK),35.4375,-99.375,,0.025,,7922,304,152,,,,1,L1020 U1023 6.15s,80556,,, +241,CHN,,OS,b,Tongjingchang (CQ),29.854167,106.875,,0.025,,8092,63,154,,,,3,L1059 U1065 ,80558,,, +242,XON,,3E,b,Platform (See comments),43.6875,-59.875,,0.025,,4852,286,121,,,,,L1025 ,DAID,80564,, +242,USA,,EFK,b,Newport (VT),44.9375,-72.208333,,0.025,,5556,295,129,,,,2,L1015 U1020 ,80569,,, +242,USA,,SY,b,Kirki Syracuse (NY),43.104167,-76.041667,,0.025,,5922,295,132,,,,996,L1038 U1031 8.1s,80584,,, +242,CAN,,YMY,b,Ear Falls (ON),50.729167,-93.375,,0.05,,6336,312,133,,,,22,L379 U410 10474s,DAID,80587,, +242,CAN,,XC,b,Cranbrook (BC),49.6875,-115.791667,,0.4,,7455,324,136,,,,699,L1010 U409 10.5s,DAID,80586,, +242,CAN,,ZT,b,Port Hardy (BC),50.6875,-127.458333,,0.5,,7791,331,138,,,,,U405 10.0s,DAID,80588,, +242,ALS,,FTO,b,Yukon River Fort Yukon (AK),66.5625,-145.208333,,0.025,,6604,347,139,,,,,U~1020 ,80571,,, +242,USA,,EDJ,b,Bellefontaine (OH),40.354167,-83.791667,,0.025,,6603,298,139,,,,999,L1043 U1040 7.6s,80568,,, +242,USA,,GM,b,Teels Milwaukee (WI),42.895833,-88.041667,,0.025,,6655,302,140,,,,2,L1032 U1037 8230s,80573,,, +242,CAN,,DR,b,Broadview (SK),50.395833,-102.625,,0.025,,6815,317,141,,,,,,86910,,, +242,USA,,CL,b,Tryon Charlotte (NC),35.145833,-81.041667,,0.025,,6842,292,141,,,,999,L1038 U1038 7245s,80566,,, +242,USA,,LE,b,Blayd Lexington (KY),37.979167,-84.625,,0.025,,6840,296,141,,,,995,L1039 U1039 6009s,80576,,, +242,USA,,GGE,b,Georgetown (SC),33.3125,-79.291667,,0.025,,6877,289,142,,,,990,L1063 U1035 5068s,80572,,, +242,USA,,HWQ,b,Harlowton (MT),46.4375,-109.791667,,0.08,,7490,318,143,,,,980,L1030 U980 7.0s,80575,,, +242,USA,,MMI,b,Mc Minn Co. Athens (TN),35.395833,-84.541667,,0.025,,7042,294,143,,,,0,L1007 U1013 5210s,80579,,, +242,USA,,EL,b,Valtr El Paso (TX),31.854167,-106.291667,,0.4,,8626,307,146,,,,5,L1030 U1046 8.2s,80570,,, +242,USA,,LKG,b,Lindbergh Americus (GA),32.1875,-84.125,,0.025,,7277,292,146,,,,0,L1017 U1024 6862s,80577,,, +242,USA,,BKZ,b,Brinkley (AR),34.895833,-91.208333,,0.025,,7492,298,148,,,,4,L1025 U1020 ,80565,,, +242,USA,,PJN,b,Plantation Fort Lauderdale (FL),26.145833,-80.208333,,0.025,,7522,284,148,,,,9,L1032 U1050 7726s,80580,,, +242,USA,,CUH,b,Cushing (OK),35.895833,-96.791667,,0.025,,7736,303,150,,,,941,L952 U928 5.93s,80567,,, +242,USA,,MEZ,b,Mena (AR),34.5625,-94.208333,,0.025,,7699,300,150,,,,,U1020 ,86911,,, +242,CHN,,QU,b,Beijing (BJ),39.979167,116.625,,0.025,,7767,50,151,,,,,L1003 ,IDx2,80583,, +242,HWA,,HN,b,Ewabe Honolulu (HI),21.3125,-158.041667,,0.025,,11712,345,169,,,,,U~1030 ,80574,,, +242,AUS,,KOW,b,Kowanyama (QLD),-15.479167,141.708333,,0.025,,14361,61,177,,,,,U400 7s,86284,,, +242,AUS,,PKS,b,Parkes (NSW),-33.145833,148.291667,,0.1,,16315,70,178,,,,,L400 U400 9s,80581,,, +242,NZL,,PP,b,Paraparaumu (WGN),-40.895833,174.958333,,0.25,,18495,39,181,,,,,L1020 U1020 8s,80582,,, +242,AUS,,TBD,b,Tailem Bend (SA),-35.270833,139.458333,,0.025,,15894,82,182,,,,,L400 U400 10s,80585,,, +242,AUS,,BMR,b,Brymaroo (QLD),-27.229167,151.625,,0.025,,16018,60,183,,,,,L1008 9s,86283,,, +242,AUS,,LT,b,Launceston (TAS),-41.5625,147.208333,,0.025,,16858,84,186,,,,,L1020 U1020 9s,86285,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,0440-0515,1234567,,,46,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,0730-0815,1234567,,,46,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,0940-1015,1234567,,,46,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,1540-1615,1234567,,,46,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,1640-1715,1234567,,,46,,, +243,CAN,,YVB,b,Bonaventure (QC),48.104167,-65.541667,,0.09,,4937,295,117,,,,,U405 10267s,DAID,80594,, +243,CAN,,3X,b,Cluff Lake (SK),58.354167,-109.541667,,0.025,,6442,326,137,,,,,U1021 9.27s,DAID,80589,, +243,USA,,OZW,b,Howell (MI),42.645833,-83.958333,,0.025,,6436,300,137,,,,5,L1019 U1026 5846s,80592,,, +243,USA,,TWM,b,Two Harbors (MN),47.0625,-91.708333,,0.025,,6533,308,138,,,,0,L1037 U1038 8.12s,80593,,, +243,USA,,FZK,b,Wausau (WI),44.9375,-89.625,,0.025,,6585,305,139,,,,3,L1027 U1033 8107s,80590,,, +243,USA,,IAK,b,Palatka (FL),29.645833,-81.791667,,0.025,,7336,288,146,,,,998,L1013 U1014 7992s,80591,,, +244,CAN,,DG,b,Chute des Passes (QC),49.895833,-71.291667,,0.5,,5175,300,112,,,,1,L408 U408 10296s,DAID,80599,, +244,CAN,,TH,b,Thompson (MB),55.8125,-97.875,,1,,6162,319,119,,,,,U409 10.3s,DAID,80603,, +244,CAN,,3W,b,Goldboro Offshore Platform (NS),44.1875,-61.625,,0.025,,4934,288,122,,,,,L-400 ,86286,,, +244,USA,,HF,b,Lomis (CT),41.645833,-72.625,,0.025,,5814,292,131,,,,997,L1040 U1034 6464s,80600,,, +244,CAN,,I4,b,Lacombe (AB),52.479167,-113.708333,,0.025,,7117,324,144,,,,40,L300 U380 10.4s,DAID,80601,, +244,USA,,DDA,b,Commerce Jefferson (GA),34.0625,-83.541667,,0.025,,7088,293,144,,,,998,L1027 U1022 ,80598,,, +244,CLM,,BA,b,Barranquilla (atl),10.8125,-74.875,,0.025,,8467,270,158,,,,,L1020 U1020 8462s,86287,,, +244,CLM,,BAQ,b,Barranquilla (atl),10.8125,-74.875,,0.025,,8467,270,158,,,,0,L1022 U1021 8462s,80596,,, +244,CHN,,BZ,b,Yunhe (ZJ),28.0625,119.541667,,0.025,,8994,55,160,,,,,U1035 ,80597,,, +244,CLM,,ED,b,unknown (cun),4.770833,-74.208333,,0.025,,8949,266,160,,,,,L1055 9649s,86288,,, +244,CLM,,SLI,b,San Luis (nar),0.854167,-77.708333,,0.025,,9531,266,161,,,,,L1189 8535s,80602,,, +245,RUS,,NG,b,Nizhny Novgorod / Strigino (NN),56.1875,43.791667,,0.025,,2445,64,97,,,,,U1030 14.5s,IDx2,80630,, +245,RUS,,ST,b,Nizhny Novgorod / Strigino (NN),56.270833,43.791667,,0.025,,2444,64,97,,,,,,80637,,, +245,CAN,,CB,b,Cambridge Bay (NU),69.104167,-105.041667,,1,,5439,334,111,,,,996,L404 U393 10.0s,DAID,80613,, +245,IRN,,GSN,b,Gachsaran (kba),30.3125,50.875,,0.025,,4341,106,116,,,,,U1029 ,ID+7 tone,80619,, +245,CAN,,YZE,b,Gore Bay (ON),45.9375,-82.625,,0.4,,6110,302,122,,,,,L382 U397 9.7s,DAID,80642,, +245,PAK,,ZB,b,Zhob (blc),31.3975,69.454722,,0.025,,5510,89,128,,,,,,31500041,,, +245,USA,,ALP,b,Alpine Elmira (NY),42.229167,-76.791667,,0.025,,6032,295,133,,,,994,L1040 U1030 8025s,80605,,, +245,ALS,,HNS,b,Haines (AK),59.229167,-135.458333,,0.25,,7169,340,135,,,,0,L1032 U1032 ,80622,,, +245,CAN,,7A,b,Conklin, Leismer (AB),55.6875,-111.291667,,0.05,,6738,325,137,,,,,U420 ,86912,, +245,USA,,LUA,b,Caverns Luray (VA),38.6875,-78.458333,,0.025,,6402,293,137,,,,,U1007 5008s,80628,,, +245,USA,,FS,b,Rokky Sioux Falls (SD),43.479167,-96.791667,,0.1,,7096,308,138,,,,5,L1030 U1035 6.0s,80616,,, +245,USA,,NKT,b,Cherry Point (NC),34.854167,-76.791667,,0.025,,6593,289,139,,,,,,80631,,, +245,USA,,PWF,b,Sportys Batavia (OH),39.0625,-84.208333,,0.025,,6729,297,140,,,,,U1015 7531s,80633,,, +245,USA,,UDG,b,Darlington (SC),34.4375,-79.875,,0.025,,6824,290,141,,,,,U1020 5.66s,80639,,, +245,USA,,EZI,b,Kewanee (IL),41.1875,-89.958333,,0.025,,6902,302,142,,,,488,L1025 U~1000 ,80615,,, +245,USA,,HU,b,Yinno Terre Haute (IN),39.395833,-87.375,,0.025,,6894,299,142,,,,998,L1037 U1038 5955s,80623,,, +245,USA,,LFB,b,Lafayette (TN),36.520833,-86.041667,,0.025,,7044,296,143,,,,,U1030 6932s,80627,,, +245,USA,,JYL,b,Sylvania (GA),32.645833,-81.625,,0.025,,7080,290,144,,,,,U1020 7169s,80626,,, +245,USA,,CRR,b,Circle (MT),47.4375,-105.541667,,0.025,,7204,316,145,,,,3,L840 U842 4.5s,Cont. ID,80614,, +245,USA,,GTP,b,Patten Thomasville (GA),30.9375,-83.791667,,0.025,,7359,290,147,,,,0,L1033 U1037 8355s,80620,,, +245,USA,,MG,b,Marra Montgomery (AL),32.3125,-86.541667,,0.025,,7420,293,147,,,,996,L1052 U1034 6.22s,80629,,, +245,USA,,SBQ,b,Scobey Grenada (MS),33.895833,-89.875,,0.025,,7494,297,148,,,,1,L998 U1010 4.40s,80635,,, +245,USA,,UKL,b,Boyd Burlington (KS),38.3125,-95.708333,,0.025,,7468,304,148,,,,5,L1043 U1053 6.12s,80640,,, +245,USA,,SR,b,Ringy Sarasota / Bradenton (FL),27.3125,-82.458333,,0.025,,7573,287,149,,,,,L1042 6032s,80636,,, +245,CAN,,HE,b,Hope (BC),49.395833,-121.458333,,0.025,,7703,327,150,,,,5,L398 U387 10.2s,DAID,80621,, +245,B,,YBA,b,Itumbiara (GO),-18.4375,-49.208333,,0.2,,9501,232,152,,,,,,80641,,, +245,USA,,PTN,b,Patterson (LA),29.729167,-91.375,,0.025,,7938,295,152,,,,998,L1047 U1040 7.9s,80632,,, +245,USA,,BKD,b,Breckenridge (TX),32.729167,-98.875,,0.025,,8130,302,154,,,,998,L1020 U1015 6.2s,80612,,, +245,B,,GAB,b,Gabi / Joinville (SC),-26.354167,-48.708333,,0.2,,10235,227,155,,,,,,80617,,, +245,USA,,ARM,b,Wharton (TX),29.270833,-96.125,,0.025,,8268,298,156,,,,,U1032 6.5s,80607,,, +245,B,,RIB,b,Ribas (MS),-20.479167,-53.791667,,0.1,,9945,234,157,,,,,,80634,,, +245,USA,,ANR,b,Andrews (TX),32.354167,-102.541667,,0.025,,8372,304,157,,,,,U1014 6.3s,86913,,, +245,MEX,,AGG,b,Leguas Agualeguas (Nuevo Leon) (nvl),26.354167,-99.541667,,0.025,,8731,298,159,,,,930,L1070 U930 ,80604,,, +245,USA,,AVQ,b,Marana (AZ),32.395833,-111.208333,,0.025,,8839,310,159,,,,996,L1017 U1022 6736s,TWEB,80610,, +245,B,,ATF,b,Alta Floresta (MT),-9.854167,-56.125,,0.025,,9087,242,160,,,,9,L1016 U1044 7218s,80609,,, +245,USA,,AN,b,Boing San Diego (CA),32.729167,-117.208333,,0.025,,9108,315,160,,,,3,L1027 U1033 6.2s,80606,,, +245,B,,IC,b,Mocambeiro (MG),-19.5625,-44.041667,,0.025,,9342,227,161,,,,,,80624,,, +245,USA,,TLR,b,Mefford Tulare (CA),36.145833,-119.291667,,0.015,,8880,318,161,,,,1,L1025 U1028 8.0s,80638,,, +245,MLA,,JR,b,Johor Baru (jhr),1.6875,103.625,,0.025,,10351,83,164,,,,1,L999 U1002 ,80625,,, +245,INS,,AT,b,Pontianak (KB-ptk),-0.145833,109.375,,0.025,,10901,80,166,,,,,,80608,,, +245,AUS,,PN,b,Proserpine (QLD),-20.479167,148.541667,,0.025,,15224,57,180,,,,,L1020 U1020 8s,86289,,, +245,AUS,,BDG,b,Bendigo (VIC),-36.729167,144.291667,,0.05,,16327,79,181,,,,,L400 U400 10s,80611,,, +245,AUS,,GBA,b,Gibraltar (NSW),-29.604167,152.208333,,0.025,,16263,62,184,,,,,U440 8s,80618,,, +246,CAN,,S,b,Outer Cove/St Johns Int. (NL),47.645833,-52.708333,,0.025,,4146,287,114,,,,,,86914,,, +246,CAN,,ZYT,b,Outer Cove/St Johns Int. (NL),47.645833,-52.708333,,0.025,,4146,287,114,,,,,U~400 ,DAID,80646,, +246,USA,,DFI,b,Defiance (OH),41.354167,-84.458333,,0.025,,6565,299,139,,,,989,L1040 U1018 6.5s,80643,,, +246,CAN,,X,b,Fort St. John (BC),56.1875,-120.625,,0.025,,7035,330,143,,,,,,86915,,, +246,CAN,,ZXJ,b,Taylor Fort St. John (BC),56.1875,-120.625,,0.025,,7035,330,143,,,,,U404 10.33s,DAID,80645,, +246,USA,,FAU,b,Fairview (OK),36.270833,-98.458333,,0.025,,7798,304,151,,,,5,L1010 U1020 ,80644,,, +247,BLR,,GM,b,Gomel (GO),52.5625,30.958333,,0.025,,1661,79,90,,,,6,L1006 U1013 ,80649,,, +247,BLR,,MV,b,Gomel (GO),52.520833,31.041667,,0.025,,1667,79,90,,,,,L1010 8.0s,ID+4 gap,80651,, +247,CAN,,YDP,b,Nain (NL),56.520833,-61.708333,,0.025,,4261,304,116,,,,,U400 10185s,DAID,80653,, +247,CAN,,YLH,b,Lansdowne House (ON),52.1875,-87.958333,,0.25,,5949,310,122,,,,0,L411 U409 10.2s,DAID,80654,, +247,PAK,,SD,b,Skardu (ggb),35.348889,75.531389,,0.025,,5623,81,129,,,,,,31500051,,, +247,USA,,ILT,b,Isleta (NM),34.979167,-106.625,,0.4,,8361,309,145,,,,992,L1047 U1030 8s,80650,,, +247,USA,,COI,b,Merritt Island Cocoa / Titusville (FL),28.354167,-80.708333,,0.025,,7372,286,147,,,,990,L1040 U1020 5.6s,80647,,, +247,USA,,VED,b,Leesville (LA),31.104167,-93.375,,0.025,,7944,297,152,,,,8,L1020 U1038 8101s,80652,,, +247,CHN,,FZ,b,Tunli (SD),37.4375,121.208333,,0.025,,8231,49,155,,,,990,L1046 U1027 ,80648,,, +248,CAN,,UL,b,Montral (QC),45.479167,-73.875,,1,,5621,296,113,,,,996,L408 U400 10440s,DAID,80674,, +248,CAN,,YLA,b,Aupaluk (QC),59.3125,-69.625,,0.025,,4563,311,119,,,,,U363 10678s,DAID,80677,, +248,CAN,,WG,b,Winnipeg (MB),49.895833,-97.375,,0.25,,6603,313,129,,,,0,L400 U401 10.3s,DAID,80675,, +248,USA,,AC,b,Waivs Nantucket (MA),41.3125,-69.958333,,0.025,,5668,290,130,,,,512,L~1000 U1022 8638s,80655,,, +248,USA,,FRT,b,Fairmont Spartanburg (SC),34.895833,-81.958333,,0.4,,6920,292,130,,,,996,L1035 U1030 7.9s,80660,,, +248,USA,,IL,b,Hadin Wilmington (DE),39.5625,-75.625,,0.05,,6157,292,132,,,,1,L1045 U1050 9733s,80664,,, +248,CAN,,KZ,b,Buttonville Stouffville (Toronto) (ON),43.9375,-79.291667,,0.025,,6060,298,134,,,,,U384 10466s,DAID,80665,, +248,JMC,,MBJ,b,Montego Bay (wmd),18.520833,-77.958333,,1,,8014,277,137,,,,1,L1030 U1032 8458s,80666,,, +248,USA,,BF,b,Tabey Cleveland (OH),41.5625,-81.541667,,0.025,,6373,297,137,,,,0,L1030 U1030 5.9s,80656,,, +248,USA,,MX,b,Kedzi Chicago (IL),41.729167,-87.708333,,0.025,,6728,301,140,,,,1,L1029 U1032 ,80668,,, +248,USA,,HZP,b,Zionsville (IN),39.9375,-86.208333,,0.025,,6781,299,141,,,,983,L1016 U968 8.0s,80663,,, +248,CAN,,QH,b,Watson Lake (YT),60.1875,-128.875,,0.025,,6906,337,142,,,,,U410 ,80671,,, +248,USA,,BRY,b,Bardstown (KY),37.854167,-85.458333,,0.025,,6901,297,142,,,,,,86916,,, +248,USA,,GGI,b,Grinnell (IA),41.729167,-92.708333,,0.025,,7015,304,143,,,,989,U1027 4.7s,80661,,, +248,ALS,,GLA,b,Glennallen Gulkana (AK),62.1875,-145.458333,,0.025,,7067,346,144,,,,485,L1034 U~1020 8.6s,80662,,, +248,USA,,CG,b,Dutch Cape Girardeau (MO),37.270833,-89.708333,,0.025,,7205,299,145,,,,996,L1035 U1027 ,80659,,, +248,CAN,,QL,b,Lethbridge (AB),49.604167,-112.875,,0.025,,7342,322,146,,,,,L397 U390 10.2s,DBID,80672,, +248,USA,,BJU,b,Big Blue Beatrice (NE),40.354167,-96.791667,,0.025,,7357,306,147,,,,,U1000 7181s,80657,,, +248,CAN,,Z,b,Sandspit (BC),53.354167,-131.958333,,0.025,,7667,335,150,,,,,,86917,,, +248,CAN,,ZZP,b,Dead Tree Point Sandspit (BC),53.354167,-131.958333,,0.025,,7667,335,150,,,,,U407 10.2s,DAID,80678,, +248,USA,,MO,b,Wisle Mobile (AL),30.770833,-88.291667,,0.025,,7658,293,150,,,,998,L1032 U1035 5.9s,80667,,, +248,USA,,PQF,b,Mesquite (TX),32.8125,-96.541667,,0.025,,7986,300,153,,,,7,L1015 U1030 7.4s,80670,,, +248,AUS,,WR,b,Woomera (SA),-31.145833,136.791667,,0.5,,15398,80,168,,,,,L1022 U1022 9s,80676,,, +248,AUS,,MYB,b,Maryborough (QLD),-25.520833,152.708333,,0.025,,15927,57,183,,,,,L1020 U1020 10s,80669,,, +248,AUS,,CCK,b,Church Creek (NSW),-35.479167,149.208333,,0.025,,16559,72,185,,,,,L400 U400 8s,80658,,, +248,AUS,,SMI,b,Smithton (TAS),-40.8125,145.041667,,0.025,,16662,85,185,,,,,U400 8s,80673,,, +249,USA,,RK,b,Waley Suffolk (VA),36.604167,-76.625,,0.025,,6446,290,137,,,,996,L1024 U1015 4490s,80681,,, +249,USA,,LYD,b,Lakeside Houston (TX),29.8125,-95.708333,,0.025,,8196,298,155,,,,0,L~1051 U~1004 ,80680,,, +249,CHN,,RO,b,Sanjiang (GX),25.770833,109.625,,0.025,,8616,64,158,,,,,L1178 ,80682,,, +249,USA,,JC,b,Jorge San Jose (CA),37.354167,-121.875,,0.025,,8878,321,159,,,,996,L1046 U1038 8.0s,80679,,, +250,CAN,,YMH,b,Marys Harbour (NL),52.3125,-55.791667,,1,,4104,296,98,,,,,U410 10259s,DAID,80701,, +250,RUS,,C,b,Vladikavkaz / Beslan (SO),43.229167,44.541667,,0.025,,2981,94,103,,,,,,80688,,, +250,RUS,,L,b,Vladikavkaz / Beslan (SO),43.1875,44.625,,0.025,,2989,94,103,,,,,,80693,,, +250,CAN,,UAC,b,Eric Poste Montagnais (QC),51.895833,-65.708333,,0.5,,4725,300,107,,,,,U412 10169s,DAID,80698,, +250,KAZ,,K,b,Narimanovka / Kostanay (qos),53.229167,63.541667,,0.025,,3750,65,110,,,,,,80692,,, +250,CAN,,FO,b,Flin Flon (MB),54.6875,-101.708333,,1.6,,6422,319,119,,,,997,L406 U400 10.2s,DAID,80690,, +250,IRN,,BND,b,Bandar-e Abbas (hrg),27.229167,56.375,,0.025,,4956,104,123,,,,,L1020 ,Cont. ID,80687,, +250,CAN,,YTJ,b,Terrace Bay (ON),48.8125,-87.125,,0.1,,6151,307,128,,,,999,L409 U407 10278s,DAID,80702,, +250,USA,,UGS,b,University Athens / Albany (OH),39.270833,-82.125,,0.025,,6585,296,139,,,,1,L1037 U1041 8018s,80699,,, +250,B,,SPO,b,So Paulo (SP),-23.604167,-46.708333,,1,,9869,227,147,,,,,,80697,,, +250,TRD,,BGH,b,British Gas north coast Hibiscus platform,11.145833,-61.625,,0.025,,7538,259,148,,,,,L409 U405 6.14s,86290,,, +250,CAN,,2J,b,Grand Forks (BC),49.020833,-118.458333,,0.025,,7623,325,149,,,,999,L400 U410 8.43s,DAID,80683,, +250,B,,BEL,b,Belm (PA),-1.395833,-48.458333,,0.025,,7837,240,151,,,,12,L643 U1064 7445s,80686,,, +250,BRU,,AKI,b,Anduki (blt),4.633333,114.375,,0.6,,10806,73,152,,,,,L992 ,80684,,, +250,CUB,,UPB,b,Playa Baracoa (ch),23.020833,-82.541667,,0.025,,7939,284,152,,,,982,L938 U907 7412s,80700,,, +250,CHN,,DS,b,Heliushui (SC),30.1875,106.875,,0.025,,8064,63,154,,,,,L2 ,80689,,, +250,MYA,,KP,b,Kyaukpyu,19.425833,93.535,,0.025,,8123,80,154,,,,,,22100025,,, +250,B,,YUB,b,Itaituba (PA),-4.229167,-56.041667,,0.025,,8561,245,158,,,,995,L1040 U1043 15.88s,80703,,, +250,VEN,,GTO,b,Guasdualito (apu),7.229167,-70.791667,,0.025,,8501,264,158,,,,,L990 6985s,80691,,, +250,B,,OAS,b,Canoas (RS),-29.9375,-51.125,,0.1,,10698,227,159,,,,,,80695,,, +250,VTN,,PC,b,Phucat (bdh),13.854167,109.125,,0.05,,9640,72,159,,,,999,L1028 U1025 ,80696,,, +250,TWN,,AP,b,Anpu (TPS),25.1875,121.541667,,0.025,,9370,55,161,,,,0,L1027 U1027 ,80685,,, +250,BOL,,TJA,b,Tarija (trj),-21.5625,-64.708333,,0.025,,10679,242,165,,,,,,86293,,, +250,ARG,,LIB,b,Paso de los Libres (cn),-29.6875,-57.125,,0.025,,10987,232,166,,,,,,86292,,, +250,INS,,NO,b,Maumere (NT-sik),-8.645833,122.208333,,0.025,,12511,74,171,,,,,,80694,,, +250,NCL,,KC,b,Koumac (nor),-20.5625,164.291667,,0.025,,16022,37,183,,,,,20s,86291,,, +251,USA,,MVM,b,Machias (ME),44.6875,-67.458333,,0.025,,5276,292,126,,,,,U~1000 ,86919,,, +251,CAN,,XAJ,b,unknown (NT),73.3125,-123.458333,,0.025,,5559,343,129,,,,,U400 ,80727,,, +251,USA,,SKR,b,Shaker Hill Beford (MA),42.4375,-71.208333,,0.025,,5668,292,130,,,,0,L1021 U1020 ,80724,,, +251,ALS,,OSE,b,Oscarville Bethel (AK),60.770833,-161.875,,1,,7420,354,131,,,,1,L1028 U1027 8.4s,TWEB,80721,, +251,USA,,CXK,b,Clam Lake Bellaire (MI),44.895833,-85.208333,,0.025,,6337,302,136,,,,,U1014 8.3s,80709,,, +251,CAN,,YCD,b,Nanaimo (BC),49.145833,-123.875,,0.5,,7817,328,138,,,,10,L390 U402 10.0s,DAID,80728,, +251,USA,,EUU,b,Jnall Smithfield (NC),35.604167,-78.375,,0.025,,6636,290,139,,,,993,L1037 U1022 5242s,80712,,, +251,USA,,FW,b,Hoagy Fort Wayne (IN),40.9375,-85.125,,0.025,,6637,299,139,,,,2,L1035 U1039 5677s,80713,,, +251,USA,,BR,b,Larew Brainerd (MN),46.4375,-94.041667,,0.025,,6708,309,140,,,,999,L1053 U1028 6018s,80708,,, +251,USA,,HBW,b,Kickapoo Hillsboro (WI),43.645833,-90.291667,,0.025,,6724,304,140,,,,,,80714,,, +251,USA,,PWD,b,Plentywood (MT),48.770833,-104.541667,,0.05,,7042,316,140,,,,5,L1038 U1042 8.1s,80723,,, +251,BAH,,ZQA,b,Nassau (npr),25.020833,-77.458333,,0.1,,7433,282,141,,,,998,L1026 U1021 6442s,80729,,, +251,USA,,AM,b,Pande Amarillo (TX),35.145833,-101.791667,,0.4,,8083,306,142,,,,998,L1037 U1027 6.0s,80705,,, +251,CAN,,4O,b,Swan Hills (AB),54.6875,-115.458333,,0.025,,6987,327,143,,,,,U393 10.3s,DAID,80704,, +251,USA,,JZY,b,Macomb (IL),40.520833,-90.541667,,0.025,,6989,302,143,,,,998,L1040 U1038 7953s,80716,,, +251,USA,,OEA,b,Vincennes (IN),38.6875,-87.541667,,0.025,,6960,299,143,,,,,U1060 5.9s,80720,,, +251,USA,,PRO,b,Perry (IA),41.8125,-94.125,,0.025,,7087,305,144,,,,,U1023 6.0s,80722,,, +251,USA,,DB,b,Creke Dublin (GA),32.479167,-83.041667,,0.025,,7185,291,145,,,,998,L1022 U1019 7897s,80710,,, +251,USA,,LUG,b,Verona Lewisburg (TN),35.520833,-86.791667,,0.025,,7171,296,145,,,,1,L1012 U1016 6286s,80717,,, +251,USA,,UPK,b,Dublin (GA),32.479167,-83.041667,,0.025,,7185,291,145,,,,,,86920,,, +251,USA,,BI,b,Saige Billings (MT),45.854167,-108.708333,,0.025,,7492,317,148,,,,995,L1044 U1038 ,80706,,, +251,USA,,HEE,b,Thompson-Robbins West Helena (Helena) (AR),34.5625,-90.708333,,0.025,,7489,298,148,,,,,U1020 ,86918,,, +251,USA,,TZO,b,Bristow (OK),35.770833,-96.458333,,0.025,,7727,302,150,,,,,U1015 ,80726,,, +251,USA,,MNZ,b,Hamilton (TX),31.604167,-98.125,,0.025,,8184,301,155,,,,,L1040 U1054 5.8s,80719,,, +251,USA,,SV,b,Cozey Silver City (NM),32.645833,-108.041667,,0.025,,8649,308,159,,,,998,L1055 U1049 6.9s,80725,,, +251,THA,,KPS,b,Kamphaeng Saen,14.170278,99.956389,,0.025,,9007,78,160,,,,,,22100046,,, +251,AUS,,MEK,b,Meekatharra (WA),-26.604167,118.541667,,0.025,,13797,91,176,,,,,U1028 8s,80718,,, +251,PNG,,HKN,b,Hoskins (wnb),-5.479167,150.375,,0.025,,13869,45,176,,,,,L1030 8.7s,80715,,, +251,AUS,,BOR,b,Bordertown (SA),-36.395833,140.791667,,0.025,,16067,82,183,,,,,L400 U403 10s,80707,,, +251,AUS,,DU,b,Dubbo (NSW),-32.229167,148.541667,,0.025,,16257,69,184,,,,,L400 U400 8s,80711,,, +252,ALG,fr,Chane 3,,Tipaza (42),36.566111,2.480556,,750,,1756,192,46,,0000-2400,1234567,6,,48,,, +252,IRL,en,RT R 1,,Clarkestown/Summerhill (MH),53.462661,-6.677403,,100,,892,285,46,,0500-0200,1234567,0,,49,,, +252,XON,,3S,b,Thebaud Platform, Offshore Nova Scotia,43.895833,-60.208333,,0.025,,4861,287,122,,,,999,L1030 U1027 8394s,DAID,80730, +252,USA,,CJR,b,Culpeper (VA),38.520833,-77.875,,0.025,,6378,292,137,,,,,U1015 ,86921,,, +252,USA,,SMS,b,Sumter (SC),33.979167,-80.375,,0.025,,6893,290,142,,,,1,L1013 U1014 5471s,80731,,, +252,USA,,PJR,b,Prentiss (MS),31.604167,-89.875,,0.025,,7686,295,150,,,,,,86922,,, +253,CAN,,YTF,b,Alma (QC),48.520833,-71.625,,0.025,,5282,298,126,,,,,U389 10197s,DAID,80739,, +253,USA,,DD,b,Cobbs Columbus (OH),39.729167,-83.041667,,0.049,,6606,297,136,,,,994,L1028 U1015 5997s,80732,,, +253,USA,,JA,b,Hibbing Chisholm (MN),47.4375,-92.958333,,0.025,,6571,309,139,,,,998,L1037 U1035 6067s,80735,,, +253,USA,,GB,b,Garno Marshall (MN),44.520833,-95.875,,0.025,,6961,308,143,,,,997,L1060 U1044 6.0s,80733,,, +253,J,,GT,b,Niigata (chu-nii),37.9375,139.125,,0.5,,9006,36,147,,,,0,L1019 U1020 5s,DAID,80734,, +253,USA,,RHZ,b,Zephyrhills (FL),28.229167,-82.125,,0.025,,7475,287,148,,,,990,L1049 U1030 5817s,80737,,, +253,USA,,OC,b,Nados Nacogdoches (TX),31.479167,-94.708333,,0.025,,7992,298,153,,,,998,L1041 U1038 7.86s,80736,,, +253,CHN,,QJ,b,Shenzhen Airport (GD),22.8125,113.708333,,0.025,,9128,63,160,,,,,,86294,,, +253,USA,,UR,b,Vinee Burbank (CA),34.1875,-118.375,,0.025,,9025,317,160,,,,0,L1040 U1038 6.0s,80738,,, +254,CAN,,5B,b,Summerside (PE),46.395833,-63.875,,0.25,,4938,292,112,,,,0,L409 U409 10130s,DAID,80740,, +254,CAN,,EV,b,Inuvik (NT),68.3125,-133.625,,0.5,,6225,343,122,,,,,U397 ,DBID,80749,, +254,CAN,,SM,b,Fort Smith (AB),59.979167,-111.875,,0.4,,6391,328,125,,,,,U400 10.3s,DAID,80759,, +254,USA,,CAT,b,Chatham (NJ),40.729167,-74.458333,,0.025,,5997,292,133,,,,997,L1039 U1035 7.94s,80744,,, +254,USA,,EUD,b,York (PA),39.9375,-76.875,,0.025,,6208,293,135,,,,969,L1052 U977 4628s,80748,,, +254,USA,,LLW,b,Woodville Elizabeth City (NC),36.270833,-76.291667,,0.025,,6450,289,137,,,,0,L1040 U1042 8120s,80755,,, +254,USA,,MB,b,Manistee (MI),44.270833,-86.125,,0.025,,6438,302,137,,,,998,L1043 U1038 6126s,80756,,, +254,USA,,ENY,b,Kennedy Ashland (WI),46.5625,-90.875,,0.025,,6527,307,138,,,,2,L1016 U1016 6215s,80747,,, +254,USA,,GS,b,Marky Greensboro (NC),36.1875,-80.041667,,0.025,,6696,292,140,,,,0,L1036 U1036 6517s,80751,,, +254,USA,,BOZ,b,Whiteside Sterling / Rock Falls (IL),41.729167,-89.791667,,0.025,,6848,302,141,,,,1,L1019 U1021 8601s,80743,,, +254,USA,,HLB,b,Batesville (IN),39.354167,-85.291667,,0.025,,6772,298,141,,,,0,L1018 U1019 34000s,80753,,, +254,CAN,,E,b,Calgary (AB),51.1875,-114.041667,,0.025,,7247,323,145,,,,,,86924,,, +254,CAN,,ZYC,b,Calgary (AB),51.1875,-114.041667,,0.025,,7247,323,145,,,,2,L400 U407 10.0s,DAID,80763,, +254,USA,,BDD,b,Bellgrade Brookport (IL),37.145833,-88.708333,,0.025,,7155,298,145,,,,8,L1040 U1056 7.2s,80742,,, +254,USA,,FPY,b,Foley (FL),29.979167,-83.625,,0.025,,7427,290,147,,,,,U1030 ,80750,,, +254,USA,,ILJ,b,Willard Springfield (MO),37.3125,-93.458333,,0.025,,7423,301,147,,,,995,L1040 U1030 ,80754,,, +254,USA,,RA,b,Ranch Rapid City (SD),43.979167,-102.958333,,0.025,,7376,312,147,,,,7,L1030 U1037 7.9s,80758,,, +254,CAN,,TB,b,Skeena Terrace (BC),54.479167,-128.625,,0.025,,7456,334,148,,,,,U1012 10.4s,DAID,80761,, +254,USA,,DTS,b,Destin (FL),30.395833,-86.458333,,0.025,,7574,292,149,,,,,U376 7.9s,80746,,, +254,USA,,SPK,b,Reno (Sparks) (NV),39.6875,-119.708333,,0.2,,8559,320,149,,,,,,80760,,, +254,CHN,,HG,b,Wuhan (HU),30.9375,114.375,,0.025,,8442,57,157,,,,2,L1003 U1007 ,80752,,, +254,USA,,AWR,b,Window Rock (AZ),35.645833,-109.041667,,0.025,,8428,311,157,,,,,,86923,,, +254,AUS,,CMW,b,Camooweal (QLD),-19.895833,138.125,,0.025,,14539,68,178,,,,,L1020 8s,80745,,, +254,AUS,,OK,b,Oakey (QLD),-27.4375,151.708333,,0.025,,16042,60,183,,,,,L400 U400 8s,86295,,, +254,AUS,,MNG,b,Mangalore (VIC),-36.895833,145.208333,,0.025,,16401,79,184,,,,990,L400 U400 8s,80757,,, +254,NZL,,AS,b,Ashburton (CAN),-43.895833,171.791667,,0.1,,18599,56,185,,,,,,80741,,, +254,NZL,,WI,b,Waiuku (WKO),-37.270833,174.791667,,0.025,,18132,33,190,,,,,U1020 4s,80762,,, +255,POL,,WRC,b,Wroclaw / Strachowice,51.104167,16.875,,0.025,,731,95,80,,,,0,L995 U995 ,80782,,, +255,SRB,,NS,b,Ni (Srb-nsv),43.303433,21.825003,,0.025,,1508,124,88,,,,5,L1010 U1019 ,ID+8 tone,80771,, +255,MRC,,NUA,b,Casablanca / Mohamed V (gcb),33.4375,-7.625,,0.025,,2362,214,97,,,,,U1020 4.71s,80772,,, +255,IRN,,SBZ,b,Sabzevar (rkh),36.1875,57.708333,,0.025,,4349,93,116,,,,,L1098 ,80778,,, +255,RRW,,LO,b,Kigali,-1.993611,30.281944,,0.025,,6420,151,137,,,,,,9800003,,, +255,USA,,IM,b,Kords Kingsford (WI),45.729167,-88.125,,0.025,,6440,305,137,,,,0,L1041 U1041 5989s,80768,,, +255,USA,,PNU,b,Washington Co Washington (PA),40.145833,-80.125,,0.025,,6395,295,137,,,,999,L1038 U1036 ,80776,,, +255,USA,,PHH,b,Andrews (SC),33.4375,-79.541667,,0.025,,6883,289,142,,,,1,L1020 U1021 6010s,80773,,, +255,USA,,FYE,b,Somerville (TN),35.1875,-89.375,,0.025,,7357,297,147,,,,0,L1017 U1019 4130s,80767,,, +255,USA,,SW,b,Blaki Stillwater (OK),36.229167,-97.125,,0.05,,7726,303,147,,,,997,L1044 U1043 4482s,80781,,, +255,MYA,,HL,b,Hommalinn,24.894444,94.913056,,0.025,,7751,75,150,,,,,,22100047,,, +255,B,,SCR,b,Santa Cruz (RJ),-22.9375,-43.708333,,0.2,,9656,225,153,,,,,,80779,,, +255,B,,PNH,b,So Jos dos Pinhais (PR),-25.604167,-49.125,,0.2,,10184,228,155,,,,,,86296,,, +255,USA,,BS,b,Creed Austin (TX),30.104167,-97.708333,,0.025,,8291,299,156,,,,999,L1019 U1015 4357s,80764,,, +255,CLM,,CT,b,Cartagena (bol),10.395833,-75.554167,,0.025,,8550,270,158,,,,,L904 U904 7198s,80765,,, +255,B,,PMS,b,Palmas (TO),-10.270833,-48.375,,0.025,,8674,235,159,,,,0,L1028 U1028 6964s,80774,,, +255,B,,RON,b,Ji-Paran/Jos Coleto (RO),-10.895833,-61.958333,,0.025,,9541,246,161,,,,,L1070 ,80777,,, +255,CLM,,PPN,b,Popayn (cau),2.5625,-76.541667,,0.025,,9302,266,161,,,,,,86925,,, +255,ARG,,JUJ,b,Jujuy (Jujuy) (jy),-24.395833,-65.125,,0.025,,10959,241,166,,,,,,80769,,, +255,ARG,,ESC,b,Crdoba (cb),-31.4375,-64.291667,,0.025,,11541,236,168,,,,,L1020 ,80766,,, +255,INS,,SO,b,Solo,-7.520833,110.708333,,0.025,,11642,83,168,,,,,L1060 ,80780,,, +255,INS,,MD,b,Manado (SA-man),1.479167,124.875,,0.025,,11764,66,169,,,,0,L1018 U1020 8s,80770,,, +255,INS,,SI,b,Sarmi,-1.85,138.791667,,0.025,,12905,55,173,,,,,,86297,,, +256,ROU,,BSE,b,Baneasa Southeast,44.520833,26.208333,,0.025,,1682,112,90,,,,2,L1010 U1020 29.7s,IDx2 + 20 gap,80783,, +256,CAN,,YCY,b,Clyde River (NU),70.479167,-68.541667,,0.025,,4130,328,114,,,,,U421 10.0s,DAID,80791,, +256,CAN,,YXN,b,Whale Cove (NU),62.229167,-92.625,,0.025,,5471,323,128,,,,,U373 10689s,DAID,80792,, +256,CAN,,EB,b,Namao Edmonton (AB),53.6875,-113.458333,,0.025,,6999,325,143,,,,2,L1024 U976 8.35s,DAID,80785,, +256,USA,,SKN,b,Hurricane Smithville (TN),35.979167,-85.791667,,0.025,,7073,295,144,,,,,,86926,,, +256,USA,,HBZ,b,Heber Springs (AR),35.520833,-92.041667,,0.025,,7489,299,148,,,,,U1020 ,80786,,, +256,CUB,,UNV,b,Nuevas (cm),21.395833,-77.208333,,0.025,,7720,279,150,,,,820,L1184 U823 5945s,80790,,, +256,USA,,TQK,b,Scott City (KS),38.479167,-100.875,,0.025,,7742,307,150,,,,999,L1041 U1038 8.1s,80789,,, +256,USA,,DEF,b,Slidell (LA),30.3125,-89.875,,0.025,,7795,294,151,,,,2,L1036 U1038 8069s,80784,,, +256,USA,,JBL,b,Hodge Jonesboro (LA),32.1875,-92.708333,,0.025,,7811,297,151,,,,998,L1046 U1034 7794s,80787,,, +256,USA,,LSO,b,Kelso (WA),46.145833,-122.875,,0.025,,8069,326,154,,,,1,L1020 U1020 8.7s,very fast id,80788,, +256,NCL,,TH,b,Touho (nor),-20.770833,165.291667,,0.025,,16083,36,183,,,,,20s,86298,,, +257,UKR,,C,b,Gostomel / Antonov,50.645833,30.208333,,0.025,,1652,86,89,,,,,,80796,,, +257,LBY,,BS,b,Benghazi / Benina (bga),32.020833,20.291667,,0.025,,2501,148,98,,,,,,ID+8 gap,80795,, +257,CAN,,YR,b,Goose Bay (NL),53.354167,-60.375,,0.025,,4331,299,116,,,,964,L1046 U987 9800s,DAID,80826,, +257,CAN,,YXR,b,Earlton (ON),47.729167,-79.791667,,0.4,,5817,302,119,,,,0,L400 U401 10125s,DAID,80827,, +257,USA,,FVE,b,Frenchville (ME),47.270833,-68.291667,,0.025,,5159,295,125,,,,,U~1000 ,86927,,, +257,CAN,,T8,b,Saint-Frdric (QC),46.354167,-70.958333,,0.025,,5383,296,127,,,,,L539 7510s,DAID,80822,, +257,PAK,,BN,b,Bannu (kpk),32.976389,70.520833,,0.025,,5462,87,128,,,,,,31500039,,, +257,USA,,FFF,b,Plymouth (MA),41.854167,-70.791667,,0.025,,5682,291,130,,,,,U~1008 6.0s,80802,,, +257,CAN,,Y,b,Churchill (MB),58.645833,-93.958333,,0.025,,5776,319,131,,,,,,86930,,, +257,USA,,GTB,b,Drum Fort Drum (NY),44.0625,-75.708333,,0.025,,5833,296,131,,,,998,L1036 U1041 8.0s,80804,,, +257,USA,,TBY,b,Waterbury Oxford (CT),41.520833,-73.125,,0.025,,5855,292,132,,,,,U~1016 5749s,80823,,, +257,USA,,AV,b,BARTY Wilke Barre (PA),41.270833,-75.791667,,0.025,,6041,294,133,,,,3,L1031 U1039 6145s,80793,,, +257,CAN,,TZ,b,Toronto Island/Gibraltar Point (ON),43.604167,-79.375,,0.025,,6089,298,134,,,,,U395 10437s,DAID,80824,, +257,USA,,MB,b,Olste Saginaw (MI),43.479167,-84.208333,,0.025,,6387,301,137,,,,995,L1052 U1044 5966s,80809,,, +257,USA,,ETC,b,Tarboro (NC),35.9375,-77.541667,,0.025,,6557,290,139,,,,999,L1022 U1023 5.63s,80801,,, +257,USA,,RRL,b,Merrill (WI),45.1875,-89.708333,,0.025,,6570,305,139,,,,2,L1011 U1019 4.60s,80816,,, +257,USA,,PLD,b,Portland (IN),40.4375,-84.958333,,0.025,,6666,298,140,,,,,U1027 ,86929,,, +257,USA,,RNH,b,New Richmond (WI),45.145833,-92.541667,,0.025,,6730,307,140,,,,8,L1023 U1032 5457s,80815,,, +257,USA,,SAZ,b,Staples (MN),46.395833,-94.791667,,0.025,,6751,309,140,,,,0,L1035 U1039 8228s,80818,,, +257,ALS,,CUN,b,Chena Fairbanks (AK),64.854167,-147.458333,,0.025,,6817,348,141,,,,998,L1035 U1032 ,80799,,, +257,USA,,ME,b,Maxtn Maxton (NC),34.729167,-79.458333,,0.025,,6774,290,141,,,,988,L1028 U997 5204s,80810,,, +257,CAN,,XE,b,Saskatoon (SK),52.1875,-106.791667,,0.025,,6853,320,142,,,,,U386 10.5s,DAID,80825,, +257,USA,,CEU,b,Clemson (SC),34.6875,-82.875,,0.025,,6995,293,143,,,,5,L956 U968 6454s,80797,,, +257,USA,,FWC,b,Wayne County Fairfield (IL),38.395833,-88.375,,0.025,,7034,299,143,,,,,L1020 U1019 6755s,80803,,, +257,USA,,PEA,b,Pella (IA),41.395833,-92.958333,,0.025,,7056,304,144,,,,,U1017 5.2s,80812,,, +257,USA,,JHG,b,Hohenwald (TN),35.479167,-87.625,,0.025,,7226,296,145,,,,998,L1027 U1025 6389s,80806,,, +257,CAN,,LW,b,Kelowna (BC),50.0625,-119.375,,0.05,,7561,326,146,,,,,U405 10.2s,DAID,80808,, +257,USA,,JYR,b,York (NE),40.895833,-97.625,,0.025,,7357,307,147,,,,,U1003 8.0s,80807,,, +257,USA,,SQT,b,Satellite Melbourne (FL),28.104167,-80.708333,,0.025,,7393,286,147,,,,999,L1039 U1038 7.9s,80820,,, +257,USA,,HCY,b,Cowley (WY),44.895833,-108.458333,,0.025,,7565,316,149,,,,996,L1025 U1017 8.8s,80805,,, +257,USA,,DT,b,Pinck Denton (TX),33.270833,-97.208333,,0.025,,7986,301,153,,,,0,L1037 U1032 6.03s,80800,,, +257,USA,,BP,b,Kazoo Beaumont / Port Arthur (TX),29.979167,-94.125,,0.025,,8086,297,154,,,,998,L1053 U1050 6.2s,80794,,, +257,AFS,,PZ,b,Pietermaritzburg (KZN),-29.6875,30.458333,,0.1,,9393,159,155,,,,,U1130 4.67s,80813,,, +257,USA,,LKA,b,Chino / Mira Loma (CA),33.979167,-117.541667,,0.025,,9005,316,160,,,,,,86928,,, +257,AUS,,MJM,b,Manjimup (WA),-34.270833,116.125,,0.025,,14233,99,177,,,,,,80811,,, +257,AUS,,RK,b,Rockhampton (QLD),-23.354167,150.458333,,0.025,,15599,58,181,,,,,L400 U400 9s,80814,,, +257,AUS,,SFL,b,Stonefield (SA),-34.395833,139.375,,0.025,,15823,81,182,,,,,L400 U400 9s,80819,,, +257,AUS,,RUG,b,Rugby (NSW),-34.395833,148.958333,,0.025,,16458,71,184,,,,,L400 U400 9s,80817,,, +257,AUS,,SRN,b,Strahan (TAS),-42.145833,145.291667,,0.025,,16764,87,185,,,,,L400 U403 8s,80821,,, +257.5,AFS,,WB,b,Pretoria/Wonderboom (GT),-25.645833,28.291667,,0.1,,8905,160,153,,,,500,L1041 U1041 4.77s,80828,,, +258,CZE,,N,b,Ostrava / Mosnov / Nada (MO),49.729167,18.125,,0.025,,862,103,82,,,,2,L400 U400 10.0s,ID+9 gap,80829,, +258,GRL,,QT,b,Nuuk=Godthb (Kitaa) (sms-nuk),64.354167,-51.541667,,0.025,,3504,315,108,,,,0,L405 U400 10.28s,80832,,, +258,CAN,,ZSJ,b,Sandy Lake (ON),53.0625,-93.375,,0.5,,6158,314,122,,,,0,L405 U407 10.21s,DAID,80833,, +258,USA,,ORJ,b,Corry (PA),41.895833,-79.625,,0.025,,6231,296,135,,,,997,L1055 U1045 7.91s,80830,,, +258,USA,,PPF,b,Parsons (KS),37.354167,-95.541667,,0.025,,7540,303,148,,,,7,L1035 U1049 ,80831,,, +258.5,NOR,,MO,b,Molde / Aro,62.729167,7.125,,0.025,,1182,2,85,,,,-258.5,L374 U382 ,86299,,, +258.5,NOR,,HL,b,Svolvaer / Helle,68.229167,14.625,,0.025,,1845,11,91,,,,-258.5,,80834,,, +259,CAN,,YLP,b,Mingan (QC),50.270833,-64.125,,0.025,,4721,297,120,,,,,,86932,,, +259,USA,,VM,b,Meana (AR),34.520833,-94.041667,,0.025,,7692,300,150,,,,,,80836,,, +259,MYA,,MIA,b,Mandalay (mdy),21.689167,95.983056,,0.025,,8094,77,154,,,,,,22100038,,, +259,USA,,PBY,b,Peabody Kayenta (AZ),36.479167,-110.375,,0.025,,8420,312,157,,,,,L1020 U1030 7.0s,86931,,, +260,XOE,,BGAS2,b,Troll B Gas Platform,60.770833,3.541667,,0.025,,979,351,83,,,,2,L386 U389 ,ID+1 gap,80840,, +260,CAN,,YT,b,Saint John's/Torbay (NL),47.6875,-52.791667,,1,,4150,287,98,,,,,U~400 ,DAID,86937,, +260,IRN,,NS,b,Nowshahr (mzd),36.645833,51.541667,,0.025,,3897,98,112,,,,,,80865,,, +260,IRN,,NSR,b,Nowshahr (mzd),36.645833,51.541667,,0.025,,3897,98,112,,,,,L1052 ,80866,,, +260,RUS,,A,b,Norilsk / Alykel (KN),69.270833,87.291667,,0.025,,4383,33,117,,,,,,80837,,, +260,IRN,,RAF,b,Rafsanjan (krm),30.3125,56.041667,,0.025,,4684,101,120,,,,,L1039 ,Cont. ID,80871,, +260,CAN,,YAT,b,Wapisk Attawapiskat (ON),52.9375,-82.458333,,0.13,,5607,309,122,,,,999,L406 U410 10.2s,DAID,80879,, +260,USA,,EPM,b,Eastport (ME),44.895833,-67.041667,,0.025,,5235,292,125,,,,994,L1038 U1026 ,80849,,, +260,CAN,,UFX,b,Saint-Flix-de-Valois (QC),46.1875,-73.458333,,0.025,,5547,297,128,,,,,U400 10484s,DAID,80878,, +260,USA,,ESG,b,Rollins Rollinsford (NH),43.229167,-73.375,,0.025,,5748,294,130,,,,988,L1042 U1052 5.19s,80850,,, +260,B,,FLZ,b,Fortaleza (CE),-3.770833,-38.541667,,1,,7512,230,132,,,,988,L1036 U1013 7586s,80852,,, +260,USA,,PYA,b,Penn Yan (NY),42.645833,-77.041667,,0.025,,6017,296,133,,,,986,L992 U982 7.84s,80870,,, +260,USA,,BUH,b,Anne Arundel Fort Meade (Odenton) (MD),39.104167,-76.791667,,0.025,,6265,292,136,,,,,U1034 8180s,80842,,, +260,USA,,BL,b,Yanks Milwaukee (WI),43.0625,-87.875,,0.025,,6632,302,139,,,,7,L1014 U1030 ,80841,,, +260,USA,,BYN,b,Bryan (OH),41.479167,-84.458333,,0.025,,6555,299,139,,,,3,L1018 U1024 6677s,80844,,, +260,USA,,SUW,b,Bong Superior (WI),46.6875,-92.125,,0.025,,6585,308,139,,,,2,L1016 U1020 5201s,80876,,, +260,USA,,HAO,b,Hamilton (OH),39.354167,-84.541667,,0.025,,6726,297,140,,,,,U1025 7456s,80855,,, +260,USA,,HY,b,Harvi Thief River Falls (MN),48.020833,-96.125,,0.025,,6690,311,140,,,,,L1020 U1016 ,80857,,, +260,USA,,GHJ,b,Stonia Gastonia (NC),35.1875,-81.125,,0.025,,6844,292,141,,,,5,L1049 U1025 5469s,80854,,, +260,USA,,JYG,b,St James (MN),43.979167,-94.541667,,0.025,,6933,307,142,,,,997,L1025 U1017 29.5s,AWOS-3,80860,, +260,USA,,OLZ,b,Oelwein (IA),42.6875,-91.958333,,0.025,,6895,305,142,,,,,U1016 5.4s,80867,,, +260,USA,,XCB,b,Carlisle (PA),42.6875,-91.958333,,0.025,,6895,305,142,,,,,,86936,,, +260,TCA,,SC,b,Cockburn Harbour (South Caicos Island) (scs),21.520833,-71.541667,,0.05,,7325,275,143,,,,,U988 ,80873,,, +260,USA,,BNL,b,Barnwell (SC),33.270833,-81.375,,0.025,,7014,290,143,,,,,U1027 ,86933,,, +260,USA,,BVQ,b,Beaver Creek Glasgow (KY),37.020833,-86.041667,,0.025,,7004,296,143,,,,990,L1022 U1005 6.8s,80843,,, +260,CAN,,YSQ,b,Atlin (BC),59.645833,-133.708333,,0.025,,7085,339,144,,,,,U407 10.3s,DAID,80880,, +260,CTR,,HOR,b,Horcones (Heredia) (her),9.979167,-84.291667,,1,,9181,277,144,,,,136,L803 U1075 4.74s,80856,,, +260,AFS,,GG,b,George (WC),-34.020833,22.458333,,1,,9704,167,146,,,,,L1034 7.01s,80853,,, +260,CAN,,X,b,Prince George (BC),53.979167,-122.708333,,0.025,,7313,330,146,,,,,,86935,,, +260,CAN,,ZXS,b,Northwood Prince George (BC),53.979167,-122.708333,,0.025,,7313,330,146,,,,,U390 10.4s,DBID,80881,, +260,USA,,AP,b,Casse Denver (CO),39.4375,-104.875,,0.1,,7871,310,146,,,,989,L1048 U1021 6.0s,80838,,, +260,USA,,ST,b,Tario Saint Joseph (MO),39.6875,-94.875,,0.025,,7306,304,146,,,,,L1038 5001s,80875,,, +260,ALS,,ESS,b,Wessels Middleton Island (AK),59.4375,-146.375,,0.025,,7373,345,147,,,,,L1025 8.6s,TWEB,86934,, +260,CHL,,TOY,b,Tongoy (Coquimbo) (CO),-30.270833,-71.458333,,3,,11858,242,148,,,,,L1030 8524s,80877,,, +260,USA,,JH,b,Brenz Jackson (MS),32.395833,-90.291667,,0.025,,7646,296,149,,,,997,L1032 U1029 6133s,80859,,, +260,USA,,MTH,b,Marathon (FL),24.729167,-81.125,,0.025,,7701,284,150,,,,999,L1036 U1040 6.9s,80863,,, +260,USA,,OUN,b,Norman (OK),35.229167,-97.458333,,0.025,,7831,303,151,,,,995,L1037 U1027 7.9s,80868,,, +260,USA,,RL,b,Riboo Richland (WA),46.354167,-119.291667,,0.025,,7907,324,152,,,,998,L1038 U1035 6.0s,80872,,, +260,B,,MAE,b,Marte (SP),-23.520833,-46.625,,0.2,,9857,227,153,,,,,,80862,,, +260,USA,,AVZ,b,Travis Terrell (TX),32.770833,-96.208333,,0.025,,7970,300,153,,,,996,L1052 U1019 6.4s,80839,,, +260,USA,,CL,b,Rowdy College Station (TX),30.479167,-96.375,,0.025,,8178,299,155,,,,0,L1055 U1055 6.1s,80846,,, +260,MYA,,NS,b,Namsang,20.885833,97.732778,,0.025,,8278,76,156,,,,,,22100036,,, +260,USA,,EU,b,Frakk Junction City (Eugene) (OR),44.229167,-123.208333,,0.025,,8267,325,156,,,,999,L1040 U1040 8.0s,80851,,, +260,USA,,CEP,b,Ruidoso (Capitan) (NM),33.479167,-105.375,,0.025,,8429,307,157,,,,,,80845,,, +260,USA,,SNE,b,Santa Elena (TX),26.729167,-98.541667,,0.025,,8637,298,158,,,,,U1014 5.0s,80874,,, +260,B,,VCO,b,Vitria da Conquista (BA),-14.854167,-40.875,,0.025,,8722,226,159,,,,,,86300,,, +260,MLA,,LAB,b,Labuan,5.270833,115.291667,,0.1,,10809,72,160,,,,2,L1015 U1018 ,80861,,, +260,B,,CZS,b,Cruzeiro do Sul (AC),-7.604167,-72.791667,,0.025,,9946,257,163,,,,,L1026 7.08s,80847,,, +260,NFK,,NF,b,Puppys Point (Norfolk Is),-29.020833,167.958333,,2,,17031,38,167,,,,0,L400 U400 9s,80864,,, +260,AUS,,PD,b,Port Hedland (WA),-20.395833,118.625,,0.025,,13290,86,174,,,,,U1028 7s,80869,,, +260,AUS,,IVL,b,Inverell (NSW),-29.895833,151.125,,0.025,,16222,63,184,,,,,L400 U400 8s,80858,,, +261,BUL,bg,BNR Horizont/Parlament R,,Vakarel (sof),42.576389,23.698611,,75,,1672,122,55,,0000-2400,1234567,7,,51,,, +261,CAN,,2H,b,Lebel-sur-Quvillon (QC),49.020833,-77.041667,,0.13,,5569,302,122,,,,2,L402 U410 8365s,DAID,80882,, +261,CAN,,GD,b,Goderich (ON),43.729167,-81.708333,,0.025,,6220,299,135,,,,,U405 10198s,DAID,80888,, +261,USA,,ELQ,b,Emporia (VA),36.604167,-77.458333,,0.025,,6499,291,138,,,,,L1042 U1017 5941s,80887,,, +261,CAN,,5U,b,Fort Vermillion (AB),58.395833,-115.958333,,0.025,,6673,329,140,,,,,U386 10.22s,DAID,80883,, +261,USA,,OA,b,Ellas Jacksonville (NC),34.770833,-77.708333,,0.025,,6659,289,140,,,,0,L1033 U1033 5.57s,80889,,, +261,CAN,,7J,b,Forestburg (AB),52.5625,-112.125,,0.025,,7046,323,143,,,,,U379 10.3s,DAID,80884,, +261,CAN,,D6,b,Fairmont Hot Springs (BC),50.3125,-115.875,,0.025,,7401,324,147,,,,993,L400 U386 ,DAID,80886,, +261,USA,,CHN,b,Wauchula (FL),27.520833,-81.875,,0.025,,7518,287,148,,,,0,L1020 U1020 5564s,80885,,, +261,AUS,,WG,b,Wagga (NSW),-35.145833,147.458333,,0.025,,16418,74,184,,,,,,80890,,, +262,POL,,NR,b,Inowrocław (KP),52.834722,18.343611,,0.025,,811,80,81,,,,,L400 U407 ,ID+2.3 gap,86301,, +262,CAN,,F,b,Iqaluit (Frobisher Bay) (NU),63.729167,-68.458333,,1,,4322,317,100,,,,,U400 ,86938,,, +262,CAN,,S2,b,Coal Valley (AB),53.0625,-116.791667,,0.1,,7185,326,139,,,,,,86940,,, +262,USA,,RG,b,Red Wing (MN),44.604167,-92.625,,0.025,,6778,306,141,,,,,L1030 U1022 ,86939,,, +262,NZL,,OD,b,Woodend,-43.354167,172.708333,,0.025,,18606,52,191,,,,,6.94s,80891,,, +263,CAN,,QY,b,Sydney (NS),46.229167,-59.958333,,0.5,,4698,290,107,,,,0,L405 U410 10.3s,DAID,80915,, +263,CAN,,YGK,b,Kingston (ON),44.3125,-76.625,,1,,5871,297,116,,,,2,L400 U398 10125s,DAID,80922,, +263,CAN,,YBB,b,Pelly Bay Kugaaruk (NU),68.520833,-89.791667,,0.025,,4977,329,123,,,,,U401 ,DAID,80921,, +263,CAN,,ZTS,b,Sandy Falls Timmins (ON),48.479167,-81.375,,0.025,,5855,304,132,,,,,U691 10.4s,DAID,86945,, +263,CAN,,ZQT,b,Superior Thunder Bay (ON),48.395833,-89.208333,,0.05,,6296,308,133,,,,,U408 9.9s,DAID,80924,, +263,CAN,,T,b,Timmins (ON),48.395833,-89.208333,,0.025,,6296,308,136,,,,,U365 ,DAID,86944,, +263,USA,,BFA,b,Boyne Falls (MI),45.1875,-84.958333,,0.025,,6301,303,136,,,,,L1020 U1017 ,86941,,, +263,USA,,LQL,b,Lakeland Willoughby (OH),41.6875,-81.375,,0.025,,6354,297,137,,,,999,L1017 U1020 5829s,80909,,, +263,ALS,,CQR,b,Chandalar Lake (AK),67.520833,-148.458333,,0.025,,6549,349,138,,,,481,L1037 U~1020 ,80897,,, +263,USA,,GR,b,Knobs Grand Rapids (MI),42.895833,-85.375,,0.025,,6500,301,138,,,,986,L1032 U1024 5988s,80903,,, +263,USA,,JN,b,Jurly Smithfield (NC),35.479167,-78.458333,,0.025,,6651,290,139,,,,3,L1022 U1022 4684s,80906,,, +263,USA,,PBH,b,Phillips (WI),45.6875,-90.375,,0.025,,6568,306,139,,,,,U1017 ,80913,,, +263,USA,,UYF,b,London (OH),39.9375,-83.458333,,0.025,,6615,297,139,,,,5,L1024 U1033 6483s,80919,,, +263,CAN,,3Z,b,Russell (MB),50.770833,-101.291667,,0.025,,6721,316,140,,,,,U340 ,DAID,80892,, +263,USA,,GGP,b,Logansport (IN),40.729167,-86.375,,0.025,,6728,300,140,,,,,L1025 U1027 8.4s,86942,,, +263,CAN,,ZL,b,Liard River (BC),59.479167,-126.125,,0.025,,6898,335,142,,,,,U408 10.2s,DAID,80923,, +263,USA,,CDN,b,Camden (SC),34.270833,-80.541667,,0.025,,6880,291,142,,,,995,L1009 U998 ,80896,,, +263,USA,,DYQ,b,Dulaney Greenville (TN),36.145833,-82.875,,0.025,,6878,294,142,,,,2,L1019 U1020 7316s,80900,,, +263,ALS,,OAY,b,Norton Bay (Moses Point) (AK),64.6875,-162.041667,,0.025,,6990,354,143,,,,0,L1034 U1036 8.3s,80912,,, +263,USA,,BGF,b,Boiling Fork Winchester (TN),35.1875,-86.041667,,0.025,,7152,295,144,,,,0,L1029 U1035 4.66s,80894,,, +263,USA,,CVM,b,Civic Memorial Alton (IL),38.895833,-90.041667,,0.025,,7092,300,144,,,,998,L1019 U1023 7.63s,80898,,, +263,USA,,MOQ,b,Mc Intosh Fort Stewart (GA),31.8125,-81.541667,,0.025,,7143,289,144,,,,,L1031 U1029 8010s,80911,,, +263,USA,,DA,b,Tomok Daytona Beach (FL),29.145833,-81.125,,0.025,,7334,287,146,,,,,L397 8600s,80899,,, +263,USA,,JDN,b,Jordan (MT),47.3125,-106.958333,,0.025,,7281,317,146,,,,959,L1065 U977 8.0s,80905,,, +263,USA,,LXT,b,Lesumit Lees Summit (MO),38.979167,-94.375,,0.025,,7336,303,146,,,,997,L1050 U1044 ,80910,,, +263,USA,,HWB,b,Shaw Beatrice (NE),40.270833,-96.791667,,0.025,,7364,306,147,,,,,U1020 5435s,80904,,, +263,USA,,RLL,b,Rolla (Municipal) (ND),36.479167,-94.125,,0.025,,7532,301,148,,,,,,80916,,, +263,USA,,RO,b,Rogers (AR),36.479167,-94.041667,,0.025,,7527,301,148,,,,998,L1015 U1007 5998s,80917,,, +263,USA,,BF,b,Creve Scottsbluff (NE),41.8125,-103.458333,,0.025,,7589,311,149,,,,993,L1042 U1032 6.8s,80893,,, +263,USA,,ECY,b,Eunice (LA),30.5625,-92.458333,,0.025,,7934,296,152,,,,2,L1033 U1034 7.8s,80901,,, +263,USA,,JSO,b,Cherokee Co Jacksonville (TX),31.854167,-95.208333,,0.025,,7990,299,153,,,,,U1037 8.1s,80907,,, +263,USA,,LB,b,Freep Angleton / Lake Jackson (TX),29.1875,-95.458333,,0.025,,8235,297,155,,,,993,L1042 U1047 8419s,80908,,, +263,USA,,ER,b,Shein Kerrville (TX),29.895833,-99.041667,,0.025,,8388,300,157,,,,2,L1019 U1021 8.5s,80902,,, +263,THA,,PL,b,Phitsanulok (psl),16.8125,100.291667,,0.025,,8800,77,159,,,,,,80914,,, +263,USA,,UAD,b,Chualar Salinas (CA),36.479167,-121.458333,,0.025,,8945,320,159,,,,993,L1045 U1035 9.0s,80918,,, +263,AUS,,CB,b,Canberra (ACT),-35.3125,149.208333,,0.025,,16546,72,185,,,,,L400 U400 8s,80895,,, +263,AUS,,WGT,b,Wangaratta (VIC),-36.4375,146.291667,,0.015,,16439,77,186,,,,,,80920,,, +264,SYR,,ABD,b,Damascus International / Abyad (dim),33.354167,36.458333,,0.025,,3181,119,105,,,,,L1020 U1025 ,ID+7 gap,80926,, +264,CAN,,ZPB,b,Sachigo Lake (ON),53.895833,-92.208333,,0.05,,6039,314,130,,,,,U397 10.5s,DAID,80933,, +264,USA,,PT,b,Pottstown / Googl (PA),40.229167,-75.458333,,0.025,,6097,292,134,,,,,,86946,,, +264,CAN,,A1,b,Tal Thielei Narrows (NT),62.604167,-111.541667,,0.025,,6157,330,135,,,,,,80925,,, +264,RRW,,ZE,b,Gabiro,-1.535833,30.399722,,0.025,,6375,151,137,,,,,,9800001,,, +264,USA,,ON,b,Winona (MN),44.020833,-91.625,,0.025,,6769,305,141,,,,,L1050 U1055 8.22s,86303,,, +264,CLM,,PSO,b,Pasto (nar),1.395833,-77.291667,,1,,9455,266,145,,,,,U1071 ,80931,,, +264,USA,,JUY,b,Judd Andelusia (AL),31.3125,-86.375,,0.025,,7492,292,148,,,,0,L1030 U1034 8.38s,80930,,, +264,USA,,SZT,b,Sandpoe Sandpoint (ID),48.270833,-116.541667,,0.025,,7616,323,149,,,,998,L1023 U1016 5.1s,80932,,, +264,USA,,HN,b,Suybe Shawnee (OK),35.4375,-96.958333,,0.025,,7785,302,151,,,,995,L1025 U1030 3.7s,80929,,, +264,CLM,,AQ,b,Barranquilla (atl),10.854167,-74.791667,,0.025,,8458,270,158,,,,0,L1026 U1027 8323s,80927,,, +264,CLM,,UC,b,Ccuta (nsa),7.9375,-72.541667,,0.025,,8558,266,158,,,,,U1008 7229s,86304,,, +264,AUS,,CCY,b,Cloncurry (QLD),-20.645833,140.541667,,0.025,,14758,66,179,,,,,L400 U400 10s,80928,,, +264,NCL,,LU,b,Lifou (ily),-20.770833,167.208333,,0.025,,16157,33,183,,,,,,86302,,, +265,HRV,,KAV,b,Pula / Kavran (pa),44.895833,14.004167,,0.05,,977,142,80,,,,0,L1029 U1020 8.5s,ID+5 gap,80939,, +265,UKR,,ZL,b,Zolochiv,49.8125,24.875,,0.025,,1314,94,86,,,,2,L400 U1016 30.0s,IDx2 + 20 gap,80946,, +265,ALG,,OO,b,Oran / Es Senia (31),35.729167,-0.375,,0.025,,1899,199,92,,,,,12.5s,80941,,, +265,GRL,,JH,b,Qaqortoq=Julianehb (Kitaa) (kuj-qqt),60.729167,-46.041667,,0.025,,3266,308,106,,,,1,L397 U399 10281s,80938,,, +265,IRQ,,ORT,b,Tal Afar (nnw),36.270833,42.375,,0.025,,3315,108,106,,,,,U1021 ,ID+3 gap,86305,, +265,CAN,,YKO,b,Akulivik (QC),60.8125,-78.125,,0.025,,4909,316,122,,,,,U384 10.25s,DAID,80945,, +265,USA,,SXD,b,Springfield (VT),43.270833,-72.625,,0.025,,5698,294,130,,,,997,L1043 U1035 8374s,80943,,, +265,USA,,XPZ,b,Winchester / Frogtown Cold Mountain (VA),39.0625,-77.875,,0.025,,6337,293,136,,,,998,L1025 U1021 7.70s,80944,,, +265,USA,,EDE,b,Edenton (NC),36.020833,-76.541667,,0.025,,6486,289,138,,,,976,L1058 U1001 4332s,80937,,, +265,USA,,BBW,b,Broken Bow (NE),41.4375,-99.625,,0.025,,7420,308,147,,,,,U1020 6.03s,80935,,, +265,IND,,DBR,b,Dibrugarh (AS),27.465278,95.018333,,0.025,,7543,73,148,,,,,,32200041,,, +265,B,,CF,b,Vespa (MG),-19.6875,-43.875,,0.2,,9346,227,152,,,,,,80936,,, +265,B,,KRI,b,Taquari (RS),-29.770833,-51.791667,,0.2,,10716,228,156,,,,,,80940,,, +265,MYA,,YGN,b,Yangon,17.076111,96.238056,,0.025,,8506,79,158,,,,,,22100044,,, +265,TWN,,AY,b,Kangshan (KH),22.770833,120.291667,,0.025,,9522,58,161,,,,,9s,80934,,, +265,BOL,,TCZ,b,El Trompillo (scz),-17.8125,-63.208333,,0.025,,10248,243,164,,,,,,86306,,, +266,CAN,,YZX,b,Greenwood (NS),44.9375,-65.125,,0.4,,5111,291,112,,,,986,L1034 U1016 5.90s,DAID,80970,, +266,CAN,,YFH,b,Fort Hope (ON),51.5625,-87.875,,0.2,,5990,310,124,,,,,U411 10.0s,DAID,80969,, +266,CAN,,J,b,Mirabel (QC),45.6875,-74.208333,,0.02,,5627,297,130,,,,,,86951,,, +266,CAN,,ZMM,b,Mirabel Colomban (Montreal) (QC),45.6875,-74.208333,,0.02,,5627,297,130,,,,,U414 10129s,DAID,80972,, +266,CAN,,ZHM,b,Hamilton (Binbrook) (ON),43.145833,-79.791667,,0.05,,6148,298,131,,,,,U404 10436s,DAID,80971,, +266,USA,,IT,b,Vrnah Ithaca (NY),42.4375,-76.375,,0.025,,5991,295,133,,,,999,L1017 U1016 6351s,80958,,, +266,CAN,,B,b,Hamilton (ON),43.145833,-79.791667,,0.025,,6148,298,134,,,,,,86948,,, +266,CAN,,GH,b,Fort Good Hope (YT),66.270833,-128.625,,0.025,,6316,340,136,,,,,U400 10.3s,DAID,80953,, +266,USA,,DU,b,Calin Marshfield (WI),44.5625,-90.125,,0.025,,6642,305,139,,,,995,L1014 U1000 5868s,80952,,, +266,USA,,CQJ,b,City Lake Asheboro (NC),35.729167,-79.875,,0.025,,6722,291,140,,,,0,L1025 U1025 6179s,80951,,, +266,USA,,IN,b,Pully Indianapolis (IN),39.645833,-86.458333,,0.025,,6819,299,141,,,,997,L1046 U1040 6169s,80957,,, +266,USA,,MS,b,Narco Minneapolis (MN),44.8125,-93.125,,0.025,,6788,307,141,,,,,L1038 U1030 ,86952,,, +266,USA,,OIX,b,Ottawa (IL),41.354167,-88.875,,0.025,,6825,302,141,,,,,,86953,,, +266,USA,,BR,b,Redan Atlanta (GA),33.645833,-84.291667,,0.05,,7169,293,142,,,,5,L1040 U1050 5909s,80948,,, +266,CAN,,XD,b,Edmonton (AB),53.645833,-113.541667,,0.025,,7006,325,143,,,,999,L410 U405 10.2s,DAID,80968,, +266,USA,,ADU,b,Audubon (IA),41.6875,-94.875,,0.025,,7140,306,144,,,,,U1010 6448s,80947,,, +266,ALS,,ICK,b,Nichols Annette Island (AK),55.0625,-131.625,,0.025,,7487,335,148,,,,999,L1037 U1029 8.45s,80956,,, +266,CAN,,VR,b,Vancouver (BC),49.1875,-123.041667,,0.05,,7782,328,148,,,,998,L410 U402 10.3s,DAID,80967,, +266,USA,,BZ,b,Manni Bozeman (MT),45.854167,-111.291667,,0.025,,7610,318,149,,,,2,L1041 U1039 6.02s,80950,,, +266,USA,,TM,b,Tamiami Executive Airport, Miami (FL),25.645833,-80.541667,,0.025,,7586,284,149,,,,997,L1039 U1039 6409s,80966,, +266,USA,,AGO,b,Magnolia (AR),33.229167,-93.208333,,0.025,,7752,298,150,,,,,U1040 ,86947,,, +266,USA,,SAA,b,Saratoga (WY),41.4375,-106.791667,,0.025,,7791,313,151,,,,991,L1026 U1013 3.9s,80964,,, +266,USA,,PYX,b,Perryton (TX),36.395833,-100.708333,,0.025,,7914,306,152,,,,,U1024 6.5s,80963,,, +266,USA,,SL,b,Turno Salem (OR),44.854167,-122.958333,,0.05,,8196,325,152,,,,995,L1045 U1036 6.0s,80965,,, +266,USA,,MWL,b,Mineral Wells (TX),32.770833,-98.041667,,0.025,,8078,301,154,,,,996,L1038 U1030 ,80962,,, +266,USA,,LLN,b,Levelland (TX),33.5625,-102.375,,0.025,,8256,305,156,,,,5,L1020 U1013 4.8s,80959,,, +266,USA,,RYU,b,Rosanky (TX),29.895833,-97.291667,,0.025,,8284,299,156,,,,,,86954,,, +266,USA,,HBV,b,Hebbronville (TX),27.354167,-98.708333,,0.025,,8592,298,158,,,,,L1020 U1011 6755s,80954,,, +266,USA,,CUK,b,Hilan Fresno (CA),36.729167,-119.625,,0.025,,8839,319,159,,,,,L1045 U1022 8.3s,86949,,, +266,USA,,FA,b,Hilan Fresno (CA),36.729167,-119.625,,0.025,,8839,319,159,,,,,L~1046 U1034 ,86950,,, +266,AUS,,HLC,b,Halls Creek (WA),-18.229167,127.625,,0.025,,13712,76,175,,,,,L1030 U1016 9s,80955,,, +266,AUS,,MTG,b,Mount Gambier (SA),-37.770833,140.791667,,0.025,,16165,84,183,,,,,U420 10.13s,80961,,, +267,NOR,,FNO,b,Haugesund / Karmoy / Foyno,59.354167,5.125,,0.025,,809,355,81,,,,2,L400 U400 10.1s,80975,,, +267,MRC,,CNZ,b,Marrakech / Menara (mth),31.604167,-7.958333,,0.025,,2561,213,99,,,,995,L1006 U994 4.6s,80973,,, +267,ALS,,ALJ,b,Johnstone Point Island (AK),60.479167,-146.625,,1,,7267,346,130,,,,,L405 U410 ,86955,,, +267,USA,,CR,b,Myrtle Beach, Calab (SC),33.895833,-78.625,,0.025,,6787,289,141,,,,0,L401 U400 8.61s,80974,, +267,KEN,,MO,b,Mombasa (coa),-4.020833,39.625,,0.025,,6982,142,143,,,,,,80977,,, +267,USA,,HET,b,Henryetta (OK),35.395833,-96.041667,,0.025,,7735,302,150,,,,998,L1032 U1025 4.4s,80976,,, +267.5,ROU,,OPW,b,Bucuresti / Otopeni (BU),44.5625,25.958333,,0.025,,1663,113,90,,,,500,L1024 U1023 ,ID+4 gap,80978,, +268,ALG,,ZAR,b,Zarzaitine=In Amnas (33),28.0625,9.625,,0.025,,2687,173,100,,,,0,L395 U401 8.1s,ID+5 gap,80986,, +268,IRN,,SHR,b,Shahroud (smn),36.4375,55.125,,0.025,,4155,95,115,,,,,,80982,,, +268,CAN,,ZWL,b,Wollaston Lake (SK),58.104167,-103.208333,,1,,6212,323,119,,,,,U404 10348s,DAID,80987,, +268,CAN,,S7,b,Hanover (ON),44.145833,-81.041667,,0.1,,6149,299,128,,,,,U1040 10824s,DAID,80981,, +268,USA,,VKN,b,Mount Mansfield Barre / Montpelier (VT),44.395833,-72.708333,,0.025,,5624,295,129,,,,993,L1047 U1031 8520s,80985,,, +268,PAK,,LA,b,Lahore (pjb),31.506667,74.383333,,0.025,,5837,85,131,,,,,,31500034,,, +268,USA,,RT,b,Grimm New York (NY),40.604167,-73.625,,0.025,,5953,292,133,,,,,L1042 U1027 ,86956,,, +268,CUB,,UBY,b,Bayamo (gr),20.395833,-76.625,,0.05,,7765,278,148,,,,986,L1003 U985 5280s,80984,,, +268,J,,AN,b,Aguni (kyu-oki),26.595833,127.2375,,0.025,,9549,50,161,,,,,,80979,,, +268,AUS,,FRT,b,Forrest (WA),-30.854167,128.125,,0.025,,14788,87,179,,,,,U1028 9s,80980,,, +269,CAN,,3C,b,Venture Drilling Platform (NL),44.020833,-59.458333,,0.13,,4804,287,114,,,,999,L1027 U1025 8313s,DAID,80988,, +269,USA,,TOF,b,Topsfield Beverly (MA),42.604167,-70.958333,,0.025,,5640,292,129,,,,,U1018 6370s,81010,,, +269,CAN,,ZW,b,Teslin (YT),60.1875,-132.708333,,0.2,,7006,339,134,,,,,U408 10.01s,DAID,81014,, +269,USA,,EL,b,Halos Wellsville (NY),42.104167,-77.875,,0.025,,6108,296,134,,,,2,L1031 U1034 6.7s,80996,,, +269,CAN,,UDE,b,Delta (MB),50.145833,-98.291667,,0.05,,6628,314,136,,,,,U401 10.0s,DAID,81011,, +269,USA,,BBO,b,Morgantown / Bobtown (WV),39.729167,-79.958333,,0.025,,6416,295,137,,,,,,86957,,, +269,USA,,CAD,b,Cadillac (MI),44.270833,-85.375,,0.025,,6394,302,137,,,,509,L~1020 U1016 5809s,80993,,, +269,USA,,FN,b,Petli Flint (MI),42.979167,-83.875,,0.025,,6405,300,137,,,,2,L1028 U1038 6025s,80998,,, +269,USA,,TII,b,Tiffin (OH),41.104167,-83.208333,,0.025,,6509,298,138,,,,2,L1008 U1021 4367s,81009,,, +269,USA,,MRH,b,Morehead Beaufort (NC),34.729167,-76.625,,0.025,,6592,288,139,,,,0,L1010 U1018 7393s,81004,,, +269,USA,,HLX,b,Hillsville Galax Hillsville (VA),36.770833,-80.791667,,0.025,,6698,293,140,,,,0,L1019 U1025 5726s,81000,,, +269,USA,,PK,b,Spida Park Rapids (MN),46.854167,-94.958333,,0.025,,6723,310,140,,,,0,L1048 U1049 6116s,81006,,, +269,USA,,ISB,b,Sibley (IA),43.354167,-95.791667,,0.025,,7052,307,143,,,,,U1017 8.0s,81001,,, +269,USA,,BEX,b,Bloomfield (IA),40.729167,-92.458333,,0.025,,7082,303,144,,,,997,L1008 U1010 6011s,80992,,, +269,USA,,CHX,b,Choteau (MT),47.8125,-112.208333,,0.05,,7474,320,145,,,,,,86958,,, +269,USA,,FES,b,Festus (MO),38.1875,-90.375,,0.025,,7169,300,145,,,,991,L1016 U1007 4998s,80997,,, +269,USA,,LRT,b,Lawrenceburg (TN),35.229167,-87.291667,,0.025,,7226,296,145,,,,2,L1028 U1037 3628s,81003,,, +269,USA,,SWT,b,Seward (NE),40.854167,-97.125,,0.025,,7333,306,146,,,,,U1025 8.1s,81008,,, +269,USA,,EFC,b,Belle Fourche (SD),44.729167,-103.875,,0.025,,7357,313,147,,,,,U1040 ,86959,,, +269,USA,,GN,b,Wynds Gainesville (FL),29.6875,-82.208333,,0.025,,7360,288,147,,,,1,L1036 U1038 6207s,80999,,, +269,USA,,LOR,b,Lowe Fort Rucker (Ozark) (AL),31.354167,-85.708333,,0.025,,7446,292,147,,,,0,L1029 U1043 7796s,81002,,, +269,USA,,CII,b,Choteau (MT),47.8125,-112.208333,,0.025,,7474,320,148,,,,0,L1043 U1037 8.0s,80994,,, +269,USA,,OSX,b,Kosciusko (MS),33.104167,-89.541667,,0.025,,7540,296,148,,,,,U1020 ,81005,,, +269,USA,,SGT,b,Stuttgart (AR),34.645833,-91.625,,0.025,,7538,298,148,,,,,U1018 5168s,81007,,, +269,CAN,,YK,b,Brilliant Castlegar (BC),49.3125,-117.625,,0.025,,7563,324,149,,,,,U406 10.2s,DAID,81012,, +269,USA,,AR,b,Acadi New Iberia (LA),29.9375,-91.875,,0.025,,7951,295,152,,,,0,L1036 U1038 5861s,80991,,, +269,USA,,AHX,b,Athens (TX),32.145833,-95.791667,,0.025,,7999,299,153,,,,3,L1018 U1015 5.0s,80990,,, +269,USA,,AAP,b,Andrau Houston (TX),29.729167,-95.541667,,0.025,,8193,298,155,,,,,L1020 ,80989,,, +269,AUS,,CV,b,Charleville (QLD),-26.4375,146.208333,,0.5,,15620,65,169,,,,985,L1020 U1020 10s,slow ident,80995,, +269,AUS,,YNG,b,Young (NSW),-34.229167,148.208333,,0.025,,16396,72,184,,,,,U400 9s,81013,,, +270,CZE,cs,ČRo Rurnl,,Topoln (ZL),49.123833,17.512222,,50,,850,109,49,,0400-2300,1234567,9993,,53,,, +270,RUS,ru,R Slovo,,Oyash (NS),55.493333,83.682222,,150,,4822,54,84,,0000-0200,1234567,998,,46858,,, +270,RUS,ru,R Slovo,,Oyash (NS),55.493333,83.682222,,150,,4822,54,84,,1000-1300,1234567,998,,46858,,, +270,RUS,ru,R Slovo,,Oyash (NS),55.493333,83.682222,,150,,4822,54,84,,2300-2400,1234567,998,,46858,,, +270,AZR,,FLO,b,Santa Cruz das Flores (flo),39.4375,-31.208333,,0.025,,3193,259,105,,,,,L1022 U1030 8.4s,ID+4 gap,86961,, +270,GRL,,NN,b,Nanortalik (kuj-nnt),60.145833,-45.291667,,0.025,,3234,307,105,,,,,U419 ,81020,,, +270,ARS,,WE,b,Wejh (tbk),26.145833,36.541667,,0.025,,3831,127,111,,,,,,81027,,, +270,CAN,,O,b,Saint John's (NL),47.604167,-52.875,,0.025,,4160,287,115,,,,,,86962,,, +270,CAN,,ZNF,b,Wabana Saint Johns (NL),47.604167,-52.875,,0.025,,4160,287,115,,,,,U380 10590s,ID+5 tone,81028,, +270,USA,,PYG,b,Pageland (SC),34.729167,-80.375,,0.025,,6833,291,141,,,,,U1027 6.01s,81023,,, +270,VEN,,CUP,b,Carupano (suc),10.645833,-63.291667,,0.1,,7694,260,144,,,,998,L1021 U1013 7.7s,81017,,, +270,USA,,EZM,b,Eastman (GA),32.145833,-83.125,,0.025,,7217,291,145,,,,,,86960,,, +270,B,,CGR,b,Campo Grande (MS),-20.520833,-54.708333,,1,,10000,235,147,,,,,U1014 ,81016,,, +270,USA,,TPF,b,Knight Tampa (FL),27.895833,-82.458333,,0.025,,7524,287,148,,,,995,L1040 U1030 7.9s,81025,,, +270,AFS,,LA,b,Lanseria (GT),-26.020833,27.875,,0.1,,8936,161,153,,,,0,L1027 U1027 4.35s,81019,,, +270,B,,AFS,b,Afonsos (RJ),-22.854167,-43.375,,0.2,,9632,225,153,,,,,,81015,,, +270,B,,TPV,b,Itapevi (SP),-23.5625,-46.958333,,0.2,,9877,227,154,,,,,,81026,,, +270,MYA,,TD,b,Thandwe,18.457778,94.298333,,0.025,,8257,80,156,,,,,,22100041,,, +270,MEX,,OAX,b,Oaxaca (oax),16.9375,-96.708333,,0.025,,9391,291,161,,,,,L1145 U1020 ,86963,,, +270,MEX,,SRL,b,Santa Rosalia, Baja California Sur (bcs),27.229167,-112.208333,,0.025,,9372,308,161,,,,5,L1007 U1016 4.0s,81024,, +270,SMO,,FA,b,Apia (tum),-13.830556,-172.033333,,1,,15756,358,166,,,,933,L1055 U912 2.9s,81018,,, +270,ARG,,OA,b,Ministro Pistarini (ba),-34.895833,-58.541667,,0.025,,11540,230,168,,,,,4.7s,81021,,, +270,INS,,OP,b,Palu (ST-kot),-0.9375,119.875,,0.025,,11666,72,168,,,,,,81022,,, +270,NCL,,KE,b,Kone (nor),-21.104167,164.875,,0.025,,16101,36,183,,,,,20s,86307,,, +271,GHA,,KL,b,Kumasi (ash),6.747778,-1.583889,,0.025,,5097,191,124,,,,,,3000002,,, +271,PAK,,KC,b,Karachi (shd),24.921667,67.158889,,0.025,,5870,97,132,,,,,,31500030,,, +271,USA,,HXO,b,Huntsboro (NC),36.3125,-78.625,,0.025,,6597,291,139,,,,998,L1016 U1019 6763s,81030,,, +271,USA,,GV,b,Kansas City (MO),39.229167,-94.708333,,0.025,,7334,304,146,,,,,U~1020 ,81029,,, +271,USA,,IBO,b,Idabel (OK),33.895833,-94.875,,0.025,,7795,300,151,,,,,U1035 9.8s,81031,,, +271,USA,,SC,b,Jotly Stockton (CA),37.8125,-121.125,,0.025,,8801,320,159,,,,0,L1044 U1038 6.0s,81032,,, +272,CAN,,ZMR,b,Montral/Mirabel (QC),45.604167,-74.125,,0.2,,5628,297,120,,,,,U376 10542s,DAID,81065,, +272,CAN,,YQA,b,Muskoka (ON),45.020833,-79.291667,,0.4,,5981,299,121,,,,,U425 9.8s,DAID,81064,, +272,USA,,OLD,b,Old Town (ME),45.020833,-68.625,,0.025,,5327,293,126,,,,0,L1035 U1039 7.87s,81045,,, +272,CAN,,YLB,b,Lac La Biche (AB),54.770833,-112.041667,,0.71,,6848,325,127,,,,5,L390 U398 10.0s,DAID,81063,, +272,CAN,,W,b,#NAME?,45.604167,-74.125,,0.025,,5628,297,129,,,,,,86967,,, +272,USA,,PFH,b,Philmont Hudson (NY),42.270833,-73.708333,,0.025,,5837,293,131,,,,4,L1010 U1019 6358s,81047,,, +272,USA,,UCP,b,Castle New Castle (PA),41.020833,-80.375,,0.025,,6343,296,136,,,,,U1007 6.65s,81057,,, +272,USA,,BT,b,Batol Battle Creek (MI),42.354167,-85.208333,,0.025,,6532,300,138,,,,0,L1035 U1036 6004s,81033,,, +272,USA,,RH,b,Arsha Rhinelander (WI),45.645833,-89.625,,0.025,,6530,306,138,,,,979,L1050 U1053 5651s,81051,,, +272,USA,,CB,b,Columbus (OH),40.020833,-83.041667,,0.025,,6583,297,139,,,,,L1025 U1046 ,86964,,, +272,USA,,CHC,b,Grens Columbus (OH),40.020833,-83.041667,,0.025,,6583,297,139,,,,12,L1026 U1046 6528s,81034,,, +272,USA,,GP,b,Galex Grand Rapids (MN),47.145833,-93.458333,,0.025,,6620,309,139,,,,997,L1051 U1040 6035s,81035,,, +272,USA,,LS,b,Mindi La Crosse (WI),44.020833,-91.291667,,0.025,,6751,305,140,,,,993,L1030 U1014 8.60s,81040,,, +272,ALS,,UTO,b,Utopia Creek (AK),65.979167,-153.708333,,0.025,,6776,351,141,,,,998,L1025 U1025 8.4s,81059,,, +272,USA,,IK,b,Kankakee (IL),41.020833,-87.875,,0.025,,6794,301,141,,,,995,L1040 U1028 7670s,81037,,, +272,CAN,,V1,b,Moose Jaw Muni (SK),50.4375,-105.375,,0.025,,6939,318,142,,,,979,L1019 U971 10.0s,DBID,81060,, +272,USA,,TYC,b,Taylor Co. Campbellsville (KY),37.395833,-85.208333,,0.025,,6923,296,142,,,,2,L1029 U1005 6316s,81056,,, +272,USA,,ULM,b,New Ulm (MN),44.3125,-94.458333,,0.025,,6901,307,142,,,,993,L1060 U1022 6459s,81058,,, +272,USA,,MUT,b,Mascatine (IA),41.354167,-91.125,,0.025,,6955,303,143,,,,,,86966,,, +272,USA,,OLY,b,Olney Olney-Noble (IL),38.729167,-88.208333,,0.025,,6997,299,143,,,,996,L1020 U1024 8118s,81046,,, +272,USA,,HNR,b,Harlan (IA),41.5625,-95.375,,0.025,,7178,306,145,,,,4,L1010 U1006 4487s,81036,,, +272,USA,,MLK,b,Malta (MT),48.354167,-107.875,,0.025,,7233,318,145,,,,0,L1029 U1032 4.6s,Cont. ID,81042,, +272,USA,,SIK,b,Sikeston (MO),36.895833,-89.541667,,0.025,,7226,299,145,,,,,,81054,,, +272,CAN,,XS,b,Prince George (BC),53.8125,-122.625,,0.025,,7326,330,146,,,,1,L399 U399 10.0s,DAID,81062,, +272,USA,,PIM,b,Pine Mountain (GA),32.854167,-84.875,,0.025,,7270,293,146,,,,,U1020 4.71s,81049,,, +272,USA,,EA,b,Keamey (NE),40.645833,-99.041667,,0.025,,7456,307,148,,,,,L1023 ,86965,,, +272,USA,,RNV,b,Renova (MS),33.8125,-90.791667,,0.025,,7557,297,149,,,,3,L1012 U1033 5.81s,81052,,, +272,CHN,,WF,b,Wuji (HB),38.229167,114.875,,0.025,,7827,52,151,,,,,8s,81061,,, +272,USA,,MMY,b,Many (LA),31.5625,-93.541667,,0.025,,7914,298,152,,,,997,L1027 U1021 ,81043,,, +272,USA,,OJA,b,Weatherford (OK),35.520833,-98.708333,,0.025,,7877,304,152,,,,3,L1012 U1018 7.0s,81044,,, +272,USA,,LD,b,Lubbi Lubbock (TX),33.645833,-101.708333,,0.025,,8211,305,155,,,,2,L1022 U1017 8.6s,81038,,, +272,USA,,RU,b,Garys San Marcos (TX),29.979167,-97.958333,,0.025,,8316,300,156,,,,0,L1021 U1021 8.7s,81053,,, +272,AUS,,PH,b,Perth (WA),-31.9375,115.958333,,0.025,,14043,97,176,,,,,U1022 ,81048,,, +272,AUS,,TNK,b,Tennant Creek (NT),-19.645833,134.208333,,0.025,,14267,71,177,,,,,U1020 9s,81055,,, +272,LHW,,LHI,b,Lord Howe Island (NSW),-31.520833,159.041667,,0.12,,16829,55,179,,,,,L400 U400 8s,81039,,, +272,AUS,,MIA,b,Mildura (VIC),-34.229167,142.041667,,0.025,,15989,78,183,,,,,U400 9s,81041,,, +273,LBY,,GAL,b,Jalu=Gialo/Warehouse 59E (wah),28.6875,21.458333,,0.025,,2886,149,102,,,,887,L1465 U1239 ,ID+4 gap,81068,, +273,CAN,,ZV,b,Sept-les (QC),50.1875,-66.125,,0.5,,4848,298,108,,,,,U392 10.1s,DAID,81069,, +273,PAK,,PC,b,Parachinar (fta),33.905278,70.072222,,0.025,,5361,86,127,,,,,,31500038,,, +273,DMA,,DOM,b,Marigot (saw),15.550675,-61.295789,,0.1,,7133,262,138,,,,2,L1020 U1018 8.0s,ID+4 gap,81066,, +273,USA,,FK,b,Airbe Fort Campbell (Hopkinsville) (KY),36.729167,-87.375,,0.025,,7109,297,144,,,,997,L1042 U1031 5.9s,81067,,, +274,MRC,,TNA,b,Tan Tan,28.4375,-11.208333,,2,,3009,216,84,,,,,,81081,,, +274,UKR,,JL,b,Yalta (KR),44.479167,34.125,,0.025,,2202,102,95,,,,,,81078,,, +274,CPV,,SAL,b,Sal/Amlcar Cabral (sal),16.70175,-22.948789,,3,,4705,224,99,,,,,10.3s,ID+5 tone,81080,, +274,USA,,EW,b,Nefor (MA),41.604167,-71.041667,,0.025,,5716,291,130,,,,0,L1018 U1018 3.0s,81075,,, +274,CAN,,FR,b,Fort Resolution (NT),61.145833,-113.625,,0.025,,6352,330,136,,,,,U404 ,DAID,81076,, +274,CAN,,YPM,b,Pikangikum (ON),51.8125,-93.958333,,0.025,,6282,313,136,,,,,U368 10.5s,DAID,81082,, +274,USA,,AKQ,b,Wakefield (VA),36.979167,-77.041667,,0.025,,6444,291,137,,,,,U1021 6003s,81070,,, +274,USA,,DLC,b,Dillon (SC),34.4375,-79.375,,0.025,,6792,290,141,,,,987,L1031 U1004 7468s,81074,,, +274,USA,,RG,b,Red Wing (MN),44.604167,-92.625,,0.025,,6778,306,141,,,,0,L1024 U1024 6828s,81079,,, +274,CAN,,Z5,b,Vulcan (AB),50.395833,-113.291667,,0.025,,7288,323,146,,,,,U374 10.4s,DAID,81083,, +274,USA,,CQI,b,Council (Municipal) (ID),44.729167,-115.458333,,0.05,,7898,320,149,,,,,,81072,,, +274,USA,,CAN,b,Carney Bremerton (WA),47.395833,-122.875,,0.025,,7948,326,152,,,,990,L1050 U1030 8.4s,81071,,, +274,CHN,,DA,b,Hebaohu (HU),30.6875,113.958333,,0.025,,8440,58,157,,,,,,81073,,, +274,NZL,,GB,b,Great Barrier Island,-36.229167,175.458333,,0.13,,18050,30,182,,,,,L1000 7s,81077,,, +275,NOR,,VG,b,Haugesund / Karmoy / Vaga,59.270833,5.375,,0.025,,799,356,81,,,,1,L402 U400 10.0s,81128,,, +275,NOR,,KB,b,Kristiansund / Kvernberget / Haltvik,63.104167,7.875,,0.025,,1226,3,85,,,,0,L400 U400 10.0s,81110,,, +275,TUN,,MS,b,Monastir / Msaken (sou),35.729167,10.625,,0.025,,1852,168,91,,,,0,L1025 U1027 4.5s,ID+2.5 gap,81114,, +275,NOR,,PG,b,Banak / Porsang,69.895833,25.041667,,0.025,,2197,19,95,,,,,,81117,,, +275,MRC,,CAE,b,Ben Slimane,33.604167,-7.125,,0.025,,2326,213,96,,,,1,L1019 U1021 9.4s,ID+6 gap,81090,, +275,IRN,,RUS,b,Tehran / Mehrabad / Rudeshur (thr),35.4375,50.875,,0.025,,3941,100,112,,,,928,L1107 U962 ,ID+7 gap,81123,, +275,UAE,,ZKU,b,Zirku Island (abd),24.883333,53.072222,,0.025,,4937,109,122,,,,,,81129,,, +275,CAN,,R1,b,Thetford-Mines (QC),46.0625,-71.291667,,0.025,,5423,296,127,,,,,U383 10307s,DAID,81120,, +275,USA,,BBN,b,Babylon (NY),40.6875,-73.375,,0.05,,5931,292,129,,,,0,L1043 U1041 9979s,81087,,, +275,USA,,CJY,b,Clay Utica (NY),43.0625,-75.291667,,0.025,,5879,295,132,,,,995,L1035 U1024 8.2s,81091,,, +275,CAN,,AV,b,St Andrews (Winnipeg) (MB),50.0625,-97.041667,,0.08,,6573,313,134,,,,998,L385 U382 10.64s,DAID,81085,, +275,USA,,ING,b,Ambler (PA),40.145833,-75.291667,,0.025,,6092,292,134,,,,,L1056 ,81108,,, +275,USA,,PS,b,Ports Lanse (PA),40.979167,-78.125,,0.025,,6208,295,135,,,,2,L1018 U1020 8600s,81119,,, +275,USA,,CM,b,Galey Hancock (MI),47.104167,-88.375,,0.025,,6348,306,136,,,,,U1018 5.97s,81093,,, +275,USA,,ISN,b,Williston (ND),48.145833,-103.625,,0.1,,7052,315,137,,,,,U1020 ,81109,,, +275,USA,,CW,b,Danci Mosinee (WI),44.770833,-89.791667,,0.025,,6607,305,139,,,,997,L1052 U1046 4.88s,81094,,, +275,USA,,EZT,b,Elizabethton (TN),36.3125,-82.291667,,0.025,,6828,293,141,,,,992,L1026 U1010 7372s,81099,,, +275,USA,,RF,b,Gilmy Rockford (IL),42.104167,-89.125,,0.025,,6780,302,141,,,,0,L1020 U1019 6221s,81121,,, +275,USA,,RU,b,Rovdy Salisbury (NC),35.729167,-80.458333,,0.025,,6759,292,141,,,,2,L1173 U1178 4792s,81122,,, +275,USA,,DE,b,Elwin Decatur (IL),39.770833,-88.958333,,0.025,,6957,300,143,,,,995,L1020 U1024 8.74s,81097,,, +275,USA,,SF,b,Yuson Williston (ND),48.104167,-103.541667,,0.025,,7052,315,143,,,,998,L1041 U1035 5.95s,81124,,, +275,USA,,FPR,b,Fort Pierce (FL),27.479167,-80.375,,0.049,,7422,285,144,,,,996,L1037 U1039 8112s,81101,,, +275,USA,,GEY,b,Greybull (WY),44.520833,-108.041667,,0.075,,7578,316,144,,,,998,L1060 U1055 7.5s,81102,,, +275,USA,,IKV,b,Ankeny (IA),41.6875,-93.541667,,0.025,,7065,305,144,,,,998,L1041 U1037 6957s,81107,,, +275,USA,,UOS,b,Sewanee (TN),35.1875,-85.875,,0.025,,7142,295,144,,,,,,81127,,, +275,USA,,BQ,b,Jeffi Brunswick (GA),31.229167,-81.541667,,0.025,,7190,289,145,,,,0,L1020 U1020 8601s,81089,,, +275,ALS,,CZF,b,Cape Romanzof (AK),61.770833,-166.041667,,0.025,,7335,356,146,,,,,L1020 U1030 8.5s,81096,,, +275,USA,,DY,b,Lexey Kansas City (MO),39.395833,-94.708333,,0.025,,7321,304,146,,,,0,L395 U398 8.0s,81098,,, +275,USA,,OLV,b,Olive Branch (MS),34.979167,-89.791667,,0.025,,7399,297,147,,,,,L1015 U1029 ,86968,,, +275,USA,,BKK,b,Tri County Bonifay (FL),30.854167,-85.625,,0.025,,7483,292,148,,,,998,L1029 U1027 8401s,81088,,, +275,USA,,HIN,b,Whitney Chadron (NE),42.8125,-103.125,,0.025,,7485,311,148,,,,0,L1015 U1022 6.2s,81105,,, +275,B,,MSS,b,Mossor (RN),-5.1875,-37.375,,0.025,,7591,228,149,,,,5,L1028 U1041 7.3s,81115,,, +275,USA,,PLS,b,Polson (MT),47.6875,-114.208333,,0.025,,7572,321,149,,,,975,L1070 U1020 6.6s,81118,,, +275,AFS,,CL,b,Carolina (MP),-26.104167,30.125,,0.25,,8999,159,150,,,,0,L1003 U1003 3.89s,81092,,, +275,KRE,,KP,b,Anju,39.604167,125.708333,,0.1,,8256,44,150,,,,,,81111,,, +275,USA,,ADF,b,Arkadelphia (AR),34.0625,-93.125,,0.025,,7677,299,150,,,,0,L1033 U1034 8.4s,81084,,, +275,MYA,,MK,b,Myitkyina,25.387222,97.356111,,0.025,,7870,73,152,,,,,,22100034,,, +275,USA,,GUY,b,Guymon (OK),36.6875,-101.541667,,0.025,,7934,306,152,,,,981,L1055 U1016 7.0s,81104,,, +275,USA,,LV,b,Conis Dallas (TX),32.770833,-96.791667,,0.025,,8005,301,153,,,,998,L1041 U1037 ,81112,,, +275,USA,,HPY,b,Humphrey Baytown (TX),29.770833,-94.958333,,0.025,,8154,297,155,,,,,U1030 ,81106,,, +275,USA,,SWW,b,Sweetwater (TX),32.479167,-100.458333,,0.025,,8243,303,155,,,,2,L1011 U1009 5.9s,81126,,, +275,B,,GGT,b,Guaratinguet (SP),-22.770833,-45.208333,,0.1,,9713,226,156,,,,,,81103,,, +275,B,,SVD,b,Salvador (BA),-12.9375,-38.375,,0.025,,8410,225,157,,,,,L1049 7.1s,81125,,, +275,USA,,PEZ,b,Pleasanton (TX),28.9375,-98.541667,,0.025,,8443,299,157,,,,988,L1038 U1056 8.0s,81116,,, +275,B,,FGR,b,Figueiras (RS),-29.979167,-50.958333,,0.1,,10694,227,159,,,,,,81100,,, +275,PRU,,MAR,b,Cajamarca (caj),-7.145833,-78.458333,,0.05,,10286,262,161,,,,,,81113,,, +275,B,,URG,b,Uruguaiana (RS),-29.770833,-57.041667,,0.025,,10990,232,166,,,,,,86309,,, +275,AUS,,CWS,b,Cowes (VIC),-38.520833,145.208333,,0.1,,16517,81,178,,,,,L400 U400 7s,81095,,, +276,RUS,,SC,b,Sleptsovskaya / Ingushetia (IN),43.3125,44.958333,,0.025,,3004,94,103,,,,0,L885 U885 ,ID+4 gap,81136,, +276,CAN,,YHR,b,Chevery (QC),50.479167,-59.625,,0.5,,4433,295,104,,,,998,L405 U401 10413s,DAID,81140,, +276,CAN,,YEL,b,Elliot Lake (ON),46.354167,-82.625,,0.25,,6080,302,124,,,,0,L411 U405 10.5s,DAID,81139,, +276,USA,,LAH,b,Hanover Lebanon (NH),43.6875,-72.208333,,0.025,,5643,294,129,,,,,U1018 4609s,81134,,, +276,CAN,,H,b,Thompson (MB),55.8125,-97.791667,,0.025,,6158,319,135,,,,,U400 ,DAID,86969,, +276,CAN,,YPC,b,Paulatuk (NT),66.354167,-124.041667,,0.025,,6197,338,135,,,,,U405 ,81141,,, +276,CAN,,ZTH,b,Headframe Thompson (MB),55.8125,-97.791667,,0.025,,6158,319,135,,,,,U374 10201s,DAID,81142,, +276,USA,,IS,b,Stals Kinston (NC),35.229167,-77.708333,,0.025,,6623,290,139,,,,1,L1018 U1019 8600s,81132,,, +276,CAN,,3H,b,Consort (AB),52.020833,-110.708333,,0.025,,7035,322,143,,,,,U382 10.3s,DAID,81130,, +276,USA,,TWT,b,Tradewater Sturgis (KY),37.479167,-87.958333,,0.025,,7083,298,144,,,,998,L1022 U1019 4.81s,81138,,, +276,USA,,MJD,b,Picayune (MS),30.479167,-89.625,,0.025,,7766,294,151,,,,30,L970 U1030 ,81135,,, +276,CHN,,KM,b,Danushan (LN),41.645833,122.125,,0.025,,7897,45,152,,,,,,81133,,, +276,AUS,,TVL,b,Townsville (QLD),-19.229167,146.791667,,3,,15007,58,159,,,,997,L1034 U1020 10s,81137,,, +276,MLA,,BP,b,Batu Pahat,1.854167,102.958333,,0.08,,10291,84,159,,,,997,L993 U987 ,81131,,, +277,G,,CHT,b,Chiltern (EN-BKS),51.604167,-0.541667,,0.025,,481,266,78,,,,2,L405 U407 5.6s,81147,,, +277,RUS,,PO,b,Pulkovo (SP),59.8125,30.375,,0.025,,1706,51,90,,,,690,L1011 U1012 ,81149,,, +277,CAN,,YLC,b,Kimmirut (NU),62.854167,-69.875,,1,,4421,316,101,,,,,U407 10225s,DAID,81152,, +277,IRQ,,BD,b,Baghdad (bgh),33.3125,44.208333,,0.025,,3666,110,110,,,,,,81146,,, +277,CAN,,1B,b,Sable Island (NS),43.9375,-60.041667,,0.025,,4847,287,121,,,,,,DAID,81144,, +277,USA,,VIT,b,Vinton (VA),37.1875,-79.875,,0.025,,6607,293,139,,,,0,L1020 U1020 8600s,81151,,, +277,CAN,,M2,b,Humboldt (SK),52.1875,-105.125,,0.025,,6780,319,141,,,,,U410 ,86970,,, +277,CAN,,V2,b,Humboldt (SK),52.1875,-105.125,,0.025,,6780,319,141,,,,988,L1043 U1042 8.29s,DAID,81150,, +277,USA,,OT,b,Wondd Worthington (MN),43.604167,-95.458333,,0.025,,7014,307,143,,,,998,L1048 U1040 7.9s,81148,,, +277,ALS,,ACE,b,Kachemak Homer (AK),59.645833,-151.458333,,0.025,,7431,348,147,,,,0,L1035 U1035 6.0s,TWEB,81145,, +277,THA,,CT,b,Chiang Rai (cri),19.959444,99.883056,,0.025,,8500,75,158,,,,,,32900029,,, +277.5,BOT,,JWN,b,Jwaneng (so),-24.604167,24.708333,,0.1,,8714,163,153,,,,500,L1019 U1019 6.74s,81153,,, +278,CAN,,NM,b,Matagami (QC),49.729167,-77.708333,,0.4,,5559,303,117,,,,0,L402 U404 10.4s,ID+6 tone,81173,, +278,USA,,PQ,b,Excal Presque Isle (ME),46.604167,-68.041667,,0.025,,5186,294,125,,,,,L1050 ,81176,,, +278,USA,,BST,b,Belfast (ME),44.395833,-69.041667,,0.025,,5395,293,127,,,,0,L1053 U1053 7702s,81159,,, +278,USA,,MS,b,Misse Massena (NY),44.854167,-74.875,,0.025,,5726,296,130,,,,,L1020 8.6s,81171,,, +278,USA,,SB,b,Colbe Salisbury (MD),38.270833,-75.375,,0.025,,6238,291,135,,,,,,81177,,, +278,CUB,,UBA,b,Baracoa (gu),20.354167,-74.541667,,0.35,,7627,276,138,,,,21,L1031 U1094 8460s,81179,,, +278,USA,,ADG,b,Adrian (MI),41.854167,-84.041667,,0.025,,6501,299,138,,,,8,L1015 U1026 5719s,81155,,, +278,USA,,AHH,b,Ameron Amery (WI),45.270833,-92.375,,0.025,,6711,307,140,,,,998,L1015 U1010 ,81156,,, +278,USA,,HFF,b,Mackall Camp Mackall (NC),35.020833,-79.458333,,0.025,,6751,291,140,,,,989,L1053 U1037 7087s,81168,,, +278,USA,,HOC,b,Hillsboro (OH),39.1875,-83.541667,,0.025,,6679,297,140,,,,,U1012 7181s,81169,,, +278,USA,,FKR,b,Frankfort (IN),40.270833,-86.541667,,0.025,,6774,299,141,,,,2,L1015 U1015 6.24s,81165,,, +278,USA,,EOE,b,Enoree Newberry (SC),34.3125,-81.625,,0.025,,6946,291,142,,,,2,L426 U418 5567s,81163,,, +278,USA,,GWR,b,Gwinner (ND),46.229167,-97.625,,0.025,,6913,311,142,,,,981,L1020 U983 5734s,81167,,, +278,USA,,XWY,b,West Union (IA),42.9375,-91.791667,,0.025,,6865,305,142,,,,998,L1015 U1012 8246s,81183,,, +278,CAN,,N1,b,Assiniboia (SK),49.729167,-105.958333,,0.025,,7026,318,143,,,,,U959 10.52s,DAID,81172,, +278,USA,,CRZ,b,Corning (IA),40.979167,-94.791667,,0.025,,7194,305,145,,,,,U1031 5.6s,81162,,, +278,USA,,GPQ,b,Carrollton (GA),33.5625,-85.125,,0.025,,7228,293,145,,,,998,L1028 U1028 7778s,81166,,, +278,USA,,FD,b,Earli Poplar Bluff (MO),36.6875,-90.291667,,0.025,,7288,299,146,,,,2,L1012 U1020 4.9s,81164,,, +278,USA,,AUH,b,Aurora (NE),40.895833,-97.958333,,0.025,,7376,307,147,,,,,L1035 U1015 ,86971,,, +278,USA,,BKV,b,Brooksville (FL),28.479167,-82.458333,,0.025,,7476,288,148,,,,,,81157,,, +278,USA,,PF,b,Lynne Panama City (FL),30.3125,-85.791667,,0.025,,7538,291,148,,,,3,L1037 U1046 6.47s,81175,,, +278,CAN,,1U,b,Masset (BC),54.020833,-132.125,,0.025,,7605,335,149,,,,0,L411 U410 ,DAID,81154,, +278,USA,,BLE,b,Lake Providence (LA),32.8125,-91.208333,,0.025,,7667,297,150,,,,,L1020 7.0s,81158,,, +278,USA,,SRE,b,Seminole (OK),35.270833,-96.708333,,0.025,,7784,302,151,,,,,U997 4800s,81178,,, +278,USA,,UX,b,Sulfy Sulphur (LA),30.1875,-93.458333,,0.025,,8027,297,153,,,,994,L1035 U1021 5840s,81180,,, +278,CUB,,D,b,Nueva Gerona (ij),21.8125,-82.791667,,0.025,,8058,283,154,,,,,L1100 U1077 5801s,86311,,, +278,USA,,IL,b,Iresh Killeen (TX),31.020833,-97.708333,,0.025,,8211,300,155,,,,997,L1044 U1029 6.1s,81170,,, +278,USA,,XSD,b,Tonopah Range (NV),37.854167,-116.791667,,0.05,,8602,317,155,,,,995,L1045 U1035 6.0s,81182,,, +278,USA,,ECE,b,El Campo (TX),29.1875,-96.291667,,0.025,,8286,298,156,,,,,,86972,,, +278,USA,,CEP,b,Capitan Ruidoso (NM),33.479167,-105.375,,0.025,,8429,307,157,,,,992,L1050 U1035 8.1s,81160,,, +278,USA,,OS,b,Romen (CA),33.979167,-118.291667,,0.025,,9041,316,160,,,,,L1055 U~1032 ,86973,,, +278,AUS,,PBO,b,Paraburdoo (WA),-23.1875,117.708333,,0.025,,13460,89,174,,,,,L1028 U1017 9.35s,81174,,, +278,NZL,,WS,b,Westport (WTC),-41.729167,171.541667,,0.25,,18406,50,181,,,,,L1200 U1200 6s,81181,,, +278,AUS,,CG,b,Coolangatta (QLD),-28.145833,153.541667,,0.025,,16213,58,183,,,,997,L400 U400 8s,81161,,, +279,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.396389,28.534444,,500,,1490,76,45,,0300-1600,12345..,0,,55,,, +279,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.396389,28.534444,,500,,1490,76,45,,0300-2100,.....67,0,,55,,, +279,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.396389,28.534444,,500,,1490,76,45,,1700-2100,12345..,0,,55,,, +279,BLR,be,BR Radyjo Stalitsa,,Sasnovy (MA),53.396389,28.534444,,500,,1490,76,45,,1600-1700,12345..,0,,55,,, +279,TKM,tk,TR1 Watan R,,Aşgabat/Karatamak (asb),37.854111,58.366056,,150,,4276,91,78,,2300-2200,1234567,2,,2567,,, +279,GRL,,SI,b,Simiutaq (Kitaa) (kuj-qqt),60.6875,-46.625,,0.025,,3298,308,106,,,,0,L402 U400 5617s,81188,,, +279,USA,,CQX,b,Nauset Chatham (MA),41.6875,-69.958333,,0.025,,5641,290,129,,,,,U1023 7822s,81184,,, +279,USA,,RS,b,Dunca North Brookfield (MA),42.270833,-72.041667,,0.025,,5732,292,130,,,,517,L~1040 U1035 5.7s,81187,,, +279,USA,,OZ,b,Kring Oneonta (NY),42.604167,-74.958333,,0.025,,5891,294,132,,,,998,L1038 U1034 5651s,81186,,, +279,USA,,ON,b,Music Springfield (TN),46.4375,-86.958333,,0.025,,6320,305,136,,,,0,L1048 U1044 6.04s,81185,,, +279,THA,,CP,b,Chumphon (cpn),10.717778,99.365833,,0.025,,9269,81,161,,,,,,32900033,,, +280,CAN,,QX,b,Gander (NL),48.979167,-54.708333,,1,,4204,290,99,,,,999,L410 U406 10.0s,DAID,81205,, +280,IRQ,,MOS,b,Mosul=Msil (nnw),36.3125,43.125,,0.025,,3361,107,107,,,,,U1020 ,ID+3.5 gap,81200,, +280,IRN,,ARK,b,Arak (mrk),34.145833,49.875,,0.025,,3972,103,113,,,,,U1014 ,81191,,, +280,CAN,,4T,b,Shamattawa (MB),55.854167,-92.041667,,0.2,,5888,316,123,,,,0,L398 U404 8427s,DAID,81190,, +280,CAN,,4B,b,Little Grand Rapids (MB),52.0625,-95.458333,,0.025,,6337,314,136,,,,,L400 U406 8172s,81189,,, +280,USA,,LJK,b,Ashey Ashland (VA),37.770833,-77.458333,,0.025,,6409,291,137,,,,,U1016 6126s,81199,,, +280,USA,,VW,b,Temky Statesville (NC),35.770833,-81.041667,,0.025,,6793,292,141,,,,,L1035 U1023 ,86977,,, +280,MEX,,MPG,b,Progreso (Yucatan) (yuc),21.270833,-89.708333,,1,,8560,288,142,,,,13,L999 U1011 6.55s,81201,,, +280,USA,,GVV,b,Grangeville (ID),45.9375,-116.208333,,0.1,,7819,322,145,,,,,L1047 U1035 6.0s,86974,,, +280,USA,,MQW,b,Mc. Rae (GA),32.104167,-82.875,,0.025,,7204,291,145,,,,995,L1026 U1014 8.59s,81202,,, +280,USA,,UQN,b,Lyons (GA),32.229167,-82.291667,,0.025,,7157,290,145,,,,,,86976,,, +280,USA,,GYZ,b,Camp Guernsey Guernsey (WY),42.229167,-104.708333,,0.05,,7616,312,146,,,,5,L1033 U1045 8.5s,81194,,, +280,CAN,,V6,b,Salmon Arm (BC),50.6875,-119.208333,,0.025,,7497,326,148,,,,998,L394 U384 10.62s,DAID,81210,, +280,B,,SLI,b,So Lus (MA),-2.5625,-44.208333,,0.025,,7702,236,150,,,,60,L1012 U1011 ,81207,,, +280,CHN,,VM,b,Shigezhuang (TJ),39.3125,116.875,,0.025,,7839,50,151,,,,,,81211,,, +280,NMB,,WH,b,Windhoek (khm),-22.479167,17.458333,,0.1,,8363,169,151,,,,10,L1018 U1039 7.41s,81213,,, +280,MOZ,,PB,b,Pemba (cbg),-12.951389,40.500833,,0.025,,7940,145,152,,,,,,20500007,,, +280,USA,,GZV,b,Brazos River Graford (TX),32.9375,-98.375,,0.025,,8083,302,154,,,,,L1018 U1026 5.7s,81195,,, +280,CLN,,CHB,b,Trincomalee/China Bay (tcm),8.533333,81.185278,,0.025,,8222,97,155,,,,,,34700023,,, +280,B,,RCL,b,Rio Claro (SP),-22.4375,-47.541667,,0.1,,9798,228,156,,,,,,81206,,, +280,PAQ,,IPA,b,Rapa Nui (Isla de Pascua) (vlp),-27.145833,-109.458333,,3,,14095,272,156,,,,0,L1029 U1021 8391s,81196,,, +280,AFS,,KD,b,Klerksdorp (NW),-26.895833,26.708333,,0.05,,9005,162,157,,,,0,L1023 U1024 ,81198,,, +280,MEX,,MID,b,Mrida (yuc),20.9375,-89.708333,,0.025,,8589,288,158,,,,,,86975,,, +280,MYA,,PP,b,Hpapun,18.067778,97.446111,,0.025,,8501,78,158,,,,,,22100020,,, +280,B,,IR,b,Trevo Braslia (DF),-15.854167,-47.958333,,0.025,,9186,232,160,,,,,,81197,,, +280,ARG,,P,b,Palmero (Provincia de Buenos Aires) (ba),-34.5625,-58.458333,,0.08,,11505,230,163,,,,,4.6s,81204,,, +280,EQA,,SOL,b,Chongon Guayaquil (gua),-2.229167,-80.041667,,0.025,,9961,266,163,,,,,L1030 ,81208,,, +280,BOL,,VRO,b,Viru Viru (scz),-17.520833,-63.208333,,0.025,,10222,243,164,,,,0,L1007 U1007 6399s,81212,,, +280,ARG,,T,b,Rawson Trelew (Chubut) (ch),-43.1875,-65.208333,,0.08,,12622,229,167,,,,,,81209,,, +280,URG,,CA,b,Carrasco (mo),-34.770833,-55.958333,,0.03,,11395,228,167,,,,,5.0s,81192,,, +281,CAN,,CA,b,Cartwright (NL),53.729167,-57.041667,,1,,4114,298,98,,,,5,L400 U407 10.0s,DAID,81217,, +281,CAN,,L,b,Charlo / Lima (NB),47.979167,-66.208333,,0.025,,4986,295,123,,,,,,86978,,, +281,USA,,HXK,b,Hornebrook Berlin (NH),44.5625,-71.208333,,0.047,,5520,294,125,,,,,U~1000 ,81228,,, +281,USA,,HP,b,Hestr White Plains (NY),41.145833,-73.791667,,0.025,,5924,292,132,,,,4,L1031 U1043 6252s,81227,,, +281,CAN,,C2,b,Hardisty (AB),52.645833,-111.291667,,0.2,,7004,323,134,,,,,,81216,,, +281,ALS,,VIR,b,Browerville Point Barrow (AK),71.270833,-156.791667,,0.025,,6231,354,135,,,,0,L1035 U1035 8.5s,81234,,, +281,BAH,,ZSJ,b,Guanahani San Salvador (San Salvador Island),24.0625,-74.541667,,0.1,,7316,279,140,,,,2,L1521 U1524 7287s,81236,,, +281,USA,,IL,b,Airli Wilmington (NC),34.1875,-77.875,,0.025,,6715,289,140,,,,998,L1023 U1033 5963s,81229,,, +281,USA,,AJW,b,Andri Alexandria (MN),45.8125,-95.291667,,0.025,,6825,309,141,,,,,,81214,,, +281,USA,,HMJ,b,Homer (IL),40.020833,-87.958333,,0.025,,6878,300,142,,,,,,81226,,, +281,ALS,,CRN,b,Cairn Mountain Sparrevohn (AK),61.104167,-155.541667,,0.025,,7325,351,146,,,,0,L1035 U1035 ,81219,,, +281,USA,,DMO,b,Sedalia (MO),38.6875,-93.208333,,0.025,,7294,302,146,,,,34,L980 U950 7.8s,81222,,, +281,USA,,XNE,b,Spring Hill (AL),31.6875,-85.958333,,0.025,,7435,292,147,,,,,L1027 U1020 8.34s,81235,,, +281,USA,,STF,b,Bryan Starkville (MS),33.4375,-88.875,,0.025,,7471,296,148,,,,,U1028 4753s,81231,,, +281,USA,,EWK,b,Newton (KS),38.0625,-97.291667,,0.025,,7579,305,149,,,,,U1046 7.1s,81224,,, +281,USA,,SZ,b,Parkk Seattle (WA),47.520833,-122.291667,,0.05,,7914,326,149,,,,0,L1030 U1030 7.1s,81232,,, +281,USA,,DEQ,b,De Queen (AR),34.0625,-94.375,,0.025,,7751,300,150,,,,990,L1066 U932 7.0s,81221,,, +281,USA,,TOT,b,Stapleton, Denver (CO),39.770833,-104.791667,,0.025,,7837,311,151,,,,,U1030 ,86979,, +281,USA,,CNZ,b,Clarendon (TX),34.895833,-100.875,,0.025,,8054,305,154,,,,,U1060 ,81218,,, +281,USA,,CX,b,Alibi Conroe (TX),30.4375,-95.458333,,0.025,,8127,298,154,,,,0,L1007 U1010 4580s,81220,,, +281,USA,,UVA,b,Uvalde (TX),29.1875,-99.708333,,0.025,,8490,300,158,,,,,U1019 7.9s,81233,,, +281,USA,,FFZ,b,Falcon Fld Mesa (AZ),33.479167,-111.708333,,0.025,,8764,311,159,,,,991,L1045 U1033 7.9s,81225,,, +281,AUS,,JT,b,Jandakot (WA),-32.104167,115.875,,0.025,,14050,97,176,,,,,U1022 ,81230,,, +281,AUS,,BRW,b,Brewarrina (NSW),-29.979167,146.791667,,0.025,,15959,68,183,,,,,U375 9s,81215,,, +281,AUS,,CN,b,Camden (NSW),-34.020833,150.708333,,0.025,,16540,69,185,,,,,L1020 U1020 10s,TWEB,86312,, +281,AUS,,DPO,b,Devonport (TAS),-41.1875,146.458333,,0.025,,16782,84,185,,,,,L993 9s,86313,,, +282,G,,LA,b,Lyneham (EN-WLT),51.520833,-2.041667,,0.025,,584,267,79,,,,2,L397 U398 10.0s,ID+8 gap,81241,, +282,POL,,NR,b,Minsk Mazowiecki / Faktor,52.1875,21.625,,0.025,,1036,84,83,,,,,,81244,,, +282,HNG,,AO,b,Opera (JNS),47.0625,20.208333,,0.025,,1139,114,84,,,,0,L1020 U1020 ,81237,,, +282,HNG,,OA,b,Szolnok / Opera (JNS),47.145833,20.291667,,0.025,,1139,113,84,,,,3,L1008 U1014 ,IDx2 + 6gap,81246,, +282,MRC,,NSR,b,Casablanca / Mohamed V (gcb),33.270833,-7.541667,,0.025,,2376,214,97,,,,0,L1024 U1028 3.39s,Cont. ID,81245,, +282,USA,,OXD,b,Oxford (OH),39.520833,-84.791667,,0.025,,6728,298,140,,,,3,L1016 U1013 6566s,81247,,, +282,USA,,ROS,b,Rush City (MN),45.6875,-92.958333,,0.025,,6709,308,140,,,,2,L1049 U1044 7155s,AWOS,81251,, +282,USA,,MXA,b,Manila (AR),35.895833,-90.125,,0.025,,7343,298,146,,,,,U1030 ,81242,,, +282,MLA,,PK,b,Pekan,3.395833,103.458333,,0.5,,10189,82,151,,,,0,L1001 U1001 ,81248,,, +282,USA,,GWF,b,Gen William J Fox Lancaster (CA),34.729167,-118.208333,,0.025,,8965,317,160,,,,995,L1019 U1020 7.4s,81240,,, +282,MEX,,CED,b,Isla Cedros (Baja California) (bcs),28.020833,-115.208333,,0.025,,9456,311,161,,,,,U1035 10.2s,DBID,81238,, +282,NZL,,RO,b,Rotorua (BOP),-38.0625,176.375,,0.025,,18269,30,190,,,,,4.03s,81250,,, +283,NOR,,SF,b,Sandefjord / Torp,59.104167,10.291667,,0.025,,815,16,81,,,,998,L403 U397 ,ID+8 gap,81262,, +283,ALG,,BIS,b,Biskra (7),34.8125,5.708333,,0.025,,1924,182,92,,,,,L5 U2 14.9s,ID+12 tone,81254,, +283,NOR,,KBV,b,Kobbevag For Tromso / Langnes,69.520833,18.791667,,0.025,,2040,14,93,,,,2,L399 U403 ,81258,,, +283,CAN,,PT,b,Pelee Island (ON),41.770833,-82.708333,,0.1,,6428,298,131,,,,,U405 10268s,DAID,81259,, +283,CAN,,6M,b,Belleville (ON),44.1875,-77.291667,,0.025,,5921,297,132,,,,,,DAID,81253,, +283,ALS,,DUT,b,Dutch Harbor Unalaska (AK),53.895833,-166.541667,,1,,8210,356,139,,,,999,L1037 U1032 8.4s,81255,,, +283,CAN,,W2,b,Kirby (Gas Plant) (AB),55.354167,-110.625,,0.025,,6741,324,140,,,,,U410 9.7s,DAID,81264,, +283,TZA,,KL,b,Kilimanjaro (ars),-3.435833,36.924722,,0.025,,6812,145,141,,,,,,11400003,,, +283,USA,,AFP,b,Anson Co Wadesboro (NC),35.020833,-80.041667,,0.025,,6789,291,141,,,,,U997 ,86980,,, +283,CUB,,UZG,b,Zarago Zaragoza (ch),22.9375,-82.041667,,0.25,,7913,283,142,,,,991,L947 U908 7.6s,81263,,, +283,USA,,JZI,b,Johns Island Charleston (SC),32.6875,-80.041667,,0.025,,6975,289,143,,,,,U978 5319s,81257,,, +283,USA,,SCO,b,Scobey (MT),48.8125,-105.458333,,0.025,,7082,317,144,,,,998,L1040 U1057 7.1s,81260,,, +283,USA,,IML,b,Imperial (NE),40.520833,-101.625,,0.025,,7605,309,149,,,,3,L1020 U1022 5.5s,81256,,, +283,USA,,CN,b,Waco (TX),31.729167,-97.041667,,0.025,,8110,300,154,,,,,,86981,,, +283,J,,AY,b,Kumagaya (kan-sai),36.145833,139.291667,,0.025,,9190,37,160,,,,,U1000 5s,86315,,, +283.5,CNR,,NA,b,Punta Lantailla (LPM-FU),28.229167,-13.958333,,0.025,,3146,220,104,,,,-283.5,U5 ,IDx2 + 54 tone,81265,, +284,D,,FSB,b,Fassberg (nds),52.895833,10.208333,,0.025,,272,70,76,,,,990,L1040 U1020 ,81274,,, +284,BUL,,GRN,b,Gorna Oryahovitsa (vlt),43.161667,25.612778,,0.025,,1741,117,90,,,,2,L1036 U1037 ,ID+5 gap,81277,, +284,E,,AM,b,Almera (AND-AL),36.895833,-2.208333,,0.02,,1822,205,92,,,,66,L1013 U1085 ,ID+9 gap,81268,, +284,EGY,,OR,b,Al-Qahira=Cairo (qah),30.020833,31.291667,,0.025,,3190,131,105,,,,,,81281,,, +284,CAN,,RT,b,Rankin Inlet (NU),62.8125,-92.125,,1,,5412,323,111,,,,3,L400 U411 10010s,ID+6 tone,81288,, +284,XON,,5N,b,Rowan Gorilla Platform,43.854167,-60.625,,0.025,,4891,287,122,,,,0,L~1020 U~1020 ,81267,,, +284,CAN,,QD,b,The Pas (MB),53.979167,-101.041667,,0.5,,6449,319,124,,,,5,L395 U405 9.8s,DAID,81286,, +284,CAN,,L,b,Montral/Dorval (QC),45.5625,-73.625,,0.02,,5600,296,130,,,,,,86982,,, +284,CAN,,ZMT,b,Jarry Dorval (Montreal) (QC),45.5625,-73.625,,0.02,,5600,296,130,,,,0,L417 U423 10054s,DAID,81294,, +284,USA,,RQY,b,Randolph Co Elkins (WV),38.895833,-79.875,,0.05,,6475,294,135,,,,2,L1020 U1020 8517s,81287,,, +284,CAN,,YOC,b,Old Crow (YT),67.5625,-139.875,,0.025,,6415,345,137,,,,,U~400 ,81293,,, +284,USA,,PTB,b,Petersburg (VA),37.145833,-77.541667,,0.025,,6463,291,138,,,,,U1014 5350s,81285,,, +284,USA,,UYF,b,London (OH),39.9375,-83.458333,,0.025,,6615,297,139,,,,,,81291,,, +284,SXM,,PJD,b,St. Maarten (smt),18.020833,-63.125,,0.025,,7046,265,143,,,,,U1002 10527s,86316,,, +284,USA,,PDW,b,Evansville (IN),38.020833,-87.541667,,0.025,,7014,298,143,,,,,U1020 ,81283,,, +284,USA,,PQN,b,Pipestone (MN),43.979167,-96.291667,,0.025,,7028,308,143,,,,2,L1043 U1040 7.8s,81284,,, +284,USA,,OXV,b,Knoxville (IA),41.3125,-93.125,,0.025,,7072,304,144,,,,,U1020 ,81282,,, +284,CAN,,2U,b,Mackenzie (BC),55.3125,-123.125,,0.025,,7201,331,145,,,,,U411 10.6s,DAID,81266,, +284,USA,,GPH,b,Mosby (MO),39.354167,-94.291667,,0.025,,7300,303,146,,,,990,L1020 U1000 9.0s,81276,,, +284,USA,,SCD,b,Sylacauga (AL),33.1875,-86.291667,,0.025,,7332,294,146,,,,,U1020 6136s,81289,,, +284,USA,,IDL,b,Indianola (MS),33.479167,-90.708333,,0.025,,7580,297,149,,,,993,L1031 U1016 6.3s,81278,,, +284,USA,,FHR,b,Friday Harbor (WA),48.520833,-123.041667,,0.025,,7846,327,151,,,,,L1025 U1012 5.0s,81273,,, +284,USA,,MDF,b,Mooreland (OK),36.479167,-99.208333,,0.025,,7823,305,151,,,,,,86983,,, +284,USA,,VIV,b,Vivian (LA),32.854167,-94.041667,,0.025,,7834,299,151,,,,1,L1026 U1025 7854s,81292,,, +284,USA,,AUV,b,Arbuckle Ardmore (OK),34.145833,-97.125,,0.025,,7905,302,152,,,,988,L1070 U1083 ,81269,,, +284,USA,,BT,b,Rundi Baton Rouge (LA),30.5625,-91.208333,,0.025,,7857,295,152,,,,997,L1039 U1034 6.0s,81271,,, +284,USA,,MXR,b,Maxwell Raton (NM),36.6875,-104.541667,,0.025,,8097,308,154,,,,3,L1025 U1035 6.2s,81280,,, +284,USA,,DPG,b,Dugway Dugway Proving Ground (UT),40.1875,-112.958333,,0.025,,8205,316,155,,,,994,L1032 U1024 8.5s,81272,,, +284,USA,,BEA,b,Beeville (TX),28.354167,-97.791667,,0.025,,8449,298,157,,,,,U1011 ,81270,,, +284,CLM,,TEH,b,Bogot D. C. (bdc),4.645833,-74.125,,0.025,,8954,265,160,,,,,,81290,,, +284,AUS,,GAY,b,Gayndah (QLD),-25.604167,151.708333,,0.025,,15877,58,182,,,,995,L1020 U1020 11s,81275,,, +284,AUS,,MFD,b,Mansfield (VIC),-37.0625,146.125,,0.025,,16474,78,184,,,,,L400 U400 8s,81279,,, +284.5,D,,DY,b,Dsseldorf (nrw),51.229167,6.708333,,0.025,,100,168,56,,,,509,L1015 U1032 ,81295,,, +284.5,NOR,,LVK,b,Namsos / Leirvika,64.4375,11.291667,,0.05,,1399,10,84,,,,-284.5,L368 U378 8.0s,81296,,, +284.5,E,,MA,b,Cabo Matxitxako (PVA-BI),43.4375,-2.791667,,0.025,,1182,219,85,,,,-284.5,,86984,,, +285,I,,PDV,b,Padova (pd),45.354167,11.791667,,0.025,,848,150,81,,,,5,L1020 U1028 ,81312,,, +285,POL,,KTC,b,Katowice / Pyrzowice,50.479167,19.125,,0.025,,901,97,82,,,,4,L1014 U1017 6.2s,ID+2.5 gap,81309,, +285,S,,LCF,b,Linkping/Malmen,58.354167,15.458333,,0.025,,899,36,82,,,,0,L401 U401,81310,,, +285,I,,URB,b,Roma / Urbe (rm),41.9375,12.458333,,0.025,,1219,156,85,,,,80,L1020 U1180 ,ID+3 gap,81316,, +285,E,,ROZ,b,Lugo/Rozas (GAL-LU),43.104167,-7.458333,,0.025,,1439,231,87,,,,961,L1099 U1020 ,ID+17 gap,81313,, +285,E,,GR,b,Granada (AND-GR),37.1875,-3.875,,0.025,,1844,210,91,,,,979,L1063 U1008 10.13s,ID+12 gap,81305,, +285,GRC,,KRS,b,Karystos (cgr-evv),37.979167,24.458333,,0.04,,2105,131,92,,,,0,L400 U400 ,ID+6.5 gap,81308,, +285,RUS,,MU,b,Moskva/Gorodskaya Klinicheskaya Bolnitsa (MV),55.729167,37.791667,,0.025,,2075,66,94,,,,,,86318,,, +285,UKR,,F,b,Simferopol (KR),45.0625,33.958333,,0.025,,2156,100,95,,,,,,81304,,, +285,UKR,,N,b,Simferopol (KR),45.020833,33.958333,,0.025,,2159,100,95,,,,,,81311,,, +285,TUR,,AN,b,Ankara / Esenboga (ica-ank),40.0625,32.958333,,0.025,,2425,113,97,,,,0,L1020 U1020 ,Cont. ID,81299,, +285,CAN,,UHA,b,Quaqtaq (QC),61.0625,-69.625,,0.5,,4484,313,105,,,,3,L400 U410 10.11s,DAID,81315,, +285,IRN,,ABM,b,Abu Musa (hrg),25.895833,55.041667,,0.025,,4979,107,123,,,,,,81298,,, +285,CAN,,2Y,b,#NAME?,49.895833,-74.375,,0.025,,5356,301,127,,,,,,86985,,, +285,CAN,,J7,b,108 Mile Ranch (BC),51.729167,-121.375,,0.13,,7479,328,141,,,,4,L400 U408 ,DAID,81306,, +285,USA,,JZP,b,Pickens County Jasper (GA),34.4375,-84.458333,,0.025,,7115,293,144,,,,,L1020 17.48s,81307,,, +285,B,,VSA,b,Vitria de Santo Anto (PE),-8.104167,-35.291667,,0.025,,7779,225,151,,,,,L1023 ,81317,,, +285,B,,MOZ,b,Porto de Moz (PA),-1.770833,-52.208333,,0.025,,8098,243,154,,,,,L1078 ,86317,,, +285,B,,TLB,b,Telmaco Borba (PR),-24.3125,-50.625,,0.2,,10137,230,154,,,,,,81314,,, +285,B,,DOU,b,Dourados (MS),-22.1875,-54.958333,,0.2,,10170,234,155,,,,,L1019 7088s,81303,,, +285,USA,,NE,b,Newport Bay / Jetty Light 3 (CA),33.604167,-117.875,,0.025,,9057,316,160,,,,,,86986,,, +285,B,,BBC,b,Barbacena (MG),-21.270833,-43.791667,,0.025,,9497,226,161,,,,,,81300,,, +285,B,,CUA,b,Carauari (AM),-4.854167,-66.875,,0.025,,9310,254,161,,,,,L1022 7141s,81301,,, +286,D,,HFX,b,Hohenfels (bay),49.229167,11.875,,0.025,,501,128,78,,,,999,L1041 U1024 ,81322,,, +286,RUS,,F,b,Yaroslavl / Tunoshna,54.5625,36.375,,0.025,,1993,70,93,,,,,,86319,,, +286,RUS,,W,b,Kaluga / Trabtsevo (KL),54.520833,36.375,,0.025,,1993,70,93,,,,,,81324,,, +286,CAN,,A,b,Gros Cap (ON),46.520833,-84.625,,0.1,,6182,304,129,,,,,,86987,,, +286,CAN,,ZSM,b,Gros Cap Sault Ste Marie (ON),46.520833,-84.625,,0.1,,6182,304,129,,,,,L426 U365 10.4s,DAID,86990,, +286,PAK,,DI,b,Dera Ismail Khan (kpk),31.908958,70.888206,,0.025,,5568,87,129,,,,,,31500050,,, +286,USA,,GD,b,Grand Marais Lt. (MN),43.729167,-81.708333,,0.025,,6220,299,135,,,,,,86988,,, +286,CAN,,8G,b,Stettler (AB),52.3125,-112.791667,,0.025,,7095,324,144,,,,,U410 ,DAID,81318,, +286,USA,,EKS,b,Big Sky Ennis (MT),45.270833,-111.625,,0.025,,7678,318,150,,,,992,L1026 U1020 3.4s,81320,,, +286,USA,,EYQ,b,Weiser Houston (TX),29.9375,-95.625,,0.025,,8180,298,155,,,,8,L1000 U1021 6.86s,81321,,, +286,USA,,PI,b,Pigeon Point LS (CA),37.1875,-122.375,,0.025,,8916,321,159,,,,,,86989,,, +286,MLA,,KK,b,Kong Kong,1.520833,103.958333,,0.07,,10388,83,160,,,,0,L1000 U1000 10s,81323,,, +286,NZL,,CC,b,Cape Campbell,-41.729167,174.291667,,0.25,,18543,43,181,,,,,L970 8s,81319,,, +286.5,F,,TA,b,Villacoublay / Vlizy (78),48.770833,2.125,,0.025,,479,221,78,,,,-286.5,U6 ,ID+17 tone,81325,, +287,LBY,,GAD,b,Ghadames (nlt),30.1875,9.708333,,0.025,,2453,172,98,,,,0,L1020 U1019 10.0s,ID+6 gap,81326,, +287,RUS,,WG,b,Kurumoch / Samara (SA),53.5625,50.125,,0.025,,2894,69,102,,,,10,L760 U780 ,81337,,, +287,MTN,,PS,b,Nouadhibou (dnd),20.854167,-17.041667,,0.025,,4020,219,113,,,,,,81335,,, +287,CAN,,SF,b,Stoney Rapids (SK),59.270833,-105.791667,,1,,6222,325,119,,,,,U410 ,86994,,, +287,PAK,,QS,b,Qasim (pjb),33.566667,73.033333,,0.025,,5588,84,129,,,,,,31500032,,, +287,CAN,,YSF,b,Stony Rapids (SK),59.270833,-105.875,,0.025,,6225,325,135,,,,,U402 9.70s,DAID,81340,, +287,CAN,,WJ,b,Deline (NT),65.1875,-123.458333,,0.025,,6289,337,136,,,,,U407 ,DAID,81338,, +287,USA,,MKP,b,Mckeesport (PA),40.354167,-79.791667,,0.025,,6358,295,137,,,,991,L1043 U1018 8.14s,81332,,, +287,CAN,,G,b,Winnipeg (MB),49.979167,-97.208333,,0.025,,6588,313,139,,,,,U~400 ,DAID,86992,, +287,CAN,,PE,b,Peace River (AB),56.1875,-117.541667,,0.056,,6927,329,139,,,,,U406 10.18s,DBID,81334,, +287,CAN,,ZWG,b,Stoney Medicine Rock (Winnipeg) (MB),49.979167,-97.208333,,0.025,,6588,313,139,,,,,U370 10.7s,DBID,81341,, +287,USA,,GS,b,Greer (SC),34.8125,-82.291667,,0.025,,6948,292,142,,,,2,L401 U400 8600s,81327,,, +287,USA,,HUA,b,Redstone Arsenal Huntsville (AL),34.6875,-86.708333,,0.025,,7234,295,145,,,,,U1042 9.3s,81328,,, +287,USA,,ME,b,Elvis Memphis (TN),35.0625,-90.041667,,0.025,,7407,298,147,,,,2,L1030 U1041 ,81331,,, +287,USA,,AOQ,b,Alliance (Municipal) (NE),42.020833,-102.791667,,0.025,,7536,311,148,,,,,,86991,,, +287,USA,,RBD,b,Redbird Dallas (TX),32.6875,-96.875,,0.05,,8017,301,150,,,,,L1045 U1030 ,86993,,, +287,BGD,,EG,b,Chittagong (cgg),22.251111,91.817778,,0.025,,7768,79,151,,,,,,36300004,,, +287,CUB,,U,b,Santa Clara (vc),22.479167,-79.958333,,0.025,,7813,282,151,,,,,U1014 8.25s,86320,,, +287,CLM,,SMR,b,Santa Marta (mag),11.020833,-74.291667,,0.025,,8409,270,157,,,,947,L1160 U1053 ,DBID,81336,, +287,AUS,,LEC,b,Leigh Creek (SA),-30.645833,138.458333,,0.5,,15470,77,168,,,,,L1023 U1023 7s,81330,,, +287,AUS,,KG,b,Kalgoorlie (WA),-30.770833,121.458333,,0.025,,14327,92,177,,,,,L410 U390 8s,81329,,, +287,AUS,,NRC,b,Naracoorte (SA),-36.979167,140.708333,,0.025,,16103,83,183,,,,,L400 U400 9s,81333,,, +287,AUS,,WLE,b,Williamsdale (NSW),-35.5625,149.208333,,0.025,,16565,73,185,,,,,L400 U400 9s,81339,,, +287.5,AFS,,RDW,b,Rand (GT),-26.270833,28.125,,0.03,,8969,160,159,,,,-287.5,,81342,,, +288,HNG,,MNR,b,Monor for Ferihegy (Pes),47.354167,19.375,,0.025,,1069,115,84,,,,988,L1016 U990 8.0s,81346,,, +288,USA,,JI,b,James Island Light Station (WA),47.895833,-124.625,,0.2,,7965,328,144,,,,,U1030 ,86995,,, +288,USA,,P,b,Cape Flattery (WA),48.395833,-124.708333,,0.05,,7919,328,149,,,,,,86996,,, +288.5,F,,AVD,b,Avord (18),47.104167,2.791667,,0.05,,614,206,76,,,,-288.5,U20 25.4s,ID+20 tone,81347,, +289,F,,HR,b,Hericourt (70),47.5625,6.708333,,0.025,,506,177,78,,,,,U3 ,DAID,81351,, +289,HRV,,RI,b,Rijeka / Krk (ri),45.145833,14.625,,0.025,,981,139,83,,,,995,L1029 U1030 ,ID+6 gap,81353,, +289,I,,ARB,b,Tortoli / Arbatax (nu),39.9375,9.708333,,0.025,,1377,168,87,,,,,U1020 ,86321,,, +289,RUS,,AP,b,Chertovitskoye / Vorenezh (VN),51.770833,39.291667,,0.025,,2235,78,95,,,,7,L328 U339 ,IDx2 + 7 gap,81348,, +289,RUS,,WR,b,Chertovitskoye / Voronezh (VN),51.854167,39.208333,,0.025,,2227,78,95,,,,998,L400 U395 15.0s,IDx2 + 6 gap,81354,, +289,CAN,,YLQ,b,La Tuque (QC),47.395833,-72.791667,,0.5,,5426,298,114,,,,,U405 10138s,DAID,81355,, +289,IND,,IM,b,Imphal (MN),24.758056,93.888889,,0.025,,7695,76,150,,,,,,32200044,,, +289,HND,,CTL,b,Punta Castilla (col),16.020833,-85.958333,,0.025,,8767,282,159,,,,,L1020 ,81350,,, +289,USA,,MR,b,Marina del Rey Light (CA),33.979167,-118.458333,,0.025,,9049,317,160,,,,,,86997,,, +289,THA,,NK,b,Nakhon Si Thammarat (ntm),8.5625,99.958333,,0.025,,9498,82,161,,,,,,81352,,, +289.5,E,,MY,b,Cabo Mayor (CNT-S),43.479167,-3.791667,,0.025,,1223,222,85,,,,-289.5,,86998,,, +290,AUT,,GRZ,b,Graz,46.9375,15.458333,,0.08,,869,128,77,,,,2,L1062 U1068 9.0s,ID+3 gap,81362,, +290,BEL,,ONL,b,Liege / Bierset (wal-lge),50.6875,5.541667,,0.015,,169,201,77,,,,2,L400 U400 10.1s,81374,,, +290,POL,,K,b,Oksywie,54.604167,18.458333,,0.025,,845,66,81,,,,,,IDx3,81367,, +290,POL,,N,b,Oksywie,54.604167,18.458333,,0.025,,845,66,81,,,,,U1001 ,81371,,, +290,UKR,,IF,b,Ivano-Frankovsk (IF),48.854167,24.791667,,0.025,,1346,98,86,,,,,L1071 U1073 30.0s,IDx2 + 22 gap,81363,, +290,UKR,,IV,b,Ivano-Frankovsk (IF),48.895833,24.625,,0.025,,1333,98,86,,,,,,81366,,, +290,ALB,,TR,b,Tirana / Rinas (tir),41.4375,19.708333,,0.025,,1555,134,89,,,,0,L403 U397 10.0s,ID+8 gap,81381,, +290,FIN,,TP,b,Oulu,64.895833,25.541667,,0.025,,1789,30,91,,,,999,L407 U409 8.6s,81380,,, +290,RUS,,GG,b,Moskva/Vnukovo (MV),55.5625,37.208333,,0.025,,2039,67,93,,,,,U1020 ,81361,,, +290,RUS,,OB,b,Moskva/Vnukovo (MV),55.604167,37.375,,0.025,,2050,67,93,,,,7,L1006 U1009 ,IDx2,81372,, +290,CAN,,YYH,b,Taloyoak (NU),69.520833,-93.541667,,1,,5048,331,107,,,,7,L390 U406 10.64s,DAID,81386,, +290,TCD,,TM,b,Am Timan (sal),11.020833,20.291667,,0.025,,4737,160,120,,,,,,81378,,, +290,PAK,,RK,b,Rahim Yar Khan (pjb),28.411111,70.303333,,0.025,,5802,91,131,,,,,,31500049,,, +290,CAN,,QR,b,Regina (SK),50.354167,-104.541667,,0.1,,6908,318,136,,,,997,L385 U358 10.2s,DAID,81375,, +290,USA,,EKQ,b,Elk Spring Monticello (KY),36.854167,-84.875,,0.025,,6946,296,142,,,,,U1020 ,81360,,, +290,NCG,,YNP,b,Managua (mng),12.145833,-86.125,,1.2,,9116,279,143,,,,,,81384,,, +290,USA,,TVK,b,Centerville (IA),40.6875,-92.875,,0.025,,7109,304,144,,,,993,L1033 U1020 5613s,81382,,, +290,USA,,AOP,b,Antelope Rock Springs (WY),41.604167,-109.041667,,0.1,,7888,314,146,,,,998,L1030 U1026 7.0s,81357,,, +290,USA,,BBW,b,Broken Bow (NE),41.4375,-99.625,,0.025,,7420,308,147,,,,,,86999,,, +290,USA,,TYV,b,Toneyville Jacksonville (AR),34.9375,-92.041667,,0.025,,7538,299,148,,,,,U1048 6.25s,81383,,, +290,USA,,Y,b,Crystal Bay (FL),28.9375,-82.708333,,0.025,,7454,288,148,,,,,,87001,,, +290,CAN,,YYF,b,Penticton (BC),49.479167,-119.625,,0.025,,7626,326,149,,,,5,L390 U404 10.5s,DAID,81385,, +290,USA,,OLR,b,Chickasha (OK),35.104167,-97.958333,,0.025,,7871,303,152,,,,,L1020 ,87000,,, +290,B,,IT,b,So Joo de Meriti (RJ),-22.8125,-43.375,,0.2,,9628,225,153,,,,,,81365,,, +290,CLN,,MIN,b,Minneriya (prw),8.05,80.985278,,0.025,,8251,97,155,,,,,,34700026,,, +290,USA,,TMV,b,Stamford (TX),32.854167,-99.708333,,0.025,,8167,303,155,,,,,U1010 5.7s,81379,,, +290,AFS,,MM,b,Mafikeng (NW),-25.895833,25.541667,,0.025,,8872,163,159,,,,,L399 12.3s,81370,,, +290,B,,AV,b,Abrolhos (BA),-17.979167,-38.708333,,0.025,,8928,223,159,,,,,,86322,,, +290,MYA,,KT,b,Kawthoung,10.051667,98.549444,,0.025,,9272,82,161,,,,,,22100022,,, +290,TWN,,BM,b,Magong=Makung (PG),23.520833,119.625,,0.025,,9414,58,161,,,,,7s,81359,,, +290,B,,IS,b,Mada (SP),-23.5625,-46.708333,,0.025,,9865,227,163,,,,,,81364,,, +290,AUS,,SGT,b,Singleton (NSW),-32.5625,151.291667,,2,,16458,66,165,,,,,L400 U400 7s,81376,,, +290,B,,RG,b,Canal (RS),-32.145833,-52.125,,0.025,,10957,227,166,,,,,,86323,,, +290,INS,,TF,b,Bandar Lampung (LP-bla),-5.229167,105.208333,,0.025,,11067,86,166,,,,0,L1020 U1020 ,81377,,, +290,ARG,,OI,b,Punta Indio (ba),-35.3125,-57.208333,,0.025,,11509,229,168,,,,,7.6s,81373,,, +290,INS,,LW,b,Lawang,-7.8125,112.708333,,0.025,,11803,82,169,,,,,,81369,,, +291,F,,WS,b,Grenoble / St Geoirs (38),45.354167,5.125,,0.025,,757,188,81,,,,,L398 U407 ,ID+8 gap,81389,, +291,GRC,,KZN,b,Kozani / Filippos (wmc-koz),40.270833,21.875,,0.025,,1768,132,91,,,,993,L414 U412 ,ID+5 gap,81388,, +291,CAN,,9Q,b,Amos (QC),48.5625,-78.208333,,0.025,,5667,302,130,,,,,U367 10424s,DAID,81387,, +291,CAN,,6P,b,Rainbow Lake (AB),58.479167,-118.958333,,0.025,,6768,331,141,,,,,,87002,,, +291.5,RUS,,TB,b,Mys Teriberskiy,69.270833,35.208333,,0.025,,2422,27,97,,,,-291.5,,81394,,, +292,D,,NKR,b,Neckar (bw),49.354167,8.708333,,0.025,,346,151,76,,,,3,L1020 U1024 ,81400,,, +292,I,,NOV,b,Novara (no),45.4375,8.791667,,0.025,,762,166,81,,,,998,L1023 U1020 ,ID+6 gap,81401,, +292,E,,MIA,b,Melilla (MEL-ML),35.3125,-2.958333,,0.25,,2010,205,83,,,,967,L1061 U980 ,ID+15 gap,81398,, +292,E,,BRB,b,Barcial del Barco (CAL-ZA),41.9375,-5.708333,,0.02,,1453,224,88,,,,531,L~1020 U1057 6.5s,ID+4 gap,81395,, +292,TUR,,CAY,b,Caycuma (kdz-zon),41.520833,32.125,,0.025,,2266,111,96,,,,5,L1015 U1025 ,ID+6 gap,81396,, +292,RUS,,DJ,b,Kazan (TS),55.5625,49.375,,0.025,,2799,65,101,,,,,L291 U293 ,81397,,, +292,RUS,,PS,b,Kazan (TS),55.645833,49.208333,,0.025,,2787,65,101,,,,2,L399 U403 ,81402,,, +292,CAN,,F,b,Edmonton (AB),53.354167,-113.708333,,0.025,,7039,325,143,,,,,,87004,,, +292,CAN,,ZET,b,Devon (Edmonton Intl Apt) (AB),53.354167,-113.708333,,0.025,,7039,325,143,,,,986,L402 U390 10.5s,DAID,81403,, +292,CAN,,YCJ,b,Cape St. James LS (BC),51.9375,-131.041667,,0.025,,7781,334,151,,,,,,87005,,, +292,CHN,,NF,b,Nanfeng (JX),27.229167,116.541667,,0.05,,8899,58,156,,,,,15s,2xID,81399,, +292,USA,,DP,b,Dana Point Breakwater Light (CA),33.4375,-117.708333,,0.025,,9065,316,160,,,,,,87003,,, +292,AUS,,BWN,b,Bowen (QLD),-20.020833,148.208333,,0.025,,15162,57,180,,,,,,86324,,, +292.5,E,,BA,b,Estaca de Bares (GAL-C),43.770833,-7.708333,,0.025,,1398,234,87,,,,-292.5,35.0s,IDx2 + 25 tone,87006,, +293,BEL,,OB,b,Brussels National (bru),50.9375,4.625,,0.025,,180,224,75,,,,7,L392 U398 10.1s,81414,,, +293,AUT,,STE,b,Wien / Schwechat / Steinhof,48.229167,16.208333,,0.025,,819,118,81,,,,0,L1018 U1020 10.0s,ID+8 gap,81415,, +293,MRC,,KSR,b,Errachidia/Moulay Ali Cherif,31.9375,-4.375,,0.025,,2407,205,97,,,,950,L1080 U980 ,ID+7 gap,81412,, +293,NGR,,ARL,b,Arlit,18.770833,7.375,,0.025,,3708,178,110,,,,,U84 20.4s,ID+16 tone,81404,, +293,IRN,,DZF,b,Dezful / Vahdati (kuz),32.4375,48.375,,0.025,,4006,106,113,,,,,,81410,,, +293,TZA,,KB,b,Kilimanjaro (ars),-3.581389,36.694444,,0.025,,6818,145,141,,,,,,11400002,,, +293,USA,,CJJ,b,Cresco (IA),43.354167,-92.125,,0.025,,6850,305,141,,,,,U1022 ,81406,,, +293,USA,,GHJ,b,Stonia Gastonia (NC),35.1875,-81.125,,0.025,,6844,292,141,,,,,U1020 ,87008,,, +293,USA,,FK,b,Hopkinsville (KY),36.729167,-87.375,,0.025,,7109,297,144,,,,,,87007,,, +293,USA,,IKV,b,Ankeny (IA),41.6875,-93.541667,,0.025,,7065,305,144,,,,,,87009,,, +293,USA,,UI,b,Quincy (IL),39.895833,-91.291667,,0.025,,7083,302,144,,,,0,L1030 U1020 ,81417,,, +293,USA,,CRD,b,Conrad (MT),48.1875,-111.875,,0.025,,7426,320,147,,,,,U1035 7.94s,81408,,, +293,USA,,FBY,b,Fairbury (NE),40.1875,-97.125,,0.025,,7390,306,147,,,,,U1007 6.82s,81411,,, +293,USA,,PPF,b,Parsons (KS),37.354167,-95.541667,,0.025,,7540,303,148,,,,,,87010,,, +293,USA,,TOR,b,Torrington (WY),42.0625,-104.125,,0.025,,7601,312,149,,,,987,L1051 U1034 8.05s,81416,,, +293,CAN,,MB,b,Mill Bay Victoria (BC),48.6875,-123.541667,,0.025,,7849,328,151,,,,,U363 10.4s,DAID,81413,, +293,PRG,,ALG,b,Ciudad del Este,-25.354167,-54.791667,,0.025,,10458,233,164,,,,,8s,86325,,, +293,AUS,,COM,b,Cooma (NSW),-36.354167,148.958333,,0.5,,16609,74,172,,,,,U414 9s,81407,,, +293,AUS,,CUN,b,Cunderdin (WA),-31.604167,117.208333,,0.025,,14102,96,177,,,,,U1028 ,81409,,, +293,AUS,,CDU,b,Ceduna (SA),-32.145833,133.708333,,0.025,,15268,83,180,,,,,L1028 U400 9s,81405,,, +293.5,D,,DGPS Iffezheim (Rhein),G,Iffezheim/An der Staustufe 27 (bw),48.831128,8.111864,,1,,384,161,61,,,,-293.5,,2000030,,, +294,SRB,,VRA,b,Vrac (Voj-jbn),45.104167,21.291667,,0.025,,1339,120,86,,,,60,L900 U1020 ,81421,,, +294,USA,,BMC,b,Brigham City (UT),41.520833,-112.041667,,0.025,,8039,316,153,,,,993,L1053 U1040 6.0s,81419,,, +294,CLM,,ZIP,b,Zipaquir (cun),5.020833,-73.958333,,0.025,,8910,265,159,,,,,U1020 ,81422,,, +294,OCE,,AN,b,Hiva Oa,-9.770833,-139.041667,,0.025,,14370,314,177,,,,,34.5s,DAID,86326,, +294.5,RUS,,ÜG,b,Mys Lounatrivi / Ostrov Gogland (LE),60.020833,27.041667,,0.025,,1543,47,88,,,,-294.5,,81423,,, +294.5,UKR,,ZM,b,Ostrov Zmeinyy,45.229167,30.208333,,0.025,,1897,104,92,,,,-294.5,,81428,,, +294.5,RUS,,VG,b,Ostrov Zhizhginskiy,65.229167,36.791667,,0.025,,2245,38,95,,,,-294.5,,81427,,, +294.5,RUS,,KC,b,Kashkarantsy,66.3125,36.041667,,0.025,,2270,35,96,,,,-294.5,,81424,,, +294.5,RUS,,MU,b,Ostrov Mudyugskiy,64.9375,40.208333,,0.025,,2379,40,97,,,,-294.5,,81425,,, +294.5,RUS,,NI,b,Mys Nikodimskiy,66.104167,39.041667,,0.025,,2380,37,97,,,,-294.5,,81426,,, +295,CZE,,DGPS IALA,b,Obřstv/Zdymadlo (ST),50.301072,14.483933,,0.1,,597,106,73,,,,,,1900002,,, +295,HNG,,DC,b,Debrecen (HaB),47.4375,21.541667,,0.025,,1201,110,85,,,,,U1025 ,ID+2 gap,81430,, +295,MKD,,PT,b,Skopje (SK),41.895833,21.625,,0.05,,1613,129,86,,,,20,L984 U968 ,ID+6 tone,81439,, +295,UKR,,YN,b,Vasilkov,50.229167,30.291667,,0.025,,1670,88,90,,,,,L1020 14.8s,IDx2,81443,, +295,UKR,,ZA,b,Zaporizhzhia (ZP),47.8125,35.291667,,0.025,,2105,92,94,,,,998,L1039 U1034 ,IDx2 + 6 gap,81444,, +295,UKR,,ZP,b,Zaporizhzhia (ZP),47.895833,35.375,,0.025,,2107,91,94,,,,0,L980 U980 ,ID+3.5 gap,81445,, +295,SYR,,DRZ,b,Deir ez-Zor=Dayr az-Zawr (dyz),35.270833,40.208333,,0.025,,3254,112,106,,,,22,L1020 U1055 ,ID+10 gap,81431,, +295,TKM,,PQ,b,Aşgabat (asb),37.979167,58.375,,0.025,,4268,90,116,,,,999,L728 U726 ,81438,,, +295,CAN,,YLU,b,Kangiqsualujjuaq (QC),58.6875,-65.958333,,0.025,,4399,309,117,,,,,U404 ,DAID,81442,, +295,IRN,,ZAL,b,Zabol (sib),31.0975,61.539722,,0.025,,4993,96,123,,,,,L1028 ,Cont. ID,86329,, +295,PAK,,RT,b,Rawalakot (ajk),33.8475,73.799167,,0.025,,5619,83,129,,,,,,31500046,,, +295,CAN,,8C,b,Fairview (AB),56.0625,-118.458333,,0.025,,6971,329,143,,,,990,L406 U382 ,DAID,81429,, +295,B,,LST,b,Lagoa Santa (MG),-19.645833,-43.875,,0.2,,9342,227,152,,,,,,81435,,, +295,B,,ATM,b,Altamira (PA),-3.270833,-52.291667,,0.025,,8243,242,155,,,,,,86328,,, +295,CLM,,RHC,b,Riohacha (lag),11.520833,-72.958333,,0.025,,8275,269,156,,,,,L1030 ,81440,,, +295,MYA,,LK,b,Loikaw,19.692778,97.216111,,0.025,,8346,77,156,,,,,,22100028,,, +295,B,,FLN,b,Florianpolis (SC),-27.6875,-48.458333,,0.025,,10350,226,164,,,,,,81433,,, +295,INS,,NR,b,Waingapu (NT),-9.6875,120.291667,,0.025,,12476,77,171,,,,,,81437,,, +295.5,E,,PS,b,Cabo de Peas (AST-O),43.645833,-5.875,,0.025,,1310,229,86,,,,-295.5,,87011,,, +296,SVN,,MG,b,Ljubljana (lj),46.1875,14.541667,,0.025,,884,135,82,,,,0,L1021 U1018 10.0s,ID+7 gap,81455,, +296,FIN,,JYV,b,Jyvskyl,62.354167,25.791667,,0.025,,1618,38,89,,,,1,L405 U408 8.5s,81451,,, +296,IRN,,CY,b,Kurush (bus),29.0625,49.458333,,0.025,,4352,109,116,,,,,,81448,,, +296,ALS,,AWI,b,Wainwright (AK),70.604167,-159.875,,0.025,,6326,355,136,,,,,U~1020 ,81447,,, +296,CAN,,M4,b,Gimli (MB),50.645833,-97.041667,,0.025,,6526,314,138,,,,15,L385 U417 11.96s,DAID,81454,, +296,CUB,,UVT,b,Victoria de las Tunas (lt),20.988639,-76.938764,,0.35,,7736,278,139,,,,,L1131 U856 6357s,81458,,, +296,USA,,G,b,Galveston (TX),29.3125,-94.708333,,1,,8179,297,139,,,,,,87014,,, +296,CAN,,V4,b,Bonnyville (AB),54.3125,-110.708333,,0.025,,6835,324,141,,,,,U338 10.3s,DBID,81459,, +296,CAN,,B,b,Quatsino Sound Light Station (BC),50.4375,-128.041667,,0.15,,7835,331,144,,,,,U400 ,DA3ID,87012,, +296,USA,,ARF,b,Saratoga Albertville (AL),34.270833,-86.208333,,0.025,,7238,294,145,,,,,L1052 5709s,81446,,, +296,USA,,CRZ,b,Corning (Municipal) (IA),40.979167,-94.708333,,0.025,,7189,305,145,,,,,,87013,,, +296,USA,,HCK,b,Hawks / Knob Noster (MO),38.645833,-93.541667,,0.025,,7316,302,146,,,,,L1063 ,87016,,, +296,USA,,HBZ,b,Heber Springs (AR),35.520833,-92.041667,,0.025,,7489,299,148,,,,,U1020 ,87015,,, +296,CHN,,PU,b,Dongyangjiao (LN),41.520833,123.291667,,0.05,,7964,45,150,,,,,,81457,,, +296,USA,,LQR,b,Larned (KS),38.1875,-99.125,,0.025,,7671,306,150,,,,,U1018 ,81453,,, +296,USA,,LGD,b,La Grande (OR),45.354167,-117.958333,,0.025,,7947,322,152,,,,,U1020 6.0s,Delayed D,81452,, +296,USA,,ICF,b,Madison Wichita Falls (TX),33.895833,-98.458333,,0.025,,8004,302,153,,,,997,L1036 U1032 ,81450,,, +296,USA,,SP,b,Shawn Wichita Falls (TX),33.895833,-98.458333,,0.025,,8004,302,153,,,,,L1039 U1040 6.0s,87017,,, +296,CHN,,WF,b,Xinglin (FJ),24.5625,118.041667,,0.05,,9227,58,157,,,,,14s,2xID,81460,, +296,AUS,,FLI,b,Flinders Island (TAS),-40.104167,148.041667,,2,,16818,81,166,,,,,L396 9s,81449,,, +296,AUS,,PLO,b,Point Lookout (NSW),-30.479167,152.375,,0.025,,16348,62,184,,,,,L400 U400 8s,81456,,, +296.5,E,,FI,b,Cabo Finisterre (GAL-C),42.895833,-9.291667,,0.025,,1556,235,89,,,,-296.5,34.8s,IDx2 +25 tone,87018,, +297,D,,FR,b,Frankfurt (hes),50.0625,8.708333,,0.025,,279,144,76,,,,,U1013 ,81462,,, +297,POL,,NA,b,Miroslawiec,53.395833,16.041667,,0.025,,663,74,80,,,,,L400 U400 ,ID+6 gap,86330,, +297,F,,GA,b,Gap / Tallard (05),44.395833,5.958333,,0.025,,858,182,82,,,,,L13 17.4s,ID+13 tone,81463,, +297,SVK,,PNY,b,Piestany (TT),48.604167,17.791667,,0.025,,895,111,82,,,,,,81468,,, +297,MKD,,PEP,b,Prilep (PE),41.354167,21.458333,,0.025,,1651,130,89,,,,15,L992 U1030 ,ID+6 tone,81467,, +297,RUS,,BA,b,Shatalovo,54.354167,32.458333,,0.025,,1741,71,90,,,,,L1010 ,81461,,, +297,RUS,,NSH,b,Shatalovo,54.354167,32.458333,,0.025,,1741,71,90,,,,0,L1115 U1116 ,81466,,, +297,MTN,,NH,b,Nouakchott (nkc),18.0625,-15.958333,,0.05,,4260,216,113,,,,,18.8s,81465,,, +297,CHN,,GS,b,Lishui (ZJ),31.645833,119.041667,,0.025,,8641,54,158,,,,,,81464,,, +298,E,,BJZ,b,Badajoz / Talavera La Real (EXT-BA),38.8125,-6.708333,,0.025,,1792,220,91,,,,525,U1050 7.38s,ID+3 gap,81471,, +298,GRL,,KU,b,Kook Islands (Kitaa) (sms-nuk),64.0625,-52.041667,,0.025,,3532,315,108,,,,202,L398 U400 4.7s,ID+2 gap,81472,, +298,TJK,,CG,b,Kulob=Kulyab (ktl),37.941667,69.79,,0.025,,5047,82,123,,,,,,34200004,,, +298,TZA,,KO,b,Kilimanjaro (ars),-3.432778,36.993333,,0.025,,6814,145,141,,,,,,11400004,,, +298,CAN,,3N,b,Weyburn (SK),49.6875,-103.791667,,0.025,,6929,317,142,,,,,,DAID,81469,, +298,MLA,,AM,b,Malacca,2.270833,102.291667,,0.03,,10209,84,163,,,,0,L540 U540 ,81470,,, +298,URG,,MP,b,Durazno (du),-33.354167,-56.458333,,0.025,,11290,229,167,,,,,4.9s,81473,,, +298.5,D,,DGPS Helgoland,G,Helgoland/Frachtstrae (shs),54.180544,7.884142,,1,,250,23,59,,,,-298.5,,2000031,,, +299,D,,SL,b,Berlin / Schnefeld (brb),52.395833,13.625,,0.025,,492,83,78,,,,0,L1020 U1020 10.0s,81480,,, +299,F,,BO,b,St Etienne / Boutheon (42),45.520833,4.291667,,0.025,,749,193,80,,,,,L399 U405 10.0s,ID+7 gap,81475,, +299,GRC,,HIO,b,Khios (neg-khi),38.354167,26.125,,0.025,,2160,127,95,,,,0,L1050 U1050 ,ID+11 gap,81477,, +299,CAN,,J4,b,Fort Mackay (AB),57.229167,-111.041667,,0.2,,6595,326,130,,,,,,87019,,, +299,CAN,,TV,b,Turner Valley (AB),50.770833,-114.375,,0.2,,7298,323,137,,,,,U414 10.2s,DAID,81482,, +299,USA,,VV,b,Camor (PA),39.895833,-79.708333,,0.025,,6388,295,137,,,,,,81483,,, +299,USA,,HW,b,Cubla Wilmington (OH),39.354167,-83.875,,0.025,,6686,297,140,,,,0,L1060 U1062 6.12s,81478,,, +299,USA,,TR,b,Bristol (TN),36.5625,-82.291667,,0.025,,6808,294,141,,,,991,L1049 U1037 4439s,81481,,, +299,ALS,,KKA,b,Koyak Alfred Adams (AK),64.9375,-161.125,,0.025,,6956,354,143,,,,,L1040 ,86331,,, +299,THA,,KB,b,Kroby (krb),8.104167,98.958333,,0.025,,9470,83,161,,,,,,2xID+44 gap,81479,, +299,AUS,,CWR,b,Cowra (NSW),-33.854167,148.625,,0.025,,16393,71,184,,,,,L409 U404 9s,81476,,, +299.5,NOR,,KN,b,Svolvaer / Helle / Skrova,68.145833,14.625,,0.025,,1836,11,91,,,,502,L407 U396 10.0s,ID+8 gap,81484,, +300,CZE,,KD,b,Kbely / Praha East (ST),50.145833,14.625,,0.025,,613,108,79,,,,41,L1178 U1035 8.3s,81493,,, +300,POL,,F,b,Pruszcz Gdanski,54.229167,18.708333,,0.025,,852,69,81,,,,5,L650 U660 5.2s,81490,,, +300,E,,ZMR,b,Zamora (CAL-ZA),41.520833,-5.625,,0.1,,1488,222,82,,,,986,L1057 U1055 6.2s,ID+2 gap,81511,, +300,S,,SC,b,Linkping/Malmen & Saab,58.4375,15.541667,,0.025,,909,36,82,,,,5,L404 U410 5.0s,81503,,, +300,SRB,,PV,b,Novi Sad / Cenej / Petrovaradin (Voj-jbc),45.145833,19.458333,,0.025,,1229,124,85,,,,14,L975 U1020 9.9s,ID+7 tone,81501,, +300,RUS,,NP,b,Pskov (PS),57.8125,28.458333,,0.025,,1535,57,88,,,,,14.9s,IDx2,81497,, +300,RUS,,PK,b,Pskov (PS),57.729167,28.375,,0.025,,1528,57,88,,,,,30.0s,IDx2,81500,, +300,RUS,,AR,b,Ryazan / Dyagilevo (RY),54.645833,39.541667,,0.025,,2195,69,95,,,,,,81486,,, +300,RUS,,LM,b,Ryazan / Dyagilevo (RY),54.645833,39.541667,,0.025,,2195,69,95,,,,,,81495,,, +300,LBY,,OJ,b,As Sidr (srt),30.645833,18.333333,,0.025,,2578,153,99,,,,5,L400 U400 ,ID+2 gap,81498,, +300,IRN,,TBZ,b,Tabriz (eaz),38.104167,46.208333,,0.025,,3433,101,107,,,,993,L1050 U1035 10.3s,ID+7 gap,81506,, +300,CAN,,YIV,b,Island Lake (MB),53.854167,-94.625,,0.5,,6159,315,122,,,,,U405 10.0s,DAID,81509,, +300,RUS,,UF,b,Novokuznetsk (KE),53.854167,86.875,,0.025,,5092,54,124,,,,,,81507,,, +300,CAN,,YOG,b,Ogoki Post (ON),51.645833,-85.875,,0.025,,5878,309,132,,,,,U400 10.4s,DAID,81510,, +300,TZA,,BK,b,Bukoba (kgr),-1.331111,31.825556,,0.025,,6402,149,137,,,,,,11400005,,, +300,RRW,,CR,b,Rusumo,-2.268889,30.717222,,0.025,,6464,151,138,,,,,,9800002,,, +300,CAN,,Q5,b,Grande Cache (AB),53.9375,-118.875,,0.025,,7182,328,145,,,,,U386 10.28s,DAID,81502,, +300,CLM,,ABL,b,Ambalema (tol),0.770833,-74.791667,,1,,9340,264,145,,,,,,81485,,, +300,CAN,,TVK,b,Turner Valley (AB),50.770833,-114.375,,0.025,,7298,323,146,,,,,,87020,,, +300,MEX,,LAP,b,La Paz (Baja California) (bcs),24.0625,-110.375,,1,,9567,305,146,,,,985,L1020 U990 7.24s,DA3ID,81494,, +300,USA,,SPF,b,Black Hills Spearfish (SD),44.479167,-103.791667,,0.025,,7374,313,147,,,,,U1021 5.0s,81505,,, +300,CUB,,UGT,b,Guantnamo (gu),20.0625,-75.125,,0.025,,7691,276,150,,,,998,L681 U678 5878s,81508,,, +300,B,,FB,b,Tramanda (RS),-29.979167,-50.125,,0.5,,10652,227,152,,,,,,81491,,, +300,B,,BCH,b,Bacacheri (PR),-25.395833,-49.208333,,0.1,,10168,228,158,,,,,,81487,,, +300,BIO,,NDG,b,Diego Garcia (dga),-7.2925,72.384167,,0.025,,9062,114,160,,,,,,12200003,,, +300,MYA,,ME,b,Myeik,12.449722,98.622778,,0.025,,9068,81,160,,,,,,22100033,,, +300,B,,PKT,b,Paracatu (MG),-17.229167,-46.958333,,0.025,,9265,231,161,,,,,,86332,,, +300,B,,SK,b,Maca (RJ),-22.020833,-41.041667,,0.025,,9439,223,161,,,,,,81504,,, +300,B,,IP,b,Jardim (SP),-22.979167,-47.125,,0.025,,9829,228,162,,,,,,81492,,, +300,INS,,OY,b,Bandung (JB-ban),-6.9375,107.625,,0.025,,11381,85,168,,,,0,L991 U1020 8s,81499,,, +300.5,D,,LW,b,Kln / Bonn (nrw),50.898278,7.252558,,0.025,,147,156,73,,,,498,L1022 U1015 6.9s,81515,,, +300.5,UKR,,GE,b,Genicheskiy / Henichesk (KE),46.1875,34.791667,,0.025,,2151,97,94,,,,-300.5,,81513,,, +300.5,UKR,,BS,b,Belosarayskiy,46.895833,37.375,,0.025,,2291,92,96,,,,-300.5,,81512,,, +300.5,UKR,,NB,b,Berdianskiy Nizhniy (ZP),46.645833,36.791667,,0.025,,2263,93,96,,,,-300.5,,81516,,, +300.5,RUS,,SN,b,Mys Setnavolok,69.395833,33.541667,,0.025,,2380,26,97,,,,-300.5,,81517,,, +300.5,RUS,,TB,b,Mys Teriberskiy,69.270833,35.125,,0.025,,2420,27,97,,,,-300.5,,81518,,, +300.5,RUS,,UR,b,Mys Chyernyy,68.354167,38.625,,0.025,,2480,31,98,,,,-300.5,,81519,,, +300.5,RUS,,KS,b,Mys Kanin,68.645833,43.291667,,0.025,,2663,33,100,,,,-300.5,,81514,,, +301,F,,RTN,b,Romorantin / Pruniers (41),47.3125,1.708333,,0.025,,631,214,79,,,,,U8 19.0s,ID+15 tone,81521,, +301,LBY,,TW,b,Tripoli / Ghararah (tbl),32.645833,13.041667,,0.025,,2230,164,95,,,,0,L1020 U1020 ,ID+8 gap,81522,, +301,HND,,ROA,b,Roatan (bah),16.3125,-86.541667,,0.025,,8781,282,159,,,,,U1017 9944s,81520,,, +301.5,I,,TRE,b,Treviso (tv),45.604167,12.125,,0.025,,835,148,81,,,,503,L1014 U1020 ,ID+7 gap,81524,, +301.5,I,,CMP,b,Campagnano (rm),42.104167,12.375,,0.025,,1200,156,85,,,,499,L1023 U1018 ,ID+5.5 gap,81523,, +302,F,,TH,b,Villacoublay / Vlizy (78),48.770833,2.375,,0.025,,468,219,78,,,,,U9 15.0s,DAID,81536,, +302,F,,ROM,b,Rodez / Marcillac (12),44.354167,2.625,,0.025,,907,199,82,,,,,U3 20.0s,ID+14 tone,81535,, +302,MNE,,NIK,b,Niksic (NK),42.770833,18.958333,,0.04,,1399,133,85,,,,0,L1017 U1015 9.7s,ID+6 tone,81531,, +302,TUR,,YT,b,Antalya LTAI (akd-ant),36.875736,30.789097,,0.025,,2549,122,98,,,,,U1018 ,ID+8 gap,81539,, +302,JOR,,JYT,b,Qatraneh (kar),31.229167,36.041667,,0.025,,3341,122,106,,,,979,L1020 U978 ,Cont. ID,81530,, +302,USA,,V,b,Point Vincente Light (CA),43.270833,-79.208333,,0.025,,6104,297,134,,,,,,87023,,, +302,CAN,,QW,b,North Battleford (SK),52.8125,-108.375,,0.04,,6868,321,140,,,,,U396 10.3s,DAID,81534,, +302,CAN,,XY,b,Whitehorse (YT),60.770833,-135.125,,0.025,,7006,340,143,,,,,U408 10s,DAID,81538,, +302,USA,,EAG,b,Eagle Grove (IA),42.729167,-93.875,,0.025,,6998,306,143,,,,,U1015 ,81528,,, +302,USA,,HO,b,Beady Huron (SD),44.4375,-98.375,,0.025,,7100,310,144,,,,0,L1034 U1020 ,81529,,, +302,USA,,MBY,b,Moberly (MO),39.479167,-92.458333,,0.025,,7185,302,145,,,,,,87022,,, +302,CAN,,6K,b,Vernon (BC),50.354167,-119.291667,,0.025,,7531,326,148,,,,0,L405 U408 8.5s,DAID,81525,, +302,USA,,CWS,b,Conway (AR),35.104167,-92.458333,,0.025,,7549,299,148,,,,,U1019 6907s,81527,,, +302,USA,,PU,b,Mertz Pueblo (CO),38.270833,-104.625,,0.025,,7961,309,153,,,,985,L1045 U1020 6.61s,81533,,, +302,USA,,L,b,Point Loma Light (CA),32.645833,-117.208333,,0.025,,9116,315,160,,,,,,87021,,, +302,AUS,,BUD,b,Bundaberg (QLD),-24.895833,152.291667,,0.025,,15846,57,182,,,,,U400 8s,86333,,, +302,AUS,,XP,b,Bundaberg (QLD),-24.895833,152.291667,,0.025,,15846,57,182,,,,,L400 U400 8s,86335,,, +302,AUS,,BN,b,Brisbane (QLD),-27.395833,153.125,,0.025,,16121,58,183,,,,993,L1032 U1019 9.75s,81526,,, +302,AUS,,WYY,b,Wynyard (TAS),-40.979167,145.708333,,0.025,,16718,84,185,,,,,U1020 20s,86334,,, +302.5,D,,DGPS Koblenz (Rhein),G,Koblenz/Alte Heerstrae (rlp),50.333725,7.638711,,1,,215,156,59,,,,-302.5,,2000032,,, +303,AUT,,RTT,b,Innsbruck / Rattenberg,47.4375,11.958333,,0.025,,654,140,80,,,,0,L1020 U1020 ,ID+8 gap,81545,, +303,POL,,NKA,b,Poznan / Krzesiny / Kamera,52.3125,17.041667,,0.025,,724,84,80,,,,995,L1020 U1002 7.2s,81543,,, +303,AUT,,WO,b,Wien / Schwechat,48.145833,16.458333,,0.025,,840,118,81,,,,0,L1020 U1020 10.0s,ID+7 gap,81546,, +303,NOR,,KPG,b,Sogndal / Haukasen / Kaupanger,61.1875,7.208333,,0.025,,1011,2,83,,,,5,L401 U400 ,ID+6 gap,81541,, +303,RUS,,PU,b,Sankt-Peterburg/Pulkovo (SP),59.8125,30.208333,,0.025,,1697,50,90,,,,0,L400 U400 ,81544,,, +303,CAN,,1X,b,Grand Banks/Terra Nova Platform (NL),46.479167,-48.541667,,0.025,,3936,283,112,,,,,,81540,,, +303,CAN,,YPP,b,Parent (QC),47.895833,-74.708333,,1,,5507,299,112,,,,0,L400 U381 9.8s,DAID,81547,, +303,CAN,,PPP,b,Pointe Petre (ON),43.8125,-77.125,,0.15,,5938,297,125,,,,,,87025,,, +303,PAK,,GD,b,Gwadar (blc),25.227778,62.330556,,0.025,,5519,100,128,,,,,,31500036,,, +303,USA,,MRT,b,Marysville (OH),40.229167,-83.375,,0.025,,6587,297,139,,,,,L1013 U1014 ,87024,,, +303.5,D,,DGPS Zeven,G,Zeven/Meierhfen 31 (nds),53.284628,9.262464,,1,,232,55,59,,,,-303.5,,2000033,,, +303.5,RUS,,WD,b,Mys Nemetski,69.9375,31.958333,,0.025,,2374,24,97,,,,-303.5,,81550,,, +303.5,RUS,,KO,b,Konushinskiy,67.1875,43.791667,,0.025,,2619,36,99,,,,-303.5,,81549,,, +303.5,RUS,,CHL,b,Mys Chirikova (MA),59.479167,150.541667,,0.025,,7196,19,145,,,,-303.5,,81548,,, +304,POR,,VR,b,Villa Real (vrl),41.229167,-7.708333,,0.025,,1614,227,89,,,,998,L405 U400 ,Cont.ID,81560,, +304,RUS,,BF,b,Ukhta (KO),63.520833,53.791667,,0.025,,2991,46,103,,,,0,L400 U400 ,81551,,, +304,RUS,,DP,b,Ukhta (KO),63.604167,53.791667,,0.025,,2991,46,103,,,,0,L1020 U1020 15.1s,IDx2,81554,, +304,ALG,,MOK,b,Bordj Badji Mokhtar (1),21.354167,0.958333,,0.025,,3452,190,107,,,,,L1040 ,Cont. ID,81558,, +304,CAN,,ZQM,b,Riverview (Moncton) (NB),46.020833,-64.791667,,0.1,,5020,292,117,,,,993,L416 U401 ,ID+4 tone,81561,, +304,CAN,,F,b,Riverview / Moncton (NB),46.020833,-64.791667,,0.025,,5020,292,123,,,,,U416 ,87026,,, +304,CAN,,D4,b,Rocanville (SK),50.479167,-101.541667,,0.025,,6757,316,141,,,,,U404 ,DAID,81553,, +304,CAN,,FH,b,McLeod (Whitecourt) (AB),54.145833,-115.791667,,0.025,,7048,326,143,,,,,L400 U387 9.43s,DAID,81555,, +304,USA,,BN,b,Dobbs Nashville (TN),36.020833,-86.708333,,0.025,,7126,296,144,,,,,U1020 ,81552,,, +304,USA,,LVM,b,Livingston (MT),45.6875,-110.458333,,0.025,,7587,318,149,,,,,U1850 ,81557,,, +305,FIN,,S,b,Mariehamn,60.145833,19.875,,0.025,,1218,38,85,,,,5,L399 U405 ,ID+4 gap,81580,, +305,BUL,,GO,b,Gorna Oryahovitsa (vlt),43.141111,25.813056,,0.025,,1754,117,91,,,,0,L1020 U1020 ,ID+5.5s tone,81565,, +305,RUS,,N,b,Ostafyevo,55.520833,37.458333,,0.025,,2055,67,94,,,,,L1015 U1022 ,86340,,, +305,RUS,,P,b,Ostafyevo,55.520833,37.541667,,0.025,,2060,67,94,,,,0,L400 U400 15.0s,IDx2 + 8 tone,81577,, +305,TUR,,YAA,b,Yalova (mam-yal),40.5625,29.375,,0.025,,2166,117,95,,,,984,L1097 U1065 ,Cont. ID,81583,, +305,CAN,,LT,b,Alert Bay (NU),82.520833,-62.208333,,1,,3975,348,97,,,,,U413 10.0s,DAID,81569,, +305,RUS,,FK,b,Lhata,64.395833,40.708333,,0.025,,2381,42,97,,,,,,86338,,, +305,TUR,,NK,b,Ankara / Esenboga (ica-ank),40.104167,32.958333,,0.025,,2422,113,97,,,,,U1075 ,Cont. ID,81573,, +305,LBY,,GS,b,Sarir /A.G Concession 65 (wah),27.645833,22.541667,,0.025,,3033,148,103,,,,998,L1023 U1020 ,ID+7.5 gap,81566,, +305,CAN,,YQ,b,Churchill / Eastern Creek (MB),58.770833,-93.958333,,0.5,,5767,320,118,,,,,U405 10.0s,DAID,81584,, +305,LCA,,BNE,b,Hewanorra (vft),13.729167,-60.958333,,0.1,,7268,261,140,,,,,L1020 8.0s,86337,,, +305,CAN,,Z1,b,Three Hills (AB),51.6875,-113.208333,,0.049,,7168,323,142,,,,996,L395 U391 5.11/10.2s,DAID,81585,, +305,CAN,,P,b,Pine Island Light (BC),50.979167,-127.708333,,0.15,,7770,331,143,,,,,U400 ,DA3ID,87028,, +305,ALS,,PEE,b,Peters Creek Talkeetna (AK),62.3125,-150.125,,0.025,,7126,348,144,,,,,L1020 ,81578,,, +305,USA,,OI,b,Tommi South Sioux City (NE),42.479167,-96.458333,,0.025,,7161,307,145,,,,10,L1020 U1037 6.45s,81575,,, +305,B,,MDD,b,Monte Dourado Almeirim (PA),-0.895833,-52.625,,0.1,,8042,244,147,,,,,,81570,,, +305,B,,NR,b,Ilha da Moela (SP),-24.0625,-46.291667,,0.5,,9893,227,150,,,,,,81574,,, +305,B,,CNB,b,Cana Brava (GO),-13.5625,-48.208333,,0.2,,8980,233,151,,,,,,81564,,, +305,USA,,LST,b,Lone Star (TX),32.9375,-94.708333,,0.025,,7867,299,152,,,,,L1022 U1017 3.5s,87027,,, +305,AFS,,MH,b,Mafikeng (NW),-25.729167,25.541667,,0.1,,8854,163,153,,,,,L394 11.8s,81571,,, +305,USA,,ONO,b,Ontario (OR),44.020833,-117.041667,,0.025,,8033,321,153,,,,1,L1025 U1019 8.4s,81576,,, +305,MYA,,MW,b,Magway,20.165833,94.938056,,0.025,,8154,78,155,,,,,,22100029,,, +305,USA,,RO,b,Topan Roswell (NM),33.354167,-104.458333,,0.025,,8390,306,157,,,,983,L1050 U1019 6.0s,81579,,, +305,B,,YLH,b,Ilhus (BA),-14.8125,-39.041667,,0.025,,8629,225,158,,,,,,86341,,, +305,B,,BDA,b,Boca do Acre (AM),-8.895833,-67.458333,,0.025,,9711,252,162,,,,,,86336,,, +305,ARG,,C,b,Ministro Pistarini (ba),-34.8125,-58.541667,,0.08,,11532,230,163,,,,,7.7s,81562,,, +305,CHL,,SER,b,La Florida La Serena (Coquimbo) (CO),-29.895833,-71.208333,,0.1,,11810,242,163,,,,,,81581,,, +305,INS,,SP,b,Sei Pakning,1.354167,102.125,,0.025,,10278,85,164,,,,0,L794 U794 ,81582,,, +305,ICO,,CC,b,Cocos Keeling Isl. (WA),-12.145833,96.791667,,0.025,,11096,97,167,,,,,,81563,,, +305,AUS,,GTH,b,Griffith (NSW),-34.270833,146.041667,,0.5,,16258,74,171,,,,,U400 8s,81567,,, +305.7,ISL,,DA,b,Dalatangi,65.270833,-13.541667,,0.1,,1846,330,85,,,,733,L997 U974 ,81586,,, +306,I,,PAR,b,Parma (pr),44.8125,10.291667,,0.04,,860,159,80,,,,3,L1028 U1020 ,ID+2 gap,81588,, +306,HNG,,TPS,b,Tpisp (Pes),47.479167,19.458333,,0.025,,1067,114,84,,,,998,L1024 U1020 10.0s,81589,,, +306,FIN,,L,b,Jyvskyl,62.395833,25.708333,,0.025,,1618,38,89,,,,0,L402 U408 ,81587,,, +306,GRL,,GN,b,Qeqertarsuaq=Godhavn (qaa-qeq),69.229167,-53.541667,,0.025,,3571,325,109,,,,,,87029,,, +306,CAN,,R4,b,Primrose (AB),55.395833,-111.125,,0.025,,6757,325,141,,,,,,87031,,, +306,USA,,MKO,b,Muskogee (OK),35.604167,-95.291667,,0.025,,7674,301,150,,,,,L1070 U~1024 ,87030,,, +306,CHN,,WX,b,Changshengqiao (CQ),29.520833,106.625,,0.025,,8106,64,154,,,,,U1026 ,81590,,, +306.5,F,,AV,b,Avord (18),46.895833,2.958333,,0.025,,631,205,79,,,,-306.5,U7 23.0s,ID+18 tone,81591,, +306.5,RUS,,MV,b,Morzhovskiy,66.729167,42.458333,,0.025,,2547,37,98,,,,-306.5,,81592,,, +306.5,RUS,,SC,b,Sosnovetskiy / Ostrov Sosnovets,66.479167,41.708333,,0.025,,2506,37,98,,,,-306.5,,81594,,, +306.5,RUS,,OK,b,Ostrov Kolguyev,69.520833,49.125,,0.025,,2914,33,102,,,,-306.5,,81593,,, +307,LUX,,DIK,b,Diekirch (die),49.854167,6.125,,0.025,,252,185,75,,,,,U1020 9.8s,81595,,, +307,RUS,,VA,b,Dobrinskoye,56.270833,40.625,,0.025,,2249,65,95,,,,,L1029 ,81606,,, +307,GRC,,THR,b,Santorini/Thira (seg-kik),36.395833,25.458333,,0.025,,2300,132,96,,,,,L500 ,ID+7 gap,81605,, +307,RUS,,LA,b,Lazarevskoye (KD),43.9375,39.291667,,0.025,,2582,97,99,,,,12,L850 U874 ,IDx2 + 5 gap,81598,, +307,RUS,,MA,b,Lebyazhye,50.1875,45.208333,,0.025,,2682,79,100,,,,,U1020 ,81600,,, +307,RUS,,NB,b,Lebyazhe,50.1875,45.208333,,0.025,,2682,79,100,,,,,,81603,,, +307,ISR,,JYG,b,Jericho,31.854167,35.458333,,0.025,,3252,122,105,,,,0,L1023 U1023 ,Cont. ID,81597,, +307,CAN,,M5,b,Manning (AB),56.9375,-117.625,,0.025,,6862,329,142,,,,,U396 10.18s,DAID,81599,, +307,USA,,LUX,b,Laurens (SC),34.520833,-81.958333,,0.025,,6950,292,142,,,,,U1030 ,87034,,, +307,CAN,,G,b,Sand Heads Light Station (BC),49.104167,-123.291667,,0.025,,7799,328,151,,,,,U400 ,DA3ID,87033,, +307,IND,,TR,b,Tiruchirapalli (TN),10.749722,78.688333,,0.025,,7859,97,152,,,,,,32200045,,, +307,CHN,,SL,b,Maguohe,25.4375,103.291667,,0.025,,8249,69,155,,,,,,86342,,, +307,CLM,,EJA,b,Barrancabermeja (sat),7.020833,-73.791667,,0.025,,8723,267,159,,,,,,81596,,, +307,USA,,AV,b,Avalon Harbor / Santa Catalina (CA),33.354167,-118.291667,,0.025,,9101,316,160,,,,,,87032,,, +307,AUS,,MJM,b,Manjimup (WA),-34.270833,116.125,,0.025,,14233,99,177,,,,,,81601,,, +307,FJI,,NA,b,Nausori (CE-NT),-18.0625,178.541667,,0.05,,16167,13,180,,,,,U1009 10.1s,81602,,, +307.5,E,,PA,b,Palma (PMI) (BAL-ML),39.604167,2.791667,,0.025,,1418,193,87,,,,-307.5,L1014,81607,,, +307.5,AFS,,RD,b,Rand (GT),-26.3125,28.125,,0.05,,8973,160,157,,,,500,L1118 U1118 10.1s,81608,,, +308,D,,DGPS Gro Mohrdorf,G,Klein Mohrdorf/Gnz (mev),54.374267,12.933819,,1,,502,57,62,,,,,,2000034,,, +308,MNE,,MOJ,b,Mojkovac (MK),42.9375,19.541667,,0.04,,1414,131,85,,,,1,L1005 U1031 10.0s,ID+5 tone,81616,, +308,BLR,,G,b,Minsk 2 (MI),53.854167,28.041667,,0.025,,1455,74,88,,,,,L1020 ,81611,,, +308,BLR,,V,b,Minsk 2 (MI),53.854167,28.041667,,0.025,,1455,74,88,,,,,U1022 6.2s,81624,,, +308,RUS,,QE,b,Sankt-Peterburg/Rzhevka (SP),59.979167,30.625,,0.025,,1725,50,90,,,,,,81622,,, +308,ISL,,GR,b,Grmsey (ne),66.520833,-17.958333,,0.025,,2089,329,94,,,,,U900 60.0s,IDx4 + 24 tone,81612,, +308,RUS,,L,b,Izhevsk (UD),56.854167,53.458333,,0.025,,3022,61,103,,,,,U1035 ,81614,,, +308,RUS,,M,b,Izhevsk (UD),56.8125,53.458333,,0.025,,3023,61,103,,,,,,81615,,, +308,PAK,,PS,b,Peshawar (kpk),33.995556,71.504167,,0.025,,5452,85,127,,,,,U1011 ,81620,,, +308,USA,,DST,b,Desmet Missoula (MT),46.9375,-114.125,,0.2,,7637,321,140,,,,,,87037,,, +308,CAN,,L6,b,Yo-Yo (BC),58.9375,-121.458333,,0.025,,6807,332,141,,,,,,87040,,, +308,USA,,EQZ,b,Captain Seymour (IN),38.854167,-85.958333,,0.025,,6852,298,141,,,,,7137s,81609,,, +308,CAN,,E,b,Edmonton (AB),53.270833,-113.625,,0.025,,7043,325,143,,,,,,87038,,, +308,CAN,,ZZD,b,Calmar (Edmonton Intl Apt) (AB),53.270833,-113.625,,0.025,,7043,325,143,,,,,U397 10.69s,DAID,81626,, +308,USA,,EVZ,b,Cartersville (GA),34.1875,-84.875,,0.025,,7161,294,145,,,,,,81610,,, +308,USA,,BVG,b,Enterprise (AL),31.354167,-85.958333,,0.025,,7462,292,148,,,,,,87036,,, +308,USA,,HIL,b,Hilyn Great Bend (KS),38.354167,-98.875,,0.025,,7643,306,149,,,,,,87039,,, +308,CHN,,Q,b,Beijing/Capital (BJ),40.104167,116.375,,0.025,,7743,50,150,,,,,,81621,,, +308,J,,OK,b,Okinawa (kyu-oki),26.104167,127.625,,0.4,,9616,50,150,,,,0,L1020 U1020 ,DAID,81617,, +308,USA,,PFL,b,Post Fort Sill (OK),34.604167,-98.375,,0.025,,7938,303,152,,,,,L1040 ,81619,,, +308,USA,,UTS,b,Huntsville (TX),30.729167,-95.625,,0.028,,8112,298,154,,,,,U1024 4.8s,81623,,, +308,USA,,AE,b,Albuquerque (NM),35.229167,-106.708333,,0.025,,8343,309,156,,,,,,87035,,, +308,AUS,,OOD,b,Oodnadatta (SA),-27.5625,135.458333,,0.025,,15021,77,180,,,,,L1020 10s,81618,,, +308,AUS,,MK,b,Mackay (QLD),-21.145833,149.208333,,0.025,,15324,57,181,,,,,U1020 8s,86344,,, +308.5,RUS,,OK,b,Smolensk (SM),54.8125,32.041667,,0.025,,1713,70,90,,,,-308.5,,81628,,, +308.5,NOR,,HLN,b,Honningsvg / Helnes,71.0625,26.208333,,0.025,,2328,18,96,,,,-308.5,L308 U309 10.0s,81627,,, +309,D,,MW,b,Berlin / Schnefeld (brb),52.354167,13.375,,0.025,,475,84,78,,,,,L1024 U1020 ,81634,,, +309,F,,DO,b,Dole / Tavaux (39),46.979167,5.291667,,0.025,,576,188,79,,,,,U6 ,ID+15 tone,81630,, +309,S,,LG,b,Satens / Tune,58.4375,12.708333,,0.025,,808,27,81,,,,0,L402 U402 5.1s,81633,,, +309,ISR,,BGN,b,Tel Aviv / Ben Gurion (tav),32.020833,34.958333,,0.025,,3208,123,105,,,,,,81629,,, +309,IRN,,ISR,b,Iranshahr (sib),27.229167,60.708333,,0.025,,5246,100,125,,,,,U1037 ,ID+8 gap,81632,, +309,USA,,EEX,b,Emanuel Co Swainsboro (GA),32.6875,-82.458333,,0.025,,7130,291,144,,,,2,L1017 U1019 4097s,81631,,, +309,CAN,,J,b,Race Rocks Light Station (BC),48.3125,-123.541667,,0.1,,7885,327,146,,,,,U400 ,DA3ID,87041,, +309.5,UKR,,OD,b,Odesskiy Lt. (OD),46.395833,30.708333,,0.025,,1864,100,92,,,,-309.5,,81637,,, +309.5,UKR,,WR,b,Vorontsovskiy Front Lt. (OD),46.520833,30.791667,,0.025,,1863,100,92,,,,-309.5,,81641,,, +309.5,UKR,,TR,b,Mys Tarkhankutskiy Lt.,45.354167,32.541667,,0.025,,2045,101,93,,,,-309.5,,81639,,, +309.5,UKR,,EYA,b,Mys Yevpatoriyskiy,45.15,33.27,,0.025,,2105,101,94,,,,-309.5,U6,81636,,, +309.5,UKR,,SW,b,Mys Khersones Lt.,44.5625,33.375,,0.025,,2147,102,94,,,,-309.5,,81638,,, +309.5,RUS,,UR,b,Mys Chernyy,68.354167,38.625,,0.025,,2480,31,98,,,,-309.5,,81640,,, +310,SVK,,DBV,b,Dubov (ZA),48.854167,18.791667,,2,,946,108,63,,,,15,L1058 U1081 6.0s,ID+8 gap,81650,, +310,XOE,,TRL,b,Troll Platform,60.645833,3.708333,,0.025,,963,351,83,,,,0,L402 U405 ,81661,,, +310,FIN,,KUR,b,Kuopio / Kurki,62.9375,27.875,,0.025,,1743,38,90,,,,1,L406 8.5s,81653,,, +310,RUS,,BU,b,Smolensk (SM),54.854167,32.041667,,0.025,,1713,70,90,,,,,,81647,,, +310,RUS,,OK,b,Smolensk (SM),54.854167,32.041667,,0.025,,1713,70,90,,,,,L1044 15.0s,IDx2,81656,, +310,UKR,,BI,b,Kiev / Boryspil (KY),50.395833,30.875,,0.025,,1705,87,90,,,,,L1036 ,81646,,, +310,UKR,,NO,b,Kiev / Borispol (KY),50.270833,30.875,,0.025,,1709,87,90,,,,,L1023 ,ID+6 gap,81655,, +310,E,,AMN,b,Almera (AND-AL),36.854167,-2.375,,0.025,,1831,206,91,,,,59,L1010 U1010 ,ID+8 gap,81645,, +310,FIN,,C,b,Oulu,64.9375,25.375,,0.025,,1787,30,91,,,,2,L410 U414 ,81648,,, +310,S,,A,b,Gllivare,67.145833,20.875,,0.025,,1849,20,91,,,,,,81643,,, +310,CNR,,LZ,b,Lanzarote (LPM-LA),28.9375,-13.625,,0.3,,3061,220,93,,,,,U1011 14.5s,ID+11 gap,81654,, +310,ISL,,SB,b,Selardalur,65.770833,-23.958333,,0.025,,2271,324,96,,,,,L1038 9.6s,ID+7 gap,81658,, +310,TUR,,SIV,b,Sivas (ica-siv),39.770833,36.875,,0.025,,2697,108,100,,,,998,L1025 U1022 ,ID+5 gap,81659,, +310,LBY,,VA,b,Amal V12 (wah),29.479167,21.041667,,0.025,,2790,149,101,,,,0,L400 U400 ,ID+2 gap,81664,, +310,IRN,,GGN,b,Gorgan (gsn),36.895833,54.375,,0.025,,4071,95,114,,,,,L1021 ,ID+4 gap,81651,, +310,MTN,,AA,b,Aioun El Atrouss,16.6875,-9.625,,0.025,,4184,206,115,,,,,,81644,,, +310,TJK,,PR,b,Oktyabrsky (ntc),38.533056,68.401667,,0.025,,4912,82,122,,,,,,34200006,,, +310,CAN,,8A,b,Carlyle (SK),49.645833,-102.291667,,0.025,,6862,316,142,,,,,U1015 ,DAID,81642,, +310,CUB,,UOC,b,Cayo Coco (ca),22.4375,-78.291667,,0.025,,7705,280,150,,,,,,81663,,, +310,B,,CN,b,Canivete (PA),0.520833,-50.375,,0.025,,7773,243,151,,,,,L1014 U1030 7.3s,81649,,, +310,B,,SW,b,Santa Marta (SC),-28.604167,-48.791667,,0.5,,10455,226,152,,,,,,81660,,, +310,B,,PSN,b,Pirassununga (SP),-21.979167,-47.375,,0.2,,9746,228,153,,,,,,81657,,, +310,MYA,,DWI,b,Dawei,14.115278,98.202778,,0.025,,8894,80,159,,,,,,22100017,,, +310,B,,MCL,b,Montes Claros (MG),-16.6875,-43.791667,,0.025,,9049,228,160,,,,,,86345,,, +310,ARG,,Z,b,Cataratas del Igauz (mn),-25.729167,-54.458333,,0.025,,10475,232,165,,,,,7s,86348,,, +310,NZL,,HK,b,Hokitika,-42.729167,170.958333,,0.25,,18459,54,181,,,,,L1020 4s,81652,,, +310.5,EGY,,DA,b,Damietta Mouth East (dyt),31.520833,31.875,,0.025,,3082,128,104,,,,-310.5,,81665,,, +311,D,,LMA,b,Lima / Brggen (nrw),51.354167,6.375,,0.025,,84,182,50,,,,999,L1021 U1015 10.1s,81678,,, +311,D,,CEL,b,Celle (nds),52.604167,10.125,,0.025,,258,76,76,,,,0,L1020 U1020 ,81669,,, +311,D,,NSN,b,Niederstetten (bw),49.395833,9.958333,,0.025,,392,139,77,,,,,L1038 U1020 ,ID+12 tone,81679,, +311,GRC,,KOS,b,Kos/Ippokratis (seg-dod),36.8125,27.125,,0.025,,2349,128,96,,,,998,L1025 U1020 ,ID+12 gap,81677,, +311,RUS,,BV,b,Elista (KX),46.354167,44.375,,0.025,,2796,88,101,,,,,,81668,,, +311,IRN,,ILM,b,Ilam (ilm),33.604167,46.375,,0.025,,3783,107,111,,,,996,L1051 U1052 ,Cont. ID,81676,, +311,CAN,,HY,b,Hay River (NT),60.770833,-115.708333,,0.025,,6454,331,138,,,,,,81675,,, +311,USA,,DVK,b,Goodall Danville (KY),37.5625,-84.791667,,0.025,,6884,296,142,,,,0,L1018 U1025 6.11s,81671,,, +311,CAN,,9Y,b,Pincher Creek (AB),49.520833,-113.958333,,0.05,,7395,322,144,,,,,U393 10.5s,DAID,81666,, +311,USA,,FET,b,Fremont (NE),41.4375,-96.541667,,0.025,,7252,306,145,,,,,U1005 ,81673,,, +311,USA,,AFT,b,Fort Smith (AR),35.3125,-94.458333,,0.025,,7650,301,149,,,,,,87042,,, +311,USA,,GK,b,Jembo Fort Smith (AR),35.3125,-94.458333,,0.025,,7650,301,149,,,,0,L1036 U1031 7.0s,81674,,, +311,USA,,MVI,b,Monte Vista (CO),37.520833,-106.041667,,0.025,,8102,310,154,,,,,U1040 6.0s,87044,,, +311,USA,,BFE,b,Brownfield (TX),33.1875,-102.208333,,0.025,,8280,305,156,,,,,U1015 6.9s,81667,,, +311,PNR,,TBG,b,Panama City (Isla de Taboga) (pnm),8.770833,-79.541667,,0.025,,8963,272,160,,,,,3.0/10.17s,81680,,, +311,AUS,,NTN,b,Normanton (QLD),-17.6875,141.041667,,0.025,,14523,63,178,,,,,U1023 9s,86349,,, +311,AUS,,CFS,b,Coffs Harbour (NSW),-30.3125,153.125,,0.05,,16379,61,181,,,,,L400 U400 8s,81670,,, +311,AUS,,CH,b,Coffs Harbour (NSW),-30.3125,153.125,,0.05,,16379,61,181,,,,,L400 U400 9.0s,87043,,, +311,AUS,,EDN,b,Edinburgh (SA),-34.6875,138.625,,0.025,,15794,82,182,,,,,U1034 10s,TWEB,81672,, +311.5,POL,,ML,b,Cewice,54.395833,17.791667,,0.025,,798,67,81,,,,504,L1012 U1010 5.9s,ID+6 gap,81681,, +312,SUI,,MUR,b,Muri for Bern / Belp (be),46.9375,7.458333,,0.025,,580,172,79,,,,0,L400 U400 ,81688,,, +312,S,,KBG,b,Karlsborg (vg),58.479167,14.375,,0.025,,868,32,82,,,,0,L400 U398 ,81686,,, +312,I,,TAQ,b,Tarquinia (vt),42.229167,11.708333,,0.025,,1169,158,85,,,,2,L1017 U1023 ,ID+4.5 gap,81690,, +312,S,,DJ,b,stersund/Froson,63.1875,14.375,,0.025,,1317,18,86,,,,,L402 U403 6.1s,81685,,, +312,MNE,,DAN,b,Danilvograd for Podgorica (DG),42.5625,19.125,,0.025,,1426,133,87,,,,995,L949 U947 10.0s,ID+7 tone,81684,, +312,BUL,,BOZ,b,Bozhurishte (sof),42.770833,23.208333,,0.025,,1629,123,89,,,,10,L1029 U1040 8.1s,ID+3 gap,81683,, +312,RUS,,S,b,Shenkursk,62.104167,42.875,,0.025,,2423,49,97,,,,,,81689,,, +312,RUS,,XT,b,Ryazanskaya (RY),44.979167,39.541667,,0.025,,2539,95,98,,,,3,L396 U402 ,ID+7 gap,81693,, +312,LBN,,BAB,b,Beirut International (bei),33.854167,35.458333,,0.025,,3078,120,104,,,,,U1030 ,ID+4 gap,81682,, +312,CAN,,L5,b,Spirit River (AB),55.770833,-118.791667,,0.05,,7010,329,140,,,,,U1020 ,87045,,, +312,CAN,,UNT,b,Naramata (Penticton) (BC),49.604167,-119.625,,0.025,,7614,326,149,,,,,U409 10.0s,DAID,81692,, +312,B,,UI,b,Chu (RS),-33.729167,-53.375,,0.5,,11168,227,154,,,,,,81691,,, +312,MYA,,MS,b,Mong-Hsat,20.534167,99.2625,,0.025,,8410,75,157,,,,,,22100032,,, +312,TWN,,MR,b,Kueijen (TN),22.979167,120.291667,,0.025,,9502,58,161,,,,,4s,81687,,, +312.5,UKR,,AT,b,Mys Aytodorskiy,44.270833,34.041667,,0.025,,2209,102,95,,,,-312.5,,IDx4 + tone,81695,, +312.5,RUS,,VR,b,Mys Zheleznyy Rog,45.104167,36.708333,,0.025,,2340,97,96,,,,-312.5,,81701,,, +312.5,RUS,,AP,b,Mys Anapskiy,44.895833,37.291667,,0.025,,2391,97,97,,,,-312.5,,81694,,, +312.5,RUS,,DB,b,Doobskiy / Mys Doob,44.645833,37.875,,0.025,,2445,97,97,,,,-312.5,,IDx5 + tone,81698,, +312.5,RUS,,SW,b,Mys Syatonosskiy,68.145833,39.791667,,0.025,,2510,32,98,,,,-312.5,,81700,,, +312.5,SYR,,KML,b,Qamishli (has),37.020833,41.208333,,0.025,,3182,108,105,,,,500,L395 U395 ,ID+6 gap,81699,, +313,AUT,,AB,b,Innsbruck / Absam,47.270833,11.541667,,0.025,,652,144,79,,,,2,L1021 U1020 10.0s,81702,,, +313,AUT,,KI,b,Klagenfurt,46.645833,14.375,,0.025,,837,133,81,,,,2,L1021 U1021 ,81704,,, +313,HNG,,NT,b,Kecskemt/Titan (BaK),46.9375,19.708333,,0.025,,1116,116,84,,,,,,IDx2,81705,, +313,HNG,,TN,b,Kecskemt/Titan (BaK),46.895833,19.791667,,0.025,,1124,116,84,,,,,U1015 15.0s,IDx2 + 4 gap,81708,, +313,UKR,,G,b,Uzhgorod (ZH),48.645833,22.208333,,0.025,,1182,103,85,,,,,,81703,,, +313,GTM,,RBN,b,Rabinal (bvp),15.020833,-90.458333,,0.025,,9154,285,160,,,,,,81707,,, +313.5,D,,DGPS Mauken (Elbe),G,Mauken (san),51.718875,12.823531,,1,,442,93,61,,,,-313.5,,2000035,,, +314,BEL,,OZ,b,Brussels National (bru),50.8125,4.458333,,0.025,,198,224,75,,,,691,L402 U397 10.0s,DAID,81716,, +314,GRC,,FIS,b,Fiska (cmc-kil),41.104167,22.958333,,0.025,,1752,128,90,,,,998,L400 U400 ,ID+10 gap,81711,, +314,GRC,,KRC,b,Karpathos (seg-dod),35.4375,27.125,,0.025,,2473,130,98,,,,,L1025 ,ID+12 gap,81715,, +314,GRL,,GH,b,Nuuk=Godthb (Kitaa) (sms-nuk),64.1875,-51.708333,,0.025,,3514,315,108,,,,0,L405 U402 ,81713,,, +314,CAN,,ZN,b,Portage La Prairie CFB (MB),49.770833,-98.041667,,0.32,,6646,314,128,,,,,U1020 ,87050,,, +314,CAN,,4J,b,Knee Lake (MB),54.895833,-94.791667,,0.05,,6089,316,131,,,,,U387 10.0s,DAID,81709,, +314,CAN,,YN,b,Swift Current (SK),50.270833,-107.708333,,0.1,,7058,319,138,,,,,,87049,,, +314,CAN,,H,b,Langara Island Light Station (BC),54.270833,-133.041667,,0.15,,7606,336,141,,,,,U400 ,DA3ID,87048,, +314,USA,,POH,b,Pocahontas (IA),42.729167,-94.625,,0.025,,7040,306,143,,,,,,81717,,, +314,ALS,,SPY,b,Saint Paul Island (AK),57.145833,-170.208333,,0.15,,7862,358,144,,,,,U1022 ,81719,,, +314,USA,,EIW,b,Libourne / New Madrid County (MO),36.520833,-89.625,,0.025,,7262,298,146,,,,,U1015 ,87046,,, +314,USA,,VTN,b,Valentine (NE),42.854167,-100.541667,,0.025,,7348,310,146,,,,,U1025 5.45s,81720,,, +314,USA,,CVY,b,Cavalry Fort Riley (KS),39.020833,-96.791667,,0.025,,7470,305,148,,,,,U1031 8033s,81710,,, +314,USA,,GGU,b,Prague (OK),35.520833,-96.708333,,0.025,,7763,302,151,,,,,U1019 5.6s,81712,,, +314,USA,,F,b,Farallon Island Light Station (CA),37.6875,-122.958333,,0.15,,8892,322,152,,,,,U1010 ,87047,,, +314,CHN,,HZ,b,Tianmen (HU),30.645833,113.125,,0.025,,8396,58,157,,,,,,81714,,, +314,NZL,,RD,b,Miranda,-37.1875,175.291667,,0.025,,18142,32,190,,,,,4.06s,81718,,, +314.5,D,,DGPS Bad Abbach (Donau),G,Gundelshausen Schleuse (bay),48.947078,12.013356,,0.2,,529,129,69,,,,-314.5,,2000036,,, +314.5,FIN,,DGPS605,b,Marjaniemi (pp),65.039611,24.560694,,0.025,,1768,29,91,,,,-314.5,tx ID: 405,2600004,,, +315,D,,PAH,b,Parchim (mev),53.395833,11.625,,0.025,,379,66,77,,,,995,L1022 U1021 ,ID+6 gap,81741,, +315,F,,HOL,b,Villacoublay / Vlizy (78),48.729167,1.791667,,0.025,,498,223,78,,,,,U4 19.8s,ID+14 tone,81731,, +315,AUT,,TF,b,Trausdorf / Wiener Neustadt East,47.854167,16.291667,,0.025,,849,120,81,,,,0,L1044 U1041 10.2s,81748,,, +315,F,,MIL,b,Millau / Larzac (12),43.9375,3.208333,,0.025,,939,196,82,,,,,U4 20.0s,ID+15 tone,81736,, +315,I,,SPO,b,Marina di Ravenna (ra),44.479167,12.291667,,0.025,,953,151,83,,,,6,L1020 U1032 ,ID+4 gap,81747,, +315,UKR,,LO,b,Lviv (LV),49.854167,23.875,,0.025,,1245,95,85,,,,0,L1009 U1011 ,IDx2 +5 gap,81734,, +315,UKR,,LV,b,Lviv (LV),49.8125,23.958333,,0.025,,1252,95,85,,,,2,L1036 U1040 ,IDx2 + 6 gap,81735,, +315,FIN,,D,b,Tampere / Pirkkala / ijl,61.395833,23.541667,,0.025,,1460,38,88,,,,,L412 U412 4.1s,81724,,, +315,FIN,,Q,b,Kajaani / Rmpsl,64.270833,27.625,,0.025,,1820,34,91,,,,0,L405 U408 4.2s,81743,,, +315,RUS,,M,b,Girvas,62.479167,33.791667,,0.025,,1985,44,93,,,,,L398 U402 ,ID+3 gap,86353,, +315,MRC,,FEZ,b,Fes / Saiss,33.895833,-4.958333,,0.025,,2220,209,95,,,,0,L1020 U1020 10.06s,81727,,, +315,RUS,,RG,b,Tunosha (YA),57.5625,40.208333,,0.025,,2222,61,95,,,,0,L1020 U1021 ,81745,,, +315,TUR,,EN,b,Izmir / Adnan Merendes (ege-izm),38.270833,27.125,,0.025,,2222,126,95,,,,,U1020 ,Cont. ID,81726,, +315,TUR,,GBI,b,Ankara / Esenboga / Golbasi (ica-ank),39.729167,32.791667,,0.025,,2440,114,97,,,,,U1060 ,Cont. ID,81729,, +315,RUS,,CK,b,Kusshevskaya (KD),46.520833,39.541667,,0.025,,2457,91,98,,,,,15.5s,IDx2 + 4 gap,81723,, +315,RUS,,MYU,b,Kusshevskaya (KD),46.520833,39.541667,,0.025,,2457,91,98,,,,,,IDx2 + 6 gap,81737,, +315,RUS,,G,b,Astrakhan / Narimanovo (AS),46.270833,48.041667,,0.025,,3050,86,103,,,,,,81728,,, +315,KAZ,,TY,b,Atyrau (aty),47.145833,51.791667,,0.025,,3260,81,106,,,,,U394 10.0s,ID+7 gap,81750,, +315,KAZ,,YR,b,Atyrau (aty),47.0625,51.875,,0.025,,3270,81,106,,,,,U400 10.0s,ID+6 gap,81753,, +315,RUS,,TM,b,Roschino / Tyumen (TY),57.229167,65.375,,0.025,,3712,57,110,,,,,U381 ,81749,,, +315,B,,BL,b,Salinpolis (PA),-0.604167,-47.375,,0.5,,7699,240,137,,,,,L1006 U1050 6.9s,81722,,, +315,USA,,AT,b,Bruny Dayton (OH),39.854167,-84.375,,0.025,,6677,298,140,,,,998,L1023 U1020 8.59s,81721,,, +315,CLM,,UPI,b,Barranca de Upa (met),4.5625,-72.958333,,1,,8882,264,143,,,,,,81752,,, +315,CAN,,M,b,Sisters Islets Light Station (BC),49.479167,-124.458333,,0.1,,7805,329,145,,,,,U400 ,DA3ID,87051,, +315,B,,IH,b,Ilha Rasa (RJ),-23.0625,-43.125,,0.5,,9641,225,149,,,,,,81732,,, +315,CUB,,UBR,b,Cayo Las Brujas (ss),22.604167,-79.125,,0.025,,7747,281,150,,,,975,L1017 U1044 4750s,81751,,, +315,CUB,,USR,b,Ciego de vila (ca),21.729167,-78.791667,,0.025,,7798,280,151,,,,,,87052,,, +315,AFS,,PJ,b,Port St Johns (EC),-31.645833,29.541667,,0.25,,9582,160,152,,,,,U1027 8.52s,81742,,, +315,CLN,,CNL,b,Bandaranaike Intl (gmp),7.268333,79.950833,,0.025,,8250,99,155,,,,,,34700019,,, +315,B,,ORH,b,Ourinhos (SP),-22.979167,-49.875,,0.1,,9971,230,157,,,,,,81740,,, +315,TWN,,NK,b,Nangan (LC),26.151389,119.954444,,0.025,,9192,56,160,,,,,6.5s,81738,,, +315,ARG,,L,b,El Palomar (ba),-34.604167,-58.625,,0.08,,11518,230,163,,,,,1.7s,81733,,, +315,WAL,,HO,b,Wallis (wal),-13.229167,-176.208333,,0.025,,15685,4,182,,,,,20.0s,81730,,, +315.5,EGY,,KAB,b,Ras El Nakab (sin),29.604167,34.708333,,0.025,,3412,126,107,,,,-315.5,10.0s,81754,,, +315.5,EGY,,TAB,b,Taba (sin),29.604167,34.708333,,0.025,,3412,126,107,,,,-315.5,,81756,,, +315.5,EGY,,TBA,b,Taba (sin),29.604167,34.708333,,0.025,,3412,126,107,,,,-315.5,U1020 ,81757,,, +316,XOE,,CP,b,Amoco Leman,53.0625,2.208333,,0.025,,303,292,76,,,,,,86358,,, +316,XOE,,PA,b,Shell / Esso Leman Platform,53.0625,2.041667,,0.025,,313,291,76,,,,986,L420 U404 3.9s,81769,,, +316,DNK,,IN,b,Snderborg (sdk),55.020833,9.708333,,0.025,,390,33,77,,,,983,L435 U400 8.0s,81763,,, +316,XOE,,MUK,b,Conoco / Murdoch,54.270833,2.291667,,0.025,,365,313,77,,,,,L401 U390 6.0s,86360,,, +316,G,,EPM,b,Epsom for Heathrow (EN-SUR),51.3125,-0.375,,0.025,,476,262,78,,,,995,L405 U391 5.6s,81761,,, +316,IRL,,OE,b,Dublin (D),53.4375,-6.458333,,0.025,,877,285,82,,,,3,L399 U400 8.4s,81768,,, +316,NOR,,BGU,b,Bergerud,59.854167,11.291667,,0.025,,912,17,82,,,,3,L375 U382 ,81758,,, +316,G,,BRR,b,Barra (SC-WIL),57.020833,-7.458333,,0.025,,1045,307,83,,,,983,L431 U372 6.0s,81760,,, +316,HRV,,TNJ,b,Tounj (ka),45.270833,15.375,,0.025,,1004,136,83,,,,7,L1038 U1041 ,ID+5 gap,81773,, +316,I,,TEA,b,Teano (ce),41.3125,13.958333,,0.025,,1330,152,86,,,,0,L1046 U1043 8.0s,ID+5 gap,81772,, +316,SRB,,JA,b,Beograd/Jajinci (Srb-gbg),44.742917,20.4753,,0.025,,1318,123,86,,,,2,L1020 U1028 ,ID+6 gap,81764,, +316,ISL,,RE,b,Reykjanesskoli,65.9375,-22.458333,,0.025,,2220,325,95,,,,,U1030 6.0s,81770,,, +316,NOR,,BJO,b,Bjrnya / Bear Isl (bj),74.520833,19.125,,0.05,,2558,9,96,,,,2,L397 U401,81759,,, +316,KWT,,MG,b,Madinat al-Kuwayt (kuw),29.145833,48.041667,,0.025,,4254,110,116,,,,,,81766,,, +316,USA,,M,b,South Pass (LA),28.979167,-89.125,,0.15,,7861,293,144,,,,,,87053,,, +316,USA,,FF,b,Pecat Peachtree City (GA),33.3125,-84.458333,,0.025,,7206,293,145,,,,,L1003 5121s,81762,,, +316,USA,,MII,b,Caddo Mills (TX),33.020833,-96.208333,,0.025,,7949,300,152,,,,0,L1015 U1014 3.8s,81767,,, +316,THA,,MS,b,Mae Sot ,16.701667,98.539722,,0.025,,8693,78,159,,,,,,32900030,,, +316,THA,,SM,b,Samui (stn),9.5625,100.041667,,0.025,,9416,81,161,,,,,,81771,,, +316,MHL,,MAJ,b,Majuro Atoll (Dalap Island),7.0625,171.291667,,0.025,,13280,17,174,,,,2,L987 U1042 8.6s,81765,,, +317,F,,VS,b,Valenciennes / Denain (59),50.354167,3.375,,0.025,,288,228,76,,,,,L405 U406 10.0s,ID+8 gap,81793,, +317,XOE,,LEA,b,Leman 27A / Perenco UK Ltd Platform,53.0625,2.208333,,0.025,,303,292,76,,,,,L404 ,81784,,, +317,F,,MM,b,Montceau-les-Mines (71),46.604167,4.291667,,0.025,,631,195,79,,,,,U42 ,DAID,81785,, +317,SVK,,PPD,b,Poprad / Tatry (PO),49.0625,20.375,,0.025,,1041,103,83,,,,7,L1050 U1036 ,ID+3 gap,81787,, +317,EST,,OZ,b,Kardla (Hii),58.9375,22.875,,0.025,,1279,47,86,,,,6,L1018 U1077 ,81786,,, +317,NOR,,HG,b,Hegra,63.479167,11.041667,,0.025,,1293,10,86,,,,2,L387 U394 6.0s,81778,,, +317,NOR,,STT,b,Bod/Stott (no),66.9375,13.458333,,0.025,,1693,11,90,,,,5,L381 U389 ,81790,,, +317,RUS,,MU,b,Moskva/Gorodskaya Klinicheskaya Bolnitsa (MV),55.729167,37.458333,,0.025,,2054,66,94,,,,,,86362,,, +317,LBY,,STF,b,Twenty Nine Charly (srt),29.729167,17.958333,,0.025,,2663,155,100,,,,998,L1045 U1040 ,ID+2 gap,81789,, +317,CNR,,TES,b,Tenerife Sur / Reina Sofia (STC-TF),28.0625,-16.541667,,0.025,,3281,224,106,,,,,L1027 U1064 16.3s,81791,,, +317,LBY,,KFR,b,Al-Kufrah (kfr),24.229167,23.291667,,0.025,,3414,149,107,,,,0,L1029 U1026 ,ID+5 gap,81783,, +317,IRN,,HAM,b,Hamadan (hmd),34.520833,48.291667,,0.025,,3838,104,111,,,,995,L1031 U1031 4.4s,Cont. ID,81777,, +317,CAN,,ZMX,b,Janvier / Mirabel (Montreal) (QC),45.729167,-73.958333,,0.2,,5609,297,120,,,,,U421 10.0s,DAID,81794,, +317,CAN,,VC,b,La Ronge (SK),55.104167,-105.291667,,0.5,,6543,322,125,,,,983,L410 U372 10.0s,DAID,81792,, +317,CAN,,I,b,Montral/Mirabel (QC),45.729167,-73.958333,,0.025,,5609,297,129,,,,,,87056,,, +317,CAN,,ZZR,b,Trenton (Apt) Severn (ON),44.0625,-77.625,,0.05,,5950,297,129,,,,986,L1032 U1007 9213s,DAID,81795,, +317,CAN,,R,b,Trenton (ON),44.0625,-77.625,,0.025,,5950,297,132,,,,,,87058,,, +317,USA,,CBE,b,Cumberland (MD),39.645833,-78.708333,,0.025,,6345,294,136,,,,1,L1017 U1019 5373s,81774,,, +317,USA,,IN,b,Reeno Winston Salem (NC),36.0625,-80.208333,,0.025,,6717,292,140,,,,996,L1037 U1033 5793s,81780,,, +317,CAN,,A5,b,Chinchaga (AB),57.5625,-119.125,,0.025,,6857,330,142,,,,,,87054,,, +317,USA,,MBT,b,Murfreesboro (TN),35.9375,-86.375,,0.025,,7112,296,144,,,,,,87057,,, +317,USA,,EVU,b,Emville Maryville (MO),40.354167,-94.875,,0.025,,7250,305,145,,,,0,L1022 U1022 ,81775,,, +317,USA,,FTT,b,Guthrie Fulton (MO),38.854167,-92.041667,,0.025,,7212,302,145,,,,,U1020 ,81776,,, +317,USA,,INY,b,Independence County Batesville (AR),35.6875,-91.791667,,0.028,,7460,299,147,,,,,U1020 ,81781,,, +317,USA,,CVP,b,Capitol Helena (MT),46.604167,-111.958333,,0.025,,7573,319,149,,,,,,87055,,, +317,USA,,IBM,b,Kimball (NE),41.1875,-103.708333,,0.025,,7656,311,150,,,,0,L1015 U1015 ,81779,,, +317,COM,,HA,b,Prince Said Abrahim,-11.515,43.276667,,0.025,,7906,142,152,,,,,,10000003,,, +317,USA,,K,b,Ediz Hook Port Angeles (WA),48.145833,-123.375,,0.025,,7895,327,152,,,,,U1020 ,DA25ID,81782,, +317,CHN,,BH,b,Gaoyao,23.0625,112.458333,,0.025,,9029,63,160,,,,,,86361,,, +317,AUS,,RTI,b,Rottnest Island (WA),-32.020833,115.541667,,0.025,,14021,98,176,,,,,,81788,,, +317.5,I,,TRP,b,Marsala (tp),37.895833,12.458333,,0.025,,1649,161,89,,,,500,L1015 U1022 7.5s,ID+3 gap,81796,, +318,D,,HIG,b,Bremen (bre),53.020833,8.541667,,0.025,,176,54,75,,,,0,L1016 U1017 ,ID+1 gap,81808,, +318,LUX,,LE,b,Luxembourg-Est (lux),49.645833,6.291667,,0.025,,274,182,76,,,,0,L1025 U1038 ,ID+8 gap,81810,, +318,D,,AGB,b,Augsburg (bay),48.4375,10.958333,,0.025,,521,140,78,,,,0,L1025 U1019 ,81798,,, +318,G,,BPL,b,Blackpool (EN-LNC),53.770833,-3.041667,,0.025,,659,290,80,,,,,L376 U425 ,ID+3.5 gap,86364,, +318,S,,LP,b,Ronneby / Kallinge,56.354167,15.291667,,0.025,,745,47,80,,,,2,L401 U403 5.2s,81811,,, +318,F,,BE,b,Bordeaux / Mrignac (33),44.854167,-0.375,,0.025,,948,214,82,,,,,U3 20.2s,ID+16 tone,81801,, +318,HNG,,CP,b,Ppa/Prduc (Ves),47.4375,17.458333,,0.025,,947,119,82,,,,,L992 U992 29.5s,IDx2 + 18 gap,81804,, +318,I,,GEN,b,Genova (ge),44.4375,9.041667,,0.025,,875,166,82,,,,2,L1021 U1019 10.0s,ID+7 gap,81807,, +318,MDR,,MAD,b,Funchal (md),32.729167,-16.708333,,2,,2846,230,82,,,,0,L1024 U1021 7.06s,81812,,, +318,HNG,,PC,b,Ppa/Prduc (Ves),47.3125,17.541667,,0.025,,960,119,83,,,,993,L1045 U1041 30.0s,IDx2 + 18 gap,81815,, +318,HRV,,KLP,b,Dubrovnik / Kolocep (du),42.6875,18.041667,,0.05,,1362,136,84,,,,0,L1026 U1035 8.0s,ID+4 gap,81809,, +318,FIN,,B,b,Pori (st),61.479167,21.791667,,0.025,,1394,36,87,,,,998,L400 U407 4.2s,81800,,, +318,ROU,,OTR,b,Bucuresti / Otopeni (BU),44.604167,26.208333,,0.025,,1676,112,90,,,,990,L1037 U1041 ,ID+1 gap,81814,, +318,NOR,,FOR,b,Hammerfest / Forsol (fi),70.729167,23.791667,,0.05,,2248,17,92,,,,,L318 U318 ,81806,,, +318,FIN,,A,b,Sodankyla,67.395833,26.625,,0.025,,2021,25,93,,,,2,L405 U408 ,81797,,, +318,KAZ,,AK,b,Astana / Akmola (ast),51.0625,71.541667,,0.025,,4346,65,116,,,,,,81799,,, +318,KAZ,,MO,b,Astana / Akmola (ast),50.979167,71.375,,0.025,,4340,65,116,,,,,,81813,,, +318,CAN,,5C,b,Cromer (MB),49.729167,-101.708333,,0.2,,6827,316,132,,,,,,87059,,, +318,USA,,HFY,b,Indianapolis / Greenwood (IN),39.645833,-86.125,,0.025,,6799,299,141,,,,,,87060,,, +318,ALS,,UT,b,Cape Decision LS (Kuiu Island) (AK),56.020833,-134.125,,0.025,,7459,337,148,,,,,U1010 ,87061,,, +318,BRU,,BR,b,Brunei (bmu),4.895833,114.875,,0.025,,10815,72,166,,,,1,L1020 U1027 7s,81803,,, +318,BRU,,EBR,b,Brunei (bmu),4.895833,114.875,,0.025,,10815,72,166,,,,0,L1020 U1020 ,81805,,, +318.5,RUS,,JW,b,Voronezh/Baltimor (VN),51.604167,39.125,,0.025,,2228,78,95,,,,529,L940 U997 7.3s,ID+3 gap,81816,, +318.5,RUS,,KA,b,Voronezh / Baltimor (VN),51.8125,39.208333,,0.025,,2228,78,95,,,,476,L1054 U1007 ,81817,,, +319,NOR,,VAR,b,Stavanger / Sola / Varhaug (ro),58.645833,5.625,,0.025,,728,356,80,,,,998,L400 U397 8.1s,ID+4 gap,81825,, +319,CZE,,C,b,Prerov (OL),49.395833,17.291667,,0.025,,822,107,81,,,,14,L1050 U1061 4.3s,ID+3 gap,81818,, +319,E,,ECV,b,Colmenar Viejo (MAD-M),40.6875,-3.791667,,0.05,,1488,215,85,,,,10,L1021 U1018 ,ID+3 gap,81819,, +319,FIN,,G,b,Halli / Laajakallio,61.9375,24.708333,,0.025,,1546,38,88,,,,5,L405 U415 ,81820,,, +319,ISL,,GF,b,Grof,64.145833,-21.958333,,0.025,,2106,320,94,,,,,U1028 ,81821,,, +319,ISL,,HJ,b,Akureyri/Hjalteyri (ne),65.854167,-18.208333,,0.025,,2053,327,94,,,,,U1015 7.0s,81822,,, +319,TUR,,MUS,b,Mus (dad-mus),38.729167,41.625,,0.025,,3083,105,104,,,,,L1088 ,Cont. ID,81823,, +320,D,,HA,b,Hannover / East (nds),52.479167,9.791667,,0.025,,234,79,75,,,,0,L1020 U1025 6.6s,81832,,, +320,XOE,,PBCD,b,F2A - Hanze Platform,54.9375,4.625,,0.025,,336,340,76,,,,0,L395 U396 8.5s,ID+2 gap,81846,, +320,F,,TY,b,Troyes / Barberey (10),48.395833,4.041667,,0.025,,446,203,77,,,,994,U24 ,ID+14 tone,81851,, +320,G,,CAE,b,Caernarfon (WA-GWY),53.104167,-4.375,,0.025,,736,283,80,,,,0,L398 U402 10.2s,81828,,, +320,F,,HMI,b,Limoges / Bellegarde (87),45.770833,1.125,,0.025,,803,211,81,,,,,U15 ,ID+15 tone,81833,, +320,F,,LSU,b,Limoges / Bellegarde (87),45.770833,1.125,,0.025,,803,211,81,,,,,U15 ,ID+15 tone,81837,, +320,F,,VE,b,Valence / Chabeuil (26),44.854167,4.958333,,0.015,,814,188,83,,,,,L398 U400 10.0s,ID+9 gap,81852,, +320,HRV,,VL,b,Pula / Valtura (pa),44.895833,13.875,,0.025,,971,143,83,,,,3,L1047 U1050 ,ID+2.5 gap,81853,, +320,SRB,,PZ,b,Batajnica (Srb-gbg),44.9375,20.208333,,0.025,,1288,123,86,,,,,L1045 U1090 10.0s,ID+7 tone,86368,, +320,S,,OL,b,Lycksele,64.479167,18.791667,,0.025,,1548,23,88,,,,0,L400 U400 ,81844,,, +320,NOR,,IL,b,Bod/Ilstad (no),67.270833,14.708333,,0.025,,1745,12,90,,,,0,L380 U380 ,81835,,, +320,ISL,,DO,b,Djupivogur,64.645833,-14.291667,,0.025,,1827,328,91,,,,999,L1030 U1025 8.0s,81831,,, +320,RUS,,SHS,b,Kimry / Borki,56.8125,37.291667,,0.025,,2044,63,93,,,,,,86369,,, +320,RUS,,DM,b,Moskva/Domodedovo (MV),55.4375,37.875,,0.025,,2082,67,94,,,,10,L1018 U1019 ,IDx3 + 6 gap,81830,, +320,RUS,,M,b,Moskva/Domodedovo (MV),55.4375,37.875,,0.025,,2082,67,94,,,,,U980 15.1s,IDx2,81838,, +320,RUS,,O,b,Moskva/Domodedovo (MV),55.395833,37.875,,0.025,,2082,67,94,,,,,U400 ,81843,,, +320,RUS,,RN,b,Rostov-na-Donu / Rostov East (RO),47.229167,39.791667,,0.025,,2440,89,97,,,,997,L1020 U1014 ,IDx2 + 8 gap,81847,, +320,RUS,,RW,b,Rostov-na-Donu / Rostov East (RO),47.229167,39.791667,,0.025,,2440,89,97,,,,7,L1007 U1020 ,IDx2 + 21 gap,81848,, +320,ALG,,BBS,b,Beni Abbes (6),30.020833,-2.208333,,0.025,,2556,199,99,,,,,L388 U391 ,ID+3 gap,81826,, +320,RUS,,N,b,Samara / Bezymyanka (SA),53.270833,50.375,,0.025,,2919,70,102,,,,,U900 ,81841,,, +320,USA,,HTN,b,Horton Miles City (MT),46.395833,-105.958333,,0.1,,7314,316,140,,,,990,L1047 U1033 8141s,81834,,, +320,CAN,,YQF,b,Red Deer (AB),52.145833,-113.875,,0.05,,7154,324,142,,,,,U394 10.3s,DAID,81854,, +320,USA,,OM,b,Gerfi Omaha (NE),41.354167,-95.958333,,0.05,,7227,306,142,,,,0,L1020 U1030 6.46s,81845,,, +320,B,,JPS,b,Joo Pessoa (PB),-7.145833,-34.958333,,0.1,,7667,225,144,,,,1,L1029 U1029 7.6s,81836,,, +320,ALS,,HCR,b,Holy Cross (AK),62.1875,-159.791667,,0.025,,7248,353,145,,,,,,87064,,, +320,CAN,,AE,b,Point Atkinson Light Station (BC),49.3125,-123.291667,,0.1,,7779,328,145,,,,,U420 ,87062,,, +320,B,,YTC,b,Itacoatiara (AM),-3.104167,-58.458333,,0.25,,8609,248,148,,,,,L1043 U1033 6692s,81855,,, +320,B,,NX,b,Domel (PR),-25.479167,-48.291667,,0.5,,10129,227,150,,,,,,81842,,, +320,MYA,,BM,b,Banmaw,24.267222,97.246111,,0.025,,7958,74,153,,,,,,22100016,,, +320,USA,,CLK,b,Clinton (OK),35.520833,-98.958333,,0.02,,7892,304,153,,,,,U1022 7.25s,81829,,, +320,USA,,TY,b,Tyler / Indoo (TX),32.395833,-95.458333,,0.025,,7958,299,153,,,,994,L1036 U1030 5.9s,81850,,, +320,CLN,,BAT,b,Batticaloa AB (bcl),7.703611,81.68,,0.025,,8328,97,156,,,,,,34700018,,, +320,B,,MRN,b,Maring (PR),-23.479167,-52.041667,,0.05,,10133,231,160,,,,,,81840,,, +320,THA,,PCK,b,Prachuap,11.79,99.806667,,0.025,,9205,80,160,,,,,,32900032,,, +320,B,,BAG,b,Barra do Garas (MT),-15.854167,-52.375,,0.025,,9430,236,161,,,,,,86366,,, +320,CLM,,FLA,b,Florencia (caq),1.520833,-75.541667,,0.025,,9325,265,161,,,,,,87063,,, +320,B,,MNG,b,Maring (PR),-23.4375,-51.875,,0.025,,10120,231,163,,,,,,81839,,, +320,AUS,,BRM,b,Broome (WA),-17.9375,122.208333,,0.05,,13324,81,171,,,,0,L1021 U404 8s,81827,,, +321,D,,GL,b,Berlin / Tegel / East (brb),52.5625,13.458333,,0.05,,481,81,75,,,,997,L1020 U1016 ,81864,,, +321,F,,ABY,b,Albert / Bray (80),49.979167,2.791667,,0.025,,347,228,76,,,,,L405 10.3s,81858,,, +321,XOE,,BVH,b,K2B-A Platform,53.9375,3.625,,0.025,,276,319,76,,,,,,81860,,, +321,DNK,,VO,b,Vojens/Skrydstrup (sdk),55.229167,9.291667,,0.025,,395,28,77,,,,0,L400 U400 5.3s,ID+2 gap,81871,, +321,F,,TL,b,Tarbes / Ossun / Lourdes (65),43.270833,0.041667,,0.1,,1091,208,78,,,,,U5 ,ID+16 tone,81870,, +321,G,,STM,b,St Mary (Isles of Scilly) (EN-CNW),49.895833,-6.291667,,0.025,,921,260,82,,,,3,L394 U392 7.5s,81869,,, +321,IRL,,CRN,b,Galway / Carnmore (G),53.3125,-8.958333,,0.025,,1042,283,83,,,,2,L413 U396 7.8s,81861,,, +321,E,,ABT,b,Albacete (CAM-AB),38.9375,-1.958333,,0.05,,1601,207,86,,,,48,L975 U1075 ,ID+4 gap,81857,, +321,BLR,,GK,b,Minsk (MI),53.895833,27.458333,,0.025,,1417,74,87,,,,,U1020 ,81863,,, +321,BLR,,NE,b,Minsk 1 (MI),53.520833,27.375,,0.025,,1412,75,87,,,,,U400 ,81866,,, +321,BUL,,BU,b,Burgas (bur),42.520833,27.458333,,0.025,,1901,116,92,,,,5,L1025 U1040 8.4s,ID+6 gap,81859,, +321,IRN,,ZAJ,b,Zanjan (znj),36.770833,48.375,,0.025,,3675,101,110,,,,5,L1025 U1034 ,ID+4 gap,81873,, +321,CAN,,YSY,b,Sachs Harbour (NT),71.979167,-125.291667,,0.025,,5714,343,130,,,,,U432 9.8s,DAID,81872,, +321,USA,,UR,b,Burln Covington (Burlington) (KY),39.0625,-84.791667,,0.025,,6765,297,141,,,,,L1040 ,87065,,, +321,USA,,FT,b,Skipi Bennett (Denver) (CO),39.8125,-104.458333,,0.025,,7816,310,151,,,,995,L1040 U1033 6.0s,81862,,, +321,BES,,PJB,b,Bonaire (bnr),12.132778,-68.280833,,0.025,,7903,265,152,,,,,L1036 ,81868,,, +321,CHN,,K,b,Shenyang/Taoxian (LN),41.645833,123.458333,,0.025,,7961,45,153,,,,,L1088 ,81865,,, +322,G,,LCY,b,London / City (EN-GTL),51.520833,0.041667,,0.025,,442,264,77,,,,969,L401 U422 6.5s,81878,,, +322,F,,ORS,b,Orlans / St Denis De LHotel (45),47.9375,2.208333,,0.025,,552,215,78,,,,,U2 ,DAID,81881,, +322,F,,TLN,b,Hyres / Le Palyvestre (83),43.020833,6.125,,0.05,,1011,181,80,,,,,L17 U9 ,ID+11 tone,81885,, +322,POL,,GDN,b,Gdansk,54.354167,18.625,,0.025,,849,68,81,,,,,L1033 U1031 8.1s,ID+4.5 gap,86371,, +322,F,,RL,b,La Rochelle / Ile De R (17),46.1875,-1.125,,0.025,,856,223,82,,,,,U3 ,ID+16 tone,81883,, +322,XOE,,ALNG,b,ALNG GBS Vessel,45.104167,12.625,,0.025,,902,147,82,,,,2,L860 U875 7.0s,ID+2 gap,81874,, +322,S,,OU,b,Stockholm / Bromma,59.3125,18.041667,,0.025,,1080,38,84,,,,2,L404 U403 ,81882,,, +322,FIN,,KOR,b,Helsinki / Malmi / Korso,60.354167,25.041667,,0.025,,1463,44,88,,,,0,L404 U407 8.4s,81877,,, +322,S,,OD,b,rnsksldsvik,63.4375,18.875,,0.025,,1455,25,88,,,,3,L400 U399 ,81880,,, +322,POR,,MIO,b,Montijo (lis),38.729167,-9.041667,,0.025,,1907,225,92,,,,26,L1017 U1020 9.77s,81879,,, +322,GRC,,IKA,b,Ikaria (neg-sam),37.6875,26.375,,0.025,,2232,128,95,,,,0,L400 U400 ,ID+6 gap,81876,, +322,TKM,,RP,b,Daşoguz (dgz),41.770833,59.791667,,0.025,,4111,84,114,,,,,U1103 ,IDx2 + 5 gap,81884,, +322,TKM,,VH,b,Daşoguz (dgz),41.770833,59.875,,0.025,,4117,84,114,,,,80,L880 U1045 7.7s,ID+3 gap,81887,, +322,PAK,,DG,b,Dera Ghazi Khan (pjb),29.961944,70.490278,,0.025,,5692,89,130,,,,,,31500048,,, +322,CHN,,QK,b,Gengma,23.533056,99.4,,0.025,,8161,73,155,,,,,,36201268,,, +322,CHN,,MA,b,Lianshengwei,22.229167,113.458333,,0.025,,9165,63,160,,,,,,86373,,, +323,BEL,,ONC,b,Charleroi / Gosselies (wal-hnt),50.479167,4.541667,,0.025,,223,216,75,,,,999,L403 U398 10.1s,81908,,, +323,XOE,,AY,b,Pentacom / Platform,53.520833,4.208333,,0.025,,216,318,75,,,,,U~1020 ,81891,,, +323,XOE,,EK,b,Petroland A Platform,53.604167,4.125,,0.025,,226,318,75,,,,,U~1020 ,81896,,, +323,XOE,,KZ,b,K6-D / Pentacon F Platform,53.6875,3.791667,,0.025,,248,316,75,,,,,,81905,,, +323,XOE,,LB,b,L8-G / Pentacon,53.5625,4.625,,0.025,,201,324,75,,,,,U416 ,81906,,, +323,XOE,,ZD,b,K6-DN Platform,53.729167,3.791667,,0.025,,251,317,75,,,,,,81920,,, +323,XOE,,ZP,b,K6-PC / Pentacon F Platform,53.6875,3.875,,0.025,,244,317,75,,,,,U394 ,ID+3 gap,81921,, +323,D,,GT,b,Hamburg / North (ham),53.729167,9.958333,,0.025,,298,51,76,,,,1,L1023 U1024 5.2s,81898,,, +323,G,,SBL,b,Sherburn-in-Elmet (EN-NYK),53.770833,-1.208333,,0.025,,543,293,78,,,,7,L375 U417 7.6s,81910,,, +323,G,,WPL,b,Welshpool (WA-POW),52.645833,-3.125,,0.025,,649,279,79,,,,1,L412 U414 6.6s,81919,,, +323,I,,CAM,b,Cameri (no),45.4375,8.708333,,0.025,,761,166,81,,,,0,L1016 U1024 ,ID+2 gap,81892,, +323,F,,AB,b,Albi / Le Sequestre (81),43.895833,2.041667,,0.025,,969,201,83,,,,,U5 ,DAID,81888,, +323,XOE,,DX,b,Shell / Esso Dunlin A Platform,61.270833,1.625,,0.025,,1059,346,84,,,,,,81894,,, +323,CAN,,UWP,b,Argentia (NL),47.3125,-53.958333,,1,,4246,288,99,,,,,U415 10.0s,DAID,81916,, +323,AZR,,SMA,b,Vila do Porto (stm),36.979167,-25.208333,,0.025,,2981,248,103,,,,5,L1018 U1028 8.5s,ID+6 gap,81911,, +323,ISR,,HFA,b,Haifa (haf),32.8125,35.041667,,0.025,,3144,122,104,,,,,U1020 ,ID+6.5 gap,81901,, +323,KAZ,,AT,b,Aktyubinsk (aqt),50.270833,57.125,,0.025,,3468,73,108,,,,7,L400 U414 15.0s,IDx2,81890,, +323,KAZ,,TU,b,Aktyubinsk (aqt),50.229167,57.291667,,0.025,,3480,73,108,,,,,U400 15.2s,IDx2,81915,, +323,CAN,,KR,b,Squaw Schefferville (QC),54.8125,-66.791667,,0.25,,4631,304,109,,,,,U402 10.2s,81904,,, +323,QAT,,WK,b,Doha Int. (wak),25.1875,51.616667,,0.025,,4818,111,121,,,,,,81918,,, +323,CAN,,W4,b,Jenpeg (MB),54.520833,-98.041667,,0.063,,6269,318,132,,,,998,L412 U404 10.3s,DAID,81917,, +323,UGA,,SO,b,Soroti (sor),1.729167,33.625,,0.025,,6146,146,134,,,,3,L1027 U1034 ,ID+6 gap,81912,, +323,USA,,GTN,b,Georgetown (VA),38.9375,-77.125,,0.025,,6299,292,136,,,,,,81899,,, +323,USA,,UT,b,Calcasieu Pass (LA),29.770833,-93.375,,0.5,,8058,296,141,,,,,,87067,,, +323,USA,,EBS,b,Webster City (IA),42.4375,-93.875,,0.025,,7022,306,143,,,,,U1022 4301s,81895,,, +323,USA,,OUK,b,Calhoun (GA),34.395833,-84.958333,,0.024,,7149,294,145,,,,,U1027 6074s,81909,,, +323,USA,,HJH,b,Hebron (NE),40.145833,-97.625,,0.025,,7421,306,147,,,,,U1023 5675s,81903,,, +323,USA,,LTY,b,Chester (MT),48.520833,-110.958333,,0.025,,7356,320,147,,,,997,L1045 U1038 8.6s,81907,,, +323,ALS,,AIX,b,Nanwak Mekoryuk (AK),60.395833,-166.208333,,0.025,,7488,356,148,,,,,U1033 ,81889,,, +323,TRD,,TAB,b,Crown Point,11.145833,-60.875,,0.025,,7488,259,148,,,,998,L410 U403 8399s,81913,,, +323,USA,,SRC,b,Searcy (AR),35.229167,-91.708333,,0.025,,7494,299,148,,,,,U1020 ,87066,,, +323,USA,,HHW,b,Hugo (OK),34.020833,-95.541667,,0.025,,7823,301,151,,,,0,L1015 U1019 6.4s,81902,,, +323,USA,,GR,b,Starn Fort Hood (Kileen) (TX),31.1875,-97.875,,0.025,,8206,300,155,,,,993,L1024 U1009 6.00s,81897,,, +323,AUS,,CAR,b,Carnarvon (WA),-24.895833,113.708333,,0.025,,13328,93,174,,,,,L1023 U1023 ,81893,,, +323,AUS,,TMO,b,The Monument (QLD),-21.8125,139.958333,,0.025,,14825,68,179,,,,,L500 6s,81914,,, +323,AUS,,HBK,b,Holbrook (NSW),-35.604167,147.458333,,0.025,,16454,75,184,,,,,U403 9s,81900,,, +324,F,,MOU,b,Moulins (03),46.6875,3.625,,0.05,,636,200,76,,,,,U8 19.5s,DAID,81927,, +324,DNK,,ML,b,Aarhus (arh),56.3125,10.458333,,0.025,,536,28,78,,,,2,L407 U405 5.7s,ID+3 gap,81926,, +324,NOR,,HE,b,Notodden / Heddal,59.604167,9.041667,,0.025,,849,10,81,,,,3,L378 U378 ,81923,,, +324,XOE,,MP,b,Total Elf / Frigg Fergus MCPC01 Platform,58.8125,-0.291667,,0.025,,856,333,82,,,,,,81928,,, +324,S,,ON,b,Norrkping/Saab,58.604167,16.375,,0.025,,956,37,83,,,,0,L400 U400 4.0s,81930,,, +324,I,,PTC,b,Salerno / Pontecagnano (sa),40.604167,14.875,,0.025,,1433,150,87,,,,1,L1020 U1018 ,ID+6 gap,81931,, +324,NOR,,MS,b,Mosjoen,65.8125,13.291667,,0.025,,1572,12,89,,,,0,L385 U385 ,81929,,, +324,FIN,,AS,b,Kemi / Tornio,65.6875,24.375,,0.025,,1814,27,91,,,,1,L407 U409 ,81922,,, +324,ISL,,TO,b,Akureyri/Torfur (ne),65.520833,-18.125,,0.025,,2028,327,93,,,,,L1040 U1027 6.4s,81933,,, +324,TUR,,KFK,b,Afyon (ege-afy),38.8125,30.541667,,0.025,,2374,119,97,,,,985,L1038 U1055 ,Cont. ID,81925,, +324,RUS,,RF,b,Ladozhskaya,45.270833,39.958333,,0.025,,2551,94,98,,,,35,L1015 U1012 ,ID+4 gap,81932,, +324,PAK,,GT,b,Gilgit (ggb),35.920278,74.335,,0.025,,5500,81,128,,,,,,31500045,,, +324,ALS,,J,b,Guard Island Light Station (AK),55.4375,-131.875,,0.2,,7456,336,139,,,,,,87068,,, +324,USA,,ID,b,Uconn Idaho Falls (ID),43.604167,-111.958333,,0.025,,7845,317,151,,,,998,L1024 U1019 6.0s,81924,,, +324,CHN,,CJ,b,Hangzhou,30.3125,120.125,,0.025,,8822,54,159,,,,,,86376,,, +324,AUS,,EML,b,Emerald (QLD),-23.5625,148.208333,,0.025,,15487,60,181,,,,,L400 8s,86377,,, +325,D,,DP,b,Diepholz (nds),52.604167,8.458333,,0.025,,150,68,74,,,,2,L1045 U1047 16.0s,81938,,, +325,G,,OF,b,Filton (EN-GLO),51.520833,-2.625,,0.025,,624,268,79,,,,1,L398 U401 8.3s,81951,,, +325,S,,PG,b,Trollhttan/Vnersborg,58.270833,12.458333,,0.025,,785,27,81,,,,13,L386 U413 5.7s,81954,,, +325,S,,DH,b,Oskarshamn,57.3125,16.458333,,0.025,,865,44,82,,,,0,L396 U397 ,81937,,, +325,HRV,,VG,b,Zagreb / Pleso / Velika Gorica (zg),45.729167,16.041667,,0.025,,998,132,83,,,,998,L1025 U1026 8.5s,ID+5.6 gap,81960,, +325,I,,RCA,b,Reggio di Calabria (rc),38.020833,15.625,,0.11,,1722,152,84,,,,4,L1016 U1025 ,ID+6 gap,81956,, +325,F,,FA,b,Figari / Sud Corse (20A),41.604167,9.291667,,0.025,,1188,168,85,,,,,U2 ,81940,,, +325,E,,AST,b,Asturias (AST-O),43.5625,-6.041667,,0.025,,1326,229,86,,,,995,L1008 U1012 ,ID+5 gap,81936,, +325,S,,NUT,b,Hemavan,65.854167,15.041667,,0.025,,1603,14,89,,,,,L422 ,81949,,, +325,TUN,,TS,b,Tunis / Carthage (tun),36.9375,10.291667,,0.025,,1714,168,90,,,,0,L337 U363 ,ID+2 gap,81959,, +325,FIN,,JOE,b,Joensuu,62.6875,29.458333,,0.025,,1796,40,91,,,,2,L404 U401 8.0s,ID+4 gap,81942,, +325,ISL,,NF,b,Nordfjordur,65.145833,-13.708333,,0.025,,1842,330,91,,,,0,L1044 U1048 ,81947,,, +325,S,,OG,b,Gllivare,67.104167,20.958333,,0.025,,1847,20,91,,,,2,L400 U403 ,81952,,, +325,RUS,,NU,b,Bryansk (BR),53.1875,34.208333,,0.025,,1867,75,92,,,,,L1050 U1051 ,81948,,, +325,RUS,,OD,b,Bryansk (BR),53.145833,34.125,,0.025,,1862,75,92,,,,,L998 U1007 ,81950,,, +325,ISL,,RH,b,Reykholt,64.645833,-21.291667,,0.025,,2103,322,94,,,,,U1040 ,ID+1 gap,81957,, +325,RUS,,WD,b,Gumrak,48.770833,44.375,,0.025,,2683,83,100,,,,915,L885 U890 ,IDx2 + 6 tone,81963,, +325,RUS,,WG,b,Volgograd / Gumrak (VG),48.8125,44.291667,,0.025,,2675,83,100,,,,316,L1007 U1007 ,IDx2 + 4 tone,81964,, +325,RUS,,MC,b,Bugulma (TS),54.645833,52.791667,,0.025,,3033,66,103,,,,,,81946,,, +325,IRN,,KLH,b,Kalaleh (gsn),37.395833,55.458333,,0.025,,4110,94,114,,,,,,86382,,, +325,CAN,,LN,b,Lumsden (SK),50.6875,-104.958333,,0.08,,6899,318,137,,,,,,87069,,, +325,ALS,,BVK,b,Buckland (AK),65.979167,-161.125,,0.025,,6842,354,141,,,,,L1047 U1040 ,86379,,, +325,KNA,,SKB,b,Bradshaw (spb),17.3125,-62.708333,,0.025,,7078,265,144,,,,,U1021 8.33s,81958,,, +325,DOM,,LRN,b,La Romana (rom),18.4375,-68.958333,,0.025,,7408,270,147,,,,,U1020 ,81945,,, +325,J,,XM,b,Kowa (chu-aic),34.770833,136.9125,,0.5,,9226,39,147,,,,,L1020 ,DAID (5 sec),81965,, +325,CAN,,YJQ,b,Bella Bella (Campbell Island) (BC),52.1875,-128.125,,0.025,,7665,332,150,,,,,U396 10.61s,DAID,81966,, +325,CHN,,LG,b,Beijing (BJ),40.145833,116.541667,,0.025,,7748,50,150,,,,,L1006 ,81944,,, +325,ZMB,,LE,b,Lusaka (lsk),-15.354167,28.541667,,0.025,,7800,157,151,,,,0,L1019 U1019 8.66s,81943,,, +325,B,,PP,b,Pororoca (GO),-16.145833,-48.875,,0.2,,9264,233,152,,,,,,81955,,, +325,B,,PAF,b,Paulo Afonso (BA),-9.395833,-38.208333,,0.025,,8050,227,153,,,,,,86384,,, +325,B,,VGH,b,Varginha (MG),-21.604167,-45.458333,,0.1,,9612,227,156,,,,,,81961,,, +325,CLM,,VUP,b,Valledupar (ces),10.4375,-73.208333,,0.025,,8386,268,157,,,,,,81962,,, +325,SNG,,AG,b,Sembawang (nw),1.4375,103.791667,,0.025,,10384,83,164,,,,,U968 ,81934,,, +325,ARG,,PDI,b,Punta Indio (ba),-35.354167,-57.291667,,0.025,,11517,229,168,,,,,7.0s,81953,,, +325.5,J,,OB,b,Obihiro (hok),42.645833,143.291667,,0.025,,8693,31,159,,,,-325.5,L1011 U1020 7.5s,DAID,81967,, +325.5,NCL,,NW,b,La Tontouta (sud),-21.9375,166.041667,,0.025,,16233,35,184,,,,-325.5,20s,86385,,, +326,HOL,,LLS,b,Lelystad (fle),52.479167,5.541667,,0.025,,72,305,46,,,,993,L438 U430 6.7s,81990,,, +326,F,,LM,b,Le Mans / Arnage (72),47.895833,0.208333,,0.05,,645,226,76,,,,,U2 20.0s,DAID,81991,, +326,XOE,,YW,b,Tyra West Platform,55.4375,4.458333,,0.025,,392,342,77,,,,2,L398 U405 5.0s,82021,,, +326,XOE,,SYR,b,Sevan Voyageur FPSO,57.895833,1.375,,0.025,,719,336,80,,,,,,86387,,, +326,F,,RH,b,Brive / La Roche (19),45.104167,1.541667,,0.025,,857,207,82,,,,,U4 ,DAID,82002,, +326,IRL,,RSH,b,Dublin / Rush (D),53.520833,-6.125,,0.025,,856,286,82,,,,954,L459 U409 4.5s,82005,,, +326,POL,,KTW,b,Katowice / Pyrzowice,50.479167,19.125,,0.025,,901,97,82,,,,12,L1015 U1010 ,81989,,, +326,S,,KK,b,Karlskoga,59.395833,14.541667,,0.025,,955,29,83,,,,,L400 U400 ,81987,,, +326,S,,OG,b,Gvle / Sandviken,60.645833,16.958333,,0.025,,1147,30,84,,,,999,L400 U395 4.5s,ID+1 gap,82000,, +326,HNG,,C,b,Debrecen (HaB),47.479167,21.625,,0.025,,1204,109,85,,,,6,L1037 U1047 6.2s,ID+2 gap,81973,, +326,NOR,,TO,b,Trondheim / Vaernes / Malvik (st),63.4375,10.708333,,0.025,,1284,10,86,,,,,L387 U387 ,82011,,, +326,S,,KG,b,Kramfors / Bjartra,63.104167,17.708333,,0.025,,1391,24,87,,,,0,L397 U396 ,81985,,, +326,FIN,,SUI,b,Tampere / Pirkkala / Suinu,61.520833,24.041667,,0.025,,1490,39,88,,,,996,L406 U400 8.0s,82009,,, +326,NOR,,FSK,b,Fauske,67.270833,15.125,,0.025,,1751,12,90,,,,3,L380 U380 ,81983,,, +326,GRC,,SKC,b,Skiathos (the-mag),39.1875,23.541667,,0.025,,1949,131,92,,,,992,L401 U385 ,ID+6 gap,82007,, +326,RUS,,N,b,Kubinka,55.604167,36.625,,0.025,,2003,67,93,,,,,15.0s,IDx2 + 12 gap,81996,, +326,UKR,,NL,b,Mykolaivka (KR),44.979167,33.625,,0.025,,2139,101,94,,,,993,L972 U1248 ,IDx2,81998,, +326,GRC,,NXO,b,Naxos (seg-kik),37.0625,25.375,,0.025,,2235,131,95,,,,995,L420 U410 ,ID+3 gap,81999,, +326,RUS,,AL,b,Ivanovo / Yuzhny,56.9375,40.958333,,0.025,,2267,63,96,,,,,,86386,,, +326,RUS,,DD,b,Ivanovo / Yuzhny (IV),56.9375,41.041667,,0.025,,2272,63,96,,,,1,L1019 U1021 20.0s,IDx2,81977,, +326,LBY,,KH,b,Hateiba (wah),29.729167,19.708333,,0.025,,2718,151,100,,,,,,81986,,, +326,CAN,,FC,b,Fredericton (NB),45.9375,-66.625,,1.6,,5141,293,106,,,,,U401 9975s,DAID,81981,, +326,JOR,,AQC,b,Aqaba (aqb),29.895833,35.125,,0.025,,3408,125,107,,,,,L1055 ,ID+2.5 gap,81969,, +326,KAZ,,T,b,Aktau (mgg),43.854167,51.125,,0.025,,3393,88,107,,,,,,82010,,, +326,TKM,,UT,b,Chardzhev for Trkmenabat (leb),39.020833,63.625,,0.025,,4554,85,119,,,,,,82014,,, +326,CAN,,VV,b,Wiarton (ON),44.6875,-81.208333,,0.4,,6119,300,122,,,,0,L400 U405 10.1s,DAID,82017,, +326,CAN,,YQK,b,Kenora (ON),49.8125,-94.458333,,0.2,,6462,312,129,,,,,U402 10.11s,DAID,82020,, +326,CAN,,DC,b,Princeton (BC),49.479167,-120.541667,,0.5,,7661,326,137,,,,997,L407 U402 10.0s,DAID,81976,, +326,CAN,,VQ,b,Norman Wells (NT),65.270833,-126.708333,,0.025,,6364,339,137,,,,,U~400 ,82015,,, +326,CAN,,XJ,b,Fort St. John (BC),56.270833,-120.875,,0.1,,7035,330,137,,,,,U409 10.46s,DAID,82019,, +326,USA,,PKZ,b,Pickens Pensacola (FL),30.4375,-87.208333,,0.4,,7618,292,137,,,,991,L1049 U1033 7.8s,82001,,, +326,USA,,BKT,b,Blackstone (VA),37.145833,-78.041667,,0.025,,6495,291,138,,,,995,L1039 U1034 7990s,81971,,, +326,USA,,EK,b,Nepco Wisconsin Rapids (WI),44.270833,-89.875,,0.025,,6651,305,139,,,,,U1033 5157s,81978,,, +326,USA,,RUV,b,Rushsylvania (OH),40.479167,-83.708333,,0.025,,6588,298,139,,,,,U1022 ,87072,,, +326,USA,,ZEF,b,Zephyr Elkin (NC),36.3125,-80.708333,,0.025,,6729,292,140,,,,3,L1031 U1038 5728s,82022,,, +326,USA,,CI,b,Cindy Cedar Rapids (IA),41.895833,-91.791667,,0.025,,6949,304,142,,,,999,L1030 U1028 ,81974,,, +326,USA,,ETH,b,Wheaton (MN),45.770833,-96.541667,,0.025,,6894,310,142,,,,988,L1030 U30 30s,TWEB,81980,, +326,USA,,SIV,b,Sullivan (IN),39.104167,-87.458333,,0.025,,6922,299,142,,,,2,L1006 U1033 6.53s,82006,,, +326,USA,,UOT,b,Union County Union (SC),34.6875,-81.625,,0.025,,6916,292,142,,,,13,L417 U417 6372s,82013,,, +326,ALS,,UMM,b,Summit (AK),63.3125,-149.125,,0.025,,7005,348,143,,,,,U1035 ,82012,,, +326,USA,,LTU,b,Little Sioux Spencer (IA),43.145833,-95.125,,0.025,,7033,307,143,,,,1,L1020 U1019 8600s,81992,,, +326,BAH,,BHF,b,Freeport (Grand Bahama Island) (fpt),26.5625,-78.625,,0.04,,7383,283,145,,,,993,L1048 U1033 ,81970,,, +326,USA,,MA,b,Farly Midland (TX),31.979167,-102.291667,,0.4,,8392,304,145,,,,993,L1049 U1034 6.2s,81993,,, +326,USA,,SU,b,Snoop Saint Louis (MO),38.645833,-90.791667,,0.025,,7156,301,145,,,,,U1020 8600s,82008,,, +326,USA,,COO,b,Covington (TN),35.604167,-89.625,,0.025,,7337,298,146,,,,,U1020 ,81975,,, +326,USA,,FO,b,Riply Topeka (KS),38.895833,-95.541667,,0.025,,7410,304,147,,,,986,L1046 U1023 5.9s,81982,,, +326,USA,,RRX,b,Darr Lexington (NE),40.854167,-99.875,,0.025,,7483,308,148,,,,,L1024 U1025 7.5s,82003,,, +326,USA,,LCY,b,Logan County (OK),35.854167,-97.375,,0.025,,7773,303,151,,,,,U1040 ,87071,,, +326,USA,,BVP,b,Houston (TX),29.979167,-95.208333,,0.025,,8152,298,154,,,,2,L1020 U1021 8.7s,81972,,, +326,USA,,JY,b,Nixin Houston (TX),29.979167,-95.208333,,0.025,,8152,298,154,,,,,U1020 ,87070,,, +326,USA,,MCY,b,Desert Rock Mercury (NV),36.604167,-116.041667,,0.05,,8685,316,156,,,,0,L1040 U1040 9.0s,81994,,, +326,MDG,,VSJ,b,Mahajanga (mhj),-15.6875,46.375,,0.025,,8465,140,158,,,,,,82016,,, +326,AUS,,ESP,b,Esperance (WA),-33.6875,121.791667,,0.025,,14573,95,178,,,,,L400 U403 7s,81979,,, +326,NZL,,WR,b,Whangarei (NTL),-35.770833,174.375,,0.13,,17965,32,182,,,,,L1020 U1020 4s,82018,,, +326,AUS,,NHL,b,Nhill (VIC),-36.3125,141.625,,0.025,,16117,81,183,,,,,L400 U400 9s,81997,,, +326,AUS,,MSO,b,Mount Sandon (NSW),-31.395833,151.375,,0.025,,16366,65,184,,,,,U400 9s,81995,,, +327,D,,LV,b,Kln / Bonn (nrw),50.8125,7.208333,,0.025,,155,159,75,,,,10,L1022 U1016 ,82032,,, +327,F,,MVC,b,Merville / Calonne (59),50.5625,2.625,,0.025,,314,238,76,,,,,U12 20.7s,DAID,82034,, +327,G,,TNL,b,Tatenhill (EN-SFS),52.8125,-1.791667,,0.025,,561,281,79,,,,990,L403 U397 10.0s,82039,,, +327,XOE,,BNF,b,Ramfrmm Banff / Atlantic Floating Prod.,57.020833,1.291667,,0.025,,638,331,79,,,,,,86388,,, +327,AUT,,LNZ,b,Linz / Hrsching,48.229167,14.291667,,0.025,,707,124,80,,,,2,L1020 U1016 10.0s,ID+6 gap,82031,, +327,XOE,,ALW,b,Total Fina Elf Exploration / North Alwyn,60.8125,1.708333,,0.025,,1009,345,83,,,,,U390 ,ID+6 gap,82023,, +327,XOE,,CRA,b,Clair Fixed Platform,60.770833,-2.708333,,0.025,,1112,334,84,,,,,U392 5.8s,ID+2 gap,86389,, +327,I,,OST,b,Roma / Ostia (rm),41.8125,12.208333,,0.025,,1226,157,85,,,,,L1019 U1022 ,ID+7 gap,86390,, +327,S,,Y,b,Sveg,62.0625,14.375,,0.025,,1205,20,85,,,,0,L399 U402 ,82043,,, +327,POR,,POR,b,Porto (prt),41.354167,-8.708333,,0.025,,1654,230,90,,,,0,L1021 U1021 8.48s,ID+4 gap,82037,, +327,E,,EEC,b,Sevilla / El Copero (AND-SE),37.3125,-6.041667,,0.025,,1911,215,92,,,,,L1023 U1020 4.77s,82027,,, +327,GRC,,KHR,b,Kavala/Megas Alexandros (emc-kav),40.9375,24.625,,0.025,,1857,125,92,,,,2,L402 U405 12.0s,ID+6 gap,82030,, +327,RUS,,XI,b,Torzhok (TV),57.0625,35.041667,,0.025,,1909,62,92,,,,,L1040 U1040 15.0s,IDx2 + 7 gap,82042,, +327,RUS,,U,b,Nizhny Novgorod / Strigino (NN),56.270833,43.791667,,0.025,,2444,64,97,,,,,,82040,,, +327,LBY,,NC8,b,Hamada NC-8 (jgh),29.520833,12.875,,0.025,,2568,166,99,,,,0,L386 U383 ,Cont. ID,82035,, +327,UAE,,RNZ,b,Arzanah (abd),24.8,52.558333,,0.025,,4912,110,122,,,,,,82038,,, +327,CAN,,MG,b,West Arm (Cambridge Bay) (NU),69.104167,-105.125,,0.025,,5442,334,127,,,,,U396 ,82033,,, +327,CAN,,G8,b,Maniwaki (QC),46.270833,-75.958333,,0.025,,5693,298,130,,,,,,87074,,, +327,GUF,,FXC,b,Cayenne (973),4.8125,-52.375,,0.3,,7501,247,137,,,,999,L327 U1 10.38s,DAID,82028,, +327,USA,,JMR,b,Mora (MN),45.895833,-93.291667,,0.025,,6711,308,140,,,,994,L1028 U1011 40.9s,82029,,, +327,MOZ,,BR,b,Beira (sfl),-19.770833,34.875,,0.025,,8456,152,158,,,,999,L1019 U1017 3.67s,82024,,, +327,USA,,PDG,b,Pajar Watsonville (CA),36.895833,-121.791667,,0.025,,8919,320,159,,,,,U996 6.0s,82036,,, +327,USA,,AY,b,Watsonville (CA),35.895833,-121.791667,,0.025,,9016,320,160,,,,,,87073,,, +327,HWA,,VYI,b,Valley Island Kahului (HI),20.895833,-156.458333,,0.025,,11728,343,169,,,,990,L1042 U1022 8.0s,82041,,, +328,E,,HIG,b,San Sebastin (PVA-SS),43.395833,-1.791667,,0.2,,1145,215,75,,,,3,L1049 U1052 ,ID+20 gap,82055,, +328,XOE,,TMA,b,Arco / Thames Alpha,53.104167,2.541667,,0.025,,284,294,76,,,,,,86398,,, +328,DNK,,VJ,b,Stauning (mjy),55.979167,8.458333,,0.025,,450,16,77,,,,996,L396 U404 8.0s,82065,,, +328,F,,ORG,b,Orange / Caritat (84),44.145833,4.875,,0.08,,893,188,77,,,,,U3 ,DAID,86397,, +328,G,,BLK,b,Blackbushe (EN-HPS),51.3125,-0.875,,0.025,,509,263,78,,,,22,L366 U415 8.1s,82047,,, +328,CZE,,VRI,b,Vrchlabi (KR),50.354167,15.625,,0.025,,670,103,80,,,,,U1144 ,ID+3.7 gap,82066,, +328,G,,CL,b,Carlisle (EN-CUM),54.9375,-2.791667,,0.025,,684,301,80,,,,1,L395 U397 8.5s,82050,,, +328,XOE,,BAF,b,Marathon / Brae Alpha,58.6875,1.291667,,0.025,,799,338,81,,,,,U402 ,82046,,, +328,G,,IVR,b,Inverness (SC-HIL),57.520833,-4.041667,,0.025,,898,316,82,,,,998,L402 U400 5.5s,82057,,, +328,SVN,,KAM,b,Ljubljana / Brnik / Dolsko (lj),46.104167,14.708333,,0.025,,899,135,82,,,,1,L1022 U1017 ,82058,,, +328,POL,,NRA,b,Radom,51.395833,21.291667,,0.025,,1026,89,83,,,,,L1000 U999 ,ID+4 gap,86396,, +328,SRB,,SMR,b,Sremska Mitrovica (Voj-srm),44.999433,19.60965,,0.025,,1249,124,85,,,,29,L922 U980 ,ID+10 gap,82063,, +328,S,,DK,b,Vilhemina,64.604167,16.708333,,0.025,,1509,19,88,,,,998,L395 U402 ,82051,,, +328,FIN,,KIT,b,Kittila,67.604167,24.875,,0.025,,1990,23,93,,,,998,L410 U405 ,82059,,, +328,TUR,,CEK,b,Cekmece (mam-ist),41.020833,28.541667,,0.025,,2080,118,94,,,,,L1020 ,ID+2.5 gap,82049,, +328,CYP,,PHA,b,Pafos (kyp-pap),34.729167,32.458333,,0.025,,2828,123,101,,,,,L400 U398 ,ID+7 gap,82062,, +328,GRL,,HB,b,Sisimuit Holsteinborg (Kitaa) (qqa-sis),66.9375,-53.708333,,0.025,,3583,320,109,,,,0,L394 U400 9726s,82054,,, +328,CAN,,YTL,b,Big Trout Lake (ON),53.8125,-89.875,,1,,5930,313,116,,,,,U401 10.3s,DAID,82067,, +328,USA,,LC,b,Blnap Laconia (NH),43.520833,-71.541667,,0.025,,5613,293,129,,,,993,L1044 U1032 8218s,82061,,, +328,USA,,BZJ,b,Bellgrove Indiantown Gap (PA),40.4375,-76.541667,,0.025,,6149,293,134,,,,998,L1045 U1059 9288s,82048,,, +328,CAN,,5J,b,Coronation (AB),52.0625,-111.458333,,0.14,,7063,323,136,,,,,U400 10.2s,DAID,82045,, +328,USA,,LAC,b,Lacomas Fort Lewis (WA),47.020833,-122.541667,,0.025,,7972,326,153,,,,990,L1050 U1030 8.0s,82060,,, +328,CHN,,LQ,b,Shilong,23.104167,113.875,,0.025,,9112,62,160,,,,,,86395,,, +328,THA,,HY,b,Hat Yai (sgk),6.9375,100.375,,0.025,,9669,83,162,,,,,,ID+7 gap,82056,, +328.5,G,,EGT,b,Londonderry/Eglinton (NI-LDR),55.0625,-7.125,,0.025,,950,296,82,,,,500,L390 U390 4.79s,82068,,, +329,G,,JW,b,Jersey (JER),49.1875,-2.208333,,0.025,,688,245,80,,,,5,L399 U407 10.17s,ID+7 gap,82087,, +329,S,,VX,b,Vxj/Kronoberg,56.854167,14.708333,,0.025,,751,42,80,,,,2,L399 U402 4.5s,82104,,, +329,HNG,,HA,b,Budapest/Ferenc Liszt Int. (Bud),47.479167,19.125,,0.025,,1046,114,83,,,,997,L1023 U1021 ,ID+8 gap,82081,, +329,EST,,IB,b,Tallinn (Har),59.395833,24.625,,0.025,,1391,47,87,,,,2,L404 U411 8.0s,82084,,, +329,NOR,,NMS,b,Namsos,64.479167,11.791667,,0.025,,1410,11,87,,,,8,L370 U387 ,82091,,, +329,S,,WU,b,Umea,63.729167,20.458333,,0.025,,1528,27,88,,,,998,L399 U399 ,82105,,, +329,I,,PRS,b,Cinisi / Punta Raisi (pa),38.1875,13.125,,0.025,,1633,159,89,,,,,L1019 U1023 ,ID+3 gap,86403,, +329,ISL,,HS,b,Husavik,65.9375,-17.458333,,0.025,,2031,328,93,,,,,L1072 ,86401,,, +329,TUR,,RA,b,Lara (akd-ant),36.877153,30.805667,,0.025,,2549,122,98,,,,0,L1025 U1020 ,ID+8 gap,82099,, +329,CAN,,YEK,b,Arviat (NU),61.104167,-94.041667,,1,,5607,322,113,,,,,U425 10.2s,DAID,82107,, +329,CAN,,YHN,b,Hornepayne (ON),49.229167,-84.625,,0.5,,5984,306,120,,,,,U406 10.2s,DAID,82108,, +329,CAN,,2T,b,Pokemouche (NB),47.729167,-64.875,,0.025,,4918,294,122,,,,,U1020 ,DAID,82069,, +329,CAN,,OU,b,Sainte-Foy (QC),46.770833,-71.291667,,0.025,,5376,296,127,,,,990,L418 U400 9970s,DAID,82094,, +329,USA,,CH,b,Ashly Charleston (SC),32.979167,-80.125,,0.4,,6957,289,131,,,,992,L1048 U1027 6.1s,82076,,, +329,USA,,BK,b,Plein Utica (NY),43.229167,-75.458333,,0.025,,5877,295,132,,,,,,82074,,, +329,CAN,,PJ,b,Robinson (Whitehorse) (YT),60.4375,-134.875,,0.25,,7034,340,133,,,,,U400 ,82096,,, +329,USA,,IA,b,Kathi Niagara Falls (NY),43.104167,-78.875,,0.025,,6096,297,134,,,,0,L1034 U1035 6080s,82083,,, +329,USA,,AMN,b,Alma (MI),43.3125,-84.791667,,0.025,,6434,301,137,,,,995,L1048 U1038 5.5s,82073,,, +329,USA,,OR,b,Ingle Norfolk (VA),36.854167,-76.291667,,0.025,,6405,290,137,,,,987,L1043 U1014 6117s,82093,,, +329,USA,,AAU,b,Ashland (OH),40.979167,-82.291667,,0.025,,6463,297,138,,,,998,L1022 U1019 4175s,82071,,, +329,USA,,LLE,b,Kettle Moraine West Bend (WI),43.4375,-88.125,,0.025,,6617,303,139,,,,986,L1046 U1018 4638s,82088,,, +329,USA,,BUY,b,Burlington (NC),36.0625,-79.458333,,0.025,,6669,291,140,,,,,,87076,,, +329,USA,,IWH,b,Wabash (IN),40.770833,-85.791667,,0.025,,6690,299,140,,,,993,L1030 U1016 ,82086,,, +329,USA,,RS,b,Mingo Rochester (MN),43.854167,-92.375,,0.025,,6824,306,141,,,,,L1020 ,82100,,, +329,CAN,,X2,b,Athabasca (AB),54.729167,-113.208333,,0.025,,6897,325,142,,,,,L400 U386 10479s,DAID,82106,, +329,USA,,AAA,b,Abraham Lincoln (IL),40.145833,-89.375,,0.025,,6951,301,142,,,,4,L1012 U1028 4523s,TWEB,82070,, +329,USA,,RVN,b,Rogersville (TN),36.4375,-82.875,,0.025,,6855,294,142,,,,2,L1010 U1008 5842s,82101,,, +329,USA,,ISM,b,Kissimmee Orlando (FL),28.270833,-81.458333,,0.049,,7428,287,144,,,,,U1025 6760s,82085,,, +329,MRT,,FOF,b,Fort-de-France (972),14.604167,-61.041667,,0.025,,7198,261,145,,,,,U405 10.2s,ID+6 gap,86400,, +329,USA,,AEY,b,Waverly (TN),36.104167,-87.708333,,0.025,,7180,297,145,,,,0,L1026 U1022 5439s,82072,,, +329,USA,,PMV,b,Plattsmouth (NE),40.9375,-95.875,,0.025,,7257,306,146,,,,,U1021 7.5s,82097,,, +329,USA,,TAD,b,Trinidad (CO),37.3125,-104.375,,0.15,,8033,309,146,,,,991,L1043 U1022 8.0s,82103,,, +329,USA,,SMY,b,Soyya Marianna (FL),30.854167,-85.208333,,0.025,,7456,291,148,,,,994,L1051 U1049 7694s,82102,,, +329,USA,,AMD,b,Bozeman (MT),45.770833,-111.125,,0.025,,7610,318,149,,,,,,87075,,, +329,USA,,BQP,b,Bastrop (LA),32.770833,-91.875,,0.025,,7711,297,150,,,,993,L1043 U1028 7835s,82075,,, +329,USA,,OWU,b,West Woodward Woodward (OK),36.4375,-99.541667,,0.025,,7845,305,151,,,,999,L1020 U1024 7700s,82095,,, +329,CAN,,D,b,Carmanah (BC),48.604167,-124.791667,,0.025,,7902,328,152,,,,,,87077,,, +329,USA,,LXY,b,Mexia (TX),31.645833,-96.541667,,0.025,,8087,300,154,,,,3,L1014 U1025 9.4s,82089,,, +329,USA,,HMA,b,Hondo (TX),29.354167,-99.208333,,0.025,,8445,300,157,,,,996,L1027 U1024 5.0s,82082,,, +329,USA,,FIA,b,Florida Socorro (NM),34.104167,-106.875,,0.025,,8454,308,158,,,,,U1020 ,82078,,, +329,AUS,,CVM,b,Caversham (WA),-31.895833,115.958333,,0.025,,14040,97,176,,,,,,82077,,, +329,AUS,,NAR,b,Naranderra (NSW),-34.6875,146.541667,,0.025,,16323,74,184,,,,,L398 U398 9s,82090,,, +330,HOL,,SO,b,Eelde / Groningen (gro),53.229167,6.791667,,0.015,,127,12,68,,,,2,L400 U400 6.4s,82152,,, +330,DNK,,SB,b,Snderborg (sdk),54.5625,9.458333,,0.025,,340,35,76,,,,2,L403 U406 9.0s,82147,,, +330,D,,ABU,b,Altenburg / Nobitz (th),50.993889,12.521111,,0.025,,440,104,77,,,,3,L1027 U1033 ,82113,,, +330,F,,MB,b,Montbeliard / Courcelles (25),47.520833,6.958333,,0.025,,512,175,78,,,,,U4 ,ID+17 tone,82129,, +330,D,,HC,b,Heringsdorf (mev),53.854167,14.208333,,0.025,,557,67,79,,,,0,L1021 U1020 ,ID+6 gap,82123,, +330,I,,SRN,b,Saronno (va),45.645833,9.041667,,0.025,,744,164,80,,,,2,L1026 U1027 7.2s,82153,,, +330,XOE,,DGL,b,BHP Petroleum / Douglas,53.520833,-3.541667,,0.025,,686,287,80,,,,,L400 U400 6.2s,86405,,, +330,S,,SKS,b,Karlstad,59.395833,13.291667,,0.025,,916,25,82,,,,998,L410 U405 5.0s,82151,,, +330,SVK,,OB,b,Bratislava / M.R Stefanik / South (BA),48.104167,17.291667,,0.025,,893,116,82,,,,999,L1025 U1020 10.0s,ID+7 gap,82135,, +330,XOE,,CWP,b,Texaco / Captain Protector,58.3125,-1.791667,,0.025,,863,326,82,,,,,L394 U400 ,86404,,, +330,E,,LEN,b,Len / Virgen Del Camino (CAL-LE),42.604167,-5.625,,0.05,,1389,225,84,,,,239,L818 U1253 5.60s,ID+8 gap,82127,, +330,HRV,,ZRA,b,Zadar / Kakman (zd),43.979167,15.458333,,0.025,,1125,140,84,,,,310,L410 U1012 6.0s,ID+2 gap,82156,, +330,IRL,,NSM,b,Inishmaan Isl. (G),53.0625,-9.541667,,0.025,,1081,282,84,,,,,U375 4.7s,82130,,, +330,S,,LNA,b,Lena,59.520833,17.375,,0.025,,1069,35,84,,,,997,L406 U400 ,82128,,, +330,E,,G,b,Girona / Costa Brava (CAT-GI),41.9375,2.791667,,0.025,,1164,195,85,,,,2,L1016 U940 ,82120,,, +330,HNG,,NY,b,Nyregyhza (SSB),47.9375,21.708333,,0.025,,1184,107,85,,,,0,L1018 U1019 ,82131,,, +330,E,,RMA,b,Mlaga (AND-MA),36.645833,-4.458333,,0.08,,1919,211,87,,,,9983,L1033 U1021 ,ID+7 gap,82144,, +330,SRB,,ML,b,Kraljevo (Srb-rsk),43.770833,20.625,,0.025,,1403,126,87,,,,,L980 U870 ,ID+3 gap,86407,, +330,UKR,,RD,b,Rivne (RI),50.604167,26.125,,0.025,,1375,89,87,,,,952,U1024 7.0s,ID+5 gap,82142,, +330,UKR,,RW,b,Rivne (RI),50.645833,26.125,,0.025,,1374,89,87,,,,473,L1047 U1046 6.5s,ID+5 gap,82146,, +330,E,,AI,b,Alicante=Alacant (VAL-A),38.3125,-0.625,,0.025,,1628,202,89,,,,996,L356 U440 ,ID+6 gap,82114,, +330,ISL,,HN,b,Hornafjrur (au),64.270833,-15.208333,,0.025,,1835,326,91,,,,,U1020 8.0s,82124,,, +330,RUS,,PB,b,Moskva/Tushino (MV),55.8125,37.458333,,0.025,,2054,66,94,,,,,,86408,,, +330,UKR,,HA,b,Kharkiv / Osmova (KA),49.5625,36.208333,,0.025,,2097,86,94,,,,986,L1077 U980 ,ID+2 gap,82122,, +330,UKR,,HR,b,Kharkov / Osnova (KA),49.9375,36.208333,,0.025,,2083,85,94,,,,977,L1046 U962 ,ID+4 gap,82125,, +330,ISL,,RF,b,Rif,64.895833,-23.791667,,0.025,,2221,321,95,,,,,U1042 ,ID+4 gap,82143,, +330,NOR,,TV,b,Alta / Talvik,70.0625,22.958333,,0.025,,2168,17,95,,,,,,82154,,, +330,TUR,,KAD,b,Izmir/Kadifekale (ege-izm),38.413611,27.148333,,0.025,,2211,125,95,,,,983,L1053 U1020 ,Cont. ID,82126,, +330,RUS,,NZ,b,Ust-Labinsk (KD),45.229167,39.708333,,0.025,,2537,94,98,,,,0,L980 U980 30.0s,ID+26 gap,82133,, +330,LBY,,OA,b,Samah / Warehouse 59 (wah),28.104167,19.041667,,0.025,,2868,154,102,,,,0,L407 U406 5.0s,ID+2 gap,82134,, +330,RUS,,PM,b,Pechora (KO),65.104167,57.125,,0.025,,3159,43,105,,,,14,L948 U938 7.0s,82137,,, +330,MLI,,BO,b,Bamako / Senou (bam),12.520833,-8.041667,,0.025,,4588,202,119,,,,,U400 ,ID+3 gap,82116,, +330,XON,,2C,b,Panuke Platform, Offshore Nova Scotia,43.8125,-60.708333,,0.025,,4899,287,122,,,,,,DAID,82110, +330,CAN,,A9,b,Liverpool (NS),44.229167,-64.875,,0.025,,5141,290,124,,,,,U1002 10520s,DAID,82112,, +330,USA,,BH,b,Surry Bar Harbor (ME),44.520833,-68.291667,,0.025,,5339,292,126,,,,992,L1043 U1033 6.3s,82115,,, +330,CAN,,2A,b,South Indian Lake (MB),56.8125,-98.875,,0.05,,6129,320,131,,,,,U384 8999s,DBID,82109,, +330,USA,,SO,b,Suomi Marquette (MI),46.270833,-87.375,,0.025,,6356,305,137,,,,,L395 U401 ,87079,,, +330,KEN,,TH,b,Athi River (eas),-1.501944,37.020556,,0.025,,6615,144,139,,,,,,8300008,,, +330,CAN,,3G,b,Peggo (BC),59.270833,-120.125,,0.025,,6734,332,140,,,,,U397 7.3s,82111,,, +330,USA,,PWC,b,Pine River (MN),46.729167,-94.375,,0.025,,6702,309,140,,,,997,L1036 U1025 8015s,82140,,, +330,USA,,BWX,b,Starr-Browning (MT),48.604167,-113.125,,0.05,,7442,321,144,,,,,,87078,,, +330,PTR,,SJ,b,Patty (PR),18.395833,-66.125,,0.025,,7218,268,145,,,,998,L1037 U1035 5.98s,82149,,, +330,B,,PAG,b,Porto Alegre (RS),-29.979167,-51.208333,,1,,10706,227,149,,,,,L1023 U853 6564s,82136,,, +330,USA,,GLE,b,Gainesville (TX),33.729167,-97.208333,,0.025,,7946,302,152,,,,12,L1045 U7 6.0s,82121,,, +330,B,,RPR,b,Ribeiro Preto (SP),-21.145833,-47.791667,,0.2,,9687,229,153,,,,,,82145,,, +330,B,,YLA,b,Ilha (RJ),-22.770833,-43.208333,,0.2,,9616,225,153,,,,,,82155,,, +330,B,,CNA,b,Carolina (MA),-7.3125,-47.458333,,0.025,,8340,236,156,,,,,U1021 7123s,82117,,, +330,MEX,,CZM,b,Cozumel (qui),20.520833,-86.941667,,0.025,,8444,285,157,,,,55,L1181 U1290 7.4s,82119,,, +330,MYA,,MM,b,Mawlamyine,16.441389,97.657778,,0.025,,8656,79,159,,,,,,22100030,,, +330,USA,,MF,b,Missi Mc Allen (TX),26.270833,-98.291667,,0.025,,8663,297,159,,,,,U1024 8600s,86406,,, +330,CLM,,SIS,b,Puerto Ass (put),0.520833,-76.541667,,0.025,,9481,265,161,,,,0,L1033 U1033 8421s,82148,,, +330,INS,,NZ,b,Banda Aceh (AC-bac),5.520833,95.458333,,0.025,,9458,87,161,,,,0,,ID+6 gap,82132,, +330,TWN,,SK,b,Kaohsiung (KHS),22.580556,120.291667,,0.025,,9539,58,161,,,,0,9s,82150,,, +330,B,,PP,b,Metro (SP),-23.645833,-46.625,,0.025,,9869,227,163,,,,,,82139,,, +330,BOL,,R,b,La Paz (lpz),-16.520833,-68.208333,,0.025,,10443,248,164,,,,,,82141,,, +331,G,,GST,b,Gloucester (EN-GLO),51.895833,-2.208333,,0.05,,590,271,76,,,,995,L395 U382 5.3s,82162,,, +331,XOE,,JDY,b,Philips Peroleum / Judy,56.6875,2.375,,0.025,,572,334,79,,,,,,82164,,, +331,G,,GLW,b,Glasgow (SC-REN),55.854167,-4.458333,,0.025,,822,305,81,,,,997,L398 U397 6.3s,82160,,, +331,F,,TUR,b,Tours / Val De Loire (37),47.5625,0.791667,,0.015,,646,221,82,,,,,L398 U402 10.1s,ID+7 gap,82171,, +331,I,,DEC,b,Decimomannu (ca),39.354167,8.958333,,0.04,,1432,171,85,,,,998,L1020 U1072 ,ID+3.4 gap,82157,, +331,I,,GRT,b,Grottaglie (ta),40.4375,17.458333,,0.025,,1547,143,88,,,,0,L1020 U1020 ,ID+7 gap,82161,, +331,ALG,,HRM,b,Hassi R.Mel / Tilrempt / Oued Irarra (3),32.9375,3.291667,,0.025,,2147,188,94,,,,3,L1031 U1038 ,ID+5 gap,82163,, +331,AZR,,SC,b,Santa Cruz das Flores (flo),39.270833,-31.041667,,0.025,,3193,258,105,,,,1,L1025 U1024 8.0s,ID+6 gap,82169,, +331,GRL,,FH,b,Paamuit=Frederikshb (Kitaa) (kuj-nnt),61.979167,-49.625,,0.025,,3438,311,107,,,,998,L398 U402 8135s,82159,,, +331,ALS,,BZP,b,Bishop Galena (AK),64.729167,-156.791667,,1,,6943,352,126,,,,,L1040 U~1010 8.3s,87080,,, +331,USA,,JV,b,Catch Jeffersonville (IN),38.479167,-85.708333,,0.025,,6867,297,142,,,,994,L1034 U1027 5941s,82165,,, +331,USA,,PS,b,Dunez Pasco (WA),46.354167,-119.041667,,0.025,,7897,324,152,,,,0,L1030 U1028 6.2s,82168,,, +331,CLM,,UTI,b,tica (Zipaquir) (cun),5.1875,-74.475,,0.1,,8931,266,153,,,,,L1050 ,82172,,, +331,CHN,,DO,b,Qingzhou (FJ),26.5625,117.958333,,0.025,,9041,57,160,,,,993,L1038 U1024 ,82158,,, +331,SLV,,LAN,b,Amatecampo (San Salvadore) (ssl),13.395833,-89.125,,0.025,,9208,283,160,,,,974,L1032 U1036 4327s,82166,,, +331.5,F,,TLF,b,Toulouse / Francazal (31),43.604167,1.208333,,0.025,,1022,204,83,,,,-331.5,U6 28.0s,ID+23 tone,82173,, +332,HOL,,NV,b,Amsterdam / Schiphol (nho),52.145833,4.791667,,0.015,,111,273,62,,,,2,L432 U418 5.9s,82206,,, +332,F,,LL,b,Lille / Lesquin (59),50.5625,3.208333,,0.025,,281,234,76,,,,5,L400 U404 10.5s,82201,,, +332,XOE,,WHF,b,F16-A Platform,54.0625,4.041667,,0.025,,269,325,76,,,,,L398 U398 6.2s,ID+2 gap,82226,, +332,G,,SHM,b,Shoreham-by-Sea (EN-WSU),50.8125,-0.291667,,0.025,,486,255,78,,,,991,L406 U388 7.9s,82219,,, +332,I,,PDA,b,Padova (pd),45.395833,11.875,,0.025,,847,150,81,,,,,L1022 U1019 10.0s,ID+7 gap,86414,, +332,G,,OY,b,Aldergrove (NI-ANT),54.6875,-6.125,,0.025,,878,294,82,,,,17,L380 U414 11.0s,82207,,, +332,MNE,,RO,b,Tivat (TV),42.4375,18.541667,,0.025,,1408,135,87,,,,998,L1042 U1044 8.2s,ID+6 gap,82213,, +332,E,,EAL,b,Almagro (CAM-CR),38.9375,-3.791667,,0.025,,1663,212,90,,,,997,L1021 U1018 ,ID+4 gap,82186,, +332,POR,,FAR,b,Faro (agv),37.020833,-7.958333,,0.025,,2019,219,93,,,,0,L1024 U1026 7421s,ID+4 gap,82187,, +332,MRC,,SBI,b,Rabat / Sale (rsz),34.1875,-6.625,,0.025,,2248,213,95,,,,4,L815 U825 ,Cont. ID,82216,, +332,RUS,,LS,b,Ulyanovsk / Vostochny (UL),54.3125,48.291667,,0.025,,2758,68,101,,,,,L390 U393 ,IDx2,82202,, +332,RUS,,MR,b,Ulyanovsk / Vostochny (UL),54.229167,48.208333,,0.025,,2755,68,101,,,,620,L1160 U400 ,82205,,, +332,CAN,,YFM,b,La Grande 4 (QC),53.729167,-73.708333,,2,,5080,305,105,,,,0,L400 U406 10.2s,DAID,82229,, +332,IRN,,RSR,b,Ramsar (mzd),36.895833,50.708333,,0.025,,3823,98,111,,,,,U1020 9.0s,82215,,, +332,RUS,,RM,b,Tsentralny / Omsk (OM),54.9375,73.208333,,0.025,,4257,58,116,,,,,,82212,,, +332,CAN,,QT,b,Thunder Bay (ON),48.354167,-89.458333,,1,,6312,308,120,,,,997,L410 U404 10.2s,DAID,82211,, +332,CAN,,YTE,b,Cape Dorset (NU),64.229167,-76.541667,,0.025,,4667,320,120,,,,,U403 10.0s,ID+6 tone,82230,, +332,CAN,,VT,b,Buffalo Narrows (SK),55.854167,-108.458333,,0.5,,6611,324,126,,,,,U400 10.3s,DAID,82223,, +332,USA,,BE,b,Bedds Bedford (MA),42.479167,-71.375,,0.025,,5675,292,130,,,,2,L1035 U1040 5.53s,82174,,, +332,PAK,,BW,b,Bahawalpur (pjb),29.349722,71.718889,,0.025,,5824,89,131,,,,,,31500047,,, +332,USA,,BG,b,Smite Binghamton (NY),42.104167,-75.875,,0.025,,5985,294,133,,,,977,L1053 U1024 5942s,82175,,, +332,USA,,LG,b,Peths (NY),40.729167,-73.958333,,0.025,,5965,292,133,,,,988,L1045 U1021 6.06s,82199,,, +332,USA,,LGN,b,Peths New York (City) (NY),40.729167,-73.958333,,0.025,,5965,292,133,,,,,,82200,,, +332,USA,,DC,b,Oxonn Oxon Hill (Fort Foote Park) (MD),38.770833,-77.041667,,0.025,,6306,292,136,,,,985,L1055 U1028 5180s,82183,,, +332,USA,,PH,b,Phurn Port Huron (MI),42.854167,-82.625,,0.025,,6340,299,136,,,,,L1035 U1038 8201s,82208,,, +332,USA,,SG,b,Depre Green Bay (WI),44.395833,-88.125,,0.025,,6543,304,138,,,,985,L1047 U1023 6017s,82218,,, +332,USA,,DKA,b,Kenan Kenansville (NC),35.0625,-77.958333,,0.025,,6652,290,139,,,,995,L1014 U1053 5043s,82184,,, +332,USA,,LH,b,Landcaster (OH),39.729167,-82.541667,,0.025,,6575,296,139,,,,,,87083,,, +332,USA,,DN,b,Julip Danville (IL),40.270833,-87.541667,,0.025,,6834,300,141,,,,990,L1058 U1043 5979s,82185,,, +332,USA,,HK,b,Tawba Hickory (NC),35.770833,-81.291667,,0.025,,6808,292,141,,,,5,L1017 U1020 4.55s,82193,,, +332,USA,,VK,b,Vikor Devils Lake (ND),48.020833,-98.791667,,0.025,,6825,313,141,,,,998,L1030 U1025 8.7s,82222,,, +332,CAN,,XH,b,Medicine Hat (AB),50.020833,-110.791667,,0.05,,7215,321,142,,,,998,L396 U390 10.2s,DAID,82227,, +332,USA,,SBU,b,Blue Earth (MN),43.604167,-94.125,,0.025,,6941,307,142,,,,986,L1033 U1022 8.21s,82217,,, +332,USA,,VVV,b,Ortonville (MN),45.3125,-96.458333,,0.025,,6927,309,142,,,,,L1020 32.0s,AWOS-3,82224,, +332,USA,,CUL,b,Carmi (IL),38.104167,-88.125,,0.025,,7042,299,143,,,,2,L1015 U1018 6658s,82180,,, +332,USA,,FFL,b,Fairfield (IA),41.020833,-91.958333,,0.025,,7030,303,143,,,,5,L1018 U1017 6179s,82189,,, +332,USA,,ULH,b,Burwi Tullahoma (TN),35.479167,-86.208333,,0.025,,7139,295,144,,,,998,L1011 U1015 4186s,82221,,, +332,ALS,,MND,b,Mendenhall (AK),58.354167,-134.625,,0.025,,7237,339,145,,,,,,82203,,, +332,USA,,BVN,b,Alaby Albion (NE),41.729167,-98.041667,,0.025,,7310,308,146,,,,,U1048 6.3s,82177,,, +332,USA,,HEG,b,Herlong Jacksonville (FL),30.270833,-81.791667,,0.025,,7285,288,146,,,,,U1015 ,87081,,, +332,USA,,PL,b,Palee Tallahassee (FL),30.395833,-84.208333,,0.025,,7430,290,147,,,,,,82209,,, +332,CAN,,XT,b,Terrace (BC),54.354167,-128.541667,,0.025,,7466,333,148,,,,,U403 10.0s,DAID,82228,, +332,USA,,FCY,b,Forrest City (AR),34.9375,-90.791667,,0.025,,7463,298,148,,,,2,L1036 U1039 ,82188,,, +332,USA,,XDT,b,Tac X Stagefield Fort Rucker/Samson (AL),31.145833,-85.958333,,0.025,,7480,292,148,,,,,L1030 U1034 8.19s,86417,,, +332,USA,,IC,b,Piche Wichita (KS),37.5625,-97.458333,,0.025,,7631,304,149,,,,993,L1043 U1036 5895s,82195,,, +332,CAN,,WC,b,White Rock (Abbotsford) (BC),49.020833,-122.791667,,0.025,,7789,327,151,,,,,U369 10.4s,DAID,82225,, +332,USA,,FIS,b,Fish Hook Key West (FL),24.5625,-81.791667,,0.025,,7759,284,151,,,,988,L1052 U1032 8.5s,82190,,, +332,USA,,RPF,b,Carthage (TX),32.1875,-94.291667,,0.025,,7906,298,152,,,,17,L998 U1000 5664s,82214,,, +332,USA,,CAO,b,Clayton (NM),36.4375,-103.125,,0.025,,8043,307,153,,,,0,L1015 U1018 6.4s,82178,,, +332,CHN,,JA,b,Dexin (JL),42.854167,129.375,,0.025,,8121,40,154,,,,997,L1056 U1120 8s,82196,,, +332,USA,,IA,b,Laker Portland (OR),45.520833,-122.458333,,0.025,,8113,325,154,,,,,L1051 U1022 5.9s,87082,,, +332,USA,,LBH,b,Laker Portland (OR),45.520833,-122.458333,,0.025,,8113,325,154,,,,983,L1053 U1020 6.5s,82198,,, +332,USA,,CZX,b,Crosbyton (TX),33.604167,-101.208333,,0.025,,8186,304,155,,,,1,L1020 U1025 6853s,82181,,, +332,USA,,GUO,b,Georgetown (TX),30.6875,-97.708333,,0.025,,8240,300,155,,,,0,L1026 U1018 5643s,82191,,, +332,J,,HR,b,Hateruma (kyu-oki),24.0625,123.791667,,0.025,,9600,54,162,,,,,L1020 ,DAID,82194,, +332,HWA,,POA,b,Pahoa (HI),19.5625,-154.958333,,0.025,,11843,342,169,,,,0,L1018 U1018 8.5s,82210,,, +332,AUS,,MNE,b,Mount Keith (WA),-27.270833,120.541667,,0.05,,13987,90,173,,,,,,82204,,, +332,AUS,,DBY,b,Derby (WA),-17.354167,123.708333,,0.025,,13375,79,174,,,,,U1006 9.8s,82182,,, +332,AUS,,BHI,b,Broken Hill (NSW),-31.979167,141.458333,,0.1,,15776,76,176,,,,,L1020 U1020 9s,82176,,, +332,AUS,,BAR,b,Barcaldine (QLD),-23.5625,145.291667,,0.025,,15311,64,180,,,,,L1020 9.5s,86412,,, +332,AUS,,CAS,b,Casino (NSW),-28.854167,153.041667,,0.05,,16246,60,181,,,,997,L407 U400 9.1s,82179,,, +332,AUS,,KII,b,King Island (TAS),-39.895833,143.875,,0.025,,16521,84,184,,,,,L400 U400 9s,TWEB,82197,, +332.5,G,,CAM,b,Cambridge (EN-CAM),52.229167,0.208333,,0.025,,423,274,77,,,,502,L396 U404 9.9s,ID+6 gap,82233,, +332.5,J,,TS,b,Tokushima (shi-tok),34.145833,134.616667,,0.025,,9186,41,160,,,,500,L1000 U1021 20s,82234,,, +333,XOE,,SHO,b,Shell / Esso Sean A Platform,53.1875,2.875,,0.025,,267,298,76,,,,998,L423 U397 ,ID+5 gap,82246,, +333,D,,PI,b,Schwerin / Parchim (mev),53.479167,11.875,,0.025,,398,65,77,,,,1,L1031 U1033 ,82244,,, +333,XOE,,GFC,b,Statoil Gullfaks C Platform,61.229167,2.291667,,0.05,,1044,348,80,,,,3,L405 U415 ,82237,,, +333,G,,PH,b,Penzance Heliport (EN-CNW),50.145833,-5.541667,,0.025,,861,260,82,,,,,,82243,,, +333,S,,LE,b,Vsters/Hasslo,59.645833,16.708333,,0.025,,1053,33,84,,,,0,L397 U403 ,82239,,, +333,FIN,,G,b,Kemi-Tornio / Marttala,65.770833,24.541667,,0.025,,1826,27,91,,,,2,L406 U408 ,82236,,, +333,GRC,,KAO,b,Kassos (seg-dod),35.4375,26.958333,,0.025,,2464,131,98,,,,2,L397 U400 ,ID+12 gap,82238,, +333,RUS,,M,b,Maykop (AD),44.645833,40.125,,0.025,,2597,95,99,,,,,,IDx2,82240,, +333,AZE,,T,b,Nakhchivan (nxc),39.1875,45.458333,,0.025,,3306,100,106,,,,,,82249,,, +333,BFA,,OUA,b,Ouagadougou (kad),12.354167,-1.541667,,0.05,,4478,192,115,,,,,,82242,,, +333,CPV,,SVT,b,So Vicente (svc-slz),16.8125,-25.041667,,0.025,,4796,227,121,,,,,,82248,,, +333,VEN,,SFD,b,San Fernando de Apure (apu),7.895833,-67.458333,,1,,8217,262,139,,,,,U1015 ,82245,,, +333,USA,,HQU,b,Thomson Mcduffie (GA),33.520833,-82.541667,,0.025,,7068,291,144,,,,,U1045 ,87084,,, +333,USA,,STI,b,Sturgeon Mountain Home (ID),43.104167,-115.625,,0.025,,8057,320,154,,,,0,L1014 U1021 8.5s,82247,,, +333,CHN,,NS,b,Nanxiong (GD),25.104167,114.291667,,0.05,,8958,61,157,,,,,,82241,,, +333.5,I,,VOG,b,Voghera (pv),44.979167,8.958333,,0.025,,815,166,81,,,,500,L1020 U1020 10.0s,ID+5 gap,82252,, +333.5,XOE,,HRD,b,Harding B Platform,59.145833,1.291667,,0.025,,845,340,81,,,,500,L411 U409 ,82251,,, +334,D,,HDM,b,Coleman (rlp),49.520833,8.375,,0.025,,319,154,76,,,,993,L1039 U1022 8.9s,82262,,, +334,XOE,,ZT,b,F15-A Platform,54.229167,4.791667,,0.025,,259,336,76,,,,,,82282,,, +334,F,,BGW,b,Paris / Le Bourget (93),48.9375,2.291667,,0.025,,457,221,78,,,,2,L400 U400 10.2s,82257,,, +334,DNK,,FAU,b,Bornholm / Ronne / Fauna,55.020833,14.875,,0.025,,645,57,79,,,,,L408 U410 9.0s,82259,,, +334,SVN,,MR,b,Maribor (mb),46.354167,15.791667,,0.049,,933,130,79,,,,5,L388 U417 4.3s,ID+2gap,82267,, +334,F,,SAL,b,Salon De Provence (13),43.604167,5.125,,0.025,,951,186,82,,,,,U5 ,82274,,, +334,IRL,,GMN,b,Gormanston (MH),53.645833,-6.220833,,0.025,,863,286,82,,,,983,L417 U421 5.0s,82260,,, +334,NOR,,OPA,b,Oslo / Gardermoen / Oppaker (os),60.1875,11.541667,,0.025,,952,17,82,,,,14,L361 U390 7.7s,82268,,, +334,F,,YN,b,La Roche Sur Yon (85),46.6875,-1.291667,,0.015,,820,226,83,,,,,U5 ,DAID,82280,, +334,F,,DX,b,Dax/Seyresse (40),43.687778,-1.076389,,0.025,,1089,214,84,,,,,,2500015,,, +334,IRL,,KER,b,Kerry / Farranfore (KY),52.1875,-9.541667,,0.025,,1086,277,84,,,,2,L407 U400 5.4s,82264,,, +334,UKR,,VI,b,Verchnie Vysotske,48.9375,23.041667,,0.025,,1224,100,85,,,,15,L1059 U1044 ,IDx2 + 23 gap,82278,, +334,I,,AME,b,Manfredonia / Amendola (fg),41.520833,15.875,,0.025,,1378,145,87,,,,0,L1018 U1023 ,ID+6 gap,82255,, +334,FIN,,S,b,Kuopio / Jl,63.020833,27.791667,,0.025,,1744,38,90,,,,,U400 ,82273,,, +334,ISL,,AR,b,Akureyri (ne),65.770833,-18.125,,0.025,,2044,327,93,,,,,L952 U1050 5.0s,ID+3 gap,82256,, +334,RUS,,A,b,Arkhangelsk / Talagi (AR),64.604167,40.708333,,0.025,,2389,41,97,,,,,,82253,,, +334,RUS,,K,b,Arkhangelsk / Talagi (AR),64.604167,40.791667,,0.025,,2393,41,97,,,,,L1026 U1025 ,82263,,, +334,LBY,,OXY,b,Alpha 103 (wah),29.020833,20.791667,,0.025,,2828,150,101,,,,0,L1020 U1020 ,ID+2 gap,82269,, +334,IRN,,SRS,b,Sarakhs (rkh),36.495278,61.073889,,0.025,,4557,90,119,,,,,,82275,,, +334,CAN,,YER,b,Fort Severn (ON),55.979167,-87.625,,0.2,,5666,314,121,,,,,U408 10.2s,DAID,82279,, +334,SEN,,SZR,b,Ziguinchor (zig),12.5625,-16.291667,,0.025,,4844,213,121,,,,,,82276,,, +334,USA,,RM,b,Noxks Rockland (ME),44.104167,-69.208333,,0.025,,5425,292,127,,,,990,L1055 U1037 ,82272,,, +334,CAN,,YSH,b,Smiths Falls Montague (ON),44.895833,-76.041667,,0.025,,5794,297,131,,,,,U402 10.19s,DAID,82281,, +334,USA,,BNR,b,Benton Ridge Findlay (OH),41.020833,-83.625,,0.025,,6541,298,138,,,,0,L1040 U1035 8219s,82258,,, +334,USA,,LH,b,Egrow Bloomington (IL),40.5625,-88.875,,0.025,,6889,301,142,,,,999,L1041 U1051 5946s,82265,,, +334,CAN,,P2,b,Wetaskiwin (AB),52.979167,-113.375,,0.025,,7059,324,144,,,,,U389 10.4s,DAID,82270,, +334,USA,,UU,b,Seyer Corinth (MS),35.020833,-88.625,,0.025,,7325,297,146,,,,995,L1033 U1057 8524s,82277,,, +334,ALS,,HCP,b,Kulik Lake Nonvianuk Lake (AK),59.020833,-155.625,,0.025,,7552,350,148,,,,,,86422,,, +334,HND,,PIC,b,Picacho (fmz),14.145833,-87.208333,,0.05,,9014,282,157,,,,,U1021 ,82271,,, +334,NZL,,HD,b,Whitford,-36.9375,175.041667,,0.25,,18108,32,180,,,,,U1038 8.12s,82261,,, +335,E,,TON,b,Torralba de Aragon (ARA-HU),41.9375,-0.541667,,0.3,,1246,208,75,,,,3,L1007 U1012 ,ID+7 gap,82336,, +335,F,,MC,b,Montlucon / Domerat (03),46.354167,2.458333,,0.05,,701,206,77,,,,,U15 ,DAID,82318,, +335,XOE,,CVH,b,Cavendish,54.479167,1.708333,,0.025,,409,312,77,,,,,,82300,,, +335,G,,WCO,b,Westcott (EN-BKS),51.854167,-0.958333,,0.025,,505,270,78,,,,997,L403 U405 6.8s,82340,,, +335,SUI,,BER,b,Bern / Belp (be),46.895833,7.541667,,0.025,,585,172,79,,,,0,L398 U400 10.1s,ID+6 gap,82288,, +335,S,,AC,b,Hultsfred,57.520833,15.791667,,0.025,,849,41,81,,,,,U390 ,82283,,, +335,XOE,,SCO,b,Amerada Hess / Scott Platform,58.270833,0.208333,,0.025,,789,333,81,,,,10,L402 U421 9.6s,82332,,, +335,HNG,,BL,b,Budapest/Ferenc Liszt Int. (Bud),47.479167,19.208333,,0.025,,1051,114,83,,,,485,L1022 U~1020 10.0s,ID+8 gap,82290,, +335,S,,NAK,b,Stockholm / Bromma / Nacka,59.270833,18.208333,,0.025,,1084,38,84,,,,1,L399 U401 ,82323,,, +335,MNE,,POD,b,Podgorica (PG),42.395833,19.291667,,0.025,,1449,133,87,,,,,U1077 ,ID+7 gap,82326,, +335,E,,L,b,Madrid / Getafe (MAD-M),40.270833,-3.708333,,0.025,,1526,214,88,,,,,U1023 ,ID+2 gap,82313,, +335,E,,Z,b,Ibiza=Eivissa (BAL-IB),38.895833,1.375,,0.025,,1520,197,88,,,,,U1019,82344,,, +335,ISL,,EL,b,Ellidavatn,64.0625,-21.791667,,0.1,,2095,320,88,,,,2,L1028 U1031 ,ID+2 gap,82305,, +335,NOR,,LR,b,Mosjoen / Laksfors,65.604167,13.291667,,0.025,,1550,12,88,,,,17,L352 U384 ,82316,,, +335,BUL,,S,b,Sofia (sof),42.6875,23.458333,,0.025,,1649,123,89,,,,,U1020 ,82331,,, +335,MDA,,CA,b,Marculest,47.895833,28.291667,,0.025,,1625,98,89,,,,,,82292,,, +335,BUL,,G,b,Gorna Oryahovitsa (vlt),43.154444,25.685833,,0.025,,1746,117,90,,,,,U1140 ,ID+6s gap + tone,82309,, +335,I,,PAN,b,Pantelleria (tp),36.8125,11.958333,,0.025,,1756,163,91,,,,0,L1021 U1019 10.0s,ID+5 gap,82325,, +335,BUL,,B,b,Burgas (bur),42.5625,27.458333,,0.025,,1898,116,92,,,,,U1020 ,ID+3 gap,82285,, +335,BUL,,W,b,Varna (vrn),43.229167,27.791667,,0.025,,1870,113,92,,,,7,L1020 U1032 5.8s,ID+4 gap,82339,, +335,ISL,,VA,b,Egilsstair/Vad (au),65.104167,-14.625,,0.025,,1871,329,92,,,,,U1020 ,82338,,, +335,RUS,,FV,b,Venev,54.354167,38.208333,,0.025,,2113,71,94,,,,,L1020 ,2xID + 20,82308,, +335,UKR,,DP,b,Dnipopetrovsk (DP),48.354167,35.041667,,0.025,,2065,90,94,,,,2,L1037 U1041 ,IDx2 + 20 gap, also 2h on 671 kHz,82302, +335,UKR,,DR,b,Dnipropetrovsk (DP),48.354167,35.208333,,0.025,,2076,90,94,,,,997,L945 U1055 ,IDx2 + 6 gap,82304,, +335,CAN,,FK,b,Junction (Deer Lake) (NL),49.270833,-57.291667,,0.025,,4352,292,116,,,,,U400 10.6s,ID+6 tone,82306,, +335,CAN,,YUT,b,Repulse Bay (NU),66.520833,-86.208333,,0.025,,4953,325,123,,,,,U404 10.33s,DAID,82343,, +335,CAN,,YLD,b,Chapleau (ON),47.770833,-83.375,,0.1,,6019,304,127,,,,2,L400 U408 10.4s,DAID,82342,, +335,USA,,PV,b,Rench Providenence (RI),41.645833,-71.458333,,0.025,,5740,291,130,,,,998,L1044 U1040 ,82327,,, +335,USA,,SW,b,Neely Newburgh (NY),41.479167,-74.208333,,0.025,,5926,293,132,,,,1,L1012 U1025 8.53s,82335,,, +335,CAN,,K,b,Kilo / Waterloo Rgnl (ON),43.479167,-80.291667,,0.025,,6154,298,135,,,,,,87086,,, +335,CAN,,YXO,b,Carmi (BC),49.479167,-119.041667,,0.5,,7603,325,136,,,,,,87087,,, +335,CAN,,ZKF,b,Kitchener (Wellington) (ON),43.479167,-80.291667,,0.015,,6154,298,137,,,,995,L396 U394 10.18s,DAID,82345,, +335,USA,,COQ,b,Cloquet (MN),46.6875,-92.541667,,0.025,,6608,308,139,,,,995,L1038 U1028 7898s,82298,,, +335,USA,,MDZ,b,Medford (WI),45.104167,-90.291667,,0.025,,6609,306,139,,,,,U1014 7692s,82319,,, +335,USA,,LUK,b,Cincinnati (OH),39.145833,-84.375,,0.025,,6733,297,140,,,,2,L1032 U1035 7903s,82317,,, +335,USA,,MK,b,Suzze Marion (VA),36.9375,-81.208333,,0.025,,6711,293,140,,,,947,L77 U978 4.78s,82321,,, +335,USA,,RWN,b,Winamac (IN),41.104167,-86.625,,0.025,,6713,300,140,,,,,U1020 ,82330,,, +335,USA,,FEP,b,Freeport (IL),42.229167,-89.625,,0.025,,6799,303,141,,,,,U1020 ,87085,,, +335,USA,,FL,b,Alcot Florence (SC),34.1875,-79.875,,0.025,,6844,290,141,,,,1,L1017 U1022 8600s,82307,,, +335,CAN,,B3,b,Jedney Airstrip (Pink Mountain) (BC),57.229167,-122.208333,,0.025,,6990,332,143,,,,,U400 ,82286,,, +335,USA,,CK,b,Snuff Clarksville (TN),36.520833,-87.375,,0.025,,7126,297,144,,,,993,L1040 U1029 6035s,82295,,, +335,USA,,CNC,b,Chariton (IA),41.020833,-93.375,,0.025,,7110,304,144,,,,,U1030 5.8s,82296,,, +335,USA,,MEY,b,Mapleton (IA),42.1875,-95.791667,,0.025,,7149,307,144,,,,1,L1030 U1035 7.35s,82320,,, +335,USA,,SV,b,Wassa Savannah (GA),32.020833,-80.958333,,0.025,,7088,289,144,,,,996,L1027 U1028 6000s,82333,,, +335,USA,,AWS,b,Lawson Columbus (GA),32.3125,-85.041667,,0.025,,7325,292,146,,,,998,L1056 U1046 9808s,82284,,, +335,B,,URP,b,Urubupung (SP),-20.770833,-51.541667,,1,,9849,232,147,,,,,L1036 ,82337,,, +335,USA,,BDX,b,Broadus (MT),45.4375,-105.375,,0.025,,7369,315,147,,,,5,L1020 U1033 6.3s,82287,,, +335,USA,,LEE,b,Leesburg (FL),28.8125,-81.791667,,0.025,,7405,287,147,,,,998,L1031 U1033 4458s,82314,,, +335,USA,,BV,b,Almnd Batesville (AR),35.6875,-91.791667,,0.025,,7460,299,148,,,,998,L1032 U1027 7974s,82291,,, +335,USA,,CNK,b,Concordia (KS),39.5625,-97.625,,0.025,,7470,306,148,,,,10,L1061 U1008 6.9s,82297,,, +335,USA,,CVP,b,Capitol Helena (MT),46.604167,-111.958333,,0.025,,7573,319,149,,,,6,L1027 U1040 7.8s,82301,,, +335,USA,,ID,b,Jeffe Independence (KS),37.0625,-95.791667,,0.025,,7579,303,149,,,,995,L1020 U1010 8.6s,82310,,, +335,USA,,CDH,b,Camden (AR),33.604167,-92.791667,,0.025,,7696,298,150,,,,,U1060 ,82294,,, +335,USA,,RQO,b,El Reno (OK),35.479167,-98.041667,,0.025,,7843,303,151,,,,,U1019 6.2s,82329,,, +335,USA,,IHS,b,Ironhorse Fort Carson (CO),38.6875,-104.791667,,0.025,,7933,310,152,,,,986,L1054 U1032 8.0s,82311,,, +335,USA,,OPL,b,St Landry Opelousas (LA),30.645833,-92.125,,0.025,,7906,296,152,,,,998,L1045 U1035 7739s,82324,,, +335,COM,,FXZ,b,Grande Glorieuse,-11.551389,47.283611,,0.025,,8087,138,154,,,,,,10000004,,, +335,MYA,,BGN,b,Bagan,21.180833,94.928056,,0.025,,8067,78,154,,,,,,22100015,,, +335,SEY,,COE,b,Coetivy,-7.145833,56.278056,,0.025,,8102,127,154,,,,,,11500013,,, +335,USA,,CV,b,Hisan Clovis (NM),34.354167,-103.208333,,0.025,,8232,306,155,,,,0,L1040 U1038 6.0s,82299,,, +335,TWN,,LK,b,Taipei (TPS),25.0625,121.458333,,0.05,,9377,56,158,,,,14,L1016 U1044 ,82315,,, +335,USA,,DR,b,Kotti Del Rio (TX),29.4375,-100.958333,,0.025,,8541,301,158,,,,997,L1020 U1016 8.6s,82303,,, +335,CHN,,JF,b,Shengxian (ZJ),29.604167,120.791667,,0.025,,8923,53,159,,,,,7s,82312,,, +335,USA,,CC,b,Kanan Concord (CA),38.0625,-122.041667,,0.025,,8817,321,159,,,,0,L1026 U1030 6.3s,82293,,, +335,AUS,,BHI,b,Broken Hill (NSW),-31.979167,141.458333,,0.1,,15776,76,176,,,,,,82289,,, +335,AUS,,AS,b,Alice Springs (NT),-23.777953,133.873522,,0.025,,14600,75,178,,,,,U1000 20s,86423,,, +335,AUS,,YAS,b,Yass (NSW),-34.8125,149.041667,,0.025,,16496,72,184,,,,,L400 U404 9s,82341,,, +336,XOE,,HWB,b,Harald B Platform,56.354167,4.291667,,0.025,,492,345,78,,,,5,L400 U411 6.0s,82354,,, +336,S,,LT,b,Halmstad,56.979167,12.875,,0.025,,683,35,80,,,,0,L406 U404 ,82356,,, +336,G,,AQ,b,Aberdeen (SC-ABC),57.145833,-2.375,,0.025,,795,318,81,,,,994,L404 U394 7.0s,82348,,, +336,NOR,,BTA,b,Bergen / Flesland / Bratta (ho),60.0625,5.291667,,0.025,,887,356,82,,,,1,L399 U402 8.0s,82351,,, +336,NOR,,RS,b,Roros,62.5625,11.291667,,0.025,,1198,12,85,,,,991,L383 U381 ,82364,,, +336,FIN,,M,b,Mikkeli,61.6875,27.125,,0.025,,1635,41,89,,,,,,82357,,, +336,POR,,MTL,b,Monte Real (lei),39.895833,-8.875,,0.025,,1792,227,91,,,,0,L1130 U940 ,82360,,, +336,TUR,,HTY,b,Hatay (akd-hat),36.354167,36.291667,,0.025,,2922,115,102,,,,,,82353,,, +336,GRL,,AA,b,Aasiaat (qaa-aas),68.729167,-52.791667,,0.025,,3541,324,108,,,,,,82347,,, +336,GRL,,QQ,b,Qaanaaq=Thule (qaa-qaq),77.479167,-69.291667,,0.025,,4065,339,114,,,,,L405 5.8s,82362,,, +336,CAN,,BV,b,Champlain (QC),46.854167,-71.291667,,0.025,,5370,297,127,,,,,U403 10282s,DAID,82352,, +336,USA,,PV,b,Naada Atlantic City (NJ),39.479167,-74.708333,,0.025,,6105,291,134,,,,,U1050 ,82361,,, +336,CAN,,LF,b,La Salle (MB),49.645833,-97.291667,,0.05,,6618,313,136,,,,5,L397 U394 9.5s,DAID,82355,, +336,USA,,BDB,b,Accomack Melfa (VA),37.5625,-75.791667,,0.025,,6319,290,136,,,,,U1024 5334s,82350,,, +336,USA,,MA,b,Wexford Cadillac (MI),44.229167,-85.541667,,0.025,,6407,302,137,,,,,L1036 U1025 6013s,86429,,, +336,USA,,AZS,b,Azalea Park Charlottesville (VA),38.020833,-78.541667,,0.025,,6459,292,138,,,,2,L1020 U1021 8600s,82349,,, +336,USA,,MCZ,b,Williamston (NC),35.854167,-77.208333,,0.025,,6542,290,138,,,,0,L1026 U1027 6586s,82359,,, +336,USA,,RS,b,Muffe Fort Meyers (FL),26.479167,-81.875,,0.025,,7604,286,149,,,,991,L1046 U1033 8012s,82363,,, +336,TZA,,MT,b,Mtwara (mtw),-10.332222,40.184444,,0.025,,7657,144,150,,,,,,11400007,,, +337,D,,LHR,b,Lahr / Schwarzwald (bw),48.354167,7.791667,,0.025,,429,166,77,,,,998,L1024 U1016 8.0s,ID+5 gap,82374,, +337,G,,WTN,b,Warton (EN-LNC),53.770833,-2.875,,0.025,,648,290,79,,,,993,L408 U391 8.4s,82381,,, +337,G,,EX,b,Exeter (EN-DVN),50.770833,-3.291667,,0.025,,688,261,80,,,,14,L392 U421 9.6s,82368,,, +337,I,,RMG,b,Romagnano Sesia (no),45.645833,8.375,,0.025,,733,168,80,,,,36,L1022 U1032 ,ID+4 gap,82378,, +337,S,,OZ,b,Sderhamn / Skallen,61.229167,17.208333,,0.025,,1206,29,85,,,,997,L404 U395 ,82377,,, +337,I,,AH,b,Alghero (ss),40.6875,8.291667,,0.025,,1278,173,86,,,,2,L1019 U1020 8.0s,ID+6 gap,82367,, +337,FRO,,MY,b,Myggenaes (vgo),62.106875,-7.587767,,0.025,,1390,328,87,,,,990,L429 U409 12.0s,ID+6 gap,82375,, +337,SRB,,VRN,b,Vranje (Srb-pcn),42.555342,21.911581,,0.04,,1573,126,87,,,,18,L986 U1023 10.0s,ID+7 tone,82380,, +337,FIN,,KAJ,b,Kajaani / Koutaniemi,64.270833,27.541667,,0.025,,1816,34,91,,,,2,L406 U410 ,82373,,, +337,RUS,,UP,b,Zenzeli,45.9375,47.041667,,0.025,,2999,87,103,,,,985,L1050 U1020 ,IDx2 + 20 gap,82379,, +337,IRN,,IFN,b,Esfahan / Shahid Beheshti Intl (esf),32.729167,51.875,,0.025,,4215,103,115,,,,3,L702 U663 4.6s,Cont. ID,82372,, +337,CAN,,1Z,b,Kerrobert (SK),51.854167,-109.041667,,0.2,,6979,321,134,,,,,,87088,,, +337,CAN,,7D,b,Hudson Bay (SK),52.854167,-102.208333,,0.025,,6593,318,139,,,,,L413 U414 8172s,82366,,, +337,USA,,FF,b,Hamre Fergus Falls (MN),46.229167,-96.041667,,0.025,,6830,310,141,,,,998,L1050 U1040 6.0s,82369,,, +337,CAN,,1Q,b,Testlantlints Rock (BC),54.1875,-132.958333,,0.025,,7612,336,149,,,,,U420 ,DAID,82365,, +337,USA,,NA,b,Maagg Santa Ana (CA),33.6875,-117.875,,0.025,,9049,316,160,,,,0,L1040 U1038 6.0s,82376,,, +337,J,,HM,b,Haneda (kan-tok),35.5625,139.791667,,0.025,,9268,37,161,,,,0,L1020 U1000 5s,82371,,, +337.5,XOE,,GNT,b,Shell / Esso Gannet A Platform,57.1875,0.958333,,0.025,,664,330,80,,,,505,L400 U410 ,82382,,, +337.5,AFS,,RA,b,Rand (GT),-26.4375,28.291667,,0.1,,8991,160,154,,,,-337.5,U1023 7.44s,82383,,, +338,XOE,,IAP,b,Inde 23 A / Perenco UL Ltd Platform,53.3125,2.541667,,0.025,,293,299,76,,,,2,L398 U402 5.5s,82403,,, +338,G,,FNY,b,Robin Hood / Doncaster / Finningley (EN-SYK),53.479167,-1.041667,,0.025,,523,290,78,,,,2,L414 U403 6.5s,82395,,, +338,D,,MNW,b,Mnchen (bay),48.374167,11.914167,,0.025,,570,135,79,,,,2,L1020 U1022 5.3s,ID+1 gap,82411,, +338,F,,NC,b,Nice / Cote Dazur (06),43.604167,7.125,,0.04,,947,177,80,,,,,U2 ,ID+16 tone,82414,, +338,S,,OA,b,Jnkping,57.8125,14.125,,0.025,,802,35,81,,,,999,L399 U399 ,82415,,, +338,F,,GU,b,Brest / Guipavas (29),48.479167,-4.291667,,0.025,,860,246,82,,,,,U3 ,ID+16 tone,82397,, +338,MDR,,PST,b,Porto Santo / Ilheu De Baixo (pst),33.0625,-16.375,,2,,2798,230,82,,,,1,L1030 U1016 7.1s,ID+3 gap,82420,, +338,NOR,,RST,b,Rst (no),67.520833,12.125,,0.025,,1741,8,90,,,,998,L400 U396 9.97s,82423,,, +338,RUS,,VU,b,Khotilovo / Novyj,57.645833,34.125,,0.025,,1861,60,92,,,,0,L868 U869 ,IDx2 + 6.5 gap,82433,, +338,NOR,,SA,b,Bardufoss / Sorreisa,69.104167,18.208333,,0.025,,1988,14,93,,,,0,L400 U400 9.95s,82425,,, +338,RUS,,M,b,Moskva/Sheremetyevo (MV),55.979167,37.375,,0.025,,2049,66,93,,,,,L1010 ,ID+5 gap,82408,, +338,RUS,,A,b,Moskva/Sheremetyevo (MV),55.979167,37.458333,,0.025,,2054,66,94,,,,,,82385,,, +338,TUR,,ES,b,Ankara / Esenboga (ica-ank),40.1875,33.041667,,0.025,,2421,113,97,,,,988,L1040 U1020 ,Cont. ID,82391,, +338,TUR,,EZS,b,Elazig LTCA (dad-ela),38.596792,39.283958,,0.025,,2939,108,102,,,,17,L1020 U1055 ,Cont. ID,82393,, +338,CAN,,YPX,b,Puvirnituq (QC),60.0625,-77.291667,,0.5,,4909,315,109,,,,,U400 10.2s,DAID,82436,, +338,CAN,,5Y,b,Trenton (NS),45.604167,-62.625,,0.025,,4908,290,122,,,,199,L~400 U398 10.35s,DAID,82384,, +338,CAN,,ZEM,b,Eastmain (QC),52.229167,-78.541667,,0.025,,5441,306,127,,,,,U393 10.4s,DAID,82437,, +338,ALS,,CMQ,b,Campbell Lake (Anchorage) (AK),61.1875,-150.041667,,1,,7245,348,129,,,,0,L1032 U1028 6.0s,TWEB,82388,, +338,PAK,,LO,b,Lahore (pjb),31.444444,74.403889,,0.025,,5844,85,131,,,,,,31500035,,, +338,USA,,YN,b,Fetch Youngstown / Warren (OH),41.1875,-80.625,,0.025,,6346,296,136,,,,983,L1063 U1026 5602s,82435,,, +338,USA,,DE,b,Madds Detroit (MI),42.479167,-83.125,,0.025,,6399,299,137,,,,998,L1047 U1047 5841s,82390,,, +338,USA,,POB,b,Pope Fayetteville (NC),35.229167,-78.958333,,0.05,,6703,290,137,,,,543,L1032 U1018 7760s,82418,,, +338,USA,,HE,b,Shebb Sheboygan (WI),43.854167,-87.791667,,0.025,,6566,303,139,,,,994,L1020 U1018 5966s,82399,,, +338,USA,,LH,b,Caser Lancaster (OH),39.729167,-82.541667,,0.025,,6575,296,139,,,,998,L1006 U1035 4.58s,82405,,, +338,USA,,MS,b,Kinte New Orleans (LA),30.020833,-90.375,,0.4,,7851,294,139,,,,,L1035 8166s,82413,,, +338,USA,,AP,b,Vagey Minneapolis (MN),44.8125,-93.291667,,0.025,,6798,307,141,,,,510,L~1000 U1020 ,82386,,, +338,USA,,LM,b,Oblio St Louis (MO),38.8125,-90.458333,,0.05,,7123,301,141,,,,991,L1039 U1055 6258s,82406,,, +338,USA,,UMP,b,Metropolitan Indianapolis (IN),39.9375,-86.041667,,0.025,,6771,299,141,,,,998,L1022 U1021 6.15s,82431,,, +338,CAN,,XG,b,Lakeshore (Watson Lake) (YT),60.104167,-128.791667,,0.025,,6912,337,142,,,,,,82434,,, +338,USA,,VTI,b,Garrison Vinton (IA),42.229167,-92.041667,,0.025,,6937,304,142,,,,991,L1037 U1020 4.6s,82432,,, +338,CAN,,ZU,b,Whitecourt (AB),54.0625,-115.458333,,0.025,,7043,326,143,,,,,U392 10196s,DAID,82438,, +338,USA,,GY,b,Dyana Greenville (SC),34.6875,-82.458333,,0.025,,6969,292,143,,,,,U1023 6051s,82398,,, +338,USA,,GFZ,b,Greenfield (IA),41.3125,-94.458333,,0.025,,7147,305,144,,,,,L1024 U1025 6335s,82396,,, +338,USA,,SHL,b,Sheldon (IA),43.229167,-95.875,,0.025,,7067,307,144,,,,21,L1024 U1008 4821s,82426,,, +338,USA,,PBT,b,Proberta Red Bluff (CA),40.104167,-122.208333,,0.5,,8626,322,145,,,,990,L1045 U1023 7.5s,82417,,, +338,USA,,CYR,b,Caidy Cairo (GA),30.895833,-84.125,,0.025,,7384,291,147,,,,0,L1025 U1023 7381s,82389,,, +338,USA,,FJ,b,Luuce (FL),27.479167,-80.458333,,0.025,,7428,285,147,,,,990,L1052 U1039 6028s,82394,,, +338,USA,,GGY,b,Gragg-Wade (AL),32.854167,-86.625,,0.025,,7380,294,147,,,,,U1021 6.77s,86434,,, +338,USA,,JZ,b,Newbn Lawrence (KS),38.895833,-95.125,,0.025,,7386,304,147,,,,987,L1060 U1041 6010s,82404,,, +338,USA,,PSS,b,Prosser Hastings (NE),40.6875,-98.458333,,0.025,,7420,307,147,,,,0,L1035 U1046 8.08s,82419,,, +338,USA,,RYN,b,Ryan Tucson (AZ),32.145833,-111.125,,0.4,,8858,310,147,,,,995,L1041 U1021 8.6s,82424,,, +338,USA,,BL,b,Benza Bellingham (WA),48.895833,-122.541667,,0.05,,7792,327,148,,,,996,L1028 U1020 8.55s,82387,,, +338,USA,,TT,b,Stutt Stuttgart (AR),34.520833,-91.541667,,0.025,,7543,298,148,,,,,L1042 U1027 6.0s,82429,,, +338,USA,,HIL,b,Hilyn Great Bend (KS),38.354167,-98.875,,0.025,,7643,306,149,,,,,U1014 5.5s,82400,,, +338,USA,,ESY,b,Yellowstone West Yellowstone (MT),44.6875,-111.125,,0.025,,7708,318,150,,,,16,L1025 U1038 ,82392,,, +338,USA,,MRK,b,Molly Ridge Rayville (LA),32.395833,-91.791667,,0.025,,7737,297,150,,,,995,L1032 U1015 7917s,82412,,, +338,USA,,TU,b,Oillr Tulsa (OK),36.104167,-95.875,,0.025,,7665,302,150,,,,989,L1046 U1027 6568s,82430,,, +338,CUB,,K,b,Santiago de Cuba (sc),19.979167,-75.958333,,0.025,,7755,277,151,,,,,,87090,,, +338,USA,,K,b,Ediz Hook Port Angeles (WA),48.145833,-123.375,,0.025,,7895,327,152,,,,,L1027 U1013 ~4.8s,86436,,, +338,CHN,,PA,b,Qingdao / Liuting (SD),36.104167,120.458333,,0.025,,8313,50,156,,,,999,L1048 U1043 ,82416,,, +338,USA,,LSA,b,Lamesa (TX),32.770833,-101.875,,0.025,,8298,304,156,,,,,L1013 U1010 5.5s,82407,,, +338,USA,,CVB,b,Castroville (TX),29.354167,-98.875,,0.025,,8426,300,157,,,,,U1045 ,87089,,, +338,USA,,HR,b,Sebas Harlingen (TX),26.3125,-97.625,,0.025,,8618,297,158,,,,985,L1052 U1022 8134s,82402,,, +338,CHN,,HKG,b,Hong Kong,22.229167,114.291667,,0.025,,9215,63,160,,,,,L1029 U1030 ,TWEB, female voice,86435, +338,THA,,SR,b,Surat Thani (stn),9.133056,99.145278,,0.025,,9393,82,161,,,,,,82427,,, +338,AUS,,MA,b,Mount Isa (QLD),-20.6875,139.458333,,0.025,,14694,67,178,,,,,L1020 U1022 9s,82409,,, +338,AUS,,ROC,b,Rockdale (VIC),-37.604167,144.791667,,0.025,,16424,80,184,,,,999,L400 U400 9s,82422,,, +338,AUS,,MCO,b,Mallacoota (VIC),-37.604167,149.708333,,0.025,,16752,75,185,,,,0,L412 U414 9s,82410,,, +339,D,,HOS,b,Hamburg (ham),53.6875,10.125,,0.025,,305,53,76,,,,0,L1019 U1022 ,82448,,, +339,XOE,,OH,b,Conoco Viking AR Platform,52.520833,2.291667,,0.025,,284,281,76,,,,,,82453,,, +339,F,,GI,b,Amiens / Glisy (80),49.854167,2.458333,,0.025,,373,229,77,,,,,U2 11.0s,82447,,, +339,F,,NE,b,Nancy / Essey (54),48.5625,6.125,,0.025,,395,183,77,,,,,L5 ,ID+17 tone,82452,, +339,G,,BIA,b,Bournemouth (EN-DOR),50.770833,-1.875,,0.04,,593,259,77,,,,986,L425 U403 9.2s,82441,,, +339,DNK,,SD,b,Sindal (njy),57.520833,10.125,,0.025,,647,20,79,,,,0,L400 U403 4.0s,ID+2 gap,82459,, +339,F,,FG,b,Montpellier / Mediterranee (34),43.5625,4.041667,,0.025,,967,191,83,,,,,L400 U405 ,82445,,, +339,IRL,,OL,b,Shannon (CE),52.729167,-8.791667,,0.025,,1031,280,83,,,,4,L1016 U1021 9.0s,82454,,, +339,NOR,,LS,b,Forde / Bringeland / Langeneset,61.395833,5.875,,0.025,,1033,358,83,,,,2,L386 U385 ,82450,,, +339,S,,EA,b,Stockholm / Arlanda,59.6875,18.125,,0.025,,1112,36,84,,,,2,L403 U404 ,82444,,, +339,FIN,,V,b,Kokkola / Kruunupyy,63.6875,23.125,,0.025,,1612,31,89,,,,0,L402 U403 ,82462,,, +339,RUS,,WK,b,Velikiye Luki (PS),56.3125,30.541667,,0.025,,1628,64,89,,,,2,L865 U870 ,82463,,, +339,GRC,,ROS,b,Rhodos/Diagoras (seg-dod),36.4375,28.125,,0.025,,2436,127,97,,,,,L1020 ,ID+8 gap,82458,, +339,ALG,,TDF,b,Tindouf (37),27.6875,-8.125,,0.025,,2973,210,103,,,,,16.0s,ID+11 tone,82460,, +339,CAN,,YFT,b,Makkovik (NL),55.0625,-59.208333,,0.025,,4182,301,115,,,,,U406 10.1s,DAID,82464,, +339,UAE,,RA,b,Ras al-Khaimah (rak),25.645833,55.958333,,0.025,,5061,106,124,,,,,,82457,,, +339,CAN,,6X,b,York Landing (MB),56.104167,-96.125,,0.025,,6060,318,134,,,,,U400 11041s,DAID,82439,, +339,USA,,LQX,b,Carbon Lehighton (PA),40.8125,-75.791667,,0.025,,6074,293,134,,,,5,L1010 U1019 6.47s,82449,,, +339,USA,,MKR,b,Milk River Glasgow (MT),48.1875,-106.625,,0.025,,7190,317,145,,,,3,L1015 U1022 6.0s,cont ID,82451,, +339,USA,,OP,b,Yates Thomaston (GA),32.9375,-84.208333,,0.025,,7221,292,145,,,,2,L1019 U1027 5.6s,82455,,, +339,CUB,,A,b,La Habana (ch),22.979167,-82.458333,,0.1,,7937,284,146,,,,126,L1025 U1030 8250s,82440,,, +339,IND,,TJ,b,Teju (AR),27.916944,96.162778,,0.025,,7580,72,149,,,,,,32200040,,, +339,CUB,,UCU,b,Santiago de Cuba (sc),19.979167,-75.791667,,0.025,,7743,277,150,,,,5,L1066 U2101 6.76s,82461,,, +339,CHN,,CG,b,Tianjin (TJ),39.0625,117.375,,0.025,,7887,50,152,,,,5,L1028 U1026 ,82443,,, +339,HWA,,BSF,b,Bradshaw Camp Pohakuloa (HI),19.770833,-155.625,,0.05,,11834,342,166,,,,997,L1040 U1034 ,82442,,, +340,G,,LSH,b,Lashenden / Headcorn (EN-KNT),51.145833,0.625,,0.04,,413,257,75,,,,986,L409 U384 14.0s,82482,,, +340,D,,ZIG,b,Leipzig (sac),51.4375,12.291667,,0.025,,411,98,77,,,,0,L1019 U1019 ,ID+6 gap,82506,, +340,E,,PND,b,Valncia / Pinedo (VAL-V),39.4375,-0.375,,0.3,,1503,203,77,,,,0,L1035 U1020 14.8s,ID+12 gap,82490,, +340,G,,HAW,b,Hawarden (WA-FLI),53.1875,-2.958333,,0.025,,643,284,79,,,,998,L400 U399 10.2s,82474,,, +340,I,,FOG,b,Foggia (fg),41.4375,15.541667,,0.1,,1373,146,81,,,,0,L1023 U1018 ,ID+6 gap,82471,, +340,I,,ISA,b,Istrana (tv),45.6875,12.208333,,0.025,,830,147,81,,,,995,L1025 U1035 ,82477,,, +340,BIH,,BLK,b,Banja Luka (srp),45.104167,17.291667,,0.04,,1114,130,82,,,,7,L976 U979 10.3s,ID+5 tone,82467,, +340,E,,SEO,b,Seo de Urgel (CAT-L),42.229167,1.375,,0.025,,1162,201,85,,,,5,L1015 U1020 ,ID+6 gap,82498,, +340,EST,,W,b,Kuressaare (Saa),58.229167,22.541667,,0.025,,1225,50,85,,,,114,L1020 U1248 5.9s,82502,,, +340,XOE,,HEI,b,Heidrun,65.3125,7.291667,,0.05,,1469,2,85,,,,0,L399 U404 ,82475,,, +340,FIN,,KAI,b,Utti / Kaipi,60.895833,27.125,,0.025,,1592,44,89,,,,7,L407 U414 ,82480,,, +340,GRC,,IOA,b,Ioannina (epi-ioa),39.6875,20.791667,,0.04,,1767,136,89,,,,0,L411 U397 ,ID+6 gap,82476,, +340,FIN,,O,b,Oulu / Mustaniemi,64.9375,25.291667,,0.025,,1784,30,91,,,,5,L400 U409 10.0s,82486,,, +340,UKR,,RG,b,Lozovatka / Kryvyi Rih (DP),48.104167,33.208333,,0.025,,1950,93,92,,,,7,L1020 U1033 ,ID+5 gap,82496,, +340,UKR,,RO,b,Lozovatka / Kryvyi Rih (DP),48.104167,33.208333,,0.025,,1950,93,92,,,,5,L1018 U1028 ,IDx2 + 6 gap,82497,, +340,FIN,,KS,b,Kuusamo / Oivanki,66.0625,29.125,,0.025,,1999,31,93,,,,2,L400 U403 ,82481,,, +340,RUS,,QD,b,Petrozavodsk / Besovets (KR),61.9375,34.208333,,0.025,,1982,46,93,,,,,L938 U943 ,82494,,, +340,RUS,,XO,b,Petrozavodsk / Besovets (KR),61.8125,34.125,,0.025,,1973,46,93,,,,,,IDx2,82504,, +340,TUR,,ST,b,Istanbul / Atatrk (mam-ist),40.979167,28.791667,,0.025,,2098,117,94,,,,,L1020 ,82500,,, +340,ISL,,GJ,b,Gjogur,65.979167,-21.291667,,0.025,,2177,326,95,,,,,U1020 6.5s,82472,,, +340,EGY,,OCT,b,October (gzh),29.8125,30.791667,,0.025,,3184,132,105,,,,14,L380 U405 ,ID+5 gap,82487,, +340,CAN,,YY,b,Mont-Joli (QC),48.5625,-68.291667,,0.5,,5077,297,111,,,,,U401 10.4s,DAID,82505,, +340,ARS,,MUZ,b,Muzayrah,23.520833,41.458333,,0.025,,4349,123,116,,,,,,82484,,, +340,CAN,,J,b,Stephenville/Harmon (NL),48.5625,-58.375,,0.025,,4460,292,118,,,,,,87091,,, +340,CAN,,ZJT,b,Stephenville/Harmon (NL),48.5625,-58.375,,0.025,,4460,292,118,,,,,U387 10597s,DAID,82507,, +340,UZB,,HA,b,Sherabad (sux),37.683056,67.033056,,0.025,,4879,84,122,,,,,,34500013,,, +340,USA,,GN,b,Brindl Lexington (KY),38.104167,-84.541667,,0.025,,6825,296,141,,,,995,L1038 U1029 5.9s,82473,,, +340,B,,OIA,b,Oiapoque (AP),3.854167,-51.791667,,0.1,,7552,246,142,,,,13,L1030 U1049 6.32s,82488,,, +340,USA,,JES,b,Slover Jessup (GA),31.5625,-81.875,,0.025,,7185,289,145,,,,998,L1021 U1041 5169s,82479,,, +340,USA,,BIJ,b,Early County Blakely (GA),31.4375,-84.791667,,0.025,,7381,291,147,,,,,L1020 6.6s,82466,,, +340,USA,,IWJ,b,Early County Blakely (GA),31.4375,-84.791667,,0.025,,7381,291,147,,,,6,L1015 U1027 ,82478,,, +340,MYA,,PT,b,Putao,27.320556,97.437778,,0.025,,7713,72,150,,,,,,22100040,,, +340,MLA,,SN,b,Sandakan (sbh),5.895833,118.041667,,0.5,,10929,69,153,,,,,U1024 8ss,82499,,, +340,CHL,,CTN,b,Constitucin (ML),-35.3125,-72.375,,1,,12345,239,155,,,,,L1030 ,82470,,, +340,B,,PNG,b,Paranagu (PR),-25.520833,-48.541667,,0.1,,10146,228,157,,,,,,82491,,, +340,B,,PTP,b,Ponta Por (MS),-22.5625,-55.708333,,0.1,,10247,235,158,,,,,,82492,,, +340,CHN,,OF,b,Banj,32.645833,118.541667,,0.025,,8523,53,158,,,,,,86441,,, +340,B,,MAN,b,Manaus (AM),-3.0625,-60.041667,,0.025,,8706,249,159,,,,,L1022 ,82483,,, +340,CLM,,BOG,b,Bogot D. C. (bdc),4.854167,-74.291667,,0.025,,8947,266,159,,,,0,L1023 U1029 8.44s,82468,,, +340,B,,BRS,b,Braslia (DF),-15.854167,-48.041667,,0.025,,9191,232,160,,,,,,82469,,, +340,B,,PTS,b,Pelotas (RS),-31.729167,-52.291667,,0.1,,10926,227,160,,,,,7.8s,82493,,, +340,GTM,,REU,b,Retalhuleu (ret),14.520833,-91.708333,,0.025,,9280,285,161,,,,12,L387 U414 10142s,82495,,, +340,J,,HC,b,Hachijojima (kan-tok),33.104167,139.791667,,0.025,,9512,38,161,,,,,L1000 U1018 5s,DAID,86439,, +340,TWN,,WK,b,Hsinshie (TC),24.229167,120.791667,,0.025,,9416,57,161,,,,,,82503,,, +340,J,,MY,b,Miyakojima (kyu-oki),24.770833,125.291667,,0.025,,9617,53,162,,,,0,L1000 U1020 5s,DAID,82485,, +340,PRU,,YMS,b,Yurimaguas (lor),-5.895833,-76.041667,,0.025,,10013,260,163,,,,,L1081 U1133 6.84s,86442,,, +340,AUS,,PEA,b,Pearce (WA),-31.645833,116.041667,,0.025,,14026,97,176,,,,,U1028 ,82489,,, +341,F,,AMB,b,Amboise (37),47.4375,1.041667,,0.05,,647,219,76,,,,,U12 18.0s,ID+14 tone,82511,, +341,DNK,,LO,b,Billund (sdk),55.729167,9.291667,,0.025,,444,24,77,,,,1,L394 U401 12.2s,ID+6 gap,82542,, +341,D,,ALG,b,Memmingen / Allgu (bay),47.979167,10.291667,,0.025,,536,147,78,,,,,L1022 ,ID+5 gap,82510,, +341,G,,PMB,b,Pembrey (WA-CAR),51.729167,-4.291667,,0.025,,734,271,80,,,,0,L~400 U~400,82548,,, +341,F,,IS,b,Ajaccio / Campo del Oro (20A),41.895833,8.625,,0.05,,1148,171,81,,,,,L397 U400 ,ID+19 tone,82539,, +341,G,,EDN,b,Edinburgh (SC-COE),55.979167,-3.291667,,0.025,,765,308,81,,,,993,L400 U391 7.0s,82528,,, +341,S,,NKS,b,Karlstad,59.520833,13.458333,,0.025,,933,25,82,,,,996,L410 U409 ,82544,,, +341,F,,BZ,b,Biarritz / Bayonne / Anglet (64),43.479167,-1.375,,0.025,,1121,214,84,,,,,L400 U404 ,82516,,, +341,FIN,,POR,b,Pori (st),61.520833,21.708333,,0.025,,1394,35,87,,,,2,L407 U411 ,82549,,, +341,AZR,,GP,b,Lajes / Vila Da Praia Da Vitoria (tce),38.770833,-27.125,,0.025,,2970,253,103,,,,3,L1025 U1033 8.2s,ID+5 gap,82536,, +341,GRL,,SM,b,Sisimiut (qqa-sis),66.9375,-53.708333,,0.025,,3583,320,109,,,,,L396 ,82554,,, +341,IRN,,BUZ,b,Bushehr (bus),28.979167,50.791667,,0.025,,4445,108,117,,,,0,L1024 U1022 ,ID+6 gap,82514,, +341,CAN,,YFN,b,Cree Lake (SK),57.354167,-107.125,,2,,6432,324,118,,,,,,87097,,, +341,CAN,,YYU,b,Kapuskasing (ON),49.479167,-82.541667,,0.5,,5850,305,119,,,,,U409 9.9s,DAID,82557,, +341,CPV,,BVT,b,Rabli (bvs),16.145833,-22.875,,0.025,,4757,224,121,,,,,,82515,,, +341,CAN,,GF,b,Aylesford (Greenwood) (NS),45.020833,-64.791667,,0.025,,5084,291,124,,,,5,L1000 U1012 8395s,DAID,82535,, +341,CAN,,YCS,b,Chesterfield Inlet (NU),63.354167,-90.708333,,0.025,,5319,323,126,,,,,U375 10622s,82556,,, +341,CAN,,ZLP,b,Toronto (Meadowvale / Mississauga) (ON),43.645833,-79.708333,,0.04,,6106,298,132,,,,991,L403 U389 10426s,DAID,82558,, +341,CAN,,DB,b,Burwash (YT),61.354167,-138.958333,,0.2,,7031,342,134,,,,687,L1031 U1040 6.3s,DAID,82523,, +341,CAN,,T,b,Toronto (ON),43.645833,-79.708333,,0.025,,6106,298,134,,,,,U400 ,87096,,, +341,ALS,,CD,b,Elfee Cold Bay (AK),55.3125,-162.791667,,1,,8029,354,137,,,,998,L1035 U1030 ,82519,,, +341,ALS,,ELF,b,Elfee Cold Bay (AK),55.3125,-162.791667,,1,,8029,354,137,,,,998,L1037 U1032 8.0s,82531,,, +341,USA,,EGV,b,Eagle River (WI),45.9375,-89.291667,,0.025,,6489,306,138,,,,999,L1024 U1024 5509s,82529,,, +341,USA,,LDM,b,Ludington (MI),43.979167,-86.375,,0.025,,6475,302,138,,,,,U1030 4808s,82541,,, +341,USA,,ORB,b,Orr (MN),48.020833,-92.875,,0.025,,6521,309,138,,,,996,L1030 U1028 7801s,82546,,, +341,CAN,,1X,b,Loreburn (SK),51.1875,-106.541667,,0.05,,6928,319,139,,,,,,87093,,, +341,USA,,CCJ,b,Clark Co Springfield (OH),39.854167,-83.791667,,0.025,,6642,297,139,,,,998,L1042 U1040 7481s,82518,,, +341,USA,,SB,b,Misha South Bend (IN),41.6875,-86.208333,,0.025,,6643,300,139,,,,5,L1040 U1052 5902s,82552,,, +341,USA,,DB,b,Zilom Dubuque (IA),42.3125,-90.625,,0.025,,6849,303,141,,,,687,L1030 U1040 6266s,82524,,, +341,USA,,HVS,b,Hartsville (SC),34.395833,-80.125,,0.025,,6844,290,141,,,,7,L1008 U1033 5769s,82538,,, +341,USA,,DXX,b,Dawson/Madison Madison (MN),44.979167,-96.208333,,0.025,,6941,309,142,,,,993,L967 U1050 29.13s,AWOS-3,82526,, +341,USA,,PRG,b,Paris (IL),39.6875,-87.708333,,0.025,,6890,300,142,,,,992,L1016 U1003 6833s,82550,,, +341,USA,,FO,b,Barro Fort Dodge (IA),42.520833,-94.291667,,0.025,,7039,306,143,,,,995,L1055 U1035 ,82534,,, +341,USA,,OW,b,Higuy Owensboro (KY),37.645833,-87.125,,0.025,,7019,298,143,,,,,L1020 U1020 8.60s,82547,,, +341,USA,,AA,b,Cedar (GA),33.520833,-82.625,,0.025,,7073,291,144,,,,993,L1038 U1029 6015s,82508,,, +341,USA,,CQN,b,Daisy Chattanooga (TN),35.145833,-85.125,,0.025,,7099,294,144,,,,997,L1041 U1030 8.7s,82521,,, +341,USA,,GIG,b,Gering Scottsbluff (NE),41.9375,-103.708333,,0.05,,7591,311,146,,,,,L970 U1022 ,87095,,, +341,USA,,RBE,b,Rock Co Bassett (NE),42.5625,-99.541667,,0.025,,7320,309,146,,,,0,L1022 U1027 4.4s,82551,,, +341,USA,,AOV,b,Bilmart Ava (MO),36.979167,-92.708333,,0.025,,7407,301,147,,,,999,L1034 U1032 ,82512,,, +341,USA,,MYZ,b,Marysville (KS),39.854167,-96.625,,0.025,,7390,305,147,,,,0,L1020 U1020 8.5s,82543,,, +341,USA,,CKM,b,Clarksdale (MS),34.3125,-90.541667,,0.025,,7500,297,148,,,,,U1020 6317s,82520,,, +341,USA,,FM,b,Caloo Fort Meyers (FL),26.520833,-81.958333,,0.025,,7606,286,149,,,,,L1018 U1020 8600s,82533,,, +341,USA,,OIN,b,Oberlin (KS),39.8125,-100.541667,,0.025,,7608,308,149,,,,995,L1036 U1015 7.5s,82545,,, +341,USA,,EI,b,Garfy Enid (OK),36.270833,-97.791667,,0.025,,7761,304,151,,,,,L1051 6.0s,82530,,, +341,USA,,CZJ,b,Amason Center (TX),31.8125,-94.125,,0.025,,7928,298,152,,,,989,L1019 U1009 7635s,82522,,, +341,USA,,DNI,b,Denison (TX),33.8125,-96.708333,,0.025,,7910,301,152,,,,1,L1023 U2043 6.5s,82525,,, +341,USA,,JHN,b,Bear Creek Johnson (KS),37.645833,-101.708333,,0.025,,7860,307,152,,,,3,L1004 U1010 5915s,82540,,, +341,MYT,,FJO,b,Dzaoudzi Pamandzi (976),-12.8125,45.291667,,0.025,,8125,140,154,,,,,,82532,,, +341,USA,,HRX,b,Hereford (TX),34.854167,-102.291667,,0.025,,8137,306,154,,,,,L1030 U1020 6.42s,82537,,, +341,USA,,BMQ,b,Burnet (TX),30.729167,-98.208333,,0.025,,8266,300,156,,,,2,L1045 U1017 6015s,82513,,, +341,USA,,SG,b,Doman Santa Fe (NM),35.5625,-106.125,,0.025,,8282,309,156,,,,997,L1040 U1040 7.0s,82553,,, +341,USA,,ALM,b,Alamogordo (NM),32.854167,-105.958333,,0.025,,8517,307,158,,,,,U1030 ,87094,,, +341,USA,,AK,b,Roray Oakland (CA),37.729167,-122.208333,,0.025,,8856,321,159,,,,997,L1037 U1028 6.5s,82509,,, +341,AUS,,TW,b,Tamworth (NSW),-31.0625,150.791667,,0.1,,16301,65,178,,,,,L400 U400 7s,82555,,, +341,AUS,,CBP,b,Coober Pedy (SA),-29.020833,134.708333,,0.025,,15089,79,180,,,,,L400 U400 8s,82517,,, +341,AUS,,ECH,b,Echuca (VIC),-36.145833,144.791667,,0.025,,16317,78,184,,,,,L400 U400 8s,82527,,, +341.5,POL,,JAS,b,Rzeszow-Jasionka,50.104167,22.041667,,0.025,,1112,95,84,,,,502,L1028 U1029 6.0s,ID+2.5 gap,82559,, +342,POL,,NAL,b,Miroslawiec,53.354167,16.125,,0.025,,668,74,80,,,,,,82565,,, +342,S,,SL,b,Gteborg/Landvetter (vg),57.604167,12.208333,,0.025,,714,29,80,,,,2,L397 U401 4.5s,82571,,, +342,F,,VA,b,Vannes / Meucon (56),47.770833,-2.625,,0.025,,806,237,81,,,,,U3 ,ID+16 tone,82575,, +342,NOR,,LL,b,Leirin / Fagernes,61.020833,9.291667,,0.025,,1006,9,83,,,,989,L395 U404 9.9s,82563,,, +342,I,,PES,b,Pescara (pe),42.4375,14.208333,,0.025,,1224,148,85,,,,0,L1018 U1020 ,ID+7 gap,82567,, +342,E,,VLD,b,Valladolid (CAL-VA),41.770833,-4.708333,,0.025,,1423,220,87,,,,31,L1011 U1019 13.6s,ID+10 gap,82577,, +342,S,,SUT,b,Hemavan,65.729167,15.208333,,0.025,,1593,15,89,,,,0,L400 U400 ,82573,,, +342,ALG,,OA,b,Algiers / Houari Boumedienne (16),36.770833,3.375,,0.025,,1722,189,90,,,,995,L37 U34 8.8s,ID+7 gap,82566,, +342,RUS,,PK,b,Sankt-Peterburg (SP),59.8125,30.125,,0.025,,1693,50,90,,,,0,L395 U401 ,82569,,, +342,MRC,,RG,b,Meknes / Bassatine,33.895833,-5.375,,0.025,,2234,210,95,,,,0,L400 U400 ,82570,,, +342,NOR,,VD,b,Vadso,70.0625,29.875,,0.025,,2328,22,96,,,,,L366 U400 ,82576,,, +342,GEO,,VP,b,Tbilissi / Lochini (tbi),41.729167,44.875,,0.025,,3097,96,104,,,,2,L395 U400 ,ID+5.5 gap,82578,, +342,GEO,,TO,b,Tsnori (kah),41.645833,46.041667,,0.025,,3181,96,105,,,,0,L1020 U1020 ,IDx2,82574,, +342,SYR,,DAL,b,Damascus International / Aateibe (dim),33.479167,36.625,,0.025,,3180,119,105,,,,,L1021 ,ID+2 gap,82562,, +342,USA,,MTN,b,Martin Baltimore (MD),39.3125,-76.375,,0.025,,6223,292,135,,,,,U~1000 5.3s,82564,,, +342,USA,,CXE,b,Chase City (VA),36.770833,-78.541667,,0.025,,6555,291,139,,,,,U1024 ,87098,,, +342,USA,,PFT,b,Piney Pinecreek (MN),48.979167,-95.958333,,0.025,,6605,312,139,,,,995,L1034 U1018 7.8s,82568,,, +342,USA,,ST,b,Hussk St Cloud (MN),45.479167,-93.958333,,0.025,,6780,308,141,,,,993,L1053 U1039 6086s,82572,,, +342,CHN,,WA,b,Wongyuan,24.354167,114.125,,0.025,,9015,61,160,,,,,L1044 U1025 ,86447,,, +342,NCL,,BL,b,le Art (nor),-19.729167,163.625,,0.025,,15909,37,182,,,,,20s,86446,,, +342.5,G,,NWI,b,Norwich (EN-NFK),52.6875,1.291667,,0.005,,353,282,83,,,,495,L411 U400 4.5s,82580,,, +342.5,J,,JB,b,Omura (kyu-nag),32.9375,129.958333,,0.1,,9085,45,154,,,,500,L1020 U1021 14s,2xID,82579,, +343,D,,SBN,b,Saarbrcken / Ensheim (saa),49.229167,7.125,,0.025,,324,171,76,,,,0,L1019 U1021 6.4s,82596,,, +343,F,,CGO,b,Paris / Charles de Gaulle (95),48.979167,2.375,,0.025,,450,221,77,,,,24,L379 U421 8.2s,ID+4 gap,82583,, +343,XOE,,HBC,b,Halfdan B / Maersk,55.520833,5.041667,,0.025,,390,347,77,,,,1,L937 U933 ,82589,,, +343,XOE,,RLF,b,Rolf A Platform,55.354167,4.291667,,0.025,,387,340,77,,,,997,L410 U404 ,82595,,, +343,G,,YVL,b,Yeovil / Westland (EN-SOM),50.9375,-2.625,,0.025,,638,262,79,,,,10,L389 U410 8.0s,82600,,, +343,LTU,,KUS,b,Kaunas / Karmelava (Kau),54.979167,24.125,,0.1,,1209,68,79,,,,2,L398 U402 ,ID+7 gap,82590,, +343,F,,AR,b,Aurillac (15),44.9375,2.375,,0.025,,851,202,81,,,,,L403 U403 10.0s,ID+8 gap,82582,, +343,F,,MS,b,Marseille / Provence (13),43.395833,5.291667,,0.025,,973,185,83,,,,,U4 ,82593,,, +343,HNG,,A,b,Budapest/Ferenc Liszt Int. (Bud),47.4375,19.208333,,0.025,,1054,114,84,,,,2,L1013 U1023 ,ID+7 gap,82581,, +343,I,,GRA,b,Grazzanise (ce),41.0625,14.125,,0.025,,1361,151,87,,,,5,L1025 U1023 6.9s,ID+3 gap,82588,, +343,ROU,,E,b,Craiova (DJ),44.3125,23.958333,,0.025,,1557,117,89,,,,0,L1020 U1020 1.5s,Cont. ID,82587,, +343,CYP,,DKA,b,Dhekelia (kyp),34.979167,33.708333,,0.025,,2879,121,102,,,,0,L397 U395 ,ID+7 gap,82584,, +343,BHR,,SI,b,Sheikh Isa (ajn),25.894444,50.603611,,0.025,,4693,111,120,,,,,,82597,,, +343,CAN,,YGO,b,Gods Lake Narrows (MB),54.5625,-94.458333,,0.2,,6098,316,125,,,,,U407 10.0s,DAID,82599,, +343,CAN,,6R,b,Bromont / East Farnham (QC),45.229167,-72.791667,,0.025,,5572,296,129,,,,,,87099,,, +343,CAN,,ZBM,b,Bromont (QC),45.229167,-72.791667,,0.025,,5572,296,129,,,,,U412 10.2s,DAID,82602,, +343,OMA,,MR,b,Masirah (shq),20.6875,58.875,,0.025,,5675,107,130,,,,2,L1039 U1045 ,ID+6 gap,82592,, +343,CAN,,YZH,b,Slave Lake (AB),55.3125,-114.791667,,0.28,,6906,327,132,,,,0,L400 U395 10.0s,DAID,82601,, +343,USA,,DNT,b,Nally Dunston Dyersburg (TN),35.979167,-89.375,,0.025,,7291,298,146,,,,,L1030 U1030 ,87100,,, +343,USA,,DMD,b,Dimmit County Carrizo Springs (TX),28.520833,-99.791667,,0.025,,8553,300,158,,,,,U1022 6526s,82586,,, +343,INS,,DM,b,Dumai (RI-dum),1.645833,101.458333,,0.025,,10207,85,164,,,,,L1000 ,82585,,, +344,D,,CB,b,Cochstedt / Scheidlingen (san),51.854167,11.458333,,0.025,,347,93,76,,,,,L1026 U1015 ,86450,,, +344,D,,HN,b,Hohn (shs),54.3125,9.708333,,0.025,,329,41,76,,,,0,L1043 U1032 8.2s,ID+2 gap + 4 tone,82617,, +344,F,,TR,b,Villefranche (69),45.9375,4.625,,0.025,,699,191,80,,,,,L403 U406 10.0s,ID+8 gap,82636,, +344,G,,WCK,b,Wick (SC-HIL),58.4375,-3.041667,,0.025,,922,323,82,,,,998,L405 U400 7.0s,82641,,, +344,E,,MN,b,Menorca (BAL-MN),39.854167,4.208333,,0.06,,1373,188,83,,,,20,L1055 U1070 ,ID+9 gap,82628,, +344,HRV,,VAR,b,Varadin (vz),46.3125,16.375,,0.025,,968,128,83,,,,,L1017 U1026 ,ID+5 gap,82639,, +344,FIN,,HEK,b,Heka For Helsinki / Vantaa,60.270833,25.458333,,0.025,,1478,45,88,,,,2,L406 U410 ,ID+6 gap,82616,, +344,E,,ARM,b,Armilla (AND-GR),37.0625,-3.791667,,0.025,,1854,210,92,,,,5,L1020 U1031 ,ID+4 gap,82605,, +344,FIN,,L,b,Kittil / Hukkakumpu,67.729167,24.875,,0.025,,2001,23,93,,,,0,L410 U410 ,82622,,, +344,ISL,,LA,b,Saudarkrokur / Langholt,65.5625,-19.458333,,0.025,,2081,326,94,,,,,U1018 ,ID+3.5 gap,82623,, +344,LBY,,LQ,b,Labraq (jak),32.8125,21.958333,,0.025,,2484,144,98,,,,998,L400 U396 10.0s,ID+7 gap,82625,, +344,CAN,,YGV,b,Havre St Pierre (QC),50.270833,-63.625,,0.025,,4691,297,120,,,,,U392 10.4s,DAID,82644,, +344,USA,,LNT,b,Milnot Millinocket (ME),45.645833,-68.541667,,0.1,,5280,294,120,,,,995,L1042 U1029 7865s,82624,,, +344,CAN,,ZSB,b,Noranda (Sudbury) (ON),46.6875,-80.708333,,0.1,,5944,301,126,,,,,U399 10241s,DAID,82650,, +344,USA,,CL,b,Harri Cleveland (OH),41.354167,-81.958333,,0.25,,6414,297,127,,,,,L1030 U1025 5.62s,87102,,, +344,CAN,,ZOW,b,Moody Nepean (Ottawa) (ON),45.270833,-75.708333,,0.04,,5747,297,128,,,,3,L400 U402 10.0s,DAID,82649,, +344,PAK,,RN,b,Islamabad (ict),33.613056,73.081667,,0.025,,5588,84,129,,,,,,31500033,,, +344,CAN,,O,b,#NAME?,45.270833,-75.708333,,0.025,,5747,297,130,,,,,,87104,,, +344,ALS,,SIT,b,Sitka (Biorka Island) (AK),56.854167,-135.541667,,1,,7411,338,131,,,,,,87105,,, +344,USA,,AVN,b,Avon Rochester (NY),43.020833,-77.791667,,0.025,,6036,296,133,,,,3,L1028 U1041 6338s,82606,,, +344,USA,,JA,b,Dinns Jacksonville (FL),30.479167,-81.791667,,0.4,,7268,289,134,,,,968,L1067 U1009 7.45s,82619,,, +344,USA,,PIX,b,Picture Rocks (PA),41.270833,-76.708333,,0.025,,6098,294,134,,,,4,L1047 U1046 7.53s,82629,,, +344,USA,,ES,b,Pikle Escanaba (MI),45.729167,-87.208333,,0.025,,6388,304,137,,,,990,L1056 U1039 6007s,82612,,, +344,USA,,SLY,b,Seeley Hayward (WI),46.104167,-91.375,,0.025,,6590,307,139,,,,998,L1012 U1020 4.61s,82635,,, +344,USA,,UNU,b,Juneau (WI),43.4375,-88.708333,,0.025,,6651,303,139,,,,990,L1040 U1004 6194s,82638,,, +344,USA,,BKU,b,Timber Baker (MT),46.354167,-104.291667,,0.08,,7237,315,140,,,,15,L1004 U1003 6.4s,82608,,, +344,CAN,,YOP,b,Rainbow Lake (AB),58.4375,-119.291667,,0.025,,6783,331,141,,,,,U394 10.0s,DAID,82646,, +344,USA,,BFR,b,Bedford (IN),38.854167,-86.458333,,0.025,,6882,298,142,,,,,U1022 ,87101,,, +344,USA,,RFE,b,Rutherford Rutherfordton (NC),35.354167,-81.958333,,0.025,,6884,292,142,,,,964,L1075 U1002 4928s,82632,,, +344,USA,,DS,b,Forem Des Moines (IA),41.479167,-93.541667,,0.025,,7082,305,144,,,,987,L1049 U1031 6.00s,82611,,, +344,USA,,PPQ,b,Pittsfield (IL),39.645833,-90.791667,,0.025,,7075,301,144,,,,41,L949 U1030 ,82631,,, +344,USA,,VI,b,Opery Nashville (TN),36.1875,-86.625,,0.025,,7107,296,144,,,,3,L1015 U1022 ,82640,,, +344,CAN,,YC,b,Calgary (AB),51.0625,-113.875,,0.025,,7252,323,145,,,,2,L402 U397 10.2s,DAID,82643,, +344,USA,,FT,b,Flanc Atlanta (GA),33.770833,-84.625,,0.025,,7179,293,145,,,,981,L1029 U1027 5921s,82614,,, +344,USA,,MK,b,Kenzy Kansas City (MO),39.229167,-94.541667,,0.025,,7325,304,146,,,,0,L1030 U1023 6172s,82626,,, +344,USA,,AJX,b,Ash Flat (AR),36.1875,-91.625,,0.025,,7409,299,147,,,,,U1035 7201s,82604,,, +344,USA,,BIJ,b,Early County Blakely (GA),31.4375,-84.791667,,0.025,,7381,291,147,,,,,L1018 ,82607,,, +344,USA,,CQL,b,CARBONDALE (CO),39.395833,-107.125,,0.1,,7990,312,147,,,,,L1050 ,87103,,, +344,USA,,FCH,b,Chandler Fressno (CA),36.729167,-119.875,,0.4,,8850,319,147,,,,991,L1041 U1024 8.3s,82613,,, +344,USA,,IWJ,b,Early County Blakely (GA),31.4375,-84.791667,,0.025,,7381,291,147,,,,2,L1016 U1025 6.77s,82618,,, +344,USA,,SE,b,Pollk (Selma) (AL),32.270833,-86.958333,,0.025,,7449,294,147,,,,,L1020 8600s,86453,,, +344,USA,,JL,b,Lunns Joplin (MO),37.1875,-94.541667,,0.025,,7496,302,148,,,,,L1023 5682s,82621,,, +344,USA,,SL,b,Flory Salina (KS),38.6875,-97.625,,0.025,,7544,305,148,,,,,L1021 8.55s,82634,,, +344,USA,,POY,b,Powell (WY),44.854167,-108.791667,,0.025,,7584,316,149,,,,993,L1035 U1030 8.0s,82630,,, +344,IND,,LP,b,Lengpui (MZ),23.834722,92.6225,,0.025,,7688,78,150,,,,,,32200043,,, +344,USA,,TV,b,Savry Vicksburg / Tallulah (LA),32.229167,-91.041667,,0.025,,7706,296,150,,,,995,L1049 U1038 5982s,82637,,, +344,CAN,,XX,b,Abbotsford (BC),49.020833,-122.458333,,0.025,,7777,327,151,,,,5,L400 U405 10.2s,DAID,82642,, +344,USA,,ML,b,Wampa Mc Alester (OK),34.8125,-95.791667,,0.025,,7770,301,151,,,,993,L1047 U1031 8170s,82627,,, +344,USA,,CGQ,b,Powell Corsicana (TX),32.0625,-96.458333,,0.025,,8046,300,153,,,,990,L1048 U1012 7255s,82610,,, +344,USA,,JAS,b,Jasper (TX),30.9375,-94.041667,,0.025,,7998,297,153,,,,,L1033 U1018 4.9s,82620,,, +344,USA,,SKB,b,Scotland Wichita Falls (TX),33.770833,-98.458333,,0.025,,8015,302,153,,,,,L1022 U1020 7.27s,82633,,, +344,CYM,,ZIY,b,George Town (Grand Cayman Island),19.270833,-81.375,,0.025,,8180,280,155,,,,0,L1039 U1040 8.35s,ID+4 gap,82648,, +344,USA,,BYY,b,Bay City (TX),28.979167,-95.875,,0.025,,8279,297,156,,,,,U1019 10295s,82609,,, +344,USA,,GNC,b,Gaines County Seminole (TX),32.6875,-102.625,,0.025,,8347,305,156,,,,990,L1042 U1014 5.1s,82615,,, +344,J,,YZ,b,Yaizu (chu-shi),34.8125,138.291667,,0.025,,9280,38,161,,,,,L1000 U1020 5s,DAID,82647,, +344,AUS,,DN,b,Darwin (NT),-12.4375,130.958333,,0.025,,13418,69,174,,,,,,86451,,, +344,AUS,,YOL,b,Yolla A Platform,-39.854167,145.791667,,0.1,,16649,82,179,,,,,,82645,,, +344.8,RUS,,UPM Amderma R,c,Amderma (NE),69.766667,61.666667,,1,,3393,34,91,,????-????,1234567,-344.8,,19901329,,, +345,D,,EMD,b,Emden (nds),53.229167,7.125,,0.025,,133,21,68,,,,2,L1022 U1026 10.0s,82663,,, +345,D,,IGL,b,Ingolstadt (bay),48.729167,11.625,,0.025,,527,133,78,,,,,L954 30.0s,ID+24 tone,82672,, +345,G,,LUT,b,London/Luton (EN-HTS),51.895833,-0.208333,,0.025,,454,270,78,,,,993,L403 U396 7.6s,82679,,, +345,NOR,,BN,b,Kristiansand / Kjevik / Birkeland,58.3125,8.208333,,0.025,,699,9,80,,,,3,L370 U374 ,ID+7 gap,82656,, +345,F,,LN,b,Lannion / Servel (22),48.729167,-3.291667,,0.025,,783,245,81,,,,,U4 19.9s,82678,,, +345,I,,TZO,b,Trezzo sullAdda (mi),45.5625,9.541667,,0.025,,763,161,81,,,,0,L1030 U1030 10.0s,ID+6 gap,82693,, +345,POL,,NB,b,Malbork (PM),54.035833,19.215278,,0.025,,881,71,82,,,,2,L398 U403 5.0s,ID+3 gap,82682,, +345,E,,VI,b,Vigo (GAL-PO),42.3125,-8.625,,0.1,,1568,232,83,,,,4,L1038 U1040 12.0s,ID+21 gap,82696,, +345,F,,CS,b,Carcassonne / Salvaza (11),43.229167,2.208333,,0.025,,1036,199,83,,,,,U2 19.9s,82661,,, +345,NOR,,FT,b,Forde / Bringeland / Fleten,61.354167,5.541667,,0.025,,1029,357,83,,,,5,L370 U379 ,82665,,, +345,S,,HT,b,Hagfors,60.104167,13.541667,,0.025,,992,24,83,,,,,L404 U406 ,82671,,, +345,MNE,,TAZ,b,Tivat (TV),42.270833,18.791667,,0.05,,1436,135,84,,,,5,L1012 U1020 10.0s,ID+7 tone,82691,, +345,E,,VTA,b,Vitoria (PVA-VI),42.9375,-2.708333,,0.025,,1226,217,85,,,,0,L1020 U1019 10.1s,82697,,, +345,I,,FW,b,Fiumicino (rm),41.895833,12.208333,,0.025,,1217,157,85,,,,0,L1016 U1022 ,ID+3 gap,82666,, +345,E,,ATR,b,Murcia / Alcantarilla (MUR-MU),37.9375,-1.208333,,0.05,,1684,204,87,,,,,U1031 ,ID+3 gap,82654,, +345,FIN,,SUS,b,Kauhava / Susi,63.229167,23.041667,,0.025,,1574,32,89,,,,0,L407 U412 ,82689,,, +345,NOR,,STM,b,Strommen / Mo I Rana,66.270833,13.791667,,0.025,,1627,12,89,,,,2,L400 U403 8.0s,82688,,, +345,GRC,,THS,b,Thessaloniki/Makedonia (cmc-tsk),40.604167,22.958333,,0.025,,1795,129,91,,,,9,L347 U371 6.5s,ID+4 gap,82692,, +345,UKR,,CC,b,Cherkasy (CK),49.354167,32.041667,,0.025,,1820,89,91,,,,,,82660,,, +345,RUS,,K,b,Tsakalovskij,55.895833,38.041667,,0.025,,2090,66,94,,,,,,82676,,, +345,RUS,,L,b,Tsakalovskij,55.854167,38.041667,,0.025,,2090,66,94,,,,,,82677,,, +345,RUS,,YAT,b,Tula / Klokovo (TL),54.229167,37.625,,0.025,,2077,71,94,,,,,U920 ,IDx2,82699,, +345,RUS,,ZM,b,Tula / Klokovo (TL),54.229167,37.625,,0.025,,2077,71,94,,,,,,86459,,, +345,ISL,,HL,b,Vestmannaeyjar/Helgafell (sl),63.4375,-20.291667,,0.015,,1998,319,95,,,,,U1020 7.0s,82670,,, +345,NOR,,BNR,b,Banak,70.0625,24.958333,,0.025,,2210,19,95,,,,,L345 U345 ,82658,,, +345,MRC,,CSD,b,Daouarat,32.9375,-8.041667,,0.025,,2429,214,97,,,,2,L1019 U1018 10.0s,ID+7 gap,82662,, +345,RUS,,QN,b,Tikhoretsk (KD),45.895833,40.125,,0.025,,2529,92,98,,,,,L1076 15.0s,IDx2,86458,, +345,RUS,,PW,b,Syktyvkar (KO),61.604167,50.791667,,0.025,,2830,51,101,,,,,L344 U346 ,82686,,, +345,RUS,,SR,b,Syktyvkar (KO),61.6875,50.875,,0.025,,2834,51,101,,,,,U955 ,82687,,, +345,RUS,,X,b,Perm / Bolshoe Savino (PR),57.9375,56.041667,,0.025,,3154,58,105,,,,,,82698,,, +345,RUS,,Z,b,Khanty-Mansiysk (KY),61.020833,69.125,,0.025,,3806,50,111,,,,,,82700,,, +345,RUS,,MB,b,Yamburg,68.020833,75.041667,,0.025,,3931,37,112,,,,,,82681,,, +345,CAN,,3J,b,Davis Inlet (NL),55.895833,-60.958333,,0.025,,4246,303,115,,,,,,DAID,82651,, +345,QAT,,AK,b,Al Khor,25.645833,51.541667,,0.025,,4774,110,121,,,,,,82653,,, +345,KAZ,,US,b,Ust-Kamenogorsk (sgq),50.0625,82.458333,,0.025,,5066,61,124,,,,,,82694,,, +345,USA,,FOZ,b,Bigfork (MN),47.770833,-93.625,,0.025,,6580,310,139,,,,988,L1037 U1011 40.9s,AWOS-3,82664,, +345,AFS,,LW,b,Langebaanweg (WC),-32.979167,18.125,,3,,9530,170,141,,,,,L1025 8.57s,ID+6 gap,82680,, +345,USA,,GF,b,Hiser Grand Forks (ND),47.854167,-97.208333,,0.025,,6759,312,141,,,,991,L1062 U1043 6091s,82668,,, +345,USA,,PUF,b,Puff Estherville (IA),43.354167,-94.708333,,0.025,,6993,307,143,,,,,U1032 7959s,82685,,, +345,BRB,,BGI,b,Bridgetown (smi),13.0875,-59.4625,,0.025,,7223,259,145,,,,0,L1016 U1016 10.0s,DAID,82655,, +345,B,,PTL,b,Petrolina (PE),-9.354167,-40.541667,,0.2,,8164,229,146,,,,,L1071 U1117 7331s,82684,,, +345,CHN,,JX,b,Weixian (HB),36.354167,114.958333,,0.025,,7996,53,153,,,,,14s,2xID,82675,, +345,AFS,,VAL,b,Val (MP),-26.8125,28.958333,,0.1,,9047,160,154,,,,,U1012 3.62s,82695,,, +345,CHN,,JB,b,Dongying (SD),37.604167,118.791667,,0.025,,8091,50,154,,,,1,L1012 U1015 ,82674,,, +345,B,,ADA,b,Aldeia (RJ),-22.8125,-42.125,,0.1,,9568,224,156,,,,,,82652,,, +345,CHN,,SV,b,Changasha (HN),28.1875,113.208333,,0.025,,8618,60,158,,,,995,L1140 U1125 ,82690,,, +345,B,,IP,b,Guaba (RS),-29.979167,-51.291667,,0.025,,10710,227,165,,,,,,82673,,, +345,NIU,,NU,b,Niue,-19.0625,-169.958333,,0.025,,16327,354,184,,,,,,86457,,, +345.5,CZE,,CF,b,Caslav (ST),49.903889,15.432778,,0.025,,677,108,80,,,,526,L1030 U1076 7.5s,ID+4 gap,82701,, +346,DNK,,AU,b,Stauning (mjy),55.604167,8.208333,,0.025,,406,16,77,,,,,U405 4.5s,82703,,, +346,F,,LHO,b,Le Havre / Octeville (76),49.604167,0.208333,,0.025,,517,240,78,,,,5,L403 U405 10.2s,82717,,, +346,LUX,,WLU,b,Luxembourg (lux),49.5625,6.041667,,0.015,,284,185,78,,,,997,L1040 U1020 10.0s,ID+5 gap,82730,, +346,F,,CH,b,Chambery / Aix-Les-Bains (73),45.604167,5.875,,0.025,,724,183,80,,,,,L398 U404 ,ID+8 gap,82705,, +346,XOE,,KTW,b,Shell / Esso Kittiwake Platform,57.479167,0.541667,,0.025,,705,330,80,,,,200,L~400 U400 ,82715,,, +346,F,,OC,b,Cognac / Chateaubernard (16),45.729167,-0.125,,0.025,,854,216,82,,,,,U10 21.7s,ID+19 tone,82723,, +346,S,,GS,b,Gvle / Sandviken,60.5625,16.958333,,0.025,,1140,30,84,,,,995,L405 U395 ,ID+1 gap,82709,, +346,HNG,,Y,b,Nyregyhza (SSB),47.979167,21.708333,,0.025,,1182,107,85,,,,,U1030 ,82731,,, +346,FIN,,MI,b,Mikkeli / Korpikoski,61.729167,27.041667,,0.025,,1634,41,89,,,,0,L~400 U409 8.0s,82720,,, +346,S,,TG,b,Gllivare,67.145833,20.708333,,0.025,,1845,20,91,,,,,U400 ,82726,,, +346,ALG,,TLM,b,Tlemcen / Zenata (13),35.020833,-1.375,,0.025,,1998,201,93,,,,,20.2s,82728,,, +346,TUR,,DAL,b,Dalaman / Mugla (ege-mug),36.6875,28.791667,,0.025,,2451,126,97,,,,995,L1020 U1010 ,ID+5 gap,82707,, +346,CAN,,1D,b,Charlottetown (NL),52.770833,-56.125,,0.025,,4103,297,114,,,,,U395 10.0s,DAID,82702,, +346,IRN,,BRD,b,Bojnurd (nkh),37.479167,57.291667,,0.025,,4229,92,115,,,,15,L1055 U1044 6.0s,82704,,, +346,CAN,,YXL,b,Sioux Lookout (ON),50.104167,-91.875,,1,,6307,311,120,,,,0,L426 U424 9.1s,DAID,82732,, +346,IRN,,LAM,b,Lamerd (frs),27.354167,53.208333,,0.025,,4737,107,120,,,,,L1020 ,82716,,, +346,USA,,LI,b,Hullz Boston (MA),42.3125,-70.958333,,0.025,,5661,292,130,,,,993,L1052 U1040 6.13s,82718,,, +346,USA,,IA,b,Tille Chantilly (VA),38.854167,-77.458333,,0.025,,6326,292,136,,,,973,L1059 U1004 7.90s,82712,,, +346,USA,,LW,b,Bushi Lewisburg (WV),37.770833,-80.458333,,0.025,,6599,293,139,,,,0,L1019 U1021 8600s,82719,,, +346,USA,,VU,b,Aller Albemarle (NC),35.479167,-80.041667,,0.025,,6752,291,140,,,,1,L1026 U1030 5.03s,82729,,, +346,USA,,GHW,b,Glenwood (MN),45.645833,-95.291667,,0.025,,6838,309,141,,,,,L1029 U30 34.95s,AWOS-3,82708,, +346,USA,,JXT,b,Jefferson Morristown (TN),36.104167,-83.458333,,0.025,,6918,294,142,,,,,L1025 U1028 4599s,82713,,, +346,CAN,,N9,b,Tumbler Tumbler Ridge (BC),55.020833,-120.958333,,0.025,,7155,330,145,,,,999,L409 U403 8.1s,DAID,82722,, +346,ALS,,OLT,b,Soldotna (AK),60.479167,-150.875,,0.025,,7333,348,146,,,,,U1022 ,82724,,, +346,USA,,HHY,b,Pinhook Savannah (TN),35.270833,-88.208333,,0.025,,7279,297,146,,,,9,L993 U1012 ,82710,,, +346,USA,,PCM,b,Plant City (FL),28.020833,-82.125,,0.025,,7492,287,148,,,,995,L1037 U1032 7.75s,82725,,, +346,USA,,THJ,b,Tallahala Laurel (MS),31.6875,-89.208333,,0.025,,7638,295,149,,,,921,L1005 U1010 4202s,82727,,, +346,CHN,,D,b,Wuhan / tianhe (HU),30.770833,114.208333,,0.025,,8447,57,157,,,,,L1038 U1034 ,82706,,, +346,J,,KN,b,Kansai (kns-osk),34.454167,135.241667,,0.025,,9184,40,160,,,,,L1020 U1019 ,82714,,, +346,NZL,,TG,b,Tauranga (BOP),-37.6875,176.208333,,0.025,,18225,30,190,,,,,L1040 U1041 4.2s,86460,,, +346,NZL,,MO,b,Manapouri,-45.479167,167.708333,,0.025,,18466,69,191,,,,,6.88s,82721,,, +346.5,D,,HIG,b,Bremen (bre),53.0493,8.908769,,0.025,,199,57,75,,,,-346.5,,2000060,,, +347,F,,CVT,b,Chalons / Vatry (51),48.770833,4.291667,,0.025,,400,203,77,,,,,U4 19.8s,ID+15 tone,82741,, +347,G,,MTN,b,Manston (EN-KNT),51.354167,1.375,,0.025,,357,258,77,,,,0,L403 U404 5.0s,82752,,, +347,XOE,,JAD,b,Jade Platform,56.520833,2.125,,0.025,,563,332,79,,,,,U400 ,82746,,, +347,G,,NQY,b,Newquay (EN-CNW),50.4375,-4.958333,,0.025,,811,261,81,,,,1,L400 U400 8.2s,82753,,, +347,NOR,,MSK,b,Morskogen,60.4375,11.291667,,0.025,,973,16,83,,,,2,L398 U402 10.1s,82750,,, +347,XOE,,IA,b,Shell Expro / Brent Alpha,61.020833,1.708333,,0.025,,1031,346,83,,,,,3.7s,86461,,, +347,TUR,,SAB,b,Sabiha Gokcen (mam-ist),40.895833,29.291667,,0.025,,2135,117,94,,,,0,L400 U400 ,ID+7 gap,82757,, +347,CAN,,YG,b,Charlottetown (PE),46.1875,-63.125,,1.6,,4904,291,104,,,,,U405 10.2s,DAID,82763,, +347,CAN,,Z8,b,Rivire-Ouelle (QC),47.4375,-69.958333,,0.1,,5251,296,119,,,,,,87108,,, +347,CAN,,UJ,b,Lady Franklin Point (NT),68.479167,-113.208333,,0.1,,5724,336,124,,,,,,87107,,, +347,USA,,PNJ,b,Paterson (NJ),40.9375,-74.125,,0.025,,5960,292,133,,,,,U1019 8.0s,87106,,, +347,CAN,,4Q,b,Brochet (MB),57.895833,-101.708333,,0.025,,6167,322,135,,,,,L1028 U1026 10.47s,82733,,, +347,USA,,AIG,b,Antigo (WI),45.145833,-89.125,,0.025,,6541,305,138,,,,7,L1017 U1036 6.31s,82735,,, +347,USA,,ANQ,b,Angola (IN),41.645833,-85.125,,0.025,,6582,300,139,,,,2,L1035 U1031 5600s,82738,,, +347,CAN,,PA,b,Prince Albert (SK),53.229167,-105.791667,,0.025,,6721,320,140,,,,,U390 11.0s,DAID,82755,, +347,ALS,,DJN,b,Delta Junction (AK),64.020833,-145.708333,,0.025,,6878,347,142,,,,2,L1035 U1036 ,82743,,, +347,USA,,MT,b,Zebre Mattoon / Charleston (IL),39.4375,-88.208333,,0.025,,6940,300,142,,,,0,L1019 U1021 8600s,82751,,, +347,USA,,AIK,b,Aiken (SC),33.645833,-81.708333,,0.025,,7005,291,143,,,,998,L1029 U1029 5286s,82736,,, +347,USA,,AJR,b,Habersham Cornelia (GA),34.520833,-83.541667,,0.025,,7050,293,143,,,,8,L1010 U1032 6128s,82737,,, +347,USA,,VER,b,Viertel Boonville (MO),39.9375,-92.708333,,0.025,,7162,303,145,,,,,U1001 4924s,82762,,, +347,USA,,YK,b,Cagur Yankton (SD),42.854167,-97.291667,,0.025,,7175,308,145,,,,3,L1048 U1054 9415s,82764,,, +347,ALS,,TNC,b,Tin CIty (AK),62.3125,-173.375,,0.025,,7292,360,146,,,,0,L1040 U1035 ,82761,,, +347,USA,,AFK,b,Nebraska City (NE),40.604167,-95.875,,0.025,,7285,305,146,,,,981,L1058 U1017 7.0s,82734,,, +347,USA,,SBX,b,Shelby (MT),48.520833,-111.875,,0.025,,7396,321,147,,,,10,L1037 U1052 5.0s,82758,,, +347,USA,,CO,b,Leeny Coeur dAlene (ID),47.729167,-116.958333,,0.025,,7683,323,150,,,,986,L1050 U1026 ,82740,,, +347,USA,,LEN,b,Post Falls Leeny (ID),47.4375,-116.541667,,0.025,,7693,323,150,,,,,L1050 U1027 8.0s,86462,,, +347,USA,,GC,b,Pieve Garden City (KS),37.8125,-100.708333,,0.025,,7790,307,151,,,,988,L1051 U1029 7.9s,82744,,, +347,USA,,MKV,b,Marksville (LA),31.104167,-92.041667,,0.025,,7862,296,152,,,,0,L1037 U1034 7.8s,82749,,, +347,USA,,HLR,b,Hood Fort Hood (Killeen) (TX),31.145833,-97.708333,,0.025,,8200,300,155,,,,5,L1036 U1048 8065s,82745,,, +347,USA,,JPA,b,Sanjac La Porte (TX),29.6875,-95.041667,,0.025,,8167,297,155,,,,3,L1019 U1012 6836s,82747,,, +347,USA,,LFA,b,Merrill Klamath Lake (CA),41.979167,-121.625,,0.045,,8420,323,155,,,,993,L1045 U1026 10.0s,82748,,, +347,USA,,TKB,b,Kleberg Co Kingsville (TX),27.604167,-98.125,,0.025,,8535,298,158,,,,,U1022 5.3s,82760,,, +347,GTM,,BAR,b,Puerto Barrios (izb),15.729167,-88.541667,,0.025,,8965,284,160,,,,10,L1007 U1028 8821s,82739,,, +347,AUS,,RIC,b,Richmond (NSW),-33.604167,150.791667,,1,,16512,68,168,,,,,L1020 U1020 10s,TWEB,86465,, +347,AUS,,NSM,b,Norseman (WA),-32.1875,121.791667,,0.025,,14459,93,178,,,,,U1022 ,82754,,, +347.5,G,,TD,b,Teeside (EN-DUR),54.5625,-1.291667,,0.025,,579,301,79,,,,494,L406 U405 10.5s,82765,,, +348,G,,FOS,b,Fairoaks (EN-SUR),51.354167,-0.541667,,0.025,,486,263,78,,,,3,L385 U395 9.2s,82772,,, +348,E,,ZZA,b,Zaragoza (ARA-Z),41.604167,-0.875,,0.1,,1291,208,80,,,,998,L956 U951 5.6s,ID+3 gap,82798,, +348,G,,ATF,b,Aberdeen / Dyce (SC-ABS),57.0625,-2.125,,0.025,,777,318,81,,,,2,L400 U401 7.7s,82766,,, +348,F,,CL,b,Cahors / Lalbenque (46),44.395833,1.458333,,0.025,,932,205,82,,,,,U3 ,ID+15 tone,82770,, +348,F,,SCL,b,Apt / St Christol (84),44.0625,5.541667,,0.025,,897,184,82,,,,,U7 ,82787,,, +348,HNG,,SVR,b,Sgvr (Som),46.8125,18.125,,0.025,,1029,120,83,,,,7,L1019 U1020 9.0s,ID+6 gap,82789,, +348,HRV,,ZK,b,Zadar (zd),44.104167,15.375,,0.025,,1110,140,84,,,,999,L1024 U1023 8.0s,ID+5.5 gap,82796,, +348,S,,WA,b,Stockholm / Arlanda,59.645833,17.958333,,0.025,,1102,36,84,,,,962,L441 U359 ,82795,,, +348,FRO,,VG,b,Vgar (vgo),62.043333,-7.195556,,0.025,,1371,329,87,,,,,U391 4.5s,82793,,, +348,SRB,,TPL,b,Topola (Srb-sum),44.145833,20.708333,,0.025,,1378,124,87,,,,1,L1088 U1072 9.3s,ID+6 tone,82791,, +348,RUS,,SH,b,Ostrov / Veretje,57.3125,28.458333,,0.025,,1521,59,88,,,,,,86469,,, +348,S,,GUN,b,Storuman / Gunnam,64.895833,17.791667,,0.025,,1562,20,89,,,,990,L409 U391 ,82773,,, +348,NOR,,SAD,b,Leknes / Sandsund,68.104167,13.625,,0.025,,1820,10,91,,,,998,L374 U375 ,82786,,, +348,ISL,,HA,b,Vopnafjrdhur / Hofsa,65.645833,-15.041667,,0.025,,1925,330,92,,,,19,L1020 U1059 6.0s,82774,,, +348,UKR,,OD,b,Odesa/Central (OD),46.479167,30.625,,0.025,,1854,100,92,,,,,L1006 U1007 ,82780,,, +348,UKR,,OE,b,Odesa/Central (OD),46.395833,30.708333,,0.025,,1864,100,92,,,,,U1051 ,82781,,, +348,GRC,,KTA,b,Kalamata (pel-mes),37.0625,22.041667,,0.025,,2072,138,94,,,,,U400 ,ID+6 gap,82777,, +348,ISL,,PA,b,Patreksfjrur (vf),65.5625,-23.958333,,0.025,,2261,323,96,,,,,U1054 6.0s,82784,,, +348,NOR,,BX,b,Batsfjord,70.604167,29.708333,,0.025,,2368,21,97,,,,,L348 U348 ,82768,,, +348,RUS,,OR,b,Borisoglebsk (VN),51.354167,42.208333,,0.025,,2442,78,97,,,,,,82783,,, +348,RUS,,SW,b,Borisoglebsk (VN),51.354167,42.208333,,0.025,,2442,78,97,,,,,U1045 15.0s,IDx2,82790,, +348,ARM,,SVN,b,Sevan (grk),40.520833,44.958333,,0.025,,3182,98,105,,,,,,82788,,, +348,IRN,,OMD,b,Omidiyeh (kuz),30.854167,49.541667,,0.025,,4210,107,115,,,,,,82782,,, +348,IRN,,BY,b,Kharg/Bahram (bus),29.258333,50.316667,,0.025,,4391,108,117,,,,,,82769,,, +348,CAN,,M,b,Rockland / Dorval (QC),45.520833,-73.625,,0.1,,5603,296,123,,,,,,87115,,, +348,CAN,,ZUL,b,Rockland / Dorval (Montreal) (QC),45.520833,-73.625,,0.1,,5603,296,123,,,,,U400 9924s,DAID,82797,, +348,PAK,,QT,b,Quetta (blc),30.25,66.933056,,0.025,,5427,92,127,,,,999,L1043 U1041 ,IDx2 + 10 tone,82785,, +348,USA,,BUP,b,Burnham Pittsfield (ME),44.6875,-69.375,,0.025,,5396,293,127,,,,997,L1043 U1028 7.90s,82767,,, +348,USA,,DKG,b,Don Scott Columbus (OH),40.0625,-83.041667,,0.025,,6580,297,139,,,,,L1020 U1022 6.2s,87110,,, +348,USA,,MC,b,Surff Mason City (IA),43.0625,-93.291667,,0.025,,6939,306,142,,,,990,L1043 U1020 6191s,82778,,, +348,USA,,LDF,b,Lame Deer (MT),45.645833,-106.708333,,0.05,,7415,316,144,,,,,,87114,,, +348,CUB,,UHA,b,La Habana (ch),22.9375,-82.458333,,0.1,,7941,284,146,,,,68,L890 U1027 4.6s,82792,,, +348,USA,,VLX,b,Wilcox Mountain View (AR),35.854167,-92.125,,0.025,,7466,300,148,,,,2,L1015 U1020 ,82794,,, +348,CUB,,K,b,Santiago de Cuba (sc),19.979167,-75.958333,,0.025,,7755,277,151,,,,,L404 ,82776,,, +348,USA,,DC,b,Buffs Greeley (CO),40.354167,-104.625,,0.025,,7777,311,151,,,,990,L1051 U1026 6.2s,82771,,, +348,USA,,DCI,b,Greeley (CO),40.354167,-104.625,,0.025,,7777,311,151,,,,,L~1050 U1020 6.2s,87109,,, +348,USA,,GX,b,Greeley (CO),40.354167,-104.625,,0.025,,7777,311,151,,,,,,87111,,, +348,USA,,GZ,b,Greeley (CO),40.4375,-104.791667,,0.025,,7778,311,151,,,,,,87112,,, +348,USA,,GZW,b,Greeley (CO),40.4375,-104.791667,,0.025,,7778,311,151,,,,,L1040 U1030 ,87113,,, +348,USA,,MNC,b,Mason Co Shelton (WA),47.229167,-123.125,,0.025,,7974,327,153,,,,1,L1016 U1028 5.7s,82779,,, +348,USA,,NID,b,China Lake Naval Air Weapons Station (CA),35.6875,-117.708333,,0.025,,8851,317,159,,,,,,87116,,, +348,SLM,,HN,b,Honiara (cth),-9.4375,160.041667,,0.025,,14704,36,178,,,,,L1022 U1018 8.0s,82775,,, +349,D,,KAS,b,Kassel / Calden (hes),51.464842,9.457397,,0.1,,222,108,69,,,,7,L1016 U1032 5.5s,ID+1 gap, ex KSL (08/2012),82809, +349,XOE,,DNF,b,Dan Duc DF Platform,55.479167,5.125,,0.025,,384,348,77,,,,945,L464 U348 30.0s,82803,,, +349,G,,KMB,b,Kemble (EN),51.6875,-2.041667,,0.025,,581,269,79,,,,,L406 U403 4.9s,86470,,, +349,F,,RS,b,Rennes / St Jacques (35),48.0625,-1.625,,0.025,,728,235,80,,,,,U4 19.9s,ID+17 tone,82813,, +349,XOE,,SPA,b,Sleipner A platform,58.354167,1.875,,0.025,,751,339,80,,,,998,L405 U399 6.0s,82815,,, +349,S,,JX,b,Vxj/Kronoberg,56.979167,14.791667,,0.025,,764,42,81,,,,7,L393 U407 ,82808,,, +349,NOR,,TAR,b,Orland / Tarva,63.8125,9.458333,,0.025,,1313,7,86,,,,994,L402 U397 ,82816,,, +349,ROU,,OPE,b,Bucuresti / Otopeni (BU),44.5625,26.208333,,0.025,,1679,112,90,,,,0,L1020 U1004 ,ID+6 gap,82810,, +349,TUR,,IPT,b,Isparta/Suleyman Demirel LTFC (akd-isp),37.851,30.358486,,0.025,,2442,121,97,,,,0,L1020 U1020 ,Cont. ID,82807,, +349,CAN,,1E,b,Black Tickle (Island of Ponds) (NL),53.479167,-55.791667,,0.025,,4050,298,113,,,,,10.2s,DAID,82800,, +349,CPV,,PRA,b,Praia/Francisco Mendes (san-pra),14.941667,-23.479167,,0.025,,4905,224,122,,,,,,82812,,, +349,UZB,,UP,b,Kokand (fag),40.479167,71.041667,,0.025,,4955,78,123,,,,,,82818,,, +349,USA,,SF,b,Sanfd Sanford (ME),43.354167,-70.791667,,0.025,,5577,293,129,,,,985,L1059 U1033 ,82814,,, +349,USA,,APG,b,Aberdeen Aberdeen Proving Grounds (MD),39.520833,-76.125,,0.025,,6192,292,135,,,,7,L1051 U1037 7899s,82802,,, +349,USA,,ER,b,Esmer Erie (PA),42.020833,-80.291667,,0.025,,6263,297,136,,,,0,L1022 U1020 5.96s,82804,,, +349,USA,,FV,b,Larez Indianapolis (IN),39.770833,-86.208333,,0.025,,6794,299,141,,,,,U1050 6.3s,82805,,, +349,USA,,AAF,b,Apalachicola (FL),29.729167,-85.041667,,0.025,,7539,290,148,,,,,L1033 U1033 5.41s,82801,,, +349,USA,,GW,b,Teock Greenwood (MS),33.604167,-90.125,,0.025,,7534,297,148,,,,990,L405 U385 7.9s,82806,,, +349.5,G,,LPL,b,Liverpool (EN-MER),53.354167,-2.708333,,0.025,,629,286,79,,,,521,L388 U432 6.9s,82819,,, +349.5,F,,SZA,b,Solenzara (20A),41.9375,9.375,,0.025,,1153,168,85,,,,-349.5,U2 11.3s,ID+8 tone,82820,, +350,D,,FU,b,Hamburg West (ham),53.604167,9.958333,,0.025,,290,54,76,,,,,L405 U395 ,86474,,, +350,D,,SPM,b,Speyer (rlp),49.3125,8.458333,,0.025,,343,154,76,,,,,L1023 U1027 ,82869,,, +350,I,,BLA,b,Cerrione (bi),45.479167,8.125,,0.025,,748,170,80,,,,0,L1019 U1019 10.0s,ID+6 gap,82826,, +350,F,,MUT,b,Muret / Lherm (31),43.479167,1.208333,,0.025,,1035,204,83,,,,,L4 20.7s,ID+15 tone,82852,, +350,HRV,,SK,b,Zagreb / Pleso / S. Kraljevec (zg),45.8125,16.125,,0.025,,995,131,83,,,,2,L1030 U1031 8.5s,ID+6 gap,82867,, +350,EST,,WA,b,Kuressaare (Saa),58.270833,22.541667,,0.025,,1227,50,85,,,,2,L1030 U1031 10.1s,IDx2 + 7 gap,82879,, +350,E,,L,b,Albacete (CAM-AB),38.9375,-1.875,,0.025,,1598,207,89,,,,,U1051 3.0s,ID+2 gap,82844,, +350,RUS,,MYU,b,Kretsenichy,58.604167,31.375,,0.025,,1722,55,90,,,,0,L1015 U1015 ,IDx2,82853,, +350,RUS,,MÜ,b,Kretsenichy,58.604167,31.375,,0.025,,1722,55,90,,,,,,82850,,, +350,RUS,,WN,b,Krechevitsy,58.604167,31.375,,0.025,,1722,55,90,,,,992,L1026 U1013 ,IDx2 + 7 gap,82880,, +350,FIN,,LAA,b,Oulu / Laanila,64.979167,25.208333,,0.025,,1785,30,91,,,,2,L408 U408 ,ID+5 gap,82845,, +350,XOE,,VGA,b,Vega,36.520833,14.625,,0.025,,1850,156,91,,,,,L1015 U1030 ,86477,,, +350,BUL,,DWN,b,Devnya for Varna (vrn),43.229167,27.625,,0.025,,1860,114,92,,,,5,L1025 U1039 8.1s,ID+5 gap,82836,, +350,E,,GM,b,Mlaga (AND-MA),36.729167,-4.541667,,0.025,,1914,211,92,,,,982,L1034 U1025 ,82839,,, +350,RUS,,UK,b,Yukhnov,54.729167,35.208333,,0.025,,1917,70,92,,,,,L387 30.0s,IDx2,82875,, +350,NOR,,TIL,b,Bardufoss / Mlselv / Tiller,68.979167,19.125,,0.025,,1991,15,93,,,,0,L400 U400 10.0s,82873,,, +350,RUS,,A,b,Belgorod (BE),50.645833,36.541667,,0.025,,2083,82,94,,,,996,L1055 U1047 15.0s,IDx2,82822,, +350,RUS,,B,b,Belgorod (BE),50.645833,36.625,,0.025,,2088,82,94,,,,998,L974 U959 30.0s,82823,,, +350,TUR,,HAY,b,Haymana (ica-ank),39.4375,32.541667,,0.025,,2447,115,97,,,,,L1035 U1040 ,Cont. ID,82840,, +350,CAN,,RB,b,Resolute Bay (NU),74.729167,-94.958333,,3,,4799,338,100,,,,,U410 ,DAID,82864,, +350,CAN,,DF,b,Deer Lake (NL),49.1875,-57.458333,,1,,4367,292,101,,,,0,L410 U388 10.0s,DAID,82834,, +350,RUS,,N,b,Nalchik (KB),43.520833,43.625,,0.025,,2901,94,102,,,,,,82854,,, +350,TKM,,CO,b,Trkmenbaşy (bal),40.104167,52.958333,,0.025,,3753,92,111,,,,,,82829,,, +350,CAN,,F2,b,Searose FPSO / Grand Banks (NL),46.770833,-48.041667,,0.025,,3887,283,112,,,,997,L406 U400 5.5s,82838,,, +350,RUS,,XV,b,Novy Vasyugan,58.604167,76.541667,,0.025,,4283,52,116,,,,0,L1045 U1045 ,IDx2,82881,, +350,USA,,LE,b,Leevy Raleigh (NC),35.9375,-78.708333,,0.4,,6631,291,127,,,,986,L1046 U1022 7485s,82846,,, +350,USA,,ME,b,Deana Chicago (IL),41.979167,-88.041667,,0.4,,6727,302,128,,,,980,L1060 U1020 5843s,82851,,, +350,CAN,,J5,b,Loon River (AB),57.145833,-115.041667,,0.2,,6751,328,131,,,,,,87118,,, +350,CAN,,5O,b,Gods River (MB),54.854167,-94.041667,,0.025,,6056,316,134,,,,993,L400 U405 8.55s,DAID,82821,, +350,CAN,,D7,b,Kincardine (ON),44.1875,-81.625,,0.025,,6181,300,135,,,,987,L1051 U1000 6189s,82832,,, +350,CAN,,NY,b,Enderby (BC),50.645833,-118.958333,,0.5,,7491,326,135,,,,1,L403 U407 10.0s,DAID,82857,, +350,USA,,BFW,b,Silver Bay (MN),47.270833,-91.375,,0.025,,6499,308,138,,,,995,L1015 U1015 37.0s,AWOS,82825,, +350,CAN,,N4,b,Swan River (MB),52.104167,-101.208333,,0.025,,6608,317,139,,,,,U1030 10.2s,DAID,82855,, +350,USA,,CBG,b,Cambridge (MN),45.5625,-93.291667,,0.025,,6737,308,140,,,,996,L1042 U1030 8.0s,82827,,, +350,USA,,HBC,b,Mohall (ND),48.770833,-101.541667,,0.025,,6899,315,142,,,,,,87117,,, +350,ALS,,VTR,b,Takotna River McGrath (AK),62.9375,-155.541667,,0.025,,7125,351,144,,,,996,L1021 U1020 8.4s,82877,,, +350,B,,VTR,b,Vitria (ES),-20.1875,-40.208333,,1,,9218,223,144,,,,996,L1012 U1070 7.6s,82878,,, +350,USA,,CP,b,Acore Cahokia / St Louis (IL),38.520833,-90.041667,,0.025,,7123,300,144,,,,990,L1056 U1036 6258s,82830,,, +350,USA,,DNS,b,Denison (IA),41.979167,-95.375,,0.025,,7143,306,144,,,,,L1021 U1020 5.69s,82835,,, +350,USA,,BEP,b,Bay Creek Perry (GA),32.4375,-83.791667,,0.025,,7236,291,145,,,,7,L1013 U1015 4746s,AWOS-3,82824,, +350,USA,,CWH,b,Capshaw Huntsville (AL),34.770833,-86.791667,,0.025,,7233,295,145,,,,990,L1045 U1024 8.0s,82831,,, +350,USA,,IUI,b,Hicks Blytheville (AR),35.9375,-89.875,,0.025,,7325,298,146,,,,,U1034 5.1s,82842,,, +350,MEX,,PM2,b,Abkatum 5 (cam),19.270833,-92.125,,0.2,,8891,289,150,,,,,,82863,,, +350,USA,,RG,b,Gally Oklahoma City (OK),35.3125,-97.625,,0.025,,7834,303,151,,,,988,L1045 U1023 5.9s,82865,,, +350,USA,,TUF,b,Stuckey Ruston (LA),32.395833,-92.625,,0.025,,7788,297,151,,,,990,L1041 U1018 8.9s,82874,,, +350,USA,,SWU,b,Sweden Idaho Falls (ID),43.4375,-112.125,,0.025,,7868,317,152,,,,996,L1025 U1018 8.0s,82871,,, +350,USA,,LF,b,Flufy Lufkin (TX),31.229167,-94.791667,,0.025,,8019,298,153,,,,995,L1054 U1036 6.00s,82847,,, +350,PNR,,DAV,b,David (Chiriqui) (chq),8.395833,-82.458333,,0.1,,9195,274,154,,,,979,L1036 U995 10.5s,82833,,, +350,B,,ULD,b,Uberlndia (MG),-18.895833,-48.208333,,0.1,,9492,231,155,,,,,,82876,,, +350,MYA,,MKT,b,Meiktila Air Base,20.934167,95.913056,,0.025,,8153,77,155,,,,,,22100045,,, +350,B,,STM,b,Santarm (PA),-2.4375,-54.791667,,0.025,,8318,245,156,,,,0,L1020 U1020 ,ID+5 gap,82870,, +350,CLN,,RM,b,Ratmalana (Colombo) (col),6.833611,79.885278,,0.025,,8283,99,156,,,,,,34700016,,, +350,USA,,OKT,b,Yoakum (TX),29.3125,-97.125,,0.025,,8325,299,156,,,,,L1036 U1015 5.4s,82861,,, +350,USA,,ON,b,Agget Newport (OR),44.6875,-124.041667,,0.025,,8254,326,156,,,,995,L1037 U1028 ~6.0s,82862,,, +350,USA,,NUC,b,San Clemente San Clemente Island (CA),33.020833,-118.541667,,0.025,,9144,316,160,,,,994,L1050 U1038 8.7s,82856,,, +350,B,,SCB,b,Sorocaba (SP),-23.479167,-47.458333,,0.025,,9895,228,163,,,,,U1020 ,82866,,, +350,B,,IL,b,Cariano (SC),-27.645833,-48.541667,,0.025,,10350,227,164,,,,,,82841,,, +350,BOL,,LPZ,b,La Paz (lpz),-16.520833,-68.208333,,0.025,,10443,248,164,,,,0,L1173 U1172 7.66s,82849,,, +350,AUS,,ESL,b,East Sale (VIC),-38.104167,147.125,,2,,16616,78,166,,,,,L1050 9s,TWEB,86473,, +350,INS,,OC,b,Semarang (JT-sem),-6.979167,110.375,,0.025,,11571,83,168,,,,,,82859,,, +350,AUS,,CIN,b,Curtin (WA),-17.5625,123.791667,,0.025,,13398,79,174,,,,1,L1022 U1024 8.95s,82828,,, +350,FJI,,OI,b,Ono-i-Lau Island (EA-LU),-20.636111,-178.722222,,0.025,,16487,9,184,,,,,L1035 ,82860,,, +350,NZL,,SY,b,Surrey,-37.229167,175.208333,,0.025,,18143,32,190,,,,,U1010 8s,82872,,, +350,NZL,,KI,b,Kaikoura,-42.4375,173.708333,,0.025,,18579,47,191,,,,,U1020 8s,82843,,, +350.5,HOL,,ROT,b,Rotterdam (zho),51.895833,4.541667,,0.015,,130,260,69,,,,517,L400 U400 8.2s,82883,,, +350.5,XOE,,AMZ,b,Aoka Mizu FPSO,57.895833,0.625,,0.025,,741,333,80,,,,-350.5,L395 U398 6.1s,86478,,, +351,F,,DSA,b,Dieppe / St Aubin (76),49.895833,1.041667,,0.025,,449,239,77,,,,,L398 U400 10.0s,82891,,, +351,DNK,,KP,b,Karup,56.1875,8.541667,,0.025,,474,16,78,,,,0,L411 U410 5.3s,82892,,, +351,F,,BSC,b,Brive-Valle de la Dordogne (46),45.041667,1.482778,,0.025,,865,207,82,,,,,A2A AM,2500016,,, +351,F,,OSA,b,Ouessant (29),48.479167,-5.041667,,0.025,,907,248,82,,,,,U7 20.0s,ID+15 tone,82896,, +351,E,,CST,b,Costix (PMI) (BAL-ML),39.645833,2.875,,0.065,,1412,192,83,,,,0,L1025 U1020 15.5s,ID+11 gap,82890,, +351,S,,OV,b,Visby,57.729167,18.375,,0.025,,985,46,83,,,,5,L398 U402 5.0s,ID+2 gap,82897,, +351,F,,PL,b,Perpignan / Rivesaltes (66),42.6875,2.958333,,0.025,,1079,195,84,,,,,U1 ,82900,,, +351,I,,POM,b,Pomigliano dArco (na),40.9375,14.375,,0.05,,1382,151,84,,,,993,L1020 U1020 10.0s,ID+6 gap,82901,, +351,FIN,,SAV,b,Savonlinna,61.979167,28.791667,,0.025,,1727,42,90,,,,0,L407 U405 ,82902,,, +351,LBN,,BOD,b,Beirut International (bei),33.895833,35.458333,,0.5,,3075,120,91,,,,,U1020 ,ID+5 gap,82889,, +351,GRC,,ALP,b,Alexandroupoli (emc-evr),40.854167,25.958333,,0.025,,1940,122,92,,,,0,L400 U400 ,ID+4 gap,82886,, +351,ISL,,BL,b,Blonduos,65.6875,-20.291667,,0.025,,2121,326,94,,,,,L930 U880 4.8s,ID+2 gap,82888,, +351,AZR,,PD,b,Ponta Delgada (smg),37.729167,-25.708333,,0.025,,2955,250,103,,,,997,L1036 U1043 8.3s,ID+5 gap,82898,, +351,CAN,,YKQ,b,Waskaganish (QC),51.479167,-78.708333,,0.5,,5500,305,115,,,,,U405 10.4s,DAID,82904,, +351,ATG,,ANU,b,V C Bird (atg),17.145833,-61.791667,,0.15,,7030,264,136,,,,,U1016 8583s,82887,,, +351,USA,,MSQ,b,Culpeper (VA),38.4375,-77.875,,0.025,,6385,292,137,,,,,L1035 U1040 6309s,82893,,, +351,USA,,PH,b,Bayye Mosinee (WI),44.6875,-89.625,,0.025,,6605,305,139,,,,0,L1022 U1020 4.7s,82899,,, +351,USA,,SI,b,Covington / Addys (KY),39.145833,-84.708333,,0.025,,6753,297,141,,,,,,87119,,, +351,USA,,NO,b,Reno (NV),39.520833,-119.791667,,0.05,,8579,320,155,,,,991,L1040 U1028 6.0s,82894,,, +351,USA,,AE,b,Dudle Albuquerque (NM),35.229167,-106.708333,,0.025,,8343,309,156,,,,993,L1046 U1020 6.0s,82885,,, +351,KOR,,CW,b,Seongmu (ccb),36.5625,127.458333,,0.025,,8622,45,158,,,,,L1016 U1015 ,86481,,, +351.5,HRV,,PLA,b,Pula (pa),44.895833,13.804167,,2,,969,143,64,,,,512,L1000 U1024 10.0s,ID+6 tone,82905,, +352,D,,LAA,b,Niederrhein (nrw),51.020833,6.208333,,0.045,,122,187,61,,,,998,L1023 U1019 ,82913,,, +352,G,,WOD,b,Woodley (EN-BER),51.4375,-0.875,,0.025,,507,264,78,,,,2,L403 U405 6.3s,82923,,, +352,NOR,,TRF,b,Tyrifjord,59.9375,10.291667,,0.025,,903,14,82,,,,0,L400 U400 ,82921,,, +352,IRL,,ENS,b,Ennis For Shannon (CE),52.895833,-8.958333,,0.025,,1042,281,83,,,,993,L400 U400 4.0s,82911,,, +352,S,,CG,b,Stockholm / Arlanda,59.520833,17.958333,,0.025,,1092,37,84,,,,3,L400 U402 ,82910,,, +352,FIN,,PSJ,b,Seinajoki,62.645833,22.958333,,0.025,,1526,33,88,,,,999,L406 U409 ,82917,,, +352,TUR,,BRY,b,Yenisehir (mam-bur),40.270833,29.625,,0.025,,2203,117,95,,,,,L1027 ,ID+2 gap,82908,, +352,BHR,,BI,b,Bahrain (muh),26.270833,50.625,,0.025,,4662,111,120,,,,,U1020 ,ID+12 gap,82907,, +352,CHN,,OY,b,Urumqi / Diwopu / Fukang (XJ),43.895833,87.458333,,0.025,,5779,65,131,,,,990,L1048 U1027 ,IDx2 + 8 gap,82915,, +352,CAN,,Q4,b,Unity (SK),52.479167,-109.208333,,0.05,,6932,322,139,,,,,,87120,,, +352,CAN,,B2,b,Hamburg (AB),57.354167,-119.791667,,0.025,,6899,330,142,,,,,U1030 5.58s,82906,,, +352,USA,,HIX,b,Honey Grove Hopkinsville (KY),36.895833,-87.375,,0.025,,7095,297,144,,,,515,L~1000 U1030 ,82912,,, +352,USA,,BVG,b,Boll Weevil Enterprise (AL),31.354167,-85.958333,,0.025,,7462,292,148,,,,,L1048 8043s,82909,,, +352,USA,,VM,b,Meana, Mena Intermountain Municipal (AR),34.520833,-94.041667,,0.025,,7692,300,150,,,,989,L1038 U1018 5.9s,82922,, +352,REU,,SP,b,Pierrefonds / Etang (974),-21.270833,55.375,,0.025,,9437,135,161,,,,,,82920,,, +352,AUS,,PRL,b,Parkerville (WA),-31.854167,116.125,,0.025,,14048,97,176,,,,0,L1028 U1028 ,82916,,, +352,AUS,,TPB,b,Temple Bar (NT),-23.729167,133.791667,,0.025,,14591,75,178,,,,,U1020 9s,86483,,, +352.5,BEL,,DD,b,Oostende (vlg-wvl),51.1875,2.875,,0.1,,265,249,70,,,,498,L400 U400 10.0s,82924,,, +353,D,,KIL,b,Kiel / Holtenau (shs),54.354167,10.125,,0.025,,351,43,76,,,,995,L403 U396 ,82945,,, +353,F,,BN,b,Bale-Mulhouse / Habsheim (68),47.645833,7.458333,,0.025,,502,171,78,,,,7,L396 U405 ,ID+8 gap,82930,, +353,XOE,,SRW,b,Shell Shearwater Platform,57.020833,1.958333,,0.025,,617,334,79,,,,998,L415 U395 ,82969,,, +353,POL,,P,b,Poznan / Lawica,52.395833,16.875,,0.025,,712,83,80,,,,0,L1020 U1020 ,82960,,, +353,F,,SB,b,St. Brieuc / Armor (22),48.5625,-2.791667,,0.025,,762,242,81,,,,,L2 U2 20.7s,ID+17 tone,82966,, +353,POL,,KRT,b,Kartuzy,54.3125,18.208333,,0.025,,822,68,81,,,,,L988 U1020 ,82946,,, +353,POL,,KRW,b,Krakow / Balice (MP),50.104167,19.875,,0.025,,965,98,83,,,,5,L990 U1059 6.0s,ID+3 gap,82947,, +353,XOE,,OBA,b,Oseberg A platform,60.479167,2.791667,,0.025,,957,348,83,,,,7,L404 U417 8.5s,ID+3 gap,82959,, +353,ALG,,BNA,b,Beni Amrane (35),36.645833,3.625,,0.1,,1733,188,84,,,,,U30 6.3s,ID+4 tone,82931,, +353,GRC,,PAK,b,Preveza (epi-pre),38.9375,20.791667,,0.025,,1837,137,91,,,,0,L400 U400 ,ID+8 gap,82961,, +353,NOR,,MH,b,Mehamn,71.020833,27.791667,,0.025,,2358,19,97,,,,,L353 U353 ,82955,,, +353,GEO,,BT,b,Ali (sdk),42.104167,43.625,,0.025,,2988,97,103,,,,10,L1020 U1040 ,ID+6 gap,82932,, +353,USA,,LLX,b,Lyndonville (VT),44.520833,-72.041667,,0.025,,5574,294,129,,,,,U1020 7.1s,82952,,, +353,CAN,,F7,b,Georgian Bay (Parry Sound) (ON),45.270833,-79.875,,0.05,,5997,300,130,,,,0,L406 U411 8334s,DAID,82938,, +353,CAN,,K4,b,Legend Lake (AB),57.1875,-112.875,,0.2,,6668,327,131,,,,,U405 ,DAID,82944,, +353,USA,,IN,b,Raize International Falls (MN),48.479167,-93.291667,,0.1,,6507,310,132,,,,0,L1046 U1029 6.0s,TWEB,82941,, +353,USA,,MG,b,Otims Montgomery (NY),41.4375,-74.291667,,0.025,,5934,293,132,,,,0,L1000 U1026 8.60s,82954,,, +353,CAN,,4G,b,Cross Lake (MB),54.604167,-97.791667,,0.025,,6251,317,135,,,,,U400 10.14s,DAID,82925,, +353,CUB,,UHG,b,Holgun (ho),20.729167,-76.375,,0.8,,7719,278,135,,,,983,L951 U924 8354s,82971,,, +353,VEN,,HOT,b,Higuerote (mir),10.479167,-66.125,,1,,7900,263,136,,,,2,L968 U960 7839s,82939,,, +353,CAN,,QG,b,Saint Clair Beach (Windsor) (ON),42.3125,-82.875,,0.025,,6396,299,137,,,,993,L400 U389 10.7s,DAID,82964,, +353,USA,,LI,b,Lasky Little Rock (AR),34.6875,-92.291667,,0.4,,7574,299,137,,,,993,L1030 U1025 6.3s,82950,,, +353,CAN,,ZES,b,Cape Scott (BC),50.770833,-128.625,,0.5,,7821,332,138,,,,,,87125,,, +353,USA,,LWT,b,Lewistown (MT),47.0625,-108.375,,0.2,,7369,318,138,,,,,L1050 U1030 8.0s,87123,,, +353,CAN,,PG,b,Portage (MB),49.854167,-98.208333,,0.025,,6647,314,139,,,,,U1028 10123s,DAID,82962,, +353,USA,,DV,b,Auney Davenport (IA),41.6875,-90.625,,0.025,,6900,303,142,,,,995,L1053 U1035 5.9s,82936,,, +353,CAN,,X,b,Whitehorse (YT),60.645833,-135.041667,,0.025,,7017,340,143,,,,,,87124,,, +353,CAN,,ZXY,b,Klondike (Whitehorse) (SK),60.645833,-135.041667,,0.025,,7017,340,143,,,,,U402 ,82973,,, +353,USA,,ABC,b,Jackson (MN),43.645833,-94.958333,,0.025,,6983,307,143,,,,,,87121,,, +353,USA,,FOA,b,Elm River Flora (IL),38.6875,-88.458333,,0.025,,7015,299,143,,,,,L1030 U1010 ,87122,,, +353,USA,,MJQ,b,Jackson (MN),43.645833,-94.958333,,0.025,,6983,307,143,,,,9,L1015 U1026 36239s,82956,,, +353,USA,,TY,b,Benfi Knoxville (TN),35.729167,-84.041667,,0.025,,6984,294,143,,,,995,L1051 U1038 6025s,82970,,, +353,CAN,,5F,b,Fox Creek (AB),54.395833,-116.791667,,0.025,,7063,327,144,,,,,U394 10.47s,DAID,82926,, +353,USA,,DI,b,Noson Dickinson (ND),46.6875,-102.708333,,0.025,,7131,314,144,,,,993,L1058 U1045 6399s,82935,,, +353,USA,,VV,b,Junne Greensboro (GA),33.645833,-83.041667,,0.025,,7090,292,144,,,,998,L1006 U1012 4.84s,82972,,, +353,USA,,ICL,b,Clarinda (IA),40.729167,-95.041667,,0.025,,7228,305,145,,,,995,L1015 U1015 6.20s,82940,,, +353,USA,,JUK,b,Mc Kinnon Brunswick (GA),31.145833,-81.375,,0.025,,7186,289,145,,,,,U1030 ,82943,,, +353,CUB,,J,b,San Julin (pr),22.104167,-84.208333,,0.1,,8128,284,148,,,,,U950 ,82942,,, +353,USA,,DWL,b,Willow Gothenburg (NE),40.854167,-100.041667,,0.025,,7492,308,148,,,,2,L1028 U1024 6.25s,82937,,, +353,USA,,SO,b,Sawcy Winfield / Arkansas City (KS),37.104167,-97.041667,,0.025,,7647,304,149,,,,,U1058 ,82968,,, +353,USA,,BX,b,Carma Bogalusa (LA),30.895833,-89.875,,0.025,,7746,295,150,,,,995,L1042 U1016 6.0s,82933,,, +353,USA,,CY,b,Horse Cheyenne (WY),41.145833,-104.708333,,0.025,,7711,311,150,,,,995,L1038 U1030 6.0s,82934,,, +353,USA,,GVB,b,Bogalusa George R Carr Memorial Airfield (LA),30.895833,-89.875,,0.025,,7746,295,150,,,,,L1040 U1026 7899s,86485,,, +353,USA,,AL,b,Trina Walla Walla (WA),46.1875,-118.208333,,0.025,,7879,323,152,,,,985,L1050 U1035 ,82928,,, +353,USA,,RNT,b,Renton (WA),47.479167,-122.208333,,0.025,,7915,326,152,,,,10,L1000 U1025 4.5s,82965,,, +353,USA,,LC,b,Keyli Lake Charles (LA),30.1875,-93.291667,,0.025,,8017,296,153,,,,0,L1039 U1024 6.1s,82949,,, +353,USA,,AB,b,Tomhi Abilene (TX),32.3125,-99.708333,,0.025,,8214,302,155,,,,990,L1045 U1020 5.7s,82927,,, +353,USA,,BKS,b,Brooks Co Falfurrias (TX),27.1875,-98.125,,0.025,,8572,298,158,,,,2,L1021 U1020 7227s,82929,,, +353,J,,OM,b,Ominato (toh-aom),41.229167,141.125,,0.025,,8756,33,159,,,,,L1000 20s,86487,,, +353,CHN,,XK,b,Pingzhou,23.020833,113.208333,,0.025,,9079,63,160,,,,,,86489,,, +353,EQA,,LAG,b,Lago Agrio (suc),0.0625,-76.875,,0.025,,9544,265,161,,,,993,L871 U858 4128s,82948,,, +353,HWA,,LLD,b,Lanai (HI),20.770833,-156.958333,,0.025,,11752,344,169,,,,0,L400 U402 8.5s,82951,,, +353,AUS,,SLS,b,Shellys (NSW),-34.6875,150.041667,,0.5,,16551,70,172,,,,,,82967,,, +353,OCE,,NH,b,Nuku Hiva,-8.8125,-140.208333,,0.025,,14331,316,177,,,,,19.66s,DAID,86486,, +353,AUS,,LRE,b,Longreach (QLD),-23.4375,144.291667,,0.025,,15238,65,180,,,,988,L1023 U1000 8s,82953,,, +353,AUS,,MTP,b,Mount Hope (SA),-34.145833,135.375,,0.025,,15533,84,181,,,,,L1020 U1020 8s,82957,,, +353.5,G,,EME,b,East Midlands (EN-NHS),52.8125,-1.208333,,0.025,,522,282,78,,,,501,L400 U398 4.6s,82974,,, +354,D,,PAD,b,Paderborn / Lippstadt (nrw),51.604167,8.625,,0.025,,162,109,75,,,,2,L1035 U1032 ,82984,,, +354,F,,MTZ,b,Metz / Nancy-Lorraine (57),49.270833,6.208333,,0.025,,316,183,76,,,,,19.5s,82982,,, +354,F,,CGC,b,Cognac / Chateaubernard (16),45.6875,-0.291667,,0.05,,865,217,79,,,,,L12 ,DAID,82976,, +354,XOE,,BHM,b,Bleo Holm / Bluewater Engineering,58.104167,-1.458333,,0.025,,832,326,81,,,,989,L407 U385 ,82975,,, +354,F,,NG,b,Nimes / Garons (30),43.854167,4.375,,0.025,,930,190,82,,,,,,82983,,, +354,HNG,,GYR,b,Győr (GMS),47.645833,17.708333,,0.025,,948,117,82,,,,6,L1021 U1026 8.2s,ID+3 gap,82980,, +354,E,,PP,b,Pamplona (NAV-NA),42.854167,-1.708333,,0.025,,1195,214,85,,,,23,L1021 U1066 7.5s,ID+4 gap,82985,, +354,I,,FE,b,Fiumicino (rm),41.8125,12.375,,0.025,,1230,156,85,,,,2,L1019 U1020 10.0s,ID+5 gap,82978,, +354,FIN,,G,b,Ivalo / Palotievanniemi,68.604167,27.458333,,0.025,,2144,23,94,,,,5,L408 U411 ,82979,,, +354,CAN,,Z,b,Monoghan / Sept Iles (QC),50.229167,-66.291667,,0.12,,4855,298,115,,,,,,87127,,, +354,CAN,,ZZV,b,Monoghan (Sept-Iles) (QC),50.229167,-66.291667,,0.12,,4855,298,115,,,,,U390 ,DAID,82986,, +354,USA,,DVZ,b,Davie Mocksville (NC),35.895833,-80.458333,,0.025,,6746,292,140,,,,,L968 U1007 ,87126,,, +354,USA,,MKS,b,Moncks Corner (SC),33.1875,-80.041667,,0.025,,6935,289,142,,,,990,L1036 U1015 7430s,82981,,, +354,CHN,,DK,b,Beijing (BJ),40.020833,116.541667,,0.025,,7759,50,151,,,,,17s,82977,,, +354,NCL,,FND,b,La Tontouta (sud),-22.020833,166.208333,,0.025,,16248,35,184,,,,,20s,DAID,86491,, +354,NZL,,NR,b,Napier (HKB),-39.479167,176.875,,0.13,,18431,31,184,,,,,U1020 4s,86492,,, +355,BEL,,ONW,b,Antwerpen / Deurne (vlg-ant),51.1875,4.541667,,0.025,,165,232,75,,,,999,L400 U400 10.0s,83009,,, +355,D,,KNG,b,Bad Knig for Frankfurt / Main (hes),49.770833,9.125,,0.025,,322,143,76,,,,996,L1028 U1016 ,83002,,, +355,SVN,,MI,b,Maribor (mb),46.479167,15.708333,,0.075,,919,129,77,,,,2,L402 U407 3.8s,83005,,, +355,XOE,,DON,b,Donna Dan B Platform,55.479167,5.125,,0.025,,384,348,77,,,,490,L1020 U~1020 ,82995,,, +355,XOE,,DONNA,b,Donna Dan B Platform,55.479167,5.125,,0.025,,384,348,77,,,,,L400 U400 ,82996,,, +355,D,,DRW,b,Drewitz / Cottbus (brb),51.895833,14.541667,,0.025,,557,89,79,,,,11,L1020 U1042 ,82997,,, +355,BIH,,MA,b,Mostar (hgn),43.229167,17.875,,0.1,,1305,135,80,,,,0,L1020 U349 ,ID+8 gap,83004,, +355,G,,PIK,b,Prestwick (SC-SAY),55.520833,-4.541667,,0.025,,812,302,81,,,,1,L402 U406 6.0s,83011,,, +355,I,,VIL,b,Villafranca di Verona (vr),45.3125,10.791667,,0.025,,821,155,81,,,,2,L1020 U1025 ,ID+3 gap,83018,, +355,SRB,,OBR,b,Obrenovac/Zvečka (Srb-gbg),44.642378,20.139094,,0.05,,1307,124,83,,,,998,L1025 U1028 8.2s,ID+4 gap,83008,, +355,BLR,,KI,b,Ivenets (MI),53.520833,26.458333,,0.025,,1352,75,86,,,,,L389 38.5s,83000,,, +355,BLR,,KN,b,Ivenets (MI),53.520833,26.458333,,0.025,,1352,75,86,,,,5,L384 U394 36.6s,IDx2 + 35 gap,83001,, +355,FIN,,J,b,Varkaus,62.1875,27.875,,0.025,,1698,40,90,,,,998,L405 U412 4.2s,82999,,, +355,NOR,,KT,b,Narvik / Framnes / Skatnes,68.4375,17.291667,,0.025,,1905,14,92,,,,,,83003,,, +355,MRC,,ARW,b,Nador / Arwi (otl),34.979167,-3.041667,,0.025,,2047,205,93,,,,997,L1054 U1052 ,Cont. ID,82990,, +355,ISL,,RK,b,Reykjavk (ho),64.145833,-22.041667,,0.025,,2110,320,94,,,,2,L1027 U1027 5.5s,ID+3 gap,83013,, +355,IRN,,ARB,b,Ardabil (ard),38.3125,48.375,,0.025,,3564,99,109,,,,894,L1130 U940 10.0s,ID+6 gap,82989,, +355,UZB,,MZ,b,Samarqand (saq),39.6875,66.958333,,0.025,,4734,82,120,,,,,,83006,,, +355,CAN,,YWP,b,Webequie (ON),52.979167,-87.375,,0.1,,5862,311,126,,,,0,L405 U408 10.2s,DAID,83019,, +355,CAN,,WP,b,Webequie (ON),52.979167,-87.375,,0.025,,5862,311,132,,,,,U402 10160s,DAID,87129,, +355,UGA,,EM,b,Entebbe (wak),0.138333,32.424444,,0.025,,6268,148,136,,,,,,8500003,,, +355,USA,,CGE,b,Cambridge (MD),38.520833,-76.041667,,0.025,,6262,291,136,,,,998,L1018 U1020 5802s,82993,,, +355,USA,,CS,b,Fenix Columbus (GA),32.4375,-85.041667,,0.025,,7315,292,146,,,,986,L1048 U1028 6393s,82994,,, +355,J,,IK,b,Ikishima (kyu-nag),33.7625,129.7875,,0.5,,8999,45,147,,,,0,L1023 U1022 ,DAID,82998,, +355,ALS,,AK,b,Saldo King Salmon (AK),58.729167,-156.791667,,0.025,,7597,351,149,,,,,L1038 U1025 ,87128,,, +355,ALS,,AUB,b,Saldo King Salmon (AK),58.729167,-156.791667,,0.025,,7597,351,149,,,,993,L1039 U1023 ,82991,,, +355,ALS,,AUD,b,Saldo King Salmon (AK),58.729167,-156.791667,,0.025,,7597,351,149,,,,,,82992,,, +355,B,,PAI,b,Barra do Pirai (RJ),-22.4375,-43.875,,0.2,,9615,225,153,,,,,,83010,,, +355,CLM,,SOG,b,Sogamoso (boy),5.6875,-72.958333,,0.1,,8783,265,153,,,,,L1031 U1038 4.66s,83015,,, +355,B,,ACJ,b,Aracaju (SE),-10.979167,-37.041667,,0.025,,8150,225,154,,,,,L1070 ,82988,,, +355,CHL,,SNO,b,Santo Domingo (VS),-33.645833,-71.625,,1,,12159,240,154,,,,,U874 3.78s,83014,,, +355,HND,,TGU,b,Tegucigalpa (Central District) (fmz),13.9375,-87.208333,,0.1,,9032,281,154,,,,998,L1050 U1045 ,Cont ID,83016,, +355,B,,URC,b,Coar (AM),-4.895833,-65.375,,0.025,,9216,253,160,,,,,L1056 ,86494,,, +355,B,,RBC,b,Rio Branco (AC),-9.854167,-67.875,,0.025,,9824,252,162,,,,1,L1006 U1014 7.19s,83012,,, +355,NRU,,NI,b,Nauru,-0.5625,166.958333,,0.025,,14003,24,176,,,,0,L1024 U1024 8.4s,83007,,, +355.5,I,,PAL,b,Palermo (pa),38.020833,13.208333,,0.025,,1653,159,90,,,,-355.5,L1024 U1018 10.1s,ID+6 gap,86495,, +356,E,,SGO,b,Sagunto (VAL-V),39.6875,-0.208333,,0.3,,1472,203,77,,,,12,L1120 U1140 ,ID+10 gap,83052,, +356,F,,RSY,b,Paris / Charles de Gaulle (77),49.020833,2.708333,,0.025,,432,219,77,,,,2,L402 U407 12.9s,ID+10 gap,83050,, +356,G,,WBA,b,Wolwerhampton (EN-WMD),52.520833,-2.291667,,0.025,,593,278,79,,,,0,L404 U398 5.8s,83061,,, +356,AUT,,SU,b,Salzburg,47.895833,12.958333,,0.025,,662,132,80,,,,0,L402 U399 ,83055,,, +356,F,,CVU,b,Castres / Mazamet (81),43.645833,2.208333,,0.025,,992,200,83,,,,,U3 22.4s,ID+15 tone,83027,, +356,BUL,,BGS,b,Burgas (bur),42.645833,27.625,,0.025,,1902,115,92,,,,998,L1024 U1017 10.0s,ID+6.5 gap,83025,, +356,TUR,,ANK,b,Ankara / Esenboga (ica-ank),39.9375,32.791667,,0.025,,2424,113,97,,,,31,L984 U1069 ,Cont. ID,83021,, +356,CAN,,AY,b,Saint Anthony (NL),51.395833,-56.125,,0.025,,4169,295,115,,,,200,L415 U406 10.3s,DAID,83024,, +356,CAN,,ZF,b,Yellowknife (NT),62.395833,-114.458333,,1,,6272,331,120,,,,,U425 10.2s,DAID,83063,, +356,CAN,,YBG,b,Bagotville (QC),48.354167,-71.125,,0.025,,5262,298,126,,,,983,L1027 U1005 8302s,DAID,83062,, +356,USA,,SUH,b,Sprucehead Rockland (ME),44.0625,-69.125,,0.025,,5423,292,127,,,,998,L1022 U1018 8600s,83056,,, +356,CAN,,YZD,b,Downsview Millitary Airfield (ON),43.770833,-79.458333,,0.063,,6082,298,130,,,,,U1028 ,DAID,87135,, +356,USA,,AR,b,Armin Providence (RI),41.8125,-71.375,,0.025,,5723,291,130,,,,995,L1035 U1025 6039s,83023,,, +356,CAN,,ZYQ,b,Polar Bear Churchill (MB),58.770833,-94.208333,,0.025,,5778,320,131,,,,,U399 ,86499,,, +356,USA,,HEU,b,Hunter Schenectady (NY),42.854167,-73.958333,,0.025,,5811,294,131,,,,990,L1035 U1015 8.51s,83033,,, +356,USA,,RD,b,Shapp Reading (PA),40.3125,-75.958333,,0.025,,6122,293,134,,,,997,L1027 U1020 6009s,83049,,, +356,GUY,,TIM,b,Timehri (Georgetown) (dem),6.520833,-58.208333,,0.5,,7721,253,137,,,,,,83057,,, +356,USA,,GR,b,Famis Green Bay (WI),44.4375,-88.208333,,0.025,,6544,304,138,,,,993,L1041 U1040 5993s,83032,,, +356,USA,,RCX,b,Rusk County Ladysmith (WI),45.520833,-91.041667,,0.025,,6618,306,139,,,,2,L1040 U1036 7041s,83048,,, +356,ALS,,HHM,b,Hotham Kotzebue (AK),66.895833,-162.541667,,0.025,,6750,355,140,,,,997,L1026 U1025 8.5s,83034,,, +356,CAN,,RN,b,Barchane (AB),53.895833,-113.375,,0.05,,6978,325,140,,,,,,87133,,, +356,CAN,,ZXE,b,Barnes (Saskatoon) (SK),52.145833,-106.541667,,0.039,,6846,320,140,,,,,U390 10.5s,DAID,83064,, +356,USA,,IUL,b,La Porte (IN),41.479167,-86.791667,,0.025,,6694,300,140,,,,0,L1038 U1025 5238s,83037,,, +356,USA,,VES,b,Versailles (OH),40.1875,-84.541667,,0.025,,6661,298,140,,,,,U1020 6500s,83060,,, +356,ALS,,FOX,b,Fox (AK),64.979167,-147.541667,,0.025,,6805,348,141,,,,483,L1035 U~1020 ,83030,,, +356,CAN,,T,b,Saskatoon (SK),52.145833,-106.541667,,0.025,,6846,320,141,,,,,,87134,,, +356,USA,,AQP,b,Appleton (MN),45.229167,-96.041667,,0.025,,6912,309,142,,,,974,L1027 U995 34.95s,AWOS-3,83022,, +356,USA,,PI,b,Tungg Peoria (IL),40.604167,-89.625,,0.025,,6929,302,142,,,,0,L1031 U1035 6034s,83044,,, +356,USA,,BXG,b,Burke County Waynesboro (GA),33.0625,-82.041667,,0.025,,7073,291,144,,,,,U1022 6478s,83026,,, +356,USA,,HIX,b,Honey Grove (KY),36.895833,-87.375,,0.025,,7095,297,144,,,,0,L1012 U1023 5.7s,83035,,, +356,USA,,SKI,b,Sac City (IA),42.395833,-94.958333,,0.025,,7086,306,144,,,,,U1017 7458s,83054,,, +356,USA,,UUV,b,Sullivan (MO),38.229167,-91.125,,0.025,,7210,301,145,,,,2,L991 U1006 ,83059,,, +356,USA,,ODX,b,Ord (NE),41.604167,-98.958333,,0.025,,7370,308,147,,,,997,L1020 U1014 7.0s,83041,,, +356,USA,,LLU,b,Spring River Lamar (MO),37.479167,-94.291667,,0.025,,7457,302,148,,,,2,L1035 U1042 5.9s,83038,,, +356,USA,,PB,b,Rubin West Palm Beach (FL),26.6875,-80.208333,,0.025,,7477,285,148,,,,2,L1037 U1041 6502s,83043,,, +356,CAN,,ON,b,Okanagan Penticton (BC),49.354167,-119.541667,,0.025,,7634,326,149,,,,,U392 10.5s,DAID,83042,, +356,USA,,ME,b,Savoy Meridian (MS),32.229167,-88.791667,,0.025,,7567,295,149,,,,985,L1050 U1020 6303s,83039,,, +356,USA,,PTT,b,Pratt (KS),37.729167,-98.708333,,0.025,,7687,305,150,,,,994,L1020 U1026 5.40s,83047,,, +356,CHN,,DK,b,Beijing / Capital (BJ),40.020833,116.541667,,0.025,,7759,50,151,,,,,L1007 ,83028,,, +356,USA,,OPZ,b,Lopez Island (WA),48.479167,-122.958333,,0.025,,7847,327,151,,,,,U~1060 6.5s,87132,,, +356,USA,,FWX,b,Hazer New Roads (LA),30.645833,-91.458333,,0.025,,7865,295,152,,,,,L1045 U1031 7.62s,86496,,, +356,USA,,HZ,b,Hazer New Roads (LA),30.645833,-91.458333,,0.025,,7865,295,152,,,,990,L1043 U1023 5925s,83036,,, +356,USA,,GMZ,b,Grindstone Mountain Bowie (TX),33.604167,-97.791667,,0.025,,7991,302,153,,,,,L1025 U1032 6.5s,83031,,, +356,USA,,HI,b,Abate Portland (OR),45.645833,-123.041667,,0.025,,8123,326,154,,,,,L1049 U1040 6.35s,87131,,, +356,USA,,PND,b,Abate Portland (OR),45.645833,-123.041667,,0.025,,8123,326,154,,,,990,L1053 U1040 6.5s,83045,,, +356,USA,,FR,b,Medford (OR),42.395833,-122.875,,0.025,,8431,324,157,,,,,,87130,,, +356,USA,,MEF,b,Medford (OR),42.395833,-122.875,,0.025,,8431,324,157,,,,998,L1035 U1040 8.2s,83040,,, +356,USA,,SJ,b,Woole San Angelo (TX),31.270833,-100.541667,,0.025,,8354,302,157,,,,984,L1046 U1013 6.31s,83053,,, +356,USA,,SA,b,Execc Sacramento (CA),38.4375,-121.541667,,0.025,,8759,321,159,,,,983,L1060 U1027 6.0s,83051,,, +356,AUS,,TN,b,Tindal (NT),-14.520833,132.375,,0.025,,13695,69,175,,,,,L1020 9s,83058,,, +356,AUS,,HID,b,Horn Island (QLD),-10.604167,142.291667,,0.025,,13939,57,176,,,,,L1020 8s,86497,,, +356,AUS,,EN,b,Essendon (VIC),-37.729167,144.875,,0.025,,16439,80,184,,,,,L1020 U1020 20s,83029,,, +356.5,SUI,,SHU,b,Schupberg for Bern / Belp (be),47.020833,7.375,,0.025,,570,173,79,,,,519,L380 U419 ,ID+4 gap,83066,, +356.5,ALG,,OU,b,Ouargla (30),31.9375,5.458333,,0.025,,2244,182,95,,,,-356.5,U5 17.5s,ID+14 tone,83065,, +357,HOL,,VZ,b,Eelde / Groningen (gro),53.020833,6.375,,0.025,,101,359,56,,,,995,L410 U397 6.1s,83085,,, +357,D,,DWI,b,Dortmund / Wickede (nrw),51.520833,7.625,,0.025,,106,128,58,,,,999,L1018 U1016 ,83070,,, +357,D,,TEST,b,Dortmund (DWI) (nrw),51.520833,7.625,,0.025,,106,128,58,,,,,L1022 U1024 4.02s,86504,,, +357,E,,BGS,b,Burgos (CAL-BU),42.354167,-3.625,,0.3,,1321,219,75,,,,,U~1020 ,ID+16 gap,83068,, +357,D,,SKZ,b,Leipzig / Halle (sac),51.395833,12.291667,,0.025,,412,99,77,,,,993,L404 U396 ,83083,,, +357,DNK,,KD,b,Kolding/Vamdrup (sdk),55.4375,9.375,,0.025,,418,27,77,,,,997,L403 U397 3.9s,83076,,, +357,D,,NRG,b,Neubrandenburg (mev),53.604167,13.375,,0.025,,496,68,78,,,,19,L1044 U1074 ,83080,,, +357,XOE,,FRN,b,Franklin JP Plarform,56.979167,1.875,,0.025,,615,333,79,,,,0,L400 U400 5.9s,83072,,, +357,F,,LP,b,Cholet / Le Pontreau (49),47.145833,-0.875,,0.025,,761,226,81,,,,,U403 ,ID+8 gap,83078,, +357,I,,CAS,b,Caselle Torinese (to),45.104167,7.625,,0.025,,784,173,81,,,,4,L1019 U1031 6.8s,83069,,, +357,HNG,,L,b,Budapest/Ferenc Liszt Int. (Bud),47.4375,19.208333,,0.025,,1054,114,84,,,,,U1018 ,Cont. ID,83077,, +357,I,,SME,b,Olbia / Costa Smeralda (ss),40.895833,9.541667,,0.04,,1269,168,84,,,,5,L1018 U1024 7.0s,ID+3.5 gap,83084,, +357,EST,,I,b,Tallinn (Har),59.395833,24.791667,,0.025,,1399,47,87,,,,7,L395 U410 ,83074,,, +357,FIN,,SEP,b,Vaasa / Seppi,63.145833,21.708333,,0.025,,1520,30,88,,,,1,L408 U407 ,83082,,, +357,FIN,,R,b,Rovaniemi / Lamminpervaara,66.604167,25.875,,0.025,,1935,26,92,,,,4,L400 U408 ,83081,,, +357,ISL,,HV,b,Hvammur,65.645833,-18.041667,,0.025,,2033,327,93,,,,,,83073,,, +357,LBY,,RJ,b,Tripoli / Mitiga (tbl),32.895833,13.375,,0.025,,2209,163,95,,,,,L1025 U1019 ,ID+5 gap,86502,, +357,CPV,,NCL,b,So Nicolau (snc-rbv),16.5625,-24.291667,,0.025,,4784,226,121,,,,,,83079,,, +357,GHA,,SN,b,Sunyani (bra),7.377222,-2.299444,,0.025,,5037,192,123,,,,,,3000003,,, +357,PAK,,SS,b,Saidu Sharif (kpk),34.808889,72.351944,,0.025,,5448,83,127,,,,,,31500043,,, +357,CAN,,HS,b,Standard (AB),51.0625,-112.958333,,0.1,,7214,323,139,,,,,,87136,,, +357,USA,,IM,b,Keans Asheville (NC),35.520833,-82.625,,0.025,,6912,293,142,,,,990,L1039 U1027 5839s,83075,,, +357,USA,,EYA,b,Eastport Jacksonville (FL),30.4375,-81.625,,0.025,,7260,288,146,,,,998,L1005 U1000 6657s,83071,,, +357,NCG,,CIS,b,Corn Island (ats),12.1875,-83.041667,,0.025,,8904,277,159,,,,,L3025 U1005 3.85s,86500,,, +357,J,,RB,b,Eda (kan-kgw),35.5625,139.541667,,0.025,,9258,37,161,,,,,L1000 5s,DAID,86501,, +357.5,I,,FAL,b,Falconara Marittima (an),43.645833,13.375,,0.025,,1074,148,84,,,,501,L1019 U1021 10.0s,ID+6 gap,83086,, +357.5,BIH,,KG,b,Sarajevo / Butmir / Kobiljaca (sar),43.895833,18.208333,,0.025,,1264,132,86,,,,501,L1021 U1021 ,ID+2 gap,83087,, +358,POR,,BRG,b,Braganca (bgc),41.8125,-6.708333,,2,,1513,226,69,,,,5,L406 U405 4.6s,Cont. ID,83091,, +358,D,,HW,b,Hannover / West (nds),52.479167,9.541667,,0.025,,217,78,75,,,,10,L1010 U1030 ,83098,,, +358,XOE,,HF,b,Unocal Helder A Platform,52.9375,4.125,,0.025,,180,302,75,,,,,,83097,,, +358,XOE,,HO,b,Unicorn Hoorn-A,52.9375,4.125,,0.025,,180,302,75,,,,,,86505,,, +358,XOE,,KR,b,Conoco Kotter Platform,53.0625,3.958333,,0.025,,197,304,75,,,,,,83100,,, +358,XOE,,MB,b,Camelot A - P6A (Mobil),52.770833,3.791667,,0.025,,192,294,75,,,,2,L402 U407 4.5s,83103,,, +358,XOE,,TF,b,Rijn B Platform,52.3125,3.791667,,0.025,,180,278,75,,,,0,L~400 U~400 ,ID+25 tone,83116,, +358,XOE,,WC,b,Nam / FA1 Platform,53.5625,4.291667,,0.025,,215,319,75,,,,4,L390 U395 5.0s,ID+2 gap,83122,, +358,XOE,,DIV,b,Gaz de France - D15 FA1 Platform,54.1875,2.541667,,0.025,,346,313,76,,,,,L1030 ,ID+2.5 gap,83094,, +358,F,,LT,b,Le Touquet / Paris-Plage (62),50.520833,1.625,,0.025,,376,244,77,,,,,L402 U407 ,83102,,, +358,D,,MSE,b,Mnchen (bay),48.333333,11.652778,,0.025,,561,136,79,,,,994,L1020 U1007 4.5s,ID+2 gap,83106,, +358,F,,RNN,b,Roanne / Renaison (42),46.104167,4.041667,,0.025,,690,195,80,,,,,L398 U402 10.1s,ID+7 gap,83113,, +358,AUT,,TUN,b,Tulln for Schwechat,48.3125,15.958333,,0.025,,799,118,81,,,,0,L1021 U1020 10.0s,ID+7 gap,83120,, +358,HNG,,TO,b,Zalaegerszeg/Andrshida (Zal),46.854167,16.791667,,0.025,,949,124,82,,,,,L986 ,ID+2 gap,83119,, +358,NOR,,LF4H,b,Heimdal Platform,59.5625,2.208333,,0.025,,869,344,82,,,,,,83101,,, +358,F,,BRS,b,Biscarosse / Parentis (40),44.354167,-1.125,,0.025,,1026,216,83,,,,,19.7s,ID+15 tone,83092,, +358,NOR,,GRK,b,Trondheim / Vaernes / Grakallen (st),63.4375,10.291667,,0.025,,1280,9,86,,,,4,L375 U381 ,83096,,, +358,S,,AS,b,Arvidsjaur,65.5625,19.375,,0.025,,1664,21,90,,,,,,83090,,, +358,ALG,,ELO,b,El Oued / Guemar (39),33.520833,6.791667,,0.025,,2067,179,94,,,,0,L400 U400 ,83095,,, +358,NOR,,ALA,b,Alta,69.979167,23.291667,,0.025,,2167,17,95,,,,8,L415 U391 ,83089,,, +358,RUS,,W,b,Arkhangelsk /Vaskovo (AR),64.479167,40.375,,0.025,,2369,41,97,,,,,,83121,,, +358,RUS,,K,b,Stavropol / Shopakovskoye (ST),45.104167,42.125,,0.025,,2708,92,100,,,,,U1045 ,83099,,, +358,RUS,,O,b,Stavropol / Shopakovskoye (ST),45.104167,42.125,,0.025,,2708,92,100,,,,,U1020 ,83109,,, +358,ALG,,TAM,b,Tamanrasset / Aguenar (11),22.8125,5.458333,,0.05,,3259,182,103,,,,,L7 ,ID+12 tone,83115,, +358,CAN,,YKG,b,Kangiqsujuaq (QC),61.604167,-71.958333,,1,,4574,315,103,,,,,U403 10.3s,DAID,83123,, +358,SYR,,MEZ,b,Damascus International / Mezzeh (dim),33.479167,36.208333,,0.025,,3155,119,105,,,,0,L1020 U1020 ,ID+7 gap,83104,, +358,CAN,,NL,b,Saint John's/Signal Hill (NL),47.5625,-52.708333,,0.025,,4151,287,114,,,,,L398 U393 10693s,DAID,83107,, +358,USA,,OG,b,Ogive Ogdensburg (NY),44.6875,-75.375,,0.025,,5768,297,131,,,,994,L1040 U1033 5.41s,83111,,, +358,USA,,CKC,b,Cook County Grand Marais (MN),47.854167,-90.375,,0.025,,6400,308,137,,,,1,L1028 U1030 7006s,83093,,, +358,USA,,TNY,b,Kelso Fayetteville (TN),35.145833,-86.541667,,0.025,,7187,295,145,,,,998,L1025 U1024 5.5s,83118,,, +358,USA,,TKX,b,Kennett (MO),36.229167,-90.041667,,0.025,,7311,298,146,,,,994,L1049 U1028 8247s,83117,,, +358,ALS,,SIT,b,Sitka (AK),56.854167,-135.541667,,0.025,,7411,338,147,,,,966,L1057 U992 ,83114,,, +358,USA,,AC,b,Coffi Waco (TX),31.6875,-97.208333,,0.025,,8123,300,154,,,,,L1042 4737s,83088,,, +358,CHN,,OX,b,Bose (GX),23.895833,106.625,,0.025,,8594,67,158,,,,,,83112,,, +358,NZL,,NL,b,Newlands,-41.229167,174.791667,,0.05,,18519,41,188,,,,,L1200 7s,83108,,, +358,NZL,,MI,b,Mosgiel,-45.854167,170.291667,,0.025,,18653,66,192,,,,,6.94s,83105,,, +359,F,,LOR,b,Lorient / Lann Bihoue (56),47.770833,-3.458333,,0.1,,854,240,76,,,,,U19 19.5s,ID+14 tone,83145,, +359,S,,LK,b,Lidkping/Ekgrden,58.4375,13.125,,0.025,,821,28,81,,,,996,L414 U386 4.5s,83144,,, +359,XOE,,BUZ,b,Buzzard / Nexen Platform,57.854167,-1.041667,,0.025,,795,326,81,,,,2,L405 U410 8.2s,ID+4 gap,83131,, +359,G,,RWY,b,Ronaldsway (IOM),54.0625,-4.625,,0.02,,767,291,82,,,,0,L400 U402 10.0s,83155,,, +359,E,,AL,b,Salamanca (CAL-SA),41.020833,-5.458333,,0.025,,1527,221,88,,,,2,L1027 U1017 ,ID+6 gap,83125,, +359,POR,,CA,b,Cascais (lis),38.729167,-9.375,,0.025,,1923,226,92,,,,2,L1022 U1027 9.97s,ID+7 gap,83132,, +359,GRL,,NA,b,Narsarsuaq (Kitaa) (kuj-nrq),61.1875,-45.375,,0.025,,3225,309,105,,,,0,L399 U398 9.8s,83150,,, +359,CAN,,2I,b,Florenceville (NB),46.395833,-67.625,,0.2,,5174,294,116,,,,,U~400 ,DAID,83124,, +359,USA,,AS,b,Chern Nashua (NH),42.8125,-71.625,,0.025,,5668,293,130,,,,0,L1049 U1032 6417s,83129,,, +359,USA,,MS,b,Monga Monticello (NY),41.770833,-74.958333,,0.025,,5952,294,132,,,,490,L1020 U~1000 8.6s,83148,,, +359,ALS,,ANI,b,Aniak (AK),61.604167,-159.625,,0.25,,7310,353,136,,,,,U1035 8.4s,83128,,, +359,USA,,GYG,b,Grayling (MI),44.729167,-84.791667,,0.025,,6326,302,136,,,,983,L1050 U1019 8805s,83142,,, +359,USA,,YI,b,Yipps Detroit (MI),42.1875,-83.625,,0.025,,6451,299,137,,,,0,L1032 U1040 8.0s,83160,,, +359,USA,,SDY,b,Sidney (MT),47.729167,-104.208333,,0.1,,7115,316,138,,,,990,L1020 U1022 5.9s,83157,,, +359,USA,,UES,b,Waukesha (WI),43.0625,-88.208333,,0.025,,6652,303,139,,,,998,L1015 U1012 4.7s,83158,,, +359,USA,,AMT,b,West Union (OH),38.854167,-83.541667,,0.025,,6705,296,140,,,,995,L1010 U1014 5057s,83127,,, +359,USA,,BO,b,Ustik Boise (ID),43.604167,-116.291667,,0.4,,8039,320,141,,,,14,L1026 U1048 5.91s,83130,,, +359,USA,,LXL,b,Little Falls (MN),45.9375,-94.375,,0.025,,6766,309,141,,,,500,L1014 U2020 37s,AWOS-3,83146,, +359,USA,,RSY,b,Robeson Lumberton (NC),34.604167,-79.041667,,0.025,,6758,290,141,,,,996,L1021 U1012 6409s,83154,,, +359,USA,,CZB,b,Casey (IL),39.3125,-88.041667,,0.025,,6940,300,142,,,,986,L1048 U1023 7674s,83134,,, +359,USA,,FXY,b,Forest City (IA),43.229167,-93.625,,0.025,,6944,306,142,,,,,U1017 7.83s,83138,,, +359,USA,,DO,b,Dotte Kansas City (MO),39.229167,-94.708333,,0.05,,7334,304,143,,,,0,L1018 U1018 8.60s,83135,,, +359,MEX,,TPX,b,Tepexpan (mex),19.604167,-98.958333,,1,,9296,294,145,,,,,L1010 ,87138,,, +359,CAN,,YQZ,b,Quesnel (BC),52.979167,-122.458333,,0.025,,7399,329,147,,,,0,L400 U402 10.0s,DAID,83161,, +359,USA,,LYZ,b,Willis Bainbridge (GA),30.979167,-84.541667,,0.025,,7403,291,147,,,,5,L1021 U1033 8.66s,83147,,, +359,GUF,,CW,b,Saint-Laurent-du-Maroni (973),5.479167,-54.041667,,0.025,,7546,249,148,,,,,15s,83133,,, +359,USA,,GGF,b,Grant (NE),40.854167,-101.708333,,0.025,,7581,309,149,,,,21,L972 U1002 6.0s,83140,,, +359,USA,,MTQ,b,Metcalf Greenville (MS),33.4375,-90.958333,,0.025,,7599,297,149,,,,990,L1040 U1020 ,83149,,, +359,USA,,JWG,b,Watonga (OK),35.854167,-98.458333,,0.025,,7834,304,151,,,,,L1035 U1034 ,87137,,, +359,CAN,,YAZ,b,Tofino (BC),49.0625,-125.708333,,0.025,,7890,329,152,,,,991,L400 U383 10.5s,DAID,83159,, +359,USA,,DUA,b,Durant (OK),33.9375,-96.375,,0.025,,7880,301,152,,,,998,L965 U960 ,83136,,, +359,USA,,GUV,b,Gator Fort Polk (LA),31.020833,-93.208333,,0.025,,7941,297,152,,,,2,L1039 U1024 8161s,83141,,, +359,USA,,SDR,b,Snyder (TX),32.6875,-100.958333,,0.025,,8253,303,156,,,,512,L1 U1018 5.8s,83156,,, +359,USA,,HHH,b,Devine (TX),29.145833,-98.958333,,0.025,,8449,300,157,,,,3,L1010 U1007 5.8s,83143,,, +359,USA,,EMT,b,El Monte (CA),34.104167,-118.041667,,0.025,,9017,316,160,,,,993,L1023 U1010 5.2s,83137,,, +359,AUS,,AMB,b,Amberley (QLD),-27.645833,152.708333,,2,,16119,59,164,,,,0,L400 U400 10s,TWEB,83126,, +359,MHL,,NDJ,b,Kwajalein/Bucholz AAF,8.719444,167.719444,,0.025,,13020,21,173,,,,0,L1020 U1024 ,83151,,, +359,AUS,,GEL,b,Geraldton (WA),-28.8125,114.708333,,0.025,,13712,95,175,,,,998,L1023 U1020 9.2s,83139,,, +359,AUS,,NWA,b,Nowra (NSW),-34.9375,150.541667,,0.025,,16603,70,185,,,,,L400 U400 10s,TWEB,86506,, +359.5,XOE,,RVN,b,Hamilton / Ravenspurn North Platform,54.020833,1.125,,0.025,,412,303,77,,,,700,L~400 U400 ,83164,,, +359.5,F,,CDN,b,Chateaudun (28),48.0625,1.375,,0.025,,576,221,79,,,,-359.5,U9 29.0s,ID+25 tone,83163,, +360,D,,SR,b,Saarbrcken / Ensheim (saa),49.229167,7.208333,,0.025,,325,170,76,,,,2,L1017 U1020 7.1s,ID+5 gap,83200,, +360,NOR,,ASK,b,Bergen / Flesland / Askoey (ho),60.4375,5.208333,,0.05,,929,356,79,,,,3,L400 U400 9.9s,83166,,, +360,S,,OS,b,Gteborg/Save (vg),57.8125,11.875,,0.025,,723,27,80,,,,1,L399 U402 ,83190,,, +360,S,,DL,b,Stockholm / Arlanda,59.729167,17.958333,,0.025,,1108,36,84,,,,,L400 ,83174,,, +360,ROU,,O,b,Oradea (BH),47.0625,21.875,,0.025,,1245,111,85,,,,11,L1047 U1058 ,ID+1 gap,83188,, +360,SRB,,LA,b,Kraljevo (Srb-rsk),43.854167,20.541667,,0.025,,1392,126,87,,,,,L1083 U956 ,ID+8 tone,86511,, +360,NOR,,ULV,b,Bronnoysund / Ulvingen,65.645833,12.125,,0.025,,1539,10,88,,,,176,L382 U372 6.9s,83205,,, +360,POR,,COV,b,Covilha (cab),40.3125,-7.458333,,0.025,,1685,224,90,,,,2,L390 U395 ,83173,,, +360,UKR,,KI,b,Kiev / Zhulyany (KY),50.229167,30.208333,,0.025,,1665,88,90,,,,983,L952 U1058 ,IDx2 + 8 gap,83183,, +360,UKR,,KV,b,Kiev / Zhulyany (KY),50.395833,30.541667,,0.025,,1682,87,90,,,,0,L1021 U1025 ,IDx2 + 5.5 gap,83185,, +360,ISL,,SL,b,Svinafell for Hornafjrdhur,64.395833,-15.375,,0.025,,1850,326,91,,,,976,L1068 U1020 5.0s,83199,,, +360,S,,OP,b,Kiruna,67.895833,20.458333,,0.025,,1911,18,92,,,,,U400 ,83189,,, +360,RUS,,BD,b,Bogdanovo,57.104167,37.708333,,0.025,,2070,62,94,,,,2,L1018 U1017 ,IDx2 + 20 gap,83169,, +360,RUS,,TS,b,Zadonsk (LI),52.395833,38.958333,,0.025,,2197,76,95,,,,0,L400 U398 40.0s,IDx3 + 29 gap,83202,, +360,LBY,,LOR,b,Dahra / Warehouse 32 (srt),29.479167,17.958333,,0.025,,2690,155,100,,,,2,L408 U407 6.4s,ID+2.5 gap,83186,, +360,AZR,,HT,b,Horta (fai),38.520833,-28.625,,0.025,,3086,255,104,,,,5,L1030 U1031 8.2s,ID+7 gap,83178,, +360,AZE,,BA,b,Baku / Bina (bak),40.479167,50.041667,,0.025,,3529,94,108,,,,,L1020 ,83168,,, +360,AZE,,BN,b,Baku / Bina (bak),40.4375,50.041667,,0.025,,3532,94,108,,,,,U1020 ,83171,,, +360,CAN,,PN,b,Port-Menier / Ile Anticosti (QC),49.854167,-64.375,,0.5,,4761,296,108,,,,,U400 10.3s,DAID,83193,, +360,KAZ,,RP,b,Petropavl (skq),54.770833,69.208333,,0.025,,4029,60,113,,,,,,83195,,, +360,KAZ,,IM,b,Shymkent=Şımkent (okq),42.354167,69.541667,,0.025,,4730,77,120,,,,,,83179,,, +360,ASC,,ASN,b,Ascension/Wideawake (asc),-7.9375,-14.375,,2,,6964,203,124,,,,993,L1018 U1020 10.3s,ID+8 gap,83167,, +360,USA,,LYS,b,Olean (NY),42.270833,-78.375,,0.025,,6127,296,134,,,,,,83187,,, +360,USA,,RW,b,Kirbe Camp Springs (Brandywine) (MD),38.6875,-76.875,,0.025,,6302,292,136,,,,1,L1025 U1022 8.53s,83197,,, +360,JMC,,KIN,b,Kingston (kgs),17.979167,-76.875,,1,,7987,276,137,,,,997,L1027 U1020 ,ID+6 gap,83184,, +360,VRG,,BFI,b,The Mill (Beef Island) (bee),18.4375,-64.541667,,0.1,,7107,267,138,,,,,L1039 U1025 8.53s,83170,,, +360,USA,,SW,b,Roadd Warroad (MN),48.854167,-95.208333,,0.025,,6576,311,139,,,,998,L1043 U1025 6004s,83201,,, +360,USA,,HIT,b,Kaolin Field Sandersville (GA),33.020833,-82.958333,,0.025,,7135,291,144,,,,999,L1024 U1020 4.8s,83177,,, +360,CAN,,U6,b,Creston (BC),49.0625,-116.458333,,0.025,,7539,324,148,,,,,U1022 10.0s,DAID,83203,, +360,J,,KC,b,Nagoya (chu-aic),35.270833,136.875,,0.4,,9175,39,148,,,,,L1000 U1010 5s,DAID,83182,, +360,USA,,PI,b,Capok St Petersburg / Clearwater (FL),27.979167,-82.708333,,0.025,,7534,287,148,,,,997,L1023 U1020 8600s,83192,,, +360,USA,,GP,b,Bayou Gulfport (MS),30.479167,-89.125,,0.025,,7735,294,150,,,,998,L1027 U1022 8.6s,83175,,, +360,CUB,,G,b,Ciego de vila (ca),22.020833,-78.791667,,0.025,,7773,280,151,,,,,,87139,,, +360,CUB,,UCV,b,Ciego de vila (ca),22.020833,-78.791667,,0.025,,7773,280,151,,,,5,L1377 U1248 7856s,83204,,, +360,B,,BRT,b,Barretos (SP),-20.5625,-48.625,,0.2,,9674,230,153,,,,,,83172,,, +360,MYA,,HHO,b,Heho,20.7425,96.792778,,0.025,,8228,77,155,,,,,,22100018,,, +360,B,,JAC,b,Jacareacanga (PA),-6.229167,-57.791667,,0.025,,8854,245,159,,,,7,L1035 U1039 7.15s,83180,,, +360,HND,,SAP,b,San Pedro Sula (Cortes) (cor),15.520833,-87.875,,0.025,,8939,283,159,,,,,U1020 ,83198,,, +360,CLM,,JDN,b,Jardin Caramanto (ant),5.604167,-75.625,,0.025,,8972,267,160,,,,995,L1028 U1018 6.2s,83181,,, +360,THA,,PU,b,Phuket (puk),8.104167,98.291667,,0.025,,9425,84,161,,,,,U1044 ,ID+6 gap,83194,, +360,B,,RR,b,So Vicente (SP),-23.9375,-46.291667,,0.025,,9881,227,163,,,,,,83196,,, +360,B,,TQA,b,Taquara (RS),-29.6875,-50.791667,,0.025,,10658,227,165,,,,,,86513,,, +360,CHL,,TCO,b,Temuco (AR),-38.770833,-72.625,,0.025,,12651,237,172,,,,,U1023 10.14s,86512,,, +360,ATA,,IRJ,b,Isla Rey Jorge=King George Island (ssi),-62.1875,-58.958333,,0.025,,13938,211,176,,,,,,86510,,, +360.5,BEL,,MAK,b,Mackel for Brussels Ntl (bru),50.979167,3.458333,,0.025,,240,240,75,,,,500,L399 U401 10.0s,ID+7 gap,83206,, +361,XOE,,SRN,b,South Arne Platform,56.0625,4.208333,,0.025,,462,343,78,,,,0,L~400 U~400 5.0s,83216,,, +361,G,,GUY,b,Guernsey (GUE),49.4375,-2.625,,0.025,,701,248,80,,,,4,L400 U409 6.5s,ID+2 gap,83209,, +361,IRL,,CFN,b,Donegal / Carrickfin (DL),55.0625,-8.333333,,0.05,,1025,294,80,,,,2,L407 U410 8.1s,ID+4 gap,83207,, +361,F,,NB,b,Bordeaux / Merignac (33),45.145833,-0.541667,,0.025,,927,216,82,,,,,U4 ,ID+17 tone,83214,, +361,FIN,,LIE,b,Turku / Lieto,60.520833,22.458333,,0.025,,1355,40,87,,,,0,L403 U402 8.6s,83212,,, +361,FIN,,RO,b,Kauhava,63.020833,23.041667,,0.025,,1557,32,89,,,,995,L410 U408 ,83215,,, +361,RUS,,NQ,b,Vyazma / Dvoevka,55.145833,34.375,,0.025,,1862,68,92,,,,,,86517,,, +361,CAN,,HI,b,Holman (NT),70.770833,-117.791667,,0.025,,5653,339,130,,,,,U409 10.1s,DAID,83211,, +361,USA,,HB,b,Himun Burlington (NC),35.979167,-79.625,,0.025,,6686,291,140,,,,993,L1042 U1025 7053s,83210,,, +361,CAN,,E3,b,Wabasca (AB),55.979167,-113.791667,,0.025,,6809,327,141,,,,,U399 10.4s,DAID,83208,, +361,USA,,MNV,b,Madisonville (TN),35.5625,-84.375,,0.025,,7018,294,143,,,,31,L973 U981 3917s,83213,,, +361,CHN,,LZ,b,Liling,27.645833,113.541667,,0.025,,8686,60,159,,,,,U1021 ,86516,,, +361,VUT,,BA,b,Bauerfield (sef),-17.6875,168.291667,,0.025,,15872,29,182,,,,,L1020 5s,86514,,, +361,XOE,,ZWH,b,North Sea,,,-,,,?,?,400,,,,,L401 U403 6.6,9900092,,, +362,XOE,,SUN,b,Saturn ND / Conocophillips UK Ltd Platform,53.729167,1.875,,0.025,,353,302,77,,,,,,83265,,, +362,I,,BZO,b,Bolzano (bz),46.479167,11.291667,,0.04,,719,149,78,,,,0,L1020 U1020 10.0s,ID+3 gap,83230,, +362,XOE,,SRN,b,South Arne Platform,56.0625,4.208333,,0.025,,462,343,78,,,,,U400 ,ID+2 gap,83264,, +362,CZE,,L,b,Nměť nad Oslavou (VY),49.229167,16.208333,,0.025,,760,111,81,,,,961,L1064 U988 4.5s,83248,,, +362,CZE,,X,b,Nměť nad Oslavou (VY),49.1875,16.125,,0.025,,757,112,81,,,,950,L1040 U940 4.8s,83271,,, +362,XOE,,BBV,b,Marathon / Brae bravo,58.8125,1.375,,0.025,,810,339,81,,,,,,83222,,, +362,HNG,,VS,b,Szentkirlyszabadja (Ves),47.020833,17.958333,,0.025,,1005,120,83,,,,,8.0s,ID+3 gap,83268,, +362,IRL,,OB,b,Cork (CO),51.770833,-8.458333,,0.025,,1018,274,83,,,,507,L1023 U1013 9.0s,83255,,, +362,S,,NN,b,Eskilstuna / Kjula,59.395833,16.708333,,0.025,,1033,34,83,,,,0,L402 U398 ,83254,,, +362,NOR,,BVK,b,Orsta-Volda / Hovden / Baatvik,62.229167,5.791667,,0.025,,1126,358,84,,,,2,L399 U398 10.0s,83229,,, +362,I,,ORF,b,Oristano / Fenosu (or),39.895833,8.625,,0.025,,1369,172,87,,,,,L1021 ,ID+4 gap,86519,, +362,GRC,,LSA,b,Larissa (the-lar),39.645833,22.458333,,0.025,,1853,132,92,,,,933,L286 U844 4.5s,Cont. ID,83249,, +362,NOR,,JAN,b,Jan Mayen (jm),70.979167,-8.541667,,0.05,,2228,346,92,,,,997,L388 U382 9s,83245,,, +362,ISL,,HE,b,Saudarkrokur / Hegranes,65.770833,-19.541667,,0.025,,2097,326,94,,,,,5.3s,86518,,, +362,NOR,,KV,b,Tromso / Langnes / Kvalsund,69.8125,19.041667,,0.025,,2073,14,94,,,,,,83247,,, +362,UKR,,BP,b,Sevastopol' (KR),44.6875,33.541667,,0.025,,2150,102,94,,,,1,L1030 U1032 ,IDx2 + 5 gap,83228,, +362,UKR,,RU,b,Sevastopol'/Belbek (KR),44.6875,33.625,,0.025,,2156,102,95,,,,995,L1020 U1010 10.7s,IDx2 + 7 gap,83259,, +362,LBY,,BN,b,Benghazi / Benina (bga),32.1875,20.208333,,0.025,,2481,148,98,,,,993,L1020 U1020 10.0s,ID+8 gap,83225,, +362,RUS,,W,b,Armavir / Tsentralny (KD),44.9375,41.125,,0.025,,2649,94,99,,,,,,83269,,, +362,CAN,,ZS,b,Coral Harbour (NU),64.145833,-83.291667,,3,,4963,322,102,,,,,,87145,,, +362,CAN,,YZS,b,Coral Harbour (NU),64.145833,-83.291667,,0.71,,4963,322,108,,,,,U396 10.0s,DAID,83272,, +362,IRN,,DNZ,b,Sari/Dasht-e Naz (mzd),36.6875,53.208333,,0.025,,4007,96,113,,,,,U1057 10.0s,ID+4 tone,83236,, +362,CAN,,SB,b,Sudbury (ON),46.645833,-80.958333,,0.4,,5962,302,121,,,,0,L405 U398 9.8s,DAID,83261,, +362,CAN,,C7,b,Geraldton (ON),49.770833,-86.958333,,0.25,,6072,308,124,,,,,U394 ,DBID,83231,, +362,CAN,,SC,b,Sherbrooke (QC),45.479167,-71.791667,,0.025,,5493,295,128,,,,995,L403 U360 10.67s,DAID,83262,, +362,ALS,,HBK,b,Hinchinbrook (AK),60.395833,-146.125,,1,,7267,345,130,,,,,L~1040 U1011 ,87143,,, +362,USA,,FM,b,Falmouth OTIS (MA),41.729167,-70.458333,,0.025,,5670,291,130,,,,994,L1036 U1016 7230s,83239,,, +362,USA,,FMH,b,Otis Falmouth (MA),41.729167,-70.458333,,0.025,,5670,291,130,,,,,L1027 U1025 ,87142,,, +362,CAN,,4K,b,St. Theresa Point (MB),53.854167,-94.875,,0.05,,6171,315,132,,,,,U394 10.5s,DAID,83218,, +362,USA,,JWE,b,Clera Osford (CT),41.395833,-73.125,,0.025,,5864,292,132,,,,991,L1050 U1032 8065s,83246,,, +362,USA,,OX,b,Clera Oxford (CT),41.395833,-73.125,,0.025,,5864,292,132,,,,,L1051 U1033 6062s,87144,,, +362,USA,,AK,b,Akron (OH),41.0625,-81.375,,0.025,,6401,297,137,,,,993,L1040 U1030 4372s,83220,,, +362,USA,,MT,b,Manitowac (WI),44.1875,-87.708333,,0.025,,6535,303,138,,,,992,L1051 U1032 5886s,83252,,, +362,USA,,EW,b,Katfi New Bern (NC),35.020833,-77.041667,,0.025,,6596,289,139,,,,991,L1048 U1032 6052s,83238,,, +362,USA,,LYL,b,Lima (OH),40.6875,-84.041667,,0.025,,6592,298,139,,,,491,L1017 U~1000 ,83250,,, +362,USA,,MZH,b,Moose Lake (MN),46.395833,-92.791667,,0.025,,6644,308,139,,,,990,L1038 U1010 38s,83253,,, +362,GRD,,GND,b,Point Salines (Grand Anse) (sgg),12.006944,-61.791667,,0.15,,7474,260,140,,,,,L1030 U1030 10467s,83241,,, +362,USA,,BCK,b,Black River Falls (WI),44.270833,-90.875,,0.025,,6707,305,140,,,,0,L1029 U1020 6699s,83223,,, +362,USA,,RZL,b,Rensselaer (IN),40.9375,-87.208333,,0.025,,6761,300,141,,,,993,L1025 U1022 8021s,83260,,, +362,USA,,CA,b,Murry Columbia (SC),33.979167,-81.208333,,0.025,,6946,291,142,,,,992,L1042 U1037 7720s,83232,,, +362,CAN,,6T,b,Foremost (AB),49.479167,-111.458333,,0.041,,7292,321,144,,,,,U398 10.35s,DAID,83219,, +362,USA,,BL,b,Belleville (IL),38.479167,-89.791667,,0.025,,7111,300,144,,,,,L1050 U1030 5.9s,87140,,, +362,USA,,EE,b,Merle Ames (IA),41.895833,-93.625,,0.025,,7053,305,144,,,,992,L1048 U1030 5.1s,83237,,, +362,USA,,GMH,b,Muhlenburg Greenville (KY),37.229167,-87.125,,0.025,,7053,297,144,,,,,U1035 5.64s,83240,,, +362,USA,,SUR,b,Fitzgerald (GA),31.604167,-83.291667,,0.025,,7272,290,146,,,,,U1022 5427s,83266,,, +362,USA,,AWM,b,West Memphis (AR),35.145833,-90.208333,,0.025,,7411,298,147,,,,988,L1043 U1020 ,83221,,, +362,USA,,EZB,b,Oakland (East Bay) (CA),37.770833,-122.208333,,0.4,,8852,321,147,,,,,,87141,,, +362,USA,,RPX,b,Round Up (MT),46.479167,-108.541667,,0.025,,7428,317,147,,,,1,L1028 U1026 8.4s,83258,,, +362,USA,,TC,b,Tuske Tuscaloosa (AL),33.145833,-87.708333,,0.025,,7423,295,147,,,,991,L1054 U1032 5.8s,83267,,, +362,USA,,CD,b,Dawes Chadron (NE),42.770833,-103.208333,,0.025,,7493,311,148,,,,990,L1041 U1020 5.8s,83233,,, +362,USA,,CYW,b,Clay Center (KS),39.395833,-97.125,,0.025,,7456,305,148,,,,,L982 U1017 7.0s,83235,,, +362,USA,,HPC,b,Hope (AR),33.729167,-93.625,,0.025,,7735,299,150,,,,998,L1018 U1014 6.7s,83244,,, +362,USA,,OWP,b,William Pogue Sand Springs (OK),36.1875,-96.125,,0.025,,7672,302,150,,,,,U1022 6.2s,83256,,, +362,USA,,BF,b,Nolla Seattle (WA),47.645833,-122.375,,0.025,,7905,326,152,,,,983,L1060 U1027 5.8s,83224,,, +362,USA,,BNH,b,Brenham (TX),30.229167,-96.375,,0.025,,8200,299,155,,,,,U1018 ,83226,,, +362,TWN,,HL,b,Houlung (ML),24.645833,120.791667,,0.05,,9378,56,158,,,,,8ss,83243,,, +362,MLA,,MC,b,Malacca,2.1875,102.208333,,0.05,,10211,84,161,,,,990,L1040 U1020 ,83251,,, +362,AUS,,SPG,b,Simpsons Gap (NT),-23.729167,133.708333,,0.025,,14585,75,178,,,,,U1010 9s,86520,,, +362,AUS,,BOL,b,Bolinda - Melbourne (VIC),-37.479167,144.791667,,0.025,,16415,80,184,,,,795,L400 U400 9s,83227,,, +362,AUS,,HB,b,Hobart (TAS),-42.8125,147.458333,,0.025,,16953,86,186,,,,,L1020 U1020 10s,83242,,, +362,NZL,,WK,b,Whakatane (BOP),-37.9375,176.875,,0.025,,18274,29,190,,,,,U1020 6s,83270,,, +362.5,G,,SND,b,Southend-on-Sea (EN-ESX),51.5625,0.708333,,0.025,,396,263,77,,,,506,L400 U400 5.1s,83273,,, +363,F,,PI,b,Poitiers / Biard (37),46.6875,0.375,,0.05,,744,218,77,,,,,L396 U404 10.0s,83281,,, +363,S,,OEM,b,Kristianstad / Everod,55.979167,14.125,,0.025,,662,46,80,,,,998,L410 U406 5.5s,83280,,, +363,EST,,MA,b,Kuressaare (Saa),58.229167,22.541667,,0.025,,1225,50,85,,,,,U937 10.0s,83279,,, +363,TUR,,CIG,b,Izmir / Cigli / Kaklic (ege-izm),38.520833,27.041667,,0.025,,2196,125,95,,,,0,L1033 U1028 8.3s,ID+4 gap,83275,, +363,LBY,,ZEL,b,Zelten (wah),28.9375,19.791667,,0.025,,2804,152,101,,,,,U1070 ,Cont. ID,83286,, +363,SYR,,HAS,b,Al-Hasakah (has),36.479167,40.708333,,0.025,,3191,109,105,,,,997,L402 U395 ,ID+7 gap,83277,, +363,IRN,,SHD,b,Maragheh/Sahand (eaz),37.354167,46.125,,0.025,,3482,102,108,,,,,U1023 ,ID+3 gap,83284,, +363,CAN,,1F,b,Manta Bathhurst (NB),47.645833,-65.708333,,0.13,,4975,294,116,,,,0,L407 U408 8358s,DAID,83274,, +363,USA,,RNB,b,Rainbow Millville (NJ),39.4375,-75.125,,0.05,,6135,291,131,,,,990,L1045 U1020 8.0s,83283,,, +363,CAN,,D3,b,Ponoka (AB),52.6875,-113.625,,0.025,,7095,324,144,,,,,U395 ,83276,,, +363,GTM,,POP,b,Poptun (pet),16.3125,-89.458333,,0.5,,8975,285,147,,,,26,L991 U1046 9.7s,83282,,, +363,CAN,,T6,b,Pemberton (BC),50.3125,-122.791667,,0.025,,7665,328,150,,,,,U385 10.4s,DAID,83285,, +363,USA,,IOM,b,Mc Call (ID),44.8125,-116.125,,0.025,,7920,321,152,,,,991,L1048 U1032 8.0s,83278,,, +363.5,F,,LXI,b,Luxeuil / St Sauveur (70),47.8125,6.375,,0.025,,478,180,78,,,,478,L403 U401 15.4s,ID+8 tone,83289,, +363.5,G,,CT,b,Coventry (EN-WMD),52.395833,-1.375,,0.025,,531,277,78,,,,505,L402 U395 9.5s,ID+7 gap,83288,, +363.5,XOE,,ETP,b,ETAP Platform,57.3125,1.625,,0.025,,655,334,80,,,,-363.5,,86523,,, +363.5,I,,BRD,b,Brindisi (br),40.604167,18.041667,,0.025,,1556,141,89,,,,503,L1016 U1034 9.0s,ID+4 gap,83287,, +364,F,,RSO,b,Paris / Charles de Gaulle (95),49.020833,2.375,,0.025,,446,221,77,,,,952,L511 U294 10.5s,ID+7 gap,83300,, +364,I,,MAL,b,Gallarate / Malpensa (va),45.5625,8.791667,,0.025,,749,166,80,,,,967,L1012 U1013 ,83295,,, +364,IRL,,KNK,b,Connaught (MO),53.895833,-8.958333,,0.025,,1045,287,83,,,,1,L1012 U1016 8.1s,ID+4 gap,83294,, +364,S,,NW,b,Stockholm / Skavsta / Nykping,58.770833,16.791667,,0.025,,986,37,83,,,,991,L374 U424 4.34s,83297,,, +364,F,,PU,b,Pau / Pyrenees (64),43.3125,-0.291667,,0.025,,1098,210,84,,,,,U6 20.0s,ID+17 tone,83299,, +364,S,,VNA,b,Vanja,63.8125,19.875,,0.025,,1518,26,88,,,,995,L413 U402 ,83302,,, +364,FIN,,B,b,Kittil / Pahtajnk,67.6875,24.875,,0.025,,1997,23,93,,,,,U408 ,83292,,, +364,ISL,,KN,b,Kristnes,65.604167,-18.041667,,0.025,,2030,327,93,,,,,U1033 ,86525,,, +364,ISL,,OK,b,Keflavk (sn),64.0625,-22.625,,0.025,,2131,320,94,,,,,U1120 ,83298,,, +364,RUS,,V,b,Harkiv / Sokolniki,50.020833,36.291667,,0.025,,2086,84,94,,,,,,86527,,, +364,CAN,,2B,b,Springdale (NL),49.479167,-56.208333,,0.04,,4273,292,114,,,,0,L407 10557s,DAID,83290,, +364,CAN,,G,b,Halifax (NS),44.8125,-63.625,,0.025,,5023,290,123,,,,,,87147,,, +364,CAN,,ZHZ,b,Split Crow Halifax (NS),44.8125,-63.625,,0.025,,5023,290,123,,,,,U383 10.3s,DAID,83303,, +364,USA,,TZ,b,Cogan Winchester (VA),39.104167,-78.041667,,0.025,,6344,293,136,,,,,U1028 3.7s,87148,,, +364,USA,,MHA,b,Manitowish Manitowish Waters (WI),46.104167,-89.875,,0.025,,6508,306,138,,,,998,L1028 U1036 5761s,83296,,, +364,CAN,,4D,b,Helmet (BC),59.4375,-120.791667,,0.025,,6740,332,140,,,,,U411 7.3s,DAID,83291,, +364,USA,,FQ,b,Fairmont (MN),43.645833,-94.375,,0.025,,6951,307,142,,,,,,87146,,, +364,CHN,,CZ,b,Tonglu (ZJ),29.8125,119.708333,,0.025,,8844,54,159,,,,,L1049 U1042 21s,2xID,83293,, +364,AUS,,CS,b,Cairns (QLD),-16.854167,145.708333,,0.025,,14723,58,179,,,,,L400 U400 8s,86524,,, +364,FJI,,MI,b,Momi (WE-NN),-17.895833,177.291667,,0.025,,16128,15,183,,,,,L1041 U1025 8s,86526,,, +365,D,,LJ,b,Kln / Bonn (nrw),50.9375,7.041667,,0.025,,138,161,70,,,,2,L1019 U1022 7.7s,83325,,, +365,CZE,,L,b,Karlovy Vary / Vrata (KA),50.1875,12.958333,,0.025,,504,113,78,,,,692,L404 U400 10.0s,ID+9 gap,83324,, +365,G,,KIM,b,Kirmington (EN-LIN),53.5625,-0.375,,0.025,,483,292,78,,,,998,L401 U399 13.4s,83322,,, +365,F,,RB,b,Ajaccio / Campo del Oro (20A),41.9375,8.791667,,0.025,,1145,170,84,,,,,,83339,,, +365,E,,VGD,b,Vitigudino (CAL-SA),41.020833,-6.458333,,0.06,,1573,223,85,,,,14,L1020 U1060 ,ID+4 gap,83349,, +365,S,,WS,b,Sderhamn,61.3125,16.958333,,0.025,,1206,28,85,,,,5,L394 U405 ,83353,,, +365,ROU,,SAT,b,Satu Mare (SM),47.729167,22.875,,0.025,,1272,106,86,,,,2,L1031 U1038 ,ID+4 gap,83340,, +365,FIN,,VS,b,Tampere / Pirkkala / Vesilahti,61.395833,23.458333,,0.025,,1457,38,88,,,,5,L407 U405 ,83351,,, +365,UKR,,I,b,Lymanske,46.6875,30.041667,,0.025,,1804,100,91,,,,,L400 U400 ,86530,,, +365,ISL,,ES,b,Egilsstair (au),65.229167,-14.458333,,0.025,,1875,329,92,,,,998,L1027 U1024 5.5s,83312,,, +365,NOR,,ODD,b,Harstad / Narvik / Evenes / Odden,68.395833,16.125,,0.025,,1883,12,92,,,,997,L392 U365 7.36s,83333,,, +365,LBY,,G,b,Tripoli / Golf (tbl),32.645833,13.208333,,0.025,,2233,163,95,,,,2,L1020 U1023 10.0s,ID+9 gap,83316,, +365,CNR,,VR,b,Las Palmas (LPM-GC),27.854167,-15.458333,,0.2,,3250,222,96,,,,0,L941 U1049 ,ID+6 gap,83350,, +365,RUS,,AD,b,Sochi (KD),43.395833,39.958333,,0.025,,2660,98,100,,,,993,L385 U386 ,ID+6 gap,83305,, +365,SYR,,MER,b,Aleppo (alp),36.1875,37.291667,,0.025,,2997,114,103,,,,2,L1020 U1024 ,ID+2 gap,83328,, +365,RUS,,HC,b,Makhachkala / Uytash (DA),42.854167,47.625,,0.025,,3214,92,105,,,,,L1048 U1047 ,83318,,, +365,CAN,,YGZ,b,Grise Fiord (NU),76.4375,-82.875,,0.1,,4419,338,111,,,,,U414 ,DAID,83355,, +365,CAN,,MA,b,Mayo (YT),63.645833,-135.875,,0.5,,6734,342,127,,,,,U405 10228s,DAID,83327,, +365,USA,,FIT,b,Fitchburg (MA),42.5625,-71.791667,,0.025,,5696,292,130,,,,999,L1018 U1014 6014s,83313,,, +365,ALS,,ANV,b,Anvik (AK),62.645833,-160.208333,,0.4,,7201,353,133,,,,999,L1022 U1020 8.5s,83308,,, +365,USA,,AA,b,Kenie Fargo (MN),47.020833,-96.791667,,0.1,,6805,311,135,,,,991,L1045 U1025 5.98s,83304,,, +365,USA,,TV,b,Gwenn Traverse City (MI),44.729167,-85.458333,,0.03,,6364,302,136,,,,988,L1049 U1024 7699s,83347,,, +365,USA,,JN,b,Balll Muncie (IN),40.1875,-85.291667,,0.025,,6706,298,140,,,,1,L397 U403 8600s,83321,,, +365,ALS,,SHH,b,Shishmaref (AK),66.270833,-166.041667,,0.025,,6836,357,141,,,,,,83341,,, +365,USA,,MRJ,b,Mineral Point (WI),42.895833,-90.208333,,0.025,,6779,304,141,,,,3,L1020 U1027 7771s,83331,,, +365,B,,CVL,b,Caravelas (BA),-17.645833,-39.208333,,1,,8918,224,143,,,,998,L1024 U1023 7.0s,83310,,, +365,USA,,DYB,b,Dorchester Co Summerville (SC),33.0625,-80.291667,,0.025,,6961,290,143,,,,971,L1026 U1007 7306s,83311,,, +365,USA,,SYZ,b,Shelbyville (IL),39.395833,-88.875,,0.025,,6983,300,143,,,,981,L1052 U1017 6.4s,83344,,, +365,AFS,,KM,b,Kimberley (NC),-28.8125,24.791667,,1,,9175,164,144,,,,993,L1107 U1094 10.9s,83323,,, +365,USA,,FKV,b,Flowery Branch Gainesville (GA),34.1875,-83.875,,0.025,,7098,293,144,,,,20,L983 U981 6471s,83314,,, +365,USA,,AIO,b,Atlantic (IA),41.395833,-95.041667,,0.025,,7173,305,145,,,,,U1018 ,83307,,, +365,USA,,PBC,b,Maury Co Columbia / Mount Pleasant (TN),35.604167,-87.125,,0.025,,7185,296,145,,,,0,L1003 U1005 6717s,83336,,, +365,USA,,MNF,b,Mountain View (MO),36.979167,-91.708333,,0.025,,7348,300,146,,,,484,L55 U1022 7.13s,83330,,, +365,B,,LON,b,Londrina (PR),-23.3125,-51.125,,1,,10069,231,147,,,,,L1052 ,83326,,, +365,CHN,,HD,b,Tumurtai,41.854167,113.125,,0.025,,7420,51,147,,,,,L10 ,DA2ID,86529,, +365,CHN,,MF,b,Yinchuan/Hedong (NX),38.104167,106.375,,0.025,,7362,58,147,,,,,,83329,,, +365,USA,,TO,b,Blood Troy (AL),31.8125,-86.125,,0.025,,7435,293,147,,,,999,L1042 U1037 6268s,83345,,, +365,USA,,PTS,b,Pittsburg (KS),37.4375,-94.708333,,0.025,,7485,302,148,,,,,U1047 ,83338,,, +365,B,,PNB,b,Parnaba (PI),-2.895833,-41.708333,,0.025,,7596,233,149,,,,998,L1020 U1016 ,83337,,, +365,USA,,ADT,b,Atwood (KS),39.854167,-101.041667,,0.025,,7632,308,149,,,,998,L1018 U1021 3.75s,83306,,, +365,USA,,JA,b,Allen Jackson (MS),32.395833,-90.125,,0.025,,7635,296,149,,,,481,L1038 U1015 6550s,83320,,, +365,USA,,DPY,b,Deer Park (WA),47.979167,-117.458333,,0.025,,7681,323,150,,,,,L1035 U1035 7.5s,86528,,, +365,USA,,SFF,b,Felts Spokane (WA),47.6875,-117.291667,,0.025,,7701,323,150,,,,,L1040 U1030 ,87150,,, +365,USA,,HQG,b,Hugoton (KS),37.145833,-101.375,,0.025,,7885,307,152,,,,972,L1070 U1016 7.9s,83319,,, +365,CHN,,KY,b,Wangbingou,41.6875,123.708333,,0.025,,7969,44,153,,,,,L1300 U1081 10s,86532,,, +365,USA,,FT,b,Mufin Fort Worth (TX),32.895833,-97.375,,0.025,,8028,301,153,,,,998,L1032 U1020 7.5s,83315,,, +365,MEX,,CZM,b,San Miguel de Cozumel (qui),20.520833,-86.941667,,0.025,,8444,285,157,,,,,,87149,,, +365,MYA,,PA,b,Hpa-An,16.892778,97.674444,,0.025,,8618,78,158,,,,,,22100019,,, +365,B,,TPQ,b,Tapurquara (AM),-0.4375,-65.041667,,0.025,,8794,255,159,,,,,U1028 ,83346,,, +365,B,,SMA,b,Santa Maria (RS),-29.6875,-53.708333,,0.1,,10806,229,160,,,,,,83342,,, +365,THA,,SN,b,Saka Nakhon (snk),17.1875,104.125,,0.025,,9020,73,160,,,,,L1023 ,83343,,, +365,EQA,,PAL,b,Palma (gua),-2.020833,-79.791667,,0.025,,9926,266,163,,,,1,L1018 U1015 7.35s,83335,,, +365,INS,,NX,b,Jambi (JA-jam),-1.645833,103.625,,0.025,,10644,85,165,,,,993,L1013 U1000 ,83332,,, +365,INS,,CA,b,Cirebon (JB-cir),-6.6875,108.541667,,0.025,,11421,85,168,,,,,U1050 ,83309,,, +365,INS,,OL,b,Balikpapan (KI-bal),-1.270833,116.875,,0.025,,11500,74,168,,,,996,L1025 U1017 8.40s,83334,,, +365,AUS,,WLM,b,Williamtown (NSW),-32.8125,151.791667,,0.025,,16510,66,184,,,,,L1020 U1020 30s,TWEB,86534,, +366,S,,KM,b,Kalmar,56.729167,16.291667,,0.025,,819,47,81,,,,0,L407 U400 4.5s,83365,,, +366,S,,SF,b,Falkping,58.0625,13.291667,,0.025,,793,31,81,,,,988,L415 U386 ,83369,,, +366,F,,ADC,b,Aerodrome du Castellet (83),43.270833,5.791667,,0.025,,984,183,83,,,,,U2 ,DAID,83358,, +366,S,,UP,b,Uppsala,59.979167,17.791667,,0.025,,1122,34,84,,,,,U400 ,83374,,, +366,NOR,,UTH,b,Orland / Uthaug,63.729167,9.541667,,0.025,,1305,7,86,,,,997,L404 U397 ,83375,,, +366,EST,,U,b,Tartu (Tar),58.3125,26.708333,,0.025,,1453,54,88,,,,,U1015 ,83373,,, +366,E,,COR,b,Crdoba (AND-CO),37.854167,-4.875,,0.02,,1812,213,92,,,,2,L1020 U1028 10.32s,ID+6 gap,83360,, +366,ISL,,HK,b,Holmavik,65.645833,-21.458333,,0.025,,2164,325,95,,,,,U1016 6.5s,83363,,, +366,TUR,,SB,b,Ankara / Esenboga (ica-ank),40.145833,33.041667,,0.025,,2424,113,97,,,,,L1025 ,Cont. ID,83368,, +366,IRN,,SNJ,b,Sanandaj (kdn),35.270833,47.041667,,0.025,,3698,104,110,,,,,L1037 U1030 ,ID+6.5 gap,83371,, +366,CAN,,3R,b,Postville (NL),54.895833,-59.791667,,0.025,,4224,301,115,,,,,U420 ,83357,,, +366,CAN,,YMW,b,Maniwaki (QC),46.1875,-75.958333,,0.5,,5699,298,117,,,,0,L400 U402 10.3s,DAID,83377,, +366,CAN,,M,b,Lewisville / Moncton (NB),46.104167,-64.791667,,0.05,,5015,292,120,,,,,,87153,,, +366,CAN,,ZMN,b,Lewisville (Moncton) (NB),46.104167,-64.791667,,0.025,,5015,292,123,,,,,L401 U395 ,DAID,83378,, +366,USA,,AU,b,Dunns Augusta (ME),44.395833,-69.875,,0.025,,5448,293,127,,,,990,L1030 U1000 8600s,83359,,, +366,USA,,IS,b,Lokks Islip (NY),40.729167,-73.208333,,0.025,,5917,291,132,,,,,L1047 U1019 5269s,83364,,, +366,USA,,CYO,b,Circleville (OH),39.520833,-82.958333,,0.025,,6617,296,139,,,,,U1000 ,87152,,, +366,USA,,EOK,b,Keokuk (IA),40.479167,-91.458333,,0.025,,7045,303,143,,,,998,L1022 U1017 5.5s,83361,,, +366,CAN,,5Z,b,Oyen (AB),51.354167,-110.458333,,0.025,,7083,322,144,,,,,,87151,,, +366,USA,,EZM,b,Eastman (GA),32.145833,-83.125,,0.025,,7217,291,145,,,,2,L1027 U1026 5.4s,83362,,, +366,IND,,AZ,b,Aizawl (MZ),23.742778,92.802778,,0.025,,7708,78,150,,,,,,32200042,,, +366,USA,,PLV,b,Aurora (OR),45.270833,-122.791667,,0.025,,8150,325,154,,,,,,87154,,, +366,J,,TN,b,Shin-Tachikawa (kan-tok),35.729167,139.375,,0.025,,9234,37,160,,,,,L1020 U1000 20s,DA2ID,86535,, +366,FSM,,PNI,b,Pohnpei (pnp),6.979167,158.208333,,0.025,,12920,32,173,,,,999,L1016 U1012 8.5s,83367,,, +366,NZL,,SF,b,Springfield,-35.895833,174.375,,0.05,,17977,32,186,,,,988,L1020 U1041 8.5s,83370,,, +366,NZL,,TU,b,Timaru (CAN),-44.3125,171.208333,,0.025,,18598,58,191,,,,,6.94s,83372,,, +366.5,XOE,,NOL,b,Jackup Rig Noble Lynda Bossler Platform,52.8125,4.291667,,0.025,,163,299,75,,,,500,L1020 U1020 ,83380,,, +366.5,G,,CAR,b,Ronaldsway / Carnane (IOM),54.145833,-4.458333,,0.025,,759,292,81,,,,503,L403 U405 8.1s,83379,,, +367,F,,VAT,b,Chalon / Vatry (51),48.8125,4.041667,,0.025,,403,205,77,,,,,U5 ,ID+15 tone,83397,, +367,F,,CF,b,Clermont-Ferrand / Auvergne (63),45.8125,3.375,,0.025,,734,199,80,,,,,L400 U406 10.0s,ID+7 gap,83383,, +367,HRV,,ZAG,b,Zagreb (zg),45.895833,16.291667,,0.05,,997,130,80,,,,999,L1020 U1018 9.4s,ID+6 tone,83398,, +367,XOE,,OQ,b,Total / Elf Frigg QP Platform,59.520833,2.041667,,0.025,,868,343,82,,,,,,83391,,, +367,E,,SBD,b,Sabadell (CAT-B),41.520833,2.125,,0.025,,1221,197,85,,,,990,L1034 U1028 15.0s,ID+11 gap,83395,, +367,POR,,PG,b,Porto (prt),41.0625,-8.625,,0.025,,1676,229,90,,,,990,L986 U949 9.83s,ID+6 gap,83392,, +367,GRC,,AML,b,Andravida / Amalias (wgr-ili),37.770833,21.375,,0.025,,1974,138,93,,,,7,L1020 U1035 8.0s,ID+5 gap,83382,, +367,CAN,,6F,b,Port Hope / Simpson (NL),52.520833,-56.291667,,0.25,,4124,296,104,,,,,U394 10.21s,DAID,83381,, +367,GRL,,JV,b,Ilulissat (Jakobshavn) (Kitaa) (qaa-ili),69.229167,-51.041667,,0.025,,3473,325,108,,,,,L402 U403 ~9.9s,83387,,, +367,RUS,,K,b,Chelyabinsk / Balandino (CB),55.3125,61.541667,,0.025,,3550,62,108,,,,,,83388,,, +367,CAN,,R5,b,Pukatawagan (MB),55.729167,-101.291667,,0.025,,6320,320,136,,,,,U1023 10.06s,DAID,86537,, +367,USA,,FVX,b,Farmville (VA),37.354167,-78.458333,,0.025,,6505,292,138,,,,,U1018 5.8s,83384,,, +367,USA,,GR,b,Doone Fayetteville (NC),34.895833,-78.958333,,0.025,,6729,290,140,,,,998,L1039 U1039 5891s,83385,,, +367,USA,,PRI,b,Perrine Farmington (MO),37.770833,-90.458333,,0.025,,7209,300,145,,,,994,L974 U1025 5572s,83393,,, +367,USA,,RD,b,Lassn Redding (CA),40.395833,-122.291667,,0.025,,8601,322,158,,,,5,L1031 U2014 ,83394,,, +367,USA,,MO,b,Wowar Modesto (CA),37.5625,-120.875,,0.025,,8814,320,159,,,,980,L1060 U1014 6.0s,83389,,, +367.5,G,,OX,b,Oxford / Kidlington (EN-OXF),51.8125,-1.291667,,0.025,,528,269,78,,,,502,L397 U401 8.1s,83399,,, +367.5,I,,PNZ,b,Ponza (lt),40.895833,12.958333,,0.04,,1343,156,84,,,,500,L1023 10.0s,ID+5 gap,83400,, +368,D,,BYC,b,Bckeburg (nds),52.270833,9.125,,0.025,,186,83,75,,,,0,L1046 U1049 ,83405,,, +368,DNK,,RK,b,Kbenhavn/Roskilde (kbh),55.604167,11.958333,,0.025,,532,41,78,,,,1,L404 U402 9.0s,83426,,, +368,CZE,,BNO,b,Brno / Turany (JM),49.145833,16.791667,,0.025,,802,110,81,,,,0,L399 U400 10.1s,83404,,, +368,G,,UW,b,Edinburgh (SC-WLN),55.895833,-3.541667,,0.025,,774,307,81,,,,20,L374 U422 8.40s,83437,,, +368,NOR,,FN,b,Finndal / Skien,59.145833,9.541667,,0.025,,806,13,81,,,,995,L388 U384 7.3s,83409,,, +368,IRL,,WTD,b,Waterford (WD),52.1875,-7.041667,,0.025,,917,276,82,,,,2,L400 U403 5.3s,ID+2 gap,83441,, +368,F,,TLB,b,Toulouse / Blagnac (31),43.9375,1.458333,,0.025,,980,204,83,,,,,U4 ,ID+15 tone,83435,, +368,S,,OY,b,Sveg,62.0625,14.291667,,0.025,,1203,20,85,,,,2,L395 U405 ,83422,,, +368,NOR,,GR,b,Mo I Rana / Rossvold / Gruben,66.3125,14.208333,,0.025,,1637,12,89,,,,5,L379 U388 ,83412,,, +368,FIN,,SK,b,Sodankyl / Sattanen,67.479167,26.541667,,0.025,,2026,25,93,,,,2,L408 U408 8.5s,83431,,, +368,RUS,,G,b,Kursk (KU),51.770833,36.208333,,0.025,,2029,79,93,,,,,,83410,,, +368,RUS,,W,b,Kursk (KU),51.729167,36.291667,,0.025,,2035,79,93,,,,,,83440,,, +368,TUR,,EDR,b,Edremit-Korfez LTFD (mam-bal),39.550722,27.005167,,0.025,,2107,123,94,,,,,L1013 ,Cont. ID,83407,, +368,KWT,,NR,b,Madinat al-Kuwayt (kuw),29.3125,47.958333,,0.025,,4234,110,115,,,,5,L396 U406 ,ID+8 gap,83419,, +368,CAN,,YZH,b,Slave Lake (AB),55.3125,-114.791667,,0.5,,6906,327,129,,,,,,87157,,, +368,USA,,IMR,b,Marshfield (MA),42.104167,-70.708333,,0.025,,5659,291,130,,,,,U1022 4998s,83415,,, +368,CAN,,L,b,Lima / Toronto (ON),43.604167,-79.541667,,0.025,,6099,298,134,,,,,U370 ,DAID,87155,, +368,CAN,,SX,b,Skookum (Cranbrook) (BC),49.9375,-115.791667,,0.5,,7432,324,134,,,,13,L385 U405 10.5s,DAID,83433,, +368,CAN,,ZYZ,b,Toronto (The Queensway) (ON),43.604167,-79.541667,,0.025,,6099,298,134,,,,998,L372 U401 10.5s,DAID,83445,, +368,CAN,,4H,b,Points North Landing (SK),58.270833,-104.041667,,0.025,,6233,324,135,,,,,U1020 ,83401,,, +368,CAN,,VX,b,Dafoe (SK),51.854167,-104.541667,,0.08,,6781,319,136,,,,,L389 U389 10.5s,DAID,83439,, +368,USA,,TEC,b,Tech Blacksburg (VA),37.1875,-80.375,,0.025,,6639,293,139,,,,997,L1027 U1027 4811s,83434,,, +368,CAN,,YJF,b,Fort Liard (NT),60.229167,-123.458333,,0.025,,6748,334,140,,,,202,L~400 U405 ,DAID,83442,, +368,USA,,OH,b,Leama Arlington Heights (Chicago) (IL),42.0625,-87.958333,,0.025,,6716,302,140,,,,990,L1040 U1020 ,83421,,, +368,USA,,VIQ,b,Neillsville (WI),44.5625,-90.541667,,0.025,,6666,305,140,,,,,U1020 8.15s,83438,,, +368,ALS,,DRF,b,Drift River Kenai (AK),60.604167,-152.125,,0.09,,7337,349,141,,,,,U1010 ,83406,,, +368,USA,,PNM,b,Princeton (MN),45.5625,-93.625,,0.025,,6755,308,141,,,,7,L1046 U1042 7.2s,TWEB,83424,, +368,USA,,RRJ,b,Oranj French Lick (IN),38.520833,-86.541667,,0.025,,6914,298,142,,,,,U~1000 ,83428,,, +368,USA,,IFA,b,Iowa Falls (IA),42.479167,-93.291667,,0.025,,6986,305,143,,,,,L1020 U1017 7.0s,83414,,, +368,MEX,,GYM,b,Guaymas (Sonora) (son),27.9375,-110.958333,,1,,9239,308,144,,,,17,L1030 U1023 8.5s,DA3ID,83413,, +368,USA,,SA,b,Mavis Savannah (GA),32.145833,-81.291667,,0.025,,7100,290,144,,,,988,L1048 U1029 5903s,83429,,, +368,USA,,SOY,b,Sioux Center (IA),43.145833,-96.208333,,0.025,,7092,307,144,,,,990,L1050 U1024 8.1s,83432,,, +368,USA,,EU,b,Murey Murray (KY),36.729167,-88.291667,,0.025,,7164,298,145,,,,993,L1053 U1035 ,83408,,, +368,USA,,SIR,b,Sinclair (WY),41.8125,-107.125,,0.1,,7774,313,145,,,,989,L1046 U1024 8.0s,83430,,, +368,USA,,BEQ,b,Bessemer (AL),33.3125,-86.958333,,0.025,,7363,294,147,,,,,U1015 ,83403,,, +368,USA,,IX,b,Dustt Olathe (KS),38.729167,-94.875,,0.025,,7386,303,147,,,,982,L1067 U1031 7.3s,83416,,, +368,USA,,PHG,b,Phillipsburg (KS),39.6875,-99.291667,,0.025,,7551,307,148,,,,999,L1026 U1018 6.6s,83423,,, +368,USA,,TP,b,Cosme Tampa (FL),28.104167,-82.541667,,0.025,,7513,287,148,,,,988,L1045 U1025 6.32s,83436,,, +368,USA,,NVK,b,Allentown Milton (FL),30.770833,-87.041667,,0.025,,7579,292,149,,,,,,83420,,, +368,CAN,,ZP,b,Sandspit (BC),53.1875,-131.791667,,0.025,,7678,335,150,,,,12,L409 U398 10.0s,DAID,83443,, +368,CAN,,V,b,Vancouver (BC),49.1875,-123.208333,,0.025,,7788,328,151,,,,,,87156,,, +368,USA,,ROQ,b,Ruston (LA),32.604167,-92.625,,0.025,,7770,298,151,,,,991,L1044 U1031 7825s,83427,,, +368,CAN,,ZVR,b,Sea Island (Vancouver) (BC),49.1875,-123.208333,,0.02,,7788,328,152,,,,,U396 10384s,DAID,83444,, +368,USA,,PPA,b,Pampa (TX),35.604167,-100.958333,,0.025,,7997,305,153,,,,996,L1055 U1048 7.5s,83425,,, +368,USA,,GDE,b,Goodhue Beaumont (TX),30.0625,-94.208333,,0.025,,8084,297,154,,,,,L1030 ,83411,,, +368,USA,,LAM,b,Los Alamos (NM),35.895833,-106.291667,,0.025,,8261,309,156,,,,,U1035 ,83418,,, +368,USA,,AN,b,Alamo San Antonio (TX),29.604167,-98.541667,,0.025,,8384,300,157,,,,985,L1052 U1024 5.8s,83402,,, +368,J,,CU,b,Otsu (kns-shi),35.0625,135.875,,0.025,,9152,40,160,,,,,L1010 U1010 7.5s,DAID,86539,, +368,PNG,,KAV,b,Kavieng (nir),-2.604167,150.791667,,0.025,,13601,44,175,,,,,,86540,,, +368,PNG,,PY,b,Port Moresby (ncd),-9.479167,147.208333,,0.025,,14102,51,177,,,,,L1000 7s,86541,,, +368.5,LUX,,ELU,b,Luxembourg-Berg (lux),49.6875,6.375,,0.015,,269,181,78,,,,500,L1020 U1020 9.7s,ID+7 gap,83446,, +368.5,G,,WHI,b,Whitegate for Hawarden (EN-CHE),53.1875,-2.625,,0.025,,621,285,79,,,,500,L400 U405 5.5s,83447,,, +369,G,,RCH,b,Rochester (EN-KNT),51.354167,0.541667,,0.025,,413,261,77,,,,9,L375 U404 5.0s,83461,,, +369,HOL,,PS,b,Rotterdam Locator (zho),51.854167,4.208333,,0.015,,153,260,77,,,,987,L400 U402 8.1s,83460,,, +369,XOE,,RFB,b,British Gas / Rough B Platform,53.8125,0.458333,,0.025,,441,298,77,,,,9,L395 U412 10.0s,83462,,, +369,DNK,,KA,b,Karup (mjy),56.3125,9.208333,,0.025,,501,20,78,,,,983,L400 U389 4.5s,83454,,, +369,F,,GL,b,Nantes / Atlantique (44),47.0625,-1.708333,,0.05,,810,229,78,,,,,L403 U405 10.0s,ID+7 gap,83452,, +369,D,,MNE,b,Mnchen (bay),48.355278,11.676111,,0.025,,561,136,79,,,,2,L1019 U1022 4.0s,83455,,, +369,S,,NL,b,Gteborg/Landvetter (vg),57.729167,12.375,,0.025,,731,29,80,,,,992,L417 U416 4.4s,83456,,, +369,F,,CM,b,Avignon / Caumont (84),43.895833,4.875,,0.025,,920,188,82,,,,,U8 ,83449,,, +369,HRV,,VRS,b,Vrsar (pa),45.229167,13.625,,0.025,,930,143,82,,,,2,L1031 U1033 8.2s,ID+5 gap,83465,, +369,F,,BP,b,Bastia / Poretta (20B),42.4375,9.541667,,0.025,,1101,166,84,,,,,,ID+16s tone,83448,, +369,NOR,,STG,b,Stegen,61.854167,6.375,,0.025,,1084,360,84,,,,197,L402 U407 10.0s,83463,,, +369,S,,OO,b,rnsksldsvik,63.354167,19.125,,0.025,,1455,26,88,,,,3,L400 U406 ,83457,,, +369,S,,OS,b,Skellefte,64.604167,21.208333,,0.025,,1627,26,89,,,,,,83458,,, +369,LBY,,ZUE,b,Zuetina (wah),30.854167,20.125,,0.025,,2615,149,99,,,,,L1020 U980 ,ID+2 gap,83467,, +369,ATG,,ZDX,b,Coolidge Saint Johns (atg),17.145833,-61.791667,,1.2,,7030,264,127,,,,996,L1023 U1015 10103s,83466,,, +369,USA,,TT,b,Trenn Trenton (NJ),40.229167,-74.875,,0.025,,6060,292,134,,,,995,L1038 U1026 5983s,83464,,, +369,ALS,,GAM,b,Gambell (AK),63.770833,-171.708333,,0.025,,7129,359,144,,,,,,83451,,, +369,USA,,HDI,b,Hardwick Cleveland (TN),35.145833,-84.875,,0.025,,7083,294,144,,,,998,L1024 U1020 5307s,83453,,, +369,USA,,CXU,b,Camilla (GA),31.229167,-84.208333,,0.025,,7361,291,147,,,,9,L1099 U927 5631s,83450,,, +369,COM,,AJ,b,Ouani,-12.131944,44.428333,,0.025,,8018,141,153,,,,,,10000001,,, +369,CHN,,ZF,b,Hekou,31.5625,114.458333,,0.025,,8391,57,157,,,,,L1025 U1008 ,86546,,, +369,CHN,,PK,b,Nanxiang (SH),31.270833,121.291667,,0.025,,8797,52,159,,,,,14s,2xID,83459,, +369.5,J,,NI,b,Sado (chu-nii),38.0625,138.375,,0.025,,8963,36,160,,,,-369.5,L1000 U1019 5s,DAID,83468,, +370,D,,PSA,b,Spessart (bay),49.854167,9.375,,0.025,,326,139,76,,,,999,L1017 U1021 7.1s,83496,,, +370,G,,KS,b,Kinloss (SC-MOR),57.645833,-3.625,,0.1,,888,318,76,,,,998,L400 U399 10.0s,83484,,, +370,F,,CGZ,b,Paris / Charles de Gaulle (77),49.020833,2.708333,,0.025,,432,219,77,,,,5,L395 U418 13.6s,ID+10 gap,83472,, +370,F,,BSV,b,Besancon / La Veze (25),47.270833,6.208333,,0.025,,538,182,78,,,,,L3 U2 19.8s,DAID,83471,, +370,G,,CUL,b,Culdrose RNAS (EN),50.0625,-5.291667,,0.025,,847,259,81,,,,,L399 U400 10.0s,ID+6 gap,86547,, +370,S,,DC,b,Oskarshamn,57.395833,16.541667,,0.025,,875,44,82,,,,0,L400 U400 ,83473,,, +370,BIH,,GAC,b,Gacko (srp),43.145833,18.541667,,0.04,,1346,133,84,,,,995,L1008 U1016 9.9s,83475,,, +370,S,,OHT,b,Stockholm / Arlanda,59.5625,17.875,,0.025,,1092,36,84,,,,996,L407 U401 ,83492,,, +370,S,,L,b,Lycksele,64.520833,18.708333,,0.025,,1550,22,88,,,,,U400 ,83485,,, +370,ALG,,SMR,b,Algiers / Houari Boumedienne / Semmar (16),36.6875,3.125,,0.025,,1734,190,90,,,,998,L1025 U1025 ,ID+4 gap,83498,, +370,FIN,,JR,b,Varkaus / Joroinen,62.145833,27.875,,0.025,,1695,41,90,,,,2,L400 U400 8.5s,83482,,, +370,ROU,,OTL,b,Bucuresti / Otopeni (BU),44.5625,26.041667,,0.025,,1669,112,90,,,,8,L1052 U1057 ,Cont. ID,83493,, +370,E,,O,b,Murcia / San Javier (MUR-MU),37.770833,-0.791667,,0.02,,1690,202,91,,,,34,L1020 U1054 ,ID+5 gap,83491,, +370,ISL,,NS,b,Reykjavk/Nes (ho),64.145833,-21.958333,,0.025,,2106,320,94,,,,,,86550,,, +370,RUS,,RT,b,Moskva/Ramenskoe (MV),55.520833,38.208333,,0.025,,2102,67,94,,,,10,L995 U1015 ,83497,,, +370,LBY,,GNS,b,Naser (but),31.854167,23.958333,,0.025,,2663,141,100,,,,,,83476,,, +370,RUS,,NA,b,Nizhnekamsk / Begishevo,55.520833,52.375,,0.025,,2985,64,103,,,,,,83489,,, +370,RUS,,NK,b,Nizhnekamsk / Begishevo,55.604167,52.125,,0.025,,2968,64,103,,,,,U1060 ,IDx2,83490,, +370,RUS,,UL,b,Usinsk (KO),65.979167,57.375,,0.025,,3176,41,105,,,,,L400 15.0s,IDx2,83502,, +370,RUS,,YT,b,Usinsk (KO),65.979167,57.375,,0.025,,3176,41,105,,,,,,86552,,, +370,IRN,,UMH,b,Urumiyeh=Urmia (waz),37.645833,45.041667,,0.025,,3388,103,107,,,,17,L1020 U1052 ,ID+6 gap,83503,, +370,RUS,,KO,b,Yekaterinburg / Koltsovo (SV),56.729167,60.708333,,0.025,,3456,60,108,,,,,,83483,,, +370,RUS,,KU,b,Ekaterinburg / Koltsovo (SV),56.729167,60.875,,0.025,,3466,60,108,,,,,,86549,,, +370,CAN,,GR,b,Grindstone (Iles de la Madeleine) (QC),47.395833,-61.875,,0.025,,4750,292,120,,,,,U390 10.5s,DAID,83478,, +370,USA,,DXT,b,Dalton (MA),42.479167,-73.208333,,0.025,,5791,293,131,,,,994,L1040 U1030 8.53s,83474,,, +370,CAN,,YBV,b,Berens River (MB),52.354167,-97.041667,,0.05,,6391,315,134,,,,988,L400 U370 10.4s,DAID,83506,, +370,USA,,MQI,b,Manteo (NC),35.895833,-75.708333,,0.025,,6442,289,137,,,,997,L1023 U1031 4125s,83487,,, +370,CUB,,UCM,b,Camagey (cm),21.395833,-77.958333,,0.35,,7770,279,139,,,,620,L1208 U1165 7989s,83501,,, +370,USA,,HYW,b,Horry Conway (SC),33.8125,-79.125,,0.025,,6826,289,141,,,,0,L1009 U1013 6898s,83479,,, +370,USA,,VOF,b,Alcovy Covington (GA),33.645833,-83.791667,,0.025,,7137,292,144,,,,998,L1030 U1061 5979s,AWOS-3,83505,, +370,B,,GOI,b,Goinia (GO),-16.645833,-49.208333,,1,,9330,233,145,,,,,U1087 6.59s,83477,,, +370,CHN,,PM,b,Potou (HB),38.0625,116.541667,,0.05,,7931,51,149,,,,,L1120 6s,83495,,, +370,USA,,OUN,b,Norman (OK),35.229167,-97.458333,,0.025,,7831,303,151,,,,,L1034 U1027 7.9s,86551,,, +370,MYA,,LSO,b,Lashio,22.979167,97.754444,,0.025,,8101,74,154,,,,,,22100027,,, +370,B,,MRB,b,Marab (PA),-5.354167,-49.125,,0.025,,8250,239,155,,,,,,83488,,, +370,HND,,LMS,b,San Pedro Sula (Cortes) (cor),15.479167,-87.875,,0.05,,8942,283,156,,,,998,L1023 U1034 5.75s,83486,,, +370,PRU,,TYL,b,Talara (Piura) (piu),-4.5625,-81.291667,,0.15,,10251,265,156,,,,,,83500,,, +370,TWN,,SN,b,Taichung (TC),24.145833,120.625,,0.049,,9414,57,158,,,,,8.5s,83499,,, +370,MOZ,,VL,b,Vilankulo (ihb),-21.979167,35.291667,,0.025,,8703,153,159,,,,,L1017 5.26s,83504,,, +370,USA,,PAI,b,Pacoima (CA),34.270833,-118.375,,0.025,,9017,317,160,,,,0,L50 U955 4.5s,83494,,, +370,B,,IK,b,Bento (SP),-22.9375,-47.208333,,0.025,,9830,228,162,,,,,,83481,,, +370,B,,IC,b,Gisa (PR),-25.479167,-49.208333,,0.025,,10176,228,164,,,,,,83480,,, +370,INS,,BM,b,Batam (KR-bat),1.104167,104.125,,0.025,,10436,83,164,,,,,4.5s,83470,,, +370.5,D,,GW,b,Berlin / Gatow (brb),52.479167,13.125,,0.025,,458,82,78,,,,-370.5,U403 ,87158,,, +370.5,S,,LB,b,Angelholm / Barkakra,56.354167,12.791667,,0.025,,628,39,79,,,,500,L408 U407 ,83508,,, +370.5,G,,AP,b,Aberporth (WA-CDN),52.104167,-4.541667,,0.025,,747,274,80,,,,514,L393 U411 8.5s,83507,,, +371,D,,MYN,b,Mnster / Osnabrck (nrw),52.145833,7.791667,,0.025,,94,87,54,,,,1,L1026 U1021 ,83535,,, +371,XOE,,AME,b,Amoco Rijn P15-E Platform,52.1875,3.875,,0.025,,173,274,75,,,,0,L400 U400 ,83511,,, +371,XOE,,AMO,b,Amoco Rijn P15-G Platform,52.229167,3.708333,,0.025,,185,275,75,,,,,U400 ,83512,,, +371,XOE,,WB,b,Nam / FA1,53.4375,3.375,,0.025,,252,307,75,,,,,,86556,,, +371,XOE,,NQ,b,Penman K8-FA-3 Platform,53.5625,3.458333,,0.025,,256,310,76,,,,2,L395 U400 ,ID+2.5 gap,83536,, +371,BEL,,OKT,b,Kortijk / Wevelgem (vlg-wvl),50.8125,3.208333,,0.015,,265,238,78,,,,5,L1013 U1028 ,83538,,, +371,F,,MLX,b,Morlaix / Ploujean (29),48.645833,-3.791667,,0.025,,819,246,81,,,,,U4 29.9s,ID+25 tone,83534,, +371,I,,LEV,b,Savigliano / Levaldigi (cn),44.5625,7.625,,0.025,,844,173,81,,,,2,L1067 U1068 ,83530,,, +371,I,,RIV,b,Codroipo / Rivolto (ud),45.9375,12.958333,,0.025,,835,143,81,,,,1,L1020 U1020 ,ID+6 gap,83542,, +371,NOR,,BRS,b,Bremsnes for Kristiansund / Kvernberget,63.104167,7.625,,0.05,,1225,3,82,,,,0,L402 U402 ,83515,,, +371,NOR,,HAA,b,Hamar / Stafsberg,60.8125,11.041667,,0.025,,1008,14,83,,,,990,L384 U374 ,ID+5 gap,83525,, +371,I,,FRS,b,Frosinone (fr),41.645833,13.291667,,0.025,,1274,153,86,,,,5,L1020 U1032 ,ID+5 gap,83522,, +371,I,,CAG,b,Elmas (ca),39.229167,9.125,,0.025,,1447,171,87,,,,995,L1025 U1015,83516,,, +371,UKR,,CE,b,Chernigov,51.395833,31.208333,,0.025,,1701,83,90,,,,,,83517,,, +371,TUN,,JER,b,Djerba / Zarzis (med),33.895833,10.791667,,0.05,,2055,168,91,,,,991,L1035 U1020 ,ID+3 gap,83529,, +371,POR,,STR,b,Sintra (lis),38.895833,-9.375,,0.025,,1908,226,92,,,,20,L983 U1017 9.79s,ID+5 gap,83546,, +371,MRC,,CNU,b,Oujda / Angads (otl),34.8125,-1.875,,0.025,,2033,202,93,,,,2,L403 U402 5.6s,ID+2 gap,83518,, +371,NOR,,SM,b,Bardufoss / Fossmo,69.0625,18.625,,0.025,,1991,14,93,,,,985,L400 U369 ,83544,,, +371,TUR,,TZK,b,Nevsehir (ica-nev),38.770833,34.541667,,0.025,,2623,113,99,,,,993,L1035 U1020 ,ID+5 gap,83550,, +371,MRC,,AZR,b,Inezgane,30.354167,-9.458333,,0.025,,2745,214,100,,,,,L1030 U1028 ,83514,,, +371,AZR,,MGL,b,Ponta Delgada (smg),37.729167,-25.625,,0.025,,2950,250,102,,,,,L1037 U1033 8291s,ID+4 gap,87161,, +371,CAN,,GW,b,Jarpik Kuujjuarapik (QC),55.270833,-77.791667,,0.5,,5209,309,112,,,,,U410 10.0s,DAID,83524,, +371,USA,,FND,b,Ellicott Baltimore (MD),39.270833,-76.791667,,0.025,,6253,292,136,,,,,L1058 7833s,83520,,, +371,CAN,,E1,b,Beaverskin (BC),58.020833,-120.291667,,0.05,,6854,331,139,,,,,,87159,,, +371,USA,,AZ,b,Austn Vicksburg (MI),42.145833,-85.541667,,0.025,,6568,300,139,,,,985,L1055 U1027 6008s,83513,,, +371,USA,,PKF,b,Park Falls (WI),45.9375,-90.458333,,0.025,,6553,306,139,,,,,U1016 7670s,83540,,, +371,USA,,AI,b,Video Anderson (IN),40.0625,-85.541667,,0.025,,6731,299,140,,,,998,L1050 U1047 6155s,83510,,, +371,USA,,MD,b,Bunan Bemidji (MN),47.4375,-94.875,,0.025,,6672,310,140,,,,999,L1057 U1058 7597s,83532,,, +371,USA,,RYV,b,Rock River Watertown (WI),43.1875,-88.708333,,0.025,,6670,303,140,,,,998,L1004 U1009 6761s,83543,,, +371,USA,,TOX,b,Siler City (NC),35.770833,-79.458333,,0.025,,6692,291,140,,,,998,L1012 U1017 6386s,83547,,, +371,USA,,MKA,b,Miller (Municipal) (SD),44.520833,-98.958333,,0.05,,7124,310,141,,,,,,87162,,, +371,USA,,ACQ,b,Waseca (MN),44.0625,-93.541667,,0.025,,6872,307,142,,,,10,L1011 U1032 ,83509,,, +371,USA,,ITU,b,Truly Great Falls (MT),47.354167,-111.375,,0.1,,7479,319,142,,,,987,L1045 U1025 5858s,83528,,, +371,USA,,LTD,b,Litchfield (IL),39.145833,-89.708333,,0.025,,7052,300,143,,,,998,L1001 U1003 5.5s,83531,,, +371,USA,,TZT,b,Belle Plaine (IA),41.895833,-92.291667,,0.025,,6978,304,143,,,,3,L1016 U1018 5472s,83551,,, +371,USA,,FQW,b,Walter Hill Murfreesboro (TN),35.979167,-86.375,,0.025,,7109,296,144,,,,998,L1017 U1016 6780s,83521,,, +371,USA,,MLE,b,Millard Omaha (NE),41.1875,-96.125,,0.025,,7250,306,145,,,,,U1036 5884s,83533,,, +371,USA,,PUR,b,Marshall (MO),39.0625,-93.208333,,0.025,,7263,303,146,,,,988,L1046 U1028 7.4s,TWEB,83541,, +371,BAH,,ZPI,b,Paradise Island,25.0625,-77.291667,,0.025,,7418,281,147,,,,,,83555,,, +371,USA,,TS,b,Memphis (Elvis Intl) (TN),34.9375,-89.958333,,0.025,,7413,297,147,,,,,,87163,,, +371,USA,,GT,b,Truly- Great Falls (MT),47.354167,-111.375,,0.025,,7479,319,148,,,,,,87160,,, +371,USA,,XED,b,Medford (Municipal) (OK),36.8125,-97.791667,,0.025,,7714,304,150,,,,,,87164,,, +371,ALS,,PDN,b,Port Heiden (AK),56.9375,-158.625,,0.025,,7813,351,151,,,,2,L1029 U1033 8.0s,83539,,, +371,USA,,FNA,b,Florenville Slidell (LA),30.395833,-89.791667,,0.025,,7783,294,151,,,,991,L1037 U1025 7773s,83519,,, +371,USA,,HNO,b,Henderson (TX),32.1875,-94.875,,0.025,,7941,299,152,,,,997,L1029 U1024 7.8s,83526,,, +371,USA,,YK,b,Donny Yakima (WA),46.520833,-120.375,,0.025,,7935,324,152,,,,993,L1056 U1035 6.2s,83554,,, +371,USA,,GHX,b,Graham (TX),33.145833,-98.458333,,0.025,,8069,302,154,,,,998,L1010 U1005 ,83523,,, +371,USA,,TVY,b,Tooele (UT),40.604167,-112.375,,0.025,,8139,316,154,,,,0,L1030 U1029 6.0s,83549,,, +371,USA,,SOA,b,Sonora (TX),30.5625,-100.625,,0.025,,8422,302,157,,,,,U1020 7.86s,83545,,, +371,USA,,UK,b,Kearn Laughlin (CA),39.270833,-123.208333,,0.025,,8748,323,159,,,,990,L1042 U1023 6.0s,83552,,, +371,PLW,,ROR,b,Koror (kor),7.354167,134.541667,,0.025,,11783,54,169,,,,,L1035 7s,86555,,, +371,AUS,,WHA,b,Whyalla (SA),-33.0625,137.541667,,0.1,,15598,81,175,,,,,L400 7s,83553,,, +371,AUS,,HUG,b,Hughenden (QLD),-20.8125,144.208333,,0.025,,14998,62,179,,,,997,L1050 U1022 10s,83527,,, +371,AUS,,TRE,b,Taree (NSW),-31.895833,152.541667,,0.025,,16480,64,184,,,,,L400 U400 8s,83548,,, +371.5,FIN,,U,b,Helsinki / Vantaa,60.3125,24.958333,,0.025,,1457,44,88,,,,503,L402 U407 ,83556,,, +372,D,,NDO,b,Nordholz (nds),53.770833,8.791667,,0.03,,244,40,75,,,,0,L1035 U1036 8.3s,83571,,, +372,CZE,,L,b,Praha / Ruzyne / Liboc (PR),50.104167,14.291667,,0.025,,593,109,79,,,,5,L395 U399 15.0s,83569,,, +372,NOR,,ODR,b,Kristiansand / Kjevik / Odderoy,58.145833,7.958333,,0.025,,678,8,80,,,,7,L398 U400 8.4s,83573,,, +372,F,,PY,b,Le Puy / Loudes (43),45.020833,3.791667,,0.025,,811,195,81,,,,,L405 U399 ,ID+7 gap,83575,, +372,HRV,,CE,b,Osijek / Cepin (os),45.520833,18.541667,,0.05,,1149,125,81,,,,0,L1020 U1024 ,ID+6 gap,83559,, +372,F,,CSM,b,Castelsarrasin (82),44.0625,1.125,,0.025,,977,206,83,,,,,U10 ,ID+15 tone,83561,, +372,GRC,,KSO,b,Kastori/Aristotelis (wmc-kas),40.4375,21.291667,,0.025,,1723,133,90,,,,5,L435 U433 9.0s,ID+5 gap,83568,, +372,RUS,,BC,b,Sesha,53.729167,33.375,,0.025,,1806,74,91,,,,,,83558,,, +372,RUS,,TJ,b,Sesha,53.729167,33.375,,0.025,,1806,74,91,,,,,,83578,,, +372,GRC,,KIT,b,Kithira (att-kit),36.270833,23.041667,,0.025,,2193,137,95,,,,10,L380 U395 ,ID+15 gap,83567,, +372,TUR,,ESR,b,Eskisehir / Anadolu (ica-esk),39.8125,30.541667,,0.025,,2295,117,96,,,,0,L1020 U1020 ,ID+5 gap,83562,, +372,GRL,,OZN,b,Prins Christian Sund / Kitaa (kuj-nnt),60.0625,-43.125,,0.025,,3115,306,104,,,,2,L398 U404 ,ID+5 gap,83574,, +372,RUS,,NH,b,Tobolsk (TY),58.145833,68.208333,,0.025,,3843,55,111,,,,,U1040 ,83572,,, +372,RUS,,ZL,b,Mys Kamenny,68.520833,73.541667,,0.025,,3863,36,112,,,,,,86559,,, +372,CAN,,YCO,b,Coppermine Kugluktuk (NU),67.8125,-115.125,,1,,5832,336,115,,,,0,L375 U416 9.7s,DAID,83582,, +372,TJK,,FN,b,Dushanbe (dsb),38.543056,68.754722,,0.025,,4935,82,122,,,,,not 420 kHz!!,84966,,, +372,USA,,CQD,b,Cascade Erie (PA),42.104167,-80.125,,0.025,,6246,297,135,,,,986,L1052 U1026 8092s,83560,,, +372,USA,,MF,b,Manns Mansfield (OH),40.770833,-82.458333,,0.025,,6490,297,138,,,,978,L1050 U1017 5853s,83570,,, +372,CAN,,A,b,Glass / Prince Albert (SK),53.229167,-105.541667,,0.025,,6710,320,140,,,,,U~380 ,DAID,87165,, +372,CAN,,ZPA,b,Glass (Prince Albert) (SK),53.229167,-105.541667,,0.025,,6710,320,140,,,,,U399 10.2s,DAID,83583,, +372,USA,,UQN,b,Onyun Vidalia (GA),32.229167,-82.291667,,0.025,,7157,290,145,,,,994,L983 U1016 5823s,83580,,, +372,ALS,,FPN,b,Fredericks Point (AK),56.8125,-132.791667,,0.025,,7344,337,146,,,,988,L1048 U1018 ~7.0s,83563,,, +372,CHN,,FX,b,Hobbot / Baita (NM),40.854167,111.791667,,0.025,,7434,52,147,,,,,,83565,,, +372,AUS,,GIG,b,Gingin (WA),-31.479167,115.875,,1,,14002,97,160,,,,998,L1033 U1033 10s,83566,,, +372,AUS,,WYM,b,Wyndham (WA),-15.520833,128.125,,0.025,,13508,74,175,,,,,U1010 9.95s,83581,,, +372,OCE,,UK,b,Ua Huka,-8.9375,-139.541667,,0.025,,14311,315,177,,,,,~20s,DAID,86557,, +372,AUS,,WAY,b,Wallaby (NT),-23.854167,134.041667,,0.025,,14618,75,178,,,,,,86558,,, +372,OCE,,RU,b,Raiatea (Iles Sous le Vent) (slv),-16.729167,-151.458333,,0.05,,15627,325,179,,,,,U2 20.0s,DAID,83576,, +372.5,SYR,,KTN,b,Al-Qaryatayn (him),34.229167,37.208333,,0.025,,3152,117,104,,,,496,L1027 U1013 8.1s,ID+5 gap,83585,, +372.5,AFS,,GC,b,Grand Central (GT),-25.979167,28.125,,0.1,,8937,160,153,,,,503,L1099 U1106 4.31s,83584,,, +373,HOL,,NW,b,Maastricht/Beek (Sittard) (lim),51.019389,5.878369,,0.015,,127,197,68,,,,7,L400 U400 8.0s,ID+1 gap,83602,, +373,F,,MP,b,Cherbourg / Maupertus (50),49.645833,-1.375,,0.025,,611,246,79,,,,,U3 20.1s,83601,,, +373,F,,LCT,b,Le Luc / Le Cannet (83),43.395833,6.375,,0.025,,969,180,83,,,,,L2 ,83598,,, +373,ROU,,D,b,Trgu Mureş (MS),46.479167,24.375,,0.025,,1440,109,87,,,,949,L862 U948 ,ID+7 gap,83591,, +373,FIN,,KEM,b,Kemi-Tornio / Hirmula,65.854167,24.625,,0.025,,1836,27,91,,,,0,L405 U408 8.5s,ID+6 gap,83597,, +373,ROU,,H,b,Tulcea / Cataloi (TL),45.0625,28.708333,,0.025,,1808,107,91,,,,7,L1040 U1034 7.0s,ID+4 gap,83594,, +373,I,,LPD,b,Lampedusa (ag),35.520833,12.625,,0.025,,1909,163,92,,,,,L1020 U1017 ,ID+6 gap,86560,, +373,ISL,,TN,b,Thorshofn,66.229167,-15.291667,,0.025,,1977,331,93,,,,,U1042 6.0s,83608,,, +373,ALG,,SAH,b,In Salah (11),27.270833,2.541667,,0.025,,2781,188,101,,,,,5.8s,86561,,, +373,IRN,,VR,b,Teheran / Mehrabad / Varamin (thr),35.354167,51.625,,0.025,,3998,100,113,,,,,,83609,,, +373,CAN,,1A,b,Williams Harbor (NL),52.5625,-55.791667,,0.025,,4092,296,114,,,,5,L400 U405 8.2s,DAID,83586,, +373,CAN,,YXK,b,Rimouski (QC),48.479167,-68.541667,,0.025,,5098,297,124,,,,989,L411 U377 10.7s,DAID,83610,, +373,CAN,,2Q,b,Mont-Laurier (QC),46.604167,-75.458333,,0.025,,5640,299,129,,,,1,L410 U411 8.4s,DAID,83588,, +373,CAN,,2R,b,Tyendinaga (ON),44.1875,-77.125,,0.025,,5911,297,132,,,,,,87166,,, +373,USA,,EZ,b,Lizah Elizabeth (Newark) (NJ),40.604167,-74.208333,,0.025,,5990,292,133,,,,985,L413 U382 5961s,83593,,, +373,USA,,JF,b,Conda New York (NY),40.604167,-73.791667,,0.025,,5964,292,133,,,,0,L1020 U1020 ,83596,,, +373,CAN,,2P,b,Fox Creek (Chevron) (AB),54.104167,-116.625,,0.2,,7084,327,135,,,,,U424 ,DAID,83587,, +373,CAN,,ZFM,b,Fort McPherson (NT),67.395833,-134.875,,0.025,,6340,343,136,,,,,U381 ,83611,,, +373,USA,,AEA,b,Jones South Hill (VA),36.604167,-78.041667,,0.025,,6537,291,138,,,,,U1012 5101s,83589,,, +373,USA,,PMH,b,Portsmouth (OH),38.770833,-82.875,,0.025,,6670,296,140,,,,,L1039 6002s,83603,,, +373,J,,PQ,b,Tateyama (kan-chi),34.979167,139.875,,2,,9329,37,142,,,,997,L1010 U1019 5s,DAID,83604,, +373,CAN,,EP,b,Estevan Point (BC),49.395833,-126.541667,,0.1,,7886,330,146,,,,,,83592,,, +373,SEY,,SEY,b,Seychelles,-4.6175,55.439444,,0.025,,7812,127,151,,,,,,11500014,,, +373,USA,,TF,b,Aruba Pueblo (CO),38.270833,-104.375,,0.025,,7948,309,152,,,,993,L1046 U1029 7335s,83607,,, +373,USA,,MF,b,Pumie Medford (OR),42.4375,-122.875,,0.025,,8427,324,157,,,,989,L1045 U1028 7.5s,83600,,, +373,HWA,,HHI,b,Wheeler Wahiawa (HI),21.479167,-158.041667,,0.1,,11694,345,163,,,,0,L1053 U1060 8.0s,83595,,, +373,INS,,RN,b,Ranai,3.895833,108.375,,0.025,,10476,78,165,,,,,U1020 ,83605,,, +374,XOE,,CPR,b,Shell / Esso Clipper Platform,53.479167,1.708333,,0.025,,351,298,76,,,,2,L384 U391 ,83620,,, +374,D,,FS,b,Dresden (sac),51.1875,13.875,,0.025,,525,98,78,,,,0,L1020 U1015 10.0s,83626,,, +374,DNK,,TU,b,Aarhus / Tistrup (arh),56.270833,10.791667,,0.025,,543,30,78,,,,0,L403 U401 ,83635,,, +374,AUT,,KFT,b,Klagenfurt,46.604167,14.541667,,0.025,,849,133,81,,,,0,L1018 U1022 20.1s,ID+6 gap,83628,, +374,G,,CBN,b,Cumbernauld (SC-NLA),55.979167,-3.958333,,0.025,,801,307,81,,,,5,L398 U395 5.8s,83619,,, +374,F,,BGC,b,Bergerac / Roumanire (24),44.8125,0.625,,0.025,,916,210,82,,,,,L398 U403 10.0s,ID+6 gap,83613,, +374,NOR,,BL,b,Forde / Bringeland,61.395833,5.791667,,0.025,,1033,358,83,,,,0,L400 U396 7.0s,ID+6 gap,83615,, +374,HNG,,BKS,b,Bks (Bek),46.8125,21.041667,,0.025,,1207,113,85,,,,5,L1022 U1023 ,ID+6 gap,83614,, +374,FIN,,S,b,Mikkeli,61.645833,27.291667,,0.025,,1641,42,89,,,,0,L400 U400 8.0s,83631,,, +374,NOR,,FLV,b,Bod/Fleinvaer (no),67.145833,13.791667,,0.025,,1720,11,90,,,,3,L379 U385 8.3s,83624,,, +374,MRC,,TAN,b,Tanger / Ibn Batouta (ttn),35.729167,-5.791667,,0.025,,2061,213,94,,,,2,L1016 U1019 3.0s,Cont. ID,83632,, +374,UKR,,DT,b,Saki,45.104167,33.625,,0.025,,2132,101,94,,,,,U1022 ,86563,,, +374,TUR,,KHM,b,Kahramanmaras LTCN (akd-kah),37.540111,36.952931,,0.025,,2869,112,102,,,,,L1020 ,ID+6 gap,83629,, +374,CAN,,SA,b,Sable Island (NS),43.9375,-60.041667,,0.025,,4847,287,121,,,,,U400 ,87170,,, +374,USA,,EE,b,Tamie Alexandria (MN),45.8125,-95.291667,,0.025,,6825,309,141,,,,992,L1051 U1030 6184s,83622,,, +374,USA,,OVO,b,North Vernon (IN),39.0625,-85.625,,0.025,,6815,298,141,,,,,U1025 ,87169,,, +374,USA,,LW,b,Lewistown (Manno) (ID),46.354167,-116.875,,0.2,,7808,322,142,,,,,,87168,,, +374,CAN,,1R,b,Kemess Mines Cassiar LAnd District (BC),56.9375,-126.708333,,0.025,,7159,334,145,,,,,U~400 ,83612,,, +374,USA,,BOD,b,Bowman (ND),46.1875,-103.458333,,0.025,,7211,314,145,,,,998,L1025 U1015 31.0s,AWOS-3,83617,, +374,USA,,FLZ,b,Fort Rucker Florala Airport (AL),31.0625,-86.291667,,0.025,,7508,292,148,,,,985,L1050 U1021 7562s,83625,,, +374,CAN,,EX,b,Rutland (Kelowna) (BC),49.9375,-119.375,,0.025,,7573,326,149,,,,,U406 10.2s,DAID,83623,, +374,USA,,HY,b,Nette Hays (KS),38.770833,-99.208333,,0.025,,7625,306,149,,,,991,L1042 U1026 6.6s,83627,,, +374,USA,,LV,b,Reiga Livermore (CA),37.6875,-121.708333,,0.05,,8838,321,156,,,,0,L1037 U1035 4.48s,83630,,, +374,USA,,EKG,b,Carlsbad (CA),33.145833,-117.125,,0.025,,9065,315,160,,,,,,87167,,, +374,AUS,,TEF,b,Telfer (WA),-21.729167,122.208333,,0.025,,13645,84,175,,,,,U1020 7s,83633,,, +374,AUS,,BML,b,Bromelton (QLD),-27.979167,152.875,,0.025,,16159,59,183,,,,990,L400 U400 8s,83616,,, +374,AUS,,WLG,b,Walgett (NSW),-30.020833,148.125,,0.025,,16047,67,183,,,,,L400 U400 8s,83637,,, +374,AUS,,WJS,b,Wee Jasper (NSW),-35.270833,148.625,,0.025,,16504,73,184,,,,,L400 U400 9s,83636,,, +374,AUS,,TTR,b,Tea Tree (TAS),-42.6875,147.291667,,0.025,,16934,86,186,,,,,L400 8s,83634,,, +374,NZL,,BU,b,Burnham,-43.604167,172.375,,0.025,,18608,53,191,,,,,7.00s,83618,,, +374.5,I,,ANC,b,Ancona (an),43.604167,13.458333,,0.035,,1081,148,82,,,,500,L1019 U1022 10.0s,ID+4 gap,83638,, +375,XOE,,TR,b,Phillips / Tor E Platform,56.645833,3.291667,,0.05,,543,339,75,,,,2,L415 U416 17.8s,IDx2,83698,, +375,BEL,,OO,b,Oostende (vlg-wvl),51.1875,2.875,,0.025,,265,249,76,,,,998,L402 U401 10.0s,ID+2 gap,83683,, +375,E,,CCH,b,Calamocha (ARA-TE),40.895833,-1.291667,,0.25,,1377,208,77,,,,995,L1012 U1010 13.2s,ID+9 gap,83652,, +375,F,,BRG,b,Bourges (18),47.020833,2.291667,,0.025,,639,209,79,,,,,L1027 U1035 ,ID+ gap,83648,, +375,POL,,CHO,b,Chociwel,53.479167,15.291667,,0.025,,616,72,79,,,,998,L1016 U1018 6.6s,ID+3 gap,83654,, +375,S,,KD,b,Kristanstad / Everod,55.895833,14.041667,,0.025,,652,47,79,,,,0,L391 U390 4.0s,83674,,, +375,SUI,,GLA,b,Gland for Geneva / Cointrain (vd),46.395833,6.208333,,0.025,,636,181,79,,,,5,L399 U410 10.2s,ID+6 gap,83667,, +375,F,,CV,b,Calvi / Ste Catherine (20B),42.5625,8.791667,,0.04,,1077,170,82,,,,,L397 U401 10.0s,ID+7 gap,83658,, +375,S,,RB,b,rebro,59.145833,15.041667,,0.025,,950,31,82,,,,5,L395 U405 ,83687,,, +375,POL,,AY,b,Warzaw / Okecie / Piaseczno,52.1875,20.958333,,0.025,,991,84,83,,,,998,L1022 U1025 ,83643,,, +375,XOE,,KGA,b,Kinsale A,51.354167,-7.958333,,0.025,,991,271,83,,,,,L1020 U1020 8.3s,ID+4 gap,86566,, +375,XOE,,SNR,b,Snorre,61.4375,2.125,,0.025,,1069,348,84,,,,810,L375 6.0s,ID+2 gap,83695,, +375,BIH,,SAR,b,Sarajevo (sar),43.9375,18.458333,,0.025,,1273,131,86,,,,2,L398 U396 10.3s,ID+7 gap,83691,, +375,FIN,,FR,b,Pori / Vanhakyl (st),61.4375,21.958333,,0.025,,1398,36,87,,,,2,L408 U408 ,83664,,, +375,ISL,,VM,b,Vestmannaeyjar (sl),63.395833,-20.291667,,0.1,,1996,319,87,,,,2,L1047 U1061 7.7s,ID+3 tone,83702,, +375,TUN,,ZN,b,Tozeur / Nefta (toz),33.9375,8.041667,,0.05,,2025,176,90,,,,12,L376 U405 6.5s,ID+4 gap,83705,, +375,BUL,,R,b,Varna (vrn),43.270833,27.875,,0.025,,1873,113,92,,,,,U1020 ,ID+3.5 gap,83686,, +375,FIN,,HET,b,Enontekio / Hetta,68.4375,23.541667,,0.025,,2030,20,93,,,,0,L406 U411 8.5s,83670,,, +375,GRC,,SMO,b,Samos (neg-sam),37.6875,26.875,,0.05,,2259,127,93,,,,39,L348 U427 ,ID+5.5 gap,83694,, +375,RUS,,DB,b,Pochinok,57.729167,38.958333,,0.025,,2148,60,94,,,,,U400 ,83659,,, +375,RUS,,B,b,Krasnodar / Pashkovsky (KD),45.0625,39.208333,,0.025,,2512,95,98,,,,,,83644,,, +375,RUS,,BW,b,Balakovo (SR),51.854167,47.791667,,0.025,,2795,74,101,,,,,L373 U376 ,IDx2 + 11 gap,83651,, +375,CAN,,YZG,b,Salluit (QC),62.1875,-75.708333,,1,,4725,317,104,,,,,U412 10.4s,ID+5 tone,83704,, +375,ETH,,GN,b,Gondar (amh),12.520833,37.458333,,0.025,,5202,136,125,,,,,8.0s,83668,,, +375,GHA,,TI,b,Takoradi (wst),4.913056,-1.764722,,0.025,,5302,191,126,,,,,,3000001,,, +375,CAN,,FS,b,Fort Simpson (NT),61.770833,-121.291667,,0.28,,6541,334,128,,,,,U406 10.2s,DAID,83665,, +375,USA,,JRV,b,Morrisville / Stowe Morrisville (VT),44.5625,-72.625,,0.025,,5608,295,129,,,,,U1026 6154s,83673,,, +375,USA,,BO,b,Miltt Boston (MA),42.270833,-71.041667,,0.025,,5669,292,130,,,,990,L1056 U1040 5942s,83647,,, +375,USA,,ELM,b,Elmira (NY),42.145833,-76.958333,,0.025,,6049,295,133,,,,,,87171,,, +375,CAN,,7B,b,St. Thomas (ON),42.770833,-81.125,,0.025,,6257,298,136,,,,,U400 10.51s,DAID,83640,, +375,USA,,GL,b,Gaylord (MI),45.020833,-84.791667,,0.025,,6304,302,136,,,,995,L1022 U1017 8600s,83666,,, +375,USA,,OGM,b,Ontonagon (MI),46.854167,-89.375,,0.025,,6423,306,137,,,,,U1015 8086s,83680,,, +375,USA,,PJS,b,Henry Newport News (VA),37.145833,-76.458333,,0.025,,6394,290,137,,,,989,L1045 U1026 8314s,83684,,, +375,USA,,SH,b,Staut Staunton / Waynesboro / Harrisonburg (VA),38.1875,-78.958333,,0.025,,6472,293,138,,,,999,L1019 U1019 8600s,83693,,, +375,USA,,USE,b,Fulton Wauseon (OH),41.604167,-84.125,,0.025,,6526,299,138,,,,5,L1006 U1012 4817s,83701,,, +375,CAN,,8H,b,Saint Paul (AB),53.979167,-111.375,,0.05,,6891,324,139,,,,,U395 10.5s,DAID,83641,, +375,CAN,,BM,b,Balmoral (MB),50.145833,-97.291667,,0.025,,6578,314,139,,,,,U395 10.5s,DAID,83646,, +375,USA,,UBE,b,Cumberland (WI),45.520833,-91.958333,,0.025,,6668,307,140,,,,10,L990 U1010 4702s,83700,,, +375,USA,,RCZ,b,Roscoe Rockingham (NC),34.854167,-79.708333,,0.025,,6781,291,141,,,,5,L1050 U1022 6518s,83688,,, +375,USA,,CCY,b,Charles City (IA),43.0625,-92.625,,0.025,,6902,305,142,,,,2,L1015 U1008 6307s,83653,,, +375,CAN,,BD,b,Baildon (Moose Jaw) (SK),50.3125,-105.458333,,0.025,,6953,318,143,,,,988,L1035 U985 9.83s,DAID,83645,, +375,CAN,,YMJ,b,Moose Jaw (SK),50.3125,-105.458333,,0.025,,6953,318,143,,,,,U1048 ,87173,,, +375,USA,,LQ,b,Licol Springfield (IL),39.895833,-89.625,,0.025,,6986,301,143,,,,998,L1049 U1042 6100s,83676,,, +375,CLM,,BUN,b,Buenaventura (val),3.8125,-76.958333,,1,,9220,267,144,,,,514,L~1000 U1028 10s,83650,,, +375,USA,,AT,b,Catta Atlanta (GA),33.645833,-84.541667,,0.025,,7184,293,145,,,,,L1039 6.20s,83642,,, +375,USA,,CHT,b,Chillicothe (MO),39.770833,-93.458333,,0.025,,7218,303,145,,,,995,L1025 4.0s,83655,,, +375,USA,,VMR,b,Vermillion (SD),42.770833,-96.958333,,0.025,,7164,308,145,,,,1,L1015 U1050 5416s,83703,,, +375,USA,,DS,b,Searcy (AR),35.104167,-91.791667,,0.025,,7509,299,148,,,,995,L1042 U1030 6.03s,83660,,, +375,USA,,CP,b,Johno Casper (WY),42.895833,-106.541667,,0.025,,7649,314,149,,,,993,L1042 U1026 5.8s,83656,,, +375,CHN,,HO,b,Changwu (SX),35.1875,107.791667,,0.025,,7690,59,150,,,,,,83671,,, +375,USA,,DW,b,Owaso Tulsa (OK),36.3125,-95.875,,0.02,,7647,302,150,,,,988,L1054 U1035 6.0s,83661,,, +375,USA,,RYB,b,Raymond (MS),32.3125,-90.375,,0.025,,7658,296,150,,,,978,L991 U1000 6.1s,83690,,, +375,USA,,SPH,b,Springhill (LA),32.9375,-93.375,,0.025,,7787,298,151,,,,995,L1043 U1024 7.80s,83696,,, +375,USA,,LF,b,Laffs Lafayette (LA),30.270833,-91.875,,0.025,,7923,296,152,,,,,L1023 8600s,83675,,, +375,USA,,PSN,b,Palestine (TX),31.770833,-95.708333,,0.025,,8027,299,153,,,,995,L1023 U1019 6.8s,83685,,, +375,B,,SAT,b,Santos (SP),-23.979167,-46.291667,,0.2,,9885,227,154,,,,,,83692,,, +375,USA,,HPL,b,Hopkins Nucla (CO),38.229167,-108.541667,,0.025,,8167,312,155,,,,,,83672,,, +375,GTM,,GUA,b,Guatemala City (gut),14.604167,-90.541667,,0.05,,9196,284,157,,,,974,L1047 U948 7.1s,DA3ID,83669,, +375,USA,,EMC,b,Winnemucca (NV),40.979167,-117.875,,0.025,,8356,320,157,,,,,,83662,,, +375,MYA,,TL,b,Tachileik,20.470278,99.930556,,0.025,,8459,74,158,,,,,,22100043,,, +375,B,,BRR,b,Barreiras (BA),-12.0625,-44.958333,,0.025,,8659,231,159,,,,25,L1020 U1070 ,83649,,, +375,GTM,,TGE,b,?,14.604167,-90.541667,,0.025,,9196,284,160,,,,,,87172,,, +375,B,,MAR,b,Marlim (RJ),-22.354167,-40.125,,0.025,,9430,222,161,,,,,,86567,,, +375,THA,,RN,b,Ranong (rng),9.778611,98.583889,,0.025,,9298,82,161,,,,,,ID+2 gap3,83689,, +375,TWN,,NN,b,Hsikang (TN),23.104167,120.208333,,0.025,,9486,58,161,,,,,8s,83679,,, +375,INS,,ON,b,Medan (SU-med),3.5625,98.708333,,0.025,,9852,86,162,,,,,,slow ID+7 gap,83682,, +375,B,,CUB,b,Corumb (MS),-19.020833,-57.625,,0.025,,10027,238,163,,,,984,L1042 U1010 ,83657,,, +375,INS,,OJ,b,Hasanuddin,-5.0625,119.541667,,0.025,,12015,74,170,,,,988,L1042 U1020 10s,83681,,, +375,FSM,,TKK,b,Truk (Weno Island) (chu),7.4375,151.875,,0.025,,12626,38,172,,,,997,L1027 U1020 8.4s,83697,,, +376,HOL,,WP,b,Amsterdam / Schipol / Weesp (nho),52.3125,5.041667,,0.025,,96,284,55,,,,0,L410 U390 6.8s,83723,,, +376,D,,HAN,b,Hahn (rlp),49.979167,7.291667,,0.025,,245,165,75,,,,5,L1039 U1046 8.3s,83711,,, +376,DNK,,HP,b,Esbjerg (sdk),55.520833,8.375,,0.025,,401,18,77,,,,991,L421 U404 4.0s,83713,,, +376,F,,BS,b,Bale-Mulhouse (68),47.5625,7.541667,,0.025,,512,170,78,,,,0,L407 U401 10.4s,83710,,, +376,S,,LN,b,Hultsfred,57.479167,15.958333,,0.025,,854,42,82,,,,5,L394 U405 ,83716,,, +376,EST,,R,b,Prnu (Pae),58.479167,24.458333,,0.025,,1338,51,86,,,,,L389 U371 8.4s,IDx2,83720,, +376,POR,,BJA,b,Beja (bej),38.145833,-7.958333,,0.025,,1911,221,92,,,,0,L399 U400 6.5s,ID+2 gap,83709,, +376,CNR,,HIE,b,Valverde (STC-HI),27.8125,-17.875,,0.025,,3370,226,107,,,,9,L1012 U1012 4.4s,ID+2 gap,83712,, +376,CNR,,HR,b,Valverde (STC-HI),27.8125,-17.875,,0.025,,3370,226,107,,,,,U1020 11.0s,87175,,, +376,IRN,,SKD,b,Shahr-e Kord (cbk),32.3125,50.875,,0.025,,4181,104,115,,,,4,L1020 U1026 ,ID+5 gap,83721,, +376,NIG,,AO,b,Kano (kno),11.979167,8.541667,,0.025,,4466,177,118,,,,,,83707,,, +376,ALS,,PVQ,b,Put River Deadhorse (AK),70.229167,-148.458333,,0.26,,6262,350,125,,,,0,L1039 U1034 ,83719,,, +376,BAH,,ZIN,b,Matthew Town (Great Inagua Island),20.979167,-73.708333,,0.4,,7518,276,136,,,,988,L1050 U1027 8.3s,83725,,, +376,CAN,,YAG,b,Fort Frances (ON),48.6875,-93.541667,,0.04,,6503,310,136,,,,,U396 10.0s,DAID,83724,, +376,GLP,,MG,b,Marie-Galante (971),15.854167,-61.291667,,0.15,,7107,262,136,,,,,L6 18.0s,DAID,83717,, +376,USA,,LC,b,Pickl Columbus (OH),39.895833,-82.875,,0.049,,6583,297,136,,,,990,L1038 U1024 5930s,83715,,, +376,CAN,,4Y,b,Key Lake (SK),57.270833,-105.625,,0.025,,6378,323,137,,,,,U388 ,DAID,83706,, +376,CAN,,BI,b,Fort St. John (BC),56.270833,-120.625,,0.02,,7027,330,144,,,,,,87174,,, +376,CAN,,K2,b,Olds-Didsbury (AB),51.729167,-114.125,,0.025,,7202,324,145,,,,,U1046 10.12s,DAID,83714,, +376,USA,,BHC,b,Baxley (GA),31.729167,-82.375,,0.025,,7203,290,145,,,,998,U1019 GAs,83708,,, +376.5,I,,ORI,b,Orio al Serio (bg),45.645833,9.875,,0.025,,762,159,81,,,,500,L1015 U1021 5.8s,ID+1 gap,83727,, +376.5,J,,NA,b,Naganuma (hok),43.020833,141.625,,0.1,,8596,32,152,,,,500,L1000 U1011 5s,DAID,83726,, +377,D,,MGB,b,Mnchengladbach (nrw),51.227328,6.505003,,0.025,,98,176,55,,,,,U1008 ,83741,,, +377,XOE,,RTR,b,P11-B (De Ruyter) / Petro Canada Platform,52.354167,3.375,,0.025,,208,279,75,,,,,,83746,,, +377,F,,PNT,b,Pontivy (56),48.0625,-2.791667,,0.025,,795,239,81,,,,,U5 19.8s,DAID,83744,, +377,S,,KN,b,Norrkping / Kungsangen,58.604167,17.375,,0.025,,999,39,83,,,,0,L403 U407 ,83737,,, +377,S,,SM,b,Mora / Siljan,60.895833,14.375,,0.025,,1091,23,84,,,,2,L398 U400 ,83747,,, +377,SRB,,BLC,b,Blace (Srb-top),43.246528,21.367417,,0.025,,1487,126,88,,,,5,L885 U940 ,ID+10 gap,83729,, +377,FIN,,B,b,Kuopio,62.979167,27.791667,,0.025,,1742,38,90,,,,,,83728,,, +377,S,,OL,b,Lulea / Kallax,65.604167,21.958333,,0.025,,1736,24,90,,,,,,83742,,, +377,FIN,,PA,b,Rovaniemi / Niskaper,66.479167,25.625,,0.025,,1917,26,92,,,,0,L404 U409 8.0s,83743,,, +377,ISL,,GA,b,Husavik / Gardur,65.895833,-17.458333,,0.025,,2028,328,93,,,,,U1020 ,83735,,, +377,GRL,,DA,b,Kulusuk (Tunu) (sms-taq),65.5625,-37.208333,,0.025,,2838,319,101,,,,5,L400 U390 8.3s,83732,,, +377,CAN,,YRR,b,Greely (Ottawa) (ON),45.270833,-75.541667,,0.025,,5737,297,130,,,,997,L410 U394 10.4s,DAID,83750,, +377,USA,,HWS,b,Central Wisconsin Mosinee (WI),44.770833,-89.708333,,0.025,,6603,305,139,,,,,U1010 ,83736,,, +377,USA,,MCX,b,White Co Monticello (IN),40.729167,-86.791667,,0.025,,6753,300,141,,,,,U1060 ,83740,,, +377,USA,,CWI,b,Clinton (IA),41.8125,-90.291667,,0.025,,6871,303,142,,,,19,L994 U1031 5.6s,83731,,, +377,USA,,AIZ,b,Kaiser Kaiser / Lake Ozark (MO),38.104167,-92.541667,,0.025,,7303,301,146,,,,,U1010 6.8s,87176,,, +377,USA,,BUB,b,Burwell (NE),41.770833,-99.125,,0.025,,7365,308,147,,,,2,L1022 U1030 7.4s,83730,,, +377,USA,,EHA,b,Elkhart (KS),37.020833,-101.875,,0.025,,7923,307,152,,,,999,L1025 U1025 4.5s,83733,,, +377,AUS,,VRD,b,Victoria River Downs (NT),-16.395833,131.041667,,0.025,,13776,72,175,,,,,L1020 U1020 10s,83748,,, +377,AUS,,LEO,b,Leonora (WA),-28.895833,121.291667,,0.025,,14168,90,177,,,,,U1001 ,83738,,, +377,AUS,,WP,b,Weipa (QLD),-12.645833,141.875,,0.025,,14107,59,177,,,,,,83749,,, +377,AUS,,MBY,b,Modbury (SA),-34.8125,138.708333,,0.025,,15809,82,182,,,,,U425 10s,83739,,, +377,AUS,,ROM,b,Roma (QLD),-26.5625,148.791667,,0.025,,15790,62,182,,,,,L400 U400 8s,83745,,, +377,AUS,,EPP,b,Epping - Melbourne (VIC),-37.6875,145.041667,,0.025,,16447,80,184,,,,991,L417 U441 10s,83734,,, +377.5,OCE,,MO,b,Teavaro (Moorea Island) (Iles du Vent) (idv),-17.479167,-149.791667,,0.1,,15637,323,176,,,,-377.5,18.0s,DAID,83751,, +378,NOR,,RSY,b,Stavanger / Sola / Rennesoy (ro),59.145833,5.625,,0.025,,784,357,81,,,,2,L380 U382 8.4s,83768,,, +378,HRV,,TRI,b,Split / Trogir (st),43.495833,16.204167,,0.05,,1203,139,82,,,,0,L1011 U1009 7.4s,ID+6 tone,83772,, +378,IRL,,KLY,b,Killiney for Dublin (D),53.270833,-6.125,,0.025,,853,284,82,,,,5,L413 U416 7.2s,ID+3 gap,83760,, +378,F,,LU,b,Le Luc / Le Cannet (83),43.395833,6.541667,,0.025,,969,179,83,,,,,L4 18.8s,DAID,83762,, +378,ROU,,TA,b,Timisoara / Giarmata (TM),45.854167,21.208333,,0.025,,1281,117,86,,,,6,L995 U1020 ,ID+2 gap,83769,, +378,S,,OS,b,Sundsvall / Hrnsand,62.479167,17.458333,,0.025,,1326,25,86,,,,2,L400 U403 ,ID+2 gap,83765,, +378,FIN,,D,b,Kauhava / Menp,63.145833,23.041667,,0.025,,1567,32,89,,,,,L400 ,83755,,, +378,ROU,,ZZ,b,Constanta / Mihail Kogalniceanu (CT),44.4375,28.458333,,0.025,,1831,109,91,,,,,U1055 5.6s,ID+3 gap,83775,, +378,NOR,,HTK,b,Sorkjosen / Hestvik,69.9375,21.041667,,0.025,,2120,15,94,,,,,,83758,,, +378,GRC,,MLO,b,Milos (seg-kik),36.6875,24.458333,,0.025,,2223,133,95,,,,962,L420 U345 ,ID+3.5 gap,83763,, +378,CAN,,UX,b,Hall Beach (NU),68.770833,-81.291667,,0.4,,4657,327,108,,,,999,L407 U407 10372s,DAID,83773,, +378,CAN,,RJ,b,Roberval (QC),48.5625,-72.291667,,0.5,,5319,299,113,,,,0,L410 U400 10.2s,DAID,83767,, +378,CAN,,HO,b,Hopedale (NL),55.4375,-60.208333,,0.025,,4224,302,115,,,,0,U402 10392s,DAID,83757,, +378,CAN,,ZFA,b,Faro (YT),62.229167,-133.375,,0.025,,6819,340,141,,,,,U419 10.0s,83774,,, +378,USA,,TGC,b,Gibson Trenton (TN),35.9375,-88.875,,0.025,,7264,297,146,,,,0,L1029 U1030 5.9s,83770,,, +378,USA,,LXV,b,Leadville (CO),39.4375,-106.875,,0.1,,7974,312,147,,,,,L1064 U1035 ,87177,,, +378,CAN,,AP,b,Active Pass (Mayne Island) (BC),48.854167,-123.291667,,0.025,,7823,327,151,,,,,U405 9.5s,DAID,83752,, +378,MWI,,LH,b,Lilongwe (lgw),-13.854167,33.875,,0.025,,7797,152,151,,,,2,L1018 U1022 7.82s,83761,,, +378,USA,,CN,b,Leroi Waco (TX),31.729167,-97.041667,,0.025,,8110,300,154,,,,997,L1022 U1016 8.6s,83753,,, +378,USA,,OT,b,Emire North Bend (OR),43.395833,-124.291667,,0.025,,8390,325,157,,,,979,L1055 U1014 7.2s,83766,,, +378,USA,,CPM,b,Compton (CA),33.895833,-118.208333,,0.025,,9045,316,160,,,,1,L1020 U1022 8.2s,83754,,, +378,NZL,,HL,b,Henley,-45.9375,170.125,,0.1,,18648,66,186,,,,,U1020 6s,83756,,, +378.5,G,,NN,b,Northampton / Sywell (EN-NHA),52.3125,-0.791667,,0.025,,491,275,78,,,,500,L400 U401 10.0s,ID+7 gap,83776,, +379,NOR,,REK,b,Reksten,61.5625,4.875,,0.1,,1055,356,78,,,,5,L395 U406 9.0s,83794,,, +379,F,,EB,b,St Etienne / Boutheon (42),45.645833,4.291667,,0.025,,735,193,80,,,,,L400 U406 10.0s,ID+8 gap,83781,, +379,I,,VEN,b,Venezia (ve),45.4375,12.291667,,0.025,,857,148,82,,,,2,L1022 U1027 ,ID+4 gap,83801,, +379,I,,PIS,b,Pisa (pi),43.604167,10.291667,,0.025,,989,162,83,,,,0,L1016 U1024 ,ID+3 gap,83791,, +379,POL,,KRA,b,Krakw / Balice (MP),50.0625,19.791667,,0.025,,960,98,83,,,,5,L1014 U990 ,ID+3 gap,83786,, +379,I,,LAT,b,Latina (lt),41.520833,12.958333,,0.025,,1277,155,86,,,,3,L1066 U1019 ,ID+3 gap,83787,, +379,ISL,,SA,b,Reykjavk/Skagi (ho),64.3125,-21.958333,,0.025,,2114,321,94,,,,,4.1s,83796,,, +379,CAN,,CM,b,Channel-Port Aux Basques (NL),47.5625,-59.208333,,0.025,,4571,291,119,,,,,,87178,,, +379,USA,,GKQ,b,Linden, Newark (NJ),40.6875,-74.208333,,0.4,,5984,292,121,,,,,L1040 ,87180,, +379,CAN,,YBE,b,Uranium City (SK),59.5625,-108.541667,,0.5,,6304,327,123,,,,,U404 9.8s,ID+5 tone,83802,, +379,ALS,,IWW,b,Wildwood Kenai (AK),60.604167,-151.208333,,1,,7324,348,130,,,,998,L1043 U1037 ,83785,,, +379,USA,,IVV,b,White River Lebanon (Hartland, VT) (NH),43.5625,-72.458333,,0.025,,5667,294,130,,,,988,L1035 U1005 ,83784,, +379,CAN,,YPQ,b,Peterborough (ON),44.229167,-78.458333,,0.025,,5988,298,133,,,,1,L387 U387 10.5s,DAID,83803,, +379,USA,,TL,b,Wakul Tallahassee (FL),30.3125,-84.375,,0.4,,7448,290,135,,,,991,L1035 U1018 6.3s,83798,,, +379,USA,,FZI,b,Fostoria (OH),41.1875,-83.375,,0.025,,6513,298,138,,,,,U1011 6773s,83783,,, +379,USA,,CNQ,b,Callahan Roanoke (VA),37.270833,-80.125,,0.025,,6617,293,139,,,,998,L1022 U1017 ,83779,,, +379,USA,,DL,b,Pykla Duluth (MN),46.854167,-92.375,,0.025,,6586,308,139,,,,983,L1057 U1019 5904s,TWEB,83780,, +379,USA,,MDE,b,Madeira Cincinnati (OH),37.229167,-80.375,,0.025,,6636,293,139,,,,2,L1020 U1025 8.6s,83789,,, +379,CAN,,ZEG,b,Nisku (Edmonton Intl) (AB),53.395833,-113.458333,,0.05,,7025,325,140,,,,,U396 10462s,DAID,83804,, +379,USA,,ACZ,b,Pendy Wallace (NC),34.729167,-78.041667,,0.025,,6683,289,140,,,,998,L1019 U1008 6349s,83777,,, +379,USA,,UG,b,Wauke Waukegan (Chicago) (IL),42.479167,-87.791667,,0.025,,6673,302,140,,,,0,L1019 U1023 8600s,83799,,, +379,USA,,OW,b,Tonna Owatonna (MN),44.0625,-93.125,,0.025,,6849,306,141,,,,983,L1055 U1037 6.1s,83790,,, +379,USA,,BRA,b,Broad River Asheville (NC),35.270833,-82.458333,,0.025,,6922,293,142,,,,0,L1042 U1031 7980s,83778,,, +379,CAN,,G,b,Edmonton (AB),53.395833,-113.458333,,0.025,,7025,325,143,,,,,,87179,,, +379,USA,,PSH,b,Parshall (ND),47.9375,-102.125,,0.025,,6997,314,143,,,,,U1030 ,83792,,, +379,USA,,ML,b,Milledgeville (GA),33.145833,-83.208333,,0.025,,7141,292,144,,,,,,87182,,, +379,USA,,UNE,b,Union County Creston (IA),40.9375,-94.375,,0.025,,7174,305,145,,,,997,L1037 U1035 4.34s,83800,,, +379,USA,,FSK,b,Fort Scott (KS),37.8125,-94.791667,,0.025,,7458,303,148,,,,29,L971 U1068 7188s,83782,,, +379,USA,,RUE,b,Russellville (AR),35.270833,-93.125,,0.025,,7575,300,149,,,,2,L1015 U1018 5.74s,83795,,, +379,USA,,LRR,b,Allen Parish Oakdale (LA),30.645833,-92.708333,,0.025,,7942,296,152,,,,991,L1043 U1027 7.9s,83788,,, +379,USA,,HS,b,Marbe Houston (TX),30.0625,-95.375,,0.025,,8154,298,155,,,,,L1010 ,87181,,, +379,USA,,PUU,b,Pulliam Flagstaff (AZ),35.145833,-111.708333,,0.049,,8610,312,155,,,,981,L1052 U1014 8.0s,83793,,, +379,USA,,SF,b,Brijj San Francisco (CA),37.5625,-122.291667,,0.025,,8876,321,159,,,,990,L1050 U1030 6.0s,83797,,, +380,XOE,,UTS,b,P-9A (Horizon) / Unocal Platform,52.5625,3.708333,,0.025,,190,286,75,,,,,,83845,,, +380,XOE,,ULA,b,Ula / BP Platform,57.104167,2.875,,0.05,,600,339,76,,,,5,L408 U405 7.3s,83843,,, +380,F,,HO,b,Colmar / Houssen (68),48.145833,7.375,,0.025,,446,171,77,,,,,L401 U406 10.1s,83827,,, +380,D,,FLB,b,Flensburg / Wielenberg (shs),54.750419,9.492075,,0.015,,358,34,79,,,,38,L970 U1045 ,ID+6 gap,83822,, +380,G,,WFD,b,Manchester / Woodford (EN-CHE),53.354167,-2.125,,0.025,,591,287,79,,,,0,L400 U400 10.0s,83847,,, +380,E,,CAC,b,Cceres (EXT-CC),39.520833,-6.458333,,0.25,,1713,220,80,,,,3,L1020 U1030 6.70s,ID+2 gap,83811,, +380,S,,LF,b,Ronneby / Kallinge,56.1875,15.208333,,0.025,,730,48,80,,,,2,L398 U404 ,83829,,, +380,F,,RQ,b,Quimper / Pluguffan (29),47.979167,-3.958333,,0.025,,870,242,82,,,,,U2 20.0s,DAID,83837,, +380,G,,CBL,b,Campbeltown (SC-AGB),55.4375,-5.708333,,0.025,,877,300,82,,,,986,L422 U393 6.5s,83812,,, +380,S,,F,b,Falkping,58.6875,13.625,,0.025,,861,29,82,,,,995,L405 U395 ,83819,,, +380,NOR,,FLR,b,Trondheim / Vaernes / Flornes (st),63.479167,11.375,,0.05,,1297,11,83,,,,6,L389 U389 ,83823,,, +380,E,,VNV,b,Vilanova i la Geltr (CAT-B),41.229167,1.708333,,0.025,,1261,198,86,,,,0,L1023 U1032 ,ID+6 gap,83846,, +380,SRB,,KN,b,Beograd/Krnjeevci (Voj-srm),44.895833,20.125,,0.025,,1287,123,86,,,,998,L1020 U1015 ,ID+8 gap,83828,, +380,FIN,,PHS,b,Pyhsalmi,63.270833,25.875,,0.025,,1683,35,90,,,,2,L406 U410 8.0s,83836,,, +380,UKR,,MH,b,Voznesensk,47.520833,31.291667,,0.025,,1846,96,91,,,,,,83831,,, +380,RUS,,NL,b,Moskva/Sheremetyevo (MV),55.9375,37.291667,,0.025,,2043,66,93,,,,,U1020 ,83833,,, +380,FIN,,TOL,b,Ivalo / Tolo,68.5625,27.208333,,0.025,,2134,23,94,,,,,L380 U380 ,83839,,, +380,RUS,,BW,b,Moskva/Sheremetyevo (MV),55.979167,37.541667,,0.025,,2059,66,94,,,,,U1012 ,83810,,, +380,TUR,,ES,b,Istanbul / Atatrk (mam-ist),40.979167,28.791667,,0.025,,2098,117,94,,,,0,L1020 ,83818,,, +380,MRC,,CNL,b,Kenitra,34.270833,-6.625,,0.025,,2240,213,95,,,,3,L1013 U1014 7.83s,ID+4 gap,83814,, +380,UKR,,A,b,Mariupol' (DO),47.0625,37.458333,,0.025,,2288,92,96,,,,,,83805,,, +380,RUS,,ZCH,b,Kryazh,53.104167,50.125,,0.025,,2908,70,102,,,,,,83850,,, +380,AZR,,FIL,b,Horta (fai),38.520833,-28.708333,,0.025,,3092,255,104,,,,2,L1017 U1020 13.5s,ID+10 gap,83821,, +380,RUS,,DT,b,Dyurtyuli,55.479167,54.875,,0.025,,3140,64,104,,,,,,83817,,, +380,IRN,,MM,b,Tehran / Mehrabad (thr),35.6875,51.375,,0.025,,3956,99,113,,,,,,83832,,, +380,RUS,,SCH,b,Tomsk (TO),56.4375,85.291667,,0.025,,4858,52,122,,,,,15.0s,IDx2 + 2.5 gap,83838,, +380,CAN,,UB,b,Tuktoyaktuk (NT),69.4375,-133.041667,,0.025,,6105,344,134,,,,,U404 10s,DAID,87183,, +380,CAN,,YUB,b,Tuktoyaktuk (NT),69.4375,-133.041667,,0.025,,6105,344,134,,,,,U403 10511s,DAID,83849,, +380,USA,,UMB,b,Culvr Milledgeville (GA),33.145833,-83.125,,0.025,,7136,292,144,,,,995,L1017 U1006 5.3s,83844,,, +380,USA,,GC,b,Deryk Gillette (WY),44.270833,-105.541667,,0.05,,7479,314,145,,,,979,L1058 U1045 6.0s,83824,,, +380,USA,,UBX,b,Cuba (MO),38.0625,-91.458333,,0.025,,7244,301,145,,,,,U1061 6.95s,83841,,, +380,CUB,,UCY,b,Cayabo Cayajabos (pr),22.854167,-82.875,,0.1,,7975,284,147,,,,844,L804 U812 7.2s,83842,,, +380,USA,,GR,b,Sancy Grand Island (NE),40.854167,-98.291667,,0.025,,7397,307,147,,,,0,L1019 U1020 8600s,83825,,, +380,USA,,ALU,b,Alliance (NE),42.0625,-102.791667,,0.025,,7533,311,148,,,,975,L1038 U1010 6.2s,83806,,, +380,CHN,,OB,b,Beijing / Capital / Huairou (BJ),40.270833,116.541667,,0.025,,7737,50,150,,,,,,IDx2,83834,, +380,USA,,OEL,b,Oakley (KS),39.104167,-100.791667,,0.025,,7683,307,150,,,,36,L955 U1022 6.0s,83835,,, +380,B,,BKO,b,Boko (SC),-27.604167,-48.625,,0.2,,10350,227,155,,,,,U1066 8.36s,83808,,, +380,USA,,BBD,b,Brady (TX),31.1875,-99.291667,,0.025,,8289,301,156,,,,983,L1055 U1019 6.0s,83807,,, +380,B,,BRU,b,Bauru (SP),-22.3125,-49.125,,0.1,,9868,230,157,,,,,,83809,,, +380,CTR,,COL,b,Barra Del Colorado (Limon) (lmn),10.770833,-83.541667,,0.025,,9061,277,160,,,,998,L962 U988 7253s,DA3ID,83815,, +380,TWN,,YU,b,Hualien (HL),24.020833,121.625,,0.025,,9483,56,161,,,,,8ss,83848,,, +380,B,,CIA,b,Cuiab (MT),-15.645833,-56.125,,0.025,,9626,239,162,,,,,L1062 7.2s,83813,,, +380,INS,,FA,b,Torea,-2.9375,132.208333,,0.025,,12624,62,172,,,,,L1020 U1020 9s,83820,,, +380,AUS,,GV,b,Gove (NT),-12.270833,136.791667,,0.025,,13768,64,175,,,,,L400 U400 8.5s,83826,,, +380,AUS,,COR,b,Corowa (NSW),-35.979167,146.375,,0.12,,16410,76,177,,,,,L400 U400 8s,83816,,, +380,AUS,,MC,b,Maroochydore (QLD),-26.604167,153.125,,0.025,,16050,57,183,,,,3,L400 U400 8.13s,83830,,, +380,AUS,,SU,b,Sunshine Coast (QLD),-26.604167,153.125,,0.025,,16050,57,183,,,,,L400 U400 8s,86570,,, +381,E,,LCZ,b,Murcia / San Javier / Los Alcazares (MUR-MU),37.6875,-0.958333,,0.2,,1703,203,81,,,,990,L1039 U1020 ,ID+15 gap,83855,, +381,NOR,,RG,b,Rygge / Tune,59.3125,11.041667,,0.025,,851,18,81,,,,998,L404 U396 ,83861,,, +381,HNG,,R,b,Budapest/Ferenc Liszt Int. (Bud),47.4375,19.291667,,0.025,,1059,114,84,,,,1,L1020 U1026 ,Cont. ID,83859,, +381,I,,AQP,b,L'Aquila / Preturo (aq),42.395833,13.291667,,0.025,,1197,152,85,,,,,L1027 U1020 ,86573,,, +381,BIH,,AS,b,Sarajevo (sar),43.8125,18.291667,,0.025,,1275,132,86,,,,,L1031 U1032 ,ID+8 gap,86574,, +381,FIN,,ESP,b,Helsinki / Vantaa / Espoo,60.229167,24.791667,,0.025,,1444,44,87,,,,2,L406 U409 ,ID+3 gap,83853,, +381,ROU,,SIB,b,Sibiu / Turnisor (SB),45.770833,24.125,,0.025,,1468,112,88,,,,974,L1150 U707 ,ID+9 gap,83862,, +381,RUS,,AG,b,Agoy (KD),44.145833,39.041667,,0.025,,2553,97,99,,,,0,L1024 U1020 ,IDx2 + 10 gap,83851,, +381,TUR,,KHD,b,Kahta / Adiyaman (gda-ady),37.729167,38.458333,,0.025,,2951,110,102,,,,,L1020 ,Cont. ID,83854,, +381,USA,,MNI,b,Manning (SC),33.604167,-80.208333,,0.025,,6912,290,142,,,,2,U1023 5595s,83857,,, +381,USA,,MSA,b,Mount Pleasant (TX),33.145833,-94.958333,,0.025,,7864,300,152,,,,,U1020 ,83858,,, +381,KOR,,RE,b,Pyeongtaek (gye),36.979167,127.041667,,0.05,,8563,45,155,,,,,,83860,,, +381,CHN,,LM,b,Ningbo/Lishe,29.8125,121.458333,,0.025,,8940,53,159,,,,,,86576,,, +381,J,,JC,b,Hachinohe (toh-aom),40.5625,141.458333,,0.025,,8835,33,159,,,,,U1021 29.5s,DA2ID,86575,, +381,PRG,,MCL,b,Mariscal Estigarribia (bqn),-22.020833,-60.625,,0.025,,10478,239,165,,,,,L1027 ,83856,,, +381.5,USA,,SJX,b,St James Beaver Island (MI),45.6875,-85.541667,,0.025,,6297,303,136,,,,-381.5,U1029 7489s,86577,,, +382,AUT,,SBG,b,Salzburg / Oberndorf,47.979167,12.875,,0.05,,651,132,76,,,,0,L1020 U1019 10.0s,ID+6 gap,83892,, +382,D,,FW,b,Frankfurt / Raunheim (hes),50.020833,8.458333,,0.025,,273,148,76,,,,964,L1056 U982 ,83877,,, +382,G,,SLP,b,Sleap (EN-SHP),52.854167,-2.791667,,0.025,,628,281,79,,,,5,L400 U405 6.2s,83894,,, +382,I,,GAZ,b,Gazoldo degli Ippoliti (mn),45.1875,10.625,,0.025,,829,156,81,,,,9,L1031 U1039 ,ID+3 gap,83879,, +382,F,,CAA,b,Cazaux (33),44.5625,-1.125,,0.025,,1006,216,83,,,,,U5 18.5s,DAID,83873,, +382,I,,ALG,b,Alghero (ss),40.645833,8.291667,,0.04,,1283,173,84,,,,,U1020 ,86578,,, +382,FIN,,IJ,b,Ilmajoki (ep),62.674444,22.868889,,0.025,,1525,33,88,,,,0,L409 U405,83881,,, +382,GRC,,EGN,b,Aegina (Athnai) (att-pir),37.770833,23.458333,,0.04,,2073,134,92,,,,10,L383 U405 ,ID+5 gap,83876,, +382,ISL,,MN,b,Mynes,65.3125,-14.375,,0.025,,1878,329,92,,,,,,83888,,, +382,POR,,LAR,b,Arruda (lis),38.979167,-9.041667,,0.025,,1884,225,92,,,,2,L1020 U1017 8.34s,ID+5 gap,83886,, +382,ISL,,SU,b,Stykkishlmur (ve),65.0625,-22.791667,,0.025,,2187,322,95,,,,,6.0s,83896,,, +382,GRL,,SF,b,Sondrostrom / Kangerlussuaq (qqa-sis),66.979167,-50.958333,,0.025,,3463,320,108,,,,0,L398 U400 8.4s,83893,,, +382,CAN,,YPL,b,Pickle Lake (ON),51.4375,-90.208333,,1,,6120,311,118,,,,996,L400 U408 9.8s,DAID,83905,, +382,CAN,,YSR,b,Nanisivik (NU),72.979167,-84.541667,,0.025,,4589,334,119,,,,,U408 10.4s,DAID,83907,, +382,CAN,,7P,b,Iroquois Falls (ON),48.729167,-80.708333,,0.1,,5799,303,125,,,,,U1025 8948s,DAID,83865,, +382,CAN,,EA,b,Empress (AB),50.9375,-109.958333,,1,,7099,321,128,,,,,,87184,,, +382,USA,,BT,b,Herro Burlington (VT),44.520833,-73.208333,,0.025,,5647,295,129,,,,997,L398 U400 6.24s,83872,,, +382,USA,,LQ,b,Lyndy Boston (MA),42.4375,-70.958333,,0.025,,5652,292,129,,,,2,L1020 5504s,83887,,, +382,CAN,,XU,b,London (ON),43.104167,-81.208333,,0.05,,6237,298,132,,,,997,L398 U389 10221s,DAID,83903,, +382,TRD,,TRI,b,Piarco Port of Spain (pos),10.604167,-61.458333,,1.2,,7575,259,132,,,,999,L1012 U1016 8125s,DAID,83897,, +382,CAN,,2Z,b,Diavik (Diavik Mine Site) (NT),64.520833,-110.291667,,0.025,,5958,331,133,,,,,U~400 ,83864,,, +382,CAN,,YE,b,Fort Nelson (BC),58.8125,-122.708333,,0.1,,6858,333,136,,,,,U399 10.2s,DAID,83904,, +382,USA,,BHU,b,Benje Latrobe (PA),40.395833,-79.291667,,0.025,,6324,295,136,,,,996,L1045 U1033 6862s,83870,,, +382,USA,,IQK,b,Louisa (VA),38.020833,-77.875,,0.025,,6416,292,137,,,,998,L1046 U1041 ,83882,,, +382,USA,,IRS,b,Sturgis (MI),41.8125,-85.458333,,0.025,,6589,300,139,,,,7,L1002 U1020 6906s,83883,,, +382,USA,,PCZ,b,Waupaca (WI),44.3125,-89.041667,,0.025,,6601,304,139,,,,991,L1030 U1012 7499s,83890,,, +382,USA,,RD,b,Greon Raleigh / Durham (NC),35.8125,-78.875,,0.025,,6652,291,139,,,,,,83891,,, +382,USA,,AL,b,Price Waterloo (IA),42.604167,-92.541667,,0.025,,6934,305,142,,,,993,L1050 U1030 5.9s,83866,,, +382,USA,,BM,b,Claye Bloomington (IN),39.0625,-86.625,,0.025,,6875,298,142,,,,998,L403 U405 8600s,83871,,, +382,USA,,VCY,b,Valley City (ND),46.895833,-97.875,,0.023,,6871,311,142,,,,114,L778 U1006 6864s,83899,,, +382,USA,,SP,b,Huskk Springfield (IL),39.770833,-89.791667,,0.025,,7006,301,143,,,,974,L1041 U1025 6.2s,83895,,, +382,ALS,,JNR,b,North River Unalakleet (AK),63.895833,-160.791667,,0.025,,7068,354,144,,,,999,L1032 U1029 ,83884,,, +382,USA,,APT,b,Jasper (TN),35.0625,-85.625,,0.025,,7137,295,144,,,,39,L944 U1027 7.9s,83868,,, +382,USA,,LRJ,b,Le Mars (IA),42.770833,-96.208333,,0.025,,7123,307,144,,,,,,87185,,, +382,USA,,MW,b,Jonny Marion (IL),37.854167,-88.958333,,0.025,,7113,299,144,,,,2,L1014 U1025 8.6s,83889,,, +382,USA,,DER,b,Alexander City (AL),32.895833,-85.958333,,0.025,,7335,293,146,,,,,U1042 4351s,83875,,, +382,USA,,XGV,b,Fadette (Fort Rucker) (AL),31.020833,-85.541667,,0.025,,7464,292,148,,,,2,L1030 U1046 8148s,83902,,, +382,TRD,,POS,b,Port of Spain (pos),10.604167,-61.458333,,0.025,,7575,259,149,,,,,L1050 U1062 10s,DAID,87186,, +382,USA,,AW,b,Waton Arlington (WA),48.0625,-122.125,,0.05,,7856,326,149,,,,975,L1052 U1014 6.0s,83869,,, +382,CUB,,UCC,b,Jardines del Ray (ca),22.479167,-78.291667,,0.025,,7701,280,150,,,,14,L1161 U1215 18792s,83898,,, +382,CUB,,UPA,b,Pueblo Punta Alegre (ca),22.354167,-78.791667,,0.025,,7745,281,150,,,,,,87187,,, +382,USA,,VKS,b,Vicksburg (MS),32.229167,-90.958333,,0.025,,7701,296,150,,,,988,L1028 U1005 6.4s,83900,,, +382,CAN,,YPW,b,Powell River (BC),49.854167,-124.541667,,0.025,,7772,329,151,,,,,U397 10.5s,DAID,83906,, +382,USA,,CR,b,Conor Chorpus Christi (TX),27.854167,-97.541667,,0.025,,8478,298,158,,,,4,L1030 U1039 4.8s,83874,,, +382,J,,KI,b,Kikai (kyu-kag),28.3125,129.958333,,0.025,,9526,47,161,,,,,,83885,,, +382,MEX,,GRN,b,Guerrero Negro (Baja California) (bcs),28.020833,-114.041667,,0.025,,9395,310,161,,,,17,L1016 U1050 10.4s,DBID,83880,, +382,REU,,FXR,b,Saint Denis / Gillot (974),-20.895833,55.541667,,0.025,,9408,135,161,,,,,,83878,,, +382,NZL,,WU,b,Wanganui (MWT),-39.979167,175.041667,,0.13,,18410,37,184,,,,0,L1020 U1020 4s,83901,,, +383,G,,ALD,b,Alderney (GUE),49.729167,-2.208333,,0.05,,659,250,77,,,,10,L394 U411 5.5s,83908,,, +383,G,,SHD,b,Scotstown Head (SC-ABS),57.5625,-1.791667,,0.025,,801,322,81,,,,995,L407 U407 5.5s,83926,,, +383,POL,,GDB,b,Gdansk / Rebiechowo,54.354167,18.541667,,0.025,,844,68,81,,,,,L1020 U1027 ,ID+3 gap,86581,, +383,BIH,,NA,b,Banja Luka (srp),44.9375,17.291667,,0.04,,1128,131,82,,,,19,L986 U1026 ,ID+7 tone,83918,, +383,F,,MAR,b,Marseille / Provence (13),43.479167,5.125,,0.025,,964,186,83,,,,,U22 19.5s,ID+15 tone,83916,, +383,S,,ERK,b,Erken,59.895833,18.375,,0.025,,1138,36,84,,,,998,L404 U401 ,83912,,, +383,HNG,,EN,b,Debrecen (HaB),47.520833,21.708333,,0.025,,1207,109,85,,,,996,L1046 U1036 3.0s,ID+2 gap,83911,, +383,ALG,,TIO,b,Timimoun (1),29.229167,0.291667,,0.1,,2594,194,93,,,,,U4 ,ID+9 tone,83927,, +383,CAN,,D9,b,Huntsville (Deerhurst Resort) (ON),45.354167,-79.125,,0.025,,5947,299,132,,,,,U415 ,87189,,, +383,USA,,BZK,b,Brookfield (MO),39.770833,-93.125,,0.025,,7199,303,145,,,,,,87188,,, +383,USA,,PGR,b,Paragould (AR),36.0625,-90.541667,,0.025,,7355,299,147,,,,996,L1026 U1019 6.42s,83922,,, +383,THA,,NP,b,Nakhon Phanom (npn),17.395833,104.625,,0.4,,9034,73,148,,,,,,83919,,, +383,USA,,CNP,b,Chappell (NE),41.0625,-102.458333,,0.025,,7602,310,149,,,,2,L1015 U1021 6478s,83910,,, +383,USA,,EQA,b,El Dorado (KS),37.770833,-96.791667,,0.025,,7576,304,149,,,,,L1020 U1014 ,87190,,, +383,THA,,NT,b,Narathiwat (nwt),6.520833,101.708333,,0.4,,9795,82,150,,,,,,2xID+44 gap,83920,, +383,USA,,LB,b,Panck Liberal (KS),36.979167,-100.958333,,0.025,,7877,306,152,,,,998,L1018 U1022 8600s,83915,,, +383,USA,,MM,b,Minne Mc Minnville Municipal Airport (OR),45.229167,-123.041667,,0.05,,8163,325,152,,,,978,L1065 U1020 6.9s,83917,,, +383,USA,,PI,b,Tyhee Pocatello (ID),42.979167,-112.541667,,0.025,,7929,317,152,,,,983,L1055 U1030 6.0s,83923,,, +383,AUS,,WLU,b,Wiluna (WA),-26.604167,120.208333,,0.025,,13910,89,176,,,,,U400 9s,83928,,, +383,AUS,,HM,b,Hamilton Island (QLD),-20.354167,148.958333,,0.025,,15236,57,180,,,,,L1020 U1020 8s,83913,,, +383,AUS,,SGE,b,St. George (QLD),-28.0625,148.625,,0.049,,15911,64,180,,,,,U1020 9s,83925,,, +383,AUS,,WON,b,Wonthaggi (VIC),-38.479167,145.625,,0.07,,16542,80,180,,,,,U425 10s,83929,,, +383,AUS,,PAG,b,Port Augusta (SA),-32.520833,137.708333,,0.025,,15567,80,181,,,,,L1020 U1020 8s,83921,,, +383,AUS,,BTH,b,Bathurst (NSW),-33.395833,149.625,,0.025,,16421,69,184,,,,,L400 U400 8s,83909,,, +383.5,HOL,,GUL,b,Gulpen (lim),50.8125,5.875,,0.015,,149,195,76,,,,529,L400 U400 8.1s,83931,,, +383.5,G,,LE,b,Leicester (EN-LEI),52.604167,-1.041667,,0.025,,509,279,78,,,,493,L415 U415 7.6s,83932,,, +383.5,TUR,,ARF,b,Arifiye / Topel (mam-koc),40.729167,30.125,,0.025,,2199,116,95,,,,502,L1020 U1026 ,Cont. ID,83930,, +384,F,,AT,b,Annecy / Meythet (74),45.854167,6.041667,,0.025,,696,182,80,,,,,L400 U403 10.0s,ID+9 gap,83936,, +384,S,,NS,b,Skvde,58.229167,14.041667,,0.025,,834,32,81,,,,945,L453 U344 ,83943,,, +384,IRL,,SLG,b,Sligo (SO),54.279167,-8.6,,0.025,,1026,290,83,,,,2,L405 U410 8.0s,83949,,, +384,S,,TY,b,Torsby / Fryklanda,60.104167,13.041667,,0.025,,978,22,83,,,,993,L408 U392 ,83950,,, +384,F,,PMR,b,Pamiers / Les Pujols (09),43.104167,1.625,,0.025,,1063,202,84,,,,,L20 ,ID+18 tone,83946,, +384,E,,ADX,b,Andratx (PMI) (BAL-ML),39.5625,2.375,,0.025,,1429,194,87,,,,985,L1011 U1025 11.4s,ID+4 gap,83934,, +384,ROU,,F,b,Iasi (IS),47.1875,27.625,,0.025,,1615,101,89,,,,67,L471 U867 ,ID+6 gap,83939,, +384,RUS,,OL,b,Staryj Oskol (BE),51.3125,37.791667,,0.025,,2147,80,94,,,,,,83944,,, +384,UKR,,AL,b,Alushta (KR),44.6875,34.375,,0.025,,2206,101,95,,,,,L1020 ,IDx2 + 18 gap,83935,, +384,MRC,,ORZ,b,Ouarzazate (smd),30.9375,-6.875,,0.025,,2592,210,99,,,,,,83945,,, +384,UAE,,RK,b,Ras al-Khaimah (rak),25.604167,55.958333,,0.025,,5064,106,124,,,,,,83948,,, +384,CAN,,F8,b,Victoriaville (QC),46.104167,-71.958333,,0.025,,5461,296,128,,,,,U387 10.2s,DAID,83940,, +384,CAN,,3F,b,Ile-a-la-crosse (SK),55.479167,-107.958333,,0.025,,6623,323,139,,,,0,L1032 U1035 8.13s,83933,,, +384,USA,,JB,b,Jigel Lumberton (NC),34.5625,-79.125,,0.025,,6766,290,141,,,,1,L1013 U1003 4654s,83942,,, +384,USA,,PVJ,b,Pauls Valley (OK),34.729167,-97.208333,,0.025,,7860,302,152,,,,,U1044 8.2s,83947,,, +384,CHL,,ERO,b,Quintero (Valparaso) (VS),-32.729167,-71.458333,,1,,12070,240,154,,,,,,83938,,, +384,OCE,,BB,b,Faanui (Bora Bora Island) (Iles Sous le Vent) (slv),-16.4375,-151.791667,,0.05,,15609,326,178,,,,,U4 20.0s,DAID,83937,, +384.5,SEN,,MA,b,Matam / Ouro-Sogui (mtm),15.645833,-13.208333,,0.05,,4409,210,114,,,,-384.5,20.0s,IDx2 + DAID,83951,, +385,F,,OAN,b,Orleans / Bricy (45),48.020833,1.791667,,0.025,,561,218,79,,,,,U3 9.6s,DAID,83988,, +385,G,,WL,b,Barrow-in-Furness/Walney Island (EN-CUM),54.145833,-3.291667,,0.025,,685,293,80,,,,209,L402 U397 5.0s,84005,,, +385,HRV,,BO,b,Zadar / Bokanjac (zd),44.1875,15.291667,,0.04,,1098,140,82,,,,2,L1036 U1040 8.0s,ID+5 gap,83961,, +385,POL,,NWT,b,Leczyca,51.979167,19.208333,,0.025,,874,86,82,,,,998,L401 U404 5.0s,ID+2.5 gap,83986,, +385,F,,CSC,b,Cannes / Ile de Leirins (06),43.520833,7.041667,,0.025,,956,177,83,,,,,U4 ,ID+16 tone,83964,, +385,SVK,,K,b,Kosice / Haniska (KE),48.395833,21.125,,0.025,,1122,106,84,,,,,U1056 ,ID+4 gap,83976,, +385,LTU,,AVN,b,Vilnius (Vil),54.645833,25.291667,,0.025,,1280,70,86,,,,0,L1020 U1021 ,83956,,, +385,FIN,,KV,b,Halli / Talasniemi,61.854167,24.958333,,0.025,,1551,39,88,,,,1,L407 U411 8.4s,83977,,, +385,E,,TLD,b,Toledo (CAM-TO),39.979167,-4.375,,0.025,,1581,216,89,,,,,L1020 U1020 ,87194,,, +385,ROU,,B,b,Bucuresti / Baneasa west (BU),44.479167,26.041667,,0.025,,1674,113,90,,,,,,83957,,, +385,UKR,,JA,b,Yahotyn,50.270833,31.791667,,0.025,,1771,87,91,,,,998,L1138 U937 30.0s,IDx2 + 21 gap,83974,, +385,ISL,,IS,b,safjrur (vf),66.104167,-23.041667,,0.025,,2252,325,95,,,,,U1025 ,83973,,, +385,IRN,,MSD,b,Mashhad (rkh),36.228333,59.636944,,0.5,,4478,92,105,,,,873,L1020 U889 ,ID+3 gap,83982,, +385,CAN,,NA,b,Natashquan (QC),50.229167,-61.875,,0.5,,4586,296,106,,,,,U400 10.0s,DAID,83985,, +385,RUS,,OR,b,Orsk (OB),51.0625,58.708333,,0.025,,3536,71,108,,,,,,83991,,, +385,RUS,,SF,b,Orsk (OB),51.0625,58.541667,,0.025,,3525,71,108,,,,,,83997,,, +385,TJK,,PF,b,Istaravshan=Uroteppa (sgd),40.0625,68.958333,,0.025,,4844,80,121,,,,,,86586,,, +385,CAN,,J,b,#NAME?,44.979167,-63.458333,,0.025,,5001,290,123,,,,,,87193,,, +385,CAN,,ZNS,b,Midtown Halifax (NS),44.979167,-63.458333,,0.025,,5001,290,123,,,,,U394 10.5s,DAID,84008,, +385,CAN,,YNC,b,Wemindji (QC),53.020833,-78.791667,,0.025,,5404,307,127,,,,993,L397 U388 10.5s,DAID,84006,, +385,CAN,,ZDH,b,Toronto/Rexdale Riverhead Park (ON),43.729167,-79.541667,,0.05,,6090,298,131,,,,1,L394 U390 10535s,DAID,84007,, +385,USA,,UR,b,Orchy New York (NY),40.854167,-73.791667,,0.025,,5945,292,132,,,,3,L1031 U1049 5.73s,84001,,, +385,CAN,,QV,b,Yorkton (SK),51.229167,-102.541667,,0.1,,6742,317,134,,,,,U400 10.5s,DAID,83995,, +385,CAN,,X,b,Toronto (ON),43.729167,-79.541667,,0.025,,6090,298,134,,,,,U399 ,DAID,87195,, +385,CAN,,WL,b,Williams Lake (BC),52.145833,-121.958333,,0.5,,7461,329,135,,,,209,L~400 U416 9.8s,DAID,84004,, +385,USA,,GAI,b,Gaithersburg (MD),39.1875,-77.125,,0.025,,6280,293,136,,,,0,L1017 U1025 5195s,83969,,, +385,USA,,EVO,b,East Liverpool (OH),40.6875,-80.625,,0.025,,6384,296,137,,,,,,87191,,, +385,USA,,HYX,b,Browne Saginaw (MI),43.4375,-83.875,,0.025,,6370,300,137,,,,,U1010 5463s,83972,,, +385,ALS,,LUR,b,Cape Lisburne (AK),68.854167,-166.041667,,0.025,,6550,357,138,,,,1,L1033 U1035 8.2s,83979,,, +385,USA,,SCG,b,Scott Crane Lake (MN),48.270833,-92.458333,,0.025,,6479,309,138,,,,0,L1019 U1020 31s,83996,,, +385,USA,,EOP,b,Waverly Pike County Airport (OH),39.1875,-82.958333,,0.025,,6643,296,139,,,,0,L1019 U1017 6106s,83968,,, +385,USA,,LY,b,Bojar Evington (VA),37.270833,-79.208333,,0.025,,6559,292,139,,,,2,L1018 U1021 8600s,83980,,, +385,USA,,UWL,b,New Castle (IN),39.895833,-85.291667,,0.025,,6729,298,140,,,,997,L1018 U1008 6464s,84002,,, +385,USA,,BA,b,Babco St Paul (MN),44.854167,-92.958333,,0.025,,6776,307,141,,,,,L1016 8.60s,83958,,, +385,USA,,EMR,b,Emory Augusta (GA),33.479167,-81.958333,,0.025,,7034,291,143,,,,983,L1045 U1028 7775s,83967,,, +385,ALS,,EHM,b,Cape Newenham (AK),58.645833,-162.041667,,0.1,,7655,354,144,,,,2,L1037 U1035 8.5s,83966,,, +385,CAN,,3M,b,Drayton Valley Industrial (AB),53.270833,-114.958333,,0.025,,7095,325,144,,,,,U406 10479s,DAID,83952,, +385,GLP,,PTP,b,Pointe--Pitre (971),16.270833,-61.625,,0.025,,7093,263,144,,,,,U4 19910s,DAID,83993,, +385,USA,,JD,b,Gooey Belleville (IL),38.479167,-89.708333,,0.025,,7106,300,144,,,,986,L1060 U1036 6092s,83975,,, +385,ALS,,OCC,b,Ocean Cape Yakutat (AK),59.5625,-139.708333,,0.025,,7231,342,145,,,,1,L1030 U1032 8.3s,TWEB,83989,, +385,USA,,LN,b,Potts Lincoln (NE),40.729167,-96.791667,,0.025,,7326,306,146,,,,982,L1061 U1025 5966s,83978,,, +385,USA,,HO,b,Hossy Hot Springs (AR),34.4375,-93.208333,,0.025,,7650,299,149,,,,979,L1050 U1014 6.0s,83971,,, +385,USA,,DR,b,Idder De Ridder (LA),30.770833,-93.375,,0.025,,7972,297,153,,,,993,L1041 U1025 6011s,83965,,, +385,USA,,DXB,b,De Ridder (LA),30.770833,-93.375,,0.025,,7972,297,153,,,,,L1043 U1026 6.0s,86585,,, +385,MYA,,AN,b,Ann,19.770278,94.04,,0.025,,8127,79,154,,,,,,22100042,,, +385,VEN,,PRG,b,Paraguana,11.776667,-70.139167,,0.025,,8060,267,154,,,,,,31300005,,, +385,USA,,COM,b,Coleman (TX),31.854167,-99.375,,0.025,,8235,302,155,,,,,U1020 ,83962,,, +385,USA,,GYB,b,Lee County Giddings (TX),30.1875,-96.958333,,0.025,,8239,299,155,,,,1,L1023 U1025 ,83970,,, +385,B,,BGC,b,Bragana Paulista (SP),-22.979167,-46.541667,,0.1,,9800,227,156,,,,,,83960,,, +385,USA,,MR,b,Munso Monterey (CA),36.604167,-121.958333,,0.05,,8954,320,157,,,,983,L1047 U1015 4.4s,83981,,, +385,USA,,CPZ,b,Chaparrosa Ranch La Pryor (TX),28.895833,-100.041667,,0.025,,8535,300,158,,,,19,L983 U1017 8.0s,83963,,, +385,USA,,BF,b,Niley Bakersfield (CA),35.354167,-118.958333,,0.025,,8940,318,159,,,,974,L1058 U1007 8.0s,83959,,, +385,AFS,,MT,b,Meyerton (GT),-26.5625,28.041667,,0.025,,8998,160,160,,,,10,L1014 U1015 3.42s,83984,,, +385,GTM,,FLS,b,-,16.9375,-89.875,,0.025,,8948,285,160,,,,,,87192,,, +385,GTM,,TKL,b,Tikal Santa Elena Y Flores (Peten) (pet),16.895833,-89.875,,0.025,,8951,285,160,,,,,U1015 4287s,84000,,, +385,B,,PAT,b,Patos de Minas (MG),-18.6875,-46.458333,,0.025,,9380,229,161,,,,,,83992,,, +385,B,,PVH,b,Porto Velho (RO),-8.6875,-63.875,,0.025,,9462,249,161,,,,,,83994,,, +385,CLM,,ARA,b,Araracuara (caq),-0.604167,-72.375,,0.025,,9298,261,161,,,,991,L1026 U1018 8525s,83955,,, +385,INS,,TI,b,Tanjung Pinang (KR-tjp),0.9375,104.541667,,0.025,,10479,83,165,,,,993,L1036 U1022 10.5s,83999,,, +385,GUM,,AJA,b,MT Macajna (GU),13.4375,144.708333,,0.025,,11700,42,169,,,,990,L1051 U1025 8.01s,83953,,, +385,INS,,OK,b,Kupang (NT-kpg),-10.1875,123.708333,,0.025,,12747,74,172,,,,,U1023 8.65s,83990,,, +385,FJI,,AL,b,Malolo (WE-BA),-17.8125,177.375,,0.025,,16120,15,183,,,,2,L1020 U1025 8s,83954,,, +385.5,XOE,,MLE,b,BP Miller B Platform,58.4375,1.208333,,0.025,,776,337,81,,,,300,L400 U~400 ,84010,,, +386,G,,BZ,b,Brize Norton (EN-OXF),51.729167,-1.625,,0.05,,552,269,75,,,,1,L400 U400 10.0s,84017,,, +386,HOL,,STD,b,Stad aan het Haringvliet (zho),51.729167,4.208333,,0.025,,157,255,75,,,,8,L400 U402 4.5s,84039,,, +386,EST,,LK,b,Tallinn/lemiste (Har),59.395833,24.958333,,0.3,,1408,48,76,,,,0,L401 U407 8.1s,ID+5 gap,84029,, +386,D,,EH,b,Egelsbach (hes),49.979167,8.625,,0.015,,283,146,78,,,,5,L1038 U1050 ,84022,,, +386,XOE,,AK,b,Shell Esso / Auk A Platform,56.229167,2.041667,,0.025,,539,330,78,,,,,,84013,,, +386,CZE,,RAK,b,Rakovnik (ST),50.104167,13.708333,,0.025,,556,111,79,,,,45,L403 U397 11.8s,84037,,, +386,XOE,,FM,b,Shell / Fulmar A Platform,56.479167,2.125,,0.025,,560,332,79,,,,998,L402 U402 3.0s,84023,,, +386,I,,LIN,b,Milano / Linate (mi),45.354167,9.291667,,0.025,,780,163,81,,,,993,L1069 U1069 ,84028,,, +386,HNG,,PTB,b,Pusztaszabolcs (Fej),47.145833,18.708333,,0.025,,1042,117,83,,,,2,L1017 U1020 8.0s,84035,,, +386,XOE,,BDL,b,Shell / Esso Brent D Platform,61.0625,1.458333,,0.025,,1040,345,83,,,,,U400 ,ID+5 gap,84014,, +386,XOE,,IC,b,Shell Expro / Brent C,61.104167,1.708333,,0.025,,1040,346,83,,,,0,L400 U400 9.5s,84027,,, +386,E,,NO,b,Pamplona (NAV-NA),42.750183,-1.631553,,0.025,,1202,213,85,,,,14,L1030 U1038 10.7s,ID+6 gap,84032,, +386,GRC,,PAO,b,Paros (seg-kik),37.020833,25.125,,0.025,,2226,132,95,,,,0,L418 U411 ,84034,,, +386,NOR,,HK,b,Hasvik,70.479167,22.125,,0.025,,2192,16,95,,,,998,L404 U400 ,84026,,, +386,GRL,,CP,b,Constable Pynt / Nerlerit Inaat (sms-itt),70.729167,-22.625,,0.025,,2530,336,98,,,,996,L407 U401 9.5s,ID+6 gap,84018,, +386,SPM,,SP,b,Saint-Pierre (975),46.770833,-56.208333,,0.025,,4424,288,117,,,,0,L400 U407 10123s,DAID,84038,, +386,CAN,,D8,b,Dolbeau (QC),48.770833,-72.458333,,0.1,,5315,299,120,,,,2,U401 8.8s,DAID,84020,, +386,CAN,,4N,b,Oxford House (MB),54.9375,-95.291667,,0.2,,6109,317,125,,,,,U393 10.5s,DAID,84011,, +386,USA,,GMA,b,Mahn Whitefield (NH),44.354167,-71.708333,,0.025,,5565,294,129,,,,0,L1028 U1033 5.5s,84024,,, +386,CAN,,4X,b,Lac Du Bonnet (MB),50.270833,-96.041667,,0.1,,6506,313,132,,,,,U1046 ,DAID,84012,, +386,USA,,BTN,b,Britton (SD),45.8125,-97.708333,,0.025,,6952,310,142,,,,,U1034 5.6s,84016,,, +386,USA,,OQW,b,Maquoketa (IA),42.0625,-90.708333,,0.025,,6874,303,142,,,,,U1023 ,84033,,, +386,USA,,SZY,b,Sibley Selmer (TN),35.229167,-88.541667,,0.025,,7303,297,146,,,,,U1013 6663s,84041,,, +386,USA,,HAU,b,Hauser Helena (MT),46.5625,-111.791667,,0.025,,7569,319,149,,,,983,L1059 U1031 8.0s,84025,,, +386,USA,,LYO,b,Lyons (KS),38.354167,-98.208333,,0.025,,7605,305,149,,,,993,L1026 U1017 7.2s,84031,,, +386,USA,,SYF,b,St. Francis (KS),39.729167,-101.791667,,0.025,,7683,309,150,,,,3,L1015 U1023 5.7s,84040,,, +386,AUS,,BLN,b,Busselton (WA),-33.6875,115.375,,0.025,,14138,99,177,,,,,,84015,,, +386,AUS,,WTN,b,Winton (QLD),-22.354167,143.125,,0.025,,15070,65,180,,,,,L1100 8s,86590,,, +386,AUS,,TWB,b,Toowoomba (QLD),-27.5625,151.875,,0.025,,16063,60,183,,,,,L1020 U1020 9s,86589,,, +386,AUS,,CRG,b,Corryong (VIC),-36.145833,147.875,,0.025,,16522,75,184,,,,,L400 U400 9s,84019,,, +386,AUS,,QDI,b,Quirindi (NSW),-31.479167,150.541667,,0.025,,16321,66,184,,,,,L400 U400 8s,84036,,, +386,NZL,,LX,b,Alexandra (OTA),-45.145833,169.458333,,0.025,,18554,65,191,,,,,U1004 6s,84030,,, +386.5,BEL,,SLV,b,Spa / La Sauvenire (wal-lge),50.479167,5.875,,0.015,,185,192,77,,,,496,L404 U398 10.04s,84042,,, +387,D,,SLT,b,Sylt / Westerland (shs),54.854167,8.375,,0.025,,332,22,76,,,,2,L970 U960 30.0s,DAID,84060,, +387,F,,ING,b,St. Inglevert (62),50.895833,1.708333,,0.025,,352,249,76,,,,,L405 U402 10.0s,84051,,, +387,IRL,,CML,b,Clonmel (TA),52.4375,-7.458333,,0.05,,943,278,79,,,,7,L393 U410 5.3s,84049,,, +387,F,,BGP,b,Brest Guipavas (29),48.4375,-4.375,,0.025,,867,246,82,,,,,U5 20.0s,84045,,, +387,F,,RZ,b,Rodez / Marcillac (12),44.4375,2.458333,,0.025,,902,200,82,,,,,U15 ,DAID,84058,, +387,NOR,,SOK,b,Oslo / Gardermoen / Sokna (os),60.229167,9.875,,0.025,,928,12,82,,,,995,L414 U395 10.0s,84061,,, +387,I,,CEV,b,Cervia (ra),44.270833,12.208333,,0.025,,971,152,83,,,,7,L1019 U1030 6.5s,ID+2 gap,84048,, +387,F,,CT,b,Ajaccio / Campo del Oro (20A),41.8125,8.708333,,0.025,,1158,170,85,,,,,U1013 ,84050,,, +387,E,,AV,b,Asturias / Aviles (AST-O),43.520833,-5.958333,,0.02,,1325,229,87,,,,0,L398 U392 7.0s,ID+5 gap,84044,, +387,SRB,,AD,b,Kraljevo (Srb-rsk),43.770833,20.625,,0.025,,1403,126,87,,,,,L914 U940 12.0s,ID+10 gap,86591,, +387,FIN,,JL,b,Kuopio,63.0625,27.708333,,0.025,,1744,38,90,,,,0,L412 U412 8.0s,84053,,, +387,RUS,,MA,b,Kasimovo,60.1875,30.375,,0.025,,1720,49,90,,,,0,L1055 U1055 ,IDx2,84054,, +387,ISL,,NB,b,Akureyri/Botn (ne),65.3125,-18.291667,,0.025,,2021,326,93,,,,,U1017 ,ID+3 tone,84056,, +387,RUS,,KM,b,Kamyshin,50.0625,45.458333,,0.025,,2704,79,100,,,,,L1037 U1039 ,86593,,, +387,CAN,,6E,b,Grand Manan (NB),44.729167,-66.791667,,0.05,,5231,292,122,,,,,U395 10.5s,DAID,84043,, +387,PAK,,MT,b,Multan (pjb),30.196667,71.423889,,0.025,,5738,88,130,,,,998,L1047 U1041 ,ID+7 gap,84055,, +387,USA,,CAV,b,Clarion (IA),42.729167,-93.791667,,0.025,,6994,306,143,,,,,L1038 U1030 6.4s,84047,,, +387,ALS,,BOB,b,Bruck Anchorage (AK),61.1875,-150.208333,,0.025,,7247,348,145,,,,985,L1050 U1023 ,84046,,, +387,TCA,,PV,b,Providenciales (ncs),21.770833,-72.291667,,0.025,,7355,275,147,,,,993,L1047 U1032 5.9s,84057,,, +387,USA,,LQP,b,Fort Collins (CO),40.5625,-105.041667,,0.025,,7780,311,151,,,,,,87196,,, +387,CHN,,SG,b,Yijun,34.395833,111.125,,0.025,,7952,57,152,,,,,,84059,,, +387,COM,,FXM,b,Iconi,-11.688333,43.246389,,0.025,,7922,142,152,,,,,,10000002,,, +388,F,,LOU,b,Metz / Nancy-Lorraine / Louvigny (57),48.979167,6.208333,,0.025,,348,182,76,,,,,U1 20.9s,84082,,, +388,F,,BR,b,Lyon / Bron (69),45.604167,4.958333,,0.025,,731,189,80,,,,,L398 U408 10.0s,ID+8 gap,84066,, +388,POL,,BDG,b,Bydgoszcz / Szwederowo,53.104167,18.041667,,0.025,,792,77,81,,,,,L1030 U1030 ,ID+6 gap,86594,, +388,SVN,,PZ,b,Portoroz,45.479167,13.625,,0.025,,906,142,82,,,,3,L1023 U1030 ,ID+7 gap,84094,, +388,S,,COR,b,Corner for Bromma,59.270833,17.458333,,0.025,,1053,37,84,,,,0,L396 U394 6.5s,84070,,, +388,I,,GUI,b,Guidonia (rm),41.979167,12.708333,,0.025,,1222,155,85,,,,5,L1016 U1029 ,ID+1 gap,84074,, +388,FIN,,KRU,b,Kokkola-Pietarsaari / Kruunupyy,63.8125,23.208333,,0.025,,1625,30,89,,,,5,L408 U412 9.0s,84081,,, +388,PAK,,PG,b,Panjgur (blc),26.9375,64.125,,0.025,,5500,97,128,,,,,L1037 ,86598,,, +388,USA,,BD,b,Chupp Windsor Locks (CT),41.895833,-72.791667,,0.025,,5806,292,131,,,,,,84065,,, +388,CAN,,MM,b,Fort McMurray (AB),56.645833,-111.375,,0.13,,6658,326,132,,,,,U417 9.9s,DAID,84086,, +388,CAN,,H7,b,Manitoulin East (Manitowaning) (ON),45.854167,-81.875,,0.025,,6073,301,134,,,,,U388 10337s,DAID,84075,, +388,USA,,NXX,b,Willow Grove (PA),40.1875,-75.125,,0.025,,6079,292,134,,,,995,L1054 U1043 7436s,84088,,, +388,USA,,UN,b,Penue State College (PA),40.895833,-77.708333,,0.025,,6188,294,135,,,,999,L1020 U1018 8.59s,84097,,, +388,USA,,AM,b,Picny Tampa (FL),27.854167,-82.541667,,0.4,,7533,287,136,,,,988,L1050 U1025 5.9s,84064,,, +388,USA,,MFV,b,Melfa (VA),37.645833,-75.791667,,0.025,,6313,290,136,,,,,,87198,,, +388,USA,,DT,b,Revup Detroit (MI),42.104167,-83.458333,,0.025,,6447,299,137,,,,996,L1028 U1020 8.6s,84071,,, +388,USA,,OCQ,b,Oconto (WI),44.895833,-87.875,,0.025,,6490,304,138,,,,,U1015 9131s,84089,,, +388,USA,,PK,b,Versi parkersburg (WV),39.270833,-81.458333,,0.025,,6544,295,138,,,,999,L1016 U1019 8600s,84093,,, +388,USA,,OLG,b,Solon Springs (WI),46.3125,-91.791667,,0.025,,6597,307,139,,,,,U1019 ,87199,,, +388,USA,,RNW,b,Chocowinity (NC),35.520833,-77.125,,0.025,,6562,289,139,,,,996,L1031 U1024 5418s,84095,,, +388,USA,,ISZ,b,Cincinnati-Blue Ash Cincinnati (OH),39.229167,-84.375,,0.025,,6726,297,140,,,,1,L1065 U1067 6003s,84078,,, +388,USA,,CFJ,b,Crawfordsville (IN),39.979167,-86.875,,0.025,,6817,299,141,,,,1,L1012 U1022 7424s,84068,,, +388,USA,,MAO,b,Marion (SC),34.1875,-79.291667,,0.025,,6807,290,141,,,,0,U1014 7869s,84083,,, +388,USA,,CDX,b,Cumberland River Somerset (KY),36.979167,-84.708333,,0.025,,6925,296,142,,,,993,L1054 U1041 7866s,84067,,, +388,CAN,,MS,b,McInnes Island (BC),52.270833,-128.708333,,0.1,,7676,332,144,,,,,U1036 6.92/10.25s,DAID,84087,, +388,USA,,MD,b,Cabbi Carbondale / Murphysboro (IL),37.854167,-89.208333,,0.025,,7127,299,144,,,,998,L1015 U1014 8600s,84084,,, +388,USA,,OYD,b,Floyd Rome (GA),34.3125,-85.125,,0.025,,7167,294,145,,,,986,L1044 U1015 8209s,84092,,, +388,CAN,,3Z,b,Taber (Muni Apt) (AB),49.8125,-112.208333,,0.025,,7295,322,146,,,,,U380 10.5s,DAID,84063,, +388,USA,,GLY,b,Golden Valley Clinton (MO),38.354167,-93.708333,,0.025,,7350,302,146,,,,979,L1070 U1028 7.4s,84073,,, +388,CAN,,JW,b,Pigeon Jumping Pound Creek (AB),51.0625,-114.625,,0.015,,7282,324,148,,,,,U398 10.5s,DAID,84080,, +388,USA,,CRK,b,Phort Spokane (WA),47.6875,-117.458333,,0.025,,7708,323,150,,,,,U1025 ,86596,,, +388,USA,,GE,b,Phort Spokane (WA),47.6875,-117.458333,,0.025,,7708,323,150,,,,990,L1043 U1023 5.6s,84072,,, +388,USA,,OK,b,Preso Preston (Okmulgee) (OK),35.770833,-95.958333,,0.025,,7698,302,150,,,,988,L1052 U1025 8208s,84091,,, +388,USA,,HAH,b,Natchez-Adams Co Natchez (MS),31.6875,-91.291667,,0.025,,7767,296,151,,,,2,L1017 U1021 8.96s,84076,,, +388,USA,,OFZ,b,Trail Fort Sill (OK),34.770833,-98.375,,0.025,,7923,303,152,,,,986,L1041 U1013 7.8s,84090,,, +388,USA,,SGR,b,Hull Houston (TX),29.645833,-95.625,,0.05,,8206,298,152,,,,999,L1025 U1023 5.7s,84096,,, +388,USA,,JUG,b,Jecca Seagoville (TX),32.6875,-96.541667,,0.025,,7997,300,153,,,,998,L1034 U1034 7.5s,84079,,, +388,CHN,,W,b,Changsha / Huanghua (HN),28.1875,113.208333,,0.025,,8618,60,158,,,,,,84098,,, +388,CLM,,SVA,b,Saravena (ara),6.9375,-71.875,,0.025,,8600,265,158,,,,,L372 U1492 7.96s,86599,,, +388,USA,,IMP,b,Marathon (TX),30.270833,-103.208333,,0.025,,8596,303,158,,,,,,84077,,, +388,USA,,MF,b,Missi Mc Allen (TX),26.270833,-98.291667,,0.025,,8663,297,159,,,,,L1020 8.6s,84085,,, +388,ICO,,CIL,b,Cocos Island Locator (WA),-12.1875,96.791667,,0.025,,11100,97,167,,,,,,86595,,, +388,JON,,APO,b,Apollo Johnston Atoll,16.729167,-169.541667,,0.025,,12350,356,171,,,,,L1040 U1060 ,87197,,, +388,NCL,,MR,b,Mar (ily),-21.479167,168.041667,,0.025,,16261,32,184,,,,,20s,DAID,86597,, +388.5,HOL,,CH,b,Buitenkaag/Lisserdijk 5 (zho),52.22,4.558333,,0.025,,127,276,66,,,,503,L392 U398 6s,84100,,, +388.5,G,,CDF,b,Cardiff (WA-CDF),51.395833,-3.375,,0.025,,678,267,80,,,,495,L410 U397 7.9s,84099,,, +389,E,,ZRZ,b,Zaragoza (ARA-Z),41.729167,-1.208333,,0.3,,1290,209,75,,,,3,L1030 U1029 15.0s,84128,,, +389,NOR,,MR,b,Skien / Geiteryggen / Myra,59.270833,9.541667,,0.025,,820,13,81,,,,3,L375 U383 7.5s,84117,,, +389,F,,PX,b,Perigueux / Bassillac (24),45.1875,0.875,,0.025,,870,210,82,,,,,L396 U405 ,DAID,84120,, +389,I,,CMO,b,Camogli (ge),44.354167,9.208333,,0.025,,887,165,82,,,,10,L1017 U1042 ,ID+4 gap,84106,, +389,NOR,,HN,b,Orsta-Volda / Hovden,62.145833,6.041667,,0.025,,1116,359,84,,,,982,L420 U374 8.5s,84111,,, +389,MDA,,B,b,Balti,47.8125,27.791667,,0.025,,1596,99,89,,,,,L1021 ,ID+12 gap,84101,, +389,MDA,,L,b,Balti,47.854167,27.791667,,0.025,,1594,99,89,,,,,,84113,,, +389,UKR,,SH,b,Shyriaieve,47.395833,30.291667,,0.025,,1785,98,91,,,,,L1072 U1020 ,IDx2 + 8 gap,84122,, +389,ALG,,TRB,b,Tiaret / Bou Chekif (14),35.354167,1.541667,,0.025,,1903,194,92,,,,,U23 ,ID+17 tone,84123,, +389,POR,,CP,b,Lisboa / Caparica (lis),38.645833,-9.208333,,0.025,,1923,225,92,,,,1,L1020 U1020 7670s,ID+5 gap,84107,, +389,TUR,,BDR,b,Bodrum / Milas (ege-mug),37.270833,27.708333,,0.025,,2341,126,96,,,,,L398 U400 ,ID+6 gap,84102,, +389,CNR,,BX,b,La Palma (STC-LP),28.604167,-17.791667,,0.15,,3290,227,98,,,,7,L1027 U1031 15.0s,ID+12 gap,84105,, +389,USA,,PVC,b,Provincetown (MA),42.0625,-70.208333,,0.025,,5631,291,129,,,,993,L1046 U1032 8036s,84119,,, +389,CAN,,Q1,b,Tadoule Lake (MB),58.729167,-98.541667,,0.025,,5969,322,133,,,,,L1035 U1037 8.32s,84121,,, +389,USA,,EN,b,Codee Kenosha (WI),42.5625,-88.041667,,0.025,,6681,302,140,,,,982,L1050 U1022 8.0s,84109,,, +389,USA,,IL,b,Wlmar Willmar (MN),45.104167,-94.958333,,0.025,,6864,308,142,,,,,L1070 U1040 8.25s,87200,,, +389,USA,,LCG,b,Wayne (NE),42.229167,-96.958333,,0.025,,7209,307,145,,,,985,L1050 U1011 8.1s,84114,,, +389,USA,,LDS,b,Leeds Havre (MT),48.5625,-109.708333,,0.025,,7297,319,146,,,,988,L1050 U1025 6.6s,84115,,, +389,USA,,CSB,b,Harry Strunk Cambridge (NE),40.3125,-100.125,,0.025,,7543,308,148,,,,,U1026 6.9s,84108,,, +389,CAN,,WB,b,Kelowna (BC),49.8125,-119.625,,0.025,,7595,326,149,,,,,,87201,,, +389,CAN,,YWB,b,Kelowna (BC),49.8125,-119.625,,0.025,,7595,326,149,,,,,U403 10.1s,DAID,84126,, +389,CAN,,YXB,b,Kelowna (BC),49.8125,-119.625,,0.025,,7595,326,149,,,,,,87202,,, +389,USA,,MEJ,b,Meade (KS),37.270833,-100.375,,0.025,,7819,306,151,,,,,U1020 ,84116,,, +389,USA,,TW,b,Strik Twin Falls (ID),42.479167,-114.375,,0.025,,8059,318,154,,,,998,L1020 U1020 8.0s,84124,,, +389,J,,JD,b,Nikko (kan-toc),36.479167,139.875,,0.05,,9180,36,157,,,,,L1000 20s,84112,,, +389,AUS,,BIU,b,Ballidu (WA),-30.604167,116.791667,,0.025,,13996,95,176,,,,,U1039 8s,84103,,, +389,AUS,,PLC,b,Port Lincoln (SA),-34.604167,135.875,,0.025,,15601,84,181,,,,,U1034 10s,84118,,, +389,AUS,,BKE,b,Bourke (NSW),-30.0625,145.958333,,0.025,,15913,69,182,,,,,L400 U400 9s,84104,,, +389,AUS,,GFN,b,Grafton (NSW),-29.770833,153.041667,,0.025,,16327,61,184,,,,999,L400 U400 10s,84110,,, +389,AUS,,WWL,b,West Wyalong (NSW),-33.9375,147.208333,,0.025,,16308,73,184,,,,,L400 U400 10s,84125,,, +389,AUS,,YWE,b,Yarrowee (VIC),-37.729167,143.791667,,0.025,,16366,81,184,,,,,L400 9s,84127,,, +389.5,XOE,,TSA,b,Amoco / Leman AP Platform,53.020833,2.125,,0.025,,307,291,76,,,,500,L410 U410 9.5s,84129,,, +390,POL,,BBM,b,Babimost,52.145833,15.791667,,0.025,,640,86,79,,,,997,L1023 U1018 6.0s,84133,,, +390,F,,DR,b,Dinard / Pleurtuit-St Malo (35),48.479167,-2.041667,,0.025,,723,239,80,,,,,20.0s,ID+17 tone,84139,, +390,I,,AVI,b,Aviano (pn),45.9375,12.458333,,0.035,,815,145,80,,,,996,L1035 U1035 8.5s,ID+5 gap,84132,, +390,S,,SS,b,Skvde,58.3125,13.875,,0.025,,836,31,81,,,,0,L402 U407 3.5s,84160,,, +390,XOE,,GPR,b,Global Producer III FPSO,58.354167,0.875,,0.025,,777,335,81,,,,,L398 U405 7.0s,86603,,, +390,S,,LV,b,Arvika,59.645833,12.625,,0.025,,922,22,82,,,,0,L399 U402 ,84149,,, +390,HNG,,SAG,b,Sajhdvg (BAZ),47.979167,20.958333,,0.025,,1133,108,84,,,,2,L1016 ,ID+5 gap,84158,, +390,SRB,,VAL,b,Valjevo (Srb-kba),44.3125,19.875,,0.025,,1318,126,86,,,,10,L1008 U1022 10.0s,ID+5 tone,84163,, +390,E,,SO,b,Santiago de Compostela (GAL-C),42.979167,-8.458333,,0.025,,1503,233,88,,,,7,L1021 U1025 12.1s,ID+8 gap,84159,, +390,E,,MA,b,Madrid/Barajas (MAD-M),36.895833,-2.208333,,0.025,,1822,205,91,,,,60,L970 U1089 ,ID+7s gap,84150,, +390,S,,PAJ,b,Pajala,67.270833,22.958333,,0.025,,1911,22,92,,,,997,L403 U397 ,84155,,, +390,LBY,,PE,b,Tripoli / Gazala (tbl),32.6875,13.208333,,0.025,,2228,163,95,,,,3,L1019 U1020 ,ID+8 gap,84156,, +390,MRC,,KNT,b,Kenitra (Tentative),34.3125,-6.625,,0.025,,2235,213,95,,,,7,L1012 U1028 6.44s,ID+4 gap,84146,, +390,RUS,,NF,b,Severomorsk 1 (MU),69.0625,33.375,,0.025,,2351,27,96,,,,,U700 6.4s,84151,,, +390,UKR,,DN,b,Donetsk (DO),48.0625,37.708333,,0.025,,2259,89,96,,,,0,L992 U1040 ,IDx2 + 8 gap,84137,, +390,UKR,,DO,b,Donetsk (DO),48.0625,37.791667,,0.025,,2265,89,96,,,,,L1039 U1039 ,IDx2 + 5 gap,84138,, +390,TUR,,KNY,b,Konya (ica-kon),37.979167,32.541667,,0.025,,2561,117,99,,,,,L1030 ,ID+2 gap,84147,, +390,LBY,,OV,b,Nafoora M4 (wah),29.229167,21.541667,,0.025,,2833,148,101,,,,0,L417 U418 ,ID+7 gap,84153,, +390,CAN,,VP,b,Kuujjuaq / Kujack (QC),58.0625,-68.458333,,1,,4561,309,103,,,,,U399 10.2s,DAID,84164,, +390,CAN,,JT,b,Stephenville (NL),48.5625,-58.791667,,0.45,,4487,292,105,,,,,U394 10406s,DAID,84145,, +390,MRC,,AI,b,El Aaaiun,27.145833,-13.208333,,0.025,,3222,218,105,,,,,,86601,,, +390,UZB,,U,b,Buxoro=Bukhara (bux),39.770833,64.458333,,0.025,,4559,84,119,,,,,,84161,,, +390,RUS,,RL,b,Krasnoyarsk (KN),56.145833,92.625,,0.025,,5261,49,126,,,,,,84157,,, +390,J,,HK,b,Kagoshima (kyu-kag),31.645833,130.541667,,2,,9237,45,141,,,,994,L1022 U1020 5s,DAID,84142,, +390,ALS,,AES,b,Nabesna Northway (AK),62.979167,-141.875,,0.025,,6921,344,142,,,,0,L1034 U1028 ~4.0s,84130,,, +390,USA,,BR,b,Burns Burlington (IA),40.645833,-91.125,,0.025,,7013,302,143,,,,3,L1032 U1034 6131s,84134,,, +390,USA,,OWC,b,Coffee County Douglas (GA),31.395833,-82.958333,,0.025,,7268,290,146,,,,0,L1022 U1030 6624s,84154,,, +390,B,,CRT,b,Curitiba (PR),-25.520833,-49.208333,,1,,10180,228,148,,,,,,84135,,, +390,CUB,,UCA,b,Ciego de vila (ca),21.979167,-78.875,,0.025,,7783,280,151,,,,,L1068 ,84162,,, +390,ALS,,HBT,b,Sand Point (Borland) (AK),55.3125,-160.541667,,0.025,,8010,352,153,,,,998,L1036 U1035 8.5s,84141,,, +390,B,,FUR,b,Furnas (MG),-20.6875,-46.375,,0.2,,9570,228,153,,,,,,84140,,, +390,MYA,,EL,b,Naypyidaw (mdy),19.624444,96.1975,,0.025,,8284,78,156,,,,,,22100037,,, +390,CHN,,LC,b,Hongkong Airport,22.3125,113.875,,0.025,,9183,63,160,,,,,,86605,,, +390,TWN,,DC,b,Kaohsiung (KHS),22.604167,120.291667,,0.025,,9537,58,161,,,,,9s,84136,,, +390,INS,,OU,b,Banjarmasin (KS-kbm),-3.4375,114.791667,,0.025,,11556,77,168,,,,,,84152,,, +390,CHL,,BAL,b,Balmaceda,-45.9375,-71.708333,,0.025,,13191,231,174,,,,,L1053 8343s,86602,,, +390,NZL,,HN,b,Hamilton (WKO),-37.854167,175.291667,,0.13,,18209,33,183,,,,0,L1020 U1020 4s,84143,,, +390.5,F,,ITR,b,Istres / Le Tub (13),43.520833,4.958333,,0.025,,961,187,83,,,,-390.5,L9 19.2s,ID+16 tone,84165,, +391,SVK,,OKR,b,Bratislava / M.R Stefanik / North (BA),48.229167,17.291667,,2,,886,115,63,,,,4,L1020 U1022 10.0s,84190,,, +391,F,,BV,b,Beauvais / Tille (80),49.479167,2.041667,,0.02,,424,228,78,,,,,L395 U409 10.1s,84171,,, +391,XOE,,SIR,b,Siri Platform,56.479167,4.875,,0.025,,496,349,78,,,,995,L400 U390 6.0s,84195,,, +391,F,,CC,b,Chalon / Champforgueuil (71),46.729167,4.875,,0.025,,608,191,79,,,,,L400 U406 ,ID+7 gap,84172,, +391,ROU,,IAS,b,Iasi (IS),47.229167,27.541667,,0.025,,1608,101,89,,,,13,L1064 U1095 ,ID+1 gap,84183,, +391,JOR,,JYO,b,Amman/Marka International (amn),32.020833,36.041667,,0.025,,3271,121,106,,,,,U1090 ,84184,,, +391,GRL,,MA,b,Maniitsoq (Kitaa) (qqa-maq),65.395833,-52.958333,,0.025,,3561,318,109,,,,0,L400 U400 ,84186,,, +391,IRN,,MIS,b,Masjed Soleiman (kuz),31.9375,49.291667,,0.025,,4106,106,114,,,,0,L1019 U1020 ,ID+6 tone,84188,, +391,CAN,,3B,b,Brockville (ON),44.6875,-75.708333,,0.1,,5789,297,125,,,,993,L411 U403 9.7s,DAID,84166,, +391,PTR,,DDP,b,San Juan / Dorado / Luiz Munoz Marin Intl (PR),18.479167,-66.375,,2,,7228,268,126,,,,7,L1031 U1045 10.5s,ID+6 gap,84175,, +391,CAN,,4W,b,Kelsey (MB),56.020833,-96.541667,,0.025,,6085,318,134,,,,,U391 10.3s,DAID,84167,, +391,CAN,,OO,b,Oshawa (ON),43.9375,-78.875,,0.007,,6035,298,139,,,,995,L405 U404 10223s,DAID,84191,, +391,USA,,CM,b,Sumie Columbus (OH),39.979167,-82.791667,,0.025,,6571,297,139,,,,996,L1042 U1040 8003s,84173,,, +391,ALS,,EAV,b,Evansville Bettles (AK),66.895833,-151.541667,,0.025,,6653,350,140,,,,2,L1026 U1026 8.2s,84176,,, +391,CAN,,D5,b,Melfort (SK),52.854167,-104.791667,,0.025,,6709,320,140,,,,,,84174,,, +391,CAN,,D9,b,Melfort (SK),52.854167,-104.791667,,0.025,,6709,320,140,,,,,U986 10458s,86607,,, +391,USA,,CPB,b,Culver (IN),41.229167,-86.375,,0.025,,6689,300,140,,,,,L1040 U1015 7.4s,86606,,, +391,CAN,,G6,b,La Biche River (YT),60.145833,-124.041667,,0.025,,6773,334,141,,,,,U300 6.37s,NO DAID,84181,, +391,TZA,,AR,b,Arusha (ars),-3.367778,36.620278,,0.025,,6793,145,141,,,,,,11400001,,, +391,ALS,,EEF,b,Elephant Sisters Island (AK),58.1875,-135.291667,,0.025,,7270,339,146,,,,995,L1040 U1031 8.4s,84177,,, +391,USA,,BHN,b,Buckhorn Fort Leonard Wood (MO),37.6875,-92.125,,0.025,,7314,301,146,,,,976,L1058 U1010 8.2s,84170,,, +391,USA,,MQD,b,Mc Dowell Creek Manhattan (KS),39.104167,-96.625,,0.025,,7453,305,148,,,,,U1039 6.6s,84189,,, +391,USA,,AEE,b,Antlers (OK),34.1875,-95.625,,0.025,,7814,301,151,,,,,L1135 U1012 4028s,84168,,, +391,USA,,EBY,b,Neah Bay (WA),48.354167,-124.541667,,0.025,,7917,328,152,,,,,,87203,,, +391.5,G,,EAS,b,Southampton / Eastleigh (EN-HPS),50.9375,-1.375,,0.025,,554,259,79,,,,512,L391 U419 4.5s,84200,,, +392,D,,RW,b,Berlin / Tegel / West (brb),52.5625,13.125,,0.05,,459,81,75,,,,2,L1022 U1022 10.0s,84226,,, +392,F,,AS,b,Angers / Avrill (49),47.520833,-0.625,,0.025,,717,227,80,,,,,L405 U400 10.0s,ID+9 gap,84203,, +392,FIN,,GDY,b,Mariehamn / Godby,60.1875,19.958333,,0.025,,1225,38,85,,,,0,L411 U400 8.0s,ID+4 gap,84212,, +392,FIN,,RAN,b,Lappeenranta / Ranta,61.020833,28.041667,,0.025,,1642,44,89,,,,997,L403 U409 8.0s,84225,,, +392,ALG,,BO,b,Annaba / El Mellah (23),36.8125,7.791667,,0.025,,1704,176,90,,,,,,84205,,, +392,GRC,,KOR,b,Korinthos for Athnai (pel-kor),37.9375,22.958333,,0.04,,2033,134,91,,,,0,L400 U400 ,ID+11 gap,84217,, +392,ISL,,KF,b,Keflavk (sn),63.979167,-22.708333,,0.025,,2131,319,94,,,,7,L1013 U1017 ,DAID,84216,, +392,RUS,,YU,b,Buturlinovka Air Base,50.8125,40.625,,0.025,,2353,80,97,,,,,L1020 15.0s,IDx2,86610,, +392,LBY,,LAB,b,Labraq / El Beida (jak),32.770833,21.958333,,0.025,,2489,144,98,,,,998,L400 U397 ,ID+5 tone,84218,, +392,TUR,,AKC,b,Trabzon (kdz-tbz),41.104167,39.458333,,0.025,,2773,103,101,,,,,U1025 ,ID+6 gap,84202,, +392,RUS,,PG,b,Buguruslan / Severnyj (OB),53.729167,52.375,,0.025,,3033,68,103,,,,,15.0s,IDx2 + 4 gap,84223,, +392,RUS,,L,b,Chelyabinsk / Balandino,55.3125,61.458333,,0.025,,3545,62,108,,,,,,86609,,, +392,CAN,,ML,b,Charlevoix (QC),47.604167,-70.291667,,0.5,,5260,297,113,,,,997,U404 10.3s,DAID,84219,, +392,USA,,MM,b,Moree Morristown (NJ),40.895833,-74.375,,0.025,,5979,292,133,,,,,L1042 U1037 5487s,84221,,, +392,CAN,,ZFN,b,Tulita (NT),64.895833,-125.541667,,0.05,,6370,338,134,,,,,U399 10.2s,DAID,84232,, +392,USA,,CVX,b,Charlevoix (MI),45.3125,-85.291667,,0.025,,6311,303,136,,,,0,L1023 U1028 7402s,AWOS-3,84209,, +392,USA,,CF,b,Pubbs Chesterfield (VA),37.3125,-77.458333,,0.025,,6445,291,137,,,,,U1026 ,84208,,, +392,USA,,HIB,b,Hibbing / Chrisholm (MN),47.3125,-92.708333,,0.025,,6567,309,139,,,,,,87206,,, +392,USA,,XVG,b,Longville (MN),46.979167,-94.208333,,0.025,,6673,309,140,,,,,L1012 U1044 5.03s,84231,,, +392,CAN,,W1,b,Hardisty (AB),52.645833,-111.375,,0.025,,7008,323,143,,,,,U~404 ,DAID,84230,, +392,USA,,BKO,b,Barnwell (SC),33.354167,-81.458333,,0.025,,7012,291,143,,,,,U1020 ,87204,,, +392,USA,,JNM,b,Monroe (GA),33.729167,-83.708333,,0.025,,7125,292,144,,,,9,L1010 U1041 13.98s,84214,,, +392,USA,,VEP,b,Vero Beach (FL),27.645833,-80.458333,,0.049,,7414,286,144,,,,990,L1045 U1026 7816s,84229,,, +392,USA,,AGZ,b,Wagner (SD),43.0625,-98.291667,,0.025,,7211,309,145,,,,,U1001 7.3s,84201,,, +392,USA,,HEI,b,Hettinger (ND),46.020833,-102.625,,0.025,,7184,313,145,,,,,,87205,,, +392,USA,,FMZ,b,Beklof Fairmont (NE),40.604167,-97.541667,,0.025,,7377,306,147,,,,,U1030 7.2s,84211,,, +392,USA,,EUR,b,Eureka (MT),48.979167,-115.125,,0.025,,7492,323,148,,,,,U1023 6.5s,84210,,, +392,USA,,BAJ,b,Batten Sterling (CO),40.520833,-103.208333,,0.025,,7689,310,150,,,,991,L1046 U1022 7.8s,84204,,, +392,USA,,ML,b,Sabar Monroe (LA),32.4375,-92.125,,0.025,,7754,297,151,,,,997,L1037 U1031 5770s,84220,,, +392,USA,,PNA,b,Wenz Pinedale (WY),42.8125,-109.791667,,0.025,,7815,316,151,,,,990,L1055 U1033 8.0s,84224,,, +392,BLZ,,BZE,b,Belize City (bz),17.520833,-88.291667,,0.025,,8792,285,159,,,,877,L1017 U1020 5601s,84206,,, +392.5,I,,TOP,b,Torino / Poirino (to),44.9375,7.875,,0.025,,805,172,81,,,,500,L1018 U1021 10.0s,ID+6 gap,84233,, +393,XOE,,EKP,b,K5-ACP Platform,53.6875,3.375,,0.025,,269,312,76,,,,998,L1025 U1020 ,84243,,, +393,D,,EGG,b,Eggenfelden (bay),48.395833,12.708333,,0.025,,609,130,79,,,,6,L1016 U1021 10.3s,ID+7 gap,84242,, +393,XOE,,LOM,b,Amoco / Lomond,57.270833,2.208333,,0.025,,634,336,79,,,,,,86613,,, +393,XOE,,ARA,b,Amoco / Arbroath A Platform,57.354167,1.375,,0.025,,666,333,80,,,,,L399 U402 9.5s,86611,,, +393,XOE,,NET,b,North Everest Platform,57.770833,1.791667,,0.025,,695,337,80,,,,0,L400 U400 10.0s,84249,,, +393,G,,EMW,b,East Midlands (EN-DRB),52.8125,-1.458333,,0.015,,538,281,81,,,,19,L396 U423 9.8s,84244,,, +393,F,,BD,b,Bordeaux / Merignac (33),44.9375,-0.541667,,0.025,,947,215,82,,,,,L399 U409 10.0s,ID+8 gap,84237,, +393,F,,BX,b,Mende / Brenoux (48),44.479167,3.541667,,0.025,,874,195,82,,,,,L5 ,84239,,, +393,S,,AB,b,Hagfors,59.9375,13.625,,0.025,,978,24,83,,,,999,L400 U403 4.0s,84236,,, +393,NOR,,TAT,b,Molde / Aro / Tautra,62.6875,6.875,,0.025,,1176,1,85,,,,0,L372 U377 8.0s,84251,,, +393,E,,VL,b,Valladolid (CAL-VA),41.729167,-4.791667,,0.025,,1430,221,87,,,,986,L1057 U1028 7.4s,ID+4 gap,84255,, +393,ISL,,VP,b,Vopnafjordhur / Hofsa,65.729167,-14.875,,0.025,,1926,330,92,,,,,U1030 ,84256,,, +393,IRN,,RST,b,Rasht (gln),37.3125,49.625,,0.025,,3720,99,110,,,,995,L1027 U1028 ,ID+5 gap,84250,, +393,CAN,,2M,b,Opapimiskan Lake (Musselwhite Mine) (ON),52.604167,-90.375,,0.025,,6043,312,133,,,,1,L390 U395 10441s,DAID,84234,, +393,USA,,FGP,b,Fort Bragg (NC),35.145833,-78.791667,,0.04,,6699,290,138,,,,978,L1060 U1020 7152s,84245,,, +393,USA,,LA,b,Artda Lansing (MI),42.770833,-84.458333,,0.025,,6456,300,138,,,,994,L1040 U1028 8143s,84248,,, +393,CAN,,8N,b,Edson (AB),53.5625,-116.458333,,0.05,,7127,326,141,,,,,U389 10.4s,DAID,84235,, +393,USA,,XYC,b,Seco Irvine (KY),37.770833,-84.041667,,0.025,,6821,296,141,,,,,,87207,,, +393,ALS,,TOG,b,Togiak Togiak Village (AK),59.0625,-160.375,,0.05,,7596,353,146,,,,,L1060 ,84252,,, +393,USA,,BZ,b,Fossi Clinton (OK),35.4375,-99.208333,,0.025,,7913,304,152,,,,0,L1048 U1037 5.9s,84240,,, +393,USA,,BR,b,Depoo Brownsville (TX),25.979167,-97.541667,,0.025,,8643,297,158,,,,999,L1033 U1035 5836s,84238,,, +393,THA,,KN,b,Khon Kaen (kkn),16.479167,102.791667,,0.025,,8994,75,160,,,,,,84247,,, +393,FSM,,UKS,b,Kosrae Island (ksa),5.354167,162.958333,,0.025,,13250,27,174,,,,0,L982 U1023 ,84253,,, +394,D,,LYE,b,Lubeck / Blanckensee (shs),53.8125,10.708333,,0.025,,344,55,76,,,,0,L1022 U1016 ,ID+2 gap,84267,, +394,E,,IZA,b,Ibiza=Eivissa (BAL-IB),38.895833,1.458333,,0.25,,1518,197,78,,,,3,L1010 U1016 8.8s,ID+5 gap,84265,, +394,F,,NV,b,Nevers / Fourchambault (58),46.9375,3.208333,,0.025,,620,203,79,,,,,U5 20.0s,ID+17 tone,84271,, +394,G,,DND,b,Dundee (SC-PEK),56.4375,-3.125,,0.025,,783,312,81,,,,991,L408 U385 ,84258,,, +394,SVN,,MEL,b,Metlika,45.645833,15.291667,,0.04,,967,134,81,,,,5,L1027 U1028 8.2s,ID+5 gap,84268,, +394,XOE,,BCE,b,BP / Bruce Alpha,59.729167,1.708333,,0.025,,896,343,82,,,,,,86614,,, +394,S,,NB,b,Bromma,59.395833,17.791667,,0.025,,1076,37,84,,,,30,L400 U409 4.0s,84270,,, +394,FIN,,JOK,b,Kauhajoki,62.479167,22.625,,0.025,,1501,34,88,,,,0,L407 U410 8.6s,84266,,, +394,GRC,,GDA,b,Alexandreia (cmc-ima),40.645833,22.458333,,0.025,,1765,130,91,,,,0,,ID+3 gap,84263,, +394,CAN,,PS,b,Greenwood (NS),44.479167,-64.625,,0.025,,5109,290,124,,,,,,87209,,, +394,CAN,,YB,b,North Bay (ON),46.395833,-79.458333,,0.15,,5892,301,124,,,,,U428 9.82s,DAID,87211,, +394,USA,,PW,b,Orham Portland (ME),43.645833,-70.458333,,0.025,,5536,293,128,,,,,L~1000 ,87210,,, +394,USA,,PWM,b,Orham Portland (ME),43.645833,-70.458333,,0.025,,5536,293,128,,,,,L~1000 ,84272,,, +394,USA,,AI,b,Video Anderson (IN),40.0625,-85.541667,,0.025,,6731,299,140,,,,,L1052 U1040 6.10s,86819,,, +394,USA,,OR,b,Chstr (IL),42.0625,-88.041667,,0.025,,6721,302,140,,,,,,87208,,, +394,CAN,,DQ,b,Dawson Creek (BC),55.729167,-120.041667,,0.05,,7057,330,141,,,,,U409 10.4s,DAID,84259,, +394,USA,,RGK,b,Red Wing (MN),44.604167,-92.458333,,0.025,,6769,306,141,,,,,,84273,,, +394,USA,,SP,b,Snore Spencer (IA),43.229167,-95.291667,,0.025,,7035,307,143,,,,5,L395 U410 5338s,84276,,, +394,USA,,DTE,b,Mark Anton Dayton (TN),35.479167,-84.958333,,0.025,,7062,295,144,,,,0,L1015 U1011 4614s,84260,,, +394,USA,,EZZ,b,Cameron (MO),39.729167,-94.291667,,0.025,,7269,304,146,,,,0,L1030 U1025 4.9s,84262,,, +394,USA,,MK,b,Mersy Jackson (TN),35.520833,-88.958333,,0.025,,7304,297,146,,,,4,L1017 U1027 8.6s,84269,,, +394,USA,,RO,b,Roeby Birmingham (AL),33.604167,-86.708333,,0.025,,7323,294,146,,,,986,L1054 U1026 5698s,84274,,, +394,ALS,,RWO,b,Woody Island Kodiak (AK),57.770833,-152.291667,,0.025,,7645,348,149,,,,993,L1035 U1025 8.6s,TWEB,84275,, +394,USA,,ENZ,b,Nogales (AZ),31.4375,-110.875,,0.1,,8910,310,153,,,,985,L1050 U1022 8009s,84261,,, +395,HOL,,OA,b,Amsterdam / Schiphol / Assendelft (nho),52.479167,4.791667,,0.015,,117,291,64,,,,989,L442 U419 ,84306,,, +395,DNK,,GE,b,Billund (sdk),55.4375,9.041667,,0.025,,408,24,77,,,,5,L395 U406 9.8s,84291,,, +395,MLT,,MLT,b,Malta (mt),35.8125,14.541667,,0.4,,1923,157,80,,,,31,L1024 U1026 7.3s,ID+4.5 gap,84304,, +395,F,,GSG,b,Gourin (56),48.145833,-3.625,,0.025,,839,242,81,,,,,U3 ,ID+15 tone,84292,, +395,IRL,,FOY,b,Foynes for Shannon (LK),52.5625,-9.208333,,0.05,,1060,279,81,,,,10,L390 U400 6.1s,ID+3 gap,84288,, +395,F,,FC,b,Figeac / Livernon (46),44.6875,1.791667,,0.025,,893,204,82,,,,,L46 ,DAID,84287,, +395,G,,LAY,b,Islay (SC-AGB),55.6875,-6.208333,,0.025,,916,301,82,,,,0,L412 U401 ,84300,,, +395,F,,OB,b,Marseille / Provence (13),43.229167,5.625,,0.025,,989,184,83,,,,,L405 U403 10.0s,84307,,, +395,HNG,,BR,b,Budapest/Ferenc Liszt Int. (Bud),47.395833,19.375,,0.025,,1067,114,84,,,,998,L1024 U1017 ,ID+8gap,84282,, +395,E,,B,b,Bilbao (PVA-BI),43.354167,-3.041667,,0.025,,1201,220,85,,,,994,L1008 U1010 7.4s,ID+9 gap,84281,, +395,UKR,,LE,b,Krasnolesye / Tchervonolissia,44.854167,34.291667,,0.025,,2191,100,95,,,,964,L1020 U949 ,IDx2 + 23 gap,84302,, +395,MRC,,SFI,b,Safi (dka),32.3125,-9.125,,0.025,,2534,216,98,,,,,U400 9.16s,84312,,, +395,LBY,,PRC,b,Zella 74 (juf),28.5625,17.291667,,0.025,,2769,157,101,,,,995,L1030 U1020 6.6s,ID+2 gap,84311,, +395,TUR,,ADA,b,Adana-Sakirpasa LTAF (akd-ada),36.970972,35.261514,,0.025,,2809,115,101,,,,0,L1025 U1020 ,ID+7 gap,84279,, +395,ARM,,ZR,b,Yerevan / Zvarnots (erv),40.145833,44.291667,,0.025,,3162,100,105,,,,,,84322,,, +395,CAN,,YL,b,Lynn Lake (MB),56.8125,-101.041667,,1.6,,6223,321,117,,,,,U408 10.3s,DAID,84321,, +395,IRN,,TBS,b,Tabas (skh),33.645833,56.875,,0.025,,4481,97,118,,,,994,L1024 U1020 ,ID+8 gap,84315,, +395,USA,,SL,b,Briel Saranac Lake (NY),44.479167,-74.125,,0.025,,5706,296,130,,,,998,L1020 U1018 8600s,84313,,, +395,USA,,GBR,b,Great Barrington (MA),42.1875,-73.375,,0.025,,5822,293,131,,,,999,L1024 U1026 5524s,84289,,, +395,CAN,,L7,b,Estevan (SK),49.229167,-102.875,,0.25,,6925,316,132,,,,,U428 9.9s,DAID,84299,, +395,CAN,,H7,b,#NAME?,53.979167,-91.041667,,0.025,,5976,314,133,,,,,,87212,,, +395,USA,,TSO,b,Tolson Carrollton (OH),40.5625,-81.041667,,0.025,,6419,296,137,,,,999,L1028 U1027 5.30s,84316,,, +395,USA,,OS,b,Pober Oshkosh (WI),43.854167,-88.541667,,0.025,,6609,303,139,,,,3,L1020 U1040 6014s,84308,,, +395,USA,,XEN,b,Xenia (OH),39.729167,-83.958333,,0.025,,6662,297,140,,,,985,L1090 U1060 5648s,84320,,, +395,CAN,,5V,b,Drumheller (AB),51.520833,-112.791667,,0.05,,7166,323,142,,,,,U400 10.46s,DBID,84278,, +395,USA,,JM,b,Sabon Jamestown (ND),46.854167,-98.541667,,0.025,,6909,312,142,,,,975,L1059 U1019 6.07s,84295,,, +395,USA,,TAZ,b,Taylorville (IL),39.520833,-89.291667,,0.025,,6997,300,143,,,,9,L1024 U1025 5891s,TWEB,84314,, +395,USA,,CWV,b,Claxton (GA),32.1875,-81.875,,0.025,,7134,290,144,,,,992,L1071 U1078 6275s,84286,,, +395,MEX,,GD,b,Guadalajara (Jalisco) (jal),20.479167,-103.208333,,1,,9479,298,145,,,,26,L909 U1037 7.0s,DB3ID,84290,, +395,USA,,HR,b,Bakky Harrison (AR),36.145833,-93.125,,0.025,,7501,300,148,,,,,L1042 U1032 5.9s,86820,,, +395,USA,,CA,b,Harvs Newton (KS),38.145833,-97.291667,,0.025,,7572,305,149,,,,5,L1042 U1050 6.3s,84283,,, +395,USA,,ULS,b,Ulysses (KS),37.604167,-101.375,,0.025,,7845,307,151,,,,0,L1015 U1012 7.60s,84317,,, +395,USA,,HU,b,Tutte Houston (TX),29.604167,-95.375,,0.025,,8194,298,155,,,,12,L1035 U1060 ,84293,,, +395,CLN,,KG,b,Koggala (gle),5.994722,80.323056,,0.025,,8387,99,157,,,,,,34700021,,, +395,CLM,,CU,b,Ccuta (nsa),8.020833,-72.541667,,0.025,,8551,266,158,,,,997,L1036 U1030 7.32s,84285,,, +395,B,,PNC,b,Porto Nacional (TO),-10.729167,-48.375,,0.025,,8718,235,159,,,,,L1022 U1113 ,84310,,, +395,CTR,,PAR,b,Parrita,9.520833,-84.291667,,0.025,,9221,276,160,,,,,U1009 7163s,86821,,, +395,AUS,,MOG,b,Mount Magnet (WA),-28.0625,117.875,,0.025,,13868,92,176,,,,,L1020 8s,84305,,, +395,AUS,,PMQ,b,Port MacQuarie (NSW),-31.4375,152.875,,0.025,,16461,63,184,,,,,L400 U400 8s,84309,,, +396,XOE,,EUP,b,Europa EZ,53.229167,2.291667,,0.025,,304,296,76,,,,,L405 U397 5.4s,86618,,, +396,NOR,,YG,b,Rygge / Enge,59.354167,10.791667,,0.025,,850,17,81,,,,0,L399 U401 10.0s,84350,,, +396,F,,ROC,b,Rochefort / St Agnant (17),45.895833,-0.958333,,0.025,,874,221,82,,,,,U5 ,ID+14 tone,84344,, +396,I,,RON,b,Ronchi dei Legionari (go),45.8125,13.375,,0.025,,865,141,82,,,,12,L1020 U1045 ,ID+4.5 gap,84345,, +396,ROU,,SCV,b,Suceava / Salcea (SV),47.645833,26.375,,0.025,,1508,101,88,,,,4,L1020 U1020 4.6s,Cont. ID,84346,, +396,POR,,AI,b,Aveiro (avo),40.604167,-8.708333,,0.025,,1720,228,90,,,,0,L1020 U1020 ,84323,,, +396,NOR,,FS,b,Harstad / Narvik / Evenes / Fjellstad,68.604167,16.708333,,0.025,,1913,13,92,,,,993,L399 U405 ,84331,,, +396,TUR,,IS,b,Istanbul (mam-ist),41.0625,28.791667,,0.025,,2092,117,94,,,,936,L1100 U972 ,Cont. ID,84336,, +396,GRL,,MV,b,Mestersvig (neg),72.229167,-23.958333,,0.025,,2673,338,100,,,,,U400 ,84341,,, +396,MRC,,ALS,b,Agadir / Al Massira (smd),30.3125,-9.291667,,0.025,,2743,214,100,,,,0,L400 U399 10.4s,ID+7 gap,84325,, +396,CAN,,JC,b,Rigolet (NL),54.1875,-58.458333,,0.5,,4178,300,102,,,,2,L400 U394 10.4s,DAID,84337,, +396,SYR,,ALE,b,Aleppo (alp),36.1875,37.208333,,0.025,,2992,114,103,,,,0,L409 U400 ,ID+7 gap,84324,, +396,CAN,,PH,b,Inukjuak (QC),58.4375,-78.125,,0.5,,5040,313,110,,,,,L400 U400 10.2s,DAID,87215,, +396,CAN,,YPH,b,Inukjuak (QC),58.4375,-78.125,,0.5,,5040,313,110,,,,2,L400 U401 10249s,DAID,84351,, +396,USA,,NEL,b,Lakehurst (NJ),40.0625,-74.375,,0.025,,6040,292,133,,,,33,L1002 U1070 6262s,84342,,, +396,USA,,APH,b,Fort A P Hill (VA),38.104167,-77.291667,,0.025,,6373,292,137,,,,0,L1038 U1040 7992s,84326,,, +396,USA,,LNL,b,Land O Lakes (WI),46.145833,-89.208333,,0.025,,6468,306,138,,,,5,L1010 U1016 6246s,84340,,, +396,USA,,UV,b,Bales Martinsville (VA),36.604167,-79.958333,,0.025,,6658,292,140,,,,997,L1025 U1019 4183s,84348,,, +396,USA,,JJO,b,Mountain City (TN),36.395833,-81.791667,,0.025,,6790,293,141,,,,996,L1028 U1017 7881s,84338,,, +396,USA,,GOI,b,Godman Fort Knox (KY),37.979167,-85.958333,,0.025,,6922,297,142,,,,987,L1041 U1021 8192s,84332,,, +396,USA,,BKO,b,Barnwell (SC),33.354167,-81.458333,,0.025,,7012,291,143,,,,997,L1022 U1016 ,84327,,, +396,ALS,,CMJ,b,Clam Cove Ketchikan (AK),55.354167,-131.708333,,0.025,,7460,336,148,,,,993,L1047 U1034 ,84328,,, +396,BAH,,ZBB,b,South Bimini,25.729167,-79.291667,,0.025,,7496,283,148,,,,,,87216,,, +396,USA,,HDE,b,Holdrege (NE),40.4375,-99.375,,0.025,,7492,307,148,,,,983,L1070 U1025 4571s,84333,,, +396,USA,,CQB,b,Tilghman Chandler (OK),35.729167,-96.791667,,0.025,,7750,303,150,,,,,U998 5.83s,84329,,, +396,BGD,,CB,b,Cox's Bazar (cgg),21.452778,91.965556,,0.025,,7845,80,151,,,,,,36300003,,, +396,USA,,PA,b,Ritts Everett (WA),48.0625,-122.291667,,0.025,,7862,326,152,,,,980,L1055 U1020 5.88s,84343,,, +396,USA,,CRS,b,Corsicana (TX),32.020833,-96.375,,0.025,,8045,300,153,,,,993,L1021 U1018 6.5s,84330,,, +396,USA,,BNO,b,Burns (OR),43.5625,-118.958333,,0.025,,8158,322,155,,,,,U1032 ,87213,,, +396,USA,,IEW,b,Winters (TX),31.9375,-99.958333,,0.025,,8262,302,156,,,,7,L1010 U1005 4.60s,84335,,, +396,USA,,GOL,b,Gold Beach (Muni) (OR),42.4375,-124.458333,,0.025,,8490,325,158,,,,,,87214,,, +396.5,G,,PY,b,Plymouth / City (EN-DVN),50.4375,-4.125,,0.025,,755,260,81,,,,501,L396 U402 7.7s,ID+5 gap,84352,, +397,HOL,,EHN,b,Eindhoven/EHEH (nbr),51.467944,5.394861,,0.015,,100,225,58,,,,5,L400 U411,84364,,, +397,F,,BLB,b,Blois / Le Breuil (41),47.6875,1.208333,,0.025,,617,219,79,,,,,L407 U400 10.0s,ID+6 gap,84356,, +397,POL,,OL,b,Szczecin / Golienow,53.5625,14.958333,,0.025,,596,71,79,,,,2,L1015 U1015 5.5s,84374,,, +397,G,,LZD,b,Lydd (EN-KNT),50.979167,0.958333,,0.012,,397,254,80,,,,10,L397 U412 6.5s,84371,,, +397,F,,EG,b,Grenoble / St Geoirs (38),45.354167,5.375,,0.025,,755,186,81,,,,,L400 U404 10.3s,ID+8 gap,84363,, +397,S,,NF,b,Falkping,58.229167,13.625,,0.025,,819,31,81,,,,990,L410 U392 4.2s,84373,,, +397,BIH,,LU,b,Banja Luka (srp),44.979167,17.291667,,0.04,,1125,131,82,,,,983,L1053 U1040 ,ID+6 tone,84369,, +397,F,,ZR,b,Beziers / Vias (34),43.3125,3.291667,,0.025,,1005,195,83,,,,,L1 U28 ,DAID,84383,, +397,F,,PO,b,Pau / Pyrnes (64),43.3125,-0.125,,0.025,,1093,209,84,,,,,U5 ,84377,,, +397,IRL,,OP,b,Dublin (D),53.395833,-6.125,,0.015,,854,285,84,,,,998,L402 U404 9.8s,84375,,, +397,S,,LM,b,Borlnge / Rommehed / Falun,60.395833,15.625,,0.025,,1081,28,84,,,,995,L400 U390 5.0s,84368,,, +397,HRV,,CV,b,Dubrovnik / Cavtat (du),42.604167,18.208333,,0.025,,1377,135,87,,,,1,L1038 U1018 ,ID+5 gap,84362,, +397,ALG,,CHE,b,Cherchell (42),36.604167,2.208333,,0.04,,1755,192,88,,,,988,L1045 U1027 ,84358,,, +397,EST,,UM,b,Tartu/Ulenurme (Tar),58.3125,26.791667,,0.025,,1457,54,88,,,,3,L796 U798 7.5s,84379,,, +397,ALG,,CNE,b,Constantine / Ain-El-Bey (25),36.1875,6.708333,,0.025,,1771,179,91,,,,,U31 12.7s,ID+11 tone,84361,, +397,BUL,,WN,b,Varna (vrn),43.229167,27.708333,,0.025,,1865,114,92,,,,994,L1025 U1041 ,ID+4 gap,84381,, +397,GRC,,LVO,b,Mitilini/Odysses Elytis (neg-les),39.0625,26.595833,,0.025,,2125,125,94,,,,991,L343 U300 ,ID+6 gap,84370,, +397,ISL,,SE,b,Selfoss,63.9375,-21.041667,,0.025,,2056,320,94,,,,,,86621,,, +397,CNR,,FV,b,Fuerteventura (LPM-FU),28.395833,-13.875,,0.02,,3126,220,105,,,,,L1034 U1027 14.2s,84366,,, +397,TUR,,VAN,b,Van (dad-van),38.479167,43.375,,0.025,,3217,103,105,,,,983,L1065 U1030 ,Cont. ID,84380,, +397,IRN,,AA,b,Tehran / Mehrabad / Aliabad (thr),35.645833,51.458333,,0.025,,3965,99,113,,,,,,84353,,, +397,CAN,,J,b,Alpine / Saint John (NB),45.229167,-65.958333,,0.05,,5145,292,121,,,,,,87220,,, +397,CAN,,ZST,b,Alpine Saint John (NB),45.229167,-65.958333,,0.05,,5145,292,121,,,,,U419 10300s,DAID,84385,, +397,USA,,OW,b,Stoge Norwood (MA),42.104167,-71.125,,0.025,,5686,292,130,,,,988,L1058 U1036 6.13s,84376,,, +397,CAN,,3I,b,Mobil Sierra Fort Nelson (BC),58.8125,-121.375,,0.2,,6816,332,132,,,,,U407 10.0s,DAID,87217,, +397,CAN,,A,b,Hamilton (ON),43.1875,-80.041667,,0.014,,6160,298,137,,,,,,87218,,, +397,CAN,,ZHA,b,Ancaster (Hamilton) (ON),43.1875,-80.041667,,0.014,,6160,298,137,,,,998,L401 U401 10264s,DAID,84382,, +397,USA,,BE,b,Mally Benton Harbour (MI),42.145833,-86.291667,,0.025,,6612,301,139,,,,983,L1045 U1035 5894s,84355,,, +397,USA,,AIT,b,Aitkin (MN),46.5625,-93.708333,,0.025,,6680,309,140,,,,13,L978 U1046 7171s,84354,,, +397,CAN,,E,b,Saskatoon (SK),52.229167,-106.708333,,0.025,,6846,320,141,,,,,U390 ,DAID,87219,, +397,CAN,,ZSS,b,Yellowhead (Saskatoon) (SK),52.229167,-106.708333,,0.025,,6846,320,141,,,,,U397 10.5s,DAID,84384,, +397,USA,,MXO,b,Monticello (IA),42.1875,-91.125,,0.025,,6888,304,142,,,,,U1035 ,84372,,, +397,USA,,CIN,b,Carroll (IA),42.0625,-94.791667,,0.025,,7104,306,144,,,,,U1016 5.0s,84359,,, +397,USA,,EJK,b,Greensboro (GA),33.604167,-83.125,,0.025,,7098,292,144,,,,,,84365,,, +397,USA,,CIR,b,Cairo (IL),37.0625,-89.208333,,0.025,,7192,299,145,,,,,L1016 U1022 6.3s,84360,,, +397,USA,,JE,b,Algoa Jefferson City (MO),38.5625,-92.041667,,0.025,,7236,301,145,,,,999,L1052 U1050 5928s,84367,,, +397,USA,,LLJ,b,Challis (ID),44.520833,-114.208333,,0.05,,7863,319,149,,,,,,87221,,, +397,USA,,BWK,b,Bunkie (LA),30.854167,-92.208333,,0.025,,7894,296,152,,,,988,L1053 U1027 7.8s,84357,,, +397,USA,,SB,b,Petis San Bernardino (CA),34.0625,-117.375,,0.05,,8990,316,157,,,,965,L1056 U988 6.0s,84378,,, +397,MYA,,MDS,b,Mingaladon (Yangon) (ygn),16.874444,96.109722,,0.025,,8515,80,158,,,,,,22100014,,, +397.5,XOE,,NIA,b,Brittania Platform,58.0625,1.125,,0.025,,742,335,80,,,,500,L~400 U~400 ,84386,,, +398,XOE,,KCH,b,Ketch / Shell Uk Ltd Platform,54.0625,2.458333,,0.025,,342,311,76,,,,,L388 U391 ,86622,,, +398,F,,LRN,b,Lorquin / Xouaxange (57),48.6875,6.958333,,0.025,,383,174,77,,,,,U10 ,84401,,, +398,F,,MT,b,St Nazaire / Montoir (44),47.354167,-2.041667,,0.05,,804,232,78,,,,,L398 U402 ,84404,,, +398,DNK,,GL,b,Aalborg (njy),57.104167,9.708333,,0.025,,594,20,79,,,,999,L364 U363 5.0s,84395,,, +398,F,,LPD,b,Montlucon / Gueret (03),46.3125,2.375,,0.025,,708,206,80,,,,,U37 ,ID+17 tone,84400,, +398,IRL,,OK,b,Connaught (MO),53.9375,-8.708333,,0.025,,1029,287,83,,,,1,L1021 U1026 ,ID+5 gap,84407,, +398,S,,PEO,b,Stockhlom / Skavsta / Peola,58.8125,17.041667,,0.025,,1000,38,83,,,,997,L401 U394 ,84410,,, +398,I,,PRU,b,Perugia / San Egidio (pg),43.104167,12.541667,,0.025,,1101,153,84,,,,999,L1019 U1020 ,ID+6 gap,84411,, +398,NOR,,AL,b,Alesund / Vigra,62.604167,6.208333,,0.025,,1167,359,85,,,,2,L396 U388 7.5s,84388,,, +398,FIN,,ESS,b,Kokkola-Pietarsaari /Kruunupyy / Esse,63.645833,23.125,,0.025,,1609,31,89,,,,3,L405 U409 8.5s,84393,,, +398,MDA,,LD,b,Chişinău (CU),46.9375,29.041667,,0.025,,1723,100,90,,,,0,L400 U400 ,84399,,, +398,MDA,,RG,b,Chişinău (CU),46.9375,28.875,,0.025,,1712,101,90,,,,0,L1050 U1050 ,IDx2,84412,, +398,RUS,,L,b,Korenovsk,45.4375,39.458333,,0.025,,2508,94,98,,,,,L413 U405 ,IDX2 + 10 gap,86623,, +398,UZB,,NO,b,Termez (sux),37.299722,67.364722,,0.025,,4928,84,122,,,,,,84406,,, +398,CHN,,RM,b,Urumqi / Diwopu (XJ),43.9375,87.625,,0.025,,5786,65,131,,,,,U1035 14.05s,IDx2 + 10 gap,84413,, +398,CAN,,G,b,Golf / Windsor (ON),42.229167,-83.041667,,0.025,,6413,299,137,,,,,,87222,,, +398,CAN,,ZQG,b,La Salle (Windsor) (ON),42.229167,-83.041667,,0.025,,6413,299,137,,,,,U403 10.5s,DAID,87223,, +398,CAN,,3D,b,Cumberland House (SK),53.9375,-102.291667,,0.025,,6508,319,138,,,,,U405 8.14s,84387,,, +398,USA,,TGQ,b,Elizabethtown (NC),34.520833,-78.541667,,0.025,,6732,290,140,,,,0,L1023 U1024 4482s,84414,,, +398,CAN,,YOD,b,Cold Lake (AB),54.395833,-110.291667,,0.025,,6811,324,141,,,,976,L1048 U1000 8.4s,DAID,84415,, +398,KEN,,RA,b,Manyani (coa),-3.102222,38.500833,,0.025,,6841,143,141,,,,,,8300007,,, +398,USA,,HFY,b,Greenwood Indianapolis (IN),39.645833,-86.125,,0.025,,6799,299,141,,,,983,L1021 U1024 6790s,84396,,, +398,AUS,,BOU,b,Boulia (QLD),-22.895833,139.875,,0.025,,14914,69,179,,,,,L400 U400 8s,84391,,, +398,NZL,,OT,b,Westpoint (AUK),-37.0625,174.625,,0.13,,18105,33,183,,,,997,L1040 U1020 8s,84409,,, +399,D,,WBD,b,Wiesbaden (hes),50.0625,8.291667,,0.05,,263,149,73,,,,989,L1045 U1023 8.2s,84431,,, +399,G,,NGY,b,New Galloway for Prestwick (SC-DGA),55.1875,-4.208333,,0.08,,778,300,76,,,,991,L416 U401 6.0s,ID+2 gap,84425,, +399,S,,FM,b,Trollhttan/Vnersborg,58.354167,12.291667,,0.025,,787,26,81,,,,0,L398 U406 5.0s,84420,,, +399,E,,MTN,b,Salamanca / Matacan (CAL-SA),40.979167,-5.291667,,0.1,,1523,220,82,,,,989,L1033 U1011 11.7s,ID+8 gap,84424,, +399,E,,EAG,b,Logroo / Agoncillo (RIO-LO),42.4375,-2.291667,,0.025,,1258,215,86,,,,,L1082 U1020 7.3s,ID+5 gap,86624,, +399,FIN,,O,b,Rovaniemi / Somerharju,66.5625,25.791667,,0.025,,1929,26,92,,,,996,L408 U400 ,84426,,, +399,NOR,,BV,b,Berlevg (fi),70.854167,29.041667,,0.025,,2373,20,97,,,,5,L278 U481 ,84418,,, +399,JOR,,MDB,b,Amman / Queen Alia Intl / Madaba (amn),31.729167,35.875,,0.06,,3287,122,102,,,,0,L1027 U1030 ,ID+3 gap,84423,, +399,GRL,,UP,b,Upernavik (Kitaa) (qaa-upk),72.8125,-56.125,,0.025,,3681,331,110,,,,44,L362 U463 9.2s,84430,,, +399,UAE,,AIN,b,Al Ain Int. (abd),24.229167,55.625,,0.025,,5159,108,125,,,,,,84417,,, +399,USA,,RL,b,Bracy Waterville (ME),44.479167,-69.708333,,0.025,,5431,293,127,,,,995,L1024 U1015 8600s,84427,,, +399,CAN,,4M,b,Red Sucker Lake (MB),54.1875,-93.541667,,0.05,,6082,315,131,,,,,U442 10.04s,DAID,84416,, +399,CAN,,D,b,Delta / Dryden (ON),49.8125,-92.625,,0.025,,6368,311,137,,,,,,87225,,, +399,CAN,,ZHD,b,Thunder Dryden (ON),49.8125,-92.625,,0.025,,6368,311,137,,,,0,L400 U405 10.5s,DAID,84432,, +399,CAN,,C1,b,Airdrie (AB),51.270833,-113.958333,,0.025,,7236,323,145,,,,,,87224,,, +399,ALS,,SRI,b,Pribilof St George (AK),56.5625,-169.625,,0.05,,7926,358,149,,,,999,L1049 U1049 7.86s,84429,,, +399.5,BEL,,ONO,b,Oostende (vlg-wvl),51.229167,2.958333,,0.025,,257,249,76,,,,503,L400 U1022 13.5s,84433,,, +400,HRV,,BRZ,b,Rijeka / Krk / Breza (ri),45.4375,14.375,,2,,943,139,63,,,,1,L1024 U1027 ,ID+4 gap,84442,, +400,D,,MSW,b,Mnchen (bay),48.3525,11.903889,,0.1,,572,135,73,,,,,U1027 5.5s,84462,,, +400,XOE,,CLW,b,Maersk Curlew FPSO,56.729167,1.291667,,0.025,,611,329,79,,,,,,86627,,, +400,NOR,,NTD,b,Notodden,59.604167,9.125,,0.025,,850,10,81,,,,993,L376 U379 ,84465,,, +400,F,,AG,b,Agen / La Garenne (47),44.145833,0.708333,,0.025,,981,208,83,,,,,U5 19.8s,ID+16 tone,84437,, +400,S,,EN,b,rebro,59.270833,15.041667,,0.025,,961,31,83,,,,2,L398 U392 ,84446,,, +400,XOE,,NS,b,Kerr Mc Gee / Chevron Ninian South Platform,60.8125,1.458333,,0.025,,1014,345,83,,,,,U1020 ,84464,,, +400,HNG,,BC,b,Bkscsaba (Bek),46.6875,21.125,,0.025,,1220,114,85,,,,993,L1041 U1033 ,ID+2 gap,84441,, +400,E,,B,b,Valncia / Manises (VAL-V),39.479167,-0.458333,,0.025,,1500,203,88,,,,0,L999 U1020 ,ID+3 tone,84440,, +400,ISL,,OG,b,safjrur/Ogur (vf),66.0625,-22.708333,,0.025,,2237,325,95,,,,,U1010 8.4s,86629,,, +400,RUS,,I,b,Lipetsk (LI),52.6875,39.541667,,0.025,,2229,75,95,,,,,15.0s,IDx2 + 12 tone,86628,, +400,CAN,,ZYG,b,Covehead (Charlottetown) (PE),46.354167,-63.125,,0.05,,4893,291,119,,,,,U420 ,DAID,84485,, +400,CAN,,G,b,Charlottetown / Covehead (PE),46.354167,-63.125,,0.025,,4893,291,122,,,,,,DAID,87227,, +400,USA,,PTD,b,Potsdam (NY),44.729167,-74.875,,0.025,,5735,296,130,,,,0,L1015 U1010 5759s,84470,,, +400,USA,,FO,b,Squir Westhampton Beach (NY),40.895833,-72.541667,,0.025,,5863,291,132,,,,,U1019 4804s,84451,,, +400,B,,NTL,b,Natal (RN),-5.895833,-35.208333,,1,,7554,225,133,,,,,U1018 ,84466,,, +400,USA,,RO,b,Breit Rochester (NY),43.145833,-77.541667,,0.025,,6011,296,133,,,,981,L1055 U1016 6232s,84473,,, +400,USA,,AB,b,Leehi Allentown (PA),40.604167,-75.541667,,0.025,,6074,293,134,,,,,L1032 ,84436,,, +400,CAN,,7F,b,Collins Bay (SK),58.229167,-103.708333,,0.025,,6223,323,135,,,,998,L399 U400 8.19s,84435,,, +400,USA,,CI,b,Koloe Sault Ste. Marie (MI),46.3125,-84.541667,,0.025,,6193,303,135,,,,984,L1050 U1018 5735s,84444,,, +400,USA,,NHK,b,Patuxent Patuxent River (MD),38.270833,-76.375,,0.025,,6302,291,136,,,,974,L1050 U1012 8.50s,84463,,, +400,USA,,SLW,b,Smithville (OH),40.895833,-81.791667,,0.025,,6439,297,137,,,,,,84476,,, +400,CAN,,1L,b,Fort Mackay/Firebag (AB),57.270833,-110.958333,,0.025,,6589,326,139,,,,,L402 U400 8.10s,DAID,84434,, +400,USA,,CKN,b,Crookston (MN),47.854167,-96.625,,0.025,,6729,311,140,,,,2,L1005 U1024 34000s,AWOS-3,84445,, +400,USA,,FGX,b,Flemingsburg (KY),38.520833,-83.708333,,0.025,,6741,296,140,,,,,,84449,,, +400,USA,,MS,b,Monah Madison (WI),43.0625,-89.375,,0.025,,6718,303,140,,,,2,L1028 U1030 6376s,84461,,, +400,USA,,XW,b,Flmng Mason (KY),38.5625,-83.625,,0.025,,6733,296,140,,,,988,L1013 U1007 5.14s,84483,,, +400,USA,,PPI,b,Hopey St Paul (MN),44.854167,-92.958333,,0.025,,6776,307,141,,,,,L1048 U1015 8390s,84469,,, +400,USA,,LKR,b,Lancaster (SC),34.729167,-80.875,,0.025,,6865,291,142,,,,995,L1030 U1023 5.73s,84458,,, +400,USA,,SLO,b,Salem (IL),38.645833,-88.958333,,0.025,,7048,300,143,,,,1,L1023 U1012 7633s,84475,,, +400,USA,,AFD,b,Watford City (ND),47.8125,-103.291667,,0.025,,7064,315,144,,,,,L1052 ,87226,,, +400,USA,,MDS,b,Wentworth Madison (SD),44.020833,-97.125,,0.025,,7069,309,144,,,,307,U1020 6.2s,84459,,, +400,USA,,UWI,b,Whitfield Dalton (GA),34.770833,-84.958333,,0.025,,7119,294,144,,,,997,L1024 U1020 3.55s,84479,,, +400,USA,,TRX,b,Trenton (MO),40.0625,-93.625,,0.025,,7204,304,145,,,,973,U1018 6.0s,84478,,, +400,B,,CAX,b,Duque de Caxias (RJ),-22.770833,-43.375,,1,,9624,225,146,,,,0,L1029 U1030 ,84443,,, +400,USA,,AHQ,b,Wahoo (NE),41.229167,-96.625,,0.025,,7274,306,146,,,,9,L1021 U1039 6.0s,84438,,, +400,USA,,OHY,b,Coney Cordele (GA),31.979167,-83.875,,0.025,,7279,291,146,,,,997,L1023 U1023 7.32s,84467,,, +400,USA,,EWP,b,Newport (AR),35.645833,-91.208333,,0.025,,7429,299,147,,,,,U1020 7.5s,84448,,, +400,USA,,LKO,b,Logan Billings (MT),45.770833,-108.375,,0.025,,7483,317,148,,,,,,87229,,, +400,CAN,,QQ,b,Comox (BC),49.770833,-124.958333,,0.025,,7795,329,151,,,,3,L409 U414 10.0s,DAID,84471,, +400,USA,,FN,b,Colln Fort Collins / Loveland (CO),40.354167,-104.958333,,0.025,,7794,311,151,,,,983,L1070 U1026 6.0s,84450,,, +400,IND,,MD,b,Madurai (TN),9.841944,78.099444,,0.025,,7899,98,152,,,,,,32200046,,, +400,USA,,AI,b,Addmo Ardmore (OK),34.229167,-96.958333,,0.025,,7888,302,152,,,,977,L1056 U1025 6.1s,84439,,, +400,USA,,HHF,b,Hemphill County Canadian (TX),35.895833,-100.375,,0.025,,7939,305,152,,,,20,L1010 U1050 ,84453,,, +400,USA,,ROB,b,Robinson Waco (TX),31.520833,-97.041667,,0.025,,8128,300,154,,,,985,L1054 U1018 10.0s,84474,,, +400,USA,,VQ,b,Besaq Alamosa (CO),37.354167,-105.958333,,0.025,,8113,310,154,,,,988,L1057 U1048 7.8s,84480,,, +400,XON,,RCF,b,Oil Platform,27.520833,-90.208333,,0.025,,8054,292,154,,,,990,L1020 U1000 ,84472,,, +400,CLN,,VNA,b,Vavuniya (vav),8.739444,80.488056,,0.025,,8157,97,155,,,,,,34700025,,, +400,MYA,,KG,b,Kengtung,21.3025,99.6325,,0.025,,8368,74,157,,,,,,22100023,,, +400,USA,,RBG,b,Roseburg (OR),43.229167,-123.375,,0.025,,8370,325,157,,,,,,87231,,, +400,CLM,,PIE,b,Piedecuesta (sat),6.895833,-73.125,,0.025,,8689,266,159,,,,996,L1044 U1026 8505s,84468,,, +400,USA,,HU,b,Lanee Sacramento (CA),38.604167,-121.625,,0.025,,8746,321,159,,,,,L1040 U1040 8.0s,87228,,, +400,MEX,,ENS,b,Ensenada (Baja California) (bcn),31.8125,-116.625,,0.025,,9167,314,160,,,,9,L985 U912 7.4s,DA3ID,84447,, +400,USA,,LPC,b,Lompoc (CA),34.6875,-120.458333,,0.025,,9073,318,160,,,,,,87230,,, +400,B,,GJM,b,Guajar-Mirim (RO),-10.770833,-65.291667,,0.025,,9740,249,162,,,,,L1022 U993 6882s,84452,,, +400,EQA,,OLM,b,Olmedo (pic),0.145833,-78.041667,,0.025,,9616,266,162,,,,,U1132 7.16s,86824,,, +400,MDW,,MDY,b,Midway Gooneyville (Sand Island),28.1875,-177.375,,0.025,,11079,3,167,,,,0,L402 U401 6.29s,84460,,, +400.5,DNK,,EJ,b,Esbjerg (sdk),55.5625,8.708333,,0.025,,412,21,77,,,,500,L406 U405 3.3s,84487,,, +400.5,I,,COD,b,Codogno (lo),45.229167,9.541667,,0.025,,799,162,81,,,,496,L1020 U1018 ,ID+5 gap,84486,, +401,E,,COA,b,La Corua (GAL-C),43.354167,-8.291667,,0.25,,1464,234,78,,,,2,L1033 U1031 21.4s,ID+18 gap,84494,, +401,E,,LRA,b,La Corua (GAL-C),43.354167,-8.291667,,0.25,,1464,234,78,,,,,L1020 U1020 ,87232,,, +401,F,,LA,b,Laval / Entrammes (53),47.979167,-0.708333,,0.025,,685,231,80,,,,986,U5 ,DAID,84503,, +401,G,,BBA,b,Benbecula (SC-WIL),57.479167,-7.375,,0.025,,1063,310,84,,,,0,L405 U403 5.7s,84491,,, +401,NOR,,RBU,b,Roros / Rambu,62.520833,11.541667,,0.025,,1197,13,85,,,,,L405 U395 ,86634,,, +401,E,,PTC,b,Porto Colom (PMI) (BAL-ML),39.4375,3.291667,,0.025,,1429,191,87,,,,29,L966 U1109 ,ID+11 gap,84507,, +401,I,,BPL,b,Bari / Palese (ba),41.104167,16.541667,,0.025,,1445,144,87,,,,990,L1017 U1020 ,ID+2.5 gap,84492,, +401,FIN,,JP,b,Joensuu / Marjosrkk,62.645833,29.791667,,0.025,,1809,41,91,,,,2,L402 U406 ,ID+5 gap,84500,, +401,POR,,LO,b,Lisbon / Caparica (lis),38.854167,-9.125,,0.025,,1899,225,92,,,,2,L1018 U1020 8.07s,84504,,, +401,MRC,,ALU,b,Al Hocema/Cherif Al Idrissi,35.1875,-3.875,,0.025,,2051,207,93,,,,998,L1017 U1020 ,84488,,, +401,UKR,,D,b,Dzhankoi (KR),45.6875,34.375,,0.025,,2149,98,94,,,,,,84495,,, +401,GRC,,MKO,b,Mikonos (seg-kik),37.4375,25.375,,0.025,,2201,130,95,,,,0,L410 U412 ,ID+6 gap,84506,, +401,RUS,,AN,b,Anapa / Vityazevo (KD),44.979167,37.291667,,0.025,,2386,97,97,,,,,L1030 U1050 ,IDx2 + 11 gap,86630,, +401,RUS,,AP,b,Anapa / Vityazevo (KD),45.020833,37.375,,0.025,,2389,97,97,,,,,L1010 U1023 ,86631,,, +401,KAZ,,AY,b,Atyrau (aty),47.145833,51.791667,,0.025,,3260,81,106,,,,,,84490,,, +401,CAN,,Y8,b,Drummondville (QC),45.854167,-72.375,,0.13,,5504,296,121,,,,,U392 9.47s,DAID,84509,, +401,CAN,,YPO,b,Peawanuck (ON),54.979167,-85.458333,,0.13,,5626,312,122,,,,,U388 10.32s,DAID,84510,, +401,USA,,IS,b,Stals Kingston (NC),35.229167,-77.708333,,0.025,,6623,290,139,,,,,,84499,,, +401,USA,,LA,b,Earle Lafayette (IN),40.4375,-87.041667,,0.025,,6791,300,141,,,,986,L1040 U1017 6070s,84502,,, +401,USA,,GGK,b,Mayfield (KY),36.6875,-88.625,,0.025,,7188,298,145,,,,980,L1052 U1012 7.9s,84497,,, +401.5,D,,BET,b,Rheine / Bentlage (nrw),52.270833,7.375,,0.025,,68,74,44,,,,502,L1036 U1041 16.0s,84511,,, +402,BEL,,OP,b,Brussels National (bru),50.5625,4.375,,0.025,,223,220,75,,,,998,L403 U397 10.0s,84530,,, +402,XOE,,AA,b,K14-FA-1C/Pentacon A Platform,53.270833,3.625,,0.025,,228,306,75,,,,0,L400 U400 ,84512,,, +402,XOE,,AI,b,Nam / Noordwinning FA1 Platform,53.145833,3.625,,0.025,,220,303,75,,,,0,L400 U400 ,84513,,, +402,XOE,,KB,b,Placid K12-B Platform,53.354167,3.875,,0.025,,220,310,75,,,,998,L394 U397 5.0s,ID+3 gap,84522,, +402,XOE,,NAM,b,Nam FA1 Platform,53.3125,4.791667,,0.025,,173,321,75,,,,,U400 ,84528,,, +402,XOE,,NO,b,Nam / Noordwinning / Zanddijk FB-1 Platform,53.270833,3.875,,0.025,,214,308,75,,,,0,L1020 U1020 ,84529,,, +402,XOE,,WG,b,Nam Platform,54.854167,4.708333,,0.025,,325,340,76,,,,0,L1020 U1020 ,84538,,, +402,UKR,,TM,b,Tomakivka,47.8125,34.708333,,1,,2066,92,78,,,,994,L975 U961 9.5s,ID+6 gap,84537,, +402,XOE,,TAA,b,Talisman / Tartan Alpha,58.354167,0.041667,,0.025,,802,332,81,,,,,,84535,,, +402,F,,DA,b,Ales / Deaux (30),44.0625,4.125,,0.025,,911,192,82,,,,,L24 21.0s,ID+19 tone,84519,, +402,IRL,,FNR,b,Finner Army Camp / Bundoran (DL),54.479167,-8.208333,,0.025,,1005,291,83,,,,962,L425 U350 5.0s,84520,,, +402,S,,LX,b,Eskilstuna / Kjula,59.270833,16.708333,,0.025,,1023,35,83,,,,9769,L418 U380 ,84525,,, +402,S,,TH,b,Torsby,60.1875,12.875,,0.025,,982,21,83,,,,10,L390 U400 ,84536,,, +402,BIH,,ZV,b,Tuzla (tuz),44.479167,18.625,,0.025,,1237,128,85,,,,999,L1017 U1024 9.7s,ID + 5 tone,84541,, +402,I,,CAR,b,Villasimius / Capo Carbonara (ca),39.104167,9.541667,,0.04,,1466,169,86,,,,0,L1020 U1020 ,ID+4 gap,84516,, +402,MRC,,AML,b,Agadir / Al Massira (smd),30.3125,-9.458333,,0.025,,2750,214,100,,,,2,L404 U395 ,ID+5 gap,84514,, +402,CAN,,X7,b,Nain (Voisey Apt) (NL),56.354167,-62.125,,0.025,,4292,304,116,,,,,U1026 8s,84539,,, +402,IRN,,YZD,b,Yazd Shahid Sadooghi (yzd),31.895833,54.291667,,0.025,,4441,101,117,,,,,U950 ,84540,,, +402,SPM,,MQ,b,Miquelon (Grande Miquelon) (975),47.104167,-56.375,,0.025,,4415,289,117,,,,4,L401 U407 10148s,84527,,, +402,CAN,,L4,b,Nipawin (SK),53.354167,-104.041667,,0.2,,6634,320,130,,,,,U983 10328s,DAID,84523,, +402,USA,,LW,b,Haget Lawrence (MA),42.645833,-71.208333,,0.025,,5653,292,130,,,,995,L1028 U1027 4951s,84524,,, +402,CAN,,M3,b,Kindersley (SK),51.520833,-109.208333,,0.025,,7015,321,143,,,,,U1034 10.22s,DBID,84526,, +402,CUB,,C,b,Camagey (cm),21.395833,-77.875,,0.025,,7764,279,151,,,,728,L1110 U932 4005s,84515,,, +402,USA,,IFJ,b,Winnfield (LA),31.979167,-92.625,,0.025,,7823,297,151,,,,990,L1059 U1030 7926s,84521,,, +402,USA,,SYG,b,Sandy Point Houston (TX),29.520833,-95.458333,,0.025,,8206,298,155,,,,,U1032 ,84534,,, +402,USA,,CV,b,Carlz Carlsbad (NM),32.270833,-104.375,,0.025,,8483,306,158,,,,22,L1023 U1015 6.0s,84517,,, +402,CLM,,SJE,b,San Jos del Guaviare (guv),2.5625,-72.625,,0.025,,9035,263,160,,,,,,84533,,, +402,MEX,,CVJ,b,Cuernavaca (mor),18.8125,-99.291667,,0.025,,9388,294,161,,,,,U952 7.4s,84518,,, +402.5,G,,LBA,b,Leeds / Bradford (EN-WYK),53.854167,-1.625,,0.045,,571,293,76,,,,505,L403 U410 10.0s,84542,,, +403,SUI,,LPS,b,Les Eplatures (ne),47.0625,6.791667,,0.025,,562,177,79,,,,0,L395 U403 ss,ID+6 gap,84550,, +403,E,,TOB,b,Villatobas (CAM-TO),39.770833,-3.458333,,0.2,,1567,213,80,,,,5,L1019 U1015 14.2s,ID+3 gap,84559,, +403,F,,VZ,b,Vichy / Charmeil (03),46.145833,3.375,,0.025,,699,200,80,,,,,L400 U400 10.0s,ID+7 gap,84561,, +403,S,,OJ,b,Jnkping,57.6875,14.041667,,0.025,,788,35,81,,,,1,L397 U402 ,84556,,, +403,HNG,,M,b,Budapest/Ferenc Liszt Int. (Bud),47.4375,19.291667,,0.025,,1059,114,84,,,,998,L1021 U1020 ,ID+3 gap,84551,, +403,S,,NM,b,Mora / Slijan,61.020833,14.458333,,0.025,,1105,23,84,,,,6,L394 U406 ,84555,,, +403,FIN,,H,b,Helsinki / Vantaa,60.354167,24.958333,,0.025,,1459,44,88,,,,998,L411 U411 ,84547,,, +403,GRC,,KEK,b,Kerkyra / Ioannis Kapodistrias (ion-ker),39.604167,19.875,,0.015,,1732,138,93,,,,0,L401 U405 ,ID+3 gap,84549,, +403,LBY,,MB,b,Marsa al-Brega (wah),30.395833,19.541667,,0.025,,2643,151,99,,,,998,L1025 U1018 ,Cont. ID,84552,, +403,TUR,,TKT,b,Tokat (kdz-tok),40.3125,36.375,,0.025,,2626,108,99,,,,999,L1031 U1029 ,ID+6 gap,84558,, +403,TUR,,MRD,b,Mardin (gda-mar),37.229167,40.625,,0.025,,3129,108,104,,,,,U25 3.5s,Cont. ID,84554,, +403,ALS,,AMF,b,Ambler (AK),67.104167,-157.875,,0.4,,6694,353,128,,,,,L1025 U1040 ,TWEB,84543,, +403,CAN,,R,b,Romeo / Toronto (ON),43.729167,-79.708333,,0.04,,6100,298,132,,,,,,87235,,, +403,CAN,,ZTO,b,Woodhill / Brampton (Toronto) (ON),43.729167,-79.708333,,0.04,,6100,298,132,,,,0,L394 U393 10.4s,DAID,84562,, +403,USA,,PO,b,Meier Poughkeepsie (NY),41.5625,-73.958333,,0.025,,5904,293,132,,,,,,87234,,, +403,TZA,,MZ,b,Mwanza (mwz),-2.441944,32.923889,,0.025,,6558,149,139,,,,,,11400006,,, +403,USA,,MRT,b,Marysville (OH),40.229167,-83.375,,0.025,,6587,297,139,,,,,L1000 U1005 5.3s,87233,,, +403,USA,,BPO,b,Piney Grove Oneida (TN),36.520833,-84.458333,,0.025,,6947,295,142,,,,1,L1023 U1023 6888s,84546,,, +403,USA,,AXA,b,Algona (IA),43.0625,-94.291667,,0.025,,6994,306,143,,,,993,L1020 U998 6009s,84544,,, +403,VCT,,SV,b,E T Joshua Kingstown (sge),13.145833,-61.208333,,0.025,,7336,260,146,,,,,L1038 U1039 8310s,86825,,, +403,USA,,AZC,b,Colorado City (AZ),36.979167,-113.041667,,0.04,,8506,314,156,,,,995,L1020 U1022 7.0s,84545,,, +403,USA,,MFS,b,Horseshoe Bay Resort Marble Falls (TX),30.520833,-98.375,,0.025,,8294,300,156,,,,,U1021 6906s,84553,,, +403,SMA,,TUT,b,Tafuna (Tutuila Island) (AS),-14.3125,-170.708333,,2,,15804,355,163,,,,995,L1030 U1004 10.4s,84560,,, +403.5,XOE,,LNL,b,Lancelot A Platform,53.395833,1.375,,0.025,,368,295,77,,,,510,L400 U420 9.5s,84563,,, +404,SVK,,ZLA,b,Zilina (ZA),49.1875,18.541667,,2,,914,106,63,,,,998,L1022 U1015 ,ID+6 gap,84600,, +404,LUX,,LW,b,Luxembourg (lux),49.604167,6.208333,,0.05,,279,183,73,,,,926,L1090 U967 ,84586,,, +404,E,,LRD,b,Lleida=Lrida (CAT-L),41.5625,0.625,,0.25,,1252,203,76,,,,4,L1020 U1020 ,ID+6 gap,84584,, +404,F,,MRV,b,Merville / Calonne (59),50.6875,2.708333,,0.025,,302,240,76,,,,,L400 U402 ,84589,,, +404,F,,CNE,b,Caen / Carpiquet (14),49.104167,-0.291667,,0.025,,579,237,79,,,,,U39 ,84571,,, +404,F,,AGO,b,Angoulme / Brie Champniers (16),45.6875,0.458333,,0.025,,836,214,81,,,,,U5 ,DAID,84565,, +404,NOR,,DA,b,Torp / Dalen / Sandefjord,59.270833,10.291667,,0.025,,832,15,81,,,,3,L374 U379 ,84574,,, +404,G,,OBN,b,North Connell / Oban (SC-AGB),56.479167,-5.375,,0.025,,904,307,82,,,,0,L401 U403 8.0s,84592,,, +404,NOR,,VNG,b,Vangsnes,61.145833,6.625,,0.025,,1005,1,83,,,,997,L403 U397 ,84596,,, +404,S,,LA,b,Stockholm / Arlanda,59.729167,17.958333,,0.025,,1108,36,84,,,,4,L381 U404 9.0s,84583,,, +404,ROU,,BMR,b,Baia Mare (MM),47.6875,23.375,,0.025,,1307,105,86,,,,33,L1017 U1023 ,84568,,, +404,FIN,,JAN,b,Halli / Janne,61.854167,24.625,,0.025,,1537,38,88,,,,3,L403 U412 8.0s,84580,,, +404,FIN,,Y,b,Kemi-Tornio / Ketolanper,65.8125,24.625,,0.025,,1832,27,91,,,,7,L411 U415 4.0s,84598,,, +404,NOR,,KG,b,Stokmarknes / Kjerringnes,68.645833,15.458333,,0.025,,1900,11,92,,,,9,L368 U377 ,84582,,, +404,JOR,,AQ,b,Aqaba (aqb),29.580161,35.007017,,0.3,,3430,126,97,,,,,U1020 3.4s,ID+1 gap,84566,, +404,CAN,,YSL,b,St. Leonard (NB),47.1875,-67.875,,1,,5139,295,108,,,,,U391 10178s,DAID,84599,, +404,CAN,,Y,b,North Bay/Yankee (ON),46.3125,-79.541667,,0.05,,5903,300,129,,,,,U~400 ,87238,,, +404,CAN,,ZYB,b,Yellek / North Bay (ON),46.3125,-79.541667,,0.05,,5903,300,129,,,,990,L401 U396 10547s,DAID,84602,, +404,CAN,,ZR,b,Sarnia (ON),42.9375,-82.208333,,0.05,,6309,299,133,,,,,U402 10460s,DAID,84601,, +404,USA,,IUB,b,Institute Baltimore (MD),39.270833,-76.625,,0.025,,6242,292,135,,,,,U978 ,84579,,, +404,USA,,OLF,b,Wolf Point (MT),48.104167,-105.625,,0.1,,7150,317,138,,,,0,L1020 U1023 6.6s,84593,,, +404,USA,,LVV,b,Lake Lawn Delavan (WI),42.6875,-88.625,,0.025,,6705,303,140,,,,21,L990 U1032 7728s,84585,,, +404,USA,,IMS,b,Madison (IN),38.770833,-85.458333,,0.025,,6828,297,141,,,,,U1030 5.5s,87237,,, +404,USA,,XCR,b,Ripley Little Falls (MN),46.0625,-94.375,,0.025,,6756,309,141,,,,999,L1032 U1033 7948s,84597,,, +404,USA,,CKI,b,Kingstree (SC),33.729167,-79.875,,0.025,,6881,290,142,,,,994,U1017 6447s,84570,,, +404,USA,,BMW,b,Barrow Co Winder (GA),33.9375,-83.625,,0.025,,7103,292,144,,,,996,L1038 U1042 5.65s,84569,,, +404,USA,,ST,b,Zumay St Louis (MO),38.770833,-90.291667,,0.025,,7117,301,144,,,,980,L1064 U1014 2985s,84595,,, +404,ALS,,GCR,b,Glacier River Cordova (AK),60.479167,-145.458333,,0.025,,7247,345,145,,,,0,L1045 U1044 ,84576,,, +404,USA,,BAV,b,Hardeman Bolivar (TN),35.229167,-89.041667,,0.025,,7333,297,146,,,,997,L1025 U1018 5749s,84567,,, +404,USA,,FNB,b,Brenner Falls City (NE),40.0625,-95.625,,0.025,,7317,305,146,,,,,L1010 6.2s,84575,,, +404,USA,,SG,b,Coole Springfield (MO),37.1875,-93.458333,,0.025,,7433,301,147,,,,979,L1054 U1016 5773s,84594,,, +404,USA,,HEQ,b,Heginbotham Holyoke (CO),40.5625,-102.291667,,0.025,,7637,309,149,,,,990,L1045 U1025 ,84577,,, +404,USA,,HU,b,Saltt Hutchinson (KS),38.104167,-97.958333,,0.025,,7613,305,149,,,,995,L1040 U1029 6.0s,84578,,, +404,USA,,ABG,b,Ambassador Big Sandy (TX),32.604167,-95.125,,0.025,,7920,299,152,,,,995,L1033 U1024 7.56s,84564,,, +404,USA,,MOG,b,Montague (CA),41.729167,-122.458333,,0.025,,8479,323,158,,,,988,L1050 U1026 8.0s,84587,,, +404,USA,,CUF,b,Columbia (CA),38.020833,-120.375,,0.01,,8748,320,163,,,,,8.4s,87236,,, +404.5,HOL,,RR,b,Rotterdam Locator (zho),52.020833,4.791667,,0.015,,111,266,62,,,,536,L400 U400 ,84603,,, +405,D,,GRW,b,Grafenwhr (bay),49.6875,11.958333,,0.025,,473,123,78,,,,990,L1050 U1023 8.7s,84619,,, +405,AUT,,KW,b,Klagenfurt,46.6875,14.208333,,0.04,,825,134,79,,,,999,L1020 U1021 10.0s,84622,,, +405,F,,BIC,b,Briare / Chatillon (45),47.604167,2.791667,,0.025,,564,209,79,,,,,U22 ,DAID,84609,, +405,S,,AV,b,Gteborg/Save (vg),57.729167,11.875,,0.025,,715,27,80,,,,4,L438 U363 4.0s,84607,,, +405,XOE,,HMI,b,Sevan Hummingbird FPSO,57.979167,1.208333,,0.025,,731,335,80,,,,,L400 U400 ,86638,,, +405,SRB,,JST,b,Ni/Justic (Srb-nsv),43.4375,21.625,,0.05,,1486,124,85,,,,992,L1029 U993 ,ID+5 tone,84621,, +405,BIH,,IL,b,Sarajevo / Ilidza (sar),43.8125,18.375,,0.025,,1279,131,86,,,,475,U975 18.0s,ID+15 tone,84620,, +405,I,,VIE,b,Vieste (fg),41.895833,16.041667,,0.025,,1348,144,86,,,,997,L1024 U1016 este.s,ID+6 gap,84640,, +405,ROU,,S,b,Sibiu / Turnisor (SB),45.770833,24.125,,0.025,,1468,112,88,,,,,L744 U743 ,84634,,, +405,UKR,,B,b,Kiev / Borispol (KY),50.354167,30.875,,0.025,,1706,87,90,,,,,L1018 ,IDx2,84608,, +405,UKR,,E,b,Kyiv / Boryspil (KY),50.3125,30.875,,0.025,,1708,87,90,,,,,,84616,,, +405,GRC,,MGR,b,Megara (att-wst),37.979167,23.375,,0.025,,2050,133,93,,,,0,L400 U400 ,ID+4 gap,84627,, +405,ISL,,RL,b,Reykjahlia,65.604167,-16.958333,,0.025,,1991,328,93,,,,,U992 ,84633,,, +405,RUS,,UM,b,Ivanovskoye,55.854167,36.875,,0.025,,2018,66,93,,,,,L1018 U1019 7.0s,84637,,, +405,RUS,,FP,b,Cherepovets (VO),59.270833,38.041667,,0.025,,2112,55,94,,,,,L1048 U1047 ,84617,,, +405,RUS,,OW,b,Cherepovets (VO),59.270833,38.041667,,0.025,,2112,55,94,,,,,L403 U407 ,84630,,, +405,TUR,,ME,b,Izmir / Adnan Menderes (ege-izm),38.1875,27.208333,,0.025,,2234,126,95,,,,,L1020 ,Cont. ID,84626,, +405,TUN,,BMA,b,El Borma (tat),31.6875,9.208333,,0.025,,2282,173,96,,,,,L17 ,84612,,, +405,RUS,,NC,b,Volgograd/Marinovka (VG),48.645833,43.791667,,0.025,,2648,83,99,,,,,L990 U1044 ,84628,,, +405,RUS,,OM,b,Volgograd/Marinovka (VG),48.645833,43.791667,,0.025,,2648,83,99,,,,,,84629,,, +405,LBY,,VG,b,Edibb V7 (juf),28.979167,17.625,,0.025,,2734,156,100,,,,0,L400 U400 5.0s,ID+6.5 gap,84639,, +405,LBN,,RA,b,Kleyate / Rene Mouawad,34.604167,36.041667,,0.025,,3050,118,103,,,,,,84632,,, +405,RUS,,SU,b,Dikson (KN),73.520833,80.375,,0.025,,4047,27,113,,,,,L1038 U1035 ,84635,,, +405,CAN,,YXL,b,Sioux Lookout (ON),50.104167,-91.875,,1,,6307,311,120,,,,,,87240,,, +405,IRN,,BJD,b,Birjand (skh),32.903056,59.256944,,0.025,,4699,96,120,,,,998,L1045 U1042 ,84611,,, +405,CAN,,7L,b,La Sarre (QC),48.895833,-79.208333,,0.025,,5702,303,130,,,,,U392 10350s,DAID,84605,, +405,CAN,,9G,b,Sundre (AB),51.770833,-114.708333,,0.5,,7221,324,132,,,,,U384 10208s,DAID,84606,, +405,USA,,AKT,b,Appleton (WI),44.270833,-88.375,,0.025,,6567,304,139,,,,,,87239,,, +405,CAN,,2K,b,Camrose (AB),53.020833,-112.791667,,0.025,,7032,324,143,,,,,U397 10.6s,DAID,84604,, +405,J,,MD,b,Minamidaito (kyu-oki),25.840583,131.245828,,1,,9828,48,146,,,,,U1020 5s,DAID,84625,, +405,USA,,UTX,b,United Jupiter (FL),26.895833,-80.375,,0.025,,7471,285,148,,,,,U1070 ,84638,,, +405,B,,FRC,b,Franca (SP),-20.604167,-47.375,,0.2,,9613,229,153,,,,,L1033 U1023 7.14s,84618,,, +405,B,,BVI,b,Boa Vista (RR),2.854167,-60.708333,,0.025,,8214,253,155,,,,0,L1043 U1040 6892s,84613,,, +405,PRG,,CON,b,Concepcion (cnc),-23.4375,-57.458333,,0.2,,10427,236,155,,,,1,L1023 U1025 8460s,84614,,, +405,B,,CRY,b,Cricima (SC),-28.729167,-49.458333,,0.2,,10500,227,156,,,,,,84615,,, +405,USA,,AGH,b,Pekks Laredo (TX),27.645833,-99.458333,,0.025,,8611,299,158,,,,,U1021 8.6s,86826,,, +405,USA,,LR,b,Pekks Laredo (TX),27.645833,-99.458333,,0.025,,8611,299,158,,,,0,L1020 U1019 8.6s,84623,,, +406,D,,HOZ,b,Holzdorf (san),51.770833,13.125,,0.025,,462,92,78,,,,2,L1039 U1040 16.7s,84646,,, +406,G,,BHX,b,Birmingham (EN-WMD),52.4375,-1.791667,,0.025,,559,277,79,,,,0,L400 U400 8.2s,ID+3 gap,84642,, +406,F,,MJ,b,Marseille / Provence (13),43.4375,5.208333,,0.025,,968,186,83,,,,,L398 U406 10.0s,ID+7 gap,84648,, +406,F,,TW,b,Toulouse / Blagnac (31),43.520833,1.041667,,0.015,,1035,205,86,,,,,U5 ,DAID,84653,, +406,S,,NV,b,Vilhelmina,64.5625,17.041667,,0.025,,1513,20,88,,,,998,L420 U415 4.0s,84649,,, +406,RUS,,Q,b,Sankt-Peterburg/Rzhevka (SP),59.979167,30.625,,0.025,,1725,50,90,,,,,15.2s,IDx2,84651,, +406,FIN,,V,b,Ivalo / Pajakoski,68.604167,27.375,,0.025,,2142,23,94,,,,0,L406 U408 ,84654,,, +406,RUS,,CHI,b,Balashov (SR),51.520833,43.291667,,0.025,,2509,77,98,,,,,,84643,,, +406,RUS,,LO,b,Balashov (SR),51.520833,43.291667,,0.025,,2509,77,98,,,,,,84647,,, +406,CAN,,D5,b,McArthur River (SK),57.770833,-105.041667,,0.025,,6314,324,136,,,,,U408 9620s,DAID,84644,, +406,USA,,TT,b,Leeco Sanford (NC),35.479167,-79.125,,0.025,,6694,291,140,,,,988,L1058 U1025 3568s,84652,,, +406,CAN,,2S,b,High Prairie (AB),55.395833,-116.458333,,0.025,,6960,328,143,,,,,L339 U428 10434s,DAID,84641,, +406,CAN,,YLJ,b,Meadow Lake (SK),54.145833,-108.625,,0.015,,6764,323,143,,,,,U401 10.5s,DAID,84655,, +406,USA,,OK,b,Tuloo Tulakes (OK),35.479167,-97.625,,0.025,,7819,303,151,,,,982,L1056 U1020 6.4s,84650,,, +406.5,D,,BOT,b,Bottrop (nrw),51.5625,7.041667,,0.025,,75,144,47,,,,500,L1016 U1021 7.6s,84656,,, +407,D,,LUP,b,Laupheim (bw),48.229167,9.875,,0.03,,497,149,77,,,,2,L1043 U1047 16.73s,ID+11 tone,84685,, +407,IRL,,GAR,b,Dublin / Garristown (D),53.520833,-6.458333,,0.05,,878,285,79,,,,3,L373 U404 5.5s,84672,,, +407,S,,KA,b,Karlskoga,59.3125,14.458333,,0.025,,945,29,82,,,,991,L409 U392 3.0s,84681,,, +407,LTU,,PN,b,Palanga (Kla),55.979167,21.125,,0.025,,1050,60,83,,,,2,L1018 U1021 10.07s,ID+8 gap,84690,, +407,I,,CTF,b,Catania (ct),37.270833,15.041667,,0.025,,1783,154,91,,,,0,L1020 U1016 8.04s,ID+4 gap,84669,, +407,ALG,,BCR,b,Bchar (8),31.6875,-2.208333,,0.025,,2376,200,97,,,,,U19 ,ID+10 tone,84660,, +407,LBY,,SRT,b,Surt=Sirte (srt),31.1875,16.625,,0.025,,2471,156,98,,,,10,L1015 U1038 8.43s,ID+6 gap,84696,, +407,TUR,,KSR,b,Kayseri / Erkilet (ica-kay),38.770833,35.541667,,0.025,,2686,112,100,,,,0,L1070 U1070 ,ID+2 gap,84682,, +407,CAN,,H,b,Hauts-bois / St Hubert (QC),45.5625,-73.375,,0.095,,5585,296,123,,,,,,87243,,, +407,CAN,,ZHU,b,Hauts-Bois / St Hubert (Montreal) (QC),45.5625,-73.375,,0.095,,5585,296,123,,,,,U420 10.4s,ID+5 tone,84699,, +407,USA,,ISS,b,Wiscasset (ME),43.979167,-69.625,,0.025,,5460,293,128,,,,,U1010 ,84680,,, +407,USA,,FR,b,Frikk Farmingdale (NY),40.770833,-73.458333,,0.025,,5930,292,132,,,,983,L1049 U1017 6.47s,84670,,, +407,USA,,OX,b,Landy Ocean City (MD),38.354167,-75.208333,,0.025,,6221,291,135,,,,1,L1039 U1051 4.66s,84688,,, +407,USA,,RV,b,Stroh Reedsville (PA),40.604167,-77.708333,,0.025,,6210,294,135,,,,994,L1026 U1014 8.59s,84692,,, +407,USA,,HAI,b,Three Rivers (MI),41.979167,-85.625,,0.04,,6586,300,137,,,,2,L1040 U1045 ,84677,,, +407,USA,,RXW,b,Watersmeet (MI),46.270833,-89.291667,,0.025,,6463,306,138,,,,,L1020 ,84694,,, +407,USA,,RZZ,b,Rapids Roanoke Rapids (NC),36.4375,-77.708333,,0.025,,6528,291,138,,,,1,Ras,84695,,, +407,HND,,SWA,b,Islas del Cisne (Swan Islands),17.395833,-83.958333,,2,,8515,281,139,,,,,,87247,,, +407,USA,,AQ,b,Kooky Appleton (WI),44.229167,-88.375,,0.025,,6570,304,139,,,,988,L1066 U1040 5994s,84659,,, +407,CLM,,LET,b,Leticia (ama),-4.1875,-69.958333,,3,,9454,257,140,,,,993,L1028 U1014 8.48s,84683,,, +407,USA,,IL,b,Airbo Wilmington (OH),39.479167,-83.708333,,0.025,,6666,297,140,,,,999,L1028 U1038 6399s,84679,,, +407,USA,,GYL,b,Glencoe (MN),44.770833,-94.125,,0.025,,6846,307,141,,,,38,L995 U1040 34371s,84676,,, +407,USA,,CM,b,Veals Champaign / Urbana (IL),39.979167,-88.208333,,0.025,,6896,300,142,,,,981,L1048 U1022 5940s,84666,,, +407,USA,,BNW,b,Boone (IA),42.0625,-93.875,,0.025,,7053,305,144,,,,,L1025 U1020 5211s,84662,,, +407,USA,,BZ,b,Bullo Statesboro (GA),32.4375,-81.625,,0.025,,7097,290,144,,,,2,L1015 U1023 5.52s,84664,,, +407,USA,,IBU,b,Statesboro (GA),32.395833,-81.625,,0.025,,7101,290,144,,,,,,87244,,, +407,USA,,RVB,b,Riverbend Mobridge (SD),45.5625,-100.375,,0.025,,7110,312,144,,,,9,L1047 U1066 6181s,84693,,, +407,USA,,CO,b,Zodia Columbia (MO),38.729167,-92.291667,,0.025,,7237,302,145,,,,983,L1049 5.16s,84668,,, +407,USA,,PLT,b,Platte Center Columbus (NE),41.479167,-97.375,,0.025,,7295,307,146,,,,5,L1062 U1018 8475s,84689,,, +407,USA,,BNS,b,Sheridan (County - Banstow) (WY),44.645833,-106.791667,,0.025,,7507,315,148,,,,,,87241,,, +407,USA,,HRU,b,Herington (KS),38.6875,-96.791667,,0.025,,7498,305,148,,,,988,L1044 U1024 7.9s,84678,,, +407,USA,,BVV,b,Brookhaven (MS),31.604167,-90.375,,0.025,,7717,295,150,,,,,,84663,,, +407,USA,,NUW,b,Whidbey Island NAS (Ault) (WA),48.354167,-122.708333,,0.025,,7850,327,151,,,,,,87246,,, +407,USA,,EMM,b,Kemmerer (WY),41.8125,-110.541667,,0.025,,7941,315,152,,,,,,87242,,, +407,USA,,IE,b,Campi Natchitoches (LA),31.645833,-93.041667,,0.025,,7877,297,152,,,,,L1055 U1028 5.70s,87245,,, +407,USA,,OOC,b,Campi Natchitoches (LA),31.645833,-93.041667,,0.025,,7877,297,152,,,,990,L1045 U1034 8.0s,84687,,, +407,USA,,AD,b,Brons Dallas (TX),33.0625,-96.875,,0.025,,7984,301,153,,,,,L1062 ,84657,,, +407,USA,,AKL,b,Haskell (TX),33.1875,-99.708333,,0.025,,8138,303,154,,,,,L1009 U1022 6.3s,84658,,, +407,USA,,CHD,b,Chandler (AZ),33.270833,-111.791667,,0.049,,8788,311,156,,,,990,L1059 U1047 6.5s,84665,,, +407,USA,,PRZ,b,Portales (NM),34.145833,-103.375,,0.025,,8260,306,156,,,,0,L1019 U1029 6.0s,84691,,, +407,AUS,,WDH,b,Windorah (QLD),-25.395833,142.625,,0.025,,15306,68,180,,,,,L400 U400 6s,84698,,, +408,I,,CHI,b,Chioggia (ve),45.0625,12.291667,,0.04,,894,149,80,,,,995,L1024 U1015 10.0s,ID+7 gap,84701,, +408,AUT,,BRK,b,Wien / Schwechat / Bruck,48.0625,16.708333,,0.025,,860,117,82,,,,1,L1020 U1020 10.1s,ID+6 gap,84700,, +408,NOR,,SD,b,Sandane / Anda,61.854167,6.041667,,0.025,,1084,359,84,,,,800,L400 U~400 7.0s,84713,,, +408,ROU,,TSR,b,Timisoara / Giarmata (TM),45.479167,21.208333,,0.025,,1307,118,86,,,,5,L1034 U1036 4.84s,84717,,, +408,FIN,,F,b,Helsinki / Malmi,60.270833,25.041667,,0.025,,1458,44,88,,,,1,L406 U407 ,84702,,, +408,FIN,,O,b,Ilmajoki (ep),62.6875,22.791667,,0.025,,1523,33,88,,,,2,L409 U414 ,84711,,, +408,FIN,,H,b,Enontekio,68.395833,23.375,,0.025,,2022,20,93,,,,,U410 ,84704,,, +408,RUS,,KW,b,Krymsk,44.979167,38.041667,,0.025,,2437,96,97,,,,7,L390 U406 15.0s,IDx2 + 5 gap,84707,, +408,RUS,,UL,b,Ulyanovsk / Vostochny (UL),54.354167,48.791667,,0.025,,2789,68,101,,,,,U1009 ,84718,,, +408,RUS,,WN,b,Ulyanovsk / Vostochny (UL),54.4375,48.875,,0.025,,2792,68,101,,,,,,84719,,, +408,IRN,,SAV,b,Saveh for Mehrabad Intl (mrk),35.020833,50.375,,0.025,,3939,101,112,,,,,L1035 ,ID+5 gap,84712,, +408,IRN,,LEN,b,Bandar-e Lengeh (hrg),26.520833,54.875,,0.025,,4916,106,122,,,,,,86641,,, +408,USA,,HBD,b,Hubbard (OH),41.145833,-80.541667,,0.025,,6344,296,136,,,,969,L1060 U1041 7740s,84705,,, +408,CAN,,SN,b,Saint Catharines (ON),43.145833,-79.291667,,0.014,,6118,297,137,,,,0,L398 U390 10.5s,DAID,84715,, +408,CAN,,Z7,b,Claresholm (AB),50.020833,-113.625,,0.05,,7335,322,143,,,,,U421 10.36s,DAID,84720,, +408,USA,,LQK,b,Lake Keowee Pickins (SC),34.8125,-82.708333,,0.025,,6974,293,143,,,,998,L1045 U1045 8168s,84708,,, +408,USA,,SFB,b,Sanford (FL),28.770833,-81.208333,,0.025,,7370,287,147,,,,993,L1008 U994 7.41s,84714,,, +408,USA,,JDM,b,Wheatfield Colby (KS),39.520833,-101.041667,,0.025,,7660,308,150,,,,996,L1027 U1027 6.34s,84706,,, +408,USA,,MW,b,Pelly Moses Lake (WA),47.104167,-119.291667,,0.025,,7837,324,151,,,,5,L1030 U1040 8.0s,84709,,, +408,USA,,TMZ,b,Houston (TX),30.0625,-94.541667,,0.025,,8104,297,154,,,,,,84716,,, +409,S,,SG,b,Stens / Tune,58.395833,12.708333,,0.025,,804,27,81,,,,998,L402 U397 4.42s,84729,,, +409,HNG,,NCS,b,Nagycserkesz (SSB),47.979167,21.541667,,0.025,,1171,107,85,,,,3,L1020 U1016 9.24s,ID+5 gap,84728,, +409,FIN,,Z,b,Pyhsalmi,63.729167,25.958333,,0.025,,1719,34,90,,,,998,L405 U407 ,84734,,, +409,GRC,,SUD,b,Khania / Souda (krt-kha),35.520833,24.125,,0.025,,2316,136,96,,,,4,L400 U400 ,ID+5.5 gap,84731,, +409,TUR,,SRT,b,Siirt (dad-sii),37.979167,41.875,,0.025,,3154,106,105,,,,995,L1030 U1020 ,ID+5.5 gap,84730,, +409,GHA,,AA,b,Accra (gac),5.676111,-0.137778,,0.05,,5198,189,122,,,,,,84721,,, +409,CAN,,YTA,b,Pembroke (ON),45.8125,-77.208333,,0.025,,5800,299,131,,,,0,L391 U400 10.4s,ID+5 tone,84733,, +409,USA,,CQW,b,Cheraw (SC),34.729167,-79.875,,0.025,,6801,291,141,,,,,U1018 8139s,84722,,, +409,USA,,TM,b,Tifto Tifton (GA),31.354167,-83.458333,,0.025,,7303,290,146,,,,,L1014 U998 3.69s,84732,,, +410,XOE,,F3FA,b,F3FA,54.979167,4.875,,0.025,,335,343,76,,,,,L393 U405 ,86645,,, +410,XOE,,ZDJN3,b,Sanco Spirit,54.9375,0.208333,,0.025,,516,310,78,,,,,L422 U428 ,86653,,, +410,XOE,,SGUF,b,Loke Viking - Towing vessel,55.854167,12.791667,,0.025,,589,43,79,,,,,U398 ,86652,,, +410,AUT,,SI,b,Salzburg,47.8125,12.958333,,0.025,,669,133,80,,,,2,L400 U400 10.08s,ID+9 gap,84764,, +410,F,,ETN,b,Etain / Rouvres (55),49.229167,5.708333,,0.01,,324,189,80,,,,,U2 19.8s,DAID,84746,, +410,XOE,,3EHY8,b,Bibby Topaz,57.395833,-1.458333,,0.025,,774,322,81,,,,,L421 U417 ,86642,,, +410,XOE,,3YVE,b,Rem Vision,56.6875,-2.458333,,0.025,,766,315,81,,,,,L398 U402 8.1s,86643,,, +410,XOE,,C6NO5,b,Saipem 7000 Platform,59.854167,2.041667,,0.025,,902,344,82,,,,,L421 U425 ,84740,,, +410,XOE,,LMKL,b,Havila Troll / Offshore Tug,60.395833,5.041667,,0.025,,925,355,82,,,,,,84756,,, +410,XOE,,LXUB,b,Simon Stevin,60.479167,4.958333,,0.025,,935,355,82,,,,,L429 U428 ,86650,,, +410,XOE,,2BKQ8,b,Stena Carron - Rig Fleet,60.5625,-0.958333,,0.025,,1042,337,83,,,,91,L400 U400 11299s,84735,,, +410,XOE,,JWLN,b,Island Wellserver,65.104167,6.708333,,0.025,,1445,1,87,,,,,L395 U405 ,86648,,, +410,E,,C,b,La Corua (GAL-C),43.3125,-8.375,,0.025,,1472,234,88,,,,996,L1032 U1026 9.14s,ID+8 gap,84739,, +410,RUS,,SF,b,Cherusti,55.5625,40.041667,,0.025,,2217,67,95,,,,309,L400 U1020 ,84763,,, +410,CNR,,TX,b,Tenerife Norte / Los Rodeos (STC-TF),28.4375,-16.291667,,0.2,,3233,224,96,,,,502,L~1020 U1003 ,84768,,, +410,LBY,,VH,b,Hofra V10 (srt),29.354167,18.041667,,0.025,,2706,155,100,,,,2,L1025 U1030 ,ID+7 gap,84770,, +410,JOR,,QA,b,Amman / Queen Alia Intl (amn),31.729167,36.125,,0.06,,3301,122,102,,,,0,L1018 U1016 11.0s,ID+8 gap,84761,, +410,RUS,,US,b,Ekaterinburg / Aramil / Uktus (SV),56.6875,60.791667,,0.025,,3462,60,108,,,,0,L394 U400 15.0s,IDx2 + 8 gap,84769,, +410,PAK,,KE,b,Chor (shd),25.520833,69.791667,,0.4,,6000,94,121,,,,994,L1033 U1018 ,84755,,, +410,USA,,CYE,b,Crystal Lake Wilkes-Barre (PA),41.229167,-75.791667,,0.025,,6044,294,133,,,,986,L1047 U1019 6061s,84741,,, +410,USA,,SO,b,Suomi Marquette (MI),46.270833,-87.375,,0.025,,6356,305,137,,,,984,L1058 U1029 6103s,84766,,, +410,CAN,,6Z,b,La Loche (SK),56.479167,-109.375,,0.025,,6595,325,139,,,,993,L407 U408 ,84736,,, +410,USA,,GDV,b,Glendive (MT),47.145833,-104.791667,,0.1,,7193,315,139,,,,992,L1030 U1015 6.2s,84749,,, +410,USA,,MK,b,Cappy Milwaukee (WI),42.854167,-87.875,,0.025,,6649,302,139,,,,983,L1055 U1020 7.5s,84757,,, +410,USA,,BA,b,Clifs Columbus (IN),39.3125,-85.791667,,0.025,,6805,298,141,,,,993,L1060 U1040 5479s,84737,,, +410,USA,,JU,b,Ashee West Jefferson (NC),36.4375,-81.291667,,0.025,,6756,293,141,,,,,U1015 3915s,84753,,, +410,USA,,EGQ,b,Emmetsburg (IA),43.104167,-94.708333,,0.025,,7014,307,143,,,,8,L1010 U1022 6.8s,84745,,, +410,USA,,BQ,b,Jeffi Brunswick (GA),31.229167,-81.541667,,0.025,,7190,289,145,,,,,L1019 ,84738,,, +410,USA,,TIQ,b,Trainer Paris (TN),36.229167,-88.375,,0.025,,7210,297,145,,,,10,L1019 U1040 5588s,84767,,, +410,USA,,MSB,b,Monarch Iola (KS),37.770833,-95.375,,0.025,,7495,303,148,,,,988,L1065 U1050 5.5s,84758,,, +410,USA,,XBR,b,Brantley Fort Rucker (Ozark) (AL),31.5625,-86.291667,,0.025,,7466,293,148,,,,981,L1043 U1004 8349s,84771,,, +410,B,,FOZ,b,Foz do Iguau (PR),-25.520833,-54.541667,,1,,10460,232,149,,,,,U1064 7s,84748,,, +410,USA,,MPJ,b,Morrilton (AR),35.104167,-92.958333,,0.025,,7579,300,149,,,,,,87248,,, +410,USA,,HMM,b,Hamilton (MT),46.270833,-114.125,,0.025,,7698,320,150,,,,35,L1010 U1080 7.4s,84751,,, +410,CLM,,ECB,b,Uribia (El Cabo) (lag),12.1875,-72.125,,0.05,,8160,269,152,,,,146,L828 U822 7.35s,DB3ID,84744,, +410,MYA,,MKA,b,Myitkyina,25.350556,97.279444,,0.025,,7868,73,152,,,,,,22100035,,, +410,USA,,GG,b,Veels Longview (TX),32.4375,-94.791667,,0.025,,7915,299,152,,,,995,L1035 U1026 5.90s,84750,,, +410,USA,,DQU,b,De Quincy (LA),30.4375,-93.458333,,0.025,,8006,297,153,,,,0,L1057 U1015 7.8s,84743,,, +410,USA,,OIP,b,Old Rip Eastland (TX),32.395833,-98.791667,,0.025,,8154,302,155,,,,998,L1026 U1020 6370s,84759,,, +410,B,,PEL,b,Manaus/Ponta Pelada (AM),-3.145833,-59.958333,,0.025,,8708,249,159,,,,999,L1026 U1025 7067s,ID+4 gap,84760,, +410,USA,,DAO,b,Dragoo Fort Huachuca (Sierra Vista) (AZ),31.604167,-110.375,,0.025,,8868,309,159,,,,0,L1064 U990 7.0s,84742,,, +410,CHN,,FO,b,Baiyun,23.145833,113.208333,,0.025,,9068,63,160,,,,,,86647,,, +410,USA,,NZJ,b,Santa Ana (USMC) (CA),33.6875,-117.708333,,0.025,,9041,316,160,,,,,,87249,,, +411,USA,,VFU,b,Stanley Van Wert (OH),40.854167,-84.625,,0.025,,6614,299,139,,,,998,L1037 U1030 8.7s,84779,,, +411,USA,,RD,b,Bodey Redmond (OR),44.3125,-121.041667,,0.4,,8172,324,143,,,,982,L1062 U1022 6.0s,84777,,, +411,USA,,HAE,b,Hannibal (MO),39.729167,-91.458333,,0.025,,7107,302,144,,,,4,L1042 U1040 5159s,84772,,, +411,CAN,,RM,b,Rocky Mountain House (AB),52.354167,-115.041667,,0.025,,7182,325,145,,,,,,87250,,, +411,CHN,,PK,b,Eren (NM),43.645833,111.958333,,0.025,,7207,50,145,,,,,U13 ,IDx2 + 30 tone,84776,, +411,USA,,SDA,b,Shenandoah (IA),40.770833,-95.375,,0.025,,7243,305,145,,,,24,L981 U1040 4.6s,84778,,, +411,ALS,,ILI,b,Iliamna (AK),59.729167,-154.875,,0.025,,7466,350,148,,,,5,L1030 U1040 ,TWEB,84774,, +411,USA,,HDL,b,Holdenville (OK),35.104167,-96.375,,0.025,,7779,302,151,,,,,L1015 U1019 6.2s,84773,,, +412,E,,GRN,b,Girona (CAT-GI),42.020833,2.791667,,0.25,,1154,195,75,,,,2,L1040 U1039 11.03s,ID+8 gap,84788,, +412,F,,SE,b,Strasbourg / Entzheim (67),48.604167,7.708333,,0.025,,401,166,77,,,,,L400 U406 ,84796,,, +412,SVK,,FS,b,Sliač (BB),48.5625,19.125,,0.025,,983,109,83,,,,0,L1060 U1071 ,84786,,, +412,HNG,,PP,b,Pcs (Pec),46.0625,18.291667,,0.025,,1094,123,84,,,,995,L1020 U1023 8.17s,ID+6 gap,84794,, +412,HRV,,HUM,b,Humac (st),43.270833,16.708333,,0.025,,1247,138,85,,,,1,L1040 U1047 8.23s,ID+5 tone,84790,, +412,I,,CIA,b,Ciampino (rm),41.854167,12.541667,,0.025,,1231,156,85,,,,,,ID+27 tone,84782,, +412,SRB,,DAK,b,Amiko / Dakovica,45.4375,20.458333,,0.025,,1265,120,86,,,,0,L1023 U1025 7.0s,ID+2.5 gap,84785,, +412,FIN,,I,b,Halli / Markkulanmki,61.854167,24.875,,0.025,,1547,38,88,,,,0,L408 U410 ,84791,,, +412,E,,GRA,b,Granada (AND-GR),37.1875,-3.708333,,0.025,,1838,209,91,,,,11,L1019 U1041 15.88s,ID+13 gap,84787,, +412,I,,SIG,b,Sigonella (ct),37.395833,14.958333,,0.025,,1767,154,91,,,,3,L1017 U1031 7.0s,ID+3 gap,84797,, +412,RUS,,KS,b,Balandino,55.3125,61.625,,0.025,,3555,62,109,,,,997,L993 ,84793,,, +412,KAZ,,LS,b,Krayniy (byq),45.645833,63.208333,,0.025,,4106,77,114,,,,,,86654,,, +412,AFG,,HRT,b,Herat (her),34.229167,62.208333,,0.025,,4800,92,121,,,,,L1016 U1027 ,84789,,, +412,CAN,,1W,b,Sandy Bay (SK),55.5625,-102.291667,,0.025,,6377,320,137,,,,305,L410 U1030 no das,84780,,, +412,USA,,CTZ,b,Clinton (NC),34.979167,-78.375,,0.025,,6685,290,140,,,,4,L1007 U1022 8543s,84784,,, +412,USA,,CMY,b,Mc Coy Sparta (WI),43.9375,-90.625,,0.01,,6720,305,144,,,,975,L1061 U1014 8634s,84783,,, +412,USA,,JHH,b,Griffin (GA),33.1875,-84.208333,,0.025,,7201,292,145,,,,7,L1019 U1025 6.5s,84792,,, +412,CUB,,UNG,b,Nueva Gerona (ij),21.770833,-82.875,,0.1,,8068,283,148,,,,930,L1211 U1217 6002s,84799,,, +412,USA,,BWR,b,Brewster Co Alpine (TX),30.4375,-103.625,,0.025,,8605,304,158,,,,998,L1013 U1015 6.0s,84781,,, +412,VUT,,SON,b,Santo / Pekoa (sam),-15.520833,167.208333,,0.025,,15607,30,181,,,,0,L1100 U1021 6s,84798,,, +412.5,CLM,,MTU,b,Mit (vau),1.270833,-70.208333,,0.025,,8986,260,160,,,,-412.5,L13 11.1s,84801,,, +413,AUT,,KTI,b,Innsbruck / Khtai,47.229167,11.041667,,0.025,,637,147,79,,,,999,L1020 U1019 10.03s,84810,,, +413,I,,BOA,b,Bologna (bo),44.5625,11.208333,,0.04,,911,155,80,,,,2,L1014 U1021 8.84s,ID+4 gap,84805,, +413,F,,ALM,b,Aix Les Milles (13),43.520833,5.375,,0.025,,958,185,83,,,,,U8 20.0s,DAID,84803,, +413,ALG,,MCH,b,Mecheria (45),33.5625,-0.208333,,0.05,,2130,197,91,,,,,L13 12.5s,ID+9 tone,84812,, +413,TUR,,GEY,b,Antalya (akd-ant),36.895833,30.458333,,0.025,,2528,123,98,,,,,L1025 ,ID+4 gap,84808,, +413,XON,,6C,b,Henry Goodrich Platform,46.479167,-48.458333,,0.025,,3931,283,112,,,,,L401 U400 5.6s,84802,,, +413,CAN,,YHD,b,Dryden (ON),49.854167,-92.875,,0.25,,6378,311,127,,,,14,L400 U405 10.5s,DAID,84819,, +413,MEX,,TAM,b,Tampico (tam),22.270833,-97.875,,1,,8991,295,144,,,,62,L930 U1055 ,84817,,, +413,USA,,MC,b,Ferni Mc Comb (MS),31.270833,-90.541667,,0.025,,7756,295,151,,,,999,L402 U405 8599s,84811,,, +413,USA,,CBC,b,Anahuac (TX),29.770833,-94.625,,0.025,,8134,297,154,,,,983,L1054 U1019 8501s,84807,,, +413,USA,,OEG,b,Golden Eagle Yuma Proving Ground (AZ),32.854167,-114.458333,,0.049,,8962,313,157,,,,976,L1055 U1008 8.2s,84814,,, +413.5,D,,DLS,b,Berlin / Tempelhof / Lbars (brb),52.604167,13.375,,0.05,,476,81,75,,,,4999,L1020 U1020 5.67s,ID+1 gap,84820,, +414,XOE,,GFB,b,Statoil Gullfaks B Platform,51.1875,2.208333,,0.025,,307,252,76,,,,,L397 U400 ,84834,,, +414,G,,BRI,b,Bristol / Filton (EN-BRI),51.395833,-2.708333,,0.025,,632,266,79,,,,5,L400 U413 10.3s,84826,,, +414,NOR,,SLB,b,Oslo / Gardermoen / Solberg (os),60.020833,10.958333,,0.025,,923,16,82,,,,998,L402 U399 10.0s,84858,,, +414,SVN,,ILB,b,Bistrica,45.5625,14.208333,,0.025,,924,139,82,,,,2,L1018 U1022 20.1s,ID+17 gap,84842,, +414,XOE,,GFA,b,Statoil Gullfaks A Platform,61.1875,2.208333,,0.025,,1041,347,83,,,,,,84833,,, +414,XOE,,STC,b,Statfjord C,61.1875,1.541667,,0.025,,1052,346,83,,,,,L411 U392 8.7s,86658,,, +414,XOE,,STA,b,Stafjord A Platform,61.270833,1.875,,0.025,,1055,347,84,,,,,L411 U404 9.5s,ID+6 gap,86829,, +414,HRV,,GR,b,Dubrovnik / Gruda (du),42.520833,18.291667,,0.025,,1389,135,87,,,,991,L1045 U1022 11.0s,ID+8 gap,84836,, +414,NOR,,HD,b,Sandnessjen / Stokka / Hestad (no),66.0625,12.541667,,0.025,,1589,10,89,,,,7,L374 U385 8.0s,84838,,, +414,NOR,,SJA,b,Bardufoss / Senja,69.145833,17.791667,,0.025,,1986,13,93,,,,0,L390 U413 ,84856,,, +414,TUR,,USK,b,Usak (ege-usk),38.6875,29.458333,,0.025,,2320,121,96,,,,993,L1035 U1020 4.0s,Cont.ID,84864,, +414,RUS,,SB,b,Sambek,47.770833,39.791667,,0.025,,2415,88,97,,,,30,L1012 U1020 31.0s,ID+26 gap,84855,, +414,SYR,,LTK,b,Latakia / Basel Al-Assad Intl (lat),35.479167,35.958333,,0.025,,2972,117,103,,,,,L1024 U1018 ,ID+2 gap,84847,, +414,CAN,,BC,b,Baie-Comeau (QC),49.104167,-68.291667,,0.5,,5044,297,110,,,,,U387 10.1s,DAID,84825,, +414,CAN,,3U,b,Gatineau (QC),45.520833,-75.541667,,0.085,,5720,297,125,,,,999,L395 U394 10550s,DAID,84821,, +414,USA,,OGY,b,Bridge New York (NY),40.5625,-73.875,,0.025,,5972,292,133,,,,0,L1030 U1041 7968s,84852,,, +414,USA,,SUE,b,Sturgeon Bay (WI),44.854167,-87.458333,,0.025,,6469,304,138,,,,998,L1030 U1027 ,84861,,, +414,USA,,CSS,b,Court House Washington Court House (OH),39.604167,-83.375,,0.025,,6636,297,139,,,,999,L1020 U1020 Cos,84828,,, +414,ALS,,OQK,b,Noatak (AK),67.5625,-162.958333,,0.025,,6679,355,140,,,,,L1050 U1035 ,86828,,, +414,USA,,IA,b,Taffs Chicago (IL),41.979167,-87.791667,,0.025,,6713,301,140,,,,973,L1065 U1010 ,84840,,, +414,CAN,,8M,b,Elk Point (AB),53.895833,-110.791667,,0.025,,6874,324,142,,,,,U384 10.43s,DBID,84822,, +414,CAN,,Y,b,Brophy / Regina (SK),50.4375,-104.791667,,0.025,,6912,318,142,,,,,U400 ,DAID,87252,, +414,USA,,FDW,b,Winnsboro (SC),34.3125,-81.125,,0.025,,6914,291,142,,,,0,L1014 U999 5659s,84832,,, +414,USA,,LK,b,Laang Louisville (KY),38.145833,-85.625,,0.025,,6888,297,142,,,,2,L1047 U1050 5.69s,84846,,, +414,CAN,,ZRG,b,Brophy (Regina) (SK),50.4375,-104.791667,,0.02,,6912,318,143,,,,0,L394 U400 10.3s,DAID,84866,, +414,USA,,HZE,b,Hazen (ND),47.3125,-101.541667,,0.025,,7021,314,143,,,,,U990 6.0s,84839,,, +414,USA,,LYI,b,Libby (MT),48.3125,-115.458333,,0.1,,7567,322,143,,,,995,L1029 U1016 5.92s,84848,,, +414,USA,,OOA,b,Oskaloosa (IA),41.229167,-92.458333,,0.025,,7041,304,143,,,,0,L1025 U1020 6949s,84853,,, +414,USA,,SU,b,Salix Sioux City (IA),42.3125,-96.291667,,0.04,,7166,307,143,,,,983,L1065 U1003 6.0s,84860,,, +414,USA,,JUE,b,Lebanon (TN),36.1875,-86.291667,,0.025,,7086,296,144,,,,3,L1011 U1016 5.6s,84844,,, +414,USA,,AZE,b,Hazlehurst (GA),31.895833,-82.625,,0.025,,7205,290,145,,,,0,L1022 U1016 5.14s,84824,,, +414,ALS,,IME,b,Mount Edgecumbe Sitka (AK),57.0625,-135.375,,0.025,,7386,338,147,,,,966,L1072 U1005 ,84843,,, +414,USA,,GRN,b,Gordon (NE),42.8125,-102.208333,,0.025,,7438,311,147,,,,998,L1035 U1035 6.4s,84837,,, +414,USA,,IEB,b,Lebanon (MO),37.5625,-92.625,,0.025,,7353,301,147,,,,0,L1030 U1037 8.1s,84841,,, +414,USA,,SPQ,b,Spain Memphis (TN),35.1875,-90.041667,,0.025,,7397,298,147,,,,2,L1015 U1020 ,84859,,, +414,USA,,EGT,b,Wellington (KS),37.3125,-97.375,,0.025,,7648,304,149,,,,92,L1020 U1022 5.0s,84830,,, +414,USA,,NWH,b,Walnut Hill (FL),30.8125,-87.541667,,0.025,,7607,293,149,,,,,L1020 ,84850,,, +414,USA,,GL,b,Shugr Goodland (KS),39.3125,-101.625,,0.025,,7710,308,150,,,,7,L1021 U1037 6.7s,84835,,, +414,USA,,MSD,b,Mansfield (LA),32.0625,-93.791667,,0.025,,7887,298,152,,,,4,L1042 U1016 8.0s,84849,,, +414,USA,,PYD,b,Area 19 Groom Lake (NV),37.1875,-115.958333,,0.1,,8627,316,152,,,,985,L1061 U1030 8.0s,84854,,, +414,USA,,DUX,b,Durrett Dumas (TX),35.854167,-102.041667,,0.025,,8035,306,153,,,,514,L1010 U2038 ,84829,,, +414,USA,,HQ,b,Abern Hoquiam (WA),46.979167,-123.791667,,0.025,,8023,327,153,,,,,L1080 ,87251,,, +414,CHN,,FC,b,Fujiazhuang (LN),38.854167,121.625,,0.025,,8124,47,154,,,,,,84831,,, +414,USA,,SKX,b,Ski Taos (NM),36.4375,-105.708333,,0.025,,8182,309,155,,,,999,L1022 U1020 5.3s,84857,,, +414,USA,,ATS,b,Artesia (NM),32.854167,-104.458333,,0.025,,8435,306,157,,,,2,L1017 U1018 4.5s,84823,,, +414,THA,,UP,b,Rayong/U-Taphao Int. (ryg),12.645833,100.958333,,0.025,,9207,79,160,,,,,U1034 8s,ID+6 gap,84863,, +414.5,USA,,RPB,b,Republican Belleville (KS),39.8125,-97.625,,0.025,,7449,306,147,,,,510,L1005 U1029 6.0s,84867,,, +415,D,,RTB,b,Nrnberg / Rothenbach (bay),49.479167,11.291667,,0.025,,451,129,77,,,,997,L1023 U1018 ,84886,,, +415,S,,OL,b,Linkping/Saab,58.395833,15.791667,,0.025,,916,37,82,,,,998,L402 U406 ,84882,,, +415,F,,TOE,b,Toulouse / Blagnac (31),43.479167,1.708333,,0.015,,1021,202,85,,,,,U5 ,ID+17 tone,84890,, +415,UKR,,WI,b,Vinnitsa (VI),49.270833,28.625,,0.025,,1590,93,89,,,,11,L1046 U1049 7.5s,ID+4 gap,84891,, +415,UKR,,WN,b,Vinnitsa (VI),49.229167,28.625,,0.025,,1591,93,89,,,,2,L370 U374 ,84892,,, +415,BUL,,RUS,b,Russe (rus),43.645833,25.958333,,0.025,,1727,115,90,,,,998,L1022 U1018 7.9s,ID+8 gap,84887,, +415,ALG,,ON,b,Oran / Es Senia (31),35.729167,-0.375,,0.025,,1899,199,92,,,,,U27 ,ID+11 tone,84883,, +415,ISL,,OE,b,Akureyri (ne),65.6875,-18.041667,,0.025,,2036,327,93,,,,,U1015 ,84880,,, +415,RUS,,DR,b,Skurygino,55.229167,37.375,,0.025,,2052,68,93,,,,980,L402 U405 14.9s,IDx2 + 6 gap,84873,, +415,RUS,,LM,b,Tsentralny / Orenburg (OB),51.8125,55.541667,,0.025,,3301,71,106,,,,,U385 ,84877,,, +415,RUS,,WP,b,Tsentralny / Orenburg (OB),51.8125,55.375,,0.025,,3290,71,106,,,,,,84893,,, +415,GHA,,TL,b,Tamale (nth),9.571667,-0.849167,,0.025,,4776,191,121,,,,,,3000004,,, +415,CYM,,CBC,b,West End (Cayman Brac),19.6875,-79.875,,1,,8044,280,137,,,,3,L1014 U1024 8.5s,84870,,, +415,USA,,ASJ,b,Ahoskie (NC),36.3125,-77.208333,,0.025,,6506,290,138,,,,79,L965 U1123 7573s,84869,,, +415,LCA,,SLU,b,Castries (cts),14.020833,-61.041667,,0.1,,7248,261,139,,,,,U1019 ,84889,,, +415,USA,,DJD,b,Canton (GA),34.270833,-84.458333,,0.025,,7128,293,144,,,,0,L1018 U1029 5.81s,84872,,, +415,B,,ANP,b,Anpolis (GO),-16.3125,-49.041667,,1,,9289,233,145,,,,,U1071 6604s,84868,,, +415,USA,,LO,b,Targy West Yellowstone (MT),44.5625,-111.208333,,0.05,,7723,318,147,,,,978,L1070 U1023 5.9s,84878,,, +415,USA,,HJM,b,Rayburn Bonham (TX),33.604167,-96.208333,,0.025,,7898,301,152,,,,,U1020 ,84874,,, +415,CLN,,AN,b,Anuradhapura AB (adp),8.303333,80.429444,,0.025,,8191,98,155,,,,,,34700017,,, +415,B,,PCL,b,Poos de Caldas (MG),-21.854167,-46.541667,,0.1,,9691,228,156,,,,995,L1029 U1020 ,84884,,, +415,CLM,,CJN,b,Cerrejn (lag),11.229167,-72.541667,,0.025,,8272,268,156,,,,,U1023 ,84871,,, +415,MYA,,PTN,b,Pathein,16.801111,94.779722,,0.025,,8432,81,157,,,,,,22100039,,, +415,XON,,IEE,b,Platform Irene 25,34.604167,-120.708333,,0.03,,9093,318,159,,,,,U1028 4.0s,84875,,, +415,TWN,,KW,b,Hengchun (PT),21.9375,120.875,,0.025,,9632,58,162,,,,,U1020 ,84876,,, +415,EQA,,SLS,b,Salinas (Guayas) (gua),-2.1875,-80.958333,,0.025,,10020,267,163,,,,12,L993 U1005 7.1s,84888,,, +415.5,XOE,,ANR,b,BP / Andrew,58.0625,1.375,,0.025,,735,336,80,,,,-415.5,,86659,,, +416,XOE,,CRC,b,Carrack QA,53.604167,2.791667,,0.025,,294,306,76,,,,,L1022 U1020 7.0s,86660,,, +416,CZE,,V,b,Vodochody / Pan Brezany (ST),50.229167,14.458333,,0.025,,598,107,79,,,,43,L981 U1048 9.0s,84911,,, +416,F,,ULT,b,Ussel / Thalamy (19),45.520833,2.458333,,0.025,,787,203,81,,,,,L3 ,ID+17 tone,84910,, +416,CZE,,KUN,b,Kunovice (ZL),49.104167,17.541667,,0.025,,853,109,82,,,,,L1038 U1036 ,84900,,, +416,E,,SA,b,Santander (CNT-S),43.4375,-3.875,,0.05,,1231,222,82,,,,,L1015 U1023 ,ID+4 gap,84908,, +416,S,,R,b,Arvika,59.645833,12.625,,0.025,,922,22,82,,,,3,L395 U404 ,84906,,, +416,TUR,,Samsun Turk Radyo,c,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,????-????,1234567,,,19901442,,, +416,HNG,,KD,b,Taszr (Som),46.4375,17.875,,0.025,,1042,123,83,,,,690,L1020 U400 ,IDx2 + 20 gap,84899,, +416,SRB,,POZ,b,Beograd/Poarevac (Srb-brn),44.604167,21.125,,0.04,,1366,122,85,,,,974,L1070 U1020 ,ID+4 tone,84905,, +416,S,,BCS,b,Baccus,62.5625,17.041667,,0.025,,1322,24,86,,,,996,L401 U403 ,84895,,, +416,MLT,,LQA,b,Malta/Luqa (mt),35.895833,14.541667,,0.08,,1914,157,87,,,,,U1030 16.0s,87253,,, +416,ALG,,MAR,b,Algiers / Houari Boumedienne (16),36.6875,2.791667,,0.025,,1738,191,90,,,,5,L1020 U1021 ,ID+7 gap,84902,, +416,FIN,,TOR,b,Rovaniemi / Toramo,66.645833,25.958333,,0.025,,1941,26,92,,,,2,L403 U414 ,84909,,, +416,USA,,BKL,b,Burke Lakefront Cleveland (OH),41.520833,-81.625,,0.025,,6381,297,137,,,,6,L1048 U1060 7.2s,84897,,, +416,RUS,,UFO Kholmsk R,c,Kholmsk (SL),47.023556,142.045056,,1,,8212,30,139,,????-????,1234567,,,19901341,,, +416,CLM,,HKC Buenaventura R,c,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900408,,, +416,MDG,,5RT Toliara R,c,Toliara=Tular (tlr),-23.35,43.666667,,1,,9138,146,144,,????-????,1234567,,,19901068,,, +416,USA,,LB,b,Panbe North Platte (NE),41.0625,-100.541667,,0.05,,7501,309,145,,,,983,L1052 U1024 7.5s,84901,,, +416,USA,,RN,b,Huggy Kansas City (MO),39.3125,-94.875,,0.025,,7337,304,146,,,,5,L1019 U1024 8.5s,84907,,, +416,AUS,,MTI,b,Mornington Island (QLD),-16.645833,139.208333,,0.025,,14316,64,177,,,,,U1049 9.32s,84903,,, +417,D,,LI,b,Dsseldorf (nrw),51.354167,6.875,,0.025,,90,159,52,,,,981,L1018 U1046 4.3s,ID+6 gap,84924,, +417,D,,HDL,b,Heidelberg (bw),49.395833,8.625,,0.025,,340,152,76,,,,976,L1062 U1015 8.4s,ID+5gap,84920,, +417,G,,ND,b,Great Yarmouth / North Denes (EN-NFK),52.645833,1.708333,,0.025,,325,282,76,,,,5,L406 U412,84925,,, +417,F,,AX,b,Auxerre / Branches (89),47.9375,3.541667,,0.025,,507,205,78,,,,,L398 U406 10.0s,84914,,, +417,E,,SNO,b,Santiago de Compostela (GAL-C),42.895833,-8.458333,,0.2,,1510,233,79,,,,15,L1010 U1019 13.5s,ID+10 gap,84929,, +417,S,,AH,b,Angelholm / Barkakra,56.270833,12.875,,0.025,,625,40,79,,,,9988,L405 U408 4.0s,84913,,, +417,I,,VIC,b,Vicenza (vi),45.645833,11.708333,,0.025,,816,150,81,,,,999,L1020 U1022 8.0s,ID+4 gap,84932,, +417,S,,R,b,Gvle / Sandviken,60.604167,16.958333,,0.025,,1143,30,84,,,,995,L404 U393 ,84927,,, +417,E,,ACD,b,Alcobendas (MAD-M),40.604167,-3.708333,,0.025,,1493,215,88,,,,7,L1016 U1025 10.5s,ID+6 gap,84912,, +417,ROU,,EA,b,Craiova (DJ),44.3125,23.958333,,0.025,,1557,117,89,,,,7,L787 U817 14.5s,ID+13 gap,84915,, +417,GRC,,SYR,b,Syros (seg-kik),37.4375,24.958333,,0.025,,2179,131,95,,,,0,L400 U400 ,ID+4 gap,84930,, +417,USA,,EK,b,Gozzr Worchester (MA),42.270833,-71.708333,,0.025,,5711,292,130,,,,983,L1062 U1031 6.01s,84916,,, +417,VEN,,YVG La Guaira R,c,La Guaira (vgs),10.6,-66.933333,,1,,7944,263,136,,????-????,1234567,,,19901614,,, +417,ALS,,GBH,b,Galbraith Lake (AK),68.479167,-149.458333,,0.025,,6459,350,138,,,,,U1018 ,84919,,, +417,USA,,HHG,b,Huntington (IN),40.854167,-85.458333,,0.025,,6664,299,140,,,,5,L1052 U1042 6.59s,84921,,, +417,USA,,HQT,b,Harnett Coats (NC),35.4375,-78.708333,,0.025,,6670,290,140,,,,5,L1022 U1030 5247s,84922,,, +417,USA,,IY,b,Chukk Charles City (IA),43.145833,-92.708333,,0.025,,6900,305,142,,,,990,L1022 U1039 4.27s,84923,,, +417,USA,,SLP,b,First River Shelby (NC),35.270833,-81.625,,0.025,,6869,292,142,,,,993,L1008 U1005 6146s,84928,,, +417,USA,,EVB,b,New Smyrna Beach (FL),29.0625,-80.958333,,0.025,,7330,287,146,,,,998,L1020 U1018 5.30s,84918,,, +417,USA,,EOG,b,Greensboro (AL),32.604167,-87.625,,0.025,,7463,294,148,,,,,U1009 ,84917,,, +417.5,KRE,,Ch'ongjin R,c,Ch'ongjin (hab),41.775,129.777778,,1,,8240,40,139,,????-????,1234567,-417.5,,19901001,,, +418,F,,MK,b,Calais / Dunkerque (62),50.8125,2.041667,,0.025,,335,246,76,,,,,U36 ,DAID,84941,, +418,AUT,,ZW,b,Zeltweg,47.1875,14.791667,,0.05,,814,129,78,,,,,U1013 ,84949,,, +418,I,,SVC,b,Aosta (ao),45.729167,7.708333,,0.025,,716,172,80,,,,,U1019 10.0s,84947,,, +418,SVK,,PW,b,Poprad / Tatry West (PO),49.0625,20.041667,,0.025,,1018,104,83,,,,,U1018 ,84943,,, +418,F,,SAL,b,Sainte Leocadie (66),42.4375,2.041667,,0.025,,1124,199,84,,,,,L4 ,84945,,, +418,HRV,,DVN,b,Split / Drvenik (st),43.4375,16.125,,0.025,,1205,139,85,,,,990,L1020 U995 ,84937,,, +418,ROU,,ORA,b,Oradea (BH),47.104167,21.958333,,0.025,,1248,110,85,,,,995,L1035 U1045 30.0s,IDx2 + 18 gap,84942,, +418,EST,,L,b,Tallinn/lemiste (Har),59.395833,24.875,,0.025,,1404,48,87,,,,3,L408 U412 ,ID+7 gap,84940,, +418,E,,BAI,b,Bailen (AND-J),38.145833,-3.625,,0.025,,1737,211,90,,,,982,L1043 U1014 7.8s,ID+5 gap,84935,, +418,E,,BLN,b,Bailen (AND-J),38.145833,-3.625,,0.025,,1737,211,90,,,,,,87254,,, +418,GRC,,ELF,b,Elefsis (att-wst),38.0625,23.541667,,0.025,,2051,133,93,,,,5,L1000 U1010 ,ID+4.5 gap,84939,, +418,JOR,,AQA,b,Aqaba (aqb),30.229167,35.208333,,0.025,,3383,125,107,,,,,U1020 ,ID+3 gap,84934,, +418,KAZ,,SP,b,Semipalatinsk (sgq),50.354167,80.291667,,0.025,,4919,61,122,,,,,,84946,,, +418,USA,,EL,b,Lados El Dorado (AR),33.270833,-92.708333,,0.025,,7719,298,150,,,,0,L1019 U1021 8.13s,84938,,, +418,USA,,CW,b,Mossy Lake Charles (LA),30.3125,-93.208333,,0.025,,8001,296,153,,,,983,L1046 U1012 6.0s,84936,,, +418,USA,,PYF,b,Pyramid Fairfield (TX),31.854167,-96.208333,,0.025,,8049,300,153,,,,,,84944,,, +418,EQA,,TLC,b,Tulcan (Carchi) (car),0.8125,-77.708333,,0.025,,9535,266,161,,,,997,L1039 U1023 7258s,84948,,, +419,D,,WUN,b,Wunstorf (nds),52.479167,9.458333,,0.025,,211,78,75,,,,0,L1037 U1040 8.5s,84961,,, +419,F,,EMT,b,Epinal / Mirecourt (88),48.3125,6.208333,,0.025,,423,182,77,,,,,L399 U404 ,ID+8 gap,84951,, +419,XOE,,RA,b,Tyra East A Platform,55.4375,4.458333,,0.025,,392,342,77,,,,998,L407 U401 4.0s,84956,,, +419,S,,RD,b,Vsters/Hasslo,59.520833,16.625,,0.025,,1040,34,83,,,,3,L395 U401 ,84957,,, +419,FIN,,HY,b,Vaasa / Lngskog,62.979167,21.791667,,0.025,,1509,31,88,,,,1,L406 U412 ,84953,,, +419,GRC,,LRO,b,Leros (seg-dod),37.1875,26.791667,,0.025,,2298,128,96,,,,0,L375 U345 ,ID+4.5 gap,84954,, +419,USA,,RYS,b,Grosse Ile Detroit / Grosse Ile (MI),42.104167,-83.125,,0.025,,6427,299,137,,,,8,L1012 U1027 5.5s,84958,,, +419,USA,,TX,b,Gwnet Lawrenceville (GA),34.020833,-83.875,,0.025,,7112,293,144,,,,978,L1060 U1016 8.0s,84960,,, +419,USA,,GB,b,Babsy Great Bend (KS),38.270833,-98.875,,0.025,,7650,306,149,,,,988,L1045 U1020 6.8s,84952,,, +420,XOE,,LGS,b,Conoco Loggs Platform,53.395833,2.041667,,0.025,,327,298,76,,,,3,L398 U402 8.1s,84978,,, +420,AUT,,INN,b,Innsbruck,47.229167,11.375,,0.04,,649,145,77,,,,998,L1020 U1017 10.0s,84974,,, +420,I,,ABN,b,Albenga (sv),44.0625,8.208333,,0.04,,905,171,80,,,,,L2 ,84963,,, +420,XOE,,LTR,b,Talisman / Saltire Alpha,58.395833,0.291667,,0.025,,799,333,81,,,,0,L420 U420 ,84980,,, +420,XOE,,PF,b,Talisman / Piper Bravo Platform,58.479167,0.208333,,0.025,,809,334,81,,,,,,84983,,, +420,F,,LMT,b,Auch / Lamothe (32),43.729167,0.625,,0.025,,1026,207,83,,,,,,84979,,, +420,HRV,,GS,b,Pula (pa),44.895833,13.875,,0.025,,971,143,83,,,,985,L1043 U987 9.5s,ID+7 tone,84971,, +420,LBY,,5AL Tobruk=Tubruq R,c,Tobruk=Tubruq (but),32.086111,24.005556,,1,,2643,141,83,,????-????,1234567,,,19901024,,, +420,HNG,,HM,b,Budapest/Ferenc Liszt Int. (Bud),47.395833,19.291667,,0.025,,1061,114,84,,,,995,L1020 U1020 ,84973,,, +420,E,,SPP,b,Sevilla / San Pablo (AND-SE),37.4375,-5.791667,,0.1,,1889,215,86,,,,996,L1014 U1018 11.19s,ID+6 gap,84988,, +420,SRB,,BT,b,Batajnica (Srb-gbg),44.979167,20.208333,,0.025,,1285,123,86,,,,,L1016 U1043 ,ID+7 tone,86662,, +420,SRB,,EK,b,Batajnica (Srb-gbg),44.895833,20.291667,,0.025,,1296,123,86,,,,,,86664,,, +420,MNE,,GO,b,Podgorica (PG),42.3125,19.291667,,0.025,,1456,133,88,,,,5,L1026 U1029 ,ID+5 gap,84970,, +420,RUS,,KN,b,Kobona,60.020833,31.541667,,0.025,,1775,50,91,,,,680,L908 U904 30.0s,IDx2 + 23 gap,84977,, +420,RUS,,LZ,b,Michurinsk,52.9375,40.375,,0.025,,2278,74,96,,,,,7.5s,ID+3.5 gap,86665,, +420,RUS,,DV,b,Dzhubga,44.3125,38.708333,,0.025,,2520,97,98,,,,,L400 U400 ,IDx2,86663,, +420,AZR,,PI,b,Madalena (pic),38.5625,-28.375,,0.025,,3067,254,104,,,,0,L1017 U1020 ,ID+2 gap,84984,, +420,RUS,,SHF,b,Orsk (OB),51.270833,58.625,,0.025,,3522,70,108,,,,,7.5s,ID+2.5s gap,84987,, +420,KAZ,,AB,b,Atbasar (aqm),51.895833,68.375,,0.025,,4109,65,114,,,,,,ID+7.5 tone,84962,, +420,TJK,,WG,b,Dushanbe (dsb),38.543056,68.885,,0.025,,4944,82,122,,,,,,34200008,,, +420,RUS,,UBR6 Nevelsk R,c,Nevelsk,46.666667,141.866667,,1,,8242,30,139,,????-????,1234567,,,19901358,,, +420,USA,,GAS,b,Gallipolis (OH),38.8125,-82.125,,0.025,,6621,295,139,,,,,U1020 ,84969,,, +420,CLM,,HKB Barranquilla R,c,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900402,,, +420,RUS,,UBT6 Severo-Kurilsk R,c,Severo-Kurilsk (SL),45.233333,147.883333,,1,,8582,27,142,,????-????,1234567,,,19901365,,, +420,USA,,CFY,b,Evans Lake City (SC),33.854167,-79.791667,,0.025,,6865,290,142,,,,0,L1020 U1020 5667s,84965,,, +420,USA,,FQ,b,Montz Fairmont (MN),43.645833,-94.375,,0.025,,6951,307,142,,,,975,L1081 U1026 8.0s,84968,,, +420,USA,,CEK,b,Crete (NE),40.604167,-96.958333,,0.025,,7345,306,146,,,,,L~1081 U1040 ,87255,,, +420,USA,,PK,b,Olathe (KS),38.770833,-94.708333,,0.025,,7373,303,147,,,,0,L1038 U1038 5.56s,84985,,, +420,USA,,TU,b,Veron Tupelo (MS),34.1875,-88.791667,,0.025,,7404,296,147,,,,990,L1060 U1035 6085s,84990,,, +420,CUB,,V,b,Varder Varadero, Santo Domingo (ma),23.01995,-81.458183,,0.025,,7867,283,152,,,,3,L1167 U1169 9.76s,84991,, +420,CLM,,PTE,b,Uribia (Baha Portete) (lag),12.229167,-71.966667,,0.025,,8146,268,154,,,,3,L1068 U1075 7.3s,84986,,, +420.5,IND,,VWZ Ratnagiri R,c,Ratnagiri (MH),16.983333,73.3,,1,,6955,98,127,,????-????,1234567,-420.5,,19900693,,, +420.5,J,,Sapporo R,c,Sapporo (hok),43.05,141.35,,1,,8583,32,142,,????-????,1234567,-420.5,,19900913,,, +421,G,,BUR,b,Burnham (EN-BER),51.520833,-0.708333,,0.025,,493,265,78,,,,3,L397 U400 6.0s,84994,,, +421,S,,MF,b,Halmstad,56.645833,12.791667,,0.025,,652,37,79,,,,9957,L405 U408 4.5s,84998,,, +421,HRV,,SAL,b,Zadar / Sali (zd),43.9375,15.208333,,0.04,,1118,141,82,,,,0,L1010 U1015 ,84999,,, +421,S,,T,b,Linkping/Saab,58.395833,15.708333,,0.025,,913,36,82,,,,0,L400 U404 1.0s,85000,,, +421,S,,BL,b,Borlnge / Rommehed / Falun,60.479167,15.375,,0.025,,1080,27,84,,,,989,L407 U392 4.5s,84992,,, +421,I,,FN,b,Fiumicino (rm),41.895833,12.208333,,0.025,,1217,157,85,,,,6,L1022 U1019 ,ID+8 gap,84996,, +421,AZR,,CUG So Miguel R,c,So Miguel (smg),37.766667,-25.5,,1,,2939,250,86,,????-????,1234567,,,19900229,,, +421,E,,GE,b,Madrid / Grinon (MAD-M),40.1875,-3.875,,0.025,,1541,215,88,,,,2,L1020 U1034 9399s,ID+8 gap,84997,, +421,S,,TRU,b,Trundon,65.395833,21.791667,,0.025,,1713,25,90,,,,,,85001,,, +421,ALG,,BTN,b,Batna (5),35.5625,6.125,,0.025,,1840,181,91,,,,,U1035 ,84993,,, +421,GNB,,J5M Bissau R,c,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,,,19900597,,, +421,STP,,S9M So Tom R,c,So Tom (sao),0.345833,6.7375,,1,,5756,180,115,,????-????,1234567,,,19901386,,, +421,USA,,EF,b,Fluet Mc Kinney (TX),33.270833,-96.625,,0.025,,7952,301,152,,,,985,L1035 U1004 6.0s,84995,,, +421.5,XOE,,EGN,b,Elgin Platform,57.020833,1.875,,0.025,,619,334,79,,,,500,L400 U400 ,85002,,, +421.5,URG,,CWA Cerrito R,c,Cerrito (mo),-34.866667,-56.166667,,1,,11415,228,152,,????-????,1234567,-421.5,,19901481,,, +422,XOE,,NAL,b,L9-FF-1,53.604167,4.958333,,0.025,,193,330,75,,,,,L1025 U1022 ,86668,,, +422,CZE,,UR,b,Hradec Krlov/Upir (KR),50.1875,15.875,,0.05,,693,104,77,,,,70,L967 U1076 9.0s,85012,,, +422,E,,PAM,b,Pamplona (NAV-NA),42.714211,-1.639039,,0.1,,1206,213,79,,,,3,L1037 U1052 8.5s,ID+4 gap,85008,, +422,HRV,,OSJ,b,Osijek (os),45.4375,18.958333,,0.1,,1179,124,79,,,,2,L1022 U1026 8.4s,ID+4 gap,85007,, +422,HNG,,O,b,Szolnok / Opera (JNS),47.145833,20.208333,,0.025,,1134,114,84,,,,,15.0s,IDx2,85006,, +422,ROU,,TLC,b,Tulcea / Cataloi (TL),44.979167,28.708333,,0.025,,1813,107,91,,,,2,L1025 U1033 6.09s,ID+3 gap,85011,, +422,TUR,,CNK,b,Canakkale (mam-can),40.145833,26.458333,,0.025,,2027,123,93,,,,15,L990 U1015 ,Cont. ID,85004,, +422,GRC,,ATL,b,Astypalaia (seg-dod),36.5625,26.375,,0.025,,2332,130,96,,,,16,L380 U412 ,ID+5 gap,85003,, +422,RUS,,SA,b,Plesetsk (AR),62.6875,40.375,,0.025,,2311,46,96,,,,,,85010,,, +422,RUS,,RQ,b,Plesetsk (AR),44.3125,38.708333,,0.025,,2520,97,98,,,,,,85009,,, +422,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901006,,, +422,GUY,,8RB Demerara R,c,Georgetown (dem),6.816667,-58.158333,,1,,7692,254,134,,????-????,1234567,,,19900633,,, +422,USA,,EA,b,Anoke Kearney (NE),40.645833,-99.041667,,0.025,,7456,307,148,,,,996,L1025 U1015 8.0s,85005,,, +422.5,I,,ALS,b,Alessandria (al),44.895833,8.625,,0.025,,819,168,81,,,,-422.5,,85013,,, +422.5,J,,Shimonoseki R,c,Shimonoseki (chg-yam),33.95,130.95,,1,,9036,44,144,,????-????,1234567,-422.5,,19900919,,, +423,DNK,,FE,b,Odense / Beldringe (sdk-fyn),55.520833,10.458333,,0.025,,463,33,78,,,,9986,U405 4.0s,85020,,, +423,POL,,M,b,Cewice,54.4375,17.791667,,0.025,,799,67,81,,,,,L1012 U1010 ,ID+2.5 gap,85022,, +423,E,,SCA,b,Salamanca (CAL-SA),40.9375,-5.625,,0.1,,1542,221,82,,,,18,L994 U1033 11.0s,ID+7 gap,85025,, +423,POL,,NT,b,Lask,51.5625,19.208333,,0.025,,880,89,82,,,,,L1022 U1003 ,ID+2 gap,86670,, +423,I,,FOR,b,Forli (fc),44.229167,11.958333,,0.025,,967,153,83,,,,2,L1010 U1030 8.0s,85021,,, +423,F,,TS,b,Toulouse / Blagnac (31),43.520833,1.458333,,0.015,,1024,203,85,,,,,U6 ,DAID,85027,, +423,G,,CWL,b,Cranwell (EN-LIN),53.020833,-0.458333,,0.005,,475,285,85,,,,993,L405 U394 10.0s,85018,,, +423,ALG,,BJA,b,Bjaa / Soummam (6),36.6875,5.041667,,0.04,,1718,184,88,,,,,U37 ,ID+15 tone,85015,, +423,SRB,,ZO,b,Ni/Zitoradja (Srb-nsv),43.1875,21.708333,,0.025,,1510,125,88,,,,22,L1135 U900 9.0s,ID+5 tone,85028,, +423,USA,,PCW,b,Port Clinton (OH),41.520833,-82.875,,0.025,,6457,298,138,,,,2,L1011 U1016 6894s,85024,,, +423,USA,,SIF,b,Slammer Reidsville (NC),36.395833,-79.791667,,0.025,,6664,292,140,,,,,L1014 U1024 5417s,85026,,, +423,USA,,CKP,b,Pilot Rock Cherokee (IA),42.729167,-95.541667,,0.025,,7090,307,144,,,,998,L1045 U1031 7.0s,85017,,, +423,USA,,AU,b,Opole Auburn (AL),32.520833,-85.458333,,0.025,,7334,293,146,,,,985,L1008 U1033 6.43s,85014,,, +423,USA,,DXE,b,Dexter (MO),36.770833,-89.958333,,0.025,,7261,299,146,,,,1,L1018 U1020 ,85019,,, +423,USA,,OC,b,Jumpi Ocala (FL),29.0625,-82.208333,,0.025,,7411,288,147,,,,988,L1030 U1013 6091s,85023,,, +423.5,XOE,,EDR,b,Shell Expro / Eider Platform,61.354167,1.291667,,0.025,,1073,345,84,,,,-423.5,,85029,,, +424,E,,RUS,b,Reus (CAT-T),41.145833,1.125,,0.2,,1283,200,77,,,,19,L1010 U1028 21.0s,ID+18 gap,85035,, +424,F,,PHG,b,Phalsbourg / Bourscheid (57),48.770833,7.208333,,0.025,,376,171,77,,,,,U4 ,85033,,, +424,XOE,,FPS,b,Shell Expro / Teal FPSO,57.270833,0.791667,,0.025,,678,330,80,,,,,,86671,,, +424,F,,LOE,b,Limoges / Bellegarde (87),46.020833,1.375,,0.025,,770,210,81,,,,,U5 20.0s,DAID,85031,, +424,HRV,,PIS,b,Zagreb / Pleso / Pisarovina (zg),45.604167,15.875,,0.025,,1000,133,83,,,,967,L986 U905 9.5s,ID+6 tone,85034,, +424,E,,RES,b,Reus (CAT-T),41.145833,1.125,,0.025,,1283,200,86,,,,,,87256,,, +424,ALG,,GRS,b,Ghriss (29),35.229167,0.125,,0.025,,1942,197,92,,,,,U15 ,85030,,, +424,TUR,,SEL,b,Efes / Selcuk (ege-izm),37.9375,27.375,,0.025,,2264,126,96,,,,0,L1020 U1020 ,ID+6 gap,85037,, +424,USA,,RVJ,b,Prison Reidsville (GA),32.0625,-82.125,,0.025,,7160,290,145,,,,,U1020 6.1s,85036,,, +425,D,,ERT,b,Erfurt (th),50.979167,10.875,,0.025,,333,110,76,,,,927,L1028 U1016 5.8s,85042,,, +425,RUS,,UZS Onega R,c,Onega (AR),63.916667,38.083333,,1,,2244,42,79,,????-????,1234567,,,19901360,,, +425,BIH,,DNC,b,Mostar (hgn),43.145833,17.875,,0.1,,1313,135,80,,,,998,L405 U395 10.0s,ID+6 gap,85041,, +425,I,,MMP,b,Gallarate / Malpensa (va),45.645833,8.708333,,0.025,,738,166,80,,,,974,L1040 U990 10.0s,ID+6 gap,85047,, +425,SVK,,KE,b,Kosice (KE),48.604167,21.208333,,0.025,,1117,105,84,,,,9,L1017 U986 ,ID+6 gap,85046,, +425,EST,,RC,b,Prnu (Pae),58.479167,24.541667,,0.025,,1342,51,86,,,,2,L1020 U1024 15s,IDx2,85052,, +425,UKR,,JL,b,Kolomya (IF),48.520833,25.125,,0.025,,1383,99,87,,,,,,85045,,, +425,S,,OU,b,Umea,63.854167,20.208333,,0.025,,1531,26,88,,,,999,L405 U408 4.5s,85048,,, +425,POR,,EVR,b,Evora (evo),38.520833,-7.875,,0.05,,1872,222,89,,,,999,L404 U404 4.99s,85043,,, +425,UKR,,PI,b,Pii,49.854167,31.125,,0.025,,1740,88,90,,,,164,L328 U657 ,IDx2 + 22 gap,85051,, +425,RUS,,BQ,b,Malino,55.104167,38.125,,0.025,,2100,68,94,,,,,L1006 U1007 ,IDx2,85039,, +425,TUR,,BUK,b,Ankara / Cubuk (ica-ank),40.229167,33.125,,0.025,,2423,112,97,,,,,U1024 ,Cont. ID,85040,, +425,RUS,,HJ,b,Mamadysh (TS),55.729167,51.375,,0.025,,2919,64,102,,,,,U960 ,85044,,, +425,KAZ,,AW,b,Aralsk (qzy),46.8125,61.625,,0.025,,3935,76,112,,,,,,85038,,, +425,DOM,,PCA,b,Salvalon de Higey (alt),18.5625,-68.375,,0.025,,7358,270,147,,,,985,L1042 U1012 10521s,85049,,, +425,GTM,,SGA,b,San Jose (Escuintla) (esl),13.9375,-90.875,,0.2,,9276,284,152,,,,3,L982 U987 7056s,DA3ID,85053,, +425,USA,,PFL,b,Fort Sill (OK),34.604167,-98.375,,0.025,,7938,303,152,,,,991,L1050 U1037 7.75s,85050,,, +426,AUT,,GBG,b,Gleichenberg for Graz (ste),46.895833,15.791667,,0.1,,890,127,76,,,,9975,L1022 U1018 7.4s,ID+5 gap,85060,, +426,XOE,,HWQ,b,Hewett A Platform,53.020833,1.791667,,0.025,,328,290,76,,,,0,L398 U402 10.0s,85061,,, +426,D,,MIQ,b,Mike for Ingolstadt (bay),48.5625,11.625,,0.025,,541,135,78,,,,2,L1025 U1020 7.3s,85063,,, +426,G,,SH,b,Shobdon (EN-HER),52.229167,-2.875,,0.025,,633,275,79,,,,206,L410 U402,85066,,, +426,E,,TJA,b,Madrid / Torrejon De Ardoz (MAD-M),40.5625,-3.375,,0.1,,1485,214,82,,,,,U1053 7.8s,ID+6 gap,85068,, +426,F,,CTS (Dax airport, mil.),b,Castets/Pouin (40),43.9375,-1.125,,0.025,,1066,215,84,,,,,,DAID,85057, +426,I,,SOR,b,Sorrento (na),40.5625,14.375,,0.025,,1420,152,87,,,,0,L1020 U1018 10.0s,ID+6 gap,85067,, +426,ROU,,BC,b,Bacau (BC),46.479167,26.958333,,0.025,,1609,105,89,,,,0,L1034 U1037 ,ID+3 gap,85054,, +426,POR,,CB,b,Coimbra (coi),40.145833,-8.458333,,0.025,,1749,226,90,,,,0,L397 U404 9.8s,85055,,, +426,RUS,,Q,b,Petrozavosk (KR),61.895833,34.125,,0.025,,1977,46,93,,,,,,85065,,, +426,TUR,,CRL,b,Tekirdag / Corlu (mam-tek),41.145833,27.958333,,0.025,,2035,118,93,,,,5,L1020 U1040 ,ID+2 gap,85056,, +426,BAH,,C6N Nassau R,c,Nassau (npr),25.05,-77.333333,,1,,7422,281,131,,????-????,1234567,,,19900245,,, +426,USA,,San Francisco R,c,San Francisco (CA),37.766667,-122.416667,,1,,8861,321,143,,????-????,1234567,,,19901555,,, +426,USA,,EN,b,Rikky Council Bluffs (IA),41.229167,-95.791667,,0.025,,7228,306,145,,,,978,L1048 U1007 5.9s,85058,,, +426,USA,,FTP,b,Fort Payne (AL),34.520833,-85.708333,,0.025,,7186,294,145,,,,986,L1043 U56 5427s,85059,,, +426,USA,,IZS,b,Montezuma (GA),32.354167,-84.041667,,0.025,,7258,292,146,,,,991,L1030 U1011 6.1s,85062,,, +426,USA,,UV,b,Tunng Oxford (MS),34.395833,-89.625,,0.025,,7438,297,147,,,,971,L1065 U999 6.1s,85069,,, +426.5,J,,Oita R,c,Oita (kyu-oit),33.233333,131.6,,1,,9135,44,144,,????-????,1234567,-426.5,,19900910,,, +427,D,,BRU,b,Braunschweig (nds),52.3125,10.625,,0.025,,288,84,76,,,,,L1033 U1034 ,85072,,, +427,XOE,,HDY,b,Halfdan Platform / Maersk,55.520833,5.041667,,0.025,,390,347,77,,,,998,L400 U397 6.6s,85075,,, +427,I,,FER,b,Ferrara (fe),44.8125,11.625,,0.04,,897,153,80,,,,0,L1020 U1018 10.0s,ID+7 gap,85074,, +427,F,,AUB,b,Aubenas / Val-Lanas (07),44.4375,4.375,,0.025,,866,191,82,,,,,L395 U407 10.0s,ID+7 gap,85071,, +427,F,,RY,b,Royan / Medis (17),45.354167,-0.541667,,0.025,,907,217,82,,,,,U406 19.9s,DAID,85080,, +427,S,,LUE,b,Kramfors / Lunde,62.895833,17.791667,,0.025,,1374,25,87,,,,5,L393 U406 ,85076,,, +427,RUS,,DK,b,Saratov / Tsentralny (SR),51.5625,46.125,,0.025,,2695,75,100,,,,,,85073,,, +427,RUS,,OH,b,Saratov / Tsentralny (SR),51.604167,45.958333,,0.025,,2683,75,100,,,,,U836 ,85078,,, +427,USA,,MMT,b,Mc Entire Columbia (SC),33.9375,-80.791667,,0.025,,6923,291,142,,,,983,L1035 U1001 8239s,85077,,, +427.5,XOE,,TTN,b,Triton / Kvaerner Platform,57.020833,0.958333,,0.025,,649,329,79,,,,-427.5,,85082,,, +428,F,,CTX,b,Chateauroux / Deols (36),46.9375,1.791667,,0.05,,664,212,77,,,,,L401 U407 10.0s,ID+6 gap,85087,, +428,F,,MUS,b,Nice / Cte dAzur (83),43.395833,6.625,,0.04,,969,179,81,,,,,U5 ,85091,,, +428,F,,BST,b,Lanveoc / Poulmic (29),48.270833,-4.458333,,0.025,,882,245,82,,,,,U34 18.0s,ID+12 tone,85085,, +428,AZR,,GC,b,Santa Cruz de Graciosa (gci),39.104167,-28.041667,,2,,3006,255,84,,,,995,L1023 U1019 ,85088,,, +428,E,,MNF,b,Sevilla / Moron De La Frontera (AND-SE),37.3125,-5.541667,,0.1,,1892,214,86,,,,,U1058 6.2s,ID+3 gap,85090,, +428,SRB,,BS,b,Camp Bondsteel Army Heliport (Kos),42.354167,21.208333,,0.04,,1552,128,86,,,,0,L1051 U1026 ,ID+4 gap,85084,, +428,ROU,,TGM,b,Targu Mures / Vidrasau (MS),46.4375,24.291667,,0.025,,1437,109,87,,,,955,L1032 U894 10.0s,ID+5 gap,85094,, +428,USA,,COG,b,Orange (VA),38.229167,-78.125,,0.025,,6416,292,137,,,,,,87257,,, +428,KRE,,Ch'ongjin R,c,Ch'ongjin (hab),41.775,129.777778,,1,,8240,40,139,,????-????,1234567,,,19901002,,, +428,USA,,EEJ,b,Lee Co Sanford (NC),35.354167,-79.208333,,0.025,,6709,291,140,,,,,,87258,,, +428,USA,,POH,b,Pocahontas (IA),42.729167,-94.625,,0.025,,7040,306,143,,,,17,L1000 U1025 6.5s,85092,,, +428,USA,,SYW,b,Cash Greenville (TX),32.979167,-96.041667,,0.025,,7942,300,152,,,,997,L1026 U1025 6.0s,85093,,, +428,TON,,A3A Nuku'alofa R,c,Nuku'alofa (ttp),-21.141667,-175.177778,,1,,16569,3,169,,????-????,1234567,,,19901409,,, +428.5,RUS,,UCI Dikson R,c,Dikson (KN),73.5,80.55,,1,,4053,27,98,,????-????,1234567,-428.5,,19901337,,, +429,LVA,,UNI Ventspils R,c,Ventspils (Ven),57.390278,21.533333,,1,,1131,53,68,,????-????,1234567,,,19901045,,, +429,D,,GBL,b,Giebelstadt (bay),49.645833,9.958333,,0.025,,370,136,77,,,,990,L1040 U1020 6.0s,85099,,, +429,D,,OBI,b,Oberpfaffenhofen (bay),48.0625,11.291667,,0.025,,569,140,79,,,,999,L1024 U1022 8.0s,85105,,, +429,CZE,,B,b,Brno / Turany / Borek (JM),49.145833,16.708333,,0.025,,797,110,81,,,,5,L399 U400 ,ID+10 gap,85095,, +429,HRV,,LOS,b,Loinj (ri),44.520833,14.458333,,0.04,,1031,142,81,,,,988,L1047 U995 9797s,ID+5 tone,85103,, +429,SVK,,D,b,Bratislava / M.R Stefanik (BA),48.1875,17.208333,,0.025,,883,115,82,,,,5,L1023 U1019 10.0s,85098,,, +429,GRC,,LIO,b,Limnos (neg-les),39.9375,25.208333,,0.025,,1974,126,93,,,,0,L330 U390 ,ID+5.5 gap,85102,, +429,LBY,,KDR,b,Kadra (mqb),32.354167,13.625,,0.025,,2273,162,96,,,,2,L1025 U1028 8.0s,ID+4.5 gap,85101,, +429,ALS,,DGG,b,Red Dog Mine (AK),68.020833,-162.875,,0.025,,6628,355,139,,,,,L1009 U1016 6.5s,86830,,, +429,USA,,IKY,b,Springfield (KY),37.645833,-85.208333,,0.025,,6903,296,142,,,,998,L1011 U1008 5.58s,85100,,, +429,ALS,,BTS,b,Wood River Dillingham (AK),58.979167,-158.541667,,0.025,,7588,352,149,,,,983,L1055 U1021 ,85096,,, +429,MAU,,AGG,b,Agalega,-10.366667,56.599722,,0.025,,8432,129,157,,,,,,20800003,,, +430,G,,NOT,b,Nottingham / Tollerton (EN-NHS),52.9375,-1.041667,,0.025,,512,283,78,,,,2,L400 U405 7.6s,85118,,, +430,F,,SN,b,St.Yan (71),46.3125,4.125,,0.025,,666,195,80,,,,,L397 U407 10.3s,ID+9 gap,85121,, +430,XOE,,CD,b,Shell Expro / Cormorant Alpha,61.104167,1.041667,,0.025,,1052,344,83,,,,,,85113,,, +430,HNG,,BUG,b,Bugac (BaK),46.6875,19.708333,,0.025,,1133,117,84,,,,998,L1019 U1019 8.0s,ID+6 gap,85112,, +430,RUS,,AJ,b,Staritza (TV),56.520833,34.958333,,0.025,,1900,64,92,,,,0,L1020 U1019 ,85110,,, +430,RUS,,QD,b,Petrozavodsk (KR),61.895833,34.125,,0.025,,1977,46,93,,,,,,85120,,, +430,UKR,,LI,b,Lykhacheve,49.3125,36.291667,,0.025,,2112,87,94,,,,22,L1008 U1066 ,ID+27 gap,85115,, +430,RUS,,OG,b,Onega (AR),63.895833,38.125,,0.025,,2245,42,95,,,,5,L394 U416 30.0s,IDx2,85119,, +430,RUS,,MB,b,Chemukha,55.604167,43.791667,,0.025,,2451,66,97,,,,,U926 ,IDx2,85117,, +430,GEO,,LU,b,Batumi (aja),41.604167,41.625,,0.025,,2885,100,102,,,,0,L400 U402 8.0s,ID+6 gap,85116,, +430,KAZ,,L,b,Almaty (alm),43.354167,77.041667,,0.025,,5157,71,125,,,,,,85114,,, +430,USA,,AYB,b,Auburn (NE),40.4375,-95.791667,,0.025,,7294,305,146,,,,5,L1015 U1024 6.5s,85111,,, +430,INS,,Teluk Bayur R,c,Teluk Bayur,2.15,117.4,,1,,11227,72,151,,????-????,1234567,,,19900790,,, +430,CUB,,VA,b,Varadero (ma),22.979167,-81.541667,,0.025,,7876,283,152,,,,5,L1030 U1039 6.4s,85123,,, +430,INS,,Surabaya R,c,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,,,19900785,,, +430,INS,,PKK Kupang R,c,Kupang (NT-kpg),-10.166667,123.583333,,1,,12737,74,156,,????-????,1234567,,,19900740,,, +430,NRU,,C2N Nauru R,c,Nauru,-0.533333,166.911111,,1,,13998,24,160,,????-????,1234567,,,19901131,,, +430,B,,TBE,b,Taubat (SP),-23.0625,-45.541667,,0.025,,9758,226,162,,,,3,L1057 U1064 ,85122,,, +431,D,,KBA,b,Karlsruhe / Baden Baden (bw),48.8125,8.125,,0.025,,386,161,77,,,,,L1026 U1013 14.9s,85128,,, +431,XOE,,DPP,b,Morecambe Platform,53.979167,-3.708333,,0.025,,707,291,80,,,,0,L~400 U~400 ,ID+5 gap,85126,, +431,G,,SAY,b,Stornoway (SC-WIL),58.229167,-6.291667,,0.025,,1052,315,83,,,,0,L403 U403 5.8s,85130,,, +431,GRC,,HER,b,Heraklion / Nikos Kazantzakis (krt-ira),35.354167,25.208333,,0.025,,2384,134,97,,,,10,L400 U421 15.0s,ID+10 gap,85127,, +432,D,,RO,b,Rothenburg (sac),51.354167,14.958333,,0.025,,594,95,79,,,,998,L1135 U1040 12.7s,85146,,, +432,CZE,,PK,b,Pardubice / Prvek (PA),50.020833,15.791667,,0.025,,695,106,80,,,,995,L1003 U1042 9.5s,ID+2 gap,85144,, +432,XOE,,MDA,b,Armada Platform,57.5625,1.541667,,0.025,,681,335,80,,,,0,L400 U400 ,85142,,, +432,F,,PRD (Dax Airport, mil.),b,Peyrehorade (40),43.513667,-1.109111,,0.025,,1107,213,84,,,,,U4 ,DAID,85145, +432,UKR,,BB,b,Bibrka,49.645833,24.291667,,0.025,,1281,95,86,,,,0,L1015 U1013 ,IDx2 + 25 gap,85132,, +432,EST,,G,b,mari (Har),59.270833,24.208333,,0.025,,1364,47,87,,,,993,L408 U395 3.0s,ID+1 gap,85134,, +432,SYR,,YKM7 Latakia R,c,Latakia (lat),35.508333,35.766667,,1,,2958,117,87,,????-????,1234567,,,19901392,,, +432,MKD,,IZD,b,Ohrid / Izdeglavlje (SW),41.354167,20.791667,,0.025,,1616,132,89,,,,0,L1066 U1020 14.1s,ID+8 tone,85139,, +432,ROU,,D,b,Deveselu,44.104167,24.375,,0.025,,1597,117,89,,,,,,85133,,, +432,ALG,,HMB,b,Hammam Bou Hadjar for Oran (46),35.354167,-0.958333,,0.025,,1952,200,92,,,,,U6 19.8s,ID+15 tone,85137,, +432,FIN,,AKU,b,Ivalo / Akujrvi,68.6875,27.625,,0.025,,2156,23,95,,,,3,L407 U410 ,85131,,, +432,CYP,,LCA,b,Larnaca (kyp-lar),34.8125,33.541667,,0.025,,2884,121,102,,,,999,U400 ,ID+4 gap,85141,, +432,TUR,,GAZ,b,Gaziantep / Oguzeli (gda-gaz),36.9375,37.458333,,0.025,,2948,113,102,,,,1,L1020 U1022 ,ID+3 gap,85135,, +432,USA,,IZN,b,Lincolnton (NC),35.520833,-81.125,,0.025,,6818,292,141,,,,4,L1006 U1014 5.0s,85140,,, +432,USA,,MHP,b,Metter (GA),32.354167,-82.125,,0.025,,7136,290,144,,,,1,L1021 U1023 5.6s,85143,,, +432,CHN,,GO,b,Jinan / Yaoqiang (SD),36.854167,117.208333,,0.025,,8074,52,154,,,,,,IDx2,85136,, +432,OCE,,FJA Mahina R,c,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,????-????,1234567,,,19901272,,, +433,E,,VON,b,Vigo (GAL-PO),42.1875,-8.625,,0.2,,1578,232,80,,,,993,L1027 U1021 17.7s,85156,,, +433,HRV,,CRE,b,Cres (ri),44.895833,14.458333,,0.04,,996,140,81,,,,38,L960 U939 9.8s,ID+5 tone,85152,, +433,EGY,,SUP Port Said R,c,Bur Said=Port Said (pts),31.266667,32.3,,1,,3128,128,88,,????-????,1234567,,,19900507,,, +433,RUS,,P,b,Pskov (PS),57.770833,28.375,,0.025,,1529,57,88,,,,,,85155,,, +433,E,,JER,b,Jerez de la Frontera (AND-CA),36.854167,-6.041667,,0.05,,1957,215,90,,,,998,L1016 U1022 8.6s,ID+5 tone,85153,, +433,E,,JRZ,b,Jerez de la Frontera (AND-CA),36.854167,-6.041667,,0.05,,1957,215,90,,,,,L1020 U1020 ,87259,,, +433,RUS,,BO,b,Ermolino,55.229167,36.625,,0.025,,2004,68,93,,,,,L1030 U940 15.2s,IDx2 + 5 gap,85149,, +433,RUS,,MI,b,Ermolino,55.229167,36.625,,0.025,,2004,68,93,,,,0,L1045 U1045 15.0s,ID+3 tone,85154,, +433,RUS,,BW,b,Rybinsk / Staroselje (YA),58.104167,38.958333,,0.025,,2151,59,94,,,,,,IDx2+19gap,85150,, +433,TUR,,CRD,b,Cardak / Denizli (ege-dzl),37.770833,29.708333,,0.025,,2411,122,97,,,,991,L1025 U1007 ,ID+4 gap,85151,, +433.5,G,,HEN,b,Henton (EN-BKS),51.770833,-0.791667,,0.025,,495,268,78,,,,497,L404 U405 4.8s,85157,,, +433.5,ARG,,LPZ Trelew R,c,Trelew (ch),-43.25,-65.3,,1,,12632,229,156,,????-????,1234567,-433.5,,19900058,,, +434,XOE,,JL,b,Skjold C Platform,55.520833,4.875,,0.025,,392,346,77,,,,,U603 4.3s,85162,,, +434,F,,MV,b,Melun / Villaroche (77),48.5625,2.958333,,0.025,,464,213,78,,,,,L407 U400 10.1s,ID+8 gap,85164,, +434,CZE,,KNE,b,Kunovice (ZL),49.0625,17.458333,,0.025,,849,109,81,,,,490,L974 U989 9.00s,85163,,, +434,ROU,,A,b,Baneasa East,44.520833,26.125,,0.025,,1677,112,90,,,,35,L1082 U1086 ,Cont. ID,85158,, +434,RUS,,GR,b,Gorka,59.8125,32.375,,0.025,,1812,52,91,,,,2,L748 U752 ,85160,,, +434,TUR,,ER,b,Erzurum / Mudurge (dad-erz),39.979167,41.291667,,0.025,,2972,103,103,,,,,L17 ,ID+8 gap,85159,, +434,KRE,,Namp'o R,c,Namp'o (pyn),38.719444,125.386111,,1,,8322,45,140,,????-????,1234567,,,19901005,,, +434,CLM,,HKB Barranquilla R,c,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900403,,, +434,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900941,,, +434,USA,,SLB,b,Storm Lake (IA),42.604167,-95.208333,,0.025,,7082,306,144,,,,994,L1033 U1030 5.41s,85166,,, +434,CHL,,CBX Bahia Felix R,c,Baha Felix,-52.958611,-74.072778,,1,,13862,226,160,,????-????,1234567,,,19900317,,, +435,UKR,,UTT Odesa R,c,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,????-????,1234567,,,19901467,,, +435,UKR,,Kerch R,c,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,????-????,1234567,,,19901459,,, +435,SRB,,BR,b,Brdjani,43.9375,20.458333,,0.025,,1380,126,87,,,,,L1060 U963 9.5s,ID+6 tone,86681,, +435,UKR,,SM,b,Semenivka,52.1875,32.541667,,0.025,,1773,79,91,,,,976,L642 U592 15.0s,IDx2 + 6 gap,85177,, +435,LBY,,D,b,Tripoli / Delta (tbl),32.645833,13.125,,0.025,,2231,163,95,,,,0,L1019 U1013 10.0s,ID+9 gap,85169,, +435,RUS,,ER,b,Yegorlykskaya,46.604167,40.708333,,0.025,,2533,90,98,,,,998,L1016 U1015 30.0s,ID+8 gap,85170,, +435,CYP,,GKE,b,Gecitkale/Gazimagosa International (kib),35.229167,33.708333,,0.025,,2858,120,102,,,,0,L1020 U1021 ,ID+7 gap,85172,, +435,LBY,,GHT,b,Ghat (ght),25.1875,10.125,,0.025,,3010,173,103,,,,998,L1022 U1028 8.3s,ID+5 gap,85171,, +435,CPV,,D4D Praia R,c,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900423,,, +435,RUS,,BI,b,Bisert (SV),56.854167,59.041667,,0.025,,3354,60,107,,,,,U1015 30.6s,IDx2,85168,, +435,ALG,,IGZ,b,In Guezzam (11),19.5625,5.791667,,0.025,,3620,181,109,,,,,U24 ,ID+16 tone,85174,, +435,UZB,,ZR,b,Nukus (qrp),42.4375,59.625,,0.025,,4058,84,114,,,,,U1012 ,85178,,, +435,KAZ,,GN,b,Jezqazğan=Zhezkazgan (qar),47.729167,67.791667,,0.025,,4289,71,116,,,,,U1020 ,85173,,, +435,USA,,IIY,b,Washington-Wilkes Co Washington (GA),33.770833,-82.791667,,0.025,,7064,292,144,,,,993,L1030 U1017 5.0s,85175,,, +435.5,EGY,,SUK Al-Qusair R,c,Al-Qusayr=Quseir (bar),26.110889,34.280083,,1,,3714,130,94,,????-????,1234567,-435.5,,19900502,,, +436,BUL,,LZL Burgas R,c,Burgas (bur),42.5,27.472222,,1,,1903,116,76,,????-????,1234567,,,19900276,,, +436,POL,,S,b,Darlowo,54.395833,16.375,,0.025,,709,65,80,,,,995,L986 U1000 4.0s,85181,,, +436,HNG,,SME,b,Srmellk / Balaton (Zal),46.645833,17.208333,,0.025,,988,124,83,,,,5,L1036 U1030 5.65s,ID+2 gap,85182,, +436,ARS,,HZH Jeddah R,c,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,,,19900062,,, +436,RUS,,UFV Vladivostok R,c,Vladivostok (PM),43.133333,131.9,,1,,8204,38,139,,????-????,1234567,,,19901369,,, +437,POL,,NP,b,Tomaszow-Mazowiecki / Porter,51.5625,20.125,,0.025,,943,88,82,,,,,L400 U404 ,ID+2 gap,86682,, +437,MDR,,CTQ Porto Santo R Naval,c,Porto Santo (pst),33.066278,-16.355417,,1,,2797,230,85,,????-????,1234567,,,19901073,,, +437,RUS,,DE,b,Moskva/Domodedovo (MV),55.354167,37.958333,,0.025,,2088,68,94,,,,,L1016 U1011 30.0s,IDx2,85183,, +437,RUS,,DW,b,Moskva/Domodedovo (MV),55.4375,37.875,,0.025,,2082,67,94,,,,7,L1000 U1000 ,85184,,, +437,ARG,,Prefectura Naval Buenos Aires,c,Buenos Aires/Prefectura Naval (df),-34.583333,-58.666667,,1,,11518,230,152,,????-????,1234567,,,19900037,,, +437,ARG,,Prefectura Naval Mar del Plata,c,Mar del Plata/Prefectura Naval (ba),-38,-57.55,,1,,11772,227,153,,????-????,1234567,,,19900045,,, +437,ARG,,Prefectura Naval Recalada Rio de Plata,c,Recalada Rio de Plata/Prefectura Naval,-38.5,-63,,1,,12098,231,154,,????-????,1234567,,,19900048,,, +437,ARG,,Prefectura Naval Comodoro Rivadavia,c,Comodoro Rivadavia/Prefectura Naval (ch),-45.866667,-67.5,,1,,12966,228,157,,????-????,1234567,,,19900040,,, +438,CZE,,K,b,Praha Kbely / Kalda (PR),50.145833,14.541667,,0.025,,608,108,79,,,,979,L1065 U991 5.4s,85187,,, +438,SVK,,B,b,Bratislava / M.R Stefanik / Barka (BA),48.145833,17.208333,,0.025,,886,116,82,,,,0,L1021 U1020 ,85186,,, +438,HRV,,KO,b,Rijeka / Krk / Kozala (ri),45.354167,14.458333,,0.025,,954,139,83,,,,996,L1035 U1038 8.0s,ID+5 gap,85188,, +438,SVK,,PE,b,Poprad / Tatry East (PO),49.0625,20.458333,,0.025,,1046,103,83,,,,37,L1007 U1061 9.0s,85190,,, +438,LBY,,DUF,b,Jufra ? (ID JFR) (juf),29.1875,16.041667,,0.025,,2670,159,100,,,,,L390 U386 ,IDx2 + 2 gap,86683,, +438,LBY,,JUF,b,Jufra ? (ID JFR) (juf),29.1875,16.041667,,0.025,,2670,159,100,,,,,L400 U400 ,IDx2,86684,, +438,RUS,,OR,b,Kirov / Pobedilovo (KV),58.3125,49.208333,,0.025,,2750,59,100,,,,,U975 15.1s,IDx2,85189,, +438,RUS,,XA,b,Kirov (KV),58.479167,49.375,,0.025,,2759,58,101,,,,,L1033 ,85191,,, +438,RUS,,RSSZ/UNB4,c,Korsakov (SL),46.633333,142.783333,,1,,8276,29,140,,????-????,1234567,,,19901345,,, +438,J,,Niigata R,c,Niigata (chu-nii),37.916667,139.05,,1,,9005,36,144,,????-????,1234567,,,19900907,,, +438,INS,,Sabang R,c,Sabang (AC-sab),5.9,95.316667,,1,,9416,87,145,,????-????,1234567,,,19900770,,, +438,INS,,PKM Bitung R,c,Bitung (SA-bit),1.441667,125.15,,1,,11785,66,153,,????-????,1234567,,,19900717,,, +438,CHL,,CBV Valparaso Playa Ancha R,c,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,19900372,,, +438.5,UKR,,UWD9 Yalta Krymskoi R,c,Yalta (KR),44.5,34.166667,,1,,2203,102,79,,????-????,1234567,-438.5,,19901479,,, +438.5,EGY,,SUZ Ismailia R,c,Ismailia (ism),30.470311,32.36675,,1,,3205,129,89,,????-????,1234567,-438.5,,19900504,,, +438.5,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,-438.5,,19900428,,, +439,TKM,,MP,b,Mary (mry),37.571667,61.899444,,0.025,,4537,88,118,,,,,,11900007,,, +439,CHN,,WD,b,Zhonghao / Taiyuan / Wusu,37.645833,112.791667,,0.025,,7764,54,151,,,,,14s,2xID,86685,, +440,I,,PIA,b,San Giorgio Piacentino (pc),44.854167,9.791667,,0.025,,844,162,81,,,,3,L1020 U1020 6.0s,ID+2 gap,85197,, +440,HNG,,N,b,Kecskemt/Titan (BaK),46.9375,19.708333,,0.025,,1116,116,84,,,,,,85195,,, +440,POL,,OR,b,Rzeszow / Jasionka,50.104167,21.958333,,0.025,,1106,95,84,,,,0,L1020 U1020 4.5s,85196,,, +440,SYR,,YKM5 Baniyas R,c,Baniyas (tat),35.183333,35.95,,1,,2996,117,87,,????-????,1234567,,,19901393,,, +440,ARS,,HZY Ras Tannurah R,c,Ras Tannurah (shy),26.707056,50.10025,,1,,4591,111,103,,????-????,1234567,,,19900072,,, +440,RUS,,PT,b,Berezniki (PR),59.520833,56.875,,0.025,,3174,55,105,,,,,U1020 ,85198,,, +440,KAZ,,PW,b,Pavlodar (pav),52.229167,77.125,,0.025,,4623,61,119,,,,,,85199,,, +440,KAZ,,WL,b,Pavlodar (pav),52.145833,77.041667,,0.025,,4623,61,119,,,,,U380 ,86686,,, +440,PNR,,CHE,b,Chitre (her),7.979167,-80.375,,0.025,,9089,272,160,,,,993,L1010 U996 5471s,85192,,, +441,EST,,ESP Prnu R,c,Prnu (Pae),58.375,24.516667,,1,,1336,52,70,,????-????,1234567,,,19900515,,, +441,CZE,,CK,b,Prerov (OL),49.395833,17.375,,0.05,,827,107,78,,,,15,L985 U1002 11.5s,ID+9 gap,85202,, +441,RUS,,UZS Onega R,c,Onega (AR),63.916667,38.083333,,1,,2244,42,79,,????-????,1234567,,,19901361,,, +441,MRC,,CNP Casablanca R,c,Casablanca (gcb),33.6,-7.633333,,1,,2346,214,80,,????-????,1234567,,,19901113,,, +441,TUR,,Iskenderun R,c,Iskenderun,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901437,,, +441,EST,,O,b,Kardla (Hii),58.979167,22.875,,0.025,,1281,47,86,,,,913,L1040 U1040 5.7s,85205,,, +441,UKR,,P,b,Simferopol (KR),45.020833,33.958333,,0.025,,2159,100,95,,,,,,85206,,, +441,RUS,,CN,b,Savasleyka,55.4375,42.291667,,0.025,,2360,67,97,,,,1,L990 U992 20.0s,IDx2,85203,, +441,RUS,,LT,b,Savasleyka,55.4375,42.291667,,0.025,,2360,67,97,,,,,L1025 14.8s,IDx2 + 8 gap,85204,, +441,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900429,,, +441,RUS,,AL,b,Turukharnsk (KN),65.729167,87.875,,0.025,,4538,38,118,,,,,,85201,,, +441,MDG,,5RO Mahajanga R,c,Mahajanga (mhj),-15.716667,46.316667,,1,,8465,140,142,,????-????,1234567,,,19901054,,, +441,CLM,,HKC Buenaventura R,c,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900409,,, +442,LVA,,YLQ Riga R,c,Riga (Rig),56.95,24.066667,,1,,1255,58,70,,????-????,1234567,,,19901043,,, +442,IRQ,,YIR Basrah Control,c,Al-Baṣrah (bsr),30.5,47.816667,,1,,4127,109,98,,????-????,1234567,,,19900819,,, +442,KAZ,,SK,b,Uralsk / Podstepniy (btq),51.104167,51.458333,,0.025,,3063,74,104,,,,0,L1010 U1011 ,IDx2 + 7 gap,85208,, +442,KAZ,,UR,b,Uralsk / Podstepniy (btq),51.1875,51.625,,0.025,,3070,74,104,,,,,U1018 ,ID+7 gap,85209,, +442,IND,,VWP Port Blair R,c,Port Blair (AN),11.666667,92.75,,1,,8738,86,143,,????-????,1234567,,,19900690,,, +442,J,,Naha (Nansei Shoto) R,c,Naha (kyu-oki),26.2,127.666667,,1,,9609,50,146,,????-????,1234567,,,19900906,,, +442.5,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,-442.5,,19901280,,, +443,KAZ,,AL,b,Almaty (alm),43.395833,77.125,,0.025,,5160,71,125,,,,0,L1030 U1029 ,ID+6 gap,85211,, +444,POL,,NRD,b,Inowrocław (KP),52.844722,18.365,,0.05,,813,80,78,,,,9997,,6400032,,, +444,MDR,,CUB Madeira R,c,Funchal (md),32.641944,-16.9175,,1,,2865,230,86,,????-????,1234567,,,19901075,,, +444.5,ARG,,General Pacheco R,c,Buenos Aires/General Pacheco (df),-34.440556,-58.62,,1,,11503,230,152,,????-????,1234567,-444.5,,19900043,,, +445,BIH,,TU,b,Tuzla (tuz),44.479167,18.458333,,0.05,,1228,129,82,,,,996,L1000 U1030 9.7s,ID+7 tone,85223,, +445,UKR,,WS,b,Starokonstantinov,49.729167,27.291667,,0.025,,1482,92,88,,,,0,L974 U972 ,ID+4 gap,85224,, +445,UKR,,ZU,b,Starokonstantinov,49.4375,27.208333,,0.025,,1487,93,88,,,,5,L973 U985 ,ID+4.5 gap,85226,, +445,RUS,,CG,b,Pribylovo,60.4375,28.708333,,0.025,,1646,47,89,,,,836,L405 U402 ,85215,,, +445,RUS,,RF,b,Pribylovo,60.4375,28.708333,,0.025,,1646,47,89,,,,,L700 U700 ,85221,,, +445,RUS,,KM,b,Kem (KR),64.9375,34.458333,,0.025,,2133,37,94,,,,5,L1017 U1025 20.0s,IDx2 +11 gap,85218,, +445,RUS,,CM,b,Kichmengskiy / Gorodok,59.979167,45.791667,,0.025,,2552,54,98,,,,,,85216,,, +445,RUS,,OK,b,Zernograd,46.854167,40.375,,0.025,,2498,90,98,,,,,L1029 U1018 15.0s,ID+5 gap,86687,, +445,LBY,,SAH,b,Sahil (wah),29.520833,20.208333,,0.025,,2756,150,101,,,,,L3 ,86688,,, +445,RUS,,RD,b,Bazarnye Mataky (TS),54.895833,49.958333,,0.025,,2850,66,101,,,,,L1014 U1014 ,85220,,, +445,TKM,,RJ,b,Gyzylarbat / Arvat / Serdar (bal),39.020833,56.291667,,0.025,,4054,91,114,,,,,,85222,,, +445,CHN,,XSV Tianjin R,c,Tianjin (TJ),39.15,117.183333,,1,,7869,50,136,,????-????,1234567,,,19900393,,, +445,RUS,,UAD2 Kholmsk R,c,Kholmsk (SL),47.05,142.05,,1,,8210,30,139,,????-????,1234567,,,19901343,,, +445,CHN,,XSQ Guangzhou R,c,Guangzhou (GD),23.15,113.483333,,1,,9084,63,144,,????-????,1234567,,,19900381,,, +445,PNR,,HPP Panam Intelmar R,c,Ciudad de Panam (pnm),8.966667,-79.533333,,1,,8946,272,144,,????-????,1234567,,,19901287,,, +445,CHN,,LS,b,Shuiquan (HL),45.4375,126.041667,,0.025,,7735,41,150,,,,9,L1000 U1000 2s,85219,,, +445.3,ARS,,HZH Jeddah R,c,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-445.3,,19900063,,, +446,ARS,,HZH Jeddah R,c,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,,,19900064,,, +446,CUB,,Nuevitas R,c,Nuevitas (cm),21.55,-77.266667,,1,,7710,279,134,,????-????,1234567,,,19900447,,, +446,AUS,,TNG,b,Thangool (QLD),-24.479167,150.541667,,0.025,,15707,58,182,,,,,L1020 U1020 10s,85227,,, +446.5,ROU,,YQI Constanţa R,c,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-446.5,,19901327,,, +447,MRC,,CNW Tanger R,c,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,????-????,1234567,,,19901120,,, +447,UKR,,UTM Feodosiya R,c,Feodosiya (KR),45.033333,35.383333,,1,,2254,99,80,,????-????,1234567,,,19901457,,, +447,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900430,,, +447,IRN,,ASL,b,Asaluyeh (bus),27.479167,52.625,,0.025,,4689,107,120,,,,,,85228,,, +447,MDG,,5RL Antsiranana R,c,Antsiranana (ats),-12.266667,49.283333,,1,,8252,136,140,,????-????,1234567,,,19901052,,, +447,KOR,,HLY Yeosu R,c,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19900995,,, +448,D,,LQ,b,Landsberg (bay),48.104167,11.041667,,0.025,,554,142,79,,,,1,L1031 U1034 16.5s,ID+13 tone,85230,, +448,UKR,,Mariupol' R,c,Mariupol' (DO),47.1,37.55,,1,,2293,92,80,,????-????,1234567,,,19901464,,, +448,CZE,,HLV,b,Holesov (ZL),49.3125,17.541667,,0.025,,842,107,81,,,,31,L995 U395 11.5s,85229,,, +448,ARS,,HZH Jeddah R,c,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,,,19900065,,, +448,ARS,,HZY Ras Tannurah R,c,Ras Tannurah (shy),26.707056,50.10025,,1,,4591,111,103,,????-????,1234567,,,19900073,,, +448,INS,,PKP Dumai R,c,Dumai (RI-dum),1.683333,101.45,,1,,10203,85,148,,????-????,1234567,,,19900726,,, +449,RUS,,MV,b,Tver / Migalovo (TV),56.8125,35.708333,,0.025,,1948,63,92,,,,,,85232,,, +449,RUS,,MW,b,Tver / Migalovo (TV),56.8125,35.708333,,0.025,,1948,63,92,,,,235,L750 U1220 ,85233,,, +449,RUS,,KU,b,Tver (TV),56.854167,35.875,,0.025,,1958,63,93,,,,33,L1036 U1040 14.6s,IDx2,85231,, +450,EST,,ESA Tallinn R,c,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,????-????,1234567,,,19900518,,, +450,GEO,,UFF Sukhumi R,c,Sukhumi=Aqwa (abk),42.983333,40.972222,,1,,2754,98,85,,????-????,1234567,,,19900586,,, +450,BUL,,PDV,b,Plovdiv (pld),42.020833,24.875,,0.025,,1784,122,91,,,,0,L1017 U1040 8.1s,ID+4 gap,85237,, +450,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901007,,, +450,RUS,,WU,b,Sosnovka (MU),54.145833,46.625,,0.025,,2656,69,100,,,,2,L1014 U1021 ,85240,,, +450,LBY,,AOO,b,El Sharara ? (ROO) (wdh),26.5625,12.208333,,0.025,,2882,168,102,,,,,L1025 U1017 10.0s,ID+6 gap,86689,, +450,LBN,,RA,b,Kleyate,34.604167,36.041667,,0.025,,3050,118,103,,,,,,85239,,, +450,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900431,,, +450,CPV,,D4D Praia R,c,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900424,,, +450,IRN,,PAD,b,Parsabad-Moghan (ard),39.5625,47.958333,,0.025,,3449,97,107,,,,,L1087 U982 10.2s,ID+6 gap,86834,, +450,IRN,,EQJ Chah Bahar R,c,Chah Bahar (sib),25.3,60.633333,,1,,5399,102,111,,????-????,1234567,,,19900814,,, +450,RUS,,JH,b,Nizhnevartovsk,60.895833,76.375,,0.025,,4185,48,115,,,,,U391 ,85235,,, +450,RUS,,NZ,b,Nizhnevartovsk,60.979167,76.541667,,0.025,,4191,48,115,,,,,,85236,,, +450,SOM,,6OY Berbera R,c,Berbera (woq),10.433333,45.016667,,1,,5788,129,115,,????-????,1234567,,,19901384,,, +450,SOM,,6OR Mogadishu R,c,Mogadishu=Muqdisho (ban),2.023611,45.330556,,1,,6632,133,123,,????-????,1234567,,,19901385,,, +450,DOM,,PPA,b,San Felipe de Puerto Plata (ppl),19.770833,-70.541667,,0.025,,7404,273,147,,,,3,L985 U992 8.2s,85238,,, +450,CUB,,USC,b,Santa Clara (vc),22.479167,-79.958333,,0.025,,7813,282,151,,,,,,87260,,, +450,ATA,,RUZU Molodezhnaya R,c,Molodezhnaya Station [RUS] (aat),-67.666667,45.840056,,1,,13716,163,159,,????-????,1234567,,,19900112,,, +450,ATA,,UDY Novolazarevskaya R,c,Novolazarevskaya Station [RUS] (dml),-70.776667,11.823058,,1,,13671,178,159,,????-????,1234567,,,19900115,,, +450,CHL,,CBM Magallanes R,c,Punta Arenas (MA),-52.948111,-71.056944,,1,,13714,225,159,,????-????,1234567,,,19900347,,, +450,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900079,,, +450,ATA,,UBA Mirnyy R,c,Mirnyy Station [RUS] (aat),-66.558981,93.002239,,1,,15033,146,164,,????-????,1234567,,,19900109,,, +451,XOE,,OUEU,b,Thetis / Stanflex 3000 Vessel,49.645833,-3.458333,,0.025,,744,252,80,,,,998,L400 U397 36.0s,IDx3 + 12 tone,85242,, +451,KAZ,,KU,b,Yubileinyi (byq),46.020833,63.208333,,0.025,,4085,76,114,,,,,L399 U401 ,85241,,, +451.5,RUS,,UCT2 Beringovskiy R,c,Beringovskiy,63.05,179.316667,,1,,7195,4,129,,????-????,1234567,-451.5,,19901334,,, +452,D,,ANS,b,Ansbach (bay),49.3125,10.625,,0.025,,430,135,77,,,,978,L1075 U1020 7.2s,ID+5 gap,85243,, +452,BLR,,GP,b,Grodno / Obukhovo (HR),53.645833,24.541667,,0.025,,1225,75,85,,,,5,L1008 U1016 15.0s,85244,,, +452,BLR,,WF,b,Grodno / Obukhovo (HR),53.5625,24.041667,,0.025,,1192,75,85,,,,2,L1008 U1012 15.0s,85247,,, +452,RUS,,H,b,Primorsko Ahtar,46.0625,38.208333,,0.025,,2390,94,97,,,,,,86691,,, +452,IRN,,EQM Bushehr R,c,Bushehr (bus),28.962225,50.822794,,1,,4448,108,101,,????-????,1234567,,,19900812,,, +452,RUS,,LB,b,Balandino,55.3125,61.458333,,0.025,,3545,62,108,,,,,,85246,,, +452,CHN,,XSU Yantai R,c,Yantai (SD),37.533333,121.4,,1,,8232,48,139,,????-????,1234567,,,19900395,,, +452,INS,,PKB20 Lhokseumawe R,c,Lhokseumawe (AC-lho),5.166667,97.133333,,1,,9604,86,146,,????-????,1234567,,,19900745,,, +452,INS,,Plaju R,c,Plaju (SS-pal),-2.983333,104.833333,,1,,10844,85,150,,????-????,1234567,,,19900763,,, +452,INS,,PKI2,c,Jakarta (JK),-6.166667,106.833333,,1,,11259,86,151,,????-????,1234567,,,19900731,,, +452,CHN,,JS,b,Tianjin / Binhai (TJ),39.104167,117.375,,0.025,,7884,50,152,,,,,,85245,,, +452,INS,,PKN7 Bontang R,c,Bontang (KI-bon),0.133333,117.5,,1,,11415,73,152,,????-????,1234567,,,19900718,,, +452.5,INS,,Pangkal Balam R,c,Pangkal Balam (BB-pan),-2.091667,106.15,,1,,10855,84,150,,????-????,1234567,-452.5,,19900758,,, +453,SVK,,CN,b,Piestany (TT),48.5625,17.791667,,0.025,,898,112,82,,,,,U988 ,85248,,, +454,IRN,,EQL Bandar Anzali R,c,Bandar Anzali (gln),37.477778,49.466667,,1,,3697,99,94,,????-????,1234567,,,19900805,,, +454,RUS,,T,b,Moskva/Bykovo (MV),55.645833,38.041667,,0.025,,2091,67,94,,,,,,86692,,, +454,RUS,,U,b,Moskva/Bykovo (MV),55.645833,38.041667,,0.025,,2091,67,94,,,,,L1006 U1007 ,86693,,, +454,RUS,,W,b,Moskva/Bykovo (MV),55.604167,38.125,,0.025,,2097,67,94,,,,7,L1010 U1025 13.0s,IDx2,85250,, +455,XOE,,MWT,b,Millom West / Burlington Platform,54.020833,-3.875,,0.025,,719,291,80,,,,,U400 ,IDx3 + 10 gap,85255,, +455,UKR,,NS,b,Chuguyev,49.854167,36.625,,0.025,,2114,85,94,,,,,,85256,,, +455,UKR,,UH,b,Chuguyev,49.854167,36.625,,0.025,,2114,85,94,,,,35,L970 U1040 ,85257,,, +455,RUS,,AZ,b,Lipetsk-2 (LI),52.645833,39.458333,,0.025,,2224,75,95,,,,993,L967 U959 ,ID+5 gap,85251,, +455,RUS,,BK,b,Lipetsk-2 (LI),52.395833,39.291667,,0.025,,2219,76,95,,,,2,L951 U960 ,85252,,, +455,RUS,,KZ,b,Kizliar (DA),43.854167,46.708333,,0.025,,3092,91,104,,,,983,L1016 U1016 15.0s,ID+10 gap,85254,, +455,RUS,,DJ,b,Sterlitamak (BA),53.3125,55.458333,,0.025,,3241,68,105,,,,,,85253,,, +455.5,IW,,General purpose DSC Channel,c,-,,,-,,,?,?,400,,????-????,1234567,-455.5,,19900859,,, +456,HNG,,SEG,b,Szeged (Cso),46.270833,20.125,,0.025,,1187,118,85,,,,,L1021 U1026 10.0s,ID+7 gap,86694,, +456,UKR,,W,b,Simferopol / Zavodskoe (KR),44.895833,34.041667,,0.025,,2172,101,95,,,,,,85259,,, +456,KAZ,,BA,b,Balkhash=Balqaş (qar),46.854167,74.958333,,0.025,,4800,69,121,,,,,L1011 ,85258,,, +456,INS,,PKG Banjarmasin R,c,Banjarmasin (KS-kbm),-3.333333,114.583333,,1,,11533,78,152,,????-????,1234567,,,19900706,,, +456,INS,,Semarang R,c,Semarang (JT-kse),-6.966667,110.416667,,1,,11573,83,152,,????-????,1234567,,,19900777,,, +456.5,PNR,,HPP Panam Intelmar R,c,Ciudad de Panam (pnm),8.966667,-79.533333,,1,,8946,272,144,,????-????,1234567,-456.5,,19901288,,, +457,BLR,,OM,b,Machulishchi (MI),53.8125,27.375,,0.025,,1412,74,87,,,,,,85260,,, +457,KRE,,Hungnam R,c,Hungnam (han),39.833333,127.616667,,1,,8324,43,140,,????-????,1234567,,,19901003,,, +458,BLR,,QM,b,Minsk/Mačuličy (MI),53.8125,27.541667,,0.025,,1423,74,87,,,,995,L774 U765 4.5s,ID+1 gap,85263,, +458,BLR,,WN,b,Minsk/Mačuličy (MI),53.729167,27.625,,0.025,,1428,74,87,,,,5,L1030 U1034 ,IDx2 + 8 gap,85264,, +458,RUS,,UIS9 Magdan R,c,Magdan,53.616667,105.3,,1,,6073,46,118,,????-????,1234567,,,19901349,,, +458,CHN,,XSG Shanghai R,c,Shanghai (SH),31.108889,121.544167,,1,,8826,52,143,,????-????,1234567,,,36201267,,, +458,KOR,,HLU Ulleung R,c,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900990,,, +458,MDG,,5RD Tlanaro R,c,Tlanaro=Fort-Dauphin (tln),-25.033333,47,,1,,9442,144,145,,????-????,1234567,,,19901066,,, +458,CBG,,XUK Sihanoukville R,c,Sihanoukville=Kmpng Sam (kps),10.633333,103.508333,,1,,9555,78,146,,????-????,1234567,,,19900313,,, +458,INS,,Sorong R,c,Sorong (PB-srg),-0.883333,131.25,,1,,12374,62,155,,????-????,1234567,,,19900783,,, +458,CHL,,CBS San Pedro R,c,San Pedro,-47.7,-74.883333,,1,,13500,231,159,,????-????,1234567,,,19900364,,, +458,INS,,Merauke R,c,Merauke (PA-mer),-8.461111,140.333333,,1,,13623,58,159,,????-????,1234567,,,19900755,,, +460,ALB,,ZAV Vlor R,c,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900008,,, +460,POL,,SK,b,Swidnik,51.229167,22.708333,,0.025,,1126,89,84,,,,0,L700 U700 15.0s,IDx2,85269,, +460,RUS,,GB,b,Volchanka,52.5625,49.958333,,0.025,,2914,72,102,,,,13,L1014 U1040 30.0s,85267,,, +460,IRN,,EQI Bandar-e Abbas R,c,Bandar-e Abbas (hrg),27.161022,56.225378,,1,,4952,104,107,,????-????,1234567,,,19900809,,, +460,IND,,VWN Cochin R,c,Cochin (KL),9.966667,76.233333,,1,,7762,100,135,,????-????,1234567,,,19900681,,, +460,CUB,,CLC Cienfuegos R,c,Cienfuegos (cf),22.15,-80.433333,,1,,7873,282,136,,????-????,1234567,,,19900440,,, +460,CLM,,HKB Barranquilla R,c,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900404,,, +460,MYA,,XYR Yangon R,c,Yangon=Rangoon (ygn),16.866667,96.166667,,1,,8519,80,142,,????-????,1234567,,,19900275,,, +460,CHN,,GF,b,Xian / Xianyang / Fenghuo / Douma (SA),34.5625,108.625,,0.025,,7793,59,151,,,,,,85268,,, +461,MRC,,CND Agadir R,c,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,????-????,1234567,,,19901108,,, +461,IRQ,,YIU Umm Qasr R,c,Umm Qasr (bsr),30.033333,47.933333,,1,,4173,110,99,,????-????,1234567,,,19900820,,, +461,SHN,,ZHH Saint Helena R,c,Jamestown (shl),-15.919444,-5.716667,,1,,7655,193,134,,????-????,1234567,,,19901381,,, +461,MDG,,5RO Mahajanga R,c,Mahajanga (mhj),-15.716667,46.316667,,1,,8465,140,142,,????-????,1234567,,,19901055,,, +461,CHL,,CBT Talcahuano R,c,Talcahuano (BI),-36.715056,-73.108,,1,,12506,239,155,,????-????,1234567,,,19900366,,, +462,UKR,,VI,b,Zhitomir (ZH),50.0625,28.458333,,0.025,,1551,90,88,,,,938,L1201 U268 4.1s,ID+2 gap,85272,, +462,UKR,,VR,b,Zhitomir (ZH),50.1875,28.708333,,0.025,,1564,89,89,,,,0,L1060 U1060 ,85273,,, +462,RUS,,L,b,Sasovo,54.354167,41.958333,,0.025,,2354,70,97,,,,,,86696,,, +462,RUS,,M,b,Sasovo,54.354167,41.958333,,0.025,,2354,70,97,,,,,U1021 14.3s,IDx2,86697,, +462,IND,,VWY Paradip R,c,Paradip (OR),20.316667,86.616667,,1,,7579,85,133,,????-????,1234567,,,19900688,,, +462,CHN,,XSZ Dalian R,c,Dalian (LN),38.845244,121.518056,,1,,8120,48,138,,????-????,1234567,,,19900377,,, +462,CHN,,XSJ Zhanjiang R,c,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,????-????,1234567,,,19900397,,, +463,RUS,,BZ,b,Severomorsk 3 (MU),68.854167,33.708333,,0.025,,2347,27,96,,,,,L987 15.0s,IDx2 + 5 gap,85275,, +463,RUS,,YAN,b,Severomorsk 3 (MU),68.854167,33.708333,,0.025,,2347,27,96,,,,,L999 U995 15.0s,IDx2 + 7 gap,86698,, +464,DJI,,J2A Djibouti R,c,Djibouti (djb),11.608333,43.15,,1,,5576,130,113,,????-????,1234567,,,19900475,,, +464,VEN,,YVG La Guaira R,c,La Guaira (vgs),10.6,-66.933333,,1,,7944,263,136,,????-????,1234567,,,19901615,,, +464,KOR,,HLC Incheon R,c,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900957,,, +464,PAQ,,CBV3 Hanga Roa R,c,Hanga Roa (vlp),-27.151389,-109.438333,,1,,14095,272,161,,????-????,1234567,,,19901317,,, +465,LBY,,5AB Benghazi R,c,Benghazi (bga),32.116667,20.066667,,1,,2483,148,82,,????-????,1234567,,,19901015,,, +465,POL,,NDE,b,Deblin,51.520833,21.958333,,0.025,,1069,87,84,,,,,L998 U1001 ,ID+5 gap,86699,, +465,POL,,NED,b,Deblin,51.5625,21.791667,,0.025,,1057,87,84,,,,,U1000 ,86700,,, +465,BUL,,U,b,Burgas (bur),42.604167,27.541667,,0.025,,1900,115,92,,,,0,L1020 U1045 ,ID+2 gap,85282,, +465,TUR,,SIN,b,Sinop (kdz-sin),42.020833,35.041667,,0.025,,2420,106,97,,,,994,L1025 U1020 10.0s,ID+8 gap,85281,, +465,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901008,,, +465,INS,,PKF Makassar R,c,Makassar (SN-mak),2.45,99.783333,,1,,10023,86,147,,????-????,1234567,,,19900747,,, +465,INS,,Pontianak R,c,Pontianak (KB-ptk),-0.033333,109.333333,,1,,10888,80,150,,????-????,1234567,,,19900764,,, +465,INS,,PNK Jayapura R,c,Jayapura (PA-jyp),-2.533333,140.7,,1,,13077,54,157,,????-????,1234567,,,19900735,,, +466,PAK,,ASK Karachi R,c,Karachi (shd),24.851944,67.0425,,1,,5868,97,116,,????-????,1234567,,,19901282,,, +466,BGD,,S3D Chittagong R,c,Chittagong (cgg),22.366667,91.8,,1,,7757,79,135,,????-????,1234567,,,19900264,,, +468,D,,FTZ,b,Fritzlar (hes),51.104167,9.291667,,0.025,,228,118,75,,,,3,L1035 U1039 16.5s,ID+12 tone,85283,, +468,SRB,,VTN,b,Kraljevo/Vitanovac (Srb-rsk),43.729167,20.791667,,0.05,,1416,125,84,,,,995,L1015 U1005 10.0s,ID+6 tone,85284,, +468,ARG,,Prefectura Naval Recalada Rio de Plata,c,Recalada Rio de Plata/Prefectura Naval,-38.5,-63,,1,,12098,231,154,,????-????,1234567,,,19900049,,, +470,SRB,,UZ,b,Uice/Ponikve (Srb-zlb),43.854167,19.875,,0.025,,1355,127,87,,,,60,L945 U1040 9.5s,DAID,85292,, +470,UKR,,CD,b,Mirgorod,49.9375,33.625,,0.025,,1907,86,92,,,,,L905 15.0s,IDx2 + 5 gap,85287,, +470,UKR,,GA,b,Mirgorod,49.9375,33.625,,0.025,,1907,86,92,,,,,,IDx2 + 7 gap,85288,, +470,TUR,,BRI,b,Balikesir (mam-bal),39.645833,27.958333,,0.025,,2154,122,95,,,,0,L1020 U1020 ,ID+2 gap,85286,, +470,RUS,,QL,b,Taganrog (RO),47.270833,38.875,,0.025,,2375,90,97,,,,995,L1020 U1010 ,IDx2 + 5 gap,85290,, +470,RUS,,TN,b,Taganrog Centr. (RO),47.270833,38.875,,0.025,,2375,90,97,,,,,L1037 ,IDx2 + 10 gap,85291,, +470,LBY,,WF,b,Wafa (nlt),28.895833,10.125,,0.025,,2599,172,99,,,,,L400 U400 10.0s,ID+8 gap,86702,, +470,TUR,,BAT,b,Batman (gda-bat),37.9375,41.125,,0.025,,3108,107,104,,,,,L1025 ,8000013,,, +470,AZE,,BI,b,Baku / Bina (bak),40.520833,50.041667,,0.025,,3527,94,108,,,,,L1020 9.5s,ID+8 gap,85285,, +470,UZB,,HK,b,Nurata (nwo),40.5625,65.708333,,0.025,,4591,82,119,,,,,,85289,,, +470,KOR,,HLM Mokpo R,c,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900976,,, +470,CHN,,XSM4 Quanzhou R,c,Quanzhou,24.916667,118.583333,,1,,9227,58,144,,????-????,1234567,,,19900389,,, +470,INS,,PKX Jakarta R,c,Jakarta (JK),-6.166667,106.833333,,1,,11259,86,151,,????-????,1234567,,,19900732,,, +470,KIR,,T3C Tarawa R,c,Tarawa Atoll/Takaronga,1.361111,173.155561,,1,,13941,16,160,,????-????,1234567,,,19900939,,, +471,CHN,,XSQ Guangzhou R,c,Guangzhou (GD),23.15,113.483333,,1,,9084,63,144,,????-????,1234567,,,19900382,,, +472,EGY,,SUT El Tur R,c,El Tur=At Tur (jsn),28.233333,33.616667,,1,,3479,129,92,,????-????,1234567,,,19900503,,, +472,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901009,,, +472,TGO,,5VA Lom R,c,Lom (mar),6.139522,1.27935,,1,,5133,187,108,,????-????,1234567,,,19901402,,, +472,MYT,,FJN Dzaoudzi R,c,Dzaoudzi (976),-12.782222,45.233889,,1,,8120,140,138,,????-????,1234567,,,19901129,,, +472,CHL,,CBF Juan Fernndez R,c,Juan Fernndez,-33.66475,-78.932167,,1,,12601,245,156,,????-????,1234567,,,19900342,,, +472,CHL,,CBN Cabo de Hornos R,c,Cabo de Hornos,-55.972778,-67.270556,,1,,13775,220,159,,????-????,1234567,,,19900322,,, +473,D,,FHA,b,Friedrichshafen / Lwental (bw),47.6875,9.541667,,0.025,,540,154,78,,,,988,L1020 U1020 6.5s,ID+2 gap,85294,, +473,MDA,,L,b,Chişinău (CU),46.9375,28.958333,,0.025,,1718,101,90,,,,,U400 ,85295,,, +473,MDA,,R,b,Chişinău (CU),46.9375,28.875,,0.025,,1712,101,90,,,,,,85297,,, +473,MDA,,CAH,b,Cahul,45.520833,28.291667,,0.025,,1753,106,91,,,,,L1047 U1037 ,86703,,, +473,RUS,,MG,b,Rzhev (TV),56.270833,34.375,,0.025,,1863,65,92,,,,,15.0s,2xID,85296,, +474,POL,,BIA,b,Rzeszow / Jasionka,50.104167,22.125,,0.025,,1117,95,84,,,,2,L1031 U1034 ,ID+2.5 gap,85298,, +474,POL,,RZ,b,Rzeszow / Jasionka,50.104167,22.125,,0.025,,1117,95,84,,,,,L1015 U1010 5.0s,ID+2.5 gap,87261,, +474,IND,,VWV Vishakhapatnam R,c,Vishakhapatnam (AP),17.7,83.3,,1,,7575,89,133,,????-????,1234567,,,19900699,,, +474,CHN,,XSN Ningbo R,c,Ningbo,29.883333,121.55,,1,,8939,53,143,,????-????,1234567,,,19900387,,, +474,INS,,PKB Belawan R,c,Belawan (SU-med),3.783333,98.683333,,1,,9831,86,146,,????-????,1234567,,,19900710,,, +474,INS,,Sibolga R,c,Sibolga (SU-sib),1.75,98.8,,1,,10017,87,147,,????-????,1234567,,,19900781,,, +474,INS,,Samarinda R,c,Samarinda (KI-sam),-0.5,117.15,,1,,11449,74,152,,????-????,1234567,,,19900772,,, +474.5,POL,,SA,b,Darlowo,54.4375,16.375,,0.025,,711,65,80,,,,502,L1020 U1023 5.5s,ID+3 gap,85299,, +475,UKR,,CN,b,Kanatovo,48.645833,32.375,,0.025,,1870,92,92,,,,,,85302,,, +475,RUS,,ZG,b,Petrovskoye (TA),51.729167,40.208333,,0.025,,2297,78,96,,,,1,L1014 U1018 ,IDx3 + 13 gap,85304,, +475,RUS,,F,b,Egorlykskaya,46.5625,40.625,,0.025,,2529,90,98,,,,,,86704,,, +475,RUS,,AM,b,Kazan (TS),55.645833,49.208333,,0.025,,2787,65,101,,,,,U~1020 ,85300,,, +475,RUS,,BL,b,Kazan (TS),55.5625,49.375,,0.025,,2799,65,101,,,,0,L400 U400 ,85301,,, +475,TJK,,JD,b,Fayzobod (ntc),38.543056,69.313056,,0.025,,4973,82,123,,,,,,34200007,,, +475,CHN,,JR,b,Beijing / Liangxiang (BJ),39.729167,116.125,,0.025,,7763,50,151,,,,,L1000 U1000 3s,85303,,, +475.5,RUS,,CL,b,Kotelnikovo,47.604167,43.125,,0.025,,2650,86,99,,,,-475.5,L900 U880 7.5s,ID+3 gap,86705,, +475.5,RUS,,UCH,b,Kotelnikovo,47.645833,43.125,,0.025,,2648,86,99,,,,-475.5,,85305,,, +476,LBY,,5AT Tarabulus=Tripoli R,c,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901019,,, +476,UKR,,UXO Sevastopol' Krymskoi R,c,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901472,,, +476,CPV,,D4D Praia R,c,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900425,,, +476,YEM,,7OA Aden R,c,Aden (adn),12.766111,45.052861,,1,,5565,127,113,,????-????,1234567,,,19901622,,, +476,CUB,,CLA La Habana R,c,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,????-????,1234567,,,19900443,,, +476,CHN,,XSB48 Dandong R,c,Dandong (LN),40.133333,124.4,,1,,8144,45,138,,????-????,1234567,,,19900379,,, +476,CLM,,HKB Barranquilla R,c,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900405,,, +476,KOR,,HLK Gangneung R,c,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900966,,, +476,MDG,,5RO Mahajanga R,c,Mahajanga (mhj),-15.716667,46.316667,,1,,8465,140,142,,????-????,1234567,,,19901056,,, +476,MDG,,5RS Toamasina R,c,Toamasina=Tamatave (toa),-18.166667,49.383333,,1,,8849,139,143,,????-????,1234567,,,19901064,,, +476,MDG,,5RT Toliara R,c,Toliara=Tular (tlr),-23.35,43.666667,,1,,9138,146,144,,????-????,1234567,,,19901069,,, +477,SVK,,RP,b,Malacky/Kuchyňa (BA),48.479167,17.125,,0.025,,860,114,82,,,,1,L1018 U1022 10.0s,85306,,, +477,BLR,,CHA,b,Baranovichy (BR),53.145833,26.041667,,0.025,,1326,77,86,,,,,15.0s,IDx2,86706,, +477,BLR,,DE,b,Baranovichy (BR),53.145833,26.041667,,0.025,,1326,77,86,,,,,15.0s,IDx2,86707,, +478,TUR,,Bandirma Turk Radyo,c,Bandirma,40.361111,27.988889,,1,,2098,120,78,,????-????,1234567,,,19901431,,, +478,POL,,GA,b,Powidz / Rozniaty,52.729167,18.291667,,0.025,,808,80,81,,,,,,85308,,, +478,POL,,NGT,b,Powidz,52.354167,17.958333,,0.025,,786,83,81,,,,0,L1018 U1002 5.0s,ID+2 gap,85310,, +478,POL,,NTG,b,Powidz,52.354167,17.875,,0.025,,780,83,81,,,,0,L1020 U1020 ,ID+2 gap,85311,, +478,RUS,,MF,b,Larionovo,56.020833,39.625,,0.025,,2188,65,95,,,,952,L1057 U1024 29.0s,IDx2,85309,, +479,SYR,,YKI Tartus R,c,Tartus (tat),34.883333,35.883333,,1,,3017,118,87,,????-????,1234567,,,19901397,,, +479,RUS,,SA,b,Saratov / Tsentralny (SR),51.5625,46.041667,,0.025,,2690,75,100,,,,,,85312,,, +480,I,,VIB,b,Viterbo (vt),42.4375,12.041667,,0.025,,1156,156,85,,,,5,L1020 U1020 7.0s,ID+3 gap,85321,, +480,UKR,,KJ,b,Chortkov (TE),48.979167,25.708333,,0.025,,1403,97,87,,,,0,L~1020 U~1020 ,85316,,, +480,RUS,,K,b,Tambov (TA),52.6875,41.375,,0.025,,2350,74,96,,,,,,86708,,, +480,TUR,,CLD,b,Aydin / Cildir (ege-ayd),37.8125,27.875,,0.025,,2303,125,96,,,,992,L1040 U1024 ,ID+4 gap,85314,, +480,RUS,,C,b,Cheboksary (CV),56.104167,47.375,,0.025,,2666,64,100,,,,,,85313,,, +480,TKM,,NS,,Mary (mry),37.571667,61.898056,,1,,4537,88,102,,,,,,11900008,,, +480,IRQ,,RER,b,Arbil=Erbil=Hewlr (arb),36.270833,43.958333,,0.025,,3419,106,107,,,,0,L400 U400 ,ID+7 gap,85319,, +480,RUS,,CP,b,Magnitogorsk (CB),53.4375,58.791667,,0.025,,3447,66,107,,,,,U1003 15.0s,IDx2,85315,, +480,RUS,,RF,b,Magnitogorsk (CB),53.354167,58.708333,,0.025,,3445,67,107,,,,995,L385 U389 ,85320,,, +480,J,,Kobe Sea Patrol R,c,Kobe (kns-hyo),34.683333,135.166667,,1,,9158,40,144,,????-????,1234567,,,19900883,,, +480,J,,Moji Sea Patrol R,c,Moji (kyu-fuk),33.95,130.966667,,1,,9037,44,144,,????-????,1234567,,,19900895,,, +480,J,,Sasebo Sea Patrol R,c,Sasebo (kyu-nag),33.166667,129.716667,,1,,9052,45,144,,????-????,1234567,,,19900916,,, +480,J,,Yokohama Sea Patrol R,c,Yokohama (kan-kgw),35.433333,139.633333,,1,,9274,37,145,,????-????,1234567,,,19900924,,, +482,RUS,,NN,b,Kozhevnikovo (TO),56.229167,83.958333,,0.025,,4797,53,121,,,,,,85323,,, +482,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,0553-0600,1234567,,,19900414,,, +482,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,1323-1330,1234567,,,19900414,,, +483,J,,Sapporo R,c,Sapporo (hok),43.05,141.35,,1,,8583,32,142,,????-????,1234567,,,19900914,,, +484,D,,HOF,b,Hof (bay),50.270833,11.791667,,0.025,,427,116,77,,,,2,L1035 U1037 13.0s,85324,,, +484,GUI,,3XC Conakry R,c,Conakry (cnk),9.508333,-13.711111,,1,,5075,208,108,,????-????,1234567,,,19900628,,, +484,PAK,,ASK Karachi R,c,Karachi (shd),24.851944,67.0425,,1,,5868,97,116,,????-????,1234567,,,19901283,,, +484,BGD,,S3E Khulna R,c,Khulna (khu),22.825,89.55,,1,,7567,81,133,,????-????,1234567,,,19900266,,, +484,BGD,,S3D Chittagong R,c,Chittagong (cgg),22.366667,91.8,,1,,7757,79,135,,????-????,1234567,,,19900265,,, +484,KOR,,HLN Gunsan R,c,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900971,,, +484,CLM,,HKC Buenaventura R,c,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900410,,, +485,SRB,,IA,b,Inđija (Voj-srm),45.0625,20.041667,,0.06,,1269,123,82,,,,998,L1040 U1044 12.1s,85330,,, +485,BLR,,B,b,Brest (BR),52.104167,23.875,,0.025,,1190,83,85,,,,,U1020 15.0s,85325,,, +485,BLR,,C,b,Brest (BR),52.104167,23.875,,0.025,,1190,83,85,,,,,,85327,,, +485,BLR,,CO,b,Mogilyov (MA),53.9375,30.125,,0.025,,1591,73,89,,,,,U1020 ,85328,,, +485,BLR,,UF,b,Mogilyov (MA),53.979167,30.041667,,0.025,,1586,73,89,,,,,,ID+4 gap,85337,, +485,UKR,,KH,b,Kakhnovka,46.8125,33.541667,,0.025,,2034,96,93,,,,2,L1037 U1040 15.0s,IDx2,85331,, +485,RUS,,CW,b,Krasnaya Gorbatka,55.854167,41.708333,,0.025,,2319,66,96,,,,0,L767 U771 ,IDx2 + 20 gap,85329,, +485,RUS,,BR,b,Kotlas / Satvatiya (AR),61.020833,46.791667,,0.025,,2613,52,99,,,,999,L1032 U1030 ,85326,,, +485,RUS,,MW,b,Kotlas / Satvatiya (AR),60.979167,46.958333,,0.025,,2622,52,99,,,,,,85333,,, +485,RUS,,HU,b,Engels-2,51.479167,46.208333,,0.025,,2703,76,100,,,,,L1013 U1014 ,86709,,, +485,RUS,,ZK,b,Engels,51.479167,46.208333,,0.025,,2703,76,100,,,,,,86712,,, +485,UZB,,N,b,Urgench (xoz),41.5625,60.625,,0.025,,4181,84,115,,,,,U400 ,85334,,, +485,KAZ,,ZU,b,Ayagoz (sgq),47.9375,80.458333,,0.025,,5077,64,124,,,,,U1013 ,85339,,, +485,IND,,VWM Chennai R,c,Chennai=Madras (TN),13.082778,80.287222,,1,,7765,95,135,,????-????,1234567,,,19900684,,, +485,ATA,,RUZU Molodezhnaya R,c,Molodezhnaya Station [RUS] (aat),-67.666667,45.840056,,1,,13716,163,159,,????-????,1234567,,,19900113,,, +485,ATA,,UDY Novolazarevskaya R,c,Novolazarevskaya Station [RUS] (dml),-70.776667,11.823058,,1,,13671,178,159,,????-????,1234567,,,19900116,,, +485,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900080,,, +485,ATA,,UBA Mirnyy R,c,Mirnyy Station [RUS] (aat),-66.558981,93.002239,,1,,15033,146,164,,????-????,1234567,,,19900110,,, +486,RUS,,KL,b,Krasnyy Sulin,47.895833,40.125,,0.025,,2432,88,97,,,,90,L960 U1015 ,ID+6 gap,85340,, +486,KAZ,,KZ,b,Kyzylorda=Qızılorda (qzy),44.6875,65.625,,0.025,,4323,77,116,,,,,,85341,,, +486,KAZ,,OR,b,Kyzylorda=Qızılorda (qzy),44.6875,65.625,,0.025,,4323,77,116,,,,,U1018 ,86713,,, +486,ARG,,LPG Rio Gallegos R,c,Ro Gallegos (sc),-51.633333,-69.216667,,1,,13522,225,159,,????-????,1234567,,,19900051,,, +487,TUN,,3VX Tunis R,c,Tunis (tun),36.8,10.183333,,1,,1728,169,74,,????-????,1234567,,,19901424,,, +487,UKR,,UHZ Kherson R,c,Kherson (KE),46.633333,32.6,,1,,1979,97,77,,????-????,1234567,,,19901461,,, +487,NOR,,LJN Ny-lesund R,c,Ny-lesund (sp),78.918425,11.892033,,1,,2989,2,87,,????-????,1234567,,,19901144,,, +487,TUR,,BEY,b,Beypazari (ica-ank),40.145833,31.958333,,0.025,,2356,114,97,,,,995,L1049 U1030 ,Cont. ID,85343,, +487,BHR,,A9M Bahrain R,c,Hamala (shm),26.157167,50.47665,,1,,4662,111,104,,????-????,1234567,,,19900268,,, +487,STP,,S9M So Tom R,c,So Tom (sao),0.345833,6.7375,,1,,5756,180,115,,????-????,1234567,,,19901387,,, +487,IND,,VWT Tuticorin R,c,Tuticorin (TN),8.783333,78.133333,,1,,7994,99,137,,????-????,1234567,,,19900696,,, +487.5,J,,Sapporo R,c,Sapporo (hok),43.05,141.35,,1,,8583,32,142,,????-????,1234567,-487.5,,19900915,,, +487.5,INS,,PKD5 Benoa R,c,Benoa (BA-den),-8.766667,115.216667,,1,,12056,80,154,,????-????,1234567,-487.5,,19900712,,, +488,D,,ILM,b,Illesheim (bay),49.479167,10.375,,0.025,,404,135,77,,,,966,L1063 U1012 7.5s,ID+5 gap,85344,, +488,POL,,NPR,b,Tomaszow-Mazowiecki / Porter,51.5625,20.125,,0.025,,943,88,82,,,,,L400 U400 6.0s,ID+2 gap,86714,, +488,SUR,,PZN Paramaribo R,c,Paramaribo (pmb),5.866667,-55.166667,,1,,7583,250,133,,????-????,1234567,,,19901390,,, +488,USA,,Silvana R,c,Silvana (WA),48.2,-122.25,,1,,7847,327,135,,????-????,1234567,,,19901564,,, +489,D,,SIL,b,Siegen / Siegerland (nrw),50.6875,8.125,,0.025,,198,142,75,,,,999,L1038 U1043 ,85349,,, +489,POL,,NK,b,Poznan / Krzesiny / Kamera,52.3125,16.958333,,0.025,,718,84,80,,,,,L1022 U1021 ,85348,,, +489,GEO,,AV,b,Sukhumi / Babushara (abk),42.854167,41.125,,0.025,,2772,98,101,,,,5,L1130 U1139 ,IDx2 +5 tone,85345,, +489,ERI,,ETC Assab R,c,Assab=Aseb (dkb),13.016667,42.741667,,1,,5417,130,111,,????-????,1234567,,,19900509,,, +489,RUS,,NC,b,Kemerovo (KE),55.3125,86.208333,,0.025,,4970,53,123,,,,,,85347,,, +489,MDG,,5RN Nosy B R,c,Nosy B (ats),-13.333333,48.25,,1,,8311,138,140,,????-????,1234567,,,19901062,,, +489,CLM,,HKC Buenaventura R,c,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900411,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0010-0020,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0410-0420,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0410-0820,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1210-1220,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1610-1620,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,2010-2020,1234567,,,800002,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0150-0200,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0550-0600,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0950-1000,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1350-1400,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1750-1800,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,2150-2200,1234567,,,2000041,,, +490,G,,GCC Cullercoats R,,East Hartley (EN-TYW),55.0732,-1.463233,,1,,615,306,63,,,,,,2800042,,, +490,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,,,,,2800043,,, +490,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,,,,,2800044,,, +490,G,,GPK Portpatrick R,,Portpatrick (SC-DGA),54.844044,-5.124478,,1,,820,296,65,,,,,,2800041,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0040-0100,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0440-0500,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0840-0900,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1240-1300,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1640-1700,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,2040-2100,1234567,,,2500012,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0300-0320,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0700-0720,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1100-1120,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1500-1520,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1900-1920,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,2300-2320,1234567,,,2500013,,, +490,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,,,,,4100051,,, +490,I,,IQM,,Mondolfo (pu),43.75,13.1,,1,,1054,149,68,,,,,,4000047,,, +490,I,,ICH,,La Maddalena (ot),41.214722,9.4075,,1,,1233,168,69,,,,,,4000049,,, +490,E,,EAR La Corua R,,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,,,,,2200028,,, +490,E,,EAV,,Cumbre del Sol (VAL-A),38.723258,0.161367,,1,,1565,200,73,,,,,,2200027,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0330-0340,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0730-0740,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1130-1140,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1530-1540,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1930-1940,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,2330-2340,1234567,,,200014,,, +490,I,,ICI,,Sellia Marina (cz),38.905,16.743056,,1,,1671,147,74,,,,,,4000048,,, +490,POR,,CTV Monsanto R,,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,,,,,6500003,,, +490,ROU,,YQV Constanţa R,,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,,,,,6600007,,, +490,UKR,,UTT Odesa R,,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,,,,,8100017,,, +490,E,,EAC Tarifa R,,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,,,,,2200029,,, +490,ISL,,TFA Reykjavk R,,Sauanes (ne),66.2465,-15.264172,,1,,1977,331,77,,,,,,4200015,,, +490,ISL,,TFA Reykjavk R,,Grindavk (sn),63.850969,-22.451883,,1,,2114,319,78,,,,,,4200014,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,0010-0020,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,0410-0420,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,0810-0820,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,1210-1220,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,1610-1620,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,2010-2020,1234567,,,8000015,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,0020-0030,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,0420-0430,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,0820-0830,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,1220-1230,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,1620-1630,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,2020-2030,1234567,,,8000019,,, +490,UKR,,Kerch R,,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,,,,,8100016,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,0000-0010,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,0400-0410,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,0800-0810,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,1200-1210,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,1600-1610,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,2000-2010,1234567,,,8000021,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,0030-0040,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,0430-0440,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,0830-0840,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,1230-1240,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,1630-1640,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,2030-2040,1234567,,,8000017,,, +490,MDR,,CTQ Porto Santo R Naval,,Porto Santo (pst),33.066278,-16.355417,,1,,2797,230,85,,,,,,5500001,,, +490,AZR,,CTH Marinha Horta,,Horta (fai),38.529872,-28.628922,,1,,3086,255,88,,,,,,700013,,, +490,BUL,,WAK,b,Vakarel (sof),42.5625,23.708333,,0.025,,1674,123,90,,,,0,L1026 U1048 ,ID+8 gap,85358,, +490,CNR,,EAL Las Palmas R,,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,,,,,1500015,,, +490,UKR,,KO,b,Koshany,50.9375,30.958333,,0.025,,1695,85,90,,,,5,L1073 U1008 30.0s,IDx2 + 25 gap,85353,, +490,RUS,,FI,b,Golitsyno,53.604167,44.125,,0.025,,2508,71,98,,,,14,L1000 U1029 ,85352,,, +490,CAN,,VFF Iqaluit Coastguard,,Iqaluit (NU),63.731389,-68.543167,,1,,4325,317,100,,,,,,20109278,,, +490,CAN,,VCO Sydney Coastguard,,Glace Bay (NS),46.185739,-59.893275,,1,,4697,289,104,,,,,,20109277,,, +490,ARM,,SVN,b,Sevan (grk),40.534167,44.954722,,0.025,,3180,98,105,,,,,,85355,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0035-0045,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0435-0445,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0835-0845,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1235-1245,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1635-1645,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,2035-2045,1234567,,,20109275,,, +490,CPV,,D4A So Vicente R,,Ribeira de Vinha (svc-slz),16.853228,-25.003197,,1,,4790,227,105,,,,,,1600001,,, +490,RUS,,SE,b,Serov (SV),59.5625,60.541667,,0.025,,3378,54,107,,,,,U1037 ,85354,,, +490,CAN,,VAR3 Yarmouth Coastguard,,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,,,,,20109280,,, +490,UZB,,SW,b,Karakhtay (tos),40.9375,69.791667,,0.025,,4841,79,121,,,,,,85356,,, +490,KRE,,HMH,,Hungnam (han),39.833172,127.6856,,1,,8327,43,140,,,,,,31700008,,, +490,KRE,,HMZ,,Pyongyang (pyo),38.916667,125.716667,,1,,8320,45,140,,,,,,31700007,,, +490,TWN,,XSY,,Yenliaoken (HL),23.9,121.6,,1,,9493,56,145,,,,,,21800035,,, +490,EQA,,XXXX,,Ayora (gal),-0.75,-90.316667,,1,,10532,275,149,,,,,,32600010,,, +490,URG,,CWM27,,La Paloma (ro),-34.666667,-54.15,,1,,11294,227,151,,,,,,31200003,,, +490,ARG,,L2B,,Buenos Aires (df),-34.6,-58.366667,,1,,11504,230,152,,,,,,33000027,,, +490,ARG,,L2P,,Mar del Plata (ba),-38.05,-57.533333,,1,,11776,227,153,,,,,,33000026,,, +490,ARG,,L2I,,Baha Blanca (ba),-38.716667,-62.1,,1,,12070,230,154,,,,,,33000028,,, +490,ARG,,L2W,,Comodoro Rivadavia (ch),-45.85,-67.416667,,1,,12961,228,157,,,,,,33000029,,, +490,ARG,,L3D,,Ro Gallegos (sc),-51.616667,-69.216667,,1,,13521,225,159,,,,,,33000030,,, +490,ARG,,L3K,,Ushuaia (tf),-54.8,-68.3,,1,,13729,222,159,,,,,,33000031,,, +492,CZE,,TBV,b,Moravska / Trebova (PA),49.8125,16.708333,,0.025,,764,105,81,,,,5,L400 U401 10.0s,ID+7 gap,85360,, +492,CAN,,E8,b,Natuashish / Davis Inlet (NL),55.895833,-61.208333,,0.025,,4261,303,116,,,,,U407 8407s,ID+4 tone,85359,, +493,I,,TOM,b,Tombolo (pd),45.645833,11.791667,,0.025,,819,149,81,,,,,L640 U645 ,ID+7 gap,86717,, +493,HNG,,P,b,Ppa (Ves),47.354167,17.541667,,0.025,,957,119,83,,,,,L1039 U986 30.0s,IDx2 + 24 gap,85363,, +493,RUS,,RW,b,Maryino,55.6875,38.208333,,0.025,,2101,66,94,,,,0,L1020 U1016 28.0s,IDx3,85364,, +493,RUS,,KR,b,Krasnodar (KD),45.020833,39.125,,0.025,,2508,95,98,,,,0,L385 U388 15.0s,ID+6 gap,85361,, +493,RUS,,LD,b,Krasnodar / Pashkhovsky (KD),45.0625,39.208333,,0.025,,2512,95,98,,,,2,L1010 U1031 ,IDx2 + 6 gap,85362,, +494,POL,,KN,b,Oksywie,54.5625,18.541667,,0.025,,849,66,81,,,,0,L1025 U1022 4.5s,ID+2 gap,85365,, +494,POL,,NK,b,Oksywie,54.604167,18.458333,,0.025,,845,66,81,,,,996,L1028 U1020 4.4s,85366,,, +495,SRB,,PA,b,Pančevo (Voj-jbn),44.895833,20.625,,0.05,,1315,122,83,,,,949,L1084 U910 9.5s,ID+6 tone,85369,, +495,RUS,,ZF,b,Voronezh / Pridacha,51.645833,39.291667,,0.025,,2238,78,95,,,,,,86719,,, +495,RUS,,AW,b,Budjenovsk,44.8125,44.041667,,0.025,,2855,91,102,,,,,15.0s,IDx2 + 7 gap,85367,, +495,RUS,,BP,b,Budennovsk,44.8125,44.041667,,0.025,,2855,91,102,,,,,,86718,,, +496,ARM,,ER,b,Yerevan (erv),40.145833,44.458333,,0.025,,3173,100,105,,,,5,L1000 U997 ,IDx2 + 25 gap,85371,, +500,ROU,,YQI Constanţa R,c,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,,,6600008,,, +500,RUS,,UZT Mezen R,c,Mezen,65.85,44.233333,,1,,2588,39,83,,????-????,1234567,,,19901350,,, +500,KEN,,5ZF Mombasa R,c,Mombasa (coa),-4.066667,39.672222,,1,,6989,142,127,,????-????,1234567,,,19900937,,, +500,DOM,,HIA Santo Domingo Piloto R,c,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,????-????,1234567,,,19900493,,, +500,ARG,,Prefectura Naval Buenos Aires,c,Buenos Aires/Prefectura Naval (df),-34.583333,-58.666667,,1,,11518,230,152,,????-????,1234567,,,19900038,,, +500,ARG,,Prefectura Naval Mar del Plata,c,Mar del Plata/Prefectura Naval (ba),-38,-57.55,,1,,11772,227,153,,????-????,1234567,,,19900046,,, +500,ARG,,Prefectura Naval Bahia Blanca,c,Baha Blanca/Prefectura Naval (ba),-38.716667,-62.283333,,1,,12079,230,154,,????-????,1234567,,,19900036,,, +500,ARG,,Prefectura Naval Comodoro Rivadavia,c,Comodoro Rivadavia/Prefectura Naval (ch),-45.866667,-67.5,,1,,12966,228,157,,????-????,1234567,,,19900041,,, +500,ARG,,Prefectura Naval Rio Gallegos,c,Ro Gallegos/Prefectura Naval (sc),-51.633333,-69.216667,,1,,13522,225,159,,????-????,1234567,,,19900057,,, +500,ARG,,Prefectura Naval Ushuaia,c,Ushuaia/Prefectura Naval (tf),-54.8,-68.3,,1,,13729,222,159,,????-????,1234567,,,19900060,,, +505,XOE,,BD1,b,Al-Jurf Field,33.854167,12.041667,,0.025,,2079,165,94,,,,,U1026 ,ID+11 gap,86721,, +505,UKR,,S,b,Kerch (KR),45.354167,36.375,,0.025,,2303,97,96,,,,,,85374,,, +505,RUS,,GE,b,Saransk (MD),54.145833,45.208333,,0.025,,2566,69,99,,,,,,85373,,, +505,RUS,,SI,b,Saransk (MD),54.145833,45.208333,,0.025,,2566,69,99,,,,,,85375,,, +505,RUS,,WC,b,Kamensk-Uralskiy (SV),56.4375,61.958333,,0.025,,3538,60,108,,,,,L1050 U1027 ,85376,,, +505,TJK,,SX,b,Pugus (ntc),38.843056,68.839722,,0.025,,4920,82,122,,,,,,34200009,,, +505.18,D,,DI2AM,c,Rostock (mev),54.141917,12.086503,,0.018,,441,57,79,,,,-505.18,,2000042,,, +507,RUS,,ND,b,Bolshevik,45.770833,40.208333,,0.025,,2541,93,98,,,,4,L969 U974 ,ID+7 gap,85378,, +508,SVK,,Z,b,Zilina / Hlinik (ZA),49.229167,18.625,,0.025,,917,106,82,,,,995,L1016 U1016 10.0s,ID+9 gap,85379,, +509,UKR,,N,b,Chemivtsi (CV),48.270833,25.958333,,0.025,,1451,99,87,,,,,U998 ,IDx2,85383,, +509,UKR,,R,b,Chernivtsi (CV),48.229167,26.041667,,0.025,,1458,99,88,,,,,L1010 U1014 15.0s,IDx2 + 11 gap,85384,, +509,UKR,,I,b,Mykolaivka (MY),47.0625,31.875,,0.025,,1908,97,92,,,,,U1020 ,IDx2 + 15 gap,85380,, +509,UKR,,K,b,Mykolaivka (MY),47.0625,31.958333,,0.025,,1914,97,92,,,,,U1011 ,Cont.ID,85381,, +509,RUS,,D,b,Volgodonsk (RO),47.6875,42.041667,,0.025,,2572,87,99,,,,,,86722,,, +509,KAZ,,M,b,Taraz=Jambyl=Zhambyl (zha),42.854167,71.291667,,0.025,,4814,75,121,,,,,U1020 ,85382,,, +510,RUS,,LJ,b,Gromovo,60.729167,30.125,,0.025,,1730,47,90,,,,5,L402 U404 15.3s,IDx2 + 5 gap,85389,, +510,RUS,,WO,b,Zalesye,56.770833,35.125,,0.025,,1912,63,92,,,,,,86723,,, +510,UKR,,CE,b,Poltava (PO),49.645833,34.458333,,0.025,,1974,87,93,,,,7,L1005 U1020 15.0s,ID+9 gap,85385,, +510,RUS,,CR,b,Cheboksary (CV),56.104167,47.458333,,0.025,,2671,64,100,,,,923,L1020 U866 ,85386,,, +510,RUS,,LA,b,Cheboksary (CV),56.0625,47.291667,,0.025,,2662,64,100,,,,,,85388,,, +510,KAZ,,NK,b,Novokazalinsk (qzy),45.8125,62.125,,0.025,,4024,77,113,,,,988,L995 U900 15.0s,IDx2,85390,, +510,ALS,,FA,b,Wearr Fairbanks (AK),64.895833,-147.708333,,0.025,,6816,348,141,,,,,,85387,,, +510,USA,,OF,b,Carsy Norfolk (NE),41.895833,-97.458333,,0.025,,7264,307,146,,,,959,L1070 U993 7.4s,85391,,, +510.5,UKR,,UTT Odesa R,c,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,????-????,1234567,-510.5,,19901468,,, +511,BLR,,G,b,Gomel (GO),52.520833,30.958333,,0.025,,1661,79,90,,,,996,L1010 U1010 ,85392,,, +511,BLR,,M,b,Gomel (GO),52.520833,31.041667,,0.025,,1667,79,90,,,,997,L1013 U1012 ,85394,,, +511,ALG,,HKI,b,Hassi Khebi (37),29.1875,-5.291667,,0.025,,2725,205,100,,,,0,L4 20.0s,ID+15 tone,85393,, +512,MNE,,Bar R,c,Bar (BR),42.086111,19.075,,1,,1466,134,72,,????-????,1234567,,,19901100,,, +512,ALB,,ZAV Vlor R,c,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900009,,, +512,TUN,,3VX Tunis R,c,Tunis (tun),36.8,10.183333,,1,,1728,169,74,,????-????,1234567,,,19901425,,, +512,MRC,,CNW Tanger R,c,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,????-????,1234567,,,19901121,,, +512,LBY,,5AT Tarabulus=Tripoli R,c,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901020,,, +512,LBY,,5AB Benghazi R,c,Benghazi (bga),32.116667,20.066667,,1,,2483,148,82,,????-????,1234567,,,19901016,,, +512,AZR,,CUG So Miguel R,c,So Miguel (smg),37.766667,-25.5,,1,,2939,250,86,,????-????,1234567,,,19900230,,, +512,MDR,,CUB Madeira R,c,Funchal (md),32.641944,-16.9175,,1,,2865,230,86,,????-????,1234567,,,19901076,,, +512,IRN,,EQL Bandar Anzali R,c,Bandar Anzali (gln),37.477778,49.466667,,1,,3697,99,94,,????-????,1234567,,,19900806,,, +512,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901010,,, +512,IRN,,EQI Bandar-e Abbas R,c,Bandar-e Abbas (hrg),27.161022,56.225378,,1,,4952,104,107,,????-????,1234567,,,19900810,,, +512,KAZ,,KT,b,Narimanovka / Kostanay (qos),53.145833,63.291667,,0.025,,3738,65,110,,,,2,L391 U1011 ,85396,,, +512,KAZ,,NA,b,Narimanovka / Qostanay (qos),53.104167,63.375,,0.025,,3745,65,110,,,,2,L1011 U1012 ,85397,,, +512,IRN,,EQJ Chah Bahar R,c,Chah Bahar (sib),25.3,60.633333,,1,,5399,102,111,,????-????,1234567,,,19900815,,, +512,DJI,,J2A Djibouti R,c,Djibouti (djb),11.608333,43.15,,1,,5576,130,113,,????-????,1234567,,,19900476,,, +512,YEM,,7OA Aden R,c,Aden (adn),12.766111,45.052861,,1,,5565,127,113,,????-????,1234567,,,19901623,,, +512,COD,,9PA Banana R,c,Banana,-6.002778,12.4,,1,,6487,173,122,,????-????,1234567,,,19900418,,, +512,IND,,VWZ Ratnagiri R,c,Ratnagiri (MH),16.983333,73.3,,1,,6955,98,127,,????-????,1234567,,,19900694,,, +512,IND,,VWG Goa R,c,Goa (GA),15.458333,73.802778,,1,,7120,98,128,,????-????,1234567,,,19900683,,, +512,IND,,VWL Mangalore R,c,Mangalore (KA),12.866667,74.883333,,1,,7417,99,131,,????-????,1234567,,,19900685,,, +512,BGD,,S3E Khulna R,c,Khulna (khu),22.825,89.55,,1,,7567,81,133,,????-????,1234567,,,19900267,,, +512,IND,,VWT Tuticorin R,c,Tuticorin (TN),8.783333,78.133333,,1,,7994,99,137,,????-????,1234567,,,19900697,,, +512,CHN,,XSZ Dalian R,c,Dalian (LN),38.845244,121.518056,,1,,8120,48,138,,????-????,1234567,,,19900378,,, +512,RUS,,UBW Yuzhno-Sakhalinsk R,c,Yuzhno-Sakhalinsk (SL),46.966667,142.733333,,1,,8241,29,139,,????-????,1234567,,,19901372,,, +512,KRE,,Inch'on R,c,Inch'on,40.45,127.5,,1,,8261,43,140,,????-????,1234567,,,19901004,,, +512,KOR,,HLK Gangneung R,c,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900967,,, +512,KOR,,HLM Mokpo R,c,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900977,,, +512,KOR,,HLN Gunsan R,c,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900972,,, +512,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900942,,, +512,KOR,,HLU Ulleung R,c,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900991,,, +512,KOR,,HLY Yeosu R,c,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19900996,,, +512,CHN,,XSJ Zhanjiang R,c,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,????-????,1234567,,,19900398,,, +512,USA,,HMY,b,Muldrow Lexington (OK),35.020833,-97.208333,,0.025,,7835,302,151,,,,964,L1065 U996 7.70s,85395,,, +512,ATA,,RUZU Molodezhnaya R,c,Molodezhnaya Station [RUS] (aat),-67.666667,45.840056,,1,,13716,163,159,,????-????,1234567,,,19900114,,, +512,ATA,,UDY Novolazarevskaya R,c,Novolazarevskaya Station [RUS] (dml),-70.776667,11.823058,,1,,13671,178,159,,????-????,1234567,,,19900117,,, +512,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900081,,, +512,ATA,,UBA Mirnyy R,c,Mirnyy Station [RUS] (aat),-66.558981,93.002239,,1,,15033,146,164,,????-????,1234567,,,19900111,,, +513,TUR,,Istanbul R,c,Istanbul,38.55,35,,1,,2668,113,84,,,,,,19901438,,, +513,USA,,PP,b,Flick Crescent (IA),41.395833,-95.875,,0.025,,7219,306,145,,,,980,L1007 U1061 6009s,85398,,, +514.5,CZE,,LA,b,Nměť nad Oslavou (VY),49.145833,16.208333,,0.025,,765,112,81,,,,455,L1020 U1116 8.0s,85401,,, +515,RUS,,T,b,Vologda (VO),59.3125,39.958333,,0.025,,2220,56,95,,,,,15.0s,IDx2 + tone,85410,, +515,RUS,,U,b,Vologda (VO),59.270833,39.958333,,0.025,,2220,56,95,,,,,15.1s,IDx2 + tone,85411,, +515,RUS,,NV,b,Rostov Na Donu (RO),47.270833,39.625,,0.025,,2426,90,97,,,,10,L1000 U1020 30.0s,IDx2 + 7 gap,85404,, +515,RUS,,XS,b,Rostov Na Donu (RO),47.270833,39.625,,0.025,,2426,90,97,,,,,,85412,,, +515,RUS,,SL,b,Sukhodol,53.895833,51.208333,,0.025,,2954,68,103,,,,4,L1029 U1040 30.0s,85409,,, +515,AZE,,BU,b,Baku / Bina (bak),40.3125,50.041667,,0.025,,3540,94,108,,,,3,L405 U410 15.2s,ID+2 gap,85402,, +515,IND,,VWM Chennai R,c,Chennai=Madras (TN),13.082778,80.287222,,1,,7765,95,135,,????-????,1234567,,,19900679,,, +515,USA,,OS,b,Fuler Columbus (OH),40.0625,-83.208333,,0.025,,6590,297,139,,,,0,L1019 U1023 8600s,85406,,, +515,MOZ,,C9C2 Beira R Metro,c,Beira (sfl),-19.85,34.833333,,1,,8463,153,142,,????-????,1234567,,,19901103,,, +515,USA,,RRQ,b,Rock Rapids (IA),43.4375,-96.208333,,0.025,,7068,308,144,,,,,L1050 U1050 ,87263,,, +515,USA,,ONH,b,Noah Jefferson City (MO),38.645833,-92.208333,,0.025,,7239,302,145,,,,984,L1044 U1018 5.9s,85405,,, +515,USA,,SAK,b,Smith Lake Kalispell (MT),48.104167,-114.458333,,0.025,,7545,322,148,,,,967,L1080 U1009 8.2s,85408,,, +515,USA,,PN,b,Ponca Ponca City (OK),36.8125,-97.125,,0.025,,7676,304,150,,,,3,L1016 U1025 8.6s,85407,,, +515,USA,,CL,b,Elwha Port Angeles (WA),48.145833,-123.708333,,0.025,,7907,327,152,,,,955,L1080 U988 5.98s,85403,,, +515,USA,,PKV,b,Port Lavaca (TX),28.645833,-96.708333,,0.025,,8358,298,157,,,,,L1020 U1021 6434s,87262,,, +516,MNE,,Bar R,c,Bar (BR),42.086111,19.075,,1,,1466,134,72,,????-????,1234567,,,19901101,,, +516,UKR,,UXO Sevastopol' Krymskoi R,c,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901473,,, +516,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900432,,, +516,CAN,,YWA,b,Petawawa (ON),45.895833,-77.291667,,0.025,,5799,299,131,,,,974,L1050 U1000 8.2s,DAID,85414,, +516,USA,,GCT,b,Guthrie Center (IA),41.6875,-94.458333,,0.025,,7116,305,144,,,,3,L1015 U1020 6.4s,85413,,, +517,HNG,,JBR,b,Jaszbereny (JNS),47.479167,19.875,,0.025,,1093,113,84,,,,0,L1021 U1018 8.5s,ID+4 gap,85418,, +517,ROU,,ARD,b,Arad (AR),46.1875,21.125,,0.025,,1253,116,86,,,,3,L980 U968 5.5s,ID+2.5 gap,85415,, +517,USA,,FN,b,Hillz Clinton (IA),41.770833,-90.375,,0.025,,6879,303,142,,,,957,L1080 U997 6063s,85416,,, +517,USA,,GKB,b,Norge Kansas City (MO),39.0625,-94.625,,0.025,,7344,303,146,,,,0,L1075 U1075 8.0s,85417,,, +517,USA,,GQ,b,Norge (MO),39.0625,-94.625,,0.025,,7344,303,146,,,,,L1071 ,87264,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,0230-0240,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,0630-0640,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,1030-1040,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,1430-1440,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,1830-1840,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,2230-2240,1234567,,,3800012,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0200-0210,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0310-0320,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0600-0610,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0710-0720,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1000-1010,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1110-1120,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1400-1410,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1510-1520,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1800-1810,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1910-1920,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,2200-2210,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,2310-2320,1234567,,,800004,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0300-0310,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0700-0710,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1100-1110,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1500-1510,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1900-1910,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,2300-2310,1234567,,,2000040,,, +518,G,,GCC Cullercoats R,,East Hartley (EN-TYW),55.0732,-1.463233,,1,,615,306,63,,,,,,2800039,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0040-0050,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0140-0150,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0440-0450,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0540-0550,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0840-0850,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0940-0950,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,1240-1250,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,1340-1350,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,1640-1650,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,1740-1750,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,2040-2050,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,2140-2150,1234567,,,2800040,,, +518,S,,SAA Stockholm R,,Gislvshammar (sn),55.488917,14.314222,,1,,640,51,63,,,,,,6800015,,, +518,NOR,,LGQ Rogaland R,,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,,,,,6300032,,, +518,S,,SAS Stockholm R,,Grimeton (ha),57.103056,12.385556,,1,,675,32,64,,,,,,6800016,,, +518,G,,GPK Portpatrick R,,Portpatrick (SC-DGA),54.844044,-5.124478,,1,,820,296,65,,,,,,2800045,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0000-0020,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0400-0420,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0800-0820,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1200-1220,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1600-1620,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,2000-2020,1234567,,,2500010,,, +518,I,,IQX Trieste R,,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,,,,,4000053,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0340-0350,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0740-0750,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1140-1150,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1540-1550,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1940-1950,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,2340-2350,1234567,,,2500011,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0240-0250,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0640-0650,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1040-1050,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1440-1450,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1840-1850,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,2240-2250,1234567,,,4100052,,, +518,I,,IQM,,Mondolfo (pu),43.75,13.1,,1,,1054,149,68,,,,,,4000052,,, +518,IRL,,EJK Valentia Coastguard R,,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,,,,,4100053,,, +518,HRV,,9AS Split R,,Split (st),43.501872,16.473711,,1,,1215,138,69,,,,,,3900004,,, +518,I,,ICH,,La Maddalena (ot),41.214722,9.4075,,1,,1233,168,69,,,,,,4000050,,, +518,NOR,,LFO rlandet R,,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,,,,,6300031,,, +518,EST,,ESA Tallinn R,,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,,,,,2400004,,, +518,FRO,,OXJ Trshavn R,,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,,,,,2700003,,, +518,I,,IDC Cagliari R,,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,,,,,4000046,,, +518,E,,EAR La Corua R,,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,,,,,2200031,,, +518,E,,EAV,,Cumbre del Sol (VAL-A),38.723258,0.161367,,1,,1565,200,73,,,,,,2200032,,, +518,NOR,,LGP Bod R,,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,,,,,6300030,,, +518,S,,SAH Stockholm R,,Bjurklubb (vb),64.461639,21.591833,,1,,1626,27,73,,,,,,6800017,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0010-0020,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0410-0420,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0810-0820,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1210-1220,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1610-1620,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,2010-2020,1234567,,,200010,,, +518,GRC,,SVK Kerkyra R,,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,,,,,3400036,,, +518,I,,ICI,,Sellia Marina (cz),38.905,16.743056,,1,,1671,147,74,,,,,,4000051,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,0020-0030,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,0420-0430,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,0820-0830,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,1220-1230,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,1620-1630,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,2020-2030,1234567,,,7900004,,, +518,I,,IQA Augusta R,,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,,,,,4000045,,, +518,BUL,,LZW Varna R,,Varna/Bolyartsi (vrn),43.068056,27.786111,,1,,1881,114,76,,,,,,1300003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,0220-0230,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,0620-0630,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,1020-1030,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,1420-1430,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,1820-1830,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,2220-2230,1234567,,,5800003,,, +518,POR,,CTV251 Monsanto R,,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,,,,,6500004,,, +518,UKR,,UTT Odesa R,,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,,,,,8100019,,, +518,E,,EAC Tarifa R,,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,,,,,2200030,,, +518,GRC,,SVL Limnos R,,Limnos (neg-les),39.866667,25.066667,,1,,1972,126,77,,,,,,3400035,,, +518,ISL,,TFA Reykjavk R,,Sauanes (ne),66.2465,-15.264172,,1,,1977,331,77,,,,,,4200016,,, +518,ISL,,TFA Reykjavk R,,Grindavk (sn),63.850969,-22.451883,,1,,2114,319,78,,,,,,4200017,,, +518,TUR,en,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,,,,,8000014,,, +518,TUR,en,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,,,,,8000018,,, +518,MRC,,CNP Casablanca R,,Casablanca (gcb),33.6,-7.633333,,1,,2346,214,80,,,,,,5900004,,, +518,RUS,,UHS,,Murmansk (MU),68.782778,32.981667,,1,,2319,27,80,,,,,,6700124,,, +518,UKR,,Kerch R,,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,,,,,8100018,,, +518,GRC,,SVH Iraklion Kritis R,,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,,,,,3400037,,, +518,NOR,,LGV Vard R,,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,,,,,6300029,,, +518,RUS,,UGE,,Arkhangelsk (AR),64.556278,40.550028,,1,,2380,41,81,,,,,,6700123,,, +518,LBY,,5A?,,Surt=Sirte (srt),31.2,16.59,,1,,2468,156,82,,,,,,4800006,,, +518,RUS,,UDN,,Novorossiysk (KD),44.599111,37.964417,,1,,2453,97,82,,,,,,6700126,,, +518,TUR,en,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,,,,,8000020,,, +518,TUR,en,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,,,,,8000016,,, +518,CYP,,5BA Cyprus R,,Nicosia (kyp-nic),35.048278,33.283628,,1,,2849,121,85,,,,,,1800001,,, +518,NOR,,LGS Bod R,,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,,,,,6300028,,, +518,EGY,,SUH Al-Iskandariya R,,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,,,,,2300011,,, +518,RUS,,UJB,,Astrakhan (AS),46.296694,47.997778,,1,,3046,85,87,,,,,,6700125,,, +518,AZR,,CTH Marinha Horta,,Horta (fai),38.529872,-28.628922,,1,,3086,255,88,,,,,,700014,,, +518,ISR,,4XO Haifa R,,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,,,,,4300010,,, +518,EGY,,SUZ Ismailia R,,Ismailia (ism),30.470311,32.36675,,1,,3205,129,89,,,,,,2300013,,, +518,CNR,,EAL Las Palmas R,,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,,,,,1500016,,, +518,GRL,,OXF,,Simiutaq (kuj-qqt),60.683333,-46.6,,1,,3297,308,90,,,,,,3500021,,, +518,UKR,,OI,b,Nezhin,51.104167,31.875,,0.025,,1753,84,91,,,,996,L315 U492 ,ID+1 gap,85422,, +518,GRL,,OXI,,Nuuk=Godthb/Telegrafoen (sms-nuk),64.070167,-52.012611,,1,,3530,315,92,,,,,,3500019,,, +518,EGY,,SUK Al-Qusair R,,Al-Qusayr=Quseir (bar),26.110889,34.280083,,1,,3714,130,94,,,,,,2300012,,, +518,GRL,,XXX,,Upernavik (qaa-upk),72.770833,-56.125,,1,,3681,331,94,,,,,,3500020,,, +518,IRN,,EQO,,Nowshahr (mzd),36.658333,51.501389,,1,,3894,98,96,,,,,,10800023,,, +518,CAN,,VOK Labrador Coastguard,,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,,,,,20109287,,, +518,CAN,,VON Saint John's Coastguard,,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,,,,,20109284,,, +518,CAN,,VFF Iqaluit Coastguard,,Iqaluit (NU),63.731389,-68.543167,,1,,4325,317,100,,,,,,20109282,,, +518,ARS,,HZH Jeddah R,,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0705-0715,1234567,,,10600011,,, +518,ARS,,HZH Jeddah R,,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1305-1315,1234567,,,10600011,,, +518,ARS,,HZH Jeddah R,,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1905-1915,1234567,,,10600011,,, +518,IRN,,EQM Bushehr R,,Bushehr (bus),28.962225,50.822794,,1,,4448,108,101,,,,,,10800022,,, +518,ARS,,HZG,,Dammam (shy),26.433333,50.1,,1,,4614,111,103,,,,,,10600010,,, +518,BHR,,A9M Bahrain R,,Hamala (shm),26.157167,50.47665,,1,,4662,111,104,,,,,,10900019,,, +518,CAN,,VCO Sydney Coastguard,,Glace Bay (NS),46.185739,-59.893275,,1,,4697,289,104,,,,,,20109281,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0010-0020,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0410-0420,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0810-0820,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1210-1220,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1610-1620,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,2010-2020,1234567,,,20109274,,, +518,IRN,,EQI Bandar-e Abbas R,,Bandar-e Abbas (hrg),27.161022,56.225378,,1,,4952,104,107,,,,,,10800021,,, +518,CAN,,VAR9 Saint John Coastguard,,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,,,,,20109286,,, +518,OMA,,A4M Wattayah R,,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,,,,,11700002,,, +518,KAZ,,AR,b,Arlakyk (qos),50.3125,66.958333,,0.025,,4098,68,114,,,,,,85419,,, +518,USA,,NMF USCG Boston,,Camp Edwards (MA),41.709833,-70.498353,,1,,5674,291,114,,,,,,20016121,,, +518,USA,,NMN USCG Chesapeake,,Pungo (VA),36.729167,-76.008333,,5,,6397,290,114,,,,,,20016119,,, +518,PAK,,ASK Karachi R,,Karachi (shd),24.851944,67.0425,,1,,5868,97,116,,,,,,31500028,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,0010-0020,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,0410-0420,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,0810-0820,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,1210-1220,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,1610-1620,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,2010-2020,1234567,,,36000002,,, +518,CAN,,VBR/XMJ329,,Barrow Bay (ON),44.937111,-81.233467,,1,,6102,300,118,,,,,,20109283,,, +518,CAN,,VBA/XLJ895 Thunder Bay Coastguard,,Thunder Bay (ON),48.563514,-88.656311,,1,,6253,308,120,,,,,,20109285,,, +518,IND,,VWB Mumbai R,,Mumbai=Bombay (MH),19.083239,72.834033,,1,,6744,96,124,,,,,,32200039,,, +518,USA,,NMA USCG Miami,,Miami (FL),25.626225,-80.383411,,5,,7577,284,126,,,,,,20016123,,, +518,USA,,NME USCG Savannah,,Savannah (GA),32.139625,-81.696822,,1,,7126,290,128,,,,,,20016122,,, +518,RUS,,UIB,,Magadan (MA),59.683333,150.15,,1,,7167,19,129,,,,,,6700127,,, +518,PTR,,NMR USCG San Juan,,Isabela (PR),18.466683,-67.071819,,1,,7277,269,130,,,,,,20016124,,, +518,CAN,,VAJ Prince Rupert Coastguard,,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,,,,,20109288,,, +518,ALS,,NOJ USCG Kodiak,,Kodiak/Buskin River (AK),57.781606,-152.537594,,1,,7647,348,133,,,,,,20016112,,, +518,ALS,,NOJ USCG Kodiak,,Kodiak/Buskin River (AK),57.781606,-152.537594,,1,,7647,348,133,,,,,,20016113,,, +518,IND,,VWM Chennai R,,Chennai=Madras (TN),13.082778,80.287222,,1,,7765,95,135,,,,,,32200038,,, +518,USA,,NMG USCG New Orleans,,Belle Chasse (LA),29.884656,-89.945611,,1,,7836,294,135,,,,,,20016120,,, +518,CAN,,XLK835 Tofino Coastguard,,Amphitrite Point (BC),48.925478,-125.540314,,1,,7897,329,136,,,,,,20109289,,, +518,CUW,,PJC,,Curaao (cao),12.173197,-68.864919,,1,,7939,266,136,,,,,,35000001,,, +518,RUS,,UBE2,,Petropavlovsk (KM),53.247778,158.419472,,1,,8014,17,137,,,,,,6700128,,, +518,CHN,,XSZ Dalian R,,Dalian (LN),38.845244,121.518056,,1,,8120,48,138,,,,,,36201119,,, +518,USA,,NMW USCG Astoria,,Astoria (OR),46.203989,-123.955639,,1,,8104,327,138,,,,,,20016116,,, +518,RUS,,UFO Kholmsk R,,Kholmsk (SL),47.023556,142.045056,,1,,8212,30,139,,,,,,6700129,,, +518,RUS,,UIK,,Vladivostok (PM),43.381472,131.899861,,1,,8180,38,139,,,,,,6700130,,, +518,KRE,,HMH,,Hungnam (han),39.833172,127.6856,,1,,8327,43,140,,,,,,31700006,,, +518,KRE,,HMZ,,Pyongyang (pyo),38.916667,125.716667,,1,,8320,45,140,,,,,,31700005,,, +518,NMB,,V5W,,Walvis Bay (ego),-23.05665,14.624333,,1,,8396,172,141,,,,,,20200001,,, +518,J,,JNL,,Otaru (hok),43.2,141,,1,,8556,32,142,,,,,,31400031,,, +518,CHN,,XSG Shanghai R,,Shanghai (SH),31.108889,121.544167,,1,,8826,52,143,,,,,,36201118,,, +518,J,,JNX,,Kushiro (hok),42.983333,144.383333,,1,,8697,30,143,,,,,,31400030,,, +518,USA,,NMC USCG Point Reyes,,Bolinas (CA),37.925739,-122.734056,,1,,8859,322,143,,,,,,20016118,,, +518,VTN,,XVG Hải Phng R,,Hải Phng (hpg),20.850817,106.733811,,1,,8867,69,143,,,,,,33200014,,, +518,CHN,,XSL,,Fuzhou (FJ),26.028544,119.305469,,1,,9167,57,144,,,,,,36201117,,, +518,CHN,,XSQ Guangzhou R,,Guangzhou (GD),23.15,113.483333,,1,,9084,63,144,,,,,,36201116,,, +518,HKG,,VRX Hong Kong R,,Cape d'Aguillar (sou),22.209167,114.256111,,1,,9215,63,144,,,,,,33800007,,, +518,J,,JNR,,Moji (kyu-fuk),33.95,130.966667,,1,,9037,44,144,,,,,,31400033,,, +518,THA,,HSA Bangkok R,,Phetchaburi (pbr),13.024444,100.019733,,1,,9111,79,144,,,,,,32900027,,, +518,USA,,GCT,b,Guthrie Center (IA),41.6875,-94.458333,,0.025,,7116,305,144,,,,3,L1015 U1020 6.4s,85421,,, +518,USA,,NMQ,,Cambria (CA),35.524297,-121.061922,,1,,9019,319,144,,,,,,20016117,,, +518,AFS,,ZSD Durban R,,Durban (KZN),-29.804833,30.815633,,1,,9414,159,145,,,,,,20300025,,, +518,CHN,,XSI,,Sanya (HA),18.232222,109.495833,,1,,9274,69,145,,,,,,36201115,,, +518,J,,JGC,,Yokohama (kan-kgw),35.433333,139.633333,,1,,9274,37,145,,,,,,31400032,,, +518,MAU,,3BM Mauritius R,,Port Louis (mau),-20.167089,57.478161,,1,,9432,133,145,,,,,,20800002,,, +518,VTN,,XVT Đ Nẵng R,,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,,,,,33200015,,, +518,AFS,,ZSC Cape Town R,,Klipheuwel (WC),-33.685128,18.712961,,1,,9615,170,146,,,,,,20300023,,, +518,AFS,,ZSQ,,Port Elizabeth (EC),-34.036722,25.555833,,1,,9759,164,146,,,,,,20300024,,, +518,J,,JNB,,Naha (kyu-oki),26.15,127.766667,,1,,9619,50,146,,,,,,31400034,,, +518,MLA,,9MG,,Penang (pen),5.425,100.403056,,1,,9803,84,146,,,,,,32800006,,, +518,VTN,,XVS Hồ Ch Minh R,,Hồ Ch Minh (hcm),10.703317,106.729139,,1,,9762,75,146,,,,,,33200013,,, +518,EQA,,HCG,,Guayaquil (gua),-2.283333,-80.016667,,1,,9964,266,147,,,,,,32600009,,, +518,PHL,,DZS,,Manila (ncr),14.583333,121.05,,1,,10320,62,148,,,,,,33300024,,, +518,PRU,,OBY2,,Paita (piu),-5.083333,-81.116667,,1,,10285,265,148,,,,,,37000056,,, +518,SNG,,9VG,,Singapore (sw),1.333333,103.7,,1,,10387,83,148,,,,,,33100004,,, +518,PRU,,OBC3,,Callao,-12.5,-77.15,,1,,10669,257,149,,,,,,37000055,,, +518,PRU,,OBF4,,Matarani (are),-17.016667,-72.016667,,1,,10730,251,149,,,,,,37000054,,, +518,MLA,,9WH21,,Sandakan (sbh),5.895886,118.00305,,1,,10927,69,150,,,,,,32800008,,, +518,MLA,,9WW21,,Miri (swk),4.438,114.020889,,1,,10801,73,150,,,,,,32800007,,, +518,CHL,,CBA Antofagasta R,,Antofagasta (AN),-23.65,-70.4,,1,,11214,245,151,,,,,,36800001,,, +518,INS,,PKX Jakarta R,,Jakarta (JK),-6.116667,106.866667,,1,,11257,85,151,,,,,,35400117,,, +518,URG,,CWM27,,La Paloma (ro),-34.666667,-54.15,,1,,11294,227,151,,,,,,31200004,,, +518,ARG,,L2B,,Buenos Aires (df),-34.6,-58.366667,,1,,11504,230,152,,,,,,33000037,,, +518,ARG,,L2P,,Mar del Plata (ba),-38.05,-57.533333,,1,,11776,227,153,,,,,,33000036,,, +518,GUM,,NRV USCG Guam,,Barrigada (GU),13.47445,144.844408,,1,,11703,42,153,,,,,,20016114,,, +518,HWA,,NMO USCG Honolulu,,Maili/Tower Drive (HI),21.437019,-158.143214,,1,,11700,345,153,,,,,,20016115,,, +518,ARG,,L2I,,Baha Blanca (ba),-38.716667,-62.1,,1,,12070,230,154,,,,,,33000035,,, +518,CHL,en,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0410-0420,1234567,,,36800002,,, +518,CHL,en,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1210-1220,1234567,,,36800002,,, +518,CHL,en,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2010-2020,1234567,,,36800002,,, +518,CHL,es,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0010-0020,1234567,,,36800002,,, +518,CHL,es,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0810-0820,1234567,,,36800002,,, +518,CHL,es,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1610-1620,1234567,,,36800002,,, +518,INS,,PKF,,Makassar (SN-mak),-5.1,119.433333,,1,,12012,75,154,,,,,,35400118,,, +518,CHL,,CBT Talcahuano R,,Talcahuano (BI),-36.715056,-73.108,,1,,12506,239,155,,,,,,36800003,,, +518,INS,,PKE,,Ambon (MA-amb),-3.7,128.2,,1,,12448,66,155,,,,,,35400119,,, +518,ARG,,L2W,,Comodoro Rivadavia (ch),-45.85,-67.416667,,1,,12961,228,157,,,,,,33000034,,, +518,CHL,,CBP Puerto Montt R,,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,,,,,36800004,,, +518,INS,,PNK,,Jayapura (PA-jyp),-2.516667,140.716667,,1,,13076,54,157,,,,,,35400120,,, +518,ARG,,L3D,,Ro Gallegos (sc),-51.616667,-69.216667,,1,,13521,225,159,,,,,,33000033,,, +518,ARG,,L3K,,Ushuaia (tf),-54.8,-68.3,,1,,13729,222,159,,,,,,33000032,,, +518,CHL,,CBM Magallanes R,,Punta Arenas (MA),-52.948111,-71.056944,,1,,13714,225,159,,,,,,36800005,,, +518,PAQ,,CBY Isla de Pascua R,,Hanga Roa (vlp),-27.15,-109.416667,,1,,14093,272,161,,,,,,21700001,,, +519,UKR,,UTT Odesa R,c,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,????-????,1234567,,,19901469,,, +519,CME,,TJC5 Douala R,c,Douala,4.033333,9.7,,1,,5355,176,111,,????-????,1234567,,,19900415,,, +519,MDG,,5RS Toamasina R,c,Toamasina=Tamatave (toa),-18.166667,49.383333,,1,,8849,139,143,,????-????,1234567,,,19901065,,, +520,POL,,NW,b,Leczyca,51.979167,19.208333,,0.025,,874,86,82,,,,3,L399 U400 4.5s,ID+2.5 gap,85434,, +520,HNG,,BS,b,Budars (Pes),47.4375,18.958333,,0.025,,1038,115,83,,,,992,L1025 U1011 7.5s,ID+5 gap,85428,, +520,BLR,,OM,b,Ross (HR),53.3125,24.375,,0.025,,1214,77,85,,,,3,L1015 U1020 15.0s,IDx2 + 6 gap,85436,, +520,ROU,,B,b,Bacau (BC),46.5625,26.875,,0.025,,1599,105,89,,,,43,L1000 U1061 ,ID+2 gap,85426,, +520,RUS,,DO,b,Shaykovka,54.395833,34.625,,0.025,,1881,71,92,,,,,,86728,,, +520,RUS,,OO,b,Shaykovka,54.229167,34.375,,0.025,,1866,72,92,,,,928,L550 U1026 7.5s,IDx2 + 3 gap,85438,, +520,RUS,,YUR,b,Shaykovka,54.229167,34.375,,0.025,,1866,72,92,,,,0,L1018 U900 ,85439,,, +520,RUS,,O,b,Ortol,53.020833,35.791667,,0.025,,1975,75,93,,,,,L1039 U1018 ,ID+6 gap,85435,, +520,GEO,,DF,b,Mukhrani (mmt),41.895833,44.541667,,0.025,,3064,96,104,,,,153,L380 U380 30.0s,IDx2 + 21 gap,85429,, +520,RUS,,AB,b,Kumertau,52.895833,55.791667,,0.025,,3277,69,106,,,,,U918 ,86727,,, +520,NIG,,5OZ Port Harcourt R,c,Port Harcourt (riv),4.769444,7.055556,,1,,5264,179,110,,????-????,1234567,,,19901134,,, +520,CAN,,F9,b,Chatham (Miramichi) (NB),47.020833,-65.458333,,0.12,,4999,294,116,,,,,U404 10563s,DAID,85430,, +520,UZB,,M,b,Samarqand (saq),39.6875,66.958333,,0.025,,4734,82,120,,,,,L1025 U1027 ,85433,,, +520,USA,,BF,b,Seattle (Boeing Field) (WA),47.645833,-122.375,,0.4,,7905,326,140,,,,,,87265,,, +520,B,,BHZ,b,Belo Horizonte (MG),-19.854167,-43.958333,,1,,9367,227,145,,,,0,L1018 U1012 7012s,Fast ID,85427,, +520,USA,,IQS,b,Sallisaw (OK),35.395833,-94.791667,,0.025,,7662,301,150,,,,3,L1010 U1016 5.8s,85431,,, +521,ROU,,BSW,b,Bucuresti / Baneasa (BU),44.479167,25.958333,,0.025,,1669,113,90,,,,982,L1021 U1028 4.5s,ID+1 gap,85440,, +521,RUS,,PO,b,Pretoriya,52.270833,54.291667,,0.025,,3203,70,105,,,,1,L398 U403 ,IDx2 + 19 gap,85446,, +521,USA,,GF,b,Hogaf Cleveland (OH),41.5625,-81.458333,,0.025,,6368,297,137,,,,999,L1025 U1022 8.7s,85442,,, +521,USA,,INE,b,Konna Missoula (MT),47.104167,-114.375,,0.4,,7633,321,137,,,,961,L1071 U996 8.0s,85444,,, +521,USA,,FEU,b,Arnold (KY),38.229167,-84.791667,,0.025,,6831,297,141,,,,,L1005 U1010 5.5s,87266,,, +521,USA,,TVX,b,Greencastle (IN),39.729167,-86.791667,,0.025,,6832,299,141,,,,976,L1050 U1005 4.9s,85448,,, +521,USA,,RPK,b,Middlesboro-Bell (KY),36.604167,-83.708333,,0.025,,6893,295,142,,,,,L1006 U1008 6.62s,86837,,, +521,USA,,GM,b,Judky Greenville (SC),34.770833,-82.375,,0.025,,6957,292,143,,,,955,L1078 U990 6136s,85443,,, +521,USA,,ORC,b,Orange City (IA),42.979167,-96.041667,,0.025,,7097,307,144,,,,19,L1045 U1029 8.3s,85445,,, +521,USA,,TO,b,Biloy Topeka (KS),39.104167,-95.708333,,0.025,,7402,304,147,,,,951,L1080 U986 5886s,85447,,, +521,USA,,DWH,b,David Hooks Houston (TX),30.145833,-95.541667,,0.025,,8157,298,155,,,,511,L~1030 U1021 6.08s,85441,,, +521,FJI,,3DP Suva R,c,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,????-????,1234567,,,19900535,,, +521.5,RUS,,UDK Murmansk R,c,Murmansk (MU),68.966667,33.083333,,1,,2335,27,80,,????-????,1234567,-521.5,,19901353,,, +521.5,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,-521.5,,19901281,,, +522,HNG,,P,b,Nyregyhza (SSB),48.020833,21.708333,,0.025,,1180,107,85,,,,7,L1010 U1023 3.0s,ID+1 gap,85451,, +522,ARS,,HZY Ras Tannurah R,c,Ras Tannurah (shy),26.707056,50.10025,,1,,4591,111,103,,????-????,1234567,,,19900074,,, +522,RUS,,DW,b,Vorkuta (KO),67.479167,63.958333,,0.025,,3471,39,108,,,,105,L1007 U1003 15.0s,IDx2,85449,, +522,RUS,,KZ,b,Vorkuta (KO),67.479167,63.958333,,0.025,,3471,39,108,,,,,L1010 15.2s,IDx2,85450,, +522.5,CHN,,XSG21 Shanghai R,c,Shanghai (SH),31.108889,121.544167,,1,,8826,52,143,,????-????,1234567,-522.5,,19900391,,, +523,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901025,,, +523,RUS,,BK,b,Lunino (PZ),53.5625,45.208333,,0.025,,2579,71,99,,,,3,L380 U400 ,IDx2 + 6 gap,85452,, +523,USA,,JJH,b,Johnstown (NY),42.979167,-74.291667,,0.025,,5823,294,131,,,,15,L1021 U1048 5.72s,85453,,, +523,TWN,,XSY Hualien R,c,Hualien (HL),23.983333,121.6,,1,,9485,56,145,,????-????,1234567,,,19901449,,, +523.5,ROU,,YQI Constanţa R,c,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-523.5,,19901328,,, +524,TUR,,Izmir Turk Radyo,c,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,????-????,1234567,,,19901439,,, +524,TUR,,TAR Zonguldak Turk R,c,Zonguldak (kdz-zon),41.45,31.758333,,1,,2247,112,79,,????-????,1234567,,,19901446,,, +524,TUR,,Canakkale R,c,Canakkale,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901433,,, +524,TUR,,Trabzon R,c,Trabzon,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901445,,, +524,BLR,,UU,b,Vitsebsk/Vostochny (VI),55.145833,30.458333,,0.025,,1613,68,89,,,,,L1006 U1011 8.0s,85461,,, +524,BLR,,WS,b,Vitsebsk/Vostochny (VI),55.104167,30.291667,,0.025,,1602,69,89,,,,,L1020 ,85462,,, +524,RUS,,LV,b,Klin (MO),56.354167,36.708333,,0.025,,2007,64,93,,,,,L1020 ,85457,,, +524,RUS,,PT,b,Klin (MO),56.354167,36.708333,,0.025,,2007,64,93,,,,,L1000 ,IDx2,85459,, +524,COG,,TNA Pointe-Noire R,c,Pointe-Noire,-4.794444,11.836111,,1,,6348,174,120,,????-????,1234567,,,19900420,,, +524,KEN,,5ZF Mombasa R,c,Mombasa (coa),-4.066667,39.672222,,1,,6989,142,127,,????-????,1234567,,,19900938,,, +524,USA,,HEH,b,Newark (OH),40.020833,-82.458333,,0.025,,6547,297,138,,,,,U1019 4168s,85455,,, +524,USA,,AJG,b,Mt Carmel (IL),38.604167,-87.708333,,0.025,,6977,299,143,,,,2,L1016 U1020 7259s,85454,,, +524,USA,,UOC,b,Hawkeye Iowa City (IA),41.645833,-91.541667,,0.025,,6955,303,143,,,,0,L1020 U1020 ,85460,,, +524,ALS,,MNL,b,Mineral Creek Valdez (AK),61.104167,-146.375,,0.025,,7197,346,145,,,,965,L1066 U996 ,85458,,, +524,USA,,HRD,b,Hardin County Kountze / Silsbee (TX),30.354167,-94.291667,,0.025,,8064,297,154,,,,998,L1032 U1015 5.91s,85456,,, +524.5,AZR,,CTH Marinha Horta,c,Horta (fai),38.529872,-28.628922,,1,,3086,255,88,,????-????,1234567,-524.5,,19900227,,, +525,POR,,CTV Algs Rnaval,c,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,????-????,1234567,,,19901292,,, +525,POL,,WRW,b,Wroclaw / Strachowice,51.0625,16.958333,,0.025,,737,95,80,,,,8,L1011 U1015 ,ID+2.5 gap,85470,, +525,UKR,,CH,b,Chernyakhov,50.4375,28.708333,,0.025,,1556,88,89,,,,991,L963 U989 30.0s,IDx2 + 22 gap,85463,, +525,RUS,,PL,b,Sankt-Peterburg/Pulkovo (SP),59.770833,30.375,,0.025,,1705,51,90,,,,,L398 10.0s,ID+6.5 gap,85467,, +525,RUS,,WN,b,Poliarny (MU),66.354167,112.041667,,0.025,,5444,31,127,,,,,,85469,,, +525,ALS,,ICW,b,Ice Pool Nenana (AK),64.5625,-149.041667,,0.025,,6871,348,142,,,,995,L1027 U1019 8.5s,85465,,, +525.5,UKR,,USO6 Izmail R,c,Izmail (OD),45.345822,28.875161,,1,,1802,106,75,,????-????,1234567,-525.5,,19901458,,, +526,XOE,,AES,b,Atlantic Rotterdam,55.604167,4.791667,,0.025,,403,345,77,,,,,L1035 U1043 ,86733,,, +526,XOE,,MKE,b,Maersk Enhancher / Tyra Sea Platform,55.854167,4.541667,,0.025,,434,344,77,,,,12,L385 U409 ,ID+2 gap,85473,, +526,BUL,,O,b,Gorna Oryahovitsa (vlt),43.148611,25.741389,,0.025,,1750,117,90,,,,,U986 ,ID+5s gap,85474,, +526,BUL,,WR,b,Varna (vrn),43.229167,27.875,,0.025,,1876,113,92,,,,979,L1024 U982 ,ID+8 gap,85477,, +526,BAH,,ZLS,b,Stella Maris, Long Island,23.5625,-75.291667,,0.025,,7409,279,147,,,,975,L1040 U990 10.2s,85478,, +526,USA,,OJ,b,Furor Olathe (KS),38.9375,-94.708333,,0.025,,7359,303,147,,,,960,L1077 U1002 7.0s,85475,,, +526,USA,,RWE,b,Camp Roberts (CA),35.895833,-120.708333,,0.025,,8968,319,160,,,,957,L1088 U1007 8.0s,85476,,, +527,RUS,,TE,b,Terbuny (LI),52.145833,38.291667,,0.025,,2159,77,95,,,,996,L1015 U1007 ,IDx3 + 12 gap,85480,, +527,RUS,,PT,b,Ufa (BA),54.604167,55.791667,,0.025,,3221,65,105,,,,,,85479,,, +528,RUS,,UH,b,Tikhoretsk (KD),45.854167,40.125,,0.025,,2531,92,98,,,,996,L1037 ,ID+8 gap,85482,, +529,BUL,,SF,b,Sofia (sof),42.6875,23.291667,,0.025,,1640,123,89,,,,,,85485,,, +529,ALS,,SQM,b,Sumner Strait Level Island (AK),56.479167,-133.125,,0.4,,7386,337,135,,,,0,L1037 U1035 ?s,85486,,, +529,USA,,LYQ,b,Morristown (TN),36.1875,-83.375,,0.1,,6906,294,136,,,,0,L1021 U1020 24.3s,NDB,85484,, +529,ALS,,FDV,b,Fort Davis (AK),64.479167,-165.291667,,0.025,,7031,356,143,,,,,L1030 ,85483,,, +530,TCA,es,R Visin Cristiana,,South Caicos (scs),21.563889,-71.497222,,40,,7318,275,114,,,,11,,46792,,, +530,CAN,xx,CIAO,,Brampton (ON),43.590278,-79.888611,,0.25,,6121,298,124,,,,9989,,36114,,, +530,CUB,es,R Enciclopedia,,Villa Mara (ch),23.1,-82.283333,,10,,7915,284,126,,,,0,,31600015,,, +530,CAN,en,CKML,,Chalk River (ON),46.044444,-77.393056,,0.03,,5794,299,130,,,,,,35964,,, +530,CTR,,TICAL R Sinfonola,,Cartago (ctg),9.866667,-83.916667,,18,,9166,276,132,,,,,,40573,,, +530,USA,en,WNUE384,,Concord (NH),43.2,-71.533333,,0.01,,5635,293,133,,,,,,20010391,,, +530,CUB,es,R Rebelde,,Guantnamo/CTOM3 (gu),20.110272,-75.218842,,1,,7693,276,134,,,,0,,31600075,,, +530,USA,en,WNUE384,,Tyngsborough (NH),42.666667,-71.416667,,0.01,,5665,292,134,,,,,,20010346,,, +530,USA,en,WPHG709,,Auburn/3 Bancroft St. (MA),42.202028,-71.826194,,0.01,,5723,292,134,,,,,,20010058,,, +530,USA,en,WPHG709,,Charlton (MA),42.133972,-72.041194,,0.01,,5742,292,134,,,,,,20010057,,, +530,USA,en,WPHG709,,Westborough (MA),42.262306,-71.567,,0.01,,5703,292,134,,,,,,20010059,,, +530,USA,en,WPHG709,,Weston (MA),42.33925,-71.263389,,0.01,,5678,292,134,,,,,,20010060,,, +530,USA,en,WPSK539,,Boston (MA),42.366667,-71.066667,,0.01,,5664,292,134,,,,,,20010177,,, +530,USA,en,WQFV858,,Boston (MA),42.377639,-71.06,,0.01,,5662,292,134,,,,,,20010138,,, +530,USA,en,WQFV858,,East Boston/Logan Int.Airport (MA),42.366917,-71.027083,,0.01,,5661,292,134,,,,,,20010154,,, +530,USA,en,WQFV858,,Roxbury (MA),42.339167,-71.064722,,0.01,,5665,292,134,,,,,,20010153,,, +530,USA,en,WPBX693,,New London/111 Union St. (CT),41.365111,-72.093694,,0.01,,5800,291,135,,,,,,20010321,,, +530,USA,en,KPD627,,Harriman (NY),41.3125,-74.127361,,0.01,,5933,293,136,,,,,,20010347,,, +530,USA,en,WNYG610,,Hillburn (NY),41.126472,-74.16625,,0.01,,5949,292,136,,,,,,20010340,,, +530,USA,en,WNYG610,,Spring Valley (NY),41.098417,-74.054306,,0.01,,5944,292,136,,,,,,20010330,,, +530,USA,en,WNYG610,,Suffern (NY),41.116472,-74.112361,,0.01,,5946,292,136,,,,,,20010394,,, +530,USA,en,WNYG610,,Tarrytown/Nysta Toll Plz 9 (NY),41.065083,-73.864861,,0.01,,5934,292,136,,,,,,20010374,,, +530,USA,en,WPFD964,,White Plains (NY),41.025111,-73.72875,,0.01,,5929,292,136,,,,,,20010337,,, +530,USA,en,WPKW701,,Mamoroneck (NY),40.962611,-73.735694,,0.01,,5934,292,136,,,,,,20010016,,, +530,USA,en,WPKW701,,New York (NY),40.884556,-73.824028,,0.01,,5945,292,136,,,,,,20010017,,, +530,USA,en,WPKW701,,Yonkers (NY),40.977333,-73.85875,,0.01,,5940,292,136,,,,,,20010018,,, +530,USA,en,KNNI707,,Elmwood Park (NJ),40.899833,-74.127639,,0.01,,5963,292,137,,,,,,20010275,,, +530,USA,en,KNNI707,,Paramus (NJ),40.929,-74.07125,,0.01,,5957,292,137,,,,,,20010274,,, +530,USA,en,KNNI707,,Parsippany (NJ),40.859833,-74.367361,,0.01,,5981,292,137,,,,,,20010277,,, +530,USA,en,KNNI707,,Parsippany (NJ),40.8665,-74.441833,,0.01,,5985,292,137,,,,,,20010278,,, +530,USA,en,KNNI707,,Wayne (NJ),40.897611,-74.245694,,0.01,,5971,292,137,,,,,,20010276,,, +530,USA,en,KNNS693,,New Brunswick (NJ),40.519278,-74.432361,,0.01,,6010,292,137,,,,,,20010318,,, +530,USA,en,WNDF923,,Newark/Airport (NJ),40.694,-74.18625,,0.01,,5982,292,137,,,,,,20010312,,, +530,USA,en,WNYG610,,West Nyack/201 N Rt 303 (NY),41.100917,-74.952389,,0.01,,6000,293,137,,,,,,20010342,,, +530,USA,en,WPAS759,,Woodbridge (NJ),40.55,-74.283333,,0.01,,5999,292,137,,,,,,20010343,,, +530,USA,en,WPBG740,,Harrisburg (PA),41.437583,-75.616306,,0.01,,6017,294,137,,,,,,20010327,,, +530,USA,en,WPNY936,,Moosic (PA),41.358417,-75.686306,,0.01,,6028,294,137,,,,,,20010041,,, +530,USA,en,WPRT265,,Harrisburg (PA),41.227778,-75.870833,,0.01,,6049,294,137,,,,,,20010181,,, +530,USA,en,WPFJ882,,Ocean City (MD),39.960989,-75.142111,,0.01,,6097,292,138,,,,,,20010345,,, +530,USA,en,WPGX842,,Philadelphia (PA),39.910667,-75.165167,,0.01,,6102,292,138,,,,,,20010066,,, +530,USA,en,WPHD215,,Cherry Hill (NJ),39.933333,-75.033333,,0.01,,6092,292,138,,,,,,20010065,,, +530,USA,en,WPRS936,,Harrisburg (PA),40.943056,-76.024444,,0.01,,6079,293,138,,,,,,20010182,,, +530,USA,en,WPSQ343,,Vineland (NJ),39.448889,-75.061111,,0.01,,6130,291,138,,,,,,20010176,,, +530,USA,en,KNJX865,,Baltimore (MD),39.283333,-76.616667,,0.01,,6241,292,139,,,,,,20010279,,, +530,USA,en,WNAL786,,Kent Narrows (MD),38.966667,-76.233333,,0.01,,6240,292,139,,,,,,20010313,,, +530,USA,en,WNHC787,,Saint Ignace (MI),45.866667,-84.733333,,0.01,,6237,303,139,,,,,,20010309,,, +530,USA,en,WNQA285,,Piney Grove (MD),39.183333,-76.083333,,0.01,,6215,292,139,,,,,,20010228,,, +530,USA,en,WNQA286,,Severna Park (MD),39.014556,-76.408861,,0.01,,6248,292,139,,,,,,20010227,,, +530,USA,en,WNQA288,,Denton (MD),38.883333,-75.833333,,0.01,,6221,291,139,,,,,,20010225,,, +530,USA,en,WNQA290,,Easton (MD),38.797056,-76.0605,,0.01,,6242,291,139,,,,,,20010223,,, +530,USA,en,WNRZ656,,Dover (DE),39.15,-75.516667,,0.01,,6181,291,139,,,,,,20010261,,, +530,USA,en,WNVP741,,Ellicott City (MD),39.302056,-76.82525,,0.01,,6252,292,139,,,,,,20010382,,, +530,USA,en,WNVP742,,Baltimore (MD),39.497056,-76.668306,,0.01,,6228,292,139,,,,,,20010369,,, +530,USA,en,WNVY509,,Bradshaw (MD),39.427056,-76.388861,,0.01,,6215,292,139,,,,,,20010375,,, +530,USA,en,WPDX548,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010362,,, +530,USA,en,WPEA856,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010360,,, +530,USA,en,WPEP712,,Elkton (MD),39.638722,-75.804944,,0.01,,6163,292,139,,,,,,20010358,,, +530,USA,en,WPEW742,,Reisterstown (MD),39.473722,-76.840528,,0.01,,6240,293,139,,,,,,20010356,,, +530,USA,en,WPHG707,,Oxon Hill (MD),38.961022,-75.427889,,0.01,,6190,291,139,,,,,,20010061,,, +530,USA,en,WPUN696,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010216,,, +530,USA,en,WPUN745,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010214,,, +530,USA,en,WPUN745,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010215,,, +530,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010133,,, +530,USA,en,WQHB708,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010147,,, +530,USA,en,WQIN410,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010140,,, +530,USA,en,WQIN410,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010141,,, +530,USA,en,KNIC273,,Rockville (MD),39.077656,-77.164972,,0.01,,6291,292,140,,,,,,20010284,,, +530,USA,en,WNAL785,,Baltimore (MD),38.960986,-77.493889,,0.01,,6321,293,140,,,,,,20010296,,, +530,USA,en,WNQA284,,Cumberland (MD),39.65675,-78.748083,,0.01,,6346,294,140,,,,,,20010229,,, +530,USA,en,WNQA287,,Myersville (MD),39.5,-77.566667,,0.01,,6284,293,140,,,,,,20010226,,, +530,USA,en,WNQA289,,Queenstown (MD),38.95,-76.966667,,0.01,,6288,292,140,,,,,,20010224,,, +530,USA,en,WNQI569,,Berwyn (MD),39.061778,-76.92025,,0.01,,6277,292,140,,,,,,20010258,,, +530,USA,en,WNRZ820,,Dargan (MD),39.375667,-77.723889,,0.01,,6304,293,140,,,,,,20010245,,, +530,USA,en,WNRZ820,,Downsville (MD),39.55,-77.8,,0.01,,6295,293,140,,,,,,20010260,,, +530,USA,en,WNRZ820,,Four Locks (MD),39.110389,-77.194361,,0.01,,6290,292,140,,,,,,20010259,,, +530,USA,en,WNSL337,,Hancock (MD),39.7,-78.183333,,0.01,,6308,294,140,,,,,,20010254,,, +530,USA,en,WNSL338,,Williamsport (MD),39.410944,-77.543611,,0.01,,6290,293,140,,,,,,20010253,,, +530,USA,en,WNVY506,,Dorsey (MD),39.195944,-76.764417,,0.01,,6257,292,140,,,,,,20010378,,, +530,USA,en,WNVY507,,Rockville (MD),39.016222,-77.118861,,0.01,,6293,292,140,,,,,,20010377,,, +530,USA,en,WNVY508,,Largo (MD),38.917889,-76.852472,,0.01,,6283,292,140,,,,,,20010400,,, +530,USA,en,WNVY510,,Frederick (MD),39.405389,-77.433583,,0.01,,6283,293,140,,,,,,20010381,,, +530,USA,en,WNXE972,,Gillespie Gap (NC),39.294322,-77.211028,,0.01,,6277,293,140,,,,,,20010393,,, +530,USA,en,WPED444,,Cambridge (MD),38.554278,-75.994389,,0.01,,6256,291,140,,,,,,20010359,,, +530,USA,en,WPEZ462,,Washington/Nat. Airport (DC),38.856222,-77.046083,,0.01,,6300,292,140,,,,,,20010350,,, +530,USA,en,WPGS990,,Bowie (MD),38.960389,-76.689694,,0.01,,6270,292,140,,,,,,20010071,,, +530,USA,en,WPHZ553,,Thurmont (MD),39.652611,-77.406667,,0.01,,6263,293,140,,,,,,20010105,,, +530,USA,en,WPMN714,,Marysville (MI),42.916667,-82.483333,,0.01,,6327,299,140,,,,,,20010042,,, +530,USA,en,WPQE998,,Dulles/Int. Aiport (VA),38.962889,-77.440278,,0.01,,6317,293,140,,,,,,20010186,,, +530,USA,en,WPSG988,,Youngstown (OH),41.1,-80.65,,0.01,,6354,296,140,,,,,,20010179,,, +530,USA,en,KNJR837,,Norfolk (VA),36.83875,-76.287722,,0.01,,6406,290,141,,,,,,20010270,,, +530,USA,en,KNJR838,,Chesapeake (VA),36.736806,-76.241333,,0.01,,6411,290,141,,,,,,20010282,,, +530,USA,en,KNJR839,,Hampton (VA),37.040417,-76.393833,,0.01,,6397,290,141,,,,,,20010294,,, +530,USA,en,KNJR840,,Virginia Beach (VA),36.810972,-76.218,,0.01,,6404,290,141,,,,,,20010280,,, +530,USA,en,WNQM849,,Canton/2141 George Halas Dr (OH),40.8,-81.383333,,0.01,,6422,297,141,,,,,,20010233,,, +530,USA,en,WNZZ263,,Virginia Beach (VA),36.847917,-75.986583,,0.01,,6386,290,141,,,,,,20010336,,, +530,USA,en,WPBM597,,New Market (VA),38.664,-78.669194,,0.01,,6417,293,141,,,,,,20010326,,, +530,USA,en,WPDF247,,Richmond (VA),37.55,-77.466667,,0.01,,6427,291,141,,,,,,20010365,,, +530,USA,en,WPGG905,,Keysers Ridge (MD),39.683417,-79.24975,,0.01,,6376,294,141,,,,,,20010079,,, +530,USA,en,WPHF941,,Gloucester Point (VA),37.394861,-76.522167,,0.01,,6378,291,141,,,,,,20010064,,, +530,USA,en,WPHF945,,Yorktown (VA),37.190972,-76.488833,,0.01,,6392,290,141,,,,,,20010063,,, +530,USA,en,WPHH450,,Big Rapids (MI),43.7,-85.483333,,0.01,,6444,302,141,,,,,,20010097,,, +530,USA,en,WPLX293,,Richmond (VA),37.55,-77.466667,,0.01,,6427,291,141,,,,,,20010007,,, +530,USA,en,WPSG988,,Akron (OH),41.083333,-81.516667,,0.01,,6408,297,141,,,,,,20010166,,, +530,USA,en,WPTJ992,,Solon (OH),41.383333,-81.433333,,0.01,,6380,297,141,,,,,,20010171,,, +530,USA,en,WQEL633,,Duck (NC),36.1943,-75.760975,,0.01,,6422,289,141,,,,,,20010158,,, +530,USA,en,WNMQ279,,Holland (MI),42.783333,-86.116667,,0.01,,6552,301,142,,,,,,20010308,,, +530,USA,en,WPPD478,,Marinette (WI),45.1,-87.633333,,0.01,,6460,304,142,,,,,,20010032,,, +530,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20010115,,, +530,USA,en,WQCJ503,,Lansing/312 N.Cedar Street (MI),42.743531,-84.546389,,0.01,,6463,300,142,,,,,,20010163,,, +530,USA,en,KZV876,,Oshkosh (WI),44.016667,-88.55,,0.01,,6596,304,143,,,,,,20010315,,, +530,USA,en,WNQD828,,Superior (WI),46.716667,-92.1,,0.01,,6582,308,143,,,,,,20010222,,, +530,USA,en,WPAM594,,Oshtemo (MI),42.266667,-85.683333,,0.01,,6567,300,143,,,,,,20010320,,, +530,USA,en,WPGU595,,Hilliard/3800 Municipal Way (OH),40.033333,-83.15,,0.01,,6589,297,143,,,,,,20010056,,, +530,USA,en,WPGU846,,Greenville (NC),35.6,-77.366667,,0.01,,6572,290,143,,,,,,20010082,,, +530,USA,en,WPMN477,,Auburn (IN),41.366667,-85.066667,,0.01,,6600,299,143,,,,,,20010003,,, +530,USA,en,WPMN477,,Fort Wayne (IN),41.133333,-85.133333,,0.01,,6622,299,143,,,,,,20010040,,, +530,USA,en,WPNY205,,Fremont (IN),41.733333,-84.916667,,0.01,,6563,300,143,,,,,,20010048,,, +530,USA,en,WQFG868,,New Bern (NC),35.116667,-77.05,,0.01,,6589,289,143,,,,,,20010157,,, +530,USA,en,WNIE334,,Chicago (IL),41.830556,-87.705833,,0.01,,6719,301,144,,,,,,20010303,,, +530,USA,en,WNIE334,,Chicago (IL),41.840833,-87.6625,,0.01,,6716,301,144,,,,,,20010304,,, +530,USA,en,WNPP716,,Poynette (WI),43.383333,-89.4,,0.01,,6695,304,144,,,,,,20010236,,, +530,USA,en,WNPT254,,Woodridge (IL),41.75,-88.05,,0.01,,6746,301,144,,,,,,20010244,,, +530,USA,en,WNQD828,,Hurley (WI),41.793083,-87.760969,,0.01,,6726,301,144,,,,,,20010256,,, +530,USA,en,WNRW907,,Mauston (WI),43.84775,-90.101528,,0.01,,6698,304,144,,,,,,20010262,,, +530,USA,en,WNZG592,,Madison (WI),43.066667,-89.4,,0.01,,6720,303,144,,,,,,20010338,,, +530,USA,en,WNZG592,,Madison (WI),43.066667,-89.4,,0.01,,6720,303,144,,,,,,20010367,,, +530,USA,en,WPCC899,,Michigan City (IN),41.769725,-86.769725,,0.01,,6669,301,144,,,,,,20010332,,, +530,USA,en,WPCM815,,Merrillville (IN),41.469236,-87.324472,,0.01,,6726,301,144,,,,,,20010366,,, +530,USA,en,WPDJ629,,Chesterton (IN),41.616667,-87.066667,,0.01,,6699,301,144,,,,,,20010363,,, +530,USA,en,WPGS214,,Cincinnati (OH),39.166667,-84.45,,0.01,,6736,297,144,,,,,,20010073,,, +530,USA,en,WPGU847,,Wrightsville Beach (NC),34.216667,-77.8,,0.01,,6708,289,144,,,,,,20010067,,, +530,USA,en,WPHF976,,Hammond (IN),41.583333,-87.5,,0.01,,6727,301,144,,,,,,20010062,,, +530,USA,en,WPKW672,,Greensboro (IN),39.8445,-85.542472,,0.01,,6748,298,144,,,,,,20010021,,, +530,USA,en,WPMN477,,Markle (IN),40.833333,-85.333333,,0.01,,6658,299,144,,,,,,20010002,,, +530,USA,en,WPNT302,,Centerville (IN),39.816667,-85,,0.01,,6718,298,144,,,,,,20010051,,, +530,USA,en,WPNY208,,Hillsboro (IN),39.966667,-85.333333,,0.01,,6726,298,144,,,,,,20010047,,, +530,USA,en,WPNY208,,Indianapolis (IN),41.793083,-87.760969,,0.01,,6726,301,144,,,,,,20010045,,, +530,USA,en,WPPC695,,Demotte (IN),41.2,-87.2,,0.01,,6740,300,144,,,,,,20010035,,, +530,USA,en,WQHC969,,Carol Stream (IL),41.909667,-88.144361,,0.01,,6739,302,144,,,,,,20010146,,, +530,FLK,en,Falkland Islands R Service,,Port Stanley (efl),-51.698056,-57.841111,,15,,13010,219,145,,,,,,52403,,, +530,USA,en,WNNV615,,Charlotte (NC),35.20375,-80.92925,,0.01,,6831,292,145,,,,,,20010242,,, +530,USA,en,WNPD487,,Kieler (WI),42.583333,-90.6,,0.01,,6826,304,145,,,,,,20010239,,, +530,USA,en,WNPD487,,Prairie du Chien (WI),43.05,-91.133333,,0.01,,6819,304,145,,,,,,20010240,,, +530,USA,en,WNPM473,,Frankfort/Coffee Tree Road (KY),38.2,-84.866667,,0.01,,6838,297,145,,,,,,20010237,,, +530,USA,en,WNPT254,,Joliet (IL),41.533333,-88.083333,,0.01,,6765,301,145,,,,,,20010232,,, +530,USA,en,WNPT254,,Morris (IL),41.388889,-88.423611,,0.01,,6796,301,145,,,,,,20010221,,, +530,USA,en,WNPT254,,Utica (IL),41.35,-88.983333,,0.01,,6832,302,145,,,,,,20010234,,, +530,USA,en,WNWM881,,West Fargo (ND),46.866667,-96.9,,0.01,,6823,311,145,,,,,,20010373,,, +530,USA,en,WNXE972,,Ingalls (NC),35.966667,-82.016667,,0.01,,6839,293,145,,,,,,20010401,,, +530,USA,en,WNXE972,,Spruce Pine (NC),35.914556,-82.069556,,0.01,,6846,293,145,,,,,,20010399,,, +530,USA,en,WNZM463,,Saint Paul (MN),44.982472,-93.262167,,0.01,,6782,307,145,,,,,,20010376,,, +530,USA,en,WPAL378,,Monticello (MN),45.259972,-93.700528,,0.01,,6784,308,145,,,,,,20010333,,, +530,USA,en,WPBX286,,Saint Paul (MN),44.95,-93.1,,0.01,,6776,307,145,,,,,,20010323,,, +530,USA,en,WPFZ722,,Lexington (KY),37.983333,-84.483333,,0.01,,6831,296,145,,,,2,,20010013,,, +530,USA,en,WPGS214,,Erlanger (OH),39.016667,-84.6,,0.01,,6757,297,145,,,,,,20010072,,, +530,USA,en,WPJQ653,,Dixon (IL),41.833333,-89.483333,,0.01,,6822,302,145,,,,,,20010089,,, +530,USA,en,WPKJ778,,Kingsport/613 Industry Dr. (TN),36.55,-82.566667,,0.01,,6827,294,145,,,,,,20010068,,, +530,USA,en,WPKW675,,Indianapolis (IN),39.766667,-86.15,,0.01,,6791,299,145,,,,,,20010020,,, +530,USA,en,WPLR621,,Columbus (IN),39.2,-85.916667,,0.01,,6822,298,145,,,,,,20010027,,, +530,USA,en,WPML861,,Sandwich (IL),41.666667,-88.633333,,0.01,,6786,302,145,,,,,,20010004,,, +530,USA,en,WPNQ974,,Dayton (IN),40.366667,-86.766667,,0.01,,6780,300,145,,,,,,20010052,,, +530,USA,en,WPNT302,,Shelbyville (IN),39.516667,-85.783333,,0.01,,6789,298,145,,,,,,20010050,,, +530,USA,en,WPNY208,,Clayton (IN),39.683333,-86.516667,,0.01,,6819,299,145,,,,,,20010044,,, +530,USA,en,WPNY208,,Cloverdale (IN),39.516667,-86.8,,0.01,,6850,299,145,,,,,,20010043,,, +530,USA,en,WPNY208,,Jamestown (IN),39.933333,-86.633333,,0.01,,6806,299,145,,,,,,20010046,,, +530,USA,en,WPPC694,,Wolcott (IN),40.75,-87.05,,0.01,,6766,300,145,,,,,,20010036,,, +530,USA,en,WPPD729,,Hudson (WI),44.966667,-92.75,,0.01,,6756,307,145,,,,,,20010031,,, +530,USA,en,WPPU365,,Manteno (IL),41.25,-87.833333,,0.01,,6773,301,145,,,,,,20010029,,, +530,USA,en,WPTZ502,,Noblesville (IN),39.991472,-85.922667,,0.01,,6759,299,145,,,,,,20010167,,, +530,USA,en,WPTZ502,,Whitestown (IN),39.985472,-86.393944,,0.01,,6788,299,145,,,,,,20010205,,, +530,USA,en,WNPQ955,,Louisville (KY),38.207306,-85.748028,,0.01,,6891,297,146,,,,,,20010235,,, +530,USA,en,WPAX200,,Beaumont (TX),43.133583,-93.361008,,0.01,,6937,306,146,,,,,,20010329,,, +530,USA,en,WPCC677,,Elizabethtown (KY),37.71,-85.826944,,0.01,,6935,297,146,,,,,,20010357,,, +530,USA,en,WPFZ730,,East Peoria (IL),40.666667,-89.583333,,0.01,,6922,302,146,,,,,,20010081,,, +530,USA,en,WPIV306,,Asheville (NC),35.6,-82.55,,0.01,,6901,293,146,,,,,,20010083,,, +530,USA,en,WPKM208,,Columbus (NC),35.25,-82.2,,0.01,,6907,293,146,,,,,,20010023,,, +530,USA,en,WPNY208,,West Terre Haute (IN),39.466667,-87.45,,0.01,,6892,299,146,,,,,,20010028,,, +530,USA,en,WPPG236,,Henry (IL),41.116667,-89.35,,0.01,,6872,302,146,,,,,,20010030,,, +530,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010084,,, +530,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010189,,, +530,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010190,,, +530,USA,en,WQEL352,,Arcola (IL),39.6825,-88.2875,,0.01,,6925,300,146,,,,,,20010160,,, +530,USA,en,WQFX538,,Ashville (NC),35.555,-82.609333,,0.01,,6909,293,146,,,,,,20010151,,, +530,USA,en,WQFX538,,Columbus (NC),35.244319,-82.210189,,0.01,,6908,293,146,,,,,,20010165,,, +530,ARG,es,R de las Madres,,San Justo (ba),-34.666667,-58.55,,3,,11520,230,147,,,,,,47111,,, +530,USA,en,WNKW629,,Charleston (SC),32.783333,-79.933333,,0.01,,6960,289,147,,,,,,20010300,,, +530,USA,en,WPMP251,,Evansville (IN),37.966667,-87.55,,0.01,,7019,298,147,,,,,,20010015,,, +530,USA,en,WPUS402,,Bismarck/Devils Lake (ND),46.8,-100.783333,,0.01,,7026,313,147,,,,,,20010212,,, +530,USA,en,WPVB565,,Beaufort (SC),32.433333,-80.666667,,0.01,,7036,289,147,,,,,,20010204,,, +530,USA,en,WPZW904,,Sylva (NC),35.366667,-83.233333,,0.01,,6963,293,147,,,,,,20010117,,, +530,USA,en,WPJJ548,,Dupo (IL),38.516667,-90.216667,,0.01,,7133,300,148,,,,,,20010091,,, +530,USA,en,WPJJ548,,Pontoon Beach (IL),38.733333,-90.083333,,0.01,,7108,300,148,,,,,,20010092,,, +530,USA,en,WPQX600,,Watkinsville (GA),33.866667,-83.416667,,0.01,,7095,292,148,,,,,,20010184,,, +530,USA,en,WPUV594,,Alpharetta/2970 Webb Bridge Road (GA),34.077647,-84.310983,,0.01,,7135,293,148,,,,,,20010211,,, +530,USA,en,WQBJ215,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20010114,,, +530,USA,en,WXB219,,Stone Mountain (GA),33.814,-84.142694,,0.01,,7146,293,148,,,,,,20010139,,, +530,USA,en,WPQB293,,Brunswick/157 Public Safety Blvd (GA),31.15,-81.483333,,0.01,,7193,289,149,,,,,,20010187,,, +530,USA,en,WPWK972,,Atlanta (GA),33.75,-84.383333,,0.01,,7166,293,149,,,,,,20010132,,, +530,USA,en,WQII416,,Guntersville (AL),34.35,-86.3,,0.01,,7237,295,149,,,,,,20010143,,, +530,ALS,en,WPTR456,,Whittier (AK),60.776917,-148.693167,,0.01,,7269,347,150,,,,,,20012314,,, +530,USA,en,WNMY250,,Lake City (FL),30.183333,-82.633333,,0.01,,7346,289,150,,,,,,20010271,,, +530,USA,en,WPGR772,,Jacksonville (FL),30.333333,-81.65,,0.01,,7271,288,150,,,,,,20010074,,, +530,USA,en,WPOX587,,Jackson (TN),35.616667,-88.816667,,0.01,,7287,297,150,,,,,,20010038,,, +530,USA,en,WPUQ404,,Hoover (AL),33.4,-86.816667,,0.01,,7347,294,150,,,,,,20010213,,, +530,USA,en,WQIM209,,Alexander City (AL),32.95,-85.95,,0.01,,7330,293,150,,,,,,20010142,,, +530,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010243,,, +530,USA,en,WPBR674,,Tallahassee/Stadium Drive (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010324,,, +530,USA,en,WPGF910,,Grand Island (NE),40.933333,-98.35,,0.01,,7394,307,151,,,,,,20010080,,, +530,USA,en,WPZH604,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20010119,,, +530,USA,en,WPZS817,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010118,,, +530,USA,en,WNXC873,,Gillette (WY),44.283333,-105.5,,0.01,,7476,314,152,,,,,,20010403,,, +530,USA,en,WPAC338,,Florida City (FL),27.994292,-82.026194,,0.01,,7488,287,152,,,,,,20010335,,, +530,USA,en,WPGU770,,Crow Agency (MT),45.6,-107.466667,,0.01,,7456,316,152,,,,,,20010069,,, +530,USA,en,WPSR307,,Eureka (MT),48.883333,-115.05,,0.01,,7498,323,152,,,,,,20010175,,, +530,USA,en,WQFV245,,Joplin (MO),37.078333,-94.178333,,0.01,,7484,302,152,,,,,,20010155,,, +530,USA,en,WNNV876,,Ogallala/200 Stagecoach Trail (NE),41.133333,-101.716667,,0.01,,7557,309,153,,,,,,20010241,,, +530,USA,en,WNYA375,,Saint Regis (MT),47.3,-115.1,,0.01,,7646,322,153,,,,,,20010396,,, +530,USA,en,WPEY666,,Bozeman (MT),45.683333,-111.033333,,0.01,,7614,318,153,,,,,,20010353,,, +530,USA,en,WPEY666,,Butte (MT),45.961306,-112.474194,,0.01,,7654,319,153,,,,,,20010368,,, +530,USA,en,WPEY666,,Livingston (MT),45.666667,-110.566667,,0.01,,7594,318,153,,,,,,20010354,,, +530,USA,en,WPEY666,,Whitehall (MT),45.866667,-112.1,,0.01,,7646,319,153,,,,,,20010352,,, +530,USA,en,WPHN567,,Laclede (ID),48.166667,-116.75,,0.01,,7634,323,153,,,,,,20010107,,, +530,USA,en,WPSR809,,Troy (MT),48.466667,-115.883333,,0.01,,7571,323,153,,,,,,20010174,,, +530,USA,en,WPUA224,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010180,,, +530,USA,en,WPUW403,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010209,,, +530,USA,en,WPUY239,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010208,,, +530,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010193,,, +530,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010206,,, +530,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010220,,, +530,USA,en,WPXZ439,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010120,,, +530,USA,en,WQAL914,,Helena (MT),46.6,-112.033333,,0.01,,7576,319,153,,,,,,20010116,,, +530,USA,en,WQBU260,,Julesburg (CO),40.977636,-102.246194,,0.01,,7598,310,153,,,,,,20010150,,, +530,USA,en,WQFU757,,Libby/952 East Spruce St (MT),48.393506,-115.542778,,0.01,,7563,323,153,,,,,,20010156,,, +530,USA,en,WNHV296,,Los Angeles/Century Blvd (CA),33.945278,-118.379528,,0.1,,9048,316,154,,,,,,20010305,,, +530,USA,en,WPLP689,,Cheyenne (WY),41.133333,-104.816667,,0.01,,7718,311,154,,,,,,20010014,,, +530,USA,en,WPMF438,,Twisp (WA),48.366667,-120.116667,,0.01,,7750,325,154,,,,,,20010005,,, +530,USA,en,WPNZ308,,Spokane (WA),47.666667,-117.433333,,0.01,,7709,323,154,,,,,,20010055,,, +530,USA,en,WPQZ500,,Cheyenne (WY),41.133333,-104.816667,,0.01,,7718,311,154,,,,,,20010183,,, +530,USA,en,WQBJ353,,Liberty Lake (WA),47.677653,-117.110639,,0.01,,7694,323,154,,,,,,20010113,,, +530,USA,en,KNNU861,,Peshastin (WA),47.558167,-120.589528,,0.01,,7845,325,155,,,,,,20010317,,, +530,USA,en,WNKX209,,Kenner (LA),30,-90.25,,0.01,,7845,294,155,,,,,,20010299,,, +530,USA,en,WNSV510,,Aurora (CO),39.733333,-104.833333,,0.01,,7842,311,155,,,,,,20010247,,, +530,USA,en,WNSV510,,Aurora (CO),39.733333,-104.833333,,0.01,,7842,311,155,,,,,,20010250,,, +530,USA,en,WNSV510,,Brighton (CO),39.983333,-104.816667,,0.01,,7819,311,155,,,,,,20010249,,, +530,USA,en,WNSV510,,Broomfield (CO),39.916667,-105.066667,,0.01,,7838,311,155,,,,,,20010248,,, +530,USA,en,WNSV510,,Thornton (CO),39.866667,-104.966667,,0.01,,7838,311,155,,,,,,20010246,,, +530,USA,en,WNVQ844,,Moses Lake (WA),47.103056,-119.279167,,0.01,,7836,324,155,,,,,,20010380,,, +530,USA,en,WNWU499,,Oklahoma City (OK),35.466667,-97.516667,,0.01,,7814,303,155,,,,,,20010372,,, +530,USA,en,WPCB931,,Loveland (CO),40.4,-105.066667,,0.01,,7796,311,155,,,,,,20010355,,, +530,USA,en,WPDF598,,Denver (CO),39.733333,-104.983333,,0.01,,7850,311,155,,,,,,20010364,,, +530,USA,en,WPEZ424,,Friday Harbor/State Ferry Terminal (WA),48.533333,-123.016667,,0.01,,7844,327,155,,,,,,20010351,,, +530,USA,en,WPFP950,,Denver (CO),39.733333,-104.983333,,0.01,,7850,311,155,,,,,,20010314,,, +530,USA,en,WPHZ556,,Lynden (WA),48.95,-122.45,,0.01,,7783,327,155,,,,,,20010104,,, +530,USA,en,WPIG302,,Estes Park (CO),40.383333,-105.516667,,0.01,,7820,311,155,,,,,,20010103,,, +530,USA,en,WPIW323,,Roberts (ID),43.716667,-112.133333,,0.01,,7843,318,155,,,,,,20010096,,, +530,USA,en,WPLX284,,Denver (CO),39.733333,-104.983333,,0.01,,7850,311,155,,,,,,20010008,,, +530,USA,en,WPMF432,,Pateros (WA),48.054861,-119.8995,,0.01,,7771,325,155,,,,,,20010006,,, +530,USA,en,WPPZ800,,Fort Collins/505 Peterson St. (CO),40.583333,-105.083333,,0.01,,7780,311,155,,,,,,20010188,,, +530,USA,en,WPTZ990,,Oklahoma City (OK),35.521389,-97.477556,,0.01,,7807,303,155,,,,,,20010207,,, +530,USA,en,WPUJ624,,Mead (CO),40.233333,-105,,0.01,,7807,311,155,,,,,,20010218,,, +530,USA,en,WPVW624,,Anacortes (WA),48.462139,-122.577669,,0.01,,7835,327,155,,,,,,20010178,,, +530,USA,en,WPXP711,,Ritzville (WA),47.111528,-118.414417,,0.01,,7800,324,155,,,,,,20010122,,, +530,USA,en,WQHL398,,Wenatchee (WA),47.416667,-120.316667,,0.01,,7848,325,155,,,,,,20010144,,, +530,USA,en,KNCL518,,Tukwila (WA),47.466667,-122.266667,,0.01,,7918,326,156,,,,,,20010291,,, +530,USA,en,KNEZ390,,Bellevue (WA),47.616667,-122.2,,0.01,,7901,326,156,,,,,,20010288,,, +530,USA,en,KNEZ390,,Seattle (WA),47.6,-122.333333,,0.01,,7908,326,156,,,,,,20010285,,, +530,USA,en,KNEZ390,,Seattle (WA),47.6,-122.333333,,0.01,,7908,326,156,,,,,,20010286,,, +530,USA,en,KNEZ390,,Seattle (WA),47.6,-122.333333,,0.01,,7908,326,156,,,,,,20010287,,, +530,USA,en,KNNN871,,Vail/Booth Falls (CO),39.633333,-106.366667,,0.01,,7930,311,156,,,,,,20010281,,, +530,USA,en,KNNN871,,Vail/Potato Patch (CO),39.633333,-106.366667,,0.01,,7930,311,156,,,,,,20010283,,, +530,USA,en,WNFN793,,Edwards (CO),39.65,-106.6,,0.01,,7941,312,156,,,,,,20010311,,, +530,USA,en,WNHC789,,Lynnwood (WA),47.830639,-122.262917,,0.01,,7883,326,156,,,,,,20010295,,, +530,USA,en,WNLB703,,Breckenridge (CO),39.483333,-106.033333,,0.01,,7927,311,156,,,,,,20010298,,, +530,USA,en,WNRI857,,Vashon (WA),47.45,-122.466667,,0.01,,7927,326,156,,,,,,20010267,,, +530,USA,en,WNSV510,,Golden (CO),39.75,-105.216667,,0.01,,7861,311,156,,,,,,20010231,,, +530,USA,en,WPAN862,,Cascade (ID),44.516667,-116.05,,0.01,,7944,321,156,,,,,,20010331,,, +530,USA,en,WPBN521,,Black Hawk (CO),39.8,-105.5,,0.01,,7871,311,156,,,,,,20010325,,, +530,USA,en,WPDY708,,Newport (WA),47.566667,-122.183333,,0.01,,7906,326,156,,,,,,20010361,,, +530,USA,en,WPIW323,,Idaho Falls (ID),43.466667,-112.033333,,0.01,,7861,317,156,,,,,,20010110,,, +530,USA,en,WPJR991,,Bakerville (CO),39.683333,-105.8,,0.01,,7897,311,156,,,,,,20010087,,, +530,USA,en,WPJR991,,Dillon (CO),39.633333,-106.05,,0.01,,7914,311,156,,,,,,20010085,,, +530,USA,en,WPJR991,,Dumont (CO),39.766667,-105.6,,0.01,,7879,311,156,,,,,,20010088,,, +530,USA,en,WPJR991,,Frisco (CO),39.566667,-106.1,,0.01,,7923,311,156,,,,,,20010086,,, +530,USA,en,WPJR991,,Winter Park (CO),39.883333,-105.766667,,0.01,,7877,311,156,,,,,,20010054,,, +530,USA,en,WPJT288,,Baton Rouge (LA),30.45,-91.15,,0.01,,7863,295,156,,,,,,20010109,,, +530,USA,en,WPKW677,,Federal Way (WA),47.210181,-122.297778,,0.01,,7944,326,156,,,,,,20010019,,, +530,USA,en,WPKZ237,,Manitou Springs (CO),38.866667,-104.916667,,0.01,,7923,310,156,,,,,,20010001,,, +530,USA,en,WPLS671,,Upper Preston (WA),47.5,-121.9,,0.01,,7901,326,156,,,,,,20010011,,, +530,USA,en,WPNZ308,,Spokane (WA),47.310997,-122.576694,,0.01,,7945,326,156,,,,,,20010039,,, +530,USA,en,WPOX738,,Baton Rouge (LA),30.526306,-91.190111,,0.01,,7859,295,156,,,,,,20010037,,, +530,USA,en,WPTR238,,Shine (WA),47.866472,-122.640972,,0.01,,7894,327,156,,,,,,20010170,,, +530,USA,en,WPUL478,,Liberty (WA),47.327669,-122.312167,,0.01,,7933,326,156,,,,,,20010217,,, +530,USA,en,WPVW565,,Selah (WA),46.677361,-120.479639,,0.01,,7924,325,156,,,,,,20010194,,, +530,USA,en,WPVW567,,Ellensburg (WA),46.960967,-120.510989,,0.01,,7899,325,156,,,,,,20010164,,, +530,USA,en,WPVW628,,Bothel (WA),47.760964,-122.194344,,0.01,,7887,326,156,,,,,,20010135,,, +530,USA,en,WPXG660,,Baton Rouge (LA),30.45,-91.15,,0.01,,7863,295,156,,,,,,20010129,,, +530,USA,en,WQHF576,,Lakewood (CO),39.712444,-105.194389,,0.01,,7863,311,156,,,,,,20010145,,, +530,ALS,,ADK,b,Mount Moffett Adak Island (AK),51.854167,-176.708333,,0.025,,8451,2,157,,,,999,L1035 U1035 8.4s,85487,,, +530,USA,en,WNFN793,,Newcastle (CO),39.566667,-107.533333,,0.01,,7996,312,157,,,,,,20010310,,, +530,USA,en,WNVA814,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010389,,, +530,USA,en,WNVS403,,Pueblo (CO),38.25,-104.616667,,0.01,,7962,309,157,,,,,,20010392,,, +530,USA,en,WPET783,,Twin Falls (ID),42.566667,-114.466667,,0.01,,8055,318,157,,,,,,20010344,,, +530,USA,en,WPVW568,,Lacey (WA),47.061008,-122.810986,,0.01,,7978,326,157,,,,,,20010123,,, +530,USA,en,WPWZ972,,Lakewood (WA),47.162917,-122.481306,,0.01,,7956,326,157,,,,,,20010131,,, +530,USA,en,WPXF406,,Olympia (WA),47.042833,-122.979111,,0.01,,7986,326,157,,,,,,20010130,,, +530,USA,en,WQBJ354,,Rochester (WA),46.844294,-122.994325,,0.01,,8006,326,157,,,,,,20010112,,, +530,USA,en,WQBU866,,Baker City/3410 K Street (OR),44.79435,-117.848833,,0.01,,7995,322,157,,,,,,20010152,,, +530,USA,en,WQBV586,,Napavine (WA),46.54775,-122.877389,,0.01,,8030,326,157,,,,,,20010125,,, +530,USA,en,WNPH810,,Montrose (CO),38.461111,-107.872833,,0.01,,8112,312,158,,,,,,20010238,,, +530,USA,en,WNSQ450,,Government Camp (OR),45.3,-121.75,,0.01,,8106,325,158,,,,,,20010252,,, +530,USA,en,WNVF736,,Alta (UT),40.583333,-111.633333,,0.01,,8106,315,158,,,,,,20010387,,, +530,USA,en,WNVF736,,Alta (UT),40.583333,-111.633333,,0.01,,8106,315,158,,,,,,20010388,,, +530,USA,en,WNWU971,,Raton (NM),36.9,-104.433333,,0.01,,8072,308,158,,,,,,20010406,,, +530,USA,en,WPAF800,,Jewell (OR),45.933333,-123.5,,0.01,,8113,326,158,,,,,,20010334,,, +530,USA,en,WPBX496,,Astoria (OR),46.183333,-123.833333,,0.01,,8101,326,158,,,,,,20010322,,, +530,USA,en,WPHG710,,Portland (OR),45.516667,-122.683333,,0.01,,8122,325,158,,,,,,20010095,,, +530,USA,en,WPSH445,,Orem (UT),40.3,-111.7,,0.01,,8135,315,158,,,,,,20010192,,, +530,USA,en,WPVS690,,Ridgefield (WA),45.816056,-122.694328,,0.01,,8093,326,158,,,,,,20010200,,, +530,USA,en,WPWA752,,Syracuse (UT),41.089167,-112.194353,,0.01,,8086,316,158,,,,,,20010134,,, +530,USA,en,WPXY406,,Rainier (WA),46.098528,-122.965806,,0.01,,8077,326,158,,,,,,20010121,,, +530,USA,en,WNLV768,,Langtry (TX),29.761019,-95.094358,,0.01,,8164,297,159,,,,,,20010297,,, +530,USA,en,WNLZ915,,Houston (TX),29.766667,-95.366667,,0.01,,8180,298,159,,,,,,20010268,,, +530,USA,en,WNVI202,,Deer Park/1410 Center St (TX),29.703556,-95.158556,,0.01,,8172,297,159,,,,,,20010384,,, +530,USA,en,WNWU971,,Cuervo (NM),35.033333,-104.416667,,0.01,,8238,307,159,,,,,,20010413,,, +530,USA,en,WNWU971,,Pojoaque (NM),35.9,-106.016667,,0.01,,8246,309,159,,,,,,20010412,,, +530,USA,en,WNWU971,,Portales (NM),34.183333,-103.333333,,0.01,,8254,306,159,,,,,,20010410,,, +530,USA,en,WNWU971,,San Juan (NM),36.05,-106.066667,,0.01,,8235,309,159,,,,,,20010411,,, +530,USA,en,WNWU971,,Taos (NM),36.4,-105.566667,,0.01,,8177,309,159,,,,,,20010409,,, +530,USA,en,WPIW517,,Texas City (TX),29.383333,-94.9,,0.01,,8184,297,159,,,,,,20010094,,, +530,USA,en,WPTI700,,Caldwell (TX),30.533333,-96.7,,0.01,,8193,299,159,,,,,,20010172,,, +530,USA,en,WPXK767,,Wells (NV),41.112361,-114.977644,,0.01,,8213,318,159,,,,,,20010111,,, +530,USA,en,WQEK910,,Camp Sherman (OR),44.416389,-121.754722,,0.01,,8191,324,159,,,,,,20010162,,, +530,USA,en,WQEL629,,Tucumcari (NM),35.149167,-103.781167,,0.01,,8193,307,159,,,,,,20010159,,, +530,USA,en,KNNN851,,Bastrop/300 Water Street (TX),30.116667,-97.316667,,0.01,,8266,299,160,,,,,,20010272,,, +530,USA,en,WNRO290,,Santa Fe (NM),35.683333,-105.933333,,0.01,,8261,309,160,,,,,,20010266,,, +530,USA,en,WNSQ948,,Walterville (OR),44.066667,-122.8,,0.01,,8266,325,160,,,,,,20010251,,, +530,USA,en,WNVF737,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010385,,, +530,USA,en,WNVF737,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010386,,, +530,USA,en,WNVN277,,Newport (OR),44.632056,-124.051222,,0.01,,8260,326,160,,,,,,20010383,,, +530,USA,en,WNWU970,,Aztec (NM),36.867222,-107.952833,,0.01,,8260,311,160,,,,,,20010407,,, +530,USA,en,WNWU970,,Bloomfield (NM),36.716667,-107.983333,,0.01,,8276,311,160,,,,,,20010408,,, +530,USA,en,WNWU970,,Kirtland (NM),36.733333,-108.366667,,0.01,,8294,311,160,,,,,,20010402,,, +530,USA,en,WNWU972,,Taiban (NM),34.433333,-104.016667,,0.01,,8269,307,160,,,,,,20010414,,, +530,USA,en,WPHZ492,,Austin/Fire Station (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010106,,, +530,USA,en,WPKL874,,Alameda (NM),35.183333,-106.616667,,0.01,,8342,309,160,,,,,,20010316,,, +530,USA,en,WPKL874,,Albuquerque (NM),35.083333,-106.65,,0.01,,8353,309,160,,,,,,20010024,,, +530,USA,en,WPKL874,,Albuquerque (NM),35.083333,-106.65,,0.01,,8353,309,160,,,,,,20010025,,, +530,USA,en,WPTI468,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010173,,, +530,USA,en,WPVW333,,Alameda (NM),35.173611,-106.582222,,0.01,,8342,309,160,,,,,,20010197,,, +530,USA,en,WPVW333,,Albuquerque (NM),35.06,-106.643522,,0.01,,8355,309,160,,,,,,20010196,,, +530,USA,en,WPVW333,,Albuquerque (NM),35.093556,-106.539167,,0.01,,8346,309,160,,,,,,20010198,,, +530,USA,en,WPVW333,,Albuquerque (NM),35.127647,-106.627647,,0.01,,8348,309,160,,,,,,20010195,,, +530,USA,en,WPXK223,,Battle Mountain (NV),40.626722,-116.927675,,0.01,,8347,319,160,,,,,,20010128,,, +530,USA,en,WPXK767,,Winnemucca (NV),40.994294,-117.744347,,0.01,,8349,320,160,,,,,,20010137,,, +530,USA,en,KNNJ348,,Odessa (TX),31.85,-102.366667,,0.01,,8407,304,161,,,,,,20010273,,, +530,USA,en,WNKS900,,Port Aransas/613 W Cotter St. (TX),27.833333,-97.066667,,0.01,,8451,298,161,,,,,,20010301,,, +530,USA,en,WNWU970,,Grants (NM),35.15,-107.85,,0.01,,8411,310,161,,,,,,20010370,,, +530,USA,en,WNWU970,,La Mesita Negra (NM),35.029444,-106.948333,,0.01,,8374,309,161,,,,,,20010371,,, +530,USA,en,WNWU970,,Wingate (NM),35.516667,-108.55,,0.01,,8414,310,161,,,,,,20010379,,, +530,USA,en,WNWU972,,Roswell (NM),33.4,-104.516667,,0.01,,8389,306,161,,,,,,20010405,,, +530,USA,en,WPKL874,,Atrisco Grant (NM),35.1,-106.75,,0.01,,8357,309,161,,,,,,20010026,,, +530,USA,en,WPVW333,,Atrisco Grant (NM),35.093539,-106.745,,0.01,,8357,309,161,,,,,,20010199,,, +530,USA,en,WPXK767,,Mill City (NV),40.677139,-118.077681,,0.01,,8393,320,161,,,,,,20010124,,, +530,USA,en,WPFM427,,Carson City (NV),39.166667,-119.766667,,0.01,,8612,320,162,,,,,,20010349,,, +530,USA,en,WPJK465,,Gold Beach/29821 Colvin St. (OR),42.4,-124.416667,,0.01,,8492,325,162,,,,,,20010090,,, +530,USA,en,WPLX255,,Incline Village (NV),39.25,-119.966667,,0.01,,8612,320,162,,,,,,20010010,,, +530,USA,en,WPLX255,,South Lake Tahoe (NV),38.933333,-119.983333,,0.01,,8643,320,162,,,,,,20010009,,, +530,USA,en,WPMQ285,,Laredo (TX),27.5,-99.5,,0.01,,8627,299,162,,,,,,20010053,,, +530,USA,en,WPPW586,,Uvalde (TX),29.216667,-99.783333,,0.01,,8491,300,162,,,,,,20010136,,, +530,USA,en,WPPY836,,Carson City (NV),39.166667,-119.766667,,0.01,,8612,320,162,,,,,,20010219,,, +530,USA,en,WPXK223,,Fernley (NV),39.614111,-119.2335,,0.01,,8545,320,162,,,,,,20010127,,, +530,USA,en,WPXK223,,Lovelock (NV),40.194328,-118.464861,,0.01,,8456,320,162,,,,,,20010126,,, +530,USA,en,WQEL335,,Norden/58450 Donner Pass Rd (CA),39.313611,-120.339167,,0.01,,8622,321,162,,,,,,20010161,,, +530,USA,en,KNEC996,,Sacramento (CA),38.583333,-121.5,,0.01,,8743,321,163,,,,,,20010289,,, +530,USA,en,WNIG247,,Sacramento/Metropolitan Airport (CA),38.684917,-121.589972,,0.01,,8737,321,163,,,,,,20010302,,, +530,USA,en,WNPZ947,,San Jose/Int. Airport (CA),37.376889,-121.946333,,0.01,,8879,321,163,,,,9939,,51936,,, +530,USA,en,WNSA851,,Sunnyvale (CA),37.446889,-122.127694,,0.01,,8880,321,163,,,,,,20010257,,, +530,USA,en,WNSA852,,Oakland (CA),37.010994,-121.560997,,0.01,,8898,320,163,,,,,,20010269,,, +530,USA,en,WNSD328,,Brisbane (CA),36.862417,-121.579333,,0.01,,8913,320,163,,,,,,20010255,,, +530,USA,en,WNUT422,,Los Altos/10 Almond Ave (CA),37.384667,-122.113583,,0.01,,8885,321,163,,,,,,20010390,,, +530,USA,en,WNXY857,,Livermore (CA),37.737694,-121.614111,,0.01,,8830,321,163,,,,,,20010398,,, +530,USA,en,WNXY861,,Livermore (CA),37.744639,-121.602444,,0.01,,8828,321,163,,,,,,20010397,,, +530,USA,en,WNYD244,,Tehachapi (CA),35.133333,-118.45,,0.01,,8938,317,163,,,,,,20010395,,, +530,USA,en,WPFK507,,San Joaquin (CA),36.436056,-120.393778,,0.01,,8902,319,163,,,,,,20010348,,, +530,USA,en,WPFK507,,South Dos Palos (CA),36.778,-120.723528,,0.01,,8883,320,163,,,,,,20010339,,, +530,USA,en,WPGR287,,Friant (CA),36.815222,-119.749861,,0.01,,8836,319,163,,,,,,20010077,,, +530,USA,en,WPGR287,,Oakhurst (CA),38.111017,-121.294358,,0.01,,8780,321,163,,,,,,20010078,,, +530,USA,en,WPGR287,,Prather (CA),37.0455,-119.475694,,0.01,,8802,319,163,,,,,,20010076,,, +530,USA,en,WPGR291,,Bakersfield (CA),35.346639,-119.039833,,0.01,,8945,318,163,,,,,,20010075,,, +530,USA,en,WPIN400,,Chowchilla (CA),37.083278,-120.208778,,0.01,,8831,319,163,,,,,,20010098,,, +530,USA,en,WPIN400,,Earlimart (CA),35.877722,-119.270944,,0.01,,8905,318,163,,,,,,20010102,,, +530,USA,en,WPIN400,,Fresno (CA),36.689111,-119.754306,,0.01,,8849,319,163,,,,,,20010100,,, +530,USA,en,WPIN400,,Kingsburg (CA),36.452167,-119.490139,,0.01,,8859,319,163,,,,,,20010101,,, +530,USA,en,WPIN400,,Madera (CA),36.851611,-119.947389,,0.01,,8842,319,163,,,,,,20010099,,, +530,USA,en,WPJV572,,Novato/7025 Redwood Blvd (CA),38.099639,-122.566361,,0.01,,8835,322,163,,,,,,20010191,,, +530,USA,en,WPKN315,,Tehachapi (CA),35.159694,-118.645083,,0.01,,8945,317,163,,,,,,20010022,,, +530,USA,en,WPLS326,,Pharr (TX),26.2,-98.183333,,0.01,,8662,297,163,,,,,,20010012,,, +530,USA,en,WPNV219,,Roseville/Saugstead Park (CA),38.7435,-121.283278,,0.01,,8718,321,163,,,,,,20010049,,, +530,USA,en,WPPD286,,Cordes Junction (AZ),34.333333,-112.116667,,0.01,,8706,312,163,,,,,,20010033,,, +530,USA,en,WPPD286,,Tolleson (AZ),33.45,-112.266667,,0.01,,8795,312,163,,,,,,20010034,,, +530,USA,en,WPQI768,,Phoenix (AZ),33.45,-112.066667,,0.01,,8785,312,163,,,,,,20010185,,, +530,USA,en,WPTR552,,Martinez/2251 Harborview Drive (CA),38.006583,-122.126167,,0.01,,8826,321,163,,,,73,,52596,,, +530,USA,en,WPUV620,,San Mateo/1949 Pacific Blvd (CA),37.55,-122.305556,,0.01,,8878,321,163,,,,20,,20000003,,, +530,USA,en,WPVQ738,,Fresno (CA),36.761019,-119.710992,,0.01,,8840,319,163,,,,,,20010203,,, +530,USA,en,WPVQ743,,Mariposa (CA),37.493833,-119.977672,,0.01,,8781,319,163,,,,,,20010202,,, +530,USA,en,WPVQ900,,Willow Springs (CA),37.99575,-120.277675,,0.01,,8746,320,163,,,,,,20010201,,, +530,USA,en,WQBH490,,Moraga/Orinda Fire Dept. (CA),37.835556,-122.132778,,0.01,,8842,321,163,,,,267,,51937,,, +530,USA,en,WQGH873,,Jackson (CA),38.474167,-120.543572,,0.01,,8712,320,163,,,,,,20010149,,, +530,USA,en,WQGT278,,Stockton (CA),37.933333,-121.266667,,0.01,,8796,321,163,,,,,,20010148,,, +530,USA,en,KNCN250,,San Bernardino (CA),34.136389,-117.195861,,0.01,,8974,316,164,,,,,,20010290,,, +530,USA,en,KNNN867,,Descanso/Paso Picacho (CA),32.958944,-116.579472,,0.01,,9056,315,164,,,,,,20010306,,, +530,USA,en,WNCN749,,Burbank/Bob Hope Airport (CA),34.2,-118.35,,0.01,,9023,317,164,,,,,,20000025,,, +530,USA,en,WNHI810,,Simi Valley/3200 Cochran St. (CA),34.278333,-118.734806,,0.01,,9033,317,164,,,,,,20010307,,, +530,USA,en,WNHV296,,Los Angeles/LAX (CA),33.937222,-118.397028,,0.01,,9050,316,164,,,,,,20010319,,, +530,USA,en,WNRS426,,Escondido (CA),33.128361,-117.103639,,0.01,,9065,315,164,,,,,,20010265,,, +530,USA,en,WNRS427,,Vista (CA),33.186139,-117.232528,,0.01,,9066,315,164,,,,,,20010264,,, +530,USA,en,WNRS428,,Oceanside (CA),33.181139,-117.353639,,0.01,,9072,315,164,,,,,,20010263,,, +530,USA,en,WNWZ660,,Castaic/Visitors Center (CA),34.509722,-118.61925,,0.01,,9006,317,164,,,,,,20010404,,, +530,USA,en,WPHJ953,,Lancaster (CA),34.776639,-118.16925,,0.01,,8959,317,164,,,,,,20010108,,, +530,USA,en,WPHJ953,,Palmdale (CA),34.581389,-118.134806,,0.01,,8976,317,164,,,,,,20010070,,, +530,USA,en,WE2XFZ,,Flying Horse/Felix Canyon Road (NM),33.002222,-105.048333,,0.001,,8454,306,171,,,,,,20010292,,, +530,HWA,en,WPIW528,,Honolulu (HI),21.366,-157.889472,,0.01,,11704,345,173,,,,,,20012316,,, +530,USA,en,WD2XUM,,El Centro NAF (CA),32.89,-115.787222,,0.001,,9024,314,174,,,,,,20010293,,, +531,ALG,ar,Jil FM,,F'Kirina (4),35.739722,7.347778,,300,,1822,177,51,,0000-2400,1234567,7,,57,,, +531,FRO,fo,Kringvarp Froya,,Akraberg (sdr),61.4,-6.691111,,25,,1301,328,56,,0700-2310,1234567,99995,,62,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0625-0630,12345..,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0650-0700,12345..,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0800-0815,1234567,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1208-1300,12345..,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1230-1300,.....67,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1400-1415,12345..,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0815-1208,12345..,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0815-1230,.....67,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1300-1400,12345..,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1300-2300,.....67,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1415-2300,12345..,999,,61,,, +531,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0630-0650,12345..,999,,61,,, +531,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0700-0800,12345..,999,,61,,, +531,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,2300-0625,1234..7,999,,61,,, +531,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,2300-0800,....56.,999,,61,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0625-0630,12345..,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0650-0700,12345..,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0800-0815,1234567,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1208-1300,12345..,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1230-1300,.....67,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1400-1415,12345..,999,,59,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0625-0630,12345..,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0650-0700,12345..,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0800-0815,1234567,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1208-1300,12345..,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1230-1300,.....67,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1400-1415,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0630-0650,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0700-0800,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0815-1208,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0815-1230,.....67,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1300-1400,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1300-2300,.....67,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1415-2300,12345..,,,58,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0700-0800,12345..,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0815-1208,12345..,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0815-1230,.....67,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1300-1400,12345..,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1300-2300,.....67,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1415-2300,12345..,999,,59,,, +531,E,es,RNE R Nacional,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,2300-0625,1234..7,,,58,,, +531,E,es,RNE R Nacional,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,2300-0800,....56.,,,58,,, +531,E,es,RNE R Nacional,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0630-0650,12345..,999,,59,,, +531,E,es,RNE R Nacional,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,2300-0625,1234..7,999,,59,,, +531,E,es,RNE R Nacional,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,2300-0800,....56.,999,,59,,, +531,ROU,ro,SRR R Romnia Actualităţi,,Petroşani/Aninoasa (HD),45.375111,23.343056,,14,,1445,115,60,,0000-2400,1234567,9988,,67,,, +531,G,en,R Caroline,,Tilbury/Port (EN-ESX),51.461111,0.344444,,1,,423,263,61,,0000-2400,9999999,,,2800032,,, +531,ROU,ro,SRR Antena Satelor,,Urziceni (IL),44.709772,26.61085,,14,,1695,111,63,,0000-2400,1234567,999,,1919,,, +531,IRN,fa,IRIB R Iran,,Azarshahr (eaz),37.875778,45.837322,,500,,3425,102,64,,0000-2400,1234567,2,,63,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0625-0630,12345..,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0650-0700,12345..,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0800-0815,1234567,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1208-1300,.....67,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1208-1300,12345..,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1400-1415,12345..,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0815-1208,.....67,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0815-1208,12345..,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1300-1400,12345..,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1300-2300,.....67,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1415-2300,12345..,996,,60,,, +531,E,es,RNE R Nacional,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0630-0650,12345..,996,,60,,, +531,E,es,RNE R Nacional,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0700-0800,12345..,996,,60,,, +531,E,es,RNE R Nacional,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,2300-0625,1234..7,996,,60,,, +531,E,es,RNE R Nacional,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,2300-0800,....56.,996,,60,,, +531,POL,pl,Twoje R Żywiec,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,0700-0800,1234567,,,6400004,,, +531,POL,pl,Twoje R Żywiec,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,1700-1800,1234567,,,6400004,,, +531,POL,pl,Twoje R Żywiec,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,2300-2400,1234567,,,6400004,,, +531,POL,pl,Twoje R,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,0000-0700,1234567,,,6400004,,, +531,POL,pl,Twoje R,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,0800-1700,1234567,,,6400004,,, +531,POL,pl,Twoje R,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,1800-2300,1234567,,,6400004,,, +531,POL,pl,Twoje R Włodawa,,Włodawa/miasto (LU),51.553333,23.546111,,0.8,,1176,86,70,,0700-0800,1234567,,,6400003,,, +531,POL,pl,Twoje R Włodawa,,Włodawa/miasto (LU),51.553333,23.546111,,0.8,,1176,86,70,,1700-1800,1234567,,,6400003,,, +531,POL,pl,Twoje R,,Włodawa/miasto (LU),51.553333,23.546111,,0.8,,1176,86,70,,0800-1700,1234567,,,6400003,,, +531,POL,pl,Twoje R,,Włodawa/miasto (LU),51.553333,23.546111,,0.8,,1176,86,70,,1800-0700,1234567,,,6400003,,, +531,ISR,he,IBA Reshet Aleph (A),,Tel Aviv/Yavne (tav),31.902444,34.758917,,50,,3208,123,72,,0000-2400,1234567,0,,65,,, +531,IRN,fa,IRIB R Iran/IRIB WS,,Iranshahr (sib),27.234811,60.4828,,600,,5230,100,82,,0200-1630,1234567,,,1769,,, +531,IRN,fa,IRIB R Iran/IRIB WS,,Iranshahr (sib),27.234811,60.4828,,600,,5230,100,82,,1630-2300,1234567,,,1769,,, +531,IND,,AIR North,,Jodhpur A (RJ),26.328611,72.970556,,300,,6151,91,94,,0020-1740,1234567,0,,47351,,, +531,ARS,ar,BSKSA Al-Quran al-Karim,,Bisha=Qal'at Bishah (asr),19.838394,42.622008,,10,,4757,125,95,,0000-2400,1234567,,,10600008,,, +531,BOT,,R Botswana,,Maun (nw),-20.031972,23.442556,,50,,8191,163,122,,0000-2400,1234567,,,2287,,, +531,RUS,ru,Avtor,,Yuzhno-Sakhalinsk (SL),46.962222,142.748889,,5,20,8242,29,132,,2000-1300,1234567,,,47011,,, +531,CHN,,Zhejiang zhi Sheng,,Jinhua (ZJ),29.1075,119.586944,,10,133,8902,55,133,,2130-1605,1234567,,,47350,,, +531,J,,JOQG NHK R 1,,Morioka (toh-iwa),39.629167,141.135,,10,,8916,34,133,,0000-2400,1234567,1,,47353,,, +531,THA,,Sor. Wor. Thor. (R Thailand),,Mahasarakham (msk),16.140278,103.251944,,10,,9054,75,134,,2200-1600,1234567,,,47363,,, +531,TWN,,BCC Hakka Channel,,New Taipei City/Panchiao (TP),25.006867,121.465544,,10,,9383,56,135,,2000-1800,1234567,,,48145,,, +531,TWN,,BCC Hakka Channel,,New Taipei City/Panchiao (TP),25.006867,121.465544,,10,,9383,56,135,,2000-2200,1234567,,,48145,,, +531,PHL,,DYDW-AM Radyo Diwa,,Tacloban City (lyt),11.2125,125.011944,,10,,10870,60,140,,????-1500,1234567,,,47361,,, +531,PHL,tl,DZBR-AM Radyo Balisong,,Batangas City/Capitol Hills (btg),13.765278,121.065278,,5,,10397,62,141,,,,,,47358,,, +531,CHN,,Zhejiang zhi Sheng,,Kaihua/Huanbiwu (ZJ),29.141667,118.372222,,1,,8831,55,143,,,,,,36200158,,, +531,CHN,,Zhejiang zhi Sheng,,Quzhou (ZJ),28.981778,118.833222,,1,,8871,55,143,,,,,,36200806,,, +531,CHN,,Zhejiang zhi Sheng,,Xinchang/Kexia Cun (ZJ),29.503889,120.872306,,1,,8936,53,143,,,,,,36200807,,, +531,CHN,,Zhejiang zhi Sheng,,Taishun (ZJ),27.568611,119.73,,1,,9050,55,144,,,,,,36200159,,, +531,CHN,,Zhejiang zhi Sheng,,Yunhe (ZJ),28.113889,119.575,,1,,8992,55,144,,,,,,36200160,,, +531,PHL,,DXGH-AM (r:666 DZRH-AM),,General Santos City (sco),6.143333,125.169167,,5,,11351,63,144,,,,,,47359,,, +531,J,,NHK R 1,,Nago (kyu-oki),26.674572,128.018644,,1,,9583,50,146,,0000-2400,1234567,,,47354,,, +531,J,,NHK R 1,,Niihama (shi-ehi),33.966667,133.316667,,0.5,,9144,42,147,,0000-2400,1234567,,,48558,,, +531,AUS,en,6DL ABC Midwest & Wheatbelt,,Dalwallinu (WA),-30.288833,116.609333,,10,,13958,95,150,,0000-2400,1234567,3,,47346,,, +531,INS,id,R Palanta,,Tangerang/Jatake (BT-tan),-6.2,106.575,,1,,11245,86,151,,2100-1500,1234567,,,35400016,,, +531,J,,NHK R 1,,Imari (kyu-sag),33.266667,129.883333,,0.1,,9050,45,154,,0000-2400,1234567,,,47352,,, +531,AUS,,4KZ,,Innisfail (QLD),-17.530417,146.055833,,5,,14806,58,156,,0000-2400,1234567,9986,,47347,,, +531,AUS,en,2PM,,Kempsey (NSW),-31.106194,152.835111,,5,,16430,63,161,,0000-2400,1234567,998,,47348,,, +531,AUS,en,3GG,,Warragul (VIC),-38.103222,145.925444,,5,,16536,80,162,,0000-2400,1234567,,,47349,,, +531,NZL,,1XPI R 531 PI,,Auckland/Henderson (AUK),-36.849089,174.629694,,5,,18083,33,167,,0000-2400,1234567,5,,47357,,, +531,AUS,it,5RTI R Italiana,,Adelaide/Wingfield (SA),-34.837106,138.570833,,0.5,,15802,82,169,,0000-2400,1234567,,,47345,,, +531,NZL,en,4XA More FM,,Alexandra (OTA),-45.207222,169.419167,,2,,18555,65,172,,,,,,47356,,, +534,NOR,,LF6A,b,Amoco Valhall Platform,56.270833,3.458333,,0.025,,501,339,78,,,,,L398 U387 ,86735,,, +534,NOR,,LF6W,b,Grane / Norsk Hydro Platform,59.145833,2.458333,,0.025,,820,344,81,,,,,L412 U397 ,85490,,, +534,CZE,,R,b,Ostrava / Mosnov / Rada (MO),49.6875,18.125,,0.025,,863,104,82,,,,0,L400 U400 10.0s,ID+6 gap,85491,, +534,NOR,,LFEX,b,Songa Trym,60.9375,3.625,,0.025,,996,351,83,,,,,U403 ,86736,,, +534,UKR,,LC,b,Gostomel / Antonov,50.645833,30.125,,0.025,,1647,86,89,,,,999,L1011 U1008 ,IDx2,85489,, +535,RUS,,KE,b,Kikerino,59.4375,29.458333,,0.025,,1644,51,89,,,,,L394 U402 30.0s,IDx2,85493,, +535,UKR,,RB,b,Gvardeyskoye,45.104167,33.958333,,0.025,,2154,100,95,,,,,U698 ,ID+2.5 gap,85494,, +535,UKR,,UE,b,Gvardeyskoe,45.104167,33.958333,,0.025,,2154,100,95,,,,993,L396 U382 ,85495,,, +535.4,G,,LF4I,b,Byford Dolphin (SC-SHE),61.5,1.6,,0.1,,1084,346,78,,,,-535.4,,2800052,,, +537,BUL,,P,b,Plovdiv (pld),42.0625,24.875,,0.025,,1781,122,91,,,,16,L1018 U1050 ,ID+7 gap,85497,, +537,RUS,,GW,b,Tretyakovo/Luhovitsi (MO),54.895833,39.125,,0.025,,2165,69,95,,,,,,85496,,, +537,RUS,,RJ,b,Tretyakovo/Luhovitsi (MO),54.9375,38.958333,,0.025,,2154,69,95,,,,,,85498,,, +538.5,RUS,,VA,b,Murmansk / Kippyavr (MU),69.104167,32.458333,,0.025,,2326,26,96,,,,-538.5,,85499,,, +540,HNG,hu,MR1 Kossuth Rdi,,Solt (BaK),46.834333,19.031528,,2000,,1082,118,35,,0225-2210,1234567,0,,74,,, +540,E,es,Onda Cero,,Barcelona/EAJ15 (CAT-B),41.471958,2.214119,,50,,1225,197,52,,0000-2400,1234567,30,,73,,, +540,MRC,,SNRT Al Ida Al-Watania,,Sidi Bennour (dka),32.726222,-8.287972,,300,,2459,215,57,,0000-2400,1234567,999,,2293,,, +540,KWT,ar,R Kuwait Main Arabic,,Kabd/Sulaibiyah (jah),29.133856,47.765483,,600,,4237,111,72,,0000-2400,1234567,9972,,76,,, +540,IRN,fa,IRIB R Iran,,Mashhad/Gaem (rkh),36.465528,59.496069,,200,,4451,91,79,,0000-2400,1234567,9964,,75,,, +540,NIG,,Rima R,,Sokoto (sok),12.971389,5.289944,,50,,4353,182,84,,0430-2315,1234567,,,2294,,, +540,SDN,,SRTC Sudan Nat. R,,Nyala (sdf),12.014556,24.894944,,50,,4757,153,88,,,,,,2295,,, +540,CAN,en,CBT,,Grand Falls (NL),48.950833,-55.625,,10,,4264,291,90,,,,0,,35797,,, +540,CAN,fr,CBGA-1,,Grande-Anse (NB),47.815817,-65.146853,,10,,4930,294,96,,,,5,,20109264,,, +540,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Voi (coa),-3.411092,38.620739,,100,,6878,143,106,,0200-2110,1234567,,,2290,,, +540,CAN,en,CBK,,Watrous (SK),51.68,-105.447778,,50,,6837,319,108,,,,998,,35784,,, +540,USA,en,WFLF,,Pine Hills (FL),28.481389,-81.661944,,46,,7424,287,115,,,,4,,41396,,, +540,CHN,,Haixi RGD,,Da Qaidam/QHTS917 (QH),37.371111,97.386944,,10,,6885,64,116,,,,,,47366,,, +540,CHN,zh,CNR 1,,Xianyang/SATS3 (SA),34.303889,108.705556,,50,,7819,59,118,,2025-1805,1234567,,,36200147,,, +540,CHN,zh,CNR 1,,Jagdaqi (HL),50.421389,124.158056,,10,,7203,39,119,,2025-1805,1234567,,,36201010,,, +540,CHN,zh,CNR 1,,Baiyin (GS),36.539356,104.187778,,10,,7364,60,121,,2025-1805,1234567,,,36200157,,, +540,CHN,zh,CNR 1,,Bayanhushu/NMTS077 (NM),45.719722,118.812222,,10,,7375,45,121,,2025-1805,1234567,,,36201021,,, +540,CHN,zh,CNR 1,,Fuyuan/Tongjiang Xiang (HL),48.349167,134.391111,,25,,7807,34,121,,2025-1805,1234567,,,36201013,,, +540,CHN,zh,CNR 1,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,10,,7431,54,121,,2025-1805,1234567,,,36201000,,, +540,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705972,,20,,7702,78,121,,0025-0400,1234567,,,47371,,, +540,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705972,,20,,7702,78,121,,0700-0930,1234567,,,47371,,, +540,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705972,,20,,7702,78,121,,1130-1630,1234567,,,47371,,, +540,CHN,zh,CNR 1,,Bei'an/HLTS918 (HL),48.254722,126.489444,,10,,7497,39,122,,2025-1805,1234567,,,36201020,,, +540,CHN,zh,CNR 1,,Weifang (SD),36.731389,119.136667,,50,,8187,50,122,,2025-1805,1234567,,,36200148,,, +540,CUB,es,R Rebelde,,Mais (gu),20.244444,-74.152778,,10,,7610,276,123,,,,11,,31600078,,, +540,MEX,es,XEWA-AM W R,,San Luis Potos (slp),22.157228,-100.9254,,150,,9189,297,123,,0000-2400,1234567,9978,,45009,,, +540,USA,es,WLIE,,Islip (NY),40.751667,-73.213889,,0.22,,5916,291,123,,,,1,,42168,,, +540,CHN,zh,CNR 1,,Shenyang/SARFT033 (LN),41.625278,123.300556,,20,,7955,45,124,,2025-1805,1234567,,,47370,,, +540,USA,,WWCS,,Canonsburg (PA),40.289444,-80.185278,,0.5,,6387,295,124,,,,,,43365,,, +540,CHN,zh,CNR 1,,Fujin/HLTS916 (HL),47.226667,131.950833,,10,,7819,36,125,,2025-1805,1234567,,,36201014,,, +540,CHN,zh,CNR 1,,Hefei/Sanshitou (AH),31.987667,117.329028,,50,,8515,55,125,,1200-1805,1234567,,,36200153,,, +540,CHN,zh,CNR 1,,Hefei/Sanshitou (AH),31.987667,117.329028,,50,,8515,55,125,,2025-2400,1234567,,,36200153,,, +540,CHN,zh,CNR 1,,Jiamusi (HL),46.755556,130.265,,10,,7794,37,125,,2025-1805,1234567,,,36201009,,, +540,CHN,bo,CNR 11,,Nyalam=Nielamu (XZ),27.991111,85.983889,,1,,6901,79,126,,2155-1605,1234567,,,36201230,,, +540,CHN,zh,CNR 1,,Mohe (HL),53.475278,122.348056,,1,,6859,37,126,,2025-1805,1234567,,,36201002,,, +540,CHN,zh,CNR 1,,Qitaihe (HL),45.779167,131.041944,,10,,7918,37,126,,2025-1805,1234567,,,36200998,,, +540,MWI,en,MBC R 1,,Mangochi (mgc),-14.455667,35.226667,,10,,7905,150,126,,0253-2200,1234567,,,2291,,, +540,USA,,WETC,,Wendell-Zebulon (NC),35.869167,-78.432222,,0.5,,6619,291,126,,,,,,41332,,, +540,USA,,WGOP,,Pocomoke City (MD),38.053056,-75.569722,,0.243,,6267,291,126,,,,,,41548,,, +540,CAN,en,CBMM,,Senneterre (QC),48.378333,-77.224444,,0.04,,5623,301,127,,,,,,20109073,,, +540,CHN,zh,CNR 1,,Hulin/HLTS923 (HL),45.766667,133,,10,,7999,36,127,,2025-1805,1234567,,,36201011,,, +540,CHN,zh,CNR 1,,Muling/HLTS917 (HL),44.783611,130.539444,,10,,7990,38,127,,2025-1805,1234567,,,36201001,,, +540,CHN,zh,CNR 1,,Tengchong (YN),25.059167,98.499444,,10,,7973,72,127,,2025-1805,1234567,,,36200996,,, +540,USA,,WAUK,,Jackson (WI),43.333333,-88.153056,,0.4,,6627,303,127,,,,,,42911,,, +540,VEN,,YVOV R Perija,,La Villa del Rosario (zul),10.333333,-72.216667,,20,,8327,267,127,,0900-0400,1234567,,,45415,,, +540,VEN,,YVUR LV de Manapiare,,San Juan de Manapiare (amz),5.283333,-66.033333,,25,,8351,259,127,,,,,,45479,,, +540,CHN,,Genhe RGD,,Genhe (NM),50.805556,121.518611,,1,,7056,40,128,,,,,,47367,,, +540,CHN,bo,CNR 11,,Gyangz=Jiangzi (XZ),28.904722,89.598889,,1,,7068,76,128,,2155-1605,1234567,,,36201229,,, +540,CHN,zh,CNR 1,,Kuandian (LN),40.733333,124.783333,,10,,8108,44,128,,2025-1805,1234567,,,36201007,,, +540,CHN,zh,CNR 1,,Yulong/YNTS704 (YN),27.716667,104.366667,,10,,8121,66,128,,2025-1805,1234567,,,36200991,,, +540,CHN,zh,CNR 1,,Zhuanghe (LN),39.755278,122.950278,,10,,8108,46,128,,2025-1805,1234567,,,36200989,,, +540,CHN,zh,CNR 1,,Changle/Gushanmiaocun (SD),36.752778,118.829167,,10,,8169,51,129,,2025-1805,1234567,,,36201019,,, +540,CHN,zh,CNR 1,,Chongyang (HU),31.483333,111.383333,,10,,8220,59,129,,2025-1805,1234567,,,36201017,,, +540,CHN,zh,CNR 1,,Fuyang (AH),32.929167,115.804167,,10,,8346,55,130,,2025-1805,1234567,,,36200154,,, +540,CHN,zh,CNR 1,,Jining (SD),35.466667,116.583333,,7.5,,8164,53,130,,2025-1805,1234567,,,36200151,,, +540,CHN,zh,CNR 1,,Linyi (SD),35.078333,118.328056,,10,,8293,52,130,,2025-1805,1234567,,,36200150,,, +540,CHN,zh,CNR 1,,Wuhai (NM),39.730833,106.813611,,1,,7252,56,130,,2025-1805,1234567,,,36200994,,, +540,CHN,zh,CNR 1,,Linxia/Luojiabao (GS),35.572222,103.170833,,1,,7384,62,131,,2025-1805,1234567,,,36201005,,, +540,CHN,zh,CNR 1,,Xingyi/GZTS718 (GZ),25.05,104.983333,,10,,8390,68,131,,2025-1805,1234567,,,36200993,,, +540,USA,en,WXYG,,Sauk Rapids (MN),45.605,-94.139167,,0.25,,6780,308,131,,,,,,20000063,,, +540,CHN,zh,CNR 1,,Maguan (YN),23.033333,104.4,,10,,8528,69,132,,2025-1805,1234567,,,36201004,,, +540,CHN,zh,CNR 1,,Malipo (YN),23.15,104.733333,,10,,8539,69,132,,2025-1805,1234567,,,36201003,,, +540,DOM,,HICM R ABC,,Santo Domingo (sdo),18.466667,-69.816667,,1,,7464,271,132,,0900-0400,1234567,,,37231,,, +540,GRD,en,GBN Klassic AM,,St. George's/Morne Rouge (sgg),12.0165,-61.766483,,1,,7472,260,132,,0000-2400,1234567,,,2179,,, +540,KOR,,HLCZ KBS 1 R,,Hongseong (ccb),36.598611,126.651667,,10,,8580,45,132,,0000-2400,1234567,,,47381,,, +540,CHN,zh,CNR 1,,Huangshan/Tunxi (AH),29.690833,118.308889,,10,,8777,55,133,,2025-1805,1234567,,,36200152,,, +540,CHN,zh,CNR 1,,Ji'an/JXTS802 (JX),26.824422,114.978739,,10,,8844,59,133,,2025-1805,1234567,,,36201008,,, +540,CHN,zh,CNR 1,,Shanghai/SHTS806 (SH),31.199444,121.416944,,10,,8811,52,133,,2025-1805,1234567,,,47369,,, +540,CHN,zh,CNR 1,,Xuancheng/Wuligang (AH),30.930556,118.745833,,10,,8689,54,133,,2025-1805,1234567,,,36200145,,, +540,EQA,,HCFA2 R Tropicana Canal 540,,Guayaquil (gua),-2.166667,-79.916667,,25,,9947,266,133,,1100-0600,1234567,999,,36927,,, +540,PNR,es,HOPU R Lder 540 AM,,Pedregal/San Jos (pnm),9.101878,-79.425964,,10,,8926,272,133,,1000-0400,1234567,,,52295,,, +540,USA,en,WYNN,,Florence (SC),34.218056,-79.808333,,0.166,,6838,290,133,,,,,,43537,,, +540,B,pt,ZYJ924 Rdio Jornal AM,,Aracaj (SE),-10.890967,-37.064178,,2.5,,8143,225,134,,,,,,36901013,,, +540,CHN,zh,CNR 1,,Xinzhou (SX),38.416667,112.733333,,1,,7694,54,134,,2025-1805,1234567,,,36200146,,, +540,CLM,es,HJKA R Autntica,,Bogot D. C. (bdc),4.583333,-74.066667,,10,,8956,265,134,,0000-2400,1234567,,,37521,,, +540,NCG,es,YNOW R Corporacin,,Managua/Tipitata (mng),12.229358,-86.088433,,10,,9106,280,134,,0900-0600,1234567,183,,45183,,, +540,SLV,,YSHV R Restauracion,,San Salvador (ssl),13.816667,-89.15,,10,,9173,283,134,,,,,,45280,,, +540,THA,th,Yaan Kraw haa-sii-suun 540,,Bangkok/Samsen Road (bmp),13.793661,100.519792,,10,,9078,78,134,,0000-2400,1234567,,,47390,,, +540,USA,,WGTH,,Richlands (VA),37.083611,-81.782778,,0.097,,6735,294,134,,,,,,41571,,, +540,USA,en,WPKW969,,Providence (RI),41.682333,-71.444306,,0.01,,5736,291,134,,,,,,20010421,,, +540,CHN,zh,CNR 1,,Linfen (SX),36.083611,111.577222,,1,,7832,56,135,,2025-1805,1234567,,,36201006,,, +540,CUB,es,R Rebelde,,Sancti Spritus/CTOM2 (ss),21.912044,-79.430931,,1,,7826,281,135,,,,,,31600113,,, +540,USA,,KWMT,,Fort Dodge (IA),42.495833,-94.209167,,0.17,,7036,306,135,,,,9990,,39732,,, +540,USA,,WPFI377,,Albany/50 Wolf Road (NY),42.713056,-73.814444,,0.01,,5812,294,135,,,,,,20000071,,, +540,USA,,WRGC,,Sylva (NC),35.393056,-83.193889,,0.14,,6958,293,135,,,,,,42843,,, +540,USA,en,WPFI377,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010419,,, +540,B,pt,ZYJ450 Fluminense AM,,Niteri/Rua Projetada (RJ),-22.776822,-43.045522,,10,,9609,225,136,,,,,,36901012,,, +540,CHN,zh,CNR 1,,Changzhi/Nanzhuang (SX),36.08,113.081389,,1,,7916,55,136,,2025-1805,1234567,,,36200156,,, +540,USA,en,WPPU697,,Utica (NY),43.112028,-75.211006,,0.01,,5870,295,136,,,,,,20010420,,, +540,B,pt,ZYH894 Rdio Guajajara,,Barra do Corda (MA),-5.527383,-45.261306,,1,,8046,235,137,,,,,,36901005,,, +540,CHN,zh,CNR 1,,Fushun/LNTS205 (LN),41.85,123.883333,,1,,7963,44,137,,2025-1805,1234567,,,36200155,,, +540,CHN,zh,CNR 1,,Yingkou/LNTS314 (LN),40.5125,122.205,,1,,8003,46,137,,2025-1805,1234567,,,36200992,,, +540,J,,JOJG NHK1,,Yamagata (toh-yam),38.279167,140.326111,,5,,9019,35,137,,0000-2400,1234567,,,47380,,, +540,PHL,,DZWT-AM R Veritas,,Baguio City/Mount Beckel (bgt),16.438056,120.625833,,10,,10124,61,137,,,,,,47388,,, +540,USA,,KDFT,,Ferris (D) (TX),32.513056,-96.574444,,1,,8014,300,137,,,,,,20012543,,, +540,USA,en,WQFI219,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20010423,,, +540,CHN,zh,CNR 1,,Dandong/LNTS311 (LN),40.182778,124.370833,,1,,8138,45,138,,2025-1805,1234567,,,36201015,,, +540,CHN,zh,CNR 1,,Zhaotong/YNTS697 (YN),27.330556,103.694722,,1,,8112,67,138,,2025-1805,1234567,,,36200990,,, +540,J,,JOMG NHK1,,Miyazaki (kyu-miy),31.952778,131.44,,5,,9251,44,138,,0000-2400,1234567,,,47378,,, +540,B,pt,ZYH610 Rdio Jornal,,Canind (CE),-4.357636,-39.326811,,0.25,,7610,230,139,,,,,,36901016,,, +540,MEX,es,XESURF-AM R Zion,,Tijuana (bcn),32.512467,-117.111194,,3.5,,9124,315,139,,0000-2400,1234567,999,,44825,,, +540,CHN,zh,CNR 1,,Anshun/GZTS859 (GZ),26.25,105.916667,,1,,8345,66,140,,2025-1805,1234567,,,36201022,,, +540,CHN,zh,CNR 1,,Qujing/YNTS691 (YN),25.470556,103.788611,,1,,8278,68,140,,2025-1805,1234567,,,36200997,,, +540,CHN,zh,CNR 1,,Zunyi/GZTS691 (GZ),27.533333,106.833333,,1,,8290,65,140,,2025-1805,1234567,,,36200988,,, +540,CHN,zh,CNR 1,,Guiyang (GZ),26.416667,106.6,,1,,8373,66,141,,2025-1805,1234567,,,36201012,,, +540,MEX,es,XEHS-AM La Norteita,,Los Mochis (sin),25.838333,-109.062889,,2.5,,9329,305,141,,,,,,44139,,, +540,MEX,es,XEWF-AM,,Tlalmanalco (mex),19.170356,-98.847053,,2.5,,9328,294,141,,,,,,34900005,,, +540,USA,en,WKFN,,Clarksville (TN),36.541944,-87.325556,,0.055,,7121,297,141,,,,,,41921,,, +540,ARG,,LRA25 R Nacional,,Tartagal (sa),-22.516667,-63.816667,,5,,10712,241,142,,1000-0400,1234567,,,39945,,, +540,B,pt,ZYI914 Rdio Primeiro de Julho,,gua Branca (PI),-5.894439,-42.645956,,0.25,,7937,232,142,,,,,,36901003,,, +540,CHN,zh,CNR 1,,Changsha/HNTS203 (HN),28.211544,113.051339,,1,,8607,60,142,,2025-1805,1234567,,,36201018,,, +540,INS,,RRI Pro-1,,Bandung/Gede Bage (JB-ban),-6.953667,107.688328,,10,,11387,85,142,,2200-1700,1234567,0,,47372,,, +540,CHN,zh,CNR 1,,Ningbo (ZJ),29.887778,121.486667,,1,,8935,53,143,,2025-1805,1234567,,,47368,,, +540,CHN,zh,CNR 1,,Suichang (ZJ),28.583333,119.266667,,1,,8931,55,143,,2025-1805,1234567,,,36200149,,, +540,KOR,,HLSC KBS 1 R,,Jeomcheon (gsb),36.605,128.209167,,1,,8654,44,143,,0000-2400,1234567,,,47383,,, +540,KOR,ko,HLSM KBS 1 R,,Jangheung (jen),34.683611,126.916389,,1,,8772,46,143,,0000-2400,1234567,,,47382,,, +540,KOR,ko,HLSN KBS 1 R,,Jangsu (jeb),35.730278,127.588889,,1,,8707,45,143,,0000-2400,1234567,,,52086,,, +540,MEX,es,XEWA-AM W R,,Monterrey (nvl),25.668544,-100.312378,,1,,8838,299,143,,0000-2400,1234567,,,45011,,, +540,USA,,KDFT,,Ferris (N) (TX),32.514444,-96.573889,,0.25,,8014,300,143,,,,,,38257,,, +540,USA,en,WQAC662,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010424,,, +540,CAN,en,CBYW,,Wells (BC),53.106944,-121.545833,,0.04,,7355,329,144,,,,,,20109074,,, +540,CHN,zh,CNR 1,,Changle/FJTS303 (FJ),25.946944,119.491111,,1,,9185,57,144,,2025-1805,1234567,,,36201315,,, +540,CHN,zh,CNR 1,,Dabu (GD),22.366667,113.45,,1,,9152,63,144,,2025-1805,1234567,,,36201016,,, +540,CHN,zh,CNR 1,,Pingliang (GS),35.555,136.616667,,1,,9136,39,144,,2025-1805,1234567,,,36200999,,, +540,CHN,zh,CNR 1,,Wenzhou (ZJ),28.1,120.6,,1,,9050,54,144,,2025-1805,1234567,,,36200995,,, +540,GTM,,R Cobn,,Cobn (avp),15.466667,-90.366667,,1,,9109,285,144,,,,,,52126,,, +540,J,,JOSG NHK1,,Matsumoto (chu-nag),36.216667,137.95,,1,,9127,38,144,,0000-2400,1234567,,,47377,,, +540,J,,JOSK NHK1,,Kitakyushu (kyu-fuk),33.933889,130.805278,,1,,9031,44,144,,0000-2400,1234567,,,47376,,, +540,J,,NHK R 1,,Nanao (chu-ish),37.033333,137,,1,,9007,38,144,,0000-2400,1234567,,,47379,,, +540,MEX,es,XEMIT-AM R IMER,,Comitn de Domnguez (cps),16.208883,-92.115756,,1,,9159,287,144,,1100-0700,1234567,,,44382,,, +540,USA,,WDAK,,Columbus (GA),32.432778,-84.950556,,0.038,,7309,292,144,,,,,,41120,,, +540,ARG,es,LRA14 R Nacional,,Santa F (sf),-31.649444,-60.716111,,5,,11361,233,145,,0700-0300,1234567,,,39934,,, +540,B,pt,ZYH755 Rdio Riviera,,Goinia (GO),-16.715833,-49.245128,,1,,9338,233,145,,,,,,36901010,,, +540,B,pt,ZYL331 Rdio Ipanema,,Ipanema (MG),-19.790278,-41.708889,,1,,9250,225,145,,,,,,36901006,,, +540,MEX,es,XETX-AM,,Nuevo Casas Grandes (chi),30.425,-107.911389,,0.7,,8844,307,145,,,,,,44877,,, +540,J,ja,NHK R 1,,Ishigaki (kyu-oki),24.363889,124.157778,,1,,9593,54,146,,0000-2400,1234567,,,47375,,, +540,USA,,KRXA,,Carmel Valley (CA),36.66,-121.541389,,0.5,,8931,320,146,,,,90,,38893,,, +540,USA,en,WPUN647,,Terre Haute (IL),39.446944,-87.446111,,0.01,,6894,299,146,,,,,,20010426,,, +540,B,pt,ZYH481 Rdio Regional de Irec,,Irec (BA),-11.275308,-41.861767,,0.25,,8420,229,147,,,,,,36901008,,, +540,USA,en,WPUN647,,Springfield (IL),39.8,-89.65,,0.01,,6996,301,147,,,,,,20010427,,, +540,B,pt,ZYJ778 Rdio Mirador AM,,Rio do Sul/Rua Pouso Redondo (SC),-27.253333,-49.698056,,1,,10371,228,148,,,,,,36901014,,, +540,PRU,es,OCX2D R San Antonio,,Trujillo (lal),-8.116667,-79.033333,,1,,10410,261,148,,,,,,52284,,, +540,ARG,,LU17 R Golfo Nuevo,,Puerto Madryn (ch),-42.766667,-65.016667,,5,,12576,229,149,,0000-2400,1234567,,,40211,,, +540,B,pt,ZYK322 Rdio Sep Tiaraj,,Santo ngelo (RS),-28.283333,-54.266667,,1,,10704,231,149,,,,,,36901011,,, +540,CAN,en,CBKO,,Coal Harbour (BC),50.601111,-127.573056,,0.04,,7803,331,149,,,,,,20109076,,, +540,PRU,es,OBX4E R Inca del Per,,Lima (lim),-12.05,-77.05,,1,,10622,257,149,,0000-2400,1234567,,,52283,,, +540,CAN,en,CBXQ,,Ucluelet (BC),48.945556,-125.551944,,0.04,,7896,329,150,,,,,,20109075,,, +540,PHL,tl,DYRB-AM Radyo Asenso,,Cebu City/Mambaling (ceb),10.283508,123.875539,,1,,10888,62,150,,????-1200,1234567,,,47387,,, +540,USA,,KMLB,,Monroe (LA),32.621944,-92.064167,,0.026,,7735,297,150,,,,,,39007,,, +540,USA,,WASG,,Daphne (AL),30.745556,-88.094444,,0.019,,7648,293,151,,,,,,40748,,, +540,B,pt,ZYK226 Rdio Real,,Canoas (RS),-29.912778,-51.206389,,0.5,,10700,227,152,,,,,,36901007,,, +540,B,pt,ZYK697 Rdio Uirapuru,,Birigui (SP),-21.326394,-50.354489,,0.25,,9838,231,152,,,,,,36901001,,, +540,B,pt,ZYK734 Rdio Nova Sumar,,Sumar/Avenida Soma (SP),-22.824853,-47.258933,,0.25,,9821,228,152,,,,,,36901009,,, +540,USA,en,WPJM930,,Chanute/2030 W 14th St. (KS),37.677633,-95.478583,,0.01,,7509,303,152,,,,,,20010428,,, +540,AUS,en,4QL ABC Western Queensland,,Longreach (QLD),-23.389261,144.223489,,10,,15230,65,154,,0000-2400,1234567,5,,47364,,, +540,B,pt,ZYJ322 Rdio Nova Era,,Borrazpolis (PR),-23.933333,-51.5875,,0.25,,10152,231,154,,,,,,36901004,,, +540,CHL,,CB54 R Ignacio Serrano,,Melipilla (RM),-33.663669,-71.257383,,1,,12139,239,154,,1100-0400,1234567,,,35752,,, +540,CLN,,KTK,b,Bandaranaike Intl (Katunayake) (gmp),7.183333,79.883333,,0.025,,8252,99,155,,,,51,,34700024,,, +540,USA,en,WPDI548,,Denver (CO),39.844361,-104.727697,,0.01,,7827,311,155,,,,,,20010418,,, +540,USA,en,WPVT605,,Bellingham (WA),48.782861,-122.494306,,0.01,,7801,327,155,,,,,,20010425,,, +540,CHL,,CD54 R Calle Saval,,Valdivia (LL),-39.766667,-73.216667,,1,,12768,236,156,,1000-0400,1234567,,,35900,,, +540,USA,,KNMX,,Las Vegas (NM),35.573611,-105.171389,,0.02,,8230,308,156,,,,155,,39002,,, +540,USA,en,WNPZ394,,Georgetown (CO),39.721111,-105.6925,,0.01,,7888,311,156,,,,,,20010417,,, +540,USA,en,WQIH850,,Burien (WA),47.477639,-122.344314,,0.01,,7920,326,156,,,,,,20010416,,, +540,USA,en,WQJW697 Sammanish Advisory R,,Sammanish/Beaver Lake Park SE corner of 244 Avenue SE and SE 24th Street (WA),47.585417,-122.012333,,0.01,,7897,326,156,,,,,,20016255,,, +540,USA,en,WQJW697 Sammanish Advisory R,,Sammanish/NE Sammamish Park NW corner of Sahalle Way NE and NE 36th Street (WA),47.642556,-122.056333,,0.01,,7893,326,156,,,,,,20016254,,, +540,USA,en,KYAH,,Delta (UT),39.336667,-112.555833,,0.013,,8264,315,158,,,,,,38960,,, +540,USA,en,WQBQ728,,Castle Rock (WA),46.293547,-122.910983,,0.01,,8056,326,158,,,,,,20010422,,, +540,GTM,,R Amistad,,San Pedro La Laguna (sol),14.683333,-91.266667,,0.025,,9237,285,160,,,,,,52127,,, +540,USA,,KVIP,,Redding (CA),40.623611,-122.280278,,0.014,,8578,323,161,,,,99935,,39628,,, +540,SMO,,2AP SBC R 1,,Apia/Mulinu'u (tum),-13.81745,-171.780253,,2.5,,15754,357,162,,1600-1000,123456,,,47389,,, +540,SMO,,2AP SBC R 1,,Apia/Mulinu'u (tum),-13.81745,-171.780253,,2.5,,15754,357,162,,2000-1000,......7,,,47389,,, +540,AUS,,7SD,,Scottsdale (TAS),-41.110167,147.544722,,5,,16851,83,163,,0000-2400,1234567,,,47365,,, +540,NZL,en,1XC NZs Rhema,,Tauranga/Papamoa (BOP),-37.722222,176.339444,,5,,18233,30,167,,0000-2400,1234567,,,47385,,, +540,NZL,en,2XV NZs Rhema,,New Plymouth/Kaimata (TKI),-39.183333,174.266667,,4,,18301,38,168,,0000-2400,1234567,,,47384,,, +540,USA,en,WE2XDB,,Wichita (KS),37.6875,-97.220833,,0.0001,,7607,304,173,,,,,,20010415,,, +540,USA,en,WE2XFZ,,Chilocco (OK),36.937222,-97.071389,,0.0001,,7663,304,174,,,,,,20010429,,, +544,NOR,,LF5N,b,Phillips / Ekofisk 2 / 4K,56.5625,3.208333,,0.025,,537,339,78,,,,,L428 ,86737,,, +544,NOR,,LF5U,b,Ekofisk 2,56.520833,3.208333,,0.025,,532,338,78,,,,,L400 U400 ,86738,,, +544,NOR,,LF5E,b,Huldra Platform,60.854167,2.625,,0.025,,999,348,83,,,,,L397 U407 7.5s,85500,,, +544,NOR,,LFAA,b,West Venture,60.729167,3.541667,,0.025,,974,351,83,,,,,,86739,,, +544,XOE,,WPH,b,West Phoenix,60.520833,2.041667,,0.025,,973,346,83,,,,,,86741,,, +544,NOR,,LFFM,b,Songa Delta,61.645833,2.125,,0.025,,1091,348,84,,,,,,86740,,, +549,D,de,Deutschlandfunk,,Nordkirchen/Piekenbrock (nrw),51.755,7.538611,,100,,87,117,15,,0000-2400,1234567,0,,82,,, +549,D,de,Deutschlandfunk,,Thurnau/Tannfeld (bay),49.9875,11.376667,,100,,420,122,41,,0000-2400,1234567,0,,83,,, +549,ALG,ar,Jil FM,,Sidi Hamadouche (22),35.287778,-0.5825,,300,,1951,199,52,,0000-2400,1234567,0,,79,,, +549,IRL,en,Spirit R,,Carrickroe (MN),54.349717,-7.04385,,25,,928,291,52,,0000-2400,1234567,2,,4100002,,, +549,SVN,sl,R Koper,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,0500-2300,1234567,9,,94,,, +549,SVN,sl,R Slovenija 1,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,0300-0500,.2.....,9,,94,,, +549,SVN,sl,R Slovenija 1,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,2300-0500,0.234567,9,,94,,, +549,ARS,ar,BSKSA Idha'atu-i Riyadh,,Qurayyat (jwf),31.428722,37.380028,,2000,148,3401,120,58,,0300-1500,1234567,,,80,,, +549,UKR,uk,UR 1 Persha Prog.,,Mykolaiv/Luch (MY),46.813222,32.203561,,55,,1943,97,59,,0300-2100,1234567,2,,98,,, +549,AZE,az,Azərbaycan R,,Gəncə=Gnc (gan),40.61475,46.333783,,70,90,3268,97,71,,0200-2000,1234567,,,81,,, +549,IRN,fa,IRIB R Iran,,Sirjan (krm),29.613625,55.804639,,400,,4724,102,78,,0000-2400,1234567,60,,85,,, +549,ARS,ar,BSKSA Idha'atu-i Riyadh,,Rafha/Al-Jumaimah (hsh),29.589222,43.594611,,20,,3936,115,83,,0300-2300,1234567,,,47058,,, +549,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar Rass (qsm),25.869089,43.530711,,10,,4257,119,90,,0300-2300,1234567,,,10600007,,, +549,TJK,ru,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,0600-0800,1234567,,,47096,,, +549,TJK,ru,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,1400-1600,1234567,,,47096,,, +549,TJK,tg,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,0300-0600,1234567,,,47096,,, +549,TJK,tg,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,0800-1400,1234567,,,47096,,, +549,TJK,tg,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,1600-1900,1234567,,,47096,,, +549,NIG,xx,Voice of Ekiti,,Ado-Ekiti (ekt),7.633333,5.216667,,25,,4947,182,93,,0500-2300,1234567,,,6200008,,, +549,GAB,fr,RTG Chine 2,,Oyem (wnt),1.614394,11.580617,,20,,5635,173,100,,0430-0630,1234567,,,2296,,, +549,GAB,fr,RTG Chine 2,,Oyem (wnt),1.614394,11.580617,,20,,5635,173,100,,1030-1430,1234567,,,2296,,, +549,GAB,fr,RTG Chine 2,,Oyem (wnt),1.614394,11.580617,,20,,5635,173,100,,1600-2230,1234567,,,2296,,, +549,ARS,ar,BSKSA Idha'atu-i Riyadh,,Jizan=Gizan (jzn),16.867956,42.567561,,1,,5036,127,107,,0300-2300,1234567,,,47057,,, +549,IND,,AIR East,,Ranchi A (BR),23.407778,85.226944,,100,,7226,83,109,,0025-0410,1234567,,,47396,,, +549,IND,,AIR East,,Ranchi A (BR),23.407778,85.226944,,100,,7226,83,109,,0700-0950,1234567,,,47396,,, +549,IND,,AIR East,,Ranchi A (BR),23.407778,85.226944,,100,,7226,83,109,,1130-1741,1234567,,,47396,,, +549,CHN,,CNR 5 Zhonghua zhi Sheng,,Putian/SARFT824 (FJ),25.465056,119.165833,,1200,125,9210,57,114,,2055-1705,1234567,9996,,47392,,, +549,CHN,zh,Alxa Zuoqi RGD,,Alxa Zuoqi=Alashan Zuoqi/NMTS782 (NM),38.821944,105.688333,,10,,7263,58,120,,,,,,47393,,, +549,VTN,vi,VOV2,,My Van/Bần Yn Nhn-VN3 (hyn),20.913717,106.077211,,200,,8820,70,120,,2145-1700,1234567,,,47411,,, +549,THA,th,Sor. Wor. Sor.,,Lampang/Chiang Mai Road (lpg),18.308417,99.413944,,100,,8612,76,122,,2130-1640,1234567,,,47408,,, +549,CHN,,Chifeng RGD,,Chifeng/NMTS915 (NM),42.339722,118.878889,,10,,7675,47,124,,2130-1430,1234567,,,47394,,, +549,CHN,zh,Zhengzhou RGD Xinwen,,Zhengzhou/HETS804 (HE),34.778056,113.579444,,10,,8058,55,128,,2150-1700,1234567,,,47395,,, +549,CHN,zh,Chifeng RGD,,Daban/NMTS805 (NM),43.533333,118.666667,,1,,7559,46,133,,,,,,36200987,,, +549,CHN,zh,Chifeng RGD,,Tianshan/NMTS806 (NM),43.865278,120.081944,,1,,7599,45,133,,,,,,36200986,,, +549,CHN,zh,Chifeng RGD,,Wudan/NMTS804 (NM),42.933333,119.016667,,1,,7629,47,133,,,,,,36200985,,, +549,THA,,Sor. Wor. Thor. (R Thailand),,Mukdahan (mdn),16.545,104.680556,,10,,9112,73,134,,????-1510,1234567,,,47409,,, +549,J,,JOAP NHK1,,Naha/Tomigusuku (kyu-oki),26.178333,127.704167,,10,,9613,50,136,,0000-2400,1234567,3,,47397,,, +549,PHL,,DXHM-AM Radyo Totoo,,Mati City/Madang (dvo),6.955556,126.216667,,5,,11339,62,144,,2000-1300,1234567,,,47402,,, +549,AUS,,2CR ABC Central West NSW,,Cumnock/Orange (NSW),-32.934083,148.711083,,50,,16325,70,151,,0000-2400,1234567,6,,47391,,, +549,INS,id,R Inyong,,Depok (JB-kde),-6.433333,106.823611,,1,,11282,86,151,,2145-1800,1234567,,,35400017,,, +549,NZL,en,2XC LiveSPORT,,Napier/Opapa (HKB),-39.797222,176.675,,5,67,18456,32,168,,0000-2400,1234567,,,47399,,, +549,NZL,en,NZs Rhema,,Kaitaia/Awanui (NTL),-35.063056,173.258333,,2,,17851,34,170,,0000-2400,1234567,,,47400,,, +549,NZL,en,R Sport,,Nelson/Stoke (NSN),-41.329167,173.215278,,2,,18455,45,172,,0000-2400,1234567,,,47401,,, +550,USA,,WSAU,,Wausau (WI),44.857222,-89.586944,,20,,6589,305,110,,,,,,42952,,, +550,USA,en,WGR,,Buffalo (NY),42.769722,-78.843611,,5,,6119,297,111,,,,7,,41555,,, +550,USA,en,WDEV,,Waterbury (VT),44.354722,-72.751944,,1,,5630,295,113,,,,,,41153,,, +550,USA,en,WSJW,i,Pawtucket (D) (RI),41.905556,-71.398889,,1,,5717,291,114,,,,,,41142,,, +550,USA,en,WSJW,i,Pawtucket (N) (RI),41.905,-71.399444,,0.5,,5718,291,117,,,,,,20016063,,, +550,VEN,,YVKE Mundial,,Caracas (dcf),10.536303,-66.925836,,100,,7949,263,117,,0000-2400,1234567,,,45352,,, +550,USA,,KFYR,,Bismarck (ND),46.853333,-100.543611,,5,,7010,313,120,,,,999,,38451,,, +550,USA,,KTRS,,St. Louis (MO),38.6625,-90.128611,,5,,7116,300,121,,,,9975,,39537,,, +550,USA,,WSVA,,Harrisonburg (VA),38.451111,-78.908056,,1,,6449,293,121,,,,,,43083,,, +550,ALS,,KTZN,,Anchorage (AK),61.166111,-149.826111,,5,,7244,348,122,,0000-2400,1234567,1,,39557,,, +550,PTR,es,WPAB,,Ponce (PR),17.990833,-66.63,,5,,7287,268,123,,0000-2400,1234567,,,42640,,, +550,USA,,WKRC,,Cincinnati (OH),39.008056,-84.444167,,1,,6748,297,124,,,,,,42062,,, +550,USA,en,WDUN,,Gainesville (GA),34.335556,-83.792222,,2.5,,7081,293,124,,,,,,41215,,, +550,CLM,es,HJZQ R Nacional de Colombia,,Neiva (hui),2.933333,-75.333333,,50,,9187,265,127,,,,,,35901353,,, +550,CUB,es,R Rebelde,,Pinar del Ro/CTOM1 (pr),22.368153,-83.739372,,12,,8074,284,127,,,,2,,31600026,,, +550,B,pt,ZYI796 R Meridional AM,,Garanhuns/Fazenda Bela Vista (PE),-8.865111,-36.499389,,5,,7913,225,129,,,,,,36901022,,, +550,CLM,es,HJHF R Nacional de Colombia,,Marinilla (ant),6.15,-75.366667,,25,,8907,267,129,,,,2,,37469,,, +550,USA,,WIOZ,,Pinehurst (NC),35.151111,-79.477778,,0.26,,6742,291,130,,,,,,41787,,, +550,CTR,,TISCL R Santa Clara,,Ciudad Quesada (alj),10.333333,-84.433333,,20,,9160,277,131,,1100-0300,1234567,,,52141,,, +550,USA,en,KARI,,Blaine (WA),48.954167,-122.743333,,2.5,,7794,327,131,,,,9983,,37964,,, +550,EQA,,HCGB1,,Quito (pic),-0.166667,-78.5,,25,,9675,266,132,,,,,,36946,,, +550,USA,,KOAC,,Corvallis (OR),44.636667,-123.1925,,5,,8227,325,132,,,,9996,,39043,,, +550,NCG,,YNCH R 19 de Julio La 19,,Chinandega (cnd),13.016667,-86.9,,10,,9092,281,134,,1000-0200,1234567,,,52182,,, +550,USA,,KBOW,,Butte (MT),45.975,-112.571667,,1,,7657,319,134,,,,,,38077,,, +550,USA,,KTSA,,San Antonio (D) (TX),29.494722,-98.414444,,5,,8386,300,134,,,,,,20016069,,, +550,USA,,KTSA,,San Antonio (N) (TX),29.496111,-98.415,,5,,8386,300,134,,,,,,39540,,, +550,B,pt,ZYL263 R.Sociedade Norte de Minas,,Montes Claros (MG),-16.761111,-43.896389,,5,,9061,228,137,,,,,,36901025,,, +550,USA,,KLLV,,Breen (CO),37.183889,-108.081667,,1.8,,8238,311,137,,,,,,38828,,, +550,USA,,KUZZ,,Bakersfield (CA),35.340278,-118.938611,,5,,8941,318,137,,,,9999,,39607,,, +550,USA,en,WQEY242,,Brooklyn/241 37th Street (NY),40.666778,-73.983472,,0.01,,5971,292,137,,,,,,20010432,,, +550,USA,en,WQEY242,,New York (NY),40.731778,-73.877661,,0.01,,5960,292,137,,,,,,20010433,,, +550,B,pt,ZYI429 RCN 550 AM-R.Capital do Norte,,Sinop (MT),-11.910586,-55.525028,,5,,9242,240,138,,,,,,36901017,,, +550,B,pt,ZYJ331 Rdio Banda B,,Curitiba (PR),-25.356944,-49.05,,10,,10156,228,138,,,,,,36901024,,, +550,USA,,WAME,,Statesville (NC),35.793333,-80.854167,,0.053,,6779,292,138,,,,,,40705,,, +550,B,pt,ZYI907 Rdio Globo,,Parnaba/Ilha do Tabuleiro (PI),-2.938611,-41.786111,,0.25,,7604,233,139,,,,,,36901026,,, +550,PRG,,ZP16 R Parque,,Ciudad del Este (apa),-25.466667,-54.716667,,10,,10464,232,139,,,,,,45512,,, +550,USA,,KRAI,,Craig (CO),40.545833,-107.531111,,0.5,,7908,313,139,,,,,,39217,,, +550,B,pt,ZYH644 Rdio Vale do Quino,,Acopiara (CE),-6.091961,-39.465306,,0.25,,7788,229,141,,,,,,36901027,,, +550,USA,,KCRS,,Midland (TX),32.069444,-102.029444,,1,,8369,304,141,,,,,,38205,,, +550,USA,,KFRM,,Salina (KS),39.434444,-97.660278,,0.11,,7483,306,141,,,,,,38426,,, +550,URG,es,CW1 R Colonia,,Colonia del Sacramento (co),-34.368139,-57.841472,,10,,11455,230,142,,0000-2400,1234567,,,36740,,, +550,USA,,WAYR,,Orange Park (FL),30.0725,-81.79,,0.065,,7301,288,142,,,,,,40787,,, +550,USA,,KFYI,i,Phoenix (AZ),33.388056,-112.006111,,1,,8788,312,143,,,,2,,38448,,, +550,HND,,HRH,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37763,,, +550,B,pt,ZYI902 Rdio Serra da Capivara,,So Raimundo Nonato (PI),-9.000072,-42.689978,,0.25,,8241,231,145,,,,,,36901019,,, +550,MEX,es,XEQW-AM Mexicansima,,Mrida (yuc),20.905,-89.585278,,0.5,,8583,288,145,,,,,,44639,,, +550,MEX,es,XEZK-AM Poder 55,,Tepatitln de Morelos (jal),20.845811,-102.736944,,1,,9417,298,145,,,,,,45144,,, +550,HWA,en,KNUI,,Wailuku (DN) (HI),20.890556,-156.488889,,5,,11729,343,146,,,,,,20016300,,, +550,HWA,en,KNUI,,Wailuku (U) (HI),20.891389,-156.489722,,5,,11729,343,146,,0000-2400,1234567,0,,38946,,, +550,MEX,es,XEACD-AM Los 40 Principales,,Acapulco (gue),16.844817,-99.913592,,1,,9603,293,146,,,,,,43690,,, +550,FLK,en,BFBS R,,Bush Rincon (efl),-51.807056,-58.299611,,10,,13039,219,147,,0000-2400,1234567,,,52404,,, +550,SLV,,YSFG,,Sonsonate (ssn),13.716667,-89.716667,,0.5,,9219,283,147,,,,,,45275,,, +550,B,pt,ZYL225 Rdio Cataguases,,Cataguases (MG),-21.384956,-42.695958,,0.5,,9455,225,148,,,,,,36901028,,, +550,B,pt,ZYK578 Rdio Mantiqueira,,Cruzeiro (SP),-22.556089,-44.932983,,0.5,,9679,226,149,,,,,,36901023,,, +550,MEX,es,XEHLL-AM Los 40 Principales,,Salina Cruz (oax),16.239478,-95.212853,,0.25,,9357,289,151,,,,,,44125,,, +550,B,pt,ZYK700 Super Rdio Educao e Cultura,,Sertozinho (SP),-21.165656,-47.910892,,0.25,,9695,229,152,,,,,,36901018,,, +550,MEX,es,XEPL-AM,,Ciudad Cuauhtmoc (chi),28.414183,-106.917281,,0.15,,8973,305,152,,,,,,44558,,, +550,USA,en,WPUA238,,North Little Rock (AR),34.777056,-92.277628,,0.01,,7566,299,153,,,,,,20010430,,, +550,MEX,es,XETNC-AM R Aztln,,Tepic (nay),21.520333,-104.87,,0.15,,9484,300,154,,,,,,44840,,, +550,B,pt,ZYK287 Rdio Santa Cruz do Sul,,Santa Cruz do Sul (RS),-29.730556,-52.45,,0.25,,10746,228,155,,,,,,36901021,,, +550,PRG,,ZP48,,Mariscal Estigarribia (bqn),-22.016667,-60.966667,,0.25,,10498,239,155,,,,,,45544,,, +550,CHL,,CD55 R LV de la Tierra,,Angol (AI),-45.416667,-72.716667,,1,,13203,232,158,,,,,,35903,,, +550,USA,en,WQHK896,,Long Beach/575 Pier T Ave (CA),33.761028,-118.227644,,0.01,,9059,316,164,,,,,,20010431,,, +553,XOE,,RGV,b,Rowan Gorilla V,57.020833,1.875,,0.025,,619,334,79,,,,,L411 U389 ,86742,,, +554,RUS,,OG,b,Russky Kameshkir,52.854167,46.125,,0.025,,2656,72,100,,,,,L399 ,85502,,, +555,RUS,,JC,b,Kozelsk,54.0625,35.791667,,0.025,,1960,72,93,,,,,15.0s,IDx2 +3 gap,85503,, +555,RUS,,MZ,b,Mezen,65.854167,44.208333,,0.025,,2588,39,99,,,,,U1041 ,85504,,, +558,ROU,ro,SRR R Romnia Actualităţi,,Trgu Jiu (GJ),45.017778,23.292556,,400,145,1466,116,46,,0600-2200,1234567,1,,108,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0625-0630,12345..,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0650-0700,12345..,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0800-0815,1234567,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1208-1300,12345..,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1230-1300,.....67,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1400-1415,12345..,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0815-1208,12345..,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0815-1230,.....67,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1300-1400,12345..,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1300-2300,.....67,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1415-2300,12345..,,,101,,, +558,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0630-0650,12345..,,,101,,, +558,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0700-0800,12345..,,,101,,, +558,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,2300-0625,1234..7,,,101,,, +558,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,2300-0800,....56.,,,101,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0625-0630,12345..,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0650-0700,12345..,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0800-0815,1234567,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1208-1300,12345..,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1230-1300,.....67,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1400-1415,12345..,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0815-1208,12345..,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0815-1230,.....67,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1300-1400,12345..,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1300-2300,.....67,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1415-2300,12345..,0,,102,,, +558,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0630-0650,12345..,0,,102,,, +558,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0700-0800,12345..,0,,102,,, +558,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,2300-0625,1234..7,0,,102,,, +558,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,2300-0800,....56.,0,,102,,, +558,SVN,hu,Muravidki Magyar Rdi,,Murska Sobota/Nemčavci (ms),46.685639,16.173722,,10,,928,127,56,,0445-2300,1234567,9987,,110,,, +558,SVN,sl,R Slovenija 1,,Murska Sobota/Nemčavci (ms),46.685639,16.173722,,10,,928,127,56,,2300-0445,1234567,9987,,110,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0625-0630,12345..,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0650-0700,12345..,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0800-0815,1234567,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1208-1300,12345..,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1230-1300,.....67,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1400-1415,12345..,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0815-1208,12345..,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0815-1230,.....67,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1300-1400,12345..,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1300-2300,.....67,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1415-2300,12345..,47,,100,,, +558,E,es,RNE R Nacional,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0630-0650,12345..,47,,100,,, +558,E,es,RNE R Nacional,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0700-0800,12345..,47,,100,,, +558,E,es,RNE R Nacional,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,2300-0625,1234..7,47,,100,,, +558,E,es,RNE R Nacional,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,2300-0800,....56.,47,,100,,, +558,G,,Israel R,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2330-2400,.....6.,9996,,105,,, +558,G,,KBS World R,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2300-2330,.....6.,9996,,105,,, +558,G,,R Fatima,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0600-0700,1234567,9996,,105,,, +558,G,,Tikkun Spectrum,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1500-1530,12345..,9996,,105,,, +558,G,ar,Arabic Spectrum,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1530-1600,12345..,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0000-0400,......7,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0700-1300,.....6.,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0700-1500,12345..,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0700-1600,......7,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1400-1600,.....6.,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2300-0400,12345..,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2300-2400,......7,9996,,105,,, +558,G,en,China R Int.,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1600-1800,1234567,9996,,105,,, +558,G,en,China R Int.,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2100-2200,1234567,9996,,105,,, +558,G,ga,Irish Spectrum,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0000-0200,1......,9996,,105,,, +558,G,ga,Irish Spectrum,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1300-1400,.....6.,9996,,105,,, +558,G,sh,Amrit Vela,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0400-0600,1234567,9996,,105,,, +558,G,ta,ILC Tamil,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1800-2100,1234567,9996,,105,,, +558,G,zh,China R Int.,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2200-2300,1234567,9996,,105,,, +558,IRN,fa,IRIB R Farhang,,Gheslagh (qzv),36.019525,50.392556,,1000,,3865,100,66,,0000-2400,1234567,9902,,106,,, +558,ALG,ar,R Ouargla,,Touggourt (30),33.151389,6.065278,,10,,2108,181,68,,0800-1600,1234567,,,781,,, +558,EGY,,ERTU Educational,,Abu Za'bal (qlb),30.277667,31.368417,,100,,3170,130,69,,0400-2200,1234567,,,103,,, +558,ARS,,BSKSA R Saudi Int.,,Jeddah/Al-Nuzla (mkh),21.380875,39.420933,,50,,4436,128,84,,0500-2100,1234567,,,47059,,, +558,CHN,ug,Xinjiang RGD Uighur/CNR 13,,rmqi/Hutubi-XJTS631 (XJ),44.160694,86.923014,,120,,5727,65,94,,2300-1805,1234567,2,,47422,,, +558,SSD,,Southern Sudan R,,Bentiu (uni),9.251033,29.798289,,10,,5215,148,99,,,,,,9400009,,, +558,IND,,AIR Asmita Channel,,Mumbai B=Bombay (MH),19.186944,72.8115,,100,,6734,96,104,,1130-1840,123456,54,,47424,,, +558,IND,,AIR Asmita Channel,,Mumbai B=Bombay (MH),19.186944,72.8115,,100,,6734,96,104,,1200-1840,......7,54,,47424,,, +558,IND,,AIR Asmita Channel,,Mumbai B=Bombay (MH),19.186944,72.8115,,100,,6734,96,104,,2355-1035,1234567,54,,47424,,, +558,KEN,,KBC Western,,Kapsimotwa (rif),0.081111,35.146944,,20,,6376,145,108,,0300-2005,1234567,,,2298,,, +558,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Guma=Pishan/XJTS8110 (XJ),37.580278,78.273333,,3,,5642,77,109,,2300-1805,1234567,,,36200142,,, +558,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Kashgar=Kashi/XJTS635 (XJ),39.409722,75.921944,,1,,5355,76,111,,2300-1805,1234567,,,36200984,,, +558,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Yutian=Keriya/XJTS8111 (XJ),36.867778,81.648889,,3,,5918,75,111,,2300-1805,1234567,,,36200139,,, +558,BGD,,Bangladesh Betar,,Khulna/Noapara (Jessore) (khu),23.048872,89.379644,,100,,7537,81,112,,0000-0400,1234567,,,47418,,, +558,BGD,,Bangladesh Betar,,Khulna/Noapara (Jessore) (khu),23.048872,89.379644,,100,,7537,81,112,,0600-1710,1234567,,,47418,,, +558,KOR,ko,HLQH KBS 2 R,,Yeong-il (dae),36.081944,129.554444,,250,,8767,44,119,,1950-1800,1234567,,,47434,,, +558,BOT,,R Botswana,,Muchenje (nw),-17.953083,24.696753,,50,,7990,162,120,,0000-2400,1234567,,,20600001,,, +558,CHN,,Baotou RGD,,Baotou/NMTS530 (NM),40.614417,109.839978,,10,,7348,54,121,,2155-1600,1234567,,,47419,,, +558,MWI,en,MBC R 1,,Karonga (krg),-9.950097,33.916733,,10,,7385,150,121,,0253-2200,1234567,,,2299,,, +558,VTN,vi,VOV2,,Hồ Ch Minh/Qun Tre (hcm),10.848333,106.629167,,100,,9743,75,126,,2145-1700,1234567,,,47443,,, +558,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Jianyang/FJTS801 (FJ),27.316667,118.136111,,50,,8983,57,127,,,,,,36200143,,, +558,THA,th,Sor. Wor. Sor.,,Songkhla/Ko Yo Road (sgk),7.143611,100.571389,,50,,9664,82,129,,2130-1640,1234567,,,47441,,, +558,CHN,zh,Zalantun RGD,,Zalantun/NMTS696 (NM),48,122.741667,,1,,7357,41,131,,,,,,47421,,, +558,J,ja,JOCR CRK R Kansai,,Kobe (kns-hyo),34.548611,134.999722,,20,45,9164,41,131,,0000-1800,......7,16,,47432,,, +558,J,ja,JOCR CRK R Kansai,,Kobe (kns-hyo),34.548611,134.999722,,20,45,9164,41,131,,0000-2400,123456,16,,47432,,, +558,J,ja,JOCR CRK R Kansai,,Kobe (kns-hyo),34.548611,134.999722,,20,45,9164,41,131,,2000-2400,......7,16,,47432,,, +558,PHL,,DZXL-AM Radyo Mo-RMN News,,Obando/Paco (ncr),14.736944,120.915556,,40,,10298,62,132,,0000-2400,1234567,9996,,47436,,, +558,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Xiapu/FJTS904 (FJ),26.883333,120,,10,,9128,56,134,,,,,,36200141,,, +558,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Longyan/FJTS601 (FJ),25.061633,117.028256,,10,,9123,59,134,,,,,,36200208,,, +558,THA,,Sor. Wor. Thor. (R Thailand),,Kanchanaburi (knb),14.063333,99.486944,,10,,8985,79,134,,2200-1600,1234567,,,47440,,, +558,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Pingtan/FJTS302 (FJ),25.516667,119.783333,,10,,9241,57,135,,2155-1600,1234567,,,47420,,, +558,CHN,,Hebei RGD Nongcun Pindao,,Baoding/HBTS662 (HB),38.932778,115.443056,,1,,7796,51,135,,,,,,36200144,,, +558,CHN,,Hebei RGD Nongcun Pindao,,Shijiazhuang/HBTS717 (HB),37.830833,114.468889,,1,,7840,53,135,,,,,,36200140,,, +558,CHN,,Nujiang RGD,,Lushui/Liuku Zhen (YN),25.966667,98.833333,,1,,7918,72,136,,,,,,36200983,,, +558,AUS,en,6WA ABC Great Southern WA,,Wagin/Arthur River Road (WA),-33.336389,117.092389,,50,,14227,98,144,,0000-2400,1234567,9993,,47417,,, +558,TWN,,Fu Hsing Kuangpo Tientai 1,,Taipei (TPS),25.090206,121.511994,,1,,9378,56,145,,0000-2400,1234567,,,47442,,, +558,INS,id,R.Diantara Vita Kharisma (DVK),,Kebumen (JT-keb),-7.683889,109.670833,,0.5,,11585,84,155,,2100-1700,1234567,,,47428,,, +558,AUS,,4AM,,Atherton/Mareeba (QLD),-17.023667,145.479194,,5,,14726,58,156,,0000-2400,1234567,,,47414,,, +558,FJI,fj,R Fiji 1,,Naulu (CE-NT),-18.069833,178.532122,,12,,16168,13,157,,0000-2400,1234567,,,47423,,, +558,AUS,en,4GY Classic Hits 558,,Gympie/Wolvi (QLD),-26.170556,152.824722,,5,,15993,57,160,,0000-2400,1234567,9975,,47416,,, +558,AUS,,7BU,,Burnie/Table Cape (TAS),-40.962233,145.723206,,2,,16718,84,166,,0000-2400,1234567,,,47415,,, +558,NZL,en,R Sport,,Invercargill/Dacre (STL),-46.320278,168.621389,,5,,18577,70,168,,0000-2400,1234567,,,47435,,, +560,USA,,WGAN,,Portland (ME),43.69,-70.318056,,5,,5524,293,105,,,,0,,41473,,, +560,USA,,WFIL,,Philadelphia (PA),40.095,-75.277222,,5,,6095,292,111,,,,9983,,41386,,, +560,USA,,WHYN,,Springfield (MA),42.193611,-72.683889,,1,,5778,293,115,,,,,,41705,,, +560,USA,,WEBC,,Duluth (MN),46.643611,-91.985833,,5,,6581,308,116,,,,,,41240,,, +560,USA,,WIND,,Chicago (IL),41.565,-87.419722,,5,,6724,301,117,,,,,,41766,,, +560,CAN,en,CFOS,,Owen Sound (ON),44.544444,-80.901944,,1,,6112,300,118,,,,4,,35994,,, +560,USA,en,WXBT,,Columbia (SC),34.031944,-81.141944,,5,,6938,291,119,,,,,,43324,,, +560,USA,,WNSR,,Brentwood (D) (TN),35.908889,-86.770278,,4.5,,7138,296,122,,,,,,42510,,, +560,USA,,WGAI,,Elizabeth City (NC),36.337778,-76.246944,,0.5,,6442,289,124,,,,,,41472,,, +560,CLM,es,HJPF,,Maicao (lag),11.383333,-72.25,,25,,8238,268,125,,,,,,35901356,,, +560,CUB,es,R Rebelde,,Ciego de vila/CTOM1 (ca),21.866892,-78.720875,,10,,7782,280,125,,,,0,,36539,,, +560,USA,,KMON,,Great Falls (MT),47.424722,-111.288889,,5,,7469,319,125,,,,996,,38922,,, +560,USA,,KWTO,,Springfield (MO),36.944444,-93.221389,,4,,7440,301,125,,,,,,39761,,, +560,USA,,WRDT,,Monroe (D) (MI),41.891111,-83.4275,,0.5,,6462,299,125,,,,,,42829,,, +560,GUY,en,NCN Voice of Guyana/BBC WS,,Vreed en Hoop (dem),6.765928,-58.233056,,7,,7701,254,126,,0000-2400,1234567,,,35665,,, +560,B,pt,ZYH887 Rdio Educadora do Maranho Rural,,So Lus/S Viana (MA),-2.557817,-44.299372,,5,,7707,236,127,,,,993,,36901042,,, +560,USA,,WJLS,,Beckley (WV),37.758889,-81.186667,,0.47,,6645,294,127,,,,,,41895,,, +560,USA,,KLZ,,Denver (CO),39.843333,-104.953889,,5,,7839,311,128,,,,0,,38869,,, +560,USA,en,KPQ,,Wenatchee (WA),47.453333,-120.328611,,5,,7845,325,128,,,,6,,39158,,, +560,CAN,xx,CBDN,,Dawson (YT),64.055833,-139.413611,,0.4,,6764,344,129,,,,,,20109300,,, +560,NCG,,R 5-60 La Poderosa,,Managua (mng),12.15,-86.283333,,30,,9126,280,129,,,,,,52183,,, +560,USA,,WCKL,,Catskill (NY),42.200833,-73.835833,,0.043,,5850,293,129,,,,,,41016,,, +560,USA,,KLVI,,Beaumont (D) (TX),30.045278,-93.870833,,5,,8065,297,131,,,,,,20012579,,, +560,USA,,KLVI,,Beaumont (N) (TX),30.045556,-93.868611,,5,,8064,297,131,,,,,,38855,,, +560,USA,,WHBQ,,Memphis (TN),35.253333,-90.0475,,1,,7392,298,131,,,,9977,,41610,,, +560,ALS,,KVOK,,Kodiak (AK),57.775833,-152.535278,,1,,7648,348,133,,0000-2400,1234567,991,,39651,,, +560,B,pt,ZYK761 Paulista AM,,So Paulo/Santa Isabel (SP),-23.489167,-46.332778,,20,,9839,227,133,,,,,,36901040,,, +560,CLM,es,HJGS,,Tunja (boy),5.566667,-73.366667,,10,,8822,265,133,,,,,,37462,,, +560,EQA,es,HCRN2 C.R.E. Satelital,,Guayaquil (gua),-2.2,-79.866667,,25,,9947,266,133,,,,,,36865,,, +560,USA,,WFRB,,Frostburg (MD),39.683889,-78.965833,,0.055,,6358,294,133,,,,,,41432,,, +560,USA,en,WQAM,,Miami (FL),25.743333,-80.153889,,1,,7552,284,133,,,,,,42760,,, +560,GTM,,TGRV R 5-60,,Ciudad de Guatemala (gut),14.666667,-90.65,,10,,9198,285,134,,1200-0500,1234567,,,40540,,, +560,USA,,KSFO,,San Francisco (CA),37.745556,-122.377778,,5,,8862,321,136,,,,99841,,39349,,, +560,USA,,WMIK,,Middlesboro (KY),36.627222,-83.714444,,0.088,,6892,295,136,,,,,,42328,,, +560,VEN,es,YVRH R Nacional,,Ciudad Guayana (blv),8.35,-62.65,,1,,7853,258,136,,,,,,31300003,,, +560,CAN,xx,CBDD,,Elsa (YT),63.926111,-135.514722,,0.04,,6698,342,138,,,,,,20109077,,, +560,B,pt,ZYH456 Rdio Jornal de Itabuna,,Itabuna (BA),-14.855047,-39.349311,,2.5,,8648,225,139,,,,,,36901035,,, +560,B,pt,ZYH604 Rdio Educadora Jaguaribana,,Limoeiro do Norte (CE),-5.151917,-38.104681,,0.25,,7625,229,139,,,,,,36901031,,, +560,B,pt,ZYI695 Rdio Mana,,Mamanguape (PB),-6.817778,-35.131389,,0.25,,7643,225,139,,,,,,36901033,,, +560,PNR,es,HOH2 RPC R,,Ro Alejandro (clo),9.381969,-79.786606,,3,,8927,273,139,,,,,,37686,,, +560,USA,,WNSR,,Brentwood (N) (TN),36.141111,-86.756389,,0.075,,7119,296,139,,,,,,20012599,,, +560,USA,,WRDT,,Monroe (N) (MI),42.453611,-83.163889,,0.014,,6403,299,140,,,,,,20012575,,, +560,B,pt,ZYI395 Rdio Emissora Aruan,,Barra do Garas (MT),-15.932647,-52.283761,,2.5,,9432,236,141,,,,,,36901039,,, +560,USA,,WOOF,,Dothan (AL),31.218056,-85.352778,,0.118,,7435,292,141,,,,,,42612,,, +560,ARG,es,LRA16 R Nacional,,La Quiaca (jy),-22.118933,-65.599494,,5,,10783,243,143,,0855-0400,1234567,,,39936,,, +560,MEX,es,XEQAA-AM La Poderosa,,Chetumal (qui),18.494167,-88.298889,,1,,8708,285,143,,,,,,44597,,, +560,HND,,HRPX,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37826,,, +560,MEX,es,XESRD-AM La Tremenda,,Santiago Papasquiaro (dur),25.062306,-105.340289,,1,,9189,302,144,,,,,,44767,,, +560,MEX,es,XEXZ-AM Ke Buena,,Zacatecas (zac),22.770217,-102.631281,,1,,9237,299,144,,,,,,45078,,, +560,USA,en,KBLU,,Yuma (AZ),32.723333,-114.642778,,1,,8983,313,144,,,,,,38058,,, +560,GTM,,R Quetzal,,Malacatn (sms),14.9,-92.05,,1,,9269,286,145,,,,,,52128,,, +560,ARG,,LT15 R del Litoral,,Concordia (er),-31.383333,-58.016667,,3,,11191,232,146,,0900-0500,1234567,,,40167,,, +560,B,pt,ZYI419 Rdio Pioneira,,Tangar da Serra/Chcara So Joo (MT),-14.638883,-57.481289,,1,,9612,241,146,,,,,,36901038,,, +560,MEX,es,XEMZA-AM,,Cihuatln (jal),19.189933,-104.613436,,1,,9680,298,146,,,,,,44427,,, +560,PRU,es,OBZ4L R Oriente,,Lima (lim),-11.966667,-77.5,,2,,10645,258,146,,1000-0500,123456,,,40418,,, +560,PRU,es,OBZ4L R Oriente,,Lima (lim),-11.966667,-77.5,,2,,10645,258,146,,1100-2300,......7,,,40418,,, +560,B,pt,ZYJ214 Rdio Londrina,,Londrina/Fazenda Tres Bocas (PR),-23.438333,-51.133333,,1,,10081,231,147,,,,,,36901032,,, +560,ARG,es,LV1 R Colon,,San Juan (sj),-31.52,-68.545278,,3,,11794,239,148,,0000-2400,1234567,,,40235,,, +560,MEX,es,XEOC-AM La Mejor,,Mxico D.F/Av. Chapultepec 473 (dif),19.421967,-99.172228,,0.5,,9326,294,148,,,,,,44478,,, +560,MEX,es,XEYO-AM,,Huatabampo (son),26.755094,-109.624933,,0.5,,9276,306,148,,,,,,45103,,, +560,PRU,es,OBX1H Rmar,,Chiclayo (lam),-6.766667,-79.85,,1,,10347,263,148,,,,,,52286,,, +560,ARG,es,LRA13 R Nacional,,Baha Blanca (ba),-38.709167,-62.316667,,3,,12080,230,149,,0900-0400,1234567,,,39933,,, +560,B,pt,ZYH769 Emissora Sul Goinia AM,,Quirinpolis (GO),-18.438422,-50.453289,,0.5,,9568,233,149,,,,,,36901037,,, +560,B,pt,ZYK231 Rdio So Francisco AM,,Caxias do Sul (RS),-29.127778,-51.173056,,1,,10624,228,149,,,,,,36901043,,, +560,MEX,es,XEGIK-AM La Acerera,,Monclova (coa),26.925,-101.441667,,0.25,,8793,300,149,,,,,,34900011,,, +560,B,pt,ZYH289 Rdio Educao Rural,,Coar (AM),-4.093828,-63.137525,,0.25,,8999,251,150,,,,,,36901030,,, +560,MEX,es,XEIN-AM La Voz del Valle,,Cintalapa (cps),16.691189,-93.709461,,0.25,,9220,288,150,,,,,,44170,,, +560,B,pt,ZYL277 Rdio Difusora AM 560,,Patrocnio (MG),-18.889294,-47.075206,,0.25,,9432,230,151,,,,,,36901036,,, +560,ARG,es,LRA9 R Nacional,,Esquel (ch),-42.920011,-71.344603,,3,,12925,233,152,,1000-0400,1234567,,,39965,,, +560,B,pt,ZYJ496 Rdio Costa do Sol,,Araruama (RJ),-22.865556,-42.277128,,0.25,,9581,224,152,,,,,,36901029,,, +560,B,pt,ZYJ281 Cultura AM,,Guarapuava (PR),-25.351389,-51.422222,,0.25,,10278,230,154,,,,,,36901034,,, +561,NOR,,LF3E,b,Rudok / Draupner Platform,58.1875,2.458333,,0.025,,721,341,80,,,,,,85505,,, +561,NOR,,LF5S,b,West Epsilon,58.4375,1.708333,,0.025,,764,339,81,,,,,,86743,,, +561,NOR,,LF5V,b,Songa Dee,59.479167,1.958333,,0.025,,865,343,82,,,,,U372 ,86744,,, +561,NOR,,LF6T,b,Osebereg Sor (South),60.395833,2.791667,,0.025,,948,348,82,,,,,,86746,,, +561,NOR,,LF5B,b,Oseberg C,60.604167,2.791667,,0.025,,970,348,83,,,,2,L399 U403 ,85506,,, +561,NOR,,LF6S,b,Oseberg East,60.6875,2.958333,,0.025,,977,349,83,,,,,L404 U406 7.3s,86745,,, +562,UKR,,KN,b,Kremenchug / Velyka Kohnovka,49.104167,33.458333,,0.025,,1926,89,92,,,,,,86747,,, +562,RUS,,KO,b,Kostomuksha (KR),64.604167,30.708333,,0.025,,1961,36,93,,,,,L400 U400 ,86748,,, +563,CZE,,XU,b,Nměť nad Oslavou (VY),49.1875,16.041667,,0.025,,752,112,80,,,,,U1018 ,85508,,, +563,EGY,,DJ,b,Alexandria / Borg el Arab (aik),30.895833,29.708333,,0.025,,3027,132,103,,,,4,L397 U395 ,IDx2 + 5 gap,85507,, +564,RUS,,OK,b,Lyskovo,56.020833,45.041667,,0.025,,2524,65,98,,,,,U1055 ,85509,,, +565,RUS,,KS,b,Opalikha,55.854167,37.291667,,0.025,,2044,66,93,,,,1,L1044 U1055 30.0s,IDx2,85510,, +565,MLA,,RTM Sabah FM,,Tenom (sbh),5.133333,115.95,,10,,10864,71,140,,0230-1040,1234567,,,47445,,, +567,ROU,ro,SRR R Romnia Actualităţi,,Satu Mare (SM),47.85475,22.974222,,50,120,1272,105,53,,0000-2400,1234567,22,,124,,, +567,ROU,ro,SRR R Romnia Actualităţi,,Braşov/Bod Colonie (BV),45.753639,25.607,,50,040 200,1564,109,56,,0000-2400,1234567,,,123,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0625-0630,12345..,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0650-0700,12345..,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0800-0815,1234567,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1208-1300,12345..,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1230-1300,.....67,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1400-1415,12345..,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0815-1208,12345..,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0815-1230,.....67,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1300-1400,12345..,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1300-2300,.....67,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1415-2300,12345..,9990,,115,,, +567,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0630-0650,12345..,9990,,115,,, +567,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0700-0800,12345..,9990,,115,,, +567,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,2300-0625,1234..7,9990,,115,,, +567,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,2300-0800,....56.,9990,,115,,, +567,SYR,ar,SRTV 1 Dimashk,,Damascus/'Adrā (dim),33.60875,36.595583,,1000,,3167,119,59,,0000-2400,1234567,,,128,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0200-0310,12345..,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0200-0610,......7,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0200-2200,.....6.,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0357-0600,12345..,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0700-0910,12345..,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0700-2200,......7,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,1000-1233,12345..,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,1410-2200,12345..,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0310-0357,12345..,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0600-0700,12345..,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0610-0700,......7,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0910-1000,12345..,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,1233-1410,12345..,9999,,125,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0625-0630,12345..,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0650-0700,12345..,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0800-0815,1234567,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1208-1300,12345..,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1230-1300,.....67,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1400-1415,12345..,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0815-1208,12345..,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0815-1230,.....67,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1300-1400,12345..,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1300-2300,.....67,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1415-2300,12345..,9994,,114,,, +567,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0630-0650,12345..,9994,,114,,, +567,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0700-0800,12345..,9994,,114,,, +567,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,2300-0625,1234..7,9994,,114,,, +567,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,2300-0800,....56.,9994,,114,,, +567,NIG,,Zamfara State R,,Gusau (zmf),12.1453,6.729394,,50,,4444,180,85,,0500-2300,1234567,,,47135,,, +567,ARS,ar,BSKSA Al-Quran al-Karim,,Afif (riy),23.860489,42.901022,,15,,4401,121,89,,0000-2400,1234567,,,47062,,, +567,NIG,,FRCN Ibadan,,Alaho (oyo),7.166667,3.8,,50,,5003,184,90,,0430-2305,1234567,,,2302,,, +567,NIG,,Imo BC,,Owerri (imo),5.521044,7.061844,,50,,5181,179,92,,0500-2300,1234567,,,47134,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0000-0110,1234567,,,46866,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0900-1110,1234567,,,46866,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,1200-1310,1234567,,,46866,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,1400-1700,1234567,,,46866,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,2100-2310,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0110-0200,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0810-0900,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,1110-1200,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,1310-1400,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,2310-2400,1234567,,,46866,,, +567,RUS,tv,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0200-0810,1234567,,,46866,,, +567,ARS,ar,BSKSA Al-Quran al-Karim,,Abha (asr),18.289317,42.599239,,5,,4902,126,99,,0000-2400,1234567,,,47060,,, +567,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Garissa (nea),-0.521472,39.533556,,50,,6619,141,106,,0200-2110,1234567,,,2301,,, +567,IND,,AIR Northeast,,Dibrugarh (AS),27.366389,94.872778,,300,,7542,73,108,,0000-0505,1234567,,,47455,,, +567,IND,,AIR Northeast,,Dibrugarh (AS),27.366389,94.872778,,300,,7542,73,108,,0630-0930,1234567,,,47455,,, +567,IND,,AIR Northeast,,Dibrugarh (AS),27.366389,94.872778,,300,,7542,73,108,,1000-1740,1234567,,,47455,,, +567,LAO,en,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,1415-1430,12.....,,,47460,,, +567,LAO,fr,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,1415-1430,..34...,,,47460,,, +567,LAO,hm,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,0600-0700,1234567,,,47460,,, +567,LAO,hm,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,2200-2230,1234567,,,47460,,, +567,LAO,km,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,0700-0800,1234567,,,47460,,, +567,LAO,km,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,2230-2300,1234567,,,47460,,, +567,LAO,lo,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,,2300-0600,1234567,,,47460,,, +567,LAO,lo,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,0900-1600,1234567,,,47460,,, +567,J,ja,JOIK NHK1,,Sapporo (hok),43.089444,141.590833,,100,,8588,32,122,,0000-2400,1234567,5,,47458,,, +567,KOR,ko,HLKF KBS 1 R,,Jeonju/Baeksan (jeb),35.822167,126.882944,,100,,8664,46,123,,0000-2400,1234567,,,47459,,, +567,CHN,,Tianjin RGD Xiangsheng Guangbo,,Yangliuqing (TJ),39.139406,117.026567,,10,,7862,50,126,,2155-1800,1234567,,,47452,,, +567,CHN,,Zhoukou JGD,,Zhoukou (HE),33.633333,114.633333,,10,,8218,55,129,,,,,,36200982,,, +567,CHN,zh,CNR 1,,Lianyungang (JS),34.6645,119.153944,,10,,8374,52,131,,2025-1805,1234567,,,36200209,,, +567,HKG,en,RTHK R 3,,Golden Hill (stn),22.3675,114.153889,,20,,9195,63,131,,0000-2400,1234567,12,,47454,,, +567,AFS,en,Cape Talk,,Klipheuwel (WC),-33.700444,18.707778,,25,,9617,170,132,,0000-2400,1234567,25,,20300001,,, +567,THA,th,Jor. Sor. 5,,Chaiyaphum (cyp),15.85,102.066667,,5,,9001,76,137,,2200-1600,1234567,,,47467,,, +567,PHL,,DWRP-AM Radyo ng Bayan,,Naga City (cas),13.628611,123.1975,,10,,10537,61,139,,,,,,47464,,, +567,GUM,en,KGUM,,Agana (GU),13.389167,144.759444,,10,,11708,42,143,,0000-2400,1234567,,,38517,,, +567,PHL,,DXCH-AM (r:666 DZRH-AM),,Cotabato City (mag),7.216667,124.233333,,5,,11195,63,144,,,,,,47463,,, +567,AUS,,4JK ABC Northwest QLD,,Julia Creek (QLD),-20.651181,141.820903,,10,,14838,65,153,,0000-2400,1234567,1,,47447,,, +567,NZL,en,RNZ National,,Wellington/Titahi Bay (WGN),-41.096111,174.842778,,50,,18509,40,158,,0000-2400,1234567,,,47461,,, +567,AUS,,6PN ABC Northwest WA,,Pannawonica (WA),-21.661736,116.343778,,0.1,,13240,88,168,,0000-2400,1234567,,,47450,,, +567,AUS,,6PU ABC Northwest WA,,Paraburdoo (WA),-23.216578,117.665583,,0.1,,13460,89,168,,0000-2400,1234567,,,47451,,, +567,AUS,,6TP ABC Northwest WA,,Tom Price/Spur Road (WA),-22.699361,117.774583,,0.1,,13424,88,168,,0000-2400,1234567,,,47449,,, +567,AUS,,2BH,,Broken Hill (NSW),-31.939567,141.44295,,0.5,,15771,76,169,,0000-2400,1234567,10,,47446,,, +567,AUS,,6MN ABC Northwest WA,,Newman/ABC Tower (WA),-23.355433,119.715278,,0.1,,13611,87,169,,0000-2400,1234567,,,47448,,, +568,RUS,,CSH,b,Monchegorsk (MU),67.979167,33.041667,,0.025,,2265,29,96,,,,,U1055 ,85511,,, +570,NOR,,LF5F,b,Balder FPU,59.1875,2.375,,0.025,,826,344,81,,,,,U405 ,ID+1 gap,86749,, +570,NOR,,LF6Z,b,Ringhorne / Exxon Mobil Platform,59.270833,2.458333,,0.025,,834,344,81,,,,0,L398 U398 8.8s,85514,,, +570,NOR,,LF5W,b,Transocean Searcher,61.479167,4.041667,,0.025,,1052,353,83,,,,,,86750,,, +570,NOR,,LF6R,b,Visund,61.354167,2.458333,,0.025,,1055,348,84,,,,,L397 U390 ,86751,,, +570,UKR,,FU,b,Uzin,49.854167,30.458333,,0.025,,1694,89,90,,,,,,85513,,, +570,RUS,,FE,b,Oktyabrsky,54.229167,38.875,,0.025,,2157,71,95,,,,,L1035 ,85512,,, +570,CAN,en,CFCB,,Corner Brook (NL),48.936944,-57.991111,,1,,4415,292,101,,,,0,,35939,,, +570,CAN,en,CKGL,,Kitchener (ON),43.290278,-80.3525,,10,,6171,298,109,,,,2,,36108,,, +570,USA,,WSYR,,Syracuse (NY),42.986944,-76.1525,,5,,5938,295,109,,,,0,,43095,,, +570,USA,,WMCA,,New York/Kearny [NJ] (NY),40.752778,-74.104167,,5,,5972,292,110,,,,0,,42287,,, +570,CAN,en,CBNK,,Cartwright (NL),53.708611,-57.011667,,0.04,,4113,298,112,,,,,,20109078,,, +570,USA,,WKBN,,Youngstown (D) (OH),40.985,-80.6,,5,,6360,296,114,,,,,,20016066,,, +570,USA,,WKBN,,Youngstown (N) (OH),40.985278,-80.600556,,5,,6360,296,114,,,,,,41966,,, +570,CAN,,CKSW,,Swift Current (SK),50.160833,-107.816944,,10,,7073,319,118,,,,1,,36403,,, +570,USA,,WWNC,,Asheville (NC),35.596944,-82.606667,,5,,6905,293,119,,,,,,43410,,, +570,USA,,WSPZ,,Bethesda (MD),39.134167,-77.303889,,1,,6295,293,120,,,,,,43187,,, +570,VEN,es,R Villa,,Villa de Cura (arg),10.05,-67.5,,50,,8031,263,120,,0000-2400,1234567,,,45375,,, +570,CUB,es,R Reloj,,Santa Clara/CTOM1 (vc),22.447306,-79.891306,,25,,7811,281,121,,,,0,,36491,,, +570,USA,en,WNAX,,Yankton (SD),42.913056,-97.316111,,5,,7171,308,122,,,,6,,42432,,, +570,HTI,,Vision 2000,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52093,,, +570,CLM,es,HJND R Nacional de Colombia,,El Rosal (cun),4.854822,-74.266736,,100,,8946,266,124,,,,0,,37582,,, +570,USA,en,WTBN,,Pinellas Park (FL),28.211111,-82.529444,,5,,7503,287,125,,,,9998,,43112,,, +570,CAN,en,CBML,,Val-d'Or (QC),48.109722,-77.785833,,0.04,,5674,301,128,,,,,,20109079,,, +570,USA,en,KVI,,Seattle (WA),47.421944,-122.428889,,5,,7929,326,129,,,,9997,,39625,,, +570,USA,en,KLIF,,Dallas (TX),32.944444,-96.990278,,5,,8001,301,130,,,,9970,,38815,,, +570,USA,,KNRS,,Salt Lake City (UT),40.819167,-111.932222,,5,,8098,316,131,,,,17,,39014,,, +570,CAN,en,CKWL,,Williams Lake (BC),52.091389,-122.175556,,1,,7474,329,132,,,,,,36420,,, +570,DOM,,HIMS R Cristal,,Santo Domingo (sdo),18.475,-69.833333,,1,,7465,271,132,,1000-0400,1234567,,,37278,,, +570,USA,,WAAX,,Gadsden (AL),33.979167,-86.0025,,0.5,,7249,294,132,,,,,,40621,,, +570,USA,,WKYX,,Paducah (KY),37.014722,-88.612778,,0.5,,7160,298,132,,,,,,42108,,, +570,USA,,WMAM,,Marinette (WI),45.100556,-87.625,,0.1,,6460,304,132,,,,,,42272,,, +570,CTR,,TICDL R Libertad,,Desamparados (sjs),9.9,-84.066667,,10,,9173,276,134,,0000-2400,1234567,,,52142,,, +570,SLV,es,YSKT R Exus,,San Salvador (ssl),13.766667,-89.166667,,10,,9178,283,134,,,,,,45290,,, +570,CUB,es,R Rebelde,,Piln (gr),19.900169,-77.361178,,1,,7856,278,136,,,,,,52612,,, +570,B,pt,ZYH244 Rdio Novo Nordeste,,Arapiraca/Estrada da Canafstula (AL),-9.765761,-36.642294,,1,,8010,225,137,,,,,,36901056,,, +570,CHL,es,CB57 R Agricultura,,Santiago/Calera de Tango (RM),-33.583344,-70.800978,,50,,12105,239,137,,1000-0400,1234567,,,35753,,, +570,NCG,,R 5-70/R Veritas,,Chinandega (cnd),13.016667,-86.9,,5,,9092,281,137,,1030-0250,1234567,,,52184,,, +570,USA,,KLAC,,Los Angeles (CA),34.069722,-118.193333,,5,,9028,316,137,,,,7,,38770,,, +570,USA,en,WFNL,,Raleigh (NC),35.793056,-78.761389,,0.04,,6646,291,137,,,,,,41192,,, +570,B,pt,ZYH614 Rdio Uirapuru,,Itapipoca (CE),-3.488119,-39.569289,,0.25,,7538,231,138,,,,,,36901046,,, +570,B,pt,ZYL261 Rdio Capital,,Belo Horizonte (MG),-20.000878,-44.044606,,5,,9385,227,138,,,,,,36901059,,, +570,MEX,es,XEME-AM La Poderosa,,Valladolid (yuc),20.707,-88.202411,,2.5,,8510,287,138,,,,,,44367,,, +570,B,pt,ZYH890 R.Imperatriz Cidade Esperana,,Imperatriz (MA),-5.488031,-47.497317,,1,,8169,237,139,,,,,,36901054,,, +570,SLV,es,YSKT R Exus,,Santa Ana (sta),14.316667,-89.583333,,3,,9158,284,139,,,,,,45291,,, +570,MEX,es,XEVX-AM,,Comalcalco (tab),18.236203,-93.209261,,2.5,,9052,289,140,,,,,,45000,,, +570,SLV,es,YSKT R Exus,,Ahuachapn (smg),13.916667,-89.833333,,3,,9209,283,140,,,,,,45292,,, +570,USA,,WIDS,,Russell Springs (KY),37.094167,-85.080278,,0.042,,6939,296,140,,,,,,41732,,, +570,MEX,es,XEOA-AM La Mexicana,,Oaxaca (oax),17.0615,-96.759461,,2.5,,9384,291,141,,,,,,44471,,, +570,PRG,,ZP15 R LV del Amambay,,Pedro Juan Caballero (amm),-22.516667,-55.716667,,5,,10243,235,141,,0930-0100,1234567,,,45511,,, +570,B,pt,ZYH613 Rdio Verde Vale do Cariri,,Juazeiro do Norte (CE),-7.264706,-39.335436,,0.25,,7896,229,142,,,,,,36901055,,, +570,MEX,es,XELQ-AM R 570,,Morelia (mic),19.698867,-101.141022,,1.7,,9423,296,143,,,,,,44321,,, +570,PNR,es,HOS R Soberana Civilista,,Felipillo (pnm),9.071008,-79.295983,,1,,8920,272,143,,1000-0300,1234567,,,37724,,, +570,GTM,,TGPA R Palmeras,,Escuintla (esl),14.3,-90.766667,,1,,9237,284,144,,,,,,40522,,, +570,MEX,es,XETJ-AM La Mexicana,,Gmez Palacio (dur),25.566625,-103.466997,,1,,9034,301,144,,,,,,34900012,,, +570,MEX,es,XEVJP-AM R Xicotepec,,Xicotepec de Jurez (pue),20.262056,-97.956872,,1,,9175,294,144,,,,,,44969,,, +570,MEX,es,XETD-AM R RED,,Tecuala (nay),22.404086,-105.459433,,1,,9438,301,145,,,,,,44805,,, +570,B,pt,ZYK672 Rdio Difusora Taubat,,Taubat (SP),-23.033333,-45.55,,1,,9756,226,146,,,,,,36901057,,, +570,B,pt,ZYN407 Rdio Jornal,,So Jos dos Quatro Marcos (MT),-15.630556,-58.204722,,1,,9747,241,146,,,,,,36901045,,, +570,EQA,,HCRM1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,37091,,, +570,MEX,es,XEBJB-AM La Sabrosita,,San Nicols de los Garza (nvl),25.763833,-100.252883,,0.5,,8826,299,146,,,,,,43781,,, +570,B,pt,ZYJ349 Rdio Continental,,Palotina (PR),-23.866667,-53.083333,,1,,10226,232,148,,,,,,36901049,,, +570,PRU,es,OAU1M R UNPRG,,Lambayeque (lam),-6.7,-79.9,,1,,10344,263,148,,,,,,52288,,, +570,PRU,es,OCU2B,,Huamachuco (lal),-7.8,-78.066667,,1,,10317,261,148,,,,,,37000018,,, +570,MEX,es,XEUK-AM,,Caborca (son),30.725392,-112.163697,,0.25,,9044,310,150,,,,,,44907,,, +570,PRG,,ZP15 R.San Roque Gonzalez de Santa Cruz,,Ayolas (mis),-27.416667,-57,,1,,10770,233,150,,0830-0200,1234567,,,51732,,, +570,USA,,KSNM,,Las Cruces (NM),32.309167,-106.823333,,0.155,,8614,307,150,,,,,,39393,,, +570,B,pt,ZYH750 Rdio Cultura,,Catalo (GO),-18.162933,-47.956156,,0.25,,9408,231,151,,,,,,36901051,,, +570,ARG,,R Argentina,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,90,,51828,,, +570,ARG,es,R Argentina,,Lomas del Mirador (ba),-34.65,-58.533333,,1,,11517,230,152,,,,,,47112,,, +570,B,pt,ZYJ735 R.Difusora Eldorado Catarinense,,Cricima (SC),-28.695556,-49.325,,0.5,,10490,227,152,,,,,,36901058,,, +570,B,pt,ZYK267 R Dirio da Manh,,Passo Fundo/Rua Livramento 601 (RS),-28.267778,-52.416944,,0.5,,10606,229,152,,,,,,36901052,,, +570,B,pt,ZYK698 Rdio Jornal,,Nhandeara (SP),-20.684228,-50.051397,,0.25,,9761,231,152,,,,,,36901050,,, +570,B,pt,ZYK717 Bariri Rdio Clube,,Bariri (SP),-22.087244,-48.745433,,0.25,,9827,230,152,,,,,,36901047,,, +570,HWA,en,KQNG (KONG),,Eleele (DN) (HI),21.991944,-159.405833,,1,,11661,346,152,,,,,,20016301,,, +570,HWA,en,KQNG (KONG),,Lihue (U) (HI),21.9925,-159.406667,,1,,11661,346,152,,0000-2400,1234567,3,,39201,,, +570,B,pt,ZYK595 Rdio Clube de Itapeva,,Itapeva/Fazenda Boa Vista (SP),-23.958611,-48.893056,,0.25,,10014,229,153,,,,,,36901061,,, +570,B,pt,ZYJ794 Rdio Fronteira Oeste,,Dionsio Cerqueira (SC),-26.262222,-53.62,,0.25,,10480,231,155,,,,,,36901048,,, +570,USA,,KCFJ,,Alturas (CA),41.305556,-120.513889,,0.042,,8439,322,155,,,,9990,,38141,,, +570.5,XOE,,NKO,b,Noble Kolskaya Platform,56.0625,4.208333,,0.025,,462,343,78,,,,-570.5,U1020 ,85515,,, +571,SVK,,P,b,Preov/Kapusany (PO),49.0625,21.375,,0.025,,1107,102,84,,,,12,L1040 U1049 10.0s,ID+8 gap,85516,, +572,UKR,,C,b,Khmelnytskyi (KM),49.354167,26.958333,,0.025,,1473,94,88,,,,,L1057 U1027 6.0s,ID+4gap,86752,, +572,UKR,,M,b,Khmelnytskyi (KM),49.395833,26.958333,,0.025,,1471,94,88,,,,,L725 U750 3.5s,ID+2 gap,86753,, +572,RUS,,O,b,Sankt-Peterburg/Pulkovo (SP),59.770833,30.291667,,0.025,,1700,51,90,,,,0,L399 U398 10.2s,85517,,, +574,RUS,,UPM Amderma R,c,Amderma (NE),69.766667,61.666667,,1,,3393,34,91,,????-????,1234567,,,19901330,,, +575,RUS,,VQ,b,Kharkiv / Sokolniki,50.020833,36.291667,,0.025,,2086,84,94,,,,,15.0s,IDx2 + 6 gap,86754,, +576,BUL,bg,BNR Horizont,,Vidin/Gramada (RPS2) (vdn),43.839944,22.715,,400,,1517,121,46,,0000-2400,1234567,1,,131,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0625-0630,12345..,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0650-0700,12345..,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0800-0815,1234567,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1208-1300,12345..,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1230-1300,.....67,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1400-1415,12345..,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0815-1208,12345..,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0815-1230,.....67,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1300-1400,12345..,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1300-2300,.....67,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1415-2300,12345..,3,,134,,, +576,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0630-0650,12345..,3,,134,,, +576,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0700-0800,12345..,3,,134,,, +576,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,2300-0625,1234..7,3,,134,,, +576,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,2300-0800,....56.,3,,134,,, +576,ALG,ar,R Bchar,,Kenadsa (Bchar) (8),31.561667,-2.337778,,400,230,2393,201,55,,0800-1600,1234567,,,129,,, +576,IRN,ar,IRIB WS,,Bandar-e Mahshahr (kuz),30.612667,49.201667,,300,230,4207,108,74,ME,0230-1530,1234567,998,,135,,, +576,IRN,fa,IRIB R Iran,,Bandar-e Mahshahr (kuz),30.612667,49.201667,,300,230,4207,108,74,,1530-0230,1234567,998,,135,,, +576,CNR,es,RNE R Nacional,,Mesas de Galaz (RNE) (LPM-GC),28.016275,-15.516425,,25,,3237,223,75,,0000-2400,1234567,997,,132,,, +576,IRN,,IRIB R.Markaze Azerbaijaneh Gharb,,Maku (waz),39.363017,44.390867,,10,,3222,101,79,,0000-2400,1234567,,,10800033,,, +576,NIG,,FRCN Ibadan,,Ibadan/Moniya (oyo),7.523333,3.910556,,25,,4963,184,93,,0430-2305,1234567,,,2303,,, +576,OMA,,R Sultanate Oman,,Haima (wus),19.947311,56.454344,,100,,5583,110,93,,0000-2400,1234567,,,136,,, +576,ARS,ar,BSKSA Al-Quran al-Karim,,Jizan=Gizan (jzn),16.86745,42.566344,,20,,5036,127,94,,0000-2400,1234567,,,47061,,, +576,SDN,,SRTC Sudan Nat. R,,Omdurman/Al-Aitahab (kha),15.588722,32.447556,,7,,4666,141,95,,0300-0600,1234567,,,9400001,,, +576,UGA,lg,UBC Star FM,,Mawagga (mty),0.377639,32.14,,100,,6233,148,99,,0300-1200,12345..,,,2307,,, +576,UGA,lg,UBC Star FM,,Mawagga (mty),0.377639,32.14,,100,,6233,148,99,,0345-2100,.....67,,,2307,,, +576,UGA,lg,UBC Star FM,,Mawagga (mty),0.377639,32.14,,100,,6233,148,99,,1300-2100,12345..,,,2307,,, +576,NPL,,R Nepal,,Surkhet (bhe),28.605022,81.591156,,100,,6555,82,103,,2315-1720,1234567,,,47486,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,0020-0400,123456,9967,,47475,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,0020-1030,......7,9967,,47475,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,0630-0930,1234567,9967,,47475,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,1100-1740,......7,9967,,47475,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,1115-1740,123456,9967,,47475,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Kunming/Longquan (YN),25.120672,102.752439,,100,,8242,69,119,,2215-1605,1234567,,,47471,,, +576,MYA,en,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0700-0730,1234567,,,47485,,, +576,MYA,en,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,1530-1600,1234567,,,47485,,, +576,MYA,my,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0030-0230,1234567,,,47485,,, +576,MYA,my,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0230-0330,.....67,,,47485,,, +576,MYA,my,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0330-0700,1234567,,,47485,,, +576,MYA,my,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0930-1530,1234567,,,47485,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Lincang (YN),23.9,100.033333,,20,,8171,72,126,,,,,,36200976,,, +576,AFS,en,R Veritas,,Meyerton (GT),-26.583986,28.170017,,50,,9004,160,127,,0000-2400,1234567,998,,2304,,, +576,CHN,,Luoyang RGD Xinwen,,Luoyang (HE),34.660833,112.476111,,10,,8006,56,127,,????-1600,1234567,,,47472,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Dali/SARFT653 (YN),25.716667,100.166667,,10,,8025,71,127,,2215-1600,1234567,,,47470,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Dongchuan/YNTS696 (YN),26.0825,103.191111,,10,,8187,68,129,,,,,,36200979,,, +576,VTN,vi,VOV2,,Nha Trang/Đồng Đế (kho),12.284539,109.186839,,50,,9783,72,129,,2200-1600,1234567,,,47499,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Funing (YN),23.616667,105.633333,,10,,8555,68,132,,,,,,36200978,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Wenshan/YNTS703 (YN),23.335278,104.298889,,10,,8495,69,132,,,,,,36200973,,, +576,J,,JOHG NHK1,,Kagoshima/Kirishima-Shi (kyu-kag),31.726389,130.735278,,10,,9238,45,135,,0000-2400,1234567,,,47478,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Ruili (YN),24.020556,97.873333,,1,,8020,74,137,,,,,,36200974,,, +576,THA,th,Tor. Chor. Dor.,,Bangkok/Bang Khen (bmp),13.683333,100.55,,5,,9089,78,137,,????-1700,1234567,,,47496,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Baoshan/YNTS702 (YN),26.366667,104.5,,1,,8246,67,139,,,,,,36200981,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Chuxiong/YNTS692 (YN),25.020511,101.555006,,1,,8174,70,139,,,,,,36200980,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Simao/YNTS655 (YN),22.81,100.978333,,1,,8326,72,140,,,,,,50571,,, +576,PHL,,DYMR-AM Radyo ng Bayan,,Cebu City/CSCST Compound (ceb),10.3,123.883333,,10,,10887,62,140,,2100-1300,1234567,,,47488,,, +576,PHL,,DZHR-AM (r:666 DZRH-AM),,Tuguegarao City (cag),17.6,121.75,,5,,10083,59,140,,,,,,47491,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Jinping (YN),24.05,104.2,,1,,8427,69,141,,,,,,36200977,,, +576,PHL,tl,DXMF-AM Bombo Radyo,,Davao City (dvs),7.05,125.583333,,10,,11292,62,141,,????-1415,1234567,,,47490,,, +576,PHL,tl,DZMQ-AM Radyo ng Bayan,,Dagupan City (pgs),16.033333,120.333333,,5,,10144,61,141,,????-1007,1234567,,,47489,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Mengla (YN),21.466667,101.583333,,1,,8481,73,142,,,,,,36200975,,, +576,KOR,,HLKZ KBS 3 R,,Suncheon (jen),34.926111,127.520556,,1,,8779,46,143,,2000-1800,1234567,,,47481,,, +576,CHN,,Quanzhou RGD Xinwen Pindao,,Quanzhou/FJTS401 (FJ),24.882722,118.596917,,1,,9230,58,144,,2200-1805,1234567,,,47473,,, +576,CHN,,Zhejiang zhi Sheng,,Linhai (ZJ),28.85,121.116667,,1,,9010,54,144,,,,,,36200805,,, +576,CHN,,Zhejiang zhi Sheng,,Taizhou (ZJ),28.612222,121.415278,,1,,9048,54,144,,,,,,47474,,, +576,J,ja,JODG NHK1,,Hamamatsu (chu-shi),34.674167,137.764167,,1,,9272,38,145,,0000-2400,1234567,,,47477,,, +576,J,,NHK R 1,,Ofunato (toh-iwa),39.091389,141.714722,,0.5,,8992,34,147,,0000-2400,1234567,,,47479,,, +576,INS,id,R Hutama Buana Swara,,Tangerang/Ciledug (BT-tan),-6.234444,106.704167,,1,,11257,86,151,,2150-1700,1234567,,,35400122,,, +576,AUS,en,2RN ABC National,,Sydney/Prestons (NSW),-33.942097,150.885556,,50,,16545,68,152,,0000-2400,1234567,0,,47469,,, +576,NZL,en,1XLR Southern Star,,Hamilton/Greenhill Road (WKO),-37.74295,175.306458,,2,,18199,33,171,,0000-2400,1234567,,,47487,,, +579,RUS,,TH,b,Takhtalym,55.895833,61.708333,,0.025,,3541,61,108,,,,,U303 ,85521,,, +580,UKR,,HS,b,Kacha,44.770833,33.541667,,0.025,,2145,102,94,,,,,L910 U908 15.0s,IDx2,85522,, +580,UKR,,KC,b,Kacha,44.729167,33.541667,,0.025,,2148,102,94,,,,,U1015 ,IDx2 + 5 gap,85523,, +580,CAN,en,CFRA,,Ottawa (ON),45.201389,-75.723889,,10,,5753,297,105,,,,1,,36002,,, +580,USA,,WTAG,i,Worcester (MA),42.336944,-71.820833,,5,,5714,292,107,,,,0,,43100,,, +580,USA,,WHP,i,Harrisburg (PA),40.303056,-76.951944,,5,,6185,293,112,,,,9993,,41683,,, +580,USA,en,WCHS,,Charleston (WV),38.364167,-81.768056,,5,,6634,295,116,,,,,,41002,,, +580,PTR,es,WKAQ,,San Juan (PR),18.432222,-66.135833,,10,,7216,268,119,,0000-2400,1234567,98,,41953,,, +580,USA,,WGAC,,Augusta (D) (GA),33.512222,-82.08,,5,,7039,291,120,,,,,,20012549,,, +580,USA,en,WTCM,,Traverse City (MI),44.721667,-85.705,,1.1,,6379,303,120,,,,9965,,43120,,, +580,VEN,,YVMJ LV de la Fe,,Maracaibo (zul),10.666667,-71.716667,,50,,8264,267,123,,0000-2400,1234567,,,45381,,, +580,CAN,en,CKWW,,Windsor (ON),42.172778,-83.048056,,0.5,,6418,299,124,,,,,,36421,,, +580,USA,,WIBW,,Topeka (KS),39.084722,-95.782778,,5,,7407,304,124,,,,,,41722,,, +580,USA,en,WDBO,,Orlando (FL),28.619722,-81.409722,,5,,7396,287,124,,,,9991,,41129,,, +580,B,pt,ZYI776 RBN-Rdio Boas Novas,,Recife (PE),-8.066667,-34.883333,,10,,7756,224,125,,,,995,,36901073,,, +580,USA,,KMJ,,Fresno (CA),36.659167,-119.346389,,50,,8833,319,126,,,,4,,38909,,, +580,USA,,WKTY,,La Crosse (WI),43.740278,-91.205833,,0.74,,6768,305,126,,,,,,42082,,, +580,DOM,es,HIAS R Montecristi,,San Fernando de Montecristi (mci),19.835675,-71.638142,,3,,7473,273,127,,0000-2400,1234567,2,,52227,,, +580,USA,,WGAC,,Augusta (N) (GA),33.524722,-81.908611,,0.84,,7027,291,128,,,,,,41470,,, +580,B,pt,ZYJ465 Rdio Relgio 580 AM,,Rio de Janeiro/So Gonalo (RJ),-22.778467,-42.993639,,50,,9606,225,129,,,,9992,,36901075,,, +580,CUB,es,R Rebelde,,Mabujabo (gu),20.360681,-74.521503,,2.5,,7625,276,129,,,,,,36597,,, +580,CLM,es,HJHP R Nacional de Colombia,,Cali/Jamund (val),3.263356,-76.503172,,25,,9238,266,131,,,,,,37477,,, +580,PRU,,OAX2E R Maran,,Jan/Fila Alta (caj),-5.7345,-78.792114,,50,,10184,263,131,,1000-0200,.....6.,,,40280,,, +580,PRU,,OAX2E R Maran,,Jan/Fila Alta (caj),-5.7345,-78.792114,,50,,10184,263,131,,1000-0400,12345..,,,40280,,, +580,PRU,,OAX2E R Maran,,Jan/Fila Alta (caj),-5.7345,-78.792114,,50,,10184,263,131,,1100-1800,......7,,,40280,,, +580,USA,,KIDO,,Nampa (ID),43.559722,-116.400556,,5,,8048,320,131,,,,,,38584,,, +580,B,pt,ZYI905 Rdio Itamaraty,,Piripiri (PI),-4.299514,-41.766872,,1,,7735,232,134,,,,,,36901074,,, +580,USA,,KJMJ,,Alexandria (LA),31.308333,-92.415833,,1,,7868,297,136,,,,9990,,38678,,, +580,USA,,WILL,,Urbana (IL),40.080833,-88.236111,,0.1,,6890,300,136,,,,,,41754,,, +580,EQA,,HCPC2,,Guayaquil (gua),-2.2,-79.9,,10,,9949,266,137,,,,,,37059,,, +580,USA,,KZMX,,Hot Springs (SD),43.456667,-103.476111,,0.31,,7447,312,137,,,,,,39895,,, +580,ARG,es,LW1 R Universidad Nacional,,Crdoba (cb),-31.325,-64.225,,25,,11528,236,138,,0800-0500,1234567,,,47113,,, +580,BOL,es,CP91 R Panamricana,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1100-0400,123456,,,36719,,, +580,BOL,es,CP91 R Panamricana,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1100-2400,......7,,,36719,,, +580,MEX,es,XEMU-AM,,Piedras Negras (coa),28.737772,-100.514144,,2.5,,8577,301,138,,,,,,44417,,, +580,PRU,es,OAX4M R Maria,,Lima/Comas (lim),-11.915278,-77.061111,,12,,10611,258,138,,1100-0400,1234567,,,37000002,,, +580,USA,,KUBC,,Montrose (CO),38.425556,-107.8825,,1,,8116,312,138,,,,,,39563,,, +580,USA,,WKSK,,West Jefferson (NC),36.410833,-81.496111,,0.034,,6771,293,139,,,,,,42070,,, +580,USA,en,WACQ,,Tuskegee (AL),32.376667,-85.657778,,0.139,,7359,293,139,,,,,,40859,,, +580,B,pt,ZYH785 Rdio Tocantins AM,,Porto Nacional (TO),-10.7,-48.416667,,2,,8718,235,140,,,,,,36901070,,, +580,USA,,WYHM,,Rockwood (TN),35.827778,-84.655278,,0.049,,7015,295,140,,,,,,42569,,, +580,USA,,KANA,,Anaconda (MT),46.128611,-112.923611,,0.197,,7658,320,141,,,,,,37947,,, +580,USA,,WELO,,Tupelo (MS),34.238056,-88.695278,,0.095,,7394,296,141,,,,,,41289,,, +580,USA,en,KTMT,,Ashland (OR),42.164167,-122.647778,,1,,8444,324,141,,,,,,39513,,, +580,USA,en,WLVA,,Lynchburg (VA),37.420833,-79.115278,,0.014,,6541,292,141,,,,,,42250,,, +580,B,pt,ZYK318 Rdio Ftima,,Vacaria (RS),-28.4725,-50.926944,,5,,10549,228,142,,,,,,36901071,,, +580,USA,en,WPGU472,,Columbus (OH),39.966667,-83,,0.01,,6585,297,143,,,,,,20010435,,, +580,GTM,,TGY R Progreso,,Ciudad de Guatemala (gut),14.566667,-90.616667,,1,,9204,284,144,,1100-0600,1234567,,,40559,,, +580,HND,,HRZQ R Tegucigalpa,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37892,,, +580,MEX,es,XEHP-AM La Mas Prendida,,Ciudad Victoria (tam),23.718869,-99.131328,,1,,8940,297,144,,,,,,44133,,, +580,NCG,,YNEA R 5-80,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,1000-0400,1234567,,,52185,,, +580,PNR,es,HOH4 RPC R,,Quiteo (chq),8.463844,-82.401131,,1,,9185,274,144,,,,,,37688,,, +580,B,pt,ZYH799 Rdio Serra Azul,,Caiapnia/Fazenda Santa Luzia (GO),-16.972156,-51.810994,,1,,9504,235,145,,,,,,36901064,,, +580,B,pt,ZYJ327 Rdio Auriverde de Pitanga,,Pitanga (PR),-24.770278,-51.750556,,2,,10240,231,145,,,,,,36901063,,, +580,MEX,es,XEAV-AM Canal 58,,Guadalajara (jal),20.612989,-103.298678,,1,,9472,298,145,,,,,,43742,,, +580,MEX,es,XEFI-AM,,Chihuahua (chi),28.609906,-106.050269,,0.7,,8907,305,145,,,,,,44008,,, +580,USA,,KRFE,,Lubbock (TX),33.533333,-101.820556,,0.29,,8227,305,145,,,,,,39239,,, +580,B,pt,ZYI387 Rdio Imaculada Conceio,,Campo Grande (MS),-20.423644,-54.613583,,1,,9986,235,147,,,,,,36901069,,, +580,MEX,es,XEYI-AM Mix,,Cancn (qui),21.164267,-86.843011,,0.25,,8382,286,147,,,,,,45092,,, +580,USA,,KSAZ,,Marana (AZ),32.453056,-111.284444,,0.39,,8837,311,147,,,,9962,,39326,,, +580,B,pt,ZYL328 Rdio Amrica,,Uberlndia (MG),-18.843328,-48.255625,,0.5,,9489,231,148,,,,,,36901062,,, +580,PRU,,OCY2L R El Sol,,La Esperanza (lal),-8.083333,-79.05,,1,,10408,261,148,,,,,,37000019,,, +580,USA,en,WPVV612,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20010434,,, +580,ARG,es,LU20 R Chubut La 20,,Trelew (ch),-43.280672,-65.295261,,5,,12634,229,149,,0800-0500,1234567,,,40215,,, +580,B,pt,ZYH477 Rdio Difusora,,Teixeira de Freitas/Fazenda Caraipe (BA),-17.507222,-39.726667,,0.25,,8929,224,149,,,,,,36901065,,, +580,MEX,,XEHO-AM,,Ciudad Obregn (son),27.576194,-109.942606,,0.25,,9217,307,150,,,,,,44131,,, +580,MEX,es,XEUAQ-AM R Universidad,,Quertaro (que),20.590422,-100.412364,,0.25,,9298,296,151,,,,,,44888,,, +580,B,pt,ZYK540 Rdio Voc,,Americana (SP),-22.714789,-47.303606,,0.25,,9813,228,152,,,,,,36901067,,, +580,B,pt,ZYK724 Som Lider Rdio Regional,,Palmital (SP),-22.790519,-50.205444,,0.25,,9970,230,153,,,,,,36901066,,, +580,PRG,,ZP61,,Neembuco (neb),-27,-58,,0.5,,10786,234,153,,,,,,45553,,, +580,ARG,es,R Andina,,San Rafael (mz),-34.616667,-68.333333,,1,,12051,237,154,,,,,,33000059,,, +580,B,pt,ZYJ330 Rdio Grande Lago,,Santa Helena (PR),-24.873056,-54.298889,,0.25,,10386,232,154,,,,,,36901076,,, +580,URG,,CX58 R Clarin,,Montevideo (mo),-34.783333,-56.216667,,0.5,,11410,228,155,,0000-2400,1234567,,,36823,,, +580,B,pt,ZYK299 Rdio So Gabriel,,So Gabriel (RS),-30.3,-54.305556,,0.25,,10895,230,156,,,,,,36901068,,, +581,RUS,,DM,b,Moskva/Ramenskoe (MV),55.604167,38.041667,,0.025,,2091,67,94,,,,,L580 U582 14.8s,IDx2,85525,, +583,RUS,,RMP Russian Navy R,c,Kaliningrad/Baltic Fleet (KA),54.716667,20.5,,1,,976,67,67,,????-????,1234567,,,19901340,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0625-0630,12345..,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0650-0700,12345..,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0800-0815,1234567,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1208-1300,12345..,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1230-1300,.....67,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1400-1415,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0630-0650,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0700-0800,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0815-1208,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0815-1230,.....67,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1300-0620,......7,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1300-0800,.....6.,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1300-1400,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1415-0620,1234...,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1415-0800,....5..,9999,,141,,, +585,TUN,ar,RTT R Nationale,,Gafsa (gaf),34.469556,8.836417,,200,,1971,173,54,,0400-2400,1234567,9999,,147,,, +585,G,en,BBC R Scotland,,Dumfries (SC-DGA),55.028056,-3.479444,,2,,728,300,61,,0600-2400,1234567,0,,143,,, +585,G,en,BBC WS,,Dumfries (SC-DGA),55.028056,-3.479444,,2,,728,300,61,,0000-0600,1234567,0,,143,,, +585,CVA,Ang,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1100-1130,......7,999,,140,,, +585,CVA,Aud,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0920-1000,..3....,999,,140,,, +585,CVA,L,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0630-0700,123456,999,,140,,, +585,CVA,Ros,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1940-2000,1234567,999,,140,,, +585,CVA,en,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0730-0745,1234567,999,,140,,, +585,CVA,en,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1715-1730,1234567,999,,140,,, +585,CVA,fr,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0715-0730,1234567,999,,140,,, +585,CVA,fr,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1200-1215,123456,999,,140,,, +585,CVA,fr,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1700-1715,1234567,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0700-0715,123456,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0830-0930,......7,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1100-1115,123456,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1300-1330,1234567,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1630-1700,1234567,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1830-1900,1234567,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,2200-2315,1234567,999,,140,,, +585,RUS,ru,R Rossii,,Sylva (PR),58.022778,56.734444,,150,,3192,58,67,,2300-1900,1234567,0,,146,,, +585,IRN,fa,IRIB R Quran,,Tehran (thr),35.592278,51.244569,,600,,3954,100,69,,0000-2400,1234567,0,,144,,, +585,ARS,ar,BSKSA Idha'atu-i Riyadh/Idha'atu Nedaa al-Islam,,Ar-Riyad (riy),24.826139,46.879111,,1200,218,4552,116,72,,0300-2300,1234567,0,,139,,, +585,IND,,AIR West,,Nagpur (MH),21.200833,79.145556,,300,,6996,90,102,,0200-0500,1234567,0,,47516,,, +585,IND,,AIR West,,Nagpur (MH),21.200833,79.145556,,300,,6996,90,102,,0700-0900,123456,0,,47516,,, +585,IND,,AIR West,,Nagpur (MH),21.200833,79.145556,,300,,6996,90,102,,1130-1740,123456,0,,47516,,, +585,IND,,AIR West,,Nagpur (MH),21.200833,79.145556,,300,,6996,90,102,,1200-1740,......7,0,,47516,,, +585,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Chumbum (zbw),-6.151667,39.217028,,10,,7185,143,119,,0300-0600,1234567,,,2310,,, +585,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Chumbum (zbw),-6.151667,39.217028,,10,,7185,143,119,,0900-2100,1234567,,,2310,,, +585,CHN,,Zhongguo Dongnan GG,,Fuzhou/Wenshanzhou (FJ),25.972333,119.288506,,200,135,9171,57,121,,2255-1650,1234567,,,47507,,, +585,CHN,,Jinchang RGD,,Jinchang (GS),38.533056,102.213611,,3,,7083,60,123,,,,,,47509,,, +585,CHN,zh,Jiangsu RGD Gushi Guangbo,,Nanjing/Gulizhen (JS),31.861022,118.673067,,50,,8601,54,125,,2130-1700,1234567,,,47512,,, +585,CHN,zh,Langfang RGD Gushi Pindao,,Langfang (HB),39.528056,116.731667,,10,,7812,50,125,,2055-1700,1234567,,,36200968,,, +585,CHN,,Changchun RGD,,Changchun (JL),43.8,125.4,,10,,7855,42,126,,,,,,36200971,,, +585,CHN,,Jincheng RGD Xinwen Pindao,,Jincheng (SX),35.511711,112.857272,,10,,7953,55,127,,,,,,47511,,, +585,CHN,zh,Nanyang RGD,,Nanyang (HE),32.975278,112.498333,,10,,8155,57,129,,2155-1600,1234567,,,47514,,, +585,CHN,zh,Jingzhou RGD Jiankang,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,2100-1600,1234567,,,36200969,,, +585,LAO,lo,LNR Savannakht R,,Savannakht (skt),16.578089,104.746494,,20,,9114,73,131,,2200-1230,1234567,,,47524,,, +585,J,,JOPG NHK1,,Kushiro (hok),42.990278,144.4125,,10,,8697,30,133,,0000-2400,1234567,,,47521,,, +585,INS,id,RRI Pro-4,,Surabaya (JI-ksu),-7.500833,112.523611,,50,,11763,82,136,,2130-1700,1234567,0,,47517,,, +585,THA,th,Thor. Phor. Saam,,Phrae/Rat Uthit Road (pre),18.145833,100.156944,,5,,8675,76,136,,????-1400,1234567,,,47534,,, +585,CHN,,Henan RGD Xinxi Guangbo,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,,,,,36200972,,, +585,THA,th,Wor. Por. Thor. 15,,Chumphon/Fort Khet Udomsak (cpn),10.511111,99.109722,,5,,9270,81,138,,,,,,47533,,, +585,CHN,ko,Yanbian RGD,,Hunchun (JL),42.866667,130.35,,1,,8163,39,139,,,,,,36200970,,, +585,PHL,,DXCP-AM Radyo Totoo,,General Santos City (sco),6.119444,125.187222,,5,,11354,63,144,,2000-1500,1234567,,,47528,,, +585,PHL,tl,DYLL-AM Radyo ng Bayan,,Iloilo City/Molo (ilo),10.716667,122.566667,,2,,10769,63,147,,,,,,47529,,, +585,PNG,,NBC Kundu-R Sandaun,,Vanimo (san),-2.7,141.283333,,10,,13125,53,147,,1930-1200,12345..,,,51416,,, +585,J,ja,NHK R 1,,Koza (kns-wak),33.515556,135.830833,,0.5,,9301,40,148,,0000-2400,1234567,,,47520,,, +585,J,,NHK R 1,,Iwakuni (chg-yam),34.161389,132.233611,,0.3,,9076,43,149,,0000-2400,1234567,,,47518,,, +585,AUS,en,6PB ABC Newsr,,Perth/Hamersley (WA),-31.853592,115.8228,,10,,14027,97,150,,0000-2400,1234567,,,47505,,, +585,PNG,,NBC Karai National R,,Port Moresby/Waigani (ncd),-9.429722,147.184444,,10,,14096,51,151,,1930-1400,1234567,,,47531,,, +585,J,ja,NHK R 1,,Maizuru (kns-kyo),35.475556,135.390556,,0.1,,9091,40,154,,0000-2400,1234567,,,47522,,, +585,AUS,,2WEB Outback R,,Bourke/Mitchell St (NSW),-30.099722,145.982833,,10,,15918,69,157,,0000-2400,1234567,9970,,47503,,, +585,SMA,,KJAL,,Tafuna (AS),-14.357778,-170.776667,,5,,15810,356,159,,????-1000,1234567,,,38655,,, +585,AUS,en,7RN ABC National,,Hobart/Ralphs Bay (TAS),-42.925367,147.498578,,10,,16963,86,160,,0000-2400,1234567,,,47504,,, +585,NZL,mi,2XR R Ngati Porou,,Ruatoria (GIS),-37.887222,178.321111,,2,,18313,25,171,,0000-2400,1234567,,,47526,,, +588,UKR,,SF,b,Simferopol (KR),45.104167,33.958333,,0.025,,2154,100,95,,,,4,L1014 U1018 ,ID+8 gap,85528,, +588,UKR,,SK,b,Simferopol (KR),45.020833,33.958333,,0.025,,2159,100,95,,,,,,85529,,, +588,UKR,,SN,b,Simferopol (KR),45.020833,33.958333,,0.025,,2159,100,95,,,,997,L1025 U1020 ,ID+8 gap,85530,, +588,RUS,,W,b,Kurumoch / Samara,53.520833,50.125,,0.025,,2896,69,102,,,,,,86755,,, +590,CAN,en,VOCM,,Saint John's (NL),47.543889,-52.777778,,20,,4157,287,86,,,,999,,40615,,, +590,UKR,,GO,b,Gostomel,50.5625,30.208333,,0.025,,1655,87,90,,,,,L1017 ,IDx2 + 5 gap,85532,, +590,RUS,,FR,b,Kaluga / Trabtsevo (KL),54.604167,36.291667,,0.025,,1987,70,93,,,,,L1052 ,85531,,, +590,CAN,en,CJCL,,Toronto/Grimsby (ON),43.151017,-79.536697,,50,,6133,298,101,,,,1,,36157,,, +590,USA,,WEZE,,Boston (MA),42.406667,-71.087222,,5,,5662,292,107,,,,999,,41347,,, +590,USA,,WARM,,Scranton (PA),41.478889,-75.880833,,5,,6031,294,110,,,,,,40742,,, +590,CAN,en,CJCW,,Sussex (NB),45.685,-65.523889,,0.25,,5088,292,114,,,,,,36160,,, +590,USA,,WROW,,Albany (NY),42.573611,-73.786667,,1,,5820,294,115,,,,9973,,42904,,, +590,USA,,WKZO,,Kalamazoo (MI),42.348611,-85.563333,,5,,6553,300,116,,,,,,42113,,, +590,VEN,es,YVKL R Continente,,Caracas (dcf),10.49565,-66.963319,,50,,7956,263,120,,0000-2400,1234567,989,,45356,,, +590,CAN,,CFAR,,Flin Flon (MB),54.801111,-101.853056,,1,,6419,320,121,,,,,,35931,,, +590,USA,,WMBS,,Uniontown (PA),39.859722,-79.745556,,1,,6393,295,121,,,,,,42285,,, +590,CUB,es,R Musical Nacional,,La Julia (Bataban) (my),22.805239,-82.244911,,25,,7938,283,122,,,,9998,,31600049,,, +590,USA,,KXSP,,Omaha (DN) (NE),41.315278,-95.997778,,5,,7233,306,122,,,,2,,39086,,, +590,USA,,KXSP,,Omaha (U) (NE),41.316667,-95.997778,,5,,7233,306,122,,,,,,20016202,,, +590,USA,,WDWD,,Atlanta (GA),33.845278,-84.644444,,4.5,,7175,293,122,,,,,,41222,,, +590,USA,,WJMS,,Ironwood (MI),46.423611,-90.208333,,1,,6502,307,122,,,,,,20016043,,, +590,ALS,en,KHAR,,Anchorage (AK),61.12,-149.895278,,5,,7250,348,123,,0000-2400,1234567,2,,38526,,, +590,CUB,es,R Rebelde,,Guantnamo/CTOM1 (gu),20.1419,-75.254311,,10,,7693,276,124,,,,,,36590,,, +590,USA,,WVLK,,Lexington (KY),38.111667,-84.5775,,1,,6827,296,125,,,,9941,,43306,,, +590,CLM,es,HJCR W R,,Medelln (ant),6.306169,-75.593011,,50,,8909,268,126,,,,1,,37377,,, +590,USA,en,KQNT,,Spokane (WA),47.615278,-117.249167,,5,,7706,323,127,,,,,,39203,,, +590,USA,,KFNS,,Wood River (IL),38.928611,-90.085556,,1,,7092,301,128,,,,,,38414,,, +590,USA,en,WDIZ,,Panama City (FL),30.172222,-85.613611,,2.5,,7539,291,128,,0000-2400,1234567,,,41164,,, +590,B,pt,ZYJ700 Rdio Roraima AM,,Boa Vista (RR),2.816667,-60.666667,,10,,8215,253,129,,,,,,36901085,,, +590,DOM,es,HIDV R Santa Maria,,Concepcin de La Vega (veg),19.263069,-70.531539,,1,,7446,272,131,,0900-0300,1234567,,,37241,,, +590,CAN,en,CFTK,,Terrace (BC),54.501111,-128.515556,,1,,7451,333,132,,,,986,,36014,,, +590,USA,,WCAB,,Rutherfordton (NC),35.393056,-81.923056,,0.228,,6878,292,132,,,,,,40943,,, +590,HTI,,R Ti Moun,,Port-au-Prince (oue),18.516667,-72.316667,,1,,7631,273,133,,,,,,52094,,, +590,USA,,KUGN,,Eugene (OR),44.100833,-123.051667,,5,,8273,325,133,,,,9909,,39567,,, +590,B,pt,ZYH445 Rdio Cruzeiro da Bahia,,Salvador/Ilha de Itaparica (BA),-12.921853,-38.631039,,5,,8421,225,134,,,,,,36901090,,, +590,USA,,KSUB,,Cedar City (D) (UT),37.6975,-113.181111,,5,,8446,315,134,,,,11,,39427,,, +590,USA,en,WLES,,Lawrenceville/Bon Air (VA),37.514444,-77.507778,,0.058,,6432,291,134,,,,,,42155,,, +590,B,pt,ZYL249 Rdio Cultura de Monlevade,,Joo Monlevade (MG),-19.821719,-43.17275,,10,,9325,226,135,,,,,,36901087,,, +590,MEX,es,XEPH-AM Sabrosita 590,,Mxico D.F/Iztacalco (dif),19.388756,-99.125003,,10,,9326,294,135,,,,,,44547,,, +590,USA,,KID,,Idaho Falls (ID),43.559722,-111.920833,,1,,7847,317,135,,,,,,38582,,, +590,USA,en,WAFC,,Clewiston (FL),26.729722,-80.913333,,0.47,,7520,285,135,,,,,,40662,,, +590,B,pt,ZYI213 Rdio Tribuna,,Cariacica (ES),-20.260189,-40.348211,,5,,9232,224,137,,,,86,,36901083,,, +590,CTR,,TIRN R Nacional,,San Jos (sjs),9.933333,-84.016667,,5,,9166,276,137,,0000-2400,1234567,,,40603,,, +590,GTM,,TGRQ R Quich,,Santa Cruz del Quich (qch),15.037483,-91.153853,,5,,9198,285,137,,1100-0400,1234567,,,40535,,, +590,USA,,KCSJ,,Pueblo (CO),38.358333,-104.636944,,1,,7954,310,137,,,,,,38209,,, +590,USA,en,WPFP979,,Fort Lee (NJ),40.877653,-74.010992,,0.01,,5957,292,137,,,,,,20010444,,, +590,USA,en,WPFP980,,Jersey City (NJ),40.710983,-74.077658,,0.01,,5974,292,137,,,,,,20010443,,, +590,ARG,es,LS9 R Continental,,Buenos Aires (df),-34.884694,-58.670861,,25,,11546,230,138,,0000-2400,1234567,4,,40159,,, +590,USA,,KGLE,,Glendive (MT),47.097222,-104.785833,,0.111,,7197,315,138,,,,,,38489,,, +590,USA,,WWLX,,Lawrenceburg (TN),35.203333,-87.3275,,0.133,,7230,296,138,,,,,,43404,,, +590,B,pt,ZYI420 Rdio CBN Cuiab,,Cuiab (MT),-15.660839,-55.988928,,5,,9619,239,139,,,,,,36901089,,, +590,B,pt,ZYI692 Rdio Serrana,,Araruna (PB),-6.516667,-35.733333,,0.25,,7642,226,139,,,,,,36901078,,, +590,MEX,es,XECJU-AM,,Jarretaderas (nay),20.699578,-105.269714,,5,,9582,299,139,,,,,,43848,,, +590,USA,,KLBJ,,Austin (TX),30.237778,-97.629722,,1,,8274,300,140,,,,,,38779,,, +590,USA,en,WNVY510,,Frederick (MD),39.410989,-77.433583,,0.01,,6283,293,140,,,,,,20010437,,, +590,USA,en,WPBJ222,,Bethesda (MD),39.015389,-77.127694,,0.01,,6293,292,140,,,,,,20010441,,, +590,USA,en,WPBJ222,,Clarksburg (MD),39.2315,-77.294358,,0.01,,6287,293,140,,,,,,20010446,,, +590,USA,en,WPBJ222,,Germantown (MD),39.144325,-77.209417,,0.01,,6289,293,140,,,,,,20010442,,, +590,USA,en,WPBJ222,,Potomac (MD),38.995111,-77.164694,,0.01,,6297,292,140,,,,,,20010440,,, +590,USA,en,WPBJ222,,Rockville (MD),39.077656,-77.164972,,0.01,,6291,292,140,,,,,,20010438,,, +590,USA,en,WPBJ222,,Rockville (MD),39.127656,-77.177472,,0.01,,6288,292,140,,,,,,20010439,,, +590,B,pt,ZYH627 Rdio Vale do Rio Poty,,Crates (CE),-5.193233,-40.639256,,0.25,,7761,231,141,,,,,,36901077,,, +590,B,pt,ZYJ234 Rdio Difusora AM,,Curitiba/Quatro Barras (PR),-25.401372,-49.053836,,5,,10161,228,141,,,,,,36901086,,, +590,USA,,KSUB,,Cedar City (N) (UT),37.697222,-113.183056,,1,,8446,315,141,,,,11,,20016051,,, +590,HND,,HRLP9,,Juticalpa (ola),14.666667,-86.216667,,1,,8902,281,143,,,,,,37794,,, +590,USA,en,WPCF719,,Appleton/3433 W College Ave (WI),44.2625,-88.460992,,0.01,,6572,304,143,,,,,,20010436,,, +590,ARG,es,LV12 R Independencia,,San Miguel del Tucumn (tm),-26.816667,-65.216667,,5,,11182,239,144,,0000-2400,1234567,,,40238,,, +590,B,pt,ZYJ240 Rdio Difusora Regional,,Cruzeiro do Oeste (PR),-23.781944,-53.834722,,2.7,,10258,233,144,,,,,,36901080,,, +590,CHL,es,CA59 R.Santa Maria de Guadalupe,,Antofagasta (AN),-23.466667,-70.4,,5,,11198,245,144,,1000-0430,1234567,,,35703,,, +590,EQA,,HCFA4,,Portoviejo (man),-0.916667,-80.45,,2,,9874,267,144,,,,,,36928,,, +590,HND,,HRLP8,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37793,,, +590,HWA,en,KSSK,,Honolulu (HI),21.323889,-157.875556,,7.5,,11708,345,144,,0000-2400,1234567,2,,39415,,, +590,MEX,es,XEBH-AM La Mejor,,Hermosillo (son),29.079692,-110.922669,,1,,9131,308,144,,,,,,43777,,, +590,MEX,es,XEE-AM R Frmula 1,,Durango (dur),24.054564,-104.622661,,1,,9239,301,144,,,,,,43950,,, +590,NCG,,La Voz de Chontales,,Juigalpa (cht),12.083333,-85.4,,1,,9073,279,144,,,,,,33700009,,, +590,PNR,es,HOH3 RPC R,,Chitr (her),8.001672,-80.441544,,1,,9092,272,144,,,,,,37687,,, +590,USA,en,KTIE,,San Bernardino (CA),34.072222,-117.297778,,0.96,,8985,316,144,,,,8,,39487,,, +590,B,pt,ZYH798 Rdio Manchester,,Anpolis (GO),-16.328889,-48.98795,,1,,9287,233,145,,,,,,36901091,,, +590,MEX,es,XEZZZ-AM Triple Z,,Tapachula (cps),14.928764,-92.271108,,1,,9281,286,145,,,,,,45169,,, +590,PRG,,ZP32 R Ycuamandyyu,,Villa de San Pedro (spd),-24.116667,-57,,2.5,,10464,235,145,,0900-0200,1234567,,,45529,,, +590,USA,en,KZHS,,Hot Springs (AR),34.498611,-92.979167,,0.067,,7631,299,145,,,,,,38031,,, +590,B,pt,ZYK643 Rdio 79,,Ribeiro Preto (SP),-21.198322,-47.856106,,1,,9695,229,146,,,,,,36901079,,, +590,EQA,,HCSP1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,37135,,, +590,MEX,es,XEFD-AM La Mejor,,Ro Bravo (tam),25.978611,-98.070278,,0.5,,8675,297,146,,,,,,43999,,, +590,USA,,KTHO,,South Lake Tahoe (CA),38.916667,-119.962778,,0.5,,8644,320,146,,,,5,,39483,,, +590,B,pt,ZYK534 Rdio Atlntica AM,,Santos/Guaruj (SP),-23.948917,-46.269222,,1,,9881,227,147,,,,,,36901088,,, +590,ARG,es,LRA30 R Nacional,,San Carlos de Bariloche (rn),-41.133406,-71.274447,,5,,12772,234,149,,0855-0400,1234567,,,39951,,, +590,B,pt,ZYJ901 Rdio Progresso AM,,Descanso (SC),-26.8175,-53.513333,,1,,10526,231,149,,,,,,36901084,,, +590,CHL,es,CD59 R Chilena Solonoticias,,Punta Arenas/Cerro Mirador (MA),-53.159475,-70.975044,,10,,13727,225,149,,1000-0430,1234567,,,35905,,, +590,PRU,,OCX6V R Catedral,,Miraflores (are),-16.366667,-71.333333,,1,,10628,250,149,,,,,,37000020,,, +590,MEX,es,XEGTO-AM,,Guanajuato (gua),21.100556,-101.398056,,0.25,,9312,297,151,,,,,,44084,,, +590,B,pt,ZYK210 Rdio Difusora Alegretense,,Alegrete (RS),-29.791667,-55.769444,,0.5,,10924,231,153,,,,,,36901092,,, +590,B,pt,ZYK612 Rdio Clube Mirandpolis,,Mirandpolis (SP),-21.175,-51.061111,,0.25,,9862,232,153,,,,,,36901081,,, +590,CHL,,CC59 R Hebron,,Concepcin (BI),-36.816667,-73.033333,,1,,12511,238,155,,0000-2400,1234567,,,35832,,, +590,USA,en,WPJM932,,Mill Valley/300 E Blithedale Ave (CA),37.911011,-122.544364,,0.01,,8853,321,163,,,,,,20010445,,, +591,RUS,,RN,b,Penza (PZ),53.104167,45.041667,,0.025,,2579,72,99,,,,995,L1020 U1000 ,IDx2,85533,, +591,RUS,,WH,b,Penza (PZ),53.104167,45.041667,,0.025,,2579,72,99,,,,,L1020 ,IDx2 + 6 gap,85534,, +592,RUS,,AG,b,Morozovsk (RO),48.354167,41.791667,,0.025,,2525,85,98,,,,,L420 ,IDx2 + 7 gap,85535,, +592,RUS,,CS,b,Morozovsk (RO),48.354167,41.791667,,0.025,,2525,85,98,,,,,L404 15.0s,IDx2 + 6 gap,85536,, +592,UZB,,GR,b,Guzar (qas),38.618056,66.238056,,0.025,,4759,84,121,,,,,,34500014,,, +594,POR,pt,Rdio Sim,,Muge (san),39.092167,-8.695889,,60,,1857,225,58,,0000-2400,1234567,11,,157,,, +594,ARS,ar,BSKSA Idha'atu-i Riyadh/Idha'atu Nedaa al-Islam,,Duba (tbk),27.449167,35.591111,,2000,300,3658,127,61,,0245-1500,1234567,4,,148,,, +594,MRC,ar,SNRT Al Ida Al-Watania,,Oujda (otl),34.663,-1.908194,,50,,2050,202,61,,0400-0100,1234567,986,,156,,, +594,SYR,ar,SRTV 2 Sawt al-Sha'ab,,Saraqeb (idl),35.872722,36.799,,100,,2992,115,67,,0400-2000,1234567,9991,,162,,, +594,SVN,sl,R Odmev,,Cerkno (go),46.116667,13.983333,,0.6,,864,137,68,,1400-1800,1234567,,,161,,, +594,SVN,sl,R Primorski Val,,Cerkno (go),46.116667,13.983333,,0.6,,864,137,68,,1800-1400,1234567,,,161,,, +594,RUS,ru,R Rossii,,Izhevsk (UD),57.146811,53.140961,,40,,2998,61,71,,0200-2200,1234567,9993,,159,,, +594,IRN,fa,IRIB R Fars,,Shiraz/Dehnow (frs),29.450194,52.645556,,400,,4528,105,76,,0000-2400,1234567,9982,,155,,, +594,NIG,ha,FRCN Kaduna,,Kaduna/Jaji (kdn),10.821183,7.567514,,100,,4592,178,83,,0400-2305,1234567,0,,2313,,, +594,ARS,ar,BSKSA Idha'atu-i Riyadh,,Makkah (mkh),21.372511,39.690175,,50,,4451,127,85,,0000-2400,1234567,,,10600006,,, +594,IRQ,,People's (Al-Nas) R,,Baghdad (bgh),33.35,44.383333,,5,,3674,110,87,,0400-1500,1234567,,,47310,,, +594,ETH,,ERTA Ethiopia National R,,Bahir Dar (amh),11.592722,37.366778,,100,,5291,137,90,,0300-0600,1234567,,,46831,,, +594,ETH,,ERTA Ethiopia National R,,Bahir Dar (amh),11.592722,37.366778,,100,,5291,137,90,,0800-2100,1234567,,,46831,,, +594,ARS,ar,BSKSA Idha'atu-i Riyadh,,Al-Hofuf=Al-Hufuf (shy),25.273611,49.581944,,10,,4681,113,94,,0300-2300,1234567,,,10600003,,, +594,AFG,,R Faryab,,Maimana (fyb),35.916667,64.75,,7,,4850,88,97,,1230-1430,1234567,,,46809,,, +594,IND,,AIR East/AIR G.O.S.,,Chinsurah/Magra (WB),23.027528,88.353056,,1000,,7469,81,102,,0130-0535,1234567,0,,47546,,, +594,IND,,AIR East/AIR G.O.S.,,Chinsurah/Magra (WB),23.027528,88.353056,,1000,,7469,81,102,,0800-1100,1234567,0,,47546,,, +594,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.6488,91.253056,,300,,7116,74,103,,2250-1700,1234567,,,47543,,, +594,MYA,en,Myanmar R/Padauk Myay R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.182172,96.140722,,200,,8233,77,116,SEA,1530-1600,1234567,,,22100002,,, +594,MYA,my,Myanmar R/Padauk Myay R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.182172,96.140722,,200,,8233,77,116,SEA,0230-0330,.....67,,,22100002,,, +594,MYA,my,Myanmar R/Padauk Myay R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.182172,96.140722,,200,,8233,77,116,SEA,0930-1530,1234567,,,22100002,,, +594,MYA,my,Myanmar R/Padauk Myay R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.182172,96.140722,,200,,8233,77,116,SEA,2300-0230,1234567,,,22100002,,, +594,J,,JOAK NHK1,,Shobu/Kuki (kan-sai),36.070833,139.624722,,300,,9211,36,120,,0000-2400,1234567,9998,,47548,,, +594,MWI,en,MBC R 1,,Lilongwe (lgw),-14.003667,33.751806,,30,,7809,152,120,,0253-2200,1234567,,,2311,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Jinan (SD),36.700278,117.089444,,50,,8081,52,121,,2100-1600,1234567,,,47542,,, +594,CHN,bo,Xizang RGD,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,2100-1805,1234567,,,36201231,,, +594,CHN,bo,Xizang RGD,,Nagarz=Langkazi (XZ),28.963,90.398306,,1,,7116,75,128,,2100-1805,1234567,,,36201232,,, +594,VTN,vi,VOV1,,Đ Nẵng (dan),16.083889,108.231111,,50,,9384,71,128,,2145-1700,1234567,,,47561,,, +594,CHN,bo,Xizang RGD,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,2100-1805,1234567,,,36201331,,, +594,CHN,bo,Xizang RGD,,Qonggyai=Qiongjie (XZ),29.029167,91.683333,,1,,7195,75,129,,2100-1805,1234567,,,47545,,, +594,CHN,bo,Xizang RGD,,Zhanang (XZ),29.323611,91.686111,,1,,7171,74,129,,2100-1805,1234567,,,36201333,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Jining (SD),35.466667,116.583333,,10,,8164,53,129,,2100-1600,1234567,,,36200966,,, +594,KOR,,HLAG KBS 1 R,,Yeongju (gsb),36.845278,128.61,,10,,8651,44,133,,0000-2400,1234567,,,47549,,, +594,PHL,,DZBB-AM Super Radyo,,Obando/Panghulo (bul),14.697739,120.944744,,20,,10304,62,135,,0000-2400,1234567,10,,47553,,, +594,TWN,,Fu Hsing Kuangpo Tientai 1,,Kaohsiung/Niaosun (KH),22.649553,120.3471,,10,,9536,58,135,,0000-2400,1234567,,,47558,,, +594,TWN,,Fu Hsing Kuangpo Tientai 2,,Taipei (TPS),25.090206,121.511994,,10,,9378,56,135,,0000-2400,1234567,,,47560,,, +594,THA,th,Phon Por. Tor. Or.,,Bangkok/Kiak Kai Junction (bmp),13.797694,100.523736,,5,,9078,78,137,,????-1745,1234567,,,47557,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Zibo (SD),36.8,118.05,,1,,8124,51,138,,2100-1600,1234567,,,36201334,,, +594,TWN,,Fu Hsing Kuangpo Tientai 2,,Taichung (TC),24.136983,120.598661,,5,,9414,57,138,,0000-2400,1234567,,,47559,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Yantai (SD),37.5675,121.360556,,1,,8227,48,139,,2100-1600,1234567,,,36200965,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Qingdao (SD),36.05,120.333333,,1,,8312,50,140,,2100-1600,1234567,,,36201332,,, +594,PHL,tl,DYWR-AM Bombo Radyo,,Tacloban City (lyt),11.216667,125,,10,,10869,60,140,,,,,,47554,,, +594,PHL,,DXDB-AM Radyo Totoo,,Malaybalay (buk),8.133333,125.116667,,5,,11163,62,144,,2000-1200,1234567,,,47552,,, +594,AUS,en,3WV ABC Western Victoria,,Horsham/Dooen (VIC),-36.640528,142.255417,,50,,16184,81,150,,0000-2400,1234567,7,,47539,,, +594,INS,id,R SBY-Sekuntum Bunga Yonina,,Jakarta (JK),-6.201667,106.851389,,1,,11264,86,151,,,,,,47811,,, +594,NZL,,3XL NZs Rhema,,Timaru/Saint Andrews (CAN),-44.515556,171.198333,,5,,18613,59,168,,0000-2400,1234567,,,47550,,, +594,NZL,en,NZs Rhema,,Wanganui/Cameron Rd W (MWT),-39.902222,174.979722,,2,,18400,37,172,,0000-2400,1234567,,,47551,,, +595,RUS,,G,b,Moskva/Vnukovo (MV),55.604167,37.208333,,0.025,,2039,67,93,,,,,U596 ,85537,,, +595,RUS,,O,b,Moskva/Vnukovo (MV),55.604167,37.291667,,0.025,,2044,67,93,,,,0,L1020 U1020 14.66s,85539,,, +595,RUS,,I,b,Kirovsk / Apatity (MU),67.479167,33.625,,0.025,,2252,30,95,,,,,15.1s,85538,,, +595,RUS,,W,b,Chertovitskoye / Vorenezh (VN),51.8125,39.208333,,0.025,,2228,78,95,,,,,,85540,,, +596,RUS,,KD,b,Sankt-Peterburg/Pushkin (SP),59.6875,30.375,,0.025,,1702,51,90,,,,,U1090 14.8s,IDx2,86756,, +597.5,XOE,,OPR,b,UNID - Ocean Princess ???,56.395833,2.041667,,0.025,,554,331,79,,,,-597.5,L412 U380 6.7s,86757,,, +597.5,XOE,,DPA,b,Morecambe British Gas Platform,53.854167,-3.625,,0.025,,699,290,80,,,,500,L~400 U~400 ,85542,,, +598,NOR,,LF4Q,b,Snorre B,60.854167,3.458333,,0.025,,989,351,83,,,,0,L407 U401 8.5s,85546,,, +598,NOR,,LF4Y,b,Polar Pioneer,60.729167,3.541667,,0.025,,974,351,83,,,,,,86758,,, +598,NOR,,LF6K,b,Troll C / Norsk Hydro Platform,60.895833,3.625,,0.025,,992,351,83,,,,,L433 U376 ,86759,,, +598,UKR,,F,b,Ivano-Frankovsk (IF),48.895833,24.708333,,0.025,,1339,98,86,,,,,L1057 ,IDx2 + 8.6 tone,85543,, +599,RUS,,GL,b,Nishnyaya Pesha,66.770833,47.791667,,0.025,,2770,38,101,,,,,30.3s,IDx2,85547,, +600,CAN,en,CBNA,,Saint Anthony (NL),51.367778,-55.615556,,10,,4138,294,88,,,,5,,35791,,, +600,UKR,,KR,b,Tchervonobirka,50.604167,29.291667,,0.025,,1591,87,89,,,,,L1040 U1020 30.0s,IDx2,85550,, +600,RUS,,GO,b,Andreapol (TV),56.645833,32.291667,,0.025,,1739,63,90,,,,0,L996 U998 15.0s,IDx2 + 4.5 gap,85549,, +600,RUS,,PQ,b,Andreapol (TV),56.645833,32.291667,,0.025,,1739,63,90,,,,997,L981 U976 15.0s,IDx2 + 3 gap,85551,, +600,CAN,en,CKAT,,North Bay (ON),46.179167,-79.463333,,5,,5908,300,109,,,,83,,35941,,, +600,USA,,WCAO,i,Baltimore (MD),39.429722,-76.761667,,5,,6239,292,112,,,,9984,,40945,,, +600,CAN,en,CJWW,,Saskatoon (SK),52.073611,-106.810833,,8,,6864,320,117,,,,996,,36240,,, +600,CUB,es,R Rebelde,,Urbano Noris/San Germn (ho),20.590286,-76.146736,,50,,7716,277,117,,,,9999,,36564,,, +600,USA,,WSJS,,Winston-Salem (NC),36.116667,-80.357222,,5,,6722,292,117,,,,,,43010,,, +600,USA,,WFST,,Caribou (ME),46.886667,-68.045556,,0.127,,5168,295,118,,,,,,41442,,, +600,USA,,KSJB,,Jamestown (ND),46.8175,-98.709444,,5,,6920,312,119,,,,0,,39368,,, +600,USA,,WICC,,Bridgeport (CT),41.16,-73.164722,,0.5,,5883,292,119,,,,9984,,41724,,, +600,USA,en,WMT,,Cedar Rapids (IA),42.061111,-91.545,,5,,6922,304,119,,,,2,,42398,,, +600,CAN,en,CBAX,,McAdam (NB),45.580556,-67.3425,,0.04,,5209,293,123,,,,,,20109081,,, +600,PTR,es,WYEL,,Mayaguez (PR),18.1775,-67.170833,,5,,7308,269,123,,,,997,,40659,,, +600,USA,,WBOB,,Jacksonville (D) (FL),30.3,-81.759444,,5,,7280,288,123,,,,,,40930,,, +600,USA,,WREC,,Memphis (TN),35.194722,-90.01,,5,,7395,298,124,,,,0,,42832,,, +600,CLM,es,HJHJ R Libertad,,Barranquilla (atl),10.916667,-74.766667,,50,,8451,270,125,,,,123,,37472,,, +600,CUB,es,R Progreso,,Santiago de Cuba/CTOM2 (sc),20.100044,-75.8203,,5,,7735,277,127,,,,,,31600039,,, +600,USA,,WBOB,,Jacksonville (N) (FL),30.3,-81.758056,,1.8,,7280,288,127,,,,,,20016038,,, +600,USA,,WSNL,,Flint (MI),42.9075,-83.835278,,0.25,,6408,300,127,,,,,,43036,,, +600,B,pt,ZYK278 Rdio Gacha,,Porto Alegre/BR-116 (RS),-29.999278,-51.287833,,100,,10712,227,129,,,,9998,,36901098,,, +600,CAN,en,CBLV,,Bancroft (ON),45.05,-77.858056,,0.04,,5893,298,130,,,,,,20109080,,, +600,USA,,WCHT,,Escanaba (MI),45.805278,-87.170278,,0.134,,6380,304,130,,,,,,41003,,, +600,VEN,,YVSW R Alto Llano,,Santa Brbara de Barinas (bns),7.8125,-71.179722,,15,,8476,265,130,,0900-0500,1234567,,,51649,,, +600,DOM,,R Studio 600 AM,,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,,,,,52228,,, +600,USA,,KGEZ,,Kalispell (MT),48.161111,-114.280833,,1,,7532,322,132,,,,,,38468,,, +600,USA,,WFRM,,Coudersport (PA),41.753056,-78.000833,,0.046,,6142,295,132,,,,,,41435,,, +600,B,pt,ZYH287 Rdio Municipal,,So Gabriel da Cachoeira (AM),-0.12715,-67.089222,,10,,8902,257,133,,,,,,36901096,,, +600,USA,,KTBB,,Tyler (TX),32.271667,-95.206389,,2.5,,7954,299,133,,,,,,39455,,, +600,B,pt,ZYH920 Rdio Mirante AM,,So Lus (MA),-2.577256,-44.302506,,1,,7709,236,134,,,,,,36901093,,, +600,NCG,es,YNLD La Nueva R Ya,,Managua (mng),12.077778,-86.031944,,10,,9116,279,134,,0000-2400,.....67,,,52186,,, +600,NCG,es,YNLD La Nueva R Ya,,Managua (mng),12.077778,-86.031944,,10,,9116,279,134,,1000-0600,12345..,,,52186,,, +600,USA,,WSOM,,Salem (OH),40.829722,-80.930278,,0.045,,6392,296,134,,,,,,43043,,, +600,USA,,KROD,,El Paso (TX),31.915556,-106.3925,,5,,8626,307,135,,,,,,39279,,, +600,USA,en,WVAR,,Richwood (WV),38.230556,-80.546944,,0.055,,6568,294,135,,,,,,43279,,, +600,USA,,KOGO,i,San Diego (CA),32.721111,-117.069444,,5,,9103,315,137,,,,0,,39063,,, +600,B,pt,ZYH617 Rdio Cultura,,Aracati/Rua So Pedro (CE),-4.555403,-37.761378,,0.25,,7549,229,138,,,,,,36901095,,, +600,GTM,,TGRC Emisoras Unidas Campesina,,Escuintla (esl),14.266667,-91.366667,,5,,9280,285,138,,,,,,40526,,, +600,USA,,KCOL,,Wellington (CO),40.65,-105.0475,,0.5,,7773,311,138,,,,9996,,38193,,, +600,USA,,WKYH,,Paintsville (KY),37.789167,-82.784444,,0.043,,6742,295,138,,,,,,42105,,, +600,BOL,,CP190 R ACLO,,Sucre (cqs),-19.062336,-65.281231,,10,,10488,244,139,,0900-0200,1234567,,,51961,,, +600,SLV,,YSNK,,San Salvador (ssl),13.666667,-89.2,,3,,9189,283,140,,,,,,45302,,, +600,MEX,es,XETA-AM 600 Solo Hits,,Heroica Zitcuaro (mic),19.4325,-100.356944,,2.5,,9398,295,141,,,,,,44785,,, +600,ARG,,LU5 R Neuquen,,Neuqun (nq),-38.872783,-68.108792,,20,,12406,234,142,,0900-0500,1234567,,,51789,,, +600,B,pt,ZYI789 Cardeal Arcoverde AM,,Arcoverde (PE),-8.422689,-37.04025,,0.25,,7896,226,142,,,,,,36901099,,, +600,MEX,es,XEZ-AM R Frmula 2,,Mrida (yuc),21.048667,-89.635019,,1,,8574,288,142,,,,,,45115,,, +600,B,pt,ZYH486 Rdio Vale do Rio Grande AM,,Barreiras/Fazenda Venha (BA),-12.129758,-44.999294,,1,,8668,231,143,,,,45,,36901097,,, +600,HND,,HRLP13,,Choluteca (cho),13.266667,-87.166667,,1,,9088,281,144,,,,,,37780,,, +600,MEX,es,XECV-AM,,Ciudad Valles (slp),21.975561,-99.005775,,1,,9087,295,144,,,,,,43889,,, +600,USA,,WCVP,,Murphy (NC),35.066667,-83.999444,,0.02,,7035,294,144,,,,,,41110,,, +600,B,pt,Rdio Difusora de Rio Real,,Rio Real (BA),-11.444722,-37.869722,,0.25,,8237,225,145,,,,,,36901094,,, +600,CLM,es,HJZ95,,Barbacoas (nar),1.65,-78.166667,,1,,9493,267,145,,,,,,35901362,,, +600,MEX,es,XEHW-AM La Kaona,,El Rosario (sin),22.863056,-105.978333,,1,,9426,301,145,,,,,,44150,,, +600,MEX,es,XEBB-AM La Comadre,,Acapulco (gue),16.793889,-99.815833,,1,,9601,293,146,,,,,,43760,,, +600,MEX,es,XEMN-AM La Regiomontana,,Monterrey (nvl),25.720942,-100.264467,,0.5,,8830,299,146,,,,,,44392,,, +600,MEX,es,XEOCH-AM K'in R,,Ococingo (cps),16.908056,-92.0975,,0.5,,9096,287,147,,,,,,44481,,, +600,BOL,,Remisoras del Recobro,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,,,,,51962,,, +600,PRU,,OBX2B R Star,,Trujillo (lal),-8.116667,-79.033333,,1,,10410,261,148,,0000-2400,1234567,,,37000021,,, +600,MEX,es,XELAZ-AM La Mejor,,Sayula (jal),19.899181,-103.524433,,0.5,,9550,298,149,,,,,,44283,,, +600,MEX,es,XEDN-AM R Noticias,,Gmez Palacio (dur),25.566625,-103.466997,,0.25,,9034,301,150,,,,,,43924,,, +600,USA,,WVOG,,New Orleans (LA),29.956944,-90.159167,,0.031,,7843,294,150,,,,,,43326,,, +600,CHL,,CD60 R Tricolor,,Osorno (LL),-40.566667,-73.116667,,2.5,,12828,236,152,,1000-0500,1234567,,,35906,,, +600,USA,,KERB,,Kermit (TX),31.834722,-103.136111,,0.091,,8452,304,152,,,,,,38336,,, +600,USA,en,WPKJ773,,Bartow (FL),27.9,-81.85,,0.01,,7484,287,152,,,,,,20010447,,, +600,CHL,es,CB60 R Monumental,,Santiago (RM),-33.213156,-70.793889,,1,,12073,239,154,,0000-2400,1234567,,,35754,,, +600,PRU,,OAX6S R Cultura Toquepala,,Ilabaya (tac),-17.5,-70.5,,0.25,,10676,249,155,,,,,,40341,,, +600,PRU,,OCX6D R Cultural,,Ilabaya (tac),-17.416667,-70.516667,,0.25,,10669,249,155,,,,,,37000022,,, +600,USA,,KVNA,,Flagstaff (AZ),35.200556,-111.613611,,0.048,,8600,312,156,,,,,,39642,,, +602,YEM,ar,YGCRT Yemen R,,Hizyaz (sna),15.225,44.25,,1,,5285,127,110,,????-2300,1234567,0,,12000001,,, +603,F,fr,France Info,,Lyon/Tramoyes (01),45.875833,4.950833,,300,,701,189,39,,0000-2400,1234567,2,,169,,, +603,ROU,ro,SRR R Romnia Actualităţi,,Botoşani (BT),47.725444,26.673461,,50,50,1525,101,55,,0000-2400,1234567,0,,176,,, +603,ROU,de,SRR R Bukarest,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,0820-0830,......7,,,177,,, +603,ROU,de,SRR R Bukarest,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,1200-1300,123456,,,177,,, +603,ROU,ro,SRR Antena Satelor,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,0600-0820,......7,,,177,,, +603,ROU,ro,SRR Antena Satelor,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,0600-1200,123456,,,177,,, +603,ROU,ro,SRR Antena Satelor,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,0830-2200,......7,,,177,,, +603,ROU,ro,SRR Antena Satelor,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,1300-2200,123456,,,177,,, +603,ROU,ro,SRR R Romnia Actualităţi,,Oradea/Rontău (BH),46.999403,22.005028,,14,,1257,111,58,,0000-2400,1234567,0,,175,,, +603,E,es,RNE R 5,,Sevilla/La Corchuela (AND-SE),37.230933,-5.978653,,50,,1917,215,59,,0000-2400,1234567,18,,167,,, +603,G,en,BBC R 4,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,2,,613,304,60,,0600-0100,1234567,0,,170,,, +603,G,en,BBC WS,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,2,,613,304,60,,0100-0600,1234567,0,,170,,, +603,ROU,ro,SRR R Oltenia-Craiova,,Drobeta-Turnu Severin (MH),44.645556,22.638656,,14,65,1453,118,60,,0000-2400,1234567,40,,174,,, +603,G,en,Gold,,Littlebourne (EN-KNT),51.2875,1.158611,,1,,373,258,61,,0000-2400,1234567,9996,,171,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0625-0630,12345..,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0650-0700,12345..,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0800-0815,1234567,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1208-1300,12345..,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1230-1300,.....67,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1400-1415,12345..,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0815-1208,12345..,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0815-1230,.....67,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1300-1400,12345..,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1300-2300,.....67,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1415-2300,12345..,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0630-0650,12345..,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0700-0800,12345..,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0711-0800,.....67,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,2300-0625,1234..7,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,2300-0710,....56.,,,166,,, +603,E,pt,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0710-0711,.....67,,,166,,, +603,S,,R Nord,,Sala (MW) (vm),59.91185,16.649844,,1,,1073,32,68,,0000-2400,9999999,,,6800008,,, +603,CYP,el,CyBC-RIK Trito Prog.,,Nicosia (kyp-nic),35.053092,33.296217,,10,,2849,121,76,,0000-2400,1234567,7,,164,,, +603,EGY,ar,ERTU Al-Barnameg al-Aam/ERTU Al-Quran al-Karim,,Baranis (bar),23.928417,35.418111,,100,,3981,131,77,,0000-2400,1234567,,,168,,, +603,IRQ,ar,Republic of Iraq R,,Mosul=Msil (nnw),36.353944,43.231556,,20,,3365,107,78,,0130-2315,1234567,996,,2359,,, +603,IRQ,en,Republic of Iraq R,,Mosul=Msil (nnw),36.353944,43.231556,,20,,3365,107,78,,2315-0130,1234567,996,,2359,,, +603,NIG,,BRTV Borno R,,Maiduguri (brn),11.721044,13.298433,,50,,4534,170,85,,0400-2305,1234567,,,2323,,, +603,IRN,fa,IRIB R Khorasan-e Razavi,,Bajgiran (rkh),37.620989,58.41105,,10,,4295,91,90,,,,,,10800035,,, +603,IRN,fa,IRIB R Iran/IRIB R Quran,,Zahedan (sib),29.481339,60.862711,,50,,5075,98,91,,0200-2130,1234567,9895,,172,,, +603,NIG,,OGBC R,,Abeokuta (ogu),7.168614,3.301706,,25,,5005,184,93,,0400-2400,1234567,,,2474,,, +603,IND,,AIR North,,Ajmer (RJ),26.518889,74.716111,,200,,6255,89,97,,0025-0415,1234567,,,47594,,, +603,IND,,AIR North,,Ajmer (RJ),26.518889,74.716111,,200,,6255,89,97,,0700-0940,1234567,,,47594,,, +603,IND,,AIR North,,Ajmer (RJ),26.518889,74.716111,,200,,6255,89,97,,1130-1740,1234567,,,47594,,, +603,CHN,ug,Yili RGD,,Yining=Gulja (XJ),43.916667,81.466667,,1,,5403,68,111,,,,,,47591,,, +603,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar=Haila'er/NMTS763 (NM),49.301111,119.804167,,50,,7110,42,111,,0210-0700,1.34567,,,47572,,, +603,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar=Haila'er/NMTS763 (NM),49.301111,119.804167,,50,,7110,42,111,,0900-1440,1234567,,,47572,,, +603,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar=Haila'er/NMTS763 (NM),49.301111,119.804167,,50,,7110,42,111,,2130-0210,1234567,,,47572,,, +603,CHN,,CNR 2/rmqi JGD,,Karamay/XJTS7605 (XJ),45.606111,84.845833,,1,,5499,64,112,,,,,,47585,,, +603,CHN,,Shihezi RGD Wenyi Pinl,,Shihezi/XJTS7606 (XJ),44.2925,86.058333,,1,,5665,65,114,,,,,,47583,,, +603,CHN,zh,CNR 3,,rmqi (XJ),43.583333,87.5,,1,,5804,65,115,,,,,,36200948,,, +603,KOR,ko,HLSA KBS 2 R,,Namyang (seo),37.252133,126.748236,,500,,8524,45,115,,2000-1805,1234567,1,,47600,,, +603,CHN,,China R Int.,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,,1100-1200,1234567,2,,47568,,, +603,CHN,vi,China R Int.,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,,0400-0600,1234567,2,,47568,,, +603,CHN,vi,China R Int.,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,,1300-1600,1234567,2,,47568,,, +603,CHN,vi,China R Int.,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,,2300-0100,1234567,2,,47568,,, +603,CHN,vi,Voice of Russia,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,SEA,1200-1300,1234567,2,,47568,,, +603,TZA,sw,TBC Taifa,,Dodoma (ddo),-5.899678,35.680194,,10,,7021,147,117,,0200-2100,1234567,,,2316,,, +603,CHN,,Henan RGD Xinxi Guangbo,,Zhengzhou (HE),34.7,113.7,,100,,8072,55,118,,0000-2400,1234567,,,47593,,, +603,CHN,zh,Shanxi RGD Nongcun Guangbo,,Taiyuan/Gaohuacun (SX),37.532778,112.453056,,50,,7755,54,118,,2100-1600,1234567,,,36200949,,, +603,CHN,,Shaanxi JGD Fortune R.,,Xi'an/Caotan-SATS1 (SA),34.385556,108.950556,,25,,7827,59,121,,2200-1610,1234567,,,47587,,, +603,CHN,mn,Ordos RGD Mongyol,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,10,,7431,54,121,,,,,,47569,,, +603,CHN,,Ordos RGD,,Ulanhot (NM),46.083333,122.083333,,10,,7497,43,122,,,,,,36200136,,, +603,IND,,AIR FM Gold,D,Chinsurah/Magra (WB),23.027528,88.353056,,10,,7469,81,122,,,,,,32200050,,, +603,CHN,zh,CNR 1,,Yumen (GS),40.266667,97.033333,,1,,6635,62,123,,2025-1805,1234567,,,36200940,,, +603,CHN,bo,Qinghai RGD/CNR 11,,Golmud/SARFT916 (QH),36.418189,94.996833,,1,,6813,67,125,,2250-1600,1234567,,,36201281,,, +603,CHN,zh,Beijing RGD Gushi,,Beijing/BJTS804 (BJ),39.953928,116.495494,,10,,7763,50,125,,2130-1600,1234567,,,47565,,, +603,CHN,zh,CNR 1,,Jiuquan (GS),39.759722,98.515,,1,,6764,62,125,,2025-1805,1234567,,,36200956,,, +603,CHN,,Sanmenxia RGD Xinwen,,Sanmenxia (HE),34.795278,111.189444,,10,,7921,57,126,,,,,,47581,,, +603,CHN,en,CNR 2,,Xining (QH),36.583333,101.833333,,1,,7220,62,129,,1000-1602,1234567,,,36200945,,, +603,CHN,zh,CNR 1,,Erenhot=Erlian/NMTS872 (NM),43.618056,111.999722,,1,,7211,50,129,,2025-1805,1234567,,,36200960,,, +603,CHN,zh,Hubei RGD Chutian Xinwen,,Enshi/Sanhe Cun (HU),30.333333,109.466667,,10,,8207,61,129,,,,,,36200961,,, +603,CHN,zh,CNR 1,,Serxu=Shiqu (SC),32.983333,98.066667,,1,,7283,67,130,,2025-1805,1234567,,,36200133,,, +603,CHN,zh,Qingdao JGD 2 Kuaile 603,,Qingdao/SDTS135 (SD),36.121589,120.350533,,10,,8306,50,130,,,,,,47579,,, +603,CHN,,Guizhou JGD,,Guiyang (GZ),26.416667,106.6,,10,,8373,66,131,,,,,,47571,,, +603,CHN,zh,CNR 1,,Hohhot/NMTS610 (NM),40.736944,111.475278,,1,,7427,53,131,,2025-1805,1234567,,,36200129,,, +603,CHN,,Wuhan RGD Jiaotong Wangluo,,Wuhan (HU),30.6,114.333333,,10,,8470,58,132,,2225-1300,1234567,,,47586,,, +603,CHN,zh,Anhui RGD Shenghuo Guangbo,,Hefei/Sanshitou (AH),31.986667,117.3275,,10,,8515,55,132,,2100-1800,1234567,,,36200959,,, +603,CHN,zh,CNR 1,,Dingxi/Zhongchuan Cun (GS),35.558889,104.596944,,1,,7470,61,132,,2025-1805,1234567,,,36200963,,, +603,CHN,,Ji'an RGD Jinggang zhi Sheng,,Ji'an (JX),27.133333,114.983333,,10,,8817,59,133,,,,,,47574,,, +603,CHN,,Shanghai Dongfang GD di yi Caijing Pinl,,Shanghai/Yangpu (SH),31.280083,121.526233,,10,,8809,52,133,,2200-1600,1234567,,,47582,,, +603,CHN,zh,Zhangjiakou RGD Voice of the Earth,,Zhangjiakou (HB),40.816667,114.85,,1,,7601,51,133,,,,,,36201299,,, +603,CHN,,Guangdong RGD Wenti,,Guangzhou/SARFT808 (GD),23.106389,113.26,,10,,9074,63,134,,,,,,47570,,, +603,CHN,,Jilin RGD Gonggong Shenghuo,,Songyuan (JL),45.1625,124.849778,,1,,7706,42,134,,,,,,36200950,,, +603,CHN,,Yan'an RGD,,Yan'an (SA),36.6,109.483333,,1,,7668,57,134,,,,,,47590,,, +603,CHN,zh,CNR 1,,Baoji/Xiamaying (SA),34.344167,107.231111,,1,,7729,60,134,,2025-1805,1234567,,,36200126,,, +603,CHN,zh,Ningbo RGD Traffic & Music,,Ningbo (ZJ),29.887778,121.486667,,10,,8935,53,134,,,,,,47578,,, +603,THA,th,Wor. Por. Thor. 12,,Khon Kaen/140 Kasikon Thungsang Rd (kkn),16.441111,102.840556,,10,,9001,75,134,,????-1700,1234567,,,47608,,, +603,CHN,,Yangquan RGD,,Yangquan (SX),37.872222,113.566667,,1,,7787,53,135,,,,,,47588,,, +603,CHN,,Yunnan RGD Xinwen Guangbo,,Shangrila=Xianggelila (YN),27.82,99.686389,,1,,7816,70,135,,,,,,36200952,,, +603,CHN,,Jilin Shi JGD Qin'ai 603,,Jilin Shi (JL),43.8,126.5,,1,,7905,41,136,,,,,,47575,,, +603,CHN,,Nantong JGD,,Nantong (JS),31.855833,121.010556,,5,,8729,52,136,,0925-1400,1234567,,,47577,,, +603,CHN,,Nantong JGD,,Nantong (JS),31.855833,121.010556,,5,,8729,52,136,,2130-0500,1234567,,,47577,,, +603,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,1000-1805,1234567,,,36200954,,, +603,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,2025-2200,1234567,,,36200954,,, +603,CHN,zh,CNR 1,,Suzhou (JS),31.412778,120.693056,,5,,8752,52,136,,2025-1805,1234567,,,36200134,,, +603,CHN,zh,Hebei RGD Lyou yu Wenhua,,Shijiazhuang (HB),37.833333,114.666667,,1,,7851,53,136,,,,,,47584,,, +603,CHN,zh,Hengshui RGD Traffic Information,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,36201302,,, +603,CHN,zh,Qinhuangdao zhi Sheng,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,,,,,47580,,, +603,J,,JOOG NHK1,,Obihiro (hok),42.981389,143.199444,,5,,8656,31,136,,0000-2400,1234567,,,47598,,, +603,CHN,,Yingkou RGD Story & Leisure,,Yingkou/LNTS314 (LN),40.5125,122.205,,1,,8003,46,137,,,,,,36200943,,, +603,CHN,zh,CNR 2,,Dali/SARFT653 (YN),25.716667,100.166667,,1,,8025,71,137,,2100-1602,1234567,,,47566,,, +603,J,,JOKK NHK1,,Okayama (chg-oka),34.612222,133.898333,,5,,9108,41,137,,0000-2400,1234567,,,47599,,, +603,CHN,ko,Yanbian RGD,,Yanji=Yeon'gil (JL),42.9,129.5,,1,,8122,40,138,,,,,,36200138,,, +603,CHN,zh,Shandong RGD Xinwen Pindao,,Zibo/Ximenwai (SD),36.8,118.05,,1,,8124,51,138,,2125-1700,1234567,,,36200938,,, +603,CHN,zh,CNR 3,,Kunming/Longquan (YN),25.120672,102.752439,,1,,8242,69,139,,,,,,36200132,,, +603,PHL,,DZLL-AM PBS DZ Double-L,,Naga City (cas),13.566667,123.316667,,10,,10550,60,139,,,,,,47603,,, +603,CHN,,Anhui RGD Shenghuo Guangbo,,Huaibei (AH),33.956944,116.783444,,1,,8309,54,140,,2100-1430,1234567,,,50818,,, +603,CHN,,Yunnan RGD Jiaotong zhi Sheng,,Yuxi/YNTS693 (YN),24.402556,102.513944,,1,,8288,70,140,,,,,,36200939,,, +603,CHN,,Zaozhuang JGD,,Zaozhuang (SD),34.841667,117.578222,,1,,8273,53,140,,,,,,47592,,, +603,PHL,tl,DZVV-AM Bombo Radyo,,Vigan City (ils),17.561389,120.386389,,5,,10006,61,140,,,,,,47530,,, +603,CHN,zh,CNR 1,,Duyun/GZTS854 (GZ),26.266667,107.516667,,1,,8443,65,141,,2025-1805,1234567,,,36200962,,, +603,CHN,zh,Anhui RGD Shenghuo Guangbo,,Chuzhou (AH),32.285167,118.346917,,1,,8545,54,142,,2100-1800,1234567,,,36200127,,, +603,CHN,zh,CNR 1,,Huaihua (HN),27.55,109.966667,,1,,8481,63,142,,2025-1805,1234567,,,36200957,,, +603,CHN,,Jiangxi RGD Minsheng Guangbo,,Shangrao/JXTS821 (JX),28.470278,117.979167,,1,,8869,56,143,,,,,,36200953,,, +603,CHN,,Jiangxi RGD Nongcun Guangbo,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,,,,,36200131,,, +603,CHN,,Wuxi RGD Jiangnan zhi Sheng,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,,,,,36200137,,, +603,CHN,,Zhejiang RGD Lyou zhi Sheng,,Hangzhou/Gouzhuang (ZJ),30.379444,120.092222,,1,,8814,54,143,,,,,,47573,,, +603,CHN,zh,Anhui RGD Shenghuo Guangbo,,Huangshan (AH),30.15,118.266667,,1,,8733,55,143,,2100-1800,1234567,,,36200128,,, +603,CHN,zh,CNR 1,,Chenzhou (HN),25.8,113.033333,,1,,8820,61,143,,2025-1805,1234567,,,36200964,,, +603,CHN,zh,CNR 1,,Hengyang/Hudong Cun (HN),26.895278,112.659167,,1,,8700,61,143,,2025-1805,1234567,,,36200958,,, +603,CHN,zh,CNR 1,,Yongzhou (HN),26.416667,111.616667,,1,,8680,62,143,,2025-1805,1234567,,,36200942,,, +603,CHN,zh,CNR 1,,Yulin (GX),22.666667,110.2,,1,,8925,65,143,,2025-1805,1234567,,,36200941,,, +603,CHN,zh,Guangxi RGD Jiaotong Sijia Che 930,,Wuzhou (GX),23.482222,111.293611,,1,,8921,64,143,,,,,,36200946,,, +603,CHN,,Zhejiang RGD Lyou zhi Sheng,,Wenzhou (ZJ),28.1,120.6,,1,,9050,54,144,,,,,,36200947,,, +603,CHN,zh,CNR 1,,Shaoguan (GD),24.783333,113.533333,,1,,8941,62,144,,2025-1805,1234567,,,36200951,,, +603,PHL,,DXPR-AM Radyo Mo-RMN News,,Pagadian City/Balangasan (zds),7.8325,123.428889,,5,,11088,64,144,,0000-2400,1234567,,,47604,,, +603,INS,id,PM4DUI R Riwut Malawen,,Buntok (KT-bas),-1.7,114.8,,1,,11402,76,152,,,,,,47595,,, +603,AUS,en,6PH ABC Northwest WA,,Port Hedland (WA),-20.399222,118.675194,,2,,13293,86,155,,0000-2400,1234567,,,47564,,, +603,AUS,,4CH ABC Western Queensland,,Charleville (QLD),-26.254347,146.304278,,10,,15610,65,156,,0000-2400,1234567,9983,,47562,,, +603,AUS,,2RN ABC National,,Nowra/Basin View (NSW),-35.086944,150.553694,,10,,16615,70,159,,0000-2400,1234567,3,,47563,,, +603,NZL,mi,R Waatea,,Auckland/Henderson (AUK),-36.849089,174.629694,,5,,18083,33,167,,0000-2400,1234567,,,47602,,, +608,UKR,,DE,b,Velyki Derdakaly,50.020833,26.041667,,0.025,,1387,92,87,,,,,,85554,,, +608,UKR,,A,b,Zaporizhzhia / Mokraya (ZP),47.854167,35.291667,,0.025,,2104,91,94,,,,,,86760,,, +608,UKR,,P,b,Zaporizhzhia / Mokraya (ZP),47.895833,35.291667,,0.025,,2102,91,94,,,,,,86761,,, +610,RUS,,IO,b,Joshkar-Ola (ME),56.729167,47.875,,0.025,,2688,63,100,,,,982,L1009 U980 ,ID+2 gap,85555,, +610,CAN,,CKTB,,Saint Catharines (ON),43.036667,-79.166389,,5,,6118,297,111,,,,1,,36405,,, +610,USA,en,WIP,i,Philadelphia (PA),39.865278,-75.109444,,5,,6102,292,111,,,,0,,41788,,, +610,USA,,WGIR,,Manchester (NH),43.015833,-71.48,,1,,5644,293,113,,,,999,,41522,,, +610,CAN,xx,CKOK,,Nain (NL),56.541667,-61.698889,,0.04,,4260,304,114,,,,,,20109082,,, +610,CAN,en,CKYL,,Peace River (AB),56.177778,-117.183611,,10,,6916,328,116,,,,2,,36436,,, +610,USA,,KDAL,,Duluth (MN),46.720556,-92.176667,,5,,6585,308,116,,,,63,,38235,,, +610,USA,,WTVN,,Columbus (OH),39.876111,-82.980278,,5,,6591,297,116,,,,5,,43233,,, +610,USA,,WSNG,,Torrington (CT),41.757778,-73.051667,,0.5,,5833,292,118,,,,,,43033,,, +610,CAN,,CHTM,,Thompson (MB),55.702222,-97.882222,,1,,6170,318,119,,,,,,36096,,, +610,CLM,es,HJD90,,Uribia (lag),11.716667,-72.266667,,50,,8211,268,122,,,,,,35901364,,, +610,VEN,es,YVSE R Cristal,,Barquisimeto (lar),10.079917,-69.227517,,50,,8146,265,122,,,,,,45454,,, +610,USA,,WVBE,,Roanoke (VA),37.303056,-80.0425,,1,,6609,293,123,,,,,,20012600,,, +610,USA,en,WXVA,,Winchester (N) (VA),39.198056,-78.220278,,0.5,,6348,293,123,,,,,,43129,,, +610,VTN,vi,Voice of Hồ Ch Minh,,Hồ Ch Minh (hcm),10.851667,106.792778,,200,,9753,75,123,,2100-1700,1234567,,,47610,,, +610,USA,,KCSP,,Kansas City (MO),38.984167,-94.628333,,5,,7350,303,124,,,,,,38210,,, +610,CAN,en,CHNL,,Kamloops (BC),50.647222,-120.271944,,5,,7541,327,125,,,,9955,,36065,,, +610,CUB,es,R Rebelde,,Bueycito/Entronque (gr),20.292661,-76.775808,,10,,7783,278,125,,,,0,,31600067,,, +610,USA,en,WFNZ,,Charlotte (NC),35.300833,-80.888333,,1,,6820,292,125,,,,,,41421,,, +610,USA,en,WIOD,,Miami (FL),25.849444,-80.155,,5,,7543,284,125,,,,9992,,41779,,, +610,USA,en,WXVA,,Winchester (D) (VA),39.123889,-78.212222,,0.38,,6353,293,125,,,,,,20012551,,, +610,VEN,es,YVXY R Centro 6-10,,Cantaura (azg),9.312244,-64.385278,,10,,7885,260,126,,,,997,,51650,,, +610,CAN,en,CKRW,,Whitehorse (YT),60.692222,-134.971389,,1,,7010,340,127,,,,,,36387,,, +610,CUB,es,R Rebelde,,Guane (pr),22.197833,-84.124033,,10,,8114,284,128,,,,999,,52610,,, +610,CLM,es,HJKL La Cariosa,,Bogot D. C. (bdc),4.583333,-74.066667,,30,,8956,265,129,,,,0,,37526,,, +610,EQA,,HCMJ1,,Quito/Cerro Lumbis (pic),-0.238889,-78.466667,,50,,9679,266,129,,,,,,37027,,, +610,PTR,,WEXS,,Patillas (PR),18.01,-66.024444,,1,,7244,268,129,,,,,,41344,,, +610,USA,en,KONA,,Kennewick-Richland (WA),46.173056,-119.068611,,5,,7915,323,129,,,,,,39090,,, +610,USA,,KOJM,,Havre (MT),48.58,-109.648333,,1,,7293,319,130,,,,,,39070,,, +610,USA,en,WAGG,,Birmingham (AL),33.494444,-86.875,,1,,7343,294,130,,,,,,41349,,, +610,B,pt,ZYL268 Rdio Itatiaia,,Belo Horizonte (MG),-20.006111,-43.967561,,25,0,9382,227,131,,,,,,36901113,,, +610,USA,,KILT,,Houston (TX),29.917778,-95.425833,,5,,8170,298,132,,,,,,38610,,, +610,B,pt,ZYH321 Super Rdio Boa Vontade,,Iranduba (AM),-3.172739,-60.097222,,10,,8720,249,133,,,,,,36901108,,, +610,B,pt,ZYH249 Imperial AM,,Marechal Deodoro (AL),-9.736111,-35.904167,,2,,7972,224,134,,,,,,36901101,,, +610,CTR,,TIRSU R Maria,,San Jos (sjs),9.933333,-84.066667,,10,,9170,277,134,,,,,,52143,,, +610,HND,es,HRLD R Amrica,,Tegucigalpa (fmz),14.066667,-87.216667,,10,,9022,282,134,,,,,,37778,,, +610,PNR,es,HOHM RPC R,,Llano Bonito (pnm),9.016039,-79.443908,,10,,8935,272,134,,0000-2400,1234567,,,37690,,, +610,SLV,es,YSSS R.Nacional de El Salvador,,Morazan (mzn),13.566667,-88.033333,,10,,9120,282,134,,,,,,45315,,, +610,USA,,KNML,,Albuquerque (D) (NM),35.032222,-106.658889,,5,,8358,309,134,,,,,,20016065,,, +610,USA,,KNML,,Albuquerque (N) (NM),35.033056,-106.662222,,5,,8358,309,134,,,,,,39001,,, +610,USA,,KRTA,,Medford (OR),42.3875,-122.769722,,5,,8428,324,134,,,,,,39300,,, +610,URG,es,CX4 R Rural,,Santiago Vzquez (mo),-34.835917,-56.401556,,50,,11424,228,135,,0800-0600,1234567,,,36816,,, +610,USA,,WPLO,,Grayson (GA),33.953056,-83.970833,,0.225,,7123,293,135,,,,,,42707,,, +610,CUB,es,R Rebelde,,Cienfuegos (cf),22.135789,-80.448861,,1,,7875,282,136,,,,,,31600062,,, +610,CUB,es,R Reloj,,Trinidad (ss),21.788014,-79.986067,,1,,7873,281,136,,,,,,36511,,, +610,USA,,KARV,,Russellville (AR),35.298889,-93.1525,,0.5,,7574,300,136,,,,,,37969,,, +610,USA,,KEAR,,San Francisco (CA),37.849444,-122.295556,,5,,8848,321,136,,,,14,,38425,,, +610,GTM,,TGGA R Alianza,,Ciudad de Guatemala (gut),14.616667,-90.616667,,5,,9200,285,137,,1130-0300,1234567,,,40493,,, +610,HTI,,4VJS,,Delmas (oue),18.55,-72.316667,,0.4,,7628,273,137,,,,,,35647,,, +610,USA,,KVNU,,Logan (UT),41.675,-111.935,,1,,8020,316,137,,,,,,39647,,, +610,B,pt,ZYI425 Rdio Celeste,,Sinop (MT),-11.910586,-55.525028,,5,,9242,240,138,,,,,,36901114,,, +610,USA,en,KAVL,,Lancaster (CA),34.706111,-118.176667,,4,,8966,317,138,,,,,,37986,,, +610,USA,en,WCEH,,Hawkinsville (GA),32.280556,-83.443611,,0.126,,7226,291,138,,,,,,41874,,, +610,B,pt,ZYJ746 Super Cond AM 610,,Chapec (SC),-27.080556,-52.619444,,10,,10504,230,139,,,,,,36901110,,, +610,HTI,,R L'Eternal est Grand,,Port-au-Prince (oue),18.516667,-72.316667,,0.2,,7631,273,140,,,,,,52095,,, +610,USA,,WRUS,,Russellville (KY),36.844444,-86.9225,,0.059,,7072,297,140,,,,,,42932,,, +610,USA,en,WPKU226,,Washington (DC),38.875667,-76.976361,,0.01,,6294,292,140,,,,,,20010450,,, +610,B,pt,ZYH786 Rdio Mega AM,,Luzinia (GO),-16.234814,-47.9487,,2,,9222,232,141,,,,,,36901111,,, +610,B,pt,ZYI678 Rdio Progresso de Souza,,Sousa (PB),-6.784167,-38.265128,,0.25,,7794,228,141,,,,,,36901102,,, +610,PRU,,OCY2I R Santa Monica,,Chota (caj),-6.35,-78.65,,5,,10229,262,141,,1100-0100,1234567,,,37000024,,, +610,USA,,KCSR,,Chadron (NE),42.832222,-103.016667,,0.118,,7478,311,141,,,,,,38211,,, +610,USA,,WVTJ,,Pensacola (FL),30.4525,-87.240556,,0.157,,7618,292,141,,,,,,43345,,, +610,USA,en,KNJR841,,Newport News (VA),37.094328,-76.461022,,0.01,,6398,290,141,,,,,,20010449,,, +610,USA,en,KNJR841,,Norfolk (VA),36.844331,-76.294356,,0.01,,6406,290,141,,,,,,20010451,,, +610,USA,,KVLE,,Vail (CO),39.579722,-106.415,,0.217,,7938,311,143,,,,,,39634,,, +610,CHL,,CD61 R Puerto Aysen,,Puerto Aysn (AI),-45.416667,-72.716667,,25,,13203,232,144,,,,,,35907,,, +610,HND,,HRLP4,,Santa Rosa de Copan (cop),14.766667,-88.766667,,1,,9064,283,144,,,,,,37791,,, +610,MEX,es,XEEL-AM,,Fresnillo (zac),23.18305,-102.879811,,1,,9214,299,144,,,,,,43966,,, +610,ARG,,R General San Martin,,Villa Lynch (ba),-34.6,-58.45,,5,,11508,230,145,,,,,,51791,,, +610,MEX,es,XEGS-AM La Ley GS,,Guasave (sin),25.534411,-108.4876,,1,,9325,305,145,,,,,,44082,,, +610,MEX,es,XEUF-AM La Z,,Uruapan/El Mirador (mic),19.435958,-102.075156,,1,,9504,296,145,,,,,,44898,,, +610,MEX,es,XEBX-AM La Primera,,Sabinas (coa),27.877389,-101.142017,,0.5,,8690,301,146,,,,,,43799,,, +610,B,pt,ZYK502 Rdio Presidente Venceslau,,Presidente Venceslau (SP),-21.862875,-51.846406,,1,,9969,232,147,,,,,,36901105,,, +610,MEX,es,XEKZ-AM La Poderosa,,Santo Domingo Tehuantepec (oax),16.345678,-95.210578,,0.5,,9348,289,148,,,,,,44281,,, +610,MEX,es,XEUM-AM Candela,,Valladolid (yuc),20.676194,-88.204942,,0.25,,8513,287,148,,,,,,44913,,, +610,PRU,,OBU1E R Santa Rosa,,Sullana (piu),-4.9,-80.683333,,1,,10239,265,148,,,,,,37000023,,, +610,MEX,es,XESAC-AM R Lobo,,Saltillo (coa),25.373522,-100.997856,,0.25,,8905,299,149,,,,,,44727,,, +610,PRG,,ZP30 LV del Chaco Paraguayo,,Filadelfia (bqn),-22.316667,-60.033333,,1,,10471,238,149,,0900-0200,1234567,,,45527,,, +610,ARG,,LRK201 R Solidaridad,,Anatuya (se),-28.433333,-62.816667,,1,,11188,237,151,,1000-2200,123456,,,51790,,, +610,ARG,,LRK201 R Solidaridad,,Anatuya (se),-28.433333,-62.816667,,1,,11188,237,151,,1000-2400,......7,,,51790,,, +610,USA,en,WQEN596,,Orlando (FL),28.533333,-81.383333,,0.01,,7401,287,151,,,,,,20010448,,, +610,B,pt,ZYK532 Rdio CBN,,Moji-Mirim (SP),-22.459978,-46.976564,,0.25,,9772,228,152,,,,,,36901103,,, +610,B,pt,ZYK577 Rdio Bandeirantes,,Catanduva/Rua Wilson Orsi 10 (SP),-21.106344,-48.945161,,0.25,,9743,230,152,,,,,,36901104,,, +610,B,pt,ZYK589 Super Rdio Piratininga,,Guaratinguet (SP),-22.790578,-45.180653,,0.25,,9714,226,152,,,,,,36901107,,, +610,B,pt,ZYK726 Rdio Paranapanema,,Piraju/Chcara Ana Maria (SP),-23.218583,-49.374333,,0.25,,9968,229,153,,,,,,36901106,,, +612,LTU,be,Polskie R,,Vilnius/Virulikes (Vil),54.701681,25.226442,,50,,1276,70,53,BLR,2100-2200,1234567,0,,186,,, +612,LTU,be,R Liberty,,Vilnius/Virulikes (Vil),54.701681,25.226442,,50,,1276,70,53,BLR,0300-0500,1234567,0,,186,,, +612,LTU,be,R Liberty,,Vilnius/Virulikes (Vil),54.701681,25.226442,,50,,1276,70,53,BLR,1500-2100,1234567,0,,186,,, +612,LTU,ru,Voice of Russia,,Vilnius/Virulikes (Vil),54.701681,25.226442,,50,,1276,70,53,EEu,1200-1500,1234567,0,,186,,, +612,MRC,ar,SNRT Al Ida Al-Watania,,Seba-Aioun (mkt),33.896481,-5.3876,,140,,2234,210,58,,0400-0100,1234567,999,,187,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0625-0630,12345..,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0650-0700,12345..,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0800-0815,12345..,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1208-1300,12345..,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1230-1300,.....67,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1400-1415,12345..,993,,183,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0625-0630,12345..,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0650-0700,12345..,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0800-0815,12345..,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1208-1300,12345..,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1230-1300,.....67,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1400-1415,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0000-0625,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0000-1230,.....67,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0630-0650,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0700-0800,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0815-1208,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1300-1400,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1300-2400,.....67,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1415-2400,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0000-0625,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0000-1230,.....67,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0630-0650,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0700-0800,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0815-1208,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1300-1400,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1300-2400,.....67,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1415-2400,12345..,0,,182,,, +612,RUS,ru,Islamskaya Volna,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,..3....,0,,188,,, +612,RUS,ru,Kanal Blagoveshenie,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,...45.7,0,,188,,, +612,RUS,ru,Narodnoye R,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0400-1600,1234567,0,,188,,, +612,RUS,ru,R Alef,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1700-1800,...4...,0,,188,,, +612,RUS,ru,R Kala Aturaya,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,.....6.,0,,188,,, +612,RUS,ru,R Radonezh,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1700-2000,123.567,0,,188,,, +612,RUS,ru,R Radonezh,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1800-2000,...4...,0,,188,,, +612,RUS,ru,Yevangelskiye Chteniya,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,12.....,0,,188,,, +612,JOR,ar,JRTV R Jordan,,Shobak (man),30.531978,35.615,,200,,3378,124,68,,0000-2400,1234567,,,185,,, +612,IRN,ar,IRIB WS,,Qasr-e Shirin (ksh),34.448189,45.616767,,300,280,3667,107,69,,0125-0430,1234567,39,,184,,, +612,IRN,ar,IRIB WS,,Qasr-e Shirin (ksh),34.448189,45.616767,,300,280,3667,107,69,ME,0530-1530,1234567,39,,184,,, +612,IRN,ku,IRIB WS,,Qasr-e Shirin (ksh),34.448189,45.616767,,300,280,3667,107,69,,0430-0530,1234567,39,,184,,, +612,BHR,ar,Bahrain FM,,Abu Hayan (ajn),26.037556,50.623889,,100,,4682,111,84,,0300-1700,1234567,,,179,,, +612,BHR,ar,Bahrain Holy Quran,,Abu Hayan (ajn),26.037556,50.623889,,100,,4682,111,84,,1700-2100,1234567,,,179,,, +612,KGZ,xx,KTRK Kyrgyz Rsu/TNK Beles,,Krasnaya Rechka (cuy),42.881094,74.995478,,100,,5056,73,88,,0000-1200,......7,,,34300004,,, +612,KGZ,xx,KTRK Kyrgyz Rsu/TNK Beles,,Krasnaya Rechka (cuy),42.881094,74.995478,,100,,5056,73,88,,0000-1800,123456,,,34300004,,, +612,NIG,,R Kwara,,Ilorin/Budo Efo (kwa),8.438939,4.60995,,50,,4859,183,89,,0400-2300,1234567,999,,2263,,, +612,ARS,ar,BSKSA Al-Quran al-Karim,,Ha'il (hal),27.466667,41.726528,,5,,4007,119,90,,0000-2400,1234567,,,47063,,, +612,ARS,ar,BSKSA Al-Quran al-Karim,,Al-Aflaj/Layla (riy),22.287778,46.696944,,15,,4768,118,93,,0000-2400,1234567,,,47064,,, +612,IRQ,,Kull al-Iraq R,,An Nasiriya (dqr),31.033333,46.266667,,0.5,,3983,110,100,,,,,,10500003,,, +612,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Nairobi/Ngong (nai),-1.325694,36.675,,100,,6583,144,103,,0200-2110,1234567,,,2317,,, +612,PAK,,PBC Saut-ul Quran,,Karachi/PBC Colony (shd),24.853444,67.219806,,10,,5880,97,106,,0215-0700,1234567,,,51618,,, +612,PAK,,PBC Saut-ul Quran,,Karachi/PBC Colony (shd),24.853444,67.219806,,10,,5880,97,106,,0900-1645,1234567,,,51618,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,0025-0435,123456,9944,,47617,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,0025-0530,......7,9944,,47617,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,0630-0930,......7,9944,,47617,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,0700-0935,123456,9944,,47617,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,1200-1740,1234567,9944,,47617,,, +612,TWN,zh,R France Int.,,Lukang (CH),24.066556,120.4215,,1000,315,9410,57,115,FE,2200-2400,1234567,,,47609,,, +612,TWN,zh,R Taiwan Int.,,Lukang (CH),24.066556,120.4215,,1000,315,9410,57,115,FE,1000-1700,1234567,,,47609,,, +612,J,ja,JOLK NHK1,,Fukuoka (kyu-fuk),33.532778,130.445833,,100,,9052,44,124,,0000-2400,1234567,,,47626,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Chaoyang/LNTS328 (LN),41.574167,120.374722,,10,,7817,47,125,,,,,,36200937,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Xifeng (LN),42.733333,124.716667,,10,,7921,43,126,,,,,,36200927,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Neijiang/SCTS521 (SC),29.61,105.077222,,10,,8003,65,127,,,,,,36200124,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Yibin/SCTS524 (SC),28.766667,104.616667,,10,,8047,66,127,,,,,,36200125,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Dandong (LN),40.116667,124.366667,,10,,8144,45,128,,,,,,47613,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Luzhou/SCTS518 (SC),28.883333,105.45,,10,,8088,65,128,,,,,,36200122,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,10,,8055,69,128,,,,,,36200121,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Ma'erkang=Barkam/SCTS510 (SC),31.915339,102.191114,,3,,7629,65,129,,,,,,36200931,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Kangding=Dardo/SCTS515 (SC),29.9969,101.952628,,3,,7776,67,130,,,,,,36200932,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Rangtang=Zamtang/SCTS548 (SC),32.3,100.966667,,1,,7521,66,132,,,,,,36200929,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Ruoergai=Zoig/SCTS538 (SC),33.582794,102.959994,,1,,7537,63,132,,,,,,36200928,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Batang/SCTS543 (SC),30.017967,99.109822,,1,,7595,69,133,,2155-1605,1234567,,,47614,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Jiuzhaigou/SCTS547 (SC),33.233333,104.183333,,1,,7641,63,133,,,,,,36200933,,, +612,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Ningde/FJTS901 (FJ),26.733222,119.57125,,10,,9117,56,134,,2155-1600,1234567,,,47615,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Daocheng/SCTS544 (SC),29.033333,100.316667,,1,,7754,68,135,,,,,,36200936,,, +612,THA,th,Mor. Kor.,,Chiang Mai (cmi),18.877222,99.043611,,5,,8538,76,135,,0000-2400,1234567,,,47636,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Meishan (SC),30.05,103.85,,1,,7890,65,136,,,,,,36200123,,, +612,THA,th,Wor. Sor. Por. Hok-Neung-Song 612,,Lop Buri/Fort Phahonyothin (lpb),14.883333,100.9,,5,,9008,77,137,,2120-1700,1234567,,,47637,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Huanren/LNTS310 (LN),41.277778,125.328611,,1,,8083,44,138,,,,,,36200934,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Donggang/LNTS333 (LN),39.883333,124.15,,1,,8155,45,139,,,,,,36200935,,, +612,PHL,,DWSP-AM (r:666 DZRH-AM),,Itogon/Tuding (bgt),16.411389,120.641667,,5,,10127,61,140,,,,,,47632,,, +612,PHL,,DYHP-AM Radyo Mo-RMN News,,Cebu City (ceb),10.25,123.85,,10,,10890,62,140,,2100-1600,1234567,,,47631,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Mianyang (SC),30.183333,113.216667,,1,,8442,59,141,,,,,,36200930,,, +612,INS,id,PM7CLG R.Swara Betung Indah,,Betung (SS),-1.866667,103.266667,,1,,10639,86,149,,,,,,47619,,, +612,AUS,,6RN ABC National,,Dalwallinu (WA),-30.288833,116.609333,,10,,13958,95,150,,0000-2400,1234567,,,47612,,, +612,AUS,en,4QR ABC Brisbane,,Brisbane/Bald Hills (QLD),-27.311586,153.017467,,50,,16107,58,150,,0000-2400,1234567,31,,47611,,, +612,INS,,R Yatofa,,Praya/Bodak (NB-lte),-8.7,116.283333,,1,,12121,80,154,,,,,,35400123,,, +612,NZL,en,3XG NZs Rhema,,Christchurch/Marshland (CAN),-43.489747,172.637478,,2,,18613,52,172,,0000-2400,1234567,,,47628,,, +615,XOE,,OM,b,Gorm C Platform,55.354167,4.458333,,0.025,,383,341,77,,,,996,L407 U405 7.5s,ID+3Tone,85556,, +615,XOE,,STB,b,Statfjord B Platform,61.1875,1.791667,,0.025,,1047,346,83,,,,928,L396 U325 8.5s,ID+6 gap,85557,, +617,UKR,,SV,b,Stebliv,49.395833,31.041667,,0.025,,1750,90,90,,,,990,L1063 U1047 ,IDx2 + 23 gap,85559,, +617,UKR,,G,b,Lugansk (LU),48.395833,39.375,,0.025,,2359,87,97,,,,,,85558,,, +618,POL,,FT,b,Pruszcz / Gdanski,54.229167,18.708333,,0.025,,852,69,81,,,,995,L707 U720 ,85560,,, +620,RUS,,N,b,Pskov (PS),57.8125,28.375,,0.025,,1530,57,88,,,,,L1050 U1016 ,IDx3 + 14 gap,85561,, +620,RUS,,P,b,Pskov (PS),57.770833,29.375,,0.025,,1586,58,89,,,,55,L645 U755 ,85562,,, +620,CAN,,CKCM,,Grand Falls (NL),48.944167,-55.641944,,10,,4265,291,90,,,,1,,36283,,, +620,USA,,WZON,,Bangor (ME),44.828889,-68.785556,,5,,5350,293,104,,,,0,,43586,,, +620,USA,,WVMT,,Burlington (VT),44.534444,-73.220833,,5,,5647,295,107,,,,71,,43313,,, +620,USA,,WSNR,,Jersey City (NJ),40.798056,-74.106667,,7.6,,5969,292,108,,,,62,,43038,,, +620,USA,,WHEN,,Syracuse (D) (NY),43.092222,-76.189444,,5,,5932,295,109,,,,,,20012555,,, +620,USA,,WTMJ,,Milwaukee (WI),42.707778,-88.065833,,10,,6671,302,114,,,,1,,43174,,, +620,CAN,en,CKRM,,Regina (SK),50.326667,-104.621111,,10,,6914,318,116,,,,0,,36279,,, +620,USA,,WHEN,,Syracuse (N) (NY),43.092778,-76.188056,,1,,5932,295,116,,,,9992,,41623,,, +620,USA,,WRJZ,,Knoxville (TN),35.99,-83.8375,,5,,6951,294,120,,,,998,,42864,,, +620,B,pt,ZYH590 Rdio Globo,,Fortaleza (CE),-3.765128,-38.584539,,10,,7513,230,122,,,,5,,36901120,,, +620,CUB,es,R Rebelde,,Coln (ma),22.733281,-80.918831,,25,,7856,282,122,,,,9997,,36474,,, +620,USA,,WDNC,,Durham (NC),36.034167,-78.963056,,1,,6640,291,123,,,,,,41186,,, +620,USA,en,WDAE,,St. Petersburg (D) (FL),27.876944,-82.590556,,5.6,,7535,287,125,,,,,,41118,,, +620,USA,en,WDAE,,St. Petersburg (N) (FL),27.876944,-82.590278,,5.5,,7535,287,125,,,,,,20016081,,, +620,VEN,es,YVZC R Fe y Alegria,,Guasdualito (apu),7.25,-70.733333,,50,,8495,264,125,,0900-0400,1234567,,,51651,,, +620,ALS,,KGTL,,Homer (AK),59.684167,-151.630833,,2.5,,7429,348,127,,0000-2400,1234567,9996,,38514,,, +620,NCG,,YNN R Nicaragua,,Managua (mng),12.183333,-85.916667,,50,,9099,279,127,,0955-0600,1234567,,,45188,,, +620,VEN,,YVNO R Libertad,,Cabimas (zul),10.4,-71.466667,,20,,8270,267,127,,0900-0400,1234567,,,45396,,, +620,DOM,,HISD R Television Dominicana,,Santo Domingo (sdo),18.5,-69.916667,,2.5,,7468,271,128,,0900-0400,1234567,,,52230,,, +620,USA,,KPOJ,,Portland (OR),45.422222,-122.565833,,10,,8126,325,128,,,,85,,39154,,, +620,USA,,KMNS,,Sioux City (IA),42.373611,-96.448056,,1,,7169,307,129,,,,,,38919,,, +620,USA,es,WTUV,,Louisville (KY),38.316389,-85.702222,,0.5,,6879,297,129,,,,,,43179,,, +620,B,pt,ZYK521 Rdio Jovem Pan,,So Paulo/Res. Billings (SP),-23.7025,-46.660556,,50,,9876,227,130,,,,9987,,36901121,,, +620,EQA,,HCXY1,,Loja (loj),-4,-79.166667,,50,,10057,264,130,,,,,,37188,,, +620,USA,,KMKI,,Plano (TX),33.242778,-96.541389,,4.5,,7949,301,130,,,,,,38912,,, +620,DOM,,HISD R Television Dominicana,,Santa Cruz de El Seibo (sey),18.766667,-69.05,,1,,7387,271,131,,,,,,37298,,, +620,CLM,es,HJVP,,Cartagena (bol),10.4,-75.516667,,10,,8547,270,132,,,,,,35901365,,, +620,DOM,,HISD R Television Dominicana,,San Juan de la Maguana (jua),18.8,-71.233333,,1,,7533,272,132,,,,,,52231,,, +620,DOM,,HISD R Television Dominicana,,Pedernales (pnl),18.016667,-71.716667,,1,,7632,272,133,,,,,,37300,,, +620,DOM,,HISD R Television Dominicana,,Santa Cruz de Barahona (bh),18.2,-71.1,,1,,7575,272,133,,,,,,52233,,, +620,USA,,WJDX,,Jackson (MS),32.382222,-90.190556,,1,,7640,296,133,,,,,,41862,,, +620,CLM,es,HJVP Colmundo,,Cali (val),3.5,-76.583333,,10,,9222,267,134,,????-0300,1234567,3,,37414,,, +620,USA,,KWAL,,Wallace (ID),47.508056,-116.004722,,1,,7664,322,134,,,,,,39685,,, +620,USA,,WKHB,,Irwin (PA),40.288889,-79.701111,,0.05,,6357,295,134,,,,,,42012,,, +620,ARG,es,LT17 R Provincia de Misiones,,Posadas (mn),-27.419875,-55.892683,,25,,10710,232,135,,0900-0500,1234567,,,51792,,, +620,BOL,,CP63 R San Gabriel,,La Paz (lpz),-16.5,-68.116667,,20,,10435,248,135,,0900-0200,1234567,,,36709,,, +620,USA,,WGCV,,Cayce (SC),33.959444,-81.041111,,0.126,,6937,291,135,,,,,,41490,,, +620,USA,,KTAR,,Phoenix (AZ),33.478889,-112.001667,,5,,8779,312,136,,,,9989,,39452,,, +620,GTM,,TGPQ R 6-20,,San Cristbal (qzt),14.908725,-91.448036,,5,,9229,285,137,,1200-0400,1234567,,,40548,,, +620,MEX,es,XESS-AM ESPN Deportes,,Puerto Nuevo (bcn),32.249539,-116.946836,,5,,9141,315,137,,,,9862,,44769,,, +620,ARG,es,LRA28 R Nacional,,La Rioja (lr),-29.42615,-66.873114,,25,,11511,239,138,,0900-0400,1234567,,,39948,,, +620,MEX,es,XENK-AM R 6.20,,Guadalupe del Monte (mex),19.562931,-99.077806,,5,,9307,294,138,,,,,,44447,,, +620,PRU,es,OBU4B R Ovacion,,Villa El Salvador (lim),-12.191717,-76.965239,,10,,10629,257,139,,,,,,37000004,,, +620,USA,,WTRP,,La Grange (GA),33.059167,-85.027778,,0.127,,7263,293,139,,,,,,43207,,, +620,USA,,WWNR,,Beckley (WV),37.755,-81.236667,,0.025,,6649,294,139,,,,,,43414,,, +620,USA,es,WJHX,,Lexington (AL),34.976944,-87.369444,,0.099,,7251,296,140,,,,,,41877,,, +620,ARG,,LRA26 R Nacional,,Resistencia (cc),-27.433333,-59,,5,,10882,235,143,,0830-0300,1234567,,,39946,,, +620,B,pt,ZYJ332 Rdio Cidade Jandaia AM,,Jandaia do Sul (PR),-23.595278,-51.656944,,2.5,,10124,231,143,,,,,,36901117,,, +620,HWA,en,KHNU,,Kalaoa (HI),19.736667,-156.032222,,10,,11846,343,143,,,,,,38627,,, +620,MEX,es,XEBU-AM La Norteita,,Chihuahua (chi),28.6894,-106.120111,,1,,8903,305,143,,,,,,43792,,, +620,USA,,KIGS,,Hanford (CA),36.326389,-119.566389,,1,,8875,319,143,,,,99934,,38592,,, +620,HND,,HRDP5,,La Esperanza (int),14.566667,-87.816667,,1,,9018,282,144,,,,,,37748,,, +620,HND,,HRLP17,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37783,,, +620,MEX,es,XEHGR-AM R Frmula,,Villahermosa (tab),17.930625,-93.0037,,1,,9065,288,144,,,,,,44115,,, +620,MEX,es,XEOO-AM W R,,Tepic (nay),21.509147,-104.881475,,1,,9485,300,145,,,,,,44501,,, +620,PRG,,ZP40 R Nasaindy,,San Estanislao (spd),-24.566667,-56.416667,,2.5,,10473,234,145,,,,,,45536,,, +620,HWA,en,KHNU,,Hilo (HI),19.850556,-155.085278,,5,,11814,342,146,,,,,,38629,,, +620,HWA,en,KHNU,,Naalehu (HI),19.005,-155.676944,,5,,11919,342,146,,,,,,38628,,, +620,MEX,es,XECK-AM,,Durango (dur),24.051667,-104.621667,,0.5,,9239,301,147,,,,,,43849,,, +620,MEX,es,XEWZ-AM R Novedades,,Soledad Diez Gutirrez (slp),22.166667,-100.916667,,0.5,,9187,297,147,,,,,,45042,,, +620,CHL,,CC62 R Bio-Bio,,Concepcin (BI),-36.85,-73.016667,,5,,12512,238,148,,0000-2400,1234567,,,35833,,, +620,MEX,es,XEGH-AM La Lupe,,Ro Bravo (tam),25.993744,-98.132292,,0.25,,8677,297,149,,,,,,44059,,, +620,USA,,KJOL,,Grand Junction (CO),39.126389,-108.636944,,0.079,,8091,313,149,,,,,,38685,,, +620,B,pt,ZYK270 Rdio Pelotense,,Pelotas/Estrada do Laranjal (RS),-31.751389,-52.249722,,1,,10926,227,150,,,,,,36901119,,, +620,B,,ZYH293,,Lbrea (AM),-7.266667,-64.783333,,0.25,,9391,251,151,,,,,,45594,,, +620,B,,ZYL240,,Ibi (MG),-19.466667,-46.516667,,0.25,,9459,229,151,,,,,,46666,,, +620,B,pt,ZYL357 Rdio Catua,,Manhuau (MG),-20.273333,-42.056944,,0.25,,9315,225,151,,,,,,36901115,,, +620,ARG,es,LRA18 R Nacional,,Ro Turbio (sc),-51.666667,-72.066667,,5,,13664,226,152,,0845-0400,1234567,,,39938,,, +620,PRU,,OAX2M R Chepen,,Chepen (lal),-8.15,-79,,0.4,,10411,261,152,,,,,,40283,,, +620,CHL,,CA62 R Norte Verde,,Ovalle (CO),-30.616667,-71.316667,,1,,11879,241,153,,1100-0400,1234567,,,35704,,, +620,ARG,es,LV4 R San Rafael,,San Rafael (mz),-34.646417,-68.359947,,1,,12055,237,154,,1000-0400,1234567,,,40254,,, +620,B,pt,ZYJ779 Super Difusora Alto Vale,,Rio do Sul/Serra Canoas (SC),-27.197778,-49.693889,,0.25,,10365,228,154,,,,,,36901118,,, +620,B,pt,ZYK315 Rdio Municipal de Tenente Portel,,Tenente Portela (RS),-27.333333,-53.766667,,0.25,,10588,231,155,,,,,,36901116,,, +620,USA,,KMJC,,Mount Shasta (CA),41.319167,-122.309722,,0.029,,8512,323,157,,,,,,38910,,, +620,USA,en,WPBY639,,Santa Ana (CA),33.727631,-117.844306,,0.01,,9044,316,164,,,,,,20010460,,, +620,USA,en,WPET710,,Long Beach (CA),33.794294,-118.094222,,0.01,,9049,316,164,,,,,,20010453,,, +620,USA,en,WPET710,,Norwalk (CA),33.916139,-118.110969,,0.01,,9038,316,164,,,,,,20010452,,, +620,USA,en,WPFK505,,Beaumont (CA),33.932528,-116.994297,,0.01,,8984,315,164,,,,,,20010457,,, +620,USA,en,WPFK505,,Corona (CA),33.878917,-117.566167,,0.01,,9016,316,164,,,,,,20010456,,, +620,USA,en,WPFK505,,Murrieta (CA),33.560958,-117.18225,,0.01,,9028,315,164,,,,,,20010455,,, +620,USA,en,WPFK505,,San Bernardino (CA),34.222778,-117.410056,,0.01,,8976,316,164,,,,,,20010454,,, +620,USA,en,WPFS414,,Inglewood (CA),33.960278,-118.344314,,0.01,,9045,316,164,,,,,,20010462,,, +620,USA,en,WPGR273,,Newbury Park (CA),34.193489,-118.912306,,0.01,,9049,317,164,,,,,,20010459,,, +620,USA,en,WPGR279,,Eagle Rock (CA),34.146111,-118.227028,,0.01,,9022,316,164,,,,,,20010458,,, +620,USA,en,WPGR279,,Pomona (CA),34.073056,-117.794303,,0.01,,9008,316,164,,,,,,20010461,,, +621,BEL,fr,RTBF International,,Wavre (wal-bra),50.745467,4.585564,,300,,198,221,34,,0400-2215,12345.7,9992,,194,,, +621,BEL,fr,RTBF International,,Wavre (wal-bra),50.745467,4.585564,,300,,198,221,34,,0400-2400,.....6.,9992,,194,,, +621,MDA,ru,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.278247,29.442828,,160,,1733,99,52,,0400-0900,12345..,,,201,,, +621,MDA,ru,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.278247,29.442828,,160,,1733,99,52,,1600-2100,12345..,,,201,,, +621,EGY,ar,ERTU Sawt al-Arab,,Batrah (dqh),31.170167,31.434833,,1000,105,3091,129,58,,0000-2400,1234567,14,,199,,, +621,E,es,RNE R Nacional,,Palma/Marratx (BAL-ML),39.633539,2.669078,,10,,1417,193,61,,0000-2400,1234567,998,,197,,, +621,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0000-2400,1234567,5,,196,,, +621,E,es,RNE R Nacional,,Jan/Las Lagunillas (AND-J),37.795017,-3.772844,,10,,1778,210,65,,0000-2400,1234567,2,,198,,, +621,RUS,ru,R Rossii,,Syktyvkar/Ezhva (KO),61.81925,50.690694,,50,,2825,50,68,,0200-2200,1234567,0,,203,,, +621,CNR,es,RNE R Nacional,,Las Mesas (RNE) (STC-TF),28.482833,-16.268569,,100,,3227,224,69,,0000-2400,1234567,999,,195,,, +621,RUS,xx,R Rossii,,Makhachkala (DA),42.976706,47.342375,,50,,3187,92,72,,0100-2100,1234567,,,202,,, +621,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Birjand (skh),32.8152,59.333931,,200,,4711,96,81,,0000-2400,1234567,29,,200,,, +621,AFG,ps,R Mashaal,,Tani-Khost (kho),33.340156,69.960781,,200,,5396,87,88,PAK,0400-1300,1234567,,,11000001,,, +621,AFG,ps,VoA Deewa R,,Tani-Khost (kho),33.340156,69.960781,,200,,5396,87,88,PAK,0100-0400,1234567,,,11000001,,, +621,AFG,ps,VoA Deewa R,,Tani-Khost (kho),33.340156,69.960781,,200,,5396,87,88,PAK,1300-1900,1234567,,,11000001,,, +621,IRN,fa,IRIB R Khalij-e Fars,,Bandar-e Abbas (hrg),27.255167,56.413556,,50,,4957,104,90,,0000-2400,1234567,,,10800017,,, +621,NIG,,ABS Anambra R,,Awka=Ọka (ana),6.181489,6.996669,,20,,5107,179,95,,0500-2300,1234567,,,2320,,, +621,AFG,,RTA R Paktia,,Gardez (pia),33.6,69.219444,,7,,5326,87,102,,0230-0430,1234567,,,46811,,, +621,AFG,,RTA R Paktia,,Gardez (pia),33.6,69.219444,,7,,5326,87,102,,1330-1430,1234567,,,46811,,, +621,IND,,AIR East,,Patna A (BR),25.532778,85.284722,,100,,7055,82,108,,0025-0445,1234567,9946,,47649,,, +621,IND,,AIR East,,Patna A (BR),25.532778,85.284722,,100,,7055,82,108,,0630-1000,1234567,9946,,47649,,, +621,IND,,AIR East,,Patna A (BR),25.532778,85.284722,,100,,7055,82,108,,1130-1742,1234567,9946,,47649,,, +621,KRE,de,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1600-1700,1234567,970,,47656,,, +621,KRE,ja,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,J,0700-1300,1234567,970,,47656,,, +621,KRE,ja,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,J,2100-2400,1234567,970,,47656,,, +621,KRE,ko,KCBS Pyongyang Pangsong,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1300-1400,1234567,970,,47656,,, +621,KRE,ko,KCBS Pyongyang Pangsong,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1800-2000,1234567,970,,47656,,, +621,KRE,ko,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,2000-2100,1234567,970,,47656,,, +621,KRE,ru,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1400-1600,1234567,970,,47656,,, +621,KRE,ru,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1700-1800,1234567,970,,47656,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Harbin/HLTS904 (HL),45.693006,126.822556,,100,45,7746,40,115,,0855-1500,1234567,,,47646,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Harbin/HLTS904 (HL),45.693006,126.822556,,100,45,7746,40,115,,2100-0600,1234567,,,47646,,, +621,RUS,ru,R Rossii,,Khabarovsk (KH),48.512889,135.119528,,50,63,7819,33,118,,0000-1500,1234567,,,46877,,, +621,RUS,ru,R Rossii,,Khabarovsk (KH),48.512889,135.119528,,50,63,7819,33,118,,1900-2400,1234567,,,46877,,, +621,TZA,sw,TBC Taifa,,Mbeya (mby),-8.934389,33.383583,,10,,7259,150,120,,0200-2100,1234567,,,2321,,, +621,BOT,,R Botswana,,Selebi Phikwe (ce),-22.000647,27.806278,,100,,8499,160,122,,0000-2400,1234567,,,2318,,, +621,THA,th,Sor. Wor. Sor.,,Khon Kaen (kkn),16.476556,102.957444,,100,,9005,75,124,,2130-1640,1234567,,,47669,,, +621,CHN,zh,Shandong RGD,,Liaocheng (SD),36.433333,115.966667,,10,,8044,53,127,,0000-2400,1234567,,,36200115,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Dongning (HL),44.056667,131.102778,,10,,8083,38,128,,0855-1500,1234567,,,36200112,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Dongning (HL),44.056667,131.102778,,10,,8083,38,128,,2100-0600,1234567,,,36200112,,, +621,CHN,,Guangyuan RGD,,Guangyuan/SCTS527 (SC),32.433333,105.816667,,3,,7807,62,130,,,,,,47645,,, +621,CHN,,Yichang RGD News,,Yichang (HU),30.703056,111.228889,,10,,8280,60,130,,,,,,47647,,, +621,HKG,zh,RTHK Putonghua Channel,,Golden Hill (stn),22.3675,114.153889,,20,,9195,63,131,,0000-2400,1234567,8,,47648,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,0855-1500,1234567,,,36200117,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,2100-0600,1234567,,,36200117,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jiayin (HL),48.8875,130.416667,,1,,7602,36,133,,0855-1500,1234567,,,36200113,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jiayin (HL),48.8875,130.416667,,1,,7602,36,133,,2100-0600,1234567,,,36200113,,, +621,KOR,ko,HLCF KBS 1 R,,Seogwipo (jej),33.243056,126.616667,,10,,8892,47,133,,0000-2400,1234567,,,47657,,, +621,KOR,ko,HLSJ KBS 1 R,,Taebaek (gan),37.165278,128.989167,,10,,8639,43,133,,0000-2400,1234567,,,47658,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Hegang/HLTS919 (HL),47.316944,130.213333,,1,,7740,37,134,,0855-1500,1234567,,,36200110,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Hegang/HLTS919 (HL),47.316944,130.213333,,1,,7740,37,134,,2100-0600,1234567,,,36200110,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Tongjiang (HL),47.631794,132.506544,,1,,7802,35,135,,0855-1500,1234567,,,36200119,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Tongjiang (HL),47.631794,132.506544,,1,,7802,35,135,,2100-0600,1234567,,,36200119,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Baoqing (HL),46.333333,132.216667,,1,,7914,36,136,,0855-1500,1234567,,,36200111,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Baoqing (HL),46.333333,132.216667,,1,,7914,36,136,,2100-0600,1234567,,,36200111,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Raohe (HL),46.785,133.9975,,1,,7941,35,136,,0855-1500,1234567,,,36200118,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Raohe (HL),46.785,133.9975,,1,,7941,35,136,,2100-0600,1234567,,,36200118,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jixi (HL),45.298056,130.938611,,1,,7959,38,137,,0855-1500,1234567,,,36200114,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jixi (HL),45.298056,130.938611,,1,,7959,38,137,,2100-0600,1234567,,,36200114,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mudanjiang (HL),44.588889,129.585278,,1,,7968,39,137,,0855-1500,1234567,,,36200116,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mudanjiang (HL),44.588889,129.585278,,1,,7968,39,137,,2100-0600,1234567,,,36200116,,, +621,J,,JOCG NHK1,,Asahikawa (hok),43.763056,142.414444,,3,,8550,31,137,,0000-2400,1234567,,,47652,,, +621,CHN,,Zhaotong RGD,,Zhaotong/YNTS697 (YN),27.330556,103.694722,,1,,8112,67,138,,,,,,36200120,,, +621,PHL,,DZTG-AM Radyo Ronda,,Tuguegarao City (cag),17.6,121.75,,5,,10083,59,140,,,,,,47666,,, +621,PHL,,DXDC-AM Radyo Agong,,Davao City (dvs),7.05,125.583333,,10,,11292,62,141,,2100-1600,1234567,,,47664,,, +621,PHL,,DZBU-AM Radyo ng Bayan,,Legazpi City (aby),13.133333,123.733333,,5,,10615,60,142,,,,,,47665,,, +621,KOR,ko,HLAY KBS 1 R,,Yeongdong (jeb),36.180556,127.770833,,1,,8673,45,143,,0000-2400,1234567,,,47659,,, +621,J,,JOOK NHK1,,Kyoto (kns-kyo),35.0175,135.746111,,1,,9151,40,144,,0000-2400,1234567,9973,,47654,,, +621,J,,NHK R 1,,Iida (chu-nag),35.6625,137.853611,,1,,9178,38,144,,0000-2400,1234567,,,47653,,, +621,J,,NHK R 1,,Nobeoka (kyu-miy),32.575,131.687222,,1,,9203,44,144,,0000-2400,1234567,,,47655,,, +621,TWN,,Taiwan Guangbo Gongsi,,Daxi=Ta-Hsi (TY),24.878083,121.301861,,1,,9385,56,145,,0000-2400,1234567,,,47671,,, +621,PHL,,DZVC-AM,,Virac (ctd),13.585278,124.208889,,1,,10601,60,149,,,,,,47667,,, +621,INS,id,PM2DRL R Kijang Berantai,,Sambas (KB),1.333333,109.25,,1,,10762,79,150,,,,,,47623,,, +621,AUS,en,3RN ABC National,,Melbourne/Delahey (VIC),-37.72055,144.784044,,50,,16432,80,151,,0000-2400,1234567,9995,,47642,,, +621,TUV,,T2U2 R Tuvalu,,Funafuti,-8.52,179.2,,5,,15124,10,157,,0000-2400,1234567,,,47670,,, +621,AUS,,6EL Spirit R,,Bunbury/Wireless Road (WA),-33.339822,115.752556,,2,,14137,99,158,,0000-2400,1234567,,,47641,,, +621,NZL,en,NZs Rhema,,Whangarei/Maungakaramea (NTL),-35.820833,174.245833,,2,,17965,33,170,,0000-2400,1234567,,,47663,,, +621,NZL,en,4XG NZs Rhema,,Dunedin (OTA),-45.846933,170.444536,,2,,18662,65,173,,0000-2400,1234567,,,47662,,, +625,RUS,,U,b,Sankt-Peterburg/Pulkovo (SP),59.8125,30.125,,0.025,,1693,50,90,,,,,U400 ,85572,,, +625,UKR,,DW,b,Buyalyk,46.895833,30.708333,,0.025,,1838,99,91,,,,,,85564,,, +625,UKR,,SE,b,Sumy (SU),50.854167,34.791667,,0.025,,1958,83,93,,,,,,85570,,, +625,UKR,,SU,b,Sumy (SU),50.854167,34.791667,,0.025,,1958,83,93,,,,,,85571,,, +625,RUS,,NW,b,Ostafievo,55.520833,37.541667,,0.025,,2060,67,94,,,,,,85567,,, +625,RUS,,PS,b,Ostafievo,55.520833,37.541667,,0.025,,2060,67,94,,,,,L625 U400 ,85569,,, +625,RUS,,MB,b,Krasnodar (KD),45.104167,38.958333,,0.025,,2492,95,98,,,,,,85566,,, +625,RUS,,OCH,b,Krasnodar (KD),45.104167,38.958333,,0.025,,2492,95,98,,,,,,idX2,85568,, +625,RUS,,AW,b,Yoshkar-Ola / Danilovo,56.645833,48.041667,,0.025,,2699,63,100,,,,,L1020 U1020 15.0s,IDx2,86763,, +629,RUS,,UL,b,Uglerod,48.145833,40.041667,,0.025,,2415,87,97,,,,,,85573,,, +630,ROU,,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1400-1430,......7,999,,214,,, +630,ROU,bg,SRR R Timishoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1700-1800,......7,999,,214,,, +630,ROU,cs,SRR Rdio Temevr,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1430-1500,......7,999,,214,,, +630,ROU,de,SRR R Temeswar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1100-1200,1234567,999,,214,,, +630,ROU,hu,SRR Rdi Temesvr,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1200-1300,1234567,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1405-2200,...4...,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1510-2200,12..5..,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1700-2200,..3..6.,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1800-2200,......7,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,2200-1100,1234567,999,,214,,, +630,ROU,sk,SRR Rdio Temevr,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1500-1600,......7,999,,214,,, +630,ROU,sr,SRR R Temivar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1300-1400,......7,999,,214,,, +630,ROU,sr,SRR R Temivar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1300-1405,...4...,999,,214,,, +630,ROU,sr,SRR R Temivar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1300-1510,12..5..,999,,214,,, +630,ROU,sr,SRR R Temivar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1300-1700,..3..6.,999,,214,,, +630,ROU,uk,SRR R Timishoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1600-1700,......7,999,,214,,, +630,TUN,,RTT R Nationale,,Tunis/Djedeida (tun),36.836556,9.929472,,300,,1721,169,50,,0000-2400,1234567,0,,216,,, +630,ROU,ro,SRR Antena Satelor,,Voineşti (DB),45.056833,25.261667,,50,135,1586,112,56,,0000-2400,1234567,,,213,,, +630,TUR,ar,TRT 1 Radyo Bir,,Mersin-Kazanli (Cukurova) (akd-mer),36.824889,34.741292,,300,,2788,116,60,,1800-2000,1234567,,,217,,, +630,TUR,tr,TRT ukurova Radyosu,,Mersin-Kazanli (Cukurova) (akd-mer),36.824889,34.741292,,300,,2788,116,60,,0800-1100,1234567,,,217,,, +630,G,en,BBC R Cornwall,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0000-2400,1234567,0,,207,,, +630,POR,pt,Antena 1,,Miranda do Douro (bgc),41.495889,-6.284167,,10,,1521,224,62,,0000-2400,1234567,,,211,,, +630,POR,pt,Antena 1,,Chaves (vrl),41.760739,-7.436833,,10,,1554,228,63,,0000-2400,1234567,,,210,,, +630,POR,pt,Antena 1,,Montemor-o-Velho/Carapinheira (coi),40.202833,-8.633417,,10,,1752,227,65,,0000-2400,1234567,,,212,,, +630,G,,BBC Asian Network,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,2100-0100,12345..,0,,206,,, +630,G,,BBC Three Counties R./BBC Asian Network,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,1905-2100,12345..,0,,206,,, +630,G,en,BBC Three Counties R.,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,0000-1905,1......,0,,206,,, +630,G,en,BBC Three Counties R.,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,0000-2400,.....67,0,,206,,, +630,G,en,BBC Three Counties R.,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,0100-1905,.2345..,0,,206,,, +630,KWT,ar,R Kuwait Quran Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.184106,48.04545,,100,,4251,110,80,,0000-2400,1234567,,,208,,, +630,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jizan=Gizan (jzn),16.86745,42.566344,,20,,5036,127,94,,0300-2200,1234567,,,47065,,, +630,PAK,,PBC Hayya alal-Falah,,Lahore 1 (pjb),31.403333,74.154444,,100,,5830,85,95,,0045-0405,1234.67,951,,47691,,, +630,PAK,,PBC Hayya alal-Falah,,Lahore 1 (pjb),31.403333,74.154444,,100,,5830,85,95,,0045-0820,....5..,951,,47691,,, +630,PAK,,PBC Hayya alal-Falah,,Lahore 1 (pjb),31.403333,74.154444,,100,,5830,85,95,,0800-1900,1234.67,951,,47691,,, +630,PAK,,PBC Hayya alal-Falah,,Lahore 1 (pjb),31.403333,74.154444,,100,,5830,85,95,,1000-1900,....5..,951,,47691,,, +630,ARS,ar,BSKSA Al-Quran al-Karim,,Najran (njn),17.590306,44.063389,,10,,5050,125,98,,0000-2400,1234567,,,47066,,, +630,RUS,,QT,b,Belokholunitsky (KV),58.895833,50.875,,0.025,,2842,57,101,,,,,,85574,,, +630,USA,,WPRO,i,Providence (RI),41.774444,-71.323056,,5,,5722,291,107,,,,996,,42730,,, +630,CAN,,CHED,,Edmonton (AB),53.399444,-113.397222,,50,,7023,325,110,,,,1,,36039,,, +630,BGD,,Bangladesh Betar,,Dhaka B/Savar (dha),23.862994,90.265553,,100,,7528,79,112,,0000-0145,1234567,,,47678,,, +630,BGD,,Bangladesh Betar,,Dhaka B/Savar (dha),23.862994,90.265553,,100,,7528,79,112,,0300-1710,1234567,,,47678,,, +630,BGD,,Bangladesh Betar,,Dhaka B/Savar (dha),23.862994,90.265553,,100,,7528,79,112,,1800-2100,1234567,,,47678,,, +630,CHN,zh,CNR 2,,Bachu/XJTS2041 (XJ),39.815278,78.535833,,1,,5499,74,112,,2300-1602,1234567,,,36200926,,, +630,CAN,en,CFCO,,Chatham (ON),42.334167,-82.281389,,6,,6359,298,113,,,,9948,,35942,,, +630,USA,,WMAL,i,Washington (DC),39.015278,-77.141667,,5,,6294,292,113,,,,9,,42271,,, +630,IND,,AIR South,,Thrissur (KL),10.562222,76.227222,,100,,7709,100,114,,0025-0345,1234567,9979,,47682,,, +630,IND,,AIR South,,Thrissur (KL),10.562222,76.227222,,100,,7709,100,114,,0625-0900,1234567,9979,,47682,,, +630,IND,,AIR South,,Thrissur (KL),10.562222,76.227222,,100,,7709,100,114,,1130-1735,1234567,9979,,47682,,, +630,CHN,zh,CNR 2,,rmqi/XJTS904 (XJ),43.715833,87.595,,1,,5800,65,115,,2300-1602,1234567,,,36200924,,, +630,CHN,zh,CNR 2,,Xingyang/SARFT554 (HE),34.811211,113.38945,,100,,8044,55,117,,2100-1602,1234567,,,36200109,,, +630,CHN,zh,CNR 2,,Yinchuan (NX),38.563056,106.310278,,20,,7320,58,117,,2100-1602,1234567,,,47680,,, +630,CHN,zh,CNR 2,,Nanchang/SARFT561 (JX),28.616975,116.052756,,200,,8746,57,120,,2100-1602,1234567,,,36200107,,, +630,VEN,es,YVKA RNV Canal Informativo,,Caracas (dcf),10.431028,-66.941444,,50,,7960,263,120,,0000-2400,1234567,277,,45350,,, +630,ALS,,KIAM,,Nenana (AK),64.478611,-149.086111,,3.1,,6880,348,121,,0000-2400,1234567,,,38574,,, +630,USA,en,KYFI,,St. Louis (MO),38.671667,-90.114444,,5,,7115,300,121,,,,,,38697,,, +630,USA,es,WREY,,Saint Paul (MN),44.866944,-92.900556,,2.5,,6772,307,121,,,,19,,41158,,, +630,VTN,vi,VOV1,,Đồng Hới (qbh),17.465833,106.610833,,200,,9157,71,121,,2155-1700,1234567,987,,47699,,, +630,PTR,es,WUNO,,San Juan (PR),18.431183,-66.273172,,5,,7225,268,122,,0000-2400,1234567,998,,43264,,, +630,CHN,zh,CNR 2,,Rongcheng (SD),37.134722,122.406944,,50,,8320,48,123,,2100-1602,1234567,,,36200925,,, +630,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.951167,47.44475,,75,,8843,141,124,,1500-1900,12345..,,,2322,,, +630,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.951167,47.44475,,75,,8843,141,124,,1500-2200,.....67,,,2322,,, +630,USA,,WMFD,,Wilmington (NC),34.271944,-77.974444,,1,,6715,289,124,,,,,,42309,,, +630,B,pt,ZYH924 Rdio Maracu,,Viana (MA),-3.192183,-45.018472,,10,,7808,236,125,,,,,,36901138,,, +630,USA,,WLAP,,Lexington (KY),38.123611,-84.445833,,1,,6818,296,125,,,,9967,,42122,,, +630,B,pt,ZYH422 Rdio Difusora Amap,,Macap (AP),0.011694,-51.06505,,10,,7862,243,126,,,,,,36901137,,, +630,CUB,es,R Progreso,,Camagey/CTOM2 (cm),21.350153,-77.872003,,5,,7768,279,128,,,,4,,36523,,, +630,USA,,KHOW,,Denver (CO),39.91,-104.913889,,5,,7831,311,128,,,,9998,,38555,,, +630,ALS,,KJNO,,Juneau (AK),58.329722,-134.471389,,1,,7236,339,129,,0000-2400,1234567,,,38680,,, +630,USA,en,KCIS,,Edmonds (D) (WA),47.768333,-122.351944,,5,,7893,326,129,,,,,,20016218,,, +630,B,pt,ZYJ920 Rdio Aperipe,,Aracaj (SE),-10.890967,-37.064178,,5,,8143,225,131,,,,,,36901131,,, +630,PHL,,DZMM-AM Radyo Patrol,,Obando (bul),14.710556,120.933056,,50,,10302,62,131,,0000-2400,1234567,0,,47692,,, +630,USA,,KFXD,,Boise (ID),43.515556,-116.328611,,5,,8049,320,131,,,,0,,38442,,, +630,CHN,,CNR 2,,several locations,34.95,104.5,,1,,7515,61,132,,2058-1602,1234567,,,47679,,, +630,CHN,zh,CNR 2,,Weifang (SD),36.716667,119.1,,5,,8187,50,132,,2100-1602,1234567,,,36200923,,, +630,CLM,es,HJE69,,Puerto Inirida (gui),3.866667,-67.916667,,10,,8602,260,132,,,,,,35901369,,, +630,USA,,WEJL,,Scranton (PA),41.409444,-75.666944,,0.032,,6023,294,132,,,,,,41274,,, +630,USA,en,KCIS,,Edmonds (N) (WA),47.85,-122.160556,,2.5,,7878,326,132,,,,,,38160,,, +630,VEN,,YVJA,,San Fernando de Apure (apu),7.816667,-67.416667,,5,,8221,262,132,,,,,,45340,,, +630,HTI,,Voix des ODS,,Port-au-Prince (oue),18.516667,-72.316667,,1,,7631,273,133,,,,,,52097,,, +630,KOR,,HLCY KBS 1 R,,Yeosu (jen),34.723611,127.700556,,10,,8807,46,133,,0000-2400,1234567,,,47689,,, +630,MEX,es,XEFB-AM,,Monterrey (nvl),25.713344,-100.198394,,10,,8827,299,133,,,,,,43993,,, +630,CLM,es,HJFD,,Manizales (cal),5.083333,-75.5,,10,,9010,267,134,,,,,,37429,,, +630,HTI,,Rdiffusion Jeremienne,,Jrmie (gan),18.640639,-74.115281,,1,,7743,274,134,,,,,,52096,,, +630,SLV,es,YSLN FM Monumental,,San Salvador (ssl),13.716667,-89.25,,10,,9188,283,134,,,,,,45294,,, +630,USA,,KSLR,,San Antonio (D) (TX),29.391389,-98.35,,5,,8391,299,134,,,,,,20016196,,, +630,USA,,KSLR,,San Antonio (N) (TX),29.530556,-98.120278,,4.3,,8365,299,134,,,,,,39385,,, +630,KOR,,HLSE KBS 1 R,,Inje (gan),38.056667,128.173333,,5,,8516,43,135,,0000-2400,1234567,,,47688,,, +630,TWN,,BCC News Network,,Yilan (YL),24.7338,121.802389,,10,,9427,55,135,,0000-2400,1234567,,,47697,,, +630,ARG,,LW8 R San Salvador de Jujuy,,San Salvador de Jujuy (jy),-24.183333,-65.316667,,25,,10952,241,136,,0900-0400,1234567,,,40264,,, +630,CHN,zh,CNR 2,,Shijiazhuang (HB),37.833333,114.666667,,1,,7851,53,136,,2100-1602,1234567,,,36200108,,, +630,TWN,,Taiwan Guangbo Gongsi,,Sungling (NT),23.84,120.631944,,8,,9443,57,136,,,,,,47698,,, +630,USA,,WJAW,,St. Marys (WV),39.395,-81.230278,,0.037,,6520,295,136,,,,,,41840,,, +630,INS,id,RRI Pro-1,,Makassar (SN-mak),-5.269722,119.4225,,50,,12026,75,137,,2055-1600,1234567,0,,47683,,, +630,THA,th,Mor. Thor. Bor. Sip-Et 11,,Bangkok/145 Rama V Road (bmp),13.785542,100.523778,,5,,9079,78,137,,????-1700,1234567,,,47696,,, +630,ARG,es,LS5 R Rivadavia,,Buenos Aires/Bella Vista (df),-34.577833,-58.679528,,25,,11518,230,138,,0000-2400,1234567,,,40160,,, +630,USA,,WAIZ,,Hickory (NC),35.722778,-81.278056,,0.057,,6811,292,138,,,,,,40679,,, +630,B,pt,ZYH636 Rdio Cidade,,Campos Sales (CE),-7.078794,-40.359414,,0.5,,7931,230,139,,,,,,36901123,,, +630,B,pt,ZYI384 Difusora Bom Jesus,,Cuiab (MT),-15.6,-56.1,,5,,9620,239,139,,,,,,36901136,,, +630,EQA,,HCHA2,,Quevedo (gua),-1.016667,-79.616667,,5,,9826,266,139,,,,,,36962,,, +630,PNR,es,HOJ35 R Provincias,,Chitr (her),7.955947,-80.432117,,2,,9095,272,141,,,,,,37695,,, +630,USA,,KTKK,,Sandy (UT),40.691667,-111.925,,0.5,,8110,316,141,,,,,,39495,,, +630,USA,,WBMQ,,Savannah (GA),32.075278,-81.071389,,0.047,,7091,289,141,,,,9992,,40883,,, +630,USA,,WNEG,,Toccoa (GA),34.567778,-83.323889,,0.044,,7033,293,141,,,,,,20016053,,, +630,MEX,es,XEJR-AM Coral,,San Jeronimito (gue),17.568594,-101.353919,,2.5,,9628,295,142,,,,,,34900025,,, +630,USA,,KPLY,,Reno (NV),39.573611,-119.846667,,1,,8576,320,142,,,,99987,,39174,,, +630,ARG,es,LU4 R Dif. Patagonia Argentina,,Comodoro Rivadavia (ch),-45.874578,-67.503625,,25,,12967,228,143,,0900-0500,1234567,,,40232,,, +630,CHN,zh,CNR 2,,Hangzhou/ZJTS4 (ZJ),30.266667,120.133333,,1,,8826,54,143,,2100-1602,1234567,,,36200106,,, +630,GTM,,TGEL R El Porvenir,,Santa Elena (pet),17.05,-89.166667,,1,,8891,285,143,,1000-0400,1234567,,,52129,,, +630,GUM,en,KUAM,,Agana (GU),13.448056,144.756111,,10,,11701,42,143,,0000-2400,1234567,,,39559,,, +630,HND,,HRLP7,,La Ceiba (atl),15.75,-86.816667,,1,,8848,282,143,,,,,,37792,,, +630,PHL,,DYAG-AM Cadiz RTV Network,,Cadiz (noc),10.833333,123.3,,5,,10803,62,143,,2100-1400,1234567,,,47693,,, +630,USA,,KIDD,,Monterey (CA),36.691111,-121.8,,1,,8939,320,143,,,,99705,,38583,,, +630,MEX,es,XECCQ-AM Frecuencia Turquesa,,Cancn (qui),21.163125,-86.850736,,0.5,,8382,286,144,,,,,,43827,,, +630,B,pt,ZYH777 Rdio 620 AM,,Pires do Rio/Fazenda Brejo (GO),-17.2952,-48.301481,,1,,9343,232,145,,,,,,36901133,,, +630,USA,,WAVU,,Albertville (AL),34.238611,-86.166389,,0.028,,7238,294,145,,,,,,40779,,, +630,USA,,WJDB,,Thomasville (AL),31.882778,-87.745,,0.049,,7531,294,145,,,,,,41859,,, +630,MEX,es,XEFU-AM La Nueva Voz,,Cosamaloapan (vcz),18.359061,-95.815281,,0.75,,9208,291,146,,,,,,44034,,, +630,AUS,en,4QN ABC North Queensland,,Townsville/Brandon (QLD),-19.509986,147.341583,,50,,15065,58,147,,0000-2400,1234567,32,,47677,,, +630,B,pt,ZYN603 Rdio IPB-Novo Tempo,,Campo Grande (MS),-20.560128,-54.636194,,1,,10000,235,147,,,,,,36901139,,, +630,CHL,es,CB63 R Stella Maris,,Valparaso/Cerro Mariposa (VS),-33.073689,-71.624489,,5,,12110,240,147,,1100-0500,1234567,,,35755,,, +630,USA,en,KTRW,,Opportunity (WA),47.608611,-117.373611,,0.053,,7712,323,147,,,,,,39800,,, +630,MEX,es,XEJB-AM,,Guadalajara (jal),20.700317,-103.390967,,0.5,,9470,298,148,,,,,,44199,,, +630,PRU,,OBU7I R Chaski,,Urubamba/Cerro Sacro (cus),-13.359139,-72.111694,,1,,10412,253,148,,,,,,37000118,,, +630,B,pt,ZYL299 Rdio Difusora de Uberaba,,Uberaba (MG),-19.769461,-47.930628,,0.5,,9561,230,149,,,,,,36901127,,, +630,BOL,,CP204 R Tarija,,Tarija (trj),-21.55,-64.333333,,1,,10655,242,149,,0900-0130,1234567,,,51963,,, +630,CAN,en,CBKU,,Sayward (BC),50.388056,-125.961944,,0.04,,7770,330,149,,,,,,20109083,,, +630,INS,id,R Samhan,,Jakarta/Duren Sawit (JK-kjt),-6.237778,106.921389,,1.5,,11272,86,149,,,,,,35400023,,, +630,B,pt,ZYK289 Rdio Santamariense,,Santa Maria/Rua Candida Vargas (RS),-29.690278,-53.825,,1,,10813,229,150,,,,,,36901126,,, +630,MEX,es,XEFX-AM Doble X,,Guaymas (son),27.894628,-110.908111,,0.25,,9240,308,150,,,,,,44038,,, +630,USA,,KVMA,,Magnolia (AR),33.299722,-93.2325,,0.03,,7748,299,150,,,,,,39639,,, +630,B,pt,ZYJ284 Rdio Educativa do Paran,,Curitiba/Colnia Penal Agrcola (PR),-25.41625,-49.085444,,0.5,,10164,228,151,,,,,,36901134,,, +630,MEX,es,XEOPE-AM Exa,,Mazatln (sin),23.220422,-106.384167,,0.25,,9417,302,151,,,,,,44828,,, +630,B,pt,ZYK259 Rdio Cacique,,Lagoa Vermelha (RS),-28.223889,-51.526667,,0.5,,10556,229,152,,,,,,36901130,,, +630,B,pt,ZYK613 Rdio Difusora de Mirassol,,Mirassol (SP),-20.837869,-49.480447,,0.25,,9745,231,152,,,,,,36901129,,, +630,MEX,es,XEERO-AM R Tamaulipas,,Esteros (tam),22.534961,-98.124408,,0.15,,8983,295,152,,,,,,43976,,, +630,USA,,KLEA,,Lovington (NM),32.941667,-103.32,,0.069,,8364,305,152,,,,,,38795,,, +630,B,pt,ZYK635 Rdio Cidade,,Presidente Prudente (SP),-22.106944,-51.401667,,0.25,,9969,232,153,,,,,,36901124,,, +630,B,pt,ZYJ300 Rdio Educadora AM,,Marechal Cndido Rondon (PR),-24.515556,-54.037222,,0.25,,10338,232,154,,,,,,36901132,,, +630,B,pt,ZYJ800 Rdio Doze de Maio AM,,So Loureno do Oeste (SC),-26.380833,-52.837222,,0.25,,10450,231,154,,,,,,36901125,,, +630,PRG,,ZP50,,General Eugenio A Garay (bqn),-20.516667,-62.366667,,0.25,,10443,241,154,,,,,,45546,,, +630,USA,,KWRO,,Coquille (OR),43.171389,-124.198333,,0.046,,8408,325,154,,,,,,39751,,, +630,AUS,en,6AL ABC Great Southern WA,,Albany/Gledhow Rd S (WA),-35.011903,117.824194,,5,,14403,99,155,,0000-2400,1234567,,,47674,,, +630,USA,en,WQIW791,,Chalmette (LA),29.95,-89.966667,,0.01,,7832,294,155,,,,,,20010463,,, +630,AUS,en,2PB ABC Newsr,,Sydney/Prestons (NSW),-33.941906,150.887611,,10,,16545,68,159,,0000-2400,1234567,,,47676,,, +630,CKH,,ZK1KC R Cook Islands,,Matavera (rtg),-21.218061,-159.735844,,2.5,,16379,336,164,,1630-0930,1234...,,,47681,,, +630,CKH,,ZK1KC R Cook Islands,,Matavera (rtg),-21.218061,-159.735844,,2.5,,16379,336,164,,1630-1030,....56.,,,47681,,, +630,CKH,,ZK1KC R Cook Islands,,Matavera (rtg),-21.218061,-159.735844,,2.5,,16379,336,164,,1730-0930,......7,,,47681,,, +630,NZL,en,RNZ National,,Napier/Opapa (HKB),-39.797222,176.675,,10,045 225,18456,32,165,,0000-2400,1234567,,,47690,,, +630,AUS,,7RN ABC National,,Queenstown (TAS),-42.044167,145.528889,,0.4,,16774,86,173,,0000-2400,1234567,,,47675,,, +635,BLR,,VX,b,Minsk 2 (MI),53.9375,27.958333,,0.025,,1450,73,87,,,,,U1018 ,85581,,, +635,BLR,,GH,b,Minsk 2 (MI),53.854167,28.125,,0.025,,1461,74,88,,,,,U1020 ,85575,,, +635,RUS,,KO,b,Kotly,59.354167,28.458333,,0.025,,1587,51,89,,,,,U400 30.4s,IDx2,85576,, +635,UKR,,KD,b,Kirovograd,48.5625,32.291667,,0.025,,1868,92,92,,,,,,86765,,, +635,RUS,,BO,b,Dobrynskoye,56.229167,40.541667,,0.025,,2244,65,95,,,,,15.0s,IDx2 + 4 gap,86764,, +635,RUS,,PF,b,Murmansk / Murmashi South (MU),68.8125,32.708333,,0.025,,2313,27,96,,,,,,85579,,, +635,RUS,,RD,b,Murmansk / Murmashi South (MU),68.729167,32.791667,,0.025,,2309,27,96,,,,,U1045 ,85580,,, +635,RUS,,MD,b,Izhevsk (UD),53.8125,47.458333,,0.025,,2717,70,100,,,,,,85578,,, +635,RUS,,LV,b,Izhevsk (UD),56.895833,53.458333,,0.025,,3021,61,103,,,,,U1020 15.0s,IDx2 + 6 gap,85577,, +638,NIG,,Kaduna State Media Corp.,,Katabu (kdn),10.695661,7.520694,,25,,4606,178,89,,0430-2305,1234567,9,,1754,,, +639,CZE,cs,ČRo Dvojka,,Praha/Liblice (PR),50.0625,14.886667,,750,,634,108,35,,0300-1500,12345..,9996,,220,,, +639,CZE,cs,ČRo Dvojka,,Praha/Liblice (PR),50.0625,14.886667,,750,,634,108,35,,0400-1500,.....67,9996,,220,,, +639,CZE,cs,ČRo Plus,,Praha/Liblice (PR),50.0625,14.886667,,750,,634,108,35,,1500-2300,1234567,9996,,220,,, +639,E,es,RNE R Nacional,,La Corua/Mesn do Vento (GAL-C),43.152653,-8.377661,,300,,1485,234,47,,0000-2400,1234567,1,,225,,, +639,CZE,cs,ČRo Dvojka,,Ostrava/Svinov (MO),49.810833,18.191667,,30,,863,103,51,,0300-1500,12345..,,,219,,, +639,CZE,cs,ČRo Dvojka,,Ostrava/Svinov (MO),49.810833,18.191667,,30,,863,103,51,,0400-1500,.....67,,,219,,, +639,CZE,cs,ČRo Plus,,Ostrava/Svinov (MO),49.810833,18.191667,,30,,863,103,51,,1500-2300,1234567,,,219,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0625-0630,12345..,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0650-0700,12345..,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0800-0815,12345..,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1208-1300,12345..,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1230-1300,.....67,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1400-1415,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0000-0625,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0000-1230,.....67,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0630-0650,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0700-0800,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0815-1208,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1300-1400,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1300-2400,.....67,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1415-2400,12345..,,,223,,, +639,E,es,RNE R Nacional,,Zaragoza/Cuarte Torrero (RNE) (ARA-Z),41.623267,-0.891094,,50,,1290,208,53,,0000-2400,1234567,1,,224,,, +639,CYP,ar,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.616556,33.000622,,500,180,2869,122,59,ME,1800-2100,1234567,,,218,,, +639,CYP,ar,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.616556,33.000622,,500,180,2869,122,59,NAf,0300-0700,1234567,,,218,,, +639,E,es,RNE R Nacional,,Albacete/El Palo (RNE) (CAM-AB),38.984308,-1.919122,,12,,1595,207,62,,0000-2400,1234567,,,221,,, +639,E,es,RNE R Nacional,,Almera/Roquetas de Mar (RNE) (AND-AL),36.729925,-2.641589,,25,,1852,206,62,,0000-2400,1234567,0,,222,,, +639,IRN,fa,IRIB R Iran,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,0530-1330,1234567,20,,226,,, +639,IRN,fa,IRIB R Iran,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,1630-1830,1234567,20,,226,,, +639,IRN,fa,IRIB R Iran,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,2000-0330,1234567,20,,226,,, +639,IRN,ku,IRIB WS,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,0430-0530,1234567,20,,226,,, +639,IRN,ku,IRIB WS,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,1330-1630,1234567,20,,226,,, +639,IRN,tr,IRIB WS,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,1830-2000,1234567,20,,226,,, +639,RUS,ru,R Rossii,,Omsk/RV49 (OM),55.026556,73.228611,,75,,4254,58,81,,2300-1900,1234567,,,46881,,, +639,OMA,ar,R Sultanate Oman,,Mahda (buy),24.246944,55.88975,,100,135,5174,107,89,,0000-2400,1234567,,,11700020,,, +639,SDN,,SRTC Sudan Nat. R,,Al-Ubayyid=El Obeid (kn),13.21255,30.282678,,10,,4821,145,95,,,,,,2327,,, +639,UGA,xx,UBC West,,Kampala/Bugolobi (kmp),0.311453,32.614339,,50,,6257,148,103,,0300-1200,12345..,,,2329,,, +639,UGA,xx,UBC West,,Kampala/Bugolobi (kmp),0.311453,32.614339,,50,,6257,148,103,,0345-2100,.....67,,,2329,,, +639,UGA,xx,UBC West,,Kampala/Bugolobi (kmp),0.311453,32.614339,,50,,6257,148,103,,1300-2100,12345..,,,2329,,, +639,KEN,,KBC English Service,,Garissa (nea),-0.523444,39.538944,,50,,6619,141,106,,0200-2010,12345..,,,2325,,, +639,KEN,,KBC English Service,,Garissa (nea),-0.523444,39.538944,,50,,6619,141,106,,0200-2110,.....6.,,,2325,,, +639,KEN,,KBC English Service,,Garissa (nea),-0.523444,39.538944,,50,,6619,141,106,,0230-2110,......7,,,2325,,, +639,CHN,zh,CNR 1,,Artux=Atushi/XJTS8108 (XJ),39.706783,76.184928,,1,,5351,76,111,,2025-1805,1234567,,,36201148,,, +639,CHN,zh,CNR 1,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,1,,5377,67,111,,2025-1805,1234567,,,36201149,,, +639,CHN,zh,CNR 1,,Beijing/SARFT542 (BJ),39.754111,116.172728,,200,,7763,50,112,,2025-1805,1234567,,,47704,,, +639,CHN,zh,CNR 1,,Shache=Yarkant/SARFT8107 (XJ),38.417222,77.225833,,1,,5512,76,112,,2025-1805,1234567,,,36200909,,, +639,CHN,zh,CNR 1,,Xinyuan=Knes/SARFT8117 (XJ),43.46,83.263611,,1,,5548,68,112,,2025-1805,1234567,,,36201164,,, +639,CHN,zh,CNR 1,,Kuqa=Kuche/SARFT8106 (XJ),41.717222,82.895278,,1,,5646,70,113,,2025-1805,1234567,,,36201156,,, +639,CHN,zh,CNR 1,,Chengdu/SCTS520 (SC),30.906086,104.124883,,100,,7834,64,115,,2025-1805,1234567,,,36200095,,, +639,MYA,,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,0430-0630,1234567,,,22100053,,, +639,MYA,en,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,0130-0200,1234567,,,22100053,,, +639,MYA,en,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,1430-1500,1234567,,,22100053,,, +639,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,1030-1430,1234567,,,22100053,,, +639,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,2330-0130,1234567,,,22100053,,, +639,IND,,AIR Northeast,,Kohima (NL),25.719167,94.038611,,50,,7625,75,116,,0700-0850,1234567,,,47707,,, +639,IND,,AIR Northeast,,Kohima (NL),25.719167,94.038611,,50,,7625,75,116,,1000-1630,1234567,,,47707,,, +639,IND,,AIR Northeast,,Kohima (NL),25.719167,94.038611,,50,,7625,75,116,,2359-0510,1234567,,,47707,,, +639,CHN,bo,Xizang RGD,,Ga'er/Shiquanhe (XZ),32.494639,80.087611,,1,,6147,80,118,,2100-1805,1234567,,,36201154,,, +639,CHN,zh,CNR 1,,Hami=Kumul/XJTS761 (XJ),42.872778,93.511667,,1,,6223,62,119,,2025-1805,1234567,,,36200096,,, +639,CHN,zh,CNR 1,,Ruoqiang=Qarkilik/SARFT8105 (XJ),39.042222,88.170278,,1,,6179,69,119,,2025-1805,1234567,,,36201160,,, +639,CHN,bo,Xizang RGD,,Burang=Pulan (XZ),30.298667,81.172861,,1,,6392,81,121,,2100-1805,1234567,,,36201150,,, +639,CHN,bo,Xizang RGD,,Chagyab=Chaya (XZ),30.298667,81.172833,,1,,6392,81,121,,2100-1805,1234567,,,36201151,,, +639,CHN,zh,CNR 1,,Shuangliao (JL),43.5,123.5,,10,,7795,43,125,,2025-1805,1234567,,,36200908,,, +639,LSO,,LNBS R Lesotho,,Maseru/Lancer's Gap (msr),-29.31075,27.555947,,100,,9285,162,125,,0000-2400,1234567,7,,11600002,,, +639,CHN,zh,CNR 1,,Guilin/GXTS240 (GX),25.396278,110.323667,,50,,8692,64,126,,2025-1805,1234567,,,36200915,,, +639,CHN,zh,CNR 1,,Liuzhou/GXTS238 (GX),24.39875,109.344889,,50,,8719,65,126,,2025-1805,1234567,,,36200913,,, +639,CHN,zh,CNR 1,,Panjin/LNTS315 (LN),41.203278,122.029139,,10,,7932,46,126,,2025-1805,1234567,,,36200098,,, +639,CHN,bo,Xizang RGD,,Nagqu=Naqu (XZ),31.472389,92.042306,,1,,7020,72,127,,2100-1805,1234567,,,36201158,,, +639,CHN,bo,Xizang RGD,,Xigaz (XZ),29.291111,88.881267,,1,,6989,76,127,,2100-1805,1234567,,,36201163,,, +639,CHN,zh,CNR 1,,Meihekou (JL),42.513611,125.7025,,10,,7987,43,127,,2025-1805,1234567,,,36200911,,, +639,CHN,zh,CNR 1,,Yulin/GXTS241 (GX),22.673889,110.195,,50,,8924,65,127,,2025-1805,1234567,,,36200104,,, +639,CHN,bo,Xizang RGD,,Yadong (XZ),27.5175,88.963056,,1,,7139,78,128,,2100-1805,1234567,,,36201165,,, +639,CHN,zh,CNR 1,,Lchun (YN),23.005611,102.354056,,20,,8398,71,128,,2025-1805,1234567,,,36200912,,, +639,CHN,zh,CNR 1,,Yanji=Yeon'gil (JL),42.933689,129.502983,,10,,8119,40,128,,2025-1805,1234567,,,36200903,,, +639,CHN,bo,Xizang RGD,,Gongbo'gyamda (XZ),29.886111,93.244444,,1,,7228,73,129,,2100-1805,1234567,,,36201155,,, +639,CHN,bo,Xizang RGD,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,2100-1805,1234567,,,36201161,,, +639,CHN,zh,CNR 1,,Changbai (JL),41.416667,128.2,,10,,8203,42,129,,2025-1805,1234567,,,36200919,,, +639,CHN,bo,Xizang RGD,,Cona=Cuona (XZ),27.996111,91.964389,,1,,7299,75,130,,2100-1805,1234567,,,36201152,,, +639,CHN,bo,Xizang RGD,,Dngqn=Dingqing (XZ),31.413333,95.5985,,1,,7255,70,130,,2100-1805,1234567,,,36201153,,, +639,CHN,bo,Xizang RGD,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2100-1805,1234567,,,36201159,,, +639,CHN,zh,CNR 1,,Suizhou (HU),31.715,113.344722,,10,,8314,58,130,,2025-1805,1234567,,,36200907,,, +639,CHN,bo,Xizang RGD,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2100-1805,1234567,,,36200920,,, +639,CHN,zh,CNR 1,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,2025-1805,1234567,,,36200914,,, +639,CHN,zh,CNR 1,,Zhongning (NX),37.516122,105.704756,,1,,7372,59,131,,2025-1805,1234567,,,36200902,,, +639,CHN,zh,CNR 1,,Ganzi=Garz/SCTS532 (SC),31.619792,99.999333,,1,,7517,67,132,,2025-1805,1234567,,,36200916,,, +639,CHN,zh,CNR 1,,Qichun/Caohe (HU),30.233333,115.416667,,10,,8565,57,132,,2025-1805,1234567,,,36200099,,, +639,THA,th,Sor. Wor. Thor. (R Thailand),,Lamphun (cmi),18.568333,99.041389,,10,,8564,76,132,,2200-1600,1234567,,,47721,,, +639,CHN,bo,Xizang RGD,,Markam=Mangkang (XZ),29.679836,98.598306,,1,,7590,69,133,,2100-1805,1234567,,,36201157,,, +639,CHN,zh,CNR 1,,Aba=Ngawa/SCTS536 (SC),31.933333,101.716667,,1,,7598,65,133,,2025-1805,1234567,,,36200922,,, +639,CHN,zh,CNR 1,,Bayanhushu (NM),45.057222,121.489722,,1,,7561,44,133,,2025-1805,1234567,,,36200921,,, +639,CHN,zh,CNR 1,,Changzhou (JS),31.763611,119.776944,,10,,8670,53,133,,2025-1805,1234567,,,36200094,,, +639,CHN,zh,CNR 1,,Fangcheng (GX),21.766667,108.383333,,10,,8891,67,133,,2025-1805,1234567,,,47705,,, +639,CHN,zh,CNR 1,,Nanning/GXTS101 (GX),22.792222,108.191667,,10,,8789,67,133,,2200-1000,1234567,,,36200097,,, +639,CHN,zh,CNR 1,,Pingxiang (GX),22.097778,106.752278,,10,,8759,68,133,,2025-1805,1234567,,,36200910,,, +639,CHN,zh,CNR 1,,Zhangjiakou/HBTS109 (HB),40.600556,115.0925,,1,,7632,51,133,,2025-1805,1234567,,,36200105,,, +639,CHN,zh,CNR 1,,Fuzhou/FJTS103 (FJ),26.073889,119.339722,,10,,9164,57,134,,2025-1805,1234567,,,36200917,,, +639,CHN,zh,CNR 1,,Tongliao/NMTS729 (NM),43.666667,122.216667,,1,,7719,44,134,,2025-1805,1234567,,,36200103,,, +639,J,,JOPB NHK2,,Shizuoka (chu-shi),34.950278,138.418056,,10,,9272,38,135,,2030-1500,1.....7,,,47713,,, +639,J,,JOPB NHK2,,Shizuoka (chu-shi),34.950278,138.418056,,10,,9272,38,135,,2030-1635,.2345..,,,47713,,, +639,J,,JOPB NHK2,,Shizuoka (chu-shi),34.950278,138.418056,,10,,9272,38,135,,2030-1640,.....6.,,,47713,,, +639,THA,,Sor. Wor. Thor. (R Thailand),,Nakhon Si Thammarat (ntm),8.416667,99.966667,,10,,9511,82,135,,2200-1600,1234567,,,47722,,, +639,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,2200-1000,1234567,,,36200100,,, +639,CHN,zh,CNR 1,,Tangshan (HB),39.666667,118.285333,,1,,7881,49,136,,2025-1805,1234567,,,36200101,,, +639,CHN,zh,CNR 1,,Tianjin (TJ),39.15,117.15,,1,,7868,50,136,,2025-1805,1234567,,,36200102,,, +639,J,ja,JOWN STV Sapporo TV Hoso,,Hakodate (hok),41.818033,140.745675,,5,,8683,33,136,,0000-2400,1234567,3,,47711,,, +639,J,,JOIP NHK1,,Oita (kyu-oit),33.248056,131.575,,5,,9133,44,137,,0000-2400,1234567,,,47712,,, +639,CHN,zh,CNR 1,,Fengcheng/LNTS313 (LN),40.45,124.066667,,1,,8099,45,138,,2025-1805,1234567,,,36200918,,, +639,CHN,zh,CNR 1,,Tonghua (JL),41.683333,125.75,,1,,8066,43,138,,2025-1805,1234567,,,36200906,,, +639,CHN,zh,CNR 1,,Xiangfan/Pangongci (HU),32.027778,112.176389,,1,,8219,58,139,,2025-1805,1234567,,,36200904,,, +639,CHN,zh,CNR 1,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,2025-1805,1234567,,,36200329,,, +639,CHN,zh,CNR 1,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,1,,9229,58,144,,2025-1805,1234567,,,36201162,,, +639,PHL,,DXKR-AM RMN Marbel,,Koronadal=Marbel (sco),6.5,124.85,,5,,11299,63,144,,0000-2400,1234567,,,47718,,, +639,J,,CBC Chubu-Nippon Hoso,,Gifu/Kakamigahara-Shi (chu-gif),35.365278,136.805,,0.5,,9163,39,147,,0000-2400,1234567,,,47710,,, +639,PHL,,DZRL-AM,,Batac (iln),18.058611,120.558611,,1,,9971,60,147,,,,,,47717,,, +639,AUS,,5CK ABC North & West SA,,Port Pirie/Crystal Brook (SA),-33.344806,138.253847,,10,,15667,81,156,,0000-2400,1234567,,,47703,,, +639,AUS,,8RN ABC National,,Katherine (NT),-14.396139,132.180472,,2,,13672,69,156,,0000-2400,1234567,,,47701,,, +639,AUS,,2HC,,Coffs Harbour/Raleigh (NSW),-30.47,153.031389,,5,,16387,62,161,,0000-2400,1234567,23,,47700,,, +639,AUS,,4MS ABC Far North QLD,,Mossman (QLD),-16.414167,145.389444,,1,,14664,58,162,,0000-2400,1234567,10,,47702,,, +639,NZL,en,RNZ National,,Alexandra (OTA),-45.163867,169.393642,,2,,18551,65,172,,0000-2400,1234567,,,47715,,, +640,CAN,en,CBN,,Saint John's (NL),47.568889,-52.811389,,10,,4157,287,89,,,,1,,35790,,, +640,UKR,,I,b,Kiev / Boryspil (KY),50.354167,30.875,,0.025,,1706,87,90,,,,,U1034 ,85582,,, +640,UKR,,O,b,Kiev / Borispol (KY),50.3125,30.875,,0.025,,1708,87,90,,,,,U1031 9.0s,ID+7 gap,85583,, +640,CAN,,CFMJ,,Richmond Hill/Beamsville (ON),43.178389,-79.432333,,50,,6124,297,101,,,,9990,,35985,,, +640,GLP,fr,Guadeloupe 1re,,Pointe--Pitre (971),16.225144,-61.593494,,50,,7095,263,111,,0000-2400,1234567,998,,51731,,, +640,USA,en,WNNZ,,Westfield (MA),42.179444,-72.751389,,1,,5784,293,115,,,,,,42490,,, +640,USA,,WWJZ,,Mount Holly (NJ),39.996944,-74.719722,,0.95,,6067,292,118,,,,9975,,43394,,, +640,CUB,es,R Progreso,,Guanabacoa/CTOM1 (ch),23.108225,-82.284803,,50,,7915,284,119,,,,9981,,36457,,, +640,VEN,,YVQO Union R Portenas,,Puerto La Cruz (azg),10.066667,-64.766667,,50,,7844,261,119,,0000-2400,1234567,4,,45430,,, +640,ALS,,KYUK,,Bethel (AK),60.7825,-161.883333,,10,,7419,354,121,,0000-2400,1234567,33,,39873,,, +640,CAN,xx,CBIA,,Gjoa Haven (NU),68.626667,-95.8725,,0.04,,5180,331,123,,,,,,20109084,,, +640,CUB,es,R Progreso,,Victoria de las Tunas/CTOM2 (lt),20.93105,-76.909467,,10,,7739,278,124,,,,998,,36579,,, +640,USA,,WHLO,,Akron (OH),41.079722,-81.645833,,0.5,,6416,297,124,,,,,,41659,,, +640,USA,en,WFNC,,Fayetteville (NC),35.079444,-78.932778,,1,,6713,290,124,,,,,,41413,,, +640,B,pt,ZYJ590 Rdio Globo,,Natal/Fazenda Regomoleiro (RN),-5.785444,-35.278389,,5,,7547,226,126,,,,,,36901148,,, +640,EQA,,HCXY1,,Quito (pic),-0.166667,-78.5,,100,,9675,266,126,,,,,,37189,,, +640,USA,en,WXSM,,Blountville (TN),36.521944,-82.423611,,0.81,,6820,294,126,,,,,,41542,,, +640,GTM,,TGW R Nacional LV de Guatemala,,Ciudad de Guatemala (gut),14.566667,-90.566667,,50,,9201,284,127,,,,,,40555,,, +640,USA,,WOI,,Ames (IA),41.992778,-93.690833,,1,,7048,305,127,,,,9991,,42576,,, +640,USA,en,KFI,i,Los Angeles (CA),33.879722,-118.013056,,50,,9037,316,127,,,,1,,38389,,, +640,USA,,WMFN,,Zeeland (MI),42.816389,-85.956667,,0.23,,6540,301,129,,,,,,42312,,, +640,USA,en,WGST,,Atlanta (GA),33.761944,-84.458056,,1,,7170,293,129,,,,,,41568,,, +640,VEN,,YVMU R Carora,,Carora (lar),10.166667,-70.066667,,10,,8195,266,129,,1000-0400,1234567,,,51652,,, +640,CLM,es,HJBJ,,Santa Marta (mag),11.216667,-74.2,,10,,8386,270,131,,,,,,37348,,, +640,MEX,es,XENQ-AM,,Tulancingo de Bravo (hid),20.058611,-98.471389,,25,,9225,294,131,,,,,,44455,,, +640,B,pt,ZYK277 Rdio Band AM,,Porto Alegre/Matias Velho (RS),-29.897978,-51.215164,,50,,10699,227,132,,,,,,36901152,,, +640,USA,,WVLG,,Wildwood (FL),28.904444,-81.96,,0.86,,7408,288,132,,,,,,43305,,, +640,B,pt,ZYL320 Rdio Educadora de Porteirinha,,Porteirinha (MG),-15.760928,-43.038794,,10,,8920,228,133,,,,,,36901154,,, +640,B,pt,ZYI924 Rdio Cruzeiro de Pedro II,,Pedro II (PI),-4.428333,-41.441322,,1,,7730,232,134,,,,,,36901153,,, +640,CTR,,TIAD R Rica,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1130-0400,1234567,,,52144,,, +640,NCG,es,YNLN R.Ranchera La Mera Mera,,Managua (mng),12.15,-86.283333,,10,,9126,280,134,,1000-????,1234567,,,52187,,, +640,USA,,WCRV,,Collierville (TN),34.993056,-89.899444,,0.48,,7405,297,134,,,,9958,,41080,,, +640,B,pt,ZYI204 Rdio Vitria,,Vitria (ES),-20.3,-40.316667,,10,,9235,223,135,,,,,,36901147,,, +640,USA,,KWPN,,Moore (OK),35.289167,-97.502222,,1,,7829,303,135,,,,,,43403,,, +640,USA,en,WMEN,,Royal Palm Beach (FL),26.755,-80.366667,,0.46,,7482,285,135,,,,7,,41903,,, +640,MEX,es,XEJUA-AM Milenio R,,Ciudad Jurez (chi),31.7416,-106.483217,,5,,8647,307,136,,,,,,44229,,, +640,USA,en,KTIB,,Thibodaux (LA),29.851389,-90.913333,,1,,7899,295,136,,,,,,39485,,, +640,B,pt,ZYI406 Rdio Progresso AM,,Alta Floresta (MT),-9.870556,-56.101481,,5,,9087,242,137,,,,,,36901142,,, +640,B,pt,ZYH757 Rdio Difusora,,Goinia (GO),-16.737561,-49.409761,,5,,9349,233,138,,,,,,36901151,,, +640,PNR,es,R Panam,,La Palma (drn),8.372222,-78.149722,,2.5,,8903,271,139,,,,,,52297,,, +640,PRG,,ZP19 R Caaguazu,,Coronel Oviedo (cgz),-25.416667,-56.433333,,10,,10553,234,139,,0830-0300,1234567,,,45514,,, +640,PRU,es,OAZ4K Pacfico R,,Lima/El Agustino (lim),-12.038833,-76.98175,,10,,10617,257,139,,1030-0430,1234567,,,40368,,, +640,ARG,,LV15 R Villa Mercedes,,Villa Mercedes (sl),-33.666667,-65.466667,,10,,11806,235,143,,0900-0300,1234567,,,40239,,, +640,PNR,es,HOK22 R CPR,,Coln (clo),9.363056,-79.905556,,1,,8936,273,143,,,,,,37696,,, +640,B,pt,ZYJ751 RBN-Rdio Brasil Novo,,Jaragu do Sul (SC),-26.476667,-49.039722,,2.5,,10263,228,144,,,,,,36901141,,, +640,HND,,HRNN4,,Tegucigalpa (fmz),14.083333,-87.216667,,1,,9020,282,144,,,,,,37817,,, +640,MEX,es,XEHHI-AM R Uno,,Hidalgo del Parral (chi),26.950939,-105.718506,,1,,9039,303,144,,,,,,44116,,, +640,MEX,es,XEYQ-AM La Tremenda,,Fresnillo (zac),23.13125,-102.834333,,1,,9216,299,144,,,,,,45106,,, +640,MEX,es,XEHDL-AM Aro,,Huajuapan de Len (oax),17.806944,-97.786111,,1,,9383,292,145,,,,,,44104,,, +640,USA,en,WPHU966,,La Salle (IL),41.366694,-89.110083,,0.01,,6838,302,145,,,,,,20010464,,, +640,B,pt,ZYH458 Rdio Difusora Sul da Bahia,,Itabuna (BA),-14.781939,-39.291583,,0.5,,8638,225,146,,,,,,36901150,,, +640,B,pt,ZYI424 Rdio Tangar,,Tangar da Serra/Chcara do Cafe (MT),-14.633333,-57.483333,,1,,9612,241,146,,,,,,36901149,,, +640,B,pt,ZYK547 Rdio Morada do Sol,,Araraquara (SP),-21.757994,-48.144519,,1,,9764,229,146,,,,,,36901146,,, +640,B,pt,ZYJ262 Rdio Auriverde,,Londrina (PR),-23.233333,-51.141667,,1,,10062,231,147,,,,,,36901145,,, +640,EQA,es,R Morena,,Guayaquil (gua),-2.183333,-79.866667,,1,,9945,266,147,,,,,,1988,,, +640,ARG,es,LU18 R El Valle 640 AM,,General Roca (rn),-39.038278,-67.505542,,5,,12387,233,148,,0900-0300,1234567,,,40212,,, +640,CHL,es,CD64 R.Temuco Cooperativa AM,,Temuco (AR),-38.692417,-72.673428,,5,,12647,237,149,,1000-0430,1234567,,,35908,,, +640,MEX,es,XETAM-AM Ke Buena,,Ciudad Victoria (tam),23.709922,-99.122519,,0.25,,8940,297,150,,,,,,44792,,, +640,B,pt,ZYL308 Rdio Santa Cruz,,Par de Minas (MG),-19.881256,-44.59155,,0.25,,9401,227,151,,,,,,36901143,,, +640,ARG,es,LRA24 R Nacional,,Ro Grande (tf),-53.797522,-67.694389,,5,,13623,222,152,,0000-2400,1234567,,,39944,,, +640,B,pt,ZYJ489 Rdio Agulhas Negras,,Resende (RJ),-22.465308,-44.378417,,0.25,,9643,226,152,,,,,,36901144,,, +640,USA,en,KG2XAJ,,San Antonio (TX),29.446667,-98.608056,,0.0001,,8402,300,181,,,,,,20010465,,, +641,RUS,,WS,b,Vesely,47.104167,40.708333,,0.025,,2508,89,98,,,,,,85584,,, +642,RUS,,KN,b,Moskva/Kostino (MV),56.3125,37.708333,,0.025,,2069,65,94,,,,30,L400 U400 ,85585,,, +643,UKR,,TP,b,Topchyne,48.9375,34.791667,,0.025,,2024,89,93,,,,66,L978 U1110 ,ID+10 gap,85588,, +643,RUS,,RZ,b,Sharanga,57.1875,46.541667,,0.025,,2602,62,99,,,,,L1011 U1008 ,85587,,, +644,RUS,,SL,b,Solodniki (AS),48.395833,45.291667,,0.025,,2761,83,101,,,,1,L1010 U1013 ,85589,,, +645,POL,,RO,b,Radom,51.395833,21.291667,,0.025,,1026,89,83,,,,,L1020 ,85591,,, +645,UKR,,UG,b,Uzhgorod (ZH),48.645833,22.208333,,0.025,,1182,103,85,,,,,,ID+9 tone,85592,, +645,UKR,,UO,b,Uzghorod (ZH),48.645833,22.291667,,0.025,,1187,103,85,,,,,L1046 30.0s,IDx2,85593,, +645,RUS,,NT,b,Nizhnyaya Zolotitsa,65.6875,40.125,,0.025,,2406,38,97,,,,,,85590,,, +648,SVN,sl,R Murski Val,,Murska Sobota/Nemčavci (ms),46.685639,16.173722,,10,,928,127,56,,0000-2400,1234567,1,,240,,, +648,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0000-2400,1234567,2,,234,,, +648,ARS,ar,BSKSA Idha'atu-i Riyadh/Idha'atu-i Jeddah,,Jeddah/Sumaymah (mkh),21.239194,39.162894,,2000,130,4435,128,68,,0000-2400,1234567,,,231,,, +648,TJK,,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,AFG,1200-1400,1234567,6,,47759,,, +648,TJK,en,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,CAs,0100-0400,1234567,6,,47759,,, +648,TJK,en,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,CAs,1400-1500,1234567,6,,47759,,, +648,TJK,en,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,CAs,1700-1900,1234567,6,,47759,,, +648,TJK,fa,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,IRN,1500-1700,1234567,6,,47759,,, +648,IRN,fa,IRIB R.Chahar Mahal & Bakhtiari,,Shahr-e Kord (cbk),32.170994,51.182694,,50,280,4213,104,82,,,,999,,236,,, +648,IND,,AIR West,,Indore A (MP),22.645556,75.821111,,200,,6648,91,101,,0023-0405,1234567,9989,,47731,,, +648,IND,,AIR West,,Indore A (MP),22.645556,75.821111,,200,,6648,91,101,,0405-0630,......7,9989,,47731,,, +648,IND,,AIR West,,Indore A (MP),22.645556,75.821111,,200,,6648,91,101,,0630-0935,1234567,9989,,47731,,, +648,IND,,AIR West,,Indore A (MP),22.645556,75.821111,,200,,6648,91,101,,1130-1740,1234567,9989,,47731,,, +648,NPL,,R Nepal,,Dhankuta (kos),26.796044,87.285847,,100,,7086,79,108,,2315-1720,1234567,,,47751,,, +648,RUS,en,Voice of Russia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,,0900-1000,1234567,3,,2283,,, +648,RUS,en,Voice of Russia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,,1400-1445,1234567,3,,2283,,, +648,RUS,ko,R Free Asia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,FE,1500-1900,1234567,3,,2283,,, +648,RUS,ko,R Free Asia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,FE,2100-2200,1234567,3,,2283,,, +648,RUS,ko,Voice of America,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,FE,1900-2100,1234567,3,,2283,,, +648,RUS,zh,Voice of Russia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,FE,1000-1400,1234567,3,,2283,,, +648,CHN,zh,Kashi RGD,,Kashgar=Kashi (XJ),39.416667,76,,1,,5359,76,111,,,,,,47729,,, +648,CHN,,Guangdong Weixing Guangbo,,Guangzhou/SARFT522 (GD),23.407494,113.240722,,150,,9046,63,122,,2200-1900,1234567,,,47727,,, +648,BOT,,R Botswana,,Mopipi (ce),-21.230389,24.898361,,50,,8351,162,124,,0000-2400,1234567,,,2330,,, +648,CHN,zh,CNR 1,,Binzhou (SD),37.366667,118.016667,,10,,8071,51,128,,2025-1805,1234567,,,36200901,,, +648,CHN,zh,CNR 1,,Jinan/Daqiao (SD),36.791389,117.015556,,10,,8069,52,128,,2025-1805,1234567,,,36200090,,, +648,VTN,vi,VOV1,,An Nhơn (Bnh Định) (bdh),13.893167,109.109689,,50,,9635,72,129,,2145-1700,1234567,,,47761,,, +648,CHN,,Chaoyang RGD Chengshi,,Chaoyang (LN),41.566667,120.466667,,3,,7822,47,130,,,,,,47726,,, +648,THA,,Sor. Wor. Thor. (R Thailand),,Khon Kaen (kkn),16.568822,102.820039,,25,,8988,75,130,,2200-1700,1234567,,,47758,,, +648,TWN,,BCC News Network,,New Taipei City/Panchiao (TP),25.006867,121.465544,,20,,9383,56,132,,0000-2400,1234567,,,47788,,, +648,CHN,,Shanghai RGD Jiaotong Pinl,,Shanghai/SHTS806 (SH),31.199444,121.416944,,10,,8811,52,133,,2155-1600,1234567,,,47730,,, +648,CHN,,Changchun RGD,,Changchun (JL),43.8,125.4,,1,,7855,42,136,,,,,,36200092,,, +648,J,en,AFN Okinawa-Surf 648,,Urasoe/Camp Kinser (kyu-oki),26.270133,127.707172,,10,,9605,50,136,,0000-2400,1234567,0,,47746,,, +648,CHN,,Liaoyang RGD Pingshu Xiqu Guangbo,,Liaoyang (LN),41.235556,123.183056,,1,,7985,45,137,,,,,,36200900,,, +648,J,,JOIG NHK1,,Toyama (chu-toy),36.720578,137.247681,,5,,9049,38,137,,0000-2400,1234567,,,47747,,, +648,PHL,,DWRH-AM (r:666 DZRH-AM),,Santiago City (isa),16.683333,121.533333,,10,,10155,60,138,,,,,,47754,,, +648,PHL,,DWRM-AM Radyo ng Bayan,,Puerto Princesa (plw),9.736111,118.738889,,10,,10623,66,139,,2057-????,1234567,,,47753,,, +648,CHN,,Huainan RGD,,Huainan (AH),32.656839,116.963722,,1,,8435,54,141,,,,,,47728,,, +648,CHN,zh,Anhui RGD Shenghuo Guangbo,,Wuhu (AH),31.3,118.4,,1,,8637,54,143,,2100-1800,1234567,,,36200091,,, +648,CHN,zh,CNR 1,,Xiangshan (ZJ),29.8,120.35,,1,,8881,54,143,,2025-1805,1234567,,,36200899,,, +648,KOR,,HLSL KBS 1 R,,Boseong (jeb),34.763333,127.090833,,1,,8773,46,143,,0000-2400,1234567,,,47748,,, +648,PHL,,DYRC-AM Aksyon Radyo,,Talisay (ceb),10.740833,122.970278,,5,,10791,62,143,,2000-1500,......7,,,47755,,, +648,PHL,,DYRC-AM Aksyon Radyo,,Talisay (ceb),10.740833,122.970278,,5,,10791,62,143,,2000-1600,123456,,,47755,,, +648,CHN,,Guangdong Weixing Guangbo,,Dabu (GD),22.366667,113.45,,1,,9152,63,144,,,,,,36200093,,, +648,CHN,zh,CNR 1,,Yuhuan (ZJ),28.133333,121.233333,,1,,9082,54,144,,2025-1805,1234567,,,36200898,,, +648,PHL,,DXMB-AM,,Malaybalay (buk),8.116667,125.116667,,5,,11165,62,144,,2100-1600,1234567,,,47752,,, +648,INS,id,R REM/R SSK,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400024,,, +648,INS,id,PM5DXY R Ajisatria,,Banyumas/Ajibarang (JT-ban),-7.416667,109.066667,,1,,11521,85,152,,,,,,49472,,, +648,INS,id,R.Santo Bernardus Duta Suara,,Pekalongan (JT),-6.883333,109.666667,,1,,11515,84,152,,,,,,47742,,, +648,AUS,,2NU ABC New England NW,,Tamworth/Manilla (NSW),-30.781167,150.7435,,10,,16275,65,158,,0000-2400,1234567,45,,47725,,, +648,AUS,,6GF ABC Goldfields-Esperance,,Kalgoorlie (WA),-30.782444,121.404083,,2,,14324,92,158,,0000-2400,1234567,,,47724,,, +648,NZL,en,NZs Rhema,,Gisborne/Mahia (GIS),-39.098056,177.9525,,2,,18428,28,172,,,,,,32500015,,, +650,UKR,,L,b,Lviv (LV),49.8125,23.958333,,0.025,,1252,95,85,,,,,U1020 ,85596,,, +650,UKR,,O,b,Lviv (LV),49.8125,23.958333,,0.025,,1252,95,85,,,,,L978 U979 15.4s,IDx2,85597,, +650,UKR,,V,b,Lviv (LV),49.8125,23.958333,,0.025,,1252,95,85,,,,,,IDx2,85601,, +650,RUS,,OS,b,Osmino,59.354167,29.125,,0.025,,1623,51,89,,,,1,L407 U410 ,85598,,, +650,CAN,,CKGA,,Gander (NL),48.960278,-54.660278,,5,,4202,290,92,,,,3,,52552,,, +650,RUS,,R,b,Yaroslavl / Tunoshna (YA),57.5625,40.208333,,0.025,,2222,61,95,,,,,,85600,,, +650,RUS,,BJ,b,Astrakhan / Narimanovo (AS),46.270833,48.041667,,0.025,,3050,86,103,,,,,,85594,,, +650,RUS,,GV,b,Astrakhan / Narimanovo (AS),46.270833,47.958333,,0.025,,3044,86,103,,,,,U1013 ,85595,,, +650,USA,,WSM,,Nashville/Blaw-Knox Mast (TN),35.997222,-86.792222,,50,,7133,296,111,,,,100,,43023,,, +650,ALS,,KENI,,Anchorage (AK),61.166111,-149.826111,,50,,7244,348,113,,0000-2400,1234567,9998,,38329,,, +650,CAN,en,CKOM,,Saskatoon (SK),52.079167,-106.511389,,10,,6850,320,116,,,,,,36357,,, +650,USA,,WNMT,,Nashwauk (MN),47.375278,-93.015556,,1,,6579,309,123,,,,,,42484,,, +650,CAN,en,CISL,,Richmond (BC),49.143889,-123.061389,,9,,7787,328,125,,,,,,36134,,, +650,CUB,es,R Progreso,,Ciego de vila/CTOM2 (ca),21.857528,-78.732478,,10,,7783,280,125,,,,0,,31600058,,, +650,USA,pt,WSRO,,Ashland (MA),42.288056,-71.431944,,0.062,,5692,292,126,,,,999,,43063,,, +650,CAN,fr,CBF-3,,Lebel-sur-Quvillon (QC),49.049444,-76.979722,,0.04,,5563,302,127,,,,,,20109085,,, +650,CUB,es,R Rebelde,,Santiago de Cuba/CTOM1 (sc),20.055531,-75.804389,,5,,7738,277,127,,,,,,36549,,, +650,URG,es,CX6 RNU Clsica AM,,Santiago Vzquez (mo),-34.810528,-56.361194,,200,,11419,228,129,,0000-2400,1234567,,,36824,,, +650,HND,,HRVW,,San Pedro Sula (cor),15.5,-88.016667,,20,,8950,283,131,,,,,,37868,,, +650,DOM,,HIAT R Universal,,Santo Domingo (sdo),18.566667,-69.833333,,1,,7457,271,132,,0000-2400,1234567,,,37211,,, +650,NCG,,YNRI R Septentrion,,Matagalpa (mgp),12.883333,-85.95,,12,,9040,280,133,,1100-0100,1234567,,,52188,,, +650,CLM,es,HJKH RCN Antena 2,,Bogot D. C. (bdc),4.566667,-74.066667,,10,,8957,265,134,,0000-2400,1234567,998,,37518,,, +650,PNR,es,HOS22 R Mia,,La Loma (pnm),9.025581,-79.490922,,10,,8938,272,134,,0000-2400,1234567,,,37726,,, +650,B,pt,ZYI672 Rdio Alto Piranhas,,Cajazeiras (PB),-6.905144,-38.560861,,1,,7821,228,135,,,,,,36901160,,, +650,B,pt,ZYL200 Rdio Princesa,,Lagoa Formosa (MG),-18.638358,-46.457961,,10,,9375,229,135,,,,,,36901167,,, +650,B,pt,ZYI414 Rdio Educadora,,Colder (MT),-10.824856,-55.47485,,5,,9138,241,137,,,,,,36901163,,, +650,BOL,,CP263 R Dif. Integracion,,El Alto (lpz),-16.5,-68.166667,,15,,10438,248,137,,0900-0130,1234567,,,51964,,, +650,PRG,,ZP4 R Uno,,Asuncin (asu),-25.266667,-57.616667,,15,,10605,235,137,,0900-0300,.....67,,,51733,,, +650,PRG,,ZP4 R Uno,,Asuncin (asu),-25.266667,-57.616667,,15,,10605,235,137,,0900-0400,12345..,,,51733,,, +650,PRU,,OAU9D,,Nieva/Pampa Hermosa (ama),-4.586667,-77.857222,,10,,10020,263,137,,,,,,37000077,,, +650,USA,,KGAB,,Orchard Valley (WY),41.053056,-104.8325,,0.5,,7726,311,137,,,,3,,38453,,, +650,B,pt,ZYI540 Tropical AM,,Santarm (PA),-2.454686,-54.693433,,1,,8314,245,140,,,,,,36901169,,, +650,B,pt,ZYK518 Rdio Tupi,,Santos (SP),-24.003056,-46.519083,,5,,9898,227,140,,,,9,,36901164,,, +650,EQA,,HCFD4,,Manta (man),-1,-80.766667,,5,,9903,267,140,,,,,,36935,,, +650,USA,,KMTI,,Manti (UT),39.294167,-111.636944,,0.9,,8224,315,140,,,,,,38937,,, +650,USA,en,WPCV564,,Alexandria (VA),38.776222,-77.082472,,0.01,,6309,292,140,,,,,,20010470,,, +650,USA,en,WPCV564,,Fairfax (VA),38.85,-77.3,,0.01,,6317,292,140,,,,,,20010471,,, +650,USA,en,WPCV564,,Fairfax (VA),38.860983,-77.380556,,0.01,,6321,292,140,,,,,,20010475,,, +650,USA,en,WPCV564,,Lorton (VA),38.710986,-77.225806,,0.01,,6323,292,140,,,,,,20010472,,, +650,USA,en,WPCV564,,McLean/977 Balls Hill Road (VA),38.960986,-77.192472,,0.01,,6302,292,140,,,,,,20010473,,, +650,USA,en,WPCV564,,Springfield/6800a Industrial Drive (VA),38.799278,-77.179417,,0.01,,6313,292,140,,,,,,20010469,,, +650,USA,en,WPFG387,,Fairfax City/3613 Jermantown Road (VA),38.863444,-77.3277,,0.01,,6317,292,140,,,,,,20010474,,, +650,USA,en,WPFG387,,Manassas (VA),38.960986,-77.493889,,0.01,,6321,293,140,,,,,,20010468,,, +650,B,pt,ZYI920 Rdio Tapuio,,Miguel Alves (PI),-4.170833,-42.888889,,0.25,,7784,234,141,,,,,,36901156,,, +650,B,pt,ZYJ250 Rdio Colmia,,Cascavel (PR),-24.923056,-53.411667,,5,,10343,232,141,,,,,,36901168,,, +650,MEX,es,XERCG-AM Vida 650,,Ciudad Acua (coa),29.305556,-100.927778,,1,,8551,301,142,,,,,,43700,,, +650,HWA,,KPRP,,Honolulu (HI),21.445278,-158.063611,,10,,11698,345,143,,0000-2400,1234567,1,,38550,,, +650,USA,,KSTE,,Rancho Cordova (CA),38.479722,-121.277222,,0.92,,8743,321,143,,,,99945,,39421,,, +650,USA,en,WPIZ762,,Durham (NC),36.016806,-78.908611,,0.01,,6638,291,143,,,,,,20010466,,, +650,HND,,HRLK,,Comayagua (cmy),14.316667,-87.5,,1,,9019,282,144,,,,,,37777,,, +650,NCG,,YNRD R Diriangn La Super D,,Granada (gnd),11.933333,-85.95,,1,,9123,279,144,,0950-2300,1234567,,,52189,,, +650,NCG,es,R Muzun,,Somotillo (cnd),13.041111,-86.953611,,1,,9094,281,144,,,,,,33700005,,, +650,B,pt,ZYH462 Rdio Clube de Valena,,Valena (BA),-13.324889,-39.023689,,0.5,,8480,226,145,,,,,,36901161,,, +650,B,pt,ZYL372 Rdio Itatiaia,,Timteo (MG),-19.528267,-42.662761,,1,,9271,226,145,,,,,,36901166,,, +650,MEX,es,XETNT-AM,,Los Mochis (sin),25.815556,-109.063056,,1,,9332,305,145,,,,,,44842,,, +650,MEX,es,XEVG-AM R Frmula 1,,Mrida (yuc),21.048667,-89.635019,,0.5,,8574,288,145,,,,,,44962,,, +650,MEX,es,XEZM-AM La Zamorana,,Zamora/Av. 5 de Mayo 501 (mic),19.98,-102.283333,,1,,9467,297,145,,,,,,45146,,, +650,USA,,KIKK,,Pasadena (TX),29.688333,-95.174722,,0.25,,8175,297,145,,1300-0100,1234567,,,38602,,, +650,USA,en,WPIQ674,,Indianapolis (IN),39.766667,-86.15,,0.01,,6791,299,145,,,,,,20010467,,, +650,ARG,es,R Belgrano,,Florida (ba),-34.516667,-58.5,,3,,11503,230,147,,,,,,51793,,, +650,B,pt,ZYL309 Rdio Veredas,,Una (MG),-16.338764,-46.901,,0.5,,9176,231,147,,,,,,36901162,,, +650,MEX,es,XEVILL-AM 650 Noticias,,Villahermosa (tab),17.936028,-92.916931,,0.5,,9059,288,147,,,,,,44968,,, +650,PRU,,OAX2N R Regional del Norte,,Trujillo (lal),-8.116667,-79.5,,1,,10441,262,148,,1100-0500,1234567,,,40284,,, +650,B,pt,ZYJ202 Rdio Banda B Norte Pioneiro,,Cambar (PR),-23.044444,-50.068611,,0.5,,9987,230,150,,,,,,36901157,,, +650,B,pt,ZYH790 Rdio Cultural do Araguaia,,Jussara/Alto da Boa Vista (GO),-15.877117,-50.854019,,0.25,,9347,234,151,,,,,,36901158,,, +650,MEX,es,XECHH-AM Capital Mxima,,Zumpango del Ro (gue),17.638111,-99.527142,,0.25,,9507,293,151,,,,,,43840,,, +650,B,pt,ZYK238 Rdio Difuso AM,,Erechim (RS),-27.625,-52.247222,,0.5,,10536,229,152,,,,,,36901155,,, +650,B,pt,ZYK524 Rdio Difusora de Piracicaba,,Piracicaba (SP),-22.722267,-47.673828,,0.25,,9833,228,152,,,,,,36901165,,, +650,MEX,es,XEPX-AM La Voz de ngel,,Puerto Angel (oax),15.658611,-96.500833,,0.2,,9492,290,152,,,,,,44588,,, +650,B,pt,ZYK508 Rdio Andradina,,Andradina (SP),-20.8825,-51.365556,,0.25,,9850,232,153,,,,,,36901159,,, +650,MEX,es,XEIY-AM Espectacular,,Ro Verde (slp),21.931336,-100.0115,,0.1,,9153,296,154,,,,,,44191,,, +650,MEX,es,XEVSS-AM R Trece,,Villa de Seris (son),29.049283,-111.007133,,0.1,,9139,308,154,,,,,,44991,,, +652,RUS,,ON,b,Peski / Peschanka,48.1875,28.875,,0.025,,1652,96,89,,,,,,85602,,, +657,I,it,RAI R1,,Pisa/Coltano (pi),43.637653,10.421389,,100,,988,161,47,,0000-2400,1234567,0,,4000003,,, +657,I,it,RAI Toscana,,Pisa/Coltano (pi),43.637653,10.421389,,100,,988,161,47,,0620-0630,123456,0,,4000003,,, +657,I,it,RAI Toscana,,Pisa/Coltano (pi),43.637653,10.421389,,100,,988,161,47,,1110-1130,123456,0,,4000003,,, +657,I,it,RAI Toscana,,Pisa/Coltano (pi),43.637653,10.421389,,100,,988,161,47,,1140-1200,......7,0,,4000003,,, +657,E,es,RNE R 5,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,100,,1512,215,52,,0000-2400,1234567,47,,242,,, +657,RUS,ru,GTRK Murman,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0310-0400,12345..,0,,251,,, +657,RUS,ru,GTRK Murman,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0610-0700,123456,0,,251,,, +657,RUS,ru,GTRK Murman,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0810-0900,12345..,0,,251,,, +657,RUS,ru,GTRK Murman,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,1410-1500,123456,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0100-0310,12345..,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0100-0610,.....6.,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0100-2100,......7,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0400-0610,12345..,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0700-0810,12345..,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0700-1410,.....6.,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0900-1410,12345..,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,1500-2100,123456,0,,251,,, +657,G,en,BBC R Wales,,Wrexham/Bryn Moel (WA-WRE),53.038889,-3.025972,,2,340,645,283,60,,0600-2400,1234567,0,,243,,, +657,G,en,BBC WS,,Wrexham/Bryn Moel (WA-WRE),53.038889,-3.025972,,2,340,645,283,60,,0000-0600,1234567,0,,243,,, +657,G,en,BBC R Cornwall,,Bodmin (EN-CNW),50.481361,-4.685806,,0.5,,792,261,68,,0000-2400,1234567,,,244,,, +657,ISR,he,IBA Reshet Bet (B),,Tel Aviv/Yavne (tav),31.905,34.7545,,100,,3207,123,69,,0000-2400,1234567,13,,250,,, +657,RUS,ce,Rkanal Kavkaz,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,0300-0600,1234567,,,252,,, +657,RUS,ce,Rkanal Kavkaz,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,1200-1600,1234567,,,252,,, +657,RUS,ru,Voice of Russia,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,0600-1200,1234567,,,252,,, +657,RUS,ru,Voice of Russia,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,1600-0300,1234567,,,252,,, +657,IRN,fa,IRIB R Gilan,,Kiashahr (gln),37.412644,49.998753,,100,,3738,98,74,,0000-2400,1234567,,,10800003,,, +657,ARS,ar,BSKSA Al-Quran al-Karim,,Rafha/Al-Jumaimah (hsh),29.587667,43.598444,,20,,3936,115,83,,0000-2400,1234567,28,,47067,,, +657,NIG,,FRCN Ibadan,,Ibadan/Moniya (oyo),7.523022,3.910294,,100,,4963,184,87,,0430-2305,1234567,,,2333,,, +657,IRN,,IRIB R Zahedan,,Zahedan (sib),29.478744,60.861106,,100,,5075,98,88,,0040-2030,1234567,9974,,1776,,, +657,UAE,ur,Asianet R,,Al-Dhabbaya (abd),24.23025,54.405306,,100,,5079,109,88,,0000-2400,1234567,,,9700001,,, +657,IRQ,,Republic of Iraq R,,Kirkuk (krk),35.466667,44.4,,1,,3509,107,92,,,,,,10500004,,, +657,IND,,AIR East,,Kolkata A (WB),22.361111,88.284167,,200,,7521,82,109,,0025-0430,1234567,,,47772,,, +657,IND,,AIR East,,Kolkata A (WB),22.361111,88.284167,,200,,7521,82,109,,0730-1000,1234567,,,47772,,, +657,IND,,AIR East,,Kolkata A (WB),22.361111,88.284167,,200,,7521,82,109,,1130-1830,1234567,,,47772,,, +657,KRE,,KCBS Pyongyang Pangsong,,Kangnam (pyo),38.866667,125.633333,,1500,,8320,45,109,,2100-2030,1234567,963,,47774,,, +657,TZA,sw,TBC Taifa,,Dar es Salaam/Kunduchi (des),-6.697272,39.194086,,50,,7241,144,112,,0200-2100,1234567,,,2335,,, +657,CHN,en,Henan RGD Xinwen Guangbo,,Zhengzhou/HETS104 (HE),34.743611,113.858056,,300,,8077,55,113,,2130-2200,1234567,0,,47771,,, +657,CHN,zh,Henan RGD Xinwen Guangbo,,Zhengzhou/HETS104 (HE),34.743611,113.858056,,300,,8077,55,113,,0000-1600,......7,0,,47771,,, +657,CHN,zh,Henan RGD Xinwen Guangbo,,Zhengzhou/HETS104 (HE),34.743611,113.858056,,300,,8077,55,113,,2125-1600,123456,0,,47771,,, +657,KOR,,HLKM KBS 1 R,,Chuncheon (gan),37.921333,127.725611,,50,,8508,44,125,,0000-2400,1234567,,,47775,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Sanmenxia (HE),34.795278,111.189444,,10,,7921,57,126,,,,,,36200894,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Yongcheng (HE),33.933333,116.366667,,25,,8288,54,126,,,,,,36200890,,, +657,VTN,vi,VOV1,,Hồ Ch Minh/Qun Tre (hcm),10.848333,106.629167,,100,,9743,75,126,,2145-1700,1234567,,,47789,,, +657,AFS,af,R Pulpit/Rkansel,,Meyerton (GT),-26.583986,28.170017,,50,,9004,160,127,,0000-2400,1234567,0,,2334,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Huangchuan (HE),32.133333,115.033333,,10,,8373,56,131,,,,,,36200897,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Xixia (HE),33.283333,111.466667,,3,,8068,58,133,,,,,,36200891,,, +657,MLA,,RTM Perak FM,,Gerik=Grik (prk),5.408056,101.124667,,20,,9854,83,134,,2200-1600,1234567,,,47776,,, +657,TWN,,Cheng Sheng BC 2,,Taichung (TCS),24.126722,120.700444,,10,,9420,57,135,,0000-2400,1234567,,,47787,,, +657,THA,th,Jor. Sor. 1,,Bangkok/Saphan Daeng (bmp),13.783333,100.516667,,5,,9078,78,137,,????-1700,1234567,,,47786,,, +657,CHN,,Baishan RGD,,Baishan (JL),41.95,126.433333,,1,,8073,42,138,,,,,,36200089,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Puyang (HE),35.7,115,,1,,8056,54,138,,,,,,36200895,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Nanyang (HE),32.975278,112.498333,,1,,8155,57,139,,,,,,36200896,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Shangqiu (HE),34.45,115.65,,1,,8202,54,139,,,,,,36200893,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Xinyang (HE),32.099722,114.070833,,1,,8322,57,140,,,,,,36200892,,, +657,PHL,,DWRN-AM,,Naga City/Queborac (cas),13.643056,123.180556,,5,,10535,61,142,,,,,,47780,,, +657,PHL,,DYVR-AM Radyo Agong,,Roxas City (cpz),11.583333,122.75,,5,,10700,62,142,,2100-1600,1234567,,,47782,,, +657,CHN,,Jiaxing RGD News,,Jiaxing (ZJ),30.770833,120.8125,,1,,8817,53,143,,,,,,47768,,, +657,PHL,,DXDD-AM R Veritas,,Ozamis City (moc),8.133333,123.816667,,5,,11084,63,144,,,,,,47781,,, +657,PHL,,DZLU-AM,,San Fernando (lun),16.616667,120.3,,1,,10088,61,147,,,,,,47783,,, +657,PHL,,DYES-AM Radyo ng Bayan,,Borongan (sam),11.6,125.416667,,1,,10858,60,150,,,,,,47779,,, +657,AUS,,8RN ABC National,,Darwin/Ludmilla (NT),-12.425117,130.850167,,2,,13410,69,155,,0000-2400,1234567,,,47766,,, +657,AUS,,2BY ABC Western Plains,,Byrock (NSW),-30.6535,146.423389,,10,,15992,69,157,,0000-2400,1234567,9998,,47765,,, +657,AUS,it,6?? Rete Italia,,Perth/Landsdale (WA),-31.797361,115.889333,,2,,14027,97,157,,0000-2400,1234567,,,47767,,, +657,NZL,en,2YC Southern Star/RNZ Parliament,,Wellington/Titahi Bay (WGN),-41.096111,174.842778,,50,,18509,40,158,,0000-2400,1234567,0,,47777,,, +657,NZL,en,Southern Star/RNZ Parliament,,Tauranga/Paengaroa (BOP),-37.810833,176.412778,,0.4,,18245,30,178,,,,,,32500014,,, +659,ROU,,S,b,Timisoara / Giarmata (TM),45.8125,21.375,,0.025,,1294,117,86,,,,,,85606,,, +659,ROU,,LL,b,Bucuresti / Otopeni (BU),44.5625,26.041667,,0.025,,1669,112,90,,,,,U1239 ,85604,,, +659,RUS,,DO,b,Moskva/Domodedovo (MV),55.354167,37.958333,,0.025,,2088,68,94,,,,0,,IDx2,85603,, +659,RUS,,N,b,Rostov-na-donu / Rostov East (RO),47.229167,39.791667,,0.025,,2440,89,97,,,,,,85605,,, +660,RUS,,J,b,Voronezh / Baltimore (VN),51.604167,39.125,,0.025,,2228,78,95,,,,,U1029 14.4s,IDx2,85608,, +660,USA,,WFAN,,New York/High Island (NY),40.859722,-73.785833,,50,,5944,292,100,,,,0,,41355,,, +660,USA,,WLFJ,,Greenville (SC),34.886111,-82.4675,,50,,6953,292,110,,1200-2400,1234567,,,42160,,, +660,CAN,en,CFFR,,Calgary (AB),50.7575,-114.062778,,50,,7287,323,113,,,,1,,35953,,, +660,ALS,,KFAR,,Fairbanks (AK),64.808056,-147.492778,,10,,6822,348,115,,0000-2400,1234567,996,,38374,,, +660,USA,en,WAMO,,Wilkinsburg (PA),40.413056,-79.853889,,1.4,,6357,295,119,,1200-2400,1234567,,,42758,,, +660,USA,,KEYZ,,Williston (ND),48.238889,-103.650278,,5,,7045,316,120,,,,1,,38363,,, +660,USA,,WMIC,,Sandusky (MI),43.392778,-82.8325,,1,,6312,300,120,,,,,,42325,,, +660,VEN,es,YVNA Ondas de los Medanos,,Coro (flc),11.416667,-70.05,,50,,8085,266,121,,0900-0400,1234567,997,,45390,,, +660,USA,,KTNN,,Window Rock (AZ),35.895,-109.141389,,50,,8410,311,124,,,,10,,39517,,, +660,USA,,WXIC,,Waverly (OH),39.130556,-83.012778,,1,,6651,296,124,,,,,,43468,,, +660,CUB,es,R Progreso,,Jovellanos (ma),22.802833,-81.169097,,12,,7866,283,125,,,,13,,31600009,,, +660,HTI,,4VI,,Mnlas (oue),18.602778,-72.336111,,4.9,,7625,273,126,,,,,,35642,,, +660,HTI,,R Lumire,,Port-au-Prince (oue),18.516667,-72.316667,,5,,7631,273,126,,1000-0200,1234567,,,52098,,, +660,VEN,,YVQZ R Anaco,,Anaco (azg),9.5,-64.466667,,10,,7874,261,126,,0900-0400,1234567,2,,51653,,, +660,USA,en,WLOY,,Rural Retreat (VA),36.921389,-81.242778,,0.55,,6714,293,127,,,,,,41078,,, +660,CLM,es,HJQS,,Ccuta (nsa),7.883333,-72.5,,25,,8560,266,128,,,,,,35901375,,, +660,DOM,,HIAM R Vision Cristiana,,Santiago de los Caballeros (sto),19.416667,-70.7,,2,,7444,272,128,,,,,,37205,,, +660,USA,,WBHR,,Sauk Rapids (MN),45.605,-94.139167,,0.5,,6780,308,128,,,,9985,,40854,,, +660,USA,en,WORL,,Altamonte Springs (FL),28.693056,-81.349167,,1,,7386,287,131,,,,,,42621,,, +660,B,pt,ZYK777 Rdio Mundial,,So Paulo/Avenida River (SP),-23.442833,-46.390694,,20,,9837,227,133,,,,,,36901178,,, +660,CLM,es,HJJM R Autntica,,Cali (val),3.466667,-76.616667,,10,,9227,267,134,,,,,,37510,,, +660,SLV,es,YSSS R.Nacional de El Salvador,,San Salvador (ssl),13.666667,-89.216667,,10,,9190,283,134,,,,,,45316,,, +660,USA,en,WXQW,,Fairhope (AL),30.5975,-87.8825,,0.85,,7647,293,134,,,,,,41177,,, +660,B,pt,ZYI787 Rdio Jornal,,Limoeiro (PE),-7.85,-35.333333,,1,,7756,225,135,,,,,,36901173,,, +660,MEX,es,XEEY-AM La Consentida,,Aguascalientes (agu),21.920122,-102.266594,,10,,9291,298,135,,,,,,44884,,, +660,USA,en,KAPS,,Mount Vernon (WA),48.438611,-122.344167,,1,,7828,327,135,,,,,,37961,,, +660,USA,en,KWVE r:KWVE-FM 107.9,,Oildale (CA),35.452778,-118.944444,,6,,8930,318,136,,,,99925,,38463,,, +660,VEN,,RNV Canal Informativo,,El Callao (blv),7.35,-61.816667,,1,,7886,257,136,,,,,,51654,,, +660,CHL,,CB66 R Chilena Solonoticias,,Santiago/Lampa (RM),-33.276972,-70.760917,,50,,12076,239,137,,0000-2400,1234567,,,35756,,, +660,EQA,,HCLG2,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,37009,,, +660,PNR,es,La Nueva Exitosa,,Sabana Grande (ccl),7.8525,-80.3175,,5,,9096,272,137,,,,,,35100001,,, +660,B,pt,ZYH619 Rdio Rio das Garas,,Itarema/Sitio Betsaida (CE),-2.918889,-39.928611,,0.25,,7502,231,138,,,,,,36901176,,, +660,B,pt,ZYJ673 Rdio Boas Novas,,Porto Velho (RO),-8.776644,-63.882433,,5,,9470,249,138,,,,,,36901186,,, +660,USA,,KSKY,,Balch Springs (TX),33.040833,-96.9475,,0.7,,7990,301,138,,,,,,39374,,, +660,PRU,es,OCX4R La Inolvidable,,Lima (lim),-12,-77,,10,,10615,257,139,,,,,,37000005,,, +660,B,pt,ZYI925 Rdio Tacarijus,,So Miguel do Tapuio (PI),-5.516728,-41.311494,,0.25,,7829,231,141,,,,,,36901179,,, +660,PRG,,ZP26 R Itapiru,,Ciudad del Este (apa),-25.466667,-54.716667,,5,,10464,232,142,,0800-0100,1234567,,,45521,,, +660,USA,,KCRO,,Omaha (NE),41.313056,-96.01,,0.054,,7233,306,142,,,,,,38204,,, +660,B,pt,ZYI795 Rdio da Grande Serra,,Araripina (PE),-7.570772,-40.526128,,0.25,,7988,230,143,,,,,,36901174,,, +660,HND,,HRNN18,,La Ceiba (atl),15.816667,-86.716667,,1,,8836,282,143,,,,,,37808,,, +660,MEX,es,XEACB-AM R 660,,Ciudad Delicias (chi),28.176397,-105.521228,,1,,8916,304,143,,,,,,43686,,, +660,MEX,es,XEFZ-AM ABC R 660,,San Nicols de los Garza (nvl),25.763833,-100.252883,,1,,8826,299,143,,,,,,44039,,, +660,MEX,es,XEAR-AM La Mexicana,,Pueblo Viejo (vcz),22.196061,-97.835578,,1,,8995,295,144,,,,,,43728,,, +660,NCG,,R Mxima,,Masaya (msy),11.966667,-86.1,,1,,9130,279,144,,,,,,33700013,,, +660,PNR,es,HOF33 RPC R,,Bocas del Toro (bct),9.344039,-82.251267,,1,,9098,275,144,,0000-2400,1234567,,,37682,,, +660,B,pt,Rdio Planalto,,Euclides da Cunha (BA),-10.516956,-38.990839,,0.25,,8200,227,145,,,,,,36901171,,, +660,B,pt,ZYJ472 Rdio Nova Friburgo,,Nova Friburgo/Rua Eugenio Gritt 2 (RJ),-22.289117,-42.526275,,1,,9536,224,145,,,,88,,36901187,,, +660,GTM,,TGQ R Nacional LV de Quetzaltenango,,Quetzaltenango (qzt),14.516667,-91.516667,,1,,9268,285,145,,1100-0400,1234567,,,40524,,, +660,MEX,es,XEDTL-AM R Ciudadana,,Mxico D.F/San Lorenzo Tezonco (dif),19.309406,-99.059247,,1,,9329,294,145,,,,,,43941,,, +660,MEX,es,XEWX-AM La Mexicana,,Durango (dur),24.051706,-104.627767,,0.5,,9239,301,147,,,,,,45040,,, +660,B,pt,ZYI552 Rdio Xinguara,,Xinguara (PA),-7.110025,-49.930406,,0.25,,8463,238,148,,,,,,36901177,,, +660,BOL,,R ABC,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,0915-0500,1234567,,,51965,,, +660,MEX,es,XEYG-AM R 660,,Matas Romero (oax),16.880719,-95.031439,,0.5,,9289,289,148,,,,,,45088,,, +660,B,pt,ZYH465 Rdio Jornal de Itapetinga,,Itapetinga (BA),-15.256611,-40.264861,,0.25,,8732,226,149,,,,,,36901172,,, +660,B,pt,ZYH480 Bom Jesus AM,,Bom Jesus da Lapa (BA),-13.262572,-43.472078,,0.25,,8698,229,149,,,,,,36901181,,, +660,B,pt,ZYH794 Rdio Alvorada,,Quirinpolis (GO),-18.461667,-50.453428,,0.5,,9571,233,149,,,,,,36901175,,, +660,B,pt,ZYI401 Juventude AM,,Rondonpolis (MT),-16.466667,-54.633333,,0.5,,9616,237,149,,,,,,36901184,,, +660,B,pt,ZYK639 Rdio Clube Ribeiro Preto,,Ribeiro Preto (SP),-21.140278,-47.754722,,0.5,,9684,229,149,,,,,,36901185,,, +660,PRU,,OCX4L R Chinchaycocha,,Junn (jun),-12.166667,-75.216667,,1,,10511,256,149,,,,,,40431,,, +660,B,pt,ZYH778 Rdio Primavera,,Itapuranga (GO),-15.571533,-49.951103,,0.25,,9268,234,151,,,,,,36901180,,, +660,B,pt,ZYL206 Rdio Clube de Curvelo,,Curvelo (MG),-18.740994,-44.4135,,0.25,,9281,228,151,,,,,,36901182,,, +660,MEX,es,XECPR-AM R.Chan Santa Cruz,,Felipe Carrillo Puerto (qui),19.589972,-88.036536,,0.15,,8596,286,151,,,,,,43868,,, +660,USA,,KXOR,,Junction City (OR),44.21,-123.182222,,0.075,,8267,325,151,,,,22,,39912,,, +660,USA,en,WPQD502,,Ocala (FL),29.19525,-82.179806,,0.01,,7399,288,151,,,,,,20010476,,, +660,ARG,,LT41 R LV del Sur Entrerriano,,Gualeguaychu (er),-33.016667,-58.516667,,1,,11367,231,152,,0900-0300,1234567,,,40193,,, +660,ARG,,R Popular,,Claypole (ba),-34.8,-58.333333,,1,,11520,230,152,,,,,,51794,,, +660,ARG,xx,R Amplitud,,Lomas del Mirador (ba),-34.65,-58.533333,,1,,11517,230,152,,,,,,51803,,, +660,MEX,es,XESJC-AM Cabo 660,,San Jos del Cabo (bcs),23.070567,-109.664928,,0.25,,9619,304,152,,,,,,44750,,, +660,B,pt,ZYK319 Rdio Cano Nova,,Vacaria (RS),-28.4725,-50.926944,,0.25,,10549,228,155,,,,,,36901183,,, +660,B,pt,ZYK286 Rdio Maraj AM,,Rosrio do Sul (RS),-30.2375,-54.922778,,0.25,,10921,230,156,,,,,,36901170,,, +662,RUS,,SM,b,Smolenskaya,44.770833,38.791667,,0.025,,2500,96,98,,,,998,L393 U389 15.0s,IDx2,85609,, +666,E,es,SER,,Barcelona/Sant Boi (EAJ1) (CAT-B),41.349967,2.002328,,50,,1242,197,52,,0000-2400,1234567,40,,257,,, +666,POR,pt,Antena 1,,Vila Real/Vila Nova de Baixo (vrl),41.276278,-7.728139,,10,,1611,227,63,,0000-2400,1234567,,,266,,, +666,POR,pt,Antena 1,,Covilh/Mata Mouros (cab),40.245889,-7.498667,,10,,1693,224,64,,0000-2400,1234567,,,264,,, +666,POR,pt,Antena 1,,Viseu (vis),40.646133,-7.921278,,10,,1677,226,64,,0000-2400,1234567,,,267,,, +666,G,en,BBC R York,,Fulford (EN-NYK),53.940028,-1.079944,,0.5,,540,295,65,,0000-2400,1234567,0,,258,,, +666,POR,pt,Antena 1,,Castanheira do Ribatejo/CEN (lis),38.980556,-8.957333,,10,,1880,225,66,,0000-2400,1234567,,,268,,, +666,POR,pt,Antena 1,,Bragana (bgc),41.808261,-6.779872,,2,,1517,226,69,,0000-2400,1234567,,,263,,, +666,SYR,ar,SRTV 2 Sawt al-Sha'ab,,Damascus/'Adrā (dim),33.612428,36.591683,,50,,3167,119,72,,0400-2000,1234567,999,,570,,, +666,ALG,ar,R Tindouf,,Tindouf (37),27.6625,-8.146111,,10,,2976,210,77,,0800-1600,1234567,5,,255,,, +666,IRN,fa,IRIB R Iran,,Shushtar (kuz),32.071928,48.846553,,50,,4066,106,81,,0000-2400,1234567,761,,261,,, +666,SDN,,SRTC Sudan Nat. R,,Kassala (kas),15.425356,36.366239,,10,,4860,136,96,,,,,,2339,,, +666,IND,,AIR Rajdhani Channel,,Delhi B (DL),28.768889,77.137222,,100,,6240,85,99,,0025-0440,1234567,,,47808,,, +666,IND,,AIR Rajdhani Channel,,Delhi B (DL),28.768889,77.137222,,100,,6240,85,99,,0630-0930,1234567,,,47808,,, +666,IND,,AIR Rajdhani Channel,,Delhi B (DL),28.768889,77.137222,,100,,6240,85,99,,1130-1835,1234567,,,47808,,, +666,CHN,,Qinghai RGD,,Xining/QHTS566 (QH),36.656528,101.572722,,200,260,7198,62,106,,0925-1505,1234567,998,,47806,,, +666,CHN,,Qinghai RGD,,Xining/QHTS566 (QH),36.656528,101.572722,,200,260,7198,62,106,,2220-0600,1234567,998,,47806,,, +666,CHN,,Haixia zhi Sheng Xinwen Shizheng Pindao,,Fuzhou/Songnancun (FJ),25.545833,119.8075,,600,130,9239,57,117,,2225-1700,1234567,,,47798,,, +666,CHN,zh,Tianjin RGD Xiaoshuo Pindao,,Yangliuqing (TJ),39.136539,117.025064,,50,,7862,50,119,,2155-1600,1234567,,,36200210,,, +666,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,unknown (NM),34.95,104.5,,10,,7515,61,122,,,,,,36201304,,, +666,J,ja,JOBK NHK1,,Osaka/Sakai-Shi (kns-osk),34.550556,135.566944,,100,,9189,40,124,,0000-2400,1234567,0,,47818,,, +666,CHN,,Jiamusi RGD,,Jiamusi (HL),46.755556,130.265,,10,,7794,37,125,,0855-1400,1234567,,,47802,,, +666,CHN,,Jiamusi RGD,,Jiamusi (HL),46.755556,130.265,,10,,7794,37,125,,2055-0530,1234567,,,47802,,, +666,CHN,,Siping RGD,,Siping/Shanmen Zhen (JL),43.101389,124.423333,,10,,7874,43,126,,0300-0600,1234567,,,47804,,, +666,CHN,,Siping RGD,,Siping/Shanmen Zhen (JL),43.101389,124.423333,,10,,7874,43,126,,0855-1300,1234567,,,47804,,, +666,CHN,,Siping RGD,,Siping/Shanmen Zhen (JL),43.101389,124.423333,,10,,7874,43,126,,2130-0030,1234567,,,47804,,, +666,CHN,,Qinghai RGD,,Madoi (QH),35.033333,96.383333,,1,,7010,67,127,,0925-1505,1234567,,,47795,,, +666,CHN,,Qinghai RGD,,Madoi (QH),35.033333,96.383333,,1,,7010,67,127,,2220-0600,1234567,,,47795,,, +666,CHN,,Qinghai RGD,,Yushu/QHTS920 (QH),33.001667,97.001944,,1,,7214,68,129,,0925-1505,1234567,,,47807,,, +666,CHN,,Qinghai RGD,,Yushu/QHTS920 (QH),33.001667,97.001944,,1,,7214,68,129,,2220-0600,1234567,,,47807,,, +666,VTN,vi,VOV1,,Nha Trang/Đồng Đế (kho),12.284539,109.186839,,50,,9783,72,129,,2145-1700,1234567,,,47829,,, +666,CHN,,Hefei RGD,,Hefei/Sanshitou (AH),31.987667,117.329028,,10,,8515,55,132,,2120-1600,1234567,,,47799,,, +666,REU,fr,Runion 1re,,Saint-Pierre (974),-21.326958,55.485789,,20,,9448,135,132,,0000-2400,1234567,0,,2338,,, +666,CHN,,Jingzhou RGD News,,Jinzhou (LN),41.116667,121.116667,,2,,7895,46,133,,2125-1500,1234567,,,47801,,, +666,CHN,,Wenzhou RGD,,Wenzhou (ZJ),28.1,120.6,,10,,9050,54,134,,2150-1600,1234567,,,47805,,, +666,PHL,tl,DZRH-AM,,Valenzuela/Malanday (ncr),14.725278,120.953611,,25,,10302,62,134,,0000-2400,1234567,9186,,47821,,, +666,THA,th,Thor. Phor. Saam,,Tak/Charot Withithong Rd (tak),16.883333,99.133333,,5,,8716,77,136,,,,,,47827,,, +666,THA,th,Thor. Phor. Song,,Surin/Fort Wirawatyothin (sur),14.868333,103.481944,,5,,9181,75,137,,????-1600,1234567,,,47826,,, +666,CHN,,Dongchuan RGD,,Dongchuan (YN),26.133333,103.3,,1,,8190,68,139,,,,,,47797,,, +666,CHN,,Anshun RGD,,Anshun/GZTS859 (GZ),26.25,105.916667,,1,,8345,66,140,,,,,,47796,,, +666,INS,id,R AM Stereo 666,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400124,,, +666,PHL,tl,DXRP-AM Radyo ng Bayan,,Davao City/Matina (dvs),7.066667,125.566667,,1,,11289,62,151,,2000-1105,1234567,,,47820,,, +666,INS,id,R Tunggul Suara Dirgantara,,Purbalingga (JT-pbl),-7.4,109.366667,,1,,11540,84,152,,,,,,47815,,, +666,NCL,fr,Nouvelle-Caldonie 1re,,Nouma/le N'Ga (sud),-22.298617,166.487106,,20,,16287,35,155,,0000-2400,1234567,,,47819,,, +666,AUS,,6LN,,Carnarvon (WA),-24.911328,113.720733,,1,,13330,93,158,,,,,,47793,,, +666,INS,id,PM4BJT R Ramakusala,,Surakarta (JT-ksu),-7.533333,110.833333,,0.25,,11651,83,158,,,,,,47817,,, +666,AUS,,4LM Zinc 666,,Mount Isa (QLD),-20.716161,139.510903,,2,,14700,67,160,,0000-2400,1234567,,,47794,,, +666,AUS,,2CN ABC Canberra,,Canberra/Gungahlin (ACT),-35.216958,149.120625,,5,,16533,72,162,,0000-2400,1234567,4,,47792,,, +666,AUS,,4CC/t,,Biloela (QLD),-24.392333,150.490139,,2,,15696,58,163,,0000-2400,1234567,9990,,47791,,, +668,RUS,,N,b,Bryansk (BR),53.1875,34.208333,,0.025,,1867,75,92,,,,,,85610,,, +670,UKR,,RS,b,Rashivka,50.229167,33.875,,0.025,,1915,85,92,,,,,,85616,,, +670,RUS,,ND,b,Kubinka,56.604167,36.625,,0.025,,2003,64,93,,,,,15.0s,IDx2,85614,, +670,RUS,,UA,b,Kubinka,56.604167,36.625,,0.025,,2003,64,93,,,,,,85618,,, +670,RUS,,GC,b,Vologda-Kipelovo (VO),59.1875,39.125,,0.025,,2171,56,95,,,,,,85612,,, +670,RUS,,PB,b,Vologda-Kipelovo (VO),59.1875,39.125,,0.025,,2171,56,95,,,,,,85615,,, +670,UKR,,LB,b,Lubimovka,45.645833,34.875,,0.025,,2185,98,95,,,,,30.0s,ID+25 gap,85613,, +670,RUS,,A,b,Ivanovo South / Yuzhny (IV),56.979167,40.875,,0.025,,2262,63,96,,,,,,85611,,, +670,RUS,,D,b,Ivanovo / Yuzhny,56.9375,40.958333,,0.025,,2267,63,96,,,,,,86768,,, +670,RUS,,UD,b,Bagaj / Baranovka,52.145833,46.958333,,0.025,,2731,74,100,,,,,,85619,,, +670,KAZ,,AU,b,Aktau (mgg),43.895833,51.041667,,0.025,,3385,88,107,,,,,L1018 10.0s,86767,,, +670,KAZ,,TA,b,Aktau (mgg),43.854167,51.125,,0.025,,3393,88,107,,,,,5.0s,ID,85617,, +670,USA,,WSCR,,Chicago (IL),41.933611,-88.073056,,50,,6733,302,107,,,,0,,42969,,, +670,USA,en,WIEZ,,Lewistown (PA),40.608333,-77.579167,,5.4,,6201,294,112,,,,9863,,41735,,, +670,CUB,es,R Rebelde,,Santa Clara/CTOM4 (vc),22.404711,-79.893633,,50,,7815,281,118,,,,,,31600123,,, +670,CUB,es,R Rebelde,,Arroyo Arenas/CTOM1 (ch),23.051889,-82.475583,,50,,7932,284,119,,,,0,,36455,,, +670,VEN,es,YVLL R Rumbos,,Caracas (dcf),10.48395,-66.997072,,50,,7959,263,120,,0000-2400,......7,1,,45367,,, +670,VEN,es,YVLL R Rumbos,,Caracas (dcf),10.48395,-66.997072,,50,,7959,263,120,,1000-0500,123456,1,,45367,,, +670,USA,,KBOI,i,Boise (ID),43.428889,-116.328611,,50,,8057,320,121,,,,0,,38074,,, +670,ALS,en,KDLG,,Dillingham (AK),59.045278,-158.451944,,10,,7580,352,123,,,,0,,38277,,, +670,USA,,WMTY,,Farragut (TN),35.886667,-84.246667,,2.5,,6984,294,123,,,,,,42407,,, +670,USA,en,....,,Portsmouth (VA),36.822222,-76.443889,,0.7,,6417,290,123,,0000-1200,1234567,,,20016089,,, +670,CUB,es,R Rebelde,,Cent Brasil (cm),21.833183,-77.963928,,10,,7734,280,124,,,,,,31600050,,, +670,CUB,es,R Rebelde,,El Coco (ho),20.541667,-75.222222,,10,,7657,277,124,,,,,,31600084,,, +670,CUB,es,R Rebelde,,Victoria de las Tunas/CTOM3 (lt),20.937361,-76.995933,,10,,7744,278,124,,,,,,31600088,,, +670,CUB,es,R Rebelde,,Camagey/CTOM3 (cm),21.333333,-77.866667,,10,,7769,279,125,,,,,,31600053,,, +670,USA,,WYLS,,York (AL),32.523333,-88.257778,,4.8,,7509,295,125,,,,,,43527,,, +670,B,pt,ZYH420 Rdio Globo,,Macap (AP),0.020225,-51.077,,10,,7862,243,126,,,,,,36901215,,, +670,USA,en,KHGZ,,Glenwood (AR),34.325556,-93.5575,,5,,7680,299,127,,1300-0100,1234567,,,39768,,, +670,CUB,es,R Rebelde,,Morn (ca),22.094497,-78.612742,,5,,7755,280,128,,,,,,31600059,,, +670,USA,en,KMZQ,,Las Vegas (D) (NV),36.384722,-115.351667,,30,,8673,316,128,,,,33,,38102,,, +670,CUB,es,R Rebelde,,Circunvalacin (ma),23.016667,-81.616667,,5,,7878,283,129,,,,,,31600089,,, +670,CUB,es,R Rebelde,,Baha Honda (pr),22.923986,-83.172664,,5,,7989,284,130,,,,,,31600111,,, +670,B,pt,ZYJ921 Rdio Cultura,,Aracaj (SE),-10.890967,-37.064178,,5,,8143,225,131,,,,,,36901207,,, +670,CLM,es,HJPL,,Medelln (ant),6.266667,-75.566667,,10,,8910,268,133,,,,,,37625,,, +670,CLM,es,HJR33,,Bucaramanga (sat),7.133333,-73.133333,,10,,8669,266,133,,,,,,35901377,,, +670,USA,es,WWFE,,Miami (FL),25.8575,-80.481111,,1,,7564,284,133,,,,1,,43369,,, +670,GTM,,TGRT Emisoras Unidas Central,,Ciudad de Guatemala (gut),14.716667,-90.616667,,10,,9191,285,134,,,,,,40538,,, +670,HND,,HRNN,,Tegucigalpa (fmz),14.066667,-87.083333,,10,,9013,281,134,,,,,,37805,,, +670,USA,,KLTT,,Commerce City (CO),39.955556,-104.730556,,1.4,,7817,311,134,,,,0,,38850,,, +670,B,pt,ZYH288 Rdio Mesoregional,,Tabatinga (AM),-4.249281,-69.936189,,10,,9458,257,135,,,,,,36901206,,, +670,CUB,es,R Enciclopedia,,Crdenas/CTOM1 (ma),23.045514,-81.204964,,1,,7848,283,135,,,,,,31600093,,, +670,MEX,es,XEQG-AM ABC R,,Quertaro (que),20.45,-100.4,,10,,9310,296,135,,,,,,44609,,, +670,CTR,,TIRM R Monumental,,San Jos (sjs),9.933333,-84.016667,,5,,9166,276,137,,0000-2400,1234567,,,52145,,, +670,CUB,es,R Rebelde,,Los Palacios (pr),22.653397,-83.224986,,1,,8016,284,137,,,,,,31600106,,, +670,DOM,es,HIBS R Dial,,San Pedro de Macors (pms),18.47435,-69.279269,,0.25,,7427,271,137,,0000-2400,1234567,,,37267,,, +670,B,pt,ZYI422 Rdio Transpantaneira,,Pocon (MT),-16.240117,-56.626753,,6,,9710,239,138,,,,,,36901214,,, +670,B,pt,ZYN600 Super Rdio Fronteira,,Ponta Por/Fazenda Tres Coxilhas (MS),-22.596414,-55.650767,,10,,10247,235,138,,,,,,36901208,,, +670,CUB,,R Rebelde,,Pinar del Ro (pr),22.416667,-83.7,,1,,8067,284,138,,,,,,31600122,,, +670,CUB,es,R Rebelde,,Santa Luca (pr),22.67345,-83.943017,,1,,8062,285,138,,,,,,31600109,,, +670,USA,fa,KIRN,,Simi Valley (CA),34.319444,-118.715556,,3,,9028,317,139,,,,9991,,38634,,, +670,B,pt,ZYL310 Rdio Educadora de Montes Claros,,Montes Claros/Distrito Industrial (MG),-16.678403,-43.852461,,2.5,,9051,228,140,,,,,,36901202,,, +670,B,pt,ZYH606 Rdio Cultura,,Vrzea Alegre (CE),-6.800222,-39.307706,,0.25,,7849,229,141,,,,,,36901198,,, +670,B,pt,ZYI927 Rdio Livramento,,Jos de Freitas (PI),-4.768611,-42.449167,,0.25,,7817,233,141,,,,,,36901195,,, +670,ARG,es,LT4 R Dif. Misiones,,Posadas (mn),-27.477697,-55.861861,,5,,10714,232,142,,0800-0200,1234567,,,40191,,, +670,B,pt,ZYI546 Tropical AM,,Paragominas (PA),-2.990289,-47.342283,,0.25,,7922,238,142,,,,,,36901212,,, +670,NCG,,YNRC R Caribe,,Puerto Cabezas=Bilwi (atn),14.033333,-83.383333,,1,,8767,279,143,,,,,,52190,,, +670,PNR,es,HOLY R Hogar,,Ciudad Radial (pnm),9.028406,-79.432594,,1,,8933,272,143,,0955-0300,1234567,,,37692,,, +670,HND,,HRNN25,,Santa Barbara (bar),14.866667,-88.216667,,1,,9019,283,144,,,,,,37813,,, +670,B,pt,Atitude AM,,Lucas do Rio Verde (MT),-13.063056,-55.945294,,1,,9374,240,145,,,,,,36901191,,, +670,B,pt,ZYH747 Rdio So Francisco,,Anpolis (GO),-16.394528,-48.978031,,1,,9293,233,145,,,,,,36901209,,, +670,B,pt,ZYI537 Rdio Rural de Altamira,,Altamira (PA),-3.1725,-52.170833,,0.25,,8226,242,145,,,,,,36901194,,, +670,B,pt,ZYJ248 Rdio Globo,,Curitiba/So Jos dos Pinhais (PR),-25.4925,-49.153333,,2,,10174,228,145,,,,,,36901204,,, +670,EQA,es,HCFF1 R Jess del Gran Poder,,Quito (pic),-0.166667,-78.5,,1.2,,9675,266,145,,,,,,36936,,, +670,USA,en,KMZQ,,Las Vegas (N) (NV),36.384444,-115.351389,,0.6,,8673,316,145,,,,,,20016193,,, +670,ARG,es,LRI209 R Mar del Plata,,Mar del Plata (ba),-38.071153,-57.656792,,5,,11784,227,146,,0000-2400,1234567,,,40054,,, +670,B,pt,ZYI408 Rdio Patriarca de Cassilndia,,Cassilndia (MS),-19.1275,-51.731389,,1,,9704,233,146,,,,,,36901200,,, +670,B,pt,ZYI539 Rdio Atalaia,,bidos (PA),-1.899006,-55.519531,,0.25,,8314,246,146,,,,,,36901199,,, +670,HWA,en,KPUA,,Hilo (HI),19.783889,-155.090278,,5,,11822,342,146,,0000-2400,1234567,4,,39175,,, +670,MEX,es,XEIS-AM La Rancherita,,Ciudad Guzmn (jal),19.717644,-103.473872,,1,,9564,297,146,,,,,,44181,,, +670,USA,en,WRJR,,Claremont (VA),37.174722,-76.896944,,0.003,,6419,291,146,,,,,,42713,,, +670,B,pt,ZYK296 Rdio Cultura de Jaguaro,,Santa Vitria do Palmar (RS),-33.510278,-53.363889,,2.5,,11147,227,147,,,,,,36901203,,, +670,MEX,es,XEOB-AM,,Pichucalco (cps),17.517294,-93.106781,,0.5,,9108,288,147,,,,,,44475,,, +670,B,pt,ZYH774 Rdio Independncia do Tocantins,,Paraso do Tocantins (TO),-10.166667,-48.9,,0.25,,8694,236,149,,,,,,36901190,,, +670,B,pt,ZYK574 Rdio Ocenica,,Caraguatatuba (SP),-23.632389,-45.439806,,0.5,,9809,226,149,,,,96,,36901189,,, +670,ARG,,LRA52 R Nacional,,Chos Malal (nq),-37.386106,-70.259444,,3,,12399,236,150,,0900-0300,1234567,,,39955,,, +670,B,pt,ZYK598 Rdio Emissora Conveno de Itu,,Itu/Rua Henrique Moretto (SP),-23.276161,-47.273164,,0.5,,9866,228,150,,,,,,36901193,,, +670,MEX,es,XETOR-AM R Ranchito,,Matamoros (coa),25.534322,-103.296075,,0.25,,9027,301,150,,,,,,44847,,, +670,B,pt,ZYH297 Rdio Vale do Rio Madeira,,Humait (AM),-7.528042,-63.039267,,0.25,,9303,249,151,,,,,,36901196,,, +670,B,pt,ZYL347 Rdio Montanhesa AM,,Ponte Nova (MG),-20.417225,-42.878939,,0.25,,9369,226,151,,,,,,36901192,,, +670,B,pt,ZYN202 Rdio Cidade,,Bambu/Fazenda Quarteis (MG),-19.996206,-45.986408,,0.25,,9483,228,151,,,,,,36901201,,, +670,B,pt,Rdio Difusora Sena Madureira,,Sena Madureira (AC),-9.057917,-68.664606,,0.25,,9804,253,152,,,,,,36901188,,, +670,B,pt,ZYL361 Rdio Uberaba,,Uberaba (MG),-19.737294,-47.892894,,0.25,,9556,230,152,,,,,,36901211,,, +670,B,pt,ZYJ231 Rdio Cano Nova,,Nova Esperana (PR),-23.161667,-52.202778,,0.25,,10112,232,153,,,,,,36901213,,, +670,B,pt,ZYK585 RCO AM-R.Centro Oeste Paulista,,Gara/Estncia Radioviso (SP),-22.229194,-49.621375,,0.25,,9886,230,153,,,,,,36901197,,, +670,B,pt,ZYK370 Rdio Gazeta,,Carazinho (RS),-28.274444,-52.765278,,0.25,,10624,229,155,,,,,,36901205,,, +670,ARG,es,LRA11 R Nacional,,Comodoro Rivadavia (ch),-45.890031,-67.5356,,1,,12970,228,157,,0000-2400,1234567,,,39931,,, +670,USA,en,WQBV749,,Bay City (TX),28.980278,-95.999944,,0.01,,8286,298,160,,,,,,20010477,,, +672,UKR,,RS,b,Rashivka,50.229167,33.875,,0.025,,1915,85,92,,,,0,L1014 U1013 30.0s,IDx2 + 22 gap,85624,, +672,RUS,,D,b,Volgograd / Gumrak (VG),48.770833,44.375,,0.025,,2683,83,100,,,,,,85620,,, +672,RUS,,KT,b,Kukushtan,57.645833,56.541667,,0.025,,3189,59,105,,,,,,IDx2 + 12 gap,85623,, +672,RUS,,F,b,Amderma (NE),69.770833,61.541667,,0.025,,3388,34,107,,,,,,85622,,, +675,HOL,nl,R Maria,,Lopik (utr),52.000469,5.045133,,60,,94,263,20,,0000-2400,1234567,3,,271,,, +675,LBY,ar,Sawt ul Libya al-Hurra,,Benghazi (bga),32.06975,20.072917,,100,,2488,148,62,,0500-2350,1234567,0,,273,,, +675,SRB,sr,R Beograd 1,,Bosilegrad/Letava (Srb-pcn),42.5035,22.485556,,1,,1609,125,73,,0000-2400,1234567,,,277,,, +675,QAT,ar,QBS Arabic,,Al-Arish (msm),26.065433,51.086883,,600,,4709,110,76,,0245-2130,1234567,0,,276,,, +675,IRN,fa,IRIB R Hamadan,,Hamadan (hmd),34.966111,48.580833,,50,,3823,103,78,,0430-1230,1234567,,,272,,, +675,IRN,fa,IRIB R Hamadan,,Hamadan (hmd),34.966111,48.580833,,50,,3823,103,78,,1430-0230,1234567,,,272,,, +675,IRN,fa,IRIB R Nejat,,Hamadan (hmd),34.966111,48.580833,,50,,3823,103,78,,0230-0430,1234567,,,272,,, +675,IRN,fa,IRIB R Nejat,,Hamadan (hmd),34.966111,48.580833,,50,,3823,103,78,,1230-1430,1234567,,,272,,, +675,ARS,ar,BSKSA Idha'atu-i Riyadh,,Afif (riy),23.857239,42.899428,,20,,4401,121,88,,0300-2300,1234567,,,47069,,, +675,RUS,,DS,b,Dedovici (PS),57.520833,30.041667,,0.025,,1619,59,89,,,,,,85625,,, +675,RUS,,NK,b,Dedovici (PS),57.520833,30.041667,,0.025,,1619,59,89,,,,,,85626,,, +675,IRQ,,Republic of Iraq R,,Baghdad (bgh),33.35,44.383333,,1,,3674,110,94,,0500-1510,1234567,,,249,,, +675,ARS,ar,BSKSA Idha'atu-i Riyadh,,Abha (asr),18.289233,42.594922,,5,,4902,126,99,,0300-2200,1234567,,,47068,,, +675,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Marsabit (eas),2.389611,38.046972,,50,,6257,141,103,,0200-2110,1234567,,,2340,,, +675,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Hohhot/NMTS610 (NM),40.736944,111.475278,,200,,7427,53,108,,2150-1605,1234567,,,47836,,, +675,IND,,AIR West,,Chhatarpur (MP),24.865,79.544722,,20,,6719,87,111,,0025-0435,123456,,,47842,,, +675,IND,,AIR West,,Chhatarpur (MP),24.865,79.544722,,20,,6719,87,111,,0025-0600,......7,,,47842,,, +675,IND,,AIR West,,Chhatarpur (MP),24.865,79.544722,,20,,6719,87,111,,0700-0945,1234567,,,47842,,, +675,IND,,AIR West,,Chhatarpur (MP),24.865,79.544722,,20,,6719,87,111,,1130-1740,1234567,,,47842,,, +675,CHN,zh,Xinjiang RGD 738 Zonghe,,Altay=Aletai/XJTS633 (XJ),47.771867,88.149189,,1,,5552,60,113,,2300-1800,1234567,,,36200088,,, +675,IND,,AIR Northeast,,Itanagar (AR),27.0775,94.591389,,100,,7548,74,113,,0025-0400,1234567,,,47843,,, +675,IND,,AIR Northeast,,Itanagar (AR),27.0775,94.591389,,100,,7548,74,113,,0700-0900,1234567,,,47843,,, +675,IND,,AIR Northeast,,Itanagar (AR),27.0775,94.591389,,100,,7548,74,113,,1000-1630,1234567,,,47843,,, +675,MWI,en,MBC R 1,,Ekwendeni (mzb),-11.504783,33.937086,,50,,7550,151,116,,0253-2200,1234567,,,2341,,, +675,VTN,vi,VOV1,,My Van/Bần Yn Nhn-VN3 (hyn),20.913717,106.077211,,500,,8820,70,116,,2145-1700,1234567,,,47860,,, +675,IND,,AIR South,,Bhadravathi (KA),13.817222,75.720278,,20,,7391,98,118,,0025-0435,1234567,167,,50577,,, +675,IND,,AIR South,,Bhadravathi (KA),13.817222,75.720278,,20,,7391,98,118,,1200-1735,1234567,167,,50577,,, +675,CHN,,Diqing RGD,,Shangrila=Xianggelila (YN),27.82,99.686389,,10,,7816,70,125,,,,,,36200330,,, +675,RUS,ru,R Radonezh,,Razdolnoye (PM),43.539444,131.936111,,20,,8167,38,126,,1000-1300,1234567,,,47014,,, +675,CHN,,Xinyu RGD,,Xinyu/JXTS804 (JX),27.8,114.933333,,10,,8754,59,133,,,,,,36200967,,, +675,KOR,ko,HLAS KBS 3 R,,Jeonju/Gunsan (jeb),35.940806,126.840489,,10,,8651,46,133,,2000-1800,1234567,,,47847,,, +675,J,,JOVK NHK1,,Hakodate (hok),41.811906,140.754967,,5,,8684,33,136,,0000-2400,1234567,1,,47845,,, +675,J,,JOUG NHK1,,Yamaguchi/Hofu-Shi (chg-yam),34.030556,131.510556,,5,,9055,43,137,,0000-2400,1234567,,,47846,,, +675,THA,th,Sor. Thor. Ror. 2,,Bangkok/Bang Na (bmp),13.667056,100.611389,,5,,9095,78,137,,0000-2400,1234567,,,47857,,, +675,TWN,,Cheng Sheng BC,,Peikang (YL),23.574167,120.285833,,5,,9448,57,138,,0000-2400,1234567,,,47858,,, +675,PHL,,DWLW-AM IBC R,,Laoag City/Nalbo (iln),18.188611,120.578056,,5,,9960,60,140,,,,,,47851,,, +675,CHN,,Gejiu RGD,,Gejiu/YNTS654 (YN),23.398333,103.161389,,1,,8417,70,141,,,,,,47835,,, +675,KOR,,HLQX KBS 1 R,,Jinbu (gan),37.366667,128.4,,1,,8592,44,142,,0000-2400,1234567,,,47848,,, +675,CHN,,Jinhua RGD,,Jinhua (ZJ),29.108056,119.586111,,1,,8902,55,143,,2145-1605,1234567,,,47837,,, +675,PHL,,DYKC-AM Radyo Ronda,,Mandaue City/Maguikay (ceb),10.333333,123.95,,5,,10888,62,143,,,,,,47852,,, +675,HKG,en,RTHK R 6 (BBC WS),,Peng Chau (isd),22.290633,114.043744,,1,,9195,63,144,HKG,0000-2400,1234567,20,,47840,,, +675,PNG,,NBC R East Sepik,,Wewak (ese),-3.583333,143.633333,,10,,13338,51,148,,1930-1400,1234567,,,47855,,, +675,PNG,,NBC R Morobe,,Lae/Bubia (mrb),-6.676572,146.906244,,10,,13813,50,150,,1930-1400,1234567,,,47854,,, +675,AUS,,6BE ABC Kimberley,,Broome (WA),-17.8885,122.263389,,5,,13323,81,151,,0000-2400,1234567,,,47832,,, +675,PHL,,DXGD-AM R Veritas,,Tawi-Tawi/Bongao (slu),5.016667,119.766667,,1,,11119,68,151,,,,,,47853,,, +675,AUS,,2CO ABC Riverina,,Corowa (NSW),-35.955806,146.415333,,10,,16411,76,158,,0000-2400,1234567,9995,,47833,,, +675,NZL,en,RNZ National,,Christchurch/Gebbies Pass (CAN),-43.695711,172.647842,,10,,18631,53,166,,0000-2400,1234567,,,47850,,, +678,UKR,,D,b,Rivne (RI),50.604167,26.208333,,0.025,,1381,89,87,,,,,,85628,,, +678,UKR,,W,b,Rivne (RI),50.604167,26.125,,0.025,,1375,89,87,,,,,,ID+3 gap,85630,, +678,UKR,,A,b,Kharkov / Osnova (KA),49.9375,36.291667,,0.025,,2089,85,94,,,,,U1015 ,ID+4 gap,85627,, +678,UKR,,R,b,Kharkiv (KA),49.9375,36.291667,,0.025,,2089,85,94,,,,991,L1035 U1018 ,ID+4 gap,85629,, +678,RUS,,WJ,b,Leshukonskoye,64.895833,45.791667,,0.025,,2629,42,99,,,,,,85631,,, +678,RUS,,Z,b,Pechora,65.104167,57.125,,0.025,,3159,43,105,,,,,L1170 U1170 ,86769,,, +680,UKR,,SK,b,Skadovsk,46.145833,32.958333,,0.025,,2029,98,93,,,,,,85635,,, +680,RUS,,BP,b,Chelobityevo (MO),55.895833,37.708333,,0.025,,2069,66,94,,,,,L1020 U1010 30.0s,IDx2,85632,, +680,USA,en,WRKO,,Boston (MA),42.490278,-71.218056,,50,,5665,292,97,,,,2,,42871,,, +680,CAN,en,CFTR,,Toronto/Grimsby (ON),43.213889,-79.608056,,50,,6132,298,101,,,,6,,36015,,, +680,RUS,,RK,b,Naryan-Mar (NE),67.645833,53.125,,0.025,,3016,37,103,,,,,L1020 14.8s,IDx2,85634,, +680,CAN,en,CJOB,,Winnipeg (MB),49.653889,-97.191944,,50,,6613,313,106,,,,9996,,36197,,, +680,RUS,,GA,b,Naryan-Mar (NE),47.645833,52.958333,,0.025,,3314,80,106,,,,,,85633,,, +680,USA,,WCBM,,Baltimore (MD),39.374167,-76.858056,,20,,6249,293,107,,,,,,40955,,, +680,USA,en,WPTF,,Raleigh (NC),35.793889,-78.761389,,50,,6646,291,107,,,,2,,42743,,, +680,ALS,en,KBRW,,Barrow (AK),71.256667,-156.525556,,10,,6231,353,109,,0000-2400,1234567,999,,38092,,, +680,RUS,,R,b,Tsentralny / Omsk (OM),54.979167,73.291667,,0.025,,4260,58,116,,,,,,86770,,, +680,USA,,WNZK,,Dearborn Heights (MI),42.098611,-83.33,,2.5,,6440,299,117,,0100-1300,1234567,,,20016140,,, +680,USA,en,WCNN,,North Atlanta (GA),33.961667,-84.263333,,10,,7141,293,118,,,,,,41048,,, +680,VEN,es,YVQR R Continente Cuman,,Cuman (suc),10.419822,-64.210656,,50,,7776,261,118,,1000-0500,1234567,993,,45432,,, +680,PTR,es,WAPA,,San Juan (D) (PR),18.402606,-65.947428,,10,,7206,268,119,,1100-2300,1234567,,,20012557,,, +680,PTR,es,WAPA,,San Juan (N) (PR),18.402722,-65.946906,,10,,7206,268,119,,2300-1100,1234567,0,,40733,,, +680,USA,,WINR,,Binghamton (NY),42.114722,-75.854444,,0.5,,5983,294,120,,,,9989,,41771,,, +680,USA,,WDBC,,Escanaba (MI),45.764722,-87.096667,,1,,6379,304,121,,,,,,41127,,, +680,USA,,KFEQ,,St. Joseph (MO),39.828611,-94.805556,,5,,7290,304,123,,,,,,38382,,, +680,USA,en,WMFS,,Memphis (TN),35.223056,-90.0425,,5,,7394,298,124,,,,30,,41853,,, +680,CLM,,HJBU,,Zambrano (bol),9.716667,-74.866667,,50,,8562,269,125,,,,,,37358,,, +680,CLM,es,HJZO R Nacional de Colombia,,Sabanagrande (atl),10.783333,-74.75,,50,,8461,270,125,,,,993,,35901379,,, +680,USA,,KKGR,,East Helena (MT),46.568889,-111.908889,,5,,7574,319,126,,,,,,38719,,, +680,USA,en,KNBR,,San Francisco (CA),37.547222,-122.233333,,50,,8875,321,126,,,,984,,38964,,, +680,B,pt,ZYH885 Rdio Difusora do Maranho,,So Lus/Vila Nova Bonfim (MA),-2.537833,-44.331111,,5,,7707,236,127,,,,,,36901232,,, +680,USA,,WCTT,,Corbin (KY),36.9025,-84.080556,,0.83,,6893,295,127,,,,,,41100,,, +680,USA,,WOGO,,Hallie (WI),44.889444,-91.384167,,0.5,,6687,306,127,,,,,,42571,,, +680,USA,en,KOMW,,Omak (WA),48.394444,-119.533333,,5,,7724,325,127,,,,,,39088,,, +680,USA,,WHBE,,Newburg (KY),38.091944,-85.682222,,0.45,,6896,297,129,,,,,,41205,,, +680,USA,,WKAZ,,Charleston (WV),38.318611,-81.541111,,0.221,,6623,295,130,,,,,,40949,,, +680,PRU,es,OCY2Y R San Luis,,Jan (caj),-5.681,-78.780075,,50,,10179,263,131,,,,,,37000066,,, +680,USA,,KKYX,,San Antonio (TX),29.500833,-98.831667,,10,,8410,300,131,,,,,,38767,,, +680,VEN,,YVZJ R Llanera R 1400,,Barinas (bns),8.566667,-70.316667,,10,,8352,265,131,,0900-0500,1234567,,,51655,,, +680,B,pt,ZYK275 Rdio Farroupilha,,Porto Alegre/BR-116 (RS),-29.998653,-51.287472,,50,,10712,227,132,,,,,,36901227,,, +680,PTR,es,WA2XPA r:WAPA,,Arecibo (PR),18.471667,-66.709722,,0.57,,7252,269,132,,0000-2400,1234567,,,40617,,, +680,B,pt,ZYJ452 Rdio Copacabana,,Rio de Janeiro/Fazenda do Codeco (RJ),-22.763611,-43.006944,,20,,9606,225,133,,,,,,36901229,,, +680,USA,,WISR,,Butler (PA),40.8775,-79.9025,,0.05,,6325,296,133,,,,,,41810,,, +680,NCG,,YNAM La Primerisima,,Managua (mng),12.15,-86.283333,,10,,9126,280,134,,1000-0400,1234567,,,52191,,, +680,SLV,es,YSSS R.Nacional de El Salvador,,Cabaas (cbn),13.866667,-88.65,,10,,9135,283,134,,,,,,45317,,, +680,PNR,es,La Voz Sin Fronteras,,Meteti (drn),8.455,-77.936389,,5,,8881,271,136,,1000-2400,1234567,,,52298,,, +680,PRU,es,OBX4A R Tigre,,Lima/Morro Solar (lim),-12.181944,-77.026667,,20,,10632,257,136,,,,,,37000014,,, +680,B,pt,ZYL296 Rdio Novo Tempo,,Governador Valadares (MG),-18.915706,-42.009514,,5,,9179,226,137,,,,2,,36901222,,, +680,PNR,es,HOF32 Mujer AM,,Alanje/Orilla del Ro (chq),8.363608,-82.509508,,5,,9201,274,137,,,,,,37681,,, +680,USA,en,WPQK416,,Cranford (NJ),40.660992,-74.294331,,0.01,,5991,292,137,,,,,,20010479,,, +680,USA,en,WPRF412,,Warren (NJ),40.6315,-74.511008,,0.01,,6007,292,137,,,,,,20010481,,, +680,USA,en,WPSH257,,Griggstown/1037 Canal Road (NJ),40.441111,-74.609444,,0.01,,6027,292,137,,,,,,20010478,,, +680,USA,en,WPSH257,,somerset/495 Demott Lane (NJ),40.499722,-74.526389,,0.01,,6018,292,137,,,,,,20010480,,, +680,BOL,,CP274 R Andina,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,0900-0300,1234567,,,36693,,, +680,DOM,,HIJX R Zamba,,San Ignacio de Sabaneta (srz),19.466667,-71.316667,,0.25,,7482,273,138,,0900-0300,1234567,,,37263,,, +680,MEX,es,XELG-AM La Grande,,Len/Santa Mara de Cementos (gua),21.076944,-101.682222,,5,,9332,297,138,,,,,,44303,,, +680,B,pt,ZYI793 Rdio do Grande Rio,,Petrolina (PE),-9.3699,-40.452561,,1,,8161,229,139,,,,,,36901226,,, +680,B,pt,ZYI683 Rdio Integrao do Brejo,,Bananeiras (PB),-6.744789,-35.634356,,0.25,,7660,225,140,,,,,,36901216,,, +680,CHL,,CA68 R Chilena Solonoticias,,Calama (AN),-22.45,-68.933333,,10,,11017,245,140,,1000-0400,1234567,,,35706,,, +680,MEX,es,XEKQ-AM La Mexicana,,Tapachula (cps),14.891911,-92.246403,,3,,9283,286,140,,,,,,44265,,, +680,B,pt,ZYJ362 Rdio Poema,,Pitanga (PR),-24.770278,-51.750556,,5,,10240,231,141,,,,,,36901228,,, +680,MEX,es,XECHG-AM Ke Buena,,Chilpancingo (gue),17.563661,-99.465172,,2.5,,9510,293,141,,,,,,43837,,, +680,USA,es,WGES,,St. Petersburg (FL),27.856667,-82.623889,,0.125,,7539,287,141,,,,,,42879,,, +680,MEX,es,XEPY-AM Retro 103,,Mrida (yuc),20.975,-89.622222,,1,,8580,288,142,,,,,,44591,,, +680,PRU,,OAX5E Emisora del Pacifico,,Ica (ica),-14.066667,-75.666667,,5,,10708,255,142,,1100-0600,1234567,,,40317,,, +680,USA,,KWKA,,Clovis (NM),34.363333,-103.218056,,0.5,,8232,306,142,,,,,,39718,,, +680,B,pt,ZYL270 Rdio Difusora AM Ouro Fino,,Ouro Fino (MG),-22.267167,-46.385689,,2,,9723,228,143,,,,,,36901218,,, +680,EQA,es,HCVP2 R Atalaya,,Guayaquil (gua),-2.2,-79.966667,,2.5,,9953,266,143,,,,98,,37175,,, +680,HND,,HRNN10,,Juticalpa (ola),14.616667,-86.216667,,1,,8907,281,143,,,,,,37807,,, +680,USA,en,KBRD,,Lacey (WA),47.062222,-122.830278,,0.25,,7979,326,143,,,,,,38082,,, +680,B,pt,ZYH787 Rdio Mantiqueira,,Niquelndia (GO),-14.478019,-48.457844,,1,,9081,233,144,,,,,,36901219,,, +680,GTM,,TGVP R Norte,,Cobn (avp),15.453094,-90.395619,,1,,9112,285,144,,1100-0400,1234567,,,40552,,, +680,HND,,HRN31,,Siguatepeque (cmy),14.566667,-87.783333,,1,,9016,282,144,,,,,,37803,,, +680,HND,,HRNN20,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37810,,, +680,HND,,HRNN7,,Danli (elp),14.166667,-86.583333,,1,,8971,281,144,,,,,,37818,,, +680,MEX,es,XESON-AM xtasis,,Hermosillo (son),29.061111,-110.9425,,1,,9134,308,144,,,,,,44762,,, +680,ARG,,LT3 R Cerealista AM 680,,Rosario (sf),-32.95,-60.666667,,5,,11476,233,145,,0000-2400,1234567,,,40182,,, +680,B,pt,ZYH471 Rdio Clube,,Santo Antnio de Jesus (BA),-12.954722,-39.252778,,0.5,,8454,226,145,,,,,,36901223,,, +680,B,pt,ZYL348 Rdio Ibi,,Ibi (MG),-19.466667,-46.55,,1,,9460,229,145,,,,,,36901221,,, +680,CHL,es,CC68 R Cooperativa,,Concepcin (BI),-36.834197,-73.0213,,10,,12511,238,145,,,,,,35834,,, +680,MEX,es,XEOAX-AM Aro,,Oaxaca (oax),17.063611,-96.721833,,1,,9381,291,145,,,,,,44472,,, +680,ARG,,LV6 R Nihuil,,Mendoza (mz),-32.883333,-68.816667,,5,,11928,238,146,,0000-2400,1234567,999,,40256,,, +680,B,pt,ZYI389 Rdio Cultura,,Campo Grande (MS),-20.513867,-54.623378,,1,,9995,235,147,,,,,,36901231,,, +680,B,pt,ZYL326 Rdio Unio de Joo Pinheiro,,Joo Pinheiro (MG),-17.736025,-46.160844,,0.5,,9273,230,148,,,,,,36901220,,, +680,MEX,es,XEORO-AM La Mera Jefa,,Guasave (sin),25.539094,-108.463369,,0.5,,9323,305,148,,,,,,44512,,, +680,MEX,es,XEFO-AM xtasis Digital,,Chihuahua (chi),28.670636,-106.082722,,0.25,,8903,305,149,,,,,,44016,,, +680,PRG,,ZP41,,Ypacarai (cet),-25.316667,-57.316667,,1,,10593,234,149,,,,,,45537,,, +680,ARG,,R Melody,,Remedios de Escalada (ba),-34.733333,-58.383333,,1,,11517,230,152,,,,,,51795,,, +680,ARG,es,LU12 R Ro Gallegos,,Ro Gallegos (sc),-51.619139,-69.275225,,5,,13524,225,152,,1000-0300,1234567,,,40205,,, +680,B,pt,ZYH765 Rdio Difusora de Jata,,Jata (GO),-17.869672,-51.721211,,0.25,,9584,234,152,,,,,,36901230,,, +680,B,pt,ZYK576 Rdio Difusora de Catanduva AM,,Catanduva/Rua Torrinha 120 (SP),-21.125767,-49.010361,,0.25,,9748,230,152,,,,,,36901224,,, +680,B,pt,ZYK628 Rdio Piratininga,,Piraju (SP),-23.185828,-49.392083,,0.25,,9966,229,153,,,,,,36901217,,, +680,URG,,CW68 R Young,,Young (rn),-32.7,-57.616667,,0.7,,11290,231,153,,0900-0300,1234567,,,51718,,, +680,MEX,es,XEFJ-AM La Consentida,,Teziutln (pue),19.815556,-97.358333,,0.1,,9177,293,154,,,,,,44010,,, +684,E,es,RNE R Nacional,,Sevilla/Los Palacios (AND-SE),37.209767,-5.926039,,300,,1917,215,51,,0000-2400,1234567,9990,,281,,, +684,SRB,sr,R Beograd 1,,Aleksinac/Bobovite (Srb-nsv),43.552367,21.669447,,30,,1479,124,57,,0000-2400,1234567,0,,284,,, +684,TUN,ar,RTT R Nationale,,Medenine/Harboub (med),33.238778,10.458472,,50,,2123,170,61,,0400-2400,1234567,0,,285,,, +684,RUS,ru,R Radonezh,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,1600-2000,1234567,17,,283,,, +684,IRN,fa,IRIB R Khorasan-e Razavi,,Mashhad/Gaem (rkh),36.46225,59.500458,,200,,4452,91,79,,,,9836,,282,,, +684,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jeddah/Al-Nuzla (mkh),21.3786,39.4254,,50,,4436,128,84,,0300-2200,1234567,,,47071,,, +684,IND,,AIR North,,Kargil A (JK),34.509383,76.133728,,200,,5727,81,91,,0020-1740,1234567,,,52627,,, +684,ARS,ar,BSKSA Idha'atu-i Jeddah,,Ar-Riyad (riy),24.816133,46.861264,,10,,4552,116,93,,0300-2200,1234567,,,47070,,, +684,ETH,,ERTA Ethiopia National R,,Metu (orm),8.275972,35.582917,,100,,5548,141,93,,0300-0600,1234567,,,2343,,, +684,ETH,,ERTA Ethiopia National R,,Metu (orm),8.275972,35.582917,,100,,5548,141,93,,0800-2100,1234567,,,2343,,, +684,NPL,,R Nepal,,Pokhara (gan),28.220589,83.980469,,100,,6748,81,105,,2315-1720,1234567,,,47899,,, +684,CHN,,Gansu RGD,,Lanzhou/GSTS535 (GS),36.086389,103.846111,,200,,7382,61,108,,2150-1605,1234567,,,36200888,,, +684,CHN,zh,Xinjiang RGD 738 Zonghe,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,3,,5777,76,110,,2300-1800,1234567,989,,36200086,,, +684,CHN,zh,CNR 1,,Akqi=Aheqi/XJTS8109 (XJ),40.935556,78.435,,1,,5413,73,111,,2025-1805,1234567,,,36201269,,, +684,CHN,zh,CNR 2,,Kashgar=Kashi/XJTS635 (XJ),39.409722,75.921944,,1,,5355,76,111,,2100-1602,1234567,,,36200087,,, +684,IND,,AIR South,,Kozhikode A=Calicut (KL),11.301944,75.764306,,100,,7613,99,113,,0025-0345,1234567,,,47876,,, +684,IND,,AIR South,,Kozhikode A=Calicut (KL),11.301944,75.764306,,100,,7613,99,113,,0630-0900,1234567,,,47876,,, +684,IND,,AIR South,,Kozhikode A=Calicut (KL),11.301944,75.764306,,100,,7613,99,113,,1115-1735,1234567,,,47876,,, +684,CHN,,CNR 6 Shenzhou zhi Sheng,,Putian/SARFT824 (FJ),25.459444,119.161278,,1200,130,9210,57,114,,2155-1605,1234567,,,47865,,, +684,CHN,,Gansu RGD,,Jiayuguan (GS),39.784722,98.254722,,10,,6746,62,114,,2150-1605,1234567,,,36200889,,, +684,KRE,,Echo of Unification,,Samgo (hwb),38.033333,126.533333,,250,,8441,45,118,,0400-0600,1234567,8,,47898,,, +684,KRE,,Echo of Unification,,Samgo (hwb),38.033333,126.533333,,250,,8441,45,118,,1200-1400,1234567,8,,47898,,, +684,KRE,,Echo of Unification,,Samgo (hwb),38.033333,126.533333,,250,,8441,45,118,,2200-2400,1234567,8,,47898,,, +684,KRE,,KCBS Pyongyang Pangsong,,Samgo (hwb),38.033333,126.533333,,250,,8441,45,118,,2100-2030,1234567,8,,47898,,, +684,CHN,,Mudanjiang RGD Xinwen,,Mudanjiang (HL),44.588889,129.585278,,50,,7968,39,120,,0855-1400,1234567,,,47871,,, +684,CHN,,Mudanjiang RGD Xinwen,,Mudanjiang (HL),44.588889,129.585278,,50,,7968,39,120,,2100-0800,1234567,,,47871,,, +684,CHN,en,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1200-1300,1234567,,,47867,,, +684,CHN,fr,R France Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1300-1400,1234567,,,47867,,, +684,CHN,km,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1030-1130,1234567,,,47867,,, +684,CHN,km,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1400-1500,1234567,,,47867,,, +684,CHN,km,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,2300-0100,1234567,,,47867,,, +684,CHN,vi,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1500-1700,1234567,,,47867,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,0700-0900,12345..,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,0700-1700,.....67,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,1030-1700,12345..,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,2355-0400,12345..,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,2355-0415,.....6.,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,2355-0500,......7,,,47877,,, +684,CHN,,Gansu RGD,,Zhangye (GS),38.931111,100.476944,,1,,6948,61,126,,2150-1605,1234567,,,36200886,,, +684,CHN,,Tangshan RGD News,,Tangshan (HB),39.666667,118.285333,,10,,7881,49,126,,2150-1400,1234567,,,47873,,, +684,CHN,,Fushun RGD Xinwen,,Fushun (LN),41.85,123.883333,,10,,7963,44,127,,,,,,47868,,, +684,CHN,,Gansu RGD,,Jinchang (GS),38.533056,102.213611,,1,,7083,60,128,,2150-1605,1234567,,,47869,,, +684,RUS,ru,R 684,,Nakhodka (PM),42.849389,132.848006,,10,,8271,38,130,,1950-1500,1234567,,,47016,,, +684,CHN,,Gansu RGD,,Hezuo (GS),34.971111,102.908889,,1,,7418,62,131,,2150-1605,1234567,,,47976,,, +684,CHN,,Zhoushan RGD,,Zhoushan/ZMWS6945 (ZJ),30.051167,122.017389,,10,,8949,52,134,,2135-1400,1234567,,,47874,,, +684,MAU,en,VOA Music Mix,,Malherbes/MCML (mau),-20.311917,57.536097,,10,,9449,133,135,,1800-2400,1234567,998,,2344,,, +684,MAU,xx,R Maurice 1,,Malherbes/MCML (mau),-20.311917,57.536097,,10,,9449,133,135,,0000-1800,1234567,998,,2344,,, +684,TWN,,Han Sheng Kuangpo Tientai,,Taipei (TPS),25.086581,121.512736,,10,,9378,56,135,,2100-1600,1234567,,,47908,,, +684,J,,JODF IBC Iwate Hoso,,Morioka (toh-iwa),39.611939,141.127322,,5,,8917,34,136,,0000-2400,1234567,11,,47895,,, +684,THA,th,Yaan Kro,,Udon Thani (udt),17.3625,102.819722,,5,,8919,74,136,,????-1400,1234567,,,47906,,, +684,J,,JOAG NHK1,,Nagasaki (kyu-nag),32.720556,129.883889,,5,,9102,45,137,,0000-2400,1234567,0,,47896,,, +684,THA,th,Thor. Phor. Sii,,Nakhon Si Thammarat/Fort Vajiravudh (ntm),8.466667,99.966667,,5,,9507,82,138,,2130-1630,1234567,,,47905,,, +684,CHN,zh,Hubei RGD Chutian Weixing,,Jingmen (HU),31.033333,112.2,,1,,8308,59,140,,2000-1630,1234567,,,47870,,, +684,PHL,,DYEZ-AM Aksyon Radyo,,Bacolod City/Sumag (noc),10.596389,122.911944,,10,,10801,62,140,,1950-1600,1234567,,,47900,,, +684,PHL,tl,DWJJ-AM Radyo ng Pambansang,,Cabanatuan City (nve),15.466667,120.95,,5,,10233,61,141,,,,,,47901,,, +684,CHN,,Suzhou RGD,,Suzhou (JS),31.3,120.683333,,1,,8762,53,143,,,,,,47872,,, +684,CHN,zh,Anhui RGD Shenghuo Guangbo,,Xuancheng/Wuligang (AH),30.930556,118.745833,,1,,8689,54,143,,2100-1800,1234567,,,36200887,,, +684,J,ja,JOLO IBC Iwate Hoso,,Ofunato (toh-iwa),39.083333,141.716667,,1,,8992,34,144,,0000-2400,1234567,,,47894,,, +684,PHL,,DZCV-AM R Veritas,,Tuguegarao/Ugac Norte (cag),17.6,121.75,,1,,10083,59,147,,,,,,47903,,, +684,PHL,,DWGW-AM IBC R,,Legazpi City (aby),13.133333,123.733333,,1,,10615,60,149,,,,,,47902,,, +684,INS,id,PM3BHI R Angkasa Media,,Kadipaten (JB),-6.766667,108.166667,,1,,11403,85,152,,,,,,47883,,, +684,J,ja,IBC Iwate Hoso,,Iwaizumi (toh-iwa),39.85,141.8,,0.1,,8919,33,153,,,,,,31400055,,, +684,J,ja,IBC Iwate Hoso,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,,,,,31400056,,, +684,AUS,,6BS ABC Southwest WA,,Busselton/Kealy (WA),-33.659986,115.229306,,4,,14126,99,155,,0000-2400,1234567,2,,47862,,, +684,TMP,,R Timor-Leste,,Dili/Foho Kutulau (dil),-8.641944,125.375278,,1,,12717,72,156,,2045-1200,1234567,,,47907,,, +684,AUS,,2KP ABC Mid North Coast NSW,,Kempsey/Smithtown (NSW),-31.005944,152.948208,,10,,16428,62,158,,0000-2400,1234567,8,,47863,,, +684,AUS,,8RN ABC National,,Tennant Creek (NT),-19.669158,134.260533,,1,,14272,71,161,,0000-2400,1234567,,,47864,,, +687,UKR,,P,b,Dnipropetrovsk (DP),48.354167,35.041667,,0.025,,2065,90,94,,,,972,L1025 U970 ,IDx2 + 10 gap,85637,, +687,UKR,,R,b,Dnipropetrovsk (DP),48.354167,35.125,,0.025,,2070,90,94,,,,56,L1030 U1072 ,85638,,, +687,RUS,,VT,b,Eysk,46.645833,37.958333,,0.025,,2343,92,96,,,,1,L1020 U1023 5.0s,ID+2.5 gap,85639,, +687,RUS,,WU,b,Yeysk (KD),46.6875,38.208333,,0.025,,2358,92,97,,,,,15.0s,IDx2 + 6 gap,85640,, +688,RUS,,IP,b,Zakharovka,54.729167,36.625,,0.025,,2007,70,93,,,,,L397 U400 30.0s,IDx2 + 20 gap,85643,, +690,UKR,,SR,b,Seredne,48.520833,22.541667,,0.025,,1210,103,85,,,,,U1030 ,85647,,, +690,UKR,,DM,b,Dmytrivka,45.479167,35.041667,,0.025,,2206,98,95,,,,999,L1020 U1018 30.0s,IDx2 + 22 gap,85645,, +690,CAN,en,CKGM,,Montral/Mercier (QC),45.295278,-73.721667,,50,,5625,296,96,,,,0,,20109302,,, +690,RUS,,AZ,b,Arkhangelsk / Talagi (AR),64.604167,40.625,,0.025,,2385,41,97,,,,,U386 30.0s,IDx2,85644,, +690,RUS,,KM,b,Akhangelsk / Talagi (AR),64.604167,40.875,,0.025,,2396,41,97,,,,0,,85646,,, +690,USA,es,WADS,,Ansonia (CT),41.346111,-73.114167,,3.2,,5866,292,111,,,,,,40655,,, +690,USA,en,WOKV,,Jacksonville (D) (FL),30.132222,-81.7,,50,,7290,288,113,,1200-2400,1234567,6,,42589,,, +690,USA,en,WJOX,,Birmingham (D) (AL),33.448889,-86.921667,,50,,7349,294,114,,1200-2400,1234567,,,20012517,,, +690,USA,en,WOKV,,Jacksonville (N) (FL),30.307778,-81.939722,,25,,7291,289,116,,0000-1200,1234567,,,20012518,,, +690,USA,,WNZK,,Dearborn Heights (MI),42.098611,-83.33,,2.5,,6440,299,117,,1300-0100,1234567,,,42543,,, +690,CAN,en,CBU,,Vancouver (BC),49.137222,-123.201389,,50,,7793,328,118,,,,2,,35798,,, +690,USA,,WPHE,,Phoenixville (PA),40.135556,-75.560278,,1,,6110,292,118,,,,9969,,42685,,, +690,CAN,fr,CBKF-1,,Gravelbourg (SK),49.871111,-106.472778,,5,,7037,318,120,,,,0,,35785,,, +690,B,pt,ZYH587 Rdio Drago do Mar,,Fortaleza (CE),-3.815908,-38.56455,,10,,7517,230,122,,,,,,36901249,,, +690,HTI,,Voix des Travailleurs,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52099,,, +690,CUB,es,R Progreso,,Santa Clara/CTOM3 (vc),22.435008,-79.916175,,10,,7814,281,125,,,,9994,,36493,,, +690,VEN,,YVMR R Barquisimeto,,Barquisimeto (lar),10.066667,-69.266667,,25,,8149,265,125,,,,,,45385,,, +690,USA,,KGGF,,Coffeyville (KS),37.146389,-95.478333,,5,,7554,303,126,,,,,,38475,,, +690,MEX,es,XEWW-AM W R,,Tijuana/Popotla (bcn),32.297639,-117.031444,,50,,9141,315,127,,0000-2400,1234567,99,,44860,,, +690,B,pt,ZYI532 Rdio Clube do Par,,Belm/Ananindeua (PA),-1.404856,-48.414028,,5,,7836,240,128,,,,,,36901246,,, +690,B,pt,ZYL228 Rdio Mineira,,Belo Horizonte (MG),-20.033333,-44.083333,,50,,9390,227,128,,,,,,36901248,,, +690,USA,en,WQNO,,New Orleans (LA),29.964722,-89.958611,,5,,7830,294,128,,,,,,43146,,, +690,B,pt,ZYN661 Rdio Cano Nova,,Palmas (TO),-10.151389,-48.310833,,25,,8659,235,129,,,,,,36901247,,, +690,DOM,,HIAW R Guarachita,,Santo Domingo (sdo),18.475,-69.833333,,1,,7465,271,132,,0900-0400,1234567,,,37214,,, +690,EQA,,HCJB,,Quito (pic),-0.166667,-78.5,,25,,9675,266,132,,,,,,36979,,, +690,USA,,KTSM,,El Paso (TX),31.969722,-106.354167,,10,,8619,307,132,,,,,,39541,,, +690,USA,en,WJOX,,Birmingham (N) (AL),33.450556,-86.922222,,0.5,,7349,294,133,,0000-1200,1234567,,,41917,,, +690,CAN,en,CBES,,Ignace (ON),49.413611,-91.6625,,0.04,,6349,310,134,,,,,,20109086,,, +690,CAN,en,CBOI,,Ear Falls (ON),50.642778,-93.221111,,0.04,,6335,312,134,,,,,,20109087,,, +690,CAN,xx,CBQM,,Fort McPherson (NT),67.428333,-134.865278,,0.04,,6337,343,134,,,,,,20109089,,, +690,CLM,es,HJCZ W R,,Bogot D. C. (bdc),4.616667,-74.033333,,10,,8951,265,134,,,,997,,37384,,, +690,NCG,,YNRH R Hermanos,,Matagalpa (mgp),12.883333,-85.95,,10,,9040,280,134,,1000-0400,1234567,,,52192,,, +690,USA,,WVCY,,Oshkosh (WI),44.080833,-88.564722,,0.077,,6592,304,134,,,,,,43290,,, +690,CAN,xx,CBDO,,Fort Simpson (NT),61.871667,-121.380833,,0.04,,6534,334,136,,,,,,20109088,,, +690,PNR,es,R Evangelio Vivo,,Pacora (pnm),9.085,-79.2925,,5,,8919,272,136,,,,,,52299,,, +690,PNR,es,HOR43 R Veraguas,,Santiago/La Soledad (vrg),8.131156,-80.980489,,5,,9117,273,137,,1000-0300,1234567,,,37718,,, +690,SLV,,YSQR,,San Salvador (ssl),13.716667,-89.216667,,5,,9186,283,137,,,,,,45305,,, +690,MEX,es,XEN-AM La 69,,Mxico D.F/Emiliano Zapata (dif),19.333117,-98.988389,,5,,9322,294,138,,0000-2400,1234567,,,44431,,, +690,USA,en,WELD,,Fisher (WV),39.052222,-79.005833,,0.014,,6409,294,140,,,,,,41285,,, +690,ARG,,LU19 LV de Comahue,,Cipolletti (rn),-38.95,-68,,25,,12407,234,141,,0900-0500,1234567,,,40213,,, +690,CAN,xx,CBDM,,Beaver Creek (YT),62.380833,-140.885278,,0.04,,6964,344,141,,,,,,20109090,,, +690,MEX,es,XEMA-AM,,Fresnillo (zac),23.141383,-102.832706,,2,,9215,299,141,,1200-0600,1234567,,,44338,,, +690,URG,es,CX8 R Sarand,,Montevideo/Av. Luis Batlle Berres (mo),-34.840872,-56.261461,,10,,11417,228,142,,0000-2400,1234567,,,36826,,, +690,ARG,es,LRA4 R Nacional,,Salta (sa),-24.8153,-65.425494,,5,,11015,241,143,,0900-0400,1234567,,,39952,,, +690,CLM,es,HJZ73,,Apartado (ant),7.883333,-76.633333,,1,,8842,269,143,,,,,,35901380,,, +690,HND,,HRNN9A,,Tela (atl),15.75,-87.466667,,1,,8892,283,143,,,,,,37820,,, +690,HWA,en,KHNR,,Honolulu (HI),21.294722,-157.863611,,10,,11711,345,143,,0000-2400,1234567,0,,39099,,, +690,MEX,es,XERG-AM RG 690 La Deportiva,,Monterrey (nvl),25.655778,-100.2552,,1,,8835,299,143,,1200-0700,1234567,,,44674,,, +690,MEX,es,XEXL-AM La Ley,,Ptzcuaro (mic),19.544878,-101.613622,,1.5,,9466,296,143,,1200-0400,1234567,,,45055,,, +690,USA,,WZAP,,Bristol (VA),36.630833,-82.164722,,0.014,,6795,294,143,,,,,,43565,,, +690,CHL,es,CB69 R Santiago,,Santiago (RM),-33.505433,-70.787239,,10,,12097,239,144,,1000-0600,1234567,,,35757,,, +690,EQA,,HCFA4,,Portoviejo (man),-1.066667,-80.466667,,2,,9888,267,144,,,,,,36929,,, +690,GTM,,TGVB R Tamazulapa,,Jutiapa (jut),14.266667,-89.9,,1,,9183,284,144,,,,,,40554,,, +690,HND,,HRNN19,,Choluteca (cho),13.3,-87.2,,1,,9087,281,144,,,,,,37809,,, +690,USA,en,KEWI,,Benton (AR),34.5325,-92.571111,,0.073,,7604,299,144,,,,,,38350,,, +690,B,pt,ZYI451 Rdio Parecis de Diamantino,,Diamantino/Fazenda Buriti (MT),-14.422686,-56.441411,,1,,9530,240,145,,,,,,36901242,,, +690,USA,,KOAQ,,Terrytown (NE),41.848611,-103.667222,,0.065,,7596,311,145,,,,,,39046,,, +690,MEX,es,XECS-AM La Mejor,,Manzanillo (col),19.087789,-104.300867,,1,,9671,298,146,,0000-2400,1234567,,,43871,,, +690,USA,,KPET,,Lamesa (TX),32.7075,-101.936389,,0.25,,8307,304,146,,,,,,39136,,, +690,USA,,KSTL,,St. Louis (MO),38.616944,-90.171389,,0.0179,,7122,300,146,,,,,,39422,,, +690,USA,en,WNZL582,,West Branch (IA),41.666139,-91.346833,,0.01,,6943,303,146,,,,,,20010482,,, +690,B,pt,ZYH780 Rdio Sociedade de Ceres,,Ceres (GO),-15.3445,-49.613556,,0.5,,9227,234,147,,,,,,36901245,,, +690,B,pt,ZYI201 Rdio Amrica,,Cariacica (ES),-20.33975,-40.370892,,0.5,,9241,223,147,,,,,,36901243,,, +690,B,pt,ZYH453 Rdio Cultura de Ilhus,,Ilhus (BA),-14.778644,-39.058364,,0.25,,8626,225,148,,,,,,36901244,,, +690,USA,,KFXN,,Minneapolis (MN),45.023611,-93.382778,,0.004,,6786,307,149,,,,9998,,38443,,, +690,USA,,KBLI,,Blackfoot (ID),43.167778,-112.368889,,0.0429,,7904,317,150,,,,,,38055,,, +690,USA,,KRCO,,Prineville (OR),44.341111,-120.906667,,0.077,,8164,324,150,,,,5,,39226,,, +690,B,pt,ZYJ772 Rdio Clube de Lages AM,,Lages (SC),-27.774167,-50.302778,,0.5,,10451,228,151,,,,,,36901238,,, +690,MEX,es,XEST-AM La Invasora,,Mazatln (sin),23.231978,-106.393972,,0.25,,9417,302,151,,1000-0500,1234567,,,44771,,, +690,ARG,,R Maranatha en las Nubes,,Lomas del Mirador (ba),-34.65,-58.533333,,1,,11517,230,152,,,,,,51796,,, +690,ARG,es,K24 R,,Mariano Acosta (ba),-34.716667,-58.791667,,1,,11537,230,152,,,,,,33000015,,, +690,B,pt,ZYK561 RB-Rdio Bebedouro,,Bebedouro (SP),-20.941706,-48.462739,,0.25,,9702,230,152,,,,,,36901237,,, +690,B,pt,ZYK588 Rdio Clube de Guaratinguet,,Guaratinguet (SP),-22.819911,-45.204603,,0.25,,9718,226,152,,,,,,36901241,,, +690,B,pt,ZYK625 Rdio Cidade AM,,Pereira Barreto (SP),-20.632044,-51.107439,,0.25,,9813,232,152,,,,,,36901236,,, +690,B,pt,ZYK646 Rdio Brasil AM,,Santa Brbara d'Oeste (SP),-22.744706,-47.433056,,0.25,,9822,228,152,,,,,,36901233,,, +690,B,pt,ZYJ229 Rdio Difusora AM,,Londrina/Gleba Ribeiro Cafezal (PR),-23.338611,-51.222111,,0.25,,10076,231,153,,,,,,36901240,,, +690,CHL,,CD69 R Estrella del Mar,,Ancud (LL),-42.166667,-73.766667,,2.5,,12996,235,153,,1100-0330,1234567,,,35909,,, +690,USA,,KWRP,,Pueblo (CO),38.296667,-104.646389,,0.024,,7960,309,153,,,,,,39271,,, +690,B,pt,ZYI402 RCN-Rdio Cultura de Navira,,Navira (MS),-23.085669,-54.194833,,0.25,,10212,233,154,,,,,,36901234,,, +690,B,pt,ZYJ252 Rdio Difusora de Ponta Grossa,,Ponta Grossa (PR),-25.051667,-50.118056,,0.25,,10182,229,154,,,,,,36901235,,, +690,B,pt,ZYJ360 Rdio Voz do Sudoeste,,Coronel Vivida (PR),-25.953333,-52.566667,,0.25,,10395,231,154,,,,,,36901239,,, +690,B,pt,ZYK252 Rdio Progresso AM,,Iju (RS),-28.367778,-53.897222,,0.25,,10692,230,155,,,,,,36901250,,, +690,USA,,KRGS,,Rifle (CO),39.548889,-107.769722,,0.012,,8009,312,156,,,,,,39245,,, +690,USA,,KCEE,,Tucson (AZ),32.253056,-110.962222,,0.0032,,8839,310,168,,,,,,20016017,,, +693,G,en,BBC R 5 Live,,Droitwich/Mast A (EN-WOR),52.294556,-2.105694,,150,,580,275,41,,0000-2400,1234567,0,,301,,, +693,G,en,BBC R 5 Live,,Stagshaw (EN-NBD),55.032667,-2.022972,,50,,644,304,47,,0000-2400,1234567,0,,299,,, +693,G,en,BBC R 5 Live,,Start Point (EN-CNW),50.228389,-3.663944,,50,,732,257,47,,0000-2400,1234567,0,,300,,, +693,G,en,BBC R 5 Live,,Postwick (EN-NFK),52.626944,1.402778,,10,,345,282,50,,0000-2400,1234567,,,297,,, +693,G,en,BBC R 5 Live,,Burghead (SC-MOR),57.699056,-3.471806,,25,,885,318,52,,0000-2400,1234567,0,,298,,, +693,E,es,RNE R Nacional,,Boal (Asturias)/Pico Penouta (AST-O),43.451736,-6.823278,,20,,1376,231,58,,0000-2400,1234567,,,2200005,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0625-0630,12345..,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0650-0700,12345..,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0800-0815,12345..,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1208-1300,12345..,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1230-1300,.....67,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1400-1415,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,20,,1579,215,60,,0000-2400,1234567,6,,290,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0000-0625,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0000-1230,.....67,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0630-0650,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0700-0800,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0815-1208,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1300-1400,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1300-2400,.....67,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1415-2400,12345..,991,,289,,, +693,G,en,BBC R 5 Live,,Bexhill-on-Sea (EN-ESU),50.838056,0.4475,,1,,436,253,61,,0000-2400,1234567,,,292,,, +693,G,en,BBC R 5 Live,,Folkestone (EN-KNT),51.105,1.220833,,1,,375,255,61,,0000-2400,1234567,,,295,,, +693,G,en,BBC R 5 Live,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,1,,482,256,62,,0000-2400,1234567,,,293,,, +693,G,en,BBC R 5 Live,,Barrow-in-Furness (EN-CUM),54.126278,-3.196389,,1,,679,293,64,,0000-2400,1234567,,,291,,, +693,G,en,BBC R 5 Live,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,1,,780,319,65,,0000-2400,1234567,0,,296,,, +693,G,en,BBC R 5 Live,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0000-2400,1234567,0,,294,,, +693,RUS,ru,R Rossii,,Ufa/Yazykovo (BA),54.673889,55.100833,,150,,3176,65,67,,2300-1900,1234567,,,306,,, +693,ALG,tz,Chane 2,,Aboudid (Ain El Hammam) (15),36.624722,4.219167,,4,,1730,187,68,,0400-2400,1234567,,,200003,,, +693,ALG,ar,R Adrar,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,0600-1930,1234567,,,279,,, +693,ALG,ar,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2000-2030,1234567,,,279,,, +693,ALG,ar,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2100-2130,1234567,,,279,,, +693,ALG,ar,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2230-2300,1234567,,,279,,, +693,ALG,ar,R Coran,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2300-0200,1234567,,,279,,, +693,ALG,en,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2130-2200,1234567,,,279,,, +693,ALG,es,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,1930-2000,1234567,,,279,,, +693,ALG,es,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2200-2230,1234567,,,279,,, +693,ALG,fr,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2030-2100,1234567,,,279,,, +693,GRC,,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400031,,, +693,AZR,pt,Antena 1,,Serra de Santa Brbara (tce),38.730147,-27.317444,,3,,2985,254,82,,0000-0530,123456,62,,287,,, +693,AZR,pt,Antena 1,,Serra de Santa Brbara (tce),38.730147,-27.317444,,3,,2985,254,82,,0000-0600,......7,62,,287,,, +693,AZR,pt,RDP Aores,,Serra de Santa Brbara (tce),38.730147,-27.317444,,3,,2985,254,82,,0530-2400,123456,62,,287,,, +693,AZR,pt,RDP Aores,,Serra de Santa Brbara (tce),38.730147,-27.317444,,3,,2985,254,82,,0600-2400,......7,62,,287,,, +693,IRN,fa,IRIB R Khalij-e Fars,,Bandar-e Lengeh (hrg),26.517817,54.625,,100,,4900,106,86,,,,200,,1777,,, +693,KGZ,,KTRK Birinchi R,,Osh (osh),40.533333,72.783333,,50,,5068,77,91,,,,,,47129,,, +693,SSD,xx,Southern Sudan R,,Juba (ceq),4.810706,31.630294,,100,,5748,147,95,,0345-0700,1234567,,,2328,,, +693,SSD,xx,Southern Sudan R,,Juba (ceq),4.810706,31.630294,,100,,5748,147,95,,1245-1820,1234567,,,2328,,, +693,BGD,,Bangladesh Betar,,Dhaka A/Dhamrai (dha),23.906389,90.199167,,1000,,7520,79,102,,0030-0610,1234567,3,,47919,,, +693,BGD,,Bangladesh Betar,,Dhaka A/Dhamrai (dha),23.906389,90.199167,,1000,,7520,79,102,,0830-1730,1234567,3,,47919,,, +693,CHN,,Shaanxi Xinwen Guangbo,,Xianyang/SATS3 (SA),34.303889,108.705556,,100,,7819,59,115,,2150-1710,1234567,,,47920,,, +693,SOM,,R Hargeisa,,Hargeisa=Hargaysa (woq),9.572783,44.060817,,1,,5822,130,115,,0330-0600,1234567,,,47139,,, +693,SOM,,R Hargeisa,,Hargeisa=Hargaysa (woq),9.572783,44.060817,,1,,5822,130,115,,1500-2000,1234567,,,47139,,, +693,J,,JOAB NHK2,,Shobu/Kuki (kan-sai),36.070833,139.624722,,500,,9211,36,117,,2030-1500,1.....7,5,,47925,,, +693,J,,JOAB NHK2,,Shobu/Kuki (kan-sai),36.070833,139.624722,,500,,9211,36,117,,2030-1635,.2345..,5,,47925,,, +693,J,,JOAB NHK2,,Shobu/Kuki (kan-sai),36.070833,139.624722,,500,,9211,36,117,,2030-1640,.....6.,5,,47925,,, +693,CHN,,Qiqihar RGD Life & Literary,,Qiqihar (HL),47.362778,123.981111,,10,,7469,41,122,,,,,,36200085,,, +693,BOT,,R Botswana,,Shakawe (nw),-18.42155,21.873878,,25,,7985,165,123,,0000-2400,1234567,,,47117,,, +693,CHN,,Shaanxi Xinwen Guangbo,,Ankang/Shuangquan (SX),32.733333,108.983333,,10,,7971,60,127,,,,,,36200082,,, +693,CHN,,Shaanxi Xinwen Guangbo,,Yulin (SA),38.299722,109.735,,1,,7538,56,132,,,,,,36200084,,, +693,TWN,,Han Sheng Kuangpo Tientai,,Chung-Li (TY),24.934167,121.225833,,10,,9376,56,135,,2100-1600,1234567,,,47933,,, +693,TWN,,Han Sheng Kuangpo Tientai,,Tainan (TNS),22.998011,120.246053,,10,,9498,58,135,,2100-1600,1234567,,,47934,,, +693,CHN,,Shaanxi Xinwen Guangbo,,Ganquan (SX),35.683333,111.85,,1,,7882,56,136,,,,,,36200083,,, +693,THA,th,Siang Adison=Voice of Adison,,Saraburi/Fort Adison (srb),14.516306,100.916506,,5,,9041,77,137,,2200-1700,1234567,,,47932,,, +693,PHL,,DYKX-AM (r:666 DZRH-AM),,Kalibo (akl),11.716667,122.35,,10,,10664,62,139,,,,,,47930,,, +693,PHL,tl,DYPH-AM (r:666 DZRH-AM),,Puerto Princesa (plw),9.736111,118.738889,,10,,10623,66,139,,,,,,47931,,, +693,PHL,,DZTP-AM,,Candon (ils),17.2,120.45,,5,,10043,61,140,,,,,,47928,,, +693,PHL,,DXBC-AM Radyo Agong,,Butuan City (agn),8.933333,125.516667,,5,,11113,61,144,,2100-1600,1234567,,,47927,,, +693,INS,id,R Muara,,Jakarta/Rawamangun (JK),-6.183333,106.9,,1,,11265,86,151,,2200-1700,1234567,,,35400125,,, +693,PHL,,DXDX-AM,,General Santos City (sco),6.1,125.166667,,1,,11355,63,151,,,,,,47929,,, +693,AUS,,6WR Waringarri R,,Kununurra (WA),-15.763778,128.733833,,5,,13570,74,152,,,,,,47915,,, +693,AUS,en,4KQ Classic Hits,,Brisbane/St. Helena Island (QLD),-27.379861,153.235083,,5,,16126,58,160,,0000-2400,1234567,2,,47913,,, +693,AUS,en,3AW,,Melbourne/Mount Cottrell (VIC),-37.798611,144.616778,,5,,16426,80,161,,0000-2400,1234567,,,50311,,, +693,AUS,,5SY ABC West Coast SA,,Streaky Bay (SA),-32.75725,134.1915,,2,,15348,84,162,,0000-2400,1234567,,,47917,,, +693,AUS,,4KZ/t,,Tully (QLD),-17.99595,145.938111,,0.5,,14843,58,166,,,,,,47918,,, +693,AUS,,4LM/t Zinc 666,,Cloncurry (QLD),-20.69735,140.500033,,0.5,,14760,66,166,,0000-2400,1234567,,,47914,,, +693,NZL,en,R Sport,,Dunedin/Highcliff (OTA),-45.885556,170.595,,5,,18674,65,169,,0000-2400,1234567,,,47926,,, +694,RUS,,AL,b,Algasovo (TA),53.6875,41.708333,,0.025,,2350,72,96,,,,,U1010 30.0s,IDx2,86772,, +694,RUS,,QL,b,Algasovo (TA),53.6875,41.708333,,0.025,,2350,72,96,,,,,U1007 ,IDx2,85648,, +695,SVK,,T,b,Trenčn (TN),48.854167,17.958333,,0.025,,892,109,82,,,,,7.0s,85649,,, +696,RUS,,BT,b,Alatyr (CV),54.8125,46.541667,,0.025,,2637,67,99,,,,,,85650,,, +697,UKR,,O,b,Lozovatka / Kryvyi Rih (DP),48.020833,33.208333,,0.025,,1954,93,93,,,,,,86773,,, +700,RUS,,K,b,Sankt-Peterburg/Pulkovo (SP),59.8125,30.208333,,0.025,,1697,50,90,,,,,,85653,,, +700,RUS,,MR,b,Moskva/Sheremetyevo (MV),55.979167,37.291667,,0.025,,2043,66,93,,,,9994,L1010 U1009 ,85654,,, +700,RUS,,Q,b,Petrozavodsk / Besovets (KR),61.895833,34.208333,,0.025,,1981,46,93,,,,8,L980 U995 14.9s,IDx2,85655,, +700,RUS,,X,b,Petrozavodsk / Besovets (KR),61.854167,34.125,,0.025,,1975,46,93,,,,,4.8s,85656,,, +700,RUS,,AD,b,Moskva/Sheremetyevo (MV),55.979167,37.541667,,0.025,,2059,66,94,,,,,L1040 ,85651,,, +700,RUS,,GSH,b,Alakurtti,66.979167,30.291667,,0.025,,2104,29,94,,,,,L1020 15.1s,IDx2,86775,, +700,USA,en,WLW,,Cincinnati/Tower Drive (U) (OH),39.353056,-84.325,,50,,6713,297,107,,,,0,,42257,,, +700,USA,,WTUB,,Orange-Athol (MA),42.585,-72.282222,,2.5,,5725,293,110,,,,998,,40948,,, +700,USA,,WDMV,,Walkersville (MD),39.4575,-77.324167,,5,,6272,293,113,,,,,,41185,,, +700,CAN,en,CJLI,,Calgary (AB),50.640833,-114.223333,,20,,7304,323,117,,,,,,20100024,,, +700,ALS,,KBYR,,Anchorage (AK),61.206944,-149.922222,,10,,7241,348,119,,0000-2400,1234567,998,,38114,,, +700,VEN,,YVMH R Popular,,Maracaibo (zul),10.65,-71.616667,,50,,8259,267,123,,1000-0400,1234567,,,45380,,, +700,USA,en,WZOO,,Asheboro (NC),35.763889,-79.834444,,1,,6717,291,124,,1200-2400,1234567,,,31600130,,, +700,B,pt,ZYI890 Rdio Clube de Teresina,,Teresina (PI),-5.168844,-42.764256,,10,,7873,233,126,,,,,,36901255,,, +700,CLM,es,HJCX W R,,Cali (val),3.466667,-76.5,,50,,9219,267,127,,,,28,,37382,,, +700,EQA,,HCRS2 R Sucre,,Guayaquil (gua),-2.2,-79.866667,,100,,9947,266,127,,,,993,,37111,,, +700,USA,,KALL,,North Salt Lake City (UT),40.891389,-111.941389,,10,,8092,316,128,,,,9926,,37937,,, +700,CLM,,HJNJ,,Vdel Canagua (ces),10.501467,-73.250706,,15,,8383,268,129,,,,,,37588,,, +700,USA,en,WCNF,,Dothan (AL),31.438611,-85.289444,,1.6,,7413,292,129,,1300-0100,1234567,,,41590,,, +700,VEN,,YVPQ R Sur,,Puerto Ordaz (blv),8.316667,-62.666667,,5,,7857,258,129,,0000-2400,1234567,95,,1993,,, +700,B,pt,ZYK686 Rdio Eldorado,,So Paulo/Avenida Guido Aliberti (SP),-23.645556,-46.577222,,50,,9866,227,130,,,,,,36901252,,, +700,B,pt,ZYH801 Rdio Pouso Alto AM,,Piracanjuba (GO),-17.318275,-48.981394,,25,,9382,232,131,,,,,,36901257,,, +700,B,pt,ZYI428 Rdio Sorriso,,Sorriso (MT),-12.554594,-55.721769,,20,,9314,240,132,,,,,,36901256,,, +700,GTM,,TGHR R Mundial,,Ciudad de Guatemala (gut),14.666667,-90.466667,,10,,9185,284,134,,1000-0600,1234567,,,40498,,, +700,NCG,,YNMM R Managua,,Managua (mng),12.15,-86.283333,,10,,9126,280,134,,1000-2400,1234567,,,52193,,, +700,SLV,es,YSJW R Mi Gente,,San Miguel/El Papaln (smg),13.462089,-88.118783,,10,,9135,282,134,,,,,,31100004,,, +700,SLV,es,YSJW R Mi Gente,,San Salvador/Los Jurez (ssl),13.764722,-89.222778,,10,,9182,283,134,,,,,,31100002,,, +700,SLV,es,YSJW R Mi Gente,,Santa Ana (sta),13.972778,-89.555,,10,,9186,283,134,,,,,,31100003,,, +700,MEX,es,XEXPUJ-AM,,Xpujil (cam),18.510833,-89.420556,,5,,8781,286,136,,,,,,45064,,, +700,USA,en,KXLX,,Spokane/Airway Heights (WA),47.608611,-117.373611,,0.6,,7712,323,136,,,,993,,39803,,, +700,B,pt,ZYJ225 Rdio Capital do Papel,,Telmaco Borba (PR),-24.355833,-50.605833,,10,,10141,230,137,,,,,,36901251,,, +700,CTR,,TIJC R Sonora,,San Jos (sjs),9.966667,-84.066667,,5,,9167,277,137,,1100-0400,1234567,,,40585,,, +700,HND,,HRKL,,Tegucigalpa (fmz),14.066667,-87.216667,,5,,9022,282,137,,,,,,37773,,, +700,USA,xx,KHSE,,Wylie (TX),33.033611,-96.298611,,0.92,,7953,300,137,,,,,,38563,,, +700,ARG,es,LV3 R Crdoba,,Crdoba (cb),-31.38805,-64.083133,,25,,11525,236,138,,0000-2400,1234567,2,,40253,,, +700,DOM,,HIDC R Mao,,Santa Cruz de Mao (vav),19.55,-71.066667,,0.25,,7458,273,138,,1000-0400,1234567,,,37237,,, +700,MEX,es,XEETCH-AM,,Etchojoa (son),26.922331,-109.627056,,5,,9261,306,138,,,,,,43981,,, +700,HND,,HRRH,,Santa Rosa de Copan (cop),14.716667,-88.816667,,3,,9072,283,139,,,,,,37836,,, +700,USA,,KSEV,,Tomball (TX),30.192778,-95.594444,,1,,8156,298,139,,,,,,39345,,, +700,PRG,,ZP12 R.Carlos Antonio Lopez-LV del Neembuco,,Pilar (neb),-26.866667,-58.366667,,10,,10794,234,140,,0900-0200,1234567,6,,45507,,, +700,B,pt,ZYH500 Rdio Cultura,,Feira de Santana (BA),-12.247317,-38.943711,,1,,8369,226,141,,,,,,36901258,,, +700,PRG,,ZP76,,Lagerenza (apg),-19.966667,-60.75,,5,,10297,240,141,,,,,,45559,,, +700,MEX,es,XEGD-AM La Poderosa,,Hidalgo del Parral (chi),26.921294,-105.650289,,1,,9038,303,144,,,,,,44049,,, +700,PRU,,OBU7K,,Urubamba/Cerro Sacro (cus),-13.359306,-72.112311,,3,,10412,253,144,,,,,,37000119,,, +700,USA,,KGRV,,Winston (OR),43.144444,-123.459167,,0.47,,8382,325,144,,,,9953,,38510,,, +700,USA,,KMBX,,Soledad (CA),36.464167,-121.297778,,0.7,,8939,320,145,,,,891,,38887,,, +700,MEX,es,XERV-AM R Capital,,Villahermosa (tab),17.930925,-92.978778,,0.5,,9063,288,147,,,,,,44721,,, +700,MEX,es,XELX-AM Ke Buena,,Heroica Zitcuaro (mic),19.445319,-100.341428,,0.5,,9396,295,148,,,,,,44332,,, +700,B,pt,ZYK247 Rdio Sideral AM,,Getlio Vargas (RS),-27.899444,-52.246111,,1,,10562,229,149,,,,,,36901253,,, +700,PRU,es,OBZ4H R Integridad,,San Miguel (lim),-12.016667,-77.066667,,1,,10621,257,149,,,,,,40416,,, +700,B,pt,ZYJ507 Rdio Aliana,,Italva (RJ),-21.437161,-41.682375,,0.25,,9412,224,151,,,,,,36901259,,, +700,CHL,,CA70 R Nibsan,,Copiap (AT),-27.866667,-70.866667,,1,,11613,243,152,,1030-0300,1234567,,,35707,,, +700,CHL,,CD70 R Magallanes,,Punta Arenas (MA),-53.133333,-71.016667,,5,,13727,225,152,,,,,,35910,,, +700,MEX,es,XEDKR-AM R RED,,Guadalajara (jal),20.641853,-103.340219,,0.15,,9472,298,153,,,,,,43914,,, +700,B,pt,ZYK356 Rdio Batovi AM,,So Gabriel (RS),-30.3,-54.305556,,0.25,,10895,230,156,,,,,,36901254,,, +700,CHL,,CD70 R Valdivia,,Valdivia (LL),-39.8,-73.25,,1,,12772,236,156,,1030-0500,1234567,,,35843,,, +702,MCO,fr,China R Int.,,Col de la Madone [F] (6),43.794406,7.416033,,200,,928,175,43,,0800-1300,1234567,5,,314,,, +702,MCO,fr,China R Int.,,Col de la Madone [F] (6),43.794406,7.416033,,200,,928,175,43,,1800-2300,1234567,5,,314,,, +702,MCO,it,China R Int.,,Col de la Madone [F] (6),43.794406,7.416033,,200,,928,175,43,,1500-1800,1234567,5,,314,,, +702,MCO,zh,China R Int.,,Col de la Madone [F] (6),43.794406,7.416033,,200,,928,175,43,,1300-1500,1234567,5,,314,,, +702,TUR,tr,TRT Trk,,Istanbul/atalca (mam-ist),41.184181,28.512111,,600,,2065,117,50,,0400-2300,1234567,9989,,322,,, +702,D,de,Funkhaus Europa,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,1500-1900,....5..,9975,,310,,, +702,D,de,Funkhaus Europa,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,1500-2000,1234...,9975,,310,,, +702,D,de,Hamburger Hafenkonzert,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0500-0700,......7,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0000-0730,1234567,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0700-0730,......7,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0745-1500,12345..,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0745-2105,.....67,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,1900-2400,....5..,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2000-2105,1234...,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2120-2305,1234.67,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2320-2400,1234.67,9975,,310,,, +702,D,de,NDR Seewetterbericht,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0730-0745,1234567,9975,,310,,, +702,D,de,NDR Seewetterbericht,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2105-2120,1234.67,9975,,310,,, +702,D,de,NDR Seewetterbericht,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2305-2320,1234.67,9975,,310,,, +702,SVK,hu,SRo 5 Rdio Patria Maďarsk,,Koice/Čiatice (KE),48.798653,21.400528,,5,,1121,103,61,,0500-1700,1234567,2,,7400002,,, +702,SVK,sk,SRo 3 Rdio Devn,,Koice/Čiatice (KE),48.798653,21.400528,,5,,1121,103,61,,1700-0500,1234567,2,,7400002,,, +702,ALG,ar,R Laghouat,,Laghouat (3),33.688333,2.914167,,25,,2067,189,64,,0800-1600,1234567,,,429,,, +702,IRN,,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1800-1830,1234567,998,,1780,,, +702,IRN,az,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,0330-0530,1234567,998,,1780,,, +702,IRN,az,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1430-1700,1234567,998,,1780,,, +702,IRN,en,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1030-1130,1234567,998,,1780,,, +702,IRN,he,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,,0230-0300,1234567,998,,1780,,, +702,IRN,ka,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1700-1800,1234567,998,,1780,,, +702,IRN,ru,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,0300-0330,1234567,998,,1780,,, +702,IRN,ru,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1930-2030,1234567,998,,1780,,, +702,IRN,tr,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,,1830-1930,1234567,998,,1780,,, +702,SYR,ar,Idhaat al-Quds,,Homs=Hims (him),34.793456,36.714108,,100,,3075,117,68,,0300-2200,1234567,997,,321,,, +702,AZE,az,Azərbaycan R,,Baku (bak),40.398311,49.847022,,30,,3521,94,77,,0430-0530,1234567,4,,600002,,, +702,AZE,az,Azərbaycan R,,Baku (bak),40.398311,49.847022,,30,,3521,94,77,,1430-1700,1234567,4,,600002,,, +702,ARS,ar,BSKSA Idha'atu-i Jeddah,,Duba (tbk),27.438317,35.595681,,40,,3660,127,78,,0000-2400,1234567,,,47073,,, +702,IRN,fa,IRIB R Iran,,Bushehr (bus),28.936069,50.952239,,100,,4459,108,82,,0230-1430,1234567,1,,1778,,, +702,EGY,ar,ERTU Al-Shabab wal Riyadah/ERTU Al-Wadi al-Gaded,,El-Kharga (wjd),25.401194,30.553944,,10,,3597,136,83,,0400-2200,1234567,,,312,,, +702,OMA,ar,BBC WS,,A'Seela (shq),21.926333,59.625806,,800,290-340,5617,106,84,ME,1500-2100,1234567,0,,317,,, +702,EGY,ar,ERTU Janub Sa'id Misr,,Aswan (asn),24.074222,32.891583,,10,,3840,134,85,,0200-2200,1234567,,,311,,, +702,TJK,tg,Tojikiston R 1,,Orzu (ktl),37.539722,68.792583,,150,,5008,83,85,,2300-2000,1234567,,,47097,,, +702,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,0600-1215,1234567,982,,2348,,, +702,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,1700-1715,1234567,982,,2348,,, +702,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,1800-2330,1234567,982,,2348,,, +702,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,1215-1300,1234567,982,,2348,,, +702,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,1715-1800,1234567,982,,2348,,, +702,IND,pa,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,0800-0830,1234567,1,,47947,,, +702,IND,pa,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,1130-1230,1234567,1,,47947,,, +702,IND,pa,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,1300-1430,1234567,1,,47947,,, +702,IND,sir,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,1230-1300,1234567,1,,47947,,, +702,IND,ur,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,0015-0430,1234567,1,,47947,,, +702,IND,ur,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,0830-1130,1234567,1,,47947,,, +702,IND,ur,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,1430-1930,1234567,1,,47947,,, +702,ARS,ar,BSKSA Idha'atu-i Jeddah,,Bisha=Qal'at Bishah (asr),19.838394,42.622008,,10,,4757,125,95,,0300-2200,1234567,,,10600002,,, +702,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/XJTS904 (XJ),43.715833,87.595,,10,,5800,65,105,,0000-1600,1234567,,,47945,,, +702,AGL,,RNA Canal A,,Mulenvos/Baixo (lua),-8.856667,13.314722,,10,,6811,172,115,,0000-2400,1234567,,,47107,,, +702,CHN,zh,Jiangsu RGD Xinwen Pinl,,Nanjing/Gulizhen (JS),31.861022,118.673067,,200,,8601,54,119,,2000-1700,1234567,,,47943,,, +702,CHN,zh,Ulanqab RGD,,Jining/NMTS585 (NM),41.023056,113.073611,,10,,7489,52,122,,,,,,47941,,, +702,KRE,,KCBS Pyongyang Pangsong,,Ch'ongjin (hab),41.7646,129.708828,,50,,8238,40,122,,2100-1800,1234567,41,,47963,,, +702,CHN,,Jiangsu RGD Xinwen Pinl,,Nantong (JS),31.855833,121.010556,,50,,8729,52,126,,,,,,36200081,,, +702,CHN,,Jilin RGD Dazhong Shenghuo,,Jilin Shi (JL),43.8,126.5,,10,,7905,41,126,,,,,,36200077,,, +702,VTN,vi,VOV2,,Đ Nẵng (dan),16.083889,108.231111,,50,,9384,71,128,,2145-1700,1234567,983,,47971,,, +702,CHN,,Chaoyang RGD,,Lingyuan/LNTS331 (LN),41.233333,119.4,,3,,7799,47,130,,1000-1057,1234567,,,47939,,, +702,CHN,,Jiangsu RGD Xinwen Pinl,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,10,,8308,53,130,,,,,,36200885,,, +702,CHN,,Honghe RGD,,Gejiu/YNTS654 (YN),23.398333,103.161389,,10,,8417,70,131,,,,,,47940,,, +702,CHN,,Jiangsu RGD Xinwen Pinl,,Lianyungang (JS),34.666111,119.155278,,10,,8374,52,131,,,,,,36200079,,, +702,PHL,,DZAS-AM FEBC,,Bocaue (FEBC) (bul),14.8025,120.916111,,50,180,10292,62,131,,2045-1600,1234567,9981,,47967,,, +702,J,,JOKD NHK2,,Kitami (hok),44.002222,144.240556,,10,,8589,30,132,,2030-1500,1.....7,,,47961,,, +702,J,,JOKD NHK2,,Kitami (hok),44.002222,144.240556,,10,,8589,30,132,,2030-1635,.2345..,,,47961,,, +702,J,,JOKD NHK2,,Kitami (hok),44.002222,144.240556,,10,,8589,30,132,,2030-1640,.....6.,,,47961,,, +702,J,,JOFB NHK2,,Hiroshima (chg-hir),34.435833,132.47,,10,,9060,42,134,,2030-1500,1.....7,,,47960,,, +702,J,,JOFB NHK2,,Hiroshima (chg-hir),34.435833,132.47,,10,,9060,42,134,,2030-1635,.2345..,,,47960,,, +702,J,,JOFB NHK2,,Hiroshima (chg-hir),34.435833,132.47,,10,,9060,42,134,,2030-1640,.....6.,,,47960,,, +702,TWN,,Ching-Cha Kuangpo Tientai,,Taichung (TCS),24.153158,120.632389,,10,,9414,57,135,,2055-1400,1234567,,,47970,,, +702,CHN,,Neijiang RGD,,Neijiang/SCTS521 (SC),29.61,105.077222,,1,,8003,65,137,,,,,,47944,,, +702,CHN,,Jiangsu RGD Xinwen Pinl,,Changzhou (JS),31.783333,119.95,,1,,8678,53,143,,,,,,36200078,,, +702,CHN,zh,CRI News R,,Zhuhai/GDTS909 (GD),22.38255,113.557286,,1,,9157,63,144,,0000-2400,1234567,,,47946,,, +702,INS,id,PM3CEO R Barisan Nauli,,Sidikalang (SU),2.75,98.316667,,1,,9896,87,147,,,,,,35400026,,, +702,AUS,,6KP ABC Northwest WA,,Karratha (WA),-20.791833,116.893361,,10,,13205,87,148,,0000-2400,1234567,9993,,47937,,, +702,INS,id,R Tona 702 AM,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,60,,35400007,,, +702,AUS,en,2BL ABC Sydney,,Sydney/Prestons (NSW),-33.942097,150.885556,,50,,16545,68,152,,0000-2400,1234567,9966,,47938,,, +702,INS,id,R Suara Konco Tani,,Sleman/Sidokarto (YO-sle),-7.772778,110.304444,,1,,11636,84,152,,2130-1700,1234567,,,47957,,, +702,INS,id,RRI Pro-1,,Manokwari/Maripi (PB-man),-0.961022,134.00845,,2,,12545,59,152,,1957-1500,1234567,,,47955,,, +702,INS,id,RSKA-R.Suara Kasih Agung,,Jayapura (PA-jyp),-2.616667,140.65,,1,,13082,54,157,,,,,,47951,,, +702,NZL,,1XP R Live,,Auckland/Henderson (AUK),-36.844383,174.631153,,10,,18083,33,164,,,,,,47965,,, +702,NZL,en,R Sport,,Ashburton/Winchmore (CAN),-43.804167,171.704167,,1,,18587,56,175,,,,,,47966,,, +705,ROU,,RR,b,Bucuresti / Otopeni (BU),44.5625,26.125,,0.025,,1674,112,90,,,,10,L1020 U1040 ,ID+8.5 gap,85663,, +705,RUS,,KI,b,Chkalovskiy,55.895833,37.958333,,0.025,,2085,66,94,,,,,15.0s,IDx2,85657,, +705,RUS,,LG,b,Chkalovskiy,55.854167,38.125,,0.025,,2096,66,94,,,,,,85659,,, +705,RUS,,KP,b,Kargopol (AR),61.520833,38.958333,,0.025,,2208,49,95,,,,0,L400 U400 ,85658,,, +705,RUS,,MN,b,Manychsky,47.0625,40.375,,0.025,,2487,89,98,,,,0,L1007 U1006 ,85660,,, +705,RUS,,P,b,Syktyvkar (KO),61.604167,50.791667,,0.025,,2830,51,101,,,,,,85661,,, +705,RUS,,S,b,Syktyvkar (KO),61.645833,50.875,,0.025,,2834,51,101,,,,,,85664,,, +705,RUS,,PX,b,Perm / Bolshoye Savino (PR),57.9375,56.125,,0.025,,3158,58,105,,,,,,85662,,, +705,LAO,lo,LNR Luang Prabang Provincial R.,,Luang Prabang (lpb),19.864444,102.107778,,2.5,,8654,73,139,,1025-1500,1234567,,,47972,,, +705,LAO,lo,LNR Luang Prabang Provincial R.,,Luang Prabang (lpb),19.864444,102.107778,,2.5,,8654,73,139,,2200-0800,1234567,,,47972,,, +707,RUS,,BD,b,Khanty Mansiysk (KY),61.020833,68.958333,,0.025,,3798,50,111,,,,,U1010 ,IDx2 + 5 tone,85665,, +707,RUS,,ZJ,b,Khanty-Mansiysk (KY),61.0625,69.208333,,0.025,,3809,50,111,,,,,L707 U707 ,86776,,, +707,RUS,,YA,b,Yamburg,67.979167,75.125,,0.025,,3935,37,112,,,,,,85666,,, +708,RUS,,RD,b,Kurgan (KG),55.4375,65.375,,0.025,,3775,61,111,,,,,,85669,,, +708,RUS,,UN,b,Kurgan (KG),55.520833,65.458333,,0.025,,3777,60,111,,,,,U1038 ,85670,,, +710,CAN,,CKVO,,Clarenville (NL),48.143333,-53.961111,,10,,4201,289,89,,,,2,,36418,,, +710,USA,en,WOR,i,New York/Lyndhurst [NJ] (NY),40.797222,-74.09,,50,,5968,292,100,,,,1,,42617,,, +710,USA,,KXMR,,Bismarck (DC) (ND),46.834444,-100.521944,,50,,7011,313,110,,,,998,,39806,,, +710,CUB,es,R Rebelde,,Chambas/CTOM3 (ca),22.374244,-78.893294,,200,,7750,281,112,,,,,,31600055,,, +710,CUB,es,R Rebelde,,Mart (ma),22.996289,-80.918522,,200,,7833,283,112,,,,9998,,31600102,,, +710,USA,,WFNR,,Blacksburg (VA),37.133611,-80.355,,10,,6642,293,113,,,,,,41416,,, +710,USA,,WDSM,,Superior (WI),46.653611,-92.147222,,5,,6589,308,116,,,,,,41209,,, +710,USA,es,WAQI,,Miami (FL),25.968611,-80.378889,,50,,7548,284,116,,,,31,,40738,,, +710,CUB,es,R Rebelde,,Cacocm (ho),20.736878,-76.3294,,50,,7716,278,117,,,,,,52611,,, +710,CUB,es,R Rebelde,,Santa Clara/CTOM1 (vc),22.447306,-79.891306,,50,,7811,281,118,,,,,,36581,,, +710,CUB,es,R Rebelde,,La Julia (Bataban) (my),22.805239,-82.244911,,50,,7938,283,119,,,,0,,52588,,, +710,USA,en,KIRO,,Seattle (WA),47.398611,-122.433333,,50,,7931,326,119,,,,9994,,38635,,, +710,USA,,WEKC,,Williamsburg (KY),36.774444,-84.168056,,4.2,,6908,295,120,,,,,,41275,,, +710,USA,en,WEGG,,Rose Hill (NC),34.863333,-78.037778,,2.5,,6673,289,120,,1200-2400,1234567,,,41266,,, +710,VEN,,YVKY R Capital,,Caracas (dcf),10.462633,-67.072239,,50,,7966,263,120,,1000-0600,1234567,995,,45360,,, +710,CUB,es,R Rebelde,,Camagey/CTOM1 (cm),21.362211,-77.958222,,25,,7773,279,121,,,,,,36477,,, +710,USA,,KXMR,,Bismarck (N) (ND),46.668889,-100.775833,,4,,7037,313,121,,,,,,20012545,,, +710,USA,,KCMO,,Kansas City (MO),39.318889,-94.496667,,5,,7315,304,123,,,,,,38181,,, +710,CAN,fr,CBF-17,,Lac-douard (QC),47.664167,-72.276111,,0.04,,5377,298,125,,,,,,20109092,,, +710,USA,,WUFF,,Eastman (GA),32.221667,-83.217778,,2.5,,7217,291,125,,,,,,43254,,, +710,CAN,fr,CBF-18,,Parent (QC),47.924444,-74.612778,,0.04,,5499,299,126,,,,,,20109093,,, +710,USA,en,WPOG,,St. Matthews (SC),33.617778,-80.780556,,1,,6948,290,126,,1200-2400,1234567,,,42777,,, +710,CAN,fr,CBF-1,,Senneterre (QC),48.378333,-77.224444,,0.04,,5623,301,127,,,,,,20109091,,, +710,USA,,KGNC,,Amarillo (TX),35.419722,-101.556667,,10,,8046,306,127,,,,,,38498,,, +710,CAN,en,CBOM,,Maniwaki (QC),46.373611,-75.956389,,0.04,,5685,299,128,,,,,,20109094,,, +710,USA,,KEEL,,Shreveport (LA),32.676389,-93.859722,,5,,7839,299,128,,,,9998,,38316,,, +710,USA,,KNUS,,Denver (CO),39.955278,-104.850278,,5,,7824,311,128,,,,10,,39027,,, +710,USA,,KBMB,,Black Canyon City (D) (AZ),34.08,-112.154167,,22,,8731,312,129,,,,9992,,38903,,, +710,USA,,WROM,,Rome (GA),34.253056,-85.155278,,1,,7173,294,129,,,,,,42900,,, +710,USA,,WTPR,,Paris (TN),36.279722,-88.342222,,0.75,,7204,297,130,,,,,,43200,,, +710,PTR,,WKJB,,Mayaguez (PR),18.168889,-67.150833,,0.75,,7308,269,131,,0915-0400,1234567,,,42022,,, +710,DOM,,HIWP Onda del Caribe,,San Cristbal (cri),18.416667,-70.1,,1,,7488,271,132,,,,,,52234,,, +710,B,pt,ZYI534 Rdio Rural,,Santarm (PA),-2.445978,-54.731522,,5,,8316,245,133,,,,,,36901273,,, +710,CLM,es,HJNX R Red,,Medelln (ant),6.316667,-75.566667,,10,,8906,268,133,,,,997,,37600,,, +710,PNR,es,HOQ51 KW Continente,,Pedregal (pnm),9.079,-79.436039,,10,,8929,272,133,,0000-2400,1234567,,,37713,,, +710,USA,,WNTM,,Mobile (AL),30.720278,-88.059444,,1,,7648,293,133,,,,,,42714,,, +710,B,pt,ZYH891 Rdio Verdes Campos,,Pinheiro (MA),-2.533022,-45.079425,,1,,7749,236,134,,,,,,36901264,,, +710,USA,,WFCM,,Smyrna (TN),35.975278,-86.554444,,0.25,,7120,296,134,,,,,,41365,,, +710,USA,en,KSPN,,Los Angeles (IBOC) (CA),34.173889,-118.409722,,10,,9028,317,134,,,,0,,39405,,, +710,CUB,es,R Rebelde,,Yaguajay (ss),22.311972,-79.216556,,1,,7777,281,135,,,,,,31600116,,, +710,B,pt,ZYH240 Jornal AM 710,,Macei (AL),-9.516667,-35.733333,,1,,7942,224,136,,,,,,36901260,,, +710,B,pt,ZYJ451 Rdio Difusora Carioca,,Rio de Janeiro/Rua Mariano Pina (RJ),-22.794722,-43.053889,,10,,9611,225,136,,,,4,,36901277,,, +710,USA,en,WPGX948,,Syracuse (NY),43.095889,-76.164917,,0.01,,5930,295,136,,,,,,20010483,,, +710,CUB,es,R Guam,,La Palma (pr),22.746561,-83.551156,,1,,8029,284,137,,,,,,31600124,,, +710,PRU,,OCX7I R Nacional del Peru,,Puerto Maldonado (mdd),-12.416667,-69.166667,,10,,10137,251,137,,,,,,40435,,, +710,USA,,KBMB,,Black Canyon City (N) (AZ),34.080556,-112.153611,,3.9,,8731,312,137,,,,9992,,20016052,,, +710,BOL,,CP50 R Po XII,,Llallagua/Campamento Siglo XX (pts),-18.366667,-66.616667,,10,,10508,246,139,,0830-0230,1234567,,,36702,,, +710,USA,en,WPUP271,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010484,,, +710,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010485,,, +710,B,pt,ZYH628 Rdifusora Asa Branca,,Boa Viagem (CE),-5.1059,-39.775222,,0.25,,7707,230,140,,,,,,36901261,,, +710,B,pt,ZYH710 Rdio Nova Aliana,,Braslia/Parque Ceilndia (DF),-15.787225,-48.017389,,2.5,,9183,232,140,,,,,,36901274,,, +710,B,pt,ZYI933 Rdio Clube de Barras,,Barras (PI),-4.235106,-42.287956,,0.25,,7757,233,141,,,,,,36901263,,, +710,ARG,es,LRA19 R Nacional,,Puerto Iguaz (mn),-25.602322,-54.582639,,5,,10470,232,142,,0900-0300,1234567,,,39939,,, +710,B,pt,ZYI685 Rdio Educadora de Conceio,,Conceio (PB),-7.55,-38.5,,0.25,,7882,228,142,,,,,,36901269,,, +710,CLM,es,HJYD,,Paipa (boy),5.783333,-73.116667,,1,,8786,265,143,,,,,,35901384,,, +710,HND,,HRKN,,Catacamas (ola),14.816667,-85.916667,,1,,8869,281,143,,,,,,37774,,, +710,HND,,HRZE2,,Puerto Cortes (cor),15.816667,-87.916667,,1,,8916,283,143,,,,,,37891,,, +710,USA,,KFIA,,Carmichael (CA),38.832778,-121.3175,,1,,8711,321,143,,,,9996,,38390,,, +710,USA,,KURV,,Edinburg (D) (TX),26.328611,-98.159722,,1,,8649,297,143,,,,,,20016199,,, +710,USA,,KURV,,Edinburg (N) (TX),26.328333,-98.16,,0.91,,8650,297,143,,,,,,39594,,, +710,B,pt,ZYH910 Rdio Verdes Vales,,Graja (MA),-5.815253,-46.155339,,0.25,,8123,236,144,,,,,,36901266,,, +710,GTM,,TGXL R Tecn Umn,,Quetzaltenango (qzt),14.816667,-91.516667,,1,,9242,285,144,,1030-0400,1234567,,,40558,,, +710,MEX,es,XEOLA-AM Huasteca,,Ciudad Madero (tam),22.253167,-97.857808,,1,,8992,295,144,,,,,,44497,,, +710,PNR,es,HOB52 Ondas del Caribe,,Changuinola (bct),9.363611,-82.445,,1,,9109,275,144,,1000-0400,1234567,,,37676,,, +710,ARG,es,LRL202 R Diez,,Buenos Aires/San Martn (df),-34.5415,-58.598917,,5,,11511,230,145,,0000-2400,1234567,997,,51797,,, +710,B,pt,ZYI436 Rdio Nova Xavantina,,Nova Xavantina (MT),-14.6391,-52.359872,,1,,9314,236,145,,,,,,36901278,,, +710,B,pt,ZYI901 Rdio Alvorada do Serto,,So Joo do Piau (PI),-8.369167,-42.270917,,0.25,,8158,231,145,,,,,,36901262,,, +710,B,pt,ZYJ328 Rdio Alternativa,,Cndido de Abreu (PR),-24.582778,-51.336944,,1.8,,10200,230,145,,,,,,36901267,,, +710,MEX,es,XEMP-AM,,Los Picos de Iztacalco (dif),19.379792,-99.102561,,1,,9325,294,145,,,,,,44400,,, +710,MEX,es,XERK-AM R Korita,,Tepic (nay),21.522381,-104.922389,,1,,9487,300,145,,,,,,44679,,, +710,EQA,,Escuelas R Populares ERPE,,Riobamba (chi),-1.666667,-78.633333,,1,,9816,265,146,,,,,,32600001,,, +710,MEX,es,XERL-AM,,Colima (col),19.257867,-103.725008,,1,,9621,297,146,,,,,,44682,,, +710,ARG,es,LRA17 R Nacional,,Zapala (nq),-38.891133,-70.055758,,5,,12516,235,148,,0900-0300,1234567,,,39937,,, +710,MEX,es,XERPO-AM La Ley,,Oaxaca (oax),17.061842,-96.733306,,0.5,,9382,291,148,,,,,,44701,,, +710,MEX,es,XEYK-AM La Z,,Conkal (yuc),21.060514,-89.527792,,0.25,,8566,288,148,,,,,,45095,,, +710,B,pt,ZYH490 Rdio 21 News,,Eunpolis (BA),-16.374389,-39.614983,,0.25,,8811,225,149,,,,,,36901275,,, +710,B,pt,ZYI386 Rdio Cultura de Cuiab,,Cuiab (MT),-15.619094,-56.096931,,0.5,,9621,239,149,,,,,,36901279,,, +710,B,pt,ZYL219 Rdio Cancella,,Ituiutaba (MG),-18.975839,-49.506217,,0.5,,9569,232,149,,,,,,36901271,,, +710,PRU,,OAU6L R Amor,,Arequipa/Socabaya (are),-16.469444,-71.525,,1,,10650,250,149,,,,,,37000100,,, +710,MEX,es,XEDP-AM La Ranchera,,Ciudad Cuauhtmoc (chi),28.417956,-106.806081,,0.25,,8967,305,150,,,,,,43928,,, +710,MEX,es,XELZ-AM La Reina,,Torren (coa),25.554039,-103.454858,,0.25,,9034,301,150,,,,,,44335,,, +710,MEX,es,XEMAR-AM Amor 710,,Acapulco (gue),16.837222,-99.909722,,0.35,,9603,293,150,,,,,,44346,,, +710,MEX,es,XEPS-AM,,Empalme (son),27.962222,-110.809167,,0.25,,9229,308,150,,,,,,44577,,, +710,MEX,es,XESMR-AM R Frmula,,San Luis Potos (slp),22.152778,-100.973333,,0.25,,9192,297,150,,,,,,44756,,, +710,B,pt,ZYL258 Rdio Manhuau,,Manhuau/Alto da Rdio (MG),-20.258386,-42.047106,,0.25,,9313,225,151,,,,,,36901270,,, +710,B,pt,ZYL319 Planeta AM 710,,Carmo do Paranaba (MG),-18.9947,-46.311456,,0.25,,9402,229,151,,,,,,36901265,,, +710,MEX,es,XEBL-AM Ke Buena,,Culiacn/Col. Stase (sin),24.826558,-107.407353,,0.25,,9329,303,151,,,,,,43783,,, +710,B,pt,ZYL333 Rdio Difusora Pouso Alegre,,Pouso Alegre (MG),-22.252569,-45.9153,,0.25,,9698,227,152,,,,,,36901272,,, +710,B,pt,ZYK559 Rdio 710,,Bauru (SP),-22.319094,-49.093739,,0.25,,9867,230,153,,,,,,36901276,,, +710,B,pt,ZYJ793 Rdio Fraiburgo,,Fraiburgo (SC),-27.010833,-50.906944,,0.25,,10409,229,154,,,,,,36901268,,, +711,F,fr,France Info,,Rennes/Thourie (35),47.855278,-1.486389,,300,,736,233,40,,0000-2400,1234567,0,,327,,, +711,ROU,ro,SRR R Romnia Actualităţi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0000-2400,1234567,4,,332,,, +711,E,es,COPE,,Murcia (MUR-MU),37.9872,-1.162722,,10,,1677,204,64,,0000-2400,1234567,0,,325,,, +711,UKR,uk,UR 1 Persha Prog.,,Dokuchaievsk (DO),47.731883,37.687706,,40,,2273,90,64,,0400-0800,1234567,2,,335,,, +711,UKR,uk,UR 1 Persha Prog.,,Dokuchaievsk (DO),47.731883,37.687706,,40,,2273,90,64,,1500-2000,1234567,2,,335,,, +711,AOE,,SNRT Al Ida Al Amazighia,,Layoune=El Aain (lbs-laa),27.173278,-13.361167,,300,,3225,218,65,,0000-2400,1234567,11,,331,,, +711,EGY,ar,ERTU Al-Shabab wal Riyadah,,Tanta (ghb),30.818194,31.000181,,100,,3100,130,68,,0000-2400,1234567,9998,,326,,, +711,IRN,fa,IRIB R Ahwaz,,Ahwaz (kuz),31.248511,48.483444,,200,,4109,108,75,,1726-2300,1234567,62,,328,,, +711,RUS,ru,R Rossii,,Naryan-Mar (NE),67.647306,53.049361,,7,,3013,37,79,,0200-2200,1234567,,,333,,, +711,YEM,ar,YGCRT Sana'a R,,Sana'a (san),15.358333,44.216667,,200,,5270,127,87,,0255-2130,1234567,,,337,,, +711,PAK,,PBC R Pakistan,,Dera Ismail Khan (kpk),31.827225,70.848833,,100,,5572,87,93,,,,,,31500053,,, +711,IND,,AIR East,,Siliguri (WB),26.759722,88.440556,,200,,7166,79,106,,0025-0430,123456,,,47985,,, +711,IND,,AIR East,,Siliguri (WB),26.759722,88.440556,,200,,7166,79,106,,0025-0500,......7,,,47985,,, +711,IND,,AIR East,,Siliguri (WB),26.759722,88.440556,,200,,7166,79,106,,0630-0930,1234567,,,47985,,, +711,IND,,AIR East,,Siliguri (WB),26.759722,88.440556,,200,,7166,79,106,,1145-1742,1234567,,,47985,,, +711,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.237794,96.134022,,400,,8228,77,113,,0730-1000,1234567,,,22100006,,, +711,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.237794,96.134022,,400,,8228,77,113,,1130-1530,1234567,,,22100006,,, +711,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.237794,96.134022,,400,,8228,77,113,,2300-0130,1234567,,,22100006,,, +711,TZA,sw,TBC Taifa,,Kigoma (kgm),-4.830667,29.726036,,10,,6705,153,114,,0200-2100,1234567,,,2352,,, +711,CHN,,Qinghai RGD,,Golmud=Ge'ermu (QH),36.418333,94.763611,,10,,6798,67,115,,0925-1505,1234567,,,47978,,, +711,CHN,,Qinghai RGD,,Golmud=Ge'ermu (QH),36.418333,94.763611,,10,,6798,67,115,,2220-0600,1234567,,,47978,,, +711,KOR,ko,HLKA KBS 1 R,,Sorae (seo),37.409167,126.792222,,500,,8511,45,115,,0000-2400,1234567,0,,47988,,, +711,CHN,zh,CNR 1,,Huzhu/Duoshidai (QH),36.877778,101.956944,,10,,7203,62,119,,2025-1805,1234567,,,36201279,,, +711,VTN,vi,VOV1,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2145-1700,1234567,,,48003,,, +711,TWN,,Han Sheng GD Kuanghua zhi Sheng,,Hsinfeng (HC),24.92925,120.997342,,250,,9364,56,121,,0655-0105,1234567,0,,48000,,, +711,CHN,zh,Zhengzhou ZZR JGD,,Zhengzhou/HETS804 (HE),34.778056,113.579444,,10,,8058,55,128,,2150-1700,1234567,,,47984,,, +711,THA,th,Sor. Wor. Sor.,,Ubon Ratchathani/232 Somdet Rd (urt),15.269256,104.929028,,20,,9241,74,132,,2130-1700,1234567,,,47999,,, +711,THA,th,Wor. Por. Thor.,,Chiang Mai/Don Kaew Road (cmi),18.851667,98.970833,,5,,8535,76,135,,2245-1700,1234567,,,47997,,, +711,TWN,,BCC Country Network,,Tainan (TN),23.118367,120.151517,,10,,9482,58,135,,0000-2400,1234567,,,48001,,, +711,CHN,,Fuyang RGD Jiaotong,,Fuyang (AH),32.9,115.85,,3,,8351,55,136,,,,,,47977,,, +711,THA,th,Wor. Sor. Por. 711 Jed-Neung-Neung,,Lop Buri/Fort Phahonyothin (lpb),14.883333,100.9,,5,,9008,77,137,,2130-1700,1234567,,,47998,,, +711,CHN,,Panzhihua RGD,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,1,,8055,69,138,,1155-1505,1234567,,,47982,,, +711,CHN,,Panzhihua RGD,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,1,,8055,69,138,,2225-0530,1234567,,,47982,,, +711,CHN,zh,CNR 1,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,1200-1230,1234567,,,47983,,, +711,CHN,zh,CNR 1,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,2230-2300,1234567,,,47983,,, +711,CHN,zh,Quzhou RGD Xinwen Tai,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,1230-1500,1234567,,,47983,,, +711,CHN,zh,Quzhou RGD Xinwen Tai,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,2155-2230,1234567,,,47983,,, +711,CHN,zh,Quzhou RGD Xinwen Tai,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,2300-1200,1234567,,,47983,,, +711,PHL,,DZLW-AM Radyo Isarog,,Naga City/Haring (cas),13.65,123.166667,,10,,10533,61,139,,,,,,47994,,, +711,CHN,zh,Huaibei JGD,,Huaibei (AH),33.956972,116.783444,,1,,8309,54,140,,,,,,36201248,,, +711,PHL,,DZYI-AM Sonshine R,,Ilagan (isa),17.116667,121.883333,,5,,10136,60,140,,,,,,47991,,, +711,PHL,tl,DZVR-AM Bombo Radyo,,Laoag City (iln),18.183333,120.583333,,5,,9961,60,140,,,,,,47993,,, +711,CHN,,Mianyang RGD,,Mianyang/SCTS721 (SC),30.183333,113.216667,,1,,8442,59,141,,,,,,47981,,, +711,CHN,,Lu'an RGD,,Lu'an (AH),31.75,116.483333,,1,,8489,55,142,,,,,,36200076,,, +711,CHN,,Lishui RGD,,Lishui (ZJ),28.465411,119.958611,,1,,8981,55,144,,,,,,47979,,, +711,PHL,,DXIC-AM Radyo Agong,,Iligan City (ldn),8.234167,124.252778,,5,,11101,63,144,,,,,,47992,,, +711,PHL,,DXRD-AM Sonshine R,,Davao City (dvs),7.066667,125.6,,5,,11291,62,144,,????-1500,1234567,,,47990,,, +711,INS,id,RSPD Blora,,Blora (JT-blo),-6.95,111.416667,,0.5,,11639,82,155,,,,,,35400027,,, +711,AUS,en,4QW ABC Southern Queensland,,Roma/St.George (QLD),-27.997583,148.674633,,10,,15908,64,157,,0000-2400,1234567,20,,47974,,, +711,NZL,en,2XP LiveSPORT,,Wellington/Horokiwi (WGN),-41.21925,174.857589,,5,,18521,40,168,,,,,,47989,,, +713,RUS,,TV,b,Ostrov-Verete,57.3125,28.458333,,0.025,,1521,59,88,,,,0,L400 U400 ,85673,,, +713,RUS,,CHC,b,Kazan (TS),55.854167,49.125,,0.025,,2778,64,101,,,,,,85671,,, +713,RUS,,DO,b,Kazan (TS),55.854167,49.125,,0.025,,2778,64,101,,,,,,85672,,, +715,CZE,,C,b,Caslav (ST),49.9375,15.458333,,0.025,,677,107,80,,,,,L1090 ,85674,,, +715,CZE,,F,b,Caslav (ST),49.9375,15.375,,0.025,,671,108,80,,,,987,L1047 U1011 ,85677,,, +715,RUS,,SHA,b,Ostrov-Verete,57.3125,28.458333,,0.025,,1521,59,88,,,,,,85679,,, +715,RUS,,TV,b,Ostrov,57.3125,28.458333,,0.025,,1521,59,88,,,,,,85680,,, +715,UKR,,D,b,Odesa/Centram (OD),46.4375,30.708333,,0.025,,1862,100,92,,,,,L980 U980 ,IDx2 + 7.5 tone,85675,, +715,UKR,,E,b,Odesa (OD),46.395833,30.708333,,0.025,,1864,100,92,,,,,,85676,,, +718,UKR,,SL,b,Soloviivka,50.1875,29.541667,,0.025,,1621,88,89,,,,15,L997 U997 ,85683,,, +718,RUS,,AN,b,Belgorod (BE),50.645833,36.541667,,0.025,,2083,82,94,,,,,,85681,,, +718,RUS,,BX,b,Belgorod (BE),50.604167,36.625,,0.025,,2089,83,94,,,,,,85682,,, +718,RUS,,UR,b,Chkalovsky,55.854167,38.125,,0.025,,2096,66,94,,,,,L1020 U1020 10.0s,86778,,, +720,D,de,WDR 2/WDR Vera,,Langenberg/Rommelsweg (nrw),51.351111,7.138333,,64,,98,149,21,,0000-2400,1234567,9991,,340,,, +720,G,en,BBC R 4,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,10,,869,293,56,,0600-0100,1234567,0,,343,,, +720,G,en,BBC WS,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,10,,869,293,56,,0100-0600,1234567,0,,343,,, +720,CYP,ar,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.621694,33.002311,,500,105,2869,122,59,,1700-2100,1234567,,,339,,, +720,CYP,ar,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.621694,33.002311,,500,105,2869,122,59,ME,0300-0700,1234567,,,339,,, +720,CYP,en,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.621694,33.002311,,500,105,2869,122,59,,0700-0900,1234567,,,339,,, +720,CYP,en,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.621694,33.002311,,500,105,2869,122,59,,2100-2300,1234567,,,339,,, +720,ROU,ro,SRR R Romnia Actualităţi,,Sinaia (PH),45.374389,25.549833,,14,,1584,111,61,,0000-2400,1234567,998,,355,,, +720,ROU,ro,SRR R Romnia Actualităţi,,Baia Mare (MM),47.660339,23.596903,,7,,1323,105,62,,0000-2400,1234567,,,353,,, +720,G,en,BBC R 4,,Crystal Palace (EN-GTL),51.424167,-0.074933,,0.75,,453,263,63,,0600-0100,1234567,,,342,,, +720,G,en,BBC WS,,Crystal Palace (EN-GTL),51.424167,-0.074933,,0.75,,453,263,63,,0100-0600,1234567,,,342,,, +720,POR,pt,Antena 1,,Mirandela/Carvalhais (bgc),41.515556,-7.173153,,10,,1562,226,63,,0000-2400,1234567,,,351,,, +720,POR,pt,Antena 1,,Castelo Branco (cab),39.824764,-7.524939,,10,,1733,223,64,,0000-2400,1234567,,,347,,, +720,POR,pt,Antena 1,,Guarda (gua),40.536678,-7.280472,,10,,1656,224,64,,0000-2400,1234567,,,350,,, +720,ROU,ro,SRR R Romnia Actualităţi,,Nufăru/Releul Delta (TL),45.150194,28.924583,,14,,1817,106,64,,0000-2400,1234567,,,354,,, +720,POR,pt,Antena 1,,Elvas/Caia (ple),38.885917,-7.129639,,10,,1804,221,65,,0000-2400,1234567,,,348,,, +720,POR,pt,Antena 1,,Faro/Meia-Lgua (agv),37.022028,-7.882889,,10,,2016,219,67,,0000-2400,1234567,,,352,,, +720,G,en,BBC R 4,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,0.25,,963,295,73,,0600-0100,1234567,2,,341,,, +720,G,en,BBC WS,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,0.25,,963,295,73,,0100-0600,1234567,2,,341,,, +720,CNR,es,RNE R 5,,La Laguna/Finca Espaa (STC-TF),28.47545,-16.29385,,25,,3229,224,75,,0000-2400,1234567,,,338,,, +720,IRN,ar,Sawt al-Mujahedin,,Mahidasht (ksh),34.264069,46.830617,,100,,3761,106,75,,0500-1500,1234567,20,,1781,,, +720,IRN,fa,IRIB R Iran,,Mahidasht (ksh),34.264069,46.830617,,100,,3761,106,75,,1500-0500,1234567,20,,1781,,, +720,IRN,dr,IRIB WS,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,0300-1500,1234567,,,344,,, +720,IRN,dr,Voice of Khorasan,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,1730-1930,1234567,,,344,,, +720,IRN,fa,IRIB R Iran,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,1930-0100,1234567,,,344,,, +720,IRN,tg,IRIB WS,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,0100-0230,1234567,,,344,,, +720,IRN,tg,Voice of Khorasan,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,1600-1730,1234567,,,344,,, +720,IRN,uz,IRIB WS,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,0230-0300,1234567,,,344,,, +720,IRN,uz,IRIB WS,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,1500-1600,1234567,,,344,,, +720,RUS,,MS,b,Taganrog - South (RO),47.1875,38.791667,,0.025,,2373,90,97,,,,,,86779,,, +720,RUS,,UT,b,Taganrog - South (RO),47.1875,38.791667,,0.025,,2373,90,97,,,,,,85684,,, +720,USA,en,WGN,,Chicago (IL),42.011667,-88.035278,,50,,6724,302,107,,,,8,,41535,,, +720,USA,en,WGCR,,Pisgah Forest (NC),35.252778,-82.674444,,50,,6937,293,109,,1200-2400,1234567,,,41489,,, +720,CHN,ug,CNR 13,,Kashgar=Kashi (XJ),39.416667,76,,1,,5359,76,111,,0000-1800,1234567,,,36201092,,, +720,CHN,ug,CNR 13,,Yining=Gulja (XJ),43.916667,81.466667,,1,,5403,68,111,,0000-1800,1234567,,,36201093,,, +720,CHN,ug,CNR 13,,Akesu=Aksu/XJTS636 (XJ),41.185833,80.280833,,1,,5516,72,112,,0000-1800,1234567,,,36201094,,, +720,CHN,zh,CNR 2,,Beijing/SARFT491 (MW) (BJ),39.885722,116.577075,,200,,7773,50,112,,2058-1602,1234567,2,,48010,,, +720,IND,,AIR South,,Chennai A=Madras (TN),13.147778,80.128056,,200,220,7749,95,112,,0015-0410,123456,9991,,48014,,, +720,IND,,AIR South,,Chennai A=Madras (TN),13.147778,80.128056,,200,220,7749,95,112,,0015-0530,......7,9991,,48014,,, +720,IND,,AIR South,,Chennai A=Madras (TN),13.147778,80.128056,,200,220,7749,95,112,,0610-1840,......7,9991,,48014,,, +720,IND,,AIR South,,Chennai A=Madras (TN),13.147778,80.128056,,200,220,7749,95,112,,1130-1840,123456,9991,,48014,,, +720,KRE,ko,KCBS Pyongyang Pangsong,,Kanggye (cha),41.017625,126.652444,,500,,8169,43,112,,2000-1800,1234567,993,,48030,,, +720,TZA,sw,TBC Taifa,,Mwanza (mwz),-2.463364,32.9163,,10,,6560,149,113,,0200-2100,1234567,,,2354,,, +720,ALS,,KOTZ,,Kotzebue (AK),66.839444,-162.568056,,10,,6756,355,115,,0000-2400,1234567,999,,39110,,, +720,B,pt,ZYI770 Rdio Clube de Pernambuco,,Recife (PE),-8.066667,-34.883333,,100,,7756,224,115,,,,,,36901290,,, +720,USA,,WHYF,,Shiremanstown (PA),40.191111,-76.9525,,2,,6194,293,116,,,,,,43384,,, +720,VEN,,YVQE R Venezuela Oriente,,Porlamar (nes),10.938889,-64.208333,,50,,7730,261,117,,0000-2400,1234567,3,,45427,,, +720,USA,,WVCC,,Hogansville (GA),33.065,-84.956389,,8,,7258,293,121,,,,,,43285,,, +720,CHN,zh,CNR 2,,Tangshan (HB),39.666667,118.285333,,10,,7881,49,126,,2100-1602,1234567,,,36200073,,, +720,USA,en,KDWN,i,Las Vegas (NV),36.072778,-114.972222,,50,,8684,315,126,,,,5,,38300,,, +720,CHN,bo,Xizang RGD,,Namling=Nanmulin (XZ),29.683333,89.1,,1,,6972,76,127,,2100-1805,1234567,,,36201168,,, +720,CHN,zh,Anhui RGD Nongcun Guangbo,,Hefei/Sanshitou (AH),31.984181,117.32925,,30,,8516,55,127,,2100-1700,1234567,,,36200881,,, +720,CLM,es,HJAN,,Barranquilla (atl),10.990144,-74.767419,,30,,8444,270,127,,,,,,37330,,, +720,CHN,bo,Xizang RGD,,Gyangz=Jiangzi (XZ),28.904722,89.598889,,1,,7068,76,128,,2100-1805,1234567,,,36201167,,, +720,CHN,zh,CNR 2,,Dalian/LNTS303 (LN),39.087778,121.677778,,10,,8106,47,128,,2100-1602,1234567,,,36200071,,, +720,CHN,zh,CNR 2,,Xiamen=Amoy/FJTS202 (FJ),24.492694,118.03595,,50,,9233,58,128,,2100-1602,1234567,,,36200075,,, +720,B,pt,ZYK276 Rdio Guaba,,Guaba (720) (RS),-30.092786,-51.308817,,100,,10722,227,129,,,,,,36901289,,, +720,CUB,es,R Progreso,,Mabujabo (gu),20.360681,-74.521503,,2.5,,7625,276,129,,,,,,36594,,, +720,CLM,es,HJVO,,Armenia (qui),4.533333,-75.683333,,25,,9070,267,130,,,,,,35901386,,, +720,CHN,bo,Xizang RGD,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2100-1805,1234567,,,36201166,,, +720,VEN,,YVXE R Elorza,,Elorza (apu),7.066667,-69.5,,10,,8428,263,131,,,,,,51656,,, +720,HTI,,4VIA R Lumire,,Carrefour Paye (art),19.166667,-72.6,,1,,7595,274,133,,,,,,35643,,, +720,HTI,,R Lumire,,Petite Rivire de l'Artibonite (art),19.133333,-72.483333,,1,,7590,274,133,,,,,,52100,,, +720,CHN,zh,CNR 2,,Fuzhou/FJTS103 (FJ),26.073889,119.339722,,10,,9164,57,134,,2100-1602,1234567,,,36200072,,, +720,NCG,,YNRC R Catolica,,Managua (mng),12.083333,-86.216667,,10,,9128,280,134,,1100-0355,1234567,7,,45219,,, +720,PNR,es,HOB50 R Republica,,Los Santos (ccl),7.943036,-80.403822,,10,,9094,272,134,,1100-0300,1234567,,,37675,,, +720,SLV,,YSRA,,San Salvador (ssl),13.466667,-89.166667,,10,,9204,283,134,,,,,,45308,,, +720,B,pt,ZYI411 Rdio Difusora,,Barra do Garas (MT),-15.912217,-52.272239,,10,,9429,236,135,,,,,,36901287,,, +720,CHN,,Deyang RGD,,Deyang/SCTS522 (SC),31.133333,104.4,,1,,7831,64,135,,,,,,48011,,, +720,CHN,zh,CNR 2,,Chaoyang (LN),41.566667,120.466667,,1,,7822,47,135,,2100-1602,1234567,,,36200883,,, +720,THA,,Sor. Wor. Thor. (R Thailand),,Krabi (krb),8.061989,98.902342,,10,,9470,83,135,,2300-1405,1234567,,,48037,,, +720,TWN,,BCC News Network,,Taichung (TC),24.054139,120.681086,,10,,9426,57,135,,0000-2400,1234567,,,48039,,, +720,USA,en,WPEK966,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010486,,, +720,CHN,zh,CNR 2,,Tianjin (TJ),39.15,117.15,,1,,7868,50,136,,2100-1602,1234567,,,36200074,,, +720,VTN,vi,Dồng Nai R,,Hồ Ch Minh/Qun Tre (hcm),10.847778,106.626111,,10,,9743,75,136,,,,,,48040,,, +720,B,pt,ZYH202 Rdio Integrao,,Cruzeiro do Sul (AC),-7.617917,-72.656789,,10,,9939,257,137,,,,,,36901288,,, +720,DOM,,HIAQ R Norte,,Santiago de los Caballeros (sto),19.466667,-70.716667,,0.25,,7441,272,137,,0000-2400,1234567,,,37208,,, +720,GTM,,TGRO R Corona,,Morales (izb),15.5,-88.833333,,5,,9004,284,137,,0000-2400,1234567,,,40533,,, +720,SLV,,YSRA,,San Miguel (smg),13.466667,-88.166667,,5,,9138,282,137,,,,,,45311,,, +720,SLV,,YSRA,,Santa Ana (sta),14,-89.516667,,5,,9181,283,137,,,,,,45312,,, +720,THA,th,Sor. Thor. Ror. 5,,Sattahip (cbu),12.667694,100.896794,,5,,9201,79,137,,2300-1405,1234567,,,48038,,, +720,USA,en,WRZN,,Hernando (FL),28.9225,-82.3725,,0.25,,7434,288,137,,,,9904,,42943,,, +720,BOL,,CP27 R La Cruz del Sur,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,0930-0030,1234567,,,36687,,, +720,EQA,,HCJC1,,Quito (pic),-0.166667,-78.5,,5,,9675,266,139,,,,,,36980,,, +720,EQA,,HCCB4,,Portoviejo (man),-1.066667,-80.45,,5,,9887,267,140,,,,,,36874,,, +720,PHL,tl,DYOK-AM Aksyon Radyo,,Iloilo City (ilo),10.705278,122.564722,,10,,10770,63,140,,2000-1530,......7,,,48032,,, +720,PHL,tl,DYOK-AM Aksyon Radyo,,Iloilo City (ilo),10.705278,122.564722,,10,,10770,63,140,,2000-1600,123456,,,48032,,, +720,PHL,tl,DZSO-AM Bombo Radyo,,San Fernando (lun),16.616667,120.3,,5,,10088,61,140,,2100-1500,1234567,,,48034,,, +720,PHL,,DZJO-AM R Veritas,,Infanta (qzn),14.75,121.633333,,5,,10340,61,141,,2000-1130,1234567,,,48033,,, +720,USA,,KSAH,,Universal City (TX),29.530833,-98.1775,,0.89,,8369,299,141,,,,,,39324,,, +720,B,pt,ZYH281 Rdio Difusora de Itacoatiara,,Itacoatiara (AM),-3.137814,-58.431828,,1,,8611,248,142,,,,,,36901284,,, +720,CHN,zh,Anhui RGD Nongcun Guangbo,,Chaohu (AH),31.5888,117.830833,,1,,8579,54,142,,2100-1700,1234567,,,36200884,,, +720,CHN,zh,Anhui RGD Nongcun Guangbo,,Chuzhou (AH),32.285167,118.346917,,1,,8545,54,142,,2100-1700,1234567,,,36200882,,, +720,PRG,,ZP17 R Pai Puku,,Teniente Irala Fernandez (bqn),-22,-60.566667,,5,,10473,239,142,,,,,,45513,,, +720,AUS,en,6WF ABC Perth,,Perth/Hamersley (WA),-31.854731,115.819344,,50,,14027,97,143,,0000-2400,1234567,12,,48009,,, +720,HND,,HRNN3,,La Ceiba (atl),15.75,-86.816667,,1,,8848,282,143,,,,,,37815,,, +720,CHN,zh,CNR 2,,Dabu (GD),22.366667,113.45,,1,,9152,63,144,,2058-1602,1234567,,,48012,,, +720,J,,JOIL KBC Kyushu Asahi Hoso,,Kitakyushu (kyu-fuk),33.94,130.801389,,1,,9030,44,144,,0000-2400,1234567,,,48027,,, +720,NCG,,R Asuncin,,Juigalpa (cht),12.083333,-85.4,,1,,9073,279,144,,,,,,33700010,,, +720,SLV,,YSRA,,Sonsonate (ssn),13.716667,-89.7,,1,,9218,283,144,,,,,,45310,,, +720,SLV,,YSRA,,Usulutn (usu),13,-88.45,,1,,9197,282,144,,,,,,45309,,, +720,INS,id,RRI Pro-1,,Ambon/Paso (MA-amb),-3.625708,128.247828,,10,,12444,66,145,,0700-1500,1234567,,,48015,,, +720,MEX,xx,XECPQ-AM La Estrella Maya,,Felipe Carrillo Puerto (qui),19.556111,-88.041944,,0.5,,8599,286,145,,,,,,43866,,, +720,ARG,,LV10 R de Cuyo,,Mendoza (mz),-32.883333,-68.816667,,5,,11928,238,146,,0000-2400,1234567,,,40236,,, +720,HWA,en,KUAI,,Eleele (DN) (HI),21.893611,-159.5575,,5,,11674,347,146,,0000-2400,1234567,996,,39558,,, +720,EQA,,HCUE3 R Unica,,Machala (oro),-3.266667,-79.966667,,1,,10047,265,147,,,,3,,52501,,, +720,USA,,KFIR,,Sweet Home (OR),44.414167,-122.738333,,0.184,,8230,325,147,,,,114,,38393,,, +720,B,pt,ZYI390 Rdio Clube de Dourados,,Dourados (MS),-22.2,-54.883333,,1,,10167,234,148,,,,,,36901280,,, +720,B,pt,ZYL330 Rdio Divinpolis AM,,Divinpolis (MG),-20.115006,-44.901525,,0.5,,9439,227,148,,,,,,36901291,,, +720,MEX,es,XEVU-AM Magia,,Mazatln (sin),23.215256,-106.373725,,0.5,,9417,302,148,,,,,,44994,,, +720,PRU,,OAU1Q R Oceanica,,Chiclayo (lam),-6.766667,-79.85,,1,,10347,263,148,,,,,,37000051,,, +720,MEX,es,XEDE-AM La Kaliente,,Saltillo (coa),25.442833,-100.885356,,0.25,,8892,299,149,,,,,,43903,,, +720,MEX,es,XEQZ-AM Ritmo 720,,San Juan de los Lagos (jal),21.224639,-102.369778,,0.4,,9360,297,149,,,,,,44642,,, +720,INS,id,R Silaturahim,,Bekasi/Kalimanggis (JB-kbk),-6.38,106.913056,,1,,11284,86,151,,,,,,35400126,,, +720,B,pt,ZYK575 Rdio Difusora Casa Branca,,Casa Branca (SP),-21.777836,-47.0989,,0.25,,9712,228,152,,,,,,36901282,,, +720,B,pt,ZYK718 Rdio Cruzeiro do Vale,,Cruzeiro (SP),-22.570844,-44.972836,,0.25,,9682,226,152,,,,,,36901283,,, +720,B,pt,ZYK722 Rdio Menina,,Olmpia (SP),-20.717681,-48.917594,,0.25,,9704,230,152,,,,,,36901285,,, +720,B,pt,ZYK701 Rdio Sentinela,,Ourinhos (SP),-22.973525,-49.849456,,0.25,,9969,230,153,,,,,,36901281,,, +720,J,,GBS Gifu Hoso,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,,,,,31400057,,, +720,J,,JOZL GBS Gifu Hoso,,Takayama (chu-gif),36.15,137.266667,,0.1,,9105,38,154,,0000-2400,1234567,,,48029,,, +720,ARG,,LRA59 R Nacional,,Gobernador Gregores (sc),-48.766667,-70.266667,,2,,13345,228,155,,1100-2300,1234567,,,37893,,, +720,J,,CBC Chubu-Nippon Hoso,,Kumano (kns-mie),33.866667,136.083333,,0.1,,9278,40,155,,0000-2400,1234567,,,48028,,, +720,BOL,,CP148 R Yungas,,Chulumani (lpz),-16.366667,-67.466667,,0.15,,10382,247,156,,0900-1700,1234567,,,36650,,, +720,BOL,,CP148 R Yungas,,Chulumani (lpz),-16.366667,-67.466667,,0.15,,10382,247,156,,2000-0100,1234567,,,36650,,, +720,AUS,,4AT ABC Far North QLD,,Atherton/Yungaburra (QLD),-17.310258,145.555833,,4,,14757,58,157,,0000-2400,1234567,,,48006,,, +720,INS,id,R Lusiana Namberwan,,Semarang (JT-kse),-6.966667,110.483333,,0.25,,11578,83,158,,,,,,48021,,, +720,NZL,en,RNZ National,,Invercargill/Dacre (STL),-46.320278,168.621389,,10,,18577,70,165,,0000-2400,1234567,,,48031,,, +720,AUS,,3MT ABC Gippsland,,Omeo (VIC),-37.146389,147.656278,,2,,16582,77,166,,0000-2400,1234567,,,48008,,, +720,AUS,,2ML ABC North Coast NSW,,Murwillumbah/Terranora (NSW),-28.242722,153.511333,,0.4,,16219,59,171,,0000-2400,1234567,9896,,48007,,, +720,AUS,,2RN ABC National,,Armidale/Duval (NSW),-30.495875,151.664681,,0.1,,16307,63,178,,0000-2400,1234567,,,48005,,, +722,RUS,,O,b,Saratov / Tsentralny (SR),51.5625,46.041667,,0.025,,2690,75,100,,,,,U1020 10.0s,85685,,, +722,RUS,,YO,b,Biryucha Kosa,45.729167,47.625,,0.025,,3050,87,103,,,,,,85686,,, +729,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,100,,1331,228,50,,0000-2400,1234567,4,,365,,, +729,GRC,el,EDR Proto Programma,,Athnai/Agios Stefanos (att-est),38.150222,23.860444,,150,,2059,132,56,,0000-2400,1234567,12,,367,,, +729,E,es,RNE R Nacional,,Logroo/La Grajera (RNE) (RIO-LO),42.442831,-2.512136,,20,,1266,215,57,,0000-2400,1234567,,,364,,, +729,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0000-2400,1234567,0,,363,,, +729,D,de,Bayern Plus,,Wrzburg/Frankenwarte, BR (bay),49.780556,9.906389,,1,,356,135,61,,0000-2400,1234567,0,,359,, +729,E,es,RNE R Nacional,,Cuenca/Martinete (RNE) (CAM-CU),40.063153,-2.144075,,10,,1491,209,62,,0000-2400,1234567,,,361,,, +729,E,es,RNE R Nacional,,Mlaga/Sta. Rosala (RNE) (AND-MA),36.717311,-4.576356,,25,,1916,211,62,,0000-2400,1234567,2,,362,,, +729,E,es,RNE R Nacional,,Alicante/Bacarot (RNE) (VAL-A),38.317689,-0.552594,,10,,1626,202,63,,0000-2400,1234567,998,,360,,, +729,D,de,Bayern Plus,,Hof-Hohensass (bay),50.313056,11.875556,,0.2,,430,116,68,,0000-2400,1234567,,,358,,, +729,G,en,BBC Essex,,Manningtree (EN-ESX),51.923611,1.086111,,0.2,,365,269,68,,0300-2400,12345..,0,,366,,, +729,G,en,BBC Essex,,Manningtree (EN-ESX),51.923611,1.086111,,0.2,,365,269,68,,0500-2400,.....67,0,,366,,, +729,G,en,BBC R 5 Live,,Manningtree (EN-ESX),51.923611,1.086111,,0.2,,365,269,68,,0000-0300,12345..,0,,366,,, +729,G,en,BBC R 5 Live,,Manningtree (EN-ESX),51.923611,1.086111,,0.2,,365,269,68,,0000-0500,.....67,0,,366,,, +729,NIG,,Kano State BC,,Kano/Jogana (kno),12.029167,8.706111,,25,,4462,177,88,,0430-2320,1234567,,,2375,,, +729,UGA,xx,UBC Butebo Channel,,Butebo/Bulangira (mbe),1.142667,33.881056,,50,,6217,146,102,,0300-2105,12345..,,,2378,,, +729,UGA,xx,UBC Butebo Channel,,Butebo/Bulangira (mbe),1.142667,33.881056,,50,,6217,146,102,,0345-2105,.....67,,,2378,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0015-0415,123456,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0015-0450,......7,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0530-0930,......7,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0600-0930,123456,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0945-1700,12345.7,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0945-1741,.....6.,,,48045,,, +729,MYA,my,Myanmar R,,Yangon/Yay Kuu (ygn),16.864178,96.164072,,200,,8519,80,119,,0730-1500,1234567,,,22100003,,, +729,MYA,my,Myanmar R,,Yangon/Yay Kuu (ygn),16.864178,96.164072,,200,,8519,80,119,,2330-0530,1234567,,,22100003,,, +729,CHN,,Jiangxi RGD Xinwen Guangbo,,Nanchang/SARFT561 (JX),28.616375,116.047172,,200,,8746,57,120,,2000-1730,1234567,,,48043,,, +729,VTN,vn,VOV2,,Đồng Hới (qbh),17.465833,106.610833,,200,,9157,71,121,VTN,2155-1700,1234567,,,48062,,, +729,KRE,,KCBS Pyongyang Pangsong,,Sepo/Samo (kan),38.616667,127.366667,,50,,8426,44,124,,2100-2030,1234567,,,48049,,, +729,CHN,,Jiangxi RGD Xinwen Guangbo,,Ganzhou/JXTS851 (JX),25.8,114.9,,50,,8931,60,127,,2000-1730,1234567,,,36200069,,, +729,J,ja,JOCK NHK1,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,50,,9194,39,127,,0000-1600,......7,0,,48047,,, +729,J,ja,JOCK NHK1,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,50,,9194,39,127,,0000-2400,123456,0,,48047,,, +729,J,ja,JOCK NHK1,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,50,,9194,39,127,,1850-2400,......7,0,,48047,,, +729,CHN,,Shangqiu RGD Xinwen,,Shangqiu (HE),34.45,115.65,,10,,8202,54,129,,,,,,48044,,, +729,THA,th,Sor. Wor. Thor. (R Thailand),,Korat=Nakhon Ratchasima (nrt),14.936389,101.999722,,25,,9077,76,130,,2200-1700,1234567,,,48060,,, +729,AFS,af,R Pulpit/Rkansel,,Klipheuwel (WC),-33.700444,18.707778,,25,,9617,170,132,,0000-2400,1234567,,,2377,,, +729,CHN,,Jiangxi RGD Xinwen Guangbo,,Pingxiang/JXTS805 (JX),27.616667,113.85,,10,,8707,60,133,,2000-1730,1234567,,,36200070,,, +729,PHL,,DWPE-AM Radyo ng Bayan,,Tuguegarao City (cag),17.6,121.75,,10,,10083,59,137,,,,,,48059,,, +729,PHL,,DYEH-AM,,Narra (plw),9.283333,118.416667,,10,,10644,67,139,,,,,,48058,,, +729,PHL,,DXIF-AM Bombo Radyo,,Opol/Taboc (mor),8.516217,124.584914,,10,,11095,62,141,,2030-1350,1234567,4,,50004,,, +729,PHL,,DZGB-AM,,Legazpi City (aby),13.133333,123.75,,5,,10616,60,142,,,,,,48057,,, +729,CHN,,Jiangxi RGD Xinwen Guangbo,,Fuzhou/JXTS831 (JX),28.016667,116.333333,,1,,8816,58,143,,2000-1730,1234567,,,36200880,,, +729,PHL,,DXMY-AM,,Cotabato City (mag),7.194167,124.234444,,5,,11197,63,144,,2000-1500,1234567,,,48056,,, +729,TWN,,Shih Hsin BS,,Taipei (TPS),24.988917,121.546114,,0.5,,9389,56,148,,,,,,48061,,, +729,AUS,en,5RN ABC National,,Adelaide/Reynella (SA),-35.103903,138.518703,,50,,15818,83,149,,0000-2400,1234567,7,,48042,,, +729,NCL,fr,Nouvelle-Caldonie 1re,,Touho/Popomou (nor),-20.797444,165.228556,,20,,16084,36,154,,,,,,32700001,,, +729,INS,id,RRI Pro-1,,Nabire (PA-nab),-3.366667,135.483333,,1,,12859,59,156,,2000-1400,1234567,26,,35400028,,, +729,NZL,en,R Sport,,Whangarei/Otaika (NTL),-35.780556,174.319444,,2.5,,17964,32,169,,0000-2400,1234567,,,48053,,, +729,NZL,en,RNZ National,,Tokoroa/Wiltsdown (WKO),-38.165,175.793333,,2.5,,18259,32,170,,0000-2400,1234567,,,48052,,, +729,NZL,,4XX Classic Gold,,Ranfurly (OTA),-45.133333,170.083333,,0.25,,18591,63,181,,,,,,48051,,, +730,CAN,fr,CKAC,,Montral/Pointe-Calumet (QC),45.513889,-73.973333,,50,,5625,297,96,,,,996,,36257,,, +730,RUS,,WS,b,Arkhangels / Vaskovo (AR),64.4375,40.458333,,0.025,,2372,42,97,,,,,,85689,,, +730,RUS,,KT,b,Stavropol / Shopakovskoye (ST),45.104167,42.208333,,0.025,,2714,92,100,,,,,U959 5.8s,85687,,, +730,RUS,,OP,b,Stavropol / Shopakovskoye (ST),45.104167,42.041667,,0.025,,2702,92,100,,,,,U973 25;0s,IDx2,85688,, +730,CAN,en,CKDM,,Dauphin (MB),51.152222,-100.23,,5,,6640,316,116,,,,991,,36294,,, +730,CAN,en,CHMJ,,Vancouver (BC),49.132222,-123.006389,,50,,7786,327,118,,,,3,,36060,,, +730,TRD,,R Trinidad Inspirational 7-30 AM,,Caroni (cha),10.610356,-61.4252,,20,,7572,259,120,,0000-2400,1234567,,,51717,,, +730,VEN,,YVMT R Universo,,Barquisimeto (lar),10.066667,-69.316667,,50,,8153,265,122,,,,,,45386,,, +730,MEX,es,XEX-AM Est W,,Mxico D.F/Col. El Vergel (dif),19.313239,-99.074878,,100,,9329,294,125,,0000-2400,1234567,992,,1922,,, +730,USA,,WVFN,,East Lansing (D) (MI),42.645833,-84.560833,,0.5,,6471,300,125,,,,,,43294,,, +730,USA,,WJYM,,Bowling Green (OH),41.5325,-83.565278,,0.359,,6498,299,126,,,,,,41944,,, +730,CUB,es,R Progreso,,La Fe (ij),21.7136,-82.760747,,10,,8065,283,128,,,,0,,31600081,,, +730,CLM,es,HJCU Melodia R Lider,,Bogot D. C. (bdc),4.65,-74.116667,,25,,8953,265,130,,,,1,,37380,,, +730,CLM,es,HJTJ,,Montera (cor),8.75,-75.883333,,15,,8715,269,131,,,,,,35901388,,, +730,USA,en,KQPN,,West Memphis (AR),35.246111,-90.146944,,1,,7399,298,131,,,,10,,39428,,, +730,B,pt,ZYI780 Rdio Rural a Vz de So Francisc,,Petrolina (PE),-9.335464,-40.4717,,5,,8158,229,132,,,,,,36901303,,, +730,DOM,es,HIZ,,Santo Domingo (sdo),18.483333,-69.883333,,1,,7467,271,132,,1100-0500,1234567,,,37320,,, +730,MEX,es,XEPET-AM,,Peto (yuc),20.140833,-88.926944,,10,,8607,287,132,,,,,,44543,,, +730,PRU,es,OAX4G RPP Noticias,,Lima/Chorrillos (lim),-12.183333,-76.966667,,50,,10628,257,132,,,,,,37000006,,, +730,USA,,WJMT,,Merrill (WI),45.179167,-89.638889,,0.127,,6567,305,132,,,,,,41901,,, +730,USA,en,WZGV,,Cramerton (NC),35.250833,-81.056944,,0.19,,6835,292,133,,,,,,20012519,,, +730,GTM,,TGN R Cultural,,Ciudad de Guatemala/Cerro Anacoche (gut),14.65,-90.55,,10,,9192,284,134,,0000-2400,1234567,,,40520,,, +730,NCG,,YNNS R Segovia,,Ocotal (nsg),13.633333,-86.483333,,10,,9010,281,134,,1100-0200,1234567,,,52194,,, +730,USA,,WFMC,,Goldsboro (NC),35.373611,-78.011389,,0.094,,6631,290,134,,,,,,41405,,, +730,USA,,WFMW,,Madisonville (KY),37.358611,-87.495833,,0.215,,7065,298,134,,,,,,41411,,, +730,USA,,WJTO,,Bath (ME),43.8775,-69.846944,,0.006,,5481,293,134,,,,0,,41936,,, +730,USA,,WLIL,,Lenoir City (TN),35.77,-84.279722,,0.214,,6996,294,134,,,,,,42171,,, +730,USA,,KWOA,,Worthington (MN),43.63,-95.675556,,0.159,,7023,308,135,,,,,,39737,,, +730,USA,,WVFN,,East Lansing (N) (MI),42.645833,-84.560556,,0.05,,6471,300,135,,,,,,20012574,,, +730,B,pt,ZYH640 Rdio Sinal de Aracati,,Aracati (CE),-4.588175,-37.780111,,0.5,,7553,229,136,,,,,,36901302,,, +730,USA,,WACE,,Chicopee (MA),42.167222,-72.625278,,0.008,,5776,292,136,,,,992,,40640,,, +730,USA,,WTNT,,Alexandria (VA),38.745278,-77.099444,,0.025,,6312,292,136,,,,,,41984,,, +730,EQA,,HCMG2 R Guayaquil,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,857,,37024,,, +730,USA,,WDOS,,Oneonta (NY),42.457778,-75.005278,,0.008,,5905,294,137,,,,,,41198,,, +730,USA,,WPIT,,Pittsburgh (PA),40.483889,-79.992778,,0.024,,6361,295,137,,,,,,42695,,, +730,USA,en,WLTQ,,Charleston (SC),32.773333,-80.015556,,0.103,,6967,289,137,,,,0,,42964,,, +730,USA,en,WWTK,,Lake Placid (FL),27.406944,-81.432222,,0.34,,7498,286,137,,,,,,43435,,, +730,USA,es,WZMF,,Nanticoke (PA),41.219444,-75.991111,,0.012,,6057,294,137,,,,,,42425,,, +730,B,pt,ZYH759 Rdio 730 AM,,Goinia/St. Empresarial (GO),-16.6402,-49.313494,,5,,9335,233,138,,,,,,36901304,,, +730,USA,,KWRE,,Warrenton (MO),38.822222,-91.1375,,0.12,,7162,301,138,,,,,,39747,,, +730,USA,,KYYA,,Billings (MT),45.758056,-108.498056,,0.236,,7490,317,138,,,,,,39590,,, +730,USA,,WMNA,,Gretna (VA),36.925278,-79.330556,,0.028,,6594,292,138,,,,,,42356,,, +730,USA,,WUMP,,Madison (AL),34.696111,-86.738611,,0.129,,7236,295,138,,,,,,43261,,, +730,PNR,es,Asamblea Nacional,,Fuerte Sherman (clo),9.365217,-79.953728,,3,,8940,273,139,,,,,,35100002,,, +730,USA,,KKDA,,Grand Prairie (TX),32.764167,-96.990556,,0.5,,8017,301,140,,,,,,38710,,, +730,USA,en,KNFL,,Boise (ID),43.515556,-116.328611,,0.5,,8049,320,140,,,,,,38099,,, +730,B,pt,ZYH896 Rdio Eldorado,,Cod (MA),-4.442911,-43.895292,,0.25,,7865,234,142,,,,,,36901298,,, +730,B,pt,ZYI410 Rdio Jornal,,Cceres (MT),-16.049383,-57.673267,,2.5,,9754,240,142,,,,,,36901292,,, +730,PRG,,ZP7 R Cardinal,,Asuncin (asu),-25.266667,-57.616667,,5,,10605,235,142,,0000-2400,1234567,,,45554,,, +730,MEX,es,XEPQ-AM La Sabrosita,,Melchor Mzquiz (coa),27.875486,-101.467053,,1,,8710,301,143,,,,,,44572,,, +730,HND,,HRTG,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37849,,, +730,MEX,es,XEHB-AM Viva Villa,,Rancho Primero (chi),26.926967,-105.752514,,1,,9043,303,144,,,,,,44098,,, +730,B,pt,ZYL297 Rdio Manchester,,Juiz de Fora (MG),-21.778131,-43.400275,,1,,9528,225,145,,,,15,,36901306,,, +730,MEX,es,XEGDL-AM La Explosiva,,Tonal (jal),20.665389,-103.248772,,1,,9464,298,145,,,,,,44051,,, +730,MEX,es,XELBC-AM R Loreto,,Loreto (bcs),25.999044,-111.369792,,1,,9442,307,145,,,,,,44290,,, +730,ARG,es,LRA27 R Nacional,,San Fernando del Valle (ct),-28.464356,-65.701144,,3,,11357,239,147,,0930-0300,1234567,,,39947,,, +730,B,pt,ZYI217 Sim AM,,Cariacica (ES),-20.264803,-40.359678,,0.5,,9233,224,147,,,,,,36901299,,, +730,B,pt,ZYK610 Rdio Dirceu,,Marlia (SP),-22.223967,-49.881831,,1,,9899,230,147,,,,,,36901301,,, +730,CHL,es,CB73 R Cooperativa AM,,Valparaso/Alto del Puerto (VS),-33.085311,-71.616706,,5,,12110,240,147,,1000-0430,1234567,978,,35759,,, +730,USA,,WSTT,,Thomasville (GA),30.713056,-84.138889,,0.027,,7400,290,147,,,,,,43075,,, +730,BOL,,CP165 R Mensaje,,Montero (scz),-17.25,-63.25,,1,,10200,244,148,,,,,,36660,,, +730,MEX,es,XESOS-AM R Uno,,Agua Prieta (son),31.283333,-109.533333,,0.3,,8853,309,148,,,,,,44908,,, +730,URG,es,CX10 R Continente,,Montevideo (mo),-34.833333,-56.266667,,2.5,,11417,228,148,,0000-2400,1234567,,,36782,,, +730,B,pt,ZYK268 Rdio Planalto AM,,Passo Fundo (RS),-28.2425,-52.406389,,1,,10603,229,149,,,,,,36901297,,, +730,USA,,KSVN,,Ogden (UT),41.188056,-112.081111,,0.066,,8071,316,149,,,,,,39437,,, +730,ARG,es,LRA3 R Nacional,,Santa Rosa (lp),-36.624111,-64.268867,,2.5,,12000,233,150,,0900-0300,1234567,,,39950,,, +730,MEX,es,XEEBC-AM Ke Buena,,Ensenada (bcn),31.89335,-116.628156,,0.25,,9160,314,150,,,,,,43954,,, +730,USA,,KLOE,,Goodland (KS),39.334444,-101.757778,,0.02,,7715,308,151,,,,,,38837,,, +730,USA,en,KULE,,Ephrata (WA),47.316944,-119.562778,,0.029,,7827,324,151,,,,,,39576,,, +730,ARG,es,R Concepto (Red Federal),,Lans (ba),-34.716667,-58.4,,1,,11516,230,152,,,,,,51822,,, +730,B,pt,ZYK523 Rdio Cidade Jundia AM,,Jundia (SP),-23.169167,-46.932406,,0.25,,9838,228,152,,,,94,,36901300,,, +730,B,pt,ZYL287 Rdio Sociedade Tringulo Mineiro,,Uberaba (MG),-19.721267,-47.880411,,0.25,,9554,230,152,,,,,,36901295,,, +730,USA,,KDAZ,,Albuquerque (NM),35.008611,-106.714444,,0.076,,8363,309,152,,,,,,38239,,, +730,B,pt,ZYI452 Rdio Princesa do Vale,,Camapu (MS),-19.523736,-54.038633,,0.25,,9869,235,153,,,,,,36901293,,, +730,USA,,KEZX,,Medford (OR),42.31,-122.811389,,0.074,,8437,324,153,,,,38,,38367,,, +730,B,pt,ZYJ208 Rdio Marumby,,Curitiba/Campo Largo (PR),-25.433656,-49.392194,,0.25,,10181,228,154,,,,,,36901296,,, +730,B,pt,ZYJ323 Rural AM,,Campo Mouro (PR),-24.015833,-52.378889,,0.25,,10202,231,154,,,,,,36901294,,, +730,B,pt,ZYJ787 Rdio Tub AM,,Tubaro (SC),-28.508889,-49.006944,,0.25,,10456,226,155,,,,,,36901305,,, +730,CHL,,CD73B R Aysen,,Puerto Aysn (AI),-45.416667,-72.716667,,1,,13203,232,158,,1100-0400,1234567,,,35912,,, +730,ARG,es,LU23 Em. Lago Argentino,,El Calafate (sc),-50.348286,-72.265792,,1,,13571,228,159,,1000-0300,1234567,,,40219,,, +730,CHL,,CD73 R Camila,,Los Angeles (BI),-37.466667,-72.333333,,0.25,,12525,238,161,,,,,,51931,,, +732,UKR,,KP,b,Kamianets / Podolskiy (KM),48.6875,26.625,,0.025,,1477,97,88,,,,986,L1013 U986 30.7s,ID+24 gap,85691,, +732,UKR,,LS,b,Kamianets / Podilskyi (KM),48.6875,26.625,,0.025,,1477,97,88,,,,,,85693,,, +732,RUS,,FB,b,Soltchy,58.145833,30.291667,,0.025,,1649,57,89,,,,,,85690,,, +732,RUS,,KP,b,Soltchy,58.145833,30.291667,,0.025,,1649,57,89,,,,986,L400 U400 15.0s,IDx2 + 4 gap,85692,, +732,RUS,,AO,b,Aksinyino (TL),55.145833,38.291667,,0.025,,2110,68,94,,,,,,86781,,, +732,RUS,,QO,b,Aksinyino (TL),55.145833,38.291667,,0.025,,2110,68,94,,,,,U400 ,85694,,, +733,UKR,,I,b,Kiev / Zhuliany (KY),50.395833,30.458333,,0.025,,1677,87,90,,,,,L1015 15.0s,IDx2 + 11 tone,85696,, +733,UKR,,V,b,Kiev / Zhuliany (KY),50.395833,30.458333,,0.025,,1677,87,90,,,,,,85699,,, +733,RUS,,NP,b,Akhtubinsk (AS),48.3125,46.208333,,0.025,,2827,83,101,,,,,15.0s,IDx2 + 6 gap,85698,, +733,AZE,,N,b,Baku (bak),40.4375,50.041667,,0.025,,3532,94,108,,,,,L1020 4.2s,85697,,, +733,KAZ,,E,b,Shymkent=Şımkent (okq),42.354167,69.458333,,0.025,,4725,77,120,,,,,,85695,,, +735,RUS,,DW,b,Vyazama,55.145833,34.375,,0.025,,1862,68,92,,,,,,Cont. ID,86782,, +735,RUS,,N,b,Vyazma,55.1875,34.375,,0.025,,1861,68,92,,,,,L814 U1105 4.0s,86783,,, +735,UKR,,KW,b,Koviagi,49.895833,35.541667,,0.025,,2039,85,93,,,,964,L1040 U988 30.0s,IDX2 + 20 gap,85701,, +735,RUS,,FF,b,Tambov / Donskoye (TA),53.8125,41.458333,,0.025,,2331,71,96,,,,,L1017 ,85700,,, +735,RUS,,QCH,b,Tambov / Donskoye (TA),52.8125,41.458333,,0.025,,2352,74,96,,,,,,85702,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0625-0630,12345..,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0650-0700,12345..,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0800-0815,12345..,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1208-1300,12345..,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1230-1300,.....67,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1400-1415,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0000-0625,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0000-1230,.....67,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0630-0650,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0700-0800,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0815-1208,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1300-1400,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1300-2400,.....67,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1415-2400,12345..,0,,372,,, +738,ISR,ar,IBA Reshet Dalet (D),,Haifa/'Akko (haf),32.911667,35.116667,,100,,3140,122,68,,0300-2000,1234567,,,4300005,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1100-1200,1234567,0,,2237,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1300-1400,1234567,0,,2237,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1500-1600,1234567,0,,2237,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1800-1900,1234567,0,,2237,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2300-2345,1234567,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0230-0300,1234567,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0530-0600,1234567,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0800-0830,123456,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1630-1700,1234567,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2130-2200,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0200-0230,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0630-0700,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1030-1100,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1400-1430,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1730-1800,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2000-2030,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2230-2300,12345.7,0,,2237,,, +738,RUS,ru,NHK R Japan,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,EEu,0430-0500,1234567,0,,2237,,, +738,RUS,ru,NHK R Japan,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,EEu,1700-1730,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0030-0100,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0300-0330,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0600-0630,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0930-1000,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1230-1300,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1900-1930,1234567,0,,2237,,, +738,RUS,ru,R Australia,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0500-0530,.....6.,0,,2237,,, +738,RUS,ru,R Australia,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0900-0930,....5..,0,,2237,,, +738,RUS,ru,R Australia,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1930-2000,....5..,0,,2237,,, +738,RUS,ru,R Australia,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2230-2300,.....6.,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0100-0130,123456,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0330-0400,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0700-0730,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0830-0900,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1000-1030,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1600-1630,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2200-2230,1234567,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0000-0030,1234567,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0130-0200,1234567,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0500-0530,12345..,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0900-0930,1234.67,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1430-1500,1234567,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1930-2000,1234..7,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2100-2130,1234567,0,,2237,,, +738,RUS,ru,RNE R Exterior,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0130-0200,......7,0,,2237,,, +738,RUS,ru,RNE R Exterior,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0500-0530,......7,0,,2237,,, +738,RUS,ru,RNE R Exterior,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0800-0830,......7,0,,2237,,, +738,RUS,ru,RNE R Exterior,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1930-2000,.....6.,0,,2237,,, +738,RUS,ru,Rpanorama,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0715-0730,1......,0,,2237,,, +738,RUS,ru,Rpanorama,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0745-0800,......7,0,,2237,,, +738,RUS,ru,Rpanorama,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1215-1230,.....6.,0,,2237,,, +738,RUS,ru,Rpanorama,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2045-2100,.....6.,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0415-0430,0.234567,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0745-0800,123456,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1215-1230,12345.7,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2345-2400,1234567,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,RUS,2045-2100,12345.7,0,,2237,,, +738,RUS,ru,UN R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0400-0415,1234567,0,,2237,,, +738,RUS,ru,UN R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0730-0745,1234567,0,,2237,,, +738,RUS,ru,UN R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1200-1215,1234567,0,,2237,,, +738,RUS,ru,UN R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2030-2045,1234567,0,,2237,,, +738,ALG,ar,R Illizi,,In Amenas (33),28.044444,9.569444,,10,,2689,173,74,,,,,,371,,, +738,RUS,ru,R Rossii,,Chelyabinsk/RV72 (CB),55.135903,61.382694,,40,,3546,62,76,,0000-2000,1234567,,,2238,,, +738,G,en,BBC R Hereford & Worcester,,Worcester (EN-WOR),52.169972,-2.226028,,0.037,,589,274,77,,0000-2400,1234567,0,,374,,, +738,IRN,fa,IRIB R Bushehr,,Dayyer (bus),27.843989,51.927717,,50,,4613,108,86,,,,,,1782,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Hutubi-XJTS631 (XJ),44.160694,86.923014,,120,,5727,65,94,,2300-1800,1234567,,,1887,,, +738,OMA,ar,R Sultanate Oman,,Salalah (dho),16.992689,54.031483,,40,,5694,115,98,,0200-2145,1234567,,,376,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,0020-0445,12345..,,,48071,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,0020-0505,.....67,,,48071,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,0610-0930,123456,,,48071,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,0610-1742,......7,,,48071,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,1145-1742,123456,,,48071,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,Balikun=Barkol/XJTS8102 (XJ),43.597778,93.046111,,10,,6141,62,108,,0000-1600,1234567,,,48066,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,Guma=Pishan/XJTS8110 (XJ),37.580278,78.273333,,3,,5642,77,109,,2300-1800,1234567,,,36200067,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,Kashgar=Kashi/XJTS635 (XJ),39.409722,75.921944,,1,,5355,76,111,,2300-1800,1234567,,,36200066,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,Yutian=Keriya/XJTS8111 (XJ),36.867778,81.648889,,3,,5918,75,111,,2300-1800,1234567,,,36200068,,, +738,CHN,zh,Jilin RGD,,Changchun (JL),43.756667,125.404444,,150,,7860,42,114,,2120-1505,1234567,4,,48067,,, +738,RUS,ru,R Rossii,,Palana (KM),59.0875,159.973611,,25,,7423,14,117,,1800-1400,1234567,,,46890,,, +738,CHN,,Hunan RGD Xiangcun zhi Sheng,,Changsha (HN),28.15,112.75,,200,,8594,60,119,,2130-1700,1234567,998,,48068,,, +738,CHN,zh,Jilin RGD,,Baicheng (JL),45.5755,122.794906,,20,,7575,43,120,,2120-1505,1234567,,,36200879,,, +738,RUS,ru,R Radonezh,,Tavrichanka (PM),43.340139,131.900694,,50,,8184,38,122,,1900-1400,1234567,,,47020,,, +738,KOR,,HLKG KBS 1 R,,Daegu/Gyeongsan (dae),35.898611,128.828333,,100,,8750,44,123,,0000-2400,1234567,,,48087,,, +738,TWN,,Taiwan Ch Yuyeh Kuangpo Tientai,,Baisha/Chiangmei Ts'un (PG),23.6297,119.594489,,100,,9403,58,125,,0000-2400,1234567,,,48096,,, +738,MOZ,,Rdio Moambique,,Maputo (mpc),-25.959083,32.455389,,50,,9044,156,127,,0250-2210,1234567,1,,2379,,, +738,CHN,zh,Jilin RGD,,Songjianghe/JLTS154 (JL),42.158839,127.475194,,10,,8101,42,128,,2120-1505,1234567,,,36200877,,, +738,CHN,,Hunan RGD Xiangcun zhi Sheng,,Fenghuang (HN),28.233889,109.671389,,10,,8403,62,131,,,,,,36200065,,, +738,PHL,tl,DZRB-AM Radyo ng Bayan,,Malolos (bul),14.859311,120.812656,,40,,10281,62,132,,0000-2400,1234567,9965,,48090,,, +738,MAC,,R Vila Verde,,Macau/Taipa (mac),22.155,113.546111,,10,,9177,63,134,,0000-2400,1234567,,,48088,,, +738,THA,th,Wor. Por. Thor. 2,,Chiang Mai/Fort Kawila (cmi),18.778153,99.010208,,5,,8544,76,135,,2130-1600,1234567,,,48094,,, +738,CHN,,Shaoxing RGD,,Shaoxing (ZJ),30.060556,120.601389,,5,,8871,53,136,,2130-1500,1234567,,,48069,,, +738,J,,JORR RBC Ryukyu Hoso,,Naha/Tomigusuku (kyu-oki),26.186111,127.701389,,10,,9612,50,136,,0000-2400,1234567,,,48084,,, +738,THA,th,Wor. Por. Thor. 5,,Hat Yai/5 Kanjanavanit Rd (sgk),7.037564,100.503533,,10,,9669,82,136,,????-1110,123456,,,48095,,, +738,J,,JOLR KNB Kita Nihon Hoso,,Toyama (chu-toy),36.720578,137.247681,,5,,9049,38,137,,0000-2400,1234567,0,,48086,,, +738,CHN,zh,Jilin RGD,,Helong (JL),42.55,129,,1,,8133,40,138,,2120-1505,1234567,,,36200876,,, +738,CHN,zh,Jilin RGD,,Changbai (JL),41.416667,128.2,,1,,8203,42,139,,2120-1505,1234567,,,36200878,,, +738,J,,KNB Kita Nihon Hoso,,Takaoka (chu-toy),36.782375,137.040739,,1,,9034,38,144,,0000-2400,1234567,999,,48085,,, +738,INS,id,PM2DRP R.Swara Pinoh Perkasa,,Sintang (KB-sin),0.066667,111.5,,1,,11025,78,150,,,,,,48080,,, +738,AUS,en,2NR ABC North Coast NSW,,Grafton/Lawrence (NSW),-29.492056,153.115375,,50,,16307,60,151,,0000-2400,1234567,9993,,48063,,, +738,OCE,fr,Polynsie 1re,,Mahina/Pointe de Vnus (idv),-17.500231,-149.484228,,20,,15626,322,153,,0000-2400,1234567,12,,48070,,, +738,AUS,,6MJ ABC Southwest WA,,Manjimup (WA),-34.321,116.145944,,5,,14238,99,154,,0000-2400,1234567,,,48064,,, +738,INS,id,PM3BFC R Bharata,,Tangerang (BT-tan),-6.234444,106.704167,,0.5,,11257,86,154,,????-1500,1234567,27,,48082,,, +738,INS,id,PM8DCU R Rina Bestari,,Rantepao (SN),-2.966667,119.9,,0.4,,11851,73,157,,,,,,48079,,, +738,NZL,,R Live,,Christchurch/Marshland (CAN),-43.481569,172.635014,,5,,18613,52,168,,,,3,,48089,,, +740,CAN,,CHCM,,Marystown (NL),47.144722,-55.271667,,10,,4341,288,90,,,,0,,36038,,, +740,RUS,,KB,b,Sankt-Peterburg/Siverskiy (LE),59.354167,30.041667,,0.025,,1672,52,90,,,,,U1020 14.8s,IDx2 + 6 gap,85704,, +740,UKR,,NE,b,Metilopol (ZP),46.854167,35.291667,,0.025,,2151,94,94,,,,,,85706,,, +740,RUS,,RT,b,Ivanovo (IV),57.0625,40.958333,,0.025,,2267,62,96,,,,0,L1020 U1020 15.0s,IDx2,85707,, +740,RUS,,SZ,b,Ivanovo North (IV),57.0625,40.958333,,0.025,,2267,62,96,,,,,,85708,,, +740,RUS,,TG,b,Armavir / Tsentralny (KD),44.979167,41.125,,0.025,,2647,94,99,,,,,,85709,,, +740,RUS,,WM,b,Armavir / Tsentralny (KD),44.979167,41.125,,0.025,,2647,94,99,,,,,,85710,,, +740,CAN,en,CFZM,,Toronto/Meadowvale (ON),43.575,-79.817222,,50,,6118,298,101,,,,1,,36106,,, +740,RUS,,H,b,Makhachkala / Uytash (DA),42.8125,47.625,,0.025,,3216,92,105,,,,,,85703,,, +740,CAN,en,CBX,,Edmonton (AB),53.319444,-113.446389,,50,,7032,325,110,,,,22,,35800,,, +740,CAN,en,CBNZ,,Nain (NL),56.541667,-61.698889,,0.04,,4260,304,114,,,,,,1871,,, +740,USA,en,WYGM,,Orlando (FL),28.481389,-81.661944,,50,,7424,287,114,,,,9983,,42799,,, +740,CAN,en,CHUG,,Stephenville (NL),48.552778,-58.561389,,0.04,,4473,292,116,,,,,,20109095,,, +740,PTR,es,WIAC,,San Juan (PR),18.356667,-66.234722,,10,,7229,268,119,,0000-2400,1234567,,,41709,,, +740,VEN,,YVNQ R Caroni Q-FM,,Puerto Ordaz (blv),8.316667,-62.666667,,50,,7857,258,119,,,,,,51658,,, +740,USA,,KRMG,,Tulsa (OK),36.080556,-96.285833,,25,,7691,302,120,,,,2,,39266,,, +740,B,pt,ZYH446 Rdio Sociedade da Bahia,,Salvador/Ilha de Itaparica (BA),-12.935806,-38.626383,,100,,8422,225,121,,,,8,,36901316,,, +740,USA,,KTRH,,Houston (TX),29.965833,-94.942222,,50,,8137,297,121,,,,,,39536,,, +740,USA,,WDGY,,Hudson (WI),44.968056,-92.666944,,2.5,,6751,307,121,,,,,,20016002,,, +740,VEN,es,YVNC CNB 740 R Maracaibo,,Maracaibo (zul),10.616667,-71.666667,,50,,8265,267,123,,0900-0400,1234567,0,,45391,,, +740,CLM,es,HJNS,,Valledupar (ces),10.616667,-73.216667,,50,,8371,268,124,,,,,,37596,,, +740,CUB,es,R Angulo,,Sagua de Tnamo (ho),20.582531,-75.226036,,10,,7654,277,124,,,,,,52608,,, +740,USA,en,KVOX,,Fargo (ND),46.974722,-96.503333,,0.94,,6794,311,125,,,,,,20000061,,, +740,USA,,KCBS,i,San Francisco (CA),38.139722,-122.529167,,50,,8830,322,126,,,,0,,38132,,, +740,NCG,,YNRS R Sandino La S Grande,,Managua (mng),13.316667,-86.366667,,50,,9030,280,127,,1025-0400,1234567,,,45238,,, +740,VTN,vi,VOV2,,An Nhơn (Bnh Định) (bdh),13.893167,109.109689,,50,,9635,72,129,,2145-1700,1234567,,,48097,,, +740,USA,es,WNYH,,Huntington (NY),40.851111,-73.437778,,0.043,,5923,292,130,,,,,,41565,,, +740,DOM,,HIEF R Cayacoa,,Salvalon de Higey (alt),18.616667,-68.7,,1,,7375,270,131,,0900-0400,1234567,,,52235,,, +740,MEX,es,XECAQ-AM R Frmula,,Puerto Morelos (qui),20.909939,-86.873522,,10,,8406,286,131,,,,0,,43816,,, +740,HTI,,R Lumire,,Pignon (nrd),19.336111,-72.116667,,1,,7548,273,132,,,,,,35644,,, +740,PRU,,OAX6C R Continental,,Paucarpata (are),-16.422222,-71.469444,,50,,10642,250,132,,0900-0300,1234567,,,40329,,, +740,USA,en,WSBR,,Boca Raton (FL),26.335,-80.265278,,0.94,,7510,285,132,,,,,,42959,,, +740,B,pt,ZYK650 Rdio Trianon,,So Paulo/Av Santa Ins (SP),-23.452889,-46.651278,,25,170,9851,227,133,,,,,,36901315,,, +740,USA,,KVOR,,Colorado Springs (CO),39.083889,-104.711389,,1.5,,7893,310,134,,,,,,39656,,, +740,CLM,es,HJHB,,Pasto (nar),1.183333,-77.266667,,10,,9472,266,135,,,,,,37466,,, +740,USA,,KCMC,,Texarkana (TX),33.438056,-94.1425,,1,,7790,299,135,,,,,,38179,,, +740,ARG,es,LRH251 R Chaco,,Resistencia (cc),-27.433333,-59,,25,,10882,235,136,,0800-0300,1234567,,,51800,,, +740,B,pt,ZYH206 Rdio Alvorada CBN,,Rio Branco/Estrada da Sobral (AC),-9.998319,-67.831117,,10,,9834,251,136,,,,,,36901307,,, +740,EQA,,HCGC1,,Quito (pic),-0.166667,-78.5,,10,,9675,266,136,,,,,,36953,,, +740,PNR,es,HON26 R Cristal,,San Pablo (chq),8.446583,-82.498289,,5,,9193,274,137,,,,,,37708,,, +740,USA,,WJIB,,Cambridge (MA),42.386944,-71.139167,,0.005,,5667,292,137,,,,1,,41878,,, +740,USA,,WRNR,,Martinsburg (WV),39.473611,-77.9325,,0.021,,6309,293,137,,,,,,42891,,, +740,USA,en,WMSP,,Montgomery (AL),32.421667,-86.164167,,0.233,,7387,293,137,,,,,,42393,,, +740,PNR,es,HOR44 La Exitosa de Chorrera,,La Chorrera (pnm),8.888792,-79.792978,,2.6,,8970,273,139,,0000-2400,1234567,,,37720,,, +740,PTR,es,WI2XAC r:WIAC,,Ponce (PR),18.024444,-66.726667,,0.1,,7291,268,140,,0000-2400,1234567,,,41706,,, +740,USA,,WVCH,,Chester (PA),39.877222,-75.406667,,0.006,,6120,292,140,,,,,,43288,,, +740,USA,en,WNOP,,Newport (KY),39.094722,-84.583056,,0.03,,6749,297,140,,,,,,42493,,, +740,PRU,es,OBX2U R Ilucan,,Cutervo/Cerro Pachallamas (caj),-6.375,-78.816667,,5,,10242,262,141,,,,,,37000068,,, +740,EQA,,HCSE4,,Chone (man),-0.7,-80.166667,,2,,9835,267,143,,,,,,37131,,, +740,USA,,WMBG,,Williamsburg (VA),37.281667,-76.796944,,0.007,,6405,291,143,,,,,,42280,,, +740,HND,,HRNN24,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37812,,, +740,HND,,HRQQ,,La Esperanza (int),14.3,-88.166667,,1,,9065,282,144,,,,,,37830,,, +740,MEX,es,XEKV-AM Exa,,Villahermosa (tab),17.987639,-92.911567,,1,,9054,288,144,,,,,,44275,,, +740,MEX,es,XEQN-AM R Frmula,,Torren (coa),25.486144,-103.345439,,1,,9034,301,144,,,,,,44620,,, +740,ARG,,R Cooperativa,,Buenos Aires (df),-34.616667,-58.466667,,5,,11511,230,145,,,,,,51799,,, +740,CAN,en,CBKR,,Parson (BC),51.067778,-116.631389,,0.04,,7362,325,145,,,,,,20109097,,, +740,GTM,,TGHF Emisoras Unidas Tacan,,San Marcos (sms),14.966667,-91.783333,,1,,9246,286,145,,,,,,40497,,, +740,MEX,es,XECW-AM R Variedades,,Los Mochis (sin),25.762367,-109.000283,,1,,9333,305,145,,,,,,43890,,, +740,MEX,es,XELTZ-AM Globo,,Aguascalientes (agu),21.8695,-102.297858,,1,,9298,298,145,,,,,,44326,,, +740,MEX,es,XEOF-AM,,Cortazar (gua),20.493619,-100.961186,,1,,9340,296,145,,,,,,44483,,, +740,MEX,es,XEPOR-AM La Explosiva,,Putla Villa de Guerrero (oax),17.005889,-97.924333,,1,,9463,292,145,,,,,,44570,,, +740,USA,,KVFC,,Cortez (CO),37.349444,-108.541389,,0.25,,8247,311,145,,,,,,39622,,, +740,USA,en,KATK,,Carlsbad (NM),32.450556,-104.213056,,0.5,,8457,306,145,,,,,,37979,,, +740,CAN,en,CBUI,,New Denver (BC),49.994444,-117.366389,,0.04,,7490,325,146,,,,,,20109099,,, +740,MEX,es,XEVAY-AM Amor,,Puerto Vallarta (jal),20.631275,-105.229503,,1,,9586,299,146,,,,,,44948,,, +740,USA,,WPAQ,,Mount Airy (NC),36.534444,-80.596667,,0.007,,6704,293,146,,,,,,42644,,, +740,USA,,WRPQ,,Baraboo (WI),43.455278,-89.753611,,0.006,,6709,304,146,,,,,,42909,,, +740,CAN,en,CBUN,,Salmo (BC),49.193611,-117.277778,,0.04,,7560,324,147,,,,,,20109098,,, +740,URG,,CW27 R Tabar,,Salto (sa),-31.366667,-57.916667,,2.5,,11184,232,147,,0900-0300,1234567,,,36766,,, +740,USA,,KBOE,,Oskaloosa (IA),41.320833,-92.645556,,0.01,,7045,304,147,,,,,,38073,,, +740,USA,en,WCXZ,,Harrogate (TN),36.561111,-83.655833,,0.007,,6894,295,147,,,,,,42936,,, +740,B,pt,ZYJ753 Rdio CBN,,Florianpolis (SC),-27.491111,-48.528056,,1,,10335,227,148,,,,,,36901313,,, +740,USA,,KIDR,,Phoenix (AZ),33.365278,-112.108333,,0.292,,8795,312,148,,,,9991,,38585,,, +740,USA,,WIRJ,,Humboldt (TN),35.814444,-88.914167,,0.016,,7277,297,148,,,,,,41799,,, +740,USA,,WVLN,,Olney (IL),38.700278,-88.081389,,0.007,,6992,299,148,,,,,,43307,,, +740,USA,en,WHMT,,Tullahoma (TN),35.343333,-86.2,,0.011,,7149,295,148,,,,,,41879,,, +740,B,pt,ZYN403 Rdio Cidade,,Alto Araguaia (MT),-17.328844,-53.226089,,0.5,,9617,236,149,,,,,,36901311,,, +740,USA,en,KBRT,i,Costa Mesa (CA),33.828889,-117.638333,,0.19,,9024,316,151,,,,,,38090,,, +740,B,pt,ZYK519 Rdio Assunco,,Jales/Rua Joo Pessoa 595 (SP),-20.242128,-50.561189,,0.25,,9746,232,152,,,,,,36901314,,, +740,B,pt,ZYK553 Rdio Cultura de Bariri,,Bariri (SP),-22.064722,-48.718611,,0.25,,9823,230,152,,,,,,36901308,,, +740,PRG,,ZP38,,Caazapa (czp),-26.183333,-56.366667,,0.5,,10621,233,152,,,,,,45534,,, +740,B,pt,ZYJ354 Rdio Placar,,Ortigueira (PR),-24.205556,-50.915556,,0.25,,10142,230,153,,,,,,36901309,,, +740,B,pt,ZYJ259 Rdio Goioer AM,,Goioer (PR),-24.179722,-53.031667,,0.25,,10252,232,154,,,,,,36901310,,, +740,ARG,es,R La Carretera,,Allen (rn),-38.977778,-67.827778,,1,,12400,234,155,,,,,,33000055,,, +740,B,pt,ZYK265 Rdio Palmeira AM,,Palmeira das Misses (RS),-27.9,-53.295833,,0.25,,10617,230,155,,,,,,36901317,,, +740,B,pt,ZYK283 Nativa AM,,Rio Grande (RS),-32.03,-52.09,,0.25,,10944,227,156,,,,,,36901312,,, +740,PRG,,ZP54,,Ita Cora Nee (neb),-27.166667,-58.166667,,0.25,,10811,234,156,,,,,,45550,,, +740,ARG,,LRA55 R Nacional,,Alto Ro Senguer (ch),-45.033333,-70.816667,,1,,13070,231,157,,0900-0300,1234567,,,39958,,, +740,ARG,,LRI200 R Puerto Deseado,,Puerto Deseado (sc),-47.75,-65.9,,1,,13044,226,157,,0000-2400,1234567,,,51801,,, +742,RUS,,GE,b,Kursk (KU),51.770833,36.208333,,0.025,,2029,79,93,,,,,L1032 U1032 ,85711,,, +742,RUS,,WA,b,Kursk (KU),51.729167,36.375,,0.025,,2041,79,93,,,,994,L1036 U1023 6.0s,ID+2 gap,85712,, +743,INS,id,RSPD Sumba Barat,,Waikabubak (NT-smb),-9.633333,119.416667,,0.3,,12413,77,160,,,,,,35400100,,, +745,UKR,,TR,b,Trypolie,50.104167,30.791667,,0.025,,1709,88,90,,,,,L1020 ,85715,,, +745,RUS,,BG,b,Karmanovo,55.854167,34.875,,0.025,,1893,66,92,,,,,L1043 ,85714,,, +745,RUS,,AD,b,Astrakhan (AS),46.354167,47.875,,0.025,,3034,85,103,,,,,,85713,,, +745,RUS,,YM,b,Astrakhan / Privolzhskij (AS),46.395833,47.875,,0.025,,3032,85,103,,,,,15.0s,IDx2 + 4 gap,85716,, +747,HOL,nl,NPO R 5,,Zeewolde (Flevoland) (fle),52.375167,5.417194,,100,,74,294,11,,0000-2400,1234567,9999,,383,,, +747,E,es,RNE R 5,,Cdiz/Puerto Santa Mara (AND-CA),36.586206,-6.224872,,10,,1991,215,67,,0000-2400,1234567,0,,382,,, +747,BUL,bg,BNR Horizont,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,0000-0600,1234567,,,379,,, +747,BUL,bg,BNR Horizont,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,0800-1300,1234567,,,379,,, +747,BUL,bg,BNR Horizont,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,1500-1830,1234567,,,379,,, +747,BUL,bg,BNR Horizont,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,2030-2400,1234567,,,379,,, +747,BUL,tr,R Bulgaria,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,0600-0800,1234567,,,379,,, +747,BUL,tr,R Bulgaria,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,1300-1500,1234567,,,379,,, +747,BUL,tr,R Bulgaria,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,1830-2030,1234567,,,379,,, +747,CNR,es,RNE R 5,,Mesas de Galaz (RNE) (LPM-GC),28.016275,-15.516425,,25,,3237,223,75,,0000-2400,1234567,,,381,,, +747,IRN,fa,IRIB R Iran,,Gonbad-e Qabus (gsn),37.236806,55.050222,,150,,4093,94,76,,0000-2400,1234567,9948,,384,,, +747,IRN,fa,IRIB R Iran,,Kerman (krm),30.153433,57.049731,,100,,4764,101,85,,0000-2400,1234567,,,10800026,,, +747,NIG,xx,Nagarta R,,Katabu (kdn),10.704328,7.516436,,60,,4605,178,85,,,,,,6200007,,, +747,SDN,,SRTC Sudan Nat. R,,Bur Sudan=Port Sudan (rs),19.636383,37.223297,,7,,4488,132,93,,,,,,2305,,, +747,SDN,,Khartoum State R,,Khartoum (kha),15.720469,32.558317,,10,,4657,141,94,,0300-0700,1234567,,,2306,,, +747,SDN,,Khartoum State R,,Khartoum (kha),15.720469,32.558317,,10,,4657,141,94,,1300-1900,1234567,,,2306,,, +747,ARS,ar,BSKSA Idha'atu-i Riyadh,,Najran (njn),17.590306,44.063389,,10,,5050,125,98,,0300-2300,1234567,,,47074,,, +747,IND,,AIR North,,Lucknow A (UP),26.880903,81.044153,,300,,6657,84,99,,0025-0430,123456,9962,,48128,,, +747,IND,,AIR North,,Lucknow A (UP),26.880903,81.044153,,300,,6657,84,99,,0025-0940,......7,9962,,48128,,, +747,IND,,AIR North,,Lucknow A (UP),26.880903,81.044153,,300,,6657,84,99,,0630-0940,123456,9962,,48128,,, +747,IND,,AIR North,,Lucknow A (UP),26.880903,81.044153,,300,,6657,84,99,,1100-1741,1234567,9962,,48128,,, +747,KEN,,KBC English Service,,Nairobi/Ngong (nai),-1.325694,36.675,,100,,6583,144,103,,0200-2110,12345..,,,2382,,, +747,KEN,,KBC English Service,,Nairobi/Ngong (nai),-1.325694,36.675,,100,,6583,144,103,,0230-2110,.....67,,,2382,,, +747,CHN,zh,CNR 2,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,1,,5398,68,111,,2100-1605,1234567,,,36201233,,, +747,J,,JOIB NHK2,,Sapporo/Ebetsu (hok),43.092778,141.606111,,500,,8588,32,115,,2030-1500,1.....7,4,,48135,,, +747,J,,JOIB NHK2,,Sapporo/Ebetsu (hok),43.092778,141.606111,,500,,8588,32,115,,2030-1635,.2345..,4,,48135,,, +747,J,,JOIB NHK2,,Sapporo/Ebetsu (hok),43.092778,141.606111,,500,,8588,32,115,,2030-1640,.....6.,4,,48135,,, +747,CHN,,Shaanxi JGD Fortune R.,,Xi'an/Caotan-SATS1 (SA),34.385556,108.950556,,50,,7827,59,118,,2200-1700,1234567,,,48121,,, +747,CHN,zh,Tianjin RGD Binhai Guangbo,,Tianjin (TJ),39.114444,117.242222,,50,,7876,50,119,,,,,,48117,,, +747,CHN,,Ningxia JGD Wealth R.,,Yinchuan/Peng (NX),38.563056,106.310278,,10,,7320,58,120,,1230-1400,......7,,,48123,,, +747,CHN,,Ningxia JGD Wealth R.,,Yinchuan/Peng (NX),38.563056,106.310278,,10,,7320,58,120,,2220-1600,123456,,,48123,,, +747,CHN,,Ningxia JGD Wealth R.,,Yinchuan/Peng (NX),38.563056,106.310278,,10,,7320,58,120,,2330-0630,......7,,,48123,,, +747,CHN,,Xishuangbanna RGD,,Jinghong Xian (YN),22.016667,100.716667,,100,,8377,73,121,,,,,,48111,,, +747,KOR,,HLKH KBS 1 R,,Gwangju/Bia (gwa),35.198333,126.829722,,100,,8720,46,123,,0000-2400,1234567,,,48137,,, +747,CHN,,Henan RGD Nongcun Guangbo,,Xichuan (HE),33.133333,111.483333,,20,,8082,58,125,,,,,,36200857,,, +747,CHN,zh,Baoding RGD Traffic,,Baoding (HB),38.85,115.55,,10,,7809,51,125,,,,,,36201298,,, +747,CHN,zh,CNR Yule Guangbo,,Beijing/SARFT542 (BJ),39.754111,116.172728,,10,,7763,50,125,,,,,,48104,,, +747,CHN,,Henan RGD Nongcun Guangbo,,Nanyang (HE),32.975278,112.498333,,20,,8155,57,126,,,,,,36200863,,, +747,CHN,zh,CNR 1,,Jincheng (SX),35.511711,112.857272,,10,,7953,55,127,,2025-1805,1234567,,,36200868,,, +747,CHN,,Binzhou RGD,,Binzhou (SD),37.366667,118.016667,,10,,8071,51,128,,,,,,48105,,, +747,CHN,,Hubei RGD Sunshine FM,,Qichun (HU),30.233333,115.416667,,30,,8565,57,128,,,,,,36200862,,, +747,CHN,,Pingdingshan RGD,,Pingdingshan (HE),33.7,113.283333,,10,,8136,56,128,,,,,,48116,,, +747,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Wuhai (NM),39.730833,106.813611,,1,,7252,56,130,,,,,,48120,,, +747,CHN,zh,Rizhao PBS Jiaotong Shenghuo,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2130-1530,1234567,,,36200861,,, +747,CHN,,Henan RGD Nongcun Guangbo,,Lingbao/Cheyaocun (HE),34.534444,110.907222,,3,,7927,57,132,,,,,,36200865,,, +747,CHN,zh,CNR 1,,Haifeng (GD),22.966667,115.333333,,10,,9212,61,134,,2025-1805,1234567,,,36200873,,, +747,CHN,,Hubei RGD Sunshine FM,,Jingmen (HU),31.033333,112.2,,3,,8308,59,135,,,,,,48112,,, +747,CHN,,Weinan JGD,,Weinan (SA),34.607778,109.583611,,1,,7845,58,135,,,,,,48119,,, +747,CHN,,Hebei RGD Shenghuo Guangbo,,Shijiazhuang (HB),37.833333,114.666667,,1,,7851,53,136,,,,,,36200860,,, +747,CHN,,Hengshui RGD Wenxue,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,36200872,,, +747,THA,th,Thor. Phor. Song,,Udon Thani/Fort Yutthasin Prasit (udt),17.4,102.783333,,5,,8913,74,136,,????-1500,1234567,,,48143,,, +747,CHN,,Fushun RGD Yinyue,,Fushun (LN),41.85,123.883333,,1,,7963,44,137,,,,,,48108,,, +747,CHN,,Nanchong RGD,,Nanchong/SCTS513 (SC),30.8,106.083333,,1,,7963,63,137,,,,,,48114,,, +747,CHN,,Yibin RGD Jiudu Music,,Yibin/SCTS524 (SC),28.766667,104.616667,,1,,8047,66,137,,,,,,36200856,,, +747,CHN,,Yingkou JGD,,Yingkou/LNTS314 (LN),40.5125,122.205,,1,,8003,46,137,,,,,,48124,,, +747,PHL,tl,DZJC-AM Aksyon Radyo,,Laoag City/San Patricio (iln),18.190833,120.609444,,10,,9962,60,137,,1900-1600,1234567,,,48140,,, +747,THA,th,Ror. Dor. Jet-sii-jet 747,,Bangkok/2 Charoenkrung Rd (bmp),13.746892,100.495722,,5,,9080,78,137,,0000-2400,1234567,,,48142,,, +747,CHN,,Changshu RGD Traffic & Music,,Changshu (JS),31.65,120.733333,,3,,8733,52,138,,,,,,36200331,,, +747,CHN,,Changzhou RGD Traffic & Music,,Changzhou (JS),31.764444,119.7825,,3,,8671,53,138,,2130-1430,1234567,,,48106,,, +747,CHN,,Henan RGD Lyou Guangbo,,Zhengzhou (HE),34.7,113.7,,1,,8072,55,138,,,,,,36200855,,, +747,CHN,,Liaoning RGD Wenyi Guangbo,,Fengcheng/LNTS313 (LN),40.45,124.066667,,1,,8099,45,138,,,,,,36200874,,, +747,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Lichuan (HU),30.3,108.85,,1,,8173,62,139,,,,,,36200866,,, +747,CHN,,Yunnan RGD Jiaotong zhi Sheng,,Baoshan/YNTS702 (YN),26.366667,104.5,,1,,8246,67,139,,,,,,36200875,,, +747,CHN,,Yunnan RGD Yinyue-Binfen 97,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200867,,, +747,CHN,,Linyi RGD Chengshi zhi Sheng,,Linyi (SD),35.066667,118.333333,,1,,8294,52,140,,,,,,36200864,,, +747,CHN,,Zaozhuang RGD Traffic,,Zaozhuang (SD),34.866667,117.566667,,1,,8270,53,140,,,,,,48125,,, +747,PHL,,DYHB-AM,,Bacolod City (noc),10.683333,122.966667,,10,,10796,62,140,,2100-1600,1234567,,,48139,,, +747,CHN,,Henan RGD Nongcun Guangbo,,Huangchuan (HE),32.133333,115.033333,,1,,8373,56,141,,,,,,36200871,,, +747,CHN,zh,CNR 1,,Huizhou (GD),23.066667,114.416667,,2,,9148,62,141,,2025-1805,1234567,,,36200869,,, +747,CHN,,Hefei RGD Literary & Arts,,Hefei/Motancun (AH),31.794111,117.379889,,1,,8536,55,142,,,,,,48110,,, +747,CHN,,Hubei RGD Sunshine FM,,Huanggang (HU),30.45,114.8,,1,,8510,57,142,,,,,,36200870,,, +747,CHN,,Hubei RGD Sunshine FM,,Wuhan (HU),30.6,114.333333,,1,,8470,58,142,,,,,,36200858,,, +747,CHN,,Yancheng JGD Traffic,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,0655-1500,1234567,,,48122,,, +747,CHN,,Yancheng JGD Traffic,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,2155-0540,1234567,,,48122,,, +747,CHN,,Ganzhou RGD,,Ganzhou/JXTS851 (JX),25.8,114.9,,1,,8931,60,143,,2200-1500,1234567,,,48109,,, +747,CHN,,Ningbo JGD,,Ningbo (ZJ),29.866667,121.533333,,1,,8939,53,143,,,,,,48115,,, +747,CHN,zh,CNR 1,,Suzhou (JS),31.3,120.683333,,1,,8762,53,143,,2025-1805,1234567,,,36200080,,, +747,CHN,zh,CNR 2,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,2100-1602,1234567,,,36200859,,, +747,INS,id,RRI Pro-1,,Bengkulu/Desa Air Sebakul (BE-bku),-3.830906,102.363586,,5,,10750,88,143,,0915-1658,1234567,,,48129,,, +747,INS,id,RRI Pro-1,,Bengkulu/Desa Air Sebakul (BE-bku),-3.830906,102.363586,,5,,10750,88,143,,2130-0210,1234567,,,48129,,, +747,CHN,,Longyan RGD,,Longyan/FJTS601 (FJ),25.063333,117.027778,,1,,9123,59,144,,,,,,48113,,, +747,CHN,,Zhongshan RGD Happy R.,,Zhongshan/Muhejing (GD),22.564722,113.380556,,1,,9130,63,144,,,,,,36200854,,, +747,CHN,zh,CNR 1,,Shenzhen/Shiyan (GD),22.653392,113.895556,,1,,9153,63,144,,2025-1805,1234567,,,36200064,,, +747,PHL,,DXND-AM R Veritas,,Kidapawan/Daang Maharlika (nco),7,125.083333,,5,,11266,63,144,,,,,,48141,,, +747,AUS,,6SE R West,,Esperance (WA),-33.769167,121.876944,,5,,14585,95,155,,0000-2400,1234567,4,,48098,,, +747,AUS,,6FMS,,Exmouth (WA),-21.957792,114.129,,1,,13114,90,157,,,,,,48099,,, +747,AUS,en,4QS ABC Southern Queensland,,Toowoomba/Dalby (QLD),-27.144006,151.302706,,10,,15992,60,157,,0000-2400,1234567,9990,,48102,,, +747,SMO,,SBC R 2,,Apia/Mulinu'u (tum),-13.81745,-171.780253,,8,,15754,357,157,,1930-2200,1234567,,,48245,,, +747,AUS,en,7PB ABC Newsr,,Hobart/Ralphs Bay (TAS),-42.925444,147.497889,,6.3,,16963,86,162,,0000-2400,1234567,,,48100,,, +747,AUS,,8JB ABC Darwin,,Jabiru (NT),-12.656022,132.849583,,0.2,,13558,68,166,,0000-2400,1234567,,,48101,,, +747,NZL,en,Newstalk ZB,,Rotorua/Tihiotonga (BOP),-38.175,176.230833,,0.4,,18276,31,178,,,,,,32500013,,, +749,RUS,,U,b,Yekaterinburg (SV),56.729167,60.875,,0.025,,3466,60,108,,,,,14.3s,IDx2,85718,, +750,CAN,en,CBGY,,Bonavista Bay (NL),48.674167,-53.771944,,10,,4160,289,89,,,,3,,35781,,, +750,RUS,,AL,b,Dorokhovo,57.729167,36.625,,0.025,,2010,60,93,,,,,,85719,,, +750,RUS,,NZ,b,Dorokhovo,57.729167,36.625,,0.025,,2010,60,93,,,,,,85721,,, +750,RUS,,BA,b,Krasnodar / Pashkovsky (KD),45.0625,39.208333,,0.025,,2512,95,98,,,,,,85720,,, +750,RUS,,WP,b,Krasnodar / Pashkovsky (KD),45.020833,39.125,,0.025,,2508,95,98,,,,,,85722,,, +750,ALS,,KFQD,,Anchorage (AK),61.338333,-150.034167,,50,,7229,348,112,,0000-2400,1234567,5,,38423,,, +750,USA,,WNDZ,,Portage (IN),41.563611,-87.155,,15,,6708,301,112,,,,,,42453,,, +750,USA,,WSB,,Atlanta (GA),33.843889,-84.253333,,50,,7150,293,112,,,,9985,,42953,,, +750,CAN,en,CKJH,,Melfort (SK),52.6125,-104.505,,10,,6716,319,114,,,,9998,,36234,,, +750,USA,,WQOR,,Olyphant (PA),41.476111,-75.494722,,1.6,,6007,294,115,,,,9957,,42788,,, +750,CAN,en,CBMJ,,Murdochville (QC),48.958333,-65.500556,,0.04,,4882,296,120,,,,,,20109100,,, +750,USA,,KMMJ,,Grand Island (NE),41.134722,-97.993889,,11,,7357,307,120,,,,9999,,38915,,, +750,VEN,es,YVKS RCR 750 R Caracas,,Caracas (dcf),10.47625,-67.012653,,50,,7961,263,120,,0000-2400,1234567,9998,,45357,,, +750,USA,,WBMD,,Baltimore (MD),39.323889,-76.548889,,0.73,,6233,292,121,,,,,,40879,,, +750,USA,,WPDX,,Clarksburg (WV),39.244444,-80.384722,,1,,6480,295,122,,,,,,42662,,, +750,USA,,KBNN,,Lebanon (MO),37.686389,-92.693056,,5,,7347,301,124,,,,,,38069,,, +750,CAN,fr,CBFA-3,,Weymontachie (QC),47.899444,-73.777222,,0.04,,5451,299,125,,,,,,20109101,,, +750,USA,,WARD,,Petoskey (MI),45.334722,-84.926111,,0.33,,6288,303,125,,,,,,43396,,, +750,USA,en,KXTG,,Portland (OR),45.401389,-122.446389,,20,,8124,325,125,,,,4,,39798,,, +750,CUB,es,R Progreso,,Palmira (cf),22.244378,-80.385947,,10,,7861,282,126,,,,,,31600064,,, +750,USA,,WAUG,,New Hope (NC),35.791111,-78.619444,,0.5,,6637,291,126,,,,,,40770,,, +750,B,pt,ZYJ927 Rdio Progresso AM,,Lagarto/Fazenda Santa Terezinha (SE),-10.876944,-37.761389,,10,,8175,226,129,,,,,,36901328,,, +750,CLM,es,HJDK Caracol,,Medelln (ant),6.300872,-75.594425,,25,,8909,268,129,,,,0,,37391,,, +750,B,pt,ZYH709 Rdio Jovem Pan,,Braslia (DF),-15.8532,-48.000817,,25,,9188,232,130,,,,,,36901326,,, +750,USA,,KOAL,,Price (IBOC) (UT),39.567222,-110.798056,,6.8,,8158,314,130,,,,0,,39045,,, +750,DOM,,HIDB R Jess Internacional,,Santiago de los Caballeros (sto),19.466667,-70.666667,,1,,7438,272,131,,,,,,37236,,, +750,ARG,es,LRA7 R Nacional,,Crdoba (cb),-31.511122,-64.051853,,100,,11534,236,132,,0900-0500,1234567,,,39963,,, +750,USA,,WRIK,,Brookport (IL),37.141944,-88.649444,,0.5,,7152,298,132,,1300-0100,1234567,,,42527,,, +750,USA,,KERR,,Polson (MT),47.642778,-114.123611,,1,,7573,321,133,,,,92,,38339,,, +750,CHN,,Xinzhou RGD,,Xinzhou (SX),38.416667,112.733333,,1,,7694,54,134,,,,,,48151,,, +750,SLV,es,YSSS R.Nacional de El Salvador,,Santa Ana (sta),14.05,-89.7,,10,,9189,283,134,,,,,,45318,,, +750,MEX,es,XEJMN-AM,,Jess Mara (nay),22.254236,-104.525594,,10,,9396,300,135,,,,,,44216,,, +750,CLM,es,HJLH,,Yopal (cas),5.35,-72.4,,5,,8775,264,136,,,,,,35901394,,, +750,EQA,es,HCRC2 R Caravana,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,97,,36892,,, +750,PNR,es,R Inolvidable,,Santa Ana Abajo (her),7.946389,-80.374444,,5,,9092,272,137,,1000-2300,1234567,,,52300,,, +750,B,pt,ZYL213 Rdio Amrica,,Belo Horizonte/Contagem (MG),-20.011839,-44.015861,,5,,9385,227,138,,,,,,36901330,,, +750,GTM,,TGAJ R Tropicana Circuito Dos,,Escuintla (esl),14.3,-90.766667,,5,,9237,284,138,,,,,,40475,,, +750,B,pt,ZYI682 Rdio Panati,,Patos (PB),-6.9995,-37.263572,,0.25,,7765,227,141,,,,,,36901320,,, +750,B,pt,ZYI897 Rdio Liberdade AM,,Campo Maior (PI),-4.818267,-42.161556,,0.25,,7806,233,141,,,,,,36901323,,, +750,USA,,KKNO,,Gretna (LA),29.8875,-90.084167,,0.25,,7844,294,141,,,,,,38735,,, +750,USA,,KAMA,,El Paso (TX),31.775,-106.28,,1,,8632,307,142,,,,,,37943,,, +750,USA,,KSEO,,Durant (OK),34.036667,-96.426944,,0.22,,7874,301,142,,,,,,39343,,, +750,MEX,es,XERASA-AM Candela Pasin,,San Luis Potos (slp),22.149167,-100.995556,,1,,9194,297,144,,,,,,43973,,, +750,B,pt,Rdio Cantoense,,Canto do Buriti (PI),-8.117222,-42.960278,,0.25,,8170,232,145,,,,,,36901322,,, +750,B,pt,ZYH792 Rdio Tocantins,,Tocantinpolis (TO),-6.322222,-47.433611,,0.25,,8244,237,145,,,,,,36901321,,, +750,MEX,es,XEOH-AM La Pantera,,Ciudad Camargo (chi),27.663822,-105.186947,,0.75,,8944,303,145,,,,,,44486,,, +750,B,pt,ZYI541 Rdio Ximango AM,,Alenquer (PA),-1.944725,-54.725761,,0.25,,8269,245,146,,,,,,36901319,,, +750,B,pt,ZYK642 Rdio CMN,,Ribeiro Preto (SP),-21.212639,-47.773133,,1,,9692,229,146,,,,,,36901329,,, +750,B,pt,ZYK661 Super Rdio Piratininga,,So Jos dos Campos (SP),-23.232728,-45.908236,,1,,9793,227,146,,,,,,36901324,,, +750,PRU,,R Altura,,Cerro de Pasco (pas),-10.716667,-76.25,,1,,10452,258,148,,,,2,,37000057,,, +750,USA,,KHWG,,Fallon (NV),39.439167,-118.779722,,0.25,,8542,320,148,,,,9961,,38572,,, +750,PRG,,ZP42 LV de la Policia Nacional,,Asuncin (asu),-25.266667,-57.616667,,1,,10605,235,149,,0900-0200,1234567,,,51734,,, +750,B,pt,ZYK696 Rdio Difusora Atual,,Registro (SP),-24.509928,-47.851011,,0.5,,10014,228,150,,,,,,36901318,,, +750,MEX,es,XETI-AM R Fiesta,,Tempoal (vcz),21.522953,-98.381778,,0.25,,9089,295,150,,,,,,44822,,, +750,MEX,es,XECSI-AM Vida,,Culiacn/Col. Stase (sin),24.826558,-107.407353,,0.25,,9329,303,151,,,,,,43874,,, +750,MEX,es,XEURM-AM Fiesta Mexicana,,Uruapan (mic),19.390131,-102.006839,,0.25,,9504,296,151,,,,,,44927,,, +750,PRG,,ZP46,,Ype Hu (cyu),-23.916667,-55.5,,0.5,,10362,234,151,,,,,,45541,,, +750,MEX,es,XEKOK-AM La Poderosa,,Acapulco (gue),16.906867,-99.832794,,0.25,,9592,293,152,,,,,,44264,,, +750,B,pt,ZYK516 Rdio Clube de Osvaldo Cruz,,Osvaldo Cruz (SP),-21.783333,-50.866667,,0.25,,9909,231,153,,,,,,36901331,,, +750,MEX,es,XECORO-AM Ke Buena,,Loma Bonita (oax),18.085042,-95.904244,,0.1,,9238,291,154,,,,,,44606,,, +750,B,pt,ZYJ815 Rdio Aliana,,Concrdia (SC),-27.223056,-52.011389,,0.25,,10486,229,155,,,,,,36901332,,, +750,B,pt,ZYK264 Rdio Osrio,,Osrio (RS),-29.903333,-50.277222,,0.25,,10652,227,155,,,,,,36901325,,, +752,POL,,AT,b,Deblin,51.5625,21.875,,0.025,,1062,87,84,,,,,L1016 ,85723,,, +752,RUS,,BB,b,Beryozovo (KY),63.895833,64.958333,,0.025,,3538,45,108,,,,,15.0s,IDx2,85724,, +756,D,de,Deutschlandfunk,,Knigslutter/Scheppau Wohld (nds),52.293889,10.726944,,200,,295,84,37,,0000-2400,1234567,0,,387,,, +756,D,de,Deutschlandfunk,,Ravensburg-Horgenzell (bw),47.785556,9.519167,,100,,530,154,42,,0000-2400,1234567,0,,386,,, +756,ROU,ro,SRR R Romnia Actualităţi,,Lugoj/Boldur (TM),45.688594,21.79835,,400,190,1328,116,44,,0600-2200,1234567,9998,,395,,, +756,G,en,BBC R 4,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0600-0100,1234567,,,389,,, +756,G,en,BBC WS,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0100-0600,1234567,,,389,,, +756,G,en,BBC R Cumbria,,Carlisle/Brisco (EN-CUM),54.865111,-2.916639,,1,,688,300,64,,0000-2400,1234567,0,,390,,, +756,G,en,R Hafren,,Newtown (WA-POW),52.516833,-3.276972,,0.63,,660,278,66,,0000-2400,1234567,0,,391,,, +756,POR,pt,Antena 1,,Lamego (vrl),41.113972,-7.845778,,2,,1631,227,70,,0000-2400,1234567,,,394,,, +756,ISR,ar,Idaat ul Mashreq,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,0000-0400,1234567,13,,4300007,,, +756,ISR,ar,Idaat ul Mashreq,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,0500-1200,1234567,13,,4300007,,, +756,ISR,ar,Idaat ul Mashreq,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,1300-2400,1234567,13,,4300007,,, +756,ISR,ar,Rokn al-Sout al-Falasteniy,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,0400-0500,1234567,13,,4300007,,, +756,ISR,ar,Rokn al-Sout al-Falasteniy,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,1200-1300,1234567,13,,4300007,,, +756,IRN,fa,IRIB R Gilan,,Rasht (gln),37.293444,49.594272,,100,,3719,99,74,,,,,,1783,,, +756,EGY,ar,ERTU Janub Sa'id Misr,,Qena=Qina=Ena (qna),26.185111,32.737111,,10,,3628,132,83,,0200-2200,1234567,,,1828,,, +756,NIG,,Oyo State BC,,Ibadan (oyo),7.409167,3.932222,,100,,4976,183,87,,0400-2200,1234567,,,2385,,, +756,UZB,uz,MTRK R Toshkent,,Toshkent/Oʻrtaovul (tos),41.208156,69.131672,,50,,4778,79,88,,0000-2000,1234567,,,47167,,, +756,PAK,,PBC Hayya alal-Falah,,Quetta/Pishin (blc),30.491139,66.945667,,150,,5409,92,89,,0045-0805,1234567,,,48169,,, +756,PAK,,PBC Hayya alal-Falah,,Quetta/Pishin (blc),30.491139,66.945667,,150,,5409,92,89,,1000-1810,1234567,,,48169,,, +756,IRQ,ar,R Dar as-Salam,,Al-Baṣrah (bsr),30.5,47.833333,,2.5,,4128,109,94,,0400-2100,1234567,,,10500005,,, +756,YEM,ar,YGCRT Al-Mukallah R,,Al-Mukallah/Ash Shihr (hdm),14.7467,49.567233,,50,2,5631,121,96,,1500-2300,1234567,,,396,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,0025-0405,123456,9940,,48158,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,0025-0430,......7,9940,,48158,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,0600-0930,......7,9940,,48158,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,0630-0930,123456,9940,,48158,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,1130-1740,1234567,9940,,48158,,, +756,CHN,zh,CNR 1,,Harbin/HLTS904 (HL),45.696278,126.815333,,150,45,7745,40,113,,2025-1805,1234567,,,48156,,, +756,CHN,zh,CNR 1,,Wuwei/Yangxiaba (GS),38.0475,102.694722,,10,,7151,60,119,,2025-1805,1234567,,,36200838,,, +756,CHN,zh,CNR 1,,Shizuishan (NX),39.233333,106.766667,,10,,7291,57,120,,2025-1805,1234567,,,36200841,,, +756,KOR,ko,KBS 1 R,,Yeoju (gye),37.282778,127.551944,,100,,8559,44,122,,0000-2400,1234567,,,48167,,, +756,CHN,zh,CNR 1,,Yichun (HL),47.777222,128.843611,,10,,7640,37,123,,2025-1805,1234567,,,36200837,,, +756,MWI,,MBC R 1,,Blantyre (bly),-15.702994,35.027836,,25,,8030,151,123,,0253-2200,1234567,,,2383,,, +756,CHN,zh,CNR 1,,Yan'an/Dingquanbian (SA),36.602222,109.485833,,10,,7668,57,124,,2025-1805,1234567,,,36200050,,, +756,CHN,zh,CNR 1,,Hanzhong (SA),33.154944,106.962472,,10,,7815,61,125,,2025-1805,1234567,,,36200062,,, +756,CHN,zh,CNR 1,,Shuangyashan (HL),46.533333,131.083333,,10,,7849,37,126,,2025-1805,1234567,,,36200055,,, +756,CHN,zh,CNR 1,,Guangzhou/SARFT522 (GD),23.408406,113.236125,,50,,9046,63,127,,2025-1805,1234567,,,48155,,, +756,CHN,zh,CNR 1,,Mishan/SARFT914 (HL),45.644722,131.875278,,10,,7965,37,127,,2025-1805,1234567,,,36200845,,, +756,CHN,zh,CNR 1,,Zhuhai/GDTS909 (GD),22.382222,113.556778,,50,,9157,63,127,,2025-1805,1234567,,,36200049,,, +756,CHN,zh,CNR 1,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,2025-1805,1234567,,,36200061,,, +756,CHN,zh,CNR 1,,Suifenhe (HL),44.4,131.166667,,10,,8053,38,128,,2025-1805,1234567,,,36200840,,, +756,CHN,zh,CNR 1,,Laiyang (SD),36.983333,120.716667,,10,,8247,49,129,,2025-1805,1234567,,,36200060,,, +756,CHN,zh,CNR 1,,Qingdao/SDTS135 (SD),36.121589,120.350533,,10,,8306,50,130,,2025-1805,1234567,,,36200058,,, +756,CHN,zh,CNR 1,,Rongcheng (SD),37.134722,122.406944,,10,,8320,48,130,,2025-1805,1234567,,,36200057,,, +756,CHN,zh,CNR 1,,Bose/GXTS242 (GX),23.890278,106.608889,,10,,8593,67,132,,2025-1805,1234567,,,36200852,,, +756,CHN,zh,CNR 1,,Chizhou (AH),30.65,117.483333,,10,,8644,55,133,,2025-1805,1234567,,,36200063,,, +756,CHN,zh,CNR 1,,Ningming (GX),22.120278,106.999167,,10,,8773,68,133,,2025-1805,1234567,,,36200843,,, +756,CHN,zh,CNR 1,,Tianshui (GS),34.5,105.5,,1,,7613,61,133,,2025-1805,1234567,,,36200053,,, +756,CHN,zh,CNR 1,,Wuhu (AH),31.3,118.4,,10,,8637,54,133,,2025-1805,1234567,,,36200052,,, +756,CHN,zh,CNR 1,,Cheng Xian/Zhiqi Xiang (GS),33.7625,105.728333,,1,,7689,61,134,,2025-1805,1234567,,,36200851,,, +756,CHN,zh,CNR 1,,Jieyang (GD),23.565683,116.401333,,10,,9221,60,134,,2025-1805,1234567,,,36200847,,, +756,J,,JOGK NHK1,,Kumamoto (kyu-kum),32.84,130.727222,,10,,9132,44,134,,0000-2400,1234567,,,48166,,, +756,VTN,vi,Long An R,,Tn An (lan),10.533333,106.416667,,10,,9757,76,136,,0430-0525,1234567,,,48180,,, +756,VTN,vi,Long An R,,Tn An (lan),10.533333,106.416667,,10,,9757,76,136,,1000-1210,1234567,,,48180,,, +756,VTN,vi,Long An R,,Tn An (lan),10.533333,106.416667,,10,,9757,76,136,,2200-0030,1234567,,,48180,,, +756,CHN,zh,CNR 1,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,2025-1805,1234567,,,36200853,,, +756,CHN,zh,CNR 1,,Hebi (HE),35.9,114.2,,1,,7994,54,137,,2025-1805,1234567,,,36200848,,, +756,THA,th,Kor. Wor. Sor. 1,,Surin/Prasat Road (sur),14.865556,103.481944,,5,,9181,75,137,,2130-1700,1234567,,,48177,,, +756,CHN,zh,CNR 1,,Tai'an/SDTS616 (SD),36.199722,117.100833,,1,,8126,52,138,,2025-1805,1234567,,,36200839,,, +756,PHL,,DWCC-AM,,Tayug (pgs),16.033333,120.75,,10,,10169,61,138,,,,,,48173,,, +756,CHN,zh,CNR 1,,Zhumadian (HE),32.915,114.021389,,1,,8247,56,139,,2025-1805,1234567,,,36200834,,, +756,THA,xx,Sathaanii Witthayu 912 Kaoneung-song,,Narathiwat/13 Chan Uthit Rd (nwt),6.424722,101.811111,,5,,9811,82,139,,????-1505,1234567,,,48176,,, +756,CHN,zh,CNR 1,,Fuyang (AH),32.930944,115.798294,,1,,8346,55,140,,2025-1805,1234567,,,36200850,,, +756,CHN,zh,CNR 1,,Liuzhi/GZTS763 (GZ),26.216667,105.472222,,1,,8320,67,140,,2025-1805,1234567,,,36200846,,, +756,PHL,tl,DXBZ-AM Radyo Bagting,,Dumalinao (zds),7.816667,123.366667,,10,,11086,64,141,,????-1230,1234567,,,50782,,, +756,CHN,zh,CNR 1,,Napo (GX),23.733333,106.816667,,1,,8620,67,142,,2025-1805,1234567,,,36200844,,, +756,CHN,zh,CNR 1,,Shaoyang (HN),27,111.266667,,1,,8608,62,142,,2025-1805,1234567,,,36200842,,, +756,INS,id,RRI Pro-1,,Purwokerto/Jompo Kulon (JT),-7.438611,109.334167,,10,,11541,84,142,,2155-1700,1234567,,,48165,,, +756,PHL,,DWNW-AM IBC R,,Naga City (cas),13.566667,123.316667,,5,,10550,60,142,,,,,,48171,,, +756,CHN,zh,CNR 1,,Jinhua (ZJ),29.108056,119.586111,,1,,8902,55,143,,2025-1805,1234567,,,36200251,,, +756,CHN,zh,CNR 1,,Shaoxing (ZJ),30.060556,120.601389,,1,,8871,53,143,,2025-1805,1234567,,,36200056,,, +756,CHN,zh,CNR 1,,Suzhou (JS),31.412778,120.693056,,1,,8752,52,143,,2025-1805,1234567,,,36200054,,, +756,CHN,zh,CNR 1,,Xinchang/Kexia Cun (ZJ),29.503889,120.872306,,1,,8936,53,143,,2025-1805,1234567,,,36200051,,, +756,CHN,zh,CNR 1,,Haikou (HA),19.985,110.346944,,1,,9172,67,144,,2025-1805,1234567,,,36200849,,, +756,CHN,zh,CNR 1,,Ninghua/FJTS704 (FJ),26.233333,116.6,,1,,8992,59,144,,2025-1805,1234567,,,36200059,,, +756,CHN,zh,CNR 1,,Yunhe (ZJ),28.1,119.566667,,1,,8992,55,144,,2025-1805,1234567,,,36200836,,, +756,CHN,zh,CNR 1,,Zhoushan/ZMWS6945 (ZJ),30.051167,122.017389,,1,,8949,52,144,,2025-1805,1234567,,,36200835,,, +756,TWN,,Shengli chih Sheng,,Magong=Makung (PG),23.566417,119.562811,,1,,9407,58,145,,2200-1900,123456,,,48178,,, +756,TWN,,Shengli chih Sheng,,Magong=Makung (PG),23.566417,119.562811,,1,,9407,58,145,,2220-1600,......7,,,48178,,, +756,PHL,,DXJM-AM,,Butuan City (agn),8.933611,125.537778,,2,,11114,61,148,,,,,,48170,,, +756,PHL,tl,DWHL-AM Radyo Apo,,Olongapo City (zmb),14.816667,120.283333,,1,,10253,62,148,,,,,,48172,,, +756,INS,id,R Rodja,,Bogor/Cileungsi (JB-kbo),-6.395278,106.959167,,1,,11288,86,151,,2100-1630,1234567,,,35400030,,, +756,AUS,,6TZ R West,,Margaret River/1586 Bussell Hwy (WA),-33.803428,115.120961,,2,,14129,99,158,,0000-2400,1234567,,,48152,,, +756,AUS,en,3RN ABC National,,Wangaratta (VIC),-36.270778,146.311611,,10,,16428,77,158,,0000-2400,1234567,,,48154,,, +756,NZL,en,RNZ National,,Auckland/Henderson (AUK),-36.849089,174.629694,,10,,18083,33,164,,0000-2400,1234567,,,48168,,, +756,AUS,,2TR ABC Mid North Coast NSW,,Taree (NSW),-31.821389,152.413167,,2,,16465,64,165,,0000-2400,1234567,9993,,48153,,, +756,NZL,,Puketapu R,,Palmerston (OTA),-45.483333,170.716667,,0.7,,18654,63,177,,,,,,52599,,, +760,RUS,,R,b,Ramenskoe (MO),55.520833,38.208333,,0.025,,2102,67,94,,,,,L759 U761 ,85727,,, +760,RUS,,D,b,Kosubyevskoe,44.6875,41.791667,,0.025,,2709,94,100,,,,,U1030 15.0s,IDx2,86785,, +760,USA,,WVNE,,Leicester (MA),42.249167,-72.078056,,25,,5736,292,100,,1200-2400,1234567,,,43315,,, +760,USA,en,WJR,,Detroit (MI),42.168056,-83.215,,50,,6428,299,104,,,,9963,,41922,,, +760,USA,,WCIS,,Morganton (NC),35.794444,-81.72,,3.5,,6834,293,120,,,,,,41008,,, +760,B,pt,ZYH588 Rdio Uirapur,,Fortaleza (CE),-3.797553,-38.567694,,10,,7516,230,122,,,,5,,36901345,,, +760,HTI,,4VU,,Torbeck (sud),18.161111,-73.816667,,20,,7763,274,122,,,,,,35657,,, +760,VEN,es,YVQQ R Puerto,,Puerto La Cruz (azg),10.202778,-64.666667,,20,,7826,261,122,,0955-0300,1234567,,,45431,,, +760,PTR,,WORA,,Mayaguez (PR),18.191667,-67.157778,,5,,7306,269,123,,,,1,,42618,,, +760,USA,,KMTL,,Sherwood (AR),34.826111,-92.205278,,10,,7557,299,123,,,,,,38938,,, +760,USA,,WCPS,,Tarboro (NC),35.928889,-77.570278,,1,,6559,290,123,,,,,,41069,,, +760,USA,,WETR,,Knoxville (TN),35.988333,-83.843056,,2.4,,6951,294,123,,,,,,41333,,, +760,DOM,,HICO R Cordillera,,Santo Domingo (sdo),18.566667,-69.916667,,5,,7463,271,125,,,,,,37233,,, +760,B,pt,ZYH424 Marco Zero AM,,Macap (AP),0.046472,-51.068842,,10,,7859,243,126,,,,,,36901343,,, +760,USA,,KFMB,,San Diego (CA),32.8425,-117.025,,50,,9089,315,127,,,,99995,,38409,,, +760,CUB,es,R Progreso,,Guane (pr),22.197833,-84.124033,,10,,8114,284,128,,,,2,,31600104,,, +760,USA,,WENO,,Nashville (TN),36.141111,-86.756389,,1,,7119,296,128,,,,,,41308,,, +760,CLM,es,HJAJ RCN,,Barranquilla (atl),10.866667,-74.816667,,15,,8458,270,130,,,,9990,,37326,,, +760,USA,,WURL,,Moody (AL),33.586944,-86.471667,,1,,7310,294,130,,,,,,43268,,, +760,USA,es,WEFL,,Tequesta (FL),26.995278,-80.192778,,1.5,,7451,285,130,,,,,,41264,,, +760,VEN,,YVSO R Popular 760,,Trujillo (tjl),9.366667,-70.4,,10,,8288,265,130,,,,,,51659,,, +760,B,pt,ZYJ478 Rdio Manchete AM,,So Gonalo (RJ),-22.817722,-43.076325,,25,,9614,225,132,,,,,,36901344,,, +760,EQA,es,HCQR1 R Quito La Voz de la Capital,,Quito (pic),-0.166667,-78.5,,25,,9675,266,132,,,,3,,37068,,, +760,HTI,,R Lumire,,Les Cayes (sud),18.166667,-73.716667,,2,,7756,274,132,,,,,,52101,,, +760,USA,es,WLCC,,Brandon (FL),28.024722,-82.283889,,1,,7502,287,132,,,,,,42140,,, +760,USA,,WCHP,,Champlain (NY),44.945556,-73.43,,0.011,,5631,296,133,,,,14,,40999,,, +760,CAN,en,CFLD,,Burns Lake (BC),54.255278,-125.758333,,0.5,,7388,332,134,,,,18,,35969,,, +760,CTR,,TILX R Columbia,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,0000-2400,1234567,,,40588,,, +760,CUB,es,R Progreso,,Mayar Arriba (sc),20.418867,-75.536092,,1,,7689,277,134,,,,,,31600125,,, +760,GTM,,TGHB Nueva R Super,,Ciudad de Guatemala (gut),14.683333,-90.666667,,10,,9197,285,134,,1000-0500,1234567,,,40496,,, +760,CHL,es,CB76 R Cooperativa,,Santiago/Quilicura (RM),-33.337261,-70.746972,,75,,12080,239,135,,0000-2400,1234567,,,35760,,, +760,MEX,es,XEABC-AM,,San Sebastin Chimalpa (mex),19.379956,-98.959536,,10,,9316,294,135,,,,11,,43680,,, +760,USA,,KKZN,,Thornton (CO),40.009167,-104.939167,,1,,7824,311,135,,,,9970,,38768,,, +760,B,pt,ZYH461 Cidade AM 760,,Vitria da Conquista (BA),-14.908486,-40.820189,,5,,8725,226,136,,,,,,36901339,,, +760,BOL,,CP29 R Fides,,La Paz (lpz),-16.5,-68.116667,,18,,10435,248,136,,1000-0300,12345.7,,,36689,,, +760,BOL,,CP29 R Fides,,La Paz (lpz),-16.5,-68.116667,,18,,10435,248,136,,1000-0500,.....6.,,,36689,,, +760,PNR,es,HOXO La Voz del Istmo,,Pedregal/Rana de Oro (pnm),9.103542,-79.417939,,5,,8926,272,136,,1145-0300,1234567,,,37736,,, +760,USA,,KCCV,,Overland Park (KS),39.040556,-94.509444,,0.2,,7339,303,137,,,,,,38138,,, +760,ARG,es,LU6 R Atlntica,,Mar del Plata (ba),-37.944167,-57.732281,,25,,11776,228,139,,0000-2400,1234567,,,40234,,, +760,B,pt,ZYN408 Natureza AM,,Chapada dos Guimares (MT),-15.471344,-55.670383,,5,,9583,239,139,,,,,,36901333,,, +760,HND,,HRXW,,Tegucigalpa (fmz),14.116667,-87.216667,,3,,9017,282,139,,,,,,37876,,, +760,PNR,es,Asamblea Nacional,,Isla Coln (bct),9.405556,-82.255833,,3,,9093,275,139,,,,,,35100003,,, +760,PRG,es,ZP5 R Encarnacin,,Encarnacin (ita),-27.333333,-55.866667,,10,,10701,232,139,,,,,,45545,,, +760,USA,,KTKR,,San Antonio (TX),29.449444,-98.309167,,1,,8384,300,141,,,,,,39497,,, +760,B,pt,ZYH252 Delmiro 760 AM,,Delmiro Gouveia (AL),-9.384036,-37.989067,,0.25,,8038,226,143,,,,,,36901334,,, +760,HWA,en,KGU,,Honolulu (HI),21.294722,-157.863611,,10,,11711,345,143,,0000-2400,1234567,0,,38516,,, +760,MEX,es,XEES-AM Antena 760,,Chihuahua (chi),28.6894,-106.120111,,1,,8903,305,143,,,,,,43977,,, +760,MEX,es,XEEB-AM Preciosa 760,,Ciudad Obregn (son),27.514083,-109.952689,,1,,9224,307,144,,,,,,43952,,, +760,NCG,es,R Magic,,Managua (mng),12.182758,-86.091483,,1,,9110,279,144,,,,,,33700003,,, +760,MEX,es,XEYW-AM R Mara,,Mrida (yuc),21.040278,-89.604167,,0.5,,8573,288,145,,,,,,45111,,, +760,B,pt,ZYL360 Rdio Terra,,Montes Claros (MG),-16.768219,-43.874867,,0.5,,9061,228,147,,,,,,36901347,,, +760,MEX,es,XEDGO-AM La Mejor,,Durango (dur),24.045431,-104.599889,,0.5,,9238,301,147,,,,,,43906,,, +760,MEX,es,XERA-AM R Uno,,San Cristbal de las Casas (cps),16.709678,-92.623089,,0.5,,9148,287,147,,,,,,44646,,, +760,B,pt,ZYH775 Rdio Rio Claro,,Ipor (GO),-16.431108,-51.113639,,0.5,,9414,234,148,,,,,,36901348,,, +760,BOL,es,RKC-R Kawsachun Coca,,Shinahota (cbb),-16.991667,-65.244444,,1,,10299,245,148,,,,,,36500006,,, +760,PRU,,OBU5B,,Ocobamba/Tres Cruces (apu),-13.483333,-73.561111,,1,,10518,254,149,,,,,,37000096,,, +760,PRU,es,OBZ4X R Mar Plus,,Lima/Chorrillos (lim),-12.183333,-76.966667,,1,,10628,257,149,,0000-2400,1234567,,,40426,,, +760,B,pt,ZYK560 Rdio Jovem Auri Verde,,Bauru/Rua Araucria (SP),-22.291594,-49.062906,,0.5,,9863,230,150,,,,,,36901342,,, +760,B,pt,ZYH783 Rdio Pousada do Rio Quente,,Caldas Novas (GO),-17.736003,-48.605706,,0.25,,9402,232,151,,,,,,36901341,,, +760,B,pt,ZYL257 Rdio Difusora do Machado,,Machado (MG),-21.675261,-45.907197,,0.25,,9642,227,152,,,,,,36901338,,, +760,B,pt,ZYK541 Rdio Urubupung,,Andradina/Rua Cuiab (SP),-20.882475,-51.373947,,0.25,,9851,232,153,,,,,,36901335,,, +760,MEX,es,XENY-AM R Geny,,Nogales (son),31.330772,-110.955489,,0.1,,8924,310,153,,,,333,,44466,,, +760,B,pt,ZYJ343 Rdio Cacique,,Guarapuava (PR),-25.351389,-51.422222,,0.25,,10278,230,154,,,,,,36901336,,, +760,B,pt,ZYJ742 Rdio Nereu Ramos AM,,Blumenau (SC),-26.852778,-48.998889,,0.25,,10297,227,154,,,,,,36901346,,, +760,MEX,es,XEZZ-AM R Gallito,,Guadalajara (jal),20.731567,-103.318717,,0.13,,9462,298,154,,,,,,45166,,, +760,USA,,KTBA,,Tuba City (AZ),36.131667,-111.249722,,0.06,,8496,313,154,,,,,,20016073,,, +760,B,pt,ZYK351 Rdio Ametista,,Planalto (RS),-27.323889,-53.072778,,0.25,,10551,230,155,,,,,,36901337,,, +760,B,pt,ZYK222 Rdio Princesa do Jacu,,Candelria (RS),-29.666667,-52.783333,,0.25,,10757,229,156,,,,,,36901340,,, +760,USA,en,WQDE956,,Murray (UT),40.666694,-111.894306,,0.01,,8110,316,158,,,,,,20010487,,, +761,RUS,,SO,b,Sochi (KD),43.4375,39.875,,0.025,,2652,98,99,,,,,L1020 U1044 ,IDx2 + 6 gap,86786,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0410-0500,12345..,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0510-0600,.....6.,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0710-0800,.....6.,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0910-1000,.....6.,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1310-1400,1234567,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1510-1600,1234567,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0155-0410,12345..,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0155-0510,.....6.,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0155-1310,......7,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0500-1110,12345..,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0600-0710,.....6.,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0800-0910,.....6.,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1000-1310,.....6.,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1200-1310,12345..,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1400-1510,1234567,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1600-2200,1234567,45,,404,,, +765,UKR,ru,Ukray R Maiak,,Petrivka (OD),46.991086,30.889344,,75,,1845,98,57,,1900-2300,1234567,3,,408,,, +765,UKR,uk,Ukray R Maiak,,Petrivka (OD),46.991086,30.889344,,75,,1845,98,57,,0658-1900,1234567,3,,408,,, +765,G,en,BBC Essex,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.5,,414,266,64,,0300-2400,12345..,0,,400,,, +765,G,en,BBC Essex,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.5,,414,266,64,,0500-2400,.....67,0,,400,,, +765,G,en,BBC R 5 Live,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.5,,414,266,64,,0000-0300,12345..,0,,400,,, +765,G,en,BBC R 5 Live,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.5,,414,266,64,,0000-0500,.....67,0,,400,,, +765,GRC,el,ERA Ioanninon,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0500-1100,12345..,9984,,401,,, +765,GRC,el,ERA Ioanninon,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0530-0900,......7,9984,,401,,, +765,GRC,el,ERA Ioanninon,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0700-0900,.....6.,9984,,401,,, +765,GRC,el,ERA Ioanninon,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,1400-1700,12345..,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0000-0700,.....6.,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0900-0500,......7,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0900-0530,.....6.,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,1100-1400,12345..,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,1700-0500,1234...,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,1700-2400,....5..,9984,,401,,, +765,SRB,sr,R Beograd 1,,Medveđa (Srb-jab),42.869264,21.554622,,1,,1528,126,72,,0000-2400,1234567,,,405,,, +765,ARS,ar,BSKSA Al-Quran al-Karim,,Qurayyat (jwf),31.415372,37.385722,,20,,3403,120,78,,0000-2400,1234567,0,,397,,, +765,IRN,fa,IRIB R Iran,,Shahr-e Kord (cbk),32.170994,51.182694,,50,280,4213,104,82,,,,9964,,10800006,,, +765,IRN,ar,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,0330-1030,1234567,9769,,403,,, +765,IRN,ar,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1830-2130,1234567,9769,,403,,, +765,IRN,en,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1030-1130,1234567,9769,,403,,, +765,IRN,fa,IRIB R Iran,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,2130-0100,1234567,9769,,403,,, +765,IRN,ps,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,0230-0330,1234567,9769,,403,,, +765,IRN,ps,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1130-1230,1234567,9769,,403,,, +765,IRN,ps,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1400-1530,1234567,9769,,403,,, +765,IRN,ur,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,0100-0230,1234567,9769,,403,,, +765,IRN,ur,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1300-1400,1234567,9769,,403,,, +765,IRN,ur,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1530-1830,1234567,9769,,403,,, +765,G,en,BBC Essex,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0300-2400,12345..,,,399,,, +765,G,en,BBC Essex,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0500-2400,.....67,,,399,,, +765,G,en,BBC R 5 Live,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-0300,12345..,,,399,,, +765,G,en,BBC R 5 Live,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-0500,.....67,,,399,,, +765,SDN,ar,SRTC Sudan Nat. R,,Khartoum/Soba (kha),15.475339,32.620111,,50,,4685,141,87,,0000-1000,1234567,,,2389,,, +765,ARS,ar,BSKSA Al-Quran al-Karim,,Al-Aflaj/Layla (riy),22.287778,46.696944,,20,,4768,118,92,,0000-2400,1234567,0,,398,,, +765,ARS,ar,BSKSA Al-Quran al-Karim,,Al-Hofuf=Al-Hufuf (shy),25.273611,49.581944,,10,,4681,113,94,,0000-2400,1234567,,,10600004,,, +765,IND,,AIR South,,Dharwad A (KA),15.413889,75.041389,,200,,7208,97,106,,0025-0400,1234567,9988,,48195,,, +765,IND,,AIR South,,Dharwad A (KA),15.413889,75.041389,,200,,7208,97,106,,0630-1005,......7,9988,,48195,,, +765,IND,,AIR South,,Dharwad A (KA),15.413889,75.041389,,200,,7208,97,106,,0700-0935,123456,9988,,48195,,, +765,IND,,AIR South,,Dharwad A (KA),15.413889,75.041389,,200,,7208,97,106,,1200-1735,1234567,9988,,48195,,, +765,CHN,,CNR 5 Zhonghua zhi Sheng,,Fuzhou/SARFT552 (FJ),26.113278,119.625944,,600,130,9177,56,117,,2055-1705,1234567,,,48189,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Damao/NMTS863 (NM),41.712778,110.4075,,10,,7286,53,120,,2150-1605,1234567,,,36200831,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Saihan Tal/NMTS731 (NM),42.724,112.635611,,10,,7320,51,120,,2150-1605,1234567,,,48192,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Baotou/NMTS530 (NM),40.614417,109.839978,,10,,7348,54,121,,2150-1605,1234567,,,36200833,,, +765,MOZ,pt,Emisso Provincial de Nampula,,Nampula (nmp),-15.097,39.262944,,50,,8116,147,121,,0250-2215,1234567,,,2387,,, +765,KRE,,KCBS Chosun Jungang Pangsong,,Hyesan (yan),41.394778,128.174889,,50,,8204,42,122,,2000-1800,1234567,,,48204,,, +765,RUS,ru,R Vostok Rossii,,Khabarovsk (KH),48.5,135.1,,20,,7820,33,122,,2000-1200,1234567,,,6700114,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ergun=E'erguna/NMTS712 (NM),50.234667,120.164056,,3,,7045,41,123,,2150-1605,1234567,,,36201125,,, +765,RUS,ru,R Vostok Rossii,,Ekaterinoslav (KH),47.95,135.133333,,20,,7874,34,123,,2100-1000,1234567,,,48212,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ejin=Ejina/NMTS788 (NM),41.967978,101.070433,,1,,6740,58,124,,2150-1605,1234567,,,36201124,,, +765,RUS,ru,R Vostok Rossii,,Chegdomyn (KH),51.133333,133.05,,5,,7493,33,125,,2000-1200,1234567,,,6700112,,, +765,RUS,ru,R Vostok Rossii,,Bogorodskoye (KH),52.366667,140.45,,5,,7632,28,126,,2000-1200,1234567,,,6700111,,, +765,RUS,ru,R Vostok Rossii,,Nikolayevsk-na-Amure (KH),53.12615,140.858033,,5,,7571,27,126,,2000-1200,1234567,,,6700115,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Badain Jaran=Badanjilin/NMTS754 (NM),39.208333,101.653611,,1,,6995,60,127,,2150-1605,1234567,,,36201122,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Manzhouli/NMTS717 (NM),49.578056,117.497222,,1,,6980,43,127,,2150-1605,1234567,,,36201130,,, +765,RUS,ru,R Vostok Rossii,,De-Kastriy (KH),51.483056,140.776111,,5,,7729,28,127,,2000-1200,1234567,,,6700113,,, +765,RUS,ru,R Vostok Rossii,,Tsmimmermanovka (KH),51.338889,139.252778,,5,,7693,29,127,,2000-1200,1234567,,,6700119,,, +765,RUS,ru,R Vostok Rossii,,Yagodnyi (KH),51.066667,138.433333,,5,,7692,30,127,,2000-1200,1234567,,,6700121,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Kulun/NMTS715 (NM),42.714411,121.768375,,5,,7783,45,128,,2150-1605,1234567,,,36201128,,, +765,RUS,ru,R Vostok Rossii,,Troitskoye (KH),49.372556,136.587689,,5,,7791,32,128,,2000-1200,1234567,,,6700118,,, +765,RUS,ru,R Vostok Rossii,,Vysokogornyi (KH),50.1,139.133333,,5,,7810,30,128,,2000-1200,1234567,,,6700120,,, +765,CHN,,Guizhou RGD Xinwen Guangbo,,Bijie/Dalan Cun-GZTS927 (GZ),27.316667,105.3,,10,,8214,66,129,,,,,,36200832,,, +765,RUS,ru,R Vostok Rossii,,Ayan (KH),56.459722,138.175,,1,,7163,27,129,,2000-1200,1234567,,,6700122,,, +765,RUS,ru,R Vostok Rossii,,Pereyaslavka (KH),47.966667,135.05,,5,,7869,34,129,,2000-1200,1234567,,,6700116,,, +765,RUS,ru,R Vostok Rossii,,Viazemskii=Vyazemskiy (KH),47.522222,134.730556,,5,,7899,34,129,,2000-1200,1234567,,,48213,,, +765,CHN,,Guizhou RGD Xinwen Guangbo,,Zunyi/GZTS691 (GZ),27.533333,106.833333,,10,,8290,65,130,,2150-1605,1234567,,,48194,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Arxan=A'ershan/NMTS768 (NM),47.171944,119.932222,,1,,7301,43,130,,2150-1605,1234567,,,36201121,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Dong Wuzhumuqin Qi/NMTS732 (NM),45.493278,116.974444,,1,,7305,46,130,,2150-1605,1234567,,,36201123,,, +765,RUS,ru,R Vostok Rossii,,Bikin (KH),46.816667,134.241667,,5,,7948,35,130,,2100-1000,1234567,,,47021,,, +765,RUS,ru,R Vostok Rossii,,Sovetskaya Gavan (KH),48.935,140.239722,,5,,7962,30,130,,2000-1200,1234567,,,6700117,,, +765,CHN,,Guizhou RGD Xinwen Guangbo,,Guiyang (GZ),26.416667,106.6,,10,,8373,66,131,,2150-1605,1234567,,,48191,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Hangjin=Hanggin Qi/NMTS843 (NM),39.845389,108.713278,,1,,7350,55,131,,2150-1605,1234567,,,36201126,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Linxi/NMTS726 (NM),43.6,118.05,,1,,7523,47,132,,2150-1605,1234567,,,36200828,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ulanhot/NMTS825 (NM),46.126667,122.046444,,1,,7491,43,132,,2150-1605,1234567,,,36200826,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Zhengxiangbai Qi/NMTS851 (NM),42.313111,115.014194,,1,,7480,49,132,,2150-1605,1234567,,,36201133,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Lindong/NMTS739 (NM),43.977778,119.383333,,1,,7555,46,133,,2150-1605,1234567,,,36201129,,, +765,KOR,ko,HLCQ MBC,,Daejon=Daejeon (daj),36.409722,127.423611,,10,,8635,45,133,,0000-2400,1234567,,,48205,,, +765,CHN,,Shaoguan RGD Beijiang zhi Sheng,,Shaoguan/GDTS641 (GD),24.783333,113.533333,,10,,8941,62,134,,,,,,48193,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Kailu/NMTS727 (NM),43.640642,121.291567,,1,,7677,45,134,,2150-1605,1234567,,,36201127,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ke'erqin Zuoyi Zhong Qi/NMTS735 (NM),44.112058,123.24995,,1,,7728,43,134,,2150-1605,1234567,,,36200829,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Xinhui/NMTS716 (NM),42.284922,119.926686,,1,,7732,46,134,,2150-1605,1234567,,,36201132,,, +765,LAO,lo,LNR Khammouane R,,Tha Khek (kmm),17.392989,104.821058,,10,,9047,73,134,,,,,,22300001,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ningcheng/NMTS725 (NM),41.584089,119.321553,,1,,7764,47,135,,2150-1605,1234567,,,36201131,,, +765,THA,th,Neung Por. Nor.,,Lampang/Hang Chat Road (lpg),18.280833,99.382222,,5,,8612,76,135,,2200-1400,1234567,,,48214,,, +765,J,,JOJF YBS Yamanashi Hoso,,Kofu/Kai (chu-yam),35.680833,138.508611,,5,,9203,37,137,,0000-2400,1234567,,,48201,,, +765,J,,JOPF KRY Yamaguchi Hoso,,Tokuyama/Syunan (chg-yam),34.034467,131.710375,,5,,9064,43,137,,0000-2400,1234567,,,48203,,, +765,THA,th,Thor. Or. 02,,Lop Buri/Khao Phra (lpb),14.883333,100.65,,5,,8991,77,137,,2200-1700,1234567,,,48215,,, +765,CHN,,Guizhou RGD Xinwen Guangbo,,Liupanshui (GZ),26.566056,104.919944,,1,,8255,67,140,,,,,,36200827,,, +765,PHL,,DZYT-AM Sonshine R,,Tuguegarao City (cag),17.6,121.716667,,5,,10082,60,140,,,,,,48210,,, +765,CHN,,Bengbu RGD,,Bengbu (AH),32.95,117.383333,,1,,8432,54,141,,,,,,48190,,, +765,PHL,,DYAR-AM Sonshine R,,Cebu City (ceb),10.3,123.883333,,5,,10887,62,143,,,,,,48207,,, +765,J,,JOJL YBS Yamanashi Hoso,,Fujiyoshida (chu-yam),35.495833,138.811111,,1,,9234,37,144,,0000-2400,1234567,,,48200,,, +765,J,,YBS Yamanashi Hoso,,Otsuki/Uenohara (chu-yam),35.628056,139.038889,,1,,9231,37,144,,0000-2400,1234567,,,48202,,, +765,PHL,,DXGS-AM,,General Santos City (sco),6.1,125.183333,,5,,11356,63,145,,,,,,48208,,, +765,J,ja,KRY Yamaguchi Hoso,,Susatamagawa (chg-yam),34.4,131.4,,0.3,,9014,43,149,,,,,,31400059,,, +765,J,ja,KRY Yamaguchi Hoso,,Yamaguchi (chg-yam),34.15,131.466667,,0.3,,9041,43,149,,,,,,31400058,,, +765,INS,id,RRI Pro-1,,Tual (MA),-5.700278,132.739722,,1,,12913,63,157,,2000-1500,1234567,,,48199,,, +765,AUS,,5CC Classic Hits,,Port Lincoln/Tumby Bay (SA),-34.238556,136.20325,,5,,15596,84,158,,0000-2400,1234567,996,,48188,,, +765,AUS,,8HOT Hot FM,,Katherine (NT),-14.444556,132.27395,,0.5,,13682,69,162,,0000-2400,1234567,,,48185,,, +765,AUS,,2EC,,Bega/Kalaru (NSW),-36.74425,149.938,,3.5,,16703,73,164,,0000-2400,1234567,,,48183,,, +765,AUS,,4GC/t,,Hughenden (QLD),-20.85,144.175361,,0.5,,15000,62,167,,0000-2400,1234567,,,48184,,, +765,AUS,,6SAT Spirit R,,Paraburdoo (WA),-23.216578,117.665583,,0.1,,13460,89,168,,2130-1600,1234567,,,48187,,, +765,NZL,mi,2XT R Kahungunu,,Napier/Opapa (HKB),-39.797222,176.675,,2.5,,18456,32,171,,,,,,48206,,, +770,POL,,LR,b,Krakow / Balice (MP),50.0625,19.875,,0.025,,966,98,83,,,,10,L970 U1003 ,85731,,, +770,UKR,,HT,b,Khust (ZK),48.1875,23.541667,,0.025,,1293,103,86,,,,,,85729,,, +770,UKR,,KH,b,Khust (ZK),48.1875,23.541667,,0.025,,1293,103,86,,,,,,85730,,, +770,RUS,,B,b,Moskva/Sheremetyevo (MV),55.979167,37.458333,,0.025,,2054,66,94,,,,,U1020 ,85728,,, +770,RUS,,N,b,Sheremetyevo (MO),55.979167,37.458333,,0.025,,2054,66,94,,,,,,85735,,, +770,UKR,,MA,b,Mariupol' (DO),47.020833,37.458333,,0.025,,2290,92,96,,,,13,L994 U1020 9.8s,ID+6 gap,85732,, +770,UKR,,MR,b,Mariupol' (DO),47.104167,37.458333,,0.025,,2286,92,96,,,,3,L1010 U1015 ,ID+6 gap,85734,, +770,USA,,WABC,,New York/Lodi [NJ] (NY),40.880556,-74.069722,,50,,5961,292,100,,,,46,,40624,,, +770,RUS,,MI,b,Mikhaylovka,55.0625,57.041667,,0.025,,3284,64,106,,,,,,85733,,, +770,RUS,,QU,b,Mikhaylovka,55.0625,57.041667,,0.025,,3284,64,106,,,,,15.0s,IDx2,85736,, +770,USA,,WTOR,,Youngstown (NY),43.218056,-78.948056,,13,,6092,297,107,,,,,,43194,,, +770,CAN,,CHQR,,Calgary (AB),50.821111,-114.052222,,50,,7281,323,113,,,,9996,,36076,,, +770,USA,,WYRV,,Cedar Bluff (VA),37.084722,-81.768611,,5,,6734,294,117,,,,,,43546,,, +770,USA,,KUOM,,Minneapolis (MN),44.998333,-93.188333,,5,,6777,307,118,,,,,,39586,,, +770,USA,en,WLWL,,Rockingham (NC),34.925,-79.786389,,5,,6780,291,118,,1200-2400,1234567,,,42259,,, +770,ALS,en,KCHU,,Valdez (AK),61.111111,-146.260833,,9.7,,7194,346,119,,0000-2400,1234567,0,,38154,,, +770,USA,,WVNN,,Athens (D) (AL),34.749722,-86.798611,,7,,7235,295,121,,,,,,20012547,,, +770,VEN,es,YVKK RNV Canal Informativo,,Valencia (cbb),10.108578,-68.004261,,50,,8060,264,121,,,,5,,45355,,, +770,USA,,WKFB,,Jeannette (PA),40.288889,-79.701111,,0.75,,6357,295,122,,,,9999,,42001,,, +770,USA,,WAIS,,Buchtel (OH),39.432222,-82.200556,,1,,6577,296,123,,,,,,40677,,, +770,USA,en,KKOB,,Albuquerque (NM),35.2025,-106.611389,,50,,8340,309,123,,,,99838,,38741,,, +770,CUB,es,R Rebelde,,Victoria de las Tunas/CTOM1 (lt),20.924553,-76.899989,,10,,7738,278,124,,,,0,,36608,,, +770,USA,,WCGW,,Nicholasville (KY),37.885278,-84.529444,,1,,6842,296,125,,,,,,40988,,, +770,USA,en,WEW,,St. Louis (MO),38.621667,-90.076111,,1,,7116,300,128,,,,,,41340,,, +770,CLM,es,HJJX RCN,,Bogot D. C. (bdc),4.614167,-74.182728,,30,,8961,265,129,,,,8,,37525,,, +770,USA,en,KTTH,,Seattle/Maury Island (WA),47.393889,-122.423611,,5,,7931,326,129,,,,998,,39543,,, +770,USA,,KATL,,Miles City (MT),46.396111,-105.778889,,1,,7306,316,130,,,,,,37980,,, +770,B,pt,ZYJ922 Rdio Atalaia de Sergipe,,Aracaj (SE),-10.890967,-37.064178,,5,,8143,225,131,,,,,,36901360,,, +770,URG,es,CX12 R Oriental,,Montevideo (mo),-34.776389,-56.231667,,125,,11410,228,131,,0850-0600,1234567,,,36784,,, +770,DOM,,HIMD R Popular,,Tamboril (sto),19.466667,-70.566667,,0.5,,7431,272,134,,1000-0400,1234567,,,37271,,, +770,MEX,es,XEANT-AM,,Tancanhuitz de los Santos (slp),21.617222,-98.956667,,10,,9116,295,134,,,,,,43719,,, +770,PNR,es,HOL83 R Nacional,,El Ejido (her),7.913336,-80.365039,,10,,9094,272,134,,1100-0100,1234567,,,37703,,, +770,USA,,WVNN,,Athens (N) (AL),34.839167,-86.928889,,0.25,,7236,295,135,,,,,,43318,,, +770,USA,es,WJBX,,North Fort Myers (FL),26.775,-81.8475,,0.63,,7578,286,135,,,,,,43363,,, +770,EQA,es,HCMF2 R El Telgrafo,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,37022,,, +770,USA,,KAAM,,Garland (TX),33.032778,-96.575278,,1,,7969,301,137,,,,,,37901,,, +770,USA,en,KCBC,i,Manteca (CA),37.7975,-120.883611,,4.1,,8792,320,137,,,,0,,38126,,, +770,PRU,,OAX8M La Voz de la Selva,,Iquitos/Calle Abtao 255 (lor),-3.755,-73.255833,,5,,9636,260,139,,1000-0300,123456,,,40356,,, +770,PRU,,OAX8M La Voz de la Selva,,Iquitos/Calle Abtao 255 (lor),-3.755,-73.255833,,5,,9636,260,139,,1100-1700,......7,,,40356,,, +770,USA,,KJCB,,Lafayette (LA),30.298611,-91.991667,,0.5,,7928,296,139,,,,,,38661,,, +770,SLV,,YSKL La Poderosa,,San Salvador (ssl),13.716667,-89.166667,,2.5,,9182,283,140,,,,,,45284,,, +770,B,pt,ZYH609 Rdio Vale do Salgado,,Lavras da Mangabeira (CE),-6.716667,-38.983333,,0.25,,7824,229,141,,,,,,36901358,,, +770,B,pt,ZYH922 Rdio Vitria,,Coelho Neto (MA),-4.263247,-43.029911,,0.25,,7800,234,141,,,,,,36901354,,, +770,BOL,,CP116 R Cosmos,,Cochabamba (cbb),-17.366667,-66.166667,,5,,10390,246,141,,1100-0300,1234567,,,36632,,, +770,HND,,HRMV,,Coyoles (yor),15.466667,-86.666667,,1,,8863,282,143,,,,,,37802,,, +770,HND,,HRNN7,,Juticalpa (ola),14.616667,-86.2,,1,,8906,281,143,,,,,,37819,,, +770,MEX,es,XEACH-AM R Frmula,,Monterrey (nvl),25.670947,-100.185289,,1,,8830,299,143,,,,,,43693,,, +770,B,pt,ZYN404 Rdio Cidade de Matup,,Matup (MT),-10.179444,-54.924167,,1,,9045,241,144,,,,,,36901352,,, +770,GTM,,TGBX R Fraternidad,,Quetzaltenango (qzt),14.816667,-91.466667,,1,,9238,285,144,,1000-0600,1234567,,,40483,,, +770,HND,,HRNN21,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37811,,, +770,MEX,es,XEIH-AM La nica,,Fresnillo (zac),23.18305,-102.879811,,1,,9214,299,144,,,,,,44166,,, +770,MEX,es,XEML-AM La Ranchera,,Apatzingan (mic),19.064456,-102.345122,,1.5,,9554,296,144,,,,,,44386,,, +770,SLV,,YSKL La Poderosa,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,45288,,, +770,SLV,,YSKL La Poderosa,,Santa Ana (sta),13.966667,-89.516667,,1,,9184,283,144,,,,,,45286,,, +770,SLV,,YSKL La Poderosa,,Sonsonate (ssn),13.716667,-89.7,,1,,9218,283,144,,,,,,45285,,, +770,SLV,,YSKL La Poderosa,,Usulutn (usu),13.316667,-88.45,,1,,9170,282,144,,,,,,45287,,, +770,B,pt,ZYH745 Voz do Corao Imaculado,,Anpolis (GO),-16.315392,-48.895133,,1,,9281,233,145,,,,,,36901362,,, +770,B,pt,ZYI560 Rdio Clube AM,,Marab (PA),-5.326906,-49.107033,,0.25,,8246,239,145,,,,,,36901363,,, +770,MEX,es,XEHUA-AM Aro,,Santa Cruz Huatulco (oax),15.728889,-96.159167,,1,,9463,289,145,,,,,,44145,,, +770,MEX,es,XEMRO-AM Aro,,Matas Romero (oax),16.873333,-95.036389,,1,,9290,289,145,,,,,,44407,,, +770,MEX,es,XESUR-AM,,Chilapa (gue),17.588056,-99.168611,,1,,9489,293,145,,,,,,44776,,, +770,PRU,,OBX6H,,Cayma (are),-16.341667,-71.544444,,2.5,,10640,251,145,,,,,,37000101,,, +770,B,pt,ZYH491 Rdio Rio Corrente,,Santa Maria da Vitria (BA),-13.416722,-44.189461,,0.5,,8750,230,146,,,,,,36901356,,, +770,USA,en,KKOB,,Santa Fe (NM),35.682222,-105.9725,,0.23,,8263,309,146,,,,,,38742,,, +770,B,pt,ZYL302 Rdio Clube 770 AM,,Patos de Minas (MG),-18.561892,-46.540436,,0.5,,9372,229,148,,,,,,36901359,,, +770,B,pt,ZYK506 Rdio Mix,,Limeira (SP),-22.62895,-47.425378,,0.5,,9811,228,149,,,,,,36901349,,, +770,B,pt,ZYL315 Rdio Pontal do Triangulo Mineiro,,Iturama (MG),-19.754711,-50.193539,,0.5,,9680,232,149,,,,,,36901350,,, +770,B,pt,ZYI211 Rdio Nova Difusora,,Cachoeiro de Itapemirim (ES),-20.809833,-41.123306,,0.25,,9323,224,151,,,,,,36901357,,, +770,B,pt,ZYI412 Rdio Caius,,Dourados (MS),-22.264106,-54.757039,,0.5,,10166,234,151,,,,,,36902066,,, +770,B,pt,ZYL337 Rdio Itabira AM,,Itabira (MG),-19.623758,-43.217122,,0.25,,9307,226,151,,,,,,36901353,,, +770,B,pt,ZYL209 Rdio Cultura AM,,Lavras (MG),-21.253594,-45.014786,,0.25,,9556,227,152,,,,,,36901351,,, +770,B,pt,ZYJ344 Rdio Jovem Pan,,Camb (PR),-23.284722,-51.268056,,0.25,,10073,231,153,,,,,,36901364,,, +770,MEX,es,XEREV-AM Los 40 Principales,,Los Mochis (sin),25.817417,-109.015578,,0.1,,9329,305,155,,,,,,44032,,, +770,CHL,es,CD77 R Agricultura,,Temuco (AR),-38.759944,-72.695558,,1,,12654,237,156,,1000-0400,1234567,,,35915,,, +770,CHL,,CD77 R Cooperativa,,Castro (LL),-42.466667,-73.766667,,1,,13021,235,157,,,,,,51932,,, +770,USA,en,WPIV391,,La Porte (TX),29.761019,-95.094358,,0.01,,8164,297,159,,,,,,20010489,,, +770,USA,en,WPMU210,,El Monte (CA),34.065556,-118.010967,,0.01,,9019,316,164,,,,,,20010490,,, +770,USA,en,WQEA967,,Ontario/Int.Airport (CA),34.062,-117.610961,,0.01,,9001,316,164,,,,,,20010488,,, +774,D,de,WDR 2/WDR Vera,,Bonn/Venusberg (nrw),50.708056,7.096667,,5,,163,163,52,,0000-2400,1234567,9991,,410,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0625-0630,12345..,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0650-0700,12345..,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0800-0815,12345..,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1208-1300,12345..,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1230-1300,.....67,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1400-1415,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0000-0625,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0000-1230,.....67,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0630-0650,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0700-0800,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0815-1208,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1300-1400,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1300-2400,.....67,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1415-2400,12345..,,,416,,, +774,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.300917,-0.322389,,100,,1516,203,52,,0000-2400,1234567,998,,418,,, +774,E,es,RNE R Nacional,,Cceres/Aldea del Cano (RNE) (EXT-CC),39.346889,-6.337194,,50,,1725,220,57,,0000-2400,1234567,997,,417,,, +774,E,es,RNE R Nacional,,Ourense/Pereiro (RNE) (GAL-OU),42.355867,-7.8021,,25,,1521,230,58,,0000-2400,1234567,,,415,,, +774,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0000-2400,1234567,,,413,,, +774,EGY,ar,ERTU Al-Sharq al-Awsat,,Abis (bhy),31.135139,30.072333,,500,130 275,3023,131,60,,0000-2400,1234567,0,,419,,, +774,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0000-2400,1234567,,,412,,, +774,G,en,BBC R 5 Live,,Littlebourne (EN-KNT),51.2875,1.158611,,0.7,,373,258,62,,0000-0500,1234567,0,,422,,, +774,G,en,BBC R Kent,,Littlebourne (EN-KNT),51.2875,1.158611,,0.7,,373,258,62,,0500-2400,1234567,0,,422,,, +774,BIH,,R 7 Tuzla,,Tuzla/Bukovcici (tuz),44.542167,18.684169,,2.5,,1235,128,65,,0000-2400,1234567,,,46826,,, +774,E,es,RNE R Nacional,,Granada/Cllar Vega (AND-GR),37.159833,-3.688111,,10,,1840,209,65,,0000-2400,1234567,,,411,,, +774,G,en,BBC R 4,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,1,,756,260,65,,0600-0100,1234567,,,421,,, +774,G,en,BBC WS,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,1,,756,260,65,,0100-0600,1234567,,,421,,, +774,G,,BBC Asian Network,,New Farnley (EN-WYK),53.772139,-1.634611,,0.5,,569,292,66,,1800-0100,1234567,99993,,423,,, +774,G,en,BBC R Leeds,,New Farnley (EN-WYK),53.772139,-1.634611,,0.5,,569,292,66,,0100-1800,1234567,99993,,423,,, +774,E,es,RNE R Nacional,,La Lnea (RNE) (AND-CA),36.154056,-5.340656,,10,,2001,212,67,,0000-2400,1234567,,,414,,, +774,G,en,BBC R 4,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0600-0100,1234567,17,,420,,, +774,G,en,BBC WS,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0100-0600,1234567,17,,420,,, +774,G,en,Gold,,Cheltenham/Little Shurdington (EN-GLO),51.855972,-2.126972,,0.14,,585,271,71,,0000-2400,1234567,0,,424,,, +774,IRN,fa,IRIB R Markazi,,Arak (mrk),34.081667,49.883611,,100,,3977,103,77,,0000-2400,1234567,9693,,426,,, +774,IND,,AIR North,,Shimla (HP),31.168056,77.206667,,50,,6056,83,101,,0025-1740,......7,,,48225,,, +774,IND,,AIR North,,Shimla (HP),31.168056,77.206667,,50,,6056,83,101,,0045-0400,123456,,,48225,,, +774,IND,,AIR North,,Shimla (HP),31.168056,77.206667,,50,,6056,83,101,,0700-0940,1234567,,,48225,,, +774,IND,,AIR North,,Shimla (HP),31.168056,77.206667,,50,,6056,83,101,,1050-1740,123456,,,48225,,, +774,CHN,ug,Hotan RGD,,Hotan=Hetian (XJ),37.15,79.816667,,10,,5776,76,105,,,,,,36200338,,, +774,J,,JOUB NHK2,,Akita (toh-aki),39.9505,139.936028,,500,,8838,34,116,,2030-1500,1.....7,99996,,48236,,, +774,J,,JOUB NHK2,,Akita (toh-aki),39.9505,139.936028,,500,,8838,34,116,,2030-1635,.2345..,99996,,48236,,, +774,J,,JOUB NHK2,,Akita (toh-aki),39.9505,139.936028,,500,,8838,34,116,,2030-1640,.....6.,99996,,48236,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Wuhan/Dadongcun (HU),30.456111,114.036667,,200,,8465,58,119,,2125-1730,1234567,,,48224,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Yichang (HU),30.703056,111.228889,,50,,8280,60,123,,,,,,36200334,,, +774,CHN,,Beijing RGD R 774,,Beijing/BJTS804 (BJ),39.953178,116.496561,,10,,7763,50,125,,2200-1600,1234567,,,48220,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Shiyan (HU),32.613889,110.841944,,10,,8090,59,128,,,,,,36200332,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Enshi/Sanhe Cun (HU),30.333333,109.466667,,10,,8207,61,129,,,,,,36200336,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,,,,,36200333,,, +774,KOR,ko,HLAN MBC,,Chuncheon (gan),37.940278,127.7225,,10,,8506,44,132,,0000-2400,1234567,,,48237,,, +774,KOR,ko,HLAJ MBC,,Jeju=Cheju (jej),33.450833,126.473889,,10,,8865,47,133,,????-1702,1234567,,,48238,,, +774,PHL,,DWWW-AM,s,Valenzuela/Tagalag (ncr),14.717533,120.940986,,25,,10301,62,134,,2000-1630,1234567,,,48241,,, +774,TWN,,Hsien Sheng Guangbo Gongsi,,Taoyuan (TY),24.967861,121.269664,,10,,9375,56,135,,,,,,48249,,, +774,TWN,,Taiwan Guangbo Gongsi,,Taichung/Chungtai (TC),24.146717,120.576433,,10,,9412,57,135,,,,,,48248,,, +774,CHN,,Jinzhou JGD,,Jinzhou (LN),41.116667,121.116667,,1,,7895,46,136,,,,,,48221,,, +774,THA,th,Sor. Sor. Sor.,,Udon Thani/Nong Samrong Rd (udt),17.448194,102.786944,,5,,8909,74,136,,0000-2400,1234567,,,48247,,, +774,THA,th,Phon Mor. Song,,Rayong/Ban Khai Road (ryg),12.733889,101.279167,,5,,9221,78,137,,,,,,48246,,, +774,PHL,,DYRI-AM Radyo Agong,,Iloilo City (ilo),10.708567,122.583281,,10,,10771,63,140,,2100-1700,1234567,,,48242,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Shashi (HU),30.3,112.25,,1,,8375,59,141,,,,,,36200337,,, +774,PHL,tl,DXSO-AM Radyo ng Bayan,,Marawi City/MSU Campus (lds),7.993928,124.256889,,10,,11124,63,141,,,,,,48244,,, +774,TWN,,Shengli chih Sheng,,Tainan (TN),22.942222,120.310756,,1,,9507,58,145,,,,,,48508,,, +774,AUS,en,3LO ABC Melbourne,,Melbourne/Delahey (VIC),-37.72055,144.784044,,50,,16432,80,151,,0000-2400,1234567,1,,48218,,, +774,INS,id,PM3BFY R Glest/R Klasik,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,0130-????,1234567,93,,35400009,,, +774,PHL,,DXSM-AM Radyo ng Bayan,,Jolo/Camp Asturias (slu),6.043611,121.0025,,1,,11103,67,151,,,,,,48243,,, +774,INS,id,R Swara Kenanga,,Yogyakarta (YO-yog),-7.827778,110.390833,,1,,11647,84,152,,,,,,35400032,,, +774,INS,id,RRI Pro-1,,Fak-Fak (PB-fak),-2.953311,132.352,,1,,12634,62,156,,2000-1400,1234567,,,48234,,, +774,AUS,en,4TO,,Townsville/Clevedon (QLD),-19.319222,147.032778,,5,,15029,58,157,,0000-2400,1234567,0,,48219,,, +774,NZL,,R Sport,,New Plymouth/Bell Block (TKI),-39.033111,174.131556,,5,,18280,38,167,,0000-2400,1234567,9848,,48240,,, +777,RUS,,ST,b,Sirotinskaya,49.270833,43.708333,,0.025,,2617,82,99,,,,,,85737,,, +778,UKR,,GR,b,Krasnograd,49.395833,35.458333,,0.025,,2052,87,93,,,,616,L400 U400 30.0s,ID+26 gap,85738,, +778,RUS,,L,b,Stary Oskol (BE),51.354167,37.791667,,0.025,,2146,80,94,,,,,,85739,,, +780,RUS,,N,b,Anapa / Vityazevo (KD),44.979167,37.291667,,0.025,,2386,97,97,,,,3,L995 U1000 ,85741,,, +780,RUS,,P,b,Anapa / Vityazevo (KD),45.020833,37.375,,0.025,,2389,97,97,,,,,U1000 15.0s,IDx2,85742,, +780,RUS,,FS,b,Ust - Tsilma (KO),65.395833,52.208333,,0.025,,2934,42,102,,,,11,L1002 U1024 ,85740,,, +780,USA,en,WBBM,,Chicago (IL),41.990556,-88.0275,,50,,6726,302,107,,,,0,,40811,,, +780,RUS,,WI,b,Uray (KY),60.104167,64.791667,,0.025,,3599,52,109,,,,,,85744,,, +780,USA,en,WAVA,,Arlington (VA),38.976389,-77.114444,,12,,6295,292,109,,1200-2400,1234567,9996,,40634,,, +780,VRG,en,ZBVI,,Tortola (ttl),18.424103,-64.604208,,20,,7112,267,115,,0930-0200,1234567,,,45495,,, +780,ALS,,KNOM,,Nome (AK),64.487778,-165.299444,,14,,7030,356,116,,0000-2400,1234567,9985,,39008,,, +780,USA,,WWOL,,Forest City (NC),35.350556,-81.901111,,10,,6880,292,116,,,,,,43419,,, +780,USA,en,WXME,,Monticello (ME),46.341667,-67.817778,,0.06,,5189,294,121,,,,,,42836,,, +780,HTI,,Eben-Ezer,,Mirebalais (cen),18.833333,-72.1,,10,,7589,273,123,,,,,,52102,,, +780,USA,,WZZX,,Lineville (AL),33.306111,-85.745,,5,,7288,293,123,,,,,,43604,,, +780,B,pt,ZYI771 Rdio Jornal do Comercio,,Recife (PE),-8.025222,-34.953817,,10,,7755,224,125,,,,,,36901375,,, +780,CLM,es,HJZW,,Riohacha (lag),11.583333,-72.866667,,30,,8263,269,125,,,,,,37669,,, +780,USA,,KKOH,,Reno (NV),39.678056,-119.801667,,50,,8564,320,125,,,,99940,,38743,,, +780,VEN,,YVOD Ecos del Torbes,,San Cristbal (tch),7.788706,-72.273017,,50,,8553,266,125,,0900-0400,12345..,,,45404,,, +780,VEN,,YVOD Ecos del Torbes,,San Cristbal (tch),7.788706,-72.273017,,50,,8553,266,125,,0900-0600,.....67,,,45404,,, +780,USA,en,WIIN,,Ridgeland (MS),32.426667,-90.205278,,5,,7638,296,126,,1300-0100,1234567,,,41741,,, +780,USA,,WPTN,,Cookeville (TN),36.158333,-85.520833,,1,,7041,295,127,,,,,,42746,,, +780,VEN,es,YVMN R Coro,,Coro (flc),11.395989,-69.754511,,10,,8067,266,128,,0000-2400,1234567,9990,,2000,,, +780,B,pt,ZYH919 Rdio Alvorada,,Z Doca (MA),-3.277436,-45.650772,,5,,7852,237,129,,,,,,36901373,,, +780,USA,,WTME,,Rumford (ME),44.514722,-70.516944,,0.018,,5480,294,129,,,,955,,43172,,, +780,USA,,WJAG,,Norfolk (NE),42.031667,-97.496389,,1,,7255,307,130,,,,,,41836,,, +780,CLM,es,HJZG La Voz del Valle,,Cali (val),3.466667,-76.466667,,15,,9217,267,133,,????-0300,1234567,,,37663,,, +780,CTR,,TIRA R Amrica,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1000-0400,......7,,,40601,,, +780,CTR,,TIRA R Amrica,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1000-0500,123456,,,40601,,, +780,B,pt,ZYL259 Rdio Manhumirim,,Manhumirim (MG),-20.334553,-41.977756,,10,,9317,225,135,,,,,,36901374,,, +780,MEX,es,XEGLO-AM,,Guelatao de Jurez (oax),17.307611,-96.492917,,10,,9345,291,135,,,,,,44065,,, +780,PRG,es,ZP70 R Primero de Marzo,,Mariano Roque Alonso (asu),-25.212058,-57.548128,,25,,10596,235,135,,0830-0400,1234567,997,,45555,,, +780,B,pt,ZYH292 Rdio Nacional,,Eirunep (AM),-6.655922,-69.866581,,10,,9668,255,136,,,,,,36901365,,, +780,B,pt,ZYK695 CBN So Paulo,,So Paulo/Rua Hilia Amaznica (SP),-23.605794,-46.538947,,10,,9861,227,137,,,,,,36901377,,, +780,HTI,,R Lumire,,Jrmie (gan),18.633333,-74.116667,,0.5,,7743,274,137,,,,,,35651,,, +780,PNR,es,Recuerdo 780,,Las Cumbres (pnm),9.111389,-79.569444,,5,,8935,272,137,,,,,,35100004,,, +780,PRU,es,OAX1K R Nacional del Per,,Tumbes (tum),-3.566667,-80.5,,10,,10110,265,137,,,,,,37000121,,, +780,B,,ZYH791,,Colinas do Tocantins (TO),-8.059167,-48.475,,2.5,,8469,237,138,,,,,,45758,,, +780,DOM,,HIBO R Constanza,,Constanza (veg),18.883333,-70.716667,,0.25,,7490,272,138,,1100-0200,1234567,,,37222,,, +780,USA,en,KCEG,,Fountain (CO),38.518611,-104.600833,,0.72,,7938,310,138,,,,0,,20016225,,, +780,PRU,es,OAZ7S R Nuevo Tiempo,,Juliaca (pun),-15.816667,-70.016667,,10,,10495,250,139,,,,,,37000123,,, +780,B,pt,ZYH657 Rdio Difusora Seara,,Nova Russas (CE),-4.711717,-40.564939,,0.25,,7710,231,140,,,,,,36901371,,, +780,USA,,KSPI,,Stillwater (OK),36.082222,-97.053611,,0.25,,7735,303,140,,,,,,39404,,, +780,ARG,,LRA12 R Nacional,,Santo Tome (cn),-28.55,-56.016667,,5,,10822,232,143,,0900-0300,1234567,,,39932,,, +780,HND,,HRSF,,Roatan (bah),16.316667,-86.5,,1,,8778,282,143,,,,,,37841,,, +780,MEX,es,XESFT-AM La Triple T,,San Fernando (tam),24.835339,-98.171033,,1,,8782,297,143,,,,,,44739,,, +780,B,pt,ZYH789 Rdio Sociedade Vera Cruz,,Goiansia (GO),-15.304914,-49.091506,,1,,9195,233,144,,,,,,36901372,,, +780,GTM,,TGCK R Sultana del Oriente,,Zacapa (zcp),14.966667,-89.516667,,1,,9096,284,144,,,,,,40485,,, +780,NCG,es,YNAD R Deportes,,Managua (mng),12.155472,-86.21645,,1,,9121,280,144,,,,,,52196,,, +780,PNR,es,HOB55 R Chiriqu,,Dolega (chq),8.586128,-82.423744,,1,,9176,274,144,,1100-2300,1234567,,,37677,,, +780,B,pt,ZYK279 Rdio Pampa,,Porto Alegre (RS),-29.962872,-51.285656,,2.5,,10709,227,145,,,,,,36901376,,, +780,B,pt,ZYL246 Rdio Educadora de Uberlndia,,Uberlndia (MG),-18.957006,-48.325367,,1,,9504,231,145,,,,,,36901378,,, +780,MEX,,XETKX,,Tekax (yuc),20.2125,-88.297778,,0.5,,8559,286,145,,,,,,44830,,, +780,MEX,es,XEXY-AM La Voz de Balsas,,Ciudad Altamirano (gue),18.374825,-100.682861,,1,,9513,295,145,,,,,,45076,,, +780,ARG,,LV8 R Libertador,,Mendoza (mz),-32.883333,-68.816667,,5,,11928,238,146,,0900-0500,1234567,,,39962,,, +780,CHL,es,CD78 R Sago AM,,Osorno/Pucoihue (LL),-40.597722,-73.283111,,10,,12840,236,146,,1000-0400,1234567,,,35917,,, +780,EQA,,HCCM1 Colon AM,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,1,,36828,,, +780,EQA,,HCRG4,,Mia (man),-0.95,-80.683333,,1,,9893,267,147,,,,,,37083,,, +780,MEX,es,XETS-AM Ke Buena,,Tapachula (cps),14.928764,-92.271108,,0.5,,9281,286,148,,,,,,44863,,, +780,ARG,,LRA10 R Nacional,,Ushuaia (tf),-54.830903,-68.336011,,10,,13734,222,149,,0000-2400,1234567,,,39930,,, +780,ARG,,LRF210 R Tres,,Trelew (ch),-43.25,-65.316667,,5,,12633,229,149,,0000-2400,1234567,968,,51804,,, +780,B,pt,ZYJ788 Marconi AM,,Urussanga/Morro do Padre (SC),-28.516167,-49.308722,,1,,10472,227,149,,,,,,36901366,,, +780,MEX,es,XELD-AM R Costa,,Autln de Navarro (jal),19.766183,-104.269208,,0.5,,9607,298,149,,,,,,44298,,, +780,MEX,es,XEWGR-AM Exa,,Monclova (coa),26.917892,-101.409708,,0.25,,8792,300,149,,,,,,45020,,, +780,PRU,,OAX4X R Victoria,,Lima (lim),-12.040556,-77.069444,,1,,10623,257,149,,0000-2400,1234567,997,,40314,,, +780,USA,,KAZM,,Sedona (AZ),34.860556,-111.819444,,0.25,,8642,312,149,,,,9842,,37998,,, +780,MEX,es,XEMTS-AM R Frmula,,Tampico (tam),22.235,-97.859444,,0.25,,8993,295,150,,,,,,44412,,, +780,MEX,es,XEZN-AM Exa,,Celaya (gua),20.527342,-100.770108,,0.25,,9326,296,151,,,,,,45147,,, +780,B,pt,ZYK619 Rdio Difusora Monte Aprazvel,,Monte Aprazvel/Rua Gois 126 (SP),-20.758183,-49.716644,,0.25,,9750,231,152,,,,,,36901367,,, +780,B,pt,ZYJ247 Rdio Porta Voz,,Cianorte (PR),-23.635,-52.573333,,0.25,,10176,232,154,,,,,,36901369,,, +780,B,pt,ZYJ305 Rdio Chopinzinho,,Chopinzinho (PR),-25.859722,-52.501389,,0.25,,10383,231,154,,,,,,36901379,,, +780,USA,en,WCKB,,Dunn (NC),35.283333,-78.596944,,0.001,,6675,290,154,,1200-2400,1234567,,,41011,,, +780,B,pt,ZYK229 Rdio Dirio da Manh,,Carazinho (RS),-28.274444,-52.765278,,0.25,,10624,229,155,,,,,,36901370,,, +783,E,es,COPE Miramar/Rock & Gol,,Barcelona/Ctra.Consera (EAJ39) (CAT-B),41.4675,2.2635,,50,,1224,196,52,,0000-2400,1234567,9997,,432,,, +783,SYR,ar,SRTV 1 Dimashk,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,0500-1600,1234567,9997,,435,,, +783,SYR,ar,SRTV 1 Dimashk,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,1900-0300,1234567,9997,,435,,, +783,SYR,he,SRTV R Damascus,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,0300-0500,1234567,9997,,435,,, +783,SYR,he,SRTV R Damascus,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,1600-1830,1234567,9997,,435,,, +783,SYR,ru,SRTV R Damascus,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,1830-1900,1234567,9997,,435,,, +783,ALG,ar,R El Oued Souf,,El Oued (39),33.372778,6.837778,,10,,2084,179,68,,0000-2400,1234567,,,200004,,, +783,ALG,ar,R Illizi,,Djanet (33),24.571111,9.465833,,5,,3073,174,81,,0000-2400,1234567,,,200005,,, +783,ARS,ar,BSKSA Idha'atu-i Jeddah,,Ras al-Khair (Ras al-Zawr) (shy),27.459483,49.304267,,100,,4476,111,82,,0300-2200,1234567,9986,,430,,, +783,MTN,ar,R Mauritanie,,Nouakchott (nkc),18.135556,-16.001667,,50,,4254,216,83,,0500-1800,1234567,,,1755,,, +783,MTN,ar,R Mauritanie,,Nouakchott (nkc),18.135556,-16.001667,,50,,4254,216,83,,1815-0100,1234567,,,1755,,, +783,MTN,fr,R Mauritanie,,Nouakchott (nkc),18.135556,-16.001667,,50,,4254,216,83,,1800-1815,1234567,,,1755,,, +783,IRN,,IRIB R Zahedan,,Iranshahr (sib),27.229889,60.476322,,300,,5230,100,85,,0000-2400,1234567,4,,1784,,, +783,SDN,ar,SRTC Nahr An-Nyl R,,Atbara (rnl),17.667456,33.986731,,5,,4525,137,95,,,,,,2394,,, +783,CHN,,Hebei RGD Shenghuo Guangbo,,Baoding/HBTS662 (HB),38.932778,115.443056,,100,,7796,51,115,,2130-1710,1234567,,,48253,,, +783,CHN,,Haixia zhi Sheng Minnanhua Pindao,,Fotan/Houxu Cun (FJ),24.156767,117.929594,,600,105,9258,59,117,,2130-1900,1234567,,,48254,,, +783,CHN,,Xizang RGD Khams,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,,,,,36201178,,, +783,VTN,vi,VOV2,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2155-1700,1234567,,,48271,,, +783,IND,,AIR Vividh Bharati,,Chennai C=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0025-0435,1234567,,,48257,,, +783,IND,,AIR Vividh Bharati,,Chennai C=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0900-1200,1234567,,,48257,,, +783,IND,,AIR Vividh Bharati,,Chennai C=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,1245-1730,1234567,,,48257,,, +783,CHN,,Hebei RGD Xinwen Guangbo,,Chengde/HBTS1084 (HB),40.966667,117.933333,,10,,7748,49,125,,,,,,36200335,,, +783,CHN,bo,CNR 11,,Xigaz (XZ),29.291111,88.881267,,1,,6989,76,127,,,,,,36201182,,, +783,CHN,bo,CNR 11,,Sog=Suo Xian (XZ),31.895278,93.782,,1,,7099,71,128,,,,,,36201181,,, +783,CHN,zh,Xizang RGD Hanyu,,Lhnz=Longzi (XZ),28.410639,92.45475,,1,,7297,74,130,,,,,,36201179,,, +783,CHN,zh,Xizang RGD Hanyu,,Mainling=Milan (XZ),29.213889,94.209722,,1,,7346,73,130,,,,,,36201180,,, +783,HKG,,RTHK R 5,,Golden Hill (stn),22.3675,114.153889,,20,,9195,63,131,,0000-2400,1234567,9959,,48256,,, +783,KOR,ko,HLCV KBS 1 R,,Yeongwol (gan),37.184722,128.476111,,10,,8613,44,132,,0000-2400,1234567,,,48261,,, +783,CHN,zh,Hebei RGD Shenghuo Guangbo,,Zhangjiakou/HBTS109 (HB),40.600556,115.0925,,1,,7632,51,133,,2100-1900,1234567,,,36201183,,, +783,CHN,zh,Hebei RGD Shenghuo Guangbo,,Langfang (HB),39.516667,116.7,,1,,7812,50,135,,2100-1900,1234567,,,36201184,,, +783,THA,,Sor. Wor. Thor. (R Thailand),,Ranong (rng),9.907778,98.627222,,10,,9290,82,135,,????-1500,1234567,,,48270,,, +783,CHN,zh,Hebei RGD Shenghuo Guangbo,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,2100-1900,1234567,,,36200824,,, +783,THA,th,Thor. Phor. Saam,,Kamphaeng Phet/Nakhon Chum (kpp),16.475556,99.509167,,5,,8777,77,136,,????-1100,1234567,,,48269,,, +783,CHN,,Hebei RGD Xinwen Guangbo,,Handan/Nanbao Xiang (HB),36.558056,114.522778,,1,,7954,54,137,,,,,,36200339,,, +783,PHL,,DZNL-AM Aksyon Radyo,,San Fernando/Pagdalagan (lun),16.579444,120.321667,,5,,10093,61,140,,2000-1600,1234567,,,48267,,, +783,PHL,,DXRA-AM Radyo Arangkada,,Davao City/Madapo Hills (dvs),7.075,125.6,,10,,11291,62,141,,????-1500,1234567,,,48265,,, +783,PHL,,DYME-AM Radyo Ukay,,Masbate City (msb),12.366667,123.616667,,5,,10679,61,142,,,,,,48266,,, +783,INS,id,R.Dakwah Mesjid Raya Sabilal Muhtadin,,Banjarmasin (KS-kbm),-3.32,114.590278,,1,,11532,78,152,,,,,,48258,,, +783,INS,id,RRI Pro-1,,Ende (NT-end),-8.837922,121.689956,,2,,12494,75,152,,0700-1400,1234567,,,48259,,, +783,INS,id,RRI Pro-1,,Ende (NT-end),-8.837922,121.689956,,2,,12494,75,152,,2000-0400,1234567,,,48259,,, +783,AUS,,6VA R West,,Albany (WA),-35.012125,117.849214,,2,,14404,99,159,,0000-2400,1234567,,,48251,,, +783,AUS,,8AL ABC Alice Springs,,Alice Springs/South Stuart Hwy (NT),-23.767533,133.872344,,2,,14599,75,159,,0000-2400,1234567,,,48252,,, +783,NZL,,2YB Access R./Samoan Capital R.,,Wellington/Titahi Bay (WGN),-41.094444,174.849722,,10,,18509,40,165,,0000-2400,1234567,,,48264,,, +786,RUS,,ED,b,Ekaterinburg / Koltsovo (SV),56.729167,60.875,,0.025,,3466,60,108,,,,,,85745,,, +786,RUS,,EL,b,Ekaterinburg / Koltsovo (SV),56.729167,60.708333,,0.025,,3456,60,108,,,,,,85746,,, +789,BLR,,JR,b,Osovtsy (BR),52.5625,24.875,,0.025,,1252,80,85,,,,,U1120 15.0s,IDx2 + 3 gap,85747,, +789,BLR,,OW,b,Osovtsy (BR),52.5625,24.875,,0.025,,1252,80,85,,,,987,L770 U745 15.5s,IDx2,85748,, +790,MDA,,RSH,b,Beltsy,47.8125,27.791667,,0.025,,1596,99,89,,,,,,85749,,, +790,USA,,WPRV,i,Providence (RI),41.834167,-71.365556,,5,,5720,291,107,,,,998,,43013,,, +790,CAN,en,CFCW,,Camrose (AB),52.960278,-112.959167,,50,,7044,324,111,,,,9,,35945,,, +790,USA,,WNIS,,Norfolk (VA),37.073611,-76.291944,,5,,6388,290,114,,,,,,42472,,, +790,USA,,WTNY,,Watertown (NY),43.945556,-75.948333,,1,,5856,296,116,,,,998,,43188,,, +790,USA,en,WAEB,,Allentown (PA),40.660278,-75.513889,,1.5,,6068,293,116,,,,2,,40657,,, +790,USA,,WAYY,,Eau Claire (WI),44.830833,-91.449444,,5,,6695,306,117,,,,,,40788,,, +790,USA,,KFGO,,Fargo (ND),46.718056,-96.801389,,5,,6830,311,118,,,,0,,38386,,, +790,ALS,,KCAM,,Glennallen (AK),62.114444,-145.535278,,5,,7076,346,121,,0000-2400,1234567,,,38122,,, +790,USA,,WSGW,,Saginaw (MI),43.461111,-83.813333,,1,,6365,300,121,,,,,,42997,,, +790,VEN,es,YVXM R.Minuto La Barquisimetana,,Barquisimeto (lar),10.066667,-69.316667,,50,,8153,265,122,,0000-2400,1234567,998,,51661,,, +790,VEN,,YVKC R Venezuela 7-90,,Caracas (dcf),10.466667,-66.783333,,25,,7946,263,123,,,,9982,,45351,,, +790,CUB,es,R Reloj,,Holgun (ho),20.859947,-76.272811,,10,,7701,278,124,,,,,,31600083,,, +790,CUB,es,R Reloj,,Pinar del Ro/CTOM2 (pr),22.433208,-83.662633,,25,,8063,284,124,,,,0,,2217,,, +790,USA,,WMC,,Memphis (TN),35.168611,-89.885,,5,,7389,298,124,,,,9942,,42286,,, +790,USA,en,WAXY,,South Miami (FL),25.756667,-80.639444,,5,,7583,284,126,,,,0,,40784,,, +790,USA,en,WKRD,,Louisville (KY),38.192778,-85.520556,,1,,6878,297,126,,,,,,43498,,, +790,USA,en,KJRB,,Spokane (WA),47.502222,-117.385,,3.8,,7722,323,128,,,,,,38693,,, +790,USA,,KGHL,,Billings (MT),45.824722,-108.410556,,1.8,,7480,317,129,,,,,,38479,,, +790,USA,,WQXI,,Atlanta (GA),33.811667,-84.353611,,1,,7159,293,129,,,,,,42803,,, +790,PRU,,OAX2I R Programas del Peru,,Trujillo (lal),-8.116667,-79.033333,,50,,10410,261,131,,0000-2400,1234567,,,40282,,, +790,USA,,WLBE,,Leesburg-Eustis (FL),28.828333,-81.786111,,1,,7403,287,131,,,,9963,,42130,,, +790,DOM,,HIL LV del Tropico,,Santo Domingo (sdo),18.466667,-69.916667,,1,,7471,271,132,,0000-2400,1234567,,,37266,,, +790,USA,,KBME,,Houston (TX),29.915,-95.461667,,5,,8172,298,132,,,,,,38059,,, +790,USA,,WLSV,,Wellsville (NY),42.076944,-77.929722,,0.041,,6114,296,132,,,,,,42238,,, +790,CAN,en,CFYI-1,,Caledon (ON),43.901667,-79.831111,,0.03,,6095,298,133,,,,,,20109102,,, +790,CLM,es,HJDC Caracol,,Medelln (ant),6.3017,-75.596878,,10,,8909,268,133,,,,,,37387,,, +790,USA,,WPIC,,Sharon (PA),41.219444,-80.473611,,0.058,,6334,296,133,,,,,,42690,,, +790,B,pt,ZYI679 Rdio Cultura,,Guarabira (PB),-6.868658,-35.500656,,1,,7666,225,134,,,,2,,36901388,,, +790,USA,,WSVG,,Mount Jackson (VA),38.770833,-78.621389,,0.04,,6406,293,135,,,,,,43084,,, +790,USA,en,KGMI,,Bellingham (WA),48.721944,-122.445278,,1,,7805,327,135,,,,20,,38493,,, +790,USA,en,KURM,,Rogers (AR),36.302778,-94.113056,,0.5,,7546,301,135,,,,,,39591,,, +790,PNR,es,R Panam,,Los Boquerones (vrg),8.080556,-80.861389,,6,,9113,273,136,,,,,,52301,,, +790,VEN,,RNV Canal Informativo,,Ciudad Bolivar (blv),8.133333,-63.55,,1,,7932,259,136,,,,,,51660,,, +790,MEX,es,XEVA-AM,,Villahermosa (tab),18.006647,-92.910419,,5,,9052,288,137,,,,,,44945,,, +790,USA,,WETB,,Johnson City (TN),36.328611,-82.410833,,0.072,,6834,294,137,,,,,,41331,,, +790,USA,,WVCD,,Bamberg-Denmark (SC),33.313889,-81.078611,,0.1,,6991,290,137,,,,,,43286,,, +790,USA,en,KABC,i,Los Angeles (CA),34.028056,-118.372778,,5,,9040,316,137,,,,0,,37904,,, +790,ARG,es,LR6 R Mitre AM,,Buenos Aires/Hurlingham (df),-34.580528,-58.669556,,25,,11518,230,138,,0000-2400,1234567,997,,39927,,, +790,B,pt,ZYJ337 RCC AM,,Mandirituba (PR),-25.624444,-49.319444,,10,,10195,228,138,,,,,,36901382,,, +790,MEX,es,XEBI-AM,,Aguascalientes (agu),21.887125,-102.333556,,5,,9298,298,138,,,,0,,43778,,, +790,USA,,KOSY,,Texarkana (AR),33.375,-94.016667,,0.5,,7788,299,138,,,,0,,39104,,, +790,USA,,WSFN,,Brunswick (GA),31.144444,-81.582222,,0.115,,7200,289,138,,,,,,42986,,, +790,USA,en,WHTH,,Heath (OH),40.051389,-82.468889,,0.026,,6546,297,138,,,,,,41693,,, +790,B,pt,ZYK674 Rdio Cultura,,Taubat (SP),-23.0007,-45.652278,,5,,9758,227,139,,,,,,36901383,,, +790,USA,,KFPT,,Clovis (CA),36.844167,-119.686944,,2.5,,8831,319,139,,,,99877,,39094,,, +790,USA,,KFYO,,Lubbock (TX),33.463889,-101.925,,1,,8239,305,139,,,,,,38450,,, +790,USA,,KWIL,,Albany (OR),44.631667,-123.015833,,1,,8220,325,139,,,,,,39713,,, +790,B,pt,ZYH904 Rio Turiau AM,,Santa Helena (MA),-2.230833,-45.301944,,0.25,,7733,237,140,,,,,,36901397,,, +790,GTM,,TGO R Festival,,Ciudad de Guatemala (gut),14.616667,-90.566667,,2.5,,9196,284,140,,1100-0400,1234567,,,40521,,, +790,USA,,WGRA,,Cairo (GA),30.902222,-84.234167,,0.11,,7390,291,140,,,,,,41556,,, +790,USA,,WRMS,,Beardstown (IL),40.003056,-90.3975,,0.055,,7023,302,140,,,,,,42884,,, +790,USA,es,WBLO,,Thomasville (NC),35.961389,-80.036944,,0.026,,6714,292,140,,,,,,43597,,, +790,B,pt,ZYH629 Rdio Jornal,,Iguatu (CE),-6.378508,-39.26045,,0.25,,7805,229,141,,,,,,36901399,,, +790,EQA,,HCOT1,,Santo Domingo de los Colorados (pic),-0.266667,-79.15,,3,,9728,266,141,,,,,,37051,,, +790,MEX,es,XEUP-AM Candela,,Tizimn (yuc),21.145506,-88.119636,,1,,8467,287,142,,,,,,44922,,, +790,ARG,,LRA22 R Nacional,,San Salvador de Jujuy (jy),-24.194411,-65.307942,,5,,10952,241,143,,0945-0500,1234567,,,39942,,, +790,B,pt,Rdio Rio Flores AM,,Tuntum (MA),-5.263889,-44.634722,,0.25,,7985,235,143,,,,,,36901390,,, +790,B,pt,ZYH484 Rdio Barreiras,,Barreiras (BA),-12.136761,-44.999461,,1,,8669,231,143,,,,,,36901400,,, +790,USA,,WPEI436,,Pittsburg (CA),38.033333,-121.883333,,1,,8813,321,143,,,,9935,,51939,,, +790,B,pt,ZYH915 Rdio Cultura de Aailndia,,Aailndia (MA),-4.889067,-47.512458,,0.25,,8112,237,144,,,,,,36901393,,, +790,B,pt,ZYI931 Rdio Mafrense,,Simplcio Mendes (PI),-7.854275,-41.907556,,0.25,,8088,231,144,,,,,,36901398,,, +790,B,pt,ZYJ316 Rdio Club de Faxinal,,Faxinal (PR),-23.988611,-51.315833,,2.5,,10143,231,144,,,,,,36901389,,, +790,CLM,es,HJNC,,Ibagu (tol),4.433333,-75.233333,,1,,9048,266,144,,,,,,35901402,,, +790,HND,,HRTG2,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37850,,, +790,MEX,es,XEGZ-AM W R,,Gmez Palacio (dur),25.566625,-103.466997,,1,,9034,301,144,,,,,,34900013,,, +790,MEX,es,XESU-AM,,Mexicali (bcn),32.643822,-115.506411,,1,,9033,314,144,,,,,,44774,,, +790,MEX,es,XEFE-AM La Fiesta,,Nuevo Laredo (tam),27.457222,-99.486944,,0.5,,8630,299,145,,,,,,44002,,, +790,MEX,es,XERC-AM Formato 21,,Mxico D.F/Granjas Mxico (dif),19.397756,-99.101222,,1,,9323,294,145,,,,,,44655,,, +790,USA,,WPNN,,Pensacola (FL),30.4525,-87.240556,,0.066,,7618,292,145,,,,,,42719,,, +790,B,pt,ZYH505 Rdio Regional de Serrinha,,Serrinha (BA),-11.685956,-38.992469,,0.25,,8316,226,146,,,,,,36901392,,, +790,B,pt,ZYI456 Rdio Regional,,Nortelndia (MT),-14.442547,-56.8126,,1,,9554,240,146,,,,,,36901394,,, +790,HWA,en,KKON,,Kealakekua (HI),19.519444,-155.918889,,5,,11868,343,146,,0000-2400,1234567,999,,38746,,, +790,USA,,KNST,,Tucson (AZ),32.248333,-111.008333,,0.5,,8842,310,146,,,,,,39020,,, +790,USA,en,WTSK,,Tuscaloosa (AL),33.188056,-87.589722,,0.036,,7413,295,146,,,,,,43215,,, +790,B,pt,ZYL311 Rdio Treze de Junho,,Mantena (MG),-18.769394,-40.980067,,0.5,,9114,225,147,,,,,,36901396,,, +790,MEX,es,XENT-AM R Frmula,,La Paz (bcs),24.163889,-110.315556,,0.75,,9554,305,147,,,,,,44460,,, +790,MEX,es,XERPC-AM R Ranchito,,Chihuahua (chi),28.609906,-106.050269,,0.4,,8907,305,147,,,,,,44699,,, +790,B,pt,ZYH761 Rdio Xavantes,,Ipameri (GO),-17.731647,-48.165894,,0.5,,9378,231,148,,,,,,36901387,,, +790,USA,,KBET,,Winchester (NV),36.11,-115.002222,,0.3,,8682,315,148,,,,,,38021,,, +790,ARG,,LT46 R Provincia,,Bernardo de Irigoyen (mn),-26.25,-53.616667,,1,,10479,231,149,,0900-0300,1234567,,,40198,,, +790,B,pt,ZYH771 Rdio Eldorado de Mineiros,,Mineiros (GO),-17.559878,-52.536606,,0.5,,9600,235,149,,,,,,36901386,,, +790,B,pt,ZYK546 Rdio Cultura Araraquara,,Araraquara (SP),-21.820144,-48.208444,,0.5,,9773,229,149,,,,,,36901384,,, +790,USA,,KSPD,,Boise (ID),43.565833,-116.336944,,0.061,,8045,320,150,,,,,,39403,,, +790,USA,,KXXX,,Colby (KS),39.393056,-101.001667,,0.024,,7669,308,150,,,,5,,39833,,, +790,B,pt,ZYL279 Rdio Sociedade Ponte Nova,,Ponte Nova (MG),-20.411928,-42.905008,,0.25,,9370,226,151,,,,,,36901385,,, +790,B,pt,ZYL314 Rdio Tropical,,Lagoa da Prata (MG),-20.002336,-45.523556,,0.25,,9460,228,151,,,,,,36901381,,, +790,MEX,es,XEGAJ-AM R Frmula 1,,Guadalajara (jal),20.666439,-103.360094,,0.25,,9471,298,151,,,,,,44043,,, +790,ARG,,LV19 R Malargue,,Malargue (mz),-35.466667,-69.566667,,1.5,,12195,237,152,,1100-0400,1234567,,,40242,,, +790,USA,en,KEJY,,Eureka (CA),40.8025,-124.138889,,0.11,,8637,324,152,,,,9969,,39759,,, +790,B,pt,ZYK538 Rdio Brasil,,Adamantina (SP),-21.703889,-51.064444,,0.25,,9912,232,153,,,,,,36901391,,, +790,B,pt,ZYJ789 Rdio Videira,,Videira (SC),-26.997222,-51.193611,,0.25,,10422,229,154,,,,,,36901380,,, +790,B,pt,ZYK285 Rio Pardo AM,,Rio Pardo (RS),-29.969444,-52.395,,0.25,,10765,228,156,,,,,,36901395,,, +790,USA,en,KNNV350,,Ovilla/105 Cockrell Hill Road (TX),32.527917,-96.889444,,0.01,,8031,300,157,,,,,,20010492,,, +790,USA,en,WQEV743,,South Lake/Bicentennial Park (TX),32.945,-97.154167,,0.01,,8011,301,157,,,,,,20010493,,, +790,USA,en,WPED339,,Richmond (CA),37.928528,-122.34275,,0.01,,8842,321,163,,,,,,20010491,,, +790,USA,en,WPEI436,,Pittsburg (CA),38.027681,-121.861022,,0.01,,8812,321,163,,,,,,20010494,,, +791,RUS,,SU,b,Belozersk / Ozyorsk,60.0625,37.708333,,0.025,,2108,53,94,,,,8,L393 U407 20.0s,IDx2,85750,, +792,D,de,Funkhaus Europa,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,1500-1900,....5..,9995,,438,,, +792,D,de,Funkhaus Europa,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,1500-2000,1234...,9995,,438,,, +792,D,de,Hamburger Hafenkonzert,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0500-0700,......7,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0000-0500,......7,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0000-1500,12345..,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0000-2400,.....6.,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0700-2400,......7,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,1900-2400,....5..,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,2000-2400,1234...,9995,,438,,, +792,F,fr,France Info,,Limoges/Nieul (87),45.933056,1.161944,,300,,786,211,40,,0000-2400,1234567,0,,440,,, +792,E,es,SER,,Sevilla/EAJ5 (AND-SE),37.230833,-5.978889,,50,,1917,215,59,,0000-2400,1234567,9984,,439,,, +792,G,en,BBC R Foyle,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,1,,963,295,67,,0000-2400,1234567,9999,,441,,, +792,G,en,Gold,,Kempston (EN-BEF),52.106667,-0.489167,,0.28,,471,273,67,,0000-2400,1234567,9999,,442,,, +792,IRN,fa,IRIB R Zanjan,,Zanjan (znj),36.595472,48.686111,,50,,3708,101,77,,0230-2130,1234567,9,,1785,,, +792,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400025,,, +792,ARS,ar,BSKSA Al-Quran al-Karim/Pilgrimage,,Jeddah/Al-Nuzla (mkh),21.384222,39.420211,,50,,4435,128,84,,0000-2400,1234567,,,437,,, +792,YEM,ar,YGCRT Aden R,,Aden/Al-Hiswah (adn),12.8211,44.912839,,100,30,5552,128,93,,0300-0800,1234567,,,447,,, +792,YEM,ar,YGCRT Aden R,,Aden/Al-Hiswah (adn),12.8211,44.912839,,100,30,5552,128,93,,1100-2130,1234567,,,447,,, +792,RUS,ru,R Rossii,,Abakan/RV68 (RK),53.708889,91.475,,25,,5352,52,97,,2200-1800,1234567,986,,46892,,, +792,IND,,AIR West,,Pune A (MH),18.501111,73.947778,,100,105,6869,96,106,,0000-0500,1234567,,,48284,,, +792,IND,,AIR West,,Pune A (MH),18.501111,73.947778,,100,105,6869,96,106,,0700-1000,1234567,,,48284,,, +792,IND,,AIR West,,Pune A (MH),18.501111,73.947778,,100,105,6869,96,106,,1200-1740,1234567,,,48284,,, +792,NPL,,R Nepal,,Kathmandu (bag),27.646844,85.306042,,100,,6883,80,106,,2315-1722,1234567,,,48307,,, +792,CHN,,rmqi RGD,,rmqi/Hongguangshan (XJ),45.886389,87.602222,,1,,5648,63,113,,,,,,36200818,,, +792,RUS,ru,R Rossii,,Aleksandrovsk-Sachalinskiy (SL),50.890833,142.123056,,50,,7831,28,118,,1800-1400,1234567,,,46891,,, +792,CHN,zh,Guangxi RGD Xinwen,,Nanning/GXTS101 (GX),22.792222,108.191667,,100,,8789,67,123,,0000-2400,1234567,,,48280,,, +792,KOR,ko,HLSQ SBS Love FM,,Seoul/Goyang (seo),37.638889,126.801944,,50,,8490,45,125,,0000-2400,1234567,,,48306,,, +792,CHN,,Chengdu RGD News,,Chengdu/SCTS504 (SC),30.599722,104.098611,,10,,7858,65,126,,,,,,48277,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Guilin/GXTS240 (GX),25.396278,110.323667,,50,,8692,64,126,,0000-2400,1234567,,,36200822,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Liuzhou/GXTS238 (GX),24.39875,109.344889,,50,,8719,65,126,,0000-2400,1234567,,,36200820,,, +792,CHN,zh,Shanghai Dongfang GD Dushi 792,,Shanghai/Minhang (SH),31.109167,121.514722,,50,,8824,52,126,,0000-2400,1234567,,,48281,,, +792,CHN,,Shenyang RGD News,,Shenyang (LN),41.748056,123.385,,10,,7948,45,127,,,,,,48282,,, +792,CHN,zh,Ordos=Eerodusi RGD,,Otog (NM),39.1,107.983333,,1,,7371,56,131,,,,,,48278,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Fangcheng (GX),21.766667,108.383333,,10,,8891,67,133,,0000-2400,1234567,,,36200823,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Pingxiang (GX),22.097778,106.752278,,10,,8759,68,133,,0000-2400,1234567,,,36200819,,, +792,THA,th,Wor. Por. Thor.,,Bangkok/Phra Khanong (bmp),13.693736,100.607667,,10,,9092,78,134,,0000-2400,1234567,,,48318,,, +792,PHL,,DWGV-AM Radyo Centro,,Angeles City (pam),15.133333,120.583333,,20,,10242,62,135,,2100-????,1234567,,,48311,,, +792,TWN,,Han Sheng Kuangpo Tientai,,Hualien (HL),23.982206,121.61285,,10,,9486,56,135,,2100-1600,1234567,,,48319,,, +792,CHN,,Xinmi RGD,,Xinmi (HE),34.516667,113.366667,,1,,8069,56,138,,,,,,48283,,, +792,CHN,zh,Zhengzhou RGD Female Space-Time,,Zhengzhou/HETS804 (HE),34.778056,113.579444,,1,,8058,55,138,,,,,,36201104,,, +792,J,,NHK R 1,,Enbetsu (hok),44.716667,141.8,,1,,8433,31,141,,0000-2400,1234567,,,48296,,, +792,PHL,,DXBN-AM Radyo ng Bayan,,Butuan City/Doongan (agn),8.95,125.533333,,10,,11112,61,141,,2055-????,1234567,,,48312,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Hechi (GX),24.7,108.033333,,1,,8612,66,142,,0000-2400,1234567,,,36200821,,, +792,PHL,,DWES-AM,,Narra (plw),9.283333,118.416667,,5,,10644,67,142,,,,,,48313,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Yulin/GXTS241 (GX),22.673889,110.195,,1,,8924,65,143,,0000-2400,1234567,,,36200817,,, +792,PHL,,DYRR-AM,,Ormoc City/Bantigue (lyt),11.016667,124.566667,,5,,10862,61,143,,2100-1600,1234567,,,48314,,, +792,J,,NHK R 1,,Takada (chu-nii),37.1,138.283333,,1,,9054,37,144,,0000-2400,1234567,,,48303,,, +792,J,,NHK R 1,,Takayama (chu-gif),36.133333,137.25,,1,,9106,38,144,,0000-2400,1234567,,,48304,,, +792,PHL,,DXPD-AM,,Pagadian City (zds),7.816667,123.416667,,5,,11089,64,144,,,,,,48315,,, +792,J,,NHK R 1,,Naze (kyu-oki),28.4,129.5,,1,,9495,48,145,,0000-2400,1234567,,,48301,,, +792,TWN,,Keelung Kuangpo Tientai,,Keelung=Chi-Lung (KLS),25.1225,121.744722,,1,,9388,55,145,,0000-2400,1234567,,,48320,,, +792,J,ja,NHK R 1,,Esashi (hok),41.866667,140.15,,0.5,,8656,33,146,,0000-2400,1234567,,,48297,,, +792,INS,id,PM7CLQ SRJS-R.Suara Riajaya Santosa,,Baturaja (SS-oku),-4.133333,104.166667,,1,,10900,86,150,,,,,,48285,,, +792,INS,id,PM8CNW R.Amanda/R.Dwianda,,Gadingrejo (LP-tan),-5.383333,105.016667,,1,,11067,87,151,,,,,,35400033,,, +792,INS,id,R As Syafi'iyah,,Jakarta/Tebet (JK-kjt),-6.233333,106.85,,1,,11266,86,151,,,,97,,48288,,, +792,AUS,en,4RN ABC National,,Brisbane/Bald Hills (QLD),-27.311586,153.017467,,25,,16107,58,153,,0000-2400,1234567,20,,48276,,, +792,J,,NHK R 1,,Iwaizumi (toh-iwa),39.85,141.783333,,0.1,,8918,33,153,,0000-2400,1234567,,,48299,,, +792,INS,id,PM2DHE R Idola,,Pancor (NB),-8.666667,116.516667,,1,,12134,79,154,,,,,,48292,,, +792,J,,NHK R 1,,Imabari (shi-ehi),34.052222,133.018056,,0.1,,9123,42,154,,0000-2400,1234567,,,48298,,, +792,J,,NHK R 1,,Ozu (shi-ehi),33.516667,132.566667,,0.1,,9153,43,154,,0000-2400,1234567,,,48302,,, +792,J,,NHK R 1,,Toujou (Tojo) (chg-hir),34.9,133.266667,,0.1,,9052,42,154,,0000-2400,1234567,,,48305,,, +792,INS,id,RKPD Jombang,,Jombang (JI),-7.533333,110.516667,,0.5,,11630,83,155,,2150-1600,1234567,2,,48289,,, +792,NZL,en,1XSR R Sport,,Hamilton/Eureka (WKO),-37.691878,175.404903,,5,,18197,32,167,,0000-2400,1234567,,,48308,,, +795,UKR,,N,b,Donetsk (DO),48.0625,37.708333,,0.025,,2259,89,96,,,,,U1010 15.0s,IDx2 + 12 gap,85751,, +795,UKR,,O,b,Donetsk (DO),48.0625,37.791667,,0.025,,2265,89,96,,,,0,L1000 U1000 ,85752,,, +795,UZB,,UH,b,Buxoro=Bukhara (bux),39.8125,64.458333,,0.025,,4557,84,119,,,,,L1014 ,85754,,, +797,RUS,,UK,b,Buturlinovka (VN),50.8125,40.625,,0.025,,2353,80,97,,,,,L1035 7.0s,IDx2,85755,, +797,RUS,,YUP,b,Buturlinovka (VN),50.8125,40.625,,0.025,,2353,80,97,,,,990,L1070 U1050 ,85756,,, +800,CAN,en,VOWR,,Saint John's (NL),47.571944,-52.752778,,2.5,,4153,287,95,,,,998,,40616,,, +800,CAN,en,CJAD,,Montral/Monte Lussier (QC),45.247222,-73.523056,,10,,5616,296,103,,,,4,,36138,,, +800,CAN,en,CKLW,,Windsor (ON),42.056944,-83.002778,,50,,6424,299,104,,,,15,,36337,,, +800,CAN,en,CJBQ,,Belleville (ON),43.968889,-77.419167,,10,,5944,297,106,,,,999,,36146,,, +800,BES,,PJB Trans World R,,Bonaire (bnr),12.107222,-68.285278,,500,135,7905,265,109,,,,9978,,40455,,, +800,CAN,en,CHAB,,Moose Jaw (SK),50.377222,-105.393889,,10,,6945,318,116,,,,,,36030,,, +800,B,pt,ZYH705 Rdio MEC,,Braslia (DF),-15.784686,-47.889256,,600,,9176,232,117,,,,,,36901401,,, +800,USA,,WNNW,i,Lawrence (MA),42.673889,-71.190556,,0.244,,5650,292,120,,,,1,,42489,,, +800,ALS,,KINY,,Juneau (AK),58.301389,-134.440556,,7.6,,7238,339,121,,0000-2400,1234567,2,,38623,,, +800,USA,,WLAD,,Danbury (CT),41.374167,-73.446389,,0.286,,5885,292,121,,,,,,42117,,, +800,USA,,WTMR,,Camden (NJ),39.909167,-75.1,,0.5,,6098,292,121,,,,,,43178,,, +800,VEN,,YVTB,,Maracaibo (zul),10.666667,-71.666667,,50,,8261,267,123,,,,,,45465,,, +800,B,pt,ZYH256 Palmares AM,,Macei/Stio Osis (AL),-9.490856,-35.606189,,10,,7933,224,126,,,,,,36901402,,, +800,B,pt,ZYI921 Rdio Antares,,Teresina (PI),-5.096517,-42.771447,,10,,7867,233,126,,,,,,36901405,,, +800,B,pt,ZYJ457 Rdio MEC,,Rio de Janeiro/Jardim la Luz (RJ),-22.800194,-43.069972,,100,,9612,225,126,,,,73,,36901406,,, +800,MEX,es,XEROK-AM R Caon,,Ciudad Jurez (chi),31.695544,-106.383611,,50,,8645,307,126,,,,9985,,44694,,, +800,USA,,WDUX,,Waupaca (WI),44.354167,-89.058056,,0.5,,6599,304,126,,,,,,41217,,, +800,USA,,WPEL,,Montrose (PA),41.854444,-75.863889,,0.135,,6002,294,126,,,,,,42665,,, +800,USA,,WVAL,,Sauk Rapids (MN),45.605,-94.139167,,0.85,,6780,308,126,,,,,,43277,,, +800,USA,en,KBRV,,Soda Springs (ID),42.644167,-111.611389,,10,,7916,317,126,,,,,,38091,,, +800,USA,,WCHA,,Chambersburg (PA),39.928056,-77.695556,,0.196,,6260,294,127,,,,,,40989,,, +800,USA,,WSVS,,Crewe (VA),37.195278,-78.166944,,0.27,,6499,291,128,,,,,,43086,,, +800,USA,,WDSC,,Dillon (SC),34.368889,-79.404722,,0.38,,6800,290,129,,,,,,41206,,, +800,USA,,WKBC,,North Wilkesboro (NC),36.187778,-81.141667,,0.308,,6766,293,130,,,,,,41959,,, +800,USA,,WPJM,,Greer (SC),34.949722,-82.245278,,0.438,,6934,292,130,,,,,,42698,,, +800,USA,,WDEH,,Sweetwater (TN),35.613611,-84.459167,,0.379,,7020,294,131,,,,,,41147,,, +800,USA,,WJAT,,Swainsboro (GA),32.581944,-82.356111,,0.5,,7132,291,131,,,,,,41839,,, +800,USA,,WVHU,,Huntington (WV),38.393056,-82.473333,,0.185,,6675,295,131,,,,,,43298,,, +800,DOM,,HIVM R Bonao,,Bonao (mnl),18.916667,-70.416667,,1,,7467,272,132,,1000-0400,1234567,,,37315,,, +800,USA,,WKZI,,Casey (IL),39.304444,-87.971389,,0.25,,6936,299,132,,,,,,42111,,, +800,CLM,es,HJBW,,Bucaramanga (sat),7.066667,-73.116667,,10,,8673,266,133,,,,,,37360,,, +800,SLV,es,YSAX R Mara,,San Salvador (ssl),13.716667,-89.2,,10,,9185,283,134,,,,,,45263,,, +800,USA,,KXIC,,Iowa City (IA),41.6875,-91.544167,,0.199,,6952,304,134,,,,,,39794,,, +800,CUB,es,R Progreso,,Manzanillo (gr),20.333333,-77.133333,,1,,7804,278,135,,,,,,36492,,, +800,USA,,KQCV,,Oklahoma City (OK),35.4125,-97.673889,,1,,7828,303,135,,,,,,39186,,, +800,USA,,WPLK,,Palatka (FL),29.651944,-81.592222,,0.334,,7323,288,135,,,,,,42704,,, +800,CAN,en,CKOR,,Penticton (BC),49.423611,-119.571944,,0.5,,7629,326,136,,,,,,36362,,, +800,USA,,WHOS,,Decatur (AL),34.598611,-87.006667,,0.215,,7260,295,136,,,,,,41680,,, +800,EQA,,HCML2,,Guayaquil (gua),-2.066667,-79.933333,,10,,9939,266,137,,,,,,37028,,, +800,USA,,KREI,,Farmington (MO),37.792222,-90.41,,0.15,,7204,300,137,,,,,,39237,,, +800,MEX,es,XEZV-AM,,Tlapa de Comonfort (gue),17.554278,-98.550367,,5,,9453,292,138,,,,,,45162,,, +800,USA,,KQAD,,Luverne (MN),43.650278,-96.171944,,0.08,,7048,308,138,,,,,,39184,,, +800,MEX,es,XEDD-AM La Tremenda,,Ojo de Agua (nvl),25.237419,-99.8367,,2.5,,8848,298,139,,,,,,43901,,, +800,MEX,es,XEZR-AM La Traviesa,,Zaragoza (coa),28.478611,-100.897578,,2,,8622,301,139,,,,,,45154,,, +800,PNR,es,Tropical 800,,Las Tablas (lsn),7.788611,-80.417778,,3,,9109,272,139,,,,,,52302,,, +800,USA,,WMGY,,Montgomery (AL),32.413333,-86.290278,,0.143,,7396,293,139,,,,,,42322,,, +800,B,pt,ZYK292 Universidade Santa Maria AM,,Santa Maria (RS),-29.697222,-53.806111,,10,,10812,229,140,,,,,,36901403,,, +800,CTR,,TIW R Unica,,San Jos (sjs),9.916667,-84.066667,,3,,9171,277,140,,0000-2400,1234567,,,40609,,, +800,USA,,KAGH,,Crossett (AR),33.134722,-91.946944,,0.24,,7684,298,140,,,,,,37921,,, +800,BOL,,CP265 R Libertad,,La Paz (lpz),-16.5,-68.116667,,5,,10435,248,141,,1000-0200,12345..,,,51967,,, +800,BOL,,CP265 R Libertad,,La Paz (lpz),-16.5,-68.116667,,5,,10435,248,141,,1000-2400,.....67,,,51967,,, +800,MEX,es,XEAN-AM R Alegra,,Ocotln (jal),20.366142,-102.833672,,2.5,,9466,297,141,,,,,,43718,,, +800,MEX,es,XEGX-AM Fiesta Mexicana,,San Luis de la Paz (gua),21.229167,-100.491889,,2.5,,9245,296,141,,,,,,44090,,, +800,USA,,KPDQ,,Portland (OR),45.4775,-122.750278,,0.5,,8128,325,141,,,,9973,,39134,,, +800,B,,ZYJ678,,Porto Velho (RO),-8.75,-63.916667,,2,,9470,249,142,,,,,,46141,,, +800,USA,,WSHO,,New Orleans (LA),29.845,-90.110833,,0.233,,7850,294,142,,,,,,43000,,, +800,HND,,HRMD,,Yoro (yor),15.166667,-87.166667,,1,,8922,282,143,,,,,,37799,,, +800,GTM,,TGYZ R Rosa,,Chiquimulilla (srs),14.066667,-90.366667,,1,,9231,284,144,,0000-2400,1234567,,,40560,,, +800,HND,,HRDL,,Comayagua (cmy),14.45,-87.616667,,1,,9015,282,144,,,,,,37746,,, +800,HND,,HRLP26,,Danli (elp),14.316667,-86.75,,1,,8969,281,144,,,,,,37790,,, +800,HND,,HRXS2,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37875,,, +800,MEX,es,XEQT-AM La Poderosa,,Veracruz (vcz),19.163889,-96.148056,,1,,9158,292,144,,,,,,44636,,, +800,NCG,,R 800,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,1000-0500,1234567,,,52197,,, +800,USA,en,WPIJ539,,Chicago (IL),41.977633,-87.894306,,0.01,,6719,302,144,,,,,,20010498,,, +800,USA,en,WPIJ539,,Chicago (IL),41.977633,-87.894306,,0.01,,6719,302,144,,,,,,20010501,,, +800,USA,en,WQCT264,,Chicago (IL),41.793083,-87.760969,,0.01,,6726,301,144,,,,,,20010497,,, +800,USA,en,WQCT264,,Chicago/5245 W 55th Street (IL),41.793083,-87.760969,,0.01,,6726,301,144,,,,,,20010502,,, +800,EQA,,HCFB1 R Sensacin,,Quito (pic),-0.316667,-79.15,,1,,9732,266,146,,,,902,,36931,,, +800,EQA,,HCFV1 Canal Tropic,,Quito (pic),-0.216667,-78.5,,1,,9679,266,146,,,,,,36944,,, +800,USA,en,KBFP,i,Bakersfield (CA),35.345556,-118.9925,,0.44,,8943,318,147,,,,1,,38255,,, +800,USA,en,KVOM,,Morrilton (AR),35.158889,-92.770278,,0.04,,7563,299,147,,,,,,39653,,, +800,BOL,,CP157 R Santa Clara,,Sorata (lpz),-14.75,-68.666667,,1,,10313,249,148,,0900-2400,1234567,,,36657,,, +800,PRG,,ZP27 R Mbaracay,,Saltos del Guaira (cyu),-24.066667,-54.316667,,1,,10311,233,148,,0900-0300,1234567,,,45522,,, +800,BOL,,R Churuquella,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,1000-0200,1234567,,,51968,,, +800,ARG,,LT43 R Mocovi,,Charata (cc),-27.216667,-61.2,,1,,10986,236,150,,0900-0300,1234567,,,40195,,, +800,MEX,,XESPN-AM,,Tijuana (bcn),32.51215,-117.015714,,0.25,,9120,315,150,,,,,,44388,,, +800,ARG,es,LU15 R Viedma,,Viedma (rn),-40.839892,-63.023697,,2,,12305,229,152,,0900-0300,1234567,972,,40209,,, +800,ARG,es,LV23 R Rio Atuel,,General Alvear (mz),-34.966667,-67.7,,1,,12046,236,154,,1000-0400,1234567,,,40247,,, +800,PRU,,OBX6A R Portena,,Miraflores/Alto Misti (are),-16.386111,-71.511111,,0.35,,10641,251,154,,,,,,40405,,, +800,USA,en,KDDD,,Dumas (TX),35.861667,-101.930556,,0.008,,8028,306,158,,,,,,38246,,, +800,USA,en,WPLT343,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010495,,, +800,USA,en,WPLT343,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010499,,, +800,USA,en,WPLT343,,Austin (TX),30.394347,-97.744722,,0.01,,8267,300,160,,,,,,20010496,,, +800,USA,en,WPLT343,,Austin (TX),30.394347,-97.744722,,0.01,,8267,300,160,,,,,,20010500,,, +801,D,de,Bayern Plus,,Mnchen-Ismaning (bay),48.255278,11.743333,,100,,572,136,43,,0000-2400,1234567,0,,453,,, +801,D,de,Bayern Plus,,Dillberg (bay),49.323611,11.380556,,20,,467,130,49,,0000-2400,1234567,0,,452,,, +801,E,es,RNE R Nacional,,Lugo/Arrieiras (Fontao/RNE) (GAL-LU),42.973911,-7.575722,,25,,1456,231,58,,0000-2400,1234567,,,458,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0625-0630,12345..,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0650-0700,12345..,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0800-0815,12345..,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1208-1300,12345..,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1230-1300,.....67,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1400-1415,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0000-0625,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0000-1230,.....67,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0630-0650,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0700-0800,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0815-1208,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1300-1400,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1300-2400,.....67,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1415-2400,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0000-2400,1234567,,,454,,, +801,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0000-2400,1234567,995,,456,,, +801,E,es,RNE R Nacional,,Ciudad Real/Almagro (RNE) (CAM-CR),38.866503,-3.721228,,20,,1667,212,61,,0000-2400,1234567,8,,459,,, +801,G,en,BBC R 5 Live,,Barnstaple (EN-DVN),51.048056,-4.114722,,2,,736,265,61,,0000-0400,12345..,1,,460,,, +801,G,en,BBC R 5 Live,,Barnstaple (EN-DVN),51.048056,-4.114722,,2,,736,265,61,,0000-0500,.....67,1,,460,,, +801,G,en,BBC R Devon,,Barnstaple (EN-DVN),51.048056,-4.114722,,2,,736,265,61,,0400-2400,12345..,1,,460,,, +801,G,en,BBC R Devon,,Barnstaple (EN-DVN),51.048056,-4.114722,,2,,736,265,61,,0500-2400,.....67,1,,460,,, +801,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0000-2400,1234567,1,,455,,, +801,JOR,ar,JRTV R Jordan,,Ajlun (ajl),32.308778,35.797167,,200,,3232,121,66,,0400-0805,1234567,9963,,462,,, +801,AZE,az,Azərbaycan R,,Pirsaat (hac),40.057317,49.061322,,150,,3491,95,70,,0200-2000,1234567,,,448,,, +801,TJK,,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,1200-1400,1234567,,,2363,,, +801,TJK,en,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,0100-0200,1234567,,,2363,,, +801,TJK,en,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,1600-1900,1234567,,,2363,,, +801,TJK,hi,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,1500-1600,1234567,,,2363,,, +801,TJK,ur,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,1400-1500,1234567,,,2363,,, +801,BHR,ar,R Bahrain,,Abu Hayan (ajn),26.035,50.624861,,100,,4682,111,84,,0000-2400,1234567,,,451,,, +801,NIG,,Yobe BC,,Damaturu (yob),11.689194,11.942411,,20,,4522,172,89,,0500-2300,1234567,,,2396,,, +801,ETH,xx,Amhara R,,Zege (amh),11.676167,37.315317,,100,,5280,137,90,,0300-0700,1234567,,,9600017,,, +801,ETH,xx,Amhara R,,Zege (amh),11.676167,37.315317,,100,,5280,137,90,,1400-1900,1234567,,,9600017,,, +801,AZE,az,Azərbaycan R,,Guba=Quba (qub),41.366667,48.527778,,1,,3369,94,91,,0200-2000,1234567,,,449,,, +801,AZE,az,Azərbaycan R,,unknown,40,47.4,,1,,3382,97,91,,0100-1900,1234567,8,,47216,,, +801,IRN,fa,IRIB R Khorasan-e Razavi,,Kashmar (rkh),35.273031,58.482672,,10,,4469,94,92,,,,,,461,,, +801,SDN,,SRTC Sudan Nat. R,,Al-Fashir=El Fasher (ndf),13.633333,25.366667,,5,,4600,151,96,,,,,,47141,,, +801,NIG,,R Kebbi,,Zuru (kbb),11.425728,5.249581,,1,,4525,182,102,,0500-2300,1234567,,,2397,,, +801,IND,,AIR West,,Jabalpur (MP),23.196389,79.903056,,200,,6881,88,103,,0025-0430,123456,,,48349,,, +801,IND,,AIR West,,Jabalpur (MP),23.196389,79.903056,,200,,6881,88,103,,0025-0500,......7,,,48349,,, +801,IND,,AIR West,,Jabalpur (MP),23.196389,79.903056,,200,,6881,88,103,,0630-0945,1234567,,,48349,,, +801,IND,,AIR West,,Jabalpur (MP),23.196389,79.903056,,200,,6881,88,103,,1130-1742,1234567,,,48349,,, +801,CHN,ug,Kashgar RGD,,Kashgar=Kashi (XJ),39.416667,76,,1,,5359,76,111,,,,,,48334,,, +801,KRE,,KCBS Pyongyang Pangsong,,Hwadae (hab),40.85,129.433333,,500,,8312,41,113,,2100-1900,1234567,954,,48362,,, +801,CHN,,Yinchuan RGD,,Yinchuan (NX),38.5,106.2,,10,,7319,58,120,,,,,,48346,,, +801,TWN,,Han Sheng GD Kuanghua zhi Sheng,,Kuanyin=Guanin (TY),25.043889,121.094722,,250,,9358,56,121,,2100-1700,1234567,,,48376,,, +801,CHN,zh,Cangzhou RGD Story,,Cangzhou (HB),38.3,116.85,,25,,7927,51,122,,,,,,36201301,,, +801,CHN,,Tangshan JGD,,Tangshan (HB),39.666667,118.285333,,10,,7881,49,126,,2150-1630,1234567,,,48338,,, +801,CHN,,Zhujiang JGD Pearl R,,Maoming/GDTS731 (GD),21.631667,110.904444,,50,,9061,66,127,,,,,,48336,,, +801,CHN,,Yantai JGD,,Yantai (SD),37.5675,121.360556,,10,,8227,48,129,,2125-1530,1234567,,,48345,,, +801,CHN,zh,Hubei RGD Chutian Weixing,,Chongyang (HU),31.483333,111.383333,,10,,8220,59,129,,,,,,36200816,,, +801,CHN,,Hubei RGD Shenghuo Pindao,,Jingmen (HU),31.033333,112.2,,10,,8308,59,130,,,,,,48332,,, +801,INS,id,RRI Pro-4,,Medan/Padang Cermin (SU-med),3.549433,98.423456,,50,,9833,86,130,,0900-1500,1234567,,,48585,,, +801,INS,id,RRI Pro-4,,Medan/Padang Cermin (SU-med),3.549433,98.423456,,50,,9833,86,130,,2200-0235,1234567,,,48585,,, +801,CHN,,Hubei RGD Shenghuo Pindao,,Macheng (HU),31.183333,115.033333,,10,,8458,57,132,,,,,,36200812,,, +801,CHN,,Wenzhou JGD,,Wenzhou (ZJ),28.1,120.6,,10,,9050,54,134,,????-1606,1234567,,,48341,,, +801,CHN,,Lingyuan RGD,,Lingyuan/LNTS331 (LN),41.233333,119.4,,1,,7799,47,135,,,,,,36200813,,, +801,CHN,,Shaanxi Traffic Station,,Weinan (SA),34.607778,109.583611,,1,,7845,58,135,,,,,,36200811,,, +801,THA,th,Thor. Or. 015,,Chiang Rai/Phahonyothin Rd (cri),19.865,99.821667,,5,,8504,75,135,,2200-1502,1234567,,,48372,,, +801,CHN,,Fuyang JGD,,Fuyang (AH),32.929167,115.804167,,3,,8346,55,136,,,,,,48327,,, +801,CHN,en,CRI Easy FM,,Tianjin (TJ),39.15,117.15,,1,,7868,50,136,,0000-2400,1234567,,,48339,,, +801,THA,th,Mor. Thor. Bor. Thii-Saam-Sip-Et 31,,Nakhon Sawan/Fort Jiraprawat (nsn),15.670833,100.127778,,5,,8888,77,136,,2100-1700,1234567,,,48373,,, +801,CHN,,Liaocheng JGD,,Liaocheng (SD),36.433333,115.966667,,1,,8044,53,137,,,,,,36200814,,, +801,CHN,,Xinxiang RGD,,Xinxiang (HE),35.283611,113.923056,,1,,8033,55,137,,????-1500,1234567,,,48342,,, +801,THA,th,Thor. Or. 08,,Ubon Ratchathani (urt),15.326178,104.829417,,5,,9229,74,137,,2200-1302,1234567,,,48374,,, +801,CHN,,Liaoning RGD Jingji Tai,,Fengcheng/LNTS313 (LN),40.45,124.066667,,1,,8099,45,138,,,,,,36200815,,, +801,CHN,,Zibo JGD/CRI,,Zibo (SD),36.8,118.05,,1,,8124,51,138,,,,,,48347,,, +801,PHL,,DZNC-AM Bombo Radyo,,Cauayan (isa),16.933333,121.766667,,10,,10146,60,138,,,,,,48366,,, +801,CHN,,Jining RGD Jiaotong,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,,,,,48333,,, +801,CHN,en,CRI Easy FM,,Weifang (SD),36.716667,119.1,,1,,8187,50,139,,0000-2400,1234567,,,48340,,, +801,CHN,,Linyi JGD Traffic,,Linyi (SD),35.066667,118.333333,,1,,8294,52,140,,,,,,48335,,, +801,CHN,,Xuzhou JGD,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,1,,8308,53,140,,0950-1605,1234567,,,48343,,, +801,CHN,,Xuzhou JGD,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,1,,8308,53,140,,2115-0500,1234567,,,48343,,, +801,MLA,ms,RTM Sabah FM,,Kudat (sbh),6.913406,116.723775,,10,,10753,70,140,,2030-1600,1234567,,,48363,,, +801,CHN,,Anhui RGD Xiqu Guangbo,,Hefei/Motancun (AH),31.794111,117.379889,,1,,8536,55,142,,,,,,48328,,, +801,CHN,,Huai'an RGD,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,1,,8471,52,142,,,,,,48330,,, +801,CHN,,Jiangsu RGD Xinwen Pinl,,Zhenjiang (JS),32.216667,119.433333,,1,,8611,53,142,,,,,,36200808,,, +801,CHN,,Yangzhou JGD,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,1,,8589,53,142,,2130-1530,1234567,,,48344,,, +801,CHN,zh,Nanjing RGD Tiyu Pinl,,Nanjing/Gulizhen (JS),31.868167,118.671889,,1,,8600,54,142,,2050-1600,1234567,,,48337,,, +801,INS,id,RRI Pro-1,,Semarang (JT-sem),-7.039117,110.551058,,10,,11589,83,142,,2200-1700,1234567,0,,48351,,, +801,PHL,,DWFA-AM,,Sorsogon City (sor),12.966667,124,,5,,10646,60,142,,,,,,48370,,, +801,PHL,,DYKA-AM Radyo Totoo,,San Jose (atq),10.733333,121.933333,,5,,10729,63,142,,2130-1130,1234567,,,48369,,, +801,CHN,,Chizhou RGD,,Chizhou (AH),30.65,117.483333,,1,,8644,55,143,,,,,,48326,,, +801,GUM,,KTWG,,Asan (GU),13.451944,144.708889,,10,,11699,42,143,,2000-1300,1234567,,,39551,,, +801,PHL,,DYWC-AM R Veritas,,Dumaguete (ngo),9.266667,123.3,,5,,10948,63,143,,2100-1600,1234567,,,48367,,, +801,CHN,,Xiamen RGD Voice of Minnan,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,1,,9229,58,144,,,,,,36200810,,, +801,PHL,,DXES-AM Bombo Radyo,,General Santos City (sco),6.105833,125.2,,5,,11356,63,145,,,,,,48368,,, +801,TWN,,Chien Kuo Kuangpo Tientai,,Hsinhua (TN),23.07095,120.356678,,1,,9498,58,145,,????-1615,......7,,,48377,,, +801,TWN,,Chien Kuo Kuangpo Tientai,,Hsinhua (TN),23.07095,120.356678,,1,,9498,58,145,,????-1700,123456,,,48377,,, +801,PHL,,DXBL-AM Sonshine R,,Bislig/Mangagoy (sds),8.183333,126.366667,,1,,11233,61,151,,,,,,48365,,, +801,J,,HBC Hokkaido Hoso,,Engaru (hok),44.066667,143.516667,,0.1,,8558,30,152,,0000-2400,1234567,,,48353,,, +801,J,ja,JOQN HBC, Hokkaido Hoso,,Kitami (hok),43.816667,143.866667,,0.1,,8595,30,152,,0000-2400,1234567,,,48357,, +801,J,ja,JOTN, HBC, Hokkaido Hoso,,Tomakomai (hok),42.666667,141.616667,,0.1,,8631,32,152,,0000-2400,1234567,,,48360, +801,J,,ABS Akita Hoso,,Kazuno (toh-aki),40.183333,140.816667,,0.1,,8849,34,153,,0000-2400,1234567,,,48355,,, +801,J,ja,ABS,,Higashinaruse (toh-aki),39.333333,140.65,,0.1,,8927,34,153,,,,,,31400060,,, +801,J,ja,JOQS HBC, Hokkaido Hoso,,Nemuro (hok),43.35,145.566667,,0.1,,8699,29,153,,0000-2400,1234567,,,48358,, +801,J,,JOFL RFC, R Fukushima,,Haramachi (toh-fuk),37.65,140.966667,,0.1,,9107,35,154,,0000-2400,1234567,,,48354,, +801,J,,JOIO TBC, Tohoku Hoso,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,0000-2400,1234567,,,48356,, +801,J,,Tokai Hoso,,Ena (chu-gif),35.466667,137.416667,,0.1,,9179,38,154,,0000-2400,1234567,,,48352,,, +801,J,,CBC Chubu-Nippon Hoso,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,0000-2400,1234567,,,48359,,, +801,AUS,,4QY ABC Far North QLD,,Cairns/Kamma (QLD),-17.054167,145.777778,,2,,14746,58,160,,0000-2400,1234567,,,48323,,, +801,AUS,it,2RF Rete Italia,,Gosford/Chittaway Point (NSW),-33.327556,151.466389,,5,,16532,67,162,,0000-2400,1234567,,,48324,,, +801,AUS,,5RM,,Renmark/Loxton (Berri) (SA),-34.227889,140.644444,,2,,15896,80,163,,0000-2400,1234567,,,48322,,, +801,NZL,en,2XL NZs Rhema,,Nelson (NSN),-41.198056,173.338889,,1,,18449,44,175,,0000-2400,1234567,,,48364,,, +805,UKR,,CN,b,Chernivtsi (CV),48.3125,25.958333,,0.025,,1449,99,87,,,,,L1010 15.0s,IDx2,85757,, +805,UKR,,CR,b,Chernivitsi (CV),48.3125,25.958333,,0.025,,1449,99,87,,,,1,L1000 U998 15.0s,IDx2,85758,, +806,RUS,,O,b,Chkalovsky,55.895833,37.958333,,0.025,,2085,66,94,,,,,,86789,,, +810,MKD,bg,R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,1900-1930,123456,25,,468,,, +810,MKD,el,R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,1930-2000,123456,25,,468,,, +810,MKD,mk,Makedonsko R 1,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,0000-1900,123456,25,,468,,, +810,MKD,mk,Makedonsko R 1,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,0000-2400,......7,25,,468,,, +810,MKD,mk,Makedonsko R 1,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,2100-2400,123456,25,,468,,, +810,MKD,sq,R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,2000-2030,123456,25,,468,,, +810,MKD,sr,R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,2030-2100,123456,25,,468,,, +810,G,en,BBC R Scotland,,Westerglen (SC-STL),55.975556,-3.816111,,100,,793,307,45,,0600-2400,1234567,0,,466,,, +810,G,en,BBC WS,,Westerglen (SC-STL),55.975556,-3.816111,,100,,793,307,45,,0000-0600,1234567,0,,466,,, +810,G,en,BBC R Scotland,,Burghead (SC-MOR),57.699417,-3.468,,100,,884,319,46,,0600-2400,1234567,0,,465,,, +810,G,en,BBC WS,,Burghead (SC-MOR),57.699417,-3.468,,100,,884,319,46,,0000-0600,1234567,0,,465,,, +810,E,es,SER,,Madrid/Pozuelo de Alarcn (EAJ2/7) (MAD-M),40.428406,-3.808708,,50,,1515,215,55,,0000-2400,1234567,9993,,463,,, +810,G,en,BBC R Scotland,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,5,,780,319,58,,0600-2400,1234567,0,,464,,, +810,G,en,BBC WS,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,5,,780,319,58,,0000-0600,1234567,0,,464,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0300-0830,1234567,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0900-0930,1234567,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1000-1300,1234567,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1400-1430,.....67,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1500-1600,1234567,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1800-1900,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0830-0900,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0930-1000,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1430-1500,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1730-1800,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1900-2000,1234567,,,470,,, +810,RUS,en,Voice of America,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1700-1730,1234567,,,470,,, +810,RUS,ru,Voice of America,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1300-1400,1234567,,,470,,, +810,RUS,ru,Voice of America,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1400-1430,12345..,,,470,,, +810,IRN,fa,IRIB R Lorestan,,Khorramabad (lrn),33.450169,48.320878,,100,,3923,105,76,,0000-2400,1234567,,,1786,,, +810,D,de,Welle 370,,Knigs Wusterhausen (brb),52.3039,13.620489,,0.009,,492,85,82,,1100-2000,9999999,,,2000064,,, +810,ARS,ar,BSKSA Idha'atu-i Jeddah,,Hafar al-Batin=Hafrul Baten (shy),28.436153,46.067722,,20,,4188,113,86,,0300-2200,1234567,,,47075,,, +810,IRQ,ar,R Umm al-Qura,,Baghdad (bgh),33.35,44.383333,,2.5,,3674,110,90,,0400-1830,1234567,,,516,,, +810,UAE,,Abu Dhabi FM/Al-Quran al-Karim,,Abu Dhabi/Al-Maqtaa (abd),24.416667,54.483333,,50,,5068,108,91,,0000-2400,1234567,9967,,472,,, +810,CAN,fr,CJVA,,Caraquet (NB),47.768056,-65.052778,,10,,4927,294,96,,,,9849,,36231,,, +810,IND,,AIR West,,Rajkot A (GJ),22.367056,70.692814,,300,,6322,96,96,,0025-0430,1234567,,,48389,,, +810,IND,,AIR West,,Rajkot A (GJ),22.367056,70.692814,,300,,6322,96,96,,0700-1015,1234567,,,48389,,, +810,IND,,AIR West,,Rajkot A (GJ),22.367056,70.692814,,300,,6322,96,96,,1200-1740,1234567,,,48389,,, +810,USA,en,WGY,i,Schenectady (NY),42.793611,-74.01,,50,,5819,294,98,,,,0,,41587,,, +810,RUS,ru,Avtoritetnoye R,,Krasnoyarsk (KN),56.021739,92.879256,,10,,5282,49,100,,2200-1700,1234567,,,47023,,, +810,NPL,,R Nepal,,Dipayal Silgadhi (set),29.245117,80.926794,,10,,6459,82,112,,2315-1720,1234567,,,48404,,, +810,PTR,,WKVM,,San Juan (PR),18.363056,-66.136944,,50,,7222,268,112,,0900-0500,1234567,,,42088,,, +810,CAN,xx,CKJS,,Winnipeg (MB),49.735278,-97.193611,,10,,6606,313,113,,,,,,36327,,, +810,USA,,WMJH,,Rockford (MI),43.118056,-85.579444,,3.6,,6495,301,116,,,,,,42336,,, +810,RUS,ru,R Rossii,,Razdolnoye (PM),43.535,131.934722,,150,,8167,38,117,,2000-1700,1234567,,,46896,,, +810,USA,,WPIN,,Dublin (VA),37.131944,-80.618611,,4.2,,6659,293,117,,,,,,42693,,, +810,USA,,WEKG,,Jackson (KY),37.578056,-83.405278,,5,,6797,295,118,,,,,,41276,,, +810,USA,en,KTBI r:KSPO,,Ephrata (WA),47.356111,-119.482222,,50,,7820,324,118,,,,19,,39456,,, +810,CHN,,Xi'an RGD,,Xi'an (SA),34.196389,108.990556,,50,,7845,59,119,,,,,,48387,,, +810,CHN,,Zhejiang zhi Sheng,,Hangzhou/Gouzhuang (ZJ),30.379444,120.092222,,200,,8814,54,120,,0000-2400,1234567,,,48382,,, +810,CLM,es,HJCY Caracol Colombia,,Bogot D. C. (bdc),4.66315,-74.220139,,250,,8959,265,120,,,,97,,37383,,, +810,USA,,WQIZ,,St. George (SC),33.1475,-80.563056,,5,,6972,290,120,,,,,,42775,,, +810,USA,,WEDO,,McKeesport (PA),40.364167,-79.812778,,1,,6359,295,121,,,,,,41253,,, +810,USA,,WHB,,Kansas City (MO),39.305833,-94.575,,5,,7321,304,123,,,,9998,,41602,,, +810,CUB,es,R Progreso,,Guantnamo/CTOM1 (gu),20.1419,-75.254311,,10,,7693,276,124,,,,,,36591,,, +810,B,pt,ZYH589 Rdio Verdes Mares,,Fortaleza (CE),-3.785294,-38.466836,,5,,7509,230,125,,,,,,36901421,,, +810,CHN,,Chaoyang RGD Xiangcun Tai,,Chaoyang (LN),41.566667,120.466667,,10,,7822,47,125,,2155-1305,1234567,,,48380,,, +810,KRE,,KCBS Pyongyang Pangsong,,Kaesong (hwb),37.985556,126.572222,,50,,8447,45,125,,2100-1800,1234567,,,48401,,, +810,USA,,WTHV,,Hahira (GA),30.873611,-83.251944,,2.5,,7329,290,126,,,,,,43135,,, +810,USA,,WYRE,,Annapolis (MD),38.970278,-76.507778,,0.25,,6258,292,126,,,,,,43543,,, +810,USA,en,KGO,,San Francisco (CA),37.526389,-122.100556,,50,,8871,321,126,,,,9999,,38503,,, +810,MOZ,pt,Emisso Provincial de Gaza,,Xai-Xai (gza),-25.069583,33.679944,,50,,8983,155,127,,0000-2210,......7,0,,2399,,, +810,MOZ,pt,Emisso Provincial de Gaza,,Xai-Xai (gza),-25.069583,33.679944,,50,,8983,155,127,,0000-2400,.....6.,0,,2399,,, +810,MOZ,pt,Emisso Provincial de Gaza,,Xai-Xai (gza),-25.069583,33.679944,,50,,8983,155,127,,0250-2210,1234...,0,,2399,,, +810,MOZ,pt,Emisso Provincial de Gaza,,Xai-Xai (gza),-25.069583,33.679944,,50,,8983,155,127,,0250-2400,....5..,0,,2399,,, +810,J,en,AFN-Eagle 810,,Tokyo/Yokota Air Base (Wako) (kan-tok),35.776389,139.614167,,50,,9239,37,128,,0000-2400,1234567,999,,48400,,, +810,MWI,en,MBC R 1,,Bangula (ckw),-16.579231,35.106628,,10,,8126,151,128,,0253-2200,1234567,,,2398,,, +810,CHN,,Liaoning RGD Wenyi Guangbo,,Panjin/LNTS315 (LN),41.203278,122.029139,,5,,7932,46,129,,,,,,36200803,,, +810,CHN,,Liaoyuan RGD,,Liaoyuan (JL),42.866667,125.166667,,5,,7930,43,129,,,,,,48385,,, +810,KOR,ko,HLCT MBC,,Daegu/Dasan (dae),35.827778,128.45,,20,,8739,45,130,,0000-2400,1234567,,,48402,,, +810,THA,th,Sor. Wor. Thor. (R Thailand),,Nong Khai/Phon Phisai Rd (nki),17.886986,102.773972,,20,,8870,74,130,,2200-1600,1234567,,,48413,,, +810,BAH,en,ZNS-3 R Bahamas,,Freeport (fpt),26.543611,-78.666389,,1,,7387,283,131,,0000-2400,1234567,24,,35670,,, +810,DOM,,HIRN R Novel,,Santiago de los Caballeros (sto),19.45,-70.7,,1,,7441,272,131,,,,,,52236,,, +810,USA,,WSYW,,Indianapolis (IN),39.725556,-86.185556,,0.25,,6796,299,131,,,,,,43096,,, +810,CHN,zh,Ulanqab RGD Jiaotong Wenyi,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,,,,,48383,,, +810,DOM,es,HIAV R Ban,,Ban (pva),18.282739,-70.352964,,1,,7517,271,132,,1100-0300,1234567,,,37213,,, +810,URG,es,CX14 R El Espectador,,Santiago Vzquez (mo),-34.797194,-56.325806,,100,,11416,228,132,,0830-0600,1234567,7,,36788,,, +810,USA,,KLVZ,,Brighton (D) (CO),40.028056,-104.8225,,2.2,,7816,311,132,,,,9990,,20012592,,, +810,USA,en,WCKA,,Jacksonville (AL),33.849444,-85.762778,,0.5,,7244,294,132,,,,,,41017,,, +810,B,pt,ZYH528 Rdio Nossa Senhora de Guadalupe,,Riacho de Santana (BA),-13.601575,-42.945289,,10,,8704,229,133,,,,,,36901420,,, +810,GTM,,TGMM R Moapn,,Santa Elena (pet),17.05,-89.166667,,10,,8891,285,133,,,,,,40514,,, +810,USA,en,WXFO,,Royston (GA),34.280556,-83.119167,,0.23,,7043,292,134,,,,,,40857,,, +810,TWN,,Kuo Sheng Kuangpo Tientai,,Changhua (CH),24.079167,120.548611,,10,,9416,57,135,,,,,,48415,,, +810,USA,en,WRSO,,Orlovista (FL),28.571667,-81.433889,,0.4,,7402,287,135,,,,9992,,41336,,, +810,CHN,,Tieling RGD Xiangcun Tai,,Tieling/LNTS325 (LN),42.353611,123.901667,,1,,7918,44,136,,,,,,36200802,,, +810,THA,th,Sor. Wor. Thor. (R Thailand),,Trang/Sikao Road (trg),7.560556,99.584722,,10,,9560,83,136,,2100-1500,1234567,,,48414,,, +810,USA,,WCTA,,Alamo (TN),35.799722,-89.122222,,0.25,,7291,298,136,,,,,,41094,,, +810,VEN,,R Piritu,,Puerto Pritu (azg),10.066667,-65.05,,1,,7863,261,136,,,,,,51662,,, +810,EQA,,HCDE2,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,36897,,, +810,USA,,WSJC,,Magee (MS),31.866667,-89.693056,,0.5,,7653,295,137,,,,,,43008,,, +810,PHL,tl,DZRJ-AM Radyo Bandido,,Novaliches/Quirino Highway (ncr),14.741667,121.075,,10,,10307,62,138,,2100-1700,1234567,45,,48407,,, +810,CHN,,Zhumadian RGD,,Zhumadian (HE),32.915,114.021389,,1,,8247,56,139,,,,,,36200801,,, +810,USA,,KLVZ,,Brighton (N) (CO),39.843333,-104.953889,,0.43,,7839,311,139,,,,,,38792,,, +810,CAN,en,CBPY,,Whitehorse (YT),60.692222,-134.971389,,0.05,,7010,340,140,,,,,,20109221,,, +810,B,pt,ZYJ336 Rdio Esperana,,Prudentpolis (PR),-25.230833,-50.980556,,5,,10243,230,141,,,,,,36901419,,, +810,USA,,WJJQ,,Tomahawk (WI),45.490833,-89.726667,,0.013,,6548,305,141,,,,,,41888,,, +810,CHN,,Zhejiang zhi Sheng,,Dongyang (ZJ),29.266667,120.233333,,1,,8923,54,143,,,,,,36200804,,, +810,CHN,,Zhejiang zhi Sheng,,Quzhou (ZJ),28.981778,118.833222,,1,,8871,55,143,,,,,,36200048,,, +810,PNR,es,HOG R 10,,Villa Lorena (pnm),9.041944,-79.5125,,1,,8938,272,143,,,,,,37684,,, +810,USA,,KBHB,,Sturgis (SD),44.423333,-103.426944,,0.06,,7361,313,143,,,,,,38029,,, +810,B,pt,ZYJ261 RCC AM,,Cornlio Procpio (PR),-23.174722,-50.644444,,2,,10030,230,144,,,,,,36901414,,, +810,B,pt,ZYL202 Rdio Aimors AM,,Aimors (MG),-19.483333,-41.066667,,1,,9189,224,144,,,,,,36901413,,, +810,CHN,,Zhejiang zhi Sheng,,Linhai (ZJ),28.85,121.116667,,1,,9010,54,144,,,,,,36200044,,, +810,CHN,,Zhejiang zhi Sheng,,Lishui (ZJ),28.465411,119.958611,,1,,8981,55,144,,,,,,36200045,,, +810,CHN,,Zhejiang zhi Sheng,,Longquan (ZJ),28.083333,119.116667,,1,,8969,56,144,,,,,,36200046,,, +810,CHN,,Zhejiang zhi Sheng,,Pingyang (ZJ),27.666667,120.566667,,1,,9088,55,144,,,,,,36200047,,, +810,GTM,es,R Chuimeken,,Totonicapn (tot),14.9,-91.333333,,1,,9222,285,144,,,,,,31900001,,, +810,HND,,HRLP24,,Choluteca (cho),13.266667,-87.283333,,1,,9096,281,144,,,,,,37788,,, +810,MEX,es,XEFW-AM La Estrella,,Pueblo Viejo (vcz),22.174975,-97.833703,,1,,8997,295,144,,,,,,44037,,, +810,MEX,es,XESB-AM R Mexicana,,Santa Barbara (chi),26.813889,-105.811111,,1,,9057,303,144,,,,,,44730,,, +810,NCG,,R Rivas,,Rivas (rvs),11.433333,-85.833333,,1,,9158,279,144,,,,,,33700017,,, +810,SLV,,YSFA,,San Vicente (svc),13.616667,-88.783333,,1,,9166,282,144,,,,,,45274,,, +810,USA,,KXOI,,Crane (TX),31.4775,-102.34,,0.5,,8439,304,144,,,,,,39811,,, +810,B,pt,ZYL252 Rdio Educadora Trabalhista,,Ub (MG),-21.121983,-42.935847,,1,,9441,225,145,,,,,,36901412,,, +810,MEX,es,XEHT-AM R Huamantla,,Huamantla (tlx),19.303611,-97.919222,,1,,9258,293,145,,,,,,44141,,, +810,USA,,WDMP,,Dodgeville (WI),42.919444,-90.135,,0.01,,6773,304,145,,,,,,41184,,, +810,EQA,,HCFU1,,Quito (pic),-0.166667,-78.5,,1,,9675,266,146,,,,,,36943,,, +810,HTI,,R Atlantique,,Gonaves (art),19.416667,-72.666667,,0.05,,7578,274,146,,,,,,52103,,, +810,MEX,es,XEIM-AM Fiesta Mexicana,,Saltillo (coa),25.466111,-101.002778,,0.5,,8897,299,146,,,,,,44169,,, +810,AUS,en,6RN ABC National,,Perth/Hamersley (WA),-31.854731,115.819344,,20,,14027,97,147,,0000-2400,1234567,,,48379,,, +810,B,pt,ZYH767 Rdio Alvorada,,Rialma/Rua do Cafe (GO),-15.308278,-49.581567,,0.5,,9222,234,147,,,,,,36901416,,, +810,EQA,,HCVT2,,Atalaya (gua),-2.15,-79.566667,,1,,9922,266,147,,,,,,37181,,, +810,MEX,es,XERB-AM Stereo Sol,,Cozumel (qui),20.472778,-86.898333,,0.25,,8445,285,147,,,,,,44654,,, +810,MEX,es,XEZC-AM R Felicidad,,Ro Grande (zac),23.83,-103.038611,,0.5,,9165,300,147,,,,,,45128,,, +810,USA,,KYTY,,Somerset (TX),29.313333,-98.508056,,0.25,,8407,300,147,,,,,,39370,,, +810,MEX,es,XEAGR-AM R Frmula,,Acapulco (gue),16.829231,-99.857033,,0.6,,9601,293,148,,,,,,43705,,, +810,MEX,es,XEEMM-AM La Salmantina,,Salamanca (gua),20.586264,-101.224036,,0.5,,9348,296,148,,,,,,43969,,, +810,MEX,es,XEMQ-AM W R,,Mrida (yuc),21.015017,-89.561583,,0.25,,8572,288,148,,,,,,44405,,, +810,PRU,,OCU2V,,Jan/Magllanal (caj),-5.7,-78.783333,,1,,10181,263,148,,,,,,37000067,,, +810,B,pt,ZYK732 Rdio Centro-Amrica,,So Jos do Rio Preto (SP),-20.834458,-49.326819,,0.5,,9737,231,149,,,,,,36901407,,, +810,B,pt,ZYN204 Rdio Princesa do Vale,,Itaobim (MG),-16.561667,-41.503333,,0.25,,8922,226,149,,,,,,36901409,,, +810,B,pt,ZYK655 Rdio Universal,,Santos (SP),-23.913181,-46.418181,,0.5,,9884,227,150,,,,,,36901408,,, +810,B,pt,ZYN406 Floresta AM,,Alta Floresta (MT),-9.9139,-56.095731,,0.25,,9091,242,150,,,,,,36901411,,, +810,INS,id,RRI Pro-1,,Merauke (PA-mer),-8.476953,140.416378,,7.5,,13629,58,150,,2000-1400,1234567,,,48396,,, +810,MEX,,XERSV-AM,,Ciudad Obregn (son),27.517394,-109.937633,,0.25,,9223,307,150,,,,,,44712,,, +810,PNG,,NBC R East New Britain,,Rabaul (enb),-4.212778,152.115,,10,,13825,43,150,,1930-1400,1234567,,,48408,,, +810,USA,,WMGC,,Murfreesboro (TN),35.837222,-86.416667,,0.006,,7123,296,150,,,,,,42315,,, +810,B,pt,ZYL366 Rdio Rainha de Paz,,Patrocnio (MG),-18.916419,-47.005422,,0.25,,9431,230,151,,,,,,36901422,,, +810,B,pt,ZYN402 Rdio Integrao,,So Jos do Rio Claro (MT),-13.455589,-56.700133,,0.25,,9456,241,151,,,,,,36901418,,, +810,MEX,es,XEUX-AM,,Tuxpan (nay),21.916667,-105.256111,,0.25,,9470,300,151,,,,,,44937,,, +810,PHL,,DXRG-AM Radyo ng Bayan,,Gingoog (mor),8.833333,125.1,,1,,11097,62,151,,,,,,48715,,, +810,B,pt,ZYK604 Rdio Difusora Jundiaiense,,Jundia/Rua Alfredo Ungaro (SP),-23.148119,-46.838108,,0.25,,9831,227,152,,,,,,36901417,,, +810,B,pt,ZYL266 Rdio Clube Nepomuceno,,Nepomuceno/Fazenda Fazendinha (MG),-21.206867,-45.231706,,0.25,,9562,227,152,,,,,,36901415,,, +810,B,pt,ZYL354 Rdio Cidade,,Capinpolis (MG),-18.685228,-49.588761,,0.25,,9545,232,152,,,,,,36901410,,, +810,INS,id,R Suara Maung Sakti,,Banjarnegara (JT-bng),-7.383333,109.683333,,1,,11560,84,152,,,,,,48392,,, +810,INS,id,RSPD Bandung/Swara Bale Endah/R.Kandaga,,Bandung/Bale Endah (JB-ban),-7.016667,107.633333,,1,,11388,85,152,,2200-1500,1234567,21,,48391,,, +810,MEX,es,XEMAX-AM R Max,,Tecomn (col),18.934217,-103.888183,,0.25,,9660,297,152,,,,,,44352,,, +810,INS,id,PM8DBD R.Megapesona Enrekang,,Enrekang (SN-enr),-3.566667,119.766667,,1,,11896,73,153,,,,,,48393,,, +810,MEX,es,XEIC-AM R IC,,Campeche (cam),19.843764,-90.54015,,0.1,,8738,288,153,,,,,,34900020,,, +810,MEX,es,XERI-AM R Rey,,Reynosa (tam),26.071272,-98.257417,,0.1,,8678,297,153,,,,,,44675,,, +810,AUS,,2BA ABC Southeast NSW,,Bega (NSW),-36.711611,149.820633,,10,,16693,74,159,,0000-2400,1234567,,,48378,,, +810,USA,,KSWV,,Santa Fe (NM),35.701389,-105.966111,,0.01,,8261,309,160,,,,,,39443,,, +810,USA,en,WPCF670,,Long Beach (CA),33.764194,-118.126444,,0.01,,9054,316,164,,,,,,20010503,,, +810,USA,en,WPXI415,,Long Beach/Belmont Pier (CA),33.760964,-118.148528,,0.01,,9055,316,164,,,,,,20010504,,, +810,NZL,en,RNZ National,,Dunedin/Highcliff (OTA),-45.885556,170.595,,10,,18674,65,166,,0000-2400,1234567,,,48406,,, +810,NZL,en,BBC WS,,Auckland/Mangere (AUK),-36.989861,174.764669,,5,,18103,33,167,,,,,,48405,,, +810,USA,en,KG2XAJ,,San Antonio (TX),29.446667,-98.608056,,0.0001,,8402,300,181,,,,,,20010505,,, +815,RUS,,DD,b,Lipetsk (LI),52.6875,39.541667,,0.025,,2229,75,95,,,,,,85760,,, +815,RUS,,IT,b,Lipetsk (LI),52.6875,39.541667,,0.025,,2229,75,95,,,,,U400 ,85761,,, +815,UKR,,PW,b,Pavlovka,47.729167,37.208333,,0.025,,2240,90,95,,,,0,L1020 U1020 ,IDx2 + 5 gap,85762,, +819,EGY,ar,ERTU Al-Barnameg al-Aam,,Batrah (dqh),31.15935,31.431428,,1000,,3091,129,58,,0000-2400,1234567,5,,477,,, +819,IRN,fa,IRIB R Mazandaran,,Sari/Khazarabad (mzd),36.7715,52.98375,,30,090 295,3986,97,82,,0000-2400,1234567,44,,480,,, +819,SDN,,SRTC Sudan Nat. R,,Dongola=Dunqulah (no),19.094564,30.463883,,10,,4224,141,89,,,,,,2403,,, +819,TJK,tg,Tojikiston R 1,,Khujand (sgd),40.221928,69.7553,,15,,4887,80,94,,2300-2000,1234567,,,47098,,, +819,IND,,AIR Indraprastha Channel,,Delhi A (DL),28.769167,77.136944,,200,,6240,85,96,,0430-1045,1234567,998,,48422,,, +819,IND,,AIR Indraprastha Channel,,Delhi A (DL),28.769167,77.136944,,200,,6240,85,96,,1125-1840,1234567,998,,48422,,, +819,CHN,,Shanxi RGD Zonghe Guangbo,,Yuci/SXTS528 (SX),37.731694,112.718456,,200,,7753,54,112,,2200-1700,1234567,,,48419,,, +819,CHN,kk,Kytun RGD Kazakh,,Kytun=Kuitun (XJ),44.39005,84.909406,,1,,5586,66,113,,,,,,48421,,, +819,KRE,,KCBS Chosun Jungang Pangsong,,Pyongyang (pyo),39.134028,125.740278,,500,,8301,45,113,,2000-1800,1234567,4,,48426,,, +819,KOR,ko,HLCN MBC,,Gwangju (gwa),35.216944,126.833333,,20,,8718,46,130,,0000-2400,1234567,,,48427,,, +819,CHN,,Shanxi RGD Zonghe Guangbo,,Datong/Fanzhuang (SX),40.070278,113.392222,,1,,7588,52,133,,,,,,48418,,, +819,VTN,,VOV4,,Bun M Thuột (dkk),12.643689,108.018833,,20,,9675,73,133,,2200-1600,1234567,,,33200031,,, +819,THA,,Sor. Wor. Thor. (R Thailand),,Pathum Thani/Khlong Ha (ptn),14.072333,100.71175,,10,,9066,78,134,,2200-1600,1234567,,,48435,,, +819,MAU,xx,R Mauritius 2,,Malherbes/MCML (mau),-20.312972,57.533917,,10,,9449,133,135,,0000-2400,1234567,,,2402,,, +819,CHN,,Shanxi RGD Zonghe Guangbo,,Yuncheng (SX),34.95,111,,1,,7897,57,136,,,,,,36200340,,, +819,TWN,,BCC News Network,,Taitung (TT),22.750928,121.143528,,10,,9572,57,136,,0000-2400,1234567,,,48438,,, +819,J,,JONK NHK1,,Nagano (chu-nag),36.671944,138.256944,,5,,9095,37,137,,0000-2400,1234567,,,48425,,, +819,TWN,,Cheng Sheng BC,,Taipei (TPS),25.080736,121.514533,,5,,9379,56,138,,0000-2400,1234567,,,48437,,, +819,PHL,,DWAR-AM Sonshine R,,Laoag City (iln),18.183333,120.583333,,5,,9961,60,140,,,,,,48432,,, +819,PHL,,DYVL-AM Aksyon Radyo,,Tacloban City (lyt),11.216667,125,,10,,10869,60,140,,1930-1600,1234567,,,48433,,, +819,PHL,,DXUM-AM Radyo Ukay,,Davao City (dvs),7.066667,125.6,,10,,11291,62,141,,????-1400,1234567,,,48431,,, +819,PHL,,DXSC-AM,,Zamboanga City/Camp Navarro (zds),6.919444,122.041667,,1,,11087,65,151,,,,,,48434,,, +819,AUS,,6KW ABC Kimberley,,Kununurra (WA),-15.763778,128.733833,,5,,13570,74,152,,0000-2400,1234567,,,48417,,, +819,INS,id,PM4BKA Suara RPM,,Sukoharjo (JT-suk),-7.680556,110.841667,,1,,11665,83,152,,,,,,48423,,, +819,AUS,,2GL ABC New England NW,,Glen Innes (NSW),-29.790022,151.764333,,10,,16252,62,158,,0000-2400,1234567,,,48416,,, +819,NZL,en,RNZ National,,Tauranga/Paengaroa (BOP),-37.810833,176.412778,,10,135 270,18245,30,164,,0000-2400,1234567,,,48429,,, +820,UKR,,DN,b,Dzhankoi (KR),45.6875,34.375,,0.025,,2149,98,94,,,,,,85763,,, +820,CAN,en,CHAM,,Hamilton (ON),43.116111,-79.776944,,10,,6150,298,109,,,,2,,36034,,, +820,KNA,en,R Paradise,,Charlestown (Nevis) (spc),17.127694,-62.630361,,50,,7088,264,111,,0000-2400,1234567,10,,2003,,, +820,ALS,,KCBF,,Fairbanks (AK),64.878889,-147.668333,,10,,6818,348,115,,0000-2400,1234567,4,,38127,,, +820,USA,en,WVSG,,Colombus (D) (OH),40.028889,-83.056111,,5,,6583,297,116,,1200-2400,1234567,,,20012520,,, +820,USA,,WNYC,,New York/Kearny [NJ] (NY),40.752778,-74.104167,,1,,5972,292,117,,,,35,,42541,,, +820,USA,en,WCPT,,Willow Springs (D) (IL),41.938333,-87.751389,,5,,6714,301,117,,,,,,41087,,, +820,USA,,WWLZ,,Horseheads (NY),42.153889,-76.846389,,0.85,,6041,295,118,,,,,,43405,,, +820,USA,en,WBAP,,Fort Worth (TX),32.610556,-97.166667,,50,,8040,301,120,,,,0,,40801,,, +820,USA,en,WGGM,,Chester (VA),37.381667,-77.427778,,1,,6437,291,121,,,,,,41509,,, +820,HTI,,R Tropicale,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52104,,, +820,USA,en,WCPT,,Willow Springs (N) (IL),41.541667,-88.034167,,1.5,,6761,301,123,,,,,,20012566,,, +820,USA,,WWFD,,Frederick (MD),39.411667,-77.472222,,0.43,,6285,293,124,,,,,,43496,,, +820,USA,en,WVSG,,Columbus (N) (OH),39.909167,-83.056667,,0.79,,6593,297,124,,0000-1200,1234567,,,42627,,, +820,CUB,es,R Reloj,,Ciego de vila/CTOM1 (ca),21.866892,-78.720875,,10,,7782,280,125,,,,0,,36540,,, +820,HTI,,4VRD,,Les Cayes (sud),18.166667,-73.716667,,10,,7756,274,125,,,,,,35652,,, +820,USA,,WBKK,,Wilton (MN),47.391389,-95.077778,,0.75,,6686,310,125,,,,,,20000047,,, +820,CUB,es,R Ciudad de La Habana,,Arroyo Arenas/CTOM2 (ch),23.05,-82.483333,,10,,7933,284,126,,,,,,36462,,, +820,VEN,,YVSH R Guayana,,Upata (blv),8.016667,-62.316667,,10,,7860,258,126,,0900-0500,1234567,,,45457,,, +820,USA,en,WTNW,,Jasper (TN),35.073056,-85.6275,,1,,7136,295,128,,1200-2400,1234567,,,43353,,, +820,USA,en,KGNW,,Seattle/Burien-Vashon Island (WA),47.433333,-122.467222,,5,,7929,326,129,,,,2,,38502,,, +820,CLM,es,HJED Caracol Colombia,,Cali (val),3.466667,-76.533333,,25,,9222,267,130,,,,999,,37408,,, +820,DOM,,HIAZ Bachatera 8-20,,Santiago de los Caballeros (sto),19.433333,-70.666667,,1,,7441,272,131,,0000-2400,1234567,,,37215,,, +820,NCG,es,YNOL R Ondas de Luz,,Managua (mng),12.018611,-86.004167,,20,,9119,279,131,,1000-0400,1234567,,,45202,,, +820,CLM,es,HJAD,,Cartagena (bol),10.4,-75.516667,,10,,8547,270,132,,,,54,,35901408,,, +820,USA,en,WWBA,,Largo (FL),27.908333,-82.780833,,1,,7544,287,132,,,,9995,,42316,,, +820,VEN,,YVKU R Altura 820,,La Grita (tch),8.116667,-71.9,,10,,8499,266,132,,1000-0400,1234567,,,51664,,, +820,CUB,es,R Progreso,,Moa (ho),20.645583,-74.924033,,1,,7628,276,133,,,,,,31600085,,, +820,USA,,WSWI,,Evansville (IN),37.964722,-87.668333,,0.25,,7026,298,133,,,,,,43087,,, +820,B,pt,ZYI775 Rdio Universitria de Pernambuco,,Recife (PE),-8.052575,-34.943744,,1,,7757,224,135,,,,,,36901443,,, +820,USA,,KUTR,i,Taylorsville (IBOC) (UT),40.33,-112.069167,,2.5,,8150,316,135,,,,0,,39599,,, +820,GTM,,TGTO R Internacional,,Ciudad de Guatemala (gut),14.616667,-90.616667,,5,,9200,285,137,,1000-0600,1234567,,,40547,,, +820,B,pt,ZYH752 Rdio Bandeirantes,,Goinia/Fazenda Santa Rita (GO),-16.729331,-49.335103,,5,,9344,233,138,,,,978,,36901432,,, +820,B,pt,ZYH624 Rdio Unio de Camocim,,Camocim (CE),-2.912367,-40.863953,,0.25,,7551,232,139,,,,,,36901444,,, +820,B,pt,ZYL373 Rdio Bom Sucesso,,Minas Novas (MG),-17.223333,-42.616389,,3,,9042,227,139,,,,,,36901433,,, +820,PRU,,OAX4O R Libertad,,Lima (lim),-12.016667,-76.966667,,10,,10614,257,139,,0000-2400,1234567,,,40311,,, +820,B,pt,ZYI212 Rdio Gazeta,,Serra (ES),-20.133333,-40.3,,2.5,,9217,224,140,,,,993,,36901439,,, +820,PNR,es,HOF28 R Ritmo Chiriqu,,Alanje/Orilla del Ro (chq),8.363608,-82.509508,,3,,9201,274,140,,1100-0400,1234567,,,52303,,, +820,B,pt,ZYJ738 RFC CBN Vale do Itaja,,Blumenau (SC),-26.852778,-48.998889,,5,,10297,227,141,,,,,,36901442,,, +820,EQA,,HCCR1,,Otavalo (imb),0.2,-78.183333,,3,,9621,266,141,,,,,,36887,,, +820,ARG,es,LRA8 R Nacional,,Formosa (fm),-26.142111,-58.154725,,5,,10716,235,142,,0855-0400,1234567,,,39964,,, +820,B,pt,ZYH655 Rdio Sul Cearense,,Brejo Santo (CE),-7.512756,-38.992722,,0.25,,7903,228,142,,,,,,36901445,,, +820,B,pt,ZYI543 Rdio Regional do Araguaia,,Conceio do Araguaia (PA),-8.284739,-49.268061,,1,,8536,237,142,,,,,,36901426,,, +820,B,pt,ZYJ238 Rdio Cultura,,Foz do Iguau (PR),-25.545428,-54.523903,,5,,10461,232,142,,,,,,36901440,,, +820,B,pt,ZYK241 Rdio Alto Taquari,,Estrela (RS),-29.739167,-51.967778,,5,,10722,228,142,,,,,,36901437,,, +820,B,pt,ZYI912 Rdio Cacique Bruenque,,Regenerao (PI),-6.253844,-42.681239,,0.25,,7974,232,143,,,,,,36901435,,, +820,CHL,,CB82 Remisora Carabineros de Chile,,Santiago (RM),-33.316667,-70.716667,,10,,12077,239,144,,0000-2400,1234567,,,51933,,, +820,CTR,,TIGC R Centro AM,,San Jos (sjs),9.966667,-84.066667,,1,,9167,277,144,,1130-0600,1234567,,,40579,,, +820,HND,,HRLP16,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37781,,, +820,MEX,es,XEBM-AM La Mera Mera,,San Luis Potos (slp),22.15675,-100.942225,,1,,9190,297,144,,,,,,43784,,, +820,MEX,es,XEESC-AM R Escrcega,,Francisco Escrcega (cam),18.611778,-90.726917,,0.75,,8857,287,144,,,,,,43979,,, +820,MEX,es,XEBA-AM La Consentida,,Guadalajara (jal),20.712078,-103.304036,,1,,9463,298,145,,,,,,43756,,, +820,MEX,es,XEGRC-AM Soy Guerrero,,Coyuca de Cataln (gue),18.320611,-100.703189,,1,,9520,295,145,,,,,,44077,,, +820,B,pt,ZYI400 Rdifusora de Cceres,,Cceres (MT),-16.031253,-57.664272,,1,,9752,240,146,,,,,,36901441,,, +820,B,pt,ZYK542 Rdio Aparecida,,Aparecida (SP),-22.847325,-45.248283,,1,,9723,226,146,,,,,,36901438,,, +820,B,pt,ZYK624 Rdio Difusora de Penpolis,,Penpolis/Rua Joo Fatori (SP),-21.411461,-50.091808,,1,,9833,231,146,,,,,,36901430,,, +820,CHL,es,CA82 R Corporacin / R Portales,,La Serena/Las Compaias (CO),-29.875428,-71.216372,,5,,11809,242,146,,1000-0400,1234567,,,35710,,, +820,EQA,,HCUP1 R Unin,,Quito (pic),-0.216667,-78.5,,1,,9679,266,146,,,,91,,52454,,, +820,EQA,,HCRF4 Canal Manabi,,Portoviejo (man),-1.066667,-80.416667,,1,,9885,267,147,,,,,,37079,,, +820,MEX,es,XEABCA-AM R Frontera,,Mexicali/Santa Isabel (bcn),32.627083,-115.580986,,0.5,,9039,314,147,,,,9992,,44975,,, +820,MEX,es,XEDRD-AM W R,,Durango (dur),24.051706,-104.627767,,0.5,,9239,301,147,,,,,,43936,,, +820,B,pt,ZYH534 Rdio Cultura de Utinga,,Utinga (BA),-12.084717,-41.096094,,0.25,,8460,228,148,,,,,,36901434,,, +820,B,pt,ZYJ357 Rdio Princesa AM,,Roncador (PR),-24.592222,-52.2925,,1,,10252,231,148,,,,,,36901427,,, +820,MEX,es,XEYN-AM Los 40 Principales,,Oaxaca (oax),17.062778,-96.705833,,0.5,,9380,291,148,,,,,,45100,,, +820,ARG,,LU24 R Tres Arroyos,,Tres Arroyos (ba),-38.366667,-60.266667,,2.5,,11943,229,149,,0900-0400,1234567,,,40220,,, +820,B,pt,ZYH294 Rdio Princesa do Solimes,,Manacapuru (AM),-3.28245,-60.636278,,0.25,,8764,250,149,,,,,,36901431,,, +820,ARG,,LRK221 R Ciudad Perico,,Perico (jy),-24.383333,-65.116667,,1,,10958,241,150,,1000-0400,1234567,,,51806,,, +820,BOL,,CP35 Rdifusoras Altiplano,,La Paz (lpz),-16.5,-68.116667,,0.75,,10435,248,150,,1000-0200,123456,,,36694,,, +820,BOL,,CP35 Rdifusoras Altiplano,,La Paz (lpz),-16.5,-68.116667,,0.75,,10435,248,150,,1100-0100,......7,,,36694,,, +820,B,pt,ZYJ477 Rdio Jornal Nova AM,,Maca (RJ),-22.317447,-41.715261,,0.25,,9500,224,151,,,,,,36901436,,, +820,B,pt,ZYL255 Rdio Globo,,Barbacena (MG),-21.196111,-43.781667,,0.25,,9489,226,151,,,,,,36901423,,, +820,MEX,es,XEUDO-AM,,Los Mochis (sin),25.8146,-108.963594,,0.25,,9326,305,151,,,,,,44896,,, +820,B,pt,ZYK602 Rdio Jauense,,Ja (SP),-22.293794,-48.546428,,0.25,,9836,229,152,,,,,,36901429,,, +820,B,pt,ZYL291 Rdio Paraso AM,,So Sebastio do Paraso (MG),-20.938703,-46.988867,,0.25,,9625,229,152,,,,,,36901428,,, +820,B,pt,Rdio Educadora 6 de Agosto,,Xapur (AC),-10.662778,-68.488056,,0.25,,9936,252,153,,,,,,36902883,,, +820,B,pt,ZYH207 Rdio Difusora,,Tarauac (AC),-8.153333,-70.776111,,0.25,,9862,255,153,,,,,,36901424,,, +820,B,pt,ZYK622 Rdio Clube de Ourinhos,,Ourinhos (SP),-22.967394,-49.890956,,0.25,,9971,230,153,,,,,,36901425,,, +820,URG,,CW23 R Cultural,,Salto (sa),-31.366667,-57.95,,0.5,,11186,232,154,,0800-0300,1234567,,,36764,,, +820,ARG,es,LRI208 Estacion 820,,Lomas de Zamora (ba),-34.757778,-58.404444,,0.5,,11520,230,155,,,,,,51805,,, +820,CHL,,CC82 R Maria Inmaculada,,Concepcin (BI),-36.816667,-73.066667,,1,,12513,238,155,,,,,,35836,,, +820,CHL,,CD82 R Concordia,,La Union (LL),-40.266667,-73.083333,,1,,12802,236,156,,1100-2330,1234567,,,35918,,, +820,CHL,,CA82 R Pampa,,Pedro de Valdivia (AN),-22.633333,-69.716667,,0.25,,11082,245,157,,,,,,35709,,, +820,USA,,KWDP,,Waldport (OR),44.438056,-124.019444,,0.015,,8278,326,158,,,,,,39097,,, +820,USA,en,WNVZ318,,Monrovia/130 Lime St. (CA),34.147778,-117.9995,,0.01,,9011,316,164,,,,,,20010507,,, +820,USA,en,WPAC337,,Hollywood (CA),34.337222,-118.362306,,0.01,,9010,317,164,,,,,,20010506,,, +825,UKR,,KB,b,Kiev / Boryspil (KY),50.395833,30.875,,0.025,,1705,87,90,,,,0,L1007 U1000 ,IDx2 + 5 gap,85765,, +825,UKR,,KE,b,Kiev / Boryspil (KY),50.270833,30.875,,0.025,,1709,87,90,,,,0,L1023 U1024 ,IDx2 + 8 gap,85766,, +825,RUS,,F,b,Cherepovets (VO),59.270833,38.041667,,0.025,,2112,55,94,,,,,L825 U826 ,85764,,, +825,RUS,,O,b,Cherepovets (VO),59.270833,37.958333,,0.025,,2107,55,94,,,,,,85768,,, +825,RUS,,YK,b,Buinsk (TS),54.979167,48.291667,,0.025,,2743,67,100,,,,,L825 U825 ,85769,,, +826,MDA,,PT,b,Petrovka,46.520833,29.125,,0.025,,1751,102,90,,,,,,85770,,, +828,D,de,Funkhaus Europa,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,1500-1900,....5..,1,,485,,, +828,D,de,Funkhaus Europa,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,1500-2000,1234...,1,,485,,, +828,D,de,Hamburger Hafenkonzert,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0500-0700,......7,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0000-0500,......7,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0000-1500,12345..,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0000-2400,.....6.,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0700-2400,......7,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,1900-2400,....5..,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,2000-2400,1234...,1,,485,,, +828,E,es,Hit FM,,Barcelona/Tarrasa (EAJ25) (CAT-B),41.58265,2.043728,,5,,1216,197,62,,0000-2400,1234567,9988,,487,,, +828,RUS,ru,Pravoslavnoye R,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,0200-0600,1234567,9998,,495,,, +828,RUS,ru,Pravoslavnoye R,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,0600-1400,1234567,9998,,495,,, +828,RUS,ru,Rgazeta Slovo,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,1400-1800,1234567,9998,,495,,, +828,RUS,ru,Rgazeta Slovo,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,1800-0200,1234567,9998,,495,,, +828,SYR,ar,SRTV 1 Dimashk,,Deir ez-Zor=Dayr az-Zawr (dyz),35.399028,40.0835,,200,,3236,112,66,,0000-2400,1234567,23,,496,,, +828,G,en,Gold,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.27,,596,258,69,,0000-2400,1234567,,,491,,, +828,G,,BBC Asian Network,,Wolverhampton/Sedgley (EN-WMD),52.543222,-2.140333,,0.2,,583,278,70,,0600-2400,1234567,0,,488,,, +828,G,en,BBC WS,,Wolverhampton/Sedgley (EN-WMD),52.543222,-2.140333,,0.2,,583,278,70,,0000-0600,1234567,0,,488,,, +828,G,en,Gold,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.12,,472,270,71,,0000-2400,1234567,9980,,490,,, +828,G,en,Magic 828,,Leeds/Morley (EN-WYK),53.736417,-1.572694,,0.12,,565,292,72,,0000-2400,1234567,9997,,489,,, +828,GRC,,unid (International Oldies),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,0000-2400,1234567,3,,3400040,,, +828,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Tabas (skh),33.609889,56.91725,,50,,4486,97,85,,,,,,1787,,, +828,NIG,,FRCN Enugu,,Enugu (enu),6.450308,7.469794,,100,,5078,179,88,,0430-2300,1234567,,,2404,,, +828,AZR,pt,Antena 1,,Monte das Cruzes (flo),39.451694,-31.136547,,1,,3187,259,89,,0000-0530,123456,,,482,,, +828,AZR,pt,Antena 1,,Monte das Cruzes (flo),39.451694,-31.136547,,1,,3187,259,89,,0000-0600,......7,,,482,,, +828,AZR,pt,RDP Aores,,Monte das Cruzes (flo),39.451694,-31.136547,,1,,3187,259,89,,0530-2400,123456,,,482,,, +828,AZR,pt,RDP Aores,,Monte das Cruzes (flo),39.451694,-31.136547,,1,,3187,259,89,,0600-2400,......7,,,482,,, +828,RUS,ru,R Mayak,,Kyzyl/RV890 (TU),51.683611,94.606042,,150,,5656,53,92,,0000-1800,1234567,,,46898,,, +828,RUS,ru,R Mayak,,Kyzyl/RV890 (TU),51.683611,94.606042,,150,,5656,53,92,,2300-2400,1234567,,,46898,,, +828,ETH,,ERTA Ethiopia National R,,Arba Minch (snt),5.996333,37.540333,,100,,5866,140,96,,0300-0600,1234567,,,46832,,, +828,ETH,,ERTA Ethiopia National R,,Arba Minch (snt),5.996333,37.540333,,100,,5866,140,96,,0800-2100,1234567,,,46832,,, +828,PAK,,PBC Hayya alal-Falah,,Karachi (shd),24.9769,67.285675,,100,,5874,96,96,,0045-0405,1234567,995,,48471,,, +828,PAK,,PBC Hayya alal-Falah,,Karachi (shd),24.9769,67.285675,,100,,5874,96,96,,0600-1900,1234567,995,,48471,,, +828,AFG,,R Herat,,Herat (her),34.333333,62.2,,1,,4792,92,105,,1230-1530,1234567,,,48441,,, +828,UAE,ar,Abu Dhabi FM,,Al-Ain (abd),24.732139,55.620278,,1,,5116,107,108,,0200-2210,1234567,,,47102,,, +828,IND,,AIR Vividh Bharati,,Panaji (GA),15.459444,73.85,,20,,7123,98,115,,0025-0435,1234567,,,51219,,, +828,IND,,AIR Vividh Bharati,,Panaji (GA),15.459444,73.85,,20,,7123,98,115,,0900-1200,1234567,,,51219,,, +828,IND,,AIR Vividh Bharati,,Panaji (GA),15.459444,73.85,,20,,7123,98,115,,1245-1740,1234567,,,51219,,, +828,CHN,,BPBS-Beijing News Channel,,Beijing/BJTS804 (BJ),39.949697,116.496011,,50,,7763,50,118,,0000-1610,1234567,,,48446,,, +828,CHN,,BPBS-Beijing News Channel,,Beijing/BJTS804 (BJ),39.949697,116.496011,,50,,7763,50,118,,2130-2400,1234567,,,48446,,, +828,IND,,AIR Northeast,,Silchar (AS),24.758611,92.778889,,20,,7621,77,120,,0020-0430,1234567,,,48453,,, +828,IND,,AIR Northeast,,Silchar (AS),24.758611,92.778889,,20,,7621,77,120,,0630-0930,1234567,,,48453,,, +828,IND,,AIR Northeast,,Silchar (AS),24.758611,92.778889,,20,,7621,77,120,,1030-1630,1234567,,,48453,,, +828,J,ja,JOBB NHK2,,Osaka/Habikino (kns-osk),34.554444,135.568889,,300,,9188,40,120,,0000-1500,1.....7,9999,,48468,,, +828,J,ja,JOBB NHK2,,Osaka/Habikino (kns-osk),34.554444,135.568889,,300,,9188,40,120,,0000-1635,.2345..,9999,,48468,,, +828,J,ja,JOBB NHK2,,Osaka/Habikino (kns-osk),34.554444,135.568889,,300,,9188,40,120,,0000-1640,.....6.,9999,,48468,,, +828,J,ja,JOBB NHK2,,Osaka/Habikino (kns-osk),34.554444,135.568889,,300,,9188,40,120,,2030-2400,1234567,9999,,48468,,, +828,VTN,vi,VOV Sơn La R,,Sơn La (sla),21.316667,103.9,,50,,8645,71,126,,0400-0600,1234567,,,48480,,, +828,VTN,vi,VOV Sơn La R,,Sơn La (sla),21.316667,103.9,,50,,8645,71,126,,1200-1400,1234567,,,48480,,, +828,VTN,vi,VOV Sơn La R,,Sơn La (sla),21.316667,103.9,,50,,8645,71,126,,2200-0100,1234567,,,48480,,, +828,CHN,,Guangdong Weixing Guangbo,,Heyuan/GDTS721 (GD),24.037094,114.806667,,50,,9084,61,127,,2200-1900,1234567,,,48447,,, +828,CHN,,Jiaozuo RGD,,Jiaozuo (HE),35.192222,113.262778,,10,,8004,55,127,,,,,,48448,,, +828,CHN,,Guangdong Weixing Guangbo,,Dabu (GD),22.366667,113.45,,40,,9152,63,128,,????-1250,1234567,,,48450,,, +828,CHN,,Jingzhou RGD Xinwen,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,,,,,48449,,, +828,THA,th,Thor. Phor. Saam,,Sukhothai (suk),17.022778,99.814722,,5,,8750,77,136,,????-1700,1234567,,,48478,,, +828,THA,th,Wor. Por. Thor. 4,,Kapang/Fort Thep Sattri Si Sunthon (ntm),8.027778,99.658333,,5,,9524,83,138,,????-1135,1234567,,,48479,,, +828,CHN,,Zhoukou RGD Xinwen,,Zhoukou (HE),33.633333,114.633333,,1,,8218,55,139,,,,,,48452,,, +828,PHL,,DXCC-AM,,Cagayan de Oro City (mor),8.498611,124.659167,,10,,11101,62,141,,0000-1600,1234567,,,48472,,, +828,PHL,,DXCC-AM,,Cagayan de Oro City (mor),8.498611,124.659167,,10,,11101,62,141,,2100-2400,1234567,,,48472,,, +828,PHL,,DWZR-AM,,Legazpi City (aby),13.133333,123.733333,,5,,10615,60,142,,,,,,48473,,, +828,PHL,,DYER-AM,,Puerto Princesa (plw),9.736111,118.738889,,5,,10623,66,142,,,,,,48474,,, +828,PHL,,DZTC-AM,,Tarlac City (tlc),15.483333,120.583333,,1,,10209,62,148,,,,,,48475,,, +828,AUS,en,6GN ABC Midwest & Wheatbelt,,Geraldton/Fig Tree Crossing (WA),-28.658333,114.709917,,10,,13700,95,149,,0000-2400,1234567,,,48443,,, +828,INS,id,PM3BNJ R.Andhika Pariwara,,Pelabuhanratu (JB),-6.983333,106.533333,,1,,11311,86,151,,,,,,35400035,,, +828,INS,id,RBK-R Berita Klasik,,Jakarta/Sunter Agung (JK-kju),-6.1375,106.866667,,1,,11259,86,151,,2150-????,1234567,43,,35400010,,, +828,INS,id,RSP-R Suara Parangtritis,,Parangtritis/Kretek (YO-yog),-7.978889,110.316667,,1,,11655,84,152,,,,,,35400034,,, +828,INS,id,PM8DCM R Christy Ria,,Makassar (SN-mak),-5.147778,119.411667,,1,,12014,75,154,,,,,,35400127,,, +828,INS,id,PM3BFG R Kharisma,,Bandung (JB-ban),-6.95,107.566667,,0.25,,11378,85,158,,,,,,48454,,, +828,AUS,en,3GI ABC Gippsland,,Sale/Longford (VIC),-38.188228,147.095206,,10,,16620,79,159,,0000-2400,1234567,17,,48445,,, +828,INS,id,PM8BYM R Yudha,,Denpasar (BA-den),-8.666667,115.233333,,0.25,,12048,80,160,,,,,,48456,,, +828,AUS,,4GC Gold City R,,Charters Towers (QLD),-20.065278,146.289153,,1,,15055,60,164,,0000-2400,1234567,,,48442,,, +828,NZL,,2XS LiveSPORT,,Palmerston North/Longburn (MWT),-40.37,175.559167,,2,,18469,37,172,,,,,,48470,,, +830,UKR,,SW,b,Shepetovka,50.1875,27.041667,,0.025,,1450,90,87,,,,16,L1017 U1060 30.0s,ID+25 gap,85772,, +830,USA,en,WCRN,,Worcester (MA),42.247222,-71.931111,,50,,5727,292,97,,,,1,,41076,,, +830,USA,,WCCO,,Minneapolis (MN),45.177778,-93.348611,,50,,6771,307,108,,,,0,,40967,,, +830,USA,,WEEU,,Reading (PA),40.515,-76.123333,,6,,6117,293,110,,,,2,,41261,,, +830,USA,,WTRU,,Kernersville (NC),36.199444,-80.206944,,10,,6706,292,114,,,,,,43208,,, +830,USA,,KUYO,,Evansville (D) (WY),42.871389,-106.203611,,25,,7635,313,119,,,,9952,,39606,,, +830,USA,,WKTX,,Cortland (OH),41.415556,-80.730278,,1,,6335,297,120,,,,,,42081,,, +830,VEN,es,YVLT R 830 AM,,San Antonio de los Altos (dcf),10.400511,-66.947689,,50,,7963,263,120,,0900-0500,1234567,9996,,45373,,, +830,USA,,WMMI,,Shepherd (MI),43.561667,-84.75,,1,,6412,301,121,,,,,,42351,,, +830,USA,,KUYO,,Evansville (C) (WY),42.870278,-106.203333,,9.2,,7635,313,124,,,,,,20012559,,, +830,CAN,fr,CBVE-1,,La Tuque (QC),47.420278,-72.782778,,0.04,,5423,298,125,,,,,,20109104,,, +830,USA,,WQZQ,,Goodlettsville (TN),36.272778,-86.715833,,2,,7106,296,125,,,,,,20016076,,, +830,USA,,KFLT,,Tucson (AZ),32.444167,-111.090833,,50,,8828,310,126,,,,0,,38408,,, +830,USA,en,WUMY,,Memphis (TN),35.116944,-90.016389,,3,,7401,298,126,,1300-0100,1234567,,,39106,,, +830,CUB,es,R Reloj,,Holgun (ho),20.883333,-76.266667,,5,,7699,278,127,,,,,,36503,,, +830,DOM,,HIJB R HIJB,,Santo Domingo (sdo),18.566667,-69.9,,2.5,,7462,271,128,,1100-0300,1234567,999,,37256,,, +830,USA,en,KLAA,,Orange (CA),33.928611,-117.615833,,20,,9014,316,131,,,,0,,38951,,, +830,USA,es,WACC,,Hialeah (FL),25.772778,-80.421111,,1,,7567,284,133,,,,,,40639,,, +830,NCG,,YNRZ R Zinica La Voz Costea,,Bluefields (ats),12,-83.75,,10,,8968,278,134,,,,,,52198,,, +830,USA,en,WPFM232,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010511,,, +830,B,pt,ZYJ488 R Tropical Solimoes,,Nova Iguau (RJ),-22.735706,-43.50945,,10,,9627,225,136,,,,1,,36901451,,, +830,CLM,es,HJDM,,Medelln (ant),6.216667,-75.566667,,5,,8915,267,136,,,,,,37393,,, +830,MEX,,XEPUR-AM,,Chern (mic),19.680958,-101.957983,,8,,9475,296,136,,,,,,44582,,, +830,USA,,KNCO,,Grass Valley (CA),39.215,-121.013333,,5,,8661,321,136,,,,22,,38968,,, +830,ALS,,KSDP,,Sand Point (AK),55.351667,-160.467222,,1,,8005,352,137,,0000-2400,1234567,1,,39336,,, +830,B,pt,ZYJ595 Rural AM,,Caic (RN),-6.443611,-37.079444,,0.5,,7701,227,137,,,,,,36901459,,, +830,EQA,,HCRM2 R Huancavilca,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,2004,,, +830,MEX,es,XETLX-AM La Poderosa,,Tlaxiaco (oax),17.263056,-97.67,,6,,9424,292,137,,,,,,44834,,, +830,PNR,es,HOR56 R Peninsula,,Macaracas (lsn),7.7389,-80.547031,,5,,9122,272,137,,,,,,37678,,, +830,USA,,WFNO,,Norco (LA),30.05,-90.378056,,0.75,,7849,294,137,,,,,,41415,,, +830,B,pt,ZYJ926 Rdio Princesa da Serra,,Itabaiana (SE),-10.673056,-37.383333,,1,,8136,225,138,,,,,,36901455,,, +830,B,pt,ZYL244 Rdio Cultura,,Belo Horizonte (MG),-19.925903,-43.892028,,5,,9370,227,138,,,,,,36901447,,, +830,GTM,,TGAV R Satlite,,Mazatenango (sup),14.516667,-91.5,,5,,9267,285,138,,1100-0400,1234567,,,40480,,, +830,MEX,es,XEITE-AM R Capital,,Mxico D.F/Aculco (dif),19.374056,-99.109506,,5,,9326,294,138,,,,5,,34900002,,, +830,SLV,,YSPX,,San Miguel (smg),13.466667,-88.166667,,4,,9138,282,138,,,,,,45303,,, +830,B,pt,ZYH659 Rdio Pioneira,,Forquilha (CE),-3.809456,-40.266506,,0.25,,7606,231,139,,,,,,36901465,,, +830,B,pt,ZYH905 Rdio Mirante do Maranho,,Imperatriz (MA),-5.467281,-47.477478,,1,,8165,237,139,,,,,,36901449,,, +830,B,pt,ZYI396 Rdio Cidade de Maracaju,,Maracaju (MS),-21.617628,-55.158847,,5,,10128,235,140,,,,,,36901446,,, +830,B,pt,ZYI556 Rdio Guarani do Maraj,,Soure (PA),-0.714778,-48.511867,,0.25,,7777,241,141,,,,,,36901452,,, +830,HND,,HRXS,,San Pedro Sula (cor),15.5,-88.016667,,2,,8950,283,141,,,,,,37874,,, +830,B,pt,ZYH925 Rdio Boa Esperana,,Esperantinpolis (MA),-4.879722,-44.879167,,0.25,,7962,235,143,,,,,,36901467,,, +830,B,pt,ZYI906 Rdio Primeira Capital,,Oeiras (PI),-6.999128,-42.137617,,0.25,,8017,231,143,,,,,,36901461,,, +830,HND,,HRVQ,,Juticalpa (ola),14.666667,-86.216667,,1,,8902,281,143,,,,,,37866,,, +830,HWA,en,KHVH,,Honolulu (HI),21.323889,-157.875556,,10,,11708,345,143,,0000-2400,1234567,0,,38568,,, +830,MEX,es,XEDQ-AM R Alegra,,San Andrs Tuxtla (vcz),18.421389,-95.206389,,1,,9164,290,144,,,,,,43930,,, +830,MEX,es,XEZQ-AM R Futurama,,Cunduacan (tab),17.974792,-93.101539,,1,,9068,288,144,,,,,,45153,,, +830,ARG,,R del Pueblo,,Buenos Aires (df),-34.616667,-58.466667,,5,,11511,230,145,,,,,,51802,,, +830,MEX,es,XEVQ-AM,,Culiacn (sin),24.832222,-107.404722,,1,,9329,303,145,,,,,,44985,,, +830,PRU,,OAX6D R Nacional del Peru,,Tacna (tac),-15.833333,-70.216667,,2.5,,10509,250,145,,,,,,40330,,, +830,EQA,,HCBP5,,Promocion (chi),-1.566667,-78.683333,,1,,9810,265,146,,,,,,36868,,, +830,MEX,es,XELK-AM R Mexicana,,Zacatecas (zac),22.770217,-102.631281,,0.5,,9237,299,147,,,,,,44310,,, +830,B,pt,ZYH506 Rdio Extremo Sul da Bahia,,Itamaraju/Fazenda Jundiar (BA),-17.036978,-39.590778,,0.25,,8876,224,149,,,,,,36901457,,, +830,B,pt,ZYK681 Rdio Lder,,Votuporanga (SP),-20.404461,-49.969689,,0.5,,9730,231,149,,,,,,36901448,,, +830,MEX,es,XELN-AM La Caliente,,Linares (nvl),24.872711,-99.572986,,0.25,,8864,298,149,,,,,,44314,,, +830,USA,en,WQGW543,,Atlanta (GA),33.644322,-84.446306,,0.01,,7179,293,149,,,,,,20010510,,, +830,ARG,,LT21 R Municipal,,Alvear (cn),-29.1,-56.533333,,1,,10901,232,150,,0900-0100,1234567,,,40173,,, +830,ARG,es,LT8 La Ocho AM,,Rosario (sf),-32.913567,-60.901036,,1.5,,11486,233,150,,0000-2400,1234567,,,40201,,, +830,MEX,es,XEDR-AM Digital 99,,Guaymas (son),27.929403,-110.893614,,0.25,,9236,308,150,,,,,,43932,,, +830,B,pt,ZYH805 Rdio Cidade,,Goiatuba (GO),-18.036533,-49.368303,,0.25,,9471,232,151,,,,,,36901464,,, +830,B,pt,ZYN401 REJ-Rdio Educadora de Juna,,Juna (MT),-11.422467,-58.767617,,0.25,,9392,243,151,,,,,,36901460,,, +830,ARG,,R Filadelfia,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,,,51807,,, +830,ARG,es,LU14 R.Provincia de Santa Cruz,,Ro Gallegos (sc),-51.714717,-69.288228,,5,,13532,225,152,,0900-0500,1234567,5,,40207,,, +830,B,pt,ZYI430 Rdio Xavantes de Jaciara,,Jaciara (MT),-15.935531,-54.97365,,0.25,,9586,238,152,,,,,,36901466,,, +830,B,pt,ZYK746 Rdio Novo Tempo,,Nova Odessa (SP),-22.820108,-47.330233,,0.25,,9825,228,152,,,,,,36901456,,, +830,B,pt,ZYJ266 Rdio CBN,,Londrina/Jardim Santa F (PR),-23.3,-51.133333,,0.25,,10068,231,153,,,,,,36901450,,, +830,ARG,,LV18 R Municipal,,San Rafael (mz),-34.616667,-68.333333,,1,,12051,237,154,,1030-0230,1234567,,,40241,,, +830,B,pt,ZYJ224 Rdio Iguau,,Araucria (PR),-25.593333,-49.4075,,0.25,,10197,228,154,,,,,,36901453,,, +830,B,pt,ZYJ311 Rdio Progresso AM,,Clevelndia (PR),-26.381944,-52.322778,,0.25,,10423,230,154,,,,,,36901462,,, +830,B,pt,ZYJ773 Rdio Cruz de Malta AM,,Lauro Mller/Morro dos Madeira (SC),-28.388333,-49.393056,,0.25,,10464,227,155,,,,,,36901458,,, +830,B,pt,ZYK332 Rdifuso Independente,,Cruz Alta (RS),-28.617778,-53.63,,0.25,,10702,230,155,,,,,,36901454,,, +830,USA,,KMUL,,Farwell (TX),34.495,-103.394167,,0.01,,8230,306,159,,,,,,38941,,, +830,USA,en,WPED343,,La Porte/124 S Second St. (TX),29.664111,-95.061011,,0.01,,8170,297,159,,,,,,20010508,,, +830,USA,en,KNNS724,,Carmel Valley (CA),36.481639,-121.732167,,0.01,,8956,320,163,,,,,,20010509,,, +830,USA,en,WE2XFZ,,Chilocco (OK),36.937222,-97.071389,,0.0001,,7663,304,174,,,,,,20010512,,, +832,RUS,,PL,b,Olenya,68.145833,33.458333,,0.025,,2290,29,96,,,,0,L1020 U1020 ,85775,,, +832,RUS,,SHW,b,Olenya,68.145833,33.458333,,0.025,,2290,29,96,,,,,,85776,,, +835,RUS,,U,b,Ekaterinburg / Aramil / Uktus (SV),56.6875,60.791667,,0.025,,3462,60,108,,,,,L834 U836 ,85777,,, +837,F,fr,France Info,,Nancy/Nomeny (54),48.882222,6.232778,,200,,359,182,38,,0000-2400,1234567,4,,504,,, +837,UKR,uk,UR 1 Persha Prog.,,Taranivka (KA),49.63575,36.123958,,150,,2088,86,56,,0400-0800,1234567,2,,513,,, +837,UKR,uk,UR 1 Persha Prog.,,Taranivka (KA),49.63575,36.123958,,150,,2088,86,56,,1500-2000,1234567,2,,513,,, +837,UKR,uk,R Bukovyna,,Chernivtsi/Vul. Putyla 20 (CV),48.271306,25.892267,,30,,1446,99,57,,0600-1700,1234567,8,,511,,, +837,E,es,COPE,,Sevilla/EAK2 (AND-SE),37.393183,-6.0565,,50,,1904,216,59,,0000-2400,1234567,1,,503,,, +837,G,en,BBC R Cumbria,,Barrow-in-Furness (EN-CUM),54.126278,-3.196389,,2,,679,293,61,,0000-2400,1234567,0,,505,,, +837,E,es,COPE,,Burgos/Cortes (CAL-BU),42.334736,-3.672261,,5,,1324,219,63,,0000-2400,1234567,,,500,,, +837,G,,BBC Asian Network,,Leicester/Freemen's Common (EN-LEI),52.619,-1.131472,,0.45,,515,279,66,,0600-2400,1234567,0,,506,,, +837,G,,BBC WS,,Leicester/Freemen's Common (EN-LEI),52.619,-1.131472,,0.45,,515,279,66,,0000-0600,1234567,0,,506,,, +837,E,es,COPE,,La Corua/El Ferrol (GAL-C),43.478789,-8.284094,,2,,1453,234,69,,0000-2400,1234567,,,501,,, +837,IRN,fa,IRIB R Esfahan,,Esfahan/Habibabad (esf),32.838875,51.771794,,400,,4199,103,73,,0000-2400,1234567,9993,,508,,, +837,ALG,fr,Chane 3,,Bchar (8),31.631111,-2.222222,,5,,2383,200,74,,0500-0100,1234567,,,200006,,, +837,CNR,es,COPE,,Tafira/EAK35 (LPM-GC),28.069167,-15.448611,,10,,3229,223,79,,0000-2400,1234567,1,,499,,, +837,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (mae),15.219417,38.87475,,100,,5003,133,87,,0330-0700,1234567,,,2405,,, +837,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (mae),15.219417,38.87475,,100,,5003,133,87,,1400-1800,1234567,,,2405,,, +837,YEM,ar,YGCRT Al-Shabab R,,Sana'a (san),15.380678,44.198419,,30,,5267,127,95,,0300-2300,1234567,82,,514,,, +837,ETH,,R Oromia,,Robe (orm),7.086817,39.998139,,100,,5867,136,96,,0400-0600,1234567,,,9600020,,, +837,ETH,,R Oromia,,Robe (orm),7.086817,39.998139,,100,,5867,136,96,,0900-1100,1234567,,,9600020,,, +837,ETH,,R Oromia,,Robe (orm),7.086817,39.998139,,100,,5867,136,96,,1600-1800,1234567,,,9600020,,, +837,IND,,AIR South,,Vijayawada A (AP),16.359028,80.500833,,100,,7498,92,112,,0025-0430,1234567,,,48493,,, +837,IND,,AIR South,,Vijayawada A (AP),16.359028,80.500833,,100,,7498,92,112,,0610-0930,1234567,,,48493,,, +837,IND,,AIR South,,Vijayawada A (AP),16.359028,80.500833,,100,,7498,92,112,,1130-1742,1234567,,,48493,,, +837,CHN,,CNR 5 Zhonghua zhi Sheng,,Quanzhou/SARFT641 (FJ),24.887361,118.806944,,1000,130,9242,58,115,,2055-1705,1234567,,,36200211,,, +837,CHN,,Harbin RGD News,,Harbin (HL),45.615833,126.833611,,50,,7753,40,118,,,,,,48488,,, +837,KOR,,HLKY CBS,,Seoul/Neunggok (seo),37.611944,126.823611,,50,,8494,45,125,,0000-2400,1234567,,,48498,,, +837,CHN,,Liaoning RGD Xinwen Tai,,Liaoyang (LN),41.266667,123.166667,,10,,7981,45,127,,,,,,48489,,, +837,J,,JOQK NHK1,,Niigata (chu-nii),37.845,138.9175,,10,,9006,36,134,,0000-2400,1234567,,,48496,,, +837,THA,,Sor. Wor. Thor. (R Thailand),,Bang Phun (ptn),13.75,100.5,,10,,9080,78,134,,0655-1600,1234567,,,48505,,, +837,THA,,Sor. Wor. Thor. (R Thailand),,Bang Phun (ptn),13.75,100.5,,10,,9080,78,134,,2300-0430,1234567,,,48505,,, +837,CHN,,Chaoyang RGD,,Chaoyang (LN),41.566667,120.466667,,1,,7822,47,135,,,,,,48487,,, +837,TWN,,BCC Country Network,,Taichung (TC),24.054139,120.681086,,10,,9426,57,135,,0000-2400,1234567,,,48507,,, +837,VTN,vi,VOV Cần Thơ R,,Cần Thơ (cnt),10.01765,105.768667,,10,,9759,77,136,,0400-0600,1234567,,,48509,,, +837,VTN,vi,VOV Cần Thơ R,,Cần Thơ (cnt),10.01765,105.768667,,10,,9759,77,136,,0900-1200,1234567,,,48509,,, +837,VTN,vi,VOV Cần Thơ R,,Cần Thơ (cnt),10.01765,105.768667,,10,,9759,77,136,,2200-2400,1234567,,,48509,,, +837,THA,th,Sathaanii Witthayu 909 Kao-Suun-Kao,,Sakon Nakhon/Nakhon Phanom Rd (snk),17.159444,104.131944,,5,,9023,73,137,,2200-1700,1234567,,,48506,,, +837,PHL,,DZRK-AM Radyo ng Bayan,,Tabuk (kal),17.416667,121.45,,7,,10083,60,139,,,,,,50468,,, +837,CHN,zh,Xinyang News BS,,Xinyang (HE),32.166667,114.066667,,1,,8316,57,140,,,,999,,48492,,, +837,PHL,tl,DYFM-AM Bombo Radyo,,Iloilo City (ilo),10.7052,122.587506,,10,,10771,63,140,,????-1615,1234567,,,48503,,, +837,CHN,,Xiantao RGD,,Xiantao (HU),30.383333,113.4,,1,,8435,58,141,,,,,,36200800,,, +837,J,,NHK R 1,,Nayoro (hok),44.366667,142.466667,,1,,8492,31,142,,0000-2400,1234567,,,48495,,, +837,PHL,,DXJS-AM Radyo ng Bayan,,Tandag (sds),9.068583,126.193369,,5,,11140,61,144,,,,,,48671,,, +837,PHL,,DXRE-AM Sonshine R,,General Santos City (sco),6.116667,125.083333,,5,,11348,63,144,,,,,,48502,,, +837,INS,,R Muslim Jakarta,,Jakarta/Ciganjur (JK-kjs),-6.15,106.866667,,1,,11260,86,151,,,,,,35400011,,, +837,AUS,,4RK ABC Capricornia,,Rockhampton/Gracemere (QLD),-23.452272,150.457317,,10,,15608,58,156,,0000-2400,1234567,,,48486,,, +837,AUS,,6ED ABC Goldfields-Esperance,,Esperance (WA),-33.752333,121.86,,1,,14582,95,162,,0000-2400,1234567,,,48484,,, +837,NZL,en,RNZ National,,Kaitaia/Waipapakauri (NTL),-35.035556,173.246389,,2,,17848,34,170,,0000-2400,1234567,,,48499,,, +837,NZL,en,RNZ National,,Whangarei/Otaika (NTL),-35.780556,174.319444,,2,,17964,32,170,,0000-2400,1234567,,,48500,,, +837,AUS,,7XS West Coast,,Queenstown/Conlan St (TAS),-42.095,145.546389,,0.5,,16778,86,172,,2000-1400,1234567,,,48485,,, +840,USA,en,WHAS,,Louisville (KY),38.261111,-85.428611,,50,,6867,297,109,,,,55,,41598,,, +840,USA,es,WCEO,,Columbia (SC),34.211667,-80.834722,,50,,6904,291,109,,1200-2400,1234567,,,42968,,, +840,USA,en,WKTR,,Earlysville (VA),38.265833,-78.414722,,8.2,,6432,293,112,,1200-2400,1234567,,,42079,,, +840,USA,,WKDI,,Denton (MD),38.898056,-75.852778,,1,,6221,291,119,,,,,,41982,,, +840,USA,en,WHGH,,Thomasville (GA),30.798333,-83.939444,,10,,7380,290,121,,1200-2400,1234567,,,41630,,, +840,HTI,,R 4VEH,,Cap-Hatien/La Petite Anse (nrd),19.734086,-72.178714,,10,,7518,274,122,,,,996,,52105,,, +840,USA,,KTIC,,West Point (NE),41.785,-96.6775,,5,,7231,307,122,,,,,,39486,,, +840,VEN,,YVMY R Juventud,,Barquisimeto (lar),10.066667,-69.316667,,50,,8153,265,122,,,,,,45389,,, +840,USA,,WBHY,,Mobile (AL),30.763889,-88.11,,10,,7647,293,123,,,,,,40855,,, +840,USA,en,WVPO,,Stroudsburg (PA),40.973889,-75.195278,,0.25,,6025,293,123,,,,,,43340,,, +840,CUB,es,R Revolucin,,Palma Soriano (sc),20.199172,-75.980731,,10,,7737,277,124,,,,,,31600020,,, +840,USA,es,WRYM,,New Britain (CT),41.686111,-72.729722,,0.125,,5818,292,124,,,,25,,42941,,, +840,CUB,es,CMHW Doblev/CMBQ W Santa Maria,,Santa Clara/CTOM2 (vc),22.420144,-79.939294,,10,,7817,282,125,,,,0,,31600019,,, +840,VEN,,YVUZ Guarapiche 8-40,,Maturin (mgs),9.75,-63.183333,,10,,7765,260,125,,0000-2400,1234567,,,51665,,, +840,USA,,KWDF,,Ball (LA),31.377778,-92.474167,,8,,7865,297,127,,,,,,39697,,, +840,B,pt,ZYJ679 Rdio Nacional,,Porto Velho (RO),-8.776644,-63.882433,,50,,9470,249,128,,,,,,36901480,,, +840,EQA,es,HCPN1 R Vigia La Voz de la Policia Nacional,,Quito (pic),-0.216667,-78.5,,50,,9679,266,129,,,,,,2257,,, +840,PTR,es,WXEW,,Yabucoa (PR),18.049444,-65.868611,,1,,7230,268,129,,0830-0300,1234567,,,43462,,, +840,USA,,KXNT,i,North Las Vegas (NV),36.398056,-114.915833,,25,,8651,315,129,,,,2,,39809,,, +840,B,pt,ZYK687 Rdio Bandeirantes,,So Paulo/Jardim Santa Emilia (SP),-23.6465,-46.600944,,50,,9868,227,130,,,,,,36901468,,, +840,CLM,es,HJKK HJ Doble K,,Neiva (hui),2.933333,-75.333333,,30,,9187,265,130,,,,1,,35901413,,, +840,USA,en,WPGS,,Mims (FL),28.738889,-80.883889,,1,,7352,287,131,,1200-2400,1234567,9992,,42681,,, +840,B,pt,ZYH447 Rdio Excelsior,,Salvador (BA),-12.92355,-38.500933,,5,,8415,225,134,,,,,,36901478,,, +840,CLM,es,HJBI,,Santa Marta (mag),11.183333,-74.166667,,5,,8386,270,134,,,,,,37347,,, +840,PNR,es,HOL80 R Nacional,,Howard (pnm),8.932272,-79.582172,,10,,8952,272,134,,0000-2400,1234567,2,,37702,,, +840,CAN,,CKBX,,100 Mile House (BC),51.669722,-121.290833,,0.5,,7482,328,135,,,,997,,36275,,, +840,ARG,es,LV9 R Salta,,Salta/La Merced (sa),-25.008572,-65.490469,,25,,11036,241,136,,1000-0500,1234567,8,,40259,,, +840,USA,en,KMPH,i,Modesto (CA),37.709444,-120.726111,,5,,8794,320,136,,,,99971,,39148,,, +840,DOM,,HIAB R Isabel de Torres,,San Felipe de Puerto Plata (ppl),19.766667,-70.666667,,0.25,,7412,273,137,,0930-0330,1234567,,,37193,,, +840,NCG,,YNRN R Noticias,,Managua (mng),12.066667,-86.266667,,5,,9132,280,137,,1030-0200,1234567,,,45232,,, +840,SLV,,YSF,,San Salvador (ssl),13.716667,-89.25,,5,,9188,283,137,,,,,,45273,,, +840,USA,en,WQHY909,,Bloomfield (NJ),40.810969,-74.193531,,0.01,,5974,292,137,,,,,,20010534,,, +840,USA,en,WQHY909,,Eatontown (NJ),40.313083,-74.095667,,0.01,,6004,292,137,,,,,,20010532,,, +840,USA,en,WQHY909,,Keyport (NJ),40.427028,-74.227647,,0.01,,6004,292,137,,,,,,20010547,,, +840,USA,en,WQHY909,,Metchen (NJ),40.556667,-74.327628,,0.01,,6001,292,137,,,,,,20010549,,, +840,USA,en,WQHY909,,Saddle Brook (NJ),40.910967,-74.098194,,0.01,,5960,292,137,,,,,,20010542,,, +840,USA,en,WQHY909,,Union (NJ),40.696917,-74.260992,,0.01,,5986,292,137,,,,,,20010550,,, +840,USA,en,WQIC871,,Belmar (NJ),40.166111,-74.111025,,0.01,,6016,291,137,,,,,,20010544,,, +840,B,pt,ZYJ320 Rdio Educadora Inconfidncia,,Umuarama (PR),-23.787789,-53.300889,,10,,10230,232,138,,,,,,36901477,,, +840,B,pt,ZYK248 Rdio Capital,,Gravata (Cachoeirinha) (RS),-29.926667,-51.041389,,10,,10693,227,139,,,,,,36901475,,, +840,ARG,es,LT12 R General Madariaga,,Paso de los Libres (cn),-29.730014,-57.116153,,10,,10990,232,140,,0900-0300,1234567,,,40164,,, +840,B,pt,ZYH648 Rdio Campo Maior,,Quixeramobim (CE),-5.176817,-39.286661,,0.25,,7689,230,140,,,,,,36901472,,, +840,USA,en,KMAX,,Colfax (WA),46.913889,-117.324444,,0.28,,7774,323,140,,,,0,,38882,,, +840,USA,,KSWB,,Seaside (OR),45.981944,-123.917222,,0.5,,8124,326,141,,,,,,39440,,, +840,B,pt,ZYI930 Rdio Ribeiro,,Demerval Lobo (PI),-5.339428,-42.689064,,0.25,,7886,233,142,,,,,,36901470,,, +840,HND,,HRQW,,Puerto de Tela (atl),15.666667,-87.466667,,1,,8899,283,143,,,,,,37831,,, +840,USA,,KVJY,,Pharr (TX),26.316667,-98.104444,,1,,8647,297,143,,,,,,39631,,, +840,MEX,es,XEMY-AM La Jefa,,Ciudad Mante (tam),22.815,-98.945833,,1,,9009,296,144,,,,,,44423,,, +840,PRG,,ZP6 R Guaira,,Villarrica (cgz),-25.25,-56.416667,,3,,10537,234,144,,0900-2400,1234567,,,45552,,, +840,GTM,,TGSM LV de San Marcos,,San Marcos (sms),14.966667,-91.783333,,1,,9246,286,145,,1300-0400,1234567,,,40543,,, +840,MEX,es,XEXXX-AM Fiesta Mexicana,,Tamazula de Gordiano (jal),19.651389,-103.265186,,1,,9557,297,146,,,,,,45075,,, +840,ARG,es,LU2 R Baha Blanca,,Baha Blanca (ba),-38.662014,-62.264186,,5,,12074,230,147,,0900-0400,1234567,,,40214,,, +840,CHL,es,CB84 R Portales,,Valparaso/Alto del Puerto (VS),-33.085669,-71.617039,,5,,12110,240,147,,1000-0500,1234567,977,,35763,,, +840,EQA,,HCEM4,,Costa Azul (man),-1.066667,-80.433333,,1,,9886,267,147,,,,,,36919,,, +840,PRU,es,OAU2E Frequencia San Ignacio,,San Ignacio/Cerro los Loros (caj),-5.144444,-79.002778,,1,,10147,263,147,,,,,,37000070,,, +840,USA,,KKNX,,Eugene (OR),44.081667,-123.109444,,0.17,,8277,325,147,,,,,,38739,,, +840,CHL,,CD84 R Santa Maria,,Coyhaique (AI),-45.533333,-72.066667,,10,,13177,231,148,,1030-0230,1234567,,,35919,,, +840,B,pt,ZYJ750 Rdio Rural de Concrdia,,Concrdia (SC),-27.223056,-52.011389,,1,,10486,229,149,,,,,,36901476,,, +840,PRU,,OAX3S R Casma,,Casma/Tabon Alto (anc),-9.461111,-78.33,,1,,10481,260,149,,1100-0300,1234567,,,40297,,, +840,B,,ZYH292,,Fonte Boa (AM),-2.516667,-66.016667,,0.25,,9044,254,150,,,,,,45593,,, +840,B,pt,ZYH298 Rdio Rio Madeira,,Manicor (AM),-5.807144,-61.281919,,0.25,,9035,249,150,,,,,,36901471,,, +840,MEX,es,XETEY-AM R Sensacin,,Tepic (nay),21.522381,-104.922389,,0.25,,9487,300,151,,,,,,44814,,, +840,ARG,,R General Belgrano,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51808,,, +840,MEX,es,XEFG-AM La Pachanga,,Celaya (gua),20.527342,-100.770108,,0.1,,9326,296,155,,,,,,44005,,, +840,USA,en,WPLX306,,Canton (TX),32.594328,-95.877697,,0.01,,7966,300,157,,,,,,20010554,,, +840,USA,en,KNNN866,,Gilroy (CA),37.010994,-121.560997,,0.01,,8898,320,163,,,,,,20010563,,, +840,USA,en,KNNN866,,Milpitas (CA),37.427692,-121.9155,,0.01,,8873,321,163,,,,,,20010565,,, +840,USA,en,KNNN866,,Palo Alto (CA),37.446889,-122.127694,,0.01,,8880,321,163,,,,,,20010564,,, +840,USA,en,KNNN866,,San Juan Bautista (CA),36.862417,-121.579333,,0.01,,8913,320,163,,,,,,20010562,,, +840,USA,en,KNNT676,,Los Gatos (CA),37.248833,-121.959389,,0.01,,8892,321,163,,,,,,20010561,,, +840,USA,en,KNNT676,,San Jose (CA),37.242722,-121.777689,,0.01,,8885,321,163,,,,,,20010558,,, +840,USA,en,KNNT676,,San Jose (CA),37.316611,-121.944358,,0.01,,8885,321,163,,,,,,20010539,,, +840,USA,en,KNNT676,,San Jose (CA),37.344356,-121.861019,,0.01,,8878,321,163,,,,,,20010560,,, +840,USA,en,KNNT676,,Sunnyvale (CA),37.332722,-122.061033,,0.01,,8888,321,163,,,,,,20010559,,, +840,USA,en,KNNT676,,Sunnyvale (CA),37.411017,-122.044364,,0.01,,8880,321,163,,,,,,20010569,,, +840,USA,en,WNVQ787,,Orinda (CA),37.865472,-122.211033,,0.01,,8843,321,163,,,,,,20010567,,, +840,USA,en,WNVQ787,,Orinda (CA),37.892417,-122.177697,,0.01,,8839,321,163,,,,,,20010557,,, +840,USA,en,WNVQ787,,Walnut Creek (CA),37.911008,-122.077697,,0.01,,8833,321,163,,,,,,20010566,,, +840,USA,en,WPBW721,,Novato (CA),38.094344,-122.544361,,0.01,,8835,321,163,,,,,,20010571,,, +840,USA,en,WPBW721,,San Rafael (CA),37.961011,-122.509139,,0.01,,8846,321,163,,,,,,20010570,,, +840,USA,en,WPBW809,,Benicia (CA),38.049361,-122.133306,,0.01,,8822,321,163,,,,,,20010513,,, +840,USA,en,WPBW809,,Fairfield (CA),38.214639,-122.144367,,0.01,,8806,321,163,,,,,,20010568,,, +840,USA,en,WPBW809,,Vallejo (CA),38.066861,-122.226639,,0.01,,8824,321,163,,,,,,20010546,,, +840,USA,en,WPBW813,,Belmont (CA),37.527689,-122.266083,,0.01,,8878,321,163,,,,,,20010530,,, +840,USA,en,WPBW813,,Brisbane (CA),37.694356,-122.394367,,0.01,,8867,321,163,,,,,,20010529,,, +840,USA,en,WPBW813,,Hillsborough (CA),37.511022,-122.344361,,0.01,,8883,321,163,,,,,,20010523,,, +840,USA,en,WPBW813,,Redwood City (CA),37.483556,-122.181917,,0.01,,8879,321,163,,,,,,20010528,,, +840,USA,en,WPCS305,,Emeryville (CA),37.846583,-122.29775,,0.01,,8848,321,163,,,,,,20010521,,, +840,USA,en,WPCS305,,Fremont (CA),37.527689,-121.994364,,0.01,,8866,321,163,,,,,,20010526,,, +840,USA,en,WPCS305,,Fremont (CA),37.533278,-122.077697,,0.01,,8869,321,163,,,,,,20010527,,, +840,USA,en,WPCS305,,Livermore (CA),37.711011,-121.744358,,0.01,,8838,321,163,,,,,,20010524,,, +840,USA,en,WPCS305,,Pleasanton (CA),37.593278,-121.877686,,0.01,,8855,321,163,,,,,,20010525,,, +840,USA,en,WPEI433,,San Bruno (CA),37.633556,-122.409417,,0.01,,8874,321,163,,,,,,20010519,,, +840,USA,en,WPEI433,,San Francisco (CA),37.744353,-122.411031,,0.01,,8863,321,163,,,,,,20010520,,, +840,USA,en,WPEI433,,San Francisco (CA),37.794342,-122.393583,,0.01,,8858,321,163,,,,,,20010531,,, +840,USA,en,WPEI433,,San Francisco (CA),37.809361,-122.365528,,0.01,,8855,321,163,,,,,,20010522,,, +840,USA,en,WPEI433,,San Francisco (CA),37.811011,-122.477694,,0.01,,8860,321,163,,,,,,20010517,,, +840,USA,en,WPEI433,,San Mateo (CA),37.561019,-122.29525,,0.01,,8876,321,163,,,,,,20010518,,, +840,USA,en,WPEI434,,Hayward (CA),37.609944,-122.066361,,0.01,,8861,321,163,,,,,,20010555,,, +840,USA,en,WPEI434,,Hayward (CA),37.627683,-122.161028,,0.01,,8864,321,163,,,,,,20010543,,, +840,USA,en,WPEI434,,Hayward (CA),37.666611,-122.111033,,0.01,,8858,321,163,,,,,,20010515,,, +840,USA,en,WPEI434,,Oakland (CA),37.74435,-122.197194,,0.01,,8854,321,163,,,,,,20010545,,, +840,USA,en,WPEI434,,Oakland (CA),37.811014,-122.279417,,0.01,,8851,321,163,,,,,,20010516,,, +840,USA,en,WPEI434,,San Pablo (CA),37.961017,-122.331083,,0.01,,8839,321,163,,,,,,20010514,,, +840,USA,en,WPEX988,,Belvedere (CA),37.877681,-122.463583,,0.01,,8852,321,163,,,,,,20010553,,, +840,USA,en,WPHF893,,Salinas (CA),36.583306,-121.59435,,0.01,,8940,320,163,,,,,,20010551,,, +840,USA,en,WPIJ667,,San Jose (CA),37.359111,-121.911025,,0.01,,8879,321,163,,,,,,20010548,,, +840,USA,en,WPIJ667,,Santa Cruz (CA),36.994356,-122.027697,,0.01,,8920,321,163,,,,,,20010533,,, +840,USA,en,WPIJ667,,Scotts Valley (CA),37.061056,-122.011028,,0.01,,8912,321,163,,,,,,20010552,,, +840,USA,en,WQEG408,,Oakland (CA),37.827675,-122.312028,,0.01,,8851,321,163,,,,,,20010535,,, +840,USA,en,WQFS210,,San Francisco/Bay Bridge I-80 (CA),37.794347,-122.394328,,0.01,,8858,321,163,,,,,,20010536,,, +840,USA,en,WQFS210,,San Francisco/Bay Bridge I-80 (CA),37.795417,-122.380694,,0.01,,8857,321,163,,,,,,20010537,,, +840,USA,en,WQFS210,,San Francisco/Bay Bridge I-80 (CA),37.7995,-122.376556,,0.01,,8856,321,163,,,,,,20010538,,, +840,USA,en,WQFS210,,San Francisco/Bay Bridge I-80 (CA),37.810958,-122.3777,,0.01,,8855,321,163,,,,,,20010540,,, +840,USA,en,WQGU629,,Napa (CA),38.244367,-122.277686,,0.01,,8809,321,163,,,,,,20010541,,, +840,USA,en,WQIQ628,,Sears Point (CA),38.161028,-122.449583,,0.01,,8824,321,163,,,,,,20010556,,, +846,IRL,en,R North/AWR/Gospel 846,,Redcastle (DL),55.166667,-7.15,,1,,954,296,67,,0000-2400,1234567,996,,515,,, +846,RUS,ru,R Rossii,,Elista (KX),46.3075,44.181389,,42,,2785,88,69,,0100-2100,1234567,5,,517,,, +846,GRC,,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,30,,3400024,,, +846,IRN,fa,IRIB R Tabriz,,Mianeh (eaz),37.457303,47.694222,,10,,3579,101,83,,0200-2100,1234567,3,,1788,,, +846,ISR,he,IBA Reshet Bet (B),,Zefat (hzf),32.966667,35.5,,1,,3157,121,89,,0000-2400,1234567,,,46838,,, +846,UAE,ar,Umm Al Quwain BS,,Umm al-Quwain (uaq),25.588889,55.575,,20,,5040,106,94,,0200-1900,1234567,1,,520,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,0020-0500,1234567,4,,48539,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,0630-0930,123456,4,,48539,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,0630-1000,......7,4,,48539,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,1030-1742,......7,4,,48539,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,1130-1742,123456,4,,48539,,, +846,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Nyamninia (nyz),0.103333,34.5085,,100,,6349,146,101,,0200-2110,1234567,,,2096,,, +846,UZB,,MTRK R Mash'al,,unknown,41.5,64.5,,1,,4448,82,101,,,,,,48572,,, +846,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,3,,5777,76,110,,,,0,,36200041,,, +846,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.633333,91.008333,,10,,7102,75,118,,2250-1700,1234567,,,48530,,, +846,BGD,,Bangladesh Betar,,Bogra/Kahalu (rjs),24.859394,89.26855,,10,,7378,79,121,,0000-0400,1234567,,,48514,,, +846,BGD,,Bangladesh Betar,,Bogra/Kahalu (rjs),24.859394,89.26855,,10,,7378,79,121,,0600-1710,1234567,,,48514,,, +846,CHN,,Henan RGD Nongcun Guangbo,,Zhengzhou/HETS976 (HE),34.796944,113.746944,,50,,8066,55,121,,,,,,36200040,,, +846,TWN,,Han Sheng GD Kuanghua zhi Sheng,,Kuanyin=Guanin (TY),25.043889,121.094722,,250,,9358,56,121,,0655-0105,1234567,0,,48569,,, +846,CHN,,Shanxi RGD Zonghe Guangbo,,Changzhi/Nanzhuang (SX),36.08,113.081389,,20,,7916,55,123,,,,,,48519,,, +846,CHN,,Langfang RGD,,Langfang (HB),39.528333,116.729722,,10,,7812,50,125,,,,,,48529,,, +846,CHN,en,CRI News Center,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0000-2400,1234567,,,48517,,, +846,CHN,mn,Fuxin RGD,,Fuxin (LN),42.033333,121.633333,,10,,7838,45,125,,,,,,48522,,, +846,AFS,,UMFM-Umhlobo Wenene FM,,Komga (EC),-32.561611,27.861889,,100,,9644,162,126,,0000-2400,1234567,0,,2409,,, +846,CHN,,Cangzhou RGD Literary,,Cangzhou (HB),38.275917,116.768333,,10,,7925,51,126,,,,,,48518,,, +846,CHN,,Jilin RGD Dazhong Shenghuo,,Changchun (JL),43.8,125.4,,10,,7855,42,126,,,,,,36200798,,, +846,CHN,,Binzhou RGD,,Binzhou (SD),37.366667,118.016667,,10,,8071,51,128,,,,,,36200799,,, +846,CHN,,Hubei RGD Shenghuo Pindao,,Qichun (HU),30.233333,115.416667,,30,,8565,57,128,,,,,,36200786,,, +846,CHN,,Henan RGD Nongcun Guangbo,,Zhumadian (HE),32.915,114.021389,,10,,8247,56,129,,,,,,36200776,,, +846,CHN,,Hubei RGD Shenghuo Pindao,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,,,,,36200782,,, +846,CHN,,Nanyang RGD Xinwen Pinl,,Nanyang (HE),32.975278,112.498333,,10,,8155,57,129,,,,,,36200787,,, +846,CHN,,Qingdao RGD Literary Arts,,Qingdao/SDTS135 (SD),36.121589,120.350533,,10,,8306,50,130,,,,,,48534,,, +846,CHN,zh,Hubei RGD Chutian Weixing,,Yichang (HU),30.703056,111.228889,,10,,8280,60,130,,2000-1630,1234567,,,48538,,, +846,PHL,,DZRV-AM Veritas 846,,Malolos (bul),14.84935,120.827561,,50,,10283,62,131,,0000-2400,1234567,9995,,48567,,, +846,CHN,zh,Hubei RGD Chutian Weixing,,Xianning (HU),29.866667,114.283333,,10,,8532,58,132,,,,,,36200781,,, +846,CHN,,Changzhou RGD,,Changzhou (JS),31.768056,119.778333,,10,,8670,53,133,,2130-1435,1234567,,,48521,,, +846,CHN,,Guangxi JGD Caifu Guangbo,,Qinzhou/GXTS245 (GX),21.966667,108.616667,,10,,8888,67,133,,2200-1605,1234567,,,48535,,, +846,CHN,,Shanxi RGD Zonghe Guangbo,,Shuozhou (SX),39.316667,112.416667,,1,,7600,53,133,,,,,,36200785,,, +846,CHN,,Weihai RGD Literary Arts,,Weihai (SD),37.516667,122.116667,,5,,8270,48,133,,,,,,48537,,, +846,KOR,ko,HLAU MBC,,Ulsan/Samsan (uls),35.579722,129.232222,,10,,8800,44,133,,0000-2400,1234567,,,48562,,, +846,VTN,vi,VOV Thanh Ha R,,Thanh Ho (tho),19.817833,105.777056,,10,,8896,70,133,,0400-1030,1234567,,,48573,,, +846,CHN,,Shanxi RGD Zonghe Guangbo,,Lliang (SX),36.7,110.933333,,1,,7742,56,134,,,,,,48516,,, +846,THA,,Sor. Wor. Thor. (R Thailand),,Phetchabun (pbn),16.3,101.633333,,10,,8933,76,134,,2200-1600,1234567,13,,48568,,, +846,CHN,,Jiangsu RGD Jiankang Shenghuo Pinl,,Nanjing/Gulizhen (JS),31.868167,118.671889,,5,,8600,54,135,,0000-2400,1234567,,,48532,,, +846,CHN,,Shanxi RGD Zonghe Guangbo,,Yangquan (SX),37.872222,113.566667,,1,,7787,53,135,,,,,,36200780,,, +846,CHN,,Yunnan RGD Xinwen Guangbo,,Fugong (YN),26.966667,98.9,,1,,7837,71,135,,,,,,36200796,,, +846,KOR,,HLSY KBS 1 R,,Yanggu (gan),38.083333,128.022778,,5,,8507,44,135,,0000-2400,1234567,,,48563,,, +846,TWN,,Fu Hsing Kuangpo Tientai 2,,Kaohsiung/Niaosun (KH),22.649553,120.3471,,10,,9536,58,135,,0000-2400,1234567,,,48571,,, +846,TWN,,Han Sheng Kuangpo Tientai,,Magong=Makung (PG),23.566417,119.562811,,10,,9407,58,135,,,,,,52261,,, +846,CHN,,Handan RGD Opera & Story,,Handan (HB),36.6,114.466667,,1,,7948,54,136,,,,,,36200795,,, +846,CHN,,Hebei RGD Jingji Guangbo,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,36200794,,, +846,CHN,,Hebei RGD Jingji Guangbo,,Tangshan (HB),39.666667,118.266667,,1,,7880,49,136,,,,,,36200784,,, +846,CHN,,Jingzhou RGD Traffic & Literary,,Jinzhou (LN),41.116667,121.116667,,1,,7895,46,136,,,,,,48528,,, +846,CHN,,Suzhou JGD City Music,,Suzhou (JS),31.412778,120.693056,,5,,8752,52,136,,2200-1504,1234567,,,48536,,, +846,CHN,zh,CNR 1,,Xinji (HB),37.9,115.2,,1,,7874,52,136,,2025-1805,1234567,,,36201234,,, +846,CHN,,Hebi JGD,,Hebi (HE),35.9,114.2,,1,,7994,54,137,,,,,,48523,,, +846,J,,JOCP NHK1,,Koriyama (toh-fuk),37.360556,140.355833,,5,,9112,35,137,,0000-2400,1234567,,,48557,,, +846,CHN,,Jinan JGD,,Jinan/Daqiao (SD),36.791389,117.015556,,1,,8069,52,138,,2055-1700,1234567,,,48527,,, +846,CHN,,Pingdingshan RGD Literature,,Pingdingshan (HE),33.7,113.283333,,1,,8136,56,138,,,,,,48533,,, +846,CHN,,Yunnan RGD Xinwen Guangbo,,Longchuan (YN),25.2,101.266667,,1,,8140,70,138,,,,,,36200791,,, +846,CHN,,Zhaotong RGD He Shi zhi Sheng,,Zhaotong (YN),27.316667,103.716667,,1,,8115,67,138,,,,,,36200777,,, +846,CHN,,Weifang RGD Traffic,,Weifang (SD),36.731389,119.136667,,1,,8187,50,139,,,,,,36200783,,, +846,CHN,,Yunnan JGD,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200792,,, +846,CHN,zh,CNR 1,,Ximeng/Mengka Zhen (YN),22.736111,99.456944,,1,,8233,73,139,,2025-1805,1234567,,,36200790,,, +846,CHN,,Huaibei RGD Quyi Xiaoshuo,,Huaibei (AH),33.956972,116.783444,,1,,8309,54,140,,????-1430,1234567,,,48524,,, +846,CHN,,Chaohu RGD,,Chaohu (AH),31.5888,117.830833,,1,,8579,54,142,,,,,,36200797,,, +846,CHN,,Hubei RGD Shenghuo Pindao,,Huanggang (HU),30.45,114.8,,1,,8510,57,142,,,,,,36200793,,, +846,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Nanning (GX),22.8,108.3,,1,,8795,67,143,,,,,,36200788,,, +846,CHN,,Guangdong Weixing Guangbo,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,,,,,36200779,,, +846,CHN,,Guangdong Weixing Guangbo,,Zhaoqing (GD),23.039167,112.501667,,1,,9034,63,144,,,,,,36200778,,, +846,J,,NHK R 1,,Hitoyoshi (kyu-kum),32.216667,130.783333,,1,,9194,45,144,,0000-2400,1234567,,,48555,,, +846,J,,NHK R 1,,Uwajima (shi-ehi),33.213889,132.556944,,1,,9182,43,144,,0000-2400,1234567,,,48560,,, +846,J,,JOPG NHK1,,Hirosaki (toh-aom),40.619444,140.452778,,0.5,,8792,34,146,,0000-2400,1234567,9997,,48554,,, +846,CHN,zh,CNR 1,,Mojiang (YN),23.416667,101.733333,,0.1,,8323,71,150,,2025-1805,1234567,,,36200789,,, +846,INS,id,R Star,,Tegal (JT-kte),-6.866667,109.133333,,1,,11477,84,152,,,,,,48551,,, +846,INS,,R Suara al-Iman,,Surabaya (JI-ksu),-7.232778,112.751944,,1,,11755,81,153,,,,,,35400128,,, +846,J,,NHK R 1,,Noheji (toh-aom),40.916667,141.183333,,0.1,,8789,33,153,,0000-2400,1234567,,,48559,,, +846,AUS,,6CA ABC Northwest WA,,Carnarvon (WA),-24.872589,113.669778,,2.5,,13323,93,154,,0000-2400,1234567,,,48513,,, +846,J,,NHK R 1,,Kamaishi (toh-iwa),39.266667,141.883333,,0.1,,8980,33,154,,0000-2400,1234567,,,48556,,, +846,J,ja,NHK R 1,,Iwami,34.783333,134.533333,,0.1,,9120,41,154,,,,,,31400061,,, +846,AUS,en,4EL/4CA AM,,Cairns/Bessie Point (QLD),-16.903222,145.8205,,5,,14734,58,156,,0000-2400,1234567,,,48511,,, +846,INS,id,RKPDT2 Suara Ponorogo,,Ponorogo (JI),-7.866667,111.466667,,0.5,,11723,83,156,,,,,,48546,,, +846,AUS,,2RN ABC National,,Canberra/Gungahlin (ACT),-35.216958,149.120625,,10,,16533,72,159,,0000-2400,1234567,,,48512,,, +846,NZL,en,2ZD Newstalk ZB,,Masterton/Waingawa (WGN),-40.964722,175.589167,,2,,18528,38,172,,0000-2400,1234567,,,48565,,, +850,G,,CIT,b,Cranfield (EN-BEF),52.145833,-0.541667,,0.025,,474,273,78,,,,3,L385 U394 8.8s,85779,,, +850,USA,en,WEEI,,Boston/Starr Ridge (MA),42.278056,-71.267222,,50,,5683,292,97,,,,1,,41257,,, +850,TCD,,R Sarh,,Sarh (mch),9.12355,18.404394,,1,,4902,163,106,,1500-1800,1234567,,,2006,,, +850,USA,,WTAR,,Norfolk (VA),37.06,-76.690556,,25,,6415,290,107,,,,,,43105,,, +850,ALS,en,KICY,,Nome (AK),64.4875,-165.314722,,50,270,7030,356,110,,1300-0800,1234567,999,,38581,,, +850,ALS,ru,KICY,,Nome (AK),64.4875,-165.314722,,50,270,7030,356,110,,0800-1300,1234567,999,,38581,,, +850,USA,,WKVL,,Knoxville (TN),36.07,-83.971944,,50,,6953,294,110,,,,,,42087,,, +850,USA,,WAXB,,Ridgefield (CT),41.290833,-73.487778,,2.5,,5894,292,112,,,,,,42833,,, +850,USA,,WWJC,,Duluth (MN),46.655278,-92.211111,,10,,6592,308,113,,,,,,43393,,, +850,USA,,WKNR,,Cleveland/North Royalton (OH),41.316667,-81.730833,,4.7,,6403,297,114,,,,4,,42049,,, +850,USA,en,WPTK,,Raleigh (NC),35.801111,-78.814167,,5,,6649,291,117,,,,,,42818,,, +850,USA,en,KOA,,Denver (IBOC) (CO),39.506111,-104.765833,,50,,7859,310,119,,,,9999,,52639,,, +850,USA,,WAIT,,Crystal Lake (IL),42.258333,-88.363333,,2.5,,6724,302,120,,,,,,40678,,, +850,USA,,KFUO,,Clayton (MO),38.638889,-90.315833,,5,,7129,300,121,,,,,,38439,,, +850,USA,,WGVS,,Muskegon (MI),43.134722,-86.261389,,1,,6533,302,122,,,,,,41584,,, +850,USA,,WRUF,,Gainesville (FL),29.642778,-82.420278,,5,,7377,288,124,,,,,,42930,,, +850,USA,en,WFTL,,West Palm Beach (D) (FL),26.641111,-80.085556,,5,,7473,285,125,,,,11,,41448,,, +850,DOM,es,HIGA R Guarocuya,,Santa Cruz de Barahona (bh),18.214322,-71.119194,,5,,7575,272,126,,1000-0400,1234567,,,37250,,, +850,CLM,es,HJLC W R,,Bogot D. C. (bdc),4.646767,-74.186756,,50,,8958,265,127,,,,,,37522,,, +850,USA,,WPTB,,Statesboro (GA),32.465556,-81.832222,,1,,7108,290,128,,,,,,42742,,, +850,PTR,,WABA,,Aguadilla (PR),18.400556,-67.1575,,1,,7288,269,130,,0000-2400,1234567,,,40622,,, +850,USA,,KJON,,Carrollton (TX),33.278333,-96.821111,,5,,7962,301,130,,,,,,38686,,, +850,USA,,WXJC,,Birmingham (AL),33.623611,-86.745833,,1,,7324,294,130,,,,,,43470,,, +850,VEN,es,YVZC R Fe y Alegria,,Maracaibo (zul),10.666667,-71.616667,,10,,8257,267,130,,0900-0500,1234567,998,,51666,,, +850,USA,,WLRC,,Walnut (MS),34.946111,-88.878889,,0.94,,7346,297,131,,,,,,42224,,, +850,USA,,WYLF,,Penn Yan (NY),42.661389,-77.120556,,0.045,,6021,296,131,,,,,,43525,,, +850,PRU,es,OAX4A R Nacional del Per,,Lima (lim),-12.066667,-77.066667,,50,,10625,257,132,,,,,,40301,,, +850,URG,es,CX16 R Carve,,Montevideo (mo),-34.864639,-56.345944,,100,,11424,228,132,,0730-0400,1234567,26,,36804,,, +850,USA,en,WFTL,,West Palm Beach (N) (FL),26.641111,-80.085833,,1,,7473,285,132,,,,12,,20016207,,, +850,B,pt,ZYI693 Rdio Rural AM 850,,Guarabira (PB),-6.839717,-35.484317,,1,,7662,225,134,,,,,,36901488,,, +850,CTR,,TIW R Tigre,,San Jos (sjs),9.933333,-84.066667,,10,,9170,277,134,,,,,,40597,,, +850,HND,,HRUP,,Tegucigalpa (fmz),14.066667,-87.2,,10,,9021,282,134,,,,,,37856,,, +850,B,pt,ZYJ470 Rdio Difusora Campos,,Campos dos Goytacazes (RJ),-21.747356,-41.314447,,10,,9425,224,135,,,,,,36901494,,, +850,B,pt,ZYH599 Rdio Iracema,,Juazeiro do Norte (CE),-7.178036,-39.308394,,1,,7886,229,136,,,,,,36901489,,, +850,CUB,es,R Progreso,,Trinidad (ss),21.788033,-79.986122,,1,,7873,281,136,,,,,,36512,,, +850,USA,en,KHHO,i,Tacoma (WA),47.232222,-122.389444,,1,,7945,326,136,,,,,,38540,,, +850,B,pt,ZYH776 Rdio Tropical,,Porangatu (GO),-13.489392,-49.137056,,5,,9024,234,137,,,,,,36901483,,, +850,GTM,,TGX R Ciro,,Ciudad de Guatemala (gut),14.65,-90.466667,,5,,9187,284,137,,1000-????,1234567,,,40556,,, +850,PNR,es,HOT61 La Exitosa de Chiriqu,,Las Lomas (chq),8.426861,-82.374267,,5,,9186,274,137,,0000-2400,1234567,,,52304,,, +850,CUB,es,R Reloj,,Nueva Gerona (ij),21.861583,-82.805919,,1,,8055,283,138,,,,,,31600011,,, +850,B,pt,ZYI538 Rdio Itacainas,,Marab (PA),-5.342114,-49.080117,,1,,8246,239,139,,,,,,36901481,,, +850,HTI,,R Petion-Ville,,Port-au-Prince (oue),18.516667,-72.316667,,0.25,,7631,273,139,,,,,,52106,,, +850,B,pt,ZYH923 Cidade AM,,Vitria do Mearim (MA),-3.478375,-44.868428,,0.25,,7827,236,141,,,,,,36901498,,, +850,B,pt,ZYJ254 Rdio Difusora Colmia,,Campo Mouro (PR),-24.015833,-52.378889,,5,,10202,231,141,,,,,,36901486,,, +850,BOL,,CP210 R Maria Auxiliadora,,Montero (scz),-17.25,-63.25,,5,,10200,244,141,,0900-0300,123456,,,51970,,, +850,BOL,,CP210 R Maria Auxiliadora,,Montero (scz),-17.25,-63.25,,5,,10200,244,141,,1200-2400,......7,,,51970,,, +850,ARG,es,LV de America,,San Miguel (ba),-34.580825,-58.728511,,10,,11521,230,142,,,,,,51809,,, +850,B,pt,ZYI416 Rdio Cultura,,Poxoro (MT),-15.840611,-54.403492,,2,,9544,237,142,,,,,,36901501,,, +850,B,pt,ZYI555 Rdio Tocantins,,Camet (PA),-2.254631,-49.510856,,0.25,,7981,241,143,,,,,,36901493,,, +850,B,pt,ZYI909 Rdio Grande Picos,,Picos (PI),-7.084239,-41.443556,,0.25,,7988,231,143,,,,,,36901495,,, +850,MEX,es,XEJAQ-AM R Felicidad,,Jalpan de Serra (que),21.215117,-99.4663,,1,,9184,295,144,,,,,,44197,,, +850,B,pt,ZYJ675 Rdio Ariquemes,,Ariquemes (RO),-9.916111,-63.029722,,1,,9519,248,145,,,,,,36901485,,, +850,MEX,es,XEMIA-AM,,San Pedro Tlaquepaque (jal),20.636894,-103.317286,,1,,9471,298,145,,,,,,44378,,, +850,MEX,es,XEZI-AM Maxi Star,,Zacapu (mic),19.834889,-101.727,,1,,9447,296,145,,,,,,45141,,, +850,B,pt,ZYH474 Rdio Caraba,,Senhor do Bonfim/Fazenda Maravilha (BA),-10.446689,-40.201031,,0.25,,8254,228,146,,,,,,36901482,,, +850,EQA,,HCGB7,,Espejo (mor),-1.666667,-77.966667,,1,,9770,265,146,,,,,,36951,,, +850,HWA,en,KHLO,,Hilo (HI),19.696667,-155.051389,,5,,11830,342,146,,0000-2400,1234567,997,,38544,,, +850,MEX,es,XEM-AM Renacimiento 850,,Chihuahua (chi),28.6894,-106.120111,,0.5,,8903,305,146,,,,,,44337,,, +850,USA,,KEYH,,Houston (TX),29.655278,-95.671944,,0.185,,8208,298,146,,,,,,38358,,, +850,EQA,,HCBA6,,Ambato (tun),-1.25,-78.616667,,0.8,,9778,265,147,,,,,,36859,,, +850,EQA,es,HCVS2 R San Francisco,,Guayaquil (gua),-2.2,-79.866667,,1,,9947,266,147,,,,,,37180,,, +850,MEX,es,XERTM-AM La Z,,Macuspana (tab),17.777778,-92.615,,0.5,,9053,288,147,,,,,,44714,,, +850,B,pt,ZYJ291 Rdio Alvorada do Sul,,Rebouas (PR),-25.598889,-50.691111,,1,,10263,229,148,,,,,,36901500,,, +850,PRU,,OBX9W,,Chachapoyas (ama),-6.211556,-77.876203,,1,,10164,262,148,,,,,,37000075,,, +850,B,pt,ZYJ807 Rdio Atalaia,,Campo Er (SC),-26.389167,-53.083056,,1,,10463,231,149,,,,,,36901496,,, +850,B,pt,ZYK563 Rdio Clube de Birigui,,Birigui (SP),-21.248544,-50.334117,,0.5,,9830,231,149,,,,,,36901490,,, +850,BOL,,CP160 R 21 de Diciembre,,Mina Catavi (pts),-19.866667,-65.883333,,1,,10598,244,149,,1000-0100,1234567,,,51969,,, +850,PRU,,OBU7Z R Pachamama,,Puno (pun),-15.816667,-70.016667,,1,,10495,250,149,,0845-0030,12345..,90,,37000017,,, +850,PRU,,OBU7Z R Pachamama,,Puno (pun),-15.816667,-70.016667,,1,,10495,250,149,,0845-2300,.....67,90,,37000017,,, +850,B,pt,ZYL254 Mundo Melhor AM,,Governador Valadares (MG),-18.885467,-41.957669,,0.25,,9173,226,150,,,,14,,36901491,,, +850,MEX,es,XEZF-AM xtasis Digital,,Mexicali (bcn),32.63,-115.501667,,0.25,,9035,314,150,,,,35,,45135,,, +850,B,pt,ZYL233 Rdio Difusora Formiguense,,Formiga (MG),-20.488222,-45.437806,,0.25,,9503,228,151,,,,,,36901499,,, +850,B,pt,ZYL295 Rdio Tupaciguara,,Tupaciguara (MG),-18.586333,-48.704861,,0.25,,9488,231,151,,,,,,36901487,,, +850,MEX,es,XEUS-AM R Universidad,,Hermosillo/USON (son),29.083833,-110.958111,,0.2,,9133,308,151,,,,,,44929,,, +850,B,pt,ZYK644 Rdio Clube AM/Jornal,,Rio Claro (SP),-22.441617,-47.557522,,0.25,,9800,228,152,,,,,,36901502,,, +850,B,pt,ZYI438 Rdio Difusora Nortestado 850,,So Gabriel do Oeste (MS),-19.411167,-54.581106,,0.25,,9889,236,153,,,,,,36901484,,, +850,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010573,,, +850,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010572,,, +850,B,pt,ZYJ808 Cidade AM,,Brusque (SC),-27.083333,-48.916667,,0.25,,10315,227,154,,,,,,36901497,,, +850,ARG,es,R Rebelde,,Remedios de Escalada (ba),-34.733333,-58.383333,,0.5,,11517,230,155,,,,,,33000060,,, +855,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,300,,1675,204,49,,0000-2400,1234567,1,,533,,, +855,ROU,ro,SRR R Romnia Actualităţi,,Tncăbeşti (Bucureşti) (BU),44.671111,26.080556,,250,,1664,112,50,,0000-2400,1234567,124,,539,,, +855,E,es,RNE R Nacional,,Santander/Rostro (CNT-S),43.477361,-3.852031,,50,,1226,223,52,,0000-2400,1234567,,,531,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0625-0630,12345..,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0650-0700,12345..,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0800-0815,12345..,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1208-1300,12345..,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1230-1300,.....67,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1400-1415,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0000-0625,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0000-1230,.....67,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0630-0650,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0700-0800,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0815-1208,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1300-1400,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1300-2400,.....67,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1415-2400,12345..,978,,529,,, +855,G,en,BBC R 5 Live,,Postwick (EN-NFK),52.626944,1.402778,,2,,345,282,57,,0000-0300,12345..,3,,536,,, +855,G,en,BBC R 5 Live,,Postwick (EN-NFK),52.626944,1.402778,,2,,345,282,57,,0000-0500,.....67,3,,536,,, +855,G,en,BBC R Norfolk,,Postwick (EN-NFK),52.626944,1.402778,,2,,345,282,57,,0300-2400,12345..,3,,536,,, +855,G,en,BBC R Norfolk,,Postwick (EN-NFK),52.626944,1.402778,,2,,345,282,57,,0500-2400,.....67,3,,536,,, +855,E,es,RNE R Nacional,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0000-2400,1234567,,,528,,, +855,E,es,RNE R Nacional,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0000-2400,1234567,,,532,,, +855,G,,BBC Asian Network,,Preston (EN-LNC),53.722444,-2.568833,,2,,628,290,60,,1900-0100,123456,0,,535,,, +855,G,,BBC R.Lancashire/BBC Asian Network,,Preston (EN-LNC),53.722444,-2.568833,,2,,628,290,60,,1900-0100,......7,0,,535,,, +855,G,en,BBC R Lancashire,,Preston (EN-LNC),53.722444,-2.568833,,2,,628,290,60,,0100-1900,1234567,0,,535,,, +855,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0000-2400,1234567,,,527,,, +855,E,es,RNE R Nacional,,Teruel/La Muela (RNE) (ARA-TE),40.341664,-1.129378,,10,,1429,207,61,,0000-2400,1234567,,,530,,, +855,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0000-2400,1234567,998,,525,,, +855,RUS,ru,R Rossii,,Kamenka (PZ),53.200872,44.038856,,50,,2512,72,65,,0150-2200,1234567,9867,,540,,, +855,E,es,RNE R Nacional,,Huelva/Aljaraque (RNE) (AND-H),37.282511,-7.020006,,10,,1954,218,67,,0000-2400,1234567,997,,526,,, +855,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0000-2400,1234567,,,524,,, +855,G,en,Sunshine 855,,Ludlow/Villa Farm (EN-SHP),52.334333,-2.632861,,0.15,,616,276,71,,0000-2400,1234567,,,537,,, +855,JOR,ar,JRTV R Jordan Quran,,Amman/JRTV (amn),31.904253,35.881628,,10,,3272,122,80,,0500-2200,1234567,9943,,538,,, +855,ARS,ar,BSKSA Al-Quran al-Karim,,Ras al-Khair (Ras al-Zawr) (shy),27.462833,49.288906,,100,,4475,111,82,,0000-2400,1234567,9899,,522,,, +855,ETH,,ERTA Ethiopia National R,,Harar (har),9.307611,42.109306,,100,,5748,133,95,,0300-0600,12345..,3,,2411,,, +855,ETH,,ERTA Ethiopia National R,,Harar (har),9.307611,42.109306,,100,,5748,133,95,,0400-2000,.....67,3,,2411,,, +855,ETH,,ERTA Ethiopia National R,,Harar (har),9.307611,42.109306,,100,,5748,133,95,,0800-2100,12345..,3,,2411,,, +855,PAK,,PBC Saut-ul Quran/NBS News,,Quetta 2 (blc),30.142917,66.979561,,10,,5438,92,101,,0200-0400,1234567,,,48589,,, +855,PAK,,PBC Saut-ul Quran/NBS News,,Quetta 2 (blc),30.142917,66.979561,,10,,5438,92,101,,0600-1810,1234567,,,48589,,, +855,CHN,ug,Xinjiang RGD Uighur/CNR 13,,rmqi/XJTS904 (XJ),43.715833,87.595,,10,,5800,65,105,,0000-1600,1234567,,,48580,,, +855,CHN,ug,CNR 13,,Artux=Atushi/XJTS8108 (XJ),39.706783,76.184928,,1,,5351,76,111,,0000-1800,1234567,,,36201095,,, +855,CHN,ug,CNR 13,,Guma=Pishan/XJTS8110 (XJ),37.580278,78.273333,,1,,5642,77,113,,0000-1800,1234567,,,36201097,,, +855,KRE,,KCBS Pyongyang Pangsong,,Sangwon (pyn),38.85,126.1,,500,,8344,44,114,,2100-2030,1234567,48,,48586,,, +855,CHN,ug,CNR 13,,Yutian=Keriya/XJTS8111 (XJ),36.867778,81.648889,,1,,5918,75,116,,0000-1800,1234567,,,36201096,,, +855,CHN,zh,CNR 2,,Oroqen=Elunchun/NMTS051 (NM),50.583333,123.716667,,10,,7170,39,119,,2100-1602,1234567,,,36201189,,, +855,CHN,zh,CNR 2,,Kunming/Anning-SARFT501 (YN),24.8925,102.484833,,50,,8244,70,123,,2100-1602,1234567,,,36200039,,, +855,CHN,zh,Xizang RGD Hanyu,,Lhaz=Lazi (XZ),29.088889,87.633333,,1,,6922,77,126,,,,,,36201185,,, +855,CHN,zh,Xizang RGD Hanyu,,Nyalam=Nielamu (XZ),27.991111,85.983889,,1,,6901,79,126,,,,,,36201187,,, +855,CHN,zh,Xizang RGD Hanyu,,Tingri=Dingri (XZ),28.661667,87.1225,,1,,6923,78,126,,,,,,36201191,,, +855,CHN,zh,Xizang RGD Hanyu,,Nagarz=Langkazi (XZ),28.963,90.398306,,1,,7116,75,128,,,,,,36201186,,, +855,CHN,zh,Xizang RGD Hanyu,,Sog=Suo Xian (XZ),31.895278,93.782,,1,,7099,71,128,,,,,,36201190,,, +855,CHN,zh,CNR 2,,Erenhot=Erlian/NMTS872 (NM),43.618056,111.999722,,1,,7211,50,129,,2100-1602,1234567,,,36200772,,, +855,CHN,,Wuhai RGD,,Wuhai (NM),39.730833,106.813611,,1,,7252,56,130,,,,,,36200771,,, +855,CHN,zh,CNR 2,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2100-1602,1234567,,,36200775,,, +855,CHN,zh,CNR 2,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,1,,7431,54,131,,2100-1602,1234567,,,36201188,,, +855,CHN,,CNR 2,,several locations,34.95,104.5,,1,,7515,61,132,,2058-1602,1234567,,,48579,,, +855,CHN,zh,CNR 2,,Shanghai/Yangpu (SH),31.280083,121.526233,,10,,8809,52,133,,2100-1602,1234567,,,36200173,,, +855,CHN,zh,Xizang RGD Hanyu,,Zay=Chayu (XZ),28.506667,97.015833,,1,,7586,71,133,,,,,,36201193,,, +855,KOR,ko,HLCX MBC,,Jeonju (jeb),35.906944,127.052778,,10,,8664,45,133,,0000-2400,1234567,,,48587,,, +855,TWN,,BCC News Network,,Hualien (HL),23.982833,121.614611,,10,,9486,56,135,,0000-2400,1234567,,,48597,,, +855,THA,th,Mor. Thor. Bor. Sip-Song,,Prachinburi/Fort Chak Krapong (pbu),14.071944,101.376389,,5,,9111,77,137,,,,,,48595,,, +855,CHN,zh,CNR 2,,Chuxiong/YNTS692 (YN),25.020511,101.555006,,1,,8174,70,139,,2100-1602,1234567,,,36200774,,, +855,PHL,,DZGE-AM Radyo Numero Uno,,Naga City/Canaman (cas),13.65,123.166667,,10,,10533,61,139,,2000-1500,1234567,,,48592,,, +855,PHL,,DXGO-AM Aksyon Radyo,,Davao City (dvs),7.05,125.583333,,10,,11292,62,141,,,,,,48590,,, +855,CHN,zh,CNR 2,,Longyan/FJTS601 (FJ),25.063333,117.027778,,1,,9123,59,144,,2100-1602,1234567,,,36200172,,, +855,INS,id,RRI Pro-1,,Mataram (NB-kma),-8.6605,116.157361,,10,,12110,80,144,,2100-1600,1234567,,,48584,,, +855,PHL,,DXZH-AM (r:666 DZRH-AM),,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,,,,,48593,,, +855,TWN,,Cheng Sheng BC,,Chiayi=Chia-i (CY),23.464167,120.343889,,1,,9461,57,145,,0000-2400,1234567,,,48596,,, +855,TWN,,Min Pen Kuangpo Tientai 2,,Taipei (TPS),25.01795,121.494183,,1,,9383,56,145,,0000-2400,1234567,,,48598,,, +855,INS,id,R Kabar Empat,,Bekasi (JB-kbk),-6.233333,107,,1,,11277,85,151,,,,,,35400129,,, +855,PHL,,DXWG-AM,,Iligan City (ldn),8.233333,124.25,,1,,11101,63,151,,,,,,48591,,, +855,AUS,en,4QO ABC Wide Bay,,Eidsvold (QLD),-25.407761,151.122811,,10,,15825,59,156,,0000-2400,1234567,,,48576,,, +855,AUS,en,4QB ABC Wide Bay,,Dundowran (QLD),-25.279167,152.75,,10,,15907,57,157,,0000-2400,1234567,1,,48577,,, +855,AUS,,3CR Community R,,Melbourne/Hoppers Crossing (VIC),-37.8865,144.704139,,2,,16438,81,165,,0000-2400,1234567,,,48578,,, +855,NZL,,1XH NZs Rhema,,Hamilton/Greenhill Road (WKO),-37.74295,175.306458,,2,,18199,33,171,,0000-2400,1234567,,,48588,,, +860,CAN,fr,CJBC,,Toronto/Meadowvale (ON),43.575,-79.817222,,50,,6118,298,101,,,,0,,36144,,, +860,USA,,WWDB,,Philadelphia (PA),40.154444,-75.369167,,10,,6097,292,108,,,,,,43366,,, +860,CAN,fr,CBKF-2,,Saskatoon (SK),52.25,-106.66,,10,,6842,320,115,,,,9997,,35786,,, +860,KNA,en,Voice of Nevis,,Bath Village (sjw),17.166667,-62.566667,,10,,7080,264,118,,1000-0200,1234567,0,,2190,,, +860,CAN,xx,CHAK,,Inuvik (NT),68.344722,-133.685833,,1,,6224,343,119,,,,2,,36032,,, +860,USA,en,WAOB,,Millvale (PA),40.490833,-79.981944,,0.83,,6359,295,121,,,,,,40712,,, +860,B,pt,ZYH592 Cidade AM,,Maracana/Sitio Mucuna (CE),-3.842483,-38.653892,,10,,7525,230,122,,,,,,36901504,,, +860,USA,,WEVA,,Emporia (VA),36.698889,-77.548611,,1,,6498,291,122,,,,,,41338,,, +860,USA,en,WDMG,,Douglas (GA),31.506389,-82.819444,,5,,7250,290,123,,,,,,41180,,, +860,CLM,es,HJNJ La Voz del Caaguate,,Valledupar (ces),10.483333,-73.25,,50,,8385,268,124,,,,21,,35901417,,, +860,VEN,,YVYE Enlace 8-60,,Valle de la Pascua (gco),9.266667,-66.066667,,20,,8002,262,124,,,,998,,51667,,, +860,DOM,,HIUA R Clarin,,Santo Domingo (sdo),18.6,-69.866667,,5,,7456,271,125,,1100-0300,1234567,,,37311,,, +860,USA,,KKOW,,Pittsburg (KS),37.412778,-94.637778,,5,,7483,302,125,,,,,,38747,,, +860,VEN,,YVOL Mundial 8-60,,San Cristbal (tch),7.75,-72.25,,50,,8555,266,125,,0900-0500,1234567,98,,45409,,, +860,B,pt,ZYJ459 CBN Rio de Janeiro,,Rio de Janeiro/Ilha do Pontal (RJ),-22.8225,-43.096389,,100,,9616,225,126,,,,9989,,36901503,,, +860,CUW,,PJZ86 R Curom,,Willemstad (cao),12.166667,-68.966667,,10,,7946,266,126,,,,,,40456,,, +860,USA,,KPAM,,Troutdale (OR),45.646667,-122.513611,,15,,8103,325,126,,,,26,,39127,,, +860,USA,,KTRB,,San Francisco (D) (CA),37.6325,-122.129722,,50,,8862,321,126,,,,12,,20016058,,, +860,USA,en,KTRB,,San Francisco (N) (CA),37.592778,-121.774167,,50,,8851,321,126,,,,1,,39533,,, +860,USA,en,WMRI,,Marion (IN),40.553333,-85.645833,,0.5,,6698,299,127,,,,,,41547,,, +860,CAN,en,CFPR,,Prince Rupert/Digby Island (BC),54.285278,-130.376111,,2.5,,7528,334,128,,,,,,35998,,, +860,CUB,es,R Reloj,,Jovellanos (ma),22.802833,-81.169097,,5,,7866,283,129,,,,17,,31600028,,, +860,HTI,,R Men Kontre,,Les Cayes (sud),18.166667,-73.716667,,3,,7756,274,130,,,,,,52107,,, +860,USA,,WSON,,Henderson (KY),37.853056,-87.536667,,0.5,,7027,298,130,,,,,,43044,,, +860,CAN,xx,CBDI,,Fort Smith (NT),60.003611,-111.875556,,0.099,,6389,329,131,,,,,,20109118,,, +860,USA,,WGUL,,Dunedin (FL),27.998611,-82.700278,,1.5,,7532,287,131,,,,9979,,41578,,, +860,USA,en,WFSI,,Baltimore (MD),39.311944,-76.490556,,0.066,,6231,292,131,,,,,,40844,,, +860,USA,en,WAEC,,Atlanta (GA),33.729167,-84.321944,,0.5,,7164,293,132,,,,,,40658,,, +860,CLM,es,HJEP Voces de Occidente,,Buga (val),3.883333,-76.283333,,10,,9168,267,134,,,,,,37418,,, +860,MEX,es,XECCN-AM R Caribe,,Cancn (qui),21.196111,-86.8225,,5,,8378,286,134,,,,,,43826,,, +860,PNR,es,HOL55 R Reforma,,Chitr/El Ejido (her),7.912778,-80.365278,,10,,9094,272,134,,1030-0400,1234567,5,,37699,,, +860,MEX,es,XEMO-AM La Poderosa,,Tijuana/Cerro Prieto (bcn),32.420419,-117.070178,,7.5,,9131,315,135,,,,13,,44394,,, +860,MEX,es,XEUN-AM R UNAM,,Mxico D.F/Ticomn (dif),19.531417,-99.150675,,10,,9314,294,135,,,,,,44914,,, +860,EQA,,HCRG1,,Quito (pic),-0.166667,-78.5,,10,,9675,266,136,,,,,,37082,,, +860,MEX,es,XECTL-AM,,Chetumal (qui),18.519167,-88.476667,,5,,8718,285,136,,,,,,43881,,, +860,BOL,,CP8 R Nueva America,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1015-2400,123456,,,36715,,, +860,BOL,,CP8 R Nueva America,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1100-0100,......7,,,36715,,, +860,CAN,fr,CKSB-2,,Saint Lazare (MB),50.446667,-101.293056,,0.04,,6748,316,138,,,,,,20109117,,, +860,USA,,WSBS,,Great Barrington (MA),42.214722,-73.345278,,0.004,,5818,293,139,,,,,,42960,,, +860,MEX,es,XENL-AM R Recuerdo,,Monterrey (nvl),25.699128,-100.2072,,2,,8829,299,140,,,,,,44448,,, +860,MEX,es,XEPLA-AM La Mexicana,,Aguascalientes (agu),21.919722,-102.266111,,2.5,,9291,298,141,,,,,,44559,,, +860,USA,,KONO,,San Antonio (TX),29.443056,-98.417778,,0.9,,8391,300,141,,,,,,39091,,, +860,HND,,HRUP13,,Juticalpa (ola),14.666667,-86.216667,,1,,8902,281,143,,,,,,37858,,, +860,USA,,KMVP,i,Phoenix (AZ),33.420556,-112.126944,,1,,8791,312,143,,,,0,,38949,,, +860,USA,,WOAY,,Oak Hill (WV),37.958333,-81.150833,,0.011,,6627,294,143,,,,,,42551,,, +860,HND,,HRUP12,,Danli (elp),14.05,-86.566667,,1,,8980,281,144,,,,,,37857,,, +860,NCG,es,La Gran Cadena,,Managua (mng),12.183333,-86.083333,,1,,9110,279,144,,,,,,33700004,,, +860,SLV,,YSRC,,Santa Ana (sta),14,-89.533333,,1,,9182,283,144,,,,,,45313,,, +860,USA,,KSFA,,Nacogdoches (TX),31.526667,-94.658056,,0.175,,7985,298,144,,,,,,39347,,, +860,USA,,WFMO,,Fairmont (NC),34.5175,-79.105278,,0.012,,6769,290,144,,,,,,41410,,, +860,CAN,en,CBKM,,Blue River (BC),52.105556,-119.308333,,0.04,,7368,327,145,,,,,,20109119,,, +860,CAN,en,CBKZ,,Clearwater (BC),51.643889,-120.036667,,0.04,,7438,327,145,,,,,,20109105,,, +860,CHL,es,CC86 R Ins de Surez,,Concepcin/Cerro la Polvora (BI),-36.808847,-73.036011,,10,,12510,238,145,,,,,,35837,,, +860,MEX,es,XEHX-AM La Mia,,Ciudad Obregn (son),27.494444,-109.955,,0.8,,9226,307,145,,,,,,34900007,,, +860,MEX,es,XERRF-AM,,Mrida (yuc),21.001389,-89.596389,,0.5,,8576,288,145,,,,,,44705,,, +860,USA,,KKAT,,Salt Lake City (UT),40.713056,-111.931389,,0.196,,8108,316,145,,,,2,,38706,,, +860,USA,,KPAN,,Hereford (TX),34.7925,-102.429167,,0.231,,8150,306,145,,,,,,39128,,, +860,USA,,WAMI,,Opp (AL),31.315,-86.2625,,0.047,,7485,292,145,,,,,,40708,,, +860,CAN,en,CBRL,,Williams Lake (BC),52.141944,-122.157778,,0.04,,7468,329,146,,,,,,20109108,,, +860,CAN,en,CBUG,,Kaslo (BC),49.908056,-116.899722,,0.04,,7479,324,146,,,,,,20109114,,, +860,EQA,,HCGB7,,El Puyo (pas),-1.466667,-77.916667,,1,,9749,265,146,,,,,,36952,,, +860,MEX,es,XEZOL-AM Noticias 860,,Ciudad Jurez (chi),31.686111,-106.429722,,0.5,,8649,307,146,,,,,,45149,,, +860,USA,,KWRF,,Warren (AR),33.633056,-92.064167,,0.055,,7649,298,146,,,,,,39748,,, +860,USA,,WACB,,Taylorsville (NC),35.9325,-81.171944,,0.008,,6788,292,146,,,,,,40638,,, +860,USA,,WLBG,,Laurens (SC),34.503611,-82.018333,,0.012,,6956,292,146,,,,,,42131,,, +860,USA,,WNOV,,Milwaukee (WI),43.072222,-87.951944,,0.005,,6636,302,146,,,,,,42495,,, +860,CAN,en,CBRJ,,Grand Forks (BC),49.027778,-118.445556,,0.04,,7622,325,147,,,,,,20109113,,, +860,CAN,en,CBTG,,Gold Bridge (BC),50.839167,-122.863056,,0.04,,7617,328,147,,,,,,20109107,,, +860,CAN,en,CBUP,,Merritt (BC),50.108611,-120.788611,,0.04,,7611,327,147,,,,,,20109112,,, +860,CAN,en,CBWA,,Ashcroft (BC),50.723889,-121.270278,,0.04,,7570,327,147,,,,,,20109110,,, +860,MEX,es,XEDU-AM,,Durango (dur),24.049869,-104.622467,,0.5,,9239,301,147,,,,,,43943,,, +860,USA,,KOSE,,Wilson (AR),35.684167,-89.9825,,0.021,,7352,298,147,,,,,,39102,,, +860,USA,,KWPC,,Muscatine (IA),41.442778,-91.075833,,0.008,,6945,303,147,,,,,,39744,,, +860,PRU,,OCX1M R Nuevo Norte,,Sullana (piu),-4.9,-80.683333,,1,,10239,265,148,,,,909,,52505,,, +860,PRU,es,CPN R,,Cajamarca (caj),-7.166667,-78.516667,,1,,10292,262,148,,,,97,,37000058,,, +860,USA,,KFST,,Fort Stockton (TX),30.876944,-102.891667,,0.25,,8524,304,148,,,,,,38433,,, +860,USA,,WTZX,,Sparta (TN),35.922222,-85.447222,,0.01,,7056,295,148,,,,,,43248,,, +860,CAN,en,CBKJ,,Gold River (BC),49.773333,-126.053611,,0.04,,7833,330,149,,,,,,20109106,,, +860,PRG,,ZP28 LV de la Cordillera,,Caacup (crd),-25.366667,-57.116667,,1,,10586,234,149,,0900-0400,1234567,,,45523,,, +860,USA,,KNUJ,,New Ulm (MN),44.286111,-94.430556,,0.005,,6902,307,149,,,,,,39026,,, +860,MEX,es,XETW-AM La Fiesta,,Tampico (tam),22.253153,-97.857783,,0.25,,8992,295,150,,,,,,44876,,, +860,MEX,es,XEDB-AM,,Tonal (cps),16.09875,-93.767053,,0.25,,9276,288,151,,,,,,43895,,, +860,MEX,es,XENW-AM Mxima,,Culiacn (sin),24.810556,-107.365556,,0.25,,9328,303,151,,,,,,44464,,, +860,ARG,,LRJ392 R Municipal,,Chilecito (lr),-29.166667,-67.5,,1,,11525,240,152,,1000-0400,1234567,,,40106,,, +860,MEX,es,XEZX-AM,,Tenosique (tab),17.466667,-91.433333,,0.15,,9004,287,152,,,,,,45164,,, +860,ARG,,LRA56 R Nacional,,Perito Moreno (sc),-46.566667,-70.916667,,2.5,,13201,230,154,,0955-0300,1234567,,,39959,,, +860,B,pt,ZYK288 Rdio Guarathan AM,,Santa Maria (RS),-29.697222,-53.806111,,0.25,,10812,229,156,,,,,,36901505,,, +860,MEX,es,XEAL-AM R Frmula,,Manzanillo (col),19.043172,-104.315422,,0.1,,9676,298,156,,,,,,43715,,, +864,F,fr,France Bleu 107.1,,Villebon-sur-Yvette (91),48.686944,2.225278,,300,,482,220,37,,0000-2400,1234567,51,,546,,, +864,BUL,bg,BNR R Blagoevgrad,,Blagoevgrad/Belo Pole (blg),42.048961,23.048244,,75,,1678,125,55,,0400-2200,1234567,996,,543,,, +864,ARM,,R Liberty,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,0150-0200,1234567,0,,541,,, +864,ARM,,TWR Asia,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1600-1610,1234567,0,,541,,, +864,ARM,kk,TWR Trans Vidioisledik Rasa,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1625-1640,1234567,0,,541,,, +864,ARM,ru,TWR Trans Miravoye R,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1640-1710,1234567,0,,541,,, +864,ARM,tk,R Liberty,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,0200-0300,1234567,0,,541,,, +864,ARM,tk,R Liberty/Gepleyer Azatlyk Rsy,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1530-1600,1234567,0,,541,,, +864,ARM,tk,TWR Btn Dunya R,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1610-1625,1234567,0,,541,,, +864,ARM,uz,R Liberty/Ozodlik Rsi,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1500-1530,1234567,0,,541,,, +864,ARM,uz,TWR Trans Yakhon Radyosa,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1710-1740,1234567,0,,541,,, +864,ARM,xx,TWR Asia,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1740-1755,1234567,0,,541,,, +864,EGY,ar,ERTU Al-Quran al-Karim,,Santah (ghb),30.735167,31.130333,,500,,3115,130,61,,0000-2400,1234567,12,,545,,, +864,BUL,bg,BNR Horizont,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,0000-0600,1234567,,,542,,, +864,BUL,bg,BNR Horizont,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,0800-1300,1234567,,,542,,, +864,BUL,bg,BNR Horizont,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,1500-1830,1234567,,,542,,, +864,BUL,bg,BNR Horizont,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,2030-2400,1234567,,,542,,, +864,BUL,tr,R Bulgaria,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,0600-0800,1234567,,,542,,, +864,BUL,tr,R Bulgaria,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,1300-1500,1234567,,,542,,, +864,BUL,tr,R Bulgaria,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,1830-2030,1234567,,,542,,, +864,E,es,RNE R Nacional,,Socullamos (CAM-CR),39.303917,-2.799239,,5,,1590,210,66,,0000-2400,1234567,996,,544,,, +864,IRN,fa,IRIB R Kermanshah,,Qasr-e Shirin (ksh),34.449061,45.614733,,50,,3667,107,77,,,,918,,1789,,, +864,AFG,,Peace R/R Soleh,,Kandahar (kan),31.666667,65.666667,,5,,5230,92,102,,0030-1830,1234567,,,46822,,, +864,RUS,ru,R NVK Sakha,,Yakutsk/Tulagino (RS),62.238403,129.812028,,25,,6367,28,107,,,,,,6700069,,, +864,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440339,91.808044,,100,,7500,77,112,,0025-0400,1234567,,,48609,,, +864,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440339,91.808044,,100,,7500,77,112,,0715-0930,1234567,,,48609,,, +864,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440339,91.808044,,100,,7500,77,112,,1055-1630,1234567,,,48609,,, +864,RUS,,R Shanson,,Blagoveshchensk (AM),50.304444,127.483611,,25,,7352,37,117,,,,,,47025,,, +864,KOR,,HLKR KBS 1 R,,Gangneung (gan),37.795,128.910833,,100,,8576,43,122,,0000-2400,1234567,999,,48631,,, +864,CHN,,Anhui RGD Jingji Guangbo,,Hefei/Sanshitou (AH),31.987667,117.329028,,50,,8515,55,125,,????-1700,1234567,,,48605,,, +864,THA,,Sor. Wor. Thor. (R Thailand),,Tak (tak),16.915,99.116111,,10,,8712,77,133,,????-1500,1234567,,,48641,,, +864,HKG,,CRHK AM864,,Peng Chau (isd),22.290633,114.043744,,10,,9195,63,134,,0000-2400,1234567,9980,,48608,,, +864,THA,,Sor. Wor. Thor. (R Thailand),,Sisaket/Tong Mak Rd (sis),15.098056,104.337778,,10,,9217,75,134,,2200-1600,1234567,,,48640,,, +864,CHN,zh,Renqiu RGD Story,,Renqiu (HB),38.7,116.1,,1,,7852,51,136,,,,,,36200344,,, +864,J,,JOXR ROK R Okinawa,,Naha/Nanjo (kyu-oki),26.185278,127.755833,,10,,9615,50,136,,0000-2400,1234567,,,48627,,, +864,THA,th,Sor. Wor. Thor. (R Thailand),,Phattalung/4 Chai Buri Rd (ptl),7.618611,100.068611,,10,,9588,82,136,,2200-1700,1234567,,,48639,,, +864,TWN,,BCC News Network,,Kaohsiung (KH),22.611017,120.42405,,10,,9544,58,136,,0000-2400,1234567,,,48642,,, +864,J,,JOHE HBC Hokkaido Hoso,,Asahikawa (hok),43.773611,142.439167,,3,,8550,31,137,,0000-2400,1234567,,,48622,,, +864,J,,JOPR FBC Fukui Hoso,,Fukui (chu-fuk),36.119444,136.286667,,5,,9067,39,137,,0000-2400,1234567,9995,,48624,,, +864,J,,JOQF HBC Hokkaido Hoso,,Muroran (hok),42.313889,140.981944,,3,,8643,33,138,,0000-2400,1234567,,,48626,,, +864,PHL,,DZIP-AM Radyo Palaweo,,Puerto Princesa (plw),9.734806,118.736039,,10,,10623,66,139,,2100-1300,1234567,,,33300030,,, +864,CHN,,Anhui RGD Jingji Guangbo,,Fuyang (AH),32.930944,115.798294,,1,,8346,55,140,,,,,,36200342,,, +864,CHN,,Anhui RGD Jingji Guangbo,,Huaibei (AH),33.956944,116.783444,,1,,8309,54,140,,,,,,36201249,,, +864,PHL,,DYHH-AM Bantay Radyo,,Sogod (ceb),10.75,124,,10,,10853,61,140,,????-1600,1234567,,,48636,,, +864,J,,HBC Hokkaido Hoso,,Enbetsu (hok),44.733056,141.789722,,1,,8431,31,141,,0000-2400,1234567,,,48623,,, +864,PHL,,DWSI-AM Sonshine R,,Santiago City (isa),16.683333,121.533333,,5,,10155,60,141,,,,,,48635,,, +864,PHL,,DZSP-AM Sonshine R,,San Pablo City (lag),14.066667,121.333333,,5,,10385,62,141,,,,,,48634,,, +864,INS,id,RRI Pro-1,,Cirebon/Weru (JB-cir),-6.708744,108.504258,,10,,11421,85,142,,2200-1700,1234567,,,48612,,, +864,CHN,,Jiangshan RGD,,Jiangshan (ZJ),28.733333,118.616667,,1,,8881,56,143,,2140-1500,1234567,,,48606,,, +864,CHN,,Zhejiang zhi Sheng,,Ninghai (ZJ),29.283333,121.416667,,1,,8987,53,144,,2130-1605,1234567,,,48607,,, +864,CHN,,Zhejiang zhi Sheng,,Qingtian (ZJ),28.15,120.283333,,1,,9028,55,144,,,,,,36200343,,, +864,J,,JOSO SBC, Shinetsu Hoso,,Matsumoto (chu-nag),36.233333,137.95,,1,,9126,38,144,,0000-2400,1234567,,,48625,, +864,J,,JOXN CRT, Tochigi Hoso,,Nasu (kan-toc),36.883333,139.966667,,1,,9144,36,144,,0000-2400,1234567,,,48628,, +864,PHL,,DZWM-AM Radyo Totoo,,Alaminos/Lucap (pgs),16.15,119.983333,,1,,10112,62,147,,2100-1000,1234567,,,48633,,, +864,PNG,,NBC R Madang,,Madang (ehd),-5.218889,145.806111,,10,,13613,50,149,,1930-1400,1234567,,,48637,,, +864,INS,id,PM2BBL R Suara Jakarta,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,98,,35400012,,, +864,INS,id,R Gemma Satunama,,Yogyakarta/Gunung Kidul (YO-yog),-7.7275,110.356111,,1,,11636,84,152,,2300-????,1234567,,,35400038,,, +864,INS,id,R Mentiga,,Surabaya (JI-ksu),-7.236111,112.753611,,1,,11755,81,153,,,,,,48620,,, +864,J,,JOSM Tokai Hoso,,Toyohashi (chu-aic),34.75,137.4,,0.1,,9249,39,154,,0000-2400,1234567,,,48629,,, +864,AUS,,6AM R West,,Northam (WA),-31.676667,116.610556,,2,,14067,96,157,,0000-2400,1234567,,,48603,,, +864,AUS,en,4GR,,Toowoomba (QLD),-27.599833,151.912006,,2,,16068,60,164,,0000-2400,1234567,9990,,48604,,, +864,NZL,en,4ZA Newstalk ZB,,Invercargill/Dacre (STL),-46.320278,168.621389,,10,,18577,70,165,,0000-2400,1234567,,,48632,,, +864,AUS,,7RPH,,Hobart/Sandford (TAS),-42.949069,147.506569,,2,,16965,86,167,,0000-2400,1234567,,,48602,,, +870,CAN,,CFSX,,Stephenville (NL),48.526111,-58.49,,0.5,,4470,292,105,,,,0,,36013,,, +870,USA,en,KPRM,,Park Rapids (D) (MN),46.928333,-95.006111,,40,,6719,310,108,,,,,,20012565,,, +870,USA,,WHCU,,Ithaca (D) (NY),42.465,-76.373056,,5,,5989,295,110,,,,6,,41618,,, +870,USA,,WKAR,,East Lansing (MI),42.705278,-84.475,,10,,6462,300,112,,,,,,41954,,, +870,USA,en,WLVP,,Gorham (ME),43.662778,-70.494722,,1,,5537,293,112,,,,,,42254,,, +870,USA,,WPWT,,Colonial Heights (TN),36.461111,-82.453333,,10,,6827,294,115,,,,,,42756,,, +870,USA,,WHCU,,Ithaca (N) (NY),42.363056,-76.606111,,1,,6011,295,117,,,,,,20012567,,, +870,ALS,,KSKO,,McGrath (AK),62.9325,-155.518611,,10,,7126,351,118,,0000-2400,1234567,986,,39373,,, +870,USA,en,WTCG,,Mount Holly (NC),35.273611,-80.861111,,5,,6821,292,118,,1200-2400,1234567,,,20012510,,, +870,USA,,WQRX,,Valley Head (AL),34.555556,-85.62,,10,,7178,294,119,,,,,,42790,,, +870,USA,en,WWL,,New Orleans (LA),29.837222,-90.131944,,50,,7852,294,119,,,,996,,20016110,,, +870,VEN,,YVKU,,Caracas (dcf),10.466667,-66.783333,,50,,7946,263,120,,,,,,45358,,, +870,DOM,,HIVG R La Vega,,Concepcin de La Vega (veg),19.216667,-70.533333,,10,,7450,272,122,,1000-0300,1234567,995,,37314,,, +870,PTR,,WQBS,,San Juan (PR),18.352222,-66.201667,,5,,7227,268,122,,0800-0300,1234567,14,,42766,,, +870,USA,,WFLO,,Farmville (VA),37.326389,-78.385833,,1,,6502,292,122,,,,,,41400,,, +870,CUB,es,R Reloj,,Baracoa (gu),20.326642,-74.476442,,10,,7625,276,123,,,,994,,36592,,, +870,USA,en,KPRM,,Park Rapids (N) (MN),46.905,-95.017778,,1,,6722,310,124,,,,,,39163,,, +870,CUB,es,R Reloj,,Bueycito/Entronque (gr),20.292661,-76.775808,,10,,7783,278,125,,,,,,36606,,, +870,VEN,es,YVRU Unin Deportiva,,Puerto La Cruz (azg),10.066667,-64.766667,,10,,7844,261,125,,,,14,,51668,,, +870,CLM,es,HJSB R Mar Caribe Internacional,,Barranquilla (atl),10.966667,-74.8,,25,,8449,270,128,,,,982,,35901422,,, +870,USA,,KAAN,,Bethany (MO),40.256389,-94.156389,,0.93,,7218,304,129,,,,,,37902,,, +870,VEN,,YVMP R Lara,,Barquisimeto (lar),10.066667,-69.316667,,10,,8153,265,129,,0958-0400,1234567,,,51669,,, +870,USA,,WINU,,Shelbyville (IL),39.487222,-88.958611,,0.5,,6980,300,130,,,,,,41774,,, +870,USA,,WMTL,,Leitchfield (KY),37.511111,-86.2875,,0.5,,6979,297,130,,,,,,42403,,, +870,ARG,es,LRA1 R Nacional,,Buenos Aires/General Pacheco (df),-34.448983,-58.621178,,100,,11503,230,132,,0000-2400,1234567,13,,39929,,, +870,B,pt,ZYH658 Rdio Tabajara,,So Benedito/Alto do Maracuja (CE),-4.047731,-40.881372,,1,,7663,232,134,,,,,,36901513,,, +870,CAN,en,CFBV,,Smithers (BC),54.796111,-127.198611,,0.5,,7381,333,134,,,,,,35938,,, +870,CLM,es,HJLA,,Ibagu (tol),4.416667,-75.25,,10,,9051,266,134,,,,,,37540,,, +870,CTR,,TIUCR R.Universidad de Costa Rica,,San Jos (sjs),9.933333,-84.016667,,10,,9166,276,134,,1300-0600,1234567,,,40607,,, +870,HTI,,R Express,,Jacmel (ses),18.233333,-72.533333,,1,,7670,273,134,,,,,,52108,,, +870,MEX,,XETAR-AM,,Guachochi (chi),26.814133,-107.067361,,10,,9128,304,134,,,,,,44797,,, +870,NCG,,YNCD R Centro,,Juigalpa (cht),12.083333,-85.4,,10,,9073,279,134,,1000-0200,1234567,,,52200,,, +870,B,pt,ZYL304 Rdio Juriti,,Paracatu (MG),-17.232011,-46.880833,,10,,9261,230,135,,,,,,36901525,,, +870,CUB,es,R Reloj,,Sancti Spritus/CTOM1 (ss),21.929769,-79.414564,,1,,7823,281,135,,,,0,,36513,,, +870,B,pt,ZYH906 Rdio Mirante,,Cod (MA),-4.4625,-43.872778,,1,,7866,234,136,,,,,,36901519,,, +870,CLM,es,HJZH,,Medelln (ant),6.283333,-75.533333,,5,,8907,268,136,,,,,,35901420,,, +870,B,pt,ZYH245 Rdio Sampaio,,Palmeira dos ndios (AL),-9.419775,-36.633617,,1,,7975,225,137,,,,,,36901524,,, +870,B,pt,ZYI547 Rdio Maraj,,Breves (PA),-1.671178,-50.472756,,1,,7983,242,137,,,,,,36901510,,, +870,CAN,en,CKIR,,Invermere (BC),50.518889,-116.051111,,0.25,,7389,324,137,,,,,,36324,,, +870,EQA,,HCNY2 R Cristal,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,978,,37012,,, +870,PNR,es,HOHO R Libre,,La Florida (pnm),9.030278,-79.485278,,5,,8937,272,137,,0000-2400,1234567,,,37691,,, +870,USA,es,KFJZ,,Fort Worth (TX),32.600833,-97.255833,,1,,8047,301,137,,,,,,38398,,, +870,USA,,KRLA,,Glendale (CA),34.136944,-118.226111,,3,,9023,316,139,,,,6,,39258,,, +870,USA,en,WPHW256,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010576,,, +870,USA,,KJMP,,Pierce (CO),40.606944,-104.688611,,0.32,,7758,311,140,,,,9975,,38679,,, +870,USA,en,WPIY488,,Erie (PA),41.942833,-80.475917,,0.01,,6280,297,140,,,,,,20010574,,, +870,B,pt,ZYH591 Rdio Liberdade,,Iguatu (CE),-6.360839,-39.302722,,0.25,,7806,229,141,,,,,,36901509,,, +870,SLV,es,YSAR R Renacer,,San Salvador (ssl),13.716667,-89.266667,,2,,9189,283,141,,,,,,45262,,, +870,USA,en,WPMQ789,,Canton (OH),40.8943,-81.431222,,0.01,,6418,297,141,,,,,,20010577,,, +870,USA,en,KFLD,,Pasco (WA),46.228056,-119.125556,,0.25,,7913,324,142,,,,8,,38403,,, +870,CLM,es,HJGD,,Chiquinquira (boy),5.616667,-73.816667,,1,,8848,266,143,,,,,,35901421,,, +870,HND,,HRH4,,Nacaome (val),13.5,-87.416667,,1,,9084,281,144,,,,,,37764,,, +870,B,pt,ZYH499 Rdio Cidade AM,,Juazeiro/Fazenda Flavios Mairi (BA),-9.435436,-40.526672,,0.25,,8171,229,145,,,,,,36901528,,, +870,GTM,,TGL R Victoria,,Mazatenango (sup),14.516667,-91.5,,1,,9267,285,145,,,,,,40504,,, +870,MEX,es,XEGRO-AM Soy Guerrero,,Chilpancingo (gue),17.505953,-99.476833,,1,,9516,293,145,,,,,,44079,,, +870,B,pt,ZYK705 Rdio Central,,Campinas/Estrada Municipal (SP),-22.957969,-47.081817,,1,,9825,228,146,,,,,,36901515,,, +870,USA,,KLSQ,,Whitney (NV),35.976389,-114.950833,,0.43,,8692,315,146,,,,991,,38845,,, +870,B,pt,ZYH749 Rdio Lago Dourado,,Uruau (GO),-14.616667,-49.083333,,0.5,,9129,234,147,,,,,,36901523,,, +870,B,pt,ZYH762 Rdio Anhanguera,,Araguana/Avenida Filadlfia 1642 (TO),-7.206817,-48.2264,,0.25,,8374,237,147,,,,,,36901507,,, +870,B,pt,ZYH754 Rdio Universitria de Gois,,Goinia/Escola de Agronomia (GO),-16.598653,-49.288867,,0.5,,9329,233,148,,,,,,36901516,,, +870,MEX,es,XEAMO-AM,,Irapuato (gua),20.630083,-101.362972,,0.5,,9353,296,148,,,,,,43717,,, +870,B,pt,ZYH322 Rdio Cidade,,Manacapuru (AM),-3.259339,-60.619744,,0.25,,8761,250,149,,,,,,36901511,,, +870,B,pt,ZYH457 Rdio Nacional,,Itabuna (BA),-14.843333,-39.348056,,0.25,,8646,225,149,,,,,,36901526,,, +870,EQA,,HCGS6,,Pillaro (tun),-1.166667,-78.533333,,0.5,,9765,265,149,,,,,,36960,,, +870,B,pt,Rdio Globo,,Linhares (ES),-19.397097,-40.072572,,0.25,,9133,224,150,,,,,,36901508,,, +870,B,pt,ZYL318 Rdio Cultura,,Diamantina/Alto do Trevo (MG),-18.238972,-43.614017,,0.25,,9191,227,150,,,,,,36901518,,, +870,B,pt,ZYL350 Rdio A Voz do So Francisco,,Januria (MG),-15.482333,-44.37255,,0.25,,8961,229,150,,,,,,36901522,,, +870,B,pt,ZYL349 Rdio Atividade de Muria,,Muria (MG),-21.121133,-42.400653,,0.25,,9415,225,151,,,,,,36901521,,, +870,BOL,,LV del Campesino,,Sipe Sipe (cbb),-17.45,-66.383333,,0.6,,10411,246,151,,0700-2300,1234567,,,51972,,, +870,MEX,es,XEACC-AM La Voz del Puerto,,Puerto Escondido (oax),15.848783,-97.046706,,0.25,,9510,290,151,,,,,,43688,,, +870,MEX,es,XEFIL-AM R Noticias,,Mazatln (sin),23.215256,-106.373725,,0.25,,9417,302,151,,,,,,44009,,, +870,B,,ZYI410,,Cassilndia (MS),-19.116667,-51.716667,,0.25,,9702,233,152,,,,,,45823,,, +870,B,pt,ZYK620 Rdio Novo Horizonte,,Novo Horizonte (SP),-21.476283,-49.204064,,0.25,,9792,230,152,,,,,,36901517,,, +870,B,pt,ZYL324 Rdio Sacramento,,Sacramento/Rua do Radio 60 (MG),-19.865078,-47.451222,,0.25,,9545,230,152,,,,,,36901506,,, +870,B,pt,ZYN409 Rdio Gara Branca,,Guiratinga (MT),-16.343811,-53.780489,,0.25,,9556,237,152,,,,,,36901512,,, +870,B,pt,ZYJ243 Nova Ing AM,,Maring (PR),-23.363611,-51.9,,0.25,,10115,231,153,,,,,,36901520,,, +870,B,pt,ZYJ784 Rdio Difusora So Francisco,,So Francisco do Sul (SC),-26.266667,-48.65,,0.25,,10223,227,154,,,,,,36901527,,, +870,MEX,es,XENG-AM Canal 87,,Huauchinango (pue),20.167778,-98.047778,,0.1,,9189,294,154,,,,,,44444,,, +870,MEX,es,XELY-AM Candela,,Morelia (mic),19.698867,-101.141022,,0.1,,9423,296,155,,,,,,44333,,, +870,USA,en,WPCI618,,Key West (FL),24.560997,-81.810975,,0.01,,7761,284,155,,,,,,20010575,,, +873,RUS,ru,R Rossii,,Kaliningrad (KA),54.743711,20.471972,,50,,975,67,50,,0055-2100,1234567,1,,564,,, +873,HNG,,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1100-1200,123456,0,,562,,, +873,HNG,,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1100-1300,......7,0,,562,,, +873,HNG,bg,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,..3....,0,,562,,, +873,HNG,de,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,0900-1100,1234567,0,,562,,, +873,HNG,el,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,...4...,0,,562,,, +873,HNG,hr,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,0700-0900,1234567,0,,562,,, +873,HNG,hy,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,.....6.,0,,562,,, +873,HNG,pl,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1230-1300,.....6.,0,,562,,, +873,HNG,ra,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1230-1300,12345..,0,,562,,, +873,HNG,ro,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1500-1700,1234567,0,,562,,, +873,HNG,rt,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,.2.....,0,,562,,, +873,HNG,sk,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1700-1900,1234567,0,,562,,, +873,HNG,sl,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,1......,0,,562,,, +873,HNG,sr,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1300-1500,1234567,0,,562,,, +873,HNG,uk,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,....5..,0,,562,,, +873,RUS,ru,R Rossii,,Lesnoy (MO),56.055833,37.952889,,250,,2084,65,54,,0040-2100,1234567,9993,,6700003,,, +873,HNG,,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1100-1200,123456,0,,561,,, +873,HNG,,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1100-1300,......7,0,,561,,, +873,HNG,bg,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,..3....,0,,561,,, +873,HNG,de,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,0900-1100,1234567,0,,561,,, +873,HNG,el,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,...4...,0,,561,,, +873,HNG,hr,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,0700-0900,1234567,0,,561,,, +873,HNG,hy,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,.....6.,0,,561,,, +873,HNG,pl,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1230-1300,.....6.,0,,561,,, +873,HNG,ra,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1230-1300,12345..,0,,561,,, +873,HNG,ro,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1500-1700,1234567,0,,561,,, +873,HNG,rt,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,.2.....,0,,561,,, +873,HNG,sk,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1700-1900,1234567,0,,561,,, +873,HNG,sl,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,1......,0,,561,,, +873,HNG,sr,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1300-1500,1234567,0,,561,,, +873,HNG,uk,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,....5..,0,,561,,, +873,MDA,ro,R Moldova Actualităţi,,Chişinău/Costiujeni (CU),46.952444,28.829222,,75,,1708,101,55,,0400-2200,1234567,0,,565,,, +873,RUS,ru,R Rossii,,Sankt-Peterburg/Olgino (SP),59.991211,30.121261,,75,,1700,50,55,,0055-2100,1234567,0,,566,,, +873,E,es,SER,,Zaragoza/Casablanca EAJ101 (ARA-Z),41.65,-0.941667,,25,,1289,208,56,,0000-2400,1234567,7,,557,,, +873,E,es,SER,,Santiago de Compostela (GAL-C),42.917331,-8.522025,,10,,1512,233,62,,0000-2400,1234567,,,558,,, +873,G,en,BBC R 5 Live,,West Lynn (EN-NFK),52.742889,0.386583,,0.3,,414,282,66,,0000-0300,12345..,99995,,560,,, +873,G,en,BBC R 5 Live,,West Lynn (EN-NFK),52.742889,0.386583,,0.3,,414,282,66,,0000-0500,.....67,99995,,560,,, +873,G,en,BBC R Norfolk,,West Lynn (EN-NFK),52.742889,0.386583,,0.3,,414,282,66,,0300-2400,12345..,99995,,560,,, +873,G,en,BBC R Norfolk,,West Lynn (EN-NFK),52.742889,0.386583,,0.3,,414,282,66,,0500-2400,.....67,99995,,560,,, +873,RUS,ru,R Rossii,,Samara/Mekhzavod (SA),53.304861,50.284083,,100,,2912,70,66,,0100-2100,1234567,0,,568,,, +873,G,en,BBC R 5 Live,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0100-0630,.2345..,0,,559,,, +873,G,en,BBC R 5 Live,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0100-0645,.....6.,0,,559,,, +873,G,en,BBC R 5 Live,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0200-0630,1......,0,,559,,, +873,G,en,BBC R Ulster,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0630-0100,12345..,0,,559,,, +873,G,en,BBC R Ulster,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0645-0200,.....6.,0,,559,,, +873,G,en,BBC R Ulster,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0700-0200,......7,0,,559,,, +873,ALG,ar,R Ghardaia,,Ghardaia (47),32.496667,3.689444,,10,,2192,187,69,,0800-1600,1234567,,,552,,, +873,IRN,fa,IRIB R Iran,,Kaleybar=Kalibar (eaz),38.858033,47.066383,,50,,3437,99,74,,,,9994,,10800016,,, +873,IRN,fa,IRIB R Khorasan-e Shomali,,Bojnurd (nkh),37.654,57.04805,,100,,4200,92,79,,,,,,10800029,,, +873,ARS,ar,BSKSA Al-Quran al-Karim,,Ar Rass (qsm),25.860956,43.5332,,10,,4258,119,90,,0000-2400,1234567,,,553,,, +873,SDN,,SRTC Sudan Nat. R,,Wadi Halfa (no),21.802083,31.353111,,5,,3991,138,90,,,,,,47142,,, +873,ETH,,ERTA Ethiopia National R,,Addis Abeba/Geja Dera (aab),8.756389,38.6675,,100,,5637,137,93,,0300-0600,1234567,,,2413,,, +873,ETH,,ERTA Ethiopia National R,,Addis Abeba/Geja Dera (aab),8.756389,38.6675,,100,,5637,137,93,,0800-2100,1234567,,,2413,,, +873,SDN,,SRTC R Wad Madani,,Wad Madani (gzi),14.480317,33.466633,,10,,4823,140,95,,,,,,9400010,,, +873,IND,,AIR North,,Jalandhar B (PB),31.147222,75.778056,,100,,5960,84,97,,0630-0930,1234567,4,,48661,,, +873,IND,,AIR North,,Jalandhar B (PB),31.147222,75.778056,,100,,5960,84,97,,1030-1740,1234567,4,,48661,,, +873,IND,,AIR North,,Jalandhar B (PB),31.147222,75.778056,,100,,5960,84,97,,2225-0430,123456,4,,48661,,, +873,IND,,AIR North,,Jalandhar B (PB),31.147222,75.778056,,100,,5960,84,97,,2225-0600,......7,4,,48661,,, +873,CHN,,Changjii RGD,,Changji (XJ),44,81.3,,1,,5386,68,111,,,,,,48652,,, +873,CHN,,Gansu RGD,,Linxia/Luojiabao (GS),35.572222,103.170833,,50,,7384,62,114,,2150-1605,1234567,,,48657,,, +873,CLN,ta,FEBA India,,Puttalam (put),7.9765,79.798311,,300,,8177,98,114,,0131-0202,......7,,,48674,,, +873,BGD,,Bangladesh Betar,,Chittagong/Kalurghat (cgg),22.375833,91.848333,,100,,7759,79,115,,0030-0400,1234567,,,48650,,, +873,BGD,,Bangladesh Betar,,Chittagong/Kalurghat (cgg),22.375833,91.848333,,100,,7759,79,115,,0600-1710,1234567,,,48650,,, +873,CHN,ko,Heilongjiang RGD,,Harbin/HLTS904 (HL),45.695556,126.819167,,100,,7745,40,115,,1300-1500,1234567,,,48654,,, +873,CHN,ko,Heilongjiang RGD,,Harbin/HLTS904 (HL),45.695556,126.819167,,100,,7745,40,115,,2100-2400,1234567,,,48654,,, +873,CHN,zh,Heilongjiang RGD Gushi,,Harbin/HLTS904 (HL),45.695556,126.819167,,100,,7745,40,115,,0000-1300,1234567,,,48654,,, +873,CHN,zh,Heilongjiang RGD,,Harbin/HLTS904 (HL),45.695556,126.819167,,100,,7745,40,115,,1500-2100,1234567,,,48654,,, +873,KRE,ko,KCBS Pyongyang Pangsong,,Sinuiju (pyb),40.089167,124.452278,,250,,8151,45,115,,2100-1800,1234567,,,48630,,, +873,J,,JOGB NHK2,,Kumamoto (kyu-kum),32.9075,130.842778,,500,,9131,44,117,,2030-1500,1.....7,0,,48665,,, +873,J,,JOGB NHK2,,Kumamoto (kyu-kum),32.9075,130.842778,,500,,9131,44,117,,2030-1635,.2345..,0,,48665,,, +873,J,,JOGB NHK2,,Kumamoto (kyu-kum),32.9075,130.842778,,500,,9131,44,117,,2030-1640,.....6.,0,,48665,,, +873,VTN,xx,VOV3/Xone FM/VOV4,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,0800-1330,1234567,,,48676,,, +873,VTN,xx,VOV3/Xone FM/VOV4,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2200-0600,1234567,,,48676,,, +873,BOT,,R Botswana,,Ghanzi (gh),-21.66095,21.684114,,50,,8336,165,123,,0000-2400,1234567,,,2412,,, +873,MOZ,pt,Emisso Provincial de Sofala,,Beira (sfl),-19.582328,34.737825,,50,,8432,153,124,,0000-2210,......7,,,2414,,, +873,MOZ,pt,Emisso Provincial de Sofala,,Beira (sfl),-19.582328,34.737825,,50,,8432,153,124,,0000-2400,.....6.,,,2414,,, +873,MOZ,pt,Emisso Provincial de Sofala,,Beira (sfl),-19.582328,34.737825,,50,,8432,153,124,,0250-2210,1234...,,,2414,,, +873,MOZ,pt,Emisso Provincial de Sofala,,Beira (sfl),-19.582328,34.737825,,50,,8432,153,124,,0250-2400,....5..,,,2414,,, +873,CHN,,Wuhan RGD Health,,Wuhan/Hongxia (HU),30.603333,114.246111,,50,,8464,58,125,,2130-1700,1234567,,,48660,,, +873,CHN,ko,Heilongjiang RGD,,Ning'an (HL),44.383333,129.433333,,10,,7981,39,127,,1300-1500,1234567,,,36200768,,, +873,CHN,ko,Heilongjiang RGD,,Ning'an (HL),44.383333,129.433333,,10,,7981,39,127,,2100-2400,1234567,,,36200768,,, +873,CHN,,Kaifeng RGD News,,Kaifeng/Baita (HE),34.769444,114.3975,,10,,8105,55,128,,2155-1420,12345..,,,48656,,, +873,CHN,,Kaifeng RGD News,,Kaifeng/Baita (HE),34.769444,114.3975,,10,,8105,55,128,,2155-1600,.....67,,,48656,,, +873,CHN,,Gansu RGD,,Wuwei/Yangxiaba (GS),38.0475,102.694722,,1,,7151,60,129,,2150-1605,1234567,,,36200767,,, +873,CHN,,Linyi RGD,,Linyi (SD),35.066667,118.333333,,10,,8294,52,130,,,,,,48658,,, +873,CHN,,Gansu RGD,,Tianshui (GS),34.5,105.5,,1,,7613,61,133,,2150-1605,1234567,,,48659,,, +873,CHN,,Gansu RGD,,Cheng Xian/Zhiqi Xiang (GS),33.7625,105.728333,,1,,7689,61,134,,2150-1605,1234567,,,36200770,,, +873,THA,th,Wor. Kor. Mor. Thor.,,Bangkok/192 Sarasin Road (bmp),13.733425,100.544794,,10,,9085,78,134,,????-1700,1234567,,,48675,,, +873,CHN,,Xinji RGD,,Xinji (HB),37.9,115.2,,1,,7874,52,136,,,,,,36200766,,, +873,PHL,,DZPA-AM R Veritas,,Bangued (abr),17.583333,120.616667,,5,,10018,60,140,,2100-1300,1234567,,,48669,,, +873,PHL,,DZRC-AM R Veritas,,Legazpi City (aby),13.133333,123.733333,,5,,10615,60,142,,,,,,48670,,, +873,CHN,,Huzhou RGD Xinwen,,Huzhou (ZJ),30.838611,120.221111,,1,,8779,53,143,,,,,,48655,,, +873,PHL,,DXRB-AM Sonshine R,,Butuan City/Libertad (lag),8.933333,125.366667,,5,,11104,61,144,,,,,,48668,,, +873,AUS,,6DB ABC Kimberley,,Derby (WA),-17.355,123.67,,2,,13372,79,155,,0000-2400,1234567,,,48647,,, +873,INS,id,RSPD Bhuana Asri,,Sragen (JT-sra),-7.431111,111.024167,,0.5,,11655,83,155,,????-1600,1234567,,,48664,,, +873,AUS,,4AY Classic Country,,Innisfail (QLD),-17.530417,146.055833,,2,,14806,58,160,,,,,,48648,,, +873,AUS,en,2GB,,Sydney/Homebush Bay (NSW),-33.822667,151.082967,,5,,16548,68,162,,0000-2400,1234567,1,,48649,,, +873,NZL,,LiveSPORT,,Tauranga/Matapihi (BOP),-37.693889,176.196389,,1,22,18226,30,174,,,,,,32500002,,, +873,NZL,,3ZE Newstalk ZB,,Ashburton/Winchmore (CAN),-43.804167,171.704167,,1,,18587,56,175,,,,,,48667,,, +875,BOL,,R Eucaliptus,,Eucaliptus (oru),-17.583333,-67.516667,,1,,10494,247,149,,,,,,51973,,, +879,RUS,,B,b,Ermolino,55.229167,36.625,,0.025,,2004,68,93,,,,,L1020 15.0s,IDx2 + 10 gap,85780,, +879,RUS,,M,b,Ermolino,55.229167,36.625,,0.025,,2004,68,93,,,,,U876 15.0s,IDx2 + 11 gap,85781,, +880,USA,,WCBS,i,New York/High Island (NY),40.859722,-73.785833,,50,,5944,292,100,,,,0,,40958,,, +880,USA,,WRFD,,Columbus-Worthington (OH),39.941944,-83.022222,,23,,6588,297,109,,,,9991,,42840,,, +880,CAN,en,CHQT,,Edmonton (AB),53.368611,-113.317778,,50,,7022,324,110,,,,64,,36077,,, +880,CAN,en,CKLQ,,Brandon (MB),49.619722,-99.805833,,10,,6745,314,114,,,,33,,36335,,, +880,USA,en,KRVN,,Lexington (NE),40.515833,-99.396389,,50,,7486,308,115,,,,9992,,39311,,, +880,USA,,KLRG,,Sheridan (DC) (AR),34.693333,-92.305833,,50,,7575,299,116,,,,,,38482,,, +880,USA,,WPEK,,Fairview (NC),35.546667,-82.470833,,5,,6901,293,119,,,,,,42664,,, +880,USA,,WPIP,,Winston-Salem (NC),36.043889,-80.181944,,1.8,,6717,292,122,,,,,,42694,,, +880,USA,,WSLK,,Moneta (VA),37.166667,-79.630556,,0.9,,6594,292,123,,,,,,41070,,, +880,VEN,,YVYM R Venezuela,,Puerto Ordaz (blv),8.316667,-62.666667,,20,,7857,258,123,,,,997,,51670,,, +880,USA,,WRRZ,,Clinton (NC),34.977778,-78.304167,,1,,6681,290,124,,,,,,42914,,, +880,B,pt,ZYL275 Rdio Inconfidncia,,Belo Horizonte/Contagem (MG),-19.899039,-44.054528,,100,,9376,227,125,,,,,,36901529,,, +880,EQA,,HCRP1,,Quito (pic),-0.166667,-78.466667,,100,,9673,266,126,,,,,,37102,,, +880,USA,en,KIXI,,Seattle/Bellevue (WA),47.583056,-122.181111,,10,,7904,326,126,,,,3,,38649,,, +880,USA,en,WZAB,,Sweetwater (FL),25.748889,-80.547222,,5,,7578,284,126,,,,,,20012398,,, +880,CUB,es,R Progreso,,Pinar del Ro/CTOM1 (pr),22.368153,-83.739372,,12,,8074,284,127,,,,,,36441,,, +880,VEN,es,YVKV RNV Canal Informativo,,Caracas (dcf),10.5,-66.916667,,10,,7952,263,127,,,,,,51671,,, +880,VEN,,R Paraguan,,Punto Fijo (flc),11.7,-70.2,,10,,8071,267,128,,0000-2400,1234567,992,,51672,,, +880,USA,,WMEQ,,Menomonie (WI),44.845556,-91.845833,,0.21,,6716,306,131,,,,,,42302,,, +880,PRU,es,OBZ4N R Unin,,Lima/Lomas de Villa (lim),-12.216694,-76.978094,,50,,10632,257,132,,0000-2400,1234567,,,40419,,, +880,CLM,es,HJGE,,Bucaramanga (sat),7.083333,-73.116667,,10,,8672,266,133,,,,,,37452,,, +880,PTR,,WYKO,,Sabana Grande (PR),18.0725,-66.951667,,0.5,,7302,268,133,,0900-0400,1234567,,,43523,,, +880,CLM,es,HJFH,,Anserma (cal),5.333333,-75.783333,,10,,9007,267,134,,,,,,35901423,,, +880,CUB,es,R Reloj,,Mayar Arriba/CTOM2 (sc),20.410894,-75.526333,,1,,7689,277,134,,,,,,31600129,,, +880,HND,,HRGY,,Tegucigalpa (fmz),14.116667,-87.216667,,10,,9017,282,134,,,,,,37760,,, +880,USA,,KKMC,,Gonzales (CA),36.562778,-121.434722,,10,,8935,320,134,,,,19,,38731,,, +880,B,pt,ZYK249 Rdio Ita,,Guaba/Estrada da Arrozeira (RS),-29.991111,-51.325,,25,,10713,227,135,,,,,,36901532,,, +880,USA,,KJJR,,Whitefish (MT),48.395556,-114.319722,,0.5,,7512,322,135,,,,,,38675,,, +880,USA,,WIJR,,Highland (IL),38.756389,-89.655,,0.16,,7080,300,136,,,,,,40960,,, +880,SLV,es,YSCD R Abba,,San Miguel (smg),13.44,-88.140278,,5,,9138,282,137,,,,,,45266,,, +880,DOM,es,HIOR La Nueva R 880,,Santa Cruz de Mao (vav),19.55,-71.066667,,0.25,,7458,273,138,,1000-0400,1234567,,,37282,,, +880,HTI,,R Independance,,Gonaves (art),19.416667,-72.666667,,0.3,,7578,274,138,,,,,,35641,,, +880,USA,,KJOZ,,Conroe (TX),30.293889,-95.431944,,1,,8138,298,138,,,,,,38683,,, +880,USA,,KWIP,,Dallas (OR),44.929167,-123.289444,,1,,8202,325,139,,,,17,,39714,,, +880,GTM,,TGJ R Nuevo Mundo,,Ciudad de Guatemala (gut),14.65,-90.466667,,2.5,,9187,284,140,,1030-0500,1234567,,,40500,,, +880,PNR,es,R Panam,,Changuinola (bct),9.467778,-82.540556,,2.5,,9107,275,140,,,,,,52309,,, +880,PNR,es,R Panam,,David/Mata de Nance (chq),8.463781,-82.401367,,2.5,,9185,274,140,,,,,,52308,,, +880,USA,,KLRG,,Sheridan (N) (AR),34.305833,-92.385,,0.22,,7612,299,140,,,,,,20016192,,, +880,B,pt,ZYI680 Rdio Maring de Pombal,,Pombal (PB),-6.760378,-37.789222,,0.25,,7768,228,141,,,,,,36901530,,, +880,NCG,es,YNAT R El Pensamiento,,Managua (mng),12.155933,-86.216481,,2,,9121,280,141,,1200-0600,1234567,,,52201,,, +880,USA,,KCMX,,Phoenix (OR),42.31,-122.811389,,1,,8437,324,141,,,,1,,38182,,, +880,MEX,es,XEPNK-AM Canal 88,,Los Mochis (sin),25.762367,-109.000283,,2,,9333,305,142,,,,,,44563,,, +880,PNR,es,HOB51 R Vision Panam,,Coln/Calle 2DA (clo),9.364706,-79.9033,,1,,8936,273,143,,,,,,52307,,, +880,CHL,es,CB88 R Colo Colo,,Santiago/Quilicura (RM),-33.333583,-70.746467,,10,,12080,239,144,,0000-2400,1234567,969,,35764,,, +880,HND,,HRGY4,,Santa Rosa de Copan (cop),14.9,-88.216667,,1,,9016,283,144,,,,,,37762,,, +880,MEX,es,XEEM-AM La Mexicana,,Ro Verde (slp),21.931336,-100.0115,,1,,9153,296,144,,,,,,43967,,, +880,MEX,es,XETC-AM,,Torren (coa),25.588094,-103.398831,,1,,9028,301,144,,,,,,44802,,, +880,MEX,es,XEAAA-AM,,Zapopan (jal),20.634064,-103.441033,,1,,9479,298,145,,,,,,43676,,, +880,MEX,es,XEIG-AM Los 40 Principales,,Iguala (gue),18.3304,-99.508925,,1,,9444,294,145,,,,,,44164,,, +880,USA,,KHAC,,Tse Bonito (NM),35.644722,-109.020278,,0.43,,8427,311,145,,,,42,,38525,,, +880,B,pt,ZYK317 Rdio So Miguel AM,,Uruguaiana (RS),-29.758889,-57.084722,,2.5,,10991,232,146,,,,,,36901531,,, +880,MEX,es,XEQQQ-AM Ke Buena,,Villahermosa (tab),18.005289,-92.991947,,0.5,,9058,288,147,,,,,,44628,,, +880,BOL,,R Inca,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,0900-0100,1234567,,,51974,,, +880,MEX,es,XEV-AM R Frmula,,Chihuahua (chi),28.613572,-106.054347,,0.25,,8907,305,149,,,,,,44942,,, +880,HWA,zh,KHCM,,Honolulu (HI),21.294722,-157.863611,,2,,11711,345,150,,,,0,,20000062,,, +880,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010578,,, +880,ARG,,R Cualidad,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,51811,,, +880,ARG,es,LU14 R.Provincia de Santa Cruz,,Las Heras (sc),-46.548197,-68.9416,,3,,13097,229,152,,1000-0300,1234567,,,40208,,, +880,B,pt,ZYK363 Rdio Sociedade Seberi,,Seberi (RS),-27.486667,-53.395833,,0.25,,10583,230,155,,,,,,36901533,,, +880,USA,,WMDB,,Nashville (TN),36.211944,-86.819167,,0.002,,7117,296,155,,,,,,42297,,, +882,G,en,BBC R Wales,,Washford (EN-SOM),51.161389,-3.347944,,100,,681,265,44,,0600-2400,1234567,0,,586,,, +882,G,en,BBC WS,,Washford (EN-SOM),51.161389,-3.347944,,100,,681,265,44,,0000-0600,1234567,0,,586,,, +882,G,en,BBC R Wales,,Penmon (WA-AGS),53.2895,-4.078417,,10,,718,285,54,,0600-2400,1234567,0,,585,,, +882,G,en,BBC WS,,Penmon (WA-AGS),53.2895,-4.078417,,10,,718,285,54,,0000-0600,1234567,0,,585,,, +882,E,ca,La Xarxa,,Barcelona/E. de Gallecs (EAJ20) (CAT-B),41.571069,2.199519,,20,,1214,197,56,,0000-2400,1234567,5,,581,,, +882,G,en,BBC R Wales,,Tywyn (WA-GWY),52.582944,-4.096111,,5,,715,278,57,,0600-2400,1234567,0,,584,,, +882,G,en,BBC WS,,Tywyn (WA-GWY),52.582944,-4.096111,,5,,715,278,57,,0000-0600,1234567,0,,584,,, +882,E,es,COPE,,Gijn/El Infanzn (AST-O),43.468806,-5.699419,,5,,1316,228,63,,0000-2400,1234567,,,580,,, +882,E,es,COPE,,Valladolid/Barrio Parquesol EAK9 (CAL-VA),41.654722,-4.750364,,5,,1436,220,64,,0000-2400,1234567,996,,579,,, +882,G,en,BBC R Wales,,Forden (WA-POW),52.592389,-3.173833,,1,,653,278,64,,0600-2400,1234567,0,,583,,, +882,G,en,BBC WS,,Forden (WA-POW),52.592389,-3.173833,,1,,653,278,64,,0000-0600,1234567,0,,583,,, +882,MNE,sr,R Crne Gore 1,,Gornja Plavnica (PG),42.285556,19.211833,,5,,1455,134,65,,0000-2400,1234567,6,,594,,, +882,E,es,COPE,,Mlaga/Cerro de la Ermita (EAK11) (AND-MA),36.732564,-4.455253,,5,,1910,211,69,,0000-2400,1234567,9963,,578,,, +882,E,es,COPE,,Alicante=Alacant (VAL-A),38.328256,-0.544278,,2,,1625,202,70,,0000-2400,1234567,0,,577,,, +882,IRN,fa,IRIB R Mahabad,,Mahabad (waz),36.864722,45.7375,,60,,3492,103,74,,0200-2059,1234567,13,,1790,,, +882,CNR,es,COPE,,La Laguna/EAK64 (STC-TF),28.503331,-16.304275,,25,,3227,224,75,,0000-2400,1234567,996,,575,,, +882,EGY,ar,ERTU Al-Barnameg al-Aam,,Matruh (mth),31.330194,27.266556,,10,,2865,136,76,,0000-2400,....5..,,,1829,,, +882,EGY,ar,ERTU Al-Barnameg al-Aam,,Matruh (mth),31.330194,27.266556,,10,,2865,136,76,,1100-0700,1234.67,,,1829,,, +882,ISR,,IBA Reshet Bet (B),,She'ar-Yeshuv (hzf),33.216111,35.644444,,10,,3144,120,78,,0000-2400,1234567,,,587,,, +882,TUN,ar,RTT,,Remada (tat),32.316667,10.4,,1,,2224,170,79,,0400-2400,1234567,,,1892,,, +882,ARS,ar,BSKSA Al-Quran al-Karim,,Dammam (shy),26.459411,50.042656,,100,,4609,111,83,,0000-2400,1234567,,,47078,,, +882,EGY,,ERTU R Hala'ib,,Hala'ib (bar),22.233333,36.613333,,7.5,,4206,131,90,,,,,,582,,, +882,MNG,mn,Mongoliin R 1,,Mrn=Murun (kgl),49.612222,100.168611,,75,,6104,52,99,,2200-1500,1234567,977,,47187,,, +882,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Kitale (rif),1.147639,34.899053,,50,,6255,145,103,,0200-2110,1234567,,,1964,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,0025-0430,123456,999,,48691,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,0025-0500,......7,999,,48691,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,0600-1000,......7,999,,48691,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,0645-1000,123456,999,,48691,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,1030-1700,1234567,999,,48691,,, +882,CHN,kk,Yili RGD,,Yining=Gulja (XJ),43.916667,81.466667,,1,,5403,68,111,,,,,,48689,,, +882,CHN,ug,Karamay RGD,,Karamay (XJ),45.533333,85,,1,,5514,64,112,,,,,,48687,,, +882,CHN,zh,Haixi RGD,,Da Qaidam/QHTS917 (QH),37.371111,97.386944,,20,,6885,64,113,,,,,,36200038,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1130-1200,1234567,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1215-1230,1......,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1245-1300,......7,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1630-1645,.....6.,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1630-1700,12345..,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2214-2230,1234567,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2300-2315,12.....,17,,48718,,, +882,CLN,bj,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1215-1230,.2.....,17,,48718,,, +882,CLN,bj,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1215-1245,..34567,17,,48718,,, +882,CLN,bli,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2315-2330,1......,17,,48718,,, +882,CLN,bn,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2230-2300,1234567,17,,48718,,, +882,CLN,ct,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1230-1315,1......,17,,48718,,, +882,CLN,ct,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1245-1315,.2345..,17,,48718,,, +882,CLN,ct,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1300-1315,.....67,17,,48718,,, +882,CLN,dc,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1315-1345,12345..,17,,48718,,, +882,CLN,dc,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1615-1630,....5..,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0030-0045,1.....7,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0115-0130,..345..,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1200-1215,1234567,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1615-1630,1234...,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1615-1730,......7,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1645-1730,.....6.,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1700-1730,12345..,17,,48718,,, +882,CLN,go,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1545-1600,.....6.,17,,48718,,, +882,CLN,go,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1545-1615,12345..,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0030-0045,....56.,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1315-1345,.....6.,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1345-1415,......7,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1400-1430,.....6.,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1600-1630,.....6.,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2300-2330,..34567,17,,48718,,, +882,CLN,kc,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2315-2330,.2.....,17,,48718,,, +882,CLN,kn,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0115,....56.,17,,48718,,, +882,CLN,kn,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1415-1445,12345.7,17,,48718,,, +882,CLN,ml,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0130,......7,17,,48718,,, +882,CLN,ml,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1600-1615,......7,17,,48718,,, +882,CLN,ml,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2330-2400,1234567,17,,48718,,, +882,CLN,mr,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1430-1500,.....6.,17,,48718,,, +882,CLN,mr,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1445-1500,......7,17,,48718,,, +882,CLN,mr,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1445-1515,12345..,17,,48718,,, +882,CLN,mv,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0045-0100,.....6.,17,,48718,,, +882,CLN,or,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0115,..3....,17,,48718,,, +882,CLN,or,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1500-1530,.....6.,17,,48718,,, +882,CLN,or,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1500-1545,......7,17,,48718,,, +882,CLN,or,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1515-1545,12345..,17,,48718,,, +882,CLN,ta,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0000-0030,1234567,17,,48718,,, +882,CLN,ta,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0030-0045,.234...,17,,48718,,, +882,CLN,ta,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0045-0100,12345..,17,,48718,,, +882,CLN,ta,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0130,12.....,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0115,...4...,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1315-1345,......7,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1345-1400,.....6.,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1345-1415,12345..,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1530-1545,.....6.,17,,48718,,, +882,CLN,tu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0045-0100,......7,17,,48718,,, +882,CLN,tu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1545-1600,......7,17,,48718,,, +882,CLN,vr,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1230-1245,.2.....,17,,48718,,, +882,KRE,,KCBS Chosun Jungang Pangsong,,Wonsan (kan),39.066667,127.416667,,250,,8386,43,117,,2000-1800,1234567,43,,48708,,, +882,CHN,,Yushu RGD,,Yushu/QHTS920 (QH),33.001667,97.001944,,10,,7214,68,119,,,,,,48690,,, +882,CHN,,Hohhot RGD Shoufu zhi Sheng,,Hohhot (NM),40.741389,111.583056,,10,,7432,53,121,,,,,,48686,,, +882,CHN,,Shijiazuang RGD,,Shijiazhuang (HB),37.833333,114.666667,,20,,7851,53,123,,2150-1500,1234567,184,,48688,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/Wenshanzhou (FJ),25.971444,119.292333,,100,,9171,57,124,,,,,,36200036,,, +882,CHN,,Shenyang JGD,,Shenyang (LN),41.748056,123.385,,10,,7948,45,127,,,,,,36200034,,, +882,CHN,,Dalian RGD,,Dalian/LNTS303 (LN),39.087778,121.677778,,10,,8106,47,128,,2025-1700,1234567,,,48683,,, +882,KOR,,HLKI KBS 1 R,,Daedeok (daj),36.409653,127.423556,,20,,8635,45,130,,0000-2400,1234567,,,48709,,, +882,PHL,,DWIZ-AM Radyo Totoo,,Obando (bul),14.7075,120.936944,,50,,10302,62,131,,0000-2400,1234567,9979,,48716,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fu'an/FJTS903 (FJ),27.111117,119.622122,,10,,9086,56,134,,,,,,36200037,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Sanming/FJTS701 (FJ),26.242222,117.621289,,10,,9051,58,134,,,,,,36200765,,, +882,J,,JOPK NHK1,,Shizuoka (chu-shi),34.950278,138.418056,,10,,9272,38,135,,0000-2400,1234567,,,48706,,, +882,TWN,,BCC News Network,,Hsinchu (HC),24.915539,121.011211,,10,,9366,56,135,,0000-2400,1234567,,,48719,,, +882,CHN,,Anyang RGD,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,2155-1530,1234567,,,48682,,, +882,J,,JOWS STV, Sapporo TV Hoso,,Kushiro (hok),42.983333,144.416667,,3,,8698,30,138,,0000-2400,1234567,0,,48705,, +882,PHL,,DYOG-AM Radyo ng Bayan,,Calbayog City (sam),12.066667,124.583333,,10,,10765,60,140,,,,,,48713,,, +882,CHN,,Duyun RGD,,Duyun/GZTS854 (GZ),26.266667,107.516667,,1,,8443,65,141,,,,,,48684,,, +882,PHL,,DXMS-AM R Veritas,,Cotabato City (mag),7.233333,124.25,,10,,11194,63,141,,,,,,48714,,, +882,J,,JOWS STV Sapporo TV Hoso,,Esashi (hok),41.866667,140.133333,,1,,8656,33,143,,0000-2400,1234567,,,48703,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Jinjiang/FJTS402 (FJ),24.725,118.470833,,1,,9238,58,144,,,,,,36200035,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Yongan/FJTS702 (FJ),25.960081,117.356311,,1,,9061,58,144,,,,,,36200033,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Zhangzhou/FJTS501 (FJ),24.5,117.666667,,1,,9211,59,144,,,,,,36200032,,, +882,TWN,,Feng Ming Kuangpo Tientai,,Magong=Makung (PG),23.534722,119.6,,1,,9412,58,145,,,,,,48720,,, +882,AUS,en,6PR,,Perth/Ascot Waters (WA),-31.934742,115.915567,,10,,14040,97,150,,0000-2400,1234567,,,48680,,, +882,INS,id,PM3BNG R Pelangi Nusantara,,Jakarta/Taman Mini Indonesia (JK-kjt),-6.303056,106.897917,,1,,11276,86,151,,2250-1700,1234567,86,,48695,,, +882,INS,id,PM4BMI R.Kranggan Persada,,Temanggung/Kranggan (JT),-7.266667,110.4,,1,,11598,83,152,,,,,,48702,,, +882,INS,id,PM8DCB R.Bambapuang,,Pangkajene/Sidrap (SN),-4.833333,119.55,,1.5,,11995,74,152,,,,,,48701,,, +882,J,,STV, Sapporo TV Hoso,,Kitahiyama (hok),42.433333,139.933333,,0.1,,8592,33,152,,0000-2400,1234567,,,48704,, +882,INS,id,R.Pemerintah Kabupaten Majene,,Majene (SR-maj),-3.55,118.966667,,1,,11842,74,153,,,,,,35400039,,, +882,INS,id,RGPA-R.Gema Panca Arga,,Pacitan (JI),-8.2,111.116667,,1,,11729,83,153,,,,,,48700,,, +882,INS,id,PM3BNH R.SAS-Suara Anggada Senatama,,Banjarsari (JB-cms),-6.483333,106.05,,0.25,,11234,86,157,,,,,,48693,,, +882,AUS,en,4BH,,Brisbane/Wynnum West (QLD),-27.464278,153.147778,,5,,16129,58,160,,0000-2400,1234567,9991,,48679,,, +882,NZL,en,1YC Southern Star/RNZ Parliament,,Auckland/Henderson (AUK),-36.849089,174.629694,,10,,18083,33,164,,0000-2400,1234567,,,48711,,, +882,AUS,,3YB,,Warrnambool/Purnim (VIC),-38.24,142.613611,,2,,16322,83,165,,0000-2400,1234567,,,48681,,, +885,RUS,,KR,b,Kirishi (LE),59.479167,32.041667,,0.025,,1784,53,91,,,,,L1052 U1057 ,85782,,, +887,RUS,,E,b,Moskva/Domodedovo (MV),55.395833,37.958333,,0.025,,2087,67,94,,,,,L1030 U1035 15.0s,IDx2,85783,, +887,RUS,,W,b,Moskva/Domodedovo (MV),55.4375,37.875,,0.025,,2082,67,94,,,,,30.0s,IDx2,85784,, +888,CZE,,P,b,Pardubice (PA),50.020833,15.791667,,0.025,,695,106,80,,,,,,ID+3 gap,85785,, +890,USA,es,WAMG,,Dedham (MA),42.247222,-71.425278,,6,,5695,292,106,,,,9961,,40707,,, +890,USA,en,WLS,,Chicago/Tinley Gardens Park (IL),41.555833,-87.848333,,50,,6750,301,108,,,,35,,42229,,, +890,USA,,WBAJ,,Blythewood (SC),34.108611,-81.074444,,50,,6927,291,109,,1200-2400,1234567,,,40799,,, +890,CUB,es,R Progreso,,Chambas/CTOM2 (ca),22.370928,-78.885061,,200,,7750,281,112,,,,8,,31600012,,, +890,USA,,WKNV,,Fairlawn (VA),37.131944,-80.618611,,10,,6659,293,114,,,,9964,,42050,,, +890,CAN,en,CJDC,,Dawson Creek (BC),55.775,-120.221111,,10,,7059,330,118,,,,1,,36162,,, +890,USA,,WFKJ,,Cashtown (PA),39.883056,-77.345278,,0.89,,6241,293,120,,,,,,41391,,, +890,ALS,,KBBI,,Homer (AK),59.670556,-151.443889,,10,,7428,348,121,,0000-2400,1234567,0,,38005,,, +890,USA,en,KYWN,,Meridian (D) (ID),43.460278,-116.241389,,50,,8051,320,121,,,,992,,38271,,, +890,VEN,,YVLW R Amrica,,Valencia (cbb),10.166667,-68,,50,,8055,264,121,,0900-0400,1234567,1,,45374,,, +890,USA,es,WJTP,,Lithia Springs (GA),33.760833,-84.478333,,5,,7171,293,122,,1200-2400,1234567,,,43418,,, +890,USA,,KQLX,,Lisbon (ND),46.615,-97.132222,,1.8,,6856,311,123,,,,,,39197,,, +890,USA,,WHNC,,Henderson (NC),36.335556,-78.369722,,1,,6578,291,123,,,,,,41667,,, +890,USA,,KTXV,,Mabank (TX),32.286944,-95.9775,,20,,7998,300,124,,,,,,39554,,, +890,USA,en,WHJA,,Laurel (MS),31.524722,-89.241944,,10,,7654,295,124,,1300-0100,1234567,,,41263,,, +890,B,pt,ZYI772 Rdio Tamandar,,Recife (PE),-8.006911,-34.879669,,10,,7750,224,125,,,,1,,36901548,,, +890,USA,,WYAM,,Hartselle (AL),34.566667,-86.912778,,2.5,,7257,295,126,,,,,,43504,,, +890,VEN,,YVVO R Oriente,,El Tigre (azg),8.866667,-64.25,,10,,7915,260,126,,,,,,51673,,, +890,CLM,es,HJPM R Galen,,Santa Marta (mag),11.25,-74.216667,,20,,8384,270,128,,,,994,,2010,,, +890,USA,,KGGN,,Gladstone (MO),39.184444,-94.457778,,0.96,,7324,303,130,,,,,,38476,,, +890,DOM,,HIPJ La Consentida 890 AM,,Santo Domingo (sdo),18.466667,-69.916667,,1,,7471,271,132,,1000-0500,1234567,,,37285,,, +890,HTI,,Voix du Nord'est,,Fort-Libert (nes),19.658333,-71.833333,,1,,7501,273,132,,,,,,52109,,, +890,USA,,KDXU,,St. George/Cedar City (UT),37.068056,-113.518889,,10,,8521,315,132,,,,14,,38302,,, +890,B,pt,ZYH706 Rdio Clube AM Braslia,,Braslia/Parque de Taguatinga (DF),-15.754014,-47.935844,,10,,9175,232,134,,,,0,,36901546,,, +890,CTR,,TIHOT R Fabulosa,,San Jos (sjs),9.933333,-84.066667,,10,,9170,277,134,,1100-0500,1234567,,,52146,,, +890,CUB,es,R Revolucin,,Santiago de Cuba/CTOM1 (sc),20.055531,-75.804389,,1,,7738,277,134,,,,,,31600038,,, +890,CLM,es,HJCE R Continental/Todelar,,Bogot D. C. (bdc),9.516667,-74.15,,5,,8530,268,135,,,,,,37368,,, +890,PTR,,WFAB,,Ceiba (PR),18.204444,-65.711111,,0.25,,7206,268,135,,,,,,41351,,, +890,USA,,KTLR,,Oklahoma City (OK),35.566389,-97.474444,,1,,7803,303,135,,,,,,39504,,, +890,HTI,,R Trans Artibonite,,Gonaves (art),19.416667,-72.666667,,0.5,,7578,274,136,,,,,,35658,,, +890,B,pt,ZYK690 Rdio Gazeta,,So Paulo/Estrada de Riveira (SP),-23.708056,-46.742222,,10,,9881,227,137,,,,,,36901547,,, +890,PNR,es,HOQ62 R Ritmo Stereo,,Chitr/Cerro El Guayabo (her),7.958333,-80.456667,,5,,9096,272,137,,,,,,52310,,, +890,USA,en,KIHC,,Arroyo Grande (CA),35.145556,-120.520833,,5,,9032,319,137,,,,99987,,38806,,, +890,GTM,,TGHU R Escuintla,,Escuintla (esl),14.3,-90.766667,,5,,9237,284,138,,,,,,40499,,, +890,USA,en,KJME,,Fountain (CO),38.518611,-104.600833,,0.58,,7938,310,139,,,,53,,20016226,,, +890,B,pt,ZYH642 Rdio Itataia,,Santa Quitria (CE),-4.357453,-40.163178,,0.25,,7654,231,140,,,,,,36901545,,, +890,B,pt,ZYI536 Rdio Ponta Negra,,Santarm (PA),-2.477858,-54.705522,,1,,8317,245,140,,,,,,36901541,,, +890,URG,es,CX18 R Sarandi Sport,,Santiago Vzquez (mo),-34.795389,-56.32325,,10,,11416,228,142,,0000-2400,1234567,,,36806,,, +890,USA,,KVOZ,,Del Mar Hills (TX),27.549167,-99.3725,,1,,8615,299,142,,,,996,,39660,,, +890,ARG,es,LV11 Emisora Santiago del Estero,,Santiago del Estero (se),-27.754606,-64.202989,,5,,11207,238,144,,0900-0530,1234567,,,40237,,, +890,HND,,HRGY3,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37761,,, +890,HND,,HRH6,,El Paraiso (elp),13.85,-86.55,,1,,8996,281,144,,,,,,37765,,, +890,MEX,es,XEPC-AM Sonido Estrella,,Zacatecas (zac),22.764175,-102.562756,,1,,9233,299,144,,,,,,44539,,, +890,NCG,,R San Carlos,,San Carlos (rsj),11.116667,-84.783333,,1,,9115,278,144,,,,,,33700018,,, +890,SLV,,YSLA,,Santa Ana (sta),13.966667,-89.566667,,1,,9187,283,144,,,,,,45293,,, +890,USA,en,KYWN,,Meridian (N) (ID),43.549444,-116.410556,,0.25,,8050,320,144,,,,,,20016085,,, +890,B,pt,ZYJ745 Rdio Clube de Canoinhas,,Canoinhas (SC),-26.171944,-50.388333,,2,,10302,229,145,,,,,,36901539,,, +890,MEX,es,XENZ-AM La Sinaloense,,Culiacn (sin),24.804733,-107.351867,,1,,9328,303,145,,,,,,44469,,, +890,CHL,es,CD89 R Nacional,,Punta Arenas (MA),-53.159475,-70.975044,,20,,13727,225,146,,1000-0400,1234567,,,35920,,, +890,EQA,,HCTL5,,Riobamba (chi),-1.633333,-78.616667,,1,,9812,265,146,,,,,,37140,,, +890,B,pt,ZYK562 Rdio Imaculada Conceio,,Bilac/Fazenda Baguassu (SP),-21.387486,-50.452883,,1,,9850,231,147,,,,,,36901544,,, +890,EQA,,HCRS3 R Superior de Machala,,Machala (oro),-3.316667,-79.966667,,1,,10052,265,147,,,,994,,32600003,,, +890,B,pt,ZYJ499 Rdio Musical de Cantagalo,,Cantagalo (RJ),-21.985444,-42.356478,,0.5,,9498,224,148,,,,,,36902558,,, +890,CLM,es,HKO93,,Soledad (atl),10.916667,-74.766667,,0.25,,8451,270,148,,,,,,35901425,,, +890,MEX,es,XEAK-AM R Consentida,,Acmbaro (gua),20.038703,-100.761911,,0.5,,9369,296,148,,,,,,43714,,, +890,B,pt,ZYL250 Rdio Santa Cruz,,Jequitinhonha (MG),-16.444961,-40.994883,,0.25,,8885,226,149,,,,,,36901534,,, +890,EQA,,HCIM1,,Ibarra (imb),0.35,-78.116667,,0.5,,9603,266,149,,,,,,36972,,, +890,CHL,,CA89 R Leon XIII,,Pozo Almonte (TA),-20.316667,-69.816667,,1,,10882,247,150,,1100-0200,1234567,,,35711,,, +890,MEX,es,XEBY-AM R Frmula,,Tuxpan/Col. Murillo Vidal (vcz),20.971417,-97.407317,,0.25,,9077,294,150,,,,,,43801,,, +890,B,pt,ZYI453 Rdio Guaicurus,,Ftima do Sul (MS),-22.353086,-54.50405,,0.5,,10161,234,151,,,,,,36901549,,, +890,B,pt,ZYL370 Rdio Clube de Inhapim,,Inhapim (MG),-19.555011,-42.126236,,0.25,,9247,225,151,,,,,,36901550,,, +890,MEX,es,XEPNA-AM R Joya,,Tepic (nay),21.509147,-104.881475,,0.25,,9485,300,151,,,,,,44561,,, +890,ARG,,R Libre,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51812,,, +890,B,pt,ZYK295 Rdio Noroeste,,Santa Rosa (RS),-27.85,-54.498056,,0.5,,10676,231,152,,,,,,36901536,,, +890,B,pt,ZYK703 Rdio Cidade Brasileiras,,Mato/Jardim do Bosque (SP),-21.594583,-48.34765,,0.25,,9759,229,152,,,,,,36901540,,, +890,PRG,,ZP33 R Tres de Febrero,,Ita (cet),-25.416667,-57.383333,,0.5,,10606,234,152,,0900-0300,1234567,,,45530,,, +890,ARG,es,LU33 R Pampeana,,Santa Rosa (lp),-36.648836,-64.273261,,1,,12003,233,154,,0000-2400,1234567,,,40228,,, +890,B,pt,ZYJ287 Rdio Ub,,Ivaipor (PR),-24.230278,-51.688889,,0.25,,10186,231,154,,,,,,36901537,,, +890,B,pt,ZYJ338 Rdio Itapu,,Pato Branco (PR),-26.224167,-52.638333,,0.25,,10424,230,154,,,,,,36901543,,, +890,B,pt,ZYJ755 Rdio Santa Catarina,,Florianpolis (SC),-27.491111,-48.528056,,0.25,,10335,227,154,,,,,,36901538,,, +890,B,pt,ZYK215 Rdio Viva News,,Bento Gonalves/Morro da Vindima (RS),-29.195278,-51.534167,,0.25,,10648,228,155,,,,,,36901542,,, +890,CHL,,CC89 R Interamericana,,Concepcin (BI),-36.866667,-73.016667,,1,,12514,238,155,,1030-0400,1234567,,,35838,,, +890,USA,en,WNPC752,,Aurora (CO),39.639722,-104.831917,,0.01,,7851,310,155,,,,,,20010582,,, +890,USA,en,WPHH900,,Denver (CO),39.756389,-104.992194,,0.01,,7849,311,155,,,,,,20010579,,, +890,USA,en,WPJM700,,De Soto (TX),32.610997,-96.858611,,0.01,,8022,301,157,,,,,,20010581,,, +890,USA,en,WD2XUM,,El Centro NAF (CA),32.89,-115.787222,,0.0001,,9024,314,184,,,,,,20010580,,, +891,HOL,nl,R 538,,Hulsberg/Emmaberg (lim),50.875081,5.846614,,22,,143,196,42,,0000-2400,1234567,2,,597,,, +891,ALG,ar,Chane 1,,Ouled Fayet (16),36.722222,2.951389,,100,,1732,190,54,,0000-2400,1234567,9799,,200001,,, +891,TUR,tr,Antalya Radyosu,,Antalya-Aksu (akd-ant),36.927389,30.941694,,100,,2553,122,63,,0800-1100,1234567,9993,,601,,, +891,TUR,tr,TRT 1 Radyo Bir,,Antalya-Aksu (akd-ant),36.927389,30.941694,,100,,2553,122,63,,0400-0800,1234567,9993,,601,,, +891,POR,pt,Rdio Sim,,Vilamoura (agv),37.083222,-8.136514,,10,,2021,220,67,,0000-2400,1234567,,,599,,, +891,AZE,az,Azərbaycan R,,Baku (bak),40.398311,49.847022,,30,,3521,94,77,,0200-2000,1234567,2,,596,,, +891,GRC,,unid (Blues & Jazz),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400060,,, +891,IRN,fa,IRIB R Yasuj,,Deh Dasht (kba),30.805417,50.576028,,50,,4282,106,83,,0330-2200,1234567,,,598,,, +891,IRN,fa,IRIB R Yasuj,,Yasuj (kba),30.625056,51.590361,,50,,4363,105,84,,0330-2200,1234567,,,10800030,,, +891,SDN,ar,SRTC Sudan Nat. R,,Sinjah (si),13.156361,33.90285,,50,,4977,140,90,,,,,,9400012,,, +891,ETH,,ERTA Ethiopia National R,,Dessie=Dese (amh),11.154472,39.653167,,100,,5444,135,91,,0300-0600,1234567,,,9600002,,, +891,ETH,,ERTA Ethiopia National R,,Dessie=Dese (amh),11.154472,39.653167,,100,,5444,135,91,,0800-2100,1234567,,,9600002,,, +891,CHN,,Shihezi RGD Xinwen Pinl,,Shihezi/XJTS7606 (XJ),44.2925,86.058333,,10,,5665,65,104,,,,,,36200763,,, +891,CHN,,Ningxia RGD,,Yinchuan/Peng (NX),38.563056,106.310278,,200,,7320,58,107,,2115-1830,1234567,5,,48728,,, +891,IND,,AIR North,,Rampur (UP),28.756847,79.051944,,20,,6371,84,108,,0020-0430,1234567,,,48731,,, +891,IND,,AIR North,,Rampur (UP),28.756847,79.051944,,20,,6371,84,108,,0630-1200,1234567,,,48731,,, +891,IND,,AIR North,,Rampur (UP),28.756847,79.051944,,20,,6371,84,108,,1230-1742,1234567,,,48731,,, +891,THA,th,Sor. Wor. Thor. (R Thailand),,Saraburi (srb),14.256111,100.828056,,1000,,9058,78,114,,2150-1702,1234567,9925,,48742,,, +891,KOR,ko,HLKB KBS 1 R,,Busan (bus),35.221944,128.889917,,250,,8817,45,119,,0000-2400,1234567,,,48735,,, +891,CHN,,Ningxia RGD,,Shizuishan (NX),39.233333,106.766667,,10,,7291,57,120,,2115-1830,1234567,,,36201286,,, +891,CHN,,Ningxia RGD,,Tongxin (NX),36.98575,105.904472,,10,,7428,59,121,,2115-1830,1234567,,,36200761,,, +891,CHN,zh,Hinggan=Xingan RGD,,Ulanhot/NMTS825 (NM),46.126667,122.046444,,10,,7491,43,122,,1000-1330,1234567,,,48727,,, +891,CHN,zh,Hinggan=Xingan RGD,,Ulanhot/NMTS825 (NM),46.126667,122.046444,,10,,7491,43,122,,2200-0530,1234567,,,48727,,, +891,CHN,,Ningxia RGD,,Pengyang (NX),35.85,106.65,,10,,7567,59,123,,2115-1830,1234567,,,36200762,,, +891,LSO,,LNBS Ultimate FM,,Maseru/Lancer's Gap (msr),-29.31075,27.555947,,100,,9285,162,125,,0000-2400,1234567,5,,2417,,, +891,CHN,zh,Dandong RGD Traffic,,Dandong/LNTS311 (LN),40.182778,124.370833,,10,,8138,45,128,,2000-1600,1234567,,,48726,,, +891,CHN,zh,Shandong RGD,,Dongying (SD),37.453889,118.569167,,10,,8093,50,128,,2125-1700,1234567,,,48725,,, +891,J,,JOHK NHK1,,Sendai (toh-miy),38.273056,140.91,,20,,9043,35,131,,0000-2400,1234567,0,,48734,,, +891,TWN,,BCC Local,,Tainan (TN),23.118367,120.151517,,10,,9482,58,135,,,,,,52258,,, +891,PHL,,DZGR-AM Bombo Radyo,,Tuguegarao City/Bagumbayan (cag),17.716667,121.5,,5,,10058,60,140,,,,,,48739,,, +891,PHL,,DWAR-AM Radyo Oragon,,Naga City/Tabuco (cas),13.6,123.183333,,5,,10539,61,142,,,,,,48738,,, +891,INS,id,RRI Pro-1,,Malang/Ngijo (JI-mal),-7.885508,112.608106,,10,,11802,82,143,,2155-1700,1234567,0,,48733,,, +891,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Xiamen=Amoy (FJ),24.6,118.116667,,1,,9228,58,144,,,,,,36200764,,, +891,INS,id,RRI Pro-1,,Ternate (MU-ter),0.763711,127.368486,,10,,11985,64,144,,0215-0915,1234567,,,35400040,,, +891,AUS,en,5AN ABC Adelaide,,Adelaide/Reynella (SA),-35.103903,138.518703,,50,,15818,83,149,,0000-2400,1234567,,,48723,,, +891,AUS,,4TAB,,Townsville/Turtle Bay Rd (QLD),-19.304889,147.035472,,5,,15028,58,157,,0000-2400,1234567,,,48724,,, +891,NZL,en,2XW The Breeze,,Wellington/Horokiwi (WGN),-41.21925,174.857589,,5,,18521,40,168,,,,,,48736,,, +894,RUS,,C,b,Savasleyka,55.4375,42.291667,,0.025,,2360,67,97,,,,,,86793,,, +897,XOE,,BRN,b,Jack-up Rig GSF Britannia,53.020833,2.208333,,0.025,,301,291,76,,,,,L400 U400 ,86794,,, +897,INS,id,R Putra Perintis,,Karawang (JB-kar),-6.316667,107.3,,1,,11304,85,151,,,,,,48745,,, +900,I,it,RAI Lombardia,,Milano/Siziano (pv),45.33175,9.19975,,50,,781,164,48,,0620-0630,123456,0,,609,,, +900,I,it,RAI Lombardia,,Milano/Siziano (pv),45.33175,9.19975,,50,,781,164,48,,1110-1130,123456,0,,609,,, +900,I,it,RAI Lombardia,,Milano/Siziano (pv),45.33175,9.19975,,50,,781,164,48,,1140-1200,......7,0,,609,,, +900,I,it,RAI R1,,Milano/Siziano (pv),45.33175,9.19975,,50,,781,164,48,,0000-2400,1234567,0,,609,,, +900,E,es,R Popular/Herri Irratia,,Bilbao/Monte Avril (EAK13) (PVA-BI),43.2696,-2.893483,,10,,1203,219,59,,0000-2400,1234567,21,,604,,, +900,ARS,ar,BSKSA Al-Quran al-Karim,,Qurayyat (jwf),31.425861,37.376278,,1000,148,3401,120,61,,0300-1445,1234567,9996,,603,,, +900,ARS,ar,BSKSA Idha'atu-i Riyadh,,Qurayyat (jwf),31.425861,37.376278,,1000,148,3401,120,61,,1445-0300,1234567,9996,,603,,, +900,E,es,COPE,,Vigo/Monte Faro Domayo (GAL-PO),42.319525,-8.694675,,5,,1571,232,66,,0000-2400,1234567,,,607,,, +900,E,es,COPE,,Cceres (EAK57) (EXT-CC),39.455633,-6.3439,,5,,1714,220,67,,0000-2400,1234567,0,,606,,, +900,E,es,COPE,,Granada/Mirador S.Cristbal (EAK39) (AND-GR),37.195333,-3.591197,,5,,1833,209,68,,0000-2400,1234567,997,,605,,, +900,IRN,fa,IRIB R Iran,,Tehran (thr),35.592278,51.244569,,600,,3954,100,69,,0000-2400,1234567,999,,610,,, +900,RUS,,NE,b,Nerl,57.020833,38.041667,,0.025,,2090,62,94,,,,1,L1006 U1006 ,85786,,, +900,CAN,,CHML,,Hamilton (ON),43.333333,-80.120556,,50,,6154,298,102,,,,9997,,36063,,, +900,CHN,en,CRI Easy FM,,Kashgar=Kashi (XJ),39.416667,76,,1,,5359,76,111,,0000-2400,1234567,,,36200749,,, +900,IND,te,AIR South,,Kadapa=Cuddapah (AP),14.48,78.733333,,100,,7539,95,112,,0010-0430,1234567,2,,48788,,, +900,IND,te,AIR South,,Kadapa=Cuddapah (AP),14.48,78.733333,,100,,7539,95,112,,1130-1742,1234567,2,,48788,,, +900,CAN,en,CKBI,,Prince Albert (SK),53.103611,-105.759167,,10,,6730,320,114,,,,9994,,36267,,, +900,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.418189,94.996833,,10,,6813,67,115,,2100-1602,1234567,,,36200757,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Bei'an/HLTS918 (HL),48.254722,126.489444,,50,,7497,39,115,,0855-1500,1234567,,,36200760,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Bei'an/HLTS918 (HL),48.254722,126.489444,,50,,7497,39,115,,2100-0600,1234567,,,36200760,,, +900,ALS,,KZPA,,Fort Yukon (AK),66.556667,-145.201111,,5,,6605,347,116,,0000-2400,1234567,6,,39904,,, +900,CHN,,Dehong RGD,,Luxi/YNTS771 (YN),24.449167,98.5975,,100,,8031,73,117,,????-1525,1234567,,,48770,,, +900,CUB,es,R Progreso,,Urbano Noris/San Germn (ho),20.590286,-76.146736,,50,,7716,277,117,,,,9937,,36565,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jiamusi (HL),46.755556,130.265,,50,,7794,37,118,,0855-1500,1234567,,,48765,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jiamusi (HL),46.755556,130.265,,50,,7794,37,118,,2100-0600,1234567,,,48765,,, +900,BRB,,Caribbean Broadcasting Corp.,,Bridgetown (smi),13.137128,-59.633383,,10,,7231,259,119,,0000-2400,1234567,4,,35772,,, +900,USA,,WJWL,,Georgetown (DE),38.708056,-75.407778,,1.08,,6207,291,119,,,,,,41942,,, +900,CHN,zh,Henan RGD Jiaoyu Guangbo,,Zhengzhou/HETS976 (HE),34.796944,113.746944,,50,,8066,55,121,,2225-1600,1234567,,,48783,,, +900,CHN,zh,Shaanxi RGD Farm,,Xi'an/Caotan-SATS1 (SA),34.385556,108.950556,,25,,7827,59,121,,2030-1700,1234567,,,48779,,, +900,MEX,es,XEW-AM W R,,Mxico D.F/Ex-Hacienda Coapa (dif),19.310844,-99.135,,250,,9333,294,121,,0000-2400,1234567,9998,,45004,,, +900,B,pt,ZYJ591 Rdio Nordeste,,Natal/Rua dos Transmissores (RN),-5.801,-35.240389,,10,,7546,226,122,,,,,,36901568,,, +900,USA,,WCPA,,Clearfield (PA),41.042222,-78.448333,,0.5,,6223,295,122,,,,,,41063,,, +900,CHN,,Datong RGD News,,Datong/Liuhangli (SX),40.070278,113.302778,,10,,7583,52,123,,,,,,48760,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Yima (HE),34.755833,111.872222,,25,,7963,57,123,,,,,,36200737,,, +900,CHN,,Zhangjiakou RGD Literary,,Zhangjiakou (HB),40.816667,114.85,,10,,7601,51,123,,,,,,48782,,, +900,USA,,WILC,,Laurel (MD),39.0825,-76.838611,,0.5,,6270,292,123,,,,,,41749,,, +900,VEN,,YVMD Mara Ritmo 900,,Maracaibo (zul),10.65,-71.716667,,50,,8266,267,123,,,,999,,2206,,, +900,CHN,,Chifeng JGD,,Chifeng (NM),42.3,118.866667,,10,,7678,47,124,,2150-1330,1234567,,,48759,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Zhoukou (HE),33.633333,114.633333,,25,,8218,55,125,,,,,,36200733,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Fuyuan/Tongjiang Xiang (HL),48.349167,134.391111,,10,,7807,34,125,,0855-1500,1234567,,,36200758,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Fuyuan/Tongjiang Xiang (HL),48.349167,134.391111,,10,,7807,34,125,,2100-0600,1234567,,,36200758,,, +900,KOR,ko,HLKV MBC,,Seoul/Neungkok (seo),37.621389,126.798333,,50,,8492,45,125,,0000-2400,1234567,,,48812,,, +900,CHN,,Changchun RGD,,Changchun (JL),43.8,125.4,,10,,7855,42,126,,0000-2400,1234567,,,48757,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mohe (HL),53.475278,122.348056,,1,,6859,37,126,,0855-1500,1234567,,,36200745,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mohe (HL),53.475278,122.348056,,1,,6859,37,126,,2100-0600,1234567,,,36200745,,, +900,USA,,WBML,,Macon (D) (GA),32.849444,-83.602222,,2,,7190,292,126,,,,,,20016071,,, +900,USA,,WGHM,,Nashua (NH),42.759444,-71.476944,,0.06,,5662,292,126,,,,,,43034,,, +900,CHN,,Shanxi RGD Zonghe Guangbo,,Jincheng (SX),35.511711,112.857272,,10,,7953,55,127,,,,,,36200751,,, +900,CHN,zh,Chifeng RGD,,Hexigten/NMTS052 (NM),43.320278,117.055,,3,,7497,48,127,,,,,,36200756,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Hulin/HLTS923 (HL),45.766667,133,,10,,7999,36,127,,0855-1500,1234567,,,36200754,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Hulin/HLTS923 (HL),45.766667,133,,10,,7999,36,127,,2100-0600,1234567,,,36200754,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Muling/HLTS917 (HL),44.783611,130.539444,,10,,7990,38,127,,0855-1500,1234567,,,36200744,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Muling/HLTS917 (HL),44.783611,130.539444,,10,,7990,38,127,,2100-0600,1234567,,,36200744,,, +900,USA,,WUAM,,Watervliet (NY),42.689167,-73.793611,,0.07,,5813,294,127,,,,,,43249,,, +900,B,pt,ZYI533 O Liberal CBN,,Belm (PA),-1.428961,-48.439772,,5,,7839,240,128,,,,,,36902176,,, +900,USA,,KTIS,,Minneapolis (MN),44.99,-92.981111,,0.5,,6766,307,128,,,,,,39491,,, +900,USA,,WBRV,,Boonville (NY),43.513056,-75.362778,,0.052,,5851,295,128,,,,,,40905,,, +900,USA,,WIAM,,Williamston (NC),35.8575,-77.042778,,0.258,,6531,290,128,,,,,,41710,,, +900,USA,,WNMB,,North Myrtle Beach (SC),33.823889,-78.766389,,0.5,,6802,289,128,,,,,,42483,,, +900,USA,,WURD,,Philadelphia (PA),39.917222,-75.221667,,0.105,,6105,292,128,,,,,,43267,,, +900,USA,en,WCME,,Brunswick (ME),43.911667,-70.025,,0.026,,5490,293,128,,,,,,41883,,, +900,B,pt,ZYJ454 Tamoio AM,,Rio de Janeiro/Rua Antonio Leoncio (RJ),-22.773333,-43.066667,,50,,9609,225,129,,,,54,,36901557,,, +900,CHN,,Hubei RGD Shenghuo Pindao,,Enshi/Sanhe Cun (HU),30.333333,109.466667,,10,,8207,61,129,,,,,,36200759,,, +900,CHN,zh,CNR 1,,Linhe/NMTS691 (NM),40.729444,107.354444,,1,,7200,55,129,,2025-1805,1234567,,,48768,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jagdaqi (HL),50.421389,124.158056,,1,,7203,39,129,,0855-1500,1234567,,,48763,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jagdaqi (HL),50.421389,124.158056,,1,,7203,39,129,,2100-0600,1234567,,,48763,,, +900,CHN,zh,Hubei RGD Chutian Weixing,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,,,,,48780,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Xinyang (HE),32.099722,114.070833,,10,,8322,57,130,,,,,,36200740,,, +900,CHN,,Qingdao RGD Traffic,,Qingdao/SDTS135 (SD),36.121589,120.350533,,10,,8306,50,130,,,,,,48772,,, +900,USA,,WATK,,Antigo (WI),45.106389,-89.1525,,0.195,,6545,305,130,,,,,,40757,,, +900,USA,,WAYN,,Rockingham (NC),34.925,-79.743056,,0.297,,6777,291,130,,,,,,40786,,, +900,USA,,WDLS,,Wisconsin Dells (WI),43.639722,-89.720556,,0.22,,6692,304,130,,,,,,41176,,, +900,CLM,es,HJDD R Red,,Ccuta (nsa),7.816667,-72.466667,,15,,8564,266,131,,,,,,37396,,, +900,USA,,WCBX,,Bassett (VA),36.71,-79.966111,,0.18,,6651,292,131,,,,,,40961,,, +900,USA,,WKDW,,Staunton (VA),38.175556,-79.07,,0.12,,6480,293,131,,,,,,41989,,, +900,USA,en,WYCV,,Granite Falls (NC),35.786111,-81.416667,,0.251,,6815,292,131,,,,,,43510,,, +900,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Macheng (HU),31.183333,115.033333,,10,,8458,57,132,,,,,,36200746,,, +900,CHN,zh,CNR 1,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,2025-1805,1234567,,,36200750,,, +900,CHN,zh,CNR 1,,Tuquan/NMTS728 (NM),45.383333,121.6,,1,,7537,43,132,,2025-1805,1234567,,,36201251,,, +900,CHN,zh,Nanjing RGD Jingji Pinl,,Nanjing/Gulizhen (JS),31.868167,118.671889,,10,,8600,54,132,,0000-2400,1234567,,,48771,,, +900,USA,,WKXV,,Knoxville (TN),35.981111,-83.9875,,0.258,,6961,294,132,,,,,,42102,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Xixia (HE),33.283333,111.466667,,3,,8068,58,133,,,,,,36200739,,, +900,DOM,,HIFK R Super Mega,,Neiba (brc),18.466667,-71.416667,,1,,7574,272,133,,,,,,52237,,, +900,CHN,,Baoji JGD,,Baoji/Xiamaying (SA),34.344167,107.231111,,1,,7729,60,134,,,,,,48754,,, +900,CHN,,Chengde RGD Traffic,,Chengde/HBTS1084 (HB),40.966667,117.933333,,1,,7748,49,134,,,,,,36200347,,, +900,CLM,es,HJEY La Voz de Cali (Todelar),,Cali (val),3.45465,-76.458383,,10,,9218,266,134,,,,,,37425,,, +900,MEX,es,XEWB-AM W R,,Veracruz (vcz),19.214139,-96.173903,,10,,9155,292,134,,,,,,45012,,, +900,USA,,WFIA,,Louisville (KY),38.265833,-85.713889,,0.162,,6884,297,134,,,,,,41383,,, +900,USA,,WJTH,,Calhoun (GA),34.461111,-84.895556,,0.266,,7140,294,134,,,,,,41934,,, +900,USA,en,WLSI,,Pikeville (KY),37.465833,-82.551111,,0.125,,6753,295,134,,,,,,42235,,, +900,VTN,vi,VOV H Tĩnh R,,H Tĩnh (hth),18.333333,105.9,,10,,9035,71,134,,0400-0500,1234567,8,,51642,,, +900,VTN,vi,VOV H Tĩnh R,,H Tĩnh (hth),18.333333,105.9,,10,,9035,71,134,,1000-1100,1234567,8,,51642,,, +900,VTN,vi,VOV1,,H Tĩnh (hth),18.333333,105.9,,10,,9035,71,134,,0500-0600,1234567,8,,51642,,, +900,VTN,vi,VOV1,,H Tĩnh (hth),18.333333,105.9,,10,,9035,71,134,,1100-1200,1234567,8,,51642,,, +900,CHN,,Hebei RGD Wenyi Guangbo,,Baoding (HB),38.85,115.55,,1,,7809,51,135,,,,,,36200345,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Yongcheng (HE),33.933333,116.366667,,3,,8288,54,135,,,,,,36200735,,, +900,CHN,,Liaoning RGD Jingji Tai,,Chaoyang (LN),41.566667,120.466667,,1,,7822,47,135,,,,,,36200346,,, +900,CHN,zh,CRI News R,,Beijing (BJ),39.933333,116.383333,,1,,7759,50,135,,0000-2400,1234567,,,48755,,, +900,B,pt,ZYI455 Rdio Difusora Arco-:ris,,Araputanga (MT),-15.465133,-58.354728,,10,,9740,241,136,,,,,,36901567,,, +900,CHN,,Hebei RGD Wenyi Guangbo,,Shijiazhuang (HB),37.833333,114.666667,,1,,7851,53,136,,,,,,48776,,, +900,CHN,,Liaoning RGD Jingji Tai,,Huludao (LN),40.716667,121,,1,,7925,47,136,,,,,,36200753,,, +900,CHN,,Qinhuangdao JGD,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,2055-????,1234567,,,48773,,, +900,CHN,,Tangshan RGD Cao Fei Dian,,Tangshan (HB),39.6679,118.284117,,1,,7881,49,136,,,,,,36200742,,, +900,CHN,zh,CNR 1,,Liaoyuan (JL),42.866667,125.166667,,1,,7930,43,136,,2025-1805,1234567,,,36200748,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Qitaihe (HL),45.779167,131.041944,,1,,7918,37,136,,0855-1500,1234567,,,36200743,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Qitaihe (HL),45.779167,131.041944,,1,,7918,37,136,,2100-0600,1234567,,,36200743,,, +900,EQA,,HCVA1,,Quito (pic),-0.191606,-78.524292,,10,,9679,266,136,,,,,,37157,,, +900,J,ja,JOHO HBC Hokkaido Hoso,,Hakodate (hok),41.847828,140.676044,,5,,8678,33,136,,0000-2400,1234567,0,,48809,,, +900,USA,,WKDA,,Lebanon (TN),36.206667,-86.267222,,0.136,,7083,296,136,,,,,,20016072,,, +900,USA,en,WJLG,,Savannah (GA),32.074722,-81.071389,,0.152,,7091,289,136,,,,,,41894,,, +900,CHN,,Benxi RGD Transportation,,Benxi (LN),41.166667,123.633333,,1,,8013,45,137,,,,,,48756,,, +900,CHN,,Haicheng RGD,,Haicheng (LN),40.85,122.75,,1,,7999,45,137,,,,,,48762,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Linzhou (HE),36.066667,113.816667,,1,,7958,54,137,,,,,,36200747,,, +900,DOM,es,HIEN R Puerto Plata,,San Felipe de Puerto Plata (ppl),19.800644,-70.708911,,0.25,,7412,273,137,,0900-0400,1234567,,,37221,,, +900,J,,JOHF BSS Sanin Hoso,,Yonago (chg-tot),35.440556,133.297778,,5,,9001,41,137,,0000-2400,1234567,,,48811,,, +900,J,ja,JOZR RKC Kochi Hoso,,Kochi (shi-koc),33.578333,133.6,,5,,9195,42,137,,0000-2400,1234567,,,48810,,, +900,NCG,,YNRT R Tiempo,,Managua (mng),12.216667,-86.283333,,5,,9120,280,137,,1050-0400,1234567,,,45241,,, +900,USA,,WBML,,Macon (N) (GA),32.849444,-83.601667,,0.15,,7190,292,137,,,,,,40882,,, +900,B,pt,ZYI431 Rdio Integrao,,Primavera do Leste (MT),-15.521222,-54.276839,,5,,9507,237,138,,,,,,36901561,,, +900,B,pt,ZYL207 Rdio Imbiara,,Arax/Serra Morena (MG),-19.590539,-46.968772,,5,,9494,229,138,,,,,,36901562,,, +900,CHN,,Yanji RGD,,Yanji=Yeon'gil (JL),42.9,129.5,,1,,8122,40,138,,,,,,48781,,, +900,USA,,KFAL,,Fulton (MO),38.866111,-91.954167,,0.135,,7206,302,138,,,,,,38371,,, +900,USA,,WATV,,Birmingham (AL),33.536389,-86.884167,,0.158,,7340,294,138,,,,,,40763,,, +900,USA,,WGOK,,Mobile (AL),30.708611,-88.064722,,0.38,,7649,293,138,,,,,,41545,,, +900,EQA,,HCOF4,,Chone (man),-0.7,-80.15,,5,,9834,267,139,,,,,,37049,,, +900,MEX,es,XEOK-AM,,Monterrey (nvl),25.688083,-100.249208,,2.5,,8832,299,139,,,,,,44492,,, +900,PRU,,OBX4X R Felicidad,,Lima (lim),-12.083333,-77.066667,,10,,10626,257,139,,0900-0500,1234567,,,40399,,, +900,B,pt,ZYH488 Rdio Sisal de Conceico do Coite,,Conceio do Coit/Fazenda Poco (BA),-11.556256,-39.302231,,1,,8318,227,140,,,,,,36901553,,, +900,CHN,,Hubei RGD Shenghuo Pindao,,Yingcheng (HU),30.95,113.55,,1,,8393,58,141,,,,,,36200736,,, +900,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Hong'an (HU),31.283333,114.616667,,1,,8425,57,141,,,,,,36200755,,, +900,CHN,,Lianyungang RGD Music & Trafic,,Lianyungang (JS),34.666111,119.155278,,1,,8374,52,141,,,,,,48766,,, +900,PHL,,DWNE-AM,,Cabanatuan City (nve),15.556389,121.092222,,5,,10233,61,141,,,,,,48816,,, +900,PHL,,DXIP-AM Bantay Radyo,,Davao City/Bangkal (dvs),6.066667,121.066667,,10,,11105,67,141,,????-1250,1234567,,,48815,,, +900,CHN,,Hunan JGD,,Changsha (HN),28.15,112.75,,1,,8594,60,142,,2200-1700,1234567,,,48758,,, +900,CHN,,Yancheng RGD Huanghai Mingzhu,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,,,,,36200738,,, +900,CHN,,Zhenjiang JGD,,Zhenjiang (JS),32.216667,119.433333,,1,,8611,53,142,,,,,,48784,,, +900,MEX,es,XEDT-AM La Reina,,Ciudad Cuauhtmoc (chi),28.418606,-106.825142,,1.5,,8968,305,142,,,,,,43940,,, +900,PHL,tl,DYOW-AM Bombo Radyo,,Roxas City (cpz),11.583333,122.75,,5,,10700,62,142,,2030-1430,1234567,,,48817,,, +900,USA,,KJSK,,Columbus (NE),41.439722,-97.390278,,0.065,,7299,307,142,,,,,,38696,,, +900,CHN,,Anhui RGD Nongchang,,Tunxi (AH),29.716667,118.316667,,1,,8775,55,143,,,,,,36200741,,, +900,CHN,,Wuxi RGD Yinyue=Music,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,????-1800,1234567,,,48778,,, +900,HND,,HRUP6 R Satlite,,La Ceiba (atl),15.766667,-86.95,,1,,8856,282,143,,,,,,37861,,, +900,PNR,es,HOHA Caracol Amrica,,Pedregal (pnm),9.086322,-79.428625,,1,,8928,272,143,,,,,,37689,,, +900,USA,,WOZK,,Ozark (AL),31.455278,-85.682778,,0.07,,7436,292,143,,,,,,42639,,, +900,USA,en,WPKI987,,Durham (NC),36.016806,-78.908611,,0.01,,6638,291,143,,,,,,20010583,,, +900,CAN,en,CBWD,,Donald (BC),51.4875,-117.175278,,0.04,,7344,325,144,,,,,,20109122,,, +900,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Ninghua/FJTS704 (FJ),26.233333,116.6,,1,,8992,59,144,,,,,,36200031,,, +900,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Yongding/SARFT603 (FJ),24.733333,116.733333,,1,,9135,59,144,,,,,,36200030,,, +900,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Youxi/SARFT703 (FJ),26.166667,118.183333,,1,,9090,57,144,,,,,,36200029,,, +900,CHN,,Shenzhen RGD Xianfeng 89.8,,Shenzhen/Shiyan (GD),22.653392,113.895556,,1,,9153,63,144,,,,,,48775,,, +900,CHN,zh,CNR 1,,Jiangmen (GD),22.533333,113.116667,,1,,9117,63,144,,2025-1805,1234567,,,36200752,,, +900,GTM,,TGMA R Amatique,,Puerto Barrios (izb),15.666667,-88.566667,,1,,8972,284,144,,,,,,40510,,, +900,HND,,HRUP4,,Choluteca (cho),13.3,-87.116667,,1,,9082,281,144,,,,,,37860,,, +900,PHL,,DXRZ-AM Radyo Agong,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,2100-1400,1234567,,,48818,,, +900,SLV,es,YSQJ R Tiempo,,San Salvador (ssl),13.716667,-89.216667,,1,,9186,283,144,,,,,,45304,,, +900,USA,,KHOZ,,Harrison (AR),36.243056,-93.111944,,0.062,,7492,300,144,,,,,,38556,,, +900,B,pt,ZYH768 Rio Verde AM,,Rio Verde (GO),-17.744117,-50.960817,,1,,9530,234,145,,,,,,36901566,,, +900,B,pt,ZYJ672 Rdio Alvorada de Rondnia,,Ji-Paran (RO),-10.8625,-61.9,,1,,9534,246,145,,,,,,36901551,,, +900,MEX,es,XEED-AM La Lider,,Ameca (jal),20.558539,-104.046253,,1,,9522,298,145,,,,,,43958,,, +900,ARG,es,LT7 R Provincia,,Corrientes (cn),-27.660847,-58.742289,,2.5,,10888,234,146,,0900-0300,1234567,,,40200,,, +900,CAN,en,CBRK,,Kimberley (BC),49.680278,-115.976389,,0.04,,7463,324,146,,,,,,20109121,,, +900,CAN,en,CBUM,,Nakusp (BC),50.241111,-117.801111,,0.04,,7484,325,146,,,,,,20109120,,, +900,HWA,en,KMVI,,Kahului (HI),20.791667,-156.4725,,5,,11740,343,146,,,,998,,39025,,, +900,INS,id,R Aksi Medan,,Medan (SU-med),3.583333,98.65,,1,,9846,86,146,,,,,,35400130,,, +900,USA,,KBIF,,Fresno (CA),36.691667,-119.679444,,0.5,,8845,319,146,,,,15,,38034,,, +900,USA,en,KKRT,,Wenatchee (WA),47.462222,-120.357778,,0.072,,7845,325,147,,,,,,38752,,, +900,USA,en,WMOP,,Ocala (FL),29.237778,-82.121111,,0.023,,7391,288,147,,,,,,42369,,, +900,BOL,,CP20 R Popular,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1000-0100,1234567,,,51975,,, +900,PNG,,NBC Karai-R.Eastern Highlands,,Goroka (ehd),-6.083333,145.383333,,10,,13675,51,149,,0700-1200,1234567,,,48819,,, +900,USA,,KSGL,,Wichita (KS),37.6925,-97.381667,,0.028,,7616,304,149,,,,,,39352,,, +900,USA,en,WSWN,,Belle Glade (FL),26.711944,-80.683056,,0.022,,7506,285,149,,,,,,43088,,, +900,INS,id,PM2DRO R.Aries Sanggau Perkasa,,Sanggau (KB),0.133333,110.6,,1,,10959,79,150,,,,,,48803,,, +900,PNG,,NBC R West New Britain,,Kimbe (wnb),-5.554272,150.160589,,10,,13866,46,150,,,,,,36100005,,, +900,USA,,KPYN,,Atlanta (TX),33.082778,-94.182778,,0.033,,7823,299,150,,,,,,39181,,, +900,B,pt,ZYL341 Rdio Onda Viva,,Carangola (MG),-20.699872,-42.029089,,0.25,,9355,225,151,,,,,,36901559,,, +900,INS,id,R Sindajaya,,Jakarta/Kampung Beting (BT),-6.096111,106.676944,,1,,11243,86,151,,,,,,35400041,,, +900,B,pt,ZYK211 Rdio Aratiba,,Aratiba (RS),-27.423889,-52.244722,,0.5,,10517,230,152,,,,,,36901569,,, +900,B,pt,ZYK263 ABC AM,,Novo Hamburgo (RS),-29.666667,-51.116667,,0.5,,10672,227,152,,,,,,36901560,,, +900,B,pt,ZYK664 Rdio Jovem Pan,,So Jos do Rio Preto (SP),-20.843128,-49.345853,,0.25,,9739,231,152,,,,,,36901555,,, +900,B,pt,ZYL338 Rdio Vincola,,Andradas (MG),-22.018469,-46.580217,,0.25,,9709,228,152,,,,,,36901554,,, +900,CHL,,CA90 R Manantial,,Copiap (AT),-27.366667,-70.333333,,1,,11537,243,152,,1100-0400,1234567,,,35712,,, +900,INS,id,R Suara Sendang Mas,,Banyumas (JT-ban),-7.516667,109.283333,,1,,11544,84,152,,,,,,48790,,, +900,INS,id,RBK-R Bintoro Karya,,Demak (JT-dem),-6.883333,110.633333,,1,,11581,83,152,,,,,,50424,,, +900,B,pt,ZYK511 R.Difusora de Presidente Prudente,,Presidente Prudente (SP),-22.106328,-51.420628,,0.25,,9970,232,153,,,,,,36901563,,, +900,B,pt,ZYK742 Rdio Globo,,Itapetininga (SP),-23.567,-48.029306,,0.25,,9932,228,153,,,,,,36901558,,, +900,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010585,,, +900,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010586,,, +900,B,pt,ZYJ295 Rdio Unio de Toledo,,Toledo (PR),-24.7,-53.706944,,0.25,,10338,232,154,,,,,,36901565,,, +900,BOL,,CP28 R Central Misionera,,Cochabamba (cbb),-17.366667,-66.166667,,0.25,,10390,246,154,,1100-0100,1234567,,,36688,,, +900,CHL,,CB90 Cablenoticias,,Valparaso (VS),-33.466667,-71.666667,,1,,12146,240,154,,1100-0500,1234567,,,35765,,, +900,ARG,,LRG389 R Municipal,,Veinticinco de Mayo (lp),-37.766667,-67.7,,1,,12288,234,155,,,,,,40005,,, +900,BOL,,CP79 R Em. LV Nacional,,Tarija (trj),-21.55,-64.333333,,0.25,,10655,242,155,,1100-2300,1234567,,,36714,,, +900,CHL,,CC90 R Nuble,,Chilln (BI),-36.566667,-72.116667,,1,,12436,238,155,,1100-0400,1234567,,,35839,,, +900,INS,id,PM6CJG R Gema Nugraha,,Sungai Penuh (JA-jam),-2.083333,101.383333,,0.25,,10530,87,155,,,,,,48805,,, +900,USA,,KALI,,West Covina (CA),34.031667,-117.935,,0.079,,9019,316,155,,,,,,37935,,, +900,B,pt,ZYK303 Rdio So Pedrense,,So Pedro do Sul (RS),-29.6,-54.166667,,0.25,,10822,230,156,,,,,,36901556,,, +900,CHL,,CD90 R LV de la Costa,,Osorno (LL),-40.566667,-73.083333,,1,,12826,236,156,,1030-0400,1234567,,,35921,,, +900,URG,,CW17 R Frontera,,Artigas (ar),-30.416667,-56.466667,,0.25,,11019,231,156,,0900-0300,1234567,,,36763,,, +900,USA,en,WQIC905,,Federal Way (WA),47.327669,-122.312167,,0.01,,7933,326,156,,,,,,20010584,,, +900,AUS,,6BY R West,,Bridgetown/Yornup (WA),-34.058333,116.177222,,2,,14220,99,158,,0000-2400,1234567,,,48749,,, +900,AUS,,8HA,,Alice Springs/South Stuart Hwy (NT),-23.767533,133.872344,,2,,14599,75,159,,0000-2400,1234567,,,48748,,, +900,USA,,KCLW,,Hamilton (TX),31.718889,-98.144167,,0.01,,8175,301,159,,,,,,38177,,, +900,USA,,KREH,,Pecan Grove (TX),29.643889,-96.096111,,0.01,,8234,298,159,,,,,,39236,,, +900,USA,,KFLP,,Floydada (TX),33.972222,-101.35,,0.007,,8162,305,160,,,,,,38406,,, +900,AUS,,2LM,,Lismore (NSW),-28.76425,153.360139,,5,,16257,59,161,,0000-2400,1234567,6,,48751,,, +900,AUS,,2LT,,Lithgow/Wallerawang (NSW),-33.40525,150.101444,,5,,16452,69,161,,0000-2400,1234567,,,48752,,, +900,AUS,,7AD,,Devonport/Don Hill (TAS),-41.162869,146.312,,2,,16771,84,166,,0000-2400,1234567,,,48750,,, +900,NZL,en,4YC Southern Star/RNZ Parliament,,Dunedin/Highcliff (OTA),-45.884167,170.588333,,10,,18673,65,166,,0000-2400,1234567,,,48813,,, +900,NZL,en,The Coast,,Whangarei/Maungakaramea (NTL),-35.820833,174.245833,,2.5,,17965,33,169,,,,,,32500012,,, +905,UKR,,PA,b,Parutyne,46.6875,31.875,,0.025,,1927,98,92,,,,,L1055 ,85787,,, +905,RUS,,UD,b,Buturlino (NN),55.5625,44.958333,,0.025,,2525,66,98,,,,,U1018 ,85788,,, +905,RUS,,ZG,b,Zelenga (Astrakhan province),46.1875,48.625,,0.025,,3094,85,104,,,,,L1050 30.0s,IDx2,85789,, +905,BOL,,CP83 R Norte,,Montero (scz),-17.25,-63.25,,1.5,,10200,244,146,,0930-0200,1234567,,,36718,,, +905,INS,id,RPDKDT2 Sumbawa,,Sumbawa Besar (NB-sum),-8.5,117.433333,,0.25,,12181,78,160,,,,,,35400101,,, +906,RUS,,PE,b,Pechory (PS),57.8125,27.625,,0.025,,1487,56,88,,,,,U1025 15.0s,IDx2,85790,, +909,G,en,BBC R 5 Live,,Brookmans Park (EN-HTS),51.731944,-0.179722,,150,,454,267,40,,0000-2400,1234567,0,,627,,, +909,G,en,BBC R 5 Live,,Moorside Edge (EN-WYK),53.63525,-1.8945,,200,,582,290,40,,0000-2400,1234567,0,,628,,, +909,G,en,BBC R 5 Live,,Clevedon (EN-SOM),51.423667,-2.863944,,50,,642,267,46,,0000-2400,1234567,,,626,,, +909,G,en,BBC R 5 Live,,Westerglen (SC-STL),55.975556,-3.816111,,50,,793,307,48,,0000-2400,1234567,0,,625,,, +909,ROU,de,SRR R Bukarest,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0820-0830,......7,993,,634,,, +909,ROU,de,SRR R Bukarest,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,1200-1300,123456,993,,634,,, +909,ROU,hu,SRR Kolozsvri Rdi,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0600-0800,123456,993,,634,,, +909,ROU,hu,SRR Kolozsvri Rdi,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,1300-1600,1234567,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0355-0600,1234567,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0600-0820,......7,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0800-1200,.....6.,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0800-1200,12345..,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0830-1300,......7,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,1600-2000,1234567,993,,634,,, +909,ROU,ro,SRR R Romnia Actualităţi,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,2000-0355,1234567,993,,634,,, +909,ROU,ro,SRR R Romnia Actualităţi,,Timişoara/Orţişoara (TM),45.967128,21.215467,,50,125,1274,117,53,,0000-2400,1234567,9987,,635,,, +909,G,en,BBC R 5 Live,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,10,,869,293,56,,0000-2400,1234567,,,624,,, +909,E,es,RNE R 5,,Palma/Marratx (BAL-ML),39.633539,2.669078,,10,,1417,193,61,,0000-2400,1234567,2,,616,,, +909,G,en,BBC R 5 Live,,Fareham (EN-HPS),50.849306,-1.226833,,1,,547,258,62,,0000-2400,1234567,,,621,,, +909,G,en,BBC R 5 Live,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0000-2400,1234567,,,623,,, +909,G,en,BBC R 5 Live,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0000-2400,1234567,,,620,,, +909,G,en,BBC R 5 Live,,Whitehaven (EN-CUM),54.539583,-3.586472,,1,,716,296,64,,0000-2400,1234567,,,622,,, +909,ROU,ro,SRR R Constanţa,,Constanţa/Valu lui Traian (CT),44.169306,28.540178,,14,,1854,110,64,,0236-2208,1234567,,,1897,,, +909,G,en,BBC R 5 Live,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,1,,963,295,67,,0000-2400,1234567,0,,619,,, +909,G,en,BBC R 5 Live,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.25,,596,258,69,,0000-2400,1234567,,,618,,, +909,D,de,biteXpress,D,Dillberg (bay),49.323611,11.380556,,0.1,,467,130,72,,0000-2400,1234567,,,2000012,,, +909,GRC,el,Studio 1 Aggelos,,Athnai/Votanikos (att-ath),37.995833,23.659722,,1,,2063,133,78,,0000-2400,1234567,29,,3400030,,, +909,ALG,ar,Chane 1,,Tamanrasset (11),22.802778,5.539722,,10,,3260,182,80,,0000-2400,1234567,,,615,,, +909,YEM,ar,YGCRT Yemen R,,Al-Hudaydah (hud),14.826778,43.1363,,750,160,5263,128,81,,1500-2300,1234567,,,636,,, +909,IRQ,ar,Republic of Iraq R,,Al-Baṣrah (bsr),30.473833,47.795111,,25,,4128,109,84,,,,,,10500001,,, +909,G,en,BBC R 5 Live,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-2400,1234567,,,617,,, +909,IRN,fa,IRIB R Iran,,Lar (frs),27.65325,54.294389,,50,,4784,106,88,,0000-2400,1234567,,,1791,,, +909,NIG,,FRCN Abuja,,Gwagwalada (fct),8.931139,7.073175,,50,,4802,179,88,,0430-2300,1234567,,,2420,,, +909,AFG,,R Kunduz,,Kunduz=Qonduz (kdz),36.733333,68.866667,,10,,5071,84,98,,,,,,11000007,,, +909,AFG,,R Afghanistan,,Kabul (kab),34.516667,69.2,,10,,5256,86,100,,0100-1830,1234567,,,46807,,, +909,CHN,,Xinjiang RGD,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,10,,5377,67,101,,2330-1800,1234567,,,36200028,,, +909,CHN,,Xinjiang RGD,,Hoboksar/XJTS8116 (XJ),46.783333,85.716667,,10,,5473,63,102,,2330-1800,1234567,,,36200729,,, +909,SSD,,Southern Sudan R,,Malakal (unl),9.530017,31.663006,,5,,5257,145,103,,,,,,47143,,, +909,IND,,AIR North,,Gorakhpur (UP),26.876389,83.465,,100,,6822,82,105,,0020-1740,1234567,,,48832,,, +909,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.313889,32.622556,,20,,6257,148,107,,0300-2105,1234567,,,2421,,, +909,CHN,,Xinjiang RGD,,Zhaosu/SARFT8113 (XJ),43.148333,81.119444,,1,,5433,69,111,,2300-1800,1234567,,,48826,,, +909,BOT,SHO,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,SAf,1700-1730,1234567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,SAf,0300-0700,1234567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,SAf,1600-1700,1234567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,SAf,1800-2100,1234567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,ZWE,1720-1740,....567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,ZWE,1730-1800,1234...,9997,,2360,,, +909,CHN,,Qinghai RGD,,Xining (QH),36.583333,101.833333,,10,,7220,62,119,,0925-1505,1234567,,,48829,,, +909,CHN,,Qinghai RGD,,Xining (QH),36.583333,101.833333,,10,,7220,62,119,,2220-0600,1234567,,,48829,,, +909,CHN,,Tianjin Xinwen Guangbo,,Yangliuqing (TJ),39.139406,117.026567,,50,,7862,50,119,,2155-1800,1234567,,,48827,,, +909,CHN,,CNR 6 Shenzhou zhi Sheng,,Quanzhou/SARFT641 (FJ),24.894206,118.809083,,300,120,9242,58,120,,2155-1605,1234567,,,48825,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Hongyuan/SCTS537 (SC),32.788625,102.550411,,10,,7578,64,123,,,,,,36200730,,, +909,CHN,,Yichun RGD,,Yichun (HL),47.777222,128.843611,,7.5,,7640,37,125,,,,,,48830,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Zigong/SCTS507 (SC),29.45,104.666667,,10,,7991,65,127,,2155-1605,1234567,,,48831,,, +909,CHN,,Tonghua RGD News,,Tonghua (JL),41.683333,125.75,,10,,8066,43,128,,,,,,48828,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Wanzhou (CQ),30.808333,108.366667,,10,,8100,62,128,,,,,,36200726,,, +909,THA,,Sor. Wor. Thor. (R Thailand),,Surin (sur),14.95,103.533333,,25,,9177,75,130,,2200-1600,1234567,,,48846,,, +909,KOR,,HLQY KBS 1 R,,Gumi (gsb),36.117778,128.354167,,10,,8707,44,133,,0000-2400,1234567,,,48838,,, +909,THA,,Sor. Wor. Thor. (R Thailand),,Loei (loe),17.466667,101.716667,,10,,8837,75,133,,,,,,52405,,, +909,J,ja,JOCB NHK2,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,10,,9194,39,134,,2030-1500,1.....7,0,,48837,,, +909,J,ja,JOCB NHK2,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,10,,9194,39,134,,2030-1635,.2345..,0,,48837,,, +909,J,ja,JOCB NHK2,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,10,,9194,39,134,,2030-1640,.....6.,0,,48837,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Guangyuan (SC),32.433333,105.816667,,1,,7807,62,135,,,,,,36200731,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Maoxian/SCTS545 (SC),31,103.4,,1,,7781,65,135,,,,,,36200727,,, +909,J,,JOVX STV, Sapporo TV Hoso,,Abashiri (hok),44,144.25,,5,,8590,30,135,,0000-2400,1234567,,,48835,, +909,TWN,,Fu Hsing Kuangpo Tientai 1,,Taipei (TPS),25.089572,121.512272,,10,,9378,56,135,,0000-2400,1234567,,,48849,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Leshan/SCTS525 (SC),29.616667,103.666667,,1,,7915,66,136,,,,,,36200728,,, +909,PHL,,DZEA-AM Radyo Totoo,,Laoag City/Nalbo (iln),18.188611,120.578056,,5,,9960,60,140,,2100-1400,1234567,,,48843,,, +909,PHL,,DYSP-AM Super Radyo,,Puerto Princesa (plw),9.770556,118.753056,,5,,10621,66,142,,0000-2400,1234567,,,48844,,, +909,PHL,,DYLA-AM,,Cebu City/Mambaling (ceb),10.2829,123.873556,,5,,10888,62,143,,????-1600,1234567,,,48842,,, +909,INS,id,RRI Pro-1,,Sorong (PB-srg),-0.823778,131.233056,,5,,12368,62,148,,2100-1530,1234567,,,48834,,, +909,J,,STV, Sapporo TV Hoso,,Engaru (hok),44.066667,143.516667,,0.1,,8558,30,152,,0000-2400,1234567,,,48836,, +909,INS,id,RBS-R Blora Sakti,,Blora (JT-blo),-7.153217,111.580289,,1,,11668,82,153,,,,91,,35400002,,, +909,NZL,en,2XD Southern Star/RNZ Parliament,,Napier/Opapa (HKB),-39.797222,176.675,,5,045 225,18456,32,168,,0000-2400,1234567,,,48840,,, +910,UKR,,GE,b,Helmiaziv,49.8125,31.875,,0.025,,1792,88,91,,,,,U1014 ,IDx2 + 25 gap,85791,, +910,RUS,,M,b,Tver / Migalovo (TV),56.8125,35.708333,,0.025,,1948,63,92,,,,,,85794,,, +910,RUS,,K,b,Tver / Migalovo (TV),56.8125,35.791667,,0.025,,1953,63,93,,,,,U1044 ,85792,,, +910,RUS,,KZ,b,Millerovo (RO),48.9375,40.291667,,0.025,,2399,85,97,,,,,U1040 ,IDx2+4gap,85793,, +910,RUS,,UJ,b,Millerovo (RO),48.9375,40.291667,,0.025,,2399,85,97,,,,15,L1020 U1050 ,IDx2+5gap,85795,, +910,USA,en,WAEI,,Bangor (D) (ME),44.780833,-68.747778,,5,,5351,293,104,,,,,,20012548,,, +910,USA,en,WAEI,,Bangor (N) (ME),44.780833,-68.748333,,5,,5351,293,104,,,,996,,40628,,, +910,USA,,WFDF,,Farmington Hills (MI),42.065833,-83.394167,,25,,6446,299,108,,,,11,,41367,,, +910,USA,es,WLAT,,New Britain (CT),41.716111,-72.810556,,5,,5821,292,108,,,,,,42126,,, +910,CAN,en,CKDQ,,Drumheller (AB),51.040833,-113.293056,,50,,7230,323,112,,,,9972,,36295,,, +910,USA,en,WLTP,,Marietta (D) (OH),39.363333,-81.502778,,5,,6540,295,115,,1200-2400,1234567,,,20012522,,, +910,CUB,es,R Metropolitana,,Villa Mara (ch),23.1,-82.283333,,75,,7915,284,117,,,,,,36456,,, +910,USA,,WRKL,,New City (NY),41.181111,-74.048056,,0.8,,5938,292,117,,,,,,42868,,, +910,USA,,KCJB,,Minot (ND),48.2025,-101.348333,,5,,6937,314,119,,,,,,38161,,, +910,USA,,WRNL,,Richmond (VA),37.613889,-77.514722,,1.5,,6425,291,119,,,,,,42890,,, +910,USA,,WSBA,,York (PA),39.999167,-76.745278,,1,,6195,293,119,,,,,,42954,,, +910,ALS,,KIYU,,Galena (AK),64.688333,-156.724722,,5,,6947,352,120,,0000-2400,1234567,,,38653,,, +910,VEN,,YVRQ R Q 910,,Maiquetia (vgs),10.6,-66.95,,50,,7946,263,120,,0000-2400,1234567,989,,45447,,, +910,CUB,es,R Cadena Agramonte,,Camagey/CTOM1 (cm),21.362211,-77.958222,,25,,7773,279,121,,,,1,,31600001,,, +910,USA,,WBZU,,Scranton (PA),41.409444,-75.666944,,0.44,,6023,294,121,,,,,,41482,,, +910,USA,,WSUI,,Iowa City (IA),41.523889,-91.503056,,4,,6963,303,121,,,,10,,43082,,, +910,PTR,,WPRP,,Ponce (PR),17.990833,-66.63,,4.4,,7287,268,123,,0000-2400,1234567,,,42731,,, +910,USA,en,WRFV,,Valdosta (GA),30.8725,-83.343333,,5,,7335,290,123,,,,,,41458,,, +910,DOM,,HILB R 91 La Grande,,Bonao (mnl),18.916667,-70.416667,,5,,7467,272,125,,0930-0300,1234567,94,,1970,,, +910,USA,,WJCW,,Johnson City (TN),36.410278,-82.453611,,1,,6831,294,125,,,,,,41857,,, +910,USA,,WTWD,,Plant City (FL),27.990556,-82.208611,,5,,7500,287,125,,,,,,43236,,, +910,B,pt,ZYH645 Rdio Caiara,,Sobral/Fazenda Cisne (CE),-3.700783,-40.316933,,4,,7599,231,127,,,,,,36901578,,, +910,USA,,WOLI,,Spartanburg (SC),35.019444,-82.01,,0.89,,6914,292,127,,,,,,43048,,, +910,CLM,es,HJMY R Insular,,San Andrs (sap),12.567689,-81.707767,,30,,8780,276,128,,,,,,37577,,, +910,USA,,KJJQ,,Volga (SD),44.250278,-96.956111,,0.5,,7041,309,130,,,,,,38674,,, +910,USA,,WTMZ,,Dorchester Terr.-Bre (SC),32.871944,-79.976111,,0.5,,6956,289,130,,,,,,43181,,, +910,CLM,es,HJDO,,Medelln (ant),6.296531,-75.601939,,15,,8910,268,132,,,,,,37395,,, +910,USA,,KVIS,,Miami (OK),36.890833,-94.783333,,1,,7535,302,132,,,,,,39629,,, +910,USA,,WALT,,Meridian (MS),32.393611,-88.668889,,1,,7546,295,132,,,,9953,,40700,,, +910,USA,,WAVL,,Apollo (PA),40.583611,-79.526111,,0.069,,6324,295,132,,,,,,40774,,, +910,USA,,WDOR,,Sturgeon Bay (WI),44.827222,-87.3575,,0.102,,6466,304,132,,,,,,41197,,, +910,USA,en,KMTT r:KNRK-HD2,,Vancouver (WA),45.558333,-122.4825,,4.3,,8110,325,132,,,,,,39107,,, +910,CLM,es,HJS52,,Florencia (caq),1.616667,-75.616667,,15,,9322,265,133,,,,,,35901435,,, +910,USA,,WFJX,,Roanoke (VA),37.268333,-79.912778,,0.084,,6604,293,134,,,,,,43445,,, +910,USA,,WHSM,,Hayward (WI),45.985278,-91.539722,,0.075,,6609,307,134,,,,,,41687,,, +910,B,pt,ZYI785 Rdio Liberdade AM,,Caruaru (PE),-8.234333,-35.975394,,1,,7825,225,135,,,,,,36901570,,, +910,USA,,KPOF,,Denver (CO),39.846389,-105.033056,,1,,7843,311,135,,,,0,,39153,,, +910,B,pt,ZYI935 Rdio CBN,,Teresina (PI),-5.084722,-42.75,,1,,7864,233,136,,,,,,36901571,,, +910,CUB,es,R Reloj,,Bolondrn (ma),22.785586,-81.475728,,1,,7888,283,136,,,,,,31600134,,, +910,HTI,,4VAN,,Kenscoff (oue),18.45,-72.283333,,0.5,,7634,273,136,,,,,,35629,,, +910,HTI,,R Kiskeya,,Port-au-Prince (oue),18.516667,-72.316667,,0.5,,7631,273,136,,,,,,52110,,, +910,HTI,,R Neg Combit,,Port-au-Prince (oue),18.516667,-72.316667,,0.5,,7631,273,136,,,,,,52111,,, +910,USA,,KGME,i,Phoenix (AZ),33.533333,-112.121667,,5,,8780,312,136,,,,3,,38492,,, +910,USA,,KRIO,,McAllen (TX),26.297778,-98.207222,,5,,8655,297,136,,,,,,39249,,, +910,USA,,WSFE,,Burnside (KY),37.029444,-84.606389,,0.115,,6915,296,136,,,,,,41995,,, +910,USA,en,KKSF,,Oakland (CA),37.895833,-122.323611,,5,,8845,321,136,,,,19,,38986,,, +910,USA,en,WLTP,,Marietta (N) (OH),39.289722,-81.526667,,0.04,,6547,295,136,,0000-1200,1234567,,,42246,,, +910,CTR,,TIQM BBN 910 AM,,San Jos (sjs),9.966667,-84.066667,,5,,9167,277,137,,0000-2400,1234567,,,52147,,, +910,NCG,,R Jinotega,,Jinotega (jtg),13.1,-86,,5,,9024,280,137,,,,,,52202,,, +910,USA,,KECR,,El Cajon (D) (CA),32.895556,-116.925556,,5,,9079,315,137,,,,,,20012571,,, +910,USA,,KECR,,El Cajon (N) (CA),32.895,-116.925278,,5,,9079,315,137,,,,,,38312,,, +910,USA,en,WPYT547,,Rochester (NY),43.156667,-77.6575,,0.01,,6018,296,137,,,,,,20010588,,, +910,ARG,es,LR5 La Red AM,,Buenos Aires (df),-34.761194,-58.505889,,25,,11526,230,138,,0000-2400,1234567,992,,39926,,, +910,B,pt,ZYH763 Rdio Paranaba,,Itumbiara/Rua Morumbi 23 (GO),-18.421339,-49.233867,,5,,9501,232,138,,,,,,36901582,,, +910,USA,,KWDZ,,Salt Lake City (UT),40.513333,-112.006389,,1,,8130,316,138,,,,,,39699,,, +910,USA,,WGTO,,Cassopolis (MI),41.953889,-86.016389,,0.035,,6611,300,138,,,,,,41576,,, +910,USA,,WEPG,,South Pittsburg (TN),35.015833,-85.7,,0.095,,7145,295,139,,,,,,41316,,, +910,USA,,WMRB,,Columbia (TN),35.606667,-87.025,,0.101,,7179,296,139,,,,,,42381,,, +910,GTM,,TGKL R Emperador,,Ciudad de Guatemala (gut),14.166667,-90.5,,2.5,,9231,284,140,,1130-0600,1234567,,,40503,,, +910,HND,,HRVS,,Tegucigalpa (fmz),14.066667,-87.216667,,2.5,,9022,282,140,,,,,,37867,,, +910,MEX,es,XEOL-AM R Impacto,,Teziutln (pue),19.810372,-97.384903,,2.5,,9179,293,140,,,,,,44494,,, +910,USA,,KATH,,Frisco (TX),33.215278,-96.899167,,0.5,,7972,301,140,,,,,,39783,,, +910,USA,,WAKO,,Lawrenceville (IL),38.723056,-87.653611,,0.05,,6964,299,140,,,,,,40688,,, +910,CLM,es,HJTT Ondas Porvenir,,Samac (boy),5.483333,-73.483333,,1,,8837,265,143,,,,96,,1971,,, +910,USA,,WZMG,,Pepperell (AL),32.657222,-85.424167,,0.056,,7321,293,143,,,,,,43578,,, +910,USA,en,WPKI987,,Durham (NC),36.016806,-78.908611,,0.01,,6638,291,143,,,,,,20010587,,, +910,MEX,es,XEACM-AM R xitos,,Cardenas (tab),17.98755,-93.202347,,1,,9073,289,144,,,,,,43695,,, +910,MEX,es,XEAO-AM R Mexicana,,Mexicali (bcn),32.643822,-115.506411,,1,,9033,314,144,,,,105,,43720,,, +910,USA,,KBIM,,Roswell (NM),33.440556,-104.526389,,0.5,,8386,306,144,,,,,,38035,,, +910,USA,,KBLG,,Billings (MT),45.753611,-108.516111,,0.064,,7492,317,144,,,,,,38054,,, +910,USA,,KOXR,,Oxnard (CA),34.282778,-119.126667,,1,,9051,317,144,,,,,,39119,,, +910,EQA,,HCRB1,,Quito (pic),-0.183333,-78.5,,1.2,,9676,266,145,,,,,,37070,,, +910,ARG,es,LRA23 R Nacional,,San Juan (sj),-31.507072,-68.612689,,5,,11796,239,146,,0855-0400,1234567,,,39943,,, +910,MEX,es,XENAY-AM La Poderosa,,Bucerias (nay),20.753383,-105.266364,,1,,9577,299,146,,,,,,44439,,, +910,EQA,,HCBO2,,Espectaculo (gua),-2.2,-79.783333,,1,,9941,266,147,,,,,,36866,,, +910,USA,,KRAK,,Hesperia (CA),34.388611,-117.391389,,0.5,,8959,316,147,,,,,,39218,,, +910,B,pt,ZYN206 Rdio Globo,,Juiz de Fora (MG),-21.754361,-43.325989,,0.5,,9522,225,148,,,,,,36901576,,, +910,USA,,KINA,,Salina (KS),38.764444,-97.541667,,0.029,,7533,305,148,,,,,,38616,,, +910,USA,,KNAF,,Fredericksburg (TX),30.286667,-98.882778,,0.174,,8344,300,148,,,,,,38959,,, +910,USA,en,WUBR,,Baton Rouge (LA),30.635278,-91.165556,,0.051,,7848,295,148,,,,,,42449,,, +910,B,pt,ZYK536 Rdio Globo,,Piracicaba (SP),-22.710178,-47.701097,,0.5,,9833,228,149,,,,,,36901574,,, +910,EQA,es,HCGR5 R Mundial,,Riobamba (chi),-1.216667,-78.65,,0.5,,9777,265,149,,,,,,36959,,, +910,B,pt,ZYL292 Rdio Tefilo Otoni,,Tefilo Otoni (MG),-17.843578,-41.517764,,0.25,,9049,226,150,,,,,,36901575,,, +910,B,pt,ZYH804 Rdio Cidade de Jaragu,,Jaragu/Fazenda Rio Vermelho (GO),-15.783958,-49.319403,,0.25,,9253,233,151,,,,,,36901572,,, +910,B,pt,ZYL346 R.Difusora Industrial de Nova Ser,,Nova Serrana (MG),-19.879828,-44.930222,,0.25,,9418,228,151,,,,,,36901580,,, +910,B,pt,ZYK320 RVA-Rdio Venncio Aires,,Venncio Aires (RS),-29.599722,-52.184722,,0.5,,10720,228,152,,,,,,36901577,,, +910,B,pt,ZYK763 Rdio Princesa Monte Azul,,Monte Azul Paulista (SP),-20.912136,-48.648211,,0.25,,9709,230,152,,,,,,36901579,,, +910,B,pt,ZYJ207 Nova AM,,Apucarana (PR),-23.523611,-51.450556,,0.25,,10106,231,153,,,,,,36901581,,, +910,B,pt,ZYJ824 Rdio Rainha das Quedas,,Abelardo Luz (SC),-26.598333,-52.342778,,0.25,,10444,230,154,,,,,,36901583,,, +910,B,pt,ZYJ811 Rdio Difusora de Iara,,Iara (SC),-28.698611,-49.311944,,0.25,,10489,227,155,,,,,,36901573,,, +910,CHL,es,CC91 RTL-R Tropical Latina,,Talca (ML),-35.4694,-71.738586,,1,,12321,239,155,,,,,,36800024,,, +910,MEX,es,XEACN-AM R FrmulaBajo,,Len (gua),21.137431,-101.623344,,0.1,,9323,297,155,,,,,,43696,,, +910,USA,,KURY,,Brookings (OR),42.042778,-124.243611,,0.037,,8520,325,156,,,,,,39595,,, +914,RUS,,SX,b,Moskva/Vnukovo (MV),55.604167,37.291667,,0.025,,2044,67,93,,,,,L986 ,86795,,, +915,RUS,,UF,b,Koshki (SA),54.229167,50.458333,,0.025,,2898,68,102,,,,,U393 ,IDx3,85796,, +917,NIG,,R Gotel Yola,,Jabura/Modire (adw),9.3057,12.473378,,50,,4791,171,88,,0500-2305,1234567,3,,6200001,,, +918,SVN,de,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,2135-2140,1234567,9978,,643,,, +918,SVN,en,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,2130-2135,1234567,9978,,643,,, +918,SVN,sl,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,0000-2130,1.34567,9978,,643,,, +918,SVN,sl,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,0300-2130,.2.....,9978,,643,,, +918,SVN,sl,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,2140-2300,1......,9978,,643,,, +918,SVN,sl,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,2140-2400,0.234567,9978,,643,,, +918,E,es,R Intereconoma,,Madrid/Pozuelo (Ctra. Humera) (MAD-M),40.444483,-3.777936,,50,,1512,215,55,,0000-2400,1234567,13,,638,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0310-0400,12345..,0,,642,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0610-0700,.....67,0,,642,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0810-0900,.....67,0,,642,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0910-1000,12345..,0,,642,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,1410-1500,12345..,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0200-0310,12345..,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0200-0610,.....67,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0400-0910,12345..,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0700-0810,.....67,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0900-2200,.....67,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,1000-1410,12345..,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,1500-2200,12345..,0,,642,,, +918,RUS,ru,R Mayak,,Makhachkala (DA),42.970839,47.341183,,50,,3187,92,72,,0300-2200,1234567,,,641,,, +918,EGY,ar,ERTU Al-Barnameg al-Aam,,Bawiti=Al Bawiti (gzh),28.338528,28.931722,,10,,3234,136,79,,0000-2400,1234567,,,1830,,, +918,ETH,,Dimtsi Weghata,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,,,,,9600022,,, +918,IRN,fa,IRIB R Kerman,,Jiroft (krm),28.618611,57.793333,,50,,4937,101,89,,0000-2400,1234567,,,639,,, +918,NIG,,R Benue,,Makurdi (bnu),7.700878,8.544389,,50,,4942,177,89,,0430-2305,1234567,,,2424,,, +918,IND,,AIR North,,Suratgarh (RJ),29.301667,73.912222,,300,,5978,87,92,,0025-0350,123456,,,48860,,, +918,IND,,AIR North,,Suratgarh (RJ),29.301667,73.912222,,300,,5978,87,92,,0025-0445,......7,,,48860,,, +918,IND,,AIR North,,Suratgarh (RJ),29.301667,73.912222,,300,,5978,87,92,,0700-0940,1234567,,,48860,,, +918,IND,,AIR North,,Suratgarh (RJ),29.301667,73.912222,,300,,5978,87,92,,1200-1740,1234567,,,48860,,, +918,ETH,,ERTA Ethiopia National R,,unknown,10.5,40.5,,1,,5550,134,113,,0300-0600,1234567,,,9600003,,, +918,ETH,,ERTA Ethiopia National R,,unknown,10.5,40.5,,1,,5550,134,113,,0800-2100,1234567,,,9600003,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Jinan (SD),36.700278,117.089444,,200,,8081,52,115,,2125-1700,1234567,996,,36200027,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Yiyuan (SD),36.228778,117.998556,,25,,8172,51,125,,2125-1700,1234567,,,36201236,,, +918,KOR,ko,KBS 1 R,,Yeoncheon (gye),38.020556,127.065278,,50,,8467,44,125,,0000-2400,1234567,,,48877,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,2125-1700,1234567,,,36200176,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Tai'an/SDTS616 (SD),36.199722,117.100833,,10,,8126,52,128,,2125-1700,1234567,,,36200180,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Yantai (SD),37.5675,121.360556,,10,,8227,48,129,,2125-1700,1234567,,,48859,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2125-1700,1234567,,,36200179,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Zaozhuang (SD),34.841667,117.578222,,10,,8273,53,130,,2125-1700,1234567,,,36201237,,, +918,PHL,,DZSR-AM PBS Sports R,,Marulas (ncr),14.678611,120.976633,,50,,10307,62,131,,2100-1500,1234567,,,48879,,, +918,CHN,,CNR 2,,several locations,34.95,104.5,,1,,7515,61,132,,2058-1602,1234567,,,48857,,, +918,THA,th,Sor. Wor. Phor.,,Chiang Mai (cmi),18.951667,98.970833,,10,,8527,76,132,,????-1605,1234567,,,48885,,, +918,THA,th,Sor. Wor. Thor. (R Thailand),,Nakhon Pathom (npt),13.788889,100.325556,,10,,9065,78,134,,0000-2400,1234567,,,48884,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Dezhou (SD),37.4575,116.313333,,1,,7973,52,137,,2125-1700,1234567,,,36200175,,, +918,J,ja,JOEF YBC Yamagata Hoso,,Yamagata (toh-yam),38.243333,140.288056,,5,,9021,35,137,,0000-2400,1234567,,,48875,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Binzhou (SD),37.366667,118.016667,,1,,8071,51,138,,2125-1700,1234567,,,36200174,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,2125-1700,1234567,,,36200177,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Shanxian (SD),34.8,116.083333,,1,,8195,54,139,,2125-1700,1234567,,,36200725,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Laiwu (SD),35.078333,118.328333,,1,,8293,52,140,,2125-1700,1234567,,,36200178,,, +918,J,,JOPM KRY Yamaguchi Hoso,,Shimonoseki (chu-yam),33.967222,130.936667,,1,,9034,44,144,,0000-2400,1234567,,,48874,,, +918,J,,JOPN KRY, Yamaguchi Hoso,,Iwakuni (chg-yam),34.133333,132.216667,,1,,9078,43,144,,0000-2400,1234567,,,48873,, +918,J,ja,YBC Yamagata Hoso,,Shinjo (toh-yam),38.783333,140.316667,,1,,8969,35,144,,,,,,31400064,,, +918,J,ja,YBC Yamagata Hoso,,Tsuruoka,38.733333,139.866667,,1,,8956,35,144,,,,,,31400066,,, +918,J,ja,YBC Yamagata Hoso,,Yonezawa (toh-yam),37.9,140.1,,1,,9048,35,144,,,,,,31400065,,, +918,J,ja,YBC Yamagata Hoso,,Sakata (toh-yam),38.916667,139.833333,,0.5,,8937,35,146,,,,,,31400063,,, +918,INS,id,R Mustaqbal,,Bekasi/Pebayuran (JB-kbk),-6.2125,107.283333,,1,,11294,85,151,,????-1415,1234567,,,35400131,,, +918,INS,id,RSS-R.Suara Selomanik,,Banjarnegara (JT-bng),-7.383333,109.683333,,1,,11560,84,152,,,,,,48862,,, +918,J,ja,YBC Yamagata Hoso,,Oguni (toh-yam),38.066667,139.75,,0.1,,9018,35,154,,,,,,31400062,,, +918,AUS,,6NA R West,,Narrogin (WA),-32.961111,117.216667,,2,,14207,97,158,,0000-2400,1234567,,,48855,,, +918,AUS,,4VL,,Charleville (QLD),-26.396694,146.221569,,2,,15618,65,163,,0000-2400,1234567,,,48853,,, +918,AUS,,2XL,,Cooma/Polo Flat (NSW),-36.238056,149.15055,,2,,16613,74,166,,0000-2400,1234567,,,48854,,, +918,NZL,en,RNZ National,,New Plymouth/Bell Block (TKI),-39.033111,174.131556,,2.5,,18280,38,170,,0000-2400,1234567,,,32500011,,, +918,NZL,en,RNZ National,,Timaru/Fairview (CAN),-44.402778,171.144444,,2.5,,18601,59,171,,0000-2400,1234567,,,48878,,, +920,BLR,,G,b,Grodno / Obukhovo (HR),53.604167,24.041667,,0.025,,1192,75,85,,,,1,L1008 U1011 ,ID+6 gap,85797,, +920,RUS,,GW,b,Primorsko Ahtarsk (KD),46.0625,38.208333,,0.025,,2390,94,97,,,,,,85798,,, +920,RUS,,HZ,b,Primorsko Ahtarsk (KD),46.0625,38.208333,,0.025,,2390,94,97,,,,,U1005 15.0s,IDx2,85799,, +920,USA,en,WHJJ,i,Providence (RI),41.781389,-71.331944,,5,,5722,291,107,,,,9966,,41649,,, +920,CAN,en,CFRY,,Portage La Prairie (MB),49.969444,-98.375556,,15,,6646,314,112,,,,997,,36009,,, +920,VEN,,YVQX R Nueva Esparta,,Porlamar (nes),10.939125,-63.924467,,50,,7711,261,117,,0800-0400,1234567,3,,45437,,, +920,USA,,WCHR,,Trenton (NJ),40.255278,-74.862222,,1,,6057,292,118,,,,,,42689,,, +920,USA,en,KDHL,,Faribault (MN),44.263056,-93.274722,,5,,6841,307,118,,,,0,,38259,,, +920,CAN,,CKNX,,Wingham (ON),43.843056,-81.347778,,1,,6190,299,119,,,,999,,36352,,, +920,USA,,WYBY,,Cortland (NY),42.556111,-76.155,,0.5,,5969,295,120,,,,,,42067,,, +920,USA,es,WURA,,Quantico (VA),38.568056,-77.338889,,0.97,,6341,292,121,,,,9955,,20000067,,, +920,USA,,WKVA,,Lewistown (PA),40.579167,-77.571667,,0.5,,6203,294,122,,,,,,42084,,, +920,ALS,,KSRM,,Soldotna (AK),60.513611,-151.188611,,5,,7334,348,123,,0000-2400,1234567,991,,39411,,, +920,USA,,WOKY,,Milwaukee (WI),42.975556,-88.065556,,1,,6650,302,124,,,,,,42590,,, +920,USA,en,WDMC,,Melbourne (D) (FL),28.136389,-80.688889,,5,,7389,286,124,,,,9935,,42301,,, +920,USA,,KWAD,,Wadena (D) (MN),46.370278,-95.153611,,1,,6772,309,125,,,,,,20012585,,, +920,USA,,KWAD,,Wadena (N) (MN),46.370278,-95.153889,,1,,6772,309,125,,,,,,39682,,, +920,USA,,WBAA,,West Lafayette (IN),40.341389,-86.883611,,1,,6789,300,125,,,,,,40794,,, +920,USA,,WIRD,,Lake Placid (NY),44.26,-74.022778,,0.087,,5715,295,125,,,,,,41798,,, +920,USA,,KARN,,Little Rock (AR),34.772222,-92.245833,,5,,7564,299,126,,,,,,37965,,, +920,USA,,KYFR,,Shenandoah (IA),40.622778,-95.245,,2.5,,7248,305,126,,,,9991,,39848,,, +920,USA,,WMNI,,Columbus (OH),39.892222,-83.0475,,0.5,,6593,297,126,,,,,,42359,,, +920,USA,,WYMB,,Manning (SC),33.69,-80.273056,,1,,6910,290,126,,,,,,43528,,, +920,USA,,WGHQ,,Kingston (NY),41.885833,-73.970833,,0.078,,5881,293,127,,,,,,41516,,, +920,USA,,WMPL,,Hancock (MI),47.101389,-88.590556,,0.206,,6360,306,127,,,,,,42375,,, +920,USA,en,KXLY,,Spokane (WA),47.608611,-117.373611,,5,,7712,323,127,,,,2,,39804,,, +920,USA,en,WMMN,,Fairmont (WV),39.4675,-80.205556,,0.2,,6451,295,128,,,,,,42353,,, +920,VEN,,YVQU R San Carlos,,San Carlos (cjd),9.666667,-68.666667,,10,,8143,264,128,,0955-0400,1234567,999,,51674,,, +920,PRG,es,ZP1 R Nacional de Paraguay,,Asuncin/Capiat (asu),-25.404742,-57.459836,,100,,10609,235,129,,0000-2400,1234567,997,,45504,,, +920,USA,en,WMOK,,Metropolis (D) (IL),37.153333,-88.709167,,1,,7155,298,129,,1300-0100,1234567,,,42367,,, +920,USA,en,WMOK,,Metropolis (N) (IL),37.148889,-88.636111,,0.75,,7151,298,130,,0100-1300,1234567,,,20012521,,, +920,CAN,xx,CBQI,,Fort Norman (NT),64.908333,-125.541111,,0.099,,6369,338,131,,,,,,20109124,,, +920,CLM,es,HJJN Ondas del Mayo,,Pasto (nar),1.616667,-77.116667,,25,,9424,266,131,,,,5,,37511,,, +920,USA,,WGNU,,Granite City (IL),38.759167,-90.05,,0.5,,7104,300,131,,,,,,41539,,, +920,USA,en,WDMC,,Melbourne (N) (FL),28.136944,-80.689722,,1,,7389,286,131,,,,,,20016298,,, +920,CLM,es,HJAA Emisora Fuentes,,Cartagena (bol),10.466667,-75.416667,,10,,8534,270,132,,,,55,,37323,,, +920,EQA,,HCAN1,,Tulcan (car),0.816667,-77.666667,,25,,9532,266,132,,,,,,36848,,, +920,USA,,WGKA,,Atlanta (GA),33.809722,-84.356389,,0.49,,7159,293,132,,,,,,41524,,, +920,B,pt,ZYI893 Rdio Educadora de Parnaba,,Parnaba (PI),-2.955894,-41.723725,,1,,7602,233,133,,,,,,36901589,,, +920,CLM,es,HJSJ,,Ibagu (tol),4.433333,-75.233333,,10,,9048,266,134,,,,,,35901439,,, +920,NCG,es,YNW R Mundial,,Managua (mng),12.162661,-86.229931,,10,,9122,280,134,,1100-0400,1234567,31,,45256,,, +920,USA,,WBOX,,Bogalusa (LA),30.841389,-89.835,,1,,7748,294,134,,,,,,40894,,, +920,CUB,es,R Progreso,,Piln (gr),19.900169,-77.361178,,1,,7856,278,136,,,,,,36616,,, +920,EQA,,HCAB1 Cadena Democracia,,Quito (pic),-0.351111,-78.539167,,10,,9694,266,136,,,,999,,36880,,, +920,USA,en,WPCM,,Burlington-Graham (NC),36.097222,-79.484167,,0.055,,6668,291,136,,,,,,42658,,, +920,B,pt,ZYI697 Rdio Cidade Verde,,Joo Pessoa (PB),-7.112028,-34.953889,,0.5,,7664,225,137,,,,,,36901592,,, +920,USA,,KVEL,,Vernal (UT),40.491667,-109.529167,,1,,8012,314,137,,,,,,39619,,, +920,B,pt,ZYH519 Rdio Novo Tempo,,Salvador/Ilha de Itaparica (BA),-12.973906,-38.625225,,2,,8426,225,138,,,,30,,36901586,,, +920,DOM,,HIBA R 9-20 AM-Stereo Power,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,0000-2400,1234567,,,37216,,, +920,B,pt,ZYJ494 Rdio Sociedade de Volta Redonda,,Volta Redonda (RJ),-22.473167,-44.059303,,5,,9628,226,139,,,,,,36901593,,, +920,USA,,KLMR,,Lamar (CO),38.114722,-102.621111,,0.5,,7868,308,139,,,,16,,38829,,, +920,USA,,KSHO,,Lebanon (OR),44.575,-122.920833,,1,,8222,325,139,,,,,,39355,,, +920,USA,,KYST,,Texas City (TX),29.4175,-94.936667,,1,,8184,297,139,,,,,,39872,,, +920,USA,,WTCW,,Whitesburg (KY),37.146111,-82.766944,,0.043,,6792,294,139,,,,,,43124,,, +920,USA,en,KVIN,,Ceres (N) (CA),37.631944,-120.751667,,2.5,,8802,320,139,,0300-1500,1234567,9995,,51940,,, +920,B,pt,ZYJ600 Rdio Currais Novos,,Currais Novos (RN),-6.261111,-36.509722,,0.25,,7655,227,140,,,,,,36901596,,, +920,USA,,KKLS,,Rapid City (SD),44.061944,-103.175556,,0.111,,7380,312,140,,,,,,38730,,, +920,USA,,WPTL,,Canton (NC),35.520833,-82.806667,,0.038,,6924,293,140,,,,,,42745,,, +920,GTM,,TGRS R Sur,,Escuintla (esl),14.3,-90.766667,,2,,9237,284,141,,,,,,40537,,, +920,USA,,WLIV,,Livingston (TN),36.374444,-85.305556,,0.038,,7011,295,141,,,,,,42175,,, +920,USA,en,WPDE847,,Romulus (MI),42.230583,-83.366333,,0.01,,6432,299,141,,,,,,20010589,,, +920,EQA,,HCRU3 Compania Rfonica Orense,,Machala (oro),-3.266667,-79.966667,,3,,10047,265,142,,,,,,37117,,, +920,MEX,es,XELCM-AM La Mexicana,,Ciudad Lzaro Crdenas (mic),18.0024,-102.243442,,2.5,,9644,296,142,,,,,,44296,,, +920,B,pt,ZYI895 Rdio Difusora de Picos,,Picos (PI),-7.066833,-41.467244,,0.25,,7988,231,143,,,,,,36901584,,, +920,CAN,en,CBWF,,Mackenzie (BC),55.331111,-123.095833,,0.04,,7198,331,143,,,,,,20109125,,, +920,USA,,KIHM,,Reno (NV),39.511389,-119.714167,,0.85,,8576,320,143,,,,9979,,38593,,, +920,CAN,en,CBKG,,Granisle (BC),54.881389,-126.201667,,0.04,,7342,332,144,,,,,,20109123,,, +920,HND,,HRZB,,San Pedro Sula (cor),15.516667,-88.016667,,1,,8949,283,144,,,,,,37887,,, +920,MEX,es,XEHQ-AM R Capital,,Hermosillo (son),29.054167,-110.911111,,1,,9133,308,144,,,,,,44135,,, +920,MEX,es,XERCA-AM Planeta,,Gmez Palacio (dur),25.581361,-103.480083,,1,,9033,301,144,,,,,,44786,,, +920,PNR,es,HOS56 R Mia de Los Santos,,Los Santos (lsn),7.939506,-80.418608,,1,,9096,272,144,,0000-2400,1234567,25,,37729,,, +920,USA,,KFLB,,Odessa (TX),31.820556,-102.428333,,0.5,,8413,304,144,,,,,,38401,,, +920,USA,,KPSI,,Palm Springs (CA),33.858056,-116.494167,,1,,8967,315,144,,,,,,39169,,, +920,USA,,WGOL,,Russellville (AL),34.513889,-87.715278,,0.04,,7311,296,144,,,,,,41546,,, +920,USA,,WHJD,,Hazlehurst (GA),31.854167,-82.566667,,0.035,,7205,290,144,,,,,,43327,,, +920,MEX,es,XELT-AM R Mara,,Guadalajara (jal),20.731567,-103.318717,,1,,9462,298,145,,,,,,44324,,, +920,MEX,es,XERE-AM La Comadre,,Salvatierra (gua),20.3,-100.816667,,1,,9349,296,145,,,,,,44663,,, +920,MEX,es,XEZAR-AM La Z,,Puebla (pue),19.10955,-98.222408,,1,,9294,293,145,,,,,,45122,,, +920,B,pt,ZYK348 Rdio Tramanda,,Tramanda (RS),-29.985,-50.190833,,2,,10656,227,146,,,,,,36901587,,, +920,MEX,es,XETEB-AM Voces,,Tenabo (cam),20.032222,-90.237536,,0.5,,8702,288,146,,,,,,44808,,, +920,USA,,KBAD,,Las Vegas (NV),36.190278,-115.176389,,0.5,,8683,315,146,,,,,,38000,,, +920,USA,en,KVIN,,Ceres (D) (CA),37.596944,-121.070833,,0.5,,8820,320,146,,1500-0300,1234567,324,,39627,,, +920,B,pt,ZYI207 Rdio Cultura,,Linhares (ES),-19.417414,-40.069761,,0.5,,9135,224,147,,,,,,36901590,,, +920,B,pt,ZYK775 Rdio Nacional Gospel,,Cotia/Rua Almerim 435 (SP),-23.607703,-46.823639,,1,,9875,227,147,,,,,,36901585,,, +920,USA,,KQBU,,El Paso (TX),31.735833,-106.373333,,0.36,,8641,307,147,,,,,,38067,,, +920,USA,,KVEC,,San Luis Obispo (CA),35.299444,-120.673333,,0.5,,9024,319,147,,,,,,39618,,, +920,B,pt,ZYL271 Rdio Cultura Rio Branco,,Visconde do Rio Branco (MG),-21.030206,-42.8363,,0.5,,9427,225,148,,,,,,36901591,,, +920,MEX,es,XECQ-AM,,Culiacn (sin),24.819072,-107.474594,,0.5,,9334,303,148,,,,,,43869,,, +920,MEX,es,XEMJ-AM La Fronteriza,,Piedras Negras (coa),28.690844,-100.522467,,0.25,,8581,301,148,,,,,,44384,,, +920,USA,,KWYS,,West Yellowstone (MT),44.648889,-111.097222,,0.038,,7710,318,148,,,,,,39775,,, +920,B,pt,ZYH476 Rdio Educadora Santana,,Caetit (BA),-14.056236,-42.485761,,0.25,,8725,228,149,,,,,,36901597,,, +920,BOL,,R Encuentro,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,1000-0200,1234567,99,,51977,,, +920,MEX,es,XEQD-AM 920 Noticias,,Chihuahua (chi),28.629844,-105.965764,,0.25,,8900,305,149,,,,,,44601,,, +920,USA,,KSVA,,Albuquerque (NM),35.132222,-106.621667,,0.13,,8347,309,149,,,,,,39434,,, +920,B,pt,ZYH788 Rdio Vale da Serra,,So Lus de Montes Belos (GO),-16.516228,-50.389097,,0.25,,9382,234,151,,,,,,36901594,,, +920,B,pt,ZYK584 Rdio Imperador AM,,Franca (SP),-20.564317,-47.392339,,0.25,,9610,229,152,,,,,,36901588,,, +920,B,pt,ZYK769 Rdio Bandeirantes,,Penpolis (SP),-21.402122,-50.070442,,0.25,,9831,231,152,,,,,,36901595,,, +920,USA,en,WQCF602,,Miami (FL),25.592389,-80.511006,,0.01,,7588,284,153,,,,,,20010590,,, +920,BOL,,R San Andrs de Topohoco,,Topohoco (lpz),-17.175,-68.452778,,0.3,,10517,248,154,,,,,,51976,,, +920,MEX,es,XEPNX-AM R Costa,,Santiago Pinotepa Nacional (oax),16.345986,-98.069019,,0.13,,9531,291,154,,,,,,44566,,, +920,USA,en,KGTK,,Olympia (WA),47.062222,-122.830278,,0.007,,7979,326,158,,,,,,38513,,, +920,CHL,,CD92 R 920,,Temuco (AR),-38.666667,-72.566667,,0.25,,12639,237,162,,,,,,35922,,, +925,RUS,,A,b,Lipetsk-2 (LI),52.645833,39.458333,,0.025,,2224,75,95,,,,,L1020 U925 5.0s,86796,,, +925,RUS,,B,b,Lipetsk-2 (LI),52.645833,39.458333,,0.025,,2224,75,95,,,,,,86797,,, +925,UKR,,ZW,b,Simferopol / Zavodskoe (KR),44.854167,34.041667,,0.025,,2174,101,95,,,,,,85800,,, +926,UKR,,U,b,Chuguyev,49.8125,36.625,,0.025,,2116,85,94,,,,,15.0s,IDx2 +11 gap,86798,, +927,TUR,tr,TRT 1 Radyo Bir,,Izmir/Torbali (ege-izm),38.24975,27.258139,,100,,2231,125,59,,0400-1600,1234567,994,,653,,, +927,ALG,ar,R Adrar,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,0800-1930,1234567,9995,,645,,, +927,ALG,ar,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2000-2030,1234567,9995,,645,,, +927,ALG,ar,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2100-2130,1234567,9995,,645,,, +927,ALG,ar,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2230-2300,1234567,9995,,645,,, +927,ALG,ar,R Coran,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2300-0200,1234567,9995,,645,,, +927,ALG,en,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2130-2200,1234567,9995,,645,,, +927,ALG,es,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,1930-2000,1234567,9995,,645,,, +927,ALG,es,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2200-2230,1234567,9995,,645,,, +927,ALG,fr,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2030-2100,1234567,9995,,645,,, +927,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,0100-0200,1234567,43,,34200002,,, +927,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1300-1400,1234567,43,,34200002,,, +927,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1500-1600,1234567,43,,34200002,,, +927,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1800-1900,1234567,43,,34200002,,, +927,TJK,fa,NHK R Japan,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1630-1700,1234567,43,,34200002,,, +927,TJK,ru,NHK R Japan,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1600-1630,1234567,43,,34200002,,, +927,TJK,ur,NHK R Japan,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1700-1745,1234567,43,,34200002,,, +927,TJK,ur,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1400-1500,1234567,43,,34200002,,, +927,IRN,fa,IRIB R Lorestan,,Dorud (lrn),33.489822,49.124256,,10,,3973,104,87,,0000-2400,1234567,9996,,648,,, +927,ARS,ar,BSKSA Idha'atu-i Jeddah,,Al-Hofuf=Al-Hufuf (shy),25.273611,49.581944,,20,,4681,113,91,,0000-2400,1234567,9792,,47079,,, +927,PAK,,Azad Kashmir R,,Mirpur (ajk),33.107292,73.730272,,100,,5670,84,94,,1500-1830,1234567,0,,48970,,, +927,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Malindi (coa),-3.099514,40.107167,,100,,6908,141,106,,0200-2110,1234567,,,1965,,, +927,CHN,,rmqi RGD Health & Life,,rmqi/Hongguangshan (XJ),45.886389,87.602222,,1,,5648,63,113,,,,,,36200714,,, +927,IND,,AIR South,,Visakhapatnam A (AP),17.6825,83.160278,,100,,7567,89,113,,0030-0430,123456,,,48912,,, +927,IND,,AIR South,,Visakhapatnam A (AP),17.6825,83.160278,,100,,7567,89,113,,0030-0500,......7,,,48912,,, +927,IND,,AIR South,,Visakhapatnam A (AP),17.6825,83.160278,,100,,7567,89,113,,0545-0930,1234567,,,48912,,, +927,IND,,AIR South,,Visakhapatnam A (AP),17.6825,83.160278,,100,,7567,89,113,,1130-1805,1234567,,,48912,,, +927,CHN,,Guizhou RGD Xinwen Guangbo,,Kaili/GZTS706 (GZ),26.583333,107.983333,,200,,8444,65,118,,2150-1605,1234567,,,48898,,, +927,CHN,zh,Beijing Sport R,,Beijing/BJTS804 (BJ),39.953928,116.495494,,50,,7763,50,118,,2155-1600,1234567,,,48891,,, +927,CHN,,Liaoning RGD Xiangcun Tai,,Shenyang (LN),41.9,123.6,,50,,7945,44,120,,,,,,48904,,, +927,CHN,mn,Xilingol RGD Mongyol,,Xilinhot/NMTS680 (NM),43.970778,116.108611,,10,,7393,48,121,,,,,,48905,,, +927,KRE,ko,KCBS Chosun Jungang Pangsong,,Sariwon (hwb),38.479222,125.477583,,50,,8348,45,124,,2000-1800,1234567,,,48919,,, +927,CHN,,CNR 6 Shenzhou zhi Sheng,,Xiamen=Amoy/FJTS202 (FJ),24.488583,118.03575,,100,100,9234,58,125,,2155-1605,1234567,,,48890,,, +927,CHN,,Xingtai JGD,,Xingtai (HB),37.066667,114.516667,,13,,7910,53,125,,,,,,36200712,,, +927,CHN,,Jilin Shi RGD,,Jilin Shi (JL),43.801944,126.556389,,10,,7908,41,126,,,,,,48896,,, +927,KOR,,HLSU KBS 1 R,,Hadong (gsb),35.065556,127.753611,,50,,8777,45,126,,0000-2400,1234567,,,48921,,, +927,CHN,,Shangqiu RGD City Channel,,Shangqiu (HE),34.45,115.65,,10,,8202,54,129,,,,,,48902,,, +927,CHN,,Guizhou RGD Xinwen Guangbo,,Liuzhi/GZTS763 (GZ),26.216667,105.472222,,10,,8320,67,130,,,,,,36200717,,, +927,CHN,zh,Hubei RGD Chutian Xinwen,,Suizhou (HU),31.715,113.344722,,10,,8314,58,130,,2000-1630,1234567,,,48906,,, +927,CHN,,Hubei RGD Shenghuo Pindao,,Xianning (HU),29.866667,114.283333,,10,,8532,58,132,,,,,,48897,,, +927,KOR,,HLQA KBS 1 R,,Buyeo (ccb),36.291667,126.947222,,10,,8623,45,132,,0000-2400,1234567,,,48920,,, +927,THA,th,Sor. Wor. Sor.,,Chanthaburi/Bang Kacha (ctb),12.576278,102.069278,,20,,9288,78,132,,2130-1700,1234567,,,48932,,, +927,CHN,,Jiangxi RGD Shenghuo Pinl,,Nanchang (JX),28.7,115.9,,10,,8730,58,133,,,,,,48899,,, +927,THA,th,Sor. Wor. Thor. (R Thailand),,Nong Khai (nki),18.387222,103.598611,,10,,8880,73,133,,,,,,52406,,, +927,CHN,,Guangzhou Traffic/Finance BS/Caijing 927,,Guangzhou/SARFT808 (GD),23.106389,113.26,,10,,9074,63,134,,,,,,48893,,, +927,CHN,,Harbin JGD Fashion & Music,,Harbin (HL),45.816667,126.866667,,1,,7736,40,134,,,,,,36200724,,, +927,INS,id,RRI Pro-4,,Pekanbaru (RI-pek),0.469167,101.376389,,25,,10305,86,134,,2200-1700,1234567,,,48913,,, +927,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Shuangyashan (HL),46.533333,131.083333,,1,,7849,37,135,,0855-1500,1234567,,,36200715,,, +927,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Shuangyashan (HL),46.533333,131.083333,,1,,7849,37,135,,2100-0600,1234567,,,36200715,,, +927,CHN,,Xiaogan RGD,,Xiaogan Shi (HU),30.916667,113.9,,3,,8417,58,136,,,,,,48908,,, +927,J,,JOFG NHK1,,Fukui (chu-fuk),36.040833,136.233611,,5,,9072,39,137,,0000-2400,1234567,,,48914,,, +927,J,ja,JOKG NHK1,,Kofu (chu-yam),35.658889,138.535278,,5,,9207,37,137,,0000-2400,1234567,,,48916,,, +927,PHL,,DWBS-AM Commando R,,Vigan City (ils),17.562778,120.387222,,10,,10006,61,137,,,,,,48931,,, +927,CHN,,Changzhou JGD,,Changzhou (JS),31.763611,119.776944,,3,,8670,53,138,,,,,,36200348,,, +927,CHN,,Xuchang JGD,,Xuchang (HE),34.033333,113.8,,1,,8136,56,138,,,,,,48909,,, +927,CHN,,Hunchun RGD,,Hunchun (JL),42.866667,130.35,,1,,8163,39,139,,,,,,48894,,, +927,CHN,,Yunnan RGD Jiaotong zhi Sheng,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200718,,, +927,CHN,zh,Nanyang JGD,,Nanyang (HE),32.975278,112.498333,,1,,8155,57,139,,2130-1600,1234567,,,48900,,, +927,CHN,,Yunnan RGD Xinwen Guangbo,,Kaiyuan (YN),23.70675,103.269139,,1,,8397,70,141,,,,,,36200719,,, +927,J,,NHK R 1,,Wakkanai (hok),45.383333,141.716667,,1,,8364,31,141,,0000-2400,1234567,,,48918,,, +927,CHN,zh,CNR 1,,Yiyang (HN),28.6,112.35,,1,,8531,60,142,,2025-1805,1234567,,,36200660,,, +927,CHN,zh,CNR 1,,Yueyang/Kangwang (HN),29.133333,113.116667,,1,,8529,59,142,,2025-1805,1234567,,,48910,,, +927,CHN,zh,CNR 2,,Bose/GXTS242 (GX),23.890278,106.608889,,1,,8593,67,142,,2100-1602,1234567,,,36201282,,, +927,KOR,,HLQD KBS 1 R,,Hongcheon (gan),37.681944,127.874722,,1,,8537,44,142,,0000-2400,1234567,,,48922,,, +927,PHL,,DZLG-AM Bombo Radyo,,Legazpi City/Tahao Road (aby),13.15,123.742778,,5,,10614,60,142,,????-1500,1234567,,,48928,,, +927,CHN,,Changshu JGD,,Changshu (JS),31.65,120.733333,,1,,8733,52,143,,2150-1430,1234567,,,48892,,, +927,CHN,,Huzhou JGD,,Huzhou (ZJ),30.838611,120.221111,,1,,8779,53,143,,,,,,36200722,,, +927,CHN,,Jiangxi RGD Dushi Guangbo,,Yichun (JX),27.8,114.416667,,1,,8724,59,143,,,,,,36200711,,, +927,CHN,,Jiangxi RGD Minsheng Guangbo,,Ji'an/JXTS841 (JX),27.1725,114.969167,,1,,8812,59,143,,,,,,36200721,,, +927,CHN,,Jianxi RGD Power R,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,,,,,36200720,,, +927,CHN,,Jianxi RGD Power R,,Shangrao (JX),28.466667,117.983333,,1,,8870,56,143,,,,,,36200716,,, +927,CHN,,Shanghai RGD Gushi Guangbo,,Shanghai/Yangpu (SH),31.280083,121.526233,,1,,8809,52,143,,,,,,48901,,, +927,CHN,zh,CNR 1,,Zhuzhou (HN),27.833333,113.15,,1,,8646,60,143,,2025-1805,1234567,,,36200658,,, +927,CHN,zh,CNR 2,,Nanning (GX),22.8,108.3,,1,,8795,67,143,,2100-1602,1234567,,,47838,,, +927,CHN,zh,CNR 2,,Wuzhou (GX),23.482222,111.293611,,1,,8921,64,143,,2100-1602,1234567,,,36200713,,, +927,CHN,,Taizhou JGD,,Taizhou (ZJ),28.612222,121.415278,,1,,9048,54,144,,2047-1703,1234567,,,48907,,, +927,CHN,,Zhujiang JGD Pearl R,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,,,,,36200659,,, +927,J,ja,NHK R 1,,Tsuyama (chg-oka),35.058394,134.006953,,1,,9070,41,144,,0000-2400,1234567,,,48917,,, +927,PHL,,DXDA-AM Radyo Agusan,,San Francisco (ags),8.533333,125.95,,5,,11176,61,144,,,,,,48929,,, +927,PHL,,DXMD-AM Radyo Agong,,General Santos City (sco),6.118333,125.159722,,5,,11353,63,144,,1900-1500,1234567,,,48926,,, +927,PHL,,DXMM-AM R.Totoo/R.Veritas,,Jolo/Gandasuli (slu),6.083333,121.016667,,5,,11100,67,144,,2100-1300,1234567,,,48927,,, +927,J,,NHK R 1,,Isahaya (kyu-nag),32.833333,130,,0.1,,9097,45,154,,0000-2400,1234567,,,48915,,, +927,AUS,,6NR Curtin R,,Perth/Bentley (WA),-32.012389,115.890278,,2,,14044,97,157,,0000-2400,1234567,,,48889,,, +927,AUS,en,4CC Zinc 927,,Gladstone (QLD),-23.859444,151.240139,,5,,15691,57,159,,0000-2400,1234567,9976,,48887,,, +927,AUS,en,3UZ Sport 927,,Melbourne/Lower Plenty (VIC),-37.741344,145.112239,,5,,16455,80,161,,0000-2400,1234567,,,48888,,, +927,NZL,,2ZA Newstalk ZB,,Palmerston North/Kairanga (MWT),-40.509167,175.570556,,2,,18483,37,172,,0000-2400,1234567,,,48924,,, +930,BLR,,W,b,Minsk/Mačuličy (MI),53.770833,27.625,,0.025,,1428,74,87,,,,990,L1020 3.2s,85802,,, +930,CAN,en,CFBC,,Saint John (NB),45.231944,-66.103333,,50,,5154,292,92,,,,9998,,35936,,, +930,RUS,,OO,b,Zernograd,46.8125,40.375,,0.025,,2500,90,98,,,,,U977 10.0s,86799,,, +930,USA,en,WPKX,i,Rochester (NH),43.286944,-70.948611,,5,,5592,293,106,,,,1,,41520,,, +930,CAN,en,CJCA,,Edmonton (AB),53.383333,-113.476667,,50,,7027,325,110,,,,9972,,36148,,, +930,USA,es,WPAT,,Paterson (NJ),40.849722,-74.183056,,5,,5970,292,110,,,,20,,42645,,, +930,USA,,WBEN,,Buffalo/Grand Island (NY),42.978333,-78.9575,,5,,6110,297,111,,,,38,,40832,,, +930,USA,,WFMD,,Frederick (MD),39.415278,-77.461389,,2.5,,6284,293,116,,,,,,41406,,, +930,USA,,WAUR,,Sandwich (IL),41.607222,-88.453056,,4.2,,6781,302,119,,,,,,40772,,, +930,VEN,,YVLJ R Maracay,,Maracay (arg),10.216667,-67.45,,50,,8013,264,120,,1000-0600,1234567,,,45366,,, +930,ALS,en,KNSA,,Unalakleet (AK),63.887778,-160.691111,,4.2,,7068,354,121,,,,8,,39016,,, +930,USA,,WEOL,,Elyria (OH),41.269444,-82.004444,,1,,6424,297,121,,,,,,41315,,, +930,USA,,WBCK,,Battle Creek (MI),42.291944,-85.183333,,1,,6535,300,122,,,,,,40823,,, +930,USA,en,WDLX,,Washington (NC),35.526667,-77.075278,,1,,6559,289,123,,,,,,41179,,, +930,USA,en,WFXJ,,Jacksonville (FL),30.285833,-81.747778,,5,,7281,288,123,,,,9990,,41461,,, +930,USA,en,WRVC,,Huntington (WV),38.400833,-82.495,,1,,6676,295,124,,,,,,42934,,, +930,CUB,es,R Surco,,Ciego de vila/CTOM2 (ca),21.857528,-78.732478,,10,,7783,280,125,,,,,,36542,,, +930,HTI,,R Cap-Hatien,,Cap-Hatien (nrd),19.75,-72.2,,5,,7518,274,125,,,,,,52112,,, +930,USA,,WYFQ,,Charlotte (NC),35.266667,-80.901389,,1,,6824,292,125,,,,,,43514,,, +930,PTR,,WYAC,,Cabo Rojo (PR),18.101389,-67.154722,,2.5,,7314,269,126,,0000-2400,1234567,,,43502,,, +930,USA,,KSDN,,Aberdeen (SD),45.424722,-98.5175,,1,,7026,311,127,,,,,,39334,,, +930,USA,,KKIN,,Aitkin (MN),46.540556,-93.656111,,0.36,,6679,309,128,,,,17,,38723,,, +930,USA,,WSFZ,,Jackson (MS),32.386667,-90.163056,,3.1,,7638,296,128,,,,,,42988,,, +930,USA,,WTAD,,Quincy (IL),39.891944,-91.423611,,1,,7091,302,128,,,,,,43099,,, +930,USA,en,WKY,,Oklahoma City (OK),35.561944,-97.5075,,5,,7805,303,128,,,,,,42104,,, +930,USA,en,WLSS,,Sarasota (FL),27.354722,-82.385,,3,,7565,287,128,,,,,,42237,,, +930,USA,,KSEI,,Pocatello (ID),42.962222,-112.497222,,5,,7928,317,129,,,,48,,39339,,, +930,USA,,WKCT,,Bowling Green (KY),37.031389,-86.438333,,0.5,,7027,297,130,,,,,,41976,,, +930,USA,es,WYUS,,Milford (DE),38.9275,-75.488889,,0.081,,6196,291,130,,,,,,43554,,, +930,DOM,,HICK Ondas del Yaque,,Santiago de los Caballeros (sto),19.433333,-70.666667,,1,,7441,272,131,,0945-0400,1234567,,,37230,,, +930,USA,,WIZR,,Johnstown (NY),42.998333,-74.358611,,0.028,,5826,294,131,,,,,,41831,,, +930,ALS,,KTKN,,Ketchikan (AK),55.339444,-131.636667,,1,,7459,336,132,,,,999,,39496,,, +930,B,pt,ZYJ923 R.930 AM-Liberdade de Sergipe,,Aracaju/Fazenda Jardim (SE),-10.894444,-37.169444,,5,,8148,225,132,,,,998,,36901611,,, +930,USA,,KMPT,,East Missoula (MT),46.865833,-114.0825,,1,,7642,321,133,,,,,,38788,,, +930,USA,,KWOC,,Poplar Bluff (MO),36.720833,-90.367778,,0.5,,7290,299,133,,,,,,39738,,, +930,USA,,WHON,,Centerville (IN),39.892222,-84.935556,,0.114,,6708,298,133,,,,,,41677,,, +930,USA,en,WGAD,,Rainbow City (AL),33.985556,-86.0375,,0.5,,7250,294,133,,,,,,41851,,, +930,CLM,es,HJCS La Voz de Bogota (Todelar),,Bogot D. C. (bdc),4.583333,-74.066667,,10,,8956,265,134,,,,999,,37378,,, +930,CUB,es,R Reloj,,Santiago de Cuba/CTOM2 (sc),20.100044,-75.8203,,1,,7735,277,134,,,,,,31600040,,, +930,PNR,es,HOR46 La Nueva Exitosa,,Llano Bonito (pnm),9.034578,-79.4564,,10,,8934,272,134,,0000-2400,1234567,,,52313,,, +930,USA,en,WMGR,,Bainbridge (GA),30.906944,-84.550556,,0.5,,7410,291,134,,,,,,42319,,, +930,B,pt,ZYH646 Rdio Metropolitana de Fortaleza,,Caucaia (CE),-3.726617,-38.641767,,0.5,,7513,230,135,,,,2,,36901612,,, +930,USA,,WHLM,,Bloomsburg (PA),41.016667,-76.462222,,0.018,,6101,294,135,,,,,,41657,,, +930,USA,,WLBL,,Auburndale (WI),44.613333,-90.037222,,0.07,,6634,305,135,,,,9987,,42135,,, +930,USA,,WSEV,,Sevierville (TN),35.878333,-83.555,,0.148,,6942,294,135,,,,,,42982,,, +930,B,pt,ZYH296 Rdio Boas Novas,,Manaus (AM),-3.1,-60.033333,,5,,8709,249,136,,,,,,36901607,,, +930,CUB,es,R Reloj,,Cienfuegos (cf),22.15,-80.433333,,1,,7873,282,136,,,,,,36505,,, +930,CUB,es,R Reloj,,La Jaiba (ma),23.024011,-81.59395,,1,,7876,283,136,,,,13,,36478,,, +930,EQA,,HCCM1,,Quito (pic),-0.166667,-78.466667,,10,,9673,266,136,,,,,,36881,,, +930,USA,,KOGA,,Ogallala (NE),41.1425,-101.713333,,0.5,,7556,309,136,,,,9895,,39062,,, +930,USA,,WLLL,,Lynchburg (VA),37.406944,-79.2325,,0.042,,6550,292,136,,,,,,42186,,, +930,CTR,,TIRCR R Costa Rica,,San Jos (sjs),9.916667,-84.066667,,5,,9171,277,137,,0000-2400,1234567,,,40586,,, +930,USA,es,KHJ,,Los Angeles (CA),34.040556,-118.370556,,5,,9039,316,137,,,,9989,,38543,,, +930,B,pt,ZYJ232 Rdio Cultura,,Curitiba/Alto So Miguel (PR),-25.341417,-49.292083,,10,,10167,228,138,,,,,,36901614,,, +930,B,pt,ZYL229 Rdio de Araguari,,Araguari (MG),-18.618894,-48.213225,,5,,9465,231,138,,,,,,36901608,,, +930,USA,en,KBAI,,Bellingham (WA),48.798056,-122.466944,,0.5,,7798,327,138,,,,10,,38001,,, +930,EQA,,HCBA6 R Ambato,,Ambato (tun),-1.233333,-78.633333,,5,,9778,265,139,,,,985,,36860,,, +930,PRU,es,OAX4E Moderna R Pap,,Lima (lim),-12.166667,-77.066667,,10,,10634,257,139,,0000-2400,1234567,969,,40305,,, +930,MEX,es,XEQS-AM,,Fresnillo (zac),23.141383,-102.832706,,3,,9215,299,140,,,,,,44635,,, +930,SLV,,YSTG,,San Salvador (ssl),13.716667,-89.166667,,2.5,,9182,283,140,,,,,,45326,,, +930,USA,,WWON,,Waynesboro (TN),35.308333,-87.745,,0.091,,7247,296,140,,,,,,43420,,, +930,ARG,,LV7 R Tucumn,,San Miguel del Tucumn (tm),-26.843542,-65.185178,,10,,11182,239,141,,0000-2400,1234567,,,2142,,, +930,MEX,es,XEMK-AM R Mexicana,,Huixtla (cps),15.140394,-92.476572,,2.5,,9276,286,141,,,,,,44385,,, +930,PNR,es,HOK85 Mi Preferida Estreo,,Puerto Armuelles (chq),8.318889,-82.824167,,2,,9226,275,141,,1000-0400,1234567,,,37698,,, +930,PRU,,OBX9V,,Huambo/Caserio Miraflores (ama),-6.431111,-77.529722,,5,,10160,261,141,,,,,,37000078,,, +930,USA,,KLUP,,Terrell Hills (TX),29.518333,-98.406944,,1,,8383,300,141,,,,,,38853,,, +930,USA,,KROE,,Sheridan (WY),44.798333,-106.930833,,0.117,,7501,315,141,,,,,,39280,,, +930,B,pt,ZYH605 Rdio Cetama,,Barbalha (CE),-7.2919,-39.318281,,0.25,,7898,229,142,,,,,,36901604,,, +930,URG,es,CX20 R Monte Carlo,,Montevideo (mo),-34.823472,-56.297222,,10,,11417,228,142,,0000-2400,1234567,2,,36807,,, +930,B,pt,ZYL237 Rdio Globo,,Governador Valadares (MG),-18.864481,-41.966139,,1,,9171,226,144,,,,,,36901621,,, +930,CHL,es,CB93 R Nuevo Mundo,,Santiago/Quilicura (RM),-33.33615,-70.742892,,10,,12080,239,144,,1000-0530,1234567,,,35766,,, +930,GTM,,TGJL Emisoras Unidas Imperial,,San Pedro Carch (avp),15.466667,-90.316667,,1,,9105,285,144,,,,,,40501,,, +930,HND,,HRRC,,San Lorenzo (val),13.4,-87.516667,,1,,9100,281,144,,,,,,37833,,, +930,HTI,,R Echo 2000,,La Valle-de-Jacmel (ses),18.266667,-72.666667,,0.1,,7676,273,144,,,,,,52113,,, +930,MEX,es,XECY-AM R Diversion,,Huejutla de Reyes (hid),21.130833,-98.420833,,1,,9126,294,144,,,,,,43891,,, +930,SLV,,YSTG,,La Paz (paz),13.466667,-88.833333,,1,,9182,282,144,,,,,,45322,,, +930,SLV,,YSTG,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,45325,,, +930,SLV,,YSTG,,Santa Ana (sta),13.966667,-89.516667,,1,,9184,283,144,,,,,,45324,,, +930,SLV,,YSTG,,Sonsonate (ssn),13.716667,-89.716667,,1,,9219,283,144,,,,,,45323,,, +930,B,pt,ZYH802 Rdio Caraba,,Aparecida de Goinia (GO),-16.810697,-49.262756,,1,,9348,233,145,,,,,,36901616,,, +930,B,pt,ZYK230 Rdio Caxias do Sul,,Caxias do Sul/Rua Juca Ramos (RS),-29.141389,-51.139167,,2.5,,10623,228,145,,,,,,36901613,,, +930,MEX,es,XETLA-AM,,Tlaxiaco (oax),17.247281,-97.697317,,1,,9427,292,145,,,,,,44832,,, +930,MEX,es,XEZU-AM La Explosiva,,Zacapu (mic),19.813889,-101.798056,,1,,9453,296,145,,,,,,45160,,, +930,USA,en,KRKY,,Granby (CO),40.040556,-105.936389,,0.121,,7872,311,145,,,,,,39257,,, +930,USA,en,KYAK,,Yakima (WA),46.613333,-120.480833,,0.127,,7930,325,145,,,,97,,39838,,, +930,B,,ZYJ676,,Cacoal (RO),-11.466667,-61.383333,,1,,9557,245,146,,,,,,46139,,, +930,MEX,es,XETTT-AM Magia,,Colima (col),19.257867,-103.725008,,1,,9621,297,146,,,,,,46785,,, +930,B,pt,Rdio Cultura,,Santos (SP),-23.716667,-46.266667,,1,,9858,227,147,,,,90,,36902743,,, +930,B,pt,ZYK652 Rdio Cultura de Santos,,So Vicente/Praa Matteo Bei 128 (SP),-23.947533,-46.398844,,1,,9887,227,147,,,,89,,36901619,,, +930,B,pt,ZYK713 Rdio Cano Nova,,Agudos (SP),-22.420594,-49.039394,,1,,9874,230,147,,,,,,36901606,,, +930,CHL,,CD93 R Reloncavi,,Puerto Montt (LL),-41.466667,-72.916667,,10,,12891,235,147,,1100-0400,1234567,,,35923,,, +930,EQA,,HCVI2 Canal Tropical,,Guayaquil (gua),-2.183333,-79.866667,,1,,9945,266,147,,,,93,,37168,,, +930,B,pt,ZYJ235 Rdio Princesa,,Francisco Beltro (PR),-26.053889,-53.0375,,1,,10429,231,148,,,,,,36901609,,, +930,EQA,,HCUE5,,Colta (mor),-1.75,-78.25,,0.5,,9797,265,149,,,,,,37146,,, +930,MEX,es,XESHT-AM La Poderosa,,Saltillo (coa),25.472367,-101.000983,,0.25,,8897,299,149,,,,,,44742,,, +930,MEX,es,XEUL-AM tomo,,Mrida (yuc),21.048611,-89.632778,,0.2,,8574,288,149,,,,,,44911,,, +930,USA,,KIUP,,Durango (CO),37.305,-107.856944,,0.1,,8216,311,149,,,,,,38646,,, +930,B,pt,ZYL220 Rdio Clube de Campo Belo,,Campo Belo (MG),-20.883333,-45.266667,,0.25,,9532,227,151,,,,,,36901605,,, +930,USA,,KAGI,,Grants Pass (OR),42.437778,-123.3575,,0.123,,8446,324,151,,,,,,37922,,, +930,USA,,KDET,,Center (TX),31.834167,-94.214722,,0.036,,7932,298,151,,,,,,38252,,, +930,ARG,,LV28 R Villa Maria,,Villa Maria (cb),-32.416667,-63.25,,1,,11570,235,152,,0900-0300,1234567,,,40252,,, +930,ARG,,R Nativa,,San Justo (ba),-34.666667,-58.55,,1,,11520,230,152,,,,,,33000079,,, +930,ARG,es,R Alfa,,Villa Ballester (ba),-34.533333,-58.55,,1,,11507,230,152,,,,,,51813,,, +930,B,pt,ZYI423 Rdio Clube de Rondonpolis,,Rondonpolis (MT),-16.508108,-54.616994,,0.25,,9619,237,152,,,,,,36901615,,, +930,B,pt,ZYK500 Rdio Santa F,,Santa F do Sul/Fazenda Bela Vista (SP),-20.217311,-50.949589,,0.25,,9765,232,152,,,,,,36901618,,, +930,B,pt,ZYK503 Rdio Clube de Itapira,,Itapira/Rua Antnio do Rosrio (SP),-22.442617,-46.8126,,0.25,,9762,228,152,,,,,,36901603,,, +930,B,pt,ZYN400 Rdio Jornal,,Pontes e Lacerda (MT),-15.21015,-59.360042,,0.25,,9777,242,152,,,,,,36901598,,, +930,B,pt,ZYI454 Rdio Capital,,Campo Grande (MS),-20.504889,-54.632017,,0.25,,9994,235,153,,,,,,36901620,,, +930,B,pt,ZYJ227 Rdio Cultura,,Rolndia (PR),-23.316667,-51.383333,,0.25,,10083,231,153,,,,,,36901599,,, +930,B,pt,ZYK747 Rdio Jia,,Adamantina (SP),-21.685278,-51.0725,,0.25,,9911,232,153,,,,,,36901601,,, +930,EQA,,HCRR5,,Cuenca (azu),-2.85,-79,,0.2,,9945,265,154,,,,,,37109,,, +930,USA,,KCCC,,Carlsbad (NM),32.405556,-104.189167,,0.06,,8460,305,154,,,,,,38134,,, +930,B,pt,ZYK298 Rdio Santo ngelo AM,,Santo ngelo/Rua So Lourenco (RS),-28.3125,-54.262222,,0.25,,10706,231,155,,,,,,36901617,,, +930,USA,,KAPR,,Douglas (AZ),31.368889,-109.529167,,0.071,,8845,309,155,,,,,,37960,,, +930,USA,,KAFF,,Flagstaff (AZ),35.190556,-111.676944,,0.031,,8604,312,157,,,,9999,,37917,,, +930,USA,,KKXX,,Paradise (CA),39.726944,-121.679167,,0.037,,8640,322,157,,,,99565,,38766,,, +932,RUS,,KR,b,Krasnoarmeysk (SR),51.0625,45.625,,0.025,,2679,77,100,,,,,L1027 U933 ,85803,,, +936,E,es,RNE R 5,,Zaragoza/Cuarte Torrero (RNE) (ARA-Z),41.623267,-0.891094,,25,,1290,208,56,,0000-2400,1234567,2,,657,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0625-0630,12345..,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0650-0700,12345..,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0800-0815,1234567,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1208-1300,12345..,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1230-1300,.....67,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1400-1415,12345..,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0815-1208,12345..,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0815-1230,.....67,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1300-1400,12345..,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1300-2300,.....67,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1415-2300,12345..,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0630-0650,12345..,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0700-0800,12345..,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0711-0800,.....67,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,2300-0625,1234..7,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,2300-0710,....56.,9963,,656,,, +936,E,pt,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0710-0711,12345..,9963,,656,,, +936,I,it,RAI Friuli Venezia Giulia,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,1430-1500,1234567,0,,662,,, +936,I,it,RAI R1,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,0000-2400,1234567,0,,662,,, +936,I,it,RAI Veneto,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,0620-0630,123456,0,,662,,, +936,I,it,RAI Veneto,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,1110-1130,123456,0,,662,,, +936,I,it,RAI Veneto,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,1140-1200,......7,0,,662,,, +936,E,es,RNE R 5,,Alicante/Bacarot (RNE) (VAL-A),38.317689,-0.552594,,10,,1626,202,63,,0000-2400,1234567,4,,655,,, +936,MRC,,SNRT Al Ida Al Amazighia,,Agadir/At Melloul (smd),30.325778,-9.50175,,100,,2750,214,65,,0800-2400,1234567,994,,665,,, +936,SYR,ar,SRTV 1 Dimashk,,Homs=Hims (him),34.791056,36.71515,,200,170,3075,117,65,,0000-2000,1234567,0,,669,,, +936,SYR,ar,SRTV 1 Dimashk,,Homs=Hims (him),34.791056,36.71515,,200,170,3075,117,65,,2030-2400,1234567,0,,669,,, +936,SYR,en,SRTV R Damascus,,Homs=Hims (him),34.791056,36.71515,,200,170,3075,117,65,,2000-2030,1234567,0,,669,,, +936,IRN,fa,IRIB R.Markaze Azerbaijaneh Gharb,,Fesanduz (waz),37.121839,45.841489,,300,,3480,103,67,,0000-2400,1234567,71,,663,,, +936,G,en,Gold,,Chippenham/Naish Hill (EN-WLT),51.416778,-2.076917,,0.18,,589,266,70,,0000-2400,1234567,0,,659,,, +936,EGY,ar,ERTU Al-Barnameg al-Aam,,Salum (mth),31.542278,25.162611,,10,,2747,139,74,,0000-2400,1234567,,,1831,,, +936,RUS,ru,R Rossii,,Matveyevka/SRV5 (OB),53.508333,53.483333,,5,,3110,68,81,,2300-1900,1234567,,,666,,, +936,ARS,ar,BSKSA Al-Quran al-Karim,,Makkah (mkh),21.372511,39.690175,,50,,4451,127,85,,0000-2400,1234567,,,10600005,,, +936,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (riy),24.814,46.863472,,50,,4552,116,86,,0000-2400,1234567,,,47080,,, +936,AFG,,R Zabol,,Qalat (zab),32.1,66.916667,,10,,5282,90,100,,,,,,11000002,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,0000-0415,123456,9945,,48944,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,0000-0500,......7,9945,,48944,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,0610-0915,123456,9945,,48944,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,0630-1735,......7,9945,,48944,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,1200-1735,123456,9945,,48944,,, +936,CHN,zh,Xizang RGD Hanyu,,Ga'er/Shiquanhe (XZ),32.494639,80.087611,,1,,6147,80,118,,,,,,36201197,,, +936,CHN,zh,Xizang RGD Hanyu,,Rutog=Ritu (XZ),33.382222,79.727778,,1,,6054,79,118,,,,,,36201200,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Hefei/Sanshitou (AH),31.987667,117.329028,,200,,8515,55,119,,2100-1550,1234567,,,48942,,, +936,CHN,zh,Ordos RGD Hanyu,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,10,,7431,54,121,,2150-1605,1234567,,,48941,,, +936,CHN,zh,Xizang RGD Hanyu,,Burang=Pulan (XZ),30.298667,81.172861,,1,,6392,81,121,,,,,,36201204,,, +936,THA,th,Sor. Wor. Sor.,,Nakhon Sawan (nsn),15.802778,100.074167,,50,,8873,77,126,,2130-1700,1234567,,,48977,,, +936,CHN,zh,Xizang RGD Hanyu,,Nagqu=Naqu (XZ),31.472389,92.042306,,1,,7020,72,127,,,,,,36201203,,, +936,CHN,zh,Xizang RGD Hanyu,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,,,,,36201201,,, +936,CHN,zh,Xizang RGD Hanyu,,Cona=Cuona (XZ),27.996111,91.964389,,1,,7299,75,130,,,,,,36201196,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Huangshan/Tunxi (AH),29.690833,118.308889,,10,,8777,55,133,,2100-1550,1234567,,,36200349,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Wuhu/Wuliting (AH),31.295528,118.382167,,10,,8636,54,133,,2100-1550,1234567,,,36200352,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Xuancheng/Wuligang (AH),30.930556,118.745833,,10,,8689,54,133,,2100-1550,1234567,,,36200353,,, +936,CHN,zh,Xizang RGD Hanyu,,Markam=Mangkang (XZ),29.679836,98.598306,,1,,7590,69,133,,,,,,36201199,,, +936,KOR,ko,HLKD KBS 3 R,,Changwon (gsn),35.151972,128.588667,,10,,8809,45,133,,2000-1800,1234567,,,48967,,, +936,J,ja,JOTR ABS Akita Hoso,,Akita (toh-aki),39.696667,140.098889,,5,,8870,34,136,,0000-1600,......7,,,48959,,, +936,J,ja,JOTR ABS Akita Hoso,,Akita (toh-aki),39.696667,140.098889,,5,,8870,34,136,,0000-2400,123456,,,48959,,, +936,J,ja,JOTR ABS Akita Hoso,,Akita (toh-aki),39.696667,140.098889,,5,,8870,34,136,,1850-2400,......7,,,48959,,, +936,THA,th,Thor. Phor. Sii 4,,Pattani/Charoen Pradit Rd (pti),6.8725,101.235556,,10,,9733,82,136,,????-1555,1234567,,,48978,,, +936,J,ja,JONF MRT Miyazaki Hoso,,Miyazaki (kyu-miy),31.9275,131.466111,,5,,9254,44,138,,0000-1530,......7,,,48963,,, +936,J,ja,JONF MRT Miyazaki Hoso,,Miyazaki (kyu-miy),31.9275,131.466111,,5,,9254,44,138,,0000-2400,123456,,,48963,,, +936,J,ja,JONF MRT Miyazaki Hoso,,Miyazaki (kyu-miy),31.9275,131.466111,,5,,9254,44,138,,1850-2400,......7,,,48963,,, +936,TWN,,Han Sheng Kuangpo Tientai,,Chung-Li (TY),24.934167,121.225833,,5,,9376,56,138,,,,,,21800033,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Fuyang (AH),32.930944,115.798294,,1,,8346,55,140,,2100-1550,1234567,,,36200351,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Suzhou (AH),33.633333,116.983333,,1,,8349,54,140,,2100-1550,1234567,,,36201202,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Bengbu (AH),32.95,117.383333,,1,,8432,54,141,,2100-1550,1234567,,,36200350,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Huainan (AH),32.656839,116.963722,,1,,8435,54,141,,2100-1550,1234567,,,36201198,,, +936,PHL,,DWIM-AM Radyo Mindoro,,Calapan (orm),13.4,121.166667,,5,,10437,62,141,,,,,,48980,,, +936,PHL,,DXIM-AM Radyo ng Bayan,,Cagayan de Oro City (mor),8.466667,124.633333,,10,,11103,62,141,,,,,,48971,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Chaohu (AH),31.5888,117.830833,,1,,8579,54,142,,2100-1550,1234567,,,36201194,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Chuzhou (AH),32.285167,118.346917,,1,,8545,54,142,,2100-1550,1234567,,,36201195,,, +936,J,ja,MRT Miyazaki Hoso,,Kobayashi (kyu-miy),32.002778,130.958333,,1,,9223,45,144,,0000-1530,......7,,,48960,,, +936,J,ja,MRT Miyazaki Hoso,,Kobayashi (kyu-miy),32.002778,130.958333,,1,,9223,45,144,,0000-2400,123456,,,48960,,, +936,J,ja,MRT Miyazaki Hoso,,Kobayashi (kyu-miy),32.002778,130.958333,,1,,9223,45,144,,1850-2400,......7,,,48960,,, +936,J,ja,MRT Miyazaki Hoso,,Nobeoka (kyu-miy),32.55,131.683333,,1,,9205,44,144,,0000-1530,......7,,,48965,,, +936,J,ja,MRT Miyazaki Hoso,,Nobeoka (kyu-miy),32.55,131.683333,,1,,9205,44,144,,0000-2400,123456,,,48965,,, +936,J,ja,MRT Miyazaki Hoso,,Nobeoka (kyu-miy),32.55,131.683333,,1,,9205,44,144,,1850-2400,......7,,,48965,,, +936,J,ja,MRT Miyazaki Hoso,,Takachiho (kyu-miy),32.7,131.316667,,1,,9173,44,144,,0000-1530,......7,,,48966,,, +936,J,ja,MRT Miyazaki Hoso,,Takachiho (kyu-miy),32.7,131.316667,,1,,9173,44,144,,0000-2400,123456,,,48966,,, +936,J,ja,MRT Miyazaki Hoso,,Takachiho (kyu-miy),32.7,131.316667,,1,,9173,44,144,,1850-2400,......7,,,48966,,, +936,PHL,,DXDN-AM Radyo Ukay,,Tagum (dvn),7.416667,125.75,,5,,11268,62,144,,????-1500,1234567,,,48973,,, +936,J,ja,MRT Miyazaki Hoso,,Nichinan (kyu-miy),31.6,131.383333,,1,,9282,45,145,,0000-1530,......7,,,48964,,, +936,J,ja,MRT Miyazaki Hoso,,Nichinan (kyu-miy),31.6,131.383333,,1,,9282,45,145,,0000-2400,123456,,,48964,,, +936,J,ja,MRT Miyazaki Hoso,,Nichinan (kyu-miy),31.6,131.383333,,1,,9282,45,145,,1850-2400,......7,,,48964,,, +936,PHL,,DZXT-AM,,Tarlac City (tlc),15.483333,120.583333,,1,,10209,62,148,,,,,,48974,,, +936,INS,id,PM2DRM R Dermaga Ria,,Sekadau (KB),0.016667,110.9,,1,,10989,78,150,,,,,,48955,,, +936,PHL,,DYCC-AM,,Calbayog City/Obrero (sam),12.083333,124.6,,1,,10764,60,150,,2100-1600,1234567,,,48972,,, +936,AUS,xx,6FX Wangki R,,Fitzroy Crossing (WA),-18.33075,125.680056,,5,,13591,78,152,,2200-1600,1234567,,,48939,,, +936,INS,,R Samhan Mulya,,Sumedang (JB-sum),-6.866667,107.916667,,1,,11395,85,152,,,,,,35400132,,, +936,J,ja,MRT Miyazaki Hoso,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,0000-1530,......7,,,48961,,, +936,J,ja,MRT Miyazaki Hoso,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,0000-2400,123456,,,48961,,, +936,J,ja,MRT Miyazaki Hoso,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,1850-2400,......7,,,48961,,, +936,J,ja,MRT Miyazaki Hoso,,Miyakonojo (kyu-miy),31.766667,131.1,,0.1,,9252,45,155,,0000-1530,......7,,,48962,,, +936,J,ja,MRT Miyazaki Hoso,,Miyakonojo (kyu-miy),31.766667,131.1,,0.1,,9252,45,155,,0000-2400,123456,,,48962,,, +936,J,ja,MRT Miyazaki Hoso,,Miyakonojo (kyu-miy),31.766667,131.1,,0.1,,9252,45,155,,1850-2400,......7,,,48962,,, +936,AUS,en,4PB ABC Newsr,,Brisbane/Bald Hills (QLD),-27.310169,153.013686,,10,,16107,58,157,,0000-2400,1234567,7,,48938,,, +936,INS,id,PM2BBC R P2SC,,Jakarta (JK-kjp),-6.155278,106.857778,,0.25,,11260,86,157,,,,91,,48947,,, +936,AUS,en,7ZR ABC Hobart,,Hobart/Ralphs Bay (TAS),-42.925444,147.497889,,10,,16963,86,160,,0000-2400,1234567,2,,48940,,, +936,NZL,xx,New Supremo 936,,Auckland/Henderson (AUK),-36.844383,174.631153,,1,,18083,33,174,,0000-2400,1234567,998,,48969,,, +937,PHL,,DYKW-AM,,Binalbagan/Cagamayan (noc),10.2,122.85,,1,,10834,63,150,,,,,,48981,,, +939,RUS,,LU,b,Sasovo,54.354167,41.958333,,0.025,,2354,70,97,,,,,,86800,,, +940,RUS,,UD,b,Chudovo (NO),59.104167,31.625,,0.025,,1750,54,90,,,,,U1020 ,85806,,, +940,RUS,,SQ,b,Vladimir (VL),56.145833,40.291667,,0.025,,2229,65,95,,,,,15.0s,ID+11 gap,85805,, +940,RUS,,MN,b,Mendeleyevo,58.1875,54.958333,,0.025,,3086,58,104,,,,987,L400 U375 ,85804,,, +940,USA,en,WKGM,,Smithfield (D) (VA),36.954444,-76.63,,10,,6419,290,111,,1200-2400,1234567,,,20012523,,, +940,CAN,en,CJGX,s,Yorkton (SK),51.206389,-102.336111,,10,,6734,317,114,,,,998,,36172,,, +940,USA,en,WKGM,,Smithfield (N) (VA),37.0975,-76.671111,,3.1,,6411,290,116,,0000-1200,1234567,,,42008,,, +940,PTR,es,WIPR,,San Juan (PR),18.426667,-66.141389,,10,,7217,268,119,,,,0,,41791,,, +940,USA,en,WMAC,,Macon (GA),32.885,-83.730556,,10,,7195,292,119,,,,,,42268,,, +940,USA,,WGRP,,Greenville (D) (PA),41.385278,-80.409167,,1,,6318,296,120,,,,,,20012577,,, +940,USA,,KPSZ,,Des Moines (IA),41.476389,-93.373889,,5,,7073,304,121,,,,9980,,39170,,, +940,USA,,WMIX,,Mount Vernon (D) (IL),38.370556,-88.923333,,5,,7068,299,121,,1300-0100,1234567,,,20012525,,, +940,VEN,,YVNN R Punto Fijo,,Punto Fijo (flc),11.609506,-70.2113,,50,,8080,267,121,,0900-0500,1234567,3,,45395,,, +940,USA,en,WINZ,,Miami (FL),25.96,-80.270278,,10,,7542,284,122,,,,9993,,41778,,, +940,B,pt,ZYI911 Rdio Sete Cidades,,Piracuruca (PI),-3.928303,-41.714478,,10,,7696,233,124,,,,,,36901623,,, +940,USA,,WCSW,,Shell Lake (WI),45.693333,-91.965833,,1,,6655,307,124,,,,,,41092,,, +940,B,pt,ZYJ453 Super Rede Boa Vontade,,Rio de Janeiro/Mag (RJ),-22.674444,-43.029444,,100,,9598,225,126,,,,9945,,36901622,,, +940,USA,,WMIX,,Mount Vernon (N) (IL),38.354167,-89.008056,,1.5,,7075,299,126,,0100-1300,1234567,,,42334,,, +940,USA,en,KFIG,,Fresno (CA),36.488889,-119.325833,,50,,8848,318,126,,,,,,39862,,, +940,VEN,es,YVLU R Fe y Alegria,,El Tigre (azg),8.866667,-64.25,,10,,7915,260,126,,0900-0300,1234567,,,51675,,, +940,USA,,WFAW,,Fort Atkinson (WI),42.906667,-88.751667,,0.55,,6695,303,127,,,,,,41358,,, +940,MEX,es,XEQ-AM la Q Mexicana,,Mxico D.F/Col. El Vergel (dif),19.314108,-99.076417,,50,,9329,294,128,,0000-2400,1234567,877,,44594,,, +940,VEN,,YVZR R Continental,,Barinas (bns),8.666667,-70.2,,15,,8335,265,129,,,,,,51676,,, +940,EQA,,HCDE2,,Guayaquil (gua),-2.2,-79.9,,50,,9949,266,130,,,,,,36898,,, +940,CLM,es,HJTL RCN,,Ccuta (nsa),7.866667,-72.516667,,15,,8563,266,131,,,,,,37646,,, +940,USA,,WKYK,,Burnsville (NC),35.925556,-82.272222,,0.25,,6858,293,132,,,,,,42106,,, +940,CLM,es,HJGB R Calima,,Cali (val),3.466667,-76.516667,,10,,9221,267,134,,,,16,,37450,,, +940,CUB,es,R Progreso,,Sancti Spritus/CTOM2 (ss),21.912044,-79.430931,,1,,7826,281,135,,,,,,2253,,, +940,EQA,es,HCBZ1 R Casa de la Cultura Ecuatoriana,,Quito (pic),-0.25,-78.483333,,10,,9681,266,136,,,,,,36871,,, +940,PNR,es,Asamblea Nacional,,La Palma (drn),8.409444,-78.145833,,5,,8899,271,136,,,,,,35100005,,, +940,GTM,,TGTL LV del Hogar R Paz,,Ciudad de Guatemala (gut),14.616667,-90.583333,,5,,9198,284,137,,1200-0500,1234567,,,40546,,, +940,HTI,,R Saint-Marc,,Saint-Marc (art),19.1,-72.7,,0.4,,7607,274,137,,,,,,35648,,, +940,USA,,WCPC,,Houston (MS),33.928056,-89.010833,,0.25,,7439,296,137,,,,9989,,41064,,, +940,PRU,,OBX7L R Willkamayu,,Wanchaq (cus),-14.316667,-71.25,,10,,10441,252,138,,0000-2400,1234567,,,40410,,, +940,USA,,KIXZ,,Amarillo (TX),35.154722,-101.757778,,1,,8081,306,138,,,,,,38652,,, +940,USA,,WGFP,,Webster (MA),42.054722,-71.833333,,0.004,,5734,292,138,,,,,,41501,,, +940,USA,,WYLD,,New Orleans (LA),29.899167,-90.004722,,0.5,,7839,294,138,,,,,,43524,,, +940,ARG,es,LRJ241 R Dimension,,San Lus (sl),-33.295344,-66.292097,,25,,11820,236,139,,0900-0400,1234567,,,40075,,, +940,GTM,,TGTL LV del Hogar R Paz,,Sacatepeque (sap),14.583333,-90.75,,2.5,,9211,285,140,,,,,,52130,,, +940,USA,,WINE,,Brookfield (CT),41.493056,-73.429167,,0.004,,5876,292,140,,,,8,,41767,,, +940,CAN,xx,CBDK,,Teslin (YT),60.166944,-132.727778,,0.04,,7008,339,141,,,,,,20109127,,, +940,HTI,,Rdiffusion Jacmelienne,,Jacmel (ses),18.233333,-72.533333,,0.2,,7670,273,141,,,,,,52114,,, +940,USA,,WADV,,Lebanon (PA),40.372778,-76.364722,,0.005,,6143,293,141,,,,,,40656,,, +940,CAN,en,CBXU,,Hudson's Hope (BC),56.027778,-121.919722,,0.04,,7093,331,142,,,,,,20109126,,, +940,HWA,en,KKNE,,Waipahu (HI),21.445278,-158.063611,,10,,11698,345,143,,0000-2400,1234567,1,,38536,,, +940,MEX,es,XERKS-AM La Poderosa,,Reynosa (tam),26.045411,-98.237961,,1,,8679,297,143,,,,,,44680,,, +940,USA,,KDIL,,Jerome (ID),42.727222,-114.626944,,0.25,,8047,319,143,,,,,,20016106,,, +940,USA,,WIDG,,St. Ignace (MI),45.862222,-84.781944,,0.004,,6240,303,143,,,,9,,41731,,, +940,USA,,WNRG,,Grundy (VA),37.302222,-82.117778,,0.014,,6739,294,143,,,,,,42501,,, +940,HND,,HRMH,,Santa Barbara (bar),15.416667,-88.416667,,1,,8984,283,144,,,,,,37800,,, +940,HND,,HRXW2,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37877,,, +940,MEX,es,XEHE-AM R Meldica,,Atotonilco El Alto (jal),20.549722,-102.507222,,1,,9430,297,145,,,,,,44106,,, +940,MEX,es,XERLA-AM,,Santa Rosala (bcs),27.310556,-112.285556,,1,,9369,308,145,,,,,,44683,,, +940,USA,,KMER,,Kemmerer (WY),41.799444,-110.545556,,0.15,,7943,315,145,,,,,,38894,,, +940,USA,,WCIT,,Lima (OH),40.7225,-84.084444,,0.006,,6592,298,145,,,,,,42176,,, +940,USA,,WCND,,Shelbyville (KY),38.213333,-85.171111,,0.01,,6855,297,145,,,,,,41046,,, +940,USA,,WECO,,Wartburg (TN),36.096667,-84.591944,,0.016,,6989,295,145,,,,,,41248,,, +940,ARG,,LRH200 R Chajar,,Chajar (er),-30.75,-57.983333,,3,,11131,232,146,,0900-0300,1234567,10,,51814,,, +940,USA,es,KWBY,,Woodburn (OR),45.176944,-122.849444,,0.2,,8161,325,146,,,,999,,39694,,, +940,B,pt,ZYH204 Rdio Verdes Florestas,,Cruzeiro do Sul (AC),-7.619286,-72.6982,,1,,9941,257,147,,,,,,36901624,,, +940,BOL,,CP145 R Metropolitana,,La Paz (lpz),-16.5,-68.116667,,1.3,,10435,248,147,,0900-0500,1234567,,,36648,,, +940,USA,,WGRP,,Greenville (N) (PA),41.386111,-80.409722,,0.002,,6318,296,147,,,,,,41560,,, +940,PRU,es,R Cutervo,,Cutervo (caj),-6.366667,-78.85,,1,,10244,262,148,,,,2,,37000059,,, +940,USA,,KSWM,,Aurora (MO),36.994167,-93.716111,,0.025,,7465,301,148,,,,,,39442,,, +940,USA,,KVSH,,Valentine (NE),42.865,-100.518611,,0.019,,7345,310,148,,,,,,39668,,, +940,BOL,,R San Lorenzo,,Colcapirhua (cbb),-17.416667,-66.25,,0.8,,10400,246,149,,0900-0200,1234567,,,51979,,, +940,USA,,KGMS,,Tucson (AZ),32.200833,-111.018056,,0.25,,8847,310,149,,,,,,38494,,, +940,USA,,WLQH,,Chiefland (FL),29.515278,-82.884722,,0.015,,7418,289,149,,,,,,42218,,, +940,MEX,es,XEREC-AM Romntica,,Villahermosa (tab),17.983333,-92.916667,,0.25,,9055,288,150,,,,,,34900018,,, +940,USA,,KICE,,Bend (OR),44.079722,-121.283056,,0.06,,8204,324,151,,,,59,,38578,,, +940,CAN,,CJML,,Burnaby (BC),49.251111,-123.001389,,0.02,,7775,328,152,,,,,,36133,,, +940,USA,en,WPTI814,,Clearwater (FL),27.9,-82.733333,,0.01,,7542,287,152,,,,,,20010592,,, +940,USA,en,WPTI814,,Clearwater/2166 Palmetto St. (FL),27.977194,-82.747583,,0.01,,7537,287,152,,,,,,20010593,,, +940,USA,en,WPTI814,,Largo/9685 Ulmerton Road (FL),27.895083,-82.77765,,0.01,,7545,287,152,,,,,,20010591,,, +940,USA,en,WPTI814,,Palm Harbor (FL),28.048778,-82.760986,,0.01,,7531,288,152,,,,,,20010596,,, +940,USA,en,WPTI814,,Pinellas Park/5000 82nd Ave North (FL),27.845806,-82.710969,,0.01,,7545,287,152,,,,,,20010594,,, +940,USA,en,WPTI814,,St. Petersburg/3101 5th Ave South (FL),27.766833,-82.676278,,0.01,,7549,287,152,,,,,,20010595,,, +940,MEX,es,XEYJ-AM La Mexicana,,Nueva Rosita (coa),27.948917,-101.245244,,0.1,,8690,301,153,,,,,,45094,,, +940,CHL,,CB94 R Valentin Letelier,,Valparaso (VS),-33.483333,-71.666667,,1,,12147,240,154,,,,,,35767,,, +940,MEX,,XEMMM-AM 940 Oldies,,Mexicali/Santa Isabel (bcn),32.627083,-115.580986,,0.1,,9039,314,154,,,,174,,45039,,, +940,USA,,KTFS,,Texarkana (TX),33.407778,-94.045833,,0.011,,7787,299,154,,,,,,39474,,, +940,URG,,CX67,,Isidoro Noblia (cl),-31.933333,-54.133333,,0.1,,11039,228,160,,,,,,36825,,, +942,CUB,es,R Progreso,,,21.7,-79.5,,1,,7848,281,135,,,,,,46823,,, +945,F,fr,France Info,,Toulouse/Muret (31),43.449722,1.340556,,300,,1034,203,43,,0000-2400,1234567,9982,,674,,, +945,ROU,ro,SRR R Romnia Actualităţi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0000-2400,1234567,996,,680,,, +945,G,en,Gold,,Bexhill-on-Sea (EN-ESU),50.838056,0.4475,,0.7,,436,253,63,,0000-2400,1234567,31,,676,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0410-0500,12345..,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0510-0600,.....67,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0710-0800,12345..,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1010-1030,12345..,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1310-1400,12345..,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1410-1500,......7,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1510-1600,123456,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1610-1700,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0100-0410,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0100-0510,.....67,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0500-0710,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0600-1410,.....67,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0800-1010,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1030-1310,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1400-1510,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1500-1510,.....6.,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1500-2210,......7,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1600-1610,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1600-2210,.....6.,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1700-2210,12345..,38,,681,,, +945,G,en,Gold,,Derby/Quarndon (EN-DRB),52.9735,-1.507194,,0.2,,544,283,69,,0000-2400,1234567,18,,675,,, +945,GRC,el,R Playboy,,Piraeus (att-pir),37.95,23.629167,,6,,2065,133,70,,,,,,3400014,,, +945,ISR,he,Galei Zahal,,Tel Aviv/Yavne (tav),31.902972,34.756972,,50,,3207,123,72,,0000-2400,1234567,,,690,,, +945,IRN,,IRIB R Kordestan,,Dehgolan (kdn),35.290833,47.392222,,100,,3720,104,74,,,,,,678,,, +945,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (mae),15.215417,38.876417,,100,,5004,133,87,,0330-0630,1234567,,,2427,,, +945,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (mae),15.215417,38.876417,,100,,5004,133,87,,1400-1830,1234567,,,2427,,, +945,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ha'il (hal),27.466667,41.726528,,5,,4007,119,90,,0300-2300,1234567,,,673,,, +945,NIG,,R Kebbi,,Birnin Kebbi (kbb),12.387161,4.198222,,10,,4421,183,91,,0500-2300,1234567,,,2428,,, +945,G,,R Nightingale,,Rotherham Hospital (EN-SYK),53.4275,-1.3475,,0.001,,542,289,92,,,,1,,2800013,,, +945,SDN,,SRTC Sudan Nat. R,,Al-Foula (ks),11.721481,28.329572,,5,,4903,148,99,,,,,,47144,,, +945,CHN,ug,CNR 13,,Akqi=Aheqi/XJTS8109 (XJ),40.935556,78.435,,10,,5413,73,101,,0000-1800,1234567,,,36201098,,, +945,STP,pt,R.Nacional de So Tom e Principe,,Pinheira (sao),0.292331,6.748472,,20,,5762,180,102,,0000-2400,1234567,,,47056,,, +945,CHN,ug,CNR 13,,Kuqa=Kuche/SARFT8106 (XJ),41.717222,82.895278,,10,,5646,70,103,,0000-1800,1234567,,,36201099,,, +945,IND,,AIR East,,Sambalpur (OR),21.419722,84.033889,,100,,7311,86,110,,0025-0435,1234567,,,48990,,, +945,IND,,AIR East,,Sambalpur (OR),21.419722,84.033889,,100,,7311,86,110,,0630-0940,1234567,,,48990,,, +945,IND,,AIR East,,Sambalpur (OR),21.419722,84.033889,,100,,7311,86,110,,1130-1742,1234567,,,48990,,, +945,AGL,,RNA Rdio N'gola Yetu,,Mulenvos/Baixo (lua),-8.852056,13.317083,,25,,6811,172,111,,2200-2000,1234567,9933,,2371,,, +945,AGL,en,RNA Rdio N'gola Yetu,,Mulenvos/Baixo (lua),-8.852056,13.317083,,25,,6811,172,111,,2100-2200,1234567,9933,,2371,,, +945,AGL,fr,RNA Rdio N'gola Yetu,,Mulenvos/Baixo (lua),-8.852056,13.317083,,25,,6811,172,111,,2000-2100,1234567,9933,,2371,,, +945,CHN,zh,CNR 1,,Jiaohe/SARFT953 (JL),43.570278,127.2625,,400,,7961,41,111,,2025-1805,1234567,999,,48987,,, +945,CHN,ug,CNR 13,,Shache=Yarkant/SARFT8107 (XJ),38.417222,77.225833,,1,,5512,76,112,,0000-1800,1234567,,,36201100,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Qiqihar (HL),47.329722,124.056389,,50,,7475,41,115,,,,,,36200024,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Fujin/HLTS916 (HL),47.226667,131.950833,,50,,7819,36,118,,,,,,36200026,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Harbin/HLTS904 (HL),45.695556,126.819167,,50,,7745,40,118,,,,,,36200025,,, +945,BOT,,R Botswana,,Mmathethe (so),-25.303278,25.252539,,50,,8802,163,126,,0000-2400,1234567,,,20600003,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Hulin/HLTS923 (HL),45.766667,133,,10,,7999,36,127,,,,,,36200655,,, +945,CHN,zh,Hubei RGD Chutian Xinwen,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,1955-1705,1234567,,,48986,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Bei'an/HLTS918 (HL),48.254722,126.489444,,1,,7497,39,132,,,,,,36200657,,, +945,CHN,zh,Hubei RGD Chutian Xinwen,,Qichun/Caohe (HU),30.233333,115.416667,,10,,8565,57,132,,2000-1630,1234567,,,48988,,, +945,KOR,,HLQW KBS 1 R,,Boeun (ccb),36.493222,127.726167,,10,,8642,45,133,,0000-2400,1234567,,,49000,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Hegang/HLTS919 (HL),47.316944,130.213333,,1,,7740,37,134,,,,,,36200656,,, +945,THA,th,Thor. Or. 01,,Bangkok/Nimitmai Road (bmp),13.835783,100.739903,,10,,9089,78,134,,????-1700,1234567,,,49009,,, +945,THA,th,Thor. Phor. Song,,Kalasin/Aphai Road (kls),16.426111,103.513611,,10,,9046,74,134,,,,,,49008,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Mishan/SARFT914 (HL),45.644722,131.875278,,1,,7965,37,137,,,,,,36200654,,, +945,J,,JOXK NHK1,,Tokushima (shi-tok),34.066619,134.577522,,5,,9192,41,137,,0000-2400,1234567,,,48998,,, +945,PHL,tl,DWFB-AM R ng Bayan,,Laoag City (iln),18.206944,120.595,,10,,9959,60,137,,,,,,49047,,, +945,J,,JOIQ NHK1,,Muroran (hok),42.315278,140.9825,,3,,8643,33,138,,0000-2400,1234567,9996,,48997,,, +945,CHN,,Jining RGD Jiaotong,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,,,,,49022,,, +945,PHL,,DXDV-AM,,Butuan City/Baan (agn),8.95,125.566667,,10,,11114,61,141,,,,,,49003,,, +945,PHL,,DYRO-AM,,Roxas City (cpz),11.583333,122.75,,5,,10700,62,142,,,,,,49005,,, +945,J,,JOQP NHK1,,Hikone (kns-shi),35.25,136.166667,,1,,9147,39,144,,0000-2400,1234567,9990,,48996,,, +945,J,,NHK R 1,,Fukue (kyu-nag),32.7,128.85,,1,,9054,46,144,,0000-2400,1234567,,,48995,,, +945,PHL,,DXRO-AM Sonshine R,,Cotabato City (mag),7.233333,124.25,,5,,11194,63,144,,????-1300,1234567,,,49004,,, +945,INS,id,PM5CHV R Galundi Pradana,,Gando Sulit Air (SB-slk),-0.616667,100.633333,,1,,10350,87,148,,,,,,48991,,, +945,INS,id,PM4CPK Buana AM,,Wonosobo (JT-wos),-7.35,109.983333,,1,,11577,84,152,,,,,,48994,,, +945,SLM,,SIBC R Hapi Lagun,,Gizo (wsn),-8.102222,156.836944,,10,,14433,39,152,,1900-1200,1234567,,,49007,,, +945,INS,id,PM3CEE R TSM,,Lubuk Pakam (SU),3.55,98.866667,,0.25,,9864,86,153,,,,,,48992,,, +945,AUS,,3UZ Sport 927,,Bendigo/Eaglehawk (VIC),-36.705833,144.221556,,2,,16321,79,165,,,,,,48983,,, +945,AUS,,4HI/t Zinc HI,,Dysart (QLD),-22.569444,148.366944,,1,,15406,59,165,,0000-2400,1234567,,,48984,,, +945,NZL,en,2ZG Newstalk ZB,,Gisborne/Wainui (GIS),-38.693889,178.062778,,2,,18390,27,172,,0000-2400,1234567,,,49001,,, +949,XOE,,GAL,b,GSF Galaxy,57.395833,1.875,,0.025,,656,335,80,,,,,,86801,,, +949,RUS,,OE,b,Moskva/Vnukovo (MV),55.5625,37.291667,,0.025,,2045,67,93,,,,,,86802,,, +950,CAN,,CKNB,,Campbellton (NB),48.015944,-66.5785,,10,,5006,295,97,,,,63,,36347,,, +950,RUS,,KS,b,Kotlas (AR),61.270833,46.625,,0.025,,2607,51,99,,,,997,L1020 U1015 ,85808,,, +950,RUS,,LO,b,Kotlas (AR),61.1875,46.791667,,0.025,,2615,51,99,,,,,15.0s,IDx2,85809,, +950,USA,en,WKDN,,Philadelphia (D) (PA),39.974444,-75.271944,,43,,6104,292,102,,1200-2400,1234567,2,,42666,,, +950,USA,,WWJ,,Detroit (MI),42.019167,-83.239722,,50,,6441,299,104,,,,2,,43389,,, +950,USA,en,WKDN,,Philadelphia (N) (PA),40.154167,-75.369444,,21,,6097,292,105,,0000-1200,1234567,2,,20012524,,, +950,USA,,WIBX,,Utica (NY),43.103333,-75.341944,,5,,5879,295,109,,,,11,,41723,,, +950,CAN,,CFAM,,Altona (MB),49.0325,-97.949722,,10,,6701,313,114,,,,998,,35929,,, +950,USA,,WNTD,,Chicago (N) (IL),41.636667,-87.552778,,5,,6726,301,117,,,,,,20012552,,, +950,USA,,WROC,,Rochester (NY),43.106944,-77.5975,,1,,6018,296,117,,,,,,42896,,, +950,USA,,WORD,,Spartanburg (SC),34.981389,-81.987222,,5,,6915,292,119,,,,,,42620,,, +950,USA,en,KJR,,Seattle/Burien-Vashon Island (WA),47.433333,-122.467222,,50,,7929,326,119,,,,9950,,38692,,, +950,USA,en,WJKB,,Moncks Corner (SC),33.205556,-80.065,,6,,6935,290,119,,,,,,42798,,, +950,VEN,,YVKG AM Popular,,Caracas (dcf),10.416667,-66.916667,,50,,7959,263,120,,0000-2400,1234567,42,,45353,,, +950,USA,,WBES,,Charleston (WV),38.386389,-81.714167,,1,,6629,295,123,,,,0,,43347,,, +950,USA,,WNTD,,Chicago (D) (IL),41.860833,-87.686667,,1,,6716,301,124,,,,,,42516,,, +950,USA,,WROL,,Boston (MA),42.435833,-70.993056,,0.09,,5654,292,124,,,,1,,42899,,, +950,USA,en,WTLN,,Orlando (FL),28.535556,-81.448889,,5,,7406,287,124,,,,2,,43167,,, +950,B,pt,ZYI932 Rdio Joo de Paiva,,Altos (PI),-5.038653,-42.470439,,10,,7845,233,125,,,,,,36901625,,, +950,CUB,es,R Reloj,,Camagey/CTOM2 (cm),21.350153,-77.872003,,10,,7768,279,125,,,,0,,2035,,, +950,USA,,KTNF,,St. Louis Park (MN),44.868889,-93.419722,,1,,6800,307,125,,,,,,39515,,, +950,USA,es,WCTN,,Potomac-Cabin John (MD),39.036667,-77.2025,,0.35,,6296,292,125,,,,,,41097,,, +950,B,pt,ZYH593 Rdio Educadora do Nordeste,,Sobral (CE),-3.697133,-40.343867,,5,,7600,231,126,,,,,,36901635,,, +950,USA,,KMTX,,Helena (MT),46.674444,-112.018056,,5,,7569,319,126,,,,0,,38939,,, +950,USA,,KWAT,,Watertown (SD),44.87,-97.113611,,1,,6998,309,127,,,,,,39688,,, +950,USA,,WHVW,,Hyde Park (NY),41.746111,-73.912778,,0.057,,5888,293,128,,,,,,41701,,, +950,USA,en,KRWZ,,Parker (CO),39.875,-104.933333,,5,,7835,311,128,,,,0,,38717,,, +950,CUB,es,R Reloj,,Arroyo Arenas/CTOM1 (ch),23.051889,-82.475583,,5,,7932,284,129,,,,0,,2015,,, +950,USA,,KOEL,,Oelwein (IA),42.655833,-91.900556,,0.5,,6894,304,129,,,,,,39056,,, +950,ALS,en,KSEW,,Seward (AK),60.090833,-149.338889,,1,,7352,347,131,,,,1,,39441,,, +950,USA,,KPRC,,Houston (TX),29.805278,-95.278611,,5,,8171,298,132,,,,,,39159,,, +950,USA,,KWOS,,Jefferson City (MO),38.520278,-92.178333,,0.5,,7248,302,132,,,,,,39743,,, +950,SLV,,YSHG,,San Miguel (smg),13.466667,-88.166667,,14,,9138,282,133,,,,,,45277,,, +950,CLM,es,HJFN,,Pereira (ris),4.783333,-75.716667,,10,,9051,267,134,,,,,,37438,,, +950,CUB,es,R Revolucin,,Mayar Arriba (sc),20.418867,-75.536092,,1,,7689,277,134,,,,,,31600006,,, +950,B,pt,ZYH764 Rdio Difusora de Itumbiara,,Itumbiara (GO),-18.383911,-49.210322,,10,,9496,232,135,,,,,,36901637,,, +950,B,pt,ZYL212 Rdio Atalaia,,Belo Horizonte (MG),-19.944556,-44.017417,,10,,9378,227,135,,,,,,36901627,,, +950,MEX,es,XEOJN-AM,,San Lucas Ojitln (oax),18.059494,-96.394219,,10,,9272,291,135,,,,,,44490,,, +950,USA,,KOZE,,Lewiston (ID),46.392222,-117.034167,,1,,7811,322,135,,,,,,39122,,, +950,USA,,WERL,,Eagle River (WI),45.975556,-89.245556,,0.051,,6483,306,135,,,,,,41322,,, +950,USA,,WNCC,,Barnesboro (PA),40.679722,-78.740556,,0.029,,6268,295,135,,,,,,42444,,, +950,USA,,WXGI,,Richmond (VA),37.514444,-77.507778,,0.045,,6432,291,135,,,,,,43464,,, +950,ARG,es,LT16 R Esmeralda,,Roque Senz Pea (cc),-26.898975,-60.454136,,25,,10914,236,136,,0900-0300,1234567,,,40168,,, +950,CLM,es,HJUJ Armonias Boyacenses,,Motavita (boy),5.583333,-73.366667,,5,,8820,265,136,,,,204,,35901452,,, +950,EQA,,HCBZ1,,Quito (pic),-0.166667,-78.466667,,10,,9673,266,136,,,,,,36872,,, +950,USA,,KAHI,,Auburn (CA),38.857778,-121.0275,,5,,8696,321,136,,,,9,,37926,,, +950,USA,,KFSA,,Fort Smith (AR),35.432778,-94.470278,,0.5,,7640,301,136,,,,,,38430,,, +950,USA,,WDIG,,Steubenville (OH),40.446944,-80.568333,,0.035,,6399,296,136,,,,,,41163,,, +950,EQA,es,HCDE2 GRD Grupo Radial Delgado,,Guayaquil (gua),-2.25,-79.866667,,10,,9951,266,137,,,,993,,36899,,, +950,MEX,es,XEKAM-AM R Frmula,,Tijuana (bcn),32.402278,-117.086542,,5,,9134,315,137,,0000-2400,1234567,0,,44242,,, +950,ARG,es,LR3 R Nueve,,Buenos Aires/Bella Vista (df),-34.602028,-58.698306,,25,,11521,230,138,,0000-2400,1234567,4,,39924,,, +950,DOM,,HIIG R Popular,,Santo Domingo (sdo),18.55,-69.9,,0.25,,7463,271,138,,0000-2400,1234567,7,,37249,,, +950,GTM,,TGAF R Indiana,,Mazatenango (sup),14.516667,-91.5,,5,,9267,285,138,,,,,,40473,,, +950,MEX,es,XECEL-AM R Lobo,,Cortazar (gua),20.503286,-100.922722,,5,,9337,296,138,,,,,,43832,,, +950,USA,,WGTA,,Summerville (GA),34.464722,-85.353333,,0.11,,7168,294,138,,,,,,41570,,, +950,USA,,WPET,,Greensboro (NC),36.061667,-79.793056,,0.041,,6691,292,138,,,,,,42669,,, +950,PNR,es,Caracol Amrica,,Las Mercedes/Via Portobelo (clo),9.406411,-79.774244,,2.5,,8924,273,139,,,,,,52315,,, +950,PNR,es,HOL84 R Nacional,,Penonom/Llano Marn (ccl),8.506111,-80.3375,,3,,9041,273,139,,,,,,52314,,, +950,USA,,WAKM,,Franklin (TN),35.956667,-86.833889,,0.08,,7139,296,139,,,,,,40687,,, +950,USA,,WYWY,,Barbourville (KY),36.840556,-83.871111,,0.052,,6885,295,139,,,,,,43556,,, +950,USA,en,WXLW,,Indianapolis (IN),39.851389,-86.244444,,0.036,,6790,299,139,,,,,,20016048,,, +950,NCG,,YNCC R Rumbos de Rivas,,Rivas (rvs),11.433333,-85.85,,2.5,,9160,279,140,,1000-2400,1234567,,,52203,,, +950,B,pt,ZYI681 Rdio Jornal de Sousa,,Sousa (PB),-6.801931,-38.209025,,0.25,,7793,228,141,,,,,,36901640,,, +950,B,pt,ZYI782 Rdio Planalto,,Carpina (PE),-7.945,-35.118889,,0.25,,7755,224,141,,,,,,36901626,,, +950,MEX,es,XETO-AM Romntica,,Tampico (tam),22.234958,-97.861058,,2,,8993,295,141,,0000-2400,1234567,,,44844,,, +950,USA,,KJRG,,Newton (KS),38.044167,-97.3725,,0.147,,7585,305,141,,,,,,38694,,, +950,EQA,,HCUE5 La Voz de Aiiech,,Colta (chi),-1.716667,-78.75,,3,,9828,265,142,,,,,,37147,,, +950,USA,,KJTV,,Lubbock (TX),33.581389,-101.827222,,0.5,,8223,305,142,,,,,,38698,,, +950,USA,,KRRP,,Coushatta (LA),31.946944,-93.336944,,0.209,,7869,298,142,,,,,,39290,,, +950,USA,,KXJK,,Forrest City (AR),34.981389,-90.8575,,0.087,,7463,298,142,,,,,,39796,,, +950,USA,,WCLB,,Sheboygan (WI),43.7425,-87.816667,,0.011,,6576,303,142,,,,,,41021,,, +950,USA,en,WGUN,,Valdosta (GA),30.803611,-83.355556,,0.063,,7342,290,142,,,,,,41550,,, +950,B,pt,ZYI923 Rdio Boa Esperana,,Padre Marcos (PI),-7.364722,-40.902667,,0.25,,7987,230,143,,,,,,36901632,,, +950,BOL,,R Yurac Molino,,Chimboata (cbb),-17.616667,-65.283333,,3,,10358,245,143,,,,,,51980,,, +950,HND,,HRSK,,Catacamas (ola),14.933333,-85.966667,,1,,8862,281,143,,,,,,37844,,, +950,HND,,HRZE,,Puerto Cortes (cor),15.816667,-87.916667,,1,,8916,283,143,,,,,,37890,,, +950,MEX,es,XERN-AM R Naranjera,,Montemorelos (nvl),25.191422,-99.872483,,1,,8854,298,143,,,,,,44689,,, +950,B,pt,ZYH489 RBN-Rdio Bahia Nordeste,,Paulo Afonso/Rua So Lucas 470 (BA),-9.455078,-38.224961,,0.25,,8057,227,144,,,,,,36901631,,, +950,HND,,HRQL,,Siguatepeque (cmy),14.5,-87.866667,,1,,9027,282,144,,,,,,37828,,, +950,USA,en,WNZZ,,Montgomery (AL),32.421389,-86.164444,,0.045,,7387,293,144,,,,,,42546,,, +950,B,pt,ZYI439 Rdio Tucunar,,Juara (MT),-11.268381,-57.489883,,1,,9300,242,145,,,,,,36901628,,, +950,MEX,es,XECAA-AM Life,,Aguascalientes (agu),21.919722,-102.266111,,1,,9291,298,145,,,,,,43807,,, +950,MEX,es,XEZE-AM La Poderosa,,Santiago Ixcuintla (nay),21.800328,-105.235083,,1,,9480,300,145,,,,,,45133,,, +950,EQA,,HCJX6,,Banos (tun),-1.383333,-78.416667,,1,,9776,265,146,,,,,,36997,,, +950,MEX,es,XEACA-AM R Frmula 2,,Acapulco (gue),16.829231,-99.857033,,1,,9601,293,146,,,,,,43684,,, +950,MEX,es,XEFA-AM La Poderosa,,Chihuahua (chi),28.670636,-106.082722,,0.5,,8903,305,146,,,,,,43989,,, +950,USA,en,WHSY,,Hattiesburg (MS),31.375833,-89.330278,,0.064,,7672,295,146,,,,,,40869,,, +950,MEX,es,XEORF-AM R xitos,,El Fuerte (sin),25.957192,-108.912708,,0.5,,9310,305,148,,,,,,44511,,, +950,B,pt,ZYL281 Rdio Indy,,Bueno Brando (MG),-22.436772,-46.348317,,0.5,,9738,227,149,,,,,,36901636,,, +950,MEX,es,XEMAB-AM La Poderosa,,Ciudad del Carmen (cam),18.643811,-91.840019,,0.25,,8927,288,149,,,,,,44340,,, +950,MEX,es,XEMEX-AM La Mexicana,,Ciudad Guzmn (jal),19.741689,-103.461253,,0.5,,9561,297,149,,,,,,44369,,, +950,PRU,,OBU5R,,Challhuahuacho (apu),-14.116667,-72.25,,1,,10488,252,149,,,,,,37000097,,, +950,PRU,,OBX3S,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000081,,, +950,USA,,KNFT,,Bayard (NM),32.780833,-108.199444,,0.224,,8645,309,149,,,,,,38990,,, +950,USA,,KDCE,,Espanola (NM),36.002222,-106.066389,,0.08,,8240,309,150,,,,,,38244,,, +950,USA,,KMHR,,Boise (ID),43.627778,-116.507778,,0.035,,8047,320,152,,,,,,38999,,, +950,B,pt,ZYK510 Rdio Clube de Vera Cruz,,Vera Cruz (SP),-22.217211,-49.862836,,0.25,,9897,230,153,,,,,,36901633,,, +950,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010599,,, +950,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010597,,, +950,B,pt,ZYJ239 Rdio Difusora Cultural,,Irati (PR),-25.465556,-50.653333,,0.25,,10249,229,154,,,,,,36901634,,, +950,B,pt,ZYJ736 Rdio Vale Tijucas,,Tijucas (SC),-27.243611,-48.625556,,0.25,,10316,227,154,,,,,,36901630,,, +950,MEX,es,XEPB-AM R Amor,,Hermosillo (son),29.079217,-110.992653,,0.1,,9135,308,154,,1300-0800,1234567,,,44535,,, +950,B,pt,ZYK260 Rdio Independente,,Lajeado/Avenida Alberto Mller 242 (RS),-29.464167,-51.952222,,0.25,,10695,228,155,,,,,,36901639,,, +950,USA,,KTBR,i,Roseburg (OR),43.168889,-123.374444,,0.02,,8376,325,158,,,,,,39459,,, +950,USA,en,WE2XFZ,,Flying Horse/Felix Canyon Road (NM),33.002222,-105.048333,,0.0001,,8454,306,181,,,,,,20010598,,, +954,CZE,cs,ČRo Dvojka,,Dobrochov (JM),49.384444,17.123333,,200,,811,108,42,,0300-1500,12345..,9994,,685,,, +954,CZE,cs,ČRo Dvojka,,Dobrochov (JM),49.384444,17.123333,,200,,811,108,42,,0400-1500,.....67,9994,,685,,, +954,CZE,cs,ČRo Plus,,Dobrochov (JM),49.384444,17.123333,,200,,811,108,42,,1500-2300,1234567,9994,,685,,, +954,CZE,cs,ČRo Dvojka,,Česk Budějovice/Husova Kolonie (JC),48.988611,14.493611,,30,,668,118,49,,0300-1500,12345..,,,684,,, +954,CZE,cs,ČRo Dvojka,,Česk Budějovice/Husova Kolonie (JC),48.988611,14.493611,,30,,668,118,49,,0400-1500,.....67,,,684,,, +954,CZE,cs,ČRo Dvojka,,Karlovy Vary/Star Role (KA),50.238536,12.823108,,20,,493,112,49,,0300-1500,12345..,,,683,,, +954,CZE,cs,ČRo Dvojka,,Karlovy Vary/Star Role (KA),50.238536,12.823108,,20,,493,112,49,,0400-1500,.....67,,,683,,, +954,CZE,cs,ČRo Plus,,Česk Budějovice/Husova Kolonie (JC),48.988611,14.493611,,30,,668,118,49,,1500-2300,1234567,,,684,,, +954,CZE,cs,ČRo Plus,,Karlovy Vary/Star Role (KA),50.238536,12.823108,,20,,493,112,49,,1500-2300,1234567,,,683,,, +954,E,es,Onda Cero,,Madrid/Pozuelo de Alarcn (EAJ2/7) (MAD-M),40.428406,-3.808708,,50,,1515,215,55,,0000-2400,1234567,9990,,686,,, +954,TUR,tr,TRT 1 Radyo Bir,,Trabzon-Deliktas (kdz-tbz),40.987111,39.767333,,100,,2802,103,65,,0700-1600,1234567,1,,694,,, +954,QAT,ar,Al-Jazeera,,Al-Arish (msm),26.062528,51.083778,,1500,235,4709,110,72,,2130-0245,1234567,9964,,691,,, +954,QAT,ar,QBS Arabic,,Al-Arish (msm),26.062528,51.083778,,1500,235,4709,110,72,,0245-2130,1234567,9964,,691,,, +954,SYR,ar,SRTV 2 Sawt al-Sha'ab,,Deir ez-Zor=Dayr az-Zawr (dyz),35.399028,40.0835,,50,,3236,112,72,,0350-1600,1234567,,,693,,, +954,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,0000-2400,1234567,,,3400044,,, +954,IND,,AIR North,,Najibabad (UP),29.625556,78.3825,,100,,6257,84,100,,0030-0430,1234567,,,49026,,, +954,IND,,AIR North,,Najibabad (UP),29.625556,78.3825,,100,,6257,84,100,,0630-0935,1234567,,,49026,,, +954,IND,,AIR North,,Najibabad (UP),29.625556,78.3825,,100,,6257,84,100,,1130-1740,1234567,,,49026,,, +954,KEN,,KBC English Service,,Nyamninia (nyz),0.103333,34.5085,,100,,6349,146,101,,0200-2110,1234567,,,2429,,, +954,CHN,mn,Hulun Buir RGD Mongyol,,Hailar=Haila'er/NMTS763 (NM),49.301111,119.804167,,50,,7110,42,111,,,,,,49019,,, +954,ETH,,R Sidama,,Yirga Alem (snt),6.7414,38.402342,,2.5,,5828,138,111,,,,,,9600005,,, +954,CHN,,Lanzhou RGD,,Lanzhou (GS),36.033333,103.833333,,10,,7385,61,121,,,,,,49024,,, +954,J,ja,JOKR TBS Tokyo Hoso,,Tokyo/Toda (kan-tok),35.805278,139.658333,,100,,9238,37,125,,0000-2400,1234567,5,,49041,,, +954,CHN,,Anshan RGD,,Anshan (LN),41.116667,122.966667,,10,,7985,45,127,,2025-1400,1234567,,,49016,,, +954,CHN,,Hangzhou RGD,,Hangzhou (ZJ),30.266667,120.133333,,25,,8826,54,129,,2100-1700,1234567,,,49020,,, +954,CHN,,Hainan RGD,,Haikou (HA),19.985,110.346944,,30,,9172,67,130,,,,,,49018,,, +954,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,unknown (XJ),34.95,104.5,,1,,7515,61,132,,0000-1800,1234567,,,49015,,, +954,PHL,,DZEM-AM,,Obando (bul),14.710556,120.933056,,40,,10302,62,132,,0000-2400,1234567,,,49045,,, +954,THA,th,Thor. Or. 010,,Phitsanulok/Nai Muang (psl),16.812069,100.273361,,10,,8798,77,133,,2200-1700,1234567,,,49050,,, +954,THA,th,Thor. Or. 016,,Chanthaburi/1049 Tha Chalaep Rd (ctb),12.596444,102.104111,,10,,9288,78,135,,2200-1700,1234567,,,49049,,, +954,TWN,,Chien Kuo Kuangpo Tientai,,Hsinying (TN),23.331339,120.314044,,10,,9471,57,135,,0000-2400,1234567,,,49051,,, +954,CHN,,Hengshui RGD,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,49021,,, +954,CHN,,Luzhou RGD News,,Luzhou (SC),28.783333,105.35,,1,,8091,65,138,,2205-1130,123456,,,49025,,, +954,CHN,,Luzhou RGD News,,Luzhou (SC),28.783333,105.35,,1,,8091,65,138,,2205-1500,......7,,,49025,,, +954,PHL,,DZAL-AM,,Iriga City/San Roque (cas),13.416667,123.6,,5,,10581,60,142,,,,,,49046,,, +954,INS,,R Islam al-Iman Swaratama,,Bogor (JB-kbo),-6.6,106.783333,,1,,11294,86,151,,,,,,49029,,, +954,INS,id,R Benda Baru,,Tangerang/Pamulang (BT-tan),-6.344444,106.733333,,1,,11268,86,151,,,,,,35400134,,, +954,INS,id,RRI Pro-1,,Kendari/Lepo-Lepo (SG-ken),-4.018472,122.505256,,2,,12115,71,151,,2100-1600,1234567,,,49033,,, +954,PHL,,DXMP-AM Radyo ng Bayan,,Tangub City (moc),8.066667,123.75,,1,,11086,63,151,,,,,,33300018,,, +954,INS,,R Makkah AM,,Makassar (SN-mak),-5.15,119.433333,,1,,12016,75,154,,2100-1500,1234567,,,49035,,, +954,INS,id,Rama R,,Watansoppeng (SN),-4.35,119.883333,,1,,11974,74,154,,,,,,35400044,,, +954,INS,,R Sena Bahana Cakrawala,,Cibadak (JB-suk),-6.5625,106.95,,0.25,,11302,86,157,,,,,,35400133,,, +954,INS,id,PM7CLE Bazz R,,Palembang (SS-pal),-2.916667,104.75,,0.15,,10832,85,158,,,,,,49038,,, +954,INS,id,R El Bayu,,Gresik (JI-gre),-7.156111,112.658333,,0.25,,11741,81,159,,,,0,,49030,,, +954,AUS,en,2UE Talkr 954,,Sydney/Homebush Bay (NSW),-33.832311,151.07105,,5,,16548,68,162,,0000-2400,1234567,9847,,49014,,, +954,AUS,,4EL/t,,Gordonvale/Vohland Rd (QLD),-17.133889,145.856,,0.4,,14758,58,167,,0000-2400,1234567,,,49013,,, +954,NZL,,1XW LiveSPORT,,Hamilton (WKO),-37.779167,175.345833,,2,,18204,33,171,,,,,,49043,,, +954,NZL,,The Coast,,Dunedin/Centre Road (OTA),-45.886944,170.5675,,2,,18672,65,173,,,,,,52598,,, +957,KAZ,,KW,b,Kokshetau=Kksetau (aqm),53.3125,69.625,,0.025,,4119,62,114,,,,,U1020 15.1s,IDx2,85810,, +957,KAZ,,OT,b,Kokshetau=Kksetau (aqm),53.3125,69.625,,0.025,,4119,62,114,,,,,,86804,,, +959,XOE,,NJR,b,Noble Julie Robertson Platform,53.770833,0.708333,,0.025,,424,298,77,,,,999,L1020 U1018 ,ID+2 gap,85811,, +960,MDA,,L,b,Chişinău (CU),46.9375,28.958333,,0.025,,1718,101,90,,,,,,85813,,, +960,RUS,,L,b,Sankt-Peterburg/Pulkovo (SP),59.8125,30.291667,,0.025,,1702,50,90,,,,,L395 U402 ,ID+8.6 gap,85814,, +960,UKR,,CY,b,Chervonyi,50.0625,31.375,,0.025,,1750,88,90,,,,,L1030 U1037 30.0s,85812,,, +960,RUS,,M,b,Rzhev (TV),56.270833,34.375,,0.025,,1863,65,92,,,,,L650 U650 ,86805,,, +960,RUS,,RP,b,Sosnovkoye,55.8125,43.125,,0.025,,2407,66,97,,,,27,L1020 U1073 ,85815,,, +960,USA,,WEAV,,Plattsburgh (NY),44.574167,-73.448333,,5,,5658,295,107,,,,0,,41239,,, +960,USA,,WELI,i,New Haven (CT),41.370556,-72.9375,,5,,5854,292,109,,,,2,,41287,,, +960,USA,,WTGM,,Salisbury (MD),38.428889,-75.623889,,5,,6242,291,112,,,,,,43131,,, +960,CAN,en,CFAC,,Calgary (AB),50.989167,-113.84,,50,,7257,323,113,,,,9979,,35928,,, +960,USA,,WFGL,,Fitchburg (MA),42.59,-71.828611,,1,,5696,292,114,,,,,,41376,,, +960,USA,en,WFIR,,Roanoke (VA),37.255278,-79.959444,,5,,6607,293,116,,,,,,20012588,,, +960,USA,,WSBT,,South Bend (IN),41.616667,-86.216944,,5,,6649,300,117,,,,,,42961,,, +960,VEN,,YVRB R Monagas,,Maturin (mgs),9.75,-63.416667,,50,,7781,260,118,,,,,,45440,,, +960,USA,,WTCH,,Shawano (WI),44.780833,-88.631111,,1,,6541,304,122,,,,,,43117,,, +960,USA,en,KMA,,Shenandoah (IA),40.78,-95.356389,,5,,7242,305,122,,,,9966,,38871,,, +960,USA,,WERC,,Birmingham (AL),33.533889,-86.851944,,5,,7338,294,123,,,,,,41319,,, +960,USA,,WRNS,,Kinston (NC),35.2825,-77.6525,,1,,6615,290,123,,,,,,42892,,, +960,CAN,en,CKNT,,Mississauga (ON),43.614722,-79.673889,,0.28,,6107,298,124,,,,,,20109071,,, +960,CUB,es,R Reloj,,Guantnamo/CTOM2 (gu),20.1671,-75.169889,,10,,7685,276,124,,,,0,,31600022,,, +960,USA,,WRFC,,Athens (GA),33.999444,-83.433333,,2.5,,7086,292,124,,,,,,42839,,, +960,CLM,es,HJHN Caracol,,Magangu (bol),9.216667,-74.766667,,50,,8598,269,125,,,,134,,37476,,, +960,B,pt,ZYH241 Rdio Difusora,,Macei (AL),-9.553344,-35.782769,,10,,7948,224,127,,,,,,36901646,,, +960,PTR,es,WDNO,,Quebradillas (PR),18.335556,-67.030833,,1.7,,7285,269,128,,,,,,41000,,, +960,USA,,WCRU,,Dallas (NC),35.300833,-81.170278,,0.5,,6838,292,128,,,,,,43591,,, +960,USA,,WHAK,,Rogers City (MI),45.398056,-83.921944,,0.136,,6225,302,128,,,,,,41593,,, +960,B,pt,ZYH793 Rdio Jovem Palmas,,Palmas (TO),-10.151389,-48.310833,,25,,8659,235,129,,,,996,,36901647,,, +960,EQA,,HCAH2,,Guayaquil (gua),-2.2,-79.9,,50,,9949,266,130,,,,,,36842,,, +960,USA,,WATS,,Sayre (PA),41.996667,-76.500833,,0.05,,6031,295,130,,,,,,40761,,, +960,USA,en,WSVU,,North Palm Beach (FL),26.816944,-80.251944,,1.4,,7469,285,130,,,,,,41511,,, +960,PRU,,OAX4D R Panamericana,,Lima (lim),-12.066667,-76.916667,,50,,10615,257,132,,,,,,40304,,, +960,USA,,KZIM,,Cape Girardeau (MO),37.316389,-89.485,,0.5,,7188,299,132,,,,,,39890,,, +960,VEN,,YVSS R San Sebastian,,San Cristbal (tch),7.766667,-72.216667,,10,,8551,266,132,,1000-0500,1234567,,,45459,,, +960,USA,,KLAD,,Klamath Falls (OR),42.1625,-121.650278,,5,,8404,323,134,,,,,,38725,,, +960,USA,,WJYZ,,Albany (GA),31.618056,-84.175278,,0.39,,7327,291,134,,,,,,41946,,, +960,B,pt,ZYH618 Rdio Cultura do Sinhamuns,,Tau (CE),-6.008128,-40.299314,,1,,7823,230,135,,,,,,36901643,,, +960,USA,,KGWA,,Enid (OK),36.436944,-97.921111,,1,,7754,304,135,,,,,,38522,,, +960,USA,,WABG,,Greenwood (MS),33.555,-90.205556,,0.5,,7543,297,135,,,,,,40626,,, +960,CLM,es,HJHX,,Bucaramanga (sat),7.133333,-73.133333,,5,,8669,266,136,,,,,,35901456,,, +960,USA,,KKNT,,Phoenix (AZ),33.692778,-112.0025,,5,,8759,312,136,,,,988,,38737,,, +960,USA,,WDLM,,East Moline (IL),41.415833,-90.398333,,0.102,,6909,303,136,,,,,,41175,,, +960,USA,,WHYL,,Carlisle (PA),40.192778,-77.174444,,0.022,,6207,293,136,,,,,,41703,,, +960,USA,,WKVX,,Wooster (OH),40.791944,-81.904722,,0.032,,6454,297,136,,,,,,42091,,, +960,USA,en,KALE,,Richland (WA),46.242778,-119.178056,,1,,7913,324,136,,,,,,37934,,, +960,USA,en,KNEW,,Oakland (IBOC) (CA),37.827778,-122.314722,,5,,8851,321,136,,,,0,,39195,,, +960,B,pt,ZYK689 Rdio So Paulo,,So Paulo/Jardim Santa Emilia (SP),-23.646111,-46.601111,,10,,9868,227,137,,,,,,36901649,,, +960,CTR,,TICS Premium R,,San Jos (sjs),9.933333,-84.066667,,5,,9170,277,137,,0000-2400,1234567,,,40576,,, +960,DOM,es,HIFF LV del Atlantico,,San Felipe de Puerto Plata (ppl),19.800644,-70.708911,,0.25,,7412,273,137,,1000-0500,1234567,,,37246,,, +960,USA,,KNEB,,Scottsbluff (NE),41.791667,-103.641389,,0.35,,7600,311,138,,,,,,38977,,, +960,USA,,KOVO,,Provo (UT),40.212222,-111.670278,,1,,8141,315,138,,,,,,39114,,, +960,HTI,,R Carillon,,Port-au-Prince (oue),18.516667,-72.316667,,0.3,,7631,273,139,,,,,,35635,,, +960,USA,,KLTF,,Little Falls (MN),46.004444,-94.328333,,0.038,,6758,309,139,,,,,,38847,,, +960,VEN,,R Venezuela Llanera 960,,Acarigua (ptg),9.55,-69.216667,,1,,8191,265,139,,,,995,,2016,,, +960,NCG,,La Voz del Tropico Hmedo,,San Carlos (rsj),11.116667,-84.783333,,2.5,,9115,278,140,,1000-0300,1234567,,,52204,,, +960,USA,,KFLN,,Baker (MT),46.375278,-104.273611,,0.091,,7235,315,140,,,,,,38405,,, +960,USA,,KGKL,,San Angelo (TX),31.494444,-100.414444,,1,,8327,302,140,,,,,,38486,,, +960,MEX,es,XEHK-AM,,Guadalajara (jal),20.676786,-103.354406,,2.5,,9469,298,141,,,,999,,44122,,, +960,USA,,WQLA,,La Follette (TN),36.367222,-84.147222,,0.033,,6940,295,141,,,,,,41527,,, +960,B,pt,ZYI551 Rdio Clube 960,,Itaituba (PA),-4.253594,-55.971633,,1,,8559,245,142,,,,,,36901651,,, +960,USA,,WBMC,,McMinnville (TN),35.666667,-85.776389,,0.038,,7097,295,142,,,,,,40878,,, +960,MEX,es,XEK-AM,,Nuevo Laredo (tam),27.278611,-99.526833,,1,,8648,299,143,,,,,,44238,,, +960,PNR,es,HOFFM R Capital,,San Pedro (pnm),9.045025,-79.461889,,1,,8934,272,143,,,,,,37683,,, +960,USA,,WPRT,,Prestonsburg (KY),37.646111,-82.796111,,0.013,,6754,295,143,,,,,,42733,,, +960,CHL,es,CB96 R Carrera,,Santiago/La Pintana (RM),-33.589633,-70.656789,,10,,12097,239,144,,1100-0400,1234567,,,35768,,, +960,GTM,,TGRU Emisoras Unidas Utatln,,Santa Cruz del Quich (qch),15.016667,-91.15,,1,,9200,285,144,,,,,,40539,,, +960,HND,,HRYF,,Choluteca (cho),13.3,-87.166667,,1,,9085,281,144,,,,,,37881,,, +960,MEX,es,XECZ-AM ABC R,,San Luis Potos (slp),22.152778,-100.98,,1,,9192,297,144,,,,,,43892,,, +960,MEX,es,XEFAMA-AM La Fama,,Ciudad Camargo (chi),27.704156,-105.183244,,1,,8940,303,144,,,,,,43822,,, +960,PNR,es,HOM33 AM Tropical,,La Concepcin (chq),8.516944,-82.622778,,1,,9195,274,144,,,,,,52316,,, +960,SLV,es,YSTW R Centro,,Sonsonate (ssn),13.716667,-89.716667,,1,,9219,283,144,,,,,,45327,,, +960,MEX,es,XEMM-AM 960 Noticias,,Morelia/Col. Ventura Puente (mic),19.690225,-101.181278,,1,,9426,296,145,,,,,,44387,,, +960,MEX,es,XETAP-AM La Poderosa,,Tapachula (cps),14.891911,-92.246403,,1,,9283,286,145,,,,,,44794,,, +960,MEX,es,XEXC-AM ABC R,,Taxco de Alarcn (gue),18.551944,-99.599722,,1,,9430,294,145,,,,,,45045,,, +960,USA,,KCGS,,Marshall (AR),35.915556,-92.638889,,0.044,,7492,300,145,,,,,,38144,,, +960,ARG,,LRA6 R Nacional,,Mendoza (mz),-32.883333,-68.816667,,5,,11928,238,146,,1000-0500,1234567,,,40258,,, +960,ARG,,LU13 R Necochea,,Necochea (ba),-38.538317,-58.732044,,5,,11880,228,146,,0900-0400,1234567,,,40206,,, +960,EQA,es,HCNC1 La Pantera,,Quito (tun),-1.166667,-78.5,,1,,9763,265,146,,,,,,37037,,, +960,MEX,es,XEROO-AM La Guadalupana,,Chetumal (qui),18.521344,-88.287969,,0.5,,8705,285,146,,,,,,44695,,, +960,EQA,,HCSA5 R Sononda Internacional,,Cuenca (azu),-2.866667,-79.033333,,1,,9949,265,147,,,,,,37126,,, +960,MEX,es,XEIQ-AM Extasis 960,,Ciudad Obregn (son),27.514083,-109.952689,,0.5,,9224,307,147,,,,,,44177,,, +960,USA,,KIMP,,Mount Pleasant (TX),33.165,-95.0075,,0.075,,7865,300,147,,,,,,38615,,, +960,USA,,KROF,,Abbeville (LA),30.011111,-92.1225,,0.095,,7960,296,147,,,,,,39281,,, +960,USA,,KSRA,,Salmon (ID),45.183889,-113.87,,0.056,,7787,320,147,,,,,,39410,,, +960,USA,,KNDN,,Farmington (NM),36.73,-108.229722,,0.163,,8287,311,148,,,,402,,38974,,, +960,USA,,WLPR,,Prichard (AL),30.763889,-88.11,,0.032,,7647,293,148,,,,,,42217,,, +960,CHL,es,CD96 R Polar,,Punta Arenas (MA),-53.158503,-70.915467,,10,,13724,224,149,,0000-2400,1234567,,,35924,,, +960,MEX,es,XEUQ-AM R Variedades,,Zihuatanejo (gue),17.646414,-101.568311,,0.5,,9634,295,149,,,,,,44924,,, +960,PRU,es,R Manantial,,Huancayo (jun),-12.133333,-75.266667,,1,,10511,256,149,,,,,,37000044,,, +960,B,pt,ZYK291 Rdio Imembu,,Santa Maria (RS),-29.697222,-53.806111,,1,,10812,229,150,,,,,,36901650,,, +960,MEX,es,XEOZ-AM Amor,,Xalapa/Las nimas (vcz),19.519339,-96.885983,,0.25,,9173,292,150,,,,,,44522,,, +960,B,pt,ZYI216 Rdio Diocesana,,Cachoeiro de Itapemirim (ES),-20.822856,-41.141072,,0.25,,9325,224,151,,,,976,,36901648,,, +960,B,pt,ZYJ257 Rdio Difusora Maring,,Maring (PR),-23.363611,-51.9,,0.25,,10115,231,153,,,,,,36901641,,, +960,MEX,es,XEKS-AM,,Saltillo (coa),25.443611,-100.989444,,0.1,,8898,299,153,,,,,,44266,,, +960,B,pt,ZYJ733 Rdio Guaruj,,Orleans (SC),-28.354167,-49.231944,,0.25,,10452,227,154,,,,,,36901645,,, +960,URG,,CW96 R Yi,,Durazno (du),-33.366667,-56.516667,,0.5,,11294,229,154,,1000-0200,1234567,,,36781,,, +960,B,pt,ZYJ813 Rdio Super Difusora,,Xanxer (SC),-26.871111,-52.384722,,0.25,,10472,230,155,,,,,,36901642,,, +960,BOL,,CP93 R Kollasuyo,,Potosi (pts),-19.566667,-65.766667,,0.25,,10564,244,155,,0930-2400,1234567,,,36720,,, +960,USA,,KIXW,,Apple Valley (CA),34.516667,-117.226389,,0.02,,8939,316,160,,,,99705,,38651,,, +963,TUN,xx,RTT R.Tunis Chane Int.,,Tunis/Djedeida (tun),36.836556,9.929472,,100,,1721,169,54,,0200-2300,1234567,0,,711,,, +963,BUL,bg,BNR Horizont,,Dragoman (sof),42.907094,22.926144,,40,,1602,123,57,,0000-2400,1234567,,,697,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,0000-0100,1234567,,,783,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,0252-0600,1234567,,,783,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,0800-1300,1234567,,,783,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,1500-1830,1234567,,,783,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,2030-2400,1234567,,,783,,, +963,BUL,tr,R Bulgaria,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,0600-0800,1234567,,,783,,, +963,BUL,tr,R Bulgaria,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,1300-1500,1234567,,,783,,, +963,BUL,tr,R Bulgaria,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,1830-2030,1234567,,,783,,, +963,G,,Sunrise R 2,,East London/Lea Bridge Road (EN-GTL),51.561944,-0.038611,,0.95,,447,265,62,,0000-2400,1234567,9977,,703,,, +963,CYP,el,CyBC-RIK Proto Prog.,,Nicosia (kyp-nic),35.053092,33.296217,,100,,2849,121,66,,0000-2400,1234567,,,700,,, +963,POR,pt,Rdio Sim,,Seixal/Moinho de Mar (set),38.638647,-9.087883,,10,,1918,225,66,,0000-2400,1234567,3,,708,,, +963,POL,pl,Twoje R Lubliniec,,Lubliniec/Komin C Lubliniec (SL),50.678333,18.667222,,0.8,,864,96,67,,0600-0700,1234567,,,6400005,,, +963,POL,pl,Twoje R Lubliniec,,Lubliniec/Komin C Lubliniec (SL),50.678333,18.667222,,0.8,,864,96,67,,1600-1700,1234567,,,6400005,,, +963,POL,pl,Twoje R,,Lubliniec/Komin C Lubliniec (SL),50.678333,18.667222,,0.8,,864,96,67,,0700-1600,1234567,,,6400005,,, +963,POL,pl,Twoje R,,Lubliniec/Komin C Lubliniec (SL),50.678333,18.667222,,0.8,,864,96,67,,1700-0600,1234567,,,6400005,,, +963,G,,Asian Sound R,,Haslingden/Cribden Hill (EN-LNC),53.708472,-2.311333,,0.2,,611,290,70,,0000-2400,1234567,46,,704,,, +963,POL,pl,R AM,,Brzesko/Komin MPEC (MP),49.973889,20.628611,,0.5,,1020,98,70,,0000-2400,1234567,,,6400025,,, +963,POL,pl,Twoje R Lubaczw,,Lubaczw/Starostwo Powiatowe (PK),50.158056,23.121389,,0.8,,1183,94,70,,0600-0700,1234567,,,6400006,,, +963,POL,pl,Twoje R Lubaczw,,Lubaczw/Starostwo Powiatowe (PK),50.158056,23.121389,,0.8,,1183,94,70,,1500-1600,1234567,,,6400006,,, +963,POL,pl,Twoje R,,Lubaczw/Starostwo Powiatowe (PK),50.158056,23.121389,,0.8,,1183,94,70,,0700-1500,1234567,,,6400006,,, +963,POL,pl,Twoje R,,Lubaczw/Starostwo Powiatowe (PK),50.158056,23.121389,,0.8,,1183,94,70,,1600-0600,1234567,,,6400006,,, +963,POL,pl,Twoje R Lipsko,,Lipsko/ul. Przemysłowa 22 (MW),51.151389,21.656667,,0.1,,1056,90,78,,0630-0730,1234567,,,707,,, +963,POL,pl,Twoje R Lipsko,,Lipsko/ul. Przemysłowa 22 (MW),51.151389,21.656667,,0.1,,1056,90,78,,1630-1730,1234567,,,707,,, +963,POL,pl,Twoje R,,Lipsko/ul. Przemysłowa 22 (MW),51.151389,21.656667,,0.1,,1056,90,78,,0730-1630,1234567,,,707,,, +963,POL,pl,Twoje R,,Lipsko/ul. Przemysłowa 22 (MW),51.151389,21.656667,,0.1,,1056,90,78,,1730-0630,1234567,,,707,,, +963,IRN,fa,IRIB R Iran,,Birjand (skh),32.818511,59.335794,,200,,4711,96,81,,,,,,705,,, +963,SDN,ar,SRTC As-Salam R,,Khartoum/Soba (kha),15.475339,32.620111,,100,,4685,141,84,,1000-0600,1234567,,,2434,,, +963,KWT,ar,R Kuwait Main Arabic,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,0000-0500,1234567,,,706,,, +963,KWT,ar,R Kuwait Main Arabic,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,1200-1600,1234567,,,706,,, +963,KWT,ar,R Kuwait Main Arabic,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,2100-2400,1234567,,,706,,, +963,KWT,en,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,0500-0800,1234567,,,706,,, +963,KWT,en,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,1800-2100,1234567,,,706,,, +963,KWT,fa,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,0800-1000,1234567,,,706,,, +963,KWT,tl,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,1000-1200,1234567,,,706,,, +963,KWT,ur,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,1600-1800,1234567,,,706,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Tacheng=Qoqek/SARFT634 (XJ),46.745556,83.006667,,10,,5310,64,100,,0000-1800,1234567,,,49062,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,10,,5398,68,101,,,,,,36200021,,, +963,RUS,xx,R Rossii,,Zakamensk/SRV20 (BU),50.352272,103.273361,,25,,6214,50,105,,2057-1700,1234567,,,49083,,, +963,RUS,,KCH,b,Orenburg-2 (OB),51.729167,55.041667,,0.025,,3272,71,106,,,,,,86806,,, +963,RUS,,NS,b,Orenburg-2 (OB),51.729167,55.041667,,0.025,,3272,71,106,,,,,U1040 ,86807,,, +963,CHN,ru,China R Int.,,Huadian/SARFT763 (JL),43.121056,126.51575,,600,25,7969,42,109,,1000-1600,1234567,999,,49061,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Kaba=Habahe/SARFT8114 (XJ),48.075,86.404722,,1,,5428,61,111,,,,,,36200023,,, +963,IND,,AIR West,,Jalgaon (MH),20.915556,75.523333,,20,,6772,93,112,,0025-0430,1234567,,,49067,,, +963,IND,,AIR West,,Jalgaon (MH),20.915556,75.523333,,20,,6772,93,112,,0700-1000,1234567,,,49067,,, +963,IND,,AIR West,,Jalgaon (MH),20.915556,75.523333,,20,,6772,93,112,,1200-1740,1234567,,,49067,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Fuyun=Koktokay/XJTS8115 (XJ),46.994167,89.503889,,1,,5686,60,114,,0845-1600,1234567,,,49066,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Fuyun=Koktokay/XJTS8115 (XJ),46.994167,89.503889,,1,,5686,60,114,,2150-0540,1234567,,,49066,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Mori=Mulei/SARFT8112 (XJ),43.811111,90.274722,,1,,5958,63,117,,,,,,36200022,,, +963,BGD,,Bangladesh Betar,,Sylhet (syl),24.893942,91.906147,,20,,7552,77,120,,0000-0400,1234567,,,49060,,, +963,BGD,,Bangladesh Betar,,Sylhet (syl),24.893942,91.906147,,20,,7552,77,120,,0800-1710,1234567,,,49060,,, +963,MOZ,pt,Emisso Provincial de Tete,,Tete (tte),-16.128094,33.623208,,50,,8030,153,120,,0250-2200,1234567,,,2433,,, +963,CHN,,Liaoning RGD Xinwen Tai,,Dalian/LNTS303 (LN),39.087778,121.677778,,50,,8106,47,121,,,,,,49064,,, +963,CHN,,Liaoning RGD Xinwen Tai,,Jinzhou (LN),41.116667,121.116667,,20,,7895,46,123,,,,,,36200652,,, +963,CHN,,Liaoning RGD Xinwen Tai,,Beipiao/LNTS330 (LN),41.8,120.783333,,10,,7817,46,125,,,,,,36200653,,, +963,CHN,,Handan RGD,,Handan/Nanbao Xiang (HB),36.558056,114.522778,,10,,7954,54,127,,,,,,49065,,, +963,THA,th,Sor. Wor. Sor.,,Krabi/Nua Khlong (krb),8.113111,98.998653,,25,,9472,83,131,,2130-1700,1234567,,,49085,,, +963,CHN,,Huangshi RGD News,,Huangshi (HU),30.216667,115.1,,10,,8548,57,132,,,,,,50976,,, +963,TWN,,BCC Country Network,,New Taipei City/Panchiao (TP),24.983822,121.436597,,20,,9383,56,132,,0000-2400,1234567,,,49052,,, +963,KOR,,HLCR KBS 1 R,,Andong (gsb),36.543056,128.696306,,10,,8683,44,133,,0000-2400,1234567,,,49076,,, +963,KOR,,HLKS KBS 1 R,,Jeju=Cheju (jej),33.4475,126.566111,,10,,8870,47,133,,0000-2400,1234567,,,49077,,, +963,THA,th,Phon Mor. Song,,Bangkok/Samsen Road (bmp),13.793661,100.519792,,10,,9078,78,134,,,,,,49084,,, +963,TWN,,Taiwan Guangbo Gongsi,,Nanto/Chunghsing (NT),24.001867,120.663639,,10,,9430,57,135,,,,,,49086,,, +963,J,,JOTG NHK1,,Aomori (toh-aom),40.793889,140.7575,,5,,8786,33,136,,0000-2400,1234567,9993,,49071,,, +963,J,,JOZK NHK1,,Matsuyama (shi-ehi),33.816667,132.733333,,5,,9132,43,137,,0000-2400,1234567,,,49073,,, +963,PHL,,DZNS-AM Radyo Totoo,,Vigan City (ils),17.566667,120.366667,,5,,10005,61,140,,2100-1300,1234567,,,49081,,, +963,PHL,tl,DYMF-AM Bombo Radyo,,Cebu City (ceb),10.25,123.95,,10,,10896,62,140,,1945-????,1234567,,,49080,,, +963,INS,id,RRI Pro-1,,Jember (JI-jem),-8.185467,113.620208,,10,,11897,81,143,,2200-1700,1234567,0,,49070,,, +963,J,,JOLQ NHK1,,Yonago (chg-tot),35.45,133.316667,,1,,9001,41,144,,0000-2400,1234567,,,49075,,, +963,J,,JOSP NHK1,,Saga (kyu-sag),33.251944,130.265833,,1,,9070,45,144,,0000-2400,1234567,,,49074,,, +963,J,,NHK R 1,,Hagi (chg-yam),34.583333,131.4,,1,,8997,43,144,,0000-2400,1234567,,,49072,,, +963,PHL,,DXYZ-AM Sonshine R,,Zamboanga City (zds),6.933333,122.066667,,5,,11088,65,144,,,,,,49082,,, +963,AUS,,6TZ R West,,Bunbury/Wireless Road (WA),-33.339494,115.753394,,2,,14137,99,158,,0000-2400,1234567,,,49056,,, +963,AUS,,5SE,,Mount Gambier/Stonehaven (SA),-37.795944,140.721944,,5,,16163,84,160,,0000-2400,1234567,,,49058,,, +963,AUS,en,4WK,,Warwick/Clifton (QLD),-28.023139,151.9775,,5,,16110,60,160,,0000-2400,1234567,76,,49059,,, +963,AUS,,2RG,,Griffith (NSW),-34.327278,146.133333,,5,,16268,74,161,,0000-2400,1234567,,,49057,,, +963,NZL,en,3YC Southern Star/RNZ Parliament,,Christchurch/Gebbies Pass (CAN),-43.695706,172.647833,,10,,18631,53,166,,0000-2400,1234567,,,49078,,, +965,RUS,,B,b,Kazan (TS),55.604167,49.291667,,0.025,,2793,65,101,,,,,,85816,,, +970,RUS,,KQ,b,Tambov (TA),52.6875,41.375,,0.025,,2350,74,96,,,,,L965 ,85820,,, +970,RUS,,SM,b,Tambov (TA),52.6875,41.375,,0.025,,2350,74,96,,,,,,85821,,, +970,RUS,,US,b,Yelshanka,51.8125,46.375,,0.025,,2704,75,100,,,,,,85822,,, +970,USA,en,WZAN,,Portland/Sunset Park (ME),43.605278,-70.321667,,5,,5530,293,105,,,,9986,,43564,,, +970,USA,,WNYM,,Hackensack (NJ),40.911111,-74.028333,,5,,5956,292,110,,,,18,,43367,,, +970,USA,en,WDCZ,,Buffalo (NY),42.744722,-78.886944,,5,,6123,297,111,,,,3,,42456,,, +970,USA,,WBGG,,Pittsburgh (PA),40.510833,-80.0075,,5,,6359,295,114,,,,,,40842,,, +970,ALS,,KFBX,,Fairbanks (AK),64.88,-147.674722,,10,,6817,348,115,,0000-2400,1234567,996,,38379,,, +970,USA,,WDAY,,Fargo/Barnesville (ND),46.646667,-96.363889,,10,,6813,310,115,,,,998,,41126,,, +970,USA,,WGTK,,Louisville (KY),38.318056,-85.744167,,5,,6882,297,119,,,,,,41573,,, +970,USA,,WFUN,,Ashtabula (OH),41.814444,-80.779167,,1,,6308,297,120,,,,,,41455,,, +970,USA,en,WWRK,,Florence (SC),34.233889,-79.781667,,3,,6835,290,121,,,,,,41902,,, +970,USA,,WAMD,,Aberdeen (MD),39.509722,-76.193889,,0.5,,6197,292,122,,,,,,40704,,, +970,USA,,WKHM,,Jackson (MI),42.194167,-84.430556,,1,,6498,300,122,,,,,,42013,,, +970,USA,en,WFLA,,Tampa (FL),28.020556,-82.609444,,11,,7524,287,122,,,,10,,41394,,, +970,USA,en,WKCI,,Waynesboro (VA),38.086667,-78.911667,,1,,6477,293,122,,,,,,41973,,, +970,USA,,WERH,,Hamilton (AL),34.116944,-87.991389,,5,,7361,296,124,,,,,,41321,,, +970,CLM,es,HJME,,Maicao (lag),11.366667,-72.216667,,25,,8237,268,125,,,,,,37563,,, +970,USA,,KBUL,,Billings (MT),45.743056,-108.543333,,5,,7494,317,125,,,,0,,38107,,, +970,VEN,,YVLR R Continente 970 Maracay,,Maracay (arg),10.316667,-67.666667,,10,,8019,264,127,,0900-0400,1234567,2,,45372,,, +970,USA,,KQAQ,,Austin (MN),43.7075,-92.945833,,0.5,,6868,306,129,,,,17,,38991,,, +970,VIR,,WSTX,,Christiansted (stc),17.756389,-64.693889,,1,,7175,266,129,,,,7,,43078,,, +970,CLM,es,HJVK,,Florencia (caq),1.616667,-75.616667,,30,,9322,265,130,,,,,,35901461,,, +970,CUB,es,R Guam,,Los Palacios (pr),22.653397,-83.224986,,5,,8016,284,130,,,,,,36446,,, +970,USA,,WBLF,,Bellefonte (PA),40.903333,-77.768333,,0.07,,6191,294,130,,,,,,40874,,, +970,USA,,WMAY,,Springfield (IL),39.861667,-89.542222,,0.5,,6984,301,130,,,,,,42276,,, +970,VEN,,YVSD R Tourismo,,Valera (tjl),9.316667,-70.583333,,10,,8304,265,130,,0855-0355,1234567,,,45453,,, +970,USA,,KUFO,,Portland (OR),45.515556,-122.732222,,5,,8124,325,131,,,,9960,,39589,,, +970,USA,,WCHN,,Norwich (NY),42.506389,-75.492778,,0.034,,5932,295,131,,,,,,40997,,, +970,USA,,WESO,,Southbridge (MA),42.066389,-71.991111,,0.021,,5744,292,131,,,,,,41326,,, +970,USA,,KFTA,,Rupert (D) (ID),42.601944,-113.7225,,2.5,,8018,318,133,,,,9816,,38435,,, +970,USA,,WRCS,,Ahoskie (NC),36.279444,-77.033056,,0.08,,6497,290,133,,,,,,42824,,, +970,USA,,WZAM,,Ishpeming (MI),46.505556,-87.54,,0.062,,6348,305,133,,,,,,43563,,, +970,B,pt,ZYH451 Rdio Sociedade,,Feira de Santana (BA),-12.271461,-38.930919,,5,,8371,226,134,,,,,,36901666,,, +970,CLM,es,HJCI R Red,,Bogot D. C. (bdc),4.583333,-74.066667,,10,,8956,265,134,,,,994,,37370,,, +970,USA,,KCFO,,Tulsa (OK),36.196111,-96.039444,,1,,7667,302,134,,,,,,38142,,, +970,USA,en,KTTO,,Spokane (WA),47.616389,-117.365278,,1,,7711,323,134,,,,,,20016029,,, +970,CUB,es,R Rebelde,,Trinidad (ss),21.788014,-79.986067,,1,,7873,281,136,,,,9998,,31600115,,, +970,EQA,,HCOT1,,Santo Domingo de los Colorados (pic),-0.166667,-79.066667,,10,,9713,266,136,,,,,,37052,,, +970,MEX,es,XEJ-AM La Mexicana,,Ciudad Jurez (chi),31.682728,-106.357019,,5,,8645,307,136,,,,,,44193,,, +970,USA,,KSYL,,Alexandria (D) (LA),31.326389,-92.489444,,1,,7871,297,136,,,,,,39447,,, +970,USA,,KSYL,,Alexandria (N) (LA),31.326389,-92.489167,,1,,7871,297,136,,,,,,20016290,,, +970,USA,en,WMPW,,Danville (VA),36.559444,-79.367222,,0.054,,6624,292,136,,,,,,20012511,,, +970,B,pt,ZYI910 Rdio Vale do Parnaba,,Luzilndia (PI),-3.469147,-42.362922,,0.5,,7687,233,137,,,,,,36901667,,, +970,DOM,,HIVP R Olimpica,,Villa Tapia (hmb),19.3,-70.416667,,0.25,,7435,272,137,,1000-0300,1234567,,,37316,,, +970,EQA,,HCAW2,,Guayaquil (gua),-2.105278,-79.926944,,10,,9942,266,137,,,,,,36856,,, +970,MEX,es,XEVT-AM,,Villahermosa (tab),17.930625,-93.0037,,5,,9065,288,137,,,,,,44993,,, +970,USA,,KHTY,,Bakersfield (CA),35.45,-118.946667,,5,,8931,318,137,,,,,,38467,,, +970,USA,,WHA,,Madison (WI),43.041667,-89.408611,,0.051,,6722,303,137,,,,,,41591,,, +970,USA,,WNNR,,Jacksonville (FL),30.385556,-81.667778,,0.164,,7267,288,137,,,,,,42488,,, +970,BOL,,CP30 R Santa Cruz,,Santa Cruz (scz),-17.766667,-63.166667,,10,,10242,243,138,,0900-0100,1234567,,,51982,,, +970,USA,,KFTA,,Rupert (N) (ID),42.602778,-113.7225,,0.9,,8018,318,138,,,,,,20016219,,, +970,B,pt,ZYK201 Rdio Pampa,,Porto Alegre/Ilha da Pintada (RS),-30.016217,-51.261889,,10,,10712,227,139,,,,,,36901668,,, +970,MEX,es,XERFR-AM R Frmula 1,,Mxico D.F/Aculco (dif),19.379792,-99.102561,,4,,9325,294,139,,0000-2400,1234567,998,,43904,,, +970,USA,,WATH,,Athens (OH),39.344444,-82.105833,,0.026,,6578,296,139,,,,,,40756,,, +970,USA,,WGEE,,Superior (WI),46.724444,-92.119722,,0.026,,6582,308,139,,,,,,41494,,, +970,B,pt,ZYH612 Rdio Monlitos de Quixad,,Quixad (CE),-5.002047,-39.037178,,0.25,,7658,230,140,,,,,,36901661,,, +970,B,pt,ZYJ260 Rdio Alvorada AM,,Londrina/Estrada da Cegonha (PR),-23.403603,-51.15605,,5,,10079,231,140,,,,,,36901662,,, +970,USA,,KIXL,,Del Valle (TX),30.320278,-97.623611,,1,,8267,300,140,,,,,,38650,,, +970,USA,,WWYO,,Pineville (WV),37.588889,-81.540278,,0.026,,6680,294,140,,,,,,43449,,, +970,CAN,xx,CBDX,,Swift River (YT),60.002222,-131.195278,,0.04,,6986,338,141,,,,,,20109128,,, +970,USA,,WVOP,,Vidalia (GA),32.22,-82.435278,,0.06,,7167,290,141,,,,,,43334,,, +970,USA,,WYSE,,Canton (NC),35.532778,-82.866111,,0.03,,6927,293,141,,,,,,42635,,, +970,B,pt,ZYI684 Rdio Princesa Isabel,,Princesa Isabel (PB),-7.739919,-37.979356,,0.25,,7874,227,142,,,,,,36901653,,, +970,EQA,,HCJX6,,Banos (tun),-1.4,-78.416667,,3,,9778,265,142,,,,,,36998,,, +970,EQA,,HCSA5,,Cuenca (azu),-2.883333,-78.966667,,3,,9945,265,142,,,,,,37127,,, +970,USA,,WFSR,,Harlan (KY),36.867222,-83.326667,,0.024,,6849,295,142,,,,,,41441,,, +970,MEX,es,XEBJ-AM Imagen,,Ciudad Victoria (tam),23.796572,-99.132256,,1,,8933,297,143,,,,,,43779,,, +970,MEX,es,XEO-AM R Gallito,,Matamoros (tam),25.910258,-97.530531,,1,,8648,297,143,,,,,,44470,,, +970,USA,,KESP,i,Modesto (IBOC) (CA),37.689722,-120.953333,,1,,8805,320,143,,,,0,,38342,,, +970,USA,,KHVN,,Fort Worth (TX),32.798889,-97.295278,,0.27,,8032,301,143,,,,,,38570,,, +970,USA,,WNIV,,Atlanta (GA),33.809722,-84.353889,,0.039,,7159,293,143,,,,,,42473,,, +970,GTM,,TGAX R Continental,,Ciudad de Guatemala (gut),14.616667,-90.566667,,1,,9196,284,144,,1200-0430,1234567,,,40481,,, +970,HND,,HRRH2,,Santa Rosa de Copan (cop),14.716667,-88.816667,,1,,9072,283,144,,,,,,37837,,, +970,HND,,HRTL3,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37852,,, +970,PNR,es,HOS97 Ondas Centrales,,Santiago/La Pea (vrg),8.096667,-80.975278,,1,,9120,273,144,,1000-0300,123456,,,37730,,, +970,PNR,es,HOS97 Ondas Centrales,,Santiago/La Pea (vrg),8.096667,-80.975278,,1,,9120,273,144,,1300-2400,......7,,,37730,,, +970,SLV,,YSMS,,San Salvador (ssl),13.716667,-89.216667,,1,,9186,283,144,,,,,,45300,,, +970,USA,,KFEL,,Pueblo (CO),38.265833,-104.678889,,0.185,,7964,309,144,,,,,,38381,,, +970,USA,,KNWZ,,Coachella (CA),33.686667,-116.159444,,1,,8967,315,144,,,,,,39037,,, +970,USA,en,WFQY,,Brandon (MS),32.273889,-90.013611,,0.09,,7639,296,144,,,,,,42870,,, +970,USA,en,WRHA,,Spring City (TN),35.666389,-84.878889,,0.024,,7041,295,144,,,,,,43487,,, +970,MEX,es,XEMH-AM Candela,,Mrida (yuc),20.981667,-89.589167,,0.5,,8577,288,145,,,,,,44375,,, +970,MEX,es,XEUG-AM,,Guanajuato (gua),21.035581,-101.275408,,1,,9311,297,145,,,,,,44900,,, +970,USA,,KJLT,,North Platte (NE),41.16,-100.878611,,0.055,,7510,309,145,,,,,,38677,,, +970,USA,,KNEA,,Jonesboro (AR),35.854722,-90.729167,,0.041,,7383,299,145,,,,,,38976,,, +970,USA,,WTBF,,Troy (AL),31.835278,-85.932778,,0.045,,7421,292,145,,,,,,43110,,, +970,EQA,,HCJJ5,,Riobamba (chi),-1.633333,-78.616667,,1,,9812,265,146,,,,,,36986,,, +970,EQA,,HCMB1,,Continente (nap),-0.35,-78.183333,,1,,9669,266,146,,,,,,37014,,, +970,EQA,,HCNC1,,Quito (pic),-0.2,-78.466667,,1,,9676,266,146,,,,,,37038,,, +970,MEX,es,XEMF-AM La Mejor,,Monclova (coa),26.917892,-101.409708,,0.5,,8792,300,146,,,,,,44370,,, +970,USA,,KNIH,,Paradise (NV),36.011111,-115.241111,,0.5,,8703,315,146,,,,,,39028,,, +970,B,pt,ZYK684 Rdio Hertz de Franca,,Franca (SP),-20.511067,-47.405161,,0.7,,9605,229,147,,,,,,36901655,,, +970,MEX,es,XESW-AM R Madera,,Ciudad Madera (chi),29.184167,-108.170833,,0.5,,8972,306,147,,,,,,44780,,, +970,MEX,es,XEZAZ-AM,,Zacatecas (zac),22.744722,-102.525278,,0.5,,9233,298,147,,,,,,45123,,, +970,URG,es,CX22 R Universal,,Montevideo (mo),-34.871133,-56.295428,,3,,11422,228,147,,0900-0400,1234567,,,36808,,, +970,B,pt,ZYI399 Rdio Vale do Taquari,,Coxim (MS),-18.52045,-54.745606,,0.5,,9815,236,149,,,,,,36901669,,, +970,MEX,es,XEVOX-AM Fiesta Mexicana,,Mazatln (sin),23.280047,-106.418283,,0.4,,9414,302,149,,,,,,44979,,, +970,PRG,,ZP9 R 970 AM,,Asuncin (asu),-25.266667,-57.616667,,1,,10605,235,149,,0900-0400,1234567,0,,45561,,, +970,USA,,KVWM,,Show Low (AZ),34.211111,-110.005556,,0.195,,8609,311,149,,,,,,39679,,, +970,ARG,,LT25 R Guarani,,Curuzu Cuatia (cn),-29.766667,-58.033333,,1,,11043,233,150,,0900-0300,1234567,,,40177,,, +970,ARG,es,LV2 R General Paz,,Crdoba (cb),-31.436625,-64.096322,,1.5,,11530,236,150,,0000-2400,1234567,,,40243,,, +970,CHL,,CA97 R Calama,,Calama (AN),-22.45,-68.933333,,1,,11017,245,150,,1000-0400,1234567,,,35715,,, +970,CLM,es,HKX59,,Calarca (qui),4.533333,-75.65,,0.25,,9068,267,150,,,,,,35901459,,, +970,MEX,es,XEEZ-AM La Mejor,,Caborca (son),30.725392,-112.163697,,0.25,,9044,310,150,,,,,,43987,,, +970,B,pt,ZYL243 Rdio Sociedade Caratinga,,Caratinga (MG),-19.785528,-42.151742,,0.25,,9271,225,151,,,,,,36901663,,, +970,B,pt,ZYL285 Rdio So Joo 970 AM,,So Joo del Rei (MG),-21.11815,-44.241244,,0.25,,9504,226,151,,,,,,36901659,,, +970,B,pt,ZYL321 Rdio Central do Triangulo Mineir,,Monte Alegre de Minas (MG),-18.873,-48.869556,,0.25,,9525,231,151,,,,,,36901654,,, +970,ARG,,NCN Cadena de la Nueva Conciencia,,Villa Insuperabile (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51815,,, +970,B,pt,ZYK349 Rdio Alto Uruguai,,Humait (RS),-27.55,-53.833333,,0.5,,10612,231,152,,,,,,36901656,,, +970,B,pt,ZYK529 Rdio Piratininga,,So Joo da Boa Vista (SP),-22.002792,-46.800233,,0.25,,9719,228,152,,,,,,36901657,,, +970,B,pt,ZYK744 Rdio Alvorada,,Estrela d'Oeste/Chcara So Joo (SP),-20.295336,-50.408939,,0.25,,9743,232,152,,,,,,36901660,,, +970,MEX,es,XECJ-AM R Apatzingan,,Apatzingan (mic),19.087792,-102.363347,,0.25,,9553,296,152,,,,,,43844,,, +970,B,pt,ZYK505 Rdio Transamrica,,Itapetininga (SP),-23.602225,-48.030528,,0.25,,9936,228,153,,,,,,36901652,,, +970,B,pt,ZYJ277 Rdio Difusora do Paran,,Marechal Cndido Rondon (PR),-24.515556,-54.037222,,0.25,,10338,232,154,,,,,,36901665,,, +970,B,pt,ZYJ730 Rdio Araguaia AM,,Brusque (SC),-27.083333,-48.916667,,0.25,,10315,227,154,,,,,,36901658,,, +970,CHL,,CC97 R Lautaro,,Talca (ML),-35.416667,-71.666667,,1,,12312,238,155,,1000-0500,1234567,,,35842,,, +970,CHL,,CD97A R Austral,,Valdivia (LL),-39.766667,-73.216667,,1,,12768,236,156,,1030-0400,1234567,,,35925,,, +970,CHL,,CD97B R Patagonia Chilena,,Coyhaique (AI),-45.533333,-72.033333,,1,,13176,231,157,,1000-0400,1234567,,,35926,,, +972,D,de,Funkhaus Europa,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,1500-1900,....5..,0,,713,,, +972,D,de,Funkhaus Europa,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,1500-2000,1234...,0,,713,,, +972,D,de,Hamburger Hafenkonzert,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0500-0700,......7,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0000-0730,1234567,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0700-0730,......7,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0745-1500,12345..,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0745-2105,.....67,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,1900-2400,....5..,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2000-2105,1234...,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2120-2305,1234.67,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2320-2400,1234.67,0,,713,,, +972,D,de,NDR Seewetterbericht,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0730-0745,1234567,0,,713,,, +972,D,de,NDR Seewetterbericht,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2105-2120,1234.67,0,,713,,, +972,D,de,NDR Seewetterbericht,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2305-2320,1234.67,0,,713,,, +972,UKR,uk,UR 1 Persha Prog.,,Mykolaiv/Luch (MY),46.813222,32.203561,,40,,1943,97,60,,0400-0800,1234567,9981,,721,,, +972,UKR,uk,UR 1 Persha Prog.,,Mykolaiv/Luch (MY),46.813222,32.203561,,40,,1943,97,60,,1500-2000,1234567,9981,,721,,, +972,G,,Sunrise R 2,,London/Glade Lane (EN-GTL),51.504444,-0.359722,,1,,470,264,62,,0000-2400,1234567,9957,,716,,, +972,E,es,RNE R Nacional,,Monforte de Lemos/Pieira (GAL-LU),42.500906,-7.532717,,6,,1494,230,64,,0000-2400,1234567,0,,715,,, +972,E,es,RNE R Nacional,,Cabra/La Paz (AND-CO),37.454483,-4.456622,,4,,1837,212,69,,0000-2400,1234567,997,,714,,, +972,E,es,RNE Melilla,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0525-0530,12345..,1,,719,,, +972,E,es,RNE Melilla,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0550-0600,12345..,1,,719,,, +972,E,es,RNE Melilla,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,1110-1200,12345..,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0000-0525,12345..,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0000-2400,.....67,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0530-0550,12345..,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0600-1110,12345..,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,1200-2400,12345..,1,,719,,, +972,IRN,fa,IRIB R Ilam,,Ilam (ilm),33.641056,46.372528,,100,,3780,107,75,,0000-2400,1234567,7,,717,,, +972,TJK,en,Voice of Russia,,Orzu (ktl),37.534722,68.807222,,800,150,5010,83,78,,0200-0400,1234567,9995,,2246,,, +972,TJK,en,Voice of Russia,,Orzu (ktl),37.534722,68.807222,,800,150,5010,83,78,,1200-1300,1234567,9995,,2246,,, +972,TJK,hi,Voice of Russia,,Orzu (ktl),37.534722,68.807222,,800,150,5010,83,78,,1300-1400,1234567,9995,,2246,,, +972,TJK,ur,VOA R Aap Ki Dunyaa,,Orzu (ktl),37.534722,68.807222,,800,150,5010,83,78,,1400-0200,1234567,9995,,2246,,, +972,NIG,,Katsina State R & TV Service,,Dutsinma (kts),12.4676,7.485133,,25,,4409,178,87,,0430-2300,1234567,,,2437,,, +972,ETH,,ERTA Ethiopia National R,,Robe (orm),7.118508,39.996356,,100,,5864,136,96,,0300-0600,1234567,,,46833,,, +972,ETH,,ERTA Ethiopia National R,,Robe (orm),7.118508,39.996356,,100,,5864,136,96,,0800-2100,1234567,,,46833,,, +972,NIG,,Kogi State BC,,Otite (kog),7.589617,6.220539,,10,,4950,180,97,,0500-2300,1234567,,,2436,,, +972,IND,,AIR East,,Cuttack A (OR),20.412222,86.006111,,300,20,7530,85,108,,0023-0440,123456,,,49094,,, +972,IND,,AIR East,,Cuttack A (OR),20.412222,86.006111,,300,20,7530,85,108,,0023-0500,......7,,,49094,,, +972,IND,,AIR East,,Cuttack A (OR),20.412222,86.006111,,300,20,7530,85,108,,0658-0940,1234567,,,49094,,, +972,IND,,AIR East,,Cuttack A (OR),20.412222,86.006111,,300,20,7530,85,108,,1123-1735,1234567,,,49094,,, +972,KOR,ko,HLCA KBS Hanminjok Bangsong 1,,Dangjin (ccg),36.974778,126.621361,,1500,,8543,45,111,,0400-2400,1234567,0,,49102,,, +972,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Altay=Aletai/XJTS633 (XJ),47.771867,88.149189,,1,,5552,60,113,,0000-1800,1234567,,,49091,,, +972,CHN,zh,Henan RGD Jingji Guangbo,,Xingyang/SARFT554 (HE),34.811967,113.385172,,100,,8044,55,117,,2125-1600,1234567,,,49093,,, +972,CHN,,Harbin JGD Min Sheng 972,,Harbin (HL),45.615833,126.833611,,10,,7753,40,125,,2100-1500,1234567,,,49092,,, +972,THA,th,Sathaanii Witthayu 921,,Phetchabun (pbn),16.850833,101.253056,,10,,8860,76,133,,2200-1500,1234567,,,49109,,, +972,PHL,,DWTI-AM,,Lucena City (qzn),13.95,121.6,,20,,10412,62,135,,,,,,49107,,, +972,VTN,vi,VOV1,,Quảng Ngi (qgi),15.122222,108.794444,,10,,9505,71,135,,0430-0600,1234567,999,,49111,,, +972,VTN,vi,VOV1,,Quảng Ngi (qgi),15.122222,108.794444,,10,,9505,71,135,,0900-1600,1234567,999,,49111,,, +972,VTN,vi,VOV1,,Quảng Ngi (qgi),15.122222,108.794444,,10,,9505,71,135,,2200-0030,1234567,999,,49111,,, +972,INS,id,RRI Pro-1,,Surakarta (JT-ksu),-7.726111,110.709444,,50,,11660,83,136,,2200-1700,1234.67,0,,49100,,, +972,INS,id,RRI Pro-1,,Surakarta (JT-ksu),-7.726111,110.709444,,50,,11660,83,136,,2200-2130,....5..,0,,49100,,, +972,CHN,,Henan RGD Jingji Guangbo,,Zhumadian (HE),32.915,114.021389,,1,,8247,56,139,,,,,,36200650,,, +972,CHN,,Henan RGD Jingji Guangbo,,Xinyang (HE),32.099722,114.070833,,1,,8322,57,140,,,,,,36200651,,, +972,PHL,,DWFR-AM Radyo ng Bayan,,Bontoc (mnt),17.083333,121,,5,,10087,60,140,,,,,,49104,,, +972,PHL,,DXKH-AM (r:666 DZRH-AM),,Cagayan de Oro City (mor),8.466667,124.633333,,5,,11103,62,144,,,,,,49105,,, +972,PHL,,DYSM-AM Aksyon Radyo,,Catarman/Kawayan (sam),12.483333,124.633333,,1,,10729,60,149,,2100-1400,1234567,,,49106,,, +972,INS,id,RPM-R Pusako Minang,,Tangerang/Cipondoh (BT-tan),-6.2,106.683333,,1,,11252,86,151,,2300-1700,1234567,,,35400045,,, +972,AUS,en,2MW R 97,,Murwillumbah (NSW),-28.325889,153.50875,,5,,16227,59,161,,0000-2400,1234567,9,,49090,,, +972,AUS,,5PB ABC Newsr,,Adelaide/Wingfield (SA),-34.837486,138.569828,,2,,15802,82,163,,0000-2400,1234567,,,49088,,, +972,NZL,,2XG NZs Rhema,,Wellington/Horokiwi (WGN),-41.210556,174.845556,,5,,18520,40,168,,0000-2400,1234567,,,49103,,, +972,AUS,,2DU/t,,Cobar (NSW),-31.514944,145.836333,,0.3,,16025,71,172,,0000-2400,1234567,,,49089,,, +975,RUS,,GD,b,Maloye-Skuratovo,53.5625,37.041667,,0.025,,2048,73,93,,,,2,L1030 U1034 ,85823,,, +975,RUS,,R,b,Magnitogorsk (CB),53.354167,58.708333,,0.025,,3445,67,107,,,,,,86810,,, +975,KGZ,,BK,b,Bishkek/Manas (bsk),43.0625,74.541667,,0.025,,5014,73,123,,,,,,86809,,, +978,RUS,,HB,b,Zemetchino,53.520833,42.625,,0.025,,2413,72,97,,,,995,L1020 U1010 ,85824,,, +979,BLR,,DI,b,Yakshtsy (MI),53.604167,28.958333,,0.025,,1517,75,88,,,,,,85825,,, +980,USA,,WCAP,,Lowell (MA),42.654444,-71.361944,,5,,5662,292,107,,,,993,,40946,,, +980,USA,en,WOFX,i,Troy (NY),42.782222,-73.835278,,5,,5808,294,108,,,,,,42570,,, +980,CAN,en,CFPL,,London (ON),42.891389,-81.200278,,5,,6252,298,113,,,,999,,35997,,, +980,USA,,WTEM,,Washington (DC),38.961944,-76.973333,,5,,6288,292,113,,,,,,43128,,, +980,USA,,WCUB,,Two Rivers (WI),44.063889,-87.696944,,5,,6544,303,115,,,,999,,41102,,, +980,USA,,WAAV,,Leland (NC),34.248333,-78.001667,,5,,6719,289,117,,,,,,40620,,, +980,USA,,WONE,,Dayton (OH),39.6675,-84.166944,,5,,6679,297,117,,,,0,,42605,,, +980,CAN,en,CKNW,,New Westminster (BC),49.160833,-122.731944,,50,,7773,327,118,,,,991,,36351,,, +980,USA,,KKMS,,Richfield (MN),44.788333,-93.215,,5,,6795,307,118,,,,999,,38734,,, +980,USA,,WILK,,Wilkes-Barre (PA),41.228333,-75.948056,,1,,6053,294,118,,,,,,41753,,, +980,CAN,en,CJME,,Regina (SK),50.353611,-104.6225,,5,,6912,318,119,,,,31,,36183,,, +980,B,pt,ZYH707 Rdio Nacional,,Braslia/Rodeador (DF),-15.617472,-48.117333,,300,,9172,232,120,,2100-0900,1234567,999,,36901670,,, +980,USA,,WYFN,,Nashville (TN),36.206944,-86.673611,,5,,7108,296,121,,,,,,43513,,, +980,USA,,KMBZ,,Kansas City (MO),39.038056,-94.615278,,5,,7345,303,123,,,,,,38888,,, +980,USA,,WFHG,,Bristol (VA),36.608333,-82.16,,1,,6797,294,125,,,,,,41380,,, +980,USA,,WITY,,Danville (IL),40.078056,-87.638889,,1,,6855,300,126,,,,,,41819,,, +980,USA,en,WXLM,,Groton (CT),41.384722,-72.070278,,0.072,,5797,291,126,,,,,,43080,,, +980,VEN,,YVQM La Voz de El Tigre,,El Tigre (azg),8.866667,-64.25,,10,,7915,260,126,,1000-0300,1234567,,,45429,,, +980,B,pt,ZYH707 Rdio Nacional,,Braslia (DF),-15.824089,-47.963056,,50,,9183,232,127,,0900-2100,1234567,,,36902884,,, +980,CLM,,HJNL,,El Zulia (nsa),7.916667,-72.616667,,30,,8565,266,128,,,,,,37590,,, +980,USA,,WHSR,,Pompano Beach (FL),26.335,-80.265278,,2.2,,7510,285,129,,,,,,41689,,, +980,USA,,KSVC,,Richfield (D) (UT),38.788056,-112.011667,,10,,8289,315,130,,,,,,20012601,,, +980,CLM,es,HJJV Oxigeno,,Ccuta (nsa),7.883333,-72.5,,15,,8560,266,131,,,,,,35901464,,, +980,USA,,DWKLF,,Clanton (AL),32.835556,-86.680278,,1,,7385,294,131,,,,,,20016272,,, +980,USA,,KDSJ,,Deadwood (SD),44.3825,-103.662222,,1,,7376,313,131,,,,,,38292,,, +980,CUB,es,R Coco,,L. Cruz (ch),23.066667,-82.383333,,2.5,,7925,284,132,,,,35,,36458,,, +980,USA,,KSGM,,Chester (IL),37.787778,-89.905833,,0.47,,7174,300,132,,,,,,39353,,, +980,USA,,WAKV,,Otsego (MI),42.459167,-85.732778,,0.101,,6555,301,132,,,,,,40690,,, +980,USA,,WPFP,,Park Falls (WI),45.917778,-90.449444,,0.105,,6554,306,132,,,,,,42435,,, +980,CUB,es,R Reloj,,Moa (ho),20.645583,-74.924033,,1,,7628,276,133,,,,10,,36569,,, +980,USA,,KDBV,,Salinas (CA),36.732778,-121.592222,,10,,8926,320,133,,,,12,,38242,,, +980,USA,,WRNE,,Gulf Breeze (FL),30.485556,-87.083611,,1,,7606,292,133,,,,,,42887,,, +980,USA,,WULR,,York (SC),34.903056,-81.0925,,0.167,,6865,292,133,,,,,,40937,,, +980,USA,es,KQUE,,Rosenburg/Richmond (TX),29.821944,-95.882778,,4,,8206,298,133,,,,,,20012528,,, +980,CLM,es,HJES RCN Cali,,Cali (val),3.466667,-76.516667,,10,,9221,267,134,,,,998,,37421,,, +980,CTR,,TIRI R Favorita,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1100-0500,1234567,,,40562,,, +980,USA,,KVLV,,Fallon (NV),39.496389,-118.813889,,5,,8538,320,135,,,,31,,39638,,, +980,USA,,WHAW,,Lost Creek (aux) (WV),39.040278,-80.454444,,0.047,,6500,294,135,,,,,,20016208,,, +980,USA,en,WHAW,,Lost Creek (WV),39.026667,-80.441389,,0.047,,6500,294,135,,,,,,41600,,, +980,USA,es,WAZS,,Summerville (SC),33.0325,-80.200278,,0.131,,6958,289,135,,,,,,40791,,, +980,USA,,WKLY,,Hartwell (GA),34.357778,-82.976389,,0.149,,7028,292,136,,,,,,42039,,, +980,USA,,WTOT,,Marianna (FL),30.783611,-85.255,,0.34,,7465,291,136,,,,,,43195,,, +980,USA,es,KSPZ,,Ammon (ID),43.523056,-112.01,,1,,7855,317,136,,,,7,,39588,,, +980,USA,,KFWB,i,Los Angeles (CA),34.069722,-118.193056,,5,,9028,316,137,,,,9981,,38441,,, +980,USA,,WGWM,,London (KY),37.172778,-84.182778,,0.07,,6877,295,137,,,,,,41586,,, +980,USA,es,WEGO,,Winston-Salem (NC),36.111111,-80.243333,,0.049,,6715,292,137,,,,,,40618,,, +980,USA,,WDVH,,Gainesville (FL),29.623889,-82.288611,,0.166,,7370,288,138,,,,,,41220,,, +980,USA,,WDYN,,Rossville (GA),34.965,-85.3,,0.113,,7124,294,138,,,,,,43272,,, +980,USA,en,WJYK,,Chase City (VA),36.805278,-78.440278,,0.026,,6546,291,138,,,,,,20012527,,, +980,USA,en,KTCR,,Selah (WA),46.640278,-120.596667,,0.5,,7932,325,139,,,,,,38006,,, +980,HND,,HRZC2,,San Pedro Sula (cor),15.466667,-88.016667,,2.5,,8953,283,140,,,,,,37889,,, +980,USA,,KSVC,,Richfield (N) (UT),38.761111,-112.076389,,1,,8294,315,140,,,,,,39435,,, +980,USA,,WPRE,,Prairie du Chien (WI),43.060833,-91.157222,,0.03,,6820,304,140,,,,,,42729,,, +980,USA,en,WPGA,,Perry (GA),32.555556,-83.737222,,0.08,,7223,292,140,,,,,,42676,,, +980,VEN,,RNV Canal Informativo,,Maracaibo (zul),10.666667,-71.616667,,1,,8257,267,140,,,,,,51678,,, +980,BOL,,CP192 R Esperanza,,Aiquile (cbb),-18.216667,-65.166667,,5,,10405,245,141,,0930-0200,1234567,,,36678,,, +980,ARG,es,LU37 R General Pico/R 37,,General Pico (lp),-35.655794,-63.740731,,10,,11886,233,143,,0930-0300,1234567,,,40231,,, +980,MEX,es,XEFS-AM R Matamoros,,Izcar de Matamoros (pue),18.612278,-98.467694,,1.5,,9354,293,143,,,,,,44030,,, +980,MEX,es,XEJK-AM La Poderosa,,Ciudad Delicias (chi),28.190567,-105.449164,,1,,8911,304,143,,,,,,44212,,, +980,USA,,KGLN,,Glenwood Springs (CO),39.552778,-107.33,,0.225,,7987,312,143,,,,,,38490,,, +980,USA,,WAKK,,McComb (MS),31.214167,-90.461667,,0.152,,7756,295,143,,,,,,40734,,, +980,BOL,,CP118 R Mar AM,,La Paz (lpz),-16.5,-68.116667,,2.5,,10435,248,144,,1000-0200,1234567,,,51983,,, +980,CLM,,RCN,,Bogot D. C. (bdc),4.716667,-74.133333,,1,,8949,265,144,,,,69,,52656,,, +980,HND,,HRGI,,La Libertad (cmy),14.8,-87.583333,,1,,8982,282,144,,,,,,37757,,, +980,HND,,HRLR2,,Campamento (ola),14.433333,-86.65,,1,,8952,281,144,,,,,,37796,,, +980,MEX,es,XETU-AM,,Benito Jurez (vcz),22.207444,-97.8358,,1,,8994,295,144,,,,,,44865,,, +980,NCG,,YNVA R Redencion Internacional,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,1200-0400,1234567,,,52205,,, +980,ARG,,LT39 R Victoria,,Victoria (er),-32.616667,-60.166667,,5,,11419,232,145,,0900-0300,1234567,,,40190,,, +980,GTM,,TGMQ R Retama,,San Marcos (sms),14.966667,-91.783333,,1,,9246,286,145,,1200-0500,1234567,,,40515,,, +980,MEX,es,XEXT-AM Capital 980,,Tepic (nay),21.538158,-104.911814,,1,,9484,300,145,,,,,,45068,,, +980,EQA,,HCJI5,,El Prado (chi),-1.633333,-78.616667,,1,,9812,265,146,,,,,,36984,,, +980,MEX,es,XEFQ-AM,,Cananea (son),30.984294,-110.294086,,0.5,,8921,309,146,,,,,,44021,,, +980,MEX,es,XENR-AM,,Nueva Rosita (coa),27.946675,-101.2362,,0.5,,8690,301,146,,,,,,44457,,, +980,USA,,KOKA,,Shreveport (LA),32.525,-93.808333,,0.079,,7848,298,146,,,,,,39071,,, +980,USA,en,KWSW,,Eureka (CA),40.800556,-124.1275,,0.5,,8637,324,146,,,,9983,,38622,,, +980,CHL,,CB98 R Agricultura,,Valparaso (VS),-33.466667,-71.666667,,5,,12146,240,147,,,,,,35769,,, +980,USA,,KICA,,Clovis (NM),34.348611,-102.955,,0.172,,8218,306,147,,,,,,38576,,, +980,PRG,,ZP31 R Mburucuyu,,Pedro Juan Cabellero (amm),-22.516667,-55.966667,,1,,10257,235,148,,0900-0300,1234567,,,45528,,, +980,USA,,KCAB,,Dardanelle (AR),35.222222,-93.168889,,0.032,,7581,300,148,,,,,,38119,,, +980,USA,,KMIN,,Grants (NM),35.0975,-107.871944,,0.23,,8417,310,148,,,,,,38907,,, +980,PRU,,OAX5T,,Huamanga (aya),-13.166667,-74.316667,,1,,10540,255,149,,,,,,40326,,, +980,MEX,es,XEKE-AM,,Navojoa (son),27.075633,-109.469017,,0.25,,9238,306,150,,,,,,44251,,, +980,ARG,,Sintonia de Vida,,El Talar (ba),-35.55,-58.65,,1,,11605,230,152,,,,,,51816,,, +980,MEX,es,XELC-AM Dual Estereo,,La Piedad de Cavadas (mic),20.332961,-102.025483,,0.2,,9420,297,152,,,,,,44294,,, +980,ARG,,LRG387 R Lujan AM,,Valcheta (rn),-40.688833,-66.147944,,1,,12456,231,155,,,,,,40003,,, +980,USA,,KEYQ,,Fresno (CA),36.741111,-119.853333,,0.048,,8848,319,156,,,,113,,38360,,, +980,USA,,KNTR,,Lake Havasu City (AZ),34.503333,-114.357778,,0.049,,8802,314,156,,,,,,39022,,, +981,ALG,tz,Chane 2,,Ouled Fayet (16),36.722222,2.951389,,100,,1732,190,54,,0600-2400,1234567,9980,,722,,, +981,I,sl,RAI Trst A/Filodiffusione 4 Canale,,Trieste/Monte Radio (ts),45.676567,13.769425,,10,,894,140,56,,0000-2400,1234567,1,,726,,, +981,POR,pt,Rdio Sim,,Coimbra/Geria (coi),40.238561,-8.473517,,10,,1741,227,64,,0000-2400,1234567,,,732,,, +981,IRL,en,R Star Country,,Emyvale (MN),54.333333,-6.95,,1,,922,291,66,,0000-2400,1234567,79,,727,,, +981,POR,pt,Rdio Sim,,Bragana (bgc),41.795711,-6.751803,,1,,1516,226,72,,0000-2400,1234567,,,729,,, +981,POR,pt,Rdio Sim,,Vila Real (vrl),41.312425,-7.730539,,1,,1608,227,73,,0000-2400,1234567,,,730,,, +981,POR,pt,Rdio Sim,,Guarda (gua),40.536086,-7.229278,,1,,1654,224,74,,0000-2400,1234567,,,731,,, +981,IRN,fa,IRIB R Iran,,Hamadan (hmd),34.966111,48.580833,,100,,3823,103,75,,0230-1830,1234567,3,,728,,, +981,GRC,,unid,,unknown (att),38,23.658333,,1,,2062,133,78,,0000-2400,1234567,998,,3400041,,, +981,EGY,ar,ERTU Shamal Sa'id Misr,,Asyut (ast),27.270467,31.244517,,10,,3449,134,82,,0200-2200,1234567,,,1832,,, +981,ARS,ar,BSKSA Al-Quran al-Karim,,Al-Madinah=Medinah (mdh),24.409678,39.534411,,20,,4158,125,86,,0000-2400,1234567,9998,,47081,,, +981,PAK,,PBC R Pakistan,,Turbat (blc),26.044978,63.076706,,100,,5502,99,92,,0200-1500,1234567,,,31500029,,, +981,EGY,ar,ERTU Al-Barnameg al-Aam,,Baris (wjd),24.666,30.602111,,1,,3672,137,94,,0300-2400,1234567,,,1833,,, +981,EGY,ar,ERTU Al-Barnameg al-Aam,,Abu Simbel (asn),22.408472,31.582944,,1,,3941,137,96,,0000-2400,1234567,,,1834,,, +981,CHN,zh,CNR 1,,Kashgar=Kashi/XJTS635 (XJ),39.409722,75.921944,,10,,5355,76,101,,2025-1805,1234567,,,36200020,,, +981,CHN,zh,CNR 1,,rmqi/XJTS904 (XJ),43.715833,87.595,,10,,5800,65,105,,2025-1805,1234567,,,36200620,,, +981,KEN,,KBC English Service,,Voi (coa),-3.411092,38.620739,,100,,6878,143,106,,0200-2110,1234567,,,2438,,, +981,CHN,zh,CNR 1,,Guma=Pishan/XJTS8110 (XJ),37.580278,78.273333,,3,,5642,77,109,,2025-1805,1234567,,,36201218,,, +981,IND,,AIR West,,Raipur (CG),21.310194,81.639917,,100,,7157,88,109,,0025-0430,1234567,0,,49117,,, +981,IND,,AIR West,,Raipur (CG),21.310194,81.639917,,100,,7157,88,109,,0630-0930,1234567,0,,49117,,, +981,IND,,AIR West,,Raipur (CG),21.310194,81.639917,,100,,7157,88,109,,1130-1742,1234567,0,,49117,,, +981,CHN,zh,CNR 1,,Yutian=Keriya/XJTS8111 (XJ),36.867778,81.648889,,3,,5918,75,111,,2025-1805,1234567,,,36201221,,, +981,CHN,zh,CNR 1,,Changchun/SARFT523 (JL),44.028444,125.409883,,200,200,7835,42,112,,2025-1805,1234567,,,36200018,,, +981,CHN,zh,CNR 1,,Balikun=Barkol/XJTS8102 (XJ),43.597778,93.046111,,1,,6141,62,118,,2025-1805,1234567,,,36201206,,, +981,CHN,zh,CNR 1,,Nanchang/SARFT561 (JX),28.612461,116.052819,,200,,8746,57,120,,2025-1805,1234567,,,49116,,, +981,CHN,zh,CNR 1,,Saihan Tal/NMTS731 (NM),42.724,112.635611,,10,,7320,51,120,,2025-1805,1234567,,,36200622,,, +981,CHN,zh,CNR 1,,Chongqing/Daping (CQ),29.547828,106.473139,,50,,8094,64,121,,2025-1805,1234567,,,36200019,,, +981,TWN,,Han Sheng GD Kuanghua zhi Sheng,,Hsinfeng (HC),24.926633,120.993939,,250,,9364,56,121,,0655-0105,1234567,999,,49139,,, +981,CHN,zh,CNR 1,,Ejin=Ejina/NMTS788 (NM),41.967978,101.070433,,1,,6740,58,124,,2025-1805,1234567,,,36201210,,, +981,CHN,zh,CNR 1,,Nyalam=Nielamu (XZ),27.991111,85.983889,,1,,6901,79,126,,2025-1805,1234567,,,36201216,,, +981,CHN,zh,CNR 1,,Badain Jaran=Badanjilin/NMTS754 (NM),39.208333,101.653611,,1,,6995,60,127,,2025-1805,1234567,,,36201205,,, +981,CHN,zh,CNR 1,,Ergun=E'erguna/NMTS712 (NM),50.234667,120.164056,,1,,7045,41,127,,2025-1805,1234567,,,36201211,,, +981,CHN,zh,CNR 1,,Heyuan/GDTS721 (GD),24.037094,114.806667,,50,,9084,61,127,,2025-1805,1234567,,,36200639,,, +981,CHN,zh,CNR 1,,Maoming/GDTS731 (GD),21.631667,110.904444,,50,,9061,66,127,,2025-1805,1234567,,,36200631,,, +981,CHN,zh,Xizang RGD Hanyu,,Xigaz (XZ),29.291111,88.881267,,1,,6989,76,127,,,,,,36201219,,, +981,CHN,bo,Xizang RGD,,Kangmar=Kangma (XZ),28.561111,89.677778,,1,,7101,76,128,,,,,,36201215,,, +981,CHN,zh,CNR 1,,Kulun/NMTS715 (NM),42.714411,121.768375,,5,,7783,45,128,,2025-1805,1234567,,,36200635,,, +981,CHN,zh,CNR 1,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,10,,8055,69,128,,2025-1805,1234567,,,36200017,,, +981,CHN,zh,CNR 1,,Songjianghe/JLTS154 (JL),42.158839,127.475194,,10,,8101,42,128,,2025-1805,1234567,,,36200642,,, +981,CHN,zh,Xizang RGD Hanyu,,Gyangz=Jiangzi (XZ),28.904722,89.598889,,1,,7068,76,128,,,,,,36201212,,, +981,CHN,zh,Xizang RGD Hanyu,,Yadong (XZ),27.5175,88.963056,,1,,7139,78,128,,,,,,36201220,,, +981,CHN,zh,CNR 1,,Ma'erkang=Barkam/SCTS510 (SC),31.915339,102.191114,,3,,7629,65,129,,2025-1805,1234567,,,36200632,,, +981,CHN,zh,CNR 1,,Xining/QHTS560 (QH),36.702778,101.749444,,1,,7205,62,129,,2025-1805,1234567,,,36200618,,, +981,CHN,zh,CNR 1,,Alxa Zuoqi=Alashan Zuoqi/NMTS782 (NM),38.821944,105.688333,,1,,7263,58,130,,2025-1805,1234567,,,36200646,,, +981,CHN,zh,CNR 1,,Arxan=A'ershan/NMTS768 (NM),47.171944,119.932222,,1,,7301,43,130,,2025-1805,1234567,,,48490,,, +981,CHN,zh,CNR 1,,Baotou/NMTS530 (NM),40.614417,109.839978,,1,,7348,54,130,,2025-1805,1234567,,,36200648,,, +981,CHN,zh,CNR 1,,Damao/NMTS863 (NM),41.712778,110.4075,,1,,7286,53,130,,2025-1805,1234567,,,36200643,,, +981,CHN,zh,CNR 1,,Dong Wuzhumuqin Qi/NMTS732 (NM),45.493278,116.974444,,1,,7305,46,130,,2025-1805,1234567,,,36201207,,, +981,CHN,zh,CNR 1,,Kangding=Dardo/SCTS515 (SC),29.9969,101.952628,,3,,7776,67,130,,2025-1805,1234567,,,36200636,,, +981,CHN,zh,CNR 1,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2025-1805,1234567,,,36200627,,, +981,CHN,zh,CNR 2,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2100-1602,1234567,,,36201217,,, +981,CHN,bo,CNR 11,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,,,,,36201208,,, +981,CHN,zh,CNR 1,,Maqn=Maqin/QHTS921 (QH),34.455278,101.2625,,1,,7360,64,131,,2025-1805,1234567,,,36200630,,, +981,CHN,zh,CNR 1,,Zalantun/NMTS696 (NM),48,122.741667,,1,,7357,41,131,,2025-1805,1234567,,,36201222,,, +981,THA,,Sor. Wor. Thor. (R Thailand),,Nakhon Phanom (npn),17.383611,104.756111,,20,,9044,73,131,,,,,,49137,,, +981,CHN,zh,CNR 1,,Huaiyin (JS),33.583333,119.016667,,10,,8464,52,132,,2025-1805,1234567,,,36200638,,, +981,CHN,zh,CNR 1,,Jalaid=Zalaite/NMTS775 (NM),46.716667,122.9,,1,,7478,42,132,,2025-1805,1234567,,,36201213,,, +981,CHN,zh,CNR 1,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,2025-1805,1234567,,,36201214,,, +981,CHN,zh,CNR 1,,Rangtang=Zamtang/SCTS548 (SC),32.3,100.966667,,1,,7521,66,132,,2025-1805,1234567,,,36200628,,, +981,CHN,zh,CNR 1,,Ruoergai=Zoig/SCTS538 (SC),33.582794,102.959994,,1,,7537,63,132,,2025-1805,1234567,,,36200626,,, +981,CHN,zh,CNR 1,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,10,,8589,53,132,,2120-1500,1234567,,,51158,,, +981,CHN,zh,CNR 1,,Zhengxiangbai Qi/NMTS851 (NM),42.313111,115.014194,,1,,7480,49,132,,2025-1805,1234567,,,36201223,,, +981,THA,th,Sor. Wor. Thor. (R Thailand),,Yala/Wang Phaya (yla),6.548889,101.36,,25,,9769,82,132,,2200-1330,1234567,,,49138,,, +981,CHN,zh,CNR 1,,Baicheng (JL),45.5755,122.794906,,1,,7575,43,133,,2025-1805,1234567,,,36200649,,, +981,CHN,zh,CNR 1,,Batang/SCTS543 (SC),30.017967,99.109822,,1,,7595,69,133,,2025-1805,1234567,,,36200647,,, +981,CHN,zh,CNR 1,,Jiuzhaigou/SCTS547 (SC),33.233333,104.183333,,1,,7641,63,133,,2025-1805,1234567,,,36200637,,, +981,CHN,zh,CNR 1,,Kailu/NMTS727 (NM),43.640642,121.291567,,1,,7677,45,134,,2025-1805,1234567,,,50823,,, +981,CHN,zh,CNR 1,,Lliang (SX),36.7,110.933333,,1,,7742,56,134,,2025-1805,1234567,,,36200633,,, +981,CHN,zh,CNR 1,,Shenzhen (GD),22.511622,114.034061,,10,,9175,63,134,,2025-1805,1234567,9995,,36200016,,, +981,THA,th,Mor. Thor.,,Pathum Thani/Phaholyothin Rd (ptn),14.075194,100.598722,,10,,9058,78,134,,0800-1400,1234567,,,49135,,, +981,THA,th,Sor. Wor. Thor. (R Thailand),,Mae Hong Son (mhs),19.290278,97.965556,,5,,8431,77,134,,2200-1600,1234567,,,49136,,, +981,CHN,zh,CNR 1,,Daocheng/SCTS544 (SC),29.033333,100.316667,,1,,7754,68,135,,2025-1805,1234567,,,36200644,,, +981,CHN,zh,CNR 1,,Guangyuan/SCTS527 (SC),32.433333,105.816667,,1,,7807,62,135,,2025-1805,1234567,,,36200640,,, +981,CHN,zh,CNR 1,,Shijiazhuang/HBTS717 (HB),37.830833,114.468889,,1,,7840,53,135,,2025-1805,1234567,,,36200624,,, +981,CHN,zh,CNR 1,,Yangquan (SX),37.872222,113.566667,,1,,7787,53,135,,2025-1805,1234567,,,36200617,,, +981,CHN,zh,CNR 1,,Changzhi/Nanzhuang (SX),36.08,113.081389,,1,,7916,55,136,,2025-1805,1234567,,,36200645,,, +981,CHN,zh,CNR 1,,Gongzhuling (JL),43.5,124.816667,,1,,7856,43,136,,2025-1805,1234567,,,51019,,, +981,CHN,zh,CNR 1,,Xichang/SCTS505 (SC),27.811733,102.229508,,1,,7978,68,137,,2025-1805,1234567,,,36200619,,, +981,CHN,zh,CNR 1,,Mingyue (JL),43.1,128.916667,,1,,8078,40,138,,2025-1805,1234567,,,36200629,,, +981,CHN,zh,CNR 1,,Songjiangzhen (JL),42.575,128.333333,,1,,8101,41,138,,2025-1805,1234567,,,36200623,,, +981,CHN,zh,CNR 1,,Liupanshui (GZ),26.566056,104.919944,,1,,8255,67,140,,2025-1805,1234567,,,36200634,,, +981,PHL,,DYBQ-AM Radyo Budyong,,Iloilo City/Jaro (ilo),10.733333,122.55,,10,,10767,63,140,,,,,,49131,,, +981,CHN,zh,CNR 1,,Tongren/GZTS861 (GZ),27.716667,109.183333,,1,,8418,63,141,,2025-1805,1234567,,,36200621,,, +981,PHL,,DXOW-AM Radyo Asenso,,Davao City/Mapa (dvs),7.033333,125.516667,,10,,11289,62,141,,2000-????,1234567,,,49132,,, +981,PHL,,DZRD-AM Sonshine R,,Dagupan City (pgs),16.033333,120.333333,,5,,10144,61,141,,2100-1600,12345.7,,,49129,,, +981,PHL,,DZRD-AM Sonshine R,,Dagupan City (pgs),16.033333,120.333333,,5,,10144,61,141,,2200-1600,......7,,,49129,,, +981,PHL,tl,DXBR-AM Bombo Radyo,,Butuan City/Arujville (agn),8.941944,125.512778,,10,,11111,61,141,,,,,,49128,,, +981,TWN,,Feng Ming Kuangpo Tientai 2,,Kaohsiung (KHS),22.64255,120.29915,,3,,9534,58,141,,,,,,49140,,, +981,CHN,zh,CNR 1,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,1,,8471,52,142,,2025-1805,1234567,,,36200354,,, +981,PHL,,DWMT-AM (r:666 DZRH-AM),,Naga City (cas),13.566667,123.316667,,5,,10550,60,142,,,,,,49133,,, +981,CHN,zh,CNR 1,,Fuzhou/JXTS831 (JX),28.016667,116.333333,,1,,8816,58,143,,2025-1805,1234567,,,36200641,,, +981,CHN,zh,CNR 1,,Shangrao/JXTS821 (JX),28.470278,117.979167,,1,,8869,56,143,,2025-1805,1234567,,,36200625,,, +981,PHL,,DXDR-AM Radyo Agong,,Dipolog City/Turno (zdn),8.583333,123.35,,5,,11014,63,143,,,,,,49130,,, +981,CHN,zh,CNR 1,,Fu'an/FJTS903 (FJ),27.111117,119.622122,,1,,9086,56,144,,2025-1805,1234567,,,49846,,, +981,J,,JOAQ NHK1,,Sasebo (kyu-nag),33.129722,129.699722,,1,,9055,45,144,,0000-2400,1234567,,,49123,,, +981,J,,NHK R 1,,Kisofukushima (chu-nag),35.846667,137.696111,,1,,9153,38,144,,0000-2400,1234567,,,49121,,, +981,J,,NHK R 1,,Kashiwazaki (chu-nii),37.366667,138.566667,,0.1,,9039,37,154,,0000-2400,1234567,,,49120,,, +981,J,,NHK R 1,,Nakatsu (kyu-oit),33.583333,131.216667,,0.1,,9084,44,154,,0000-2400,1234567,,,49122,,, +981,J,,NHK R 1,,Shizugawa (toh-miy),38.666667,141.45,,0.1,,9024,34,154,,0000-2400,1234567,,,49124,,, +981,AUS,,6KG R West,,Kalgoorlie (WA),-30.735111,121.500667,,2,,14327,92,158,,0000-2400,1234567,,,49114,,, +981,AUS,,2NM,,Muswellbrook (NSW),-32.293333,150.8325,,5,,16407,66,161,,0000-2400,1234567,,,49115,,, +981,AUS,,3HA,,Hamilton (VIC),-37.684472,142.019861,,2,,16243,83,165,,0000-2400,1234567,,,49113,,, +981,NZL,,RNZ National,,Kaikohe/Ohaeawai (NTL),-35.361111,173.874167,,2,,17905,33,170,,0000-2400,1234567,4,,49126,,, +981,NZL,,Southern Star,,Timaru/Saint Andrews (CAN),-44.515556,171.198333,,2.5,,18613,59,171,,,,,,49127,,, +982,INS,id,R Suara Magelang,,Magelang (JT-kma),-7.5,110.2,,1,,11605,84,152,,,,,,49119,,, +983,UZB,,NU,b,Urgench (xoz),41.5625,60.708333,,0.025,,4187,84,115,,,,,U1016 15.1s,IDx2,85826,, +983,UZB,,RG,b,Urgench (xoz),41.604167,60.625,,0.025,,4178,84,115,,,,,,85827,,, +985,BLR,,BY,b,Brest (BR),52.104167,23.958333,,0.025,,1196,83,85,,,,990,L1010 U1013 15.0s,ID+10 gap,85828,, +985,BLR,,CP,b,Brest (BR),52.145833,23.791667,,0.025,,1184,83,85,,,,,,85830,,, +985,BLR,,C,b,Mogilyov (MA),53.9375,30.125,,0.025,,1591,73,89,,,,,L1010 U1012 6.0s,ID+4 gap,85829,, +985,BLR,,U,b,Mogilyov (MA),53.979167,30.041667,,0.025,,1586,73,89,,,,38,L1010 U1087 ,85832,,, +985,RUS,,FK,b,Gagarin (SM),55.5625,35.041667,,0.025,,1903,67,92,,,,10,L1035 U1041 15.12s,IDx2,85831,, +989,ETH,,ERTA Ethiopia National R,,Addis Abeba (aab),9.016667,38.766667,,1,,5615,137,113,,0300-0600,1234567,997,,2441,,, +989,ETH,,ERTA Ethiopia National R,,Addis Abeba (aab),9.016667,38.766667,,1,,5615,137,113,,0800-2100,1234567,997,,2441,,, +990,E,es,SER,,Bilbao/Monte Artxanda (PVA-BI),43.274958,-2.918114,,25,,1203,219,55,,0000-2400,1234567,90,,738,,, +990,CYP,ar,R Sawa,,Cape Greco (kyp-fam),34.960483,34.08525,,600,140,2903,120,58,,0000-2400,1234567,3,,736,,, +990,G,en,BBC R 5 Live,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0000-0400,12345..,,,741,,, +990,G,en,BBC R 5 Live,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0000-0500,.....67,,,741,,, +990,G,en,BBC R 5 Live,,Tywyn (WA-GWY),52.582944,-4.096111,,1,,715,278,64,,0000-2400,1234567,0,,740,,, +990,G,en,BBC R Devon,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0400-2400,12345..,,,741,,, +990,G,en,BBC R Devon,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0500-2400,.....67,,,741,,, +990,G,,BBC R Nan Gaidheal/BBC R Scotlan,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,1,,780,319,65,,0700-2100,1234567,9997,,742,,, +990,G,,BBC R Scotland,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,1,,780,319,65,,2100-0700,1234567,9997,,742,,, +990,G,en,Magic AM,,Doncaster/Crimpsall (EN-SYK),53.522667,-1.147611,,0.25,,531,290,68,,0000-2400,1234567,0,,744,,, +990,E,es,SER,,Cdiz/San Fernando (Fadricas/EAJ59) (AND-CA),36.461772,-6.217967,,5,,2003,215,70,,0000-2400,1234567,,,739,,, +990,G,en,Free R 80's,,Wolverhampton/Sedgley (EN-WMD),52.543222,-2.140333,,0.09,,583,278,73,,0000-2400,1234567,,,743,,, +990,IRN,fa,IRIB R Iran,,Shiraz/Dehnow (frs),29.446389,52.648306,,400,,4528,105,76,,0000-2400,1234567,5,,745,,, +990,CAN,en,CBY,,Corner Brook (NL),48.932778,-57.906111,,10,,4410,292,91,,,,,,35801,,, +990,MNG,mn,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.789956,107.185125,,500,140,6617,50,96,,0830-0900,1234567,,,47182,,, +990,MNG,mn,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.789956,107.185125,,500,140,6617,50,96,,1000-1030,1234567,,,47182,,, +990,MNG,zh,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.789956,107.185125,,500,140,6617,50,96,,0900-0930,1234567,,,47182,,, +990,MNG,zh,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.789956,107.185125,,500,140,6617,50,96,,1030-1100,1234567,,,47182,,, +990,IND,,AIR North,,Jammu A (JK),32.783889,74.8225,,50,,5769,84,98,,0025-0445,1234567,,,49153,,, +990,IND,,AIR North,,Jammu A (JK),32.783889,74.8225,,50,,5769,84,98,,0630-0930,1234567,,,49153,,, +990,IND,,AIR North,,Jammu A (JK),32.783889,74.8225,,50,,5769,84,98,,1130-1740,1234567,,,49153,,, +990,NIG,,Lagos State R Service,,Lagos/Ikeja (lag),6.569503,3.347894,,10,,5072,184,98,,0430-0005,1234567,,,2442,,, +990,CAN,en,CBW,,Winnipeg (MB),49.836667,-97.5125,,46,,6614,313,107,,,,9912,,35799,,, +990,USA,,WALE,,Greenville (RI),41.955,-71.594167,,5,,5726,292,107,,,,,,20016034,,, +990,USA,en,WNTP,,Philadelphia (PA),40.095278,-75.276944,,10,,6095,292,108,,,,,,42521,,, +990,USA,,WDEO,,Ypsilanti (D) (MI),42.264722,-83.613056,,9.2,,6444,299,112,,,,9990,,20016078,,, +990,AGL,,RNA Em. Prov. do Bi,,Kuito (bie),-12.394278,16.933278,,50,,7244,169,113,,,,,,47108,,, +990,USA,,WDCX,i,Rochester (NY),43.231667,-77.866667,,2.5,,6025,297,113,,,,,,42165,,, +990,USA,,WNML,,Knoxville (TN),36.0425,-83.899722,,10,,6950,294,117,,,,,,42497,,, +990,USA,en,WDYZ,,Orlando/Radio Road (FL),28.574167,-81.462778,,14,,7403,287,120,,,,,,41229,,, +990,CAN,fr,CBAF-20,,Kedgwick (NB),47.645833,-67.350833,,0.04,,5077,295,122,,,,,,20109137,,, +990,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,unknown (NM),34.95,104.5,,10,,7515,61,122,,,,,,36201303,,, +990,TZA,sw,TBC Taifa,,Songea/Luhira (rvm),-10.618222,35.653556,,10,,7515,149,122,,0200-2100,1234567,,,2444,,, +990,CAN,en,CBAO,,St. Stephen (NB),45.1925,-67.261111,,0.04,,5230,292,123,,,,,,20109130,,, +990,CUB,es,R Guam,,Pinar del Ro/CTOM2 (pr),22.433208,-83.662633,,25,,8063,284,124,,,,,,31600035,,, +990,B,pt,ZYJ461 Nova AM,,Rio de Janeiro/Fazenda do Codeco (RJ),-22.763611,-43.006944,,100,,9606,225,126,,,,,,36901675,,, +990,CAN,fr,CBF-16,,Clova (QC),48.109167,-75.359167,,0.04,,5531,300,126,,,,,,20109138,,, +990,CHN,,Shanghai RGD Xinwen Pinl Zhitong 990,,Shanghai/Minhang (SH),31.109167,121.514722,,50,,8824,52,126,,0000-2400,1234567,,,49150,,, +990,CLM,es,HJDB RCN,,Medelln (ant),6.298794,-75.614042,,50,,8911,268,126,,,,,,37386,,, +990,MEX,es,XET-AM La T Grande,,Monterrey (nvl),25.730558,-100.249311,,50,,8828,299,126,,,,,,44784,,, +990,USA,en,WMYM,,Miami (FL),25.842778,-80.42,,5,,7561,284,126,,,,,,42418,,, +990,USA,es,WXCT,,Southington (CT),41.583056,-72.883611,,0.08,,5835,292,126,,,,,,43459,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Tengchong (YN),25.059167,98.499444,,10,,7973,72,127,,,,,,36200607,,, +990,USA,,WDEO,,Ypsilanti (N) (MI),42.265278,-83.611667,,0.25,,6444,299,127,,,,9990,,41150,,, +990,VEN,,YVRT R Tropical 99-0,,Caracas (dcf),10.550361,-66.937689,,10,,7949,263,127,,0000-2400,1234567,,,45450,,, +990,CAN,fr,CBOF-1,,Maniwaki (QC),46.373611,-75.956389,,0.04,,5685,299,128,,,,,,20109136,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Yulong/YNTS704 (YN),27.716667,104.366667,,10,,8121,66,128,,,,,,36200603,,, +990,CHN,zh,CNR 2,,Hailar=Haila'er/NMTS861 (NM),49.234722,119.722222,,1,,7112,42,128,,2100-1602,1234567,,,49146,,, +990,USA,,WISK,,Lawrenceville (GA),33.953056,-83.970833,,1,,7123,293,128,,1200-2400,1234567,,,41805,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Hekou/Binlangzhai (YN),22.527778,103.966944,,20,,8544,70,129,,2210-1555,1234567,,,49147,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Jingdong/YNTS695 (YN),24.466667,100.9,,10,,8179,71,129,,,,,,36200614,,, +990,VEN,,YVTA R Venezuela Tricolor,,Barquisimeto (lar),10.016667,-69.216667,,10,,8150,265,129,,0000-2400,1234567,,,45464,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Qujing/YNTS691 (YN),25.470556,103.788611,,10,,8278,68,130,,,,,,36200608,,, +990,PTR,,WPRA,,Mayaguez (PR),18.168889,-67.150833,,0.91,,7308,269,130,,0100-0400,1234567,,,42727,,, +990,USA,en,WLLI,,Somerset (PA),40.025278,-79.095,,0.1,,6340,294,130,,,,,,42526,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Gejiu/YNTS654 (YN),23.398333,103.161389,,10,,8417,70,131,,,,,,36200616,,, +990,DOM,,HISA R Cibao,,Santiago de los Caballeros (sto),19.466667,-70.716667,,1,,7441,272,131,,1000-0400,1234567,,,37296,,, +990,USA,,WTIG,,Massillon (OH),40.832222,-81.561111,,0.112,,6430,297,131,,,,,,43138,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Maguan (YN),23.033333,104.4,,10,,8528,69,132,,,,,,36200610,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Malipo (YN),23.15,104.733333,,10,,8539,69,132,,,,,,36200609,,, +990,B,pt,ZYJ596 Rural AM,,Mossor (RN),-5.207222,-37.313889,,1,,7590,228,133,,,,78,,36901683,,, +990,EQA,,HCGH1 R Tarqu,,Quito (pic),-0.166667,-78.466667,,20,,9673,266,133,,,,,,36956,,, +990,KOR,ko,HLAP MBC,,Masan/Gapo (gsn),35.1725,128.576111,,10,,8807,45,133,,0000-2400,1234567,,,49167,,, +990,CAN,xx,CBDB,,Watson Lake (YT),60.064444,-128.716389,,0.165,,6914,337,134,,,,,,20100008,,, +990,J,,JORK NHK1,,Kochi (shi-koc),33.566667,133.6,,10,,9196,42,134,,0000-2400,1234567,,,49166,,, +990,PHL,,DZIQ-AM Radyo Inquirer,,Obando/Panghulo (bul),14.693872,120.946722,,25,,10304,62,134,,,,9997,,49173,,, +990,THA,th,Sor. Wor. Phor.,,Korat=Nakhon Ratchasima/Cho Ho (nrt),15.035833,102.1375,,10,,9077,76,134,,????-1700,1234567,,,49177,,, +990,ARG,es,LRH203 R Formosa,,Formosa (fm),-26.129767,-58.205667,,25,,10717,235,135,,0000-2400,1234567,,,51817,,, +990,CAN,xx,CBDW,,Norman Wells (NT),65.281111,-126.811944,,0.04,,6366,339,135,,,,,,20109134,,, +990,TWN,,Cheng Sheng BC,,Tali (TC),24.15,120.683333,,10,,9417,57,135,,0000-2400,1234567,,,49178,,, +990,TWN,,Ching-Cha Kuangpo Tientai,,Hualien (HL),23.993417,121.621006,,10,,9485,56,135,,,,,,49179,,, +990,USA,,KWAM,,Memphis (TN),35.134444,-90.093889,,0.45,,7405,298,135,,,,11,,39686,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Lushui/Liuku Zhen (YN),25.966667,98.833333,,1,,7918,72,136,,,,,,36200612,,, +990,CHN,zh,Qinhuangdao RGD Yinyue Jiankang Pinl,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,2055-1500,1234567,,,49149,,, +990,CLM,es,HJHI,,Garagoa (boy),5.083333,-73.366667,,5,,8864,265,136,,,,,,35901469,,, +990,USA,,KATD r:KIQI,,Pittsburg (CA),38.504722,-121.18,,5,,8737,321,136,,,,9994,,37977,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Yingjiang (YN),24.694517,97.950522,,1,,7968,73,137,,,,,,36200606,,, +990,EQA,,HCEW2 Frequencia Mil,,Guayaquil (gua),-2.105278,-79.926944,,10,,9942,266,137,,,,,,36925,,, +990,GTM,,TGAL R Perla de Oriente,,Chiquimula (cqm),14.766667,-89.516667,,5,,9114,284,137,,0000-2400,1234567,,,40476,,, +990,MEX,es,XECL-AM Rockola,,Mexicali (bcn),32.651961,-115.391075,,5,,9027,314,137,,,,9,,43851,,, +990,PNR,es,Asamblea Nacional,,Hicaco (chq),8.358611,-82.348333,,5,,9191,274,137,,,,,,35100006,,, +990,SLV,es,YSAT R UPA,,San Salvador (ssl),13.716667,-89.166667,,5,,9182,283,137,,,,,,45320,,, +990,USA,,KFCD,,Farmersville (TX),33.116944,-96.279722,,0.92,,7945,300,137,,,,,,20000013,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Yongren/YNTS698 (YN),26.05,101.666667,,1,,8093,69,138,,,,,,36200605,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Zhaotong/YNTS697 (YN),27.330556,103.694722,,1,,8112,67,138,,,,,,36200602,,, +990,MEX,es,XEPI-AM W R,,Chilpancingo (gue),17.563661,-99.465172,,5,,9510,293,138,,,,,,44548,,, +990,USA,,KZZB,,Beaumont (TX),30.149167,-94.133056,,1,,8072,297,138,,,,,,39915,,, +990,USA,,WBTE,,Windsor (NC),35.966667,-76.948333,,0.025,,6516,290,138,,,,,,40916,,, +990,CAN,,CIED,,Medicine Hat (AB),50.323611,-110.909167,,0.1,,7194,321,139,,,,,,20109223,,, +990,CAN,xx,CBQJ,,Ross River (YT),61.941667,-132.448056,,0.04,,6826,339,139,,,,,,20109131,,, +990,PNR,es,R Impacto/Filadelfia R,,Ciudad de Panam (pnm),9.037222,-79.4475,,3,,8934,272,139,,,,,,52317,,, +990,PRU,es,OBX4J R Latina,,Lima/Playa Venecia (lim),-12.25,-76.933333,,10,,10632,257,139,,,,,,37000007,,, +990,USA,en,WGSO,,New Orleans (LA),29.956667,-90.076111,,0.4,,7838,294,139,,,,,,41566,,, +990,CAN,xx,CBQF,,Carmacks (YT),62.100278,-136.266111,,0.04,,6898,341,140,,,,,,20109132,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Yuanjiang/YNTS694 (YN),23.6,102,,1,,8324,71,140,,,,,,36200604,,, +990,HTI,,R Cacique,,Port-au-Prince (oue),18.516667,-72.316667,,0.2,,7631,273,140,,,,,,35636,,, +990,MEX,es,XEFP-AM R Alegra,,Jalpa (zac),21.660639,-102.945544,,3,,9356,298,140,,,,,,44018,,, +990,PHL,,DZMT-AM (r:666 DZRH-AM),,Laoag City (iln),18.183333,120.583333,,5,,9961,60,140,,,,,,49172,,, +990,USA,,KRKS,,Denver (CO),39.799167,-104.97,,0.39,,7844,311,140,,,,114,,39256,,, +990,USA,,WEEB,,Southern Pines (NC),35.193611,-79.411667,,0.026,,6735,291,140,,,,,,41254,,, +990,USA,,WGML,,Hinesville (GA),31.850278,-81.601111,,0.076,,7143,290,140,,,,,,41532,,, +990,USA,,WLEE,,Richmond (VA),37.527778,-77.38,,0.013,,6423,291,140,,,,,,42152,,, +990,B,pt,ZYJ293 Rdio Naju AM,,Irati (PR),-25.465556,-50.653333,,5,,10249,229,141,,,,,,36901682,,, +990,B,pt,ZYJ321 Rdio Capital,,Cianorte (PR),-23.635,-52.573333,,5,,10176,232,141,,,,,,36901680,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Jiangcheng (YN),22.6,101.833333,,1,,8400,72,141,,,,,,36200615,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Luxi/YNTS705 (YN),24.516667,103.766667,,1,,8359,69,141,,,,,,36200611,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Lchun (YN),23.005611,102.354056,,1,,8398,71,141,,,,,,36200613,,, +990,USA,,WJEH,,Gallipolis (OH),38.805556,-82.223056,,0.016,,6628,295,141,,,,,,41864,,, +990,PRU,,OAX6K R Continental,,Tacna (tac),-18,-70.316667,,5,,10708,249,142,,,,,,40333,,, +990,B,pt,ZYH483 Rdio Alvorada Gospel,,Teixeira de Freitas (BA),-17.522536,-39.738178,,1,,8931,224,143,,,,,,36901672,,, +990,B,pt,ZYI922 Rdio Vale do Canind,,Oeiras (PI),-7.022383,-42.134525,,0.25,,8019,231,143,,,,,,36901677,,, +990,PHL,,DYTH-AM,,Tacloban City (lyt),11.233333,125.016667,,5,,10868,60,143,,,,,,49174,,, +990,USA,,KTKT,,Tucson (AZ),32.255278,-111.008889,,1,,8841,310,143,,,,,,39498,,, +990,USA,,WABO,,Waynesboro (MS),31.68,-88.676111,,0.1,,7606,294,143,,,,,,40632,,, +990,USA,,WNRV,,Narrows-Pearisburg (VA),37.344167,-80.776667,,0.01,,6652,293,143,,,,,,42506,,, +990,PHL,,DXBM-AM Super Radyo,,Cotabato City (mag),7.216667,124.233333,,5,,11195,63,144,,0000-2400,1234567,,,49171,,, +990,USA,,WEIS,,Centre (AL),34.15,-85.685278,,0.03,,7215,294,144,,,,,,41273,,, +990,ARG,es,LR4 R.Splendid AM 990,,Buenos Aires/Sarand (df),-34.683861,-58.316444,,5,,11509,230,145,,0000-2400,1234567,2,,39925,,, +990,MEX,es,XEATM-AM R Frmula,,Morelia (mic),19.698867,-101.141022,,1,,9423,296,145,,,,,,43739,,, +990,MEX,es,XEIU-AM Amor,,Oaxaca (oax),17.065431,-96.741739,,1,,9382,291,145,,,,,,44184,,, +990,TWN,,Ching-Cha Kuangpo Tientai,,Yilan (YL),24.769167,121.757222,,1,,9421,55,145,,,,,,49180,,, +990,USA,,KRMO,,Cassville (MO),36.9375,-93.925,,0.047,,7481,302,145,,,,,,39268,,, +990,USA,,WLDX,,Fayette (AL),33.685,-87.821111,,0.042,,7386,295,145,,,,,,42148,,, +990,HWA,en,KIKI,,Honolulu (HI),21.323889,-157.875556,,5,,11708,345,146,,0000-2400,1234567,998,,38532,,, +990,CAN,en,CBKN,,Shalalth (BC),50.730278,-122.241667,,0.04,,7605,328,147,,,,,,20109135,,, +990,INS,id,PM3CET R.Nias Mitra Dharma,,Gunungsitoli (SU-nia),1.283333,97.616667,,1,,9977,88,147,,,,,,35400046,,, +990,USA,,KSVP,,Artesia (NM),32.824722,-104.399722,,0.25,,8434,306,147,,,,,,39438,,, +990,USA,,KTMS,,Santa Barbara (CA),34.470833,-119.675833,,0.5,,9058,318,147,,,,9980,,39512,,, +990,B,pt,ZYH299 Rdio Independncia,,Maus (AM),-3.40185,-57.686633,,0.25,,8588,247,148,,,,,,36901674,,, +990,USA,,KRSL,,Russell (KS),38.906111,-98.860833,,0.03,,7594,306,148,,,,,,39295,,, +990,USA,,WCAZ,,Carthage (IL),40.408333,-91.170833,,0.009,,7035,302,148,,,,,,40950,,, +990,MEX,es,XEBC-AM La Buena Onda,,Ciudad Guzmn (jal),19.717644,-103.473872,,0.5,,9564,297,149,,,,,,43764,,, +990,PRU,,OBX3L,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000082,,, +990,USA,,WITZ,,Jasper (IN),38.350556,-86.940556,,0.006,,6951,298,149,,,,,,41820,,, +990,EQA,,HCAU5,,Cuenca (azu),-2.85,-79,,0.5,,9945,265,150,,,,,,36854,,, +990,MEX,es,XEER-AM R Lobo,,Ciudad Cuauhtmoc (chi),28.393889,-106.8175,,0.25,,8969,305,150,,,,,,43975,,, +990,USA,,KAYL,,Storm Lake (IA),42.634722,-95.169444,,0.006,,7078,306,150,,,,,,37993,,, +990,INS,id,PM5DXN R Bahana Nirmala,,Martapura (KS),-3.416667,110.35,,1,,11256,81,151,,????-1145,1234567,,,49163,,, +990,B,pt,ZYK579 Rdio Cultura Regional,,Dois Crregos (SP),-22.374278,-48.385767,,0.25,,9836,229,152,,,,,,36901684,,, +990,INS,id,R Gita Lestari,,Brebes/Ketanggungan (JT-bre),-7.8,110.35,,1,,11642,84,152,,,,,,49155,,, +990,INS,id,R Pesona Bahari,,Weleri (JT-ken),-6.966667,110.066667,,1,,11549,83,152,,,,,,49164,,, +990,MEX,,XEHZ-AM,,La Paz (bcs),24.090556,-110.336389,,0.25,,9562,305,152,,,,,,44153,,, +990,ARG,,LRJ201 R Calingasta,,Barreal (sj),-31.633333,-69.466667,,1,,11858,240,153,,1000-0500,1234567,,,51818,,, +990,AUS,en,6RPH Information R,,Perth/Ascot Waters (WA),-31.934742,115.915567,,5,,14040,97,153,,0000-2400,1234567,,,49144,,, +990,INS,id,PM8DCZ R.Suara Sawerigading,,Wonomulyo (SR-pol),-3.4,119.216667,,1,,11845,74,153,,,,,,35400135,,, +990,USA,,KAML,,Karnes City/CR-345 (TX),28.850556,-97.88,,0.07,,8411,299,153,,,,,,37945,,, +990,USA,,WRFM,,Muncie (IN),40.115,-85.367222,,0.001,,6716,298,154,,,,,,42166,,, +990,B,pt,ZYJ763 Rdio Itapiranga,,Itapiranga (SC),-27.157778,-53.695833,,0.25,,10568,231,155,,,,,,36901678,,, +990,B,pt,ZYK335 Rdio Sananduva AM,,Sananduva (RS),-27.955833,-51.803611,,0.25,,10545,229,155,,,,,,36901679,,, +990,CHL,,CC99 R El Roble,,Parral (ML),-36.25,-71.666667,,1,,12383,238,155,,,,,,51951,,, +990,B,pt,ZYK314 Tup AM,,Tupanciret (RS),-29.076944,-53.856944,,0.25,,10757,230,156,,,,,,36901685,,, +990,B,pt,ZYK360 Rdio Clube Pedro Osrio AM,,Pedro Osrio (RS),-31.852778,-52.8,,0.25,,10963,228,156,,,,,,36901676,,, +990,AUS,,4RO,,Rockhampton/Port Alma (QLD),-23.583333,150.845778,,5,,15643,57,159,,0000-2400,1234567,,,49145,,, +990,USA,,KTHH,,Albany (OR),44.595278,-123.126111,,0.009,,8228,325,160,,,,,,39482,,, +990,AUS,,8GO ABC Darwin,,Nhulunbuy (Gove) (NT),-12.191111,135.776667,,0.5,,13698,65,162,,0000-2400,1234567,,,49143,,, +990,AUS,,3RN ABC National,,Albury/Wodonga (VIC),-36.101967,146.902611,,0.3,,16455,76,174,,0000-2400,1234567,991,,49142,,, +990,NZL,,R Apna/R Chinese,,Auckland/Mangere (AUK),-36.989861,174.764669,,1,,18103,33,174,,0000-2400,1234567,0,,49169,,, +990,NZL,en,LiveSPORT,,Nelson/Richmond (NSN),-41.3225,173.172778,,1,,18453,45,175,,,,,,49170,,, +995,RUS,,DW,b,Nikolskoye,54.0625,49.208333,,0.025,,2823,68,101,,,,107,L800 U1015 ,85833,,, +995,RUS,,KW,b,Kislovodsk (ST),43.9375,42.625,,0.025,,2808,94,101,,,,,,85834,,, +999,MDA,be,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2000-2030,1......,9999,,759,,, +999,MDA,ru,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,0300-0500,12345..,9999,,759,,, +999,MDA,ru,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1930-1945,12....7,9999,,759,,, +999,MDA,ru,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2000-2015,0.234567,9999,,759,,, +999,MDA,ru,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2015-2030,.2345.7,9999,,759,,, +999,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,0500-0900,1234567,9999,,759,,, +999,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,0900-1100,.....67,9999,,759,,, +999,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1100-1900,1234567,9999,,759,,, +999,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2100-2300,1234567,9999,,759,,, +999,MDA,uk,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1900-1930,1234567,9999,,759,,, +999,MDA,uk,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1930-1945,..3456.,9999,,759,,, +999,MDA,uk,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1945-2000,1234567,9999,,759,,, +999,MDA,uk,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2015-2030,.....6.,9999,,759,,, +999,I,it,RAI Piemonte,,Volpiano (to),45.192292,7.826556,,50,,776,172,48,,0620-0630,123456,0,,4000010,,, +999,I,it,RAI Piemonte,,Volpiano (to),45.192292,7.826556,,50,,776,172,48,,1110-1130,123456,0,,4000010,,, +999,I,it,RAI R1 (FM),,Volpiano (to),45.192292,7.826556,,50,,776,172,48,,0000-2400,1234567,0,,4000010,,, +999,E,es,COPE,,Madrid/Majadahonda (MAD-M),40.436869,-3.8294,,50,,1515,215,55,,0000-2400,1234567,9981,,749,,, +999,G,en,BBC R Solent,,Fareham (EN-HPS),50.849306,-1.226833,,1,,547,258,62,,0000-2400,1234567,0,,751,,, +999,G,en,Magic 999,,Preston/Longton (EN-LNC),53.720444,-2.809028,,0.8,,643,290,64,,0000-2400,1234567,9987,,754,,, +999,G,en,Gold,,Nottingham/Trowell (EN-NHS),52.953167,-1.248083,,0.25,,526,283,68,,0000-2400,1234567,9992,,752,,, +999,SRB,sr,R Beograd 1,,Kladovo (Srb-bor),44.609367,22.594111,,1,,1453,119,72,,0000-2400,1234567,,,763,,, +999,ARS,ar,BSKSA Al-Quran al-Karim,,Duba (tbk),27.438317,35.595681,,100,,3660,127,74,,0000-2400,1234567,0,,748,,, +999,IRN,,IRIB R Kordestan,,Baneh (kdn),35.989,45.872111,,50,,3566,104,76,,0230-1730,1234567,17,,1792,,, +999,MLT,,Radju Malta,,Bizbizja (mt),35.913139,14.411417,,1,,1908,158,76,,0000-2400,1234567,8493,,760,,, +999,QAT,ar,QBS,,Al-Khisah (dyn),25.405333,51.478833,,50,,4790,111,88,,0245-0700,1234567,1,,762,,, +999,QAT,ar,QBS,,Al-Khisah (dyn),25.405333,51.478833,,50,,4790,111,88,,1300-1900,1234567,1,,762,,, +999,IRQ,ar,R Al-Bilad,,Baghdad (bgh),33.312367,44.264044,,2,,3669,110,91,,0330-1700,1234567,23,,758,,, +999,UGA,xx,UBC West,,Kabale (kab),-1.247639,29.920111,,100,,6329,152,100,,0300-2100,1234567,,,2445,,, +999,AFG,,R Helmand,,Lashkar Ga (hel),31.583333,64.333333,,5,,5146,93,101,,0330-0730,1234567,,,11000008,,, +999,AFG,,R Helmand,,Lashkar Ga (hel),31.583333,64.333333,,5,,5146,93,101,,1130-1430,1234567,,,11000008,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,10,,5377,67,101,,2300-1800,1234567,,,36200015,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Hami=Kumul/XJTS761 (XJ),42.872778,93.511667,,10,,6223,62,109,,2300-1800,1234567,,,36200014,,, +999,CHN,zh,Aihui RGD Ai Guang zhi Sheng,,Heihe/SARFT913 (HL),50.23,127.519167,,100,,7361,37,111,,2125-????,1234567,,,49195,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Zhaosu/SARFT8113 (XJ),43.148333,81.119444,,1,,5433,69,111,,2300-1800,1234567,,,36200011,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Shache=Yarkant/SARFT8107 (XJ),38.417222,77.225833,,1,,5512,76,112,,2300-1800,1234567,,,36200013,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Xinyuan=Knes/SARFT8117 (XJ),43.46,83.263611,,1,,5548,68,112,,2300-1800,1234567,,,36200012,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Kuqa=Kuche/SARFT8106 (XJ),41.717222,82.895278,,1,,5646,70,113,,0000-1800,1234567,,,49186,,, +999,KRE,,KCBS Chosun Jungang Pangsong,,Hamhung (han),39.928744,127.50835,,250,,8310,43,116,,2000-1800,1234567,790,,49206,,, +999,CHN,zh,CNR 1,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,0000-0030,1234567,,,49190,,, +999,CHN,zh,CNR 1,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,1030-1100,1234567,,,49190,,, +999,CHN,zh,CNR 1,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,2230-2300,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,0030-0600,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,0600-1000,1.34567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,1000-1030,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,1100-1800,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,2000-2230,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,2300-2400,1234567,,,49190,,, +999,BGD,,Bangladesh Betar,,Thakurgaon (rgp),26.057889,88.510556,,10,,7228,79,119,,0950-1710,1234567,,,49183,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Ruoqiang=Qarkilik/SARFT8105 (XJ),39.042222,88.170278,,1,,6179,69,119,,2300-1800,1234567,,,36200010,,, +999,CHN,,Liaoning RGD Jingji Tai,,Shenyang/SARFT033 (LN),41.625278,123.300556,,50,,7955,45,120,,2125-1600,1234567,,,49193,,, +999,IND,,AIR North,,Almora (UT),29.589389,79.640306,,1,,6345,83,120,,0020-1740,1234567,,,49196,,, +999,IND,,AIR South,,Coimbatore (TN),10.940083,77.018472,,20,,7730,99,121,,0020-0345,1234567,78,,49197,,, +999,IND,,AIR South,,Coimbatore (TN),10.940083,77.018472,,20,,7730,99,121,,0610-0915,123456,78,,49197,,, +999,IND,,AIR South,,Coimbatore (TN),10.940083,77.018472,,20,,7730,99,121,,0630-1100,......7,78,,49197,,, +999,IND,,AIR South,,Coimbatore (TN),10.940083,77.018472,,20,,7730,99,121,,1200-1735,1234567,78,,49197,,, +999,ZWE,,Voice of Zimbabwe,,Gweru (mdl),-19.522694,29.936125,,50,,8286,157,123,,,,,,20400003,,, +999,CHN,,Guiyang RGD News,,Guiyang (GZ),26.416667,106.6,,10,,8373,66,131,,????-1600,1234567,,,49189,,, +999,THA,,Thor. Phor. Saam,,Chiang Rai/Fort Mengrai Maharat (cri),19.906117,99.813944,,10,,8500,75,132,,2200-1400,1234567,,,49216,,, +999,KOR,ko,HLCL CBS,,Gwangju (gwa),35.226111,126.775278,,10,,8714,46,133,,2000-1600,1234567,,,49207,,, +999,CHN,,Guangdong RGD Nanfang Shenghuo,,Guangzhou/SARFT808 (GD),23.106389,113.26,,10,,9074,63,134,,,,,,49188,,, +999,THA,th,Phon Neung Ror. Or.,,Bangkok/Viphavadee-Rangsit Rd (bmp),13.774222,100.551222,,10,,9082,78,134,,0000-2400,1234567,0,,49215,,, +999,CHN,,Shandong Guangbo Dilu Pindao,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,,,,,36200601,,, +999,CHN,,Bozhou RGD,,Bozhou (AH),33.883333,115.766667,,1,,8259,54,140,,,,,,36200600,,, +999,PHL,,DZEQ-AM Radyo ng Bayan,,Baguio (bgt),16.4,120.583333,,5,,10125,61,140,,,,,,49209,,, +999,PHL,,DWMI-AM,,Calapan (orm),13.4,121.166667,,5,,10437,62,141,,,,,,49210,,, +999,J,ja,NHK R 1,,Hachinohe (toh-aom),40.4625,141.469722,,1,,8845,33,143,,0000-2400,1234567,,,49205,,, +999,PHL,,DYSS-AM Super Radyo,,Cebu City/Mambaling (ceb),10.284978,123.876661,,5,,10888,62,143,,0000-2400,1234567,,,49212,,, +999,J,,JODP NHK1,,Onomichi (chg-hir),34.405556,133.208056,,1,,9097,42,144,,0000-2400,1234567,,,49203,,, +999,J,,NHK R 1,,Nakamura (shi-koc),32.983333,132.916667,,1,,9221,43,144,,0000-2400,1234567,,,49202,,, +999,TWN,,Tien Nan BS Golden Channel,,Taipei (TPS),25.081719,121.516756,,1,,9379,56,145,,0000-2400,1234567,999,,49217,,, +999,FSM,,V6AF Baptist R,,Pohnpei (pnp),6.965833,158.204667,,10,,12921,32,147,,,,,,39900001,,, +999,PHL,,DXHP-AM,,Castillo (sds),8.183333,126.35,,1,,11232,61,151,,2100-1600,1234567,,,49211,,, +999,PHL,,DXPT-AM Radyo ng Bayan,,Tawi-Tawi/Bongao (slu),5.016667,119.766667,,1,,11119,68,151,,,,,,49213,,, +999,J,,NHK R 1,,Itoigawa (chu-nii),37.05,137.866667,,0.1,,9042,37,154,,0000-2400,1234567,,,49199,,, +999,J,,NHK R 1,,Komagane (chu-nag),35.716667,137.933333,,0.1,,9176,38,154,,0000-2400,1234567,,,49200,,, +999,J,,NHK R 1,,Miyazu (kns-kyo),35.533333,135.2,,0.1,,9077,40,154,,0000-2400,1234567,,,49201,,, +999,J,,NHK R 1,,Tsuwano (chg-shi),34.45,131.766667,,0.1,,9027,43,154,,0000-2400,1234567,,,49204,,, +999,AUS,,2ST,,Nowra (NSW),-34.888333,150.534722,,5,,16598,70,162,,0000-2400,1234567,995,,49182,,, +999,AUS,,2NB ABC Broken Hill,,Broken Hill (NSW),-31.929514,141.4825,,2,,15773,76,163,,0000-2400,1234567,,,49181,,, +999,NZL,,Manawatu Access R./Sounz AM,,Palmerston North/Setters Line (MWT),-40.3,175.6,,1.5,,18464,36,173,,0000-2400,1234567,2,,49208,,, +1000,USA,en,WMVP,,Chicago (IL),41.818056,-87.988333,,50,,6737,301,107,,,,2,,42414,,, +1000,USA,,WLNL,,Horseheads (NY),42.153889,-76.846389,,5,,6041,295,110,,,,,,42196,,, +1000,USA,,WCMX,,Leominster (MA),42.523611,-71.735278,,1,,5695,292,114,,,,998,,41042,,, +1000,RUS,,KZ,b,Severnoye (NS),56.354167,78.375,,0.025,,4484,54,118,,,,,U400 ,85835,,, +1000,USA,,WIOO,,Carlisle (PA),40.158333,-77.196944,,1,,6211,293,119,,,,,,41783,,, +1000,USA,en,KOMO,,Seattle/Dilworth (WA),47.463611,-122.440833,,50,15,7925,326,119,,,,34,,39087,,, +1000,USA,,WRQR,,Paris (TN),36.313889,-88.2925,,5,,7198,297,122,,,,,,42408,,, +1000,USA,,WKDE,,Altavista (VA),37.122222,-79.288889,,1,,6576,292,123,,,,,,41981,,, +1000,USA,,WRTG,,Garner (NC),35.730556,-78.603333,,1,,6641,291,123,,,,,,42924,,, +1000,B,pt,ZYK522 Rdio Record,,So Paulo/Avenida Guarapiranga (SP),-23.684167,-46.7425,,200,,9878,227,124,,,,9937,,36901688,,, +1000,USA,,WCCD,,Parma (OH),41.319722,-81.768611,,0.5,,6406,297,124,,,,,,40963,,, +1000,USA,,WKVG,,Jenkins (KY),37.166389,-82.620278,,1,,6781,294,125,,,,,,42085,,, +1000,USA,,WYBT,,Blountstown (FL),30.454167,-85.042222,,5,,7479,291,125,,,,,,43507,,, +1000,USA,,WRAR,,Tappahannock (VA),37.874167,-76.726944,,0.3,,6355,291,126,,,,,,42814,,, +1000,USA,en,WXTN,,Benton (MS),33.110833,-90.039167,,5,,7570,296,126,,1300-0100,1234567,,,43495,,, +1000,CUB,es,R Artemisa,,Artemisa (ar),22.807056,-82.7663,,10,,7972,284,127,,,,2,,31600034,,, +1000,VEN,,YVNM R Mil La Caribena,,Morn (cbb),10.5,-68.166667,,10,,8037,264,127,,0900-0400,1234567,,,45394,,, +1000,CUB,es,R Granma,,Media Luna (gr),20.150067,-77.433781,,5,,7840,278,128,,,,999,,31600069,,, +1000,USA,,KTOK,,Oklahoma City (OK),35.358056,-97.463333,,5.8,,7820,303,128,,,,,,39525,,, +1000,VIR,en,WVWI,,Charlotte Amalie (sto),18.336389,-64.944722,,1,,7143,267,128,,,,,,43349,,, +1000,USA,en,WDJL,,Huntsville (AL),34.779722,-86.654444,,1.1,,7224,295,129,,1200-2400,1234567,,,41166,,, +1000,CLM,es,HJAQ RCN,,Cartagena (bol),10.5,-75.416667,,15,,8531,270,130,,,,994,,37332,,, +1000,MEX,es,XEOY-AM R Mil,,Mxico D.F/Iztacalco (dif),19.388756,-99.125003,,20,,9326,294,132,,,,998,,44521,,, +1000,VEN,,YVOA R Tachira,,San Cristbal (tch),7.766667,-72.366667,,10,,8561,266,132,,1000-0400,1234567,,,45403,,, +1000,USA,en,WDXZ,,Robertsdale (AL),30.536944,-87.705,,1,,7641,293,133,,1300-0100,1234567,,,42509,,, +1000,CLM,es,HJJG,,Manizales (cal),5.066667,-75.466667,,10,,9009,267,134,,,,,,37507,,, +1000,CTR,,TIMIL Mil FM,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,0000-2400,1234567,,,40595,,, +1000,NCG,,YNFF R Mil,,Managua (mng),12.083333,-86.316667,,10,,9134,280,134,,1200-2400,1234567,,,45249,,, +1000,PNR,es,HOK36 R Poderosa,,Aguadulce (ccl),8.2463,-80.533767,,10,,9077,273,134,,1000-0500,1234567,,,37697,,, +1000,B,pt,ZYI698 Rdio Oeste da Paraba,,Cajazeiras (PB),-6.865178,-38.562931,,1,,7817,228,135,,,,,,36901686,,, +1000,EQA,,HCAW2,,Guayaquil (gua),-2.2,-79.9,,10,,9949,266,137,,,,,,36857,,, +1000,USA,,KXRB,,Sioux Falls (SD),43.486944,-96.596667,,0.1,,7085,308,138,,,,23,,39821,,, +1000,BOL,,CP220 R Baha'i de Bolivia,,Caracollo (oru),-17.65,-67.166667,,10,,10478,246,139,,0800-0200,1234567,,,51985,,, +1000,B,pt,ZYI791 Rdio Princesa Serrana,,Timbaba (PE),-7.515278,-35.323167,,0.25,,7722,225,140,,,,,,36901687,,, +1000,BOL,,CP43 R Pirai,,Santa Cruz (scz),-17.766667,-63.166667,,5,,10242,243,141,,,,,,36698,,, +1000,BOL,,CP119 R Dif. Tropico,,Trinidad (ebn),-14.8,-64.783333,,3,,10072,246,142,,1300-0030,1234567,,,36634,,, +1000,PRG,,ZP36 R Mil,,San Antonio (asu),-25.416667,-57.544444,,5,,10615,235,142,,0900-0100,1234567,,,51735,,, +1000,ARG,,LT42 R del Ibera,,Mercedes (cn),-29.166667,-58.066667,,5,,10990,233,143,,0900-0300,1234567,,,40194,,, +1000,USA,,KFLG,,Bullhead City (AZ),35.169444,-114.633889,,1,,8753,314,143,,,,,,38404,,, +1000,HND,,HRXZ,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37879,,, +1000,MEX,es,XECSV-AM Mxima,,Coatzacoalcos (vcz),18.135878,-94.42805,,1,,9139,290,144,,,,,,43876,,, +1000,SLV,,YSHH,,Santa Ana (sta),14,-89.5,,1,,9180,283,144,,,,,,45278,,, +1000,USA,,KCEO,,Vista (CA),33.232778,-117.269722,,0.9,,9064,315,144,,,,,,38139,,, +1000,CHL,es,CB100 R RRB,,Santiago/Pudahuel (RM),-33.405611,-70.871494,,7,,12094,239,145,,1030-0500,1234567,,,35720,,, +1000,MEX,es,XEMMS-AM Ke Buena,,Mazatln (sin),23.215256,-106.373725,,1,,9417,302,145,,,,,,44390,,, +1000,MEX,es,XEMYL-AM Los 40 Principales,,Mrida (yuc),21.031389,-89.575556,,0.5,,8572,288,145,,,,,,44425,,, +1000,MEX,es,XETAC-AM Exa,,Tapachula (cps),14.888528,-92.227175,,1,,9282,286,145,,,,,,44788,,, +1000,USA,,KSTA,,Coleman (TX),31.854444,-99.426667,,0.25,,8238,302,145,,,,,,39419,,, +1000,EQA,,HCCR1,,Alegria (pic),-0.216667,-79.15,,1,,9724,266,146,,,,,,36888,,, +1000,MEX,es,XEHPC-AM R Mil,,Hidalgo del Parral (chi),26.921294,-105.650289,,0.5,,9038,303,147,,,,,,44134,,, +1000,USA,,KBIB,,Marion (TX),29.569167,-98.163056,,0.25,,8365,299,147,,,,,,38032,,, +1000,MEX,es,XERZ-AM W R,,Len (gua),21.086667,-101.682778,,0.5,,9331,297,148,,,,,,44724,,, +1000,MEX,es,XEFV-AM La Rancherita,,Ciudad Jurez (chi),31.686111,-106.429722,,0.25,,8649,307,149,,,,,,44036,,, +1000,USA,ht,WJBW,,Jupiter (FL),26.938889,-80.116667,,0.017,,7450,285,149,,,,,,41850,,, +1000,MEX,es,XEMIL-AM Planeta,,Los Mochis (sin),25.817417,-109.015578,,0.25,,9329,305,151,,,,,,44380,,, +1000,ARG,,R Sintonia,,Jos Clemente Paz (ba),-34.5,-58.75,,1,,11515,230,152,,,,,,51825,,, +1000,EQA,,HCMB1,,Ibarra (imb),0.35,-78.116667,,0.25,,9603,266,152,,,,,,37015,,, +1000,MEX,es,XENLT-AM R Frmula,,Nuevo Laredo (tam),27.474331,-99.513622,,0.1,,8630,299,152,,,,,,44449,,, +1000,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010600,,, +1000,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010603,,, +1000,ARG,,LU16 R Rio Negro,,Villa Regina (rn),-39.1,-67.066667,,1,,12369,233,155,,0900-0300,1234567,,,40210,,, +1000,USA,,KKIM,,Albuquerque (NM),35.170556,-106.630833,,0.038,,8344,309,155,,,,,,38722,,, +1000,USA,en,WPFM428,,Barstow/1800 Dill St. (CA),34.894361,-116.995583,,0.01,,8892,316,163,,,,,,20010601,,, +1000,USA,en,KG2XAJ,,San Antonio (TX),29.446667,-98.608056,,0.0001,,8402,300,181,,,,,,20010602,,, +1005,RUS,,LO,b,Klimovsk,55.354167,37.541667,,0.025,,2061,68,94,,,,,U1061 30.0s,IDx2,85836,, +1005,UKR,,PR,b,Pravdivka,48.3125,37.708333,,0.025,,2249,88,95,,,,,,85837,,, +1005,RUS,,VL,b,Zheltoye,51.645833,56.625,,0.025,,3377,71,107,,,,,U1003 ,IDx2 + 20 gap,85838,, +1008,HOL,nl,GrootNieuws R,,Zeewolde (Flevoland) (fle),52.375167,5.417194,,100,133,74,294,11,,0000-2400,1234567,28,,778,,, +1008,E,es,SER,,Girona/Sarra de Dalt (CAT-GI),42.01645,2.808789,,5,,1155,195,62,,0000-2400,1234567,9993,,772,,, +1008,E,es,SER,,Badajoz (EXT-BA),38.859336,-6.944161,,10,,1798,220,65,,0000-2400,1234567,10,,773,,, +1008,E,es,SER,,Alicante=Alacant (VAL-A),38.352222,-0.491111,,5,,1621,202,66,,0000-2400,1234567,996,,774,,, +1008,EGY,ar,ERTU Al-Barnameg al-Aam/Sawt al-Arab/Sawt al-Falasteniy,,El-Arish=Al-Arish (sin),31.111833,33.699444,,100,90,3219,126,69,,0400-2000,1234567,1,,775,,, +1008,SRB,sr,R Beograd 2,,Beograd/Krnjača (Srb-gbg),44.841239,20.473014,,1,,1311,122,70,,0400-1900,1234567,,,779,,, +1008,SRB,sr,R Beograd 3,,Beograd/Krnjača (Srb-gbg),44.841239,20.473014,,1,,1311,122,70,,1900-0400,1234567,,,779,,, +1008,IRN,fa,IRIB R Semnan,,Semnan (smn),35.5445,53.357878,,100,,4101,98,78,,0030-2230,1234567,0,,1793,,, +1008,CNR,es,esR,,Arucas/EAJ50 (LPM-GC),28.11695,-15.50175,,10,,3227,223,79,,0000-2400,1234567,,,771,,, +1008,EGY,ar,ERTU Al-Barnameg al-Aam,,Al-Fayyum=Faiyum (fym),29.245711,30.886508,,10,,3242,132,79,,0400-2000,1234567,,,776,,, +1008,RUS,ru,R Rossii,,Tuapse/RV983 (KD),44.115028,39.074889,,1,,2557,97,83,,0100-2100,1234567,,,46912,,, +1008,EGY,ar,ERTU Al-Barnameg al-Aam,,Qasr el-Farafra (wjd),27.077617,27.978894,,1,,3313,139,90,,0400-2000,1234567,,,1836,,, +1008,YEM,ar,YGCRT Sana'a R,,Sana'a (san),15.379761,44.195078,,60,,5267,127,92,,1400-2210,1234567,941,,780,,, +1008,NIG,xx,Niger State BC,,Kontagora (nig),10.390028,5.429733,,10,,4640,181,93,,0430-2130,1234567,,,6200009,,, +1008,PAK,,PBC Hayya alal-Falah,,Hyderabad (shd),25.574556,68.443739,,120,,5904,95,95,,0045-0405,1234567,,,49263,,, +1008,PAK,,PBC Hayya alal-Falah,,Hyderabad (shd),25.574556,68.443739,,120,,5904,95,95,,0600-1808,1234567,,,49263,,, +1008,NIG,,OSBC R,,Iree (osu),7.933317,4.716439,,10,,4915,182,96,,0500-2300,1234567,,,2448,,, +1008,CHN,en,CRI News R,,rmqi (XJ),43.583333,87.5,,3,,5804,65,110,,0000-2400,1234567,,,36200573,,, +1008,IND,,AIR East,,Kolkata B (WB),22.363056,88.283889,,100,,7520,82,112,,0025-0515,1234567,,,49247,,, +1008,IND,,AIR East,,Kolkata B (WB),22.363056,88.283889,,100,,7520,82,112,,0700-1000,1234567,,,49247,,, +1008,IND,,AIR East,,Kolkata B (WB),22.363056,88.283889,,100,,7520,82,112,,1130-1840,1234567,,,49247,,, +1008,CHN,zh,CNR 1,,Kunming/Anning-SARFT501 (YN),24.8925,102.484833,,200,,8244,70,116,,2025-1805,1234567,,,36200009,,, +1008,TWN,,R Taiwan Int.,,Lukang (CH),24.052333,120.425583,,300,293,9412,57,120,,0400-0600,1234567,3,,49268,,, +1008,TWN,,R Taiwan Int.,,Lukang (CH),24.052333,120.425583,,300,293,9412,57,120,,1000-1700,1234567,3,,49268,,, +1008,CHN,zh,Hubei RGD Chutian Xinwen,,Jingmen (HU),31.033333,112.2,,50,,8308,59,123,,1955-1705,1234567,,,36200585,,, +1008,CHN,,Shaanxi Xinwen Guangbo,,Yan'an/Dingquanbian (SA),36.602222,109.485833,,10,,7668,57,124,,2150-1610,1234567,,,49235,,, +1008,CHN,,Zhengzhou RGD Wenhua,,Zhengzhou/HETS804 (HE),34.778056,113.579444,,25,,8058,55,124,,2130-1630,1234567,,,49246,,, +1008,CHN,,Gansu RGD,,Jiuquan (GS),39.759722,98.515,,1,,6764,62,125,,2150-1605,1234567,,,36200583,,, +1008,CHN,,Shaanxi Xinwen Guangbo,,Hanzhong (SA),33.154944,106.962472,,10,,7815,61,125,,2150-1710,1234567,,,49236,,, +1008,KOR,,HLCS KBS 3 R,,Gangneung/Yangyang (gan),38.089167,128.659444,,50,,8536,43,125,,2100-1800,1234567,,,49260,,, +1008,CHN,,Handan RGD Jiaotong,,Handan/Nanbao Xiang (HB),36.558056,114.522778,,10,,7954,54,127,,,,,,36200591,,, +1008,J,ja,JONR ABC Asahi Hoso,,Osaka/Takaishi (kns-osk),34.516389,135.434444,,50,,9186,40,127,,0000-2400,1234567,9941,,49259,,, +1008,MOZ,pt,Emisso Provincial Maputo,,Maputo (mpc),-25.9585,32.461444,,50,,9044,156,127,,0250-2200,1234567,9990,,2447,,, +1008,CHN,zh,CNR 1,,Chuxiong/YNTS692 (YN),25.020511,101.555006,,10,,8174,70,129,,2025-1805,1234567,,,36200594,,, +1008,CHN,zh,CNR 1,,Jinping (YN),24.05,104.2,,10,,8427,69,131,,2025-1805,1234567,,,49238,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Hefei/Motancun (AH),31.794111,117.379889,,10,,8536,55,132,,,,,,36200590,,, +1008,CHN,,CRI Voice of the South China Sea,,unknown,34.95,104.5,,1,,7515,61,132,,,,,,36201297,,, +1008,CHN,zh,CNR 1,,Guyuan (NX),36.25,106.166667,,1,,7505,59,132,,2025-1805,1234567,,,36200592,,, +1008,CHN,zh,CNR 1,,several locations,34.95,104.5,,1,,7515,61,132,,2025-1805,1234567,,,49239,,, +1008,CHN,zh,Hubei RGD Chutian Xinwen,,Chibi (HU),29.883333,113.633333,,10,,8493,58,132,,1955-1705,1234567,,,36200596,,, +1008,CHN,zh,Hubei RGD Chutian Xinwen,,Huangshi (HU),30.216667,115.1,,10,,8548,57,132,,1955-1705,1234567,,,36200587,,, +1008,CHN,zh,Nanjing RGD Xinwen Tai,,Nanjing/Gulizhen (JS),31.868167,118.671889,,10,,8600,54,132,,1950-1800,1234567,,,49240,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Wuhu (AH),31.3,118.4,,10,,8637,54,133,,,,,,36200572,,, +1008,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Beihai (GX),21.483333,109.1,,10,,8961,67,134,,,,,,36200598,,, +1008,CHN,,Pingdingshan JGD,,Pingdingshan (HE),33.7,113.283333,,3,,8136,56,134,,,,,,49241,,, +1008,THA,th,Wor. Por. Thor. 3,,Korat=Nakhon Ratchasima/Fort Saranari (nrt),14.9,102.105556,,10,,9087,76,134,,????-1630,1234567,,,49267,,, +1008,CHN,,Langfang RGD,,Langfang (HB),39.528056,116.731667,,1,,7812,50,135,,,,,,36200581,,, +1008,CHN,en,CRI Round the Clock,,Beijing (BJ),39.933333,116.383333,,1,,7759,50,135,,0000-2400,1234567,,,49232,,, +1008,CHN,zh,CNR 1,,Xingping (SA),34.287033,108.517739,,1,,7810,59,135,,2025-1805,1234567,,,36200181,,, +1008,CHN,,Sanmenxia RGD Urban,,Sanmenxia (HE),34.795278,111.189444,,1,,7921,57,136,,,,,,36200576,,, +1008,CHN,,Tianjin Yinyue Tai,,Tianjin (TJ),39.114444,117.242222,,1,,7876,50,136,,2155-1800,1234567,,,49243,,, +1008,CHN,zh,CNR 1,,Leshan/SCTS525 (SC),29.616667,103.666667,,1,,7915,66,136,,2025-1805,1234567,,,36200580,,, +1008,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,1000-1805,1234567,,,36200182,,, +1008,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,2025-2200,1234567,,,36200182,,, +1008,TWN,,BCC Country Network,,Taitung (TT),22.750928,121.143528,,10,,9572,57,136,,0000-2400,1234567,,,49270,,, +1008,CHN,,Dezhou RGD Literary,,Dezhou (SD),37.4575,116.313333,,1,,7973,52,137,,,,,,49234,,, +1008,CHN,zh,CNR 1,,Ruili (YN),24.020556,97.873333,,1,,8020,74,137,,2025-1805,1234567,,,36200577,,, +1008,TWN,,Cheng Sheng BC,,Kaohsiung/Niaosun (KH),22.703225,120.365678,,5,,9532,58,138,,0000-2400,1234567,,,49269,,, +1008,PHL,,DXXX-AM Radyo Ronda,,San Jose/Puerto Gallenero (ocm),12.383333,121.05,,10,,10523,63,139,,,,8,,49273,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Fuyang (AH),32.930944,115.798294,,1,,8346,55,140,,,,,,36200593,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Huaibei (AH),33.956944,116.783444,,1,,8309,54,140,,,,,,36200589,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Suzhou (AH),33.633333,116.983333,,1,,8349,54,140,,,,,,36200574,,, +1008,CHN,,Suizhou RGD News,,Suizhou (HU),31.715,113.344722,,1,,8314,58,140,,,,,,49242,,, +1008,CHN,zh,CNR 1,,Lancang/Pu'er (YN),22.533333,99.933333,,1,,8282,73,140,,2025-1805,1234567,,,36200582,,, +1008,CHN,zh,CNR 1,,Ning'er/YNTS701 (YN),23.083333,101.05,,1,,8307,72,140,,2025-1805,1234567,,,36200578,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Bengbu (AH),32.95,117.383333,,1,,8432,54,141,,,,,,36200597,,, +1008,CHN,zh,CNR 1,,Jianshui (YN),23.616667,102.833333,,1,,8377,70,141,,2025-1805,1234567,,,36200586,,, +1008,PHL,,DWGO-AM,,Olongapo City (zmb),14.816667,120.283333,,5,,10253,62,141,,,,,,49264,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Anqing (AH),30.516667,117.05,,1,,8632,56,142,,,,,,36200599,,, +1008,CHN,,Yueyang RGD Yun Meng zhi Sheng,,Yueyang (HN),29.133333,113.116667,,1,,8529,59,142,,,,,,49245,,, +1008,PHL,,DWBS-AM Radyo Totoo,,Santo Domingo (aby),13.236111,123.777778,,5,,10608,60,142,,2100-1400,1234567,,,49265,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Chizhou (AH),30.65,117.483333,,1,,8644,55,143,,,,,,36200595,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Huangshan (AH),30.15,118.266667,,1,,8733,55,143,,,,,,36200588,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Xuancheng (AH),30.95,118.75,,1,,8688,54,143,,,,,,36200571,,, +1008,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,,,,,36200579,,, +1008,CHN,,Wuxi RGD Story & Drama,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,????-1800,1234567,,,49244,,, +1008,CHN,zh,CNR 1,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,2025-1805,1234567,,,36200584,,, +1008,INS,id,RRI Pro-1,,Gorontalo (GO-grt),0.574489,123.066133,,10,,11733,68,143,,2100-1600,1234567,,,49557,,, +1008,INS,id,RRI Pro-1,,Madiun/Jeruk Gulung (JI-mad),-7.544444,111.57,,10,,11702,83,143,,2155-1658,1234567,0,,49251,,, +1008,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Shaowu/FJTS805 (FJ),27.083333,117.283333,,1,,8955,58,144,,,,,,36200575,,, +1008,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Zhangping/SARFT602 (FJ),25.3,117.416667,,1,,9124,58,144,,,,,,36200007,,, +1008,CHN,,Shenzhen RGD Music FM,,Shenzhen/Shiyan (GD),22.653392,113.895556,,1,,9153,63,144,,,,,,36200008,,, +1008,CHN,,Zhujiang JGD Pearl R,,Jiangmen (GD),22.533333,113.116667,,1,,9117,63,144,,,,,,49237,,, +1008,CHN,,Chenghai RGD,,Chenghai (GD),23.466667,116.766667,,1,,9252,60,145,,,,,,49233,,, +1008,J,,ABC Asahi Hoso,,Kyoto (kns-kyo),34.9825,135.787222,,0.3,,9156,40,149,,0000-2400,1234567,,,49258,,, +1008,INS,id,PM2DRD R.Suara Permangkat,,Permangkat (KB-sam),1.333333,109.25,,1,,10762,79,150,,,,,,49254,,, +1008,INS,id,PM8DBA R Suara Adyafiri,,Watansoppeng (SN-sop),-4.35,119.883333,,1,,11974,74,154,,,,,,48235,,, +1008,AUS,,6GE/6TAB Racing R.,,Geraldton (WA),-28.733333,114.616667,,2,,13700,95,156,,0000-2400,1234567,,,49230,,, +1008,AUS,en,4TAB,,Brisbane/St. Helena Island (QLD),-27.379861,153.235083,,10,,16126,58,157,,0000-2400,1234567,9978,,49228,,, +1008,AUS,,7EX,,Launceston/Abels Hill (TAS),-41.451278,147.215917,,5,,16851,84,163,,0000-2400,1234567,,,49231,,, +1008,NZL,en,1ZD Newstalk ZB,,Tauranga/Paengaroa (BOP),-37.810833,176.412778,,10,112 292,18245,30,164,,0000-2400,1234567,0,,49262,,, +1008,AUS,,2TAB Sky Sports R,,Canberra/Gungahlin (ACT),-35.219583,149.116372,,0.3,,16532,72,174,,,,,,37700071,,, +1010,RUS,,PT,b,Petrozavodsk / Besovets / Dalna (KR),61.895833,34.125,,0.025,,1977,46,93,,,,0,L1020 ,85839,,, +1010,USA,en,WINS,i,New York/Lyndhurst [NJ] (NY),40.803889,-74.106667,,50,,5969,292,100,,,,0,,41772,,, +1010,CAN,en,CFRB,,Toronto/Oakville (ON),43.504722,-79.630278,,50,,6112,298,101,,,,12,,36005,,, +1010,USA,,KXEN,,St. Louis/Mitchell [IL] (D) (MO),38.762778,-90.059722,,50,,7104,300,111,,,,,,39787,,, +1010,CAN,en,CBR,,Calgary (AB),50.938056,-113.961667,,50,,7266,323,113,,,,1,,35794,,, +1010,B,pt,ZYH625 Rdio CBN,,Fortaleza (CE),-3.82565,-38.501183,,50,,7515,230,115,,,,1,,36901696,,, +1010,USA,en,WJXL,,Jacksonville Beach (FL),30.299167,-82.007222,,30,,7296,289,115,,,,,,41781,,, +1010,USA,,WPMH,,Portsmouth (VA),36.822222,-76.443889,,0.449,,6417,290,125,,,,,,42861,,, +1010,USA,en,WHFS,,Seffner (FL),27.990278,-82.251667,,5,90 260,7503,287,125,,,,,,40942,,, +1010,VEN,,YVQF R Venezuela,,Ciudad Bolivar (blv),8.116667,-63.516667,,10,,7932,259,126,,0900-0400,1234567,,,45402,,, +1010,VEN,,YVPC R Aragua,,Cagua (arg),10.157903,-67.440211,,10,,8017,263,127,,0900-0400,1234567,1,,45419,,, +1010,USA,,WCNL,,Newport (NH),43.364444,-72.179722,,0.037,,5664,293,128,,,,125,,42519,,, +1010,USA,en,KBBW,,Waco-Marlin (D) (TX),31.568333,-97.000278,,10,,8121,300,128,,,,,,20012544,,, +1010,USA,en,WKJW,,Black Mountain (NC),35.605278,-82.35,,0.5,,6888,293,129,,,,,,41379,,, +1010,CAN,en,CBLH,,Hornepayne (ON),49.226389,-84.783333,,0.04,,5993,306,131,,,,,,20109140,,, +1010,CLM,es,HJZD R Panzen,,Montera (cor),8.816667,-75.866667,,15,,8708,269,131,,,,9,,37660,,, +1010,USA,,KXEN,,St. Louis/Mitchell [IL] (N) (MO),38.766944,-90.058889,,0.5,,7103,300,131,,,,,,20016201,,, +1010,USA,en,WMIN,,Sauk Rapids (MN),45.605,-94.139167,,0.24,,6780,308,131,,,,,,42329,,, +1010,CAN,en,CBEH,,Terrace Bay (ON),48.788333,-87.098333,,0.04,,6152,307,132,,,,,,20109142,,, +1010,CAN,en,CBLW,,White River (ON),48.588889,-85.285556,,0.04,,6067,306,132,,,,,,20109141,,, +1010,CAN,fr,CBON-6,,Blind River (ON),46.189722,-82.965,,0.04,,6111,302,132,,,,,,20109139,,, +1010,CLM,es,HJOP Oxgeno 1010,,Barranquilla (atl),10.949006,-74.881717,,10,,8456,270,132,,,,989,,37613,,, +1010,PRU,es,OAX4U R Cielo,,Lima (lim),-12.116667,-77.066667,,50,,10629,257,132,,,,985,,40313,,, +1010,USA,,WMOX,,Meridian (MS),32.395,-88.657778,,1,,7545,295,132,,,,,,42373,,, +1010,USA,es,KLAT,,Houston (D) (TX),29.896389,-95.290278,,5,,8164,298,132,,1300-0100,1234567,,,38774,,, +1010,USA,ru,KOOR,,Milwaukie (OR),45.484167,-122.411111,,4.5,,8114,325,132,,1500-0300,1234567,,,39902,,, +1010,CLM,es,HJIX,,Barrancabermeja (sat),7.033333,-73.866667,,10,,8727,267,133,,,,,,37501,,, +1010,USA,es,KLAT,,Houston (N) (TX),29.862222,-95.511667,,3.6,,8180,298,133,,0100-1300,1234567,,,20012529,,, +1010,B,pt,ZYH448 Rdio Bahia AM,,Salvador/Ilha de Itaparica (BA),-12.921853,-38.631039,,5,,8421,225,134,,,,,,36901698,,, +1010,CLM,es,HJCN R Reloj,,Bogot D. C. (bdc),4.583333,-74.066667,,10,,8956,265,134,,,,9,,37365,,, +1010,CLM,es,HJJR Caracol,,Neiva (hui),2.866667,-75.283333,,10,,9189,265,134,,,,1,,37514,,, +1010,USA,,WELS,,Kinston (NC),35.284167,-77.664722,,0.078,,6616,290,134,,,,,,41292,,, +1010,USA,en,KBBW,,Waco-Marlin (N) (TX),31.501944,-96.965,,2.5,,8125,300,134,,,,,,38010,,, +1010,B,pt,ZYH772 Rdio Santelenense,,Santa Helena de Gois (GO),-17.816939,-50.585286,,10,,9516,233,135,,,,,,36901693,,, +1010,USA,,WOLB,i,Baltimore (MD),39.301667,-76.569167,,0.03,,6236,292,135,,,,,,42593,,, +1010,NCG,,YNHG R La Voz del Pinar,,Ocotal (nsg),13.633333,-86.483333,,5,,9010,281,137,,1100-0400,1234567,,,52206,,, +1010,USA,en,WSPC,,Albemarle (NC),35.377778,-80.193889,,0.064,,6770,291,137,,,,,,43049,,, +1010,CLM,es,HJBN LV del Galeras (Todelar),,Pasto (nar),1.216667,-77.283333,,5,,9470,266,138,,,,17,,37352,,, +1010,DOM,,HIJA R Comercial,,Santo Domingo (sdo),18.566667,-69.916667,,0.25,,7463,271,138,,1100-0600,1234567,1,,37261,,, +1010,MEX,es,XEHL-AM Est W,,Guadalajara (jal),20.736878,-103.349058,,5,,9464,298,138,,,,,,44123,,, +1010,USA,,WCST,,Berkeley Springs (WV),39.616667,-78.2175,,0.017,,6316,294,138,,,,,,41090,,, +1010,EQA,,HCNR6,,Ambato (tun),-1.216667,-78.616667,,5,,9775,265,139,,,,,,37044,,, +1010,EQA,,HCRS6,,Guaranda (bol),-1.6,-79,,5,,9835,265,139,,,,,,37112,,, +1010,PNR,es,HOL86 R Nacional,,Isla Coln (bct),9.405556,-82.255833,,3,,9093,275,139,,,,,,52318,,, +1010,USA,en,WUKZ,,Marion (VA),36.856389,-81.505833,,0.035,,6736,293,139,,,,,,42306,,, +1010,B,pt,ZYK507 Rdio Difusora de Lenis Paulist,,Lenis Paulista (SP),-22.597661,-48.812228,,5,,9879,229,140,,,,,,36901689,,, +1010,USA,,KSIR,,Brush (CO),40.313889,-103.591667,,0.28,,7727,310,140,,,,9983,,39363,,, +1010,USA,,WIOI,,New Boston (OH),38.73,-82.952778,,0.022,,6678,296,140,,,,,,41780,,, +1010,USA,en,WTZA,,Atlanta (GA),33.698611,-84.289722,,0.078,,7164,293,140,,,,,,41579,,, +1010,B,pt,ZYJ263 Celinauta AM,,Pato Branco (PR),-26.224167,-52.638333,,5,,10424,230,141,,,,,,36901695,,, +1010,USA,,KTNZ,,Amarillo (TX),35.184167,-101.691111,,0.5,,8074,306,141,,,,,,39521,,, +1010,USA,,WHIN,,Gallatin (TN),36.433333,-86.466667,,0.047,,7077,296,141,,,,,,41640,,, +1010,ARG,,LW2 R Emis. Tartagal,,Tartagal (sa),-22.516667,-63.816667,,5,,10712,241,142,,1000-0300,1234567,,,40261,,, +1010,EQA,,HCGO3,,Santa Rosa (oro),-3.45,-79.966667,,3,,10063,265,142,,,,,,36957,,, +1010,MEX,es,XEPA-AM Punto 10 R,,Puebla (pue),18.982417,-98.261331,,2,,9308,293,142,,,,,,44524,,, +1010,URG,es,CX24 Nuevo Tiempo AM,,Montevideo/Belvedere (mo),-34.845,-56.206667,,10,,11415,228,142,,0900-0400,1234567,,,36809,,, +1010,USA,,WCSI,,Columbus (IN),39.186667,-85.95,,0.018,,6825,298,143,,,,,,41083,,, +1010,USA,,WPCN,,Stevens Point (WI),44.538056,-89.595278,,0.01,,6615,305,143,,,,,,43055,,, +1010,USA,es,KCHJ,,Delano (CA),35.811111,-119.321667,,1,,8913,318,143,,,,9947,,38148,,, +1010,GTM,,R Caribe,,Izabal (izb),15.4,-89.133333,,1,,9033,284,144,,,,,,52131,,, +1010,GTM,,TGXI R Emmanuel,,Nebaj (zcp),14.966667,-89.516667,,1,,9096,284,144,,1100-0200,1234567,,,40541,,, +1010,HND,,HRLP23,,El Progreso (yor),15.4,-87.8,,1,,8944,283,144,,,,,,37786,,, +1010,HND,,HRLT,,Minas de Oro (cmy),14.816667,-87.283333,,1,,8961,282,144,,,,,,37797,,, +1010,HND,,HRSP,,Campamento (ola),14.433333,-86.65,,1,,8952,281,144,,,,,,37845,,, +1010,MEX,es,XEHGO-AM Hidalgo R,,Huejutla de Reyes (hid),21.131672,-98.406622,,1,,9125,294,144,,,,,,44114,,, +1010,MEX,es,XEVK-AM Mega,,Gmez Palacio (dur),25.566625,-103.466997,,1,,9034,301,144,,,,,,34900014,,, +1010,USA,,KCHI,,Chillicothe (MO),39.764167,-93.555833,,0.037,,7224,303,144,,,,,,38147,,, +1010,USA,,KRNI,,Mason City (IA),43.141944,-93.111111,,0.016,,6922,306,144,,,,,,39274,,, +1010,USA,,WCOC,,Dora (AL),33.801111,-87.111667,,0.041,,7332,295,144,,,,,,41054,,, +1010,EQA,,HCRV5,,Cuenca (azu),-2.916667,-79.033333,,1.5,,9953,265,145,,,,,,37121,,, +1010,MEX,es,XEWS-AM Romntica,,Culiacn (sin),24.832222,-107.404722,,1,,9329,303,145,,,,,,45035,,, +1010,USA,,WORM,,Savannah (TN),35.24,-88.241389,,0.027,,7283,297,145,,,,,,42622,,, +1010,USA,en,KIHU,,Tooele (UT),40.720833,-112.041389,,0.194,,8112,316,145,,,,10,,38199,,, +1010,ARG,es,LV16 R Ro Cuarto,,Ro Cuarto (cb),-33.105864,-64.405606,,5,,11696,235,146,,1000-0500,1234567,,,40240,,, +1010,CHL,,CD101 R Chilena Solonoticias,,Temuco (AR),-38.7,-72.566667,,10,,12642,237,146,,1000-0430,1234567,,,35844,,, +1010,MEX,es,XELO-AM La X,,Chihuahua (chi),28.620894,-106.107642,,0.5,,8909,305,146,,,,,,44315,,, +1010,USA,,KIQI,,San Francisco (CA),37.825833,-122.310833,,0.5,,8851,321,146,,,,915,,38630,,, +1010,MEX,es,XEDX-AM Cadena 1010,,Ensenada/Lomas del Paraso (bcn),31.890342,-116.629889,,0.5,,9160,314,147,,,,,,43945,,, +1010,MEX,es,XEFM-AM La Mquina Tropical,,Veracruz (vcz),19.168056,-96.143056,,0.5,,9157,292,147,,,,,,44013,,, +1010,B,pt,ZYJ758 Rdio Bandeirantes,,Imbituba (SC),-28.221111,-48.675556,,1,,10412,226,148,,,,,,36901703,,, +1010,B,pt,ZYL230 Rdio Educadora,,Coronel Fabriciano (MG),-19.527642,-42.614383,,0.5,,9268,226,148,,,,,,36901694,,, +1010,B,pt,ZYL264 Rdio Solar AM,,Juiz de Fora (MG),-21.773128,-43.325161,,0.5,,9524,225,148,,,,,,36901690,,, +1010,MEX,es,XEKD-AM La Mejor,,Ciudad Acua (coa),29.303139,-100.925778,,0.25,,8551,301,148,,,,,,44249,,, +1010,PRU,,OBX9T,,Bagua Grande/Morerilla (ama),-5.744167,-78.453889,,1,,10162,262,148,,,,,,37000079,,, +1010,USA,,KIND,,Independence (KS),37.218611,-95.725,,0.032,,7562,303,148,,,,,,38617,,, +1010,USA,,KXPS,,Thousand Palms (CA),33.843056,-116.4275,,0.4,,8965,315,148,,,,,,39819,,, +1010,PRU,,OBU5T,,Tambobamba (apu),-13.85,-72.136111,,1,,10457,253,149,,,,,,37000098,,, +1010,USA,,KXXT,,Tolleson (AZ),33.445278,-112.206389,,0.25,,8793,312,149,,,,9980,,39832,,, +1010,USA,,WCKW,,Garyville (LA),30.076389,-90.621389,,0.042,,7862,294,149,,,,,,41018,,, +1010,EQA,,HCBC4,,Manta (man),-0.966667,-80.733333,,0.5,,9897,267,150,,,,,,36861,,, +1010,B,pt,ZYJ764 Rdio Jaragua,,Jaragu do Sul (SC),-26.476667,-49.039722,,0.5,,10263,228,151,,,,,,36901692,,, +1010,MEX,es,XEXN-AM R Ures,,Ures (son),29.4272,-110.378361,,0.2,,9070,308,151,,,,,,45058,,, +1010,USA,,KDLA,,De Ridder (LA),30.878611,-93.290278,,0.04,,7958,297,151,,,,,,38276,,, +1010,ARG,,R Oasis,,Victoria (er),-32.616667,-60.166667,,1,,11419,232,152,,,,,,51819,,, +1010,ARG,,R Onda Latina,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51820,,, +1010,B,pt,ZYI421 Transamrica Hits,,Mirassol d'Oeste (MT),-15.66425,-58.105594,,0.25,,9744,240,152,,,,,,36901697,,, +1010,B,pt,ZYK232 Rdio 1010 AM,,Caxias do Sul/Rua Juca Ramos (RS),-29.141389,-51.139167,,0.5,,10623,228,152,,,,,,36901691,,, +1010,B,pt,ZYK556 Rdio Independente AM,,Barretos/Praa Joel Waldo 1 (SP),-20.559283,-48.557944,,0.25,,9670,230,152,,,,,,36901702,,, +1010,B,pt,ZYL325 Rdio Estncia,,Jacutinga (MG),-22.2728,-46.603311,,0.25,,9735,228,152,,,,,,36901699,,, +1010,B,pt,ZYK611 Rdio Dirio,,Martinpolis/Estncia Primavera (SP),-22.135228,-51.221836,,0.25,,9962,231,153,,,,,,36901704,,, +1010,B,,ZYJ807,,Brao do Norte (SC),-28.266667,-49.166667,,0.25,,10441,227,154,,,,,,46216,,, +1010,B,pt,ZYK344 Rdio Missioneira Sete Povos,,So Luz Gonzaga (RS),-28.422222,-54.985833,,0.25,,10755,231,155,,,,,,36901701,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0625-0630,12345..,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0650-0700,12345..,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0711-0800,.....67,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0800-0815,1234567,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1208-1300,12345..,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1230-1300,.....67,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1400-1415,12345..,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0815-1208,12345..,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0815-1230,.....67,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1300-1400,12345..,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1300-2300,.....67,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1415-2300,12345..,9956,,786,,, +1017,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0630-0650,12345..,9956,,786,,, +1017,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0700-0800,12345..,9956,,786,,, +1017,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,2300-0625,1234..7,9956,,786,,, +1017,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,2300-0710,....56.,9956,,786,,, +1017,E,pt,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0710-0711,.....67,9956,,786,,, +1017,E,es,RNE R 5,,Granada/Cllar Vega (AND-GR),37.159833,-3.688111,,10,,1840,209,65,,0000-2400,1234567,9,,785,,, +1017,G,en,Free R 80's,,Shrewsbury (EN-SHP),52.695056,-2.783778,,0.63,,627,280,65,,0000-2400,1234567,9975,,787,,, +1017,I,,Media Veneta R,,Veneto region,45.5,11.75,,1,,832,150,65,,,,,,4000060,,, +1017,GRC,,unid (Blues),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400062,,, +1017,ARS,ar,BSKSA Pilgrim R,,Al-Madinah=Medinah (mdh),24.409678,39.534411,,20,,4158,125,86,,0000-2400,1234567,,,47082,,, +1017,IRN,fa,IRIB R Iran,,Bandar-e Abbas (hrg),27.255167,56.413556,,100,,4957,104,87,,0000-2400,1234567,9903,,10800015,,, +1017,AFG,,R Ghazni,,Ghazni (gha),33.533333,68.333333,,10,,5270,88,100,,0230-0330,1234567,,,46813,,, +1017,AFG,,R Ghazni,,Ghazni (gha),33.533333,68.333333,,10,,5270,88,100,,1130-1530,1234567,,,46813,,, +1017,IND,,AIR North,,Delhi D (DL),28.698556,77.210917,,10,,6250,85,110,,1300-1730,1234567,,,49282,,, +1017,CHN,ko,CNR 8,,Changchun/SARFT523 (JL),44.028944,125.418917,,100,167,7835,42,115,,1000-1100,1234567,,,49279,,, +1017,CHN,ko,China R Int.,,Changchun/SARFT523 (JL),44.028944,125.418917,,100,167,7835,42,115,,1100-1500,1234567,,,49279,,, +1017,CHN,,Qinghai RGD,,Huzhu/Duoshidai (QH),36.877778,101.956944,,10,,7203,62,119,,2200-1605,1234567,,,36201277,,, +1017,IND,,AIR South,,Chennai B=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0000-0400,1234567,9977,,49281,,, +1017,IND,,AIR South,,Chennai B=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0700-1000,1234567,9977,,49281,,, +1017,IND,,AIR South,,Chennai B=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0840-????,1234567,9977,,49281,,, +1017,IND,,AIR South,,Chennai B=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,1130-1740,1234567,9977,,49281,,, +1017,CHN,,Baoding JGD,,Baoding (HB),38.85,115.55,,10,,7809,51,125,,,,,,49278,,, +1017,CHN,,Guangdong Weixing Guangbo,,Shaoguan (GD),24.783333,113.533333,,50,,8941,62,127,,2200-1900,1234567,,,49280,,, +1017,J,,JOLB NHK2,,Fukuoka (kyu-fuk),33.532778,130.445833,,50,,9052,44,127,,2030-1500,1.....7,,,49287,,, +1017,J,,JOLB NHK2,,Fukuoka (kyu-fuk),33.532778,130.445833,,50,,9052,44,127,,2030-1635,.2345..,,,49287,,, +1017,J,,JOLB NHK2,,Fukuoka (kyu-fuk),33.532778,130.445833,,50,,9052,44,127,,2030-1640,.....6.,,,49287,,, +1017,KOR,ko,HLAW MBC,,Andong (gsb),36.6075,128.674444,,10,,8676,44,133,,0000-2400,1234567,,,49288,,, +1017,CHN,,Guangdong Weixing Guangbo,,Jieyang (GD),23.565683,116.401333,,10,,9221,60,134,,,,,,36200183,,, +1017,THA,th,Thor. Or. 05,,Prachuap Khiri Khan (pkk),11.788056,99.808889,,10,,9205,80,134,,????-1700,1234567,,,49296,,, +1017,TWN,,BCC Country Network,,Hsinchu (HC),24.915539,121.011211,,10,,9366,56,135,,0000-2400,1234567,997,,49298,,, +1017,PHL,,DWDW-AM IBC R,,Dagupan City/Torres Bucallon (pgs),16.05,120.333333,,10,,10142,61,137,,,,,,49290,,, +1017,PHL,tl,DWLC-AM Radyo ng Bayan,,Lucena City/Pagbilao (qzn),13.983333,121.7,,10,,10415,62,138,,????-1300,1234567,,,49293,,, +1017,PHL,,DYRP-AM,,Iloilo City/Alalasad (ilo),10.716667,122.566667,,10,,10769,63,140,,,,,,49292,,, +1017,PHL,,DXAM-AM Radyo Rapido,,Davao City/Bugac (dvs),7.033333,125.516667,,10,,11289,62,141,,,,,,49291,,, +1017,PHL,,DXSN-AM Radyo Totoo,,Surigao City (sdn),9.783333,125.483333,,5,,11031,61,143,,,,,,49294,,, +1017,CHN,zh,CNR 1,,Dongtou (ZJ),29.15,121.45,,1,,9001,53,144,,2025-1805,1234567,,,36200570,,, +1017,INS,id,R Angkasa Suara Semesta,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400136,,, +1017,TON,,A3Z R Tonga,,Nuku'alofa (ttp),-21.144722,-175.163056,,10,,16569,3,159,,1900-1100,1234567,11,,49297,,, +1017,AUS,,Vision R,,Bunbury/Waterloo (WA),-33.35,115.7,,1,,14134,99,161,,0000-2400,1234567,,,49275,,, +1017,AUS,,2KY Sky Sports R,,Sydney/Homebush Bay (NSW),-33.838106,151.062653,,5,,16548,68,162,,0000-2400,1234567,1,,49276,,, +1017,AUS,,6WH ABC Kimberley,,Wyndham (WA),-15.493694,128.137111,,0.5,,13507,74,162,,0000-2400,1234567,,,49277,,, +1017,NZL,,R Hauraki,,Christchurch/Marshland (CAN),-43.489747,172.637478,,2.5,,18613,52,171,,,,,,49289,,, +1020,RUS,,DK,b,Glotaevo,55.145833,37.791667,,0.025,,2078,68,94,,,,5,L395 U405 ,ID+6 gap,85840,, +1020,USA,,KDKA,,Pittsburgh/Allison Park (KDKA Drive) (PA),40.559167,-79.953056,,50,,6352,295,104,,,,0,,38274,,, +1020,USA,,WHDD,,Sharon (CT),41.976389,-73.524167,,2.5,,5847,293,112,,,,,,42110,,, +1020,USA,es,KMMQ,,Plattsmouth (D) (NE),41.086667,-95.712778,,50,,7236,306,112,,,,,,39068,,, +1020,TCA,en,Caribbean Christian R,,Grand Turk (gtu),21.510722,-71.133694,,50,,7298,274,113,,,,,,47159,,, +1020,USA,,WIBG,,Ocean City/Palermo (NJ),39.229167,-74.681667,,1.9,,6122,291,115,,,,,,41716,,, +1020,USA,,WRIX,,Homeland Park (SC),34.470556,-82.634167,,10,,6997,292,117,,,,,,42858,,, +1020,ALS,en,KVNT,,Eagle River (AK),61.485278,-149.763889,,10,,7209,348,119,,0000-2400,1234567,,,37992,,, +1020,USA,en,WSBX,,Ochlocknee (GA),30.9,-83.998611,,10,,7375,290,121,,1200-2400,1234567,,,41867,,, +1020,CUB,es,R Trinchera,,Baracoa (gu),20.326642,-74.476442,,10,,7625,276,123,,,,,,31600072,,, +1020,DOM,,HITS R Enriquillo,,Tamayo (brc),18.383333,-71.166667,,10,,7564,272,123,,0900-0400,1234567,,,37309,,, +1020,CUB,es,R Reloj,,Victoria de las Tunas/CTOM2 (lt),20.93105,-76.909467,,10,,7739,278,124,,,,0,,52602,,, +1020,USA,,KCKN,,Roswell (NM),33.464722,-104.499444,,50,,8382,306,124,,,,9982,,38619,,, +1020,VEN,,YVRS R Mundial Margarita,,La Asuncin (nes),11.025,-63.805556,,10,,7696,261,124,,0955-0500,1234567,994,,45449,,, +1020,VEN,,YVTW R Alegria,,Chivacoa (ycy),10.15,-68.9,,25,,8117,265,124,,,,1,,51679,,, +1020,USA,,WPEO,,Peoria (IL),40.698056,-89.525278,,1,,6916,302,126,,,,,,42667,,, +1020,USA,es,KTNQ,,Los Angeles/Avocado Heights (CA),34.033333,-117.983333,,50,,9021,316,127,,,,61,,39519,,, +1020,USA,,WCIL,,Carbondale (IL),37.725278,-89.256944,,1,,7141,299,128,,,,,,41006,,, +1020,USA,es,KMMQ,,Plattsmouth (N) (NE),41.085833,-95.7125,,1.4,,7236,306,128,,,,,,20012608,,, +1020,CUB,es,R Guam,,Baha Honda (pr),22.923986,-83.172664,,5,,7989,284,130,,,,0,,36450,,, +1020,USA,,KJJK,,Fergus Falls (MN),46.245278,-95.979444,,0.37,,6826,310,130,,,,995,,38671,,, +1020,USA,es,KDYK,,Union Gap (D) (WA),46.571389,-120.454167,,4,,7933,325,130,,,,13,,20016055,,, +1020,VEN,es,YVMX R Continente Calendario,,Maracaibo (zul),10.666667,-71.7,,10,,8263,267,130,,0000-2400,1234567,991,,45388,,, +1020,B,pt,ZYJ702 Folha AM,,Boa Vista (RR),2.816667,-60.666667,,5,,8215,253,132,,,,,,36901720,,, +1020,USA,es,WURN,,Kendall (FL),25.626389,-80.521111,,0.98,,7586,284,133,,,,9995,,42846,,, +1020,B,pt,ZYI205 Rdio Difusora de Colatina,,Colatina (ES),-19.531317,-40.651597,,10,,9174,224,134,,,,,,36901724,,, +1020,CLM,es,HJFQ,,Pereira (ris),4.766667,-75.516667,,10,,9038,267,134,,,,,,37441,,, +1020,CLM,es,HJFT R Red,,Ibagu (tol),4.4,-75.216667,,10,,9050,266,134,,,,993,,37444,,, +1020,CLM,es,HJKS,,Villavicencio (met),4.15,-73.666667,,10,,8967,265,134,,,,,,37532,,, +1020,SLV,,YSC,,San Salvador (ssl),13.716667,-89.166667,,10,,9182,283,134,,,,,,45264,,, +1020,PTR,es,WOQI,,Adjuntas (PR),18.151111,-66.713333,,0.28,,7279,268,135,,0900-0200,1234567,,,42616,,, +1020,B,pt,ZYH247 Rdio Jovem Pan,,Rio Largo (AL),-9.483333,-35.85,,1,,7944,224,136,,,,,,36901723,,, +1020,B,pt,ZYH600 Rdio Sociedade Educadora Cariri,,Crato (CE),-7.247811,-39.381211,,1,,7897,229,136,,,,,,36901726,,, +1020,CLM,es,HJDQ,,Medelln (ant),6.283333,-75.566667,,5,,8909,268,136,,,,,,37397,,, +1020,PNR,es,R Ancon,,Villalobos (pnm),9.084478,-79.440661,,5,,8929,272,136,,1000-0400,1234567,,,52319,,, +1020,EQA,,HCEW2,,Guayaquil (gua),-2.2,-79.916667,,10,,9950,266,137,,,,,,36926,,, +1020,EQA,,HCGO3,,Santa Rosa (oro),-3.45,-79.95,,10,,10062,265,137,,,,,,36958,,, +1020,B,pt,ZYJ244 Rdio Colombo do Paran,,Colombo (PR),-25.403611,-49.193889,,10,,10168,228,138,,,,,,36901718,,, +1020,B,pt,ZYJ484 Rdio Cano Nova,,Campos dos Goytacazes (RJ),-21.751678,-41.283975,,5,,9424,224,138,,,,,,36901709,,, +1020,BOL,,CP4 R Illimani,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,0930-0300,1234567,,,36696,,, +1020,EQA,,HCRS6,,Guaranda (bol),-1.6,-78.983333,,5,,9834,265,139,,,,,,37113,,, +1020,HTI,,4VJH,,Ptionville (oue),18.5,-72.266667,,0.25,,7629,273,139,,,,,,35646,,, +1020,USA,es,KWIQ,,Moses Lake North (WA),47.163333,-119.360833,,0.44,,7834,324,139,,,,999,,39715,,, +1020,B,pt,ZYH664 Rdio Macambira,,Ipueiras (CE),-4.558761,-40.730236,,0.25,,7704,231,140,,,,,,36901713,,, +1020,B,pt,ZYI686 Rdio Cenecista,,Picu (PB),-6.507672,-36.359578,,0.25,,7672,226,140,,,,,,36901710,,, +1020,B,pt,ZYK515 Rdio Cultura,,Assis (SP),-22.677722,-50.412522,,5,,9970,231,140,,,,,,36901715,,, +1020,USA,,KOKP,,Perry (OK),36.259722,-97.216944,,0.25,,7729,303,140,,,,,,39078,,, +1020,USA,es,KDYK,,Union Gap (N) (WA),46.570556,-120.454167,,0.4,,7933,325,140,,,,13,,39880,,, +1020,CTR,,TITIC R Mil Veinte,,San Jos (sjs),9.933333,-84.066667,,2,,9170,277,141,,1100-0500,1234567,,,52148,,, +1020,MEX,es,XEKH-AM R Centro,,Quertaro (que),20.590183,-100.426397,,2.5,,9299,296,141,,,,,,44255,,, +1020,B,pt,ZYH423 Porto AM,,Santana (AP),-0.021364,-51.1669,,0.25,,7872,243,142,,,,,,36901712,,, +1020,B,pt,ZYK202 Caiara AM,,Canoas/Ilha das Flores (RS),-29.99,-51.262778,,5,,10710,227,142,,,,,,36901722,,, +1020,PRG,es,ZP14 R andut,,Asuncin/San Lorenzo (asu),-25.318639,-57.488972,,5,,10603,235,142,,0000-2400,1234567,941,,45510,,, +1020,CLM,es,HJDZ R Primavera,,Bucaramanga (sat),7.066667,-73.116667,,1,,8673,266,143,,,,,,37403,,, +1020,EQA,,HCSE4,,Chone (man),-0.65,-80.083333,,2,,9825,267,143,,,,,,37132,,, +1020,HND,,HRUW,,La Ceiba (atl),15.8,-86.816667,,1,,8844,282,143,,,,,,37862,,, +1020,EQA,,HCRV5,,Cuenca (azu),-2.883333,-79,,1.5,,9948,265,145,,,,,,37122,,, +1020,GTM,,TGCM R Frontera,,Pajapita (sms),14.716667,-92.016667,,1,,9283,286,145,,1100-0400,1234567,,,40486,,, +1020,MEX,es,XEOU-AM Sensacin Estreo,,Huajuapan de Len (oax),17.806944,-97.786111,,1,,9383,292,145,,,,,,44517,,, +1020,MEX,es,XEPIC-AM R Hits,,Tepic (nay),21.509147,-104.881475,,1,,9485,300,145,,,,,,44550,,, +1020,ARG,es,LRJ214,,San Juan (sj),-31.557622,-68.525661,,5,,11796,239,146,,,,,,33000073,,, +1020,B,pt,ZYJ680 Rdio Educadora,,Rolim de Moura (RO),-11.566667,-61.783333,,1,,9591,246,146,,,,,,36901716,,, +1020,EQA,,HCCE1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36877,,, +1020,MEX,es,XEVE-AM W R,,Colima (col),19.241667,-103.730556,,1,,9622,297,146,,,,,,44957,,, +1020,MEX,es,XEWO-AM,,Chetumal (qui),18.531111,-88.280833,,0.5,,8704,285,146,,,,,,45030,,, +1020,URG,,CW102 R Libertadores,,Salto (sa),-31.366667,-57.95,,3,,11186,232,146,,0900-0300,1234567,,,36741,,, +1020,USA,en,KNNP684,,Louisville (KY),38.25,-85.766667,,0.01,,6888,297,146,,,,,,20010604,,, +1020,ARG,es,LT10 R.Universidad Nacional del Litoral,,Santa F (sf),-31.633333,-60.716667,,3,,11360,233,147,,0800-0500,1234567,,,40162,,, +1020,MEX,es,XEPR-AM Los 40 Principales,,Poza Rica (vcz),20.514431,-97.397428,,0.5,,9117,293,147,,,,,,44574,,, +1020,B,pt,ZYJ359 Rdifuso Campo Aberto,,Laranjeiras do Sul (PR),-25.37,-52.385833,,1,,10330,231,148,,,,,,36901714,,, +1020,CHL,,CC102 R Amiga,,Talca (ML),-35.416667,-71.666667,,5,,12312,238,148,,1000-0500,1234567,,,51952,,, +1020,PRU,es,R Bambamarca,,Hualgayoc (caj),-6.766667,-78.616667,,1,,10263,262,148,,,,99,,37000060,,, +1020,B,pt,ZYK531 Educadora 1020 AM,,Limeira/Praa Dr. Milton Silveira (SP),-22.560606,-47.420083,,0.5,,9804,228,149,,,,,,36901707,,, +1020,PRU,,OBX3U,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000083,,, +1020,B,pt,ZYH781 Rdio Maranata,,Firminpolis (GO),-16.5714,-50.307767,,0.25,,9383,234,151,,,,,,36901725,,, +1020,B,pt,ZYL224 Rdio Congonhas,,Congonhas (MG),-20.509022,-43.861728,,0.25,,9426,226,151,,,,,,36901719,,, +1020,B,pt,ZYL260 Rdio Globo,,Uberlndia (MG),-18.938908,-48.239439,,0.25,,9498,231,151,,,,,,36901717,,, +1020,B,pt,ZYK513 Rdio Cano Nova,,Cachoeira Paulista/Santa Cruz (SP),-22.647125,-45.07975,,0.25,,9695,226,152,,,,,,36901721,,, +1020,B,pt,ZYK600 Rdio Cultura de Jales,,Jales (SP),-20.249989,-50.54315,,0.25,,9746,232,152,,,,,,36901708,,, +1020,B,pt,ZYI381 Independente AM,,Aquidauana (MS),-20.468697,-55.788194,,0.25,,10056,236,153,,,,,,36901711,,, +1020,B,pt,ZYJ307 Rdio Independncia,,Medianeira (PR),-25.283333,-54.066667,,0.25,,10412,232,154,,,,,,36901705,,, +1020,B,pt,ZYJ805 Rdio Continental,,Coronel Freitas (SC),-26.898889,-52.694722,,0.25,,10491,230,155,,,,,,36901706,,, +1020,URG,,CV102,,Acegua (cl),-31.866667,-54.133333,,0.25,,11032,229,156,,,,,,36722,,, +1020,ARG,es,LRA58 R Nacional,,Ro Mayo (ch),-45.683333,-70.266667,,1,,13094,230,157,,1100-2300,1234567,,,39961,,, +1024,INS,id,RPDT2 Belu,,Atambua (NT-bel),-9.1,124.9,,0.25,,12728,72,162,,,,,,35400103,,, +1025,RUS,,US,b,Muravlyanka,53.770833,38.541667,,0.025,,2143,72,94,,,,,,IDx2,85843,, +1025,RUS,,KS,b,Krasny (RO),47.1875,40.375,,0.025,,2482,89,98,,,,,L1014 ,85842,,, +1026,E,es,SER,,Salamanca/Ctra. Bjar (CAL-SA),40.932917,-5.667006,,10,,1544,221,62,,0000-2400,1234567,0,,808,,, +1026,E,es,SER,,Oviedo/El Naranco (AST-O),43.385172,-5.862508,,5,,1332,228,63,,0000-2400,1234567,,,807,,, +1026,E,es,SER,,Tarragona/Reus (CAT-T),41.162778,1.077222,,5,,1283,200,63,,0000-2400,1234567,0,,805,,, +1026,G,en,Downtown R,,Belfast/Knockbracken (NI-ANT),54.537222,-5.882611,,1.7,,859,293,63,,0000-2400,1234567,9983,,811,,, +1026,G,en,BBC R 5 Live,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.5,,426,274,64,,0000-0300,12345..,0,,809,,, +1026,G,en,BBC R 5 Live,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.5,,426,274,64,,0000-0500,.....67,0,,809,,, +1026,G,en,BBC R 5 Live,,Trinity (JER),49.246889,-2.096944,,1,,678,245,64,,0100-0600,1234567,,,810,,, +1026,G,en,BBC R Cambridgeshire,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.5,,426,274,64,,0300-2400,12345..,0,,809,,, +1026,G,en,BBC R Cambridgeshire,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.5,,426,274,64,,0500-2400,.....67,0,,809,,, +1026,G,en,BBC R Jersey,,Trinity (JER),49.246889,-2.096944,,1,,678,245,64,,0600-0100,1234567,,,810,,, +1026,E,es,SER,,Vigo/Sampayo (GAL-PO),42.244881,-8.687319,,5,,1577,232,66,,0000-2400,1234567,,,806,,, +1026,E,es,SER,,Jan (AND-J),37.799561,-3.715225,,5,,1776,210,68,,0000-2400,1234567,,,803,,, +1026,IRN,,IRIB R Tabriz,,Azarshahr (eaz),37.874433,45.831817,,200,,3424,102,68,,0230-0630,1234567,9931,,812,,, +1026,IRN,,IRIB R Tabriz,,Azarshahr (eaz),37.874433,45.831817,,200,,3424,102,68,,0630-1630,1234567,9931,,812,,, +1026,IRN,,IRIB R Tabriz,,Azarshahr (eaz),37.874433,45.831817,,200,,3424,102,68,,1630-2030,1234567,9931,,812,,, +1026,IRN,fa,IRIB R Iran,,Azarshahr (eaz),37.874433,45.831817,,200,,3424,102,68,,2030-0230,1234567,9931,,812,,, +1026,ALG,ar,R Ouargla,,Hassi Messaoud (30),31.7275,6.063333,,10,,2267,181,70,,0800-1600,1234567,,,794,,, +1026,E,es,SER,,Jerez de la Frontera (AND-CA),36.668653,-6.109933,,5,,1978,215,70,,0000-2400,1234567,,,804,,, +1026,MRC,,SNRT B,,Rabat/Temara (rsz),33.89815,-6.923222,,1,,2289,213,80,,0600-0100,1234567,,,816,,, +1026,NIG,,JBC R Jigawa,,Dutse (jgw),11.758606,9.390069,,25,,4495,175,88,,0500-2205,1234567,,,2455,,, +1026,SDN,,SRTC Sudan Nat. R,,Ad-Damazin (bnl),11.799761,34.353278,,5,,5134,141,101,,,,,,47145,,, +1026,CHN,zh,Hotan RGD/Xinjiang RGD,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,10,,5777,76,105,,0730-1030,1234567,,,36200568,,, +1026,CHN,zh,Hotan RGD/Xinjiang RGD,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,10,,5777,76,105,,1300-1600,1234567,,,36200568,,, +1026,CHN,zh,Hotan RGD/Xinjiang RGD,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,10,,5777,76,105,,1800-0200,1234567,,,36200568,,, +1026,IND,,AIR North,,Allahabad A (UP),25.428333,81.938611,,20,,6836,84,112,,0023-0435,123456,2,,49310,,, +1026,IND,,AIR North,,Allahabad A (UP),25.428333,81.938611,,20,,6836,84,112,,0023-1000,......7,2,,49310,,, +1026,IND,,AIR North,,Allahabad A (UP),25.428333,81.938611,,20,,6836,84,112,,0628-1000,123456,2,,49310,,, +1026,IND,,AIR North,,Allahabad A (UP),25.428333,81.938611,,20,,6836,84,112,,1128-1742,1234567,2,,49310,,, +1026,CHN,,Guizhou RGD Xinwen Guangbo,,Xiuwen/GZTS645 (GZ),26.86685,106.725539,,200,,8341,65,117,,2150-1605,1234567,,,49305,,, +1026,CHN,zh,Beijing Public Service R,,Beijing/BJTS804 (BJ),39.949697,116.496011,,50,,7763,50,118,,2150-1600,.2.....,,,49304,,, +1026,CHN,zh,Beijing Public Service R,,Beijing/BJTS804 (BJ),39.949697,116.496011,,50,,7763,50,118,,2150-1700,1.34567,,,49304,,, +1026,MOZ,pt,Emisso Provincial de Manica,,Chimoio (mca),-19.073094,33.383856,,50,,8336,154,123,,0250-2200,1234567,,,2454,,, +1026,THA,th,Sor. Wor. Thor. (R Thailand),,Phitsanulok (psl),16.831944,100.216667,,50,,8793,77,126,,2200-1700,1234567,,,49362,,, +1026,CHN,,Guizhou RGD Xinwen Guangbo,,Anshun/GZTS859 (GZ),26.25,105.916667,,10,,8345,66,130,,,,,,36200569,,, +1026,CHN,,Guizhou RGD Xinwen Guangbo,,Xingyi/GZTS718 (GZ),25.05,104.983333,,10,,8390,68,131,,,,,,36200566,,, +1026,CHN,,Yingkou RGD News,,Yingkou/LNTS314 (LN),40.5125,122.205,,2,,8003,46,134,,,,,,49308,,, +1026,PHL,tl,DZAR-AM Sonshine R,,Malabon/Dampalit (ncr),14.692906,120.931981,,25,,10303,62,134,,0000-2400,1234567,0,,49359,,, +1026,THA,th,Sor. Wor. Thor. (R Thailand),,Betong/15 Samoson Rd (yla),5.7625,101.068056,,10,,9819,83,136,,,,,,49361,,, +1026,CHN,,Guizhou RGD Xinwen Guangbo,,Jianhe (GZ),26.65,108.75,,1,,8485,64,142,,,,,,36200567,,, +1026,CHN,,Yancheng RGD News,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,2155-1500,1234567,,,49307,,, +1026,CHN,,Yizheng RGD,,Yizheng (JS),32.266667,119.183333,,1,,8592,53,142,,,,,,49309,,, +1026,KOR,,HLCG KBS 1 R,,Hwacheon (gan),38.095556,127.704722,,1,,8491,44,142,,0000-2400,1234567,,,49352,,, +1026,KOR,ko,HLKW KBS 1 R,,Geochang (jeb),35.671111,127.910278,,1,,8728,45,143,,0000-2400,1234567,,,49353,,, +1026,PHL,tl,DXMC-AM Bombo Radyo,,Koronadal=Marbel (sco),6.5,124.85,,5,,11299,63,144,,,,,,49358,,, +1026,TWN,,Tien Sheng Kuangpo Tientai,,Yuanli/Kechuangli (ML),24.439722,120.659444,,1,,9389,57,145,,,,,,49363,,, +1026,INS,id,RRI Pro-1,,Serui (PA-yap),-1.883333,136.233333,,5,,12762,58,149,,2000-1500,1234567,,,49321,,, +1026,INS,id,PM7CKB R.Suara Enim Jaya,,Muara Enim (SS-mua),-3.65,103.8,,1,,10832,86,150,,,,,,49319,,, +1026,J,,NHK R 1,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,0000-2400,1234567,,,49342,,, +1026,PHL,,DXMI-AM,,Iligan City (ldn),8.233333,124.25,,1,,11101,63,151,,,,,,49357,,, +1026,INS,id,PM4BM R BSA,,Brebes (JT-bre),-7.116667,110.683333,,1,,11604,83,152,,,,,,49314,,, +1026,J,,NHK R 1,,Engaru (hok),44.05,143.516667,,0.1,,8560,30,152,,0000-2400,1234567,,,49325,,, +1026,J,,NHK R 1,,Futatsui (toh-aki),40.2,140.283333,,0.1,,8827,34,153,,0000-2400,1234567,,,49327,,, +1026,J,,NHK R 1,,Honjo (toh-aki),39.366667,140.066667,,0.1,,8901,35,153,,0000-2400,1234567,,,49333,,, +1026,J,,NHK R 1,,Miyako (toh-iwa),39.633333,141.966667,,0.1,,8947,33,153,,0000-2400,1234567,,,49341,,, +1026,J,,BSN Niigata Hoso,,Koide (chu-nii),37.266667,138.983333,,0.1,,9066,36,154,,0000-2400,1234567,,,49335,,, +1026,J,,JOUQ NHK1,,Shimonoseki (chu-yam),33.966667,130.933333,,0.1,,9034,44,154,,0000-2400,1234567,,,49344,,, +1026,J,,NHK R 1,,Akune (kyu-kag),32.023997,130.202778,,0.1,,9184,45,154,,0000-2400,1234567,,,49324,,, +1026,J,,NHK R 1,,Fukuchiyama (kns-kyo),35.3,135.116667,,0.1,,9096,40,154,,0000-2400,1234567,,,49326,,, +1026,J,,NHK R 1,,Hamada (chg-shi),34.9,132.083333,,0.1,,8998,42,154,,0000-2400,1234567,,,49329,,, +1026,J,,NHK R 1,,Haramachi (toh-fuk),37.615461,140.932761,,0.1,,9109,35,154,,0000-2400,1234567,,,49332,,, +1026,J,,NHK R 1,,Kobayashi (kyu-miy),32,130.966667,,0.1,,9223,45,154,,0000-2400,1234567,,,49334,,, +1026,J,,NHK R 1,,Komoro (chu-nag),36.316667,138.433333,,0.1,,9138,37,154,,0000-2400,1234567,,,49336,,, +1026,J,,NHK R 1,,Kurayoshi (chg-tot),35.416667,133.8,,0.1,,9026,41,154,,0000-2400,1234567,,,49337,,, +1026,J,,NHK R 1,,Kure (chg-hir),34.25,132.6,,0.1,,9084,42,154,,0000-2400,1234567,,,49338,,, +1026,J,,NHK R 1,,Minamiaso (kyu-kum),32.815661,131.099094,,0.1,,9152,44,154,,,,,,49340,,, +1026,J,,NHK R 1,,Otoyo (shi-koc),33.733333,133.683333,,0.1,,9184,42,154,,,,,,49343,,, +1026,J,,NHK R 1,,Shinshiro (chu-aic),34.9,137.516667,,0.1,,9239,38,154,,0000-2400,1234567,,,49346,,, +1026,J,,NHK R 1,,Tago,34.5,134,,0.1,,9124,41,154,,0000-2400,1234567,,,49347,,, +1026,J,,NHK R 1,,Tsuruga (chu-fuk),35.6,136.066667,,0.1,,9108,39,154,,0000-2400,1234567,,,49348,,, +1026,J,,NHK R 1,,Yamanaka (chu-ish),36.25,136.366667,,0.1,,9057,39,154,,0000-2400,1234567,,,49350,,, +1026,J,,NHK R 1,,Yonezawa (toh-yam),37.9,140.1,,0.1,,9048,35,154,,0000-2400,1234567,,,49351,,, +1026,J,ja,NHK R 1,,Fuchu (chg-hir),34.566667,133.233333,,0.1,,9083,42,154,,,,,,31400070,,, +1026,J,ja,NHK R 1,,Hakuba (chu-nag),36.7,137.866667,,0.1,,9076,37,154,,,,,,31400073,,, +1026,J,ja,NHK R 1,,Hita (kyu-oit),33.333333,130.916667,,0.1,,9093,44,154,,,,,,31400068,,, +1026,J,ja,NHK R 1,,Setouchi,34.5,134,,0.1,,9124,41,154,,,,,,31400067,,, +1026,J,ja,NHK R 1,,Sukumo (shi-koc),32.933333,132.716667,,0.1,,9216,43,154,,,,,,31400069,,, +1026,J,ja,NHK R 1,,Wakasa (chg-tot),35.336111,134.403333,,0.1,,9061,41,154,,0000-2400,1234567,,,49349,,, +1026,AUS,,6NW Spirit R,,Port Hedland/Wedgefield (WA),-20.376056,118.577625,,2,,13285,86,155,,0000-2400,1234567,,,49302,,, +1026,J,,NHK R 1,,Gotenba (chu-shi),35.3,138.933333,,0.1,,9259,37,155,,0000-2400,1234567,,,49328,,, +1026,J,,NHK R 1,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,0000-2400,1234567,,,49339,,, +1026,J,,NHK R 1,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,0000-2400,1234567,,,49345,,, +1026,J,ja,NHK R 1,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,,,,,31400071,,, +1026,J,ja,NHK R 1,,Susami (kns-wak),33.55,135.5,,0.1,,9283,41,155,,,,,,31400072,,, +1026,AUS,,4MK,,Mackay/Mount Bassett (QLD),-21.120861,149.209722,,5,,15322,57,158,,0000-2400,1234567,94,,49300,,, +1026,AUS,en,3PB ABC Newsr,,Melbourne/Lower Plenty (VIC),-37.742,145.113172,,10,,16456,80,158,,0000-2400,1234567,999,,49301,,, +1026,INS,id,R Diva,,Denpasar/Abian Timbul (BA-den),-8.689167,115.191944,,0.25,,12047,80,160,,2300-1600,1234567,,,35400005,,, +1026,NZL,en,1ZK Newstalk ZB,,Kaitaia/Waipapakauri (NTL),-35.035556,173.246389,,2,,17848,34,170,,,,,,49355,,, +1026,NZL,en,1ZN Newstalk ZB,,Whangarei/Otaika (NTL),-35.780556,174.319444,,2,,17964,32,170,,,,,,49356,,, +1026,NZL,,Word Bible R,,Invercargill/Tussock Creek (STL),-46.2475,168.468333,,1,,18562,70,175,,0000-2400,1234567,,,49354,,, +1029,INS,id,RPKD Ciamis,,Ciamis (JB-cms),-7.333333,108.35,,0.5,,11465,85,155,,,,,,35400105,,, +1030,UKR,,NI,b,Mykolaivka (MY),47.020833,31.875,,0.025,,1910,97,92,,,,,L1020 ,ID+2.5 gap,85846,, +1030,UKR,,NK,b,Mykolaivka (MY),47.104167,31.958333,,0.025,,1912,97,92,,,,,L1048 U1050 15.0s,IDx2,85847,, +1030,RUS,,N,b,Nizhny Novgorod / Strigino (NN),56.1875,43.791667,,0.025,,2445,64,97,,,,,,85845,,, +1030,RUS,,S,b,Nizhny Novgorod / Strigino (NN),56.270833,43.791667,,0.025,,2444,64,97,,,,,,85848,,, +1030,USA,en,WBZ,i,Boston/Nantasket Beach (MA),42.278889,-70.876111,,50,,5658,292,97,,,,9996,,40935,,, +1030,USA,es,WWGB,,Indian Head (MD),38.564722,-76.816944,,50,,6308,292,103,,1200-2400,1234567,,,43377,,, +1030,USA,en,WDRU,,Creedmoor (NC),36.178611,-78.758333,,50,,6616,291,106,,1200-2400,1234567,,,20016037,,, +1030,USA,,WBGS,,Point Pleasant (WV),38.811667,-82.099722,,10,,6619,295,113,,,,,,40845,,, +1030,USA,,WUFL,,Sterling Heights (MI),42.604722,-82.911111,,5,,6376,299,114,,,,0,,43255,,, +1030,USA,es,WNOW,,Mint Hill (NC),35.140556,-80.600278,,9.4,,6815,291,115,,,,,,42496,,, +1030,USA,,KTWO,,Casper (WY),42.842778,-106.218611,,50,,7638,313,116,,,,2,,39552,,, +1030,PTR,,WOSO,,San Juan (PR),18.368611,-66.254722,,10,,7229,268,119,,0000-2400,1234567,,,42625,,, +1030,KAZ,,MB,b,Taraz=Jambyl=Zhambyl (zha),42.895833,71.291667,,0.025,,4811,75,121,,,,,L1011 ,85844,,, +1030,HTI,,Radyo Ginen,,Cap-Hatien/La Petite Anse (nrd),19.716667,-72.166667,,10,,7519,274,122,,,,,,52115,,, +1030,DOM,,HIDL R Novedades,,Santiago de los Caballeros (sto),19.45,-70.7,,5,,7441,272,124,,0000-2400,1234567,,,37240,,, +1030,USA,,WGFC,,Floyd (VA),36.925833,-80.276111,,1,,6653,293,124,,,,,,41500,,, +1030,USA,,WCTS,,Maplewood (MN),44.866944,-92.900556,,1,,6772,307,125,,,,,,41099,,, +1030,USA,en,KCTA,,Corpus Christi (TX),27.933056,-97.259722,,50,,8454,298,125,,1300-0100,1234567,,,38213,,, +1030,B,pt,ZYJ467 Rdio Capital,,Rio de Janeiro/Sitio Boa Vista (RJ),-22.778611,-43.015556,,100,,9607,225,126,,,,1,,36901734,,, +1030,VEN,,YVTD R Valles del Tuy,,Ocumare del Tuy (mir),10.116667,-66.766667,,10,,7975,263,127,,0930-0400,1234567,,,45466,,, +1030,B,pt,ZYI777 Rdio Olinda Pernanbuco,,Olinda (PE),-7.994289,-34.907861,,5,,7750,224,128,,,,991,,36901728,,, +1030,USA,es,WONQ,,Oviedo (FL),28.675,-81.166667,,1.7,,7376,287,128,,,,9999,,42608,,, +1030,VEN,,YVQY R Onda 1030,,Guanare (ptg),9.066667,-69.716667,,10,,8267,265,130,,0900-0600,1234567,,,45438,,, +1030,CLM,es,HJRF,,Aguachica (ces),8.316667,-73.633333,,15,,8599,267,131,,,,,,35901489,,, +1030,USA,,WGSF,,Memphis (TN),35.183056,-89.938056,,1,,7391,298,131,,,,9930,,41564,,, +1030,CLM,es,HJDJ La Voz de los Libertadores,,Duitama (boy),5.816667,-73.066667,,10,,8779,265,133,,,,,,37390,,, +1030,CLM,es,HJER RCN Antenna Dos,,Cali (val),3.466667,-76.5,,15,,9219,267,133,,,,998,,37420,,, +1030,USA,,KCWJ,,Blue Springs (MO),39.045556,-94.235,,0.5,,7323,303,133,,,,,,38227,,, +1030,USA,,KFAY,,Farmington (AR),36.109444,-94.183056,,1,,7566,301,133,,,,,,38376,,, +1030,USA,pl,WNVR,,Vernon Hills (IL),42.252778,-88.395833,,0.12,,6726,302,133,,,,,,42531,,, +1030,B,pt,ZYJ612 Vale do Apodi AM,,Apodi (RN),-5.665556,-37.791667,,1,,7660,228,134,,,,,,36901740,,, +1030,GTM,,TGUX R Panamericana,,Ciudad de Guatemala (gut),14.616667,-90.533333,,10,,9194,284,134,,1145-0500,1234567,,,40550,,, +1030,USA,,KBUF,,Holcomb (KS),38.000278,-100.898333,,1.2,,7784,307,134,,,,,,38106,,, +1030,USA,,WQSE,,White Bluff (TN),36.134167,-87.216111,,0.25,,7147,297,134,,,,,,42792,,, +1030,MEX,,XENK-AM,,Felipe Carrillo Puerto (qui),19.55,-88.033333,,5,,8599,286,135,,,,,,43867,,, +1030,MEX,es,XEPAV-AM La Picosita,,Tampico (tam),22.234958,-97.861058,,5,,8993,295,137,,,,,,34900016,,, +1030,MEX,es,XESDD-AM La Tremenda,,Puerto Nuevo (bcn),32.249539,-116.946836,,5,,9141,315,137,,1400-0800,1234567,5,,44736,,, +1030,USA,en,KMAS,,Shelton (WA),47.221389,-123.079444,,1,,7973,326,137,,,,9987,,38880,,, +1030,MEX,es,XEQR-AM R Centro,,Mxico D.F/Granjas Mxico (dif),19.397756,-99.101222,,5,,9323,294,138,,0000-2400,1234567,9986,,44630,,, +1030,EQA,,HCAF7,,Puyo (pas),-1.466667,-77.866667,,3,,9746,265,141,,,,,,36840,,, +1030,EQA,,HCFO7,,Coca (nap),-0.466667,-77,,3,,9599,265,141,,,,,,36941,,, +1030,NCG,,YNLL R Masaya,,Masaya (msy),11.933333,-86.066667,,2,,9131,279,141,,,,,,45196,,, +1030,B,pt,ZYH475 Rdio Bahiana de Itaberaba,,Itaberaba (BA),-12.511083,-40.303539,,1,,8463,227,142,,,,,,36901732,,, +1030,MEX,es,XELJ-AM Ke Buena,,Lagos de Moreno (jal),21.341731,-101.944861,,2,,9324,297,142,,,,,,44309,,, +1030,USA,,KDUN,,Reedsport (OR),43.738056,-124.075,,0.63,,8348,325,142,,,,9980,,38296,,, +1030,CLM,es,HJGX,,Lorica (cor),9.216667,-75.816667,,1,,8670,270,143,,,,,,37464,,, +1030,MEX,es,XEYC-AM R Frmula,,Ciudad Jurez (chi),31.7,-106.35,,1,,8643,307,143,,,,,,34900010,,, +1030,USA,en,KVOI,,Cortaro (AZ),32.3475,-111.071944,,1,,8836,310,143,,,,,,39650,,, +1030,HND,,HRRH3,,Ocotepeque (oco),14.416667,-89.15,,1,,9120,283,144,,,,,,37838,,, +1030,HND,,HRUP3,,Tegucigalpa (fmz),14.5,-87.166667,,1,,8981,282,144,,,,,,37859,,, +1030,MEX,es,XEIE-AM Stereo 1030,,Matehuala (slp),23.618422,-100.641433,,1,,9041,298,144,,,,,,44161,,, +1030,ARG,es,LS10 R del Plata,,Buenos Aires/San Martn (df),-34.554097,-58.622236,,5,,11513,230,145,,0000-2400,1234567,2,,40157,,, +1030,B,pt,ZYH746 Rdio Imprensa,,Anpolis (GO),-16.282253,-48.996306,,1,,9283,233,145,,,,,,36901733,,, +1030,B,pt,ZYJ683 Rdio Rondnia AM,,Ariquemes (RO),-9.916111,-63.029722,,1,,9519,248,145,,,,,,36901727,,, +1030,CHL,,CC103 R Chilena Solonoticias,,Concepcin (BI),-36.866667,-73.066667,,10,,12517,238,145,,1100-0430,1234567,,,35803,,, +1030,MEX,es,XEMPM-AM La Pesada,,San Blas (sin),25.9233,-108.935786,,1,,9315,305,145,,,,,,44402,,, +1030,USA,,KJDJ,,San Luis Obispo (CA),35.299444,-120.673333,,0.7,,9024,319,145,,,,9979,,38664,,, +1030,MEX,es,XEVP-AM W R,,Acapulco/Vista Hermosa (gue),16.880653,-99.856978,,1,,9596,293,146,,,,,,44983,,, +1030,EQA,es,HCRF2 R Ecuantena,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,,,998,,37108,,, +1030,B,pt,ZYH791 Rdio Siqueira Campos AM,,Colinas do Tocantins (TO),-8.059167,-48.475,,0.25,,8469,237,148,,,,,,36901736,,, +1030,BOL,,R Totora,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,,,,,36500001,,, +1030,PRU,es,R Los Andes,,Huamachuco (lal),-7.8,-78.066667,,1,,10317,261,148,,,,97,,37000061,,, +1030,MEX,es,XEBCC-AM Los 40 Principales,,Ciudad del Carmen (cam),18.636389,-91.831667,,0.25,,8927,288,149,,1200-0500,1234567,,,43765,,, +1030,B,pt,ZYK224 Rdio Cultura AM,,Canguu (RS),-31.384444,-52.673611,,1,,10913,228,150,,,,,,36901739,,, +1030,MEX,es,XEVFS-AM,,Las Margaritas (cps),16.301267,-91.979131,,0.25,,9141,287,150,,,,,,44961,,, +1030,B,pt,ZYJ771 Rdio Princesa,,Lages (SC),-27.774167,-50.302778,,0.5,,10451,228,151,,,,,,36901738,,, +1030,B,pt,ZYK253 Rdio Reprter,,Iju (RS),-28.367778,-53.897222,,0.5,,10692,230,152,,,,,,36901731,,, +1030,B,pt,ZYK525 Rdio Difusora de Franca,,Franca (SP),-20.495792,-47.4012,,0.25,,9604,229,152,,,,,,36901743,,, +1030,B,pt,ZYK606 Rdio Clube de Lins,,Lins (SP),-21.661111,-49.756389,,0.25,,9839,231,152,,,,,,36901742,,, +1030,EQA,,HCTO5,,Cajabamba (chi),-1.7,-78.716667,,0.25,,9824,265,152,,,,,,37141,,, +1030,MEX,es,XETEKA-AM R Teka,,Juchitn de Zaragoza (oax),16.444294,-95.025328,,0.2,,9327,289,152,,,,,,43707,,, +1030,B,pt,ZYJ271 Rdio Atalaia,,Londrina (PR),-23.233333,-51.141667,,0.25,,10062,231,153,,,,,,36901735,,, +1030,B,pt,ZYK554 Rdio Emissora da Barra,,Barra Bonita (SP),-22.484236,-48.539697,,0.25,,9854,229,153,,,,,,36901741,,, +1030,B,,ZYJ240,,Cruzeiro do Oeste (PR),-23.883333,-53.166667,,0.25,,10232,232,154,,,,,,45966,,, +1030,B,pt,ZYJ312 Rdio Clube de Realeza,,Realeza (PR),-25.784444,-53.540278,,0.25,,10431,231,154,,,,,,36901737,,, +1030,B,pt,ZYJ329 Rdio Difusora do Xisto,,So Mateus do Sul (PR),-25.866667,-50.392222,,0.25,,10273,229,154,,,,,,36901744,,, +1030,USA,en,WEBS,,Calhoun (GA),34.490278,-84.917778,,0.003,,7139,294,154,,,,,,41244,,, +1030,PRU,,OAX7N R LV del Altiplano,,Puno (pun),-15.816667,-70.016667,,0.25,,10495,250,155,,,,,,40348,,, +1030,CHL,,CD103A R Chiloe,,Castro (LL),-42.466667,-73.766667,,1,,13021,235,157,,1100-0330,1234567,,,35845,,, +1030,CHL,,CB103 R Progreso,,Talagante (RM),-33.683333,-70.85,,0.25,,12116,239,160,,,,,,35721,,, +1030,USA,en,WQGT278,,Stockton (CA),37.933333,-121.266667,,0.01,,8796,321,163,,,,,,20010605,,, +1034,INS,id,RPDT2 Ngada,,Bajawa (NT-nga),-8.783333,120.983333,,1,,12442,76,155,,,,,,35400104,,, +1035,EST,ru,R Eli,,Tartu/Sooranna (Tar),58.417778,27.100111,,200,120,1478,54,49,,0000-2400,1234567,9997,,819,,, +1035,G,,Sunrise R 3,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0000-2400,1234567,23,,821,,, +1035,G,en,BBC R 5 live,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,1,,549,288,62,,0100-0500,1234567,0,,820,,, +1035,G,en,BBC R Sheffield,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,1,,549,288,62,,0500-0100,123456,0,,820,,, +1035,G,en,BBC R Sheffield,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,1,,549,288,62,,0500-1900,......7,0,,820,,, +1035,G,xx,BBC Asian Network,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,1,,549,288,62,,1900-0100,......7,0,,820,,, +1035,G,en,Northsound Two,,Aberdeen/Nigg (SC-ABC),57.120611,-2.075556,,0.78,,779,319,66,,0000-2400,1234567,2,,822,,, +1035,POR,pt,Star FM,,Lugar de Belmonte/St. Estvo (san),38.870972,-8.784444,,10,,1882,225,66,,0000-2400,1234567,0,,830,,, +1035,G,en,West Sound AM,,Symington (Ayr) (SC-SAY),55.567694,-4.574667,,0.32,,816,302,70,,0000-2400,1234567,9993,,823,,, +1035,JOR,ar,JRTV R Jordan,,Amman/JRTV (amn),31.904253,35.881628,,20,,3272,122,77,,0000-2400,1234567,,,4400001,,, +1035,GRC,el,Diva 1035,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400015,,, +1035,IRN,fa,IRIB R Yazd,,Yazd/Fahraj (yzd),31.769611,54.538083,,100,,4468,101,82,,0000-2400,1234567,974,,826,,, +1035,ARS,ar,BSKSA Idha'atu-i Jeddah,,Yanbu al-Bahr (mdh),24.083333,38.05,,20,,4106,127,85,,0000-2400,1234567,,,10600012,,, +1035,PAK,,PBC Hayya alal-Falah,,Multan (pjb),30.089444,71.491667,,120,,5751,89,94,,0045-0405,1234567,3,,49389,,, +1035,PAK,,PBC Hayya alal-Falah,,Multan (pjb),30.089444,71.491667,,120,,5751,89,94,,0600-1808,1234567,3,,49389,,, +1035,ETH,,R Oromia,,Adama=Nazret (orm),8.568892,39.289394,,10,,5685,136,104,,0400-0600,1234567,,,9600018,,, +1035,ETH,,R Oromia,,Adama=Nazret (orm),8.568892,39.289394,,10,,5685,136,104,,0900-1100,1234567,,,9600018,,, +1035,ETH,,R Oromia,,Adama=Nazret (orm),8.568892,39.289394,,10,,5685,136,104,,1600-1800,1234567,,,9600018,,, +1035,CHN,zh,CNR 1,,Jiayuguan (GS),39.784722,98.254722,,10,,6746,62,114,,2025-1805,1234567,,,36200559,,, +1035,CHN,zh,CNR 1,,Zhangye (GS),38.931111,100.476944,,10,,6948,61,117,,2025-1805,1234567,,,36200544,,, +1035,CHN,zh,CNR 1,,Qiqihar (HL),47.329722,124.056389,,25,,7475,41,118,,2025-1805,1234567,,,36200189,,, +1035,CHN,zh,CNR 1,,Dalian/LNTS303 (LN),39.087778,121.677778,,50,,8106,47,121,,2025-1805,1234567,,,49367,,, +1035,CHN,zh,CNR 1,,Hezuo (GS),34.971111,102.908889,,10,,7418,62,121,,2025-1805,1234567,,,49369,,, +1035,CHN,zh,CNR 1,,Ulan Hua/NMTS078 (NM),41.527778,111.691667,,10,,7372,52,121,,2025-1805,1234567,,,36200551,,, +1035,IND,,AIR Northeast,,Guwahati B (AS),26.154306,91.652889,,10,,7430,77,121,,0000-0345,1234567,,,49375,,, +1035,IND,,AIR Northeast,,Guwahati B (AS),26.154306,91.652889,,10,,7430,77,121,,0530-0900,......7,,,49375,,, +1035,IND,,AIR Northeast,,Guwahati B (AS),26.154306,91.652889,,10,,7430,77,121,,0600-0930,123456,,,49375,,, +1035,IND,,AIR Northeast,,Guwahati B (AS),26.154306,91.652889,,10,,7430,77,121,,0945-1700,1234567,,,49375,,, +1035,CHN,zh,CNR 1,,Jiayin (HL),48.883333,130.416667,,10,,7602,36,123,,2025-1500,1234567,,,36200560,,, +1035,CHN,zh,CNR 1,,Hegang/HLTS919 (HL),47.316944,130.213333,,10,,7740,37,124,,2025-1805,1234567,,,36200562,,, +1035,CHN,zh,CNR 1,,Fuxin/LNTS322 (LN),41.995119,121.732717,,10,,7846,45,125,,2025-1805,1234567,,,36200184,,, +1035,CHN,zh,CNR 1,,Tongjiang (HL),47.631794,132.506544,,10,,7802,35,125,,2025-1805,1234567,,,36201052,,, +1035,CHN,zh,CNR 1,,Wuhan/Dadongcun (HU),30.456111,114.036667,,50,,8465,58,125,,2025-1805,1234567,,,49374,,, +1035,CHN,zh,CNR 1,,Baoqing (HL),46.333333,132.216667,,10,,7914,36,126,,2025-1805,1234567,,,36200565,,, +1035,CHN,zh,CNR 1,,Jinzhou (LN),41.116667,121.116667,,10,,7895,46,126,,2025-1805,1234567,,,49370,,, +1035,CHN,zh,CNR 1,,Raohe (HL),46.785,133.9975,,10,,7941,35,126,,2025-1805,1234567,,,36201053,,, +1035,CHN,zh,CNR 1,,Yuncheng/Anyi (SX),35.05,111.033333,,10,,7890,57,126,,2025-1805,1234567,,,36200546,,, +1035,CHN,zh,CNR 1,,Jixi (HL),45.298056,130.938611,,10,,7959,38,127,,2000-1500,1234567,,,36200558,,, +1035,CHN,zh,CNR 1,,Liaocheng (SD),36.433333,115.966667,,10,,8044,53,127,,2025-1805,1234567,,,36200187,,, +1035,CHN,zh,CNR 1,,Mudanjiang (HL),44.588889,129.585278,,10,,7968,39,127,,2025-1805,1234567,,,36200554,,, +1035,CHN,zh,CNR 1,,Hailar=Haila'er/NMTS861 (NM),49.234722,119.722222,,1,,7112,42,128,,2025-1805,1234567,,,36200185,,, +1035,CHN,zh,CNR 1,,Huanren/LNTS310 (LN),41.277778,125.328611,,10,,8083,44,128,,2025-1805,1234567,,,36200561,,, +1035,CHN,zh,CNR 1,,Jinchang (GS),38.533056,102.213611,,1,,7083,60,128,,2025-1805,1234567,,,36200186,,, +1035,CHN,zh,CNR 1,,Shiyan (HU),32.613889,110.841944,,10,,8090,59,128,,2025-1805,1234567,,,36200191,,, +1035,CHN,zh,CNR 1,,Zibo (SD),36.8,118.05,,10,,8124,51,128,,2025-1805,1234567,,,36200543,,, +1035,CHN,zh,CNR 1,,Enshi/Sanhe Cun (HU),30.333333,109.466667,,10,,8207,61,129,,2220-1400,1234567,,,50477,,, +1035,CHN,zh,CNR 1,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,2025-1805,1234567,,,36200548,,, +1035,CHN,zh,CNR 1,,Yantai (SD),37.6,121.3,,10,,8221,48,129,,2025-1805,1234567,,,36200192,,, +1035,CHN,zh,CNR 1,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2025-1805,1234567,,,36200190,,, +1035,CHN,zh,CNR 1,,Zaozhuang (SD),34.841667,117.578222,,10,,8273,53,130,,2025-1805,1234567,,,36200193,,, +1035,CHN,zh,CNR 1,,Lanzhou/GSTS535 (GS),36.086389,103.846111,,1,,7382,61,131,,2025-1805,1234567,,,49371,,, +1035,CHN,zh,CNR 1,,Suzhou (AH),33.633333,116.983333,,10,,8349,54,131,,2025-1805,1234567,,,36200550,,, +1035,CHN,zh,CNR 1,,Chuzhou (AH),32.285167,118.346917,,10,,8545,54,132,,2025-1805,1234567,,,36200564,,, +1035,CHN,zh,CNR 1,,Longxi (GS),34.968611,104.657222,,1,,7523,61,132,,2025-1805,1234567,,,36200556,,, +1035,CHN,zh,CNR 1,,Datong/Fanzhuang (SX),40.070278,113.392222,,1,,7588,52,133,,2025-1805,1234567,,,49368,,, +1035,CHN,zh,CNR 1,,Qingyang (GS),36,107.866667,,1,,7626,58,133,,2025-1805,1234567,,,36200552,,, +1035,KOR,ko,HLCP KBS 1 R,,Pohang/Yeongil (gsb),36.081944,129.554444,,10,,8767,44,133,,0000-2400,1234567,,,49387,,, +1035,CHN,zh,CNR 1,,Tongliao/NMTS735 (NM),43.666667,122.216667,,1,,7719,44,134,,2025-1805,1234567,,,49373,,, +1035,THA,th,Neung Por. Nor. Phaak Phiseet,,Bangkok/Chaeng Wattana Rd (bmp),13.883333,100.575,,10,,9074,78,134,,????-1700,1234567,,,49394,,, +1035,TWN,,BCC Country Network,,Chiayi=Chia-i (CYS),23.483333,120.45,,10,,9465,57,135,,0000-2400,1234567,,,49395,,, +1035,CHN,zh,CNR 1,,Kangping/LNTS327 (LN),42.752778,123.347222,,1,,7855,44,136,,2025-1805,1234567,,,36200557,,, +1035,CHN,zh,CNR 1,,Tieling/LNTS325 (LN),42.353611,123.901667,,1,,7918,44,136,,2025-1805,1234567,,,36200549,,, +1035,CHN,zh,CNR 1,,Longkou (SD),37.659389,120.328333,,1,,8166,49,139,,2025-1805,1234567,,,36200188,,, +1035,CHN,zh,CNR 1,,Yichang (HU),30.703056,111.228889,,1,,8280,60,140,,2025-1805,1234567,,,36200547,,, +1035,PHL,,DYRL-AM,,Bacolod City (noc),10.683333,122.966667,,10,,10796,62,140,,2000-1500,1234567,,,49390,,, +1035,PHL,tl,DZWX-AM Bombo Radyo,,Baguio (bgt),16.4,120.533333,,5,,10122,61,140,,2000-1430,1234567,1,,49391,,, +1035,CHN,zh,CNR 1,,Zhangjiajie/Dayongqiao (HN),29.135,110.445833,,1,,8371,61,141,,2025-1805,1234567,,,36200545,,, +1035,INS,id,RRI Pro-1,,Bandar Lampung (LP-bla),-5.398889,105.296667,,10,,11088,86,141,,1000-1700,1234567,,,49376,,, +1035,INS,id,RRI Pro-1,,Bandar Lampung (LP-bla),-5.398889,105.296667,,10,,11088,86,141,,2155-0205,1234567,,,49376,,, +1035,CHN,zh,CNR 1,,Ganzhou (JX),25.8,114.9,,1,,8931,60,143,,2025-1805,1234567,,,36200563,,, +1035,CHN,zh,CNR 1,,Pingxiang/JXTS805 (JX),27.616667,113.85,,1,,8707,60,143,,2025-1805,1234567,,,36200553,,, +1035,J,,JOHD NHK2,,Takamatsu (shi-kag),34.316667,134.066667,,1,,9145,41,144,,2030-1500,1.....7,,,49383,,, +1035,J,,JOHD NHK2,,Takamatsu (shi-kag),34.316667,134.066667,,1,,9145,41,144,,2030-1635,.2345..,,,49383,,, +1035,J,,JOHD NHK2,,Takamatsu (shi-kag),34.316667,134.066667,,1,,9145,41,144,,2030-1640,.....6.,,,49383,,, +1035,J,,JOIC NHK2,,Toyama (chu-toy),36.720578,137.247681,,1,,9049,38,144,,2030-1500,1.....7,,,49384,,, +1035,J,,JOIC NHK2,,Toyama (chu-toy),36.720578,137.247681,,1,,9049,38,144,,2030-1635,.2345..,,,49384,,, +1035,J,,JOIC NHK2,,Toyama (chu-toy),36.720578,137.247681,,1,,9049,38,144,,2030-1640,.....6.,,,49384,,, +1035,J,,JOJD NHK2,,Tsuruoka (chu-fuk),38.733333,139.866667,,1,,8956,35,144,,2030-1500,1.....7,,,49385,,, +1035,J,,JOJD NHK2,,Tsuruoka (chu-fuk),38.733333,139.866667,,1,,8956,35,144,,2030-1635,.2345..,,,49385,,, +1035,J,,JOJD NHK2,,Tsuruoka (chu-fuk),38.733333,139.866667,,1,,8956,35,144,,2030-1640,.....6.,,,49385,,, +1035,PHL,,DYUM-AM,,Ormoc City (lyt),11.016667,124.6,,2.5,,10864,61,146,,,,,,49392,,, +1035,INS,id,RRI Pro-1,,Palu (ST-kot),-0.855658,119.886594,,1,,11660,72,152,,0000-0810,1234567,,,49379,,, +1035,SLM,,SIBC R Hapi Isles,,Honiara/Henderson Field (cth),-9.437611,160.057889,,10,,14705,36,153,,1300-1130,1234567,,,49393,,, +1035,J,,NHK R 2,,Miyoshi (chg-hir),34.8,132.85,,0.1,,9043,42,154,,0000-2400,1234567,,,49380,,, +1035,J,,NHK R 2,,Niihama (shi-ehi),33.966667,133.316667,,0.1,,9144,42,154,,2030-1500,1.....7,,,49381,,, +1035,J,,NHK R 2,,Niihama (shi-ehi),33.966667,133.316667,,0.1,,9144,42,154,,2030-1635,.2345..,,,49381,,, +1035,J,,NHK R 2,,Niihama (shi-ehi),33.966667,133.316667,,0.1,,9144,42,154,,2030-1640,.....6.,,,49381,,, +1035,J,,NHK R 2,,Taisho (shi-koc),33.2,132.983333,,0.1,,9203,43,154,,2030-1500,1.....7,,,49382,,, +1035,J,,NHK R 2,,Taisho (shi-koc),33.2,132.983333,,0.1,,9203,43,154,,2030-1635,.2345..,,,49382,,, +1035,J,,NHK R 2,,Taisho (shi-koc),33.2,132.983333,,0.1,,9203,43,154,,2030-1640,.....6.,,,49382,,, +1035,J,,NHK R 2,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,2030-1500,1.....7,,,49386,,, +1035,J,,NHK R 2,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,2030-1635,.2345..,,,49386,,, +1035,J,,NHK R 2,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,2030-1640,.....6.,,,49386,,, +1035,NZL,,2ZB Newstalk ZB,,Wellington/Titahi Bay (WGN),-41.094444,174.849722,,20,,18509,40,162,,0000-2400,1234567,9993,,49388,,, +1035,AUS,,2EA/t SBS National,,Wollongong/Windang (NSW),-34.529167,150.864028,,2,,16591,69,166,,,,,,49366,,, +1040,CAN,fr,CJMS,,Saint-Constant (QC),45.368056,-73.6225,,2.5,,5614,296,109,,,,989,,36188,,, +1040,USA,,WZSK,,Everett (PA),40.007222,-78.362222,,10,,6296,294,110,,,,,,43594,,, +1040,USA,,WHO,,Des Moines/Mitchellville (IA),41.652778,-93.350278,,50,,7057,305,111,,,,0,,41673,,, +1040,USA,ko,WPBS,,Conyers (GA),33.680833,-84.028889,,50,,7149,293,112,,1200-2400,1234567,,,42652,,, +1040,USA,,WJTB,,North Ridgeville (OH),41.376944,-82.0075,,5,,6416,297,114,,,,,,41933,,, +1040,USA,en,WNJE,,Flemington (NJ),40.505,-74.976667,,1.5,,6046,292,116,,,,,,41001,,, +1040,CAN,en,CKST,,Vancouver (BC),49.100833,-122.932222,,50,,7786,327,118,,,,1,,36432,,, +1040,USA,,WYSL,,Avon (NY),42.854444,-77.710833,,0.5,,6043,296,120,,,,39,,43549,,, +1040,USA,en,WJBE,,Powell (TN),36.042778,-84.0475,,3,,6959,294,122,,1300-0100,1234567,,,42762,,, +1040,USA,,KCBR,,Monument (CO),38.818889,-104.775556,,15,,7920,310,124,,,,,,38131,,, +1040,USA,,WLCR,,Mt Washington (C (KY),38.003056,-85.680833,,1.5,,6903,297,124,,,,,,42144,,, +1040,CUB,es,R Mayabeque,,Gines (my),22.807692,-82.018092,,10,,7923,283,126,,,,,,31600031,,, +1040,B,pt,ZYK537 Rdio Capital,,So Paulo/Av. Nicola Imparato (SP),-23.733833,-46.625611,,100,,9877,227,127,,,,997,,36901745,,, +1040,VEN,,YVLB La Voz de Carabobo,,Valencia (cbb),10.136294,-67.953083,,10,,8054,264,128,,0900-0400,1234567,62,,1950,,, +1040,CLM,es,HJBF,,Ccuta (nsa),7.816667,-72.533333,,15,,8568,266,131,,,,,,37345,,, +1040,VEN,,YVON Mundial Los Andes,,Mrida (mrd),8.566667,-71.066667,,10,,8403,265,131,,,,,,45410,,, +1040,CLM,es,HJAI R Tropical,,Barranquilla (atl),10.9,-74.783333,,10,,8453,270,132,,,,41,,37325,,, +1040,USA,,KGGR,,Dallas (TX),32.778611,-96.730833,,3.3,,8000,301,132,,,,,,38477,,, +1040,USA,,WSGH,,Lewisville (NC),36.135,-80.503889,,0.182,,6730,292,132,,,,,,42994,,, +1040,USA,es,WLVJ,,Boynton Beach (FL),26.473889,-80.203056,,1.1,,7495,285,132,,,,,,42252,,, +1040,CLM,es,HJCJ Colmundo,,Bogot D. C. (bdc),4.583333,-74.083333,,10,,8957,265,134,,,,998,,37371,,, +1040,CLM,es,HJFM,,Armenia (qui),4.516667,-75.7,,10,,9073,267,134,,,,,,37437,,, +1040,CLM,es,HJUB,,Pasto (nar),1.216667,-77.283333,,15,,9470,266,134,,,,,,35901493,,, +1040,CTR,,TIAC R Fides,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1000-0500,1234567,,,40563,,, +1040,CLM,es,HJSY Caucana 1040,,Popayn (cau),2.45,-75.616667,,10,,9249,265,135,,,,,,35901491,,, +1040,PTR,es,WZNA,,Moca (PR),18.277222,-67.166944,,0.25,,7299,269,136,,,,,,43579,,, +1040,USA,,WHBO,,Pinellas Park (FL),27.847222,-82.7725,,0.42,,7549,287,136,,,,,,43354,,, +1040,DOM,,HION La Mezcla,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,0000-2400,1234567,,,37281,,, +1040,MEX,es,XESAG-AM R Lobo,,Salamanca (gua),20.567222,-101.200278,,5,,9348,296,138,,,,,,44728,,, +1040,PNR,es,La Voz del Mamoni,,Chepo/Cerro Brujo (pnm),9.153611,-79.038889,,3,,8896,272,139,,,,,,52321,,, +1040,PRU,es,OBX4O Metropolitana R.Peruana,,Lima (lim),-12.166667,-77.016667,,10,,10630,257,139,,,,,,40395,,, +1040,USA,en,WPEI224,,Hanover (MD),39.194317,-76.675528,,0.01,,6251,292,139,,,,,,20010606,,, +1040,PNR,es,HOJ2 Ondas del Canajagua,,Las Tablas/Av. Moises Espio (lsn),7.766272,-80.271883,,2.5,,9101,272,140,,1000-0200,1234567,,,52320,,, +1040,NCG,,YNVJ LV de Jinotega,,Jinotega (jtg),13.1,-86,,2,,9024,280,141,,,,,,52207,,, +1040,USA,en,WPMG814,,Fresno (CA),36.815222,-119.749861,,1.7,,8836,319,141,,,,,,20010609,,, +1040,CTR,,TIHG R Nosara,,Hojancha (gnc),10.0582,-85.416394,,2,,9250,278,142,,1100-1400,1234567,,,52149,,, +1040,CTR,,TIHG R Nosara,,Hojancha (gnc),10.0582,-85.416394,,2,,9250,278,142,,2100-2300,1234567,,,52149,,, +1040,EQA,,HCEV5,,Cuenca (azu),-2.883333,-78.966667,,3,,9945,265,142,,,,,,36923,,, +1040,HND,,HRFX,,Catacamas (ola),14.9,-85.866667,,1,,8859,281,143,,,,,,37753,,, +1040,HWA,en,KLHT,,Honolulu (HI),21.336111,-157.8925,,10,,11707,345,143,,0000-2400,1234567,999,,38811,,, +1040,GTM,,TGJP R Oriental,,Jalapa (jal),14.616667,-89.966667,,1,,9157,284,144,,,,,,40502,,, +1040,HND,,HRNN,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37806,,, +1040,NCG,,R Cima,,Santo Tomas (cht),12.066667,-85.083333,,1,,9053,279,144,,,,,,33700011,,, +1040,MEX,es,XEBBB-AM R Mujer,,Zapopan (jal),20.634064,-103.441033,,1,,9479,298,145,,,,,,43762,,, +1040,USA,,KXPD,,Tigard (OR),45.473889,-122.659167,,0.2,,8125,325,145,,,,9991,,38857,,, +1040,MEX,es,XECH-AM R Capital,,Toluca (mex),19.290972,-99.656972,,0.75,,9367,294,146,,,,,,43836,,, +1040,MEX,es,XEPLE-AM R Palenque,,Palenque (cps),17.548939,-91.975567,,0.5,,9032,287,147,,,,,,44560,,, +1040,BOL,,CP208 R Sipe Sipe,,Quillacollo (cbb),-17.383333,-66.283333,,1,,10399,246,148,,1000-0300,123456,,,51986,,, +1040,BOL,,CP208 R Sipe Sipe,,Quillacollo (cbb),-17.383333,-66.283333,,1,,10399,246,148,,1100-0400,......7,,,51986,,, +1040,EQA,,HCCW1,,Machachi (pic),-0.5,-78.566667,,0.7,,9709,266,148,,,,,,36895,,, +1040,EQA,,HCGB6,,Ambato (tun),-1.25,-78.616667,,0.6,,9778,265,148,,,,,,36950,,, +1040,PRU,,OAM2L,,Pomahuaca/Cerro Chamusco (caj),-5.933333,-79.227778,,1,,10231,263,148,,,,,,37000071,,, +1040,MEX,es,XEHES-AM Siglo XXI,,Chihuahua (chi),28.613572,-106.054347,,0.25,,8907,305,149,,,,,,44107,,, +1040,PRU,,OAU3P,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000084,,, +1040,MEX,es,XEGYS-AM La Primera,,Guaymas (son),27.889717,-110.901114,,0.25,,9240,308,150,,,,,,44093,,, +1040,EQA,,HCRG4,,Manta (man),-1,-80.766667,,0.3,,9903,267,152,,,,,,37084,,, +1040,PRG,,ZP43 R Arapisandu,,San Ignacio (Misiones) (mis),-26.916667,-56.916667,,0.5,,10719,233,152,,0900-0200,1234567,,,45539,,, +1040,BOL,,CP113 R Villazon,,Villazon (pts),-22.116667,-65.616667,,0.25,,10784,243,156,,1100-0200,123456,,,36630,,, +1040,BOL,,CP113 R Villazon,,Villazon (pts),-22.116667,-65.616667,,0.25,,10784,243,156,,1100-2200,......7,,,36630,,, +1040,CHL,,CD104 R Raices,,Curacautin (AR),-38.416667,-71.95,,1,,12583,237,156,,1100-0100,1234567,,,35847,,, +1040,CHL,,CD104 R Payne AM,,Puerto Natales (MA),-51.716667,-72.5,,1,,13690,227,159,,,,,,35846,,, +1040,USA,en,WPWA745,,El Segundo/400 Lomita St. (CA),33.927628,-118.410964,,0.01,,9051,316,164,,,,,,20010607,,, +1040,USA,en,WQFI350,,Santa Barbara/2800 Painted Cave Road (CA),34.508333,-119.792639,,0.01,,9060,318,164,,,,,,20010608,,, +1044,E,es,SER,,San Sebastin/Monte Igueldo (PVA-SS),43.297861,-2.066389,,50,,1165,216,52,,0000-2400,1234567,26,,836,,, +1044,MRC,,SNRT Al Ida Al Amazighia,,Seba-Aioun (mkt),33.897156,-5.382611,,300,,2234,210,55,,0800-2400,1234567,9998,,839,,, +1044,E,es,SER,,Valladolid/Passeo de la Gallinera (CAL-VA),41.614083,-4.699403,,10,,1437,220,61,,0000-2400,1234567,995,,835,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0410-0430,.....67,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0445-0455,12345..,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0610-0630,1234567,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1340-1400,12345..,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1345-1400,......7,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1545-1600,.....6.,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1610-1700,1234567,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1800-1830,1234567,,,2248,,, +1044,UKR,uk,UR 1 Persha Prog.,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0330-2000,12345..,,,2248,,, +1044,UKR,uk,UR 1 Persha Prog.,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0400-2000,.....67,,,2248,,, +1044,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400067,,, +1044,IRN,fa,IRIB R Iran,,Dehloran (ilm),32.701778,47.237361,,50,,3911,107,79,,0000-2400,1234567,,,1794,,, +1044,ETH,,ERTA Ethiopia National R,,Mekelle (tig),13.532756,39.510525,,200,,5201,133,86,,0300-0600,1234567,,,9600001,,, +1044,ETH,,ERTA Ethiopia National R,,Mekelle (tig),13.532756,39.510525,,200,,5201,133,86,,0800-2100,1234567,,,9600001,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Akesu=Aksu/XJTS636 (XJ),41.185833,80.280833,,10,,5516,72,102,,2300-1800,1234567,,,36200542,,, +1044,IND,,AIR Samvadita Channel,,Mumbai A=Bombay (MH),19.180556,72.809861,,100,,6734,96,104,,0015-0400,1234567,87,,49408,,, +1044,IND,,AIR Samvadita Channel,,Mumbai A=Bombay (MH),19.180556,72.809861,,100,,6734,96,104,,0530-1035,1234567,87,,49408,,, +1044,IND,,AIR Samvadita Channel,,Mumbai A=Bombay (MH),19.180556,72.809861,,100,,6734,96,104,,1230-1740,1234567,87,,49408,,, +1044,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/XJTS904 (XJ),43.715833,87.595,,10,,5800,65,105,,0000-1600,1234567,,,49406,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Korla/SARFT8104 (XJ),41.772778,86.214722,,10,,5853,67,106,,2300-1800,1234567,,,36200540,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Turfan/Gaochang Lu-SARFT8101 (XJ),42.957778,89.175833,,10,,5952,65,107,,2300-1800,1234567,,,36200538,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Tacheng=Qoqek/SARFT634 (XJ),46.745556,83.006667,,1,,5310,64,110,,2300-1800,1234567,,,36200539,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,1,,5398,68,111,,2300-1800,1234567,,,36200537,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Bachu/XJTS2041 (XJ),39.815278,78.535833,,1,,5499,74,112,,2300-1800,1234567,,,36200541,,, +1044,CHN,ja,China R Int.,,Changzhou/SARFT623 (JS),31.709389,120.112278,,300,72,8694,53,118,,1100-1600,1234567,0,,49404,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Yiwu/XTS8103 (XJ),43.247222,94.699444,,1,,6266,61,120,,2300-1800,1234567,,,36200536,,, +1044,CHN,mn,Nei Menggu RGD Mongyol,,Yakeshi/NMTS785 (NM),49.3105,120.807556,,1,,7154,41,129,,2150-1605,1234567,,,36201244,,, +1044,KOR,,HLCD KBS 1 R,,Jecheon (ccb),37.283333,128.216667,,10,,8591,44,132,,0000-2400,1234567,,,49420,,, +1044,KOR,ko,HLCI KBS 1 R,,Samcheok (gan),37.456389,129.162222,,10,,8619,43,132,,0000-2400,1234567,,,49421,,, +1044,HKG,,Metro Plus,,Peng Chau (isd),22.290633,114.043744,,10,,9195,63,134,,0000-2400,1234567,9987,,49407,,, +1044,THA,th,Kor. Wor. Sor. 5,,Khon Kaen/252 Mittaphap Rd (kkn),16.046667,102.713889,,10,,9027,75,134,,????-1700,1234567,,,49430,,, +1044,THA,th,Thor. Phor. Sii 4,,Nakhon Si Thammarat (ntm),8.483333,99.95,,10,,9504,82,135,,2130-1630,1234567,,,49431,,, +1044,CHN,,Dali RGD,,Dali/SARFT653 (YN),25.716667,100.166667,,1,,8025,71,137,,2225-1100,1234567,,,49405,,, +1044,INS,id,RRI Pro-1,,Sibolga (SU-sib),1.721111,98.803056,,10,,10020,87,137,,2200-1700,1234567,,,49413,,, +1044,TWN,,Yen Sheng Kuangpo Tientai,,Hualien (HL),23.95785,121.603344,,5,,9487,56,138,,,,,,49432,,, +1044,PHL,tl,DZNG-AM Bombo Radyo,,Naga City/RDC Building (cas),13.616667,123.183333,,10,,10537,61,139,,2100-1500,1234567,1,,49427,,, +1044,PHL,,DXLL-AM Radyo Ukay,,Zamboanga City (zds),6.933333,122.1,,10,,11090,65,141,,,,,,49428,,, +1044,INS,id,RRI Pro-1,,Tahuna (SA-san),3.616667,125.483333,,10,,11605,64,142,,2100-1600,1234567,,,35400051,,, +1044,PHL,tl,DYMS-AM Aksyon Radyo,,Catbalogan (sam),11.766667,124.866667,,5,,10810,60,143,,2000-1300,......7,,,49425,,, +1044,PHL,tl,DYMS-AM Aksyon Radyo,,Catbalogan (sam),11.766667,124.866667,,5,,10810,60,143,,2000-1400,123456,,,49425,,, +1044,PHL,,DXCO-AM,,Opol/Taboc (mor),8.512978,124.584928,,5,,11096,62,144,,1945-????,1234567,8,,49424,,, +1044,TWN,,Cheng Kung Kuangpo Tientai,,Kaohsiung (KHS),22.625375,120.297928,,1,,9535,58,145,,,,,,49433,,, +1044,INS,id,RRI Pro-1,,Biak (PA-bia),-1.155958,136.076317,,10,,12684,57,146,,2000-1500,1234567,,,49410,,, +1044,INS,,PM3BNF Country Station,,Cikarang (JB-bek),-6.25,107.15,,1,,11288,85,151,,,,58,,49411,,, +1044,PHL,,DXML-AM,,Digos City (dvs),6.75,125.35,,1,,11306,63,151,,,,,,49426,,, +1044,INS,id,RDA-R Duta Angkasa,,Pangadaran (JB),-7.683333,108.65,,1,,11516,85,152,,,,,,35400050,,, +1044,AUS,,6BR ABC Southwest WA,,Bridgetown/Hester (WA),-33.921094,116.121642,,1,,14206,99,161,,0000-2400,1234567,,,49400,,, +1044,AUS,,5CS Classic Hits,,Port Pirie/Huddleston (SA),-33.326014,138.276972,,2,,15668,81,163,,0000-2400,1234567,,,49402,,, +1044,AUS,,4WP ABC Far North QLD,,Weipa (QLD),-12.620433,141.890069,,0.5,,14105,59,164,,0000-2400,1234567,,,49403,,, +1044,AUS,,2UH ABC Newcastle,,Muswellbrook (NSW),-32.232056,150.918889,,2,,16407,66,165,,0000-2400,1234567,,,49401,,, +1044,NZL,en,4ZB Newstalk ZB,,Dunedin/Highcliff (OTA),-45.884167,170.588333,,10,,18673,65,166,,0000-2400,1234567,,,49423,,, +1046,RUS,,TZ,b,Vologda (VO),59.270833,39.958333,,0.025,,2220,56,95,,,,3,L1016 U1013 15.0s,IDx2 + 5 tone,85849,, +1046,RUS,,UR,b,Vologda (VO),59.270833,39.958333,,0.025,,2220,56,95,,,,0,L1020 U1020 ,85850,,, +1050,USA,es,WEPN,,New York/East Rutherford [NJ] (NY),40.776667,-74.052222,,50,,5967,292,100,,,,9973,,41318,,, +1050,CAN,en,CHUM,,Toronto/Oakville (ON),43.487222,-79.620556,,50,,6113,298,101,,,,7,,36101,,, +1050,USA,,WTKA,,Ann Arbor (MI),42.146111,-83.66,,10,,6456,299,112,,,,,,43152,,, +1050,CAN,en,CJNB,,North Battleford (SK),52.841667,-108.306389,,10,,6862,321,116,,,,0,,36192,,, +1050,MEX,es,XEG-AM La Ranchera,,Monterrey (nvl),25.698178,-100.175036,,100,,8827,299,123,,,,2,,44041,,, +1050,CUB,es,R Victoria,,Victoria de las Tunas/CTOM1 (lt),20.924553,-76.899989,,10,,7738,278,124,,,,0,,36584,,, +1050,USA,,WPQR,,Conway (NH),43.98,-71.11,,0.063,,5554,293,125,,,,,,40884,,, +1050,USA,es,WVXX,,Norfolk (VA),36.828889,-76.207222,,0.358,,6402,290,125,,,,,,41039,,, +1050,USA,,WJOK,,Kaukauna (WI),44.2475,-88.3,,0.5,,6564,304,126,,,,,,41912,,, +1050,USA,,WYBG,,Massena (NY),44.895,-74.934722,,0.066,,5727,297,126,,,,9999,,43506,,, +1050,USA,en,KTCT,i,San Mateo (CA),37.650556,-122.150556,,50,,8861,321,126,,,,54,,52638,,, +1050,VEN,es,YVPO RNV Canal Informativo,,Cabudare (lar),10.066667,-69.25,,20,,8148,265,126,,1000-0400,1234567,,,51680,,, +1050,VEN,es,YVKZ RNV Canal Musical,,Caracas (dcf),10.432294,-66.941058,,10,,7960,263,127,,1000-0400,1234567,997,,45361,,, +1050,USA,,WJSB,,Crestview (FL),30.766944,-86.585278,,3.1,,7551,292,128,,,,,,41929,,, +1050,USA,en,WHSC,,Conway (SC),33.848889,-79.084167,,0.473,,6820,289,128,,,,,,41794,,, +1050,CLM,es,HJBB R Valledupr,,Valledupar (ces),10.683333,-73.283333,,15,,8370,269,129,,,,,,37341,,, +1050,USA,,WDVM,,Eau Claire (WI),44.777222,-91.474722,,0.26,,6701,306,130,,,,,,41221,,, +1050,USA,,WLIP,,Kenosha (WI),42.552778,-87.893889,,0.25,,6674,302,130,,,,,,42173,,, +1050,USA,,WTCA,,Plymouth (IN),41.318333,-86.311389,,0.25,,6678,300,130,,,,,,43116,,, +1050,USA,en,WGRI,,Cincinnati (OH),39.080556,-84.521667,,0.279,,6747,297,130,,,,,,43214,,, +1050,CLM,,HJTJ,,Montera (cor),8.716667,-75.766667,,15,,8710,269,131,,,,,,37645,,, +1050,CLM,es,HJS62,,Yopal (cas),5.35,-72.4,,15,,8775,264,131,,,,,,35901498,,, +1050,USA,,KLOH,,Pipestone (MN),43.995278,-96.344722,,0.432,,7029,308,131,,,,,,38839,,, +1050,USA,,WADC,,Parkersburg (WV),39.258056,-81.563611,,0.144,,6552,295,131,,,,,,40649,,, +1050,USA,,WAMN,,Green Valley (WV),37.305556,-81.125,,0.2,,6677,293,131,,,,,,40711,,, +1050,USA,,WGAT,,Gate City (VA),36.633056,-82.582222,,0.267,,6821,294,131,,,,,,41476,,, +1050,CLM,es,HJDR,,Medelln (ant),6.266667,-75.583333,,15,,8912,268,132,,,,,,37398,,, +1050,CLM,es,HJLZ,,Arauca (ara),7.016667,-70.766667,,10,,8518,264,132,,,,,,37559,,, +1050,PRU,,OBX6B,,Arequipa (are),-16.35,-71.583333,,50,,10643,251,132,,,,,,40406,,, +1050,URG,es,CX26 RNU Uruguay AM,,Santiago Vzquez (mo),-34.80725,-56.363111,,100,,11419,228,132,,1000-0300,1234567,,,36810,,, +1050,USA,,KMIS,,Portageville (MO),36.425278,-89.691389,,0.6,,7274,298,132,,,,,,38908,,, +1050,USA,,WBUT,,Butler (PA),40.8975,-79.889444,,0.062,,6323,296,132,,,,,,40927,,, +1050,USA,,WLON,,Lincolnton (NC),35.491111,-81.2675,,0.231,,6829,292,132,,,,,,42208,,, +1050,USA,,WMSG,,Oakland (MD),39.392222,-79.398333,,0.075,,6407,294,132,,,,,,42389,,, +1050,USA,,WDZ,,Decatur (IL),39.815,-89.002222,,0.25,,6956,300,133,,,,,,41230,,, +1050,USA,,WLYC,,Williamsport (PA),41.262222,-77.033056,,0.03,,6119,294,133,,,,,,42264,,, +1050,USA,en,WBRG,,Lynchburg (VA),37.420833,-79.115278,,0.09,,6541,292,133,,,,,,40899,,, +1050,USA,es,WBQH,,Silver Spring (MD),39.014167,-77.029444,,0.044,,6287,292,133,,,,,,42703,,, +1050,B,pt,ZYI676 Rdio Caturit,,Campina Grande (PB),-7.162794,-35.920297,,1,,7715,226,134,,,,,,36901758,,, +1050,CLM,es,HJFZ,,Espinal (tol),4.15,-74.9,,10,,9050,266,134,,,,,,37448,,, +1050,GTM,,TGSL LV de los Cuchumatanes,,Huehuetenango (huh),15.316667,-91.466667,,10,,9194,286,134,,1100-0600,1234567,,,40542,,, +1050,SLV,,YSU,,Ahuachapn (ahp),13.916667,-89.833333,,10,,9209,283,134,,,,,,45331,,, +1050,SLV,,YSU,,San Salvador (ssl),13.716667,-89.216667,,10,,9186,283,134,,,,,,45330,,, +1050,USA,,KJPG,,Frazier Park (D) (CA),35.024444,-118.918056,,10,,8970,317,134,,,,,,38878,,, +1050,USA,,WSEN,,Baldwinsville (NY),43.179444,-76.338611,,0.019,,5935,296,134,,,,,,42981,,, +1050,B,pt,ZYH647 Rdio Primeira Capital,,Aquiraz (CE),-3.910422,-38.3853,,0.5,,7517,229,135,,,,,,36901757,,, +1050,USA,,WFSC,,Franklin (NC),35.211111,-83.368611,,0.153,,6984,293,135,,,,,,41438,,, +1050,USA,,WNES,,Central City (KY),37.269167,-87.142222,,0.172,,7051,297,135,,,,,,42461,,, +1050,USA,,WSMT,,Sparta (TN),35.954444,-85.476944,,0.178,,7055,295,135,,,,,,43030,,, +1050,MEX,es,XEBCS-AM,,La Paz (bcs),24.090556,-110.334722,,10,,9562,305,136,,,,,,43768,,, +1050,CLM,es,HJIO,,Granada (met),3.533333,-73.7,,5,,9023,264,137,,,,,,35901500,,, +1050,DOM,,HICB R Hispaniola,,Santiago de los Caballeros (sto),19.433333,-70.666667,,0.25,,7441,272,137,,0930-0400,1234567,,,37227,,, +1050,EQA,,HCRQ2 R Aguila,,Guayaquil (gua),-2.166667,-79.916667,,10,,9947,266,137,,,,,,37097,,, +1050,MEX,es,XEQOO-AM,,Puerto Morelos (qui),20.893478,-86.860728,,2.5,,8406,286,137,,,,,,44623,,, +1050,MEX,es,XETAB-AM,,Villahermosa (tab),18.005289,-92.991947,,5,,9058,288,137,,,,,,44787,,, +1050,CUB,es,R Guam,,Santa Luca (pr),22.67345,-83.943017,,1,,8062,285,138,,,,,,36451,,, +1050,MEX,es,XEJF-AM R Max,,Tierra Blanca (vcz),18.459819,-96.346078,,5,,9233,291,138,,,,,,44209,,, +1050,USA,,WFAM,,Augusta (GA),33.455833,-81.938889,,0.082,,7035,291,138,,,,,,41354,,, +1050,USA,,KMTA,,Miles City (MT),46.401111,-105.651667,,0.136,,7299,315,139,,,,,,38936,,, +1050,USA,,WWIC,,Scottsboro (AL),34.673056,-86.053056,,0.1,,7195,295,139,,,,,,43383,,, +1050,B,pt,ZYJ867 Rdio Verde Vale,,Brao do Norte (SC),-28.272222,-49.134167,,7,,10440,227,140,,,,,,36901746,,, +1050,HND,,HRLP10,,La Ceiba (atl),15.766667,-86.816667,,2,,8847,282,140,,,,,,37779,,, +1050,USA,en,KBLE,,Seattle (WA),47.561389,-122.359444,,0.44,,7913,326,140,,,,,,38052,,, +1050,USA,en,KEYF,,Dishman (WA),47.6075,-117.361111,,0.26,,7711,323,140,,,,,,38355,,, +1050,B,pt,ZYJ286 Rdio Clube de Palmas,,Palmas (PR),-26.508056,-51.994722,,5,,10417,230,141,,,,,,36901751,,, +1050,USA,,KSIS,,Sedalia (MO),38.734167,-93.225278,,0.086,,7291,302,141,,,,,,39364,,, +1050,USA,,KTBL,,Los Ranchos (NM),34.979444,-106.736944,,1,,8367,309,141,,,,,,39458,,, +1050,ARG,es,LV27 R San Francisco,,San Francisco (cb),-31.433333,-62.066667,,10,,11416,234,142,,0900-0300,1234567,,,33000074,,, +1050,B,pt,ZYH494 Rdio CBN,,Camaari (BA),-12.805556,-38.240767,,0.75,,8390,225,142,,,,,,36901752,,, +1050,CLM,es,HJGU,,Bucaramanga (sat),7.033333,-73.083333,,1,,8674,266,143,,,,,,37463,,, +1050,USA,,KCHN,,Brookshire (TX),29.879167,-96.035556,,0.41,,8210,298,143,,1300-0100,1234567,,,38151,,, +1050,USA,,WBNM,,Alexander City (AL),32.950833,-85.985278,,0.048,,7332,293,143,,,,,,42841,,, +1050,USA,,WMNZ,,Montezuma (GA),32.298056,-84.033889,,0.041,,7262,292,143,,,,,,42362,,, +1050,CLM,es,HJNG,,Palmira (val),3.466667,-76.316667,,1,,9207,266,144,,,,,,37585,,, +1050,MEX,es,XED-AM Siglo XXI,,Mexicali (bcn),32.617392,-115.528078,,1,,9037,314,144,,,,,,43893,,, +1050,SLV,,YSU,,Santa Ana (sta),13.966667,-89.566667,,1,,9187,283,144,,,,,,45334,,, +1050,SLV,,YSU,,Sonsonate (ssn),13.716667,-89.7,,1,,9218,283,144,,,,,,45333,,, +1050,SLV,,YSU,,Usulutn (usu),13.333333,-88.416667,,1,,9166,282,144,,,,,,45332,,, +1050,B,pt,ZYH760 Rdio Jornal,,Inhumas (GO),-16.354111,-49.493844,,1,,9317,233,145,,,,,,36901748,,, +1050,B,pt,ZYI203 Rdio Capixaba,,Vitria (ES),-20.391094,-40.367692,,1,,9246,223,145,,,,95,,36901754,,, +1050,MEX,es,XEDC-AM 1050 Noticias,,Aguascalientes (agu),21.919797,-102.267047,,1,,9291,298,145,,,,,,43897,,, +1050,MEX,es,XEIP-AM La Poderosa,,Uruapan (mic),19.390131,-102.006839,,1,,9504,296,145,,,,,,44175,,, +1050,MEX,es,XERIO-AM La Poderosa,,Ixtln del Ro (nay),21.02475,-104.386553,,1,,9500,299,145,,,,,,44676,,, +1050,MEX,es,XEZUM-AM ABC R,,Chilpancingo (gue),17.577778,-99.490506,,1,,9511,293,145,,,,,,45161,,, +1050,USA,en,WTWG,,Columbus (MS),33.51,-88.412778,,0.048,,7437,295,145,,,,,,40644,,, +1050,EQA,,HCEP5,,Riobamba (chi),-1.666667,-78.666667,,1,,9818,265,146,,,,,,36921,,, +1050,EQA,,HCIM1 R. Municipal LV de Imbabura,,Ibarra (imb),0.35,-78.116667,,1,,9603,266,146,,,,,,52510,,, +1050,EQA,,HCKI4,,Chone (man),-0.7,-80.066667,,1,,9829,267,146,,,,,,37001,,, +1050,PRU,,R Campesina,,Cajamarca (caj),-7.166667,-78.516667,,1,,10292,262,148,,,,,,47304,,, +1050,USA,,KORE,,Springfield-Eugene (OR),44.068611,-123.029167,,0.149,,8275,325,148,,,,,,39098,,, +1050,B,pt,ZYI391 Rdio Difusora Paranaibense,,Paranaba (MS),-19.693311,-51.196039,,0.5,,9728,233,149,,,,,,36901753,,, +1050,B,pt,ZYJ497 Rdio Angra,,Angra dos Reis (RJ),-22.981078,-44.286483,,0.5,,9689,226,149,,,,,,36901755,,, +1050,B,pt,ZYK601 Rdio Show,,Jardinpolis (SP),-21.058131,-47.820133,,0.5,,9680,229,149,,,,,,36901756,,, +1050,USA,,WROS,,Jacksonville (FL),30.353889,-81.739167,,0.013,,7275,288,149,,,,,,42902,,, +1050,USA,,KGTO,,Tulsa (OK),36.159722,-96.0525,,0.022,,7671,302,150,,,,,,38515,,, +1050,USA,,KJBN,,Little Rock (AR),34.766111,-92.293889,,0.019,,7568,299,150,,,,,,38660,,, +1050,B,pt,ZYL236 Rdio Rural de Tupaciguara,,Tupaciguara (MG),-18.605133,-48.695256,,0.25,,9490,231,151,,,,,,36901749,,, +1050,BOL,,CP233 R El Mundo,,Santa Cruz (scz),-17.766667,-63.166667,,0.5,,10242,243,151,,1000-0200,1234567,,,36643,,, +1050,USA,,WJCM,,Sebring (FL),27.508333,-81.422222,,0.011,,7489,286,151,,,,,,41855,,, +1050,ARG,,R Conurbana,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,51823,,, +1050,B,pt,ZYJ226 Rdio Difusora Platinense,,Santo Antnio da Platina (PR),-23.283333,-50.083333,,0.25,,10011,230,153,,,,,,36901750,,, +1050,USA,,KVPI,,Ville Platte (LA),30.694167,-92.312778,,0.01,,7914,296,156,,,,,,39661,,, +1050,USA,,KCAA,,Loma Linda (CA),33.989444,-117.186111,,0.035,,8988,316,158,,,,,,38118,,, +1050,CHL,,CD105 R Armonia,,Osorno (LL),-40.566667,-73.166667,,0.5,,12831,236,159,,1030-0630,1234567,,,35848,,, +1050,USA,,KXCA,,Lawton (OK),34.590833,-98.352778,,0.006,,7938,303,159,,,,,,38753,,, +1050,USA,,KRMY,,Killeen (TX),31.114722,-97.7,,0.005,,8202,300,162,,,,,,39272,,, +1050,USA,,KJPG,,Frazier Park (N) (CA),35.401944,-119.046389,,0.007,,8940,318,165,,,,,,20012546,,, +1053,G,en,TalkSPORT,,Droitwich/Mast C-D (EN-WOR),52.298667,-2.105389,,500,,580,275,36,,0000-2400,1234567,9992,,857,,, +1053,ROU,ro,SRR R Iaşi,,Iaşi/Letcani (IS),47.181944,27.457222,,400,160 340,1604,102,47,,0355-2000,1234567,23,,860,,, +1053,G,en,TalkSPORT,,Postwick (EN-NFK),52.626944,1.402778,,18,,345,282,48,,0000-2400,1234567,19,,855,,, +1053,G,en,TalkSPORT,,Dumfries (SC-DGA),55.028056,-3.479444,,10,,728,300,54,,0000-2400,1234567,5,,854,,, +1053,G,en,TalkSPORT,,Tonbridge/Rusthall (EN-KNT),51.139472,0.224556,,4,,440,258,55,,0000-2400,1234567,,,853,,, +1053,E,es,COPE,,Zaragoza/San Gregorio (ARA-Z),41.688878,-0.86365,,20,,1282,208,57,,0000-2400,1234567,12,,842,,, +1053,G,en,TalkSPORT,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,2.2,,482,256,58,,0000-2400,1234567,,,852,,, +1053,G,en,TalkSPORT,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0000-2400,1234567,,,845,,, +1053,LBY,ar,R Libya,,Tarabulus=Tripoli (tbl),32.857625,13.076556,,50,,2207,163,62,,0000-2400,1234567,104,,858,,, +1053,G,en,TalkSPORT,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,1,,596,258,63,,0000-2400,1234567,,,848,,, +1053,G,en,TalkSPORT,,Stockton-on-Tees (EN-DUR),54.588667,-1.349778,,1,,584,301,63,,0000-2400,1234567,,,850,,, +1053,E,es,COPE,,Castelln/La Obra (VAL-CS),40.020553,0.019333,,5,,1430,203,64,,0000-2400,1234567,99910,,843,,, +1053,G,en,TalkSPORT,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0000-2400,1234567,,,847,,, +1053,RUS,ru,R Mariya,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,0000-2400,1234567,9989,,861,,, +1053,G,en,TalkSPORT,,Dundee/Greenside Scalp (SC-DDC),56.45,-2.923972,,1,,774,312,65,,0000-2400,1234567,,,846,,, +1053,G,en,TalkSPORT,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,1,,756,260,65,,0000-2400,1234567,,,849,,, +1053,G,en,TalkSPORT,,Rosemarkie (SC-HIL),57.633333,-4.074528,,1,,908,317,66,,0000-2400,1234567,,,844,,, +1053,G,en,TalkSPORT,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,1,,963,295,67,,0000-2400,1234567,7,,851,,, +1053,IRN,fa,IRIB R Iran,,Khorramabad (lrn),33.450169,48.320878,,100,,3923,105,76,,0000-2400,1234567,,,1795,,, +1053,IRQ,,R As-Salam,,Baghdad (bgh),33.35,44.383333,,3,,3674,110,89,,0700-1700,1234567,,,10500013,,, +1053,ETH,,R Oromia,,Nekemte (orm),9.1038,36.548761,,100,,5505,139,92,,0400-0600,1234567,,,9600019,,, +1053,ETH,,R Oromia,,Nekemte (orm),9.1038,36.548761,,100,,5505,139,92,,0900-1100,1234567,,,9600019,,, +1053,ETH,,R Oromia,,Nekemte (orm),9.1038,36.548761,,100,,5505,139,92,,1600-1800,1234567,,,9600019,,, +1053,IRN,fa,IRIB R Zahedan,,Saravan (sib),27.352639,62.359194,,25,,5347,99,97,,0200-1730,1234567,,,10800001,,, +1053,RUS,ru,R Shanson,,Krasnoyarsk (KN),56.016667,92.8,,10,,5278,49,100,,2200-1800,1234567,,,47028,,, +1053,IND,,AIR North,,Leh (JK),34.123611,77.590278,,10,,5854,80,106,,0130-0630,1234567,,,49450,,, +1053,IND,,AIR North,,Leh (JK),34.123611,77.590278,,10,,5854,80,106,,0700-0930,1234567,,,49450,,, +1053,IND,,AIR North,,Leh (JK),34.123611,77.590278,,10,,5854,80,106,,1200-1700,1234567,,,49450,,, +1053,KRE,,Kuguge Sori Pangsong,,Haeju (hwn),38.019056,125.725639,,1000,123,8403,45,111,,0800-1400,1234567,,,49454,,, +1053,KRE,,Kuguge Sori Pangsong,,Haeju (hwn),38.019056,125.725639,,1000,123,8403,45,111,,2200-0400,1234567,,,49454,,, +1053,IND,en,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,1000-1100,1234567,,,49451,,, +1053,IND,si,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,0045-0115,1234567,,,49451,,, +1053,IND,si,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,1300-1500,1234567,,,49451,,, +1053,IND,ta,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,0000-0045,1234567,,,49451,,, +1053,IND,ta,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,0115-0330,1234567,,,49451,,, +1053,IND,ta,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,1100-1300,1234567,,,49451,,, +1053,IND,ta,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,1500-1530,1234567,,,49451,,, +1053,BGD,,Bangladesh Betar,,Rangpur (rgp),25.784397,89.219122,,20,,7299,79,117,,0000-0400,1234567,,,49437,,, +1053,BGD,,Bangladesh Betar,,Rangpur (rgp),25.784397,89.219122,,20,,7299,79,117,,0800-1710,1234567,,,49437,,, +1053,CHN,zh,Liaoning RGD Gushi Guangbo,,Shenyang/SARFT033 (LN),41.625278,123.300556,,50,,7955,45,120,,,,,,36200229,,, +1053,CHN,,Hubei RGD Jingji Guangbo,,Qianjiang/Hucheng Cun (HB),30.416667,112.85,,50,,8400,59,124,,1940-1800,1234567,,,36200534,,, +1053,CHN,,Wenshan RGD,,Wenshan/YNTS703 (YN),23.335278,104.298889,,50,,8495,69,125,,0955-????,1234567,,,49445,,, +1053,CHN,zh,CNR 10 Laonian zhi Sheng,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,2025-1805,1234567,,,49438,,, +1053,CHN,zh,Yanbian RGD,,Yanji=Yeon'gil (JL),42.9,129.5,,20,,8122,40,125,,2130-1630,1234567,,,49448,,, +1053,CHN,zh,Cangzhou RGD Agricultural Economic,,Cangzhou (HB),38.3,116.85,,10,,7927,51,126,,,,,,36201300,,, +1053,CHN,,Luoyang JGD,,Luoyang (HE),34.660833,112.476111,,10,,8006,56,127,,,,,,49443,,, +1053,J,ja,JOAR CBC Chubu-Nippon Hoso,,Nagoya/Kuwana-Shi (chu-aic),35.044167,136.724167,,50,,9191,39,127,,0000-2400,1234567,9999,,49453,,, +1053,CHN,,Jinan RGD Xinwen,,Jinan/Daqiao (SD),36.791389,117.015556,,10,,8069,52,128,,,,,,49441,,, +1053,CHN,zh,Kaifeng RGD Xin Nongcun,,Kaifeng/Baita (HE),34.769444,114.3975,,10,,8105,55,128,,2225-0600,.....67,,,49442,,, +1053,CHN,zh,Kaifeng RGD Xin Nongcun,,Kaifeng/Baita (HE),34.769444,114.3975,,10,,8105,55,128,,2225-1420,12345..,,,49442,,, +1053,CHN,zh,Jiangsu RGD Wenyi Guangbo,,Nanjing/Gulizhen (JS),31.862533,118.671722,,10,,8601,54,132,,2000-1600,1234567,,,49444,,, +1053,THA,th,Mor. Thor. Bor. Saam-Sip-Song,,Lampang/Fort Surasak Montri (lpg),18.293333,99.516667,,10,,8620,76,132,,,,,,49462,,, +1053,THA,th,Mor. Thor. Bor. Sip-Et 11,,Bangkok/145 Rama V Road (bmp),13.785167,100.524111,,10,,9079,78,134,,0000-2400,1234567,,,49461,,, +1053,CHN,,Zhuozhou RGD,,Zhuozhou (HB),39.483333,115.966667,,1,,7776,51,135,,,,,,36200530,,, +1053,CHN,,Zhumadian JGD,,Zhumadian (HE),32.915,114.021389,,1,,8247,56,139,,,,,,36200531,,, +1053,CHN,zh,CNR 1,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,2025-1805,1234567,,,36200535,,, +1053,CHN,,Hefei RGD Jiaotong,,Hefei/Motancun (AH),31.794111,117.379889,,1,,8536,55,142,,0000-2400,1234567,,,49440,,, +1053,CHN,,Yueyang RGD News,,Yueyang (HN),29.133333,113.116667,,1,,8529,59,142,,,,,,36200533,,, +1053,KOR,,Bubble Jammer,,multiple tx,35.7,127.65,,1,,8713,45,143,,,,,,34600008,,, +1053,PHL,,DYSA-AM R San Agustin,,Iloilo City (ilo),10.716667,122.566667,,5,,10769,63,143,,2100-1500,1234567,,,49458,,, +1053,INS,id,RRI Pro-1,,Jayapura (PA-jyp),-2.584122,140.686861,,10,,13081,54,147,,2000-1100,1234567,,,49452,,, +1053,PHL,,DXKD-AM Radyo Ronda,,Dipolog City (zdn),8.583333,123.35,,1,,11014,63,150,,,,,,49457,,, +1053,AUS,,2CA,,Canberra/Mitchell (ACT),-35.220028,149.148806,,5,,16535,72,162,,0000-2400,1234567,,,49436,,, +1053,AUS,it,Rete Italia,,Brisbane/Tingalpa (QLD),-27.463111,153.123056,,0.5,,16127,58,170,,,,9980,,49435,,, +1053,NZL,,2YP Newstalk ZB,,New Plymouth/Bell Block (TKI),-39.033111,174.131556,,2,,18280,38,171,,0000-2400,1234567,,,49456,,, +1055,BLR,,HN,b,Khojniki (GO),51.854167,29.958333,,0.025,,1606,82,89,,,,,,85851,,, +1055,RUS,,IN,b,Sukhotino,54.604167,37.291667,,0.025,,2051,70,93,,,,8,L394 U410 30.0s,IDx2 + 22 gap,85852,, +1060,UKR,,NM,b,Nemyriv,48.979167,28.875,,0.025,,1618,93,89,,,,0,L1035 U1030 ,IDx2 + 20 gap,85853,, +1060,USA,,WQOM,,Natick (DC) (MA),42.288056,-71.431944,,40,,5692,292,98,,,,,,20016213,,, +1060,USA,en,KYW,i,Philadelphia/Joshua Road (PA),40.103333,-75.248889,,50,,6093,292,101,,,,0,,39878,,, +1060,USA,en,WILB,,Canton (OH),40.834167,-81.43,,15,,6422,297,109,,1200-2400,1234567,,,41748,,, +1060,USA,en,WQOM,,Natick (N) (MA),42.247222,-71.425278,,2.5,,5695,292,110,,,,998,,40865,,, +1060,USA,en,WKNG,,Tallapoosa (GA),33.735,-85.252222,,50,,7222,293,112,,1200-2400,1234567,,,42048,,, +1060,CAN,en,CKMX,,Calgary (AB),50.900556,-113.875,,50,,7266,323,113,,,,10,,36346,,, +1060,USA,,KRCN,,Longmont (D) (CO),40.280833,-104.940278,,50,,7800,311,118,,,,,,20016067,,, +1060,USA,,WHFB,,Benton Harbor-St. Jo (C) (MI),42.078889,-86.466944,,2.5,,6627,301,119,,,,,,20016074,,, +1060,USA,es,WXNC,,Monroe (NC),34.987778,-80.518056,,4,,6822,291,119,,1200-2400,1234567,,,40914,,, +1060,CUB,es,CMGW R 26,,Jovellanos (ma),22.802833,-81.169097,,25,,7866,283,122,,,,9997,,31600018,,, +1060,USA,,WCOK,,Sparta (NC),36.481944,-81.093056,,1.1,,6740,293,124,,,,,,41058,,, +1060,USA,en,WIXC,,Titusville (FL),28.663056,-80.921389,,5,,7361,287,124,,,,,,41823,,, +1060,USA,es,WGSB,,Mebane (NC),36.057778,-79.276667,,1,,6658,291,124,,1200-2400,1234567,,,41563,,, +1060,USA,,KFIL,,Preston (MN),43.680278,-92.141111,,1,,6825,305,125,,,,,,38392,,, +1060,B,pt,ZYJ597 Rdio Tapuyo,,Mossor (RN),-5.207222,-37.313889,,5,,7590,228,126,,,,,,36901777,,, +1060,USA,,WJKY,,Jamestown (KY),37.025278,-85.073056,,1,,6944,296,126,,,,,,41891,,, +1060,USA,en,WNPC,,Newport (TN),35.986111,-83.179444,,1,,6910,294,126,,,,,,42498,,, +1060,USA,,WFLE,,Flemingsburg (KY),38.450278,-83.735,,0.5,,6748,296,127,,,,,,41395,,, +1060,USA,en,KBGN,,Caldwell (ID),43.720278,-116.532778,,10,,8039,320,127,,1400-0200,1234567,9992,,38028,,, +1060,VEN,,YVLN R Guarico,,San Juan de los Morros (gco),9.816667,-67.316667,,10,,8039,263,127,,1030-0330,1234567,,,45368,,, +1060,B,pt,ZYL278 Rdio Grande BH 880,,Pedro Leopoldo (MG),-19.559958,-44.037,,50,,9342,227,128,,,,91,,36901769,,, +1060,USA,,WLNO,,New Orleans (LA),29.879444,-89.9975,,5,,7840,294,128,,,,999,,42197,,, +1060,USA,,KGFX,,Pierre (SD),44.286667,-100.338333,,1,,7215,311,129,,,,,,38474,,, +1060,USA,,KIJN,,Farwell (TX),34.387222,-103.030833,,10,,8219,306,129,,,,,,38599,,, +1060,B,pt,ZYJ495 Rdio Cano Nova,,Nova Iguau (RJ),-22.632528,-43.392544,,30,,9611,225,131,,,,,,36901767,,, +1060,USA,,WRHL,,Rochelle (IL),41.923333,-89.058333,,0.25,,6791,302,131,,,,,,42851,,, +1060,CLM,es,HJFJ RCN Caldas,,Manizales (cal),5.033333,-75.466667,,15,,9012,267,132,,,,6,,37435,,, +1060,DOM,,HIAJ R Amanecer,,San Pedro de Macors (pms),18.466667,-69.866667,,1,,7468,271,132,,,,4,,52239,,, +1060,DOM,es,HIXF R Azua,,Azua de Compostela (azu),18.461778,-70.732669,,1,,7527,272,132,,1000-0200,1234567,,,52238,,, +1060,GUF,,Guyane 1re,,Saint-Laurent-du-Maroni (973),5.5,-54.033333,,1,,7543,249,132,,0000-2400,1234567,,,51730,,, +1060,MEX,es,XEEP-AM R Educacin,,Mxico D.F/Ejrcito de Oriente (dif),19.363983,-99.027142,,20,,9322,294,132,,,,0,,43970,,, +1060,VEN,,YVOE R Noticias AM,,San Cristbal (tch),7.666667,-72.166667,,10,,8556,266,132,,,,,,45405,,, +1060,CLM,es,HJLY R Delfin,,Riohacha (lag),11.566667,-72.816667,,5,,8261,269,133,,,,11,,2215,,, +1060,CLM,es,HJMV R Furatena,,Chiquinquira (boy),5.766667,-73.816667,,10,,8835,266,133,,,,,,37575,,, +1060,CLM,es,HJOV,,Neiva (hui),2.933333,-75.333333,,15,,9187,265,133,,,,,,35901507,,, +1060,EQA,,HCAK2,,Guayaquil (gua),-2.2,-79.9,,25,,9949,266,133,,,,,,36846,,, +1060,PTR,xx,WCGB,,Juana Diaz (PR),17.991111,-66.475556,,0.5,,7277,268,133,,0900-0300,1234567,,,40983,,, +1060,USA,es,KXPL,,El Paso (TX),31.811389,-106.531389,,10,,8643,307,133,,1400-0200,1234567,,,39816,,, +1060,CHL,es,CB106 R.Santa Maria de Guadalupe,,Santiago/Calera de Tango (RM),-33.583328,-70.800997,,100,,12105,239,134,,1000-0500,1234567,,,35722,,, +1060,GTM,,TGT R Favorita,,Ciudad de Guatemala (gut),14.666667,-90.466667,,10,,9185,284,134,,1100-0600,1234567,,,40507,,, +1060,NCG,,YNJJ R Juvenil,,Managua (mng),12.15,-86.316667,,10,,9128,280,134,,,,,,45197,,, +1060,USA,en,KBFL,,Springfield (MO),37.208056,-93.297222,,0.5,,7422,301,134,,,,,,39530,,, +1060,B,pt,ZYH520 Rdio Clube de Itapicuru,,Itapicuru (BA),-11.3,-38.216667,,2.5,,8239,226,135,,,,93,,36901768,,, +1060,USA,en,KKVV,,Las Vegas (NV),36.156111,-115.256667,,5,,8690,315,136,,,,,,38763,,, +1060,USA,es,KRUZ,,Van Buren (AR),35.4275,-94.301389,,0.5,,7631,301,136,,,,,,20016028,,, +1060,DOM,,HIRV R Mar,,San Pedro de Macors (pms),18.466667,-69.266667,,0.25,,7427,271,137,,0900-0300,1234567,,,37295,,, +1060,USA,,KFIT,,Lockhart (TX),30.320278,-97.649722,,2,,8268,300,137,,,,,,38394,,, +1060,B,pt,ZYJ246 Evangelizar AM,,Curitiba (PR),-25.356944,-49.05,,10,,10156,228,138,,,,,,36901765,,, +1060,BOL,,CP57 R Eco Loyola,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1100-0100,1234567,,,36706,,, +1060,VEN,,unid, probably VEN,,,6.5,-66.5,,1,,8275,260,140,,,,28,,2180,, +1060,CLM,es,HJYX,,Sincelejo (suc),9.3,-75.4,,1,,8634,269,142,,,,,,35901506,,, +1060,CLM,es,HJMG R Litoral Caracol,,Turbo (ant),8.116667,-76.566667,,1,,8817,269,143,,,,3,,37565,,, +1060,PNR,es,HOJ60 La Voz de Panam,,Ciudad de Panam/Orillac (pnm),9.024389,-79.515786,,1,,8939,272,143,,1100-0300,1234567,,,37706,,, +1060,CTR,,TILX R Columbia,,Liberia (gnc),10.616667,-85.416667,,1,,9202,278,144,,,,,,52151,,, +1060,CTR,,TILX R Columbia,,San Isidro del General (sjs),9.366667,-83.7,,1,,9194,276,144,,,,,,52150,,, +1060,HND,,HRVW,,Tegucigalpa (fmz),14.083333,-87.016667,,1,,9007,281,144,,,,,,37869,,, +1060,NCG,,La Voz del Atlntico Sur,,Bluefields (ats),12,-83.75,,1,,8968,278,144,,,,,,52208,,, +1060,USA,,KRCN,,Longmont (N) (CO),40.191111,-105.126389,,0.11,,7817,311,145,,,,9998,,39225,,, +1060,HWA,en,KIPA,,Hilo (HI),19.696667,-155.051389,,5,,11830,342,146,,0000-2400,1234567,7,,38529,,, +1060,PRU,,OBU5Q,,Andahuaylas/Cerro San Jose (apu),-13.661722,-73.385897,,2,,10522,254,146,,,,,,37000094,,, +1060,USA,en,KDUS,,Tempe (AZ),33.361944,-111.9675,,0.5,,8788,312,146,,,,9985,,38297,,, +1060,BOL,,R Noticias,,Oruro (oru),-17.966667,-67.116667,,1.5,,10504,246,147,,0200-0600,1234567,,,51988,,, +1060,BOL,,R Noticias,,Oruro (oru),-17.966667,-67.116667,,1.5,,10504,246,147,,1000-2200,1234567,,,51988,,, +1060,EQA,,HCAG6,,Saquisili (cot),-0.8,-78.666667,,0.76,,9742,266,147,,,,,,36841,,, +1060,USA,,KDYL,,South Salt Lake (UT),40.535556,-112.077222,,0.149,,8131,316,147,,,,,,38304,,, +1060,USA,,KNLV,,Ord (NE),41.571389,-98.9225,,0.023,,7371,308,147,,,,,,39000,,, +1060,B,pt,ZYJ830 Rdio Capital,,Florianpolis (SC),-27.491111,-48.528056,,1,,10335,227,148,,,,,,36901761,,, +1060,PRG,,ZP13 R Boqueron,,Alberdi (neb),-26.183333,-58.116667,,1,,10717,235,149,,1000-0300,1234567,5,,45508,,, +1060,PRU,,OCY4D R Exito,,Lima (lim),-12.183333,-77.033333,,1,,10633,257,149,,,,,,40440,,, +1060,BOL,,CP181 R LV de la Frontera,,Puerto Surez (scz),-18.972222,-57.8,,0.5,,10032,238,150,,0900-0230,.....6.,,,36671,,, +1060,BOL,,CP181 R LV de la Frontera,,Puerto Surez (scz),-18.972222,-57.8,,0.5,,10032,238,150,,0900-0300,12345..,,,36671,,, +1060,BOL,,CP181 R LV de la Frontera,,Puerto Surez (scz),-18.972222,-57.8,,0.5,,10032,238,150,,0900-2300,......7,,,36671,,, +1060,USA,,WKMQ,,Tupelo (MS),34.255,-88.69,,0.012,,7392,296,150,,,,,,42045,,, +1060,B,pt,ZYN604 Rdio Imaculada Conceio,,Dourados (MS),-22.196847,-54.841111,,0.5,,10165,234,151,,,,,,36901772,,, +1060,ARG,,R Restauracin,,Llavallol (df),-34.783333,-58.433333,,1,,11524,230,152,,,,27,,1973,,, +1060,B,pt,ZYK307 Rdio Cristal,,Soledade/Morro da Cruz (RS),-28.796111,-52.507222,,0.5,,10660,229,152,,,,,,36901763,,, +1060,B,pt,ZYK533 Rdio Educadora,,Piracicaba/Rua Anita Garibaldi 357 (SP),-22.704667,-47.670247,,0.25,,9831,228,152,,,,,,36901759,,, +1060,B,pt,ZYL306 Rdio Itajub,,Itajub (MG),-22.432125,-45.465261,,0.25,,9693,227,152,,,,,,36901762,,, +1060,USA,,WHFB,,Benton Harbor-St (DN) (MI),42.078889,-86.466667,,0.0013,,6627,301,152,,,,,,41628,,, +1060,USA,en,WPIM383,,Clearwater (FL),27.910958,-82.697889,,0.01,,7539,287,152,,,,,,20010610,,, +1060,B,pt,ZYJ298 Rdio Colorado AM,,Colorado/Rua Santa Matilde (PR),-22.833056,-51.9575,,0.25,,10067,232,153,,,,,,36901773,,, +1060,B,pt,ZYK765 Rdio Universitria de Gara,,Gara (SP),-22.218172,-49.671867,,0.25,,9888,230,153,,,,,,36901774,,, +1060,USA,,WQMV,,Waverly (TN),36.0875,-87.855,,0.004,,7190,297,153,,,,,,42783,,, +1060,B,pt,ZYJ306 Rdio Educadora,,Francisco Beltro (PR),-26.053889,-53.0375,,0.25,,10429,231,154,,,,,,36901770,,, +1060,B,pt,ZYK302 Rdio So Luz,,So Luz Gonzaga (RS),-28.407778,-54.926944,,0.25,,10750,231,155,,,,,,36901764,,, +1060,USA,,WMCL,,McLeansboro (IL),38.104444,-88.563333,,0.002,,7069,299,155,,,,,,42291,,, +1060,B,pt,ZYK220 Rdio Camaqense,,Camaqu (RS),-30.855278,-51.809167,,0.25,,10819,227,156,,,,,,36901775,,, +1060,USA,en,KTNS,,Oakhurst (CA),37.296111,-119.606389,,0.023,,8784,319,159,,,,41,,39520,,, +1062,I,it,RAI R1,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,0500-2300,1234567,0,,866,,, +1062,I,it,RAI Sardegna,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,0620-0630,123456,0,,866,,, +1062,I,it,RAI Sardegna,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,1110-1130,123456,0,,866,,, +1062,I,it,RAI Sardegna,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,1140-1200,......7,0,,866,,, +1062,I,it,RAI Sardegna,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,1730-1800,1234567,0,,866,,, +1062,I,it,RAI Marche,,Ancona/Forte Montagnolo (an),43.594094,13.475006,,6,,1083,148,60,,0620-0630,123456,0,,864,,, +1062,I,it,RAI Marche,,Ancona/Forte Montagnolo (an),43.594094,13.475006,,6,,1083,148,60,,1110-1130,123456,0,,864,,, +1062,I,it,RAI Marche,,Ancona/Forte Montagnolo (an),43.594094,13.475006,,6,,1083,148,60,,1140-1200,......7,0,,864,,, +1062,I,it,RAI R1,,Ancona/Forte Montagnolo (an),43.594094,13.475006,,6,,1083,148,60,,0000-2400,1234567,0,,864,,, +1062,I,it,RAI R1,,Catania/Coda di Volpe (ct),37.384722,15.054439,,20,,1771,154,62,,0000-2400,1234567,,,865,,, +1062,I,it,RAI Sicilia,,Catania/Coda di Volpe (ct),37.384722,15.054439,,20,,1771,154,62,,0620-0655,1234567,,,865,,, +1062,CZE,cs,Country R,,Praha/Zbraslav (PR),49.948181,14.368722,,1,,606,110,63,,0000-2400,1234567,9990,,862,,, +1062,POL,pl,R AM,,Skarżysko-Kamienna/Komin EC (SK),51.107778,20.879722,,0.8,,1004,91,68,,0000-2400,1234567,,,6400031,,, +1062,TUR,ku,TRT 6 Radyo Sese,,Diyarbakir/Cinar (gda-diy),37.819625,40.318347,,100,,3064,108,68,,0400-1500,1234567,1,,873,,, +1062,POL,pl,Twoje R Cmolas,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,0430-0530,123456,,,869,,, +1062,POL,pl,Twoje R Cmolas,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1100-1300,......7,,,869,,, +1062,POL,pl,Twoje R Cmolas,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1530-1630,123456,,,869,,, +1062,POL,pl,Twoje R Puławy,,Puławy/miasto (LU),51.423611,21.974167,,0.8,,1072,88,69,,0600-0700,1234567,,,870,,, +1062,POL,pl,Twoje R Puławy,,Puławy/miasto (LU),51.423611,21.974167,,0.8,,1072,88,69,,1600-1700,1234567,,,870,,, +1062,POL,pl,Twoje R,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,0530-1530,123456,,,869,,, +1062,POL,pl,Twoje R,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1300-0430,......7,,,869,,, +1062,POL,pl,Twoje R,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1630-0430,12345..,,,869,,, +1062,POL,pl,Twoje R,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1630-1100,.....6.,,,869,,, +1062,POL,pl,Twoje R,,Puławy/miasto (LU),51.423611,21.974167,,0.8,,1072,88,69,,0700-1600,1234567,,,870,,, +1062,POL,pl,Twoje R,,Puławy/miasto (LU),51.423611,21.974167,,0.8,,1072,88,69,,1700-0600,1234567,,,870,,, +1062,SRB,sr,R Beograd 1,,Novi Pazar (Srb-rsk),43.13225,20.499447,,1,,1448,128,71,,0000-2400,1234567,,,871,,, +1062,POL,pl,R AM,,Jarosław/Komin ZM Sokołow (PK),50.010833,22.665,,0.5,,1157,95,72,,0000-2400,1234567,,,6400017,,, +1062,IRN,fa,IRIB R Kerman,,Kerman (krm),30.151506,57.046722,,50,,4764,101,88,,0000-2400,1234567,2,,1796,,, +1062,IND,,AIR Northeast,,Pasighat (AR),28.03,95.342222,,10,,7517,73,122,,0025-0430,1234567,,,49471,,, +1062,IND,,AIR Northeast,,Pasighat (AR),28.03,95.342222,,10,,7517,73,122,,0630-0930,1234567,,,49471,,, +1062,IND,,AIR Northeast,,Pasighat (AR),28.03,95.342222,,10,,7517,73,122,,1030-1630,1234567,,,49471,,, +1062,KOR,,HLKQ KBS 1 R,,Cheongju (ccb),36.719444,127.461667,,50,,8608,45,125,,0000-2400,1234567,,,49499,,, +1062,CHN,zh,Zhujiang JGD Pearl R,,Guangzhou/SARFT522 (GD),23.407494,113.240722,,50,,9046,63,127,,0000-2400,1234567,,,49469,,, +1062,CHN,zh,Zhujiang JGD Pearl R,,Zhuhai/GDTS909 (GD),22.38255,113.557286,,50,,9157,63,127,,0000-2400,1234567,,,36200006,,, +1062,PHL,,DZEC-AM,,Obando (bul),14.7075,120.936944,,40,,10302,62,132,,2000-1600,1234567,,,49503,,, +1062,THA,th,Thor. Or. 09,,Udon Thani/Thahan Road (udt),17.386528,102.803333,,10,,8916,74,133,,????-1500,1234567,,,49508,,, +1062,THA,,Sor. Wor. Thor. (R Thailand),,Phuket (puk),7.91,98.389444,,10,,9449,84,135,,2200-1700,1234567,,,49507,,, +1062,TWN,,BCC Local,,Taichung (TC),24.054139,120.681086,,10,,9426,57,135,,0000-2400,1234567,,,49511,,, +1062,CHN,,Qitaihe RGD,,Qitaihe (HL),45.779167,131.041944,,1,,7918,37,136,,,,,,49470,,, +1062,TWN,,Min Li Kuangpo Tientai,,Pingtung/Linluo (PT),22.633889,120.545,,5,,9549,58,139,,,,,,49510,,, +1062,INS,id,R Sangkakala,,Surabaya (JI-ksu),-7.295278,112.761111,,10,,11761,81,143,,2100-1705,1234567,0,,49481,,, +1062,J,,JODM IBC, Iwate Hoso,,Kamaishi (toh-iwa),39.266667,141.9,,1,,8981,33,144,,0000-2400,1234567,,,49485,, +1062,PHL,,DXKI-AM FEBC,,Koronadal=Marbel (sco),6.5,124.833333,,5,,11298,63,144,,2020-0300,1234567,,,49502,,, +1062,TWN,,Cheng Sheng BC,,Yilan (YL),24.753319,121.735689,,1,,9421,56,145,,2055-1800,1234567,,,49509,,, +1062,INS,id,PM3CES R TPI,,Perbaungan (SU-del),3.566667,98.95,,1,,9868,86,147,,,,,,49479,,, +1062,J,,IBC Iwate Hoso,,Tanohata (toh-iwa),39.933333,141.933333,,0.3,,8916,33,149,,0000-2400,1234567,,,49495,,, +1062,INS,id,R Suara PGRI,,Palembang (SS-pal),-2.916667,104.75,,1,,10832,85,150,,,,,,35400137,,, +1062,INS,id,PM4PKD R PTDI Unisa 205,,Semarang (JT-kse),-6.954167,110.459722,,1,,11575,83,152,,,,,,49480,,, +1062,INS,id,R Aji Satria,,Ajibarang (JT-ban),-7.416667,109.066667,,1,,11521,85,152,,,,,,35400052,,, +1062,J,,JOXS STV, Sapporo TV Hoso,,Nemuro (hok),43.35,145.566667,,0.1,,8699,29,153,,0000-2400,1234567,,,49491,, +1062,J,,RAB, Aomori Hoso,,Noheji (toh-aom),40.866667,141.116667,,0.1,,8792,33,153,,0000-2400,1234567,,,49492,, +1062,J,,BSN Niigata Hoso,,Kashiwazaki (chu-nii),37.366667,138.55,,0.1,,9039,37,154,,,,,,49488,,, +1062,J,,BSN Niigata Hoso,,Tokamachi (chu-nii),37.116667,138.733333,,0.1,,9071,37,154,,,,,,49496,,, +1062,J,,CBC Chubu-Nippon Hoso,,Gero (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,0000-2400,1234567,,,49483,,, +1062,J,,CBC Chubu-Nippon Hoso,,Kamioka (chu-gif),36.333333,137.316667,,0.1,,9089,38,154,,0000-2400,1234567,,,49486,,, +1062,J,,JODE BSN Niigata Hoso,,Nagaoka (chu-nii),37.416667,138.833333,,0.1,,9045,36,154,,0000-1500,......7,,,49490,,, +1062,J,,JODE BSN Niigata Hoso,,Nagaoka (chu-nii),37.416667,138.833333,,0.1,,9045,36,154,,0000-2400,123456,,,49490,,, +1062,J,,JODE BSN Niigata Hoso,,Nagaoka (chu-nii),37.416667,138.833333,,0.1,,9045,36,154,,2000-2400,......7,,,49490,,, +1062,J,,JODL IBC, Iwate Hoso,,Maesawa (toh-iwa),39.05,141.116667,,0.1,,8973,34,154,,0000-2400,1234567,,,49489,, +1062,J,,JOFE RKB Mainichi Hoso,,Omuta (kyu-fuk),33.033333,130.433333,,0.1,,9099,45,154,,0000-2400,1234567,,,49493,,, +1062,J,,JOSL SBC, Shinetsu Hoso,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,0000-2400,1234567,,,49497,, +1062,J,,JOXM CRT, Tochigi Hoso,,Ashikaga (kan-toc),36.3,139.5,,0.1,,9183,36,154,,0000-2400,1234567,,,49482,, +1062,J,,NBC, Nagasaki Hoso,,Hirado (kyu-nag),33.383333,129.55,,0.1,,9023,45,154,,0000-2400,1234567,,,49484,, +1062,J,,RKB, RKB Mainichi Hoso,,Yukuhashi (kyu-fuk),33.733333,131.016667,,0.1,,9060,44,154,,0000-2400,1234567,,,49498,, +1062,INS,id,RKPDT2 Tasikmalaya,,Tasikmalaya (JB-tas),-7.333333,108.2,,0.5,,11455,85,155,,,,,,35400053,,, +1062,J,,Tokai Hoso,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,0000-2400,1234567,,,49494,,, +1062,AUS,,4TI ABC Far North QLD,,Torres Strait/Thursday Island (QLD),-10.580306,142.2085,,2,,13931,57,157,,0000-2400,1234567,,,49468,,, +1062,INS,id,R.Cendrawasih Terminal Dangdut Batavia,,Jakarta (JK),-6.183333,106.833333,,0.25,,11261,86,157,,2200-1530,1234567,88,,49474,,, +1062,INS,id,R.Swara Lembah Baliem,,Wamena (PA-jyw),-3.916667,138.733333,,0.5,,13099,57,160,,,,87,,35400054,,, +1062,AUS,en,5MV ABC Riverland,,Renmark/Loxton (Berri) (SA),-34.265356,140.614089,,2,,15896,80,163,,0000-2400,1234567,,,49467,,, +1062,NZL,,R Sport,,Wanganui/Kaitoke (MWT),-39.981944,175.0825,,1,,18412,37,175,,0000-2400,1234567,,,49501,,, +1064,RUS,,L,b,Klin (MO),56.354167,36.708333,,0.025,,2007,64,93,,,,,15.0s,IDx2 + 10 gap,85854,, +1064,RUS,,P,b,Klin (MO),56.354167,36.708333,,0.025,,2007,64,93,,,,,,86812,,, +1065,BLR,,U,b,Vitsebsk/Vostochny (VI),55.145833,30.375,,0.025,,1607,68,89,,,,,,85857,,, +1065,BLR,,W,b,Vitsebsk/Vostochny (VI),55.104167,30.291667,,0.025,,1602,69,89,,,,,,85858,,, +1065,UKR,,HE,b,Kherson / Chernobayevka (KE),46.6875,32.541667,,0.025,,1972,97,93,,,,,,85856,,, +1065,RUS,,D,b,Mozdok (SO),43.770833,44.625,,0.025,,2954,93,103,,,,,15.0s,IDx2 + 11 gap,85855,, +1070,USA,en,WTWK,,Plattsburgh (NY),44.603889,-73.455,,5,,5656,295,107,,,,992,,43237,,, +1070,CAN,en,CHOK,,Sarnia (ON),42.891667,-82.322222,,10,,6319,299,110,,,,987,,36070,,, +1070,USA,,WSCP,,Sandy Creek-Pulaski (NY),43.605278,-76.13,,2.5,,5892,296,112,,,,13,,42967,,, +1070,USA,en,WNCT,,Greenville (NC),35.602222,-77.426389,,10,,6575,290,113,,,,,,42446,,, +1070,USA,en,WBKW,,Beckley (WV),37.755,-81.236667,,10,,6649,294,114,,1200-2400,1234567,,,41822,,, +1070,USA,,KVKK,,Verndale (D) (MN),46.395278,-94.965,,10,,6760,309,115,,,,,,20012580,,, +1070,USA,,WINA,,Charlottesville (VA),38.089444,-78.503889,,5,,6451,292,115,,,,,,41764,,, +1070,USA,en,WFNI,,Indianapolis (IN),39.955833,-86.358333,,10,,6788,299,115,,,,,,41715,,, +1070,USA,,WTSO,,Madison (WI),42.995833,-89.313889,,5,,6720,303,117,,,,,,43218,,, +1070,USA,,KVKK,,Verndale (N) (MN),46.395833,-94.964444,,5,,6760,309,118,,,,,,39633,,, +1070,USA,,WKOK,,Sunbury (PA),40.881667,-76.819722,,1,,6134,294,118,,,,,,42053,,, +1070,USA,en,WFRF,,Tallahassee (FL),30.509444,-84.335278,,10,,7429,290,121,,1200-2400,1234567,,,41433,,, +1070,USA,,WKMB,,Stirling (NJ),40.676389,-74.476667,,0.25,,6002,292,123,,,,,,42041,,, +1070,USA,en,WAPI,,Birmingham (AL),33.551944,-86.911111,,5,,7340,294,123,,,,997,,40735,,, +1070,CUB,es,R Trinchera,,Guantnamo/CTOM1 (gu),20.1419,-75.254311,,10,,7693,276,124,,,,0,,2255,,, +1070,USA,,WDIA,,Memphis (TN),35.268056,-90.0175,,5,,7389,298,124,,,,9982,,41160,,, +1070,USA,,WFLI,,Lookout Mountain (TN),35.045,-85.362222,,2.5,,7122,294,124,,,,,,41397,,, +1070,USA,,WGOS,,High Point (NC),35.916111,-80.016667,,1,,6716,292,124,,,,,,41549,,, +1070,USA,es,WCSZ,,Sans Souci (SC),34.92,-82.456944,,1.5,,6950,292,125,,,,,,41093,,, +1070,VEN,,Contacto 1070,,Ospino (ptg),9.3,-69.45,,25,,8229,265,125,,1000-0400,1234567,,,51682,,, +1070,CAN,,CFAX,,Victoria (BC),48.396944,-123.306944,,10,,7868,327,126,,,,9947,,35934,,, +1070,PTR,,WMIA,,Arecibo (PR),18.459167,-66.755556,,2.5,,7256,269,126,,0925-0200,......7,999,,42324,,, +1070,PTR,,WMIA,,Arecibo (PR),18.459167,-66.755556,,2.5,,7256,269,126,,0925-0400,123456,999,,42324,,, +1070,USA,en,KNX,i,Los Angeles/El Nido (CA),33.859722,-118.348889,,50,,9055,316,127,,,,6,,39038,,, +1070,CUB,es,R Guam,,Guane (pr),22.197833,-84.124033,,10,,8114,284,128,,,,,,36448,,, +1070,USA,,KHMO,,Hannibal (MO),39.629444,-91.375833,,1,,7110,302,128,,,,,,38547,,, +1070,CLM,es,HJAH Emisoras Atlntico,,Barranquilla (atl),10.916667,-74.766667,,20,,8451,270,129,,,,998,,37324,,, +1070,CLM,es,HJCG R Santa F,,Bogot D. C. (bdc),4.583333,-74.066667,,30,,8956,265,129,,,,12,,37369,,, +1070,VEN,,Superior 1070 Biruaca,,San Fernando de Apure (apu),7.833333,-67.5,,10,,8225,262,129,,0930-0400,1234567,,,51683,,, +1070,VEN,,YVMA R Mundial Zulia,,Maracaibo (zul),10.682683,-71.690572,,10,,8261,267,130,,0000-2400,1234567,992,,45377,,, +1070,B,pt,ZYI673 Rdio Difusora Cajazeiras,,Cajazeiras (PB),-6.886847,-38.545383,,2.5,,7819,228,131,,,,,,36901785,,, +1070,USA,en,KNTH,,Houston (TX),29.9925,-95.473056,,5,,8166,298,132,,,,,,38721,,, +1070,CLM,es,HJVR R Red,,Popayn (cau),2.45,-75.616667,,15,,9249,265,133,,,,998,,35901512,,, +1070,USA,en,KLIO,,Wichita (KS),37.761389,-97.333056,,1,,7607,304,133,,,,65,,38436,,, +1070,B,pt,ZYJ483 Rdio Record,,Campos dos Goytacazes (RJ),-21.7945,-41.287706,,10,,9428,224,135,,,,,,36901791,,, +1070,CUB,es,unid, tent.,,,21.7,-79.5,,1,,7848,281,135,,,,95,,2022,, +1070,VEN,,YVPX R El Sol,,La Fria (tch),8.216667,-72.25,,5,,8514,266,135,,,,,,51681,,, +1070,DOM,es,HIBI R 1070,,San Francisco de Macors (dua),19.286819,-70.255561,,0.25,,7425,272,137,,0900-0400,1234567,,,37220,,, +1070,USA,,KWEL,,Midland (TX),31.962222,-102.068611,,2.5,,8380,304,137,,,,,,39703,,, +1070,PNR,es,R Mi Favorita,,El Coco (ccl),8.3925,-80.3525,,3,,9052,273,139,,1030-0300,1234567,,,52323,,, +1070,USA,en,WKII,,Solana (FL),26.893611,-82.050833,,0.233,,7581,286,139,,,,,,42016,,, +1070,GTM,,TGD LV de Occidente,,Quetzaltenango (qzt),14.816667,-91.516667,,3,,9242,285,140,,1200-0400,1234567,,,40489,,, +1070,USA,,KATQ,,Plentywood (MT),48.766944,-104.545278,,0.0495,,7043,316,140,,,,,,37982,,, +1070,USA,,KILR,,Estherville (IA),43.429167,-94.823056,,0.048,,6993,307,140,,,,,,38609,,, +1070,USA,en,WPDD643,,Burtonsville (MD),39.110986,-76.933583,,0.01,,6274,292,140,,,,,,20010615,,, +1070,USA,en,WPDD643,,Damascus (MD),39.294322,-77.211028,,0.01,,6277,293,140,,,,,,20010612,,, +1070,USA,en,WPDD643,,Laytonsville (MD),39.210992,-77.177694,,0.01,,6282,293,140,,,,,,20010613,,, +1070,USA,en,WPDD643,,Rockville (MD),39.110944,-77.0777,,0.01,,6283,292,140,,,,,,20010617,,, +1070,USA,en,WPDD643,,Silver Spring (MD),39.015389,-77.011031,,0.01,,6286,292,140,,,,,,20010614,,, +1070,USA,en,WPDD643,,Silver Spring/Cape May Road (MD),39.094325,-76.997472,,0.01,,6279,292,140,,,,,,20010611,,, +1070,USA,en,WPJY540,,Silver Spring (MD),39.062889,-76.96525,,0.01,,6279,292,140,,,,,,20010616,,, +1070,HND,,HRLP20,,Siguatepeque (cmy),14.566667,-87.766667,,2,,9015,282,141,,,,,,37785,,, +1070,USA,,KBCL,,Bossier City (LA),32.537222,-93.724444,,0.25,,7842,298,141,,,,,,38013,,, +1070,B,pt,ZYI427 Rdio Bandeirantes,,Vrzea Grande (MT),-15.636003,-56.184039,,2.5,,9628,239,142,,,,,,36901779,,, +1070,USA,,KOPY,,Alice (TX),27.7775,-98.081389,,1,,8517,298,142,,,,,,39096,,, +1070,HND,,HRFX,,Juticalpa (ola),14.216667,-86.2,,1,,8940,281,144,,,,,,37754,,, +1070,HND,,HRGR,,El Paraiso (elp),13.85,-86.55,,1,,8996,281,144,,,,,,37758,,, +1070,HND,,HRLE,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37775,,, +1070,NCG,,La Chontalea (FADES),,Santo Tomas (cht),12.066667,-85.083333,,1,,9053,279,144,,,,,,33700012,,, +1070,SLV,,YSAN,,Ahuachapn (ahp),13.916667,-89.833333,,1,,9209,283,144,,,,,,45261,,, +1070,ARG,es,LR1 R El Mundo,,Buenos Aires/San Martn (df),-34.541389,-58.598889,,5,,11511,230,145,,0000-2400,1234567,991,,39921,,, +1070,MEX,es,XESP-AM R Noticias,,San Pedro Tlaquepaque (jal),20.634222,-103.296725,,1,,9470,298,145,,,,,,44764,,, +1070,USA,,WEKT,,Elkton (KY),36.809167,-87.160556,,0.018,,7089,297,145,,,,,,41279,,, +1070,CAN,en,CBUU,,Clinton (BC),51.094444,-121.584722,,0.04,,7547,328,146,,,,,,20109143,,, +1070,EQA,,HCRS1,,Santo Domingo de los Colorados (pic),-0.25,-79.15,,1,,9726,266,146,,,,,,37110,,, +1070,B,pt,ZYK633 Rdio Presidente Prudente,,Presidente Prudente (SP),-22.122056,-51.388861,,1,,9969,232,147,,,,,,36901789,,, +1070,EQA,,HCRT5,,Cuenca (azu),-2.916667,-79,,1,,9951,265,147,,,,,,37115,,, +1070,MEX,es,XEEI-AM,,San Luis Potos (slp),22.152778,-100.973333,,0.5,,9192,297,147,,,,,,43963,,, +1070,EQA,,HCUP1,,Quito (pic),-0.166667,-78.466667,,0.5,,9673,266,149,,,,,,37153,,, +1070,MEX,es,XEIT-AM Exa,,Ciudad del Carmen (cam),18.6675,-91.816944,,0.25,,8923,288,149,,,,,,44182,,, +1070,USA,en,WNVY,,Cantonment (FL),30.579722,-87.288333,,0.028,,7611,293,149,,,,,,42532,,, +1070,B,,ZYI210,,Baixo Guandu (ES),-19.516667,-41.016667,,0.25,,9190,224,150,,,,,,45789,,, +1070,MEX,es,XEOBS-AM R Frmula,,Ciudad Obregn (son),27.492778,-109.945556,,0.25,,9225,307,150,,,,,,44476,,, +1070,B,pt,ZYL355 Patos AM,,Patos de Minas (MG),-18.625661,-46.473919,,0.25,,9375,229,151,,,,,,36901783,,, +1070,MEX,es,XEGY-AM R Lobo,,Tehuacn (pue),18.457097,-97.422083,,0.25,,9302,292,151,,,,,,44092,,, +1070,B,pt,ZYK603 Rdio Piratininga de Ja,,Ja/Chcara Bom Retiro (SP),-22.305833,-48.544444,,0.25,,9837,229,152,,,,,,36901794,,, +1070,B,pt,ZYK615 Rdio Metropolitana Paulista,,Mogi das Cruzes (SP),-23.532,-46.224931,,0.25,,9838,227,152,,,,985,,36901792,,, +1070,B,pt,ZYK758 Rdio Jornal,,Barretos (SP),-20.536661,-48.596922,,0.25,,9670,230,152,,,,,,36901781,,, +1070,B,pt,ZYL316 Rdio do Povo,,Muzambinho (MG),-21.376339,-46.519761,,0.25,,9644,228,152,,,,,,36901784,,, +1070,PRG,,ZP47,,Encarnacin (ita),-27.166667,-56.25,,0.5,,10706,233,152,,,,,,45542,,, +1070,MEX,es,XEAGS-AM Digital 1070,,Acapulco (gue),16.835278,-99.909167,,0.2,,9603,293,153,,,,,,43706,,, +1070,B,pt,ZYJ203 Rdio Unio AM 1070,,Unio da Vitria (PR),-26.203889,-51.051111,,0.25,,10340,229,154,,,,,,36901788,,, +1070,B,pt,ZYJ319 Rdio Super RG,,Guaraniau (PR),-25.091667,-52.875,,0.25,,10330,231,154,,,,,,36901790,,, +1070,B,pt,ZYJ747 Gralha Azul AM,,Urubici (SC),-27.995,-49.586111,,0.25,,10436,227,154,,,,,,36901782,,, +1070,B,pt,ZYK343 Rdio Metrpole,,Crissiumal (RS),-27.511944,-54.089444,,0.25,,10622,231,155,,,,,,36901780,,, +1070,B,pt,ZYK357 Rdio Serrana de Bento AM,,Bento Gonalves/Morro da Vindima (RS),-29.195278,-51.534167,,0.25,,10648,228,155,,,,,,36901787,,, +1070,PRG,,ZP51,,Puerto Triunfo Itap (ita),-26.75,-55.066667,,0.25,,10603,232,155,,,,,,45547,,, +1070,B,pt,ZYK218 Rdio Caapava AM,,Caapava do Sul (RS),-30.521389,-53.483333,,0.25,,10873,229,156,,,,,,36901786,,, +1071,G,en,TalkSPORT,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0000-2400,1234567,0,,877,,, +1071,G,en,TalkSPORT,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,1,,613,304,63,,0000-2400,1234567,0,,878,,, +1071,SYR,ar,Al Nour R,,Tartus/Amrit (tat),34.842769,35.905533,,100,,3022,118,67,,0000-2400,1234567,9996,,882,,, +1071,EGY,ar,ERTU Al-Kebar R,,Abu Za'bal (qlb),30.268794,31.363919,,100,,3171,130,69,,0300-1500,1234567,126,,876,,, +1071,EGY,ar,ERTU Nahr al-Nyl,,Abu Za'bal (qlb),30.268794,31.363919,,100,,3171,130,69,,1700-2300,1234567,126,,876,,, +1071,I,it,R Marina,,unknown (ve),45.433333,12.433333,,0.15,,863,147,74,,????-????,9999999,79,,4000036,,, +1071,IRN,fa,IRIB R Ma'aref,,Qom=Kum (qom),34.765931,50.882931,,100,,3992,101,77,,0000-2400,1234567,8,,879,,, +1071,GRC,el,unid,,unknown,38.4,24.65,,1,,2077,130,78,,,,,,3400055,,, +1071,ALG,ar,Chane 1,,Illizi (33),26.508333,8.4725,,5,,2852,176,79,,0000-2400,1234567,,,200007,,, +1071,ARS,ar,BSKSA Idha'atu-i Riyadh,,Bisha=Qal'at Bishah (asr),19.834222,42.616528,,50,,4757,125,88,,0300-2300,1234567,,,10600009,,, +1071,IND,bc,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,1500-1600,1234567,989,,32200048,,, +1071,IND,sd,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,0100-0200,1234567,989,,32200048,,, +1071,IND,sd,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,1230-1500,1234567,989,,32200048,,, +1071,IND,ur,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,0015-0100,1234567,989,,32200048,,, +1071,IND,ur,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,0200-1230,1234567,989,,32200048,,, +1071,IND,ur,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,1600-1930,1234567,989,,32200048,,, +1071,CHN,ug,rmqi RGD,,rmqi/Hongguangshan (XJ),45.886389,87.602222,,100,,5648,63,94,,2350-1550,1234567,,,49524,,, +1071,IRQ,,R Babil,,Hillah (bbl),32.5,44.416667,,1,,3745,111,94,,,,,,880,,, +1071,YEM,ar,YGCRT Ta'izz R,,Ta'izz (taz),13.638053,44.120928,,30,,5430,128,97,,0300-2300,1234567,,,884,,, +1071,SSD,,Southern Sudan R,,Wau=Waw (wbg),7.685033,27.995417,,5,,5317,151,103,,,,,,47146,,, +1071,CHN,zh,Tianjin RGD Jingji Guangbo,,Yangliuqing (TJ),39.136539,117.025064,,50,,7862,50,119,,2200-1800,1234567,,,49523,,, +1071,CHN,,Baoji RGD,,Baoji/Xiamaying (SA),34.344167,107.231111,,10,,7729,60,124,,,,,,49519,,, +1071,BOT,,R Botswana,,Jwaneng (so),-24.615406,24.737211,,25,,8716,163,129,,0000-2400,1234567,,,2459,,, +1071,J,,JOFK NHK1,,Hiroshima (chg-hir),34.435833,132.47,,20,,9060,42,131,,0000-2400,1234567,,,49530,,, +1071,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Ningming (GX),22.120278,106.999167,,10,,8773,68,133,,,,,,36200203,,, +1071,CHN,,Hengyang RGD,,Hengyang (HN),26.883333,112.616667,,10,,8699,61,133,,,,,,49521,,, +1071,CHN,,Zhejiang RGD Dongting Jiu-Liu-Ba,,Hangzhou/Gouzhuang (ZJ),30.379444,120.092222,,10,,8814,54,133,,2200-1600,1234567,,,49520,,, +1071,THA,th,Neung Por. Nor.,,Tak (tak),16.883333,99.133333,,10,,8716,77,133,,,,,,49539,,, +1071,CHN,,Anshan JGD,,Anshan (LN),41.116667,122.966667,,2,,7985,45,134,,,,,,49518,,, +1071,J,ja,JOWM STV Sapporo TV Hoso,,Obihiro (hok),42.955833,143.196111,,5,,8658,31,136,,0000-2400,1234567,,,49531,,, +1071,CHN,,Suzhou RGD,,Suzhou (AH),33.633333,116.983333,,1,,8349,54,140,,,,,,36200529,,, +1071,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Napo (GX),23.733333,106.816667,,1,,8620,67,142,,2200-1600,1234567,,,49517,,, +1071,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Qinzhou/GXTS245 (GX),21.966667,108.616667,,1,,8888,67,143,,,,,,36200204,,, +1071,PHL,,DXKT-AM,,Davao City (dvs),7.05,125.583333,,5,,11292,62,144,,,,,,49535,,, +1071,TWN,,Tien Sheng Kuangpo Tientai,,Tainan (TN),22.942222,120.310756,,1,,9507,58,145,,2130-1825,123456,,,49540,,, +1071,TWN,,Tien Sheng Kuangpo Tientai,,Tainan (TN),22.942222,120.310756,,1,,9507,58,145,,2220-1555,......7,,,49540,,, +1071,INS,id,RSP-R Swara Pacitan,,Pacitan (JI-pac),-8.2,111.116667,,1,,11729,83,153,,,,,,35400056,,, +1071,AUS,,6WB R West,,Katanning (WA),-33.647222,117.499911,,2,,14278,98,158,,,,,,49514,,, +1071,AUS,,3EL Easymix,,Maryborough/Carisbrook (VIC),-37.043,143.817361,,5,,16318,80,161,,0000-2400,1234567,,,49516,,, +1071,AUS,en,4SB Heart 1071,,Kingaroy/Wooroolin (QLD),-26.400889,151.827083,,2,,15956,59,164,,0000-2400,1234567,9979,,49515,,, +1071,NZL,en,RNZ National,,Masterton/Waingawa (WGN),-40.964722,175.589167,,2.5,,18528,38,171,,0000-2400,1234567,,,49534,,, +1071,NZL,,LiveSPORT,,Ashburton/Winchmore (CAN),-43.804167,171.704167,,1,,18587,56,175,,,,,,49533,,, +1075,UKR,,TE,b,Ternopil (TE),49.520833,25.625,,0.025,,1376,94,87,,,,,L1020 U1070 ,IDx2,86813,, +1075,UKR,,TN,b,Ternopil (TE),49.520833,25.708333,,0.025,,1382,94,87,,,,,U1056 ,85859,,, +1075,BOL,,CP173 R Agricultura,,Portachuelo (scz),-17.35,-63.4,,0.5,,10218,244,151,,1000-0400,1234567,,,51989,,, +1080,E,es,SER,,Huesca/Estrecho Quinto (ARA-HU),42.146111,-0.427778,,5,,1221,208,62,,0000-2400,1234567,,,887,,, +1080,RUS,ru,R Mordovii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0310-0400,12345..,0,,895,,, +1080,RUS,ru,R Mordovii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0410-0500,12345..,0,,895,,, +1080,RUS,ru,R Rossii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0100-0310,12345..,0,,895,,, +1080,RUS,ru,R Rossii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0300-2100,.....67,0,,895,,, +1080,RUS,ru,R Rossii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0400-0410,12345..,0,,895,,, +1080,RUS,ru,R Rossii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0500-2100,12345..,0,,895,,, +1080,E,es,SER,,Palma/Marratx (BAL-ML),39.63345,2.668189,,5,,1417,193,64,,0000-2400,1234567,999,,888,,, +1080,E,es,SER,,Granada (AND-GR),37.194917,-3.5845,,10,,1833,209,65,,0000-2400,1234567,,,886,,, +1080,E,es,Onda Cero,,Toledo/Mirador del Greco (CAM-TO),39.898011,-4.040314,,5,,1576,215,66,,0000-2400,1234567,998,,889,,, +1080,E,es,SER,,La Corua/Elvia (GAL-C),43.328122,-8.406278,,2,,1472,234,69,,0000-2400,1234567,,,885,,, +1080,ISR,ar,IBA Reshet Dalet (D),,Tel Aviv/Yavne (tav),31.902972,34.756972,,100,,3207,123,69,,0000-2400,1234567,9995,,814,,, +1080,IRN,ar,IRIB WS,,Bandar-e Mahshahr (kuz),30.612667,49.201667,,300,230,4207,108,74,,1630-0230,1234567,20,,891,,, +1080,EGY,ar,ERTU Al-Barnameg al-Aam,,Al-Minya=Menya (mny),28.057778,30.800194,,10,,3351,133,81,,0300-2400,1234567,,,1837,,, +1080,EGY,ar,ERTU Al-Barnameg al-Aam,,Al-Uqsur=Luxor (uqr),25.591417,32.561819,,10,,3676,133,84,,0300-2400,1234567,,,1838,,, +1080,RUS,,AR,b,Buzharovo,55.979167,36.791667,,0.025,,2012,66,93,,,,2,L1021 U1025 24.9s,IDx3,85861,, +1080,RUS,zh,Voice of Russia,,Angarsk/RV489 (IR),52.411361,103.682817,,250,195,6082,48,94,,1000-1400,1234567,,,46921,,, +1080,ARS,ar,BSKSA Idha'atu-i Jeddah,,Najran (njn),17.587511,44.061192,,20,,5050,125,95,,0300-2200,1234567,,,47083,,, +1080,PAK,,NBS News,,Lahore 2 (pjb),31.400833,74.154167,,50,,5830,85,98,,0200-0400,1234567,,,49572,,, +1080,PAK,,NBS News,,Lahore 2 (pjb),31.400833,74.154167,,50,,5830,85,98,,1300-1800,1234567,,,49572,,, +1080,PAK,,PBC Saut-ul Quran/NBS News,,Lahore 2 (pjb),31.400833,74.154167,,50,,5830,85,98,,1230-1705,1234567,,,49572,,, +1080,USA,,WTIC,i,Hartford (CT),41.7775,-72.805278,,50,,5816,292,98,,,,0,,43136,,, +1080,IND,,All India R GOS,D,Rajkot (GJ),22.501528,70.5185,,130,300,6299,96,99,,0015-0430,1234567,,,32200049,,, +1080,IND,,All India R GOS,D,Rajkot (GJ),22.501528,70.5185,,130,300,6299,96,99,,0830-1130,1234567,,,32200049,,, +1080,IND,,All India R GOS,D,Rajkot (GJ),22.501528,70.5185,,130,300,6299,96,99,,1230-1930,1234567,,,32200049,,, +1080,USA,,WWNL,,Pittsburgh (PA),40.604722,-79.960278,,50,,6349,296,104,,,,,,43412,,, +1080,ETH,,R Fana,,Addis Abeba (aab),9.018889,38.719722,,3,,5613,137,108,,0330-0530,1234567,,,46835,,, +1080,ETH,,R Fana,,Addis Abeba (aab),9.018889,38.719722,,3,,5613,137,108,,1500-2000,1234567,,,46835,,, +1080,KRE,,KCBS Chosun Jungang Pangsong,,Haeju (hwn),38.019056,125.725639,,1500,123,8403,45,109,,2000-1500,1234567,408,,49566,,, +1080,BGD,,Bangladesh Betar,,Rajshahi (rjs),24.365125,88.639956,,100,,7377,80,111,,0000-0400,1234567,,,49546,,, +1080,BGD,,Bangladesh Betar,,Rajshahi (rjs),24.365125,88.639956,,100,,7377,80,111,,0600-1710,1234567,,,49546,,, +1080,CHN,en,China R Int.,,Xuanwei/SARFT726 (YN),26.145111,104.0305,,600,185,8235,68,112,,1600-1800,1234567,,,49551,,, +1080,CHN,lo,China R Int.,,Xuanwei/SARFT726 (YN),26.145111,104.0305,,600,185,8235,68,112,,1430-1530,1234567,,,49551,,, +1080,CHN,th,China R Int.,,Xuanwei/SARFT726 (YN),26.145111,104.0305,,600,185,8235,68,112,,1130-1230,1234567,,,49551,,, +1080,CHN,th,China R Int.,,Xuanwei/SARFT726 (YN),26.145111,104.0305,,600,185,8235,68,112,,1330-1430,1234567,,,49551,,, +1080,USA,es,WFTD,,Marietta (GA),34.023333,-84.668056,,50,,7162,293,112,,1200-2400,1234567,,,41443,,, +1080,USA,,WKJK,,Louisville (D) (KY),38.308056,-85.829167,,10,,6888,297,116,,,,9862,,20016041,,, +1080,USA,en,WALD,,Johnsonville (SC),33.91,-79.669167,,9,,6853,290,116,,1200-2400,1234567,,,40692,,, +1080,USA,,WKGX,,Lenoir (NC),35.910556,-81.559722,,5,,6814,293,118,,,,,,42011,,, +1080,USA,,WUFO,,Amherst (NY),42.946111,-78.828611,,1,,6105,297,118,,,,,,43256,,, +1080,ALS,en,KOAN,,Anchorage (AK),61.12,-149.895278,,10,,7250,348,120,,0000-2400,1234567,999,,39566,,, +1080,HTI,,R Nationale,,Port-au-Prince/Sarthes (oue),18.566667,-72.283333,,20,,7624,273,120,,,,,,35653,,, +1080,USA,,WNWI,,Oak Lawn (IL),41.643333,-87.645833,,2.6,,6731,301,120,,,,,,42535,,, +1080,USA,en,KRLD,,Dallas (TX),32.890278,-96.645556,,50,,7986,301,120,,,,0,,39260,,, +1080,USA,,WOAP,,Owosso (MI),43.030833,-84.178056,,1,,6419,300,121,,,,,,42550,,, +1080,USA,en,WYHY,,Cannonsburg (KY),38.386111,-82.698056,,1.8,,6690,295,121,,,,125,,42585,,, +1080,USA,,WKAC,,Athens (AL),34.836944,-86.974444,,5,,7239,295,122,,,,,,41949,,, +1080,USA,,WWDR,,Murfreesboro (NC),36.44,-77.136111,,0.93,,6491,290,122,,,,,,43368,,, +1080,USA,,WKBY,,Chatham (VA),36.781667,-79.391389,,1,,6609,292,123,,,,,,41970,,, +1080,USA,en,WHIM,,Coral Gables (FL),25.748056,-80.546389,,10,,7578,284,123,,,,1,,43287,,, +1080,USA,,KYMN,,Northfield (D) (MN),44.486667,-93.105556,,1,,6814,307,125,,,,,,39858,,, +1080,VEN,,YVQJ R Barcelona,,Barcelona (azg),10.111792,-64.725722,,10,,7838,261,125,,,,996,,45428,,, +1080,USA,,WKJK,,Louisville (N) (KY),38.307778,-85.829167,,1,,6888,297,126,,,,,,42025,,, +1080,VEN,,YVNR R Venezuela,,Maracay (arg),10.1,-67.6,,10,,8033,264,127,,0000-2400,1234567,997,,45398,,, +1080,B,pt,ZYI549 Rdio Novo Tempo,,Belm (PA),-1.367739,-48.431633,,5,,7833,240,128,,,,,,36901809,,, +1080,CUB,es,R Cadena Habana,,Villa Mara (ch),23.1,-82.283333,,5,,7915,284,129,,,,15,,31600047,,, +1080,USA,,KFXX,,Portland (OR),45.558333,-122.4825,,9,,8110,325,129,,,,9989,,38446,,, +1080,USA,,KSLL,,Price (UT),39.561944,-110.776667,,10,,8157,314,129,,,,111,,39381,,, +1080,USA,,WRYT,,Edwardsville (IL),38.799444,-89.9,,0.5,,7091,300,131,,,,,,42942,,, +1080,CHN,,Xinjiang RGD,,unknown (XJ),34.95,104.5,,1,,7515,61,132,,,,,,49547,,, +1080,CLM,es,HJJS,,La Dorada (cal),5.5,-74.666667,,15,,8916,266,132,,,,,,37515,,, +1080,THA,th,Wor. Por. Thor. 10,,Chiang Rai/Fort Mengrai Maharat (cri),19.906117,99.813944,,10,,8500,75,132,,,,,,49580,,, +1080,USA,,KYMO,,East Prairie (MO),36.796944,-89.355278,,0.5,,7223,298,132,,,,,,39859,,, +1080,CHN,,Suzhou RGD,,Suzhou (JS),31.412778,120.693056,,10,,8752,52,133,,2020-1630,1234567,,,49553,,, +1080,CLM,es,HJAW,,Montera (cor),8.816667,-75.816667,,10,,8705,269,133,,,,,,37338,,, +1080,CLM,es,HJMH Meloda AM,,Floridablanca (sat),7.033333,-73.066667,,10,,8673,266,133,,,,,,37622,,, +1080,KOR,ko,HLAT MBC,,Yeosu/Sinwol (jen),34.730556,127.742222,,10,,8808,46,133,,0000-2400,1234567,,,49569,,, +1080,THA,th,Wor. Por. Thor. 9,,Nakhon Sawan/Fort Jiraprawat (nsn),15.670833,100.127778,,10,,8888,77,133,,2030-1700,1234567,,,49581,,, +1080,CLM,es,HJJF R Eco,,Cali (val),3.466667,-76.516667,,10,,9221,267,134,,,,927,,37506,,, +1080,CLM,es,HJKT R Autntica,,Villavicencio (met),4.2,-73.666667,,10,,8962,265,134,,,,955,,37533,,, +1080,SLV,es,YSME R CRET,,San Salvador (ssl),13.65,-89.2,,10,,9190,283,134,,,,96,,45271,,, +1080,USA,,KVNI,,Coeur D'Alene (ID),47.616389,-116.719722,,1,,7684,323,134,,,,,,39643,,, +1080,PTR,,WLEY,,Cayey (PR),18.115278,-66.141111,,0.25,,7243,268,135,,0000-2400,1234567,,,42158,,, +1080,USA,,KOAK,,Red Oak (IA),41.0175,-95.205,,0.25,,7213,305,135,,,,,,39044,,, +1080,EQA,,HCVH6,,Latacunga (cot),-0.916667,-78.566667,,10,,9745,265,136,,,,,,37167,,, +1080,KOR,,AFN Korea-Thunder AM,,Daegu/Camp Walker (dae),35.838611,128.587778,,5,,8745,44,136,,0000-2400,1234567,,,49567,,, +1080,THA,th,Wor. Por. Thor. 16,,Yala/35 Sukyang Road (yla),6.542222,101.281667,,10,,9765,82,136,,2300-1330,1234567,,,49582,,, +1080,USA,,KSCO,,Santa Cruz (CA),36.961944,-121.980833,,5,,8921,321,136,,,,16,,39331,,, +1080,B,pt,ZYH708 Rdio Capital,,Braslia (DF),-15.814344,-47.997075,,5,,9184,232,137,,,,,,36901810,,, +1080,CTR,,TIFC Faro del Caribe,,San Jos (sjs),9.916667,-84.066667,,5,,9171,277,137,,0000-2400,1234567,,,40577,,, +1080,EQA,,HCFD2 Sistema Dos,,Guayaquil (gua),-2.2,-79.9,,10,,9949,266,137,,,,13,,36934,,, +1080,B,pt,ZYI784 Rdio Jornal,,Caruaru (PE),-8.265883,-35.991575,,0.5,,7829,225,138,,,,,,36901811,,, +1080,CHN,,Shantou RGD News,,Shantou=Swatow (GD),23.401944,116.636344,,5,,9250,60,138,,2200-1600,1234567,,,49552,,, +1080,PHL,,DWIN-AM Radyo Agila (r:DZEC 1062),,Dagupan City (pgs),16.020278,120.328889,,10,,10145,62,138,,2200-1400,1234567,,,49575,,, +1080,PRU,,OBX1D R San Miguel,,Piura (piu),-5.2,-80.616667,,10,,10261,264,138,,,,,,40446,,, +1080,USA,,KNDK,,Langdon (ND),48.785833,-98.366111,,0.045,,6742,313,138,,,,,,38973,,, +1080,USA,en,WHOO,,Kissimmee (FL),28.341667,-81.340556,,0.19,,7414,287,138,,,,,,41678,,, +1080,B,pt,ZYK280 Universidade Rio Grande do Sul AM,,Guaba (RS),-30.055878,-51.334747,,10,,10720,227,139,,,,,,36901806,,, +1080,PRU,es,OAU4I R La Luz,,Lima (lim),-12.116667,-77.066667,,10,,10629,257,139,,,,996,,40306,,, +1080,B,pt,ZYH670 Rdio Cultura,,Quixad (CE),-4.957267,-39.027494,,0.25,,7654,230,140,,,,,,36901813,,, +1080,B,pt,ZYL232 Rdio Cultura,,Dores do Indai (MG),-19.480442,-45.593222,,2.5,,9413,228,141,,,,,,36901802,,, +1080,SLV,es,YSIM R CRET,,San Miguel/Hacienda Agua Fra (smg),13.508328,-88.1686,,1.5,,9134,282,142,,,,,,45272,,, +1080,ARG,es,LW4 R Orn/R Mara,,San Ramn de la Nueva Orn (sa),-23.130756,-64.2917,,5,,10796,241,143,,1000-0600,1234567,,,40262,,, +1080,CHN,,Zhejiang zhi Sheng,,Shengsi (ZJ),30.716667,122.45,,1,,8911,52,143,,,,,,36200527,,, +1080,CHN,,Zhejiang zhi Sheng,,Xiangshan (ZJ),29.8,120.35,,1,,8881,54,143,,2130-1605,1234567,,,49548,,, +1080,CLM,es,HJAX La 1080,,Medelln (ant),6.266667,-75.566667,,1,,8910,268,143,,,,7,,37404,,, +1080,HND,,HRID,,Tela (atl),15.766667,-87.5,,1,,8892,283,143,,,,,,37770,,, +1080,PHL,,DYBH-AM (r:666 DZRH-AM),,Bacolod City (noc),10.683333,122.966667,,5,,10796,62,143,,,,,,49573,,, +1080,PNR,es,HOJ24 R.Mundo Internacional,,Juan Daz (pnm),9.030522,-79.427858,,1,,8933,272,143,,0000-2400,1234567,,,37694,,, +1080,USA,,KGVY,,Green Valley (AZ),31.929167,-110.996389,,1,,8871,310,143,,,,,,38521,,, +1080,B,pt,ZYH470 Suba AM,,Feira de Santana (BA),-12.266667,-38.988056,,0.5,,8373,226,144,,,,,,36901807,,, +1080,CHN,,Zhejiang zhi Sheng,,Aojiang (ZJ),27.583333,120.6,,1,,9097,55,144,,,,,,36200528,,, +1080,CHN,,Zhejiang zhi Sheng,,Pingyang (ZJ),27.666667,120.566667,,1,,9088,55,144,,,,,,36200005,,, +1080,GTM,,TGLU R Viva,,Zacapa (zcp),14.966667,-89.516667,,1,,9096,284,144,,,,,,40509,,, +1080,HND,,HRXN,,Choluteca (cho),13.366667,-87.166667,,1,,9079,281,144,,,,,,37872,,, +1080,MEX,es,XEDY-AM R Gallo,,San Luis Ro Colorado (son),32.460878,-114.817389,,1,,9017,313,144,,,,,,34900009,,, +1080,NCG,,YNLC R 15 de Septiembre,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,,,,,52209,,, +1080,PHL,,DXRH-AM,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,,,,,49578,,, +1080,ARG,es,R Departamento Minas,,Andacollo (nq),-37.184811,-70.664111,,10,,12405,237,145,,1000-2300,1234567,,,51824,,, +1080,USA,,KYMN,,Northfield (N) (MN),44.486667,-93.105278,,0.011,,6814,307,145,,,,,,20012596,,, +1080,B,pt,ZYK704 Rdio Monumental,,Aparecida/Santa Terezinha (SP),-22.836111,-45.230556,,1,,9721,226,146,,,,,,36901798,,, +1080,B,pt,ZYK710 Rdio Alvorada,,Cardoso (SP),-20.07415,-49.919172,,1,,9696,232,146,,,,,,36901799,,, +1080,HWA,en,KWAI,,Honolulu (HI),21.294722,-157.863611,,5,,11711,345,146,,0000-2400,1234567,2,,39683,,, +1080,MEX,es,XEJLV-AM,,Puerto Vallarta (jal),20.653106,-105.234939,,1,,9584,299,146,,,,,,44214,,, +1080,ARG,,LU3 R del Sur,,Baha Blanca (ba),-38.716667,-62.266667,,5,,12079,230,147,,0900-0400,1234567,,,40225,,, +1080,EQA,,HCAB4,,Eco (man),-0.95,-80.733333,,1,,9896,267,147,,,,,,36833,,, +1080,B,pt,ZYL251 Rdio Capital,,Juiz de Fora (MG),-21.722917,-43.319883,,0.5,,9518,225,148,,,,96,,36901808,,, +1080,MEX,es,XEAX-AM Magia,,Oaxaca (oax),17.076667,-96.701944,,0.5,,9379,291,148,,,,,,43748,,, +1080,MEX,es,XECN-AM Los 40 Principales,,Irapuato (gua),20.700922,-101.339836,,0.5,,9345,296,148,,1200-0600,1234567,,,43856,,, +1080,PRU,,OAX7S R Salkantay,,Cusco (cus),-13.5,-72,,1,,10417,253,148,,,,,,40350,,, +1080,B,pt,ZYH485 Rdio Fascinaco,,Itapetinga (BA),-15.260556,-40.239444,,0.25,,8731,226,149,,,,,,36901803,,, +1080,BOL,,CP291 R Dif. Colosal,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,0900-0300,1234567,,,51990,,, +1080,KOR,,AFN Korea-Thunder AM,,Waegwan/Camp Carroll (gsb),35.989722,128.415,,0.25,,8722,44,149,,0000-2400,1234567,,,49568,,, +1080,MEX,es,XEUU-AM La Mejor,,Colima (col),19.222589,-103.717567,,0.5,,9623,297,149,,1200-0600,1234567,,,44933,,, +1080,PHL,,DWRL-AM,,Legazpi City (aby),13.133333,123.733333,,1,,10615,60,149,,,,,,49576,,, +1080,PRG,es,ZP25 Monumental AM,,Luque (cet),-25.232461,-57.636292,,1,,10603,235,149,,0800-0300,1234567,,,45520,,, +1080,B,pt,ZYK669 RBN-Rdio Boa Nova,,Sorocaba/Rua Ruth Simo 267 (SP),-23.53495,-47.479733,,0.5,,9901,228,150,,,,,,36901804,,, +1080,MEX,es,XEDY-AM R Gallo,,Ciudad Morelos (bcn),32.633611,-114.845278,,0.25,,9002,313,150,,1200-0700,1234567,47,,43947,,, +1080,PHL,,DXKS-AM,,Surigao City (sdn),9.783333,125.483333,,1,,11031,61,150,,,,,,49577,,, +1080,B,pt,ZYJ201 Rdio Clube Pontagrossense,,Ponta Grossa (PR),-25.051667,-50.118056,,0.5,,10182,229,151,,,,,,36901805,,, +1080,INS,id,R Citra Barito,,Muara Teweh (KT),-0.95,114.883333,,1,,11340,76,151,,,,,,35400059,,, +1080,INS,id,R JIC,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,2030-1700,1234567,,,35400138,,, +1080,INS,id,RRI Pro-1,,Singaraja (BA),-8.153889,115.036111,,2,,11990,80,151,,2100-1600,1234567,0,,49563,,, +1080,MEX,es,XETUL-AM R Mexiquense,,Tultitln de Mariano Escobedo (mex),19.68025,-99.1031,,0.25,,9298,294,151,,,,997,,44868,,, +1080,ARG,es,R Claridad,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,33000081,,, +1080,B,pt,ZYI437 Rdio Gaspar,,Itiquira (MT),-17.208231,-54.126667,,0.25,,9656,236,152,,,,,,36901800,,, +1080,B,pt,ZYK557 Rdio Difusora Batatais AM,,Batatais (SP),-20.916744,-47.576117,,0.25,,9653,229,152,,,,,,36901812,,, +1080,B,pt,ZYK607 Rdio Alvorada,,Lins/Av Tiradentes (SP),-21.684322,-49.750594,,0.25,,9841,231,152,,,,,,36901814,,, +1080,MEX,es,XEPAB-AM,,La Paz (bcs),24.161389,-110.345556,,0.25,,9556,305,152,,,,,,44527,,, +1080,MRA,,KCNM,,Saipan/Chalan Kiya (MP),15.157778,145.718056,,1.1,,11572,40,152,,0000-2400,1234567,910,,38184,,, +1080,B,,ZYJ261,,Cornlio Procpio (PR),-23.166667,-50.466667,,0.25,,10020,230,153,,,,,,45986,,, +1080,B,pt,ZYJ245 Rdio Cultura,,Paranava (PR),-23.075,-52.423333,,0.25,,10115,232,153,,,,,,36901796,,, +1080,CHL,,CA108 R Rio Elqui,,Vicuna (CO),-30.016667,-70.716667,,1,,11791,241,153,,,,,,35671,,, +1080,B,pt,ZYJ759 RCI-Rdio Clube de Indaial,,Indaial (SC),-26.872222,-49.250833,,0.25,,10311,228,154,,,,,,36901797,,, +1080,INS,id,R Suara Victory,,Makassar (SN-mak),-5.15,119.433333,,1,,12016,75,154,,,,,,48953,,, +1080,B,pt,ZYK254 Rdio Marab AM,,Ira (RS),-27.206944,-53.255556,,0.25,,10550,230,155,,,,,,36901795,,, +1080,CHL,,CD108 R Los Confines,,Angol (AR),-37.7,-72.65,,1,,12563,238,155,,1100-0300,1234567,,,35849,,, +1080,AUS,en,6IX,,Perth/Ascot Waters (WA),-31.934742,115.915567,,2,,14040,97,157,,0000-2400,1234567,995,,49545,,, +1080,AUS,,7TAB Tote Sport R.,,Hobart/Sandford (TAS),-42.937611,147.510083,,5,,16964,86,163,,0000-2400,1234567,,,49544,,, +1080,NZL,,1ZB Newstalk ZB,,Auckland/Henderson (AUK),-36.844383,174.631153,,10,,18083,33,164,,0000-2400,1234567,,,49571,,, +1080,AUS,,2MO,,Gunnedah (NSW),-30.983889,150.213056,,2,,16259,66,165,,0000-2400,1234567,,,49543,,, +1083,UKR,,AU,b,Auly,48.5625,34.208333,,0.025,,1999,90,93,,,,27,U1020 ,ID+6 gap,85862,, +1084,RUS,,HU,b,Lyamino,61.270833,71.791667,,0.025,,3938,49,112,,,,,,85863,,, +1086,POL,,S,b,Bydgoszcz / Szwederowo,53.104167,18.041667,,0.025,,792,77,81,,,,0,L1020 U1020 ,85864,,, +1088,AGL,pt,RNA Canal A,,Mulenvos/Baixo (lua),-8.852056,13.317083,,25,,6811,172,111,,0000-2400,1234567,9987,,2203,,, +1089,G,en,TalkSPORT,,Brookmans Park/North T aerial (EN-HTS),51.73,-0.178611,,400,,454,267,36,,0000-2400,1234567,0,,907,,, +1089,G,en,TalkSPORT,,Moorside Edge (EN-WYK),53.63525,-1.8945,,400,,582,290,37,,0000-2400,1234567,0,,906,,, +1089,G,en,TalkSPORT,,Westerglen (SC-STL),55.975556,-3.816111,,130,,793,307,44,,0000-2400,1234567,0,,905,,, +1089,G,en,TalkSPORT,,Washford (EN-SOM),51.161389,-3.347944,,80,,681,265,45,,0000-2400,1234567,,,904,,, +1089,RUS,ru,Vesti FM,,Tbilisskaya/RV681 (KD),45.463708,40.095389,,1200,,2550,93,52,,0000-2400,1234567,9997,,908,,, +1089,G,en,TalkSPORT,,Lisnagarvey (NI-ANT),54.490833,-6.060833,,13,,869,293,55,,0000-2400,1234567,,,903,,, +1089,RUS,ru,R Teos,,Krasny Bor/RV1433 (LE),59.653083,30.709,,50,,1718,51,57,,0500-1300,12345..,0,,909,,, +1089,G,en,TalkSPORT,,Aberdeen/Redmoss (SC-ABC),57.113583,-2.094583,,2.2,,780,319,61,,0000-2400,1234567,12,,902,,, +1089,G,en,TalkSPORT,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0000-2400,1234567,,,901,,, +1089,ARS,ar,BSKSA Idha'atu-i Jeddah,,Qurayyat (jwf),31.415372,37.385722,,100,,3403,120,71,,0000-2400,1234567,1,,899,,, +1089,ALG,ar,R Adrar,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,0800-1930,1234567,,,898,,, +1089,ALG,ar,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2000-2030,1234567,,,898,,, +1089,ALG,ar,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2100-2130,1234567,,,898,,, +1089,ALG,ar,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2230-2300,1234567,,,898,,, +1089,ALG,ar,R Coran,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2300-0200,1234567,,,898,,, +1089,ALG,en,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2130-2200,1234567,,,898,,, +1089,ALG,es,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,1930-2000,1234567,,,898,,, +1089,ALG,es,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2200-2230,1234567,,,898,,, +1089,ALG,fr,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2030-2100,1234567,,,898,,, +1089,IRN,fa,IRIB R Iran,,Shahroud (smn),36.383528,55.018883,,50,,4152,95,82,,2230-0230,1234567,9982,,1797,,, +1089,IRN,fa,IRIB R Semnan,,Shahroud (smn),36.383528,55.018883,,50,,4152,95,82,,0230-2230,1234567,9982,,1797,,, +1089,G,en,TalkSPORT,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-2400,1234567,,,900,,, +1089,IND,,AIR North,,Naushera (JK),33.151903,74.232778,,20,,5701,84,101,,0020-1740,1234567,,,49592,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Shenyang/SARFT033 (LN),41.625278,123.300556,,200,,7955,45,114,,0000-2400,1234567,,,49589,,, +1089,CHN,,CNR 6 Shenzhou zhi Sheng,,Fuzhou/SARFT552 (FJ),26.097389,119.632861,,600,130,9179,56,117,,2155-1605,1234567,,,49587,,, +1089,IND,,AIR South,,Udipi (KA),13.442778,74.74,,20,,7358,99,118,,0025-0430,1234567,9934,,49593,,, +1089,IND,,AIR South,,Udipi (KA),13.442778,74.74,,20,,7358,99,118,,0730-1000,1234567,9934,,49593,,, +1089,IND,,AIR South,,Udipi (KA),13.442778,74.74,,20,,7358,99,118,,1200-1735,1234567,9934,,49593,,, +1089,RUS,ru,R Rossii,,Tilichiki (KM),60.436111,166.05,,5,,7369,11,124,,1800-1400,1234567,,,46923,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Kuandian/LNTS332 (LN),40.733333,124.783333,,20,,8108,44,125,,0000-2400,1234567,,,36200525,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Suizhong/LNTS321 (LN),40.333056,120.3025,,10,,7924,47,126,,0000-2400,1234567,,,49590,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Zhuanghe (LN),39.755278,122.950278,,10,,8108,46,128,,0000-2400,1234567,,,36201050,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Lingyuan/LNTS331 (LN),41.233333,119.4,,3,,7799,47,130,,0000-2400,1234567,,,36200524,,, +1089,KOR,,HLCH KBS 1 R,,Chungju (ccb),36.986389,127.925278,,10,,8605,44,132,,0000-2400,1234567,,,49595,,, +1089,THA,th,Neung Por. Nor.,,Udon Thani (udt),17.430556,102.828333,,10,,8913,74,133,,????-1325,1234567,,,49601,,, +1089,VTN,vi,Cao Bằng R,,Cao Bằng (cbn),22.666667,106.25,,10,,8677,68,133,,,,,,33200001,,, +1089,J,ja,JOHB NHK2,,Sendai (toh-miy),38.273056,140.91,,10,,9043,35,134,,2030-1500,1.....7,,,49594,,, +1089,J,ja,JOHB NHK2,,Sendai (toh-miy),38.273056,140.91,,10,,9043,35,134,,2030-1635,.2345..,,,49594,,, +1089,J,ja,JOHB NHK2,,Sendai (toh-miy),38.273056,140.91,,10,,9043,35,134,,2030-1640,.....6.,,,49594,,, +1089,THA,th,Neung Por. Nor.,,Bangkok/Chaeng Wattana Rd (bmp),13.883333,100.575,,10,,9074,78,134,,0000-2400,1234567,,,49600,,, +1089,TWN,,Fu Hsing Kuangpo Tientai 2,,Taichung (TC),24.136983,120.598661,,10,,9414,57,135,,,,,,49604,,, +1089,TWN,,Han Sheng Kuangpo Tientai,,Touliu=Douliu (YL),23.703611,120.545,,10,,9450,57,135,,2100-1600,1234567,,,49602,,, +1089,TWN,,Kaohsiung Kuangpo Tientai,,Kaohsiung (KH),22.656944,120.278333,,10,,9531,58,135,,2150-1600,1234567,,,49603,,, +1089,TWN,,Kaohsiung Kuangpo Tientai,,Kaohsiung (KH),22.656944,120.278333,,10,,9531,58,135,,2300-2330,1234567,,,49603,,, +1089,VTN,xx,VOV Kin Giang R,,Rạch Gi (kgg),9.993222,105.097172,,10,,9717,77,136,,2200-1200,1234567,,,49607,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Fengcheng/LNTS313 (LN),40.45,124.066667,,1,,8099,45,138,,0000-2400,1234567,,,36200526,,, +1089,TWN,,Fu Hsing Kuangpo Tientai 1,,Taipei (TPS),25.085933,121.512869,,5,,9378,56,138,,,,,,49605,,, +1089,CHN,,Zhuzhou RGD Xinwen,,Zhuzhou (HN),27.833333,113.15,,1,,8646,60,143,,,,,,49591,,, +1089,PHL,,DXCM-AM Radyo Ukay,,Cotabato City (mag),7.193333,124.242778,,5,,11197,63,144,,,,,,49599,,, +1089,PHL,,DYHR-AM,,Calbayog City (sam),12.066667,124.583333,,1,,10765,60,150,,,,,,49598,,, +1089,AUS,,2EL,,Orange/Forest Reefs (NSW),-33.457611,149.122917,,5,,16394,70,161,,0000-2400,1234567,,,49586,,, +1089,AUS,en,3WM,,Horsham/Lubeck (VIC),-36.743056,142.520833,,5,,16209,81,161,,0000-2400,1234567,,,49585,,, +1089,NZL,,R Sport,,Palmerston North/Kairanga (MWT),-40.509167,175.570556,,2.5,,18483,37,171,,0000-2400,1234567,,,49597,,, +1090,USA,,WBAL,,Baltimore/Randallstown (MD),39.375833,-76.7725,,50,,6244,292,103,,,,1,,40800,,, +1090,USA,,WILD,,Boston (MA),42.402778,-71.074444,,4.8,,5662,292,107,,,,9995,,41750,,, +1090,USA,en,WTSB,,Selma (NC),35.615833,-78.409167,,9,,6637,290,114,,1200-2400,1234567,,,43212,,, +1090,USA,,WHGG,,Kingsport (TN),36.461111,-82.453333,,10,,6827,294,115,,,,,,41629,,, +1090,USA,en,KAAY,,Little Rock (AR),34.6,-92.225,,50,,7578,299,116,,,,,,37903,,, +1090,USA,,WAQE,,Rice Lake (WI),45.537778,-91.763889,,5,,6656,307,117,,,,,,40737,,, +1090,USA,,WFCV,,Fort Wayne (IN),41.083611,-85.075556,,2.5,,6623,299,119,,,,,,41366,,, +1090,USA,en,KFNQ,,Seattle (WA),47.393889,-122.423611,,50,,7931,326,119,,,,5,,39171,,, +1090,USA,en,WCZZ,,Greenwood (SC),34.162778,-82.194722,,5,,6994,292,120,,,,,,41115,,, +1090,USA,,KEXS,,Excelsior Springs (MO),39.294167,-94.260278,,8,,7304,303,121,,,,,,38353,,, +1090,USA,,WKBZ,,Muskegon (MI),43.276667,-86.253889,,1,,6522,302,122,,,,,,42409,,, +1090,USA,,WCAR,,Livonia (MI),42.329444,-83.361944,,0.5,,6424,299,124,,,,,,40947,,, +1090,USA,,WKFI,,Wilmington (OH),39.436667,-83.855833,,1,,6678,297,124,,,,,,42003,,, +1090,USA,,WKTE,,King (NC),36.296667,-80.371667,,1,,6709,292,124,,,,,,42075,,, +1090,B,pt,ZYJ592 Rdio Rural (Cano Nova),,Natal (RN),-5.821389,-35.246111,,5,,7549,226,126,,,,,,36901827,,, +1090,USA,,KBOZ,,Bozeman (MT),45.616111,-111.087778,,5,,7623,318,126,,,,9944,,38078,,, +1090,USA,,KNWS,,Waterloo (IA),42.443889,-92.299444,,1,,6934,305,126,,,,,,39033,,, +1090,MEX,en,XEPRS-AM XX 1090,,Rosarito (bcn),32.420778,-117.091628,,50,,9132,315,127,,0000-2400,1234567,7,,44576,,, +1090,USA,,WCRA,,Effingham (IL),39.107222,-88.562222,,1,,6987,300,127,,,,,,41071,,, +1090,VEN,,YVSZ Union R 1090,,Caracas (dcf),10.537778,-66.929083,,10,,7950,263,127,,0000-2400,1234567,,,45463,,, +1090,VEN,es,YVPB R.Yaracuy Operadora 1090 AM,,San Felipe (ycy),10.5,-68.716667,,10,,8074,265,128,,0000-2400,1234567,,,45418,,, +1090,CAN,fr,CBON-12,,Mattawa (ON),46.313611,-78.721389,,0.04,,5854,300,129,,,,,,20109144,,, +1090,USA,,WBAF,,Barnesville (GA),33.053611,-84.135278,,1,,7207,292,129,,,,,,40797,,, +1090,B,pt,ZYH254 Rdio Gazeta,,Po de Acar (AL),-9.748889,-37.4275,,5,,8047,226,131,,,,,,36901825,,, +1090,PTR,,WSOL,,San German (PR),18.078889,-67.021667,,0.73,,7306,269,131,,0930-0400,1234567,,,43042,,, +1090,USA,,KSOU,,Sioux Center (IA),43.056111,-96.171389,,0.5,,7098,307,131,,,,,,39400,,, +1090,CAN,en,CBLM,,Marathon (ON),48.719722,-86.383333,,0.04,,6118,306,132,,,,,,20109145,,, +1090,CLM,es,HJBC R Caracol,,Ccuta (nsa),7.833333,-72.5,,10,,8564,266,132,,,,97,,37342,,, +1090,USA,,WWGC,,Albertville (AL),34.264444,-86.278889,,0.5,,7242,295,132,,,,,,43378,,, +1090,DOM,es,HIRB R Jiman,,Jiman (ind),18.492722,-71.852756,,1,,7601,273,133,,0900-0400,1234567,,,37290,,, +1090,USA,,KNCR,,Fortuna (CA),40.558333,-124.123333,,10,,8660,324,133,,,,,,38969,,, +1090,CLM,es,HJJB,,Guamo (tol),4.033333,-74.966667,,10,,9065,266,134,,,,,,35901522,,, +1090,GTM,,TGZ Emisoras Unidas Central,,Ciudad de Guatemala (gut),14.616667,-90.616667,,10,,9200,285,134,,,,,,52132,,, +1090,SLV,es,YSMG R CRET,,Ahuachapn (ahp),13.916667,-89.833333,,10,,9209,283,134,,,,,,45298,,, +1090,VEN,,YVTG Melodica 1090,,Machiques (zul),10.15,-72.466667,,5,,8360,268,134,,0900-0500,1234567,,,45467,,, +1090,VIR,,WUVI,,Charlotte Amalie (sto),18.315833,-64.883889,,0.25,,7140,267,134,,,,,,41543,,, +1090,CLM,es,HJIG,,Florencia (caq),1.616667,-75.616667,,10,,9322,265,135,,,,,,37490,,, +1090,CLM,es,HJOM,,Cartagena (bol),10.4,-75.516667,,5,,8547,270,135,,,,,,35901523,,, +1090,CUB,es,R Victoria,,Amancio (lt),20.836722,-77.575222,,1,,7791,279,135,,,,,,36587,,, +1090,B,pt,ZYH893 Rdio Rio Balsas AM,,Balsas (MA),-7.501667,-46.038889,,2.5,,8279,235,136,,,,,,36901829,,, +1090,USA,en,WPIH726,,Alpine (NJ),40.980389,-73.914861,,0.01,,5944,292,136,,,,,,20010618,,, +1090,CLM,es,HJIA,,Manizales (cal),5.566667,-75.516667,,5,,8968,267,137,,,,,,37486,,, +1090,DOM,,HIJM R Amistad,,Santiago de los Caballeros (sto),19.416667,-70.583333,,0.25,,7436,272,137,,0000-2400,1234567,,,37258,,, +1090,NCG,,YNAI R Alma Latina,,Estel (esl),13.066667,-86.333333,,5,,9050,280,137,,1100-0400,1234567,,,52210,,, +1090,USA,,KMXA,,Aurora (CO),39.664722,-104.656667,,0.5,,7839,310,138,,,,,,38950,,, +1090,B,pt,ZYJ468 Rdio Metropolitana/ESPN,,Rio de Janeiro (RJ),-22.866744,-43.289958,,5,,9629,225,139,,,,,,36901822,,, +1090,USA,es,KULF,,Bellville (TX),29.934722,-96.113056,,1,,8210,298,139,,,,,,39029,,, +1090,B,pt,ZYJ345 Rdio Banda 1 AM,,Sarandi (PR),-23.470556,-51.871944,,5,,10123,231,140,,,,,,36901830,,, +1090,EQA,,HCRP5,,Riobamba (chi),-1.666667,-78.65,,2.5,,9817,265,142,,,,,,37104,,, +1090,USA,,KVOP,,Plainview (TX),34.092222,-101.640556,,0.5,,8168,305,142,,,,,,39655,,, +1090,CLM,es,HJIH,,Sogamoso (boy),5.7,-72.916667,,1,,8779,265,143,,,,,,37491,,, +1090,URG,es,CX28 R Imparcial,,Montevideo (mo),-34.8675,-56.100278,,7.5,,11411,228,143,,0000-2400,1234567,,,36811,,, +1090,HND,,HRWC,,Tegucigalpa (fmz),14.3,-87.2,,1,,9000,282,144,,,,,,37871,,, +1090,SLV,es,YSMG R CRET,,San Salvador (ssl),13.735278,-89.228889,,1,,9185,283,144,,,,,,31100001,,, +1090,B,pt,ZYH455 Rdio Santa Cruz,,Ilhus (BA),-14.801642,-39.074517,,0.5,,8629,225,145,,,,,,36901819,,, +1090,B,pt,ZYH758 Aliana 1090 AM,,Goinia (GO),-16.75115,-49.23515,,1,,9341,233,145,,,,,,36901828,,, +1090,MEX,es,XEHR-AM,,Puebla/Av.15 de Mayo 2939 (pue),19.063142,-98.214644,,1,,9298,293,145,,,,,,44137,,, +1090,MEX,es,XELB-AM La Buenisima,,La Barca (jal),20.291678,-102.610194,,1,,9459,297,145,,,,,,44288,,, +1090,MEX,es,XEXE-AM R Frmula,,Quertaro (que),20.58315,-100.431978,,1,,9300,296,145,,,,,,45049,,, +1090,MEX,es,XEAU-AM,,Monterrey (nvl),25.655778,-100.2552,,0.5,,8835,299,146,,,,,,43741,,, +1090,EQA,,HCAB4,,Manta (man),-1,-80.766667,,1,,9903,267,147,,,,,,36834,,, +1090,MEX,es,XEIL-AM La Comadre,,Boca del Ro (vcz),19.19,-96.175833,,0.5,,9158,292,147,,,,,,44168,,, +1090,USA,en,KQNM,,Milan (D) (NM),35.151389,-107.876111,,0.25,,8412,310,147,,,,,,20016291,,, +1090,MEX,es,XEFC-AM Super Stereo,,Mrida (yuc),20.946136,-89.571472,,0.25,,8579,288,148,,,,,,43997,,, +1090,MEX,es,XEWL-AM La Romntica,,Nuevo Laredo (tam),27.494722,-99.547778,,0.25,,8630,299,148,,,,,,45026,,, +1090,PRU,,OBX2A R Cajabamba,,Cajabamba (caj),-7.666667,-78,,1,,10301,261,148,,0900-0500,1234567,,,40386,,, +1090,USA,,KTGO,,Tioga (ND),48.391111,-102.934444,,0.006,,6998,315,149,,,,,,39479,,, +1090,B,pt,ZYK609 Rdio Clube de Marlia,,Marlia/Rua Carlos Artencio 117 (SP),-22.228967,-49.928989,,0.5,,9902,230,150,,,,,,36901820,,, +1090,EQA,,HCMG1,,Quito (pic),-0.166667,-78.466667,,0.35,,9673,266,150,,,,,,37023,,, +1090,ARG,,R Nuestras Raices,,Valentin Alsina (ba),-34.683333,-58.416667,,1,,11514,230,152,,,,,,51826,,, +1090,ARG,es,R Dcadas,,Hurlingham (ba),-34.6,-58.633333,,1,,11518,230,152,,,,,,33000083,,, +1090,ARG,es,R Popular AM 1090,,Buenos Aires (df),-34.6,-58.383333,,1,,11505,230,152,,,,,,33000082,,, +1090,B,pt,ZYK618 Rdio Cultura,,Monte Alto (SP),-21.260472,-48.478472,,0.25,,9733,230,152,,,,,,36901815,,, +1090,B,pt,ZYK768 Rdio Cano Nova,,Paulnia (SP),-22.801389,-47.138611,,0.25,,9813,228,152,,,,,,36901818,,, +1090,B,,ZYJ254,,Campo Mouro (PR),-24.05,-52.366667,,0.25,,10204,231,154,,,,,,45980,,, +1090,B,pt,ZYJ283 Rdio Vicente Pallotti,,Coronel Vivida (PR),-25.953333,-52.566667,,0.25,,10395,231,154,,,,,,36901816,,, +1090,B,pt,ZYJ732 Rdio Coln,,Joinville (SC),-26.275833,-48.776944,,0.25,,10230,227,154,,,,,,36901821,,, +1090,BOL,,CP45 R Cultura,,Cochabamba (cbb),-17.366667,-66.166667,,0.25,,10390,246,154,,0900-0400,123456,,,36699,,, +1090,BOL,,CP45 R Cultura,,Cochabamba (cbb),-17.366667,-66.166667,,0.25,,10390,246,154,,1200-2300,......7,,,36699,,, +1090,B,pt,ZYJ786 Rdio Bandeirantes,,Tubaro (SC),-28.508889,-49.006944,,0.25,,10456,226,155,,,,,,36901826,,, +1090,B,pt,ZYK262 Salete AM,,Marcelino Ramos (RS),-27.469167,-51.903056,,0.25,,10504,229,155,,,,,,36901824,,, +1090,B,pt,ZYK341 Rdio Giru AM,,Giru (RS),-28.016667,-54.35,,0.25,,10683,231,155,,,,,,36901817,,, +1090,CHL,,CC109 R Chilena Solonoticias,,Talca (ML),-35.416667,-71.666667,,1,,12312,238,155,,1000-0400,1234567,,,35804,,, +1090,USA,,WTNK,,Hartsville (TN),36.388056,-86.165278,,0.002,,7062,296,155,,,,,,43184,,, +1090,B,pt,ZYK216 Rdio Cachoeira (RS),,Cachoeira do Sul (RS),-30.016667,-52.897778,,0.25,,10795,229,156,,,,,,36901823,,, +1090,USA,en,KQNM,,Milan (N) (NM),35.0975,-107.871944,,0.02,,8417,310,158,,,,,,20016013,,, +1098,SVK,hu,SRo 5 Rdio Patria Maďarsk,,Nitra/Jarok (NI),48.277267,17.912167,,10,,922,113,56,,0500-1700,1234567,9870,,919,,, +1098,SVK,sk,SRo 3 Rdio Devn,,Nitra/Jarok (NI),48.277267,17.912167,,10,,922,113,56,,1700-0500,1234567,9870,,919,,, +1098,E,es,RNE R 5,,Lugo/Arrieiras (Fontao/RNE) (GAL-LU),42.973911,-7.575722,,25,,1456,231,58,,0000-2400,1234567,,,914,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0625-0630,12345..,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0650-0700,12345..,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0800-0815,1234567,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1208-1300,12345..,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1230-1300,.....67,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1400-1415,12345..,135,,915,,, +1098,E,es,RNE R 5,,Almera/Roquetas de Mar (RNE) (AND-AL),36.729925,-2.641589,,25,,1852,206,62,,0000-2400,1234567,5,,913,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0815-1208,12345..,135,,915,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0815-1230,.....67,135,,915,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1300-1400,12345..,135,,915,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1300-2300,.....67,135,,915,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1415-2300,12345..,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0630-0650,12345..,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0700-0800,12345..,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0711-0800,.....67,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,2300-0625,1234..7,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,2300-0710,....56.,135,,915,,, +1098,E,pt,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0710-0711,.....67,135,,915,,, +1098,CYP,tr,Bayrak Radyosu,,Yeni Iskele (kib),35.294156,33.913589,,100,,2865,120,66,,0000-2400,1234567,4,,911,,, +1098,E,es,RNE R 5,,Huelva/Aljaraque (RNE) (AND-H),37.282511,-7.020006,,10,,1954,218,67,,0000-2400,1234567,999,,912,,, +1098,RUS,ru,R Rossii,,Nikolsk/RTPS Kurilovo (VO),59.813056,45.503333,,5,,2536,55,75,,0200-2200,1234567,,,917,,, +1098,ARS,ar,BSKSA Idha'atu-i Jeddah,,Dammam (shy),26.463178,50.045189,,100,,4608,111,83,,0000-2400,1234567,988,,47084,,, +1098,IRN,dr,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0330-0630,1234567,9859,,916,,, +1098,IRN,dr,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0830-1330,1234567,9859,,916,,, +1098,IRN,fa,IRIB R Iran,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1730-0130,1234567,9859,,916,,, +1098,IRN,ps,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0230-0330,1234567,9859,,916,,, +1098,IRN,ps,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0730-0830,1234567,9859,,916,,, +1098,IRN,ps,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1430-1530,1234567,9859,,916,,, +1098,IRN,ps,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1630-1730,1234567,9859,,916,,, +1098,IRN,ur,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0130-0230,1234567,9859,,916,,, +1098,IRN,ur,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1330-1430,1234567,9859,,916,,, +1098,IRN,ur,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1530-1630,1234567,9859,,916,,, +1098,KAZ,,Qazaq Rsy,,Qaraturyq/RC Tolqin (alm),43.64175,77.937522,,150,,5196,71,87,,2300-1800,1234567,982,,2239,,, +1098,CHN,bo,CNR 11,,Golmud/SARFT916 (QH),36.415861,95.010222,,1000,205,6814,67,95,,2155-1605,1234567,0,,36201107,,, +1098,PAK,,NBS News,,Hyderabad 2 (shd),25.399722,68.429722,,10,,5917,95,106,,0200-0400,1234567,,,49651,,, +1098,PAK,,NBS News,,Hyderabad 2 (shd),25.399722,68.429722,,10,,5917,95,106,,1300-1800,1234567,,,49651,,, +1098,PAK,,PBC Saut-ul Quran/NBS News,,Hyderabad 2 (shd),25.399722,68.429722,,10,,5917,95,106,,1230-1705,1234567,,,49651,,, +1098,CHN,ky,Artux RGD,,Artux=Atushi/XJTS8108 (XJ),39.706783,76.184928,,1,,5351,76,111,,,,,,36200522,,, +1098,CHN,ug,Hami RGD Uighur,,Hami=Kumul (XJ),42.833333,93.333333,,1,,6215,62,119,,,,,,49618,,, +1098,CHN,zh,Tianjin RGD Wenyi Pindao,,Tianjin/Tanggu (TJ),39.048514,117.630428,,50,,7902,50,119,,2155-1800,1234567,,,49625,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Damao/NMTS863 (NM),41.712778,110.4075,,10,,7286,53,120,,2150-1605,1234567,,,36200517,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Saihan Tal/NMTS731 (NM),42.724,112.635611,,10,,7320,51,120,,2150-1605,1234567,,,49620,,, +1098,TWN,zh,Ikuan Tao,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,1200-1300,1234567,4,,49658,,, +1098,TWN,zh,R France Int.,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,2200-2300,1234567,4,,49658,,, +1098,TWN,zh,R Free Asia,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,1850-2200,1234567,4,,49658,,, +1098,TWN,zh,R Taiwan Int.,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,1300-1700,1234567,4,,49658,,, +1098,TWN,zh,R Taiwan Int.,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,1700-1705,12345..,4,,49658,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Bayanhushu/NMTS077 (NM),45.719722,118.812222,,10,,7375,45,121,,2150-1605,1234567,,,36200518,,, +1098,CHN,zh,CNR 1,,Chagyab=Chaya (XZ),30.298667,81.172833,,1,,6392,81,121,,2025-1805,1234567,4,,36201144,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Ejin=Ejina/NMTS788 (NM),41.967978,101.070433,,1,,6740,58,124,,2150-1605,1234567,,,36201137,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Ergun=E'erguna/NMTS712 (NM),50.234667,120.164056,,2,,7045,41,124,,2150-1605,1234567,,,36201138,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Badain Jaran=Badanjilin/NMTS754 (NM),39.208333,101.653611,,1,,6995,60,127,,2150-1605,1234567,,,36201135,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Manzhouli/NMTS717 (NM),49.578056,117.497222,,1,,6980,43,127,,2150-1605,1234567,,,36201140,,, +1098,CHN,zh,CNR 1,,Namling=Nanmulin (XZ),29.683333,89.1,,1,,6972,76,127,,2025-1805,1234567,,,36201147,,, +1098,CHN,bo,CNR 11,,Yushu/QHTS920 (QH),33.001667,97.001944,,1,,7214,68,129,,,,,,36201049,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Erenhot=Erlian/NMTS872 (NM),43.618056,111.999722,,1,,7211,50,129,,,,,,36200515,,, +1098,CHN,zh,CNR 1,,Gongbo'gyamda (XZ),29.886111,93.244444,,1,,7228,73,129,,2025-1805,1234567,,,36201146,,, +1098,CHN,,Hubei RGD Shenghuo Pindao,,Suizhou (HU),31.715,113.344722,,10,,8314,58,130,,,,,,36200507,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Arxan=A'ershan/NMTS768 (NM),47.171944,119.932222,,1,,7301,43,130,,2150-1605,1234567,,,36201134,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Baotou/NMTS530 (NM),40.614417,109.839978,,1,,7348,54,130,,2150-1605,1234567,,,36200520,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Dong Wuzhumuqin Qi/NMTS732 (NM),45.493278,116.974444,,1,,7305,46,130,,2150-1605,1234567,,,36201136,,, +1098,CHN,zh,CNR 1,,Dngqn=Dingqing (XZ),31.413333,95.5985,,1,,7255,70,130,,2025-1805,1234567,,,36201145,,, +1098,KOR,,HLCJ KBS 1 R,,Jinju (gsb),35.163889,128.045833,,20,,8782,45,130,,0000-2400,1234567,,,49648,,, +1098,CHN,,Hubei RGD Shenghuo Pindao,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,,,,,36200510,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,1,,7431,54,131,,2150-1605,1234567,,,36201141,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Zalantun/NMTS696 (NM),48,122.741667,,1,,7357,41,131,,2150-1605,1234567,,,36201142,,, +1098,CHN,,Hebei RGD Jingji Guangbo,,Zhangjiakou/HBTS109 (HB),40.600556,115.0925,,1,,7632,51,133,,,,,,49627,,, +1098,CHN,,Hengyang RGD,,Hengyang/Hudong Cun (HN),26.895278,112.659167,,10,,8700,61,133,,,,,,36200512,,, +1098,CHN,,Zhangjiagang RGD News,,Zhangjiagang (JS),31.866667,120.533333,,10,,8702,52,133,,,,,,49628,,, +1098,THA,th,Sor. Wor. Thor. (R Thailand),,Tak (tak),16.7325,98.566389,,10,,8692,78,133,,,,,,49656,,, +1098,CHN,,Dezhou RGD,,Dezhou (SD),37.4575,116.313333,,2,,7973,52,134,,,,,,36200516,,, +1098,CHN,,Zhoushan JGD,,Zhoushan/ZMWS6945 (ZJ),30.051167,122.017389,,10,,8949,52,134,,,,,,49631,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Ke'erqin Zuoyi Zhong Qi/NMTS735 (NM),44.112058,123.24995,,1,,7728,43,134,,2150-1605,1234567,,,36201139,,, +1098,CHN,,Deyang RGD,,Deyang (SC),31.133333,104.4,,1,,7831,64,135,,,,,,49616,,, +1098,CHN,bo,CNR 11,,Beijing (BJ),39.933333,116.383333,,1,,7759,50,135,,2155-1605,1234567,,,36200519,,, +1098,VTN,vi,VOV1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,0600-1100,1234567,,,48041,,, +1098,VTN,vi,VOV1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,1145-1310,1234567,,,48041,,, +1098,VTN,vi,VOV1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,2200-2300,1234567,,,48041,,, +1098,VTN,vi,VOV1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,2330-0500,1234567,,,48041,,, +1098,VTN,vi,VoV 1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,0500-0600,1234567,,,48041,,, +1098,VTN,vi,VoV 1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,1100-1145,1234567,,,48041,,, +1098,VTN,vi,VoV 1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,2300-2330,1234567,,,48041,,, +1098,CHN,,Handan RGD Jiaotong,,Handan (HB),36.6,114.466667,,1,,7948,54,136,,,,,,49619,,, +1098,CHN,,Jingzhou RGD Chengshi Shenghuo,,Jinzhou (LN),41.116667,121.116667,,1,,7895,46,136,,,,,,49621,,, +1098,CHN,zh,CNR 2,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,2100-1602,1234567,,,36200513,,, +1098,THA,th,Sor. Wor. Phor.,,Hat Yai/Ban Phru (sgk),6.965278,100.478056,,10,,9673,83,136,,2200-1608,1234567,,,49657,,, +1098,VTN,vi,VOV1/Bnh Thuận R,,Phan Thiết (bun),10.9346,108.114583,,10,,9833,74,136,,0415-????,1234567,,,49660,,, +1098,CHN,,Maoming RGD,,Maoming (GD),21.933333,110.85,,5,,9031,65,137,,,,,,49623,,, +1098,CHN,,Yunnan RGD Yinyue-Binfen 97,,Dali/SARFT653 (YN),25.716667,100.166667,,1,,8025,71,137,,,,,,49613,,, +1098,J,ja,JOGF OBS Oita Hoso,,Oita/Kitsuki-Shi (kyu-oit),33.421944,131.665833,,5,,9120,43,137,,0000-2400,1234567,,,49644,,, +1098,J,ja,JOSR SBC Shinetsu Hoso,,Nagano (chu-nag),36.6325,138.245556,,5,,9099,37,137,,0000-2400,1234567,,,49643,,, +1098,J,ja,JOWO RFC R Fukushima,,Koriyama (toh-fuk),37.387222,140.360556,,5,,9109,35,137,,0000-1600,......7,,,49642,,, +1098,J,ja,JOWO RFC R Fukushima,,Koriyama (toh-fuk),37.387222,140.360556,,5,,9109,35,137,,0000-2400,123456,,,49642,,, +1098,J,ja,JOWO RFC R Fukushima,,Koriyama (toh-fuk),37.387222,140.360556,,5,,9109,35,137,,2000-2400,......7,,,49642,,, +1098,CHN,,Henan RGD Binfen 1098,,Zhengzhou (HE),34.7,113.7,,1,,8072,55,138,,,,,,36200505,,, +1098,CHN,,Pingdingshan RGD Wenxue,,Pingdingshan (HE),33.7,113.283333,,1,,8136,56,138,,,,,,36200508,,, +1098,PHL,,DWAD-AM Radyo Ngayon,,Mandaluyong (ncr),14.588875,121.039,,10,,10319,62,138,,2030-1500,1234567,9984,,49653,,, +1098,CHN,,Nanyang RGD Jiaotong,,Nanyang (HE),32.975278,112.498333,,1,,8155,57,139,,2155-1400,1234567,,,49624,,, +1098,CHN,,Xiangfan RGD Jiaotong,,Xiangfan/Pangongci (HU),32.027778,112.176389,,1,,8219,58,139,,,,,,49626,,, +1098,CHN,,Yunnan RGD Yinyue-Binfen 97,,Baoshan/YNTS702 (YN),26.366667,104.5,,1,,8246,67,139,,,,,,36200521,,, +1098,INS,id,RRI Pro-1,,Jambi/Mendalo Darat (JA-jam),-1.616667,103.533333,,10,,10635,85,139,,0845-1555,1234567,,,49634,,, +1098,INS,id,RRI Pro-1,,Jambi/Mendalo Darat (JA-jam),-1.616667,103.533333,,10,,10635,85,139,,2200-0505,1234567,,,49634,,, +1098,CHN,,Bengbu JGD,,Bengbu (AH),32.95,117.383333,,1,,8432,54,141,,????-1650,1234567,,,49612,,, +1098,CHN,zh,Yunnan RGD Jiaotong zhi Sheng,,Kaiyuan (YN),23.70675,103.269139,,1,,8397,70,141,,,,,,36201293,,, +1098,CHN,,Anhui RGD Yunshu,,Hefei/Sanshitou (AH),31.986667,117.3275,,1,,8515,55,142,,,,,,36200514,,, +1098,CHN,,Anhui RGD Yunshu,,Wuhu/Wuliting (AH),31.295528,118.382167,,1,,8636,54,142,,,,,,36200506,,, +1098,CHN,,Zhenjiang RGD Health,,Zhenjiang (JS),32.216667,119.433333,,1,,8611,53,142,,,,,,49629,,, +1098,CHN,,Guangxi JGD Caifu Guangbo,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,,,,,36200509,,, +1098,INS,id,RRI Pro-1,,Sumenep (JI-sum),-7.04595,113.844217,,10,,11812,80,143,,2200-1700,1234567,0,,49636,,, +1098,CHN,,Guangzhou DJT Car FM,,Guangzhou (GD),23.183333,113.233333,,1,,9066,63,144,,2200-1600,1234567,,,49617,,, +1098,CHN,,Huizhou RGD Entertainment,,Huizhou (GD),23.069167,114.4125,,1,,9147,62,144,,,,,,36200511,,, +1098,J,,JOSW SBC, Shinetsu Hoso,,Ida (chu-nag),35.5,137.816667,,1,,9192,38,144,,0000-2400,1234567,,,49639,, +1098,J,ja,JOMF NBC Nagasaki Hoso,,Sasebo (kyu-nag),33.167778,129.717222,,1,,9052,45,144,,0000-1600,......7,,,49645,,, +1098,J,ja,JOMF NBC Nagasaki Hoso,,Sasebo (kyu-nag),33.167778,129.717222,,1,,9052,45,144,,0000-2400,123456,,,49645,,, +1098,J,ja,JOMF NBC Nagasaki Hoso,,Sasebo (kyu-nag),33.167778,129.717222,,1,,9052,45,144,,2000-2400,......7,,,49645,,, +1098,MHL,,V7AB R Marshalls,,Majuro,7.086944,171.376389,,25,,13279,17,144,,1900-1130,123456,3,,49649,,, +1098,MHL,,V7AB R Marshalls,,Majuro,7.086944,171.376389,,25,,13279,17,144,,2000-1130,......7,3,,49649,,, +1098,PHL,,DXCL-AM Sonshine R,,Cagayan de Oro City (mor),8.466667,124.633333,,5,,11103,62,144,,2000-1315,1234567,,,49652,,, +1098,J,,JOFN HBC, Hokkaido Hoso,,Kitahiyama (hok),42.433333,139.933333,,0.1,,8592,33,152,,0000-2400,1234567,,,49641,, +1098,INS,id,PM2BBW R Untar VOMS,,Jakarta (JK),-6.183333,106.833333,,0.5,,11261,86,154,,0300-1300,......7,,,49633,,, +1098,INS,id,PM2BBW R Untar VOMS,,Jakarta (JK),-6.183333,106.833333,,0.5,,11261,86,154,,0300-1500,123456,,,49633,,, +1098,J,,SBC, Shinetsu Hoso,,Ina (chu-nag),35.833333,137.983333,,0.1,,9167,38,154,,0000-2400,1234567,,,49640,, +1098,J,ja,OBS Oita Hoso,,Yufuin,34.5,134,,0.1,,9124,41,154,,,,,,31400074,,, +1098,AUS,,6MD R West,,Merredin (WA),-31.502167,118.205389,,2,,14162,95,158,,2130-1500,1234567,,,49611,,, +1098,AUS,,4LG,,Longreach (QLD),-23.393417,144.220939,,2,,15230,65,161,,0000-2400,1234567,,,49610,,, +1098,NZL,en,3ZB Newstalk ZB,,Christchurch/Ouruhia (CAN),-43.445967,172.671261,,10,,18612,52,165,,0000-2400,1234567,,,49650,,, +1098,AUS,,2RN ABC National,,Goulburn (NSW),-34.745681,149.696542,,0.2,,16533,71,176,,0000-2400,1234567,,,49608,,, +1100,RUS,,KA,b,Konstaninovsk (RO),47.604167,41.125,,0.025,,2513,88,98,,,,,U1025 ,ID+7 gap,85865,, +1100,USA,en,WTAM,,Cleveland (OH),41.280556,-81.622778,,50,,6400,297,104,,,,997,,43102,,, +1100,USA,,WHLI,,Hempstead (NY),40.685,-73.61,,10,,5946,292,106,,,,,,41656,,, +1100,USA,,WTWN,,Wells River (VT),44.148611,-72.067222,,5,,5602,294,106,,,,9985,,43238,,, +1100,USA,,WZFG,,Dilworth (DC) (MN),46.762222,-96.671944,,50,,6820,310,108,,,,,,20016088,,, +1100,CAN,fr,CBSI-5,,Natashquan (QC),50.179722,-61.811667,,0.04,,4585,296,117,,,,,,20109146,,, +1100,USA,,WCGA,,Woodbine (GA),31.047222,-81.746389,,10,,7218,289,119,,,,,,40982,,, +1100,USA,,WISS,,Berlin (WI),43.948611,-88.985833,,2.5,,6627,304,119,,,,,,41811,,, +1100,USA,,WWWE,,Hapeville (GA),33.728611,-84.322222,,5,,7164,293,122,,,,,,43442,,, +1100,USA,,WGPA,,Bethlehem (PA),40.624167,-75.355278,,0.25,,6061,293,124,,,,,,41552,,, +1100,B,pt,ZYK694 Rdio Globo,,So Paulo/Rua Hilia Amaznica (SP),-23.605794,-46.538947,,150,,9861,227,125,,,,,,36901833,,, +1100,USA,,KKLL,,Webb City (MO),37.106389,-94.280556,,5,,7488,302,125,,,,,,38728,,, +1100,USA,,KFAX,,San Francisco (CA),37.632222,-122.130278,,50,,8862,321,126,,,,9993,,38375,,, +1100,VEN,,YVSV R Angostura,,Ciudad Bolivar (blv),8.066667,-63.666667,,10,,7946,259,126,,0900-0430,1234567,,,45462,,, +1100,USA,,KNZZ,,Grand Junction (CO),38.951667,-108.419444,,10,,8096,312,128,,,,,,39041,,, +1100,USA,,WSGI,,Springfield (TN),36.516667,-86.891667,,1,,7097,297,128,,,,,,42995,,, +1100,USA,,WZFG,,Dilworth (N) (MN),46.761944,-96.671667,,0.44,,6820,310,129,,,,,,20016087,,, +1100,CLM,es,HJYZ,,Neiva (hui),2.933333,-75.333333,,15,,9187,265,133,,,,,,35901529,,, +1100,CLM,es,HJCN BBN,,Bogot D. C. (bdc),4.7,-74.166667,,10,,8952,265,134,,,,12,,37374,,, +1100,CUB,es,R Angulo,,Mayar (ho),20.664344,-75.688744,,1,,7678,277,134,,,,,,36576,,, +1100,B,pt,ZYH638 Rdio Difusora dos Inhamuns,,Tau (CE),-6.0053,-40.282444,,1,,7822,230,135,,,,,,36901834,,, +1100,CLM,es,HJMK Emisora Ideal,,Planeta Rica (cor),8.416667,-75.566667,,5,,8723,269,136,,,,57,,37568,,, +1100,PNR,es,HOM92 R Sabrosa,,Pedregal (pnm),9.079,-79.436039,,5,,8929,272,136,,,,,,52326,,, +1100,CLM,es,HJGQ,,Andes (ant),5.65,-75.95,,5,,8991,267,137,,,,,,37461,,, +1100,CTR,,TISCR R Chorotega,,Santa Cruz (her),10.016667,-84.033333,,5,,9160,277,137,,0900-0600,1234567,,,52152,,, +1100,DOM,,HIHD R Oriente,,San Pedro de Macors (pms),18.466667,-69.283333,,0.25,,7428,271,137,,0900-0400,1234567,,,37253,,, +1100,DOM,,HIPS R Nagua,,Nagua (mts),19.366667,-69.833333,,0.25,,7389,272,137,,0900-0200,1234567,,,37287,,, +1100,B,pt,ZYH668 Rdio Difusora do Vale Acara,,Acara (CE),-2.908339,-40.127106,,0.25,,7511,232,138,,,,,,36901831,,, +1100,DOM,es,HIMP R Ocoa,,San Jos de Ocoa (joo),18.540236,-70.506906,,0.25,,7505,272,138,,1200-0200,1234567,,,37276,,, +1100,GTM,,TGSR R Superior,,Coatepeque (qzt),14.683333,-91.866667,,5,,9276,286,138,,,,,,40544,,, +1100,B,pt,ZYJ607 Rdio A Voz do Serid,,Caic (RN),-6.443611,-37.079444,,0.25,,7701,227,140,,,,,,36901832,,, +1100,SLV,,YSRF,,San Salvador (ssl),13.75,-89.216667,,3,,9183,283,140,,,,,,45314,,, +1100,USA,es,KWWN,,Las Vegas (NV),36.2125,-115.1625,,2,,8680,315,140,,,,,,20000070,,, +1100,USA,,KDRY,,Alamo Heights (TX),29.557778,-98.375556,,1,,8378,300,141,,,,,,38291,,, +1100,BOL,,CP137 R Mundial,,La Paz (lpz),-16.5,-68.116667,,4,,10435,248,142,,0900-0330,1234567,,,36642,,, +1100,CLM,es,HJAT Caracol,,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,997,,37335,,, +1100,EQA,,HCFW2,,Guayaquil (gua),-2.2,-79.9,,3,,9949,266,142,,,,,,36945,,, +1100,EQA,,HCJC5,,Cuenca (azu),-2.883333,-78.966667,,3,,9945,265,142,,,,,,36981,,, +1100,CLM,es,HJGI,,Socorro (sat),6.5,-73.266667,,1,,8733,266,143,,,,,,37454,,, +1100,PRG,,ZP71 R u Vera,,Capitan Bado (amm),-23.266667,-55.516667,,3,,10302,234,143,,0900-0200,1234567,,,45556,,, +1100,USA,,KFNX,,Cave Creek (AZ),33.797778,-111.991667,,1,,8749,312,143,,,,,,38416,,, +1100,CHL,,CB110 R Integridad,,Via del Mar (VS),-33.066667,-71.583333,,10,,12107,240,144,,1100-0500,1234567,,,35723,,, +1100,HND,,HRND,,La Esperanza (int),14.3,-88.166667,,1,,9065,282,144,,,,,,37804,,, +1100,HND,,HRVA,,San Pedro Sula (cor),15.466667,-88.016667,,1,,8953,283,144,,,,,,37863,,, +1100,USA,es,KAFY,,Bakersfield (CA),35.45,-118.946667,,0.8,,8931,318,144,,,,,,37918,,, +1100,MEX,es,XEBAC-AM R Asuncin,,Bahia Asuncin (bcs),27.116667,-114.316667,,1,,9495,310,145,,,,,,43757,,, +1100,MEX,es,XEBV-AM R Alegra,,Moroleon (gua),20.1007,-101.187878,,1,,9390,296,145,,,,,,43794,,, +1100,MEX,es,XEGRM-AM Soy Guerrero,,Ometepec (gue),16.696867,-98.403078,,1,,9521,292,145,,,,,,44078,,, +1100,BOL,,R Chaca,,Pucarani (lpz),-16.4,-68.483333,,1,,10449,248,148,,0900-1300,1234567,,,51993,,, +1100,BOL,,R Chaca,,Pucarani (lpz),-16.4,-68.483333,,1,,10449,248,148,,2030-0130,1234567,,,51993,,, +1100,PRU,,OBX1L R Star,,Chiclayo (lam),-6.75,-79.816667,,1,,10343,263,148,,,,,,40385,,, +1100,BOL,,CP55 R Universidad de Oruro,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1100-2300,123456,,,51992,,, +1100,BOL,,CP55 R Universidad de Oruro,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1200-2300,......7,,,51992,,, +1100,MEX,es,XETGO-AM R Caon,,Tlaltenango (zac),21.823683,-103.291858,,0.4,,9362,299,149,,,,0,,44817,,, +1100,PRU,,OBX7Z R LTC,,Juliaca (pun),-15.816667,-70.016667,,1,,10495,250,149,,,,,,40414,,, +1100,PRU,,OCY4G Sonorama R,,Huancayo (jun),-12.15,-75.266667,,1,,10513,256,149,,,,,,40441,,, +1100,EQA,,HCRG6,,Latacunga (cot),-0.916667,-78.566667,,0.4,,9745,265,150,,,,,,37085,,, +1100,MEX,es,XENAS-AM Unica,,Navojoa (son),27.081111,-109.453611,,0.25,,9236,306,150,,,,,,44435,,, +1100,MEX,es,XEPO-AM Imagen,,San Luis Potos (slp),22.150833,-100.980556,,0.25,,9193,297,150,,,,,,44567,,, +1100,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010619,,, +1100,ARG,,R Estilo,,Glew (ba),-34.9,-58.383333,,1,,11532,230,152,,0000-2400,1234567,,,51827,,, +1100,ARG,es,Libertad AM,,Rosario (sf),-32.955556,-60.658333,,1,,11476,233,152,,,,,,33000080,,, +1100,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010620,,, +1100,MEX,,XECAN-AM,,Cancn (qui),21.163125,-86.850736,,0.03,,8382,286,156,,,,,,43814,,, +1107,D,en,AFN PowerNet,,Kaiserslautern/Otterbach-Sambach (rlp),49.490833,7.7175,,10,,305,162,50,,0000-2400,1234567,2,,920,,, +1107,D,en,AFN PowerNet,,Vilseck/Rose Barracks (bay),49.644656,11.783611,,10,,466,124,52,,0000-2400,1234567,9956,,922,,, +1107,SRB,sr,R Beograd 1,,Novi Sad/Orlovat (Voj-sdb),45.274078,20.528264,,60,,1282,121,52,,0000-2400,1234567,11,,943,,, +1107,E,es,RNE R 5,,Logroo/La Grajera (RNE) (RIO-LO),42.442831,-2.512136,,25,,1266,215,56,,0000-2400,1234567,,,927,,, +1107,E,es,RNE R 5,,Santander/Rostro (CNT-S),43.477361,-3.852031,,20,,1226,223,56,,0000-2400,1234567,,,924,,, +1107,G,en,TalkSPORT,,Lydd/Romney Marsh (EN-KNT),50.950972,0.915694,,2,,401,253,58,,0000-2400,1234567,,,935,,, +1107,E,es,RNE R 5,,Cceres/Aldea del Cano (RNE) (EXT-CC),39.346889,-6.337194,,24,,1725,220,60,,0000-2400,1234567,997,,923,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0815-1208,12345..,,,925,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0815-1230,.....67,,,925,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1300-1400,12345..,,,925,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1300-2300,.....67,,,925,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1415-2300,12345..,,,925,,, +1107,E,es,RNE R 5,,Teruel/La Muela (RNE) (ARA-TE),40.341664,-1.129378,,10,,1429,207,61,,0000-2400,1234567,,,926,,, +1107,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0630-0650,12345..,,,925,,, +1107,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0711-0800,.....67,,,925,,, +1107,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,2300-0625,1234..7,,,925,,, +1107,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,2300-0710,....56.,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0625-0630,12345..,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0650-0700,12345..,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0700-0800,12345..,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0800-0815,1234567,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1208-1300,12345..,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1400-1415,12345..,,,925,,, +1107,E,pt,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0710-0711,.....67,,,925,,, +1107,G,en,TalkSPORT,,Boston/Kirton Drove (EN-LIN),52.986111,-0.124444,,1,,452,285,62,,0000-2400,1234567,,,934,,, +1107,G,en,TalkSPORT,,Duxhurst (EN-SUR),51.193528,-0.200167,,1,,467,260,62,,0000-2400,1234567,,,933,,, +1107,G,en,TalkSPORT,,Fareham (EN-HPS),50.849306,-1.226833,,1,,547,258,62,,0000-2400,1234567,,,932,,, +1107,G,en,Moray Firth R,,Tarbat Ness (Inverness) (SC-HIL),57.831639,-3.803333,,1.5,,909,318,64,,0000-2400,1234567,6,,929,,, +1107,G,en,TalkSPORT,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,1,,718,259,64,,0000-2400,1234567,,,931,,, +1107,G,en,TalkSPORT,,Wallasey (EN-MER),53.425667,-3.046861,,0.5,,652,287,67,,0000-2400,1234567,0,,930,,, +1107,I,it,RAI Lazio,,Roma/Monte Ciocci (rm),41.909378,12.442044,,1,,1222,156,69,,0620-0630,123456,,,936,,, +1107,I,it,RAI Lazio,,Roma/Monte Ciocci (rm),41.909378,12.442044,,1,,1222,156,69,,1110-1130,123456,,,936,,, +1107,I,it,RAI Lazio,,Roma/Monte Ciocci (rm),41.909378,12.442044,,1,,1222,156,69,,1140-1200,......7,,,936,,, +1107,I,it,RAI R1,,Roma/Monte Ciocci (rm),41.909378,12.442044,,1,,1222,156,69,,0000-2400,1234567,,,936,,, +1107,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400045,,, +1107,AFG,,R Afghanistan,,Kabul/Pol-e Charkhi (kab),34.535806,69.338,,400,,5264,86,84,,0100-1930,1234567,16,,2080,,, +1107,IRN,fa,IRIB R Khorasan-e Razavi,,Sabzevar (rkh),36.186967,57.655344,,50,,4346,93,84,,0230-2003,1234567,2,,937,,, +1107,NIG,en,FRCN Kaduna,,Kaduna/Jaji (kdn),10.818433,7.566456,,25,,4593,178,89,,0400-2305,1234567,,,2466,,, +1107,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/Hutubi-XJTS631 (XJ),44.160694,86.923014,,120,,5727,65,94,,0000-1800,1234567,9,,49668,,, +1107,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Maralal/Kisima (rif),0.903114,36.776639,,100,,6356,143,101,,0200-2110,1234567,,,1966,,, +1107,IND,,AIR South,,Gulbarga (KA),17.279722,76.825,,20,,7169,94,116,,0025-0400,1234567,9937,,49670,,, +1107,IND,,AIR South,,Gulbarga (KA),17.279722,76.825,,20,,7169,94,116,,0700-0930,1234567,9937,,49670,,, +1107,IND,,AIR South,,Gulbarga (KA),17.279722,76.825,,20,,7169,94,116,,1200-1738,1234567,9937,,49670,,, +1107,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Balikun=Barkol/XJTS8102 (XJ),43.597778,93.046111,,1,,6141,62,118,,2330-1800,1234567,,,36200502,,, +1107,CHN,zh,Jilin RGD,,Yushu (JL),44.833333,126.533333,,10,,7812,41,125,,2120-1505,1234567,,,36201238,,, +1107,CHN,,Hebi JGD,,Hebi (HE),35.9,114.2,,10,,7994,54,127,,,,,,49664,,, +1107,CHN,zh,Jilin RGD,,Changbai (JL),41.416667,128.2,,10,,8203,42,129,,2120-1505,1234567,,,36200501,,, +1107,CHN,zh,Jilin RGD,,Hunchun (JL),42.866667,130.35,,10,,8163,39,129,,2120-1505,1234567,,,36201048,,, +1107,THA,th,Mor. Kor.,,Samut Sakhon/Suan Luang (ssk),13.678889,100.328611,,20,,9075,78,131,,0000-2400,1234567,,,49687,,, +1107,J,ja,JOCF MBC Minami Nihon Hoso,,Kagoshima (kyu-kag),31.72,130.723056,,20,,9238,45,132,,0000-2400,1234567,,,49675,,, +1107,CHN,,Jiaxing RGD,,Jiaxing (ZJ),30.770833,120.8125,,10,,8817,53,133,,2130-1530,1234567,,,49665,,, +1107,KOR,ko,HLAV MBC,,Pohang/Yeongil (gsb),36.0775,129.550556,,10,,8768,44,133,,0000-2400,1234567,,,49680,,, +1107,CHN,,Xiamen RGD News,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,10,,9229,58,134,,????-1700,1234567,,,49669,,, +1107,CHN,zh,Jilin RGD,,Songyuan (JL),45.1625,124.849778,,1,,7706,42,134,,2120-1505,1234567,,,36200495,,, +1107,MWI,,MBC R 1,,Nkhotakota (nkt),-12.958808,34.297817,,1,,7716,151,134,,0253-2200,1234567,,,2465,,, +1107,THA,th,Thor. Phor. Song,,Khon Kaen/Fort Si Phatcharin (kkn),16.458611,102.848333,,10,,9000,75,134,,????-1505,1234567,,,49688,,, +1107,CHN,,Hainan RGD,,Tongshi=Tongzha (HA),18.734444,109.5925,,10,,9236,68,135,,2130-1600,1234567,,,49667,,, +1107,CHN,zh,Jilin RGD,,Fuyu/Sanchahe (JL),44.983333,126.016667,,1,,7775,41,135,,2120-1505,1234567,,,36200499,,, +1107,CHN,zh,Jilin RGD,,Jilin Shi (JL),43.8,126.5,,1,,7905,41,136,,2120-1505,1234567,,,49663,,, +1107,CHN,zh,Jilin RGD,,Siping (JL),43.166667,124.333333,,1,,7864,43,136,,2120-1505,1234567,,,36200497,,, +1107,CHN,zh,Jilin RGD,,Songshan (JL),42.766667,126.566667,,1,,8004,42,137,,2120-1505,1234567,,,36200493,,, +1107,J,ja,JOMR MRO Hokoriku Hoso,,Kanazawa (chu-ish),36.538589,136.614344,,5,,9040,38,137,,0000-2400,1234567,,,49676,,, +1107,CHN,,Tongling RGD,,Tongling (AH),30.95,117.7,,3,,8629,55,138,,,,,,49666,,, +1107,CHN,zh,Jilin RGD,,Antu (JL),42.583333,128.333333,,1,,8100,41,138,,2120-1505,1234567,,,36200504,,, +1107,CHN,zh,Jilin RGD,,Baishan (JL),41.95,126.433333,,1,,8073,42,138,,2120-1505,1234567,,,36200503,,, +1107,CHN,zh,Jilin RGD,,Songjianghe/JLTS154 (JL),42.158839,127.475194,,1,,8101,42,138,,2120-1505,1234567,,,36200500,,, +1107,CHN,zh,Jilin RGD,,Songjiangzhen (JL),42.575,128.333333,,1,,8101,41,138,,2120-1505,1234567,,,36200496,,, +1107,CHN,zh,Jilin RGD,,Tumen (JL),42.966667,129.85,,1,,8131,40,138,,2120-1505,1234567,,,36200494,,, +1107,CHN,zh,Jilin RGD,,Wangqing (JL),43.316667,129.75,,1,,8094,40,138,,2120-1505,1234567,,,36201047,,, +1107,PHL,,DWDY-AM,,Cauayan (isa),16.933333,121.766667,,10,,10146,60,138,,,,,,49683,,, +1107,PHL,,DZOM-AM,,Calapan (orm),13.4,121.166667,,5,,10437,62,141,,2100-1500,1234567,,,49682,,, +1107,INS,id,RRI Pro-1/Pro-4,,Yogyakarta/Seturan (YO-yog),-7.771111,110.406389,,10,,11643,84,142,,2155-????,1234567,,,49673,,, +1107,PHL,,DYIN-AM Bombo Radyo,,Kalibo (akl),11.716667,122.35,,5,,10664,62,142,,2030-1400,1234567,,,49685,,, +1107,CHN,,Pingxiang RGD,,Pingxiang (JX),27.616667,113.85,,1,,8707,60,143,,,,,,36200498,,, +1107,J,,MRO, Hokoriku Hoso,,Nanao (chu-ish),37.033333,136.95,,1,,9005,38,144,,0000-2400,1234567,,,49678,, +1107,J,ja,MBC Minami Nihon Hoso,,Akune (kyu-kag),32.061989,130.207958,,1,,9181,45,144,,0000-2400,1234567,,,49674,,, +1107,J,ja,MBC Minami Nihon Hoso,,Okuchi/Hishikari (kyu-kag),32.03,130.605833,,1,,9203,45,144,,0000-2400,1234567,,,49677,,, +1107,J,ja,MBC Minami Nihon Hoso,,Sendai (kyu-kag),31.810833,130.290556,,1,,9209,45,144,,,,,,31400029,,, +1107,PHL,,DXBB-AM Super Radyo,,General Santos City (sco),6.1,125.166667,,5,,11355,63,145,,0000-2400,1234567,,,49684,,, +1107,J,,MRO, Hokoriku Hoso,,Wajima (chu-ish),37.4,136.9,,0.1,,8967,38,154,,0000-2400,1234567,,,49679,, +1107,INS,id,RRI Pro-1,,Kupang (NT-kpg),-10.105494,123.767864,,1,,12743,74,156,,0850-0215,1234567,,,49672,,, +1107,PNG,,NBC Karai-R Manus,,Alotau (mba),-10.3,150.333333,,2,,14345,48,158,,1930-1400,1234567,,,49686,,, +1107,AUS,,2EA SBS R,,Sydney/Homebush Bay (NSW),-33.840319,151.077883,,5,,16549,68,162,,0000-2400,1234567,1,,49662,,, +1107,NZL,en,R Live,,Tauranga/Papamoa (BOP),-37.722222,176.339444,,1,,18233,30,174,,,,,,32500010,,, +1110,USA,,WYRM,,Norfolk (VA),36.942778,-76.532222,,50,,6414,290,104,,,,,,43544,,, +1110,USA,,WCCM,,Salem (NH),42.761667,-71.270278,,5,,5649,292,107,,,,996,,40975,,, +1110,USA,,WPMZ,,East Providence (RI),41.827778,-71.369167,,5,,5721,291,107,,,,9975,,42715,,, +1110,USA,,WBT,,Charlotte (NC),35.132222,-80.889722,,50,,6834,292,108,,,,9977,,40912,,, +1110,USA,,WUPE,,Pittsfield (MA),42.439444,-73.291667,,5,,5799,293,108,,,,9999,,43257,,, +1110,USA,,WNAP,,Norristown (PA),40.134722,-75.3125,,4.8,,6095,292,111,,,,,,42427,,, +1110,USA,en,KFAB,,Omaha (NE),41.119722,-96.001667,,50,,7249,306,113,,,,18,,38370,,, +1110,USA,,WGNZ,,Fairborn (OH),39.664722,-83.943889,,5,,6666,297,117,,1200-2400,1234567,,,41541,,, +1110,USA,,WSFW,,Seneca Falls (NY),42.915278,-76.774444,,1,,5981,296,117,,,,,,42987,,, +1110,USA,,WMBI,,Chicago (IL),41.928056,-88.006944,,4.2,,6729,302,118,,,,,,42282,,, +1110,ALS,,KAGV,,Big Lake (AK),61.634167,-149.793333,,10,,7194,348,119,,0000-2400,1234567,9993,,37924,,, +1110,USA,,WTBQ,,Warwick (NY),41.280833,-74.362778,,0.5,,5950,293,120,,,,,,43114,,, +1110,USA,,WWBJ,,Martinsburg (PA),40.303889,-78.266389,,1,,6267,294,120,,,,,,41930,,, +1110,USA,en,KVTT,,Mineral Wells (TX),33.330278,-97.735556,,50,,8011,302,120,,,,,,38695,,, +1110,USA,,WUNN,,Mason (MI),42.551111,-84.404167,,1,,6469,300,122,,,,,,43263,,, +1110,USA,en,WTIS,,Tampa (FL),27.873889,-82.631389,,10,,7538,287,122,,1230-2130,......7,,,43144,,, +1110,USA,en,WTIS,,Tampa (FL),27.873889,-82.631389,,10,,7538,287,122,,1230-2200,123456,,,43144,,, +1110,USA,en,WMUX,,Hurricane (WV),38.444722,-82.015,,1,,6643,295,123,,,,,,42587,,, +1110,CUB,es,R Angulo,,Holgun (ho),20.859947,-76.272811,,10,,7701,278,124,,,,0,,36572,,, +1110,VEN,,YVQT R Carupano,,Carpano (suc),10.663333,-63.286667,,10,,7692,260,124,,0900-0400,1234567,,,45434,,, +1110,USA,,KGFL,,Clinton (AR),35.558333,-92.458889,,5,,7511,300,125,,,,,,38470,,, +1110,USA,,WSLV,,Ardmore (TN),34.993056,-86.856111,,2.5,,7219,295,125,,,,,,43021,,, +1110,MEX,es,XERED-AM R Red,,San Jernimo Tepetlacalco (mex),19.519617,-99.204711,,50,,9319,294,128,,,,,,44667,,, +1110,VEN,es,YVRX Deportes Union R,,Valencia (cbb),10.166667,-68,,10,,8055,264,128,,,,,,45451,,, +1110,CAN,en,CBLI,,Deep River (ON),46.088889,-77.485556,,0.04,,5797,299,129,,,,,,20109148,,, +1110,CAN,fr,CBON-10,,Matachewan (ON),47.9425,-80.645278,,0.04,,5851,303,129,,,,,,20109147,,, +1110,USA,,WKDZ,,Cadiz (KY),36.8825,-87.845556,,0.79,,7125,298,129,,,,,,41992,,, +1110,USA,,WTOF,,Bay Minette (AL),30.869444,-87.769167,,2.5,,7617,293,129,,,,,,40818,,, +1110,CLM,es,HJZE,,Sincelejo (suc),9.316667,-75.366667,,15,,8631,269,131,,,,,,37661,,, +1110,USA,,KDIS,i,Pasadena (CA),34.113889,-117.9975,,20,,9014,316,131,,,,,,38265,,, +1110,USA,,WBIB,,Centreville (AL),32.966944,-87.150278,,1,,7404,294,131,,,,,,40856,,, +1110,USA,,WCBR,,Richmond (KY),37.735833,-84.268056,,0.25,,6838,296,131,,,,,,40957,,, +1110,USA,,WKRA,,Holly Springs (MS),34.786389,-89.416667,,1,,7392,297,131,,,,,,42061,,, +1110,PTR,es,WVJP,,Caguas (PR),18.223611,-66.019722,,0.5,,7226,268,132,,0000-2400,1234567,,,43300,,, +1110,USA,en,KBND,,Bend (OR),44.106944,-121.244167,,5,,8200,324,132,,,,0,,38068,,, +1110,USA,,KTTP,,Pineville (LA),31.364444,-92.454167,,2,,7865,297,133,,,,,,39545,,, +1110,CLM,,HJNC,,Ibagu (tol),4.416667,-75.216667,,10,,9049,266,134,,,,,,37581,,, +1110,CLM,es,HJDI,,Medelln (ant),6.266667,-75.566667,,9,,8910,268,134,,,,,,37389,,, +1110,CLM,es,HJEW Oxigeno 1110,,Cali (val),3.45,-76.466667,,10,,9219,266,134,,,,1,,37424,,, +1110,CLM,es,HJJP,,Villavicencio (met),4.116667,-73.7,,10,,8972,265,134,,,,,,37512,,, +1110,USA,,KYKK,,Humble City (NM),32.816389,-103.232222,,5,,8370,305,134,,,,,,39851,,, +1110,USA,,WUAT,,Pikeville (TN),35.605,-85.187222,,0.25,,7066,295,134,,,,,,43250,,, +1110,CLM,es,HJGP La Voz del Rio Arauca,,Arauca (ara),7.033333,-70.766667,,5,,8516,264,135,,,,,,37459,,, +1110,USA,,KTEK,,Alvin (TX),29.380833,-95.2375,,2.5,,8205,297,135,,,,,,39467,,, +1110,USA,,WOMN,,Franklinton (LA),30.859444,-90.165833,,1,,7767,295,135,,,,,,42600,,, +1110,ARG,es,LS1 R de la Ciudad/La 1110,,Buenos Aires/Dique Lujn (df),-34.367167,-58.711139,,25,,11501,230,138,,0000-2400,1234567,,,39923,,, +1110,B,pt,ZYH620 Rdio Litoral de Cascavel,,Cascavel (CE),-4.137889,-38.234767,,0.25,,7532,229,138,,,,,,36901852,,, +1110,B,pt,ZYJ471 Rdio Cultura Fluminense,,Campos dos Goytacazes (RJ),-21.786464,-41.320222,,5,,9429,224,138,,,,9,,36901845,,, +1110,DOM,,HITC R Jarabacoa,,Jarabacoa (veg),19.066667,-70.666667,,0.25,,7472,272,138,,1000-0400,1234567,,,37257,,, +1110,PRU,es,OAZ4W R Feliz Peru,,Lima/Puente Piedra (lim),-11.866667,-77.066667,,12,,10607,258,138,,,,987,,37000008,,, +1110,USA,pa,KRPA,,Oak Harbor (WA),48.290833,-122.707778,,0.5,,7856,327,139,,,,,,39696,,, +1110,USA,,WJML,,Petoskey (MI),45.334722,-84.926111,,0.01,,6288,303,140,,,,76,,41897,,, +1110,B,pt,ZYH782 Rdio Redentor AM,,Santo Antnio do Descoberto (GO),-15.901889,-48.118317,,2,,9199,232,141,,,,,,36901849,,, +1110,CLM,es,HJPA La Voz de las Islas,,San Andrs (sap),12.566667,-81.708333,,1,,8781,276,143,,,,,,37618,,, +1110,MEX,es,XEOQ-AM,,Ro Bravo (tam),25.998778,-98.151517,,1,,8678,297,143,,,,,,44505,,, +1110,EQA,,HCFC5,,Cuenca (azu),-2.866667,-79.033333,,2,,9949,265,144,,,,,,36933,,, +1110,HND,,HRLP25,,Choluteca (cho),13.366667,-87.166667,,1,,9079,281,144,,,,,,37789,,, +1110,MEX,es,XEHTY-AM La Tremenda,,Martnez de la Torre (vcz),20.05,-97.033333,,1,,9136,293,144,,,,,,44941,,, +1110,NCG,,YNMT R Momotombo,,La Paz Centro (leo),12.416667,-86.95,,1,,9148,280,144,,,,,,45175,,, +1110,B,pt,ZYL267 Rdio Aurilndia,,Nova Lima (MG),-19.990833,-43.834733,,1,,9374,227,145,,,,,,36901851,,, +1110,GTM,,TGMK R Verapaz,,Cobn (esl),14.316667,-91.016667,,1,,9253,285,145,,,,,,40513,,, +1110,MEX,es,XELEO-AM La Rancherita,,Len (gua),21.173656,-101.657189,,1,,9322,297,145,,,,,,44302,,, +1110,CHL,,CD111 R La Frontera,,Temuco (AR),-38.716667,-72.566667,,10,,12643,237,146,,1000-0400,1234567,,,35854,,, +1110,EQA,,HCEG1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36912,,, +1110,HWA,en,KAOI,,Kihei (HI),20.8225,-156.454167,,5,,11736,343,146,,0000-2400,1234567,999,,37955,,, +1110,MEX,es,XEWR-AM R Guadalupana,,Ciudad Jurez (chi),31.736111,-106.486111,,0.5,,8647,307,146,,,,,,45033,,, +1110,USA,,KLIB,,Roseville (CA),38.739444,-121.213889,,0.5,,8715,321,146,,,,9986,,38812,,, +1110,B,pt,ZYI392 Rdio Ponta Por,,Ponta Por/Rua Rio Branco 1301 (MS),-22.522144,-55.724044,,1,,10244,235,148,,,,,,36901838,,, +1110,MEX,es,XETUX-AM Aro,,Tuxtepec (oax),18.09,-96.113889,,0.5,,9251,291,148,,,,,,44870,,, +1110,PRU,,OCX2U R Jan,,Jan (caj),-5.7,-78.783333,,1,,10181,263,148,,,,,,37000072,,, +1110,URG,,CX111 R Paso de los Toros,,Paso de los Toros (ta),-32.766667,-56.466667,,2,,11236,230,148,,1100-0200,1234567,,,51719,,, +1110,B,pt,ZYK544 Rdio Jovem Luz,,Araatuba (SP),-21.191628,-50.486356,,0.5,,9833,231,149,,,,,,36901846,,, +1110,EQA,,HCRP6,,Pelileo (tun),-1.316667,-78.516667,,0.5,,9777,265,149,,,,,,37105,,, +1110,MEX,es,XEPU-AM,,Monclova (coa),26.904167,-101.412778,,0.25,,8793,300,149,,,,,,44579,,, +1110,MEX,es,XETEO-AM Aro,,Teotitln de Flores Magn (oax),18.133333,-97.083333,,0.4,,9309,292,149,,,,,,34900024,,, +1110,B,pt,ZYJ241 Rdio Paiquer AM,,Londrina (PR),-23.233333,-51.141667,,0.5,,10062,231,150,,,,,,36901850,,, +1110,MEX,es,XEVS-AM Mxima 96,,Villa de Seris (son),29.049906,-110.967044,,0.25,,9136,308,150,,,,,,44987,,, +1110,B,,ZYJ253,,So Jos dos Pinhais (PR),-25.516667,-49.216667,,0.5,,10180,228,151,,,,,,45979,,, +1110,B,pt,ZYJ356 Rdio Clube de Ubirata AM,,Ubirat (PR),-24.553056,-52.993333,,0.5,,10285,232,151,,,,,,36901836,,, +1110,B,pt,ZYJ752 Rdio Cultura AM,,Florianpolis (SC),-27.491111,-48.528056,,0.5,,10335,227,151,,,,,,36901841,,, +1110,B,pt,ZYL205 Rdio Planalto de Araguari,,Araguari (MG),-18.642042,-48.218489,,0.25,,9468,231,151,,,,,,36901839,,, +1110,B,pt,ZYK592 Rdio Ibitinga-Ternura FM,,Ibitinga/Fazenda Vista Alegre (SP),-21.774164,-48.835856,,0.25,,9801,230,152,,,,,,36901848,,, +1110,B,pt,ZYK617 Rdio Transamrica,,Moji-Mirim (SP),-22.459978,-46.976564,,0.25,,9772,228,152,,,,,,36901840,,, +1110,B,pt,ZYJ743 Rdio Caanjur,,Caador (SC),-26.748611,-50.993056,,0.25,,10388,229,154,,,,,,36901843,,, +1110,B,,ZYJ746,,Chapec (SC),-27.1,-52.616667,,0.25,,10506,230,155,,,,,,46159,,, +1110,B,pt,ZYJ812 Rdio So Carlos,,So Carlos (SC),-27.077778,-53.019444,,0.25,,10525,230,155,,,,,,36901847,,, +1110,B,pt,ZYK306 Rdio Sobradinho AM,,Sobradinho (RS),-29.45,-53.036111,,0.25,,10749,229,155,,,,,,36901842,,, +1110,B,pt,ZYK364 Rdio Solaris AM,,Antnio Prado (RS),-28.861667,-51.281111,,0.25,,10604,228,155,,,,,,36901844,,, +1110,B,pt,ZYK257 Rdio Cultura AM,,Jaguaro (RS),-32.548333,-53.39,,0.25,,11058,228,156,,,,,,36901853,,, +1110,B,pt,ZYK325 Rdio Cruzeiro do Sul,,Itaqui (RS),-29.147222,-56.481667,,0.25,,10902,232,156,,,,,,36901835,,, +1110,MEX,es,XEPVJ-AM Ke Buena,,Puerto Vallarta (jal),20.651389,-105.228889,,0.02,,9584,299,163,,,,,,44585,,, +1112,RUS,,RL,b,Zhiguli,53.354167,49.291667,,0.025,,2847,70,101,,,,,L1110 U1130 30.0s,IDx2,85866,, +1115,MRC,,SNRT Al Ida Al-Watania,,Ouarzazate (smd),30.900494,-6.9184,,5,,2597,210,76,,,,8,,5900005,,, +1115,BOL,,R Difusoras Independencia,,Atocha (pts),-20.933333,-66.233333,,1,,10715,244,149,,0930-0300,1234567,,,51994,,, +1116,HOL,nl,R Bloemendaal,,Bloemendaal (nho),52.404264,4.604733,,0.5,,127,286,53,,0800-2000,......7,,,951,,, +1116,HOL,nl,R Bloemendaal,,Bloemendaal (nho),52.404264,4.604733,,0.5,,127,286,53,,1100-1200,.2.....,,,951,,, +1116,HNG,hu,MR Dank Rdi,,Miskolc (BAZ),48.100319,20.830356,,15,,1118,108,56,,0325-2315,1234567,9998,,949,,, +1116,G,,BBC Asian Network,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,1900-0100,1234...,16,,946,,, +1116,G,,BBC Asian Network,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,2100-0100,....5..,16,,946,,, +1116,G,,BBC R Derby/BBC Asian Network,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,1800-0100,......7,16,,946,,, +1116,G,,BBC R Derby/BBC Asian Network,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,1900-2100,.....6.,16,,946,,, +1116,G,en,BBC R Derby,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,0100-1800,.....6.,16,,946,,, +1116,G,en,BBC R Derby,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,0100-1900,1234.67,16,,946,,, +1116,E,es,SER,,Albacete/Carretera Mahora (CAM-AB),39.011444,-1.855667,,10,,1590,207,63,,0000-2400,1234567,9949,,944,,, +1116,HNG,hu,MR Dank Rdi,,Mosonmagyarvr (GMS),47.838639,17.297,,2.2,,911,117,63,,0325-2315,1234567,,,950,,, +1116,I,it,RAI R1,,Palermo/Monte Pellegrino (pa),38.161389,13.358472,,10,,1642,158,63,,0500-2300,1234567,,,953,,, +1116,E,es,SER,,Pontevedra (GAL-PO),42.465419,-8.710589,,5,,1560,233,66,,0000-2400,1234567,13,,945,,, +1116,G,en,BBC R 5 Live,,Saint Peter Port/Rohais (GUE),49.459889,-2.554444,,0.5,,695,248,67,,0100-0600,1234567,,,947,,, +1116,G,en,BBC R Guernsey,,Saint Peter Port/Rohais (GUE),49.459889,-2.554444,,0.5,,695,248,67,,0600-0100,1234567,,,947,,, +1116,RUS,ru,R Rossii,,Sochi/RV170 (KD),43.582,39.729056,,30,,2633,98,69,,0023-2100,1234567,9957,,961,,, +1116,IRN,fa,IRIB R Iran,,Ardakan (yzd),32.440589,53.909672,,200,,4373,101,78,,0000-2400,1234567,85,,1798,,, +1116,IRQ,,R Dar as-Salam,,Baghdad (bgh),33.333333,44.4,,20,,3677,110,81,,0400-2100,1234567,952,,47311,,, +1116,ARS,ar,BSKSA Idha'atu-i Jeddah,,Al-Madinah=Medinah (mdh),24.409678,39.534411,,20,,4158,125,86,,0000-2400,1234567,,,47085,,, +1116,IND,,AIR North/AIR R Kashmir,,Srinagar A (JK),34.116722,74.692556,,300,,5659,82,89,,0020-0445,1234567,,,49702,,, +1116,IND,,AIR North/AIR R Kashmir,,Srinagar A (JK),34.116722,74.692556,,300,,5659,82,89,,0630-0915,1234567,,,49702,,, +1116,IND,,AIR North/AIR R Kashmir,,Srinagar A (JK),34.116722,74.692556,,300,,5659,82,89,,1130-1740,1234567,,,49702,,, +1116,DJI,aa,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0300-0700,1234567,,,2473,,, +1116,DJI,aa,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,1100-1400,1234567,,,2473,,, +1116,DJI,aa,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,1800-2000,1234567,,,2473,,, +1116,DJI,fr,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0700-1100,1234567,,,2473,,, +1116,DJI,fr,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,1400-1800,1234567,,,2473,,, +1116,CHN,zh,CNR 2,,Harbin/HLTS904 (HL),45.69,126.819394,,120,85,7746,40,114,,2100-1602,1234567,,,49696,,, +1116,CHN,,CNR 5 Zhonghua zhi Sheng,,Shaowu/SARFT751 (FJ),27.081667,117.277778,,600,120,8955,58,116,,2055-1705,1234567,,,49695,,, +1116,CHN,zh,Sichuan RGD Xinwen Guangbo,,Chengdu/SCTS520 (SC),30.906086,104.124883,,50,,7834,64,118,,2155-1605,1234567,,,49699,,, +1116,CHN,zh,Sichuan RGD Xinwen Guangbo,,Dazhou (SC),31.216667,107.5,,10,,8013,62,127,,,,,,36200490,,, +1116,CHN,,Hainan RGD,,Ledong/Huangliu (HA),18.516667,108.783333,,30,,9204,69,130,,,,,,49700,,, +1116,CHN,zh,Sichuan RGD Xinwen Guangbo,,Ganzi=Garz/SCTS532 (SC),31.619792,99.999333,,1,,7517,67,132,,,,,,36200489,,, +1116,CHN,zh,Sichuan RGD Xinwen Guangbo,,Aba=Ngawa/SCTS536 (SC),31.933333,101.716667,,1,,7598,65,133,,,,,,36200492,,, +1116,THA,th,Thor. Phor. Saam,,Phitsanulok/Fort Somdet Phra (psl),16.847778,100.261944,,10,,8795,77,133,,0000-2400,1234567,,,49727,,, +1116,THA,th,Sor. Wor. Thor. (R Thailand),,Phangnga (pgg),8.863056,98.336389,,10,,9362,83,135,,,,,,49728,,, +1116,TWN,,Han Sheng Kuangpo Tientai,,Taipei (TPS),25.085933,121.512869,,10,,9378,56,135,,2100-1600,1234567,,,49731,,, +1116,TWN,,Han Sheng Kuangpo Tientai,,Yilan (YL),24.753319,121.735689,,10,,9421,56,135,,2100-1600,1234567,,,52263,,, +1116,J,ja,JOAF RNB Nankai Hoso,,Matsuyama (shi-ehi),33.797378,132.7748,,5,,9136,42,137,,0000-1635,......7,,,49713,,, +1116,J,ja,JOAF RNB Nankai Hoso,,Matsuyama (shi-ehi),33.797378,132.7748,,5,,9136,42,137,,0000-2400,123456,,,49713,,, +1116,J,ja,JOAF RNB Nankai Hoso,,Matsuyama (shi-ehi),33.797378,132.7748,,5,,9136,42,137,,1850-2400,......7,,,49713,,, +1116,J,ja,JODR BSN Niigata Hoso,,Niigata (chu-nii),37.892222,139.094444,,5,,9009,36,137,,0000-1500,......7,,,49715,,, +1116,J,ja,JODR BSN Niigata Hoso,,Niigata (chu-nii),37.892222,139.094444,,5,,9009,36,137,,0000-2400,123456,,,49715,,, +1116,J,ja,JODR BSN Niigata Hoso,,Niigata (chu-nii),37.892222,139.094444,,5,,9009,36,137,,1850-2400,......7,,,49715,,, +1116,CHN,,Changshu News Channel,,Changshu (JS),31.65,120.733333,,3,,8733,52,138,,2130-1400,1234567,,,49698,,, +1116,TWN,,Ching-Cha Kuangpo Tientai,,Chupei (HC),24.81,121.020556,,5,,9376,56,138,,,,,,49729,,, +1116,TWN,,Ching-Cha Kuangpo Tientai,,Kaohsiung (KHS),22.688475,120.316889,,5,,9531,58,138,,,,,,49730,,, +1116,CHN,zh,Jining JGD,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,2200-1700,1234567,,,36201046,,, +1116,CHN,,Fuyang RGD Xinwen,,Fuyang (AH),32.929167,115.804167,,1,,8346,55,140,,,,,,49701,,, +1116,TWN,,BCC News Network,,Y-Li (HL),23.389722,121.33,,3.5,,9524,57,140,,0000-2400,1234567,,,49732,,, +1116,PHL,,DZLB-AM,,Los Banos (lag),14.15,121.216667,,5,,10370,62,141,,,,,,49721,,, +1116,PHL,,DYTR-AM,,Tagbilaran City/Dampas (boh),9.65,123.883333,,5,,10948,62,143,,????-1500,1234567,,,49722,,, +1116,CHN,,Hainan RGD,,Danzhou/Dongcheng Xiang (HA),19.516667,109.566667,,1,,9165,68,144,,,,,,36200491,,, +1116,J,ja,JOAL RNB, Nankai Hoso,,Niihama (shi-ehi),33.983333,133.316667,,1,,9143,42,144,,0000-1635,......7,,,49716,, +1116,J,ja,JOAL RNB, Nankai Hoso,,Niihama (shi-ehi),33.983333,133.316667,,1,,9143,42,144,,0000-2400,123456,,,49716,, +1116,J,ja,JOAL RNB, Nankai Hoso,,Niihama (shi-ehi),33.983333,133.316667,,1,,9143,42,144,,1850-2400,......7,,,49716,, +1116,J,ja,JOAM RNB, Nankai Hoso,,Uwajima (shi-ehi),33.2,132.55,,1,,9183,43,144,,0000-1635,......7,,,49718,, +1116,J,ja,JOAM RNB, Nankai Hoso,,Uwajima (shi-ehi),33.2,132.55,,1,,9183,43,144,,0000-2400,123456,,,49718,, +1116,J,ja,JOAM RNB, Nankai Hoso,,Uwajima (shi-ehi),33.2,132.55,,1,,9183,43,144,,1850-2400,......7,,,49718,, +1116,PHL,,DXAS-AM FEBC,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,1000-1300,1234567,,,49723,,, +1116,PHL,,DXAS-AM FEBC,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,2100-0100,1234567,,,49723,,, +1116,INS,id,PM7CLX R DBS,,Prabumulih Barat (SS-pra),-3.45,104.25,,1,,10845,86,150,,,,,,49709,,, +1116,INS,id,R Barani,,Bandung (JB-ban),-6.933611,107.726944,,1,,11387,85,152,,,,48,,35400013,,, +1116,INS,id,PM3BFX R Alawiyah,,Bekasi (JB-kbk),-6.266944,106.911944,,0.5,,11274,86,154,,,,,,49691,,, +1116,INS,id,PM8DBE R.Mitra Bayu Suara Utari,,Bantaeng (SN-ban),-5.55,119.95,,1,,12086,74,154,,,,,,49704,,, +1116,J,ja,JOAN RNB, Nankai Hoso,,Ozu (shi-ehi),33.516667,132.55,,0.1,,9153,43,154,,0000-1635,......7,,,49717,, +1116,J,ja,JOAN RNB, Nankai Hoso,,Ozu (shi-ehi),33.516667,132.55,,0.1,,9153,43,154,,0000-2400,123456,,,49717,, +1116,J,ja,JOAN RNB, Nankai Hoso,,Ozu (shi-ehi),33.516667,132.55,,0.1,,9153,43,154,,1850-2400,......7,,,49717,, +1116,J,ja,JOAS RNB Nankai Hoso,,Misho (shi-ehi),32.952778,132.533333,,0.1,,9206,43,154,,0000-2400,1234567,,,49714,,, +1116,J,ja,NBC Saga,,Imari (kyu-sag),33.266667,129.883333,,0.1,,9050,45,154,,,,,,31400075,,, +1116,J,ja,RNB, Nankai Hoso,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,0000-1635,......7,,,49719,, +1116,J,ja,RNB, Nankai Hoso,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,0000-2400,123456,,,49719,, +1116,J,ja,RNB, Nankai Hoso,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,1850-2400,......7,,,49719,, +1116,AUS,,6MM,,Mandurah/West Pinjarra (WA),-32.641917,115.803125,,2,,14087,98,157,,0000-2400,1234567,991,,49693,,, +1116,AUS,en,4BC Talkr 1116,,Brisbane/Nudgee (QLD),-27.35875,153.089722,,6.3,,16116,58,159,,0000-2400,1234567,9949,,49692,,, +1116,AUS,en,3AK SEN 1116,,Melbourne/Lower Plenty (VIC),-37.744556,145.110667,,5,,16456,80,161,,0000-2400,1234567,,,49694,,, +1116,NZL,en,RNZ National,,Nelson/Stoke (NSN),-41.329167,173.215278,,2.5,,18455,45,171,,0000-2400,1234567,,,49720,,, +1117,INS,id,R Carolina Arjuno,,Surabaya (JI-ksu),-7.233333,112.75,,0.25,,11754,81,159,,2355-????,1234567,9,,49565,,, +1120,USA,,WUST,,Washington (DC),38.904167,-77.165,,20,,6304,292,107,,1200-2400,1234567,,,43270,,, +1120,USA,,KMOX,,Saint Louis (MO),38.7225,-90.055,,50,,7107,300,111,,,,0,,38923,,, +1120,USA,,WBNW,,Concord (MA),42.448333,-71.4275,,1,,5681,292,114,,,,,,40888,,, +1120,USA,,WSME,,Camp Lejeune (NC),34.7175,-77.2825,,6,,6635,289,116,,,,,,43025,,, +1120,USA,es,WBBF,,Buffalo (NY),42.830556,-78.800278,,1,,6111,297,118,,,,,,42361,,, +1120,USA,es,WPRX,,Bristol (CT),41.658056,-72.9475,,0.5,,5833,292,118,,,,,,42734,,, +1120,USA,en,WKAJ,,Saint Johnsville (NY),42.999722,-74.691667,,0.4,,5846,295,119,,,,,,20000050,,, +1120,USA,,WKQW,,Oil City (PA),41.395833,-79.664722,,1,,6271,296,120,,,,9991,,42060,,, +1120,HTI,,R Magic,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52116,,, +1120,USA,,KPNW,,Eugene (OR),43.956667,-123.036111,,50,,8286,325,123,,,,110,,39150,,, +1120,USA,,KEOR,,Catoosa (OK),36.306944,-95.972778,,10,,7653,302,124,,,,,,38334,,, +1120,USA,,WTWZ,,Clinton (MS),32.350833,-90.339444,,10,,7652,296,124,,1300-0100,1234567,,,43239,,, +1120,DOM,es,HICN Metro 1120 AM Stereo,,Santo Domingo (sdo),18.475,-69.833333,,5,,7465,271,125,,0000-2400,1234567,,,37232,,, +1120,VEN,,YVSK R Difusora del Sur,,San Fernando de Apure (apu),7.833333,-67.5,,20,,8225,262,126,,,,,,51685,,, +1120,USA,es,WKCE,,Maryville (TN),35.842222,-83.7725,,1,,6958,294,127,,,,,,41972,,, +1120,VEN,es,YVXZ R Republica,,Maturin (mgs),9.75,-63.183333,,5,,7765,260,128,,,,,,51686,,, +1120,USA,en,WXJO,,Douglasville (GA),33.763333,-84.741111,,1,,7187,293,129,,1200-2400,1234567,,,43471,,, +1120,VEN,,YVMF Ondas del Lago Super Ondas,,Maracaibo (zul),10.666667,-71.666667,,10,,8261,267,130,,0000-2400,1234567,,,45379,,, +1120,B,pt,ZYK274 Rdio Rural AM,,Porto Alegre/Eldorado do Sul (RS),-30.015889,-51.31,,50,80,10715,227,132,,,,,,36901868,,, +1120,CLM,es,HJTI,,Ccuta (nsa),7.883333,-72.5,,10,,8560,266,132,,,,,,35901544,,, +1120,B,pt,ZYH598 Rdio Tupinamb,,Sobral (CE),-3.666667,-40.333333,,1,,7596,231,133,,,,,,36901863,,, +1120,CLM,es,HJKQ Besame,,Tunja (boy),5.566667,-73.366667,,10,,8822,265,133,,,,0,,37530,,, +1120,DOM,,R Antillas,,Santa Cruz de Barahona (bh),18.2,-71.1,,1,,7575,272,133,,,,,,52241,,, +1120,USA,,WHOG,,Hobson City (AL),33.613889,-85.855278,,0.5,,7269,294,133,,,,,,41675,,, +1120,USA,,WNWF,,Destin (FL),30.509444,-86.476111,,1,,7565,292,133,,,,,,42534,,, +1120,B,pt,ZYI778 Rdio Relgio Musical,,Paulista (PE),-7.957347,-34.870161,,1,,7744,224,134,,,,,,36901854,,, +1120,B,pt,ZYJ253 Rdio Eldorado do Paran,,So Jos dos Pinhais (PR),-25.553333,-49.2225,,25,,10184,228,134,,,,4,,36901866,,, +1120,PTR,es,WMSW,,Hatillo (PR),18.470278,-66.840556,,0.4,,7261,269,134,,1000-0200,1234567,6,,42396,,, +1120,CLM,es,HJGH Oxigeno,,Bucaramanga (sat),7.066667,-73.116667,,5,,8673,266,136,,,,2,,37453,,, +1120,CLM,es,HJQ92 Colombia Mia,,Yopal (cas),5.35,-72.4,,5,,8775,264,136,,,,,,35901542,,, +1120,CLM,es,HJJC,,Pereira (ris),4.816667,-75.7,,5,,9047,267,137,,,,,,35901545,,, +1120,CTR,,Unicn R,,San Jos (sjs),9.9,-84.033333,,5,,9171,276,137,,0000-2400,1234567,,,40606,,, +1120,EQA,,HCRV2,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,37118,,, +1120,NCG,es,YNCP R.CEPAD El Arco Iris del Amor,,Managua (mng),12.15,-86.283333,,5,,9126,280,137,,1100-0100,1234567,,,52223,,, +1120,USA,,KANN,,Roy (UT),41.058611,-112.069444,,1.1,,8083,316,137,,,,14,,37952,,, +1120,B,pt,ZYK367 Rdio Querencia AM,,Santo Augusto (RS),-27.86,-53.78,,10,,10639,230,139,,,,,,36901864,,, +1120,B,pt,ZYI687 Rdio Independncia,,Catol do Rocha (PB),-6.364533,-37.743933,,0.25,,7727,228,140,,,,,,36901861,,, +1120,B,pt,ZYJ285 Rdio Educadora,,Laranjeiras do Sul (PR),-25.37,-52.385833,,5,,10330,231,141,,,,,,36901862,,, +1120,EQA,,HCAS7,,Puyo (pas),-1.5,-78,,3,,9758,265,141,,,,,,36853,,, +1120,USA,,KLIM,,Limon (CO),39.274167,-103.713611,,0.25,,7824,309,141,,,,,,38817,,, +1120,B,pt,ZYH513 Rdio Belo Campo,,Belo Campo (BA),-15.0333,-41.263758,,1,,8759,227,143,,,,,,36901857,,, +1120,PNR,es,HOM21 R Sonora,,Villalobos (pnm),9.079722,-79.439444,,1,,8929,272,143,,1030-0300,1234567,,,37705,,, +1120,B,pt,ZYI215 Sim AM,,So Mateus (ES),-18.674444,-39.866389,,1,,9052,224,144,,,,,,36901860,,, +1120,CLM,,HJJC,,Cartago (val),4.716667,-75.916667,,1,,9070,267,144,,,,,,37504,,, +1120,GTM,,TGC R Uno 120 AM,,Ciudad de Guatemala (gut),14.65,-90.45,,1,,9186,284,144,,,,,,40484,,, +1120,HND,,HRTL,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37851,,, +1120,SLV,,YSLR,,San Salvador (ssl),13.716667,-89.166667,,1,,9182,283,144,,,,,,45295,,, +1120,ARG,,LV5 R Sarmiento,,San Juan (sj),-31.516667,-68.516667,,5,,11792,239,146,,0900-0400,1234567,,,40255,,, +1120,B,pt,ZYK660 Rdio Bandeirantes,,So Jos dos Campos (SP),-23.187006,-45.8706,,1,,9787,227,146,,,,,,36901870,,, +1120,EQA,,HCEB1,,San Gabriel (car),0.616667,-77.816667,,1,,9559,266,146,,,,,,36909,,, +1120,EQA,,HCLE1,,Maranon (pic),-0.233333,-79.216667,,1,,9730,266,146,,,,,,37006,,, +1120,B,pt,ZYN606 Rdio Concrdia,,Campo Grande (MS),-20.428258,-54.563722,,1,,9983,235,147,,,,,,36901867,,, +1120,BOL,,CP184 R Estacion El Dorado,,Trinidad (ebn),-14.8,-64.783333,,1,,10072,246,147,,1000-0100,1234567,,,36672,,, +1120,EQA,,HCNT3,,Once Catamay (loj),-3.983333,-79.283333,,1,,10064,264,147,,,,,,37046,,, +1120,MEX,es,XETQE-AM La Morena,,Tenosique (tab),17.45,-91.433333,,0.5,,9005,287,147,,,,,,44854,,, +1120,MEX,es,XETR-AM R Panormica,,Ciudad Valles (slp),21.961111,-98.996944,,0.5,,9088,295,147,,,,,,44855,,, +1120,URG,es,CW31 R Salto,,Salto (sa),-31.3775,-57.969722,,2.5,,11188,232,147,,1000-0300,1234567,,,36767,,, +1120,B,pt,ZYL272 Rdio Itatiaia,,Ouro Preto/Morro da Queimada (MG),-20.38125,-43.483772,,0.5,,9395,226,148,,,,,,36901865,,, +1120,BOL,,R Celestial El Milagro,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,1000-0100,123456,,,51996,,, +1120,BOL,,R Celestial El Milagro,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,1000-2400,......7,,,51996,,, +1120,MEX,es,XEGV-AM 1120 Noticias,,Quertaro (que),20.606464,-100.369536,,0.5,,9294,296,148,,,,,,44087,,, +1120,MEX,es,XERUY-AM R.Universidad,,Mrida (yuc),20.868564,-89.624556,,0.25,,8589,288,148,,,,,,44720,,, +1120,MEX,es,XEUNO-AM R Uno,,Guadalajara (jal),20.672667,-103.348056,,0.5,,9469,298,148,,,,,,44916,,, +1120,MEX,es,XEMX-AM MiC R,,Mexicali (bcn),32.624506,-115.502919,,0.27,,9035,314,149,,,,,,44420,,, +1120,PRG,,ZP24 R Nuevo Mundo,,San Lorenzo (cet),-25.395528,-57.485083,,1,,10609,235,149,,0900-0200,1234567,,,45519,,, +1120,MEX,es,XEZB-AM R Oro,,Oaxaca (oax),17.076667,-96.701944,,0.25,,9379,291,151,,,,,,45126,,, +1120,B,pt,ZYK671 Rdio Clube Imperial,,Taquaritinga/Fazenda Contendas (SP),-21.385525,-48.505978,,0.25,,9747,230,152,,,,,,36901858,,, +1120,B,pt,ZYL301 Rdio Sete Colinas,,Uberaba (MG),-19.726794,-47.920383,,0.25,,9557,230,152,,,,,,36901855,,, +1120,B,pt,ZYL332 Rdio Serra da Boa Esperana,,Boa Esperana (MG),-21.107964,-45.569289,,0.25,,9570,227,152,,,,,,36901869,,, +1120,USA,xx,KZSJ,,San Martin (CA),36.963611,-121.489444,,0.15,,8899,320,152,,,,9936,,39909,,, +1120,B,pt,ZYK631 Rdio AM 1120 Portofelicense,,Porto Feliz (SP),-23.214717,-47.495325,,0.25,,9871,228,153,,,,,,36901859,,, +1120,MEX,es,XEPOP-AM Frmula 1120,,Puebla/Av.15 de Mayo 2939 (pue),19.063142,-98.214644,,0.1,,9298,293,155,,,,,,44569,,, +1124.5,GRC,el,Master Rock,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,55,,3400056,,, +1125,BEL,fr,RTBF Vivacit,,Houdeng (wal-hnt),50.484656,4.140989,,10,,240,222,49,,0000-2400,1234567,9883,,962,,, +1125,LBY,ar,Idha'at Libya al-Hurra,,Al-Bayda'=El-Beida (jak),32.7815,21.797722,,500,,2481,144,55,,0800-2355,1234567,51,,973,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0625-0630,12345..,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0650-0700,12345..,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0800-0815,1234567,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1208-1300,12345..,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1230-1300,.....67,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1400-1415,12345..,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0815-1208,12345..,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0815-1230,.....67,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1300-1400,12345..,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1300-2300,.....67,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1415-2300,12345..,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0630-0650,12345..,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0700-0800,12345..,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0710-0800,.....67,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,2300-0625,1234..7,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,2300-0710,....56.,,,969,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0625-0630,12345..,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0650-0700,12345..,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0800-0815,1234567,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1208-1300,12345..,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1230-1300,.....67,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1400-1415,12345..,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0815-1208,12345..,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0815-1230,.....67,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1300-1400,12345..,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1300-2300,.....67,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1415-2300,12345..,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0630-0650,12345..,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0700-0800,12345..,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0711-0800,.....67,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,2300-0625,1234..7,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,2300-0710,....56.,,,967,,, +1125,E,pt,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0710-0711,.....67,,,967,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0625-0630,12345..,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0650-0700,12345..,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0800-0815,1234567,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1208-1300,12345..,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1230-1300,.....67,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1400-1415,12345..,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0815-1208,12345..,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0815-1230,.....67,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1300-1400,12345..,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1300-2300,.....67,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1415-2300,12345..,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0630-0650,12345..,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0700-0800,12345..,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0710-0800,.....67,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,2300-0625,1234..7,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,2300-0710,....56.,971,,966,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0625-0630,12345..,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0650-0700,12345..,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0800-0815,1234567,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1208-1300,12345..,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1230-1300,.....67,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1400-1415,12345..,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0815-1208,12345..,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0815-1230,.....67,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1300-1400,12345..,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1300-2300,.....67,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1415-2300,12345..,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0630-0650,12345..,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0700-0800,12345..,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0710-0800,.....67,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,2300-0625,1234..7,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,2300-0710,....56.,,,968,,, +1125,G,en,BBC R Wales,,Llandrindod Wells (WA-POW),52.235722,-3.391639,,1,,668,275,64,,0600-2400,1234567,0,,970,,, +1125,G,en,BBC WS,,Llandrindod Wells (WA-POW),52.235722,-3.391639,,1,,668,275,64,,0000-0600,1234567,0,,970,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0625-0630,12345..,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0650-0700,12345..,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0800-0815,1234567,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1208-1300,12345..,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1230-1300,.....67,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1400-1415,12345..,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0815-1208,12345..,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0815-1230,.....67,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1300-1400,12345..,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1300-2300,.....67,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1415-2300,12345..,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0630-0650,12345..,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0700-0800,12345..,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0710-0800,.....67,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,2300-0625,1234..7,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,2300-0710,....56.,0,,965,,, +1125,IRN,fa,IRIB R Qazvin,,Qazvin (qzv),36.106933,50.038789,,50,,3835,100,78,,0000-2400,1234567,20,,10800013,,, +1125,NGR,,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.535178,2.056989,,20,,4307,187,87,,0500-2200,......7,17,,2467,,, +1125,NGR,,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.535178,2.056989,,20,,4307,187,87,,0500-2300,123456,17,,2467,,, +1125,IRN,fa,IRIB R Iran,,Nehbandan (skh),31.542861,60.043861,,10,,4857,96,96,,,,,,972,,, +1125,IND,,AIR North,,Udaipur (RJ),24.575553,73.739756,,20,,6347,91,107,,0025-0430,1234567,,,49741,,, +1125,IND,,AIR North,,Udaipur (RJ),24.575553,73.739756,,20,,6347,91,107,,0700-0930,1234567,,,49741,,, +1125,IND,,AIR North,,Udaipur (RJ),24.575553,73.739756,,20,,6347,91,107,,1130-1740,1234567,,,49741,,, +1125,IND,,AIR Northeast,,Tezpur (AS),26.655,92.811667,,20,,7466,75,119,,0025-0430,1234567,990,,49740,,, +1125,IND,,AIR Northeast,,Tezpur (AS),26.655,92.811667,,20,,7466,75,119,,1000-1600,1234567,990,,49740,,, +1125,CLN,,FEBA India,,Puttalam (put),7.976542,79.802253,,50,350,8177,98,122,,0000-0045,1234567,1,,34700008,,, +1125,CLN,,FEBA India,,Puttalam (put),7.976542,79.802253,,50,350,8177,98,122,,1330-1545,1234567,1,,34700008,,, +1125,CHN,,Changjiang JGD,,Wuhan/Hongxia (HU),30.603333,114.246111,,50,,8464,58,125,,2055-1800,1234567,,,49739,,, +1125,THA,th,Sor. Wor. Thor. (R Thailand),,Chanthaburi/Sukhumvit Road (ctb),12.667222,102.109722,,20,,9283,78,132,,2200-1600,1234567,,,49757,,, +1125,CHN,zh,Hebei RGD Jingji Guangbo,,Baoding/HBTS662 (HB),38.932778,115.443056,,1,,7796,51,135,,2000-1600,1234567,,,36200488,,, +1125,CHN,zh,Hebei RGD Jingji Guangbo,,Langfang (HB),39.528333,116.729722,,1,,7812,50,135,,2000-1600,1234567,,,49737,,, +1125,CHN,zh,Hebei RGD Jingji Guangbo,,Shijiazhuang/HBTS717 (HB),37.830833,114.468889,,1,,7840,53,135,,2000-1600,1234567,,,49738,,, +1125,J,ja,JOAD NHK2,,Naha/Tomigusuku (kyu-oki),26.178333,127.704167,,10,,9613,50,136,,2030-1500,1.....7,,,49745,,, +1125,J,ja,JOAD NHK2,,Naha/Tomigusuku (kyu-oki),26.178333,127.704167,,10,,9613,50,136,,2030-1635,.2345..,,,49745,,, +1125,J,ja,JOAD NHK2,,Naha/Tomigusuku (kyu-oki),26.178333,127.704167,,10,,9613,50,136,,2030-1640,.....6.,,,49745,,, +1125,PHL,tl,DZWN-AM Bombo Radyo,,Dagupan City (pgs),16.033333,120.333333,,10,,10144,61,138,,,,,,49754,,, +1125,TWN,,Cheng Sheng BC,,Huwei (YL),23.7,120.433333,,5,,9444,57,138,,0000-2400,1234567,,,49759,,, +1125,VTN,vi,VOV Ty Ninh R,,Ty Ninh (tnh),11.288717,106.108392,,5,,9670,75,139,,2200-1200,1234567,,,49761,,, +1125,PHL,,DXGL-AM,,Butuan City (agn),8.933333,125.516667,,10,,11113,61,141,,,,,,49753,,, +1125,J,,NHK R 2,,Nayoro (hok),44.366667,142.466667,,1,,8492,31,142,,2030-1500,1.....7,,,49746,,, +1125,J,,NHK R 2,,Nayoro (hok),44.366667,142.466667,,1,,8492,31,142,,2030-1635,.2345..,,,49746,,, +1125,J,,NHK R 2,,Nayoro (hok),44.366667,142.466667,,1,,8492,31,142,,2030-1640,.....6.,,,49746,,, +1125,PHL,,DWAS-AM FEBC,,Legazpi City/San Joaquin (aby),13.183333,123.75,,5,,10611,60,142,,2130-1300,1234567,,,49756,,, +1125,J,ja,JOIZ NHK2,,Muroran (hok),42.315278,140.9825,,1,,8643,33,143,,2030-1500,1.....7,,,49744,,, +1125,J,ja,JOIZ NHK2,,Muroran (hok),42.315278,140.9825,,1,,8643,33,143,,2030-1635,.2345..,,,49744,,, +1125,J,ja,JOIZ NHK2,,Muroran (hok),42.315278,140.9825,,1,,8643,33,143,,2030-1640,.....6.,,,49744,,, +1125,J,ja,JOOC NHK2,,Obihiro (hok),42.981389,143.199444,,1,,8656,31,143,,2030-1500,1.....7,,,49748,,, +1125,J,ja,JOOC NHK2,,Obihiro (hok),42.981389,143.199444,,1,,8656,31,143,,2030-1635,.2345..,,,49748,,, +1125,J,ja,JOOC NHK2,,Obihiro (hok),42.981389,143.199444,,1,,8656,31,143,,2030-1640,.....6.,,,49748,,, +1125,J,,JOLC NHK2,,Tottori (chg-tot),35.516667,134.2,,1,,9034,41,144,,2030-1500,1.....7,,,49750,,, +1125,J,,JOLC NHK2,,Tottori (chg-tot),35.516667,134.2,,1,,9034,41,144,,2030-1635,.2345..,,,49750,,, +1125,J,,JOLC NHK2,,Tottori (chg-tot),35.516667,134.2,,1,,9034,41,144,,2030-1640,.....6.,,,49750,,, +1125,J,,NHK R 2,,Hagi (chg-yam),34.416667,131.4,,1,,9013,43,144,,2030-1500,1.....7,,,49743,,, +1125,J,,NHK R 2,,Hagi (chg-yam),34.416667,131.4,,1,,9013,43,144,,2030-1635,.2345..,,,49743,,, +1125,J,,NHK R 2,,Hagi (chg-yam),34.416667,131.4,,1,,9013,43,144,,2030-1640,.....6.,,,49743,,, +1125,J,,NHK R 2,,Takayama (chu-gif),36.133333,137.25,,1,,9106,38,144,,2030-1500,1.....7,,,49749,,, +1125,J,,NHK R 2,,Takayama (chu-gif),36.133333,137.25,,1,,9106,38,144,,2030-1635,.2345..,,,49749,,, +1125,J,,NHK R 2,,Takayama (chu-gif),36.133333,137.25,,1,,9106,38,144,,2030-1640,.....6.,,,49749,,, +1125,PHL,tl,DXGM-AM Super Radyo,,Davao City/Matina (dvs),7.080556,125.575,,5,,11289,62,144,,1955-1500,1234567,,,49755,,, +1125,TWN,,Ching-Cha Kuangpo Tientai,,Taitung (TT),22.745306,121.150433,,1,,9573,57,146,,,,,,49760,,, +1125,BOL,,R Crucena,,Cotoca (scz),-17.75,-62.997222,,0.5,,10230,243,151,,1130-2200,1234567,,,51997,,, +1125,BOL,,R Em. Cooperativa Poopo,,Poopo (oru),-18.383333,-66.983333,,0.3,,10533,246,154,,,,,,51998,,, +1125,J,,NHK R 2,,Niimi (chg-oka),34.966667,133.466667,,0.1,,9055,41,154,,2030-1500,1.....7,,,49747,,, +1125,J,,NHK R 2,,Niimi (chg-oka),34.966667,133.466667,,0.1,,9055,41,154,,2030-1635,.2345..,,,49747,,, +1125,J,,NHK R 2,,Niimi (chg-oka),34.966667,133.466667,,0.1,,9055,41,154,,2030-1640,.....6.,,,49747,,, +1125,VUT,,R Vanuatu,,Port Vila/Enten Lagoon (MW) (sef),-17.755972,168.361039,,10,,15881,29,156,,1900-1000,......7,,,49762,,, +1125,VUT,,R Vanuatu,,Port Vila/Enten Lagoon (MW) (sef),-17.755972,168.361039,,10,,15881,29,156,,1900-1115,123456,,,49762,,, +1125,AUS,,5MU,,Murray Bridge/Gifford Hill (SA),-35.153125,139.213972,,5,,15869,82,159,,0000-2400,1234567,997,,49736,,, +1125,INS,id,RPDT2 Luwu,,Palopo (SN-luw),-3,120.2,,0.25,,11873,73,159,,,,,,35400063,,, +1125,AUS,,1RPH,,Canberra/Gungahlin (ACT),-35.216472,149.125611,,2,,16533,72,166,,0000-2400,1234567,,,49735,,, +1125,AUS,,4RO/t,,Gladstone (QLD),-23.866667,151.233333,,0.5,,15691,57,169,,,,,,52290,,, +1125,NZL,,R Sport,,Napier/Pakowhai (HKB),-39.561111,176.866111,,1,,18439,31,175,,0000-2400,1234567,,,49752,,, +1125,NZL,,R Hauraki,,Dunedin/Centre Road (OTA),-45.886944,170.5675,,0.5,,18672,65,179,,,,,,49751,,, +1130,UKR,,PO,b,Poltava / Suprunovka (PO),49.5625,34.375,,0.025,,1972,87,93,,,,,,85868,,, +1130,RUS,,AK,b,Aleksandrovka (VG),49.354167,44.291667,,0.025,,2653,81,100,,,,,,85867,,, +1130,USA,en,WBBR,,New York/Carlstadt [NJ] (NY),40.810833,-74.04,,50,,5964,292,100,,,,9994,,40813,,, +1130,USA,en,WDFN,,Detroit (MI),42.110833,-83.197778,,50,,6431,299,104,,,,9891,,41156,,, +1130,USA,en,KTCN,,Minneapolis (MN),44.646667,-93.391944,,25,,6816,307,111,,,,999,,38372,,, +1130,USA,,WISN,,Milwaukee (WI),42.755,-88.081389,,10,,6668,302,114,,,,2,,41807,,, +1130,CAN,en,CKWX,,Vancouver (BC),49.155833,-123.068056,,50,,7786,328,118,,,,2,,36422,,, +1130,USA,,WLBA,,Gainesville (GA),34.279167,-83.775833,,10,,7085,293,118,,,,,,42128,,, +1130,USA,en,KWKH,,Shreveport (LA),32.705,-93.881944,,50,,7837,299,118,,,,9,,39721,,, +1130,CAN,fr,CBSI-23,,Port-Menier (QC),49.820833,-64.3475,,0.04,,4761,296,119,,,,,,20109149,,, +1130,USA,,WRRL,,Rainelle (WV),37.957778,-80.7625,,1,,6603,294,123,,,,,,42913,,, +1130,USA,,WCLW,,Eden (NC),36.5225,-79.765278,,1,,6653,292,124,,,,,,41032,,, +1130,USA,,WPYB,,Benson (NC),35.360833,-78.569167,,1,,6668,290,124,,,,,,42757,,, +1130,USA,,WYXE,,Gallatin (TN),36.410556,-86.454444,,2.3,,7078,296,124,,,,,,43558,,, +1130,B,pt,ZYI531 Rdio Marajoara,,Belm (PA),-1.472433,-48.472497,,10,,7845,240,125,,,,,,36901878,,, +1130,HTI,,4VBD,,Cap-Hatien (nrd),19.75,-72.2,,5,,7518,274,125,,,,,,35632,,, +1130,USA,,WECR,,Newland (NC),36.0775,-81.916389,,1,,6823,293,125,,,,,,41249,,, +1130,B,pt,ZYJ460 Rdio Nacional,,Rio de Janeiro/Jardim la Luz (RJ),-22.800194,-43.069972,,100,,9612,225,126,,,,0,,36901880,,, +1130,VEN,,YVRL R Ideal,,Macuto (Maiquetia) (vgs),10.604167,-66.916667,,10,,7943,263,126,,,,991,,45445,,, +1130,USA,,KTMR,,Edna (TX),29.319444,-97.976389,,25,,8375,299,127,,,,,,39511,,, +1130,USA,,WOFC,,Murray (KY),36.635556,-88.319444,,1.5,,7174,298,127,,,,,,42874,,, +1130,VEN,es,YVKQ R Popular,,Barquisimeto (lar),10.066667,-69.316667,,10,,8153,265,129,,0900-0400,1234567,899,,51687,,, +1130,USA,,WEDI,,Eaton (OH),39.748611,-84.583889,,0.25,,6698,298,130,,,,,,41252,,, +1130,PTR,,WOIZ,,Guayanilla (PR),18.0175,-66.772778,,0.7,,7295,268,131,,0900-0200,1234567,,,42579,,, +1130,USA,,WHHW,,Hilton Head Island (SC),32.200278,-80.724167,,0.5,,7059,289,131,,,,,,41460,,, +1130,USA,en,WALQ,,Carrville (AL),32.454722,-85.9325,,1,,7370,293,131,,1300-0100,1234567,,,40643,,, +1130,CLM,,HJTI,,Ccuta (nsa),7.866667,-72.516667,,10,,8563,266,132,,,,,,37644,,, +1130,CLM,es,HJAC Emisora Rio Mar,,Barranquilla (atl),10.941275,-74.843083,,10,,8454,270,132,,,,58,,37321,,, +1130,CLM,,HJFP,,Neiva (hui),2.816667,-75.266667,,10,,9193,265,134,,,,,,37440,,, +1130,CLM,es,HJQQ Oxigeno,,Pasto (nar),1.216667,-77.283333,,15,,9470,266,134,,,,10,,35901550,,, +1130,HND,,HRPL,,El Progreso (yor),15.333333,-87.816667,,10,,8951,283,134,,,,,,37824,,, +1130,USA,,KSDO,,San Diego (CA),32.851111,-116.964167,,10,,9085,315,134,,,,,,39335,,, +1130,USA,,WQFX,,Gulfport (MS),30.389167,-89.106389,,1,,7741,294,134,,,,,,42771,,, +1130,B,pt,ZYI783 Rdio Cultura do Nordeste,,Caruaru (PE),-8.29845,-35.950844,,1,,7830,225,135,,,,,,36901874,,, +1130,USA,,KRDU,,Dinuba (CA),36.484167,-119.265833,,6.2,,8846,318,135,,,,9983,,39230,,, +1130,USA,,WWBF,,Bartow (FL),27.908611,-81.825833,,0.5,,7482,287,135,,,,,,43356,,, +1130,CLM,es,HJVA R Vida,,Bogot D. C. (bdc),4.666667,-74.166667,,5,,8955,265,137,,,,981,,37375,,, +1130,DOM,,HIRL CDN R,,Santiago de los Caballeros (sto),19.433333,-70.666667,,0.25,,7441,272,137,,0000-2400,1234567,,,37292,,, +1130,MEX,es,XETOL-AM 1130 Noticias,,Ixtlahuaca (mex),19.493167,-99.733175,,5,,9354,294,138,,,,,,44846,,, +1130,B,pt,ZYH667 Rdio Patu de Senador Pompeu,,Senador Pompeu (CE),-5.5234,-39.491017,,0.25,,7733,230,140,,,,,,36901877,,, +1130,PNR,es,HOU80 Vox Noticias,,Aguadulce/Cerro Morado (ccl),8.236711,-80.582433,,2.5,,9081,273,140,,,,,,37734,,, +1130,EQA,,HCIR1,,Pomasqui (pic),-0.016667,-78.45,,3,,9658,266,141,,,,,,36975,,, +1130,MEX,es,XEYZ-AM La Poderosa,,Aguascalientes (agu),21.887125,-102.333556,,2.5,,9298,298,141,,,,,,45113,,, +1130,ARG,,R Tropicana,,Buenos Aires (df),-34.616667,-58.466667,,10,,11511,230,142,,,,,,51829,,, +1130,CLM,es,HJNH,,Magangue (bol),10.183333,-74.75,,1,,8513,269,142,,,,,,37586,,, +1130,EQA,,HCPV6,,Ambato (tun),-1.233333,-78.633333,,3,,9778,265,142,,,,,,37065,,, +1130,USA,ru,KQRR,,Mount Angel (OR),45.076389,-122.8075,,0.49,,8169,325,142,,,,,,20012538,,, +1130,EQA,,HCRD1,,Ibarra (imb),0.333333,-78.116667,,2,,9605,266,143,,,,,,37074,,, +1130,HND,,HRBT,,San Francisco de la Paz (ola),14.866667,-86.083333,,1,,8876,281,143,,,,,,37743,,, +1130,USA,,KBMR,,Bismarck (ND),46.810278,-100.736111,,0.024,,7023,313,143,,,,,,38061,,, +1130,USA,,KQNA,,Prescott Valley (AZ),34.629444,-112.315556,,1,,8688,312,143,,,,1,,39200,,, +1130,USA,en,WFNF,,Brazil (IN),39.512222,-87.138333,,0.02,,6870,299,143,,,,,,42977,,, +1130,ARG,,LRA21 R Nacional,,Santiago del Estero (se),-27.837386,-64.242133,,5,,11216,238,144,,0900-0400,1234567,,,39941,,, +1130,CLM,es,HJKL R Calidad,,Cali (val),3.433333,-76.516667,,1,,9224,267,144,,,,998,,35902898,,, +1130,HND,,HRDG,,Danli (elp),14.05,-86.566667,,1,,8980,281,144,,,,,,37745,,, +1130,NCG,,Voz Evanglica de Jalapa,,Jalapa (nsg),13.916667,-86.133333,,1,,8962,281,144,,,,,,33700014,,, +1130,SLV,,YSG,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,45276,,, +1130,SLV,,YSJA,,Santa Ana (sta),13.966667,-89.583333,,1,,9188,283,144,,,,,,45281,,, +1130,USA,,KILJ,,Mount Pleasant (IA),40.960556,-91.584722,,0.022,,7013,303,144,,,,,,38608,,, +1130,GTM,,TGVR Emisoras Unidas LV de la Costa Sur,,Retalhuleu (ret),14.516667,-91.666667,,1,,9278,285,145,,,,,,40553,,, +1130,MEX,es,XELUP-AM R Lupita,,El Conchal (nay),21.216803,-105.168694,,1,,9529,300,145,,,,,,44330,,, +1130,PRU,es,OAX4N R Bacn,,Lima (lim),-12.183333,-77.066667,,2.6,,10635,257,145,,,,932,,40310,,, +1130,URG,es,CX30 R Nacional,,Santiago Vzquez (mo),-34.795722,-56.320972,,5,,11416,228,145,,0000-2400,1234567,996,,36812,,, +1130,B,pt,ZYJ220 Rdio Castro,,Castro/Alto Jardim Bela Vista (PR),-24.458333,-50.006944,,1,,10119,229,147,,,,,,36901872,,, +1130,USA,,WEAF,,Camden (SC),34.258889,-80.579722,,0.007,,6884,291,147,,,,,,42774,,, +1130,MEX,es,XEMOS-AM La Invasora,,Los Mochis (sin),25.783333,-109,,0.5,,9331,305,148,,,,,,44399,,, +1130,USA,,KAAB,,Batesville (AR),35.744444,-91.639167,,0.02,,7447,299,148,,,,,,37900,,, +1130,B,pt,ZYJ790 Rdio Princesa do Oeste,,Xanxer (SC),-26.871111,-52.384722,,1,,10472,230,149,,,,,,36901879,,, +1130,MEX,es,XEHN-AM Ke Buena,,Nogales (son),31.311094,-110.966461,,0.25,,8927,310,149,,,,,,44128,,, +1130,B,pt,ZYK290 Rdio Medianeira AM,,Santa Maria (RS),-29.697222,-53.806111,,1,,10812,229,150,,,,,,36901875,,, +1130,B,pt,ZYJ677 Rdio Ji-Paran,,Ji-Paran (RO),-10.8625,-61.9,,0.25,,9534,246,151,,,,,,36901876,,, +1130,ARG,,R Contempornea,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,8,,2227,,, +1130,PRU,,OAZ4S,,Chanchamayo (jun),-11.066667,-75.216667,,0.4,,10414,257,152,,,,,,40373,,, +1130,B,pt,ZYJ333 Rdio Ingamar,,Marialva (PR),-23.488333,-51.809444,,0.25,,10122,231,153,,,,,,36901873,,, +1130,B,pt,ZYK676 Rdio Tup,,Tup (SP),-21.933333,-50.516667,,0.25,,9905,231,153,,,,,,36901871,,, +1130,HWA,tl,KPHI,,Honolulu (HI),21.438333,-157.991389,,1,,11697,345,153,,,,3,,39305,,, +1130,MEX,es,XEFN-AM R Moderna,,Uruapan (mic),19.422156,-102.064553,,0.1,,9504,296,155,,,,,,44015,,, +1130,USA,,KLEY,,Wellington (KS),37.241111,-97.401111,,0.001,,7655,304,163,,,,,,38801,,, +1134,E,es,COPE,,Pamplona (NAV-NA),42.825861,-1.680181,,5,,1196,214,62,,0000-2400,1234567,,,980,,, +1134,E,es,COPE,,Salamanca/EAK19 (CAL-SA),40.938039,-5.702914,,10,,1545,221,62,,0000-2400,1234567,1,,982,,, +1134,E,es,COPE,,Astorga/Peicas (CAL-LE),42.465211,-6.075514,,5,,1423,226,64,,0000-2400,1234567,,,977,,, +1134,E,es,COPE,,Ciutadella/Finca de Torralba (BAL-MN),39.955986,3.938333,,5,,1365,189,64,,0000-2400,1234567,0,,978,,, +1134,RUS,ru,R Teos,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0400-1900,1234567,5,,47033,,, +1134,E,es,COPE,,Jerez de la Frontera/Finca Pino Solete (AND-CA),36.662139,-6.123222,,5,,1979,215,70,,0000-2400,1234567,,,979,,, +1134,IRN,fa,IRIB R Tabriz,,Kaleybar=Kalibar (eaz),38.858033,47.066383,,50,,3437,99,74,,0000-2400,1234567,0,,989,,, +1134,RUS,ru,R Rossii,,Veshenskaya (RO),49.536778,41.871361,,5,,2482,82,75,,0100-2100,1234567,,,46928,,, +1134,KWT,ar,R Kuwait Main Arabic,,Kabd/Sulaibiyah (jah),29.146244,47.780539,,100,170,4237,111,79,,0000-2400,1234567,7,,990,,, +1134,IRN,fa,IRIB R Iran,,Bojnurd (nkh),37.654,57.04805,,10,,4200,92,89,,0130-2030,1234567,13,,10800038,,, +1134,G,,IC R (LPAM),,Ashford (EN-KNT),51.15,0.883333,,0.001,,396,257,91,,,,,,986,,, +1134,G,,KOOL AM (LPAM),,Harlow (EN-ESX),51.783333,0.133333,,0.001,,432,268,91,,,,,,983,,, +1134,PAK,,PBC R Pakistan,,Quetta (blc),30.081889,66.978639,,100,,5443,92,91,,0200-1500,1234567,,,31500003,,, +1134,G,,BFBS Gurkha R,,Bramcote (EN-NHS),52.933333,-1.2,,0.001,,523,283,92,,,,,,984,,, +1134,G,,BFBS Gurkha R,,Sandhurst (Berkshire) (EN-BER),51.316667,-0.8,,0.001,,504,263,92,,,,,,985,,, +1134,G,,L&D R (LPAM),,Luton (EN-BEF),51.894289,-0.4743,,0.001,,472,270,92,,0000-2400,1234567,999,,987,,, +1134,NIG,,CRBC Cross River R,,Ugaga (crr),6.645508,8.787722,,10,,5060,177,98,,0450-2310,1234567,,,2469,,, +1134,IND,,AIR National Channel/AIR G.O.S.,,Chinsurah/Magra (WB),23.024222,88.358972,,1000,,7470,81,102,,1215-0040,1234567,,,49774,,, +1134,KEN,,KBC English Service,,Kitale (rif),1.143283,34.898042,,50,,6256,145,103,,0200-2110,1234567,,,2468,,, +1134,CHN,zh,Yili RGD,,Yining=Gulja (XJ),43.916667,81.466667,,1,,5403,68,111,,,,,,49772,,, +1134,AGL,pt,RNA Em. Prov. do Bengo,,Mulenvos/Baixo (lua),-8.856667,13.314722,,10,,6811,172,115,,,,3,,2370,,, +1134,KOR,ko,HLKC KBS 3 R,,Hwaseong (gye),37.214167,126.778056,,500,,8529,45,115,,0000-2400,1234567,,,49781,,, +1134,CHN,zh,CNR 1,,Ga'er/Shiquanhe (XZ),32.494639,80.087611,,1,,6147,80,118,,2025-1805,1234567,,,36201108,,, +1134,CHN,,Yumen RGD,,Yumen (GS),39.7,97.333333,,1,,6697,62,124,,,,,,36200480,,, +1134,CHN,,Tongchuan RGD,,Tongchuan (SA),35.1,109.15,,10,,7777,58,125,,,,,,49771,,, +1134,J,ja,JOQR NCB Bunka Hoso,,Tokyo/Kawaguchi (kan-tok),35.825556,139.755,,100,,9240,36,125,,0000-2400,1234567,0,,49780,,, +1134,CHN,zh,CNR 1,,Nagqu=Naqu (XZ),31.472389,92.042306,,1,,7020,72,127,,2025-1805,1234567,,,36201111,,, +1134,CHN,zh,CNR 1,,Xigaz (XZ),29.291111,88.881267,,1,,6989,76,127,,2025-1805,1234567,,,36201113,,, +1134,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,1,,7117,74,128,,2025-1805,1234567,,,36201110,,, +1134,CHN,zh,CNR 1,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,2025-1805,1234567,,,36201112,,, +1134,CHN,bo,Xizang RGD,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2000-1730,1234567,,,49770,,, +1134,CHN,zh,CNR 1,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2025-1805,1234567,,,36201045,,, +1134,THA,th,Sor. Wor. Thor. (R Thailand),,Lampang (lpg),18.290833,99.485833,,10,,8618,76,132,,2200-1600,1234567,,,49789,,, +1134,THA,th,Thor. Phor. Song,,Korat=Nakhon Ratchasima/Fort Saranari (nrt),14.9,102.105556,,10,,9087,76,134,,????-1600,1234567,,,49790,,, +1134,CHN,zh,CNR 1,,Cikai=Zikai (YN),27.744444,98.666667,,1,,7757,70,135,,2025-1805,1234567,,,36201109,,, +1134,TWN,,Taipei Kuangpo Tientai,,Taipei (TPS),25.090664,121.514494,,10,,9378,55,135,,2255-1600,1234567,,,49791,,, +1134,INS,id,RRI Pro-4,,Banjarmasin (KS-kbm),-3.317728,114.703481,,25,,11539,77,138,,2055-1600,1234567,,,49775,,, +1134,PHL,,DWDD-AM Armed Forces R,,Quezon City/Camp Aguinaldo (ncr),14.607778,121.065556,,10,,10319,62,138,,2200-1700,1234567,,,49785,,, +1134,PHL,,DWJS-AM,,Roxas (plw),10.366667,119.35,,5,,10604,65,142,,,,,,49786,,, +1134,CHN,,Zhejiang zhi Sheng,,Chun'an (ZJ),29.6,119.033333,,1,,8826,55,143,,,,,,36200487,,, +1134,CHN,,Zhejiang zhi Sheng,,Jiangshan (ZJ),28.733333,118.616667,,1,,8881,56,143,,,,,,36200486,,, +1134,CHN,,Zhejiang zhi Sheng,,Ningbo (ZJ),29.887778,121.486667,,1,,8935,53,143,,,,,,36200485,,, +1134,CHN,,Zhejiang zhi Sheng,,Suichang (ZJ),28.583333,119.266667,,1,,8931,55,143,,,,,,36200483,,, +1134,CHN,,Zhejiang zhi Sheng,,Qingyuan (ZJ),27.616667,119.066667,,1,,9008,56,144,,,,,,36200484,,, +1134,CHN,,Zhejiang zhi Sheng,,Wencheng (ZJ),27.8,120.083333,,1,,9049,55,144,,,,,,36200482,,, +1134,CHN,,Zhejiang zhi Sheng,,Wenzhou (ZJ),28.1,120.6,,1,,9050,54,144,,,,,,36200481,,, +1134,CHN,,Zhejiang zhi Sheng,,Xianju (ZJ),28.85,120.733333,,1,,8989,54,144,,,,,,49768,,, +1134,CHN,,Zhejiang zhi Sheng,,Zhoushan (ZJ),30.05,122.016667,,1,,8949,52,144,,,,,,36200479,,, +1134,PHL,,DXMV-AM Radyo Ukay,,Valencia (buk),8.1,125.116667,,5,,11166,62,144,,,,,,49787,,, +1134,PHL,,DZPT-AM Radyo ng Bayan,,Basco (btn),20.45,121.966667,,1,,9832,58,146,,,,,,49783,,, +1134,INS,id,PM2BBN R Safari,,Jakarta/Kebayoran Baru (JK-kjs),-6.241667,106.808333,,1,,11264,86,151,,,,,,49559,,, +1134,AUS,,6TZ/t R West,,Collie/Ewington (WA),-33.370556,116.1925,,2,,14169,98,158,,0000-2400,1234567,,,52291,,, +1134,AUS,,3CS,,Colac/Rossmoyne (VIC),-38.321972,143.534194,,5,,16390,82,161,,0000-2400,1234567,,,49767,,, +1134,AUS,,2AD New England R,,Armidale (NSW),-30.544444,151.604167,,2,,16307,63,165,,0000-2400,1234567,,,49765,,, +1134,NZL,,RNZ National,,Queenstown/Kelvin Heights (OTA),-45.045278,168.678611,,2,,18498,66,172,,0000-2400,1234567,,,49782,,, +1140,MRC,,SNRT Al Ida Al-Watania,,unknown,29.5,-8.5,,1,,2797,212,85,,,,90,,5900003,,, +1140,CAN,en,CBI,,Sydney (NS),46.136667,-60.27,,10,,4724,290,94,,,,5,,35783,,, +1140,USA,,WRVA,,Richmond (VA),37.403611,-77.316389,,50,,6428,291,104,,,,0,,42933,,, +1140,CAN,en,CHRB,,High River (AB),50.923611,-113.833889,,46,,7262,323,113,,,,104,,36078,,, +1140,USA,,WCJW,,Warsaw (NY),42.726389,-78.111944,,2.5,,6077,296,114,,,,9988,,41010,,, +1140,USA,en,WVHF,,Kentwood (MI),42.935833,-85.457222,,5,,6502,301,115,,1300-0100,1234567,,,41908,,, +1140,USA,,WBXR,,Hazel Green (AL),34.953056,-86.646111,,15,,7209,295,117,,,,,,40931,,, +1140,PTR,,WQII,,San Juan (PR),18.358333,-66.134722,,10,,7222,268,119,,0000-2400,1234567,4,,42773,,, +1140,USA,,WVEL,,Pekin (IL),40.603333,-89.625556,,5,,6929,302,119,,,,,,43292,,, +1140,ALS,,KSLD,,Soldotna (AK),60.523889,-151.056389,,10,,7331,348,120,,0000-2400,1234567,7,,39376,,, +1140,CUB,es,CMIP R Surco,,Morn (ca),22.094497,-78.612742,,25,,7755,280,121,,,,2,,31600060,,, +1140,USA,,KSOO,,Sioux Falls (SD),43.480556,-96.685278,,5,,7090,308,121,,,,994,,39397,,, +1140,USA,,WXLZ,,Saint Paul (VA),36.870833,-82.305833,,2.5,,6785,294,121,,,,,,43479,,, +1140,CUB,es,R Mayabeque,,La Salud (my),22.877161,-82.428906,,25,,7944,284,123,,,,,,31600032,,, +1140,USA,,KZMQ,,Greybull (WY),44.450278,-108.048889,,10,,7585,316,123,,,,,,39894,,, +1140,USA,es,WQBA,,Miami (FL),25.7675,-80.486111,,10,,7572,284,123,,,,22,,42761,,, +1140,USA,,WSAO,,Senatobia (MS),34.615556,-89.935833,,5,,7438,297,124,,,,,,42949,,, +1140,CAN,fr,CBJ-2,,Chapais (QC),49.784444,-74.861944,,0.04,,5391,302,125,,,,,,20109150,,, +1140,CUB,es,R Rebelde,,Santa Clara/CTOM3 (vc),22.435008,-79.916175,,10,,7814,281,125,,,,,,31600042,,, +1140,USA,,WRLV,,Salyersville (KY),37.749444,-83.088611,,1,,6764,295,125,,,,,,42877,,, +1140,USA,,WRNA,,China Grove (NC),35.572222,-80.589167,,1,,6780,292,125,,,,,,42886,,, +1140,CAN,fr,CBF-4,,Matagami (QC),49.758333,-77.6275,,0.04,,5553,303,126,,,,,,20109151,,, +1140,CUB,es,R Rebelde,,Aguada de Pasajeros (cf),22.382386,-80.8343,,10,,7880,282,126,,,,,,31600061,,, +1140,MEX,es,XEMR-AM,,San Nicols de los Garza (nvl),25.763833,-100.252883,,50,,8826,299,126,,,,9995,,44406,,, +1140,USA,,KHTK,i,Sacramento (CA),38.392778,-121.1975,,50,,8748,321,126,,,,0,,38565,,, +1140,USA,,KLTK,,Southwest City (MO),36.363889,-94.348056,,5,,7554,301,126,,,,,,38849,,, +1140,USA,,KGEM,,Boise (ID),43.596389,-116.25,,10,,8038,320,127,,,,,,38464,,, +1140,USA,,WLOD,,Loudon (TN),35.726389,-84.346944,,1,,7004,294,127,,,,,,42202,,, +1140,CUB,es,R Rebelde,,Circunvalacin (ma),23.016667,-81.616667,,5,,7878,283,129,,,,9984,,31600090,,, +1140,USA,,WAWK,,Kendallville (IN),41.454444,-85.263333,,0.25,,6605,299,129,,,,,,40781,,, +1140,VEN,,YVNU,,Carora (lar),10.166667,-70.066667,,10,,8195,266,129,,,,,,45401,,, +1140,USA,,KPWB,,Piedmont (MO),37.141389,-90.703056,,1,,7275,300,130,,,,,,39178,,, +1140,B,pt,ZYH449 Rdio Cultura da Bahia,,Salvador/Ilha de Itaparica (BA),-12.915786,-38.659033,,10,,8422,225,131,,,,,,36901893,,, +1140,USA,,KYOK,,Conroe (TX),30.344444,-95.458889,,5,,8135,298,131,,,,,,39866,,, +1140,CLM,es,HJKO R Esperanza,,Cartagena (bol),10.466667,-75.416667,,10,,8534,270,132,,,,789,,37529,,, +1140,USA,en,WMMG,,Brandenburg (KY),37.985833,-86.184444,,0.25,,6935,297,132,,1200-2400,1234567,,,42350,,, +1140,CLM,es,HJDL R Paisa,,Medelln/Pereira (ant),6.266667,-75.616667,,10,,8914,268,133,,,,996,,37392,,, +1140,CLM,es,HJRN,,Barbosa (sat),5.933333,-73.616667,,10,,8807,266,133,,,,,,35901556,,, +1140,CHL,,CB114 R Nacional,,Santiago (RM),-33.516667,-70.583333,,100,,12086,239,134,,1000-0600,1234567,,,35724,,, +1140,CLM,,HJFH,,Anserma (cal),5.266667,-75.816667,,10,,9015,267,134,,,,,,37433,,, +1140,CLM,es,HJCL R Panamericana,,Girardot (cun),4.266667,-74.816667,,10,,9035,266,134,,,,998,,37650,,, +1140,CLM,es,HJKW,,Villavicencio (met),4.166667,-73.616667,,10,,8962,265,134,,,,,,37536,,, +1140,SLV,,YSTS,,San Salvador (ssl),13.716667,-89.166667,,10,,9182,283,134,,,,,,45319,,, +1140,USA,,KNAB,,Burlington (CO),39.294722,-102.260278,,1,,7745,309,134,,,,,,38958,,, +1140,CUB,es,R Bayamo,,Media Luna (gr),20.150067,-77.433781,,1,,7840,278,135,,,,,,36613,,, +1140,CUB,es,R Ciudad Bandera,,Crdenas (ma),23.085356,-81.271258,,1,,7849,283,135,,,,9937,,31600126,,, +1140,CUB,es,R Enciclopedia,,Camagey/CTOM2 (cm),21.350153,-77.872003,,1,,7768,279,135,,,,,,31600052,,, +1140,USA,,KRMP,,Oklahoma City (OK),35.387222,-97.498889,,1,,7820,303,135,,,,,,39269,,, +1140,USA,en,WAPF,,McComb (MS),31.2475,-90.420556,,1,,7750,295,135,,1300-0100,1234567,,,40686,,, +1140,B,pt,ZYK550 Rdio Difusora de Assis,,Assis (SP),-22.677614,-50.426133,,10,,9971,231,137,,,,,,36901892,,, +1140,B,pt,ZYI398 Rdio Globo,,Ftima do Sul (MS),-22.386622,-54.496256,,10,,10163,234,138,,,,,,36901895,,, +1140,DOM,es,HIRA R Anacaona,,San Juan de la Maguana (jua),18.800969,-71.252831,,0.25,,7534,272,138,,1100-0400,1234567,,,37289,,, +1140,B,pt,ZYH607 Rdio Progresso AM,,Russas (CE),-4.940783,-37.981706,,0.25,,7598,229,139,,,,,,36901897,,, +1140,USA,en,KXST,,North Las Vegas (NV),36.268056,-115.044722,,2.5,,8670,315,139,,,,,,39348,,, +1140,USA,es,KHFX,,Cleburne (TX),32.2825,-97.413056,,0.71,,8083,301,139,,,,,,38170,,, +1140,USA,,KNWQ,,Palm Springs (CA),33.860833,-116.472222,,2.5,,8965,315,140,,,,65,,39032,,, +1140,EQA,,HCIR1,,Quito (pic),-0.266667,-78.516667,,3,,9685,266,141,,,,,,36976,,, +1140,CTR,,TIVAL R Nueva,,Gupiles (lmn),10.216667,-83.766667,,1.5,,9125,276,142,,,,,,52153,,, +1140,EQA,,HCPV6,,Ambato (tun),-1.25,-78.616667,,3,,9778,265,142,,,,,,37066,,, +1140,EQA,,HCRD1,,Ibarra (imb),0.35,-78.116667,,2,,9603,266,143,,,,,,37075,,, +1140,HND,,HRUN,,La Ceiba (atl),15.8,-86.816667,,1,,8844,282,143,,,,,,37855,,, +1140,PNR,es,HOB49 R Panamericana,,Ciudad Radial (pnm),9.029722,-79.429722,,1,,8933,272,143,,1100-0500,1234567,,,2183,,, +1140,USA,,KVLI,,Lake Isabella (CA),35.632222,-118.475278,,1,,8892,317,143,,,,,,39183,,, +1140,HND,,HRAP,,Nacaome (val),13.516667,-87.466667,,1,,9086,281,144,,,,,,37738,,, +1140,MEX,es,XEPEC-AM Hidalgo R,,San Bartolo Tutotepec (hid),20.398056,-98.198611,,1,,9178,294,144,,,,,,44542,,, +1140,BOL,,R Pico Verde,,Chulumani (lpz),-16.366667,-67.466667,,2,,10382,247,145,,,,,,51999,,, +1140,MEX,es,XETE-AM Punto Digital,,Tehuacn (pue),18.44115,-97.372922,,1,,9300,292,145,,,,,,44806,,, +1140,MEX,es,XEXF-AM R Felicidad,,Len (gua),21.087222,-101.683056,,1,,9331,297,145,,,,,,45050,,, +1140,ARG,es,LU22 R Tandil,,Tandil (ba),-37.316883,-59.076897,,5,,11788,229,146,,0900-0300,1234567,,,40218,,, +1140,PRG,,ZP22 R Panambi Vera,,Villarrica (cgz),-25.266667,-56.316667,,2,,10533,234,146,,0900-0200,1234567,,,45517,,, +1140,B,pt,ZYL362 Rdio Clube de Bocaiuva,,Bocaiva (MG),-17.104275,-43.813478,,0.5,,9091,228,147,,,,,,36901896,,, +1140,EQA,,HCAZ5,,Cuenca (azu),-2.85,-79,,1,,9945,265,147,,,,,,36858,,, +1140,MEX,es,XETEC-AM R Tecpatn,,Tecpatn (cps),17.134264,-93.305392,,0.5,,9155,288,147,,,,,,44809,,, +1140,B,pt,ZYL253 Rdio Sociedade Muria,,Muria (MG),-21.122067,-42.332886,,0.5,,9412,225,148,,,,,,36901891,,, +1140,MEX,es,XELIA-AM La Tremenda,,Morelia (mic),19.724475,-101.172706,,0.5,,9422,296,148,,,,,,44307,,, +1140,PRU,,Chami R,,Otuzco (lal),-7.9,-78.583333,,1,,10361,261,148,,,,,,2285,,, +1140,B,pt,ZYK555 Rdio Barretos,,Barretos/Av Gonalves (SP),-20.542458,-48.557428,,0.5,,9668,230,149,,,,,,36901887,,, +1140,PRU,,OAX3R R Bahia,,Chimbote (anc),-9.116667,-78.533333,,1,,10464,260,149,,,,,,40296,,, +1140,PRU,,OAX6L R Concordia,,Arequipa (are),-16.316667,-71.566667,,1,,10639,251,149,,,,,,40334,,, +1140,PRU,,OCY4C R Programas del Per,,Pilcomayo (jun),-12.166667,-75.25,,1,,10513,256,149,,,,251,,40439,,, +1140,B,pt,ZYH751 Rdio Formosa,,Formosa (GO),-15.558375,-47.3561,,0.25,,9125,232,150,,,,,,36901885,,, +1140,B,pt,ZYI435 Difusora AM 1140 Novo Mato Grosso,,Juara (MT),-11.244578,-57.526678,,0.25,,9300,242,151,,,,,,36901898,,, +1140,B,pt,ZYJ748 Coroado AM,,Curitibanos (SC),-27.306667,-50.555556,,0.5,,10419,228,151,,,,,,36901894,,, +1140,B,pt,ZYL204 Rdio Minas,,Divinpolis (MG),-20.118394,-44.876539,,0.25,,9438,227,151,,,,,,36901886,,, +1140,ARG,es,R Independencia,,Remedios de Escalada (ba),-34.733333,-58.383333,,1,,11517,230,152,,,,,,33000061,,, +1140,B,,ZYI406,,Aparecida do Taboado (MS),-20.066667,-51.066667,,0.25,,9757,232,152,,,,,,45819,,, +1140,B,pt,ZYK645 Rdio Educao e Cultura,,Rio Claro (SP),-22.416667,-47.566667,,0.25,,9798,228,152,,,,,,36901884,,, +1140,B,pt,ZYK709 Rdio Costa Azul,,Ubatuba (SP),-23.4618,-45.066497,,0.25,,9774,226,152,,,,,,36901890,,, +1140,B,pt,ZYL248 Rdio Diocesana,,Campanha (MG),-21.774711,-45.430428,,0.25,,9627,227,152,,,,,,36901882,,, +1140,PRU,,OAX5W R Chinchaysuyo,,Chinca Alta (ica),-13.666667,-76.166667,,0.5,,10706,256,152,,,,,,40327,,, +1140,USA,,KCXL,,Liberty (MO),39.238333,-94.399722,,0.006,,7316,303,152,,,,,,38229,,, +1140,USA,,WRMQ,,Orlando (FL),28.58,-81.421111,,0.008,,7400,287,152,,,,,,42882,,, +1140,B,pt,ZYK708 Rdio Nova Regional,,Registro (SP),-24.482406,-47.829753,,0.25,,10010,228,153,,,,2,,36901883,,, +1140,EQA,,HCFB2,,Guayaquil (gua),-2.2,-79.866667,,0.25,,9947,266,153,,,,,,36932,,, +1140,B,pt,ZYJ352 Rdio Difusora Amrica,,Chopinzinho (PR),-25.859722,-52.501389,,0.25,,10383,231,154,,,,,,36901889,,, +1140,B,pt,ZYK228 Rdio Cruz Alta AM,,Cruz Alta (RS),-28.617778,-53.63,,0.25,,10702,230,155,,,,,,36901888,,, +1140,B,pt,ZYK316 Rdio Charrua AM,,Uruguaiana (RS),-29.758889,-57.084722,,0.25,,10991,232,156,,,,,,36901899,,, +1140,B,pt,ZYK330 Rdio Sobral AM,,Buti (RS),-30.13,-51.9625,,0.25,,10759,228,156,,,,,,36901881,,, +1143,D,en,AFN Benelux-The Eagle,,Mnchengladbach/Pongser Kamp (nrw),51.167222,6.398889,,1,,105,180,42,,0530-0800,1234567,0,,998,,, +1143,D,en,AFN Benelux-The Eagle,,Mnchengladbach/Pongser Kamp (nrw),51.167222,6.398889,,1,,105,180,42,,1500-1700,1234567,0,,998,,, +1143,D,en,AFN PowerNet,,Mnchengladbach/Pongser Kamp (nrw),51.167222,6.398889,,1,,105,180,42,,0800-1500,1234567,0,,998,,, +1143,D,en,AFN PowerNet,,Mnchengladbach/Pongser Kamp (nrw),51.167222,6.398889,,1,,105,180,42,,1700-0530,1234567,0,,998,,, +1143,RUS,pl,Voice of Russia,,Bolshakovo (KA),54.906561,21.705039,,75,150,1056,67,49,,1700-1800,1234567,0,,1012,,, +1143,RUS,ru,Voice of Russia,,Bolshakovo (KA),54.906561,21.705039,,75,150,1056,67,49,,1800-2100,1234567,0,,1012,,, +1143,D,en,AFN PowerNet,,Bitburg/Am Tower (rlp),49.943056,6.541667,,1,,241,178,59,,0000-2400,1234567,,,997,,, +1143,D,en,AFN PowerNet,,Heidelberg-Wieblingen (bw),49.432778,8.645,,1,,337,151,60,,0000-2400,1234567,,,999,,, +1143,E,es,COPE,,Oviedo/El Naranco (AST-O),43.385172,-5.862508,,5,,1332,228,63,,0000-2400,1234567,,,1007,,, +1143,E,es,COPE,,Tarragona/Reus EAK53 (CAT-T),41.129492,1.167031,,5,,1284,200,63,,0000-2400,1234567,989,,1008,,, +1143,E,es,COPE,,Ourense (GAL-OU),42.373528,-7.916436,,5,,1525,230,65,,0000-2400,1234567,,,1009,,, +1143,D,en,AFN PowerNet,,Schweinfurt/Heerstr. Yorktown Drive (bay),50.055556,10.201389,,0.3,,350,129,66,,0000-2400,1234567,,,1004,,, +1143,E,es,COPE,,Jan (AND-J),37.8111,-3.757097,,5,,1776,210,68,,0000-2400,1234567,,,1006,,, +1143,BIH,en,AFN Bosnia,,Tuzla/Eagle Base (tuz),44.466667,18.717778,,0.25,,1243,128,75,,0000-2400,1234567,,,995,,, +1143,GRC,el,unid,,unknown,38.4,24.65,,1,,2077,130,78,,,,,,3400063,,, +1143,EGY,ar,ERTU Al-Barnameg al-Aam,,Sohag (shj),26.550761,31.620733,,10,,3537,134,82,,0300-2400,1234567,,,1839,,, +1143,IRN,fa,IRIB R Iran,,Yasuj (kba),30.625056,51.590361,,50,,4363,105,84,,0000-2400,1234567,,,1799,,, +1143,TJK,,Voice of Tajik,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0200-1800,1234567,,,2242,,, +1143,NIG,,Niger State BC,,Bida (nig),9.087667,6.039722,,10,,4784,181,95,,0430-2130,1234567,,,2470,,, +1143,CHN,zh,Xinjiang RGD Jingji Guangbo,,Altay=Aletai/XJTS633 (XJ),47.771867,88.149189,,10,,5552,60,103,,2200-1605,1234567,,,36201271,,, +1143,IND,,AIR North,,Rohtak (HR),28.926,76.447139,,20,,6180,86,106,,0023-0435,1234567,,,49824,,, +1143,IND,,AIR North,,Rohtak (HR),28.926,76.447139,,20,,6180,86,106,,0630-0940,1234567,,,49824,,, +1143,IND,,AIR North,,Rohtak (HR),28.926,76.447139,,20,,6180,86,106,,1130-1740,1234567,,,49824,,, +1143,NPL,,R Nepal,,Bardibas (jan),27.004294,85.903717,,100,,6976,80,107,,2315-1720,1234567,,,49827,,, +1143,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Tashkurgan/XJTS2072 (XJ),37.765556,75.221111,,1,,5425,78,111,,2330-1800,1234567,,,36201270,,, +1143,IND,,AIR West,,Ratnagiri (MH),16.998889,73.371111,,20,,6958,97,114,,0025-0430,1234567,,,49823,,, +1143,IND,,AIR West,,Ratnagiri (MH),16.998889,73.371111,,20,,6958,97,114,,0630-0930,1234567,,,49823,,, +1143,IND,,AIR West,,Ratnagiri (MH),16.998889,73.371111,,20,,6958,97,114,,1200-1741,1234567,,,49823,,, +1143,CHN,zh,Henan RGD Xiqu Guangbo,,Zhengzhou/HETS976 (HE),34.796944,113.746944,,50,,8066,55,121,,2030-1700,1234567,,,49821,,, +1143,CHN,,Tianshui RGD,,Tianshui (GS),34.5,105.5,,10,,7613,61,123,,,,,,49815,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Nanyang (HE),33,112.533333,,25,,8154,57,125,,,,,,36200456,,, +1143,CHN,kk,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0100-0300,1234567,,,36200475,,, +1143,CHN,kk,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0500-0600,1234567,,,36200475,,, +1143,CHN,kk,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0900-1000,1234567,,,36200475,,, +1143,CHN,kk,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,1400-1700,1234567,,,36200475,,, +1143,CHN,ko,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0400-0500,1234567,,,36200475,,, +1143,CHN,ko,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0600-0700,1234567,,,36200475,,, +1143,CHN,ko,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,1000-1200,1234567,,,36200475,,, +1143,CHN,ko,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,2100-2300,1234567,,,36200475,,, +1143,CHN,mn,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0300-0400,1234567,,,36200475,,, +1143,CHN,mn,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0700-0900,1234567,,,36200475,,, +1143,CHN,mn,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,1200-1400,1234567,,,36200475,,, +1143,CHN,mn,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,2300-0100,1234567,,,36200475,,, +1143,TWN,,Taiwan Ch Yuyeh Kuangpo Tientai,,Baisha/Chiangmei Ts'un (PG),23.625889,119.592408,,100,,9403,58,125,,0000-2400,1234567,2,,49834,,, +1143,CHN,,Cangzhou JGD,,Cangzhou (HB),38.3,116.85,,10,,7927,51,126,,,,,,49800,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Sanmenxia (HE),34.795278,111.189444,,10,,7921,57,126,,,,,,36200454,,, +1143,CHN,,Jilin RGD Story & Novel,,Jilin Shi (JL),43.8,126.5,,10,,7905,41,126,,,,,,36200466,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Anyang/Qilidian (HE),36.055833,114.329167,,10,,7988,54,127,,,,,,36200478,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Huangchuan (HE),32.133333,115.033333,,25,,8373,56,127,,,,,,36200467,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Luoyang (HE),34.660833,112.476111,,10,,8006,56,127,,,,,,36200458,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Luohe (HE),33.533333,114.016667,,10,,8192,56,129,,,,,,36200459,,, +1143,CHN,,Qinghai JGD,,Xining/QHTS560 (QH),36.702778,101.749444,,1,,7205,62,129,,,,,,49816,,, +1143,CHN,zh,CNR 2,,Yakeshi/NMTS785 (NM),49.3105,120.807556,,1,,7154,41,129,,2100-1602,1234567,,,36201245,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Xinyang (HE),32.099722,114.070833,,10,,8322,57,130,,,,,,36200448,,, +1143,CHN,,Linyi RGD Literary,,Linyi (SD),35.066667,118.333333,,10,,8294,52,130,,,,,,36200460,,, +1143,CHN,zh,CNR 2,,Hohhot/NMTS610 (NM),40.736944,111.475278,,1,,7427,53,131,,2100-1602,1234567,,,36200468,,, +1143,J,ja,JOBR KBS Kinki Hoso,,Kyoto (kns-kyo),34.880556,135.740278,,20,,9164,40,131,,0000-2400,1234567,9999,,49826,,, +1143,CHN,,Yulin RGD,,Yulin (SA),38.299722,109.735,,1,,7538,56,132,,,,,,36200445,,, +1143,CHN,mn,Nei Menggu RGD Mongyol,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,,,,,36200465,,, +1143,CHN,,Taonan RGD,,Taonan (JL),45.333333,122.783333,,1,,7596,43,133,,,,,,36200452,,, +1143,CHN,,Shaanxi RGD,,Baoji/Xiamaying (SA),34.344167,107.231111,,1,,7729,60,134,,,,,,36200476,,, +1143,CHN,zh,Chifeng RGD,,Chifeng/NMTS762 (NM),42.268333,118.929167,,1,,7683,47,134,,1958-1730,1234567,,,36200472,,, +1143,THA,th,Or. Sor. Mor. Thor. Modern R,,Bangkok/Phetchakasem Rd (bmp),13.711861,100.360444,,10,,9074,78,134,,0000-2400,1234567,82,,49832,,, +1143,CHN,,Dingzhou RGD,,Dingzhou (HB),38.516667,115,,1,,7809,52,135,,,,,,36200471,,, +1143,CHN,,Guangyuan RGD,,Guangyuan (SC),32.433333,105.816667,,1,,7807,62,135,,,,,,49804,,, +1143,CHN,,Jiamusi JGD,,Jiamusi (HL),46.755556,130.265,,1,,7794,37,135,,,,,,49807,,, +1143,CHN,zh,CNR 1,,Beipiao/LNTS330 (LN),41.8,120.783333,,1,,7817,46,135,,2025-1805,1234567,,,49797,,, +1143,CHN,zh,CNR 1,,Chaoyang (LN),41.566667,120.466667,,1,,7822,47,135,,2025-1805,1234567,,,36200473,,, +1143,CHN,,Jilin RGD Dazhong Shenghuo,,Liaoyuan (JL),42.866667,125.166667,,1,,7930,43,136,,,,,,36200461,,, +1143,CHN,,Tangshan RGD Jiaotong yu Wenxue,,Tangshan (HB),39.6679,118.284117,,1,,7881,49,136,,2130-1600,1234567,,,49814,,, +1143,CHN,,Dazhou RGD,,Dazhou/Leiyinpu Shan (HB),31.216667,107.5,,1,,8013,62,137,,,,,,49799,,, +1143,CHN,,Fushun RGD Gushi,,Fushun (LN),41.85,123.883333,,1,,7963,44,137,,,,,,49803,,, +1143,CHN,,Liaocheng RGD,,Liaocheng (SD),36.433333,115.966667,,1,,8044,53,137,,,,,,49809,,, +1143,CHN,,Liaoyang RGD Yinyue Guangbo,,Liaoyang (LN),41.235556,123.183056,,1,,7985,45,137,,,,,,49810,,, +1143,CHN,,Neijiang JGD,,Neijiang (SC),29.65,105.25,,1,,8010,65,137,,,,,,49812,,, +1143,CHN,,Yingkou RGD Traffic,,Yingkou (LN),40.683333,122.2,,1,,7987,46,137,,,,,,36200446,,, +1143,CHN,,Hubei RGD Jingji Guangbo,,Shiyan (HU),32.613889,110.841944,,1,,8090,59,138,,,,,,36200453,,, +1143,CHN,,Jilin JGD,,Baishan (JL),41.95,126.433333,,1,,8073,42,138,,,,,,36200477,,, +1143,CHN,,Pingdingshan JGD,,Pingdingshan (HE),33.7,113.283333,,1,,8136,56,138,,,,,,49813,,, +1143,CHN,,Tumen RGD,,Tumen (JL),42.966667,129.85,,1,,8131,40,138,,,,,,36200451,,, +1143,CHN,,Zibo RGD Xinwen,,Zibo (SD),36.8,118.05,,1,,8124,51,138,,,,,,49822,,, +1143,CHN,zh,CNR 3,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,1,,8055,69,138,,2200-1600,1234567,,,36200455,,, +1143,CHN,zh,Changzhou JGD,,Changzhou (JS),31.768333,119.782778,,3,,8670,53,138,,2130-1435,1234567,,,49801,,, +1143,PHL,,DZMR-AM FEBC,,Santiago City (isa),16.683333,121.533333,,10,,10155,60,138,,,,,,33300001,,, +1143,CHN,zh,CNR 1,,Bijie/Dalan Cun-GZTS927 (GZ),27.316667,105.3,,1,,8214,66,139,,2025-1805,1234567,,,36200474,,, +1143,CHN,zh,CNR 2,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,2100-1602,1234567,,,36200462,,, +1143,CHN,,Anshun RGD,,Anshun (GZ),26.25,105.916667,,1,,8345,66,140,,,,,,49798,,, +1143,CHN,,Xuzhou RGD Wenxue,,Xuzhou (JS),34.233333,117.333333,,1,,8314,53,140,,0900-1230,1234567,,,49817,,, +1143,CHN,,Xuzhou RGD Wenxue,,Xuzhou (JS),34.233333,117.333333,,1,,8314,53,140,,2200-0545,1234567,,,49817,,, +1143,CHN,zh,Huaibei RGD Xiqu,,Huaibei (AH),33.956972,116.783444,,1,,8309,54,140,,,,,,36201250,,, +1143,CHN,zh,CNR 1,,Fenghuang (HN),28.233333,109.683333,,1,,8404,62,141,,2025-1805,1234567,,,36200469,,, +1143,CHN,zh,CNR 1,,Jishou (HN),28.316667,109.716667,,1,,8398,62,141,,2025-1805,1234567,,,36200464,,, +1143,CHN,zh,CNR 1,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,2025-1805,1234567,,,36200457,,, +1143,CHN,zh,CNR 1,,Wuzhou (GX),23.482222,111.293611,,1,,8921,64,143,,2025-1805,1234567,,,36201044,,, +1143,PHL,,DYAF-AM R Veritas,,Bacolod City (noc),10.683333,122.966667,,5,,10796,62,143,,2000-1600,1234567,,,49829,,, +1143,CHN,,CNR 2/Hainan Traffic,,Haikou (HA),20.033333,110.25,,1,,9162,67,144,,,,,,49805,,, +1143,CHN,,Zhejiang zhi Sheng,,Yuhuan (ZJ),28.133333,121.233333,,1,,9082,54,144,,2130-1605,1234567,,,49818,,, +1143,PHL,,DYRM-AM,,Dumaguete/Calindangan (ngo),9.293056,123.307222,,1,,10946,63,150,,????-1300,1234567,,,49784,,, +1143,INS,id,PM4CPH R Swadesi,,Delanggu (JT-ken),-7.616667,110.683333,,1,,11648,83,152,,,,,,49764,,, +1143,AUS,en,4HI Zinc HI,,Emerald (QLD),-23.541569,148.199167,,5,,15484,60,158,,0000-2400,1234567,,,49795,,, +1143,AUS,,2HD,,Newcastle/Sandgate (NSW),-32.864439,151.702522,,2,,16509,66,165,,0000-2400,1234567,,,49796,,, +1143,NZL,en,RNZ National,,Hamilton/Eureka (WKO),-37.691878,175.404903,,2.5,,18197,32,170,,0000-2400,1234567,,,49828,,, +1145,UKR,,LT,b,Liutizh,50.6875,30.375,,0.025,,1662,86,90,,,,,,85870,,, +1145,UKR,,KK,b,Krasnoarmiisk,48.3125,37.208333,,0.025,,2214,89,95,,,,,,85869,,, +1145,BOL,,CP19 R Chuquiago Musical,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1000-0200,1234567,,,36676,,, +1147,CHN,,Yibin RGD,,Yibin (SC),28.766667,104.616667,,1,,8047,66,137,,2210-1500,1234567,,,49836,,, +1147,CHN,zh,Jiaozuo JGD,,Jiaozuo (HE),35.25,113.233333,,1,,7997,55,137,,,,,,49835,,, +1150,CAN,en,CKOC,,Hamilton/York (ON),43.051111,-79.811389,,50,,6157,298,102,,,,5,,36355,,, +1150,USA,es,WWDJ,,Boston (MA),42.413333,-71.211111,,5,,5670,292,107,,,,9948,,43229,,, +1150,USA,en,WHBY,,Kimberly (DN) (WI),44.260278,-88.366667,,25,,6567,304,109,,,,0,,41614,,, +1150,USA,en,WHBY,,Kimberly (DN) (aux) (WI),44.138889,-88.546111,,25,,6587,304,109,,,,,,20016286,,, +1150,USA,,WDEL,,Wilmington (DE),39.815833,-75.53,,5,,6132,292,111,,,,,,41148,,, +1150,USA,,WUTI,,Utica (NY),43.175278,-75.350833,,1,,5874,295,116,,,,,,42931,,, +1150,USA,,WELC,,Welch (WV),37.416944,-81.616111,,5,,6699,294,117,,,,,,41284,,, +1150,CAN,,CKFR,,Kelowna (BC),49.847778,-119.466111,,10,,7585,326,123,,,,998,,36268,,, +1150,USA,,WIMA,,Lima (OH),40.679722,-84.109444,,1,,6596,298,123,,,,,,41760,,, +1150,USA,,KIMM,,Rapid City (D) (SD),44.076944,-103.146944,,5,,7377,312,124,,,,,,20016221,,, +1150,USA,,KSEN,,Shelby (MT),48.481111,-111.883889,,5,,7400,320,124,,,,,,39342,,, +1150,USA,,WCUE,,Cuyahoga Falls (OH),41.201389,-81.523611,,0.5,,6400,297,124,,,,,,41103,,, +1150,USA,,WGBR,,Goldsboro (NC),35.373889,-78.011667,,0.8,,6631,290,124,,,,,,41484,,, +1150,B,pt,ZYH643 Rdio Sol Poente,,Paracuru (CE),-3.431836,-39.034956,,5,,7504,230,125,,,,,,36901906,,, +1150,CUB,es,R Bayamo,,Bueycito/Entronque (gr),20.292661,-76.775808,,10,,7783,278,125,,,,2,,36614,,, +1150,USA,,KSAL,,Salina (KS),38.884167,-97.517222,,5,,7522,305,125,,,,2,,39325,,, +1150,B,pt,ZYI891 Rdio Pioneira,,Teresina (PI),-5.091744,-42.763864,,10,,7866,233,126,,,,,,36901900,,, +1150,VEN,,YVQD Ecos del Orinoco,,Ciudad Bolivar (blv),8.116667,-63.566667,,10,,7935,259,126,,0000-2400,1234567,,,45426,,, +1150,USA,en,KEIB,,Los Angeles (CA),34.033333,-117.983333,,44,,9021,316,127,,,,9995,,39825,,, +1150,USA,,KWKY,,Des Moines (IA),41.4525,-93.681111,,1,,7092,305,128,,,,,,39724,,, +1150,USA,,WGOW,,Chattanooga (TN),35.068056,-85.334444,,1,,7118,294,128,,,,,,41551,,, +1150,USA,en,KKNW,,Seattle (WA),47.586389,-122.186389,,6,,7904,326,128,,,,997,,38738,,, +1150,VEN,es,YVMV Mundial Caribe AM,,Punto Fijo/Punta Cardn (flc),11.65245,-70.195767,,10,,8075,267,128,,0000-2400,1234567,,,45387,,, +1150,PRU,,OAX8D R Loreto,,Iquitos (lor),-3.5,-73.316667,,50,,9618,260,129,,,,,,40354,,, +1150,USA,,WCRK,,Morristown (TN),36.236389,-83.309167,,0.5,,6898,294,129,,,,,,41073,,, +1150,USA,,WJBO,,Baton Rouge (LA),30.463056,-91.269444,,5,,7869,295,129,,,,,,41848,,, +1150,USA,,WMRD,,Middletown (CT),41.557222,-72.620278,,0.046,,5820,292,129,,,,9824,,42383,,, +1150,B,pt,ZYK656 Rdio Tupi AM,,So Paulo/So Caetano do Sul (SP),-23.514556,-46.596139,,50,,9855,227,130,,,,9753,,36901904,,, +1150,USA,,WDTM,,Selmer (TN),35.190833,-88.589167,,1,,7309,297,130,,,,,,41213,,, +1150,USA,en,WNDB,,Daytona Beach (FL),29.235,-81.071944,,1,,7323,287,130,,,,,,42448,,, +1150,USA,en,WJRD,,Tuscaloosa (AL),33.249444,-87.608611,,1,,7409,295,131,,,,,,41923,,, +1150,ARG,,LRH202 R Tupa Mbae,,Posadas (mn),-27.4559,-55.798406,,50,,10708,232,132,,0800-0300,1234567,,,40169,,, +1150,CAN,xx,CBAC,,Tuktoyaktuk (NT),69.443333,-133.000278,,0.04,,6103,344,132,,,,,,20109152,,, +1150,CLM,es,HJBT,,Ocana (nsa),8.183333,-73.333333,,10,,8591,267,132,,,,,,37357,,, +1150,USA,,WGBN,,New Kensington (PA),40.573333,-79.782778,,0.07,,6341,295,132,,,,,,41483,,, +1150,CLM,es,HJFP RCN,,Neiva (hui),2.933333,-75.333333,,10,,9187,265,134,,,,999,,35901564,,, +1150,GTM,,TGRR R Fiesta,,Ciudad de Guatemala (gut),14.566667,-90.466667,,10,,9194,284,134,,0000-2400,1234567,,,40536,,, +1150,USA,,KAGO,,Klamath Falls (D) (OR),42.215556,-121.7975,,5,,8405,323,134,,,,,,20012573,,, +1150,USA,,KIMM,,Rapid City (N) (SD),44.076111,-103.146944,,0.5,,7377,312,134,,,,,,38614,,, +1150,USA,en,WHUN,,Huntingdon (PA),40.455,-77.980556,,0.036,,6238,294,134,,,,,,41697,,, +1150,MEX,es,XEJP-AM El Fongrafo,,Mxico D.F/La Pradera (dif),19.479439,-99.065428,,10,,9314,294,135,,,,,,44218,,, +1150,USA,es,WTMP,,Egypt Lake (FL),28.011667,-82.498056,,0.5,,7517,287,135,,,,,,43177,,, +1150,USA,,WNLR,,Churchville (VA),38.210833,-79.131389,,0.035,,6481,293,136,,0000-2400,1234567,129,,42480,,, +1150,USA,es,KNRV,,Englewood (CO),39.605,-104.840278,,1,,7854,310,136,,,,,,39012,,, +1150,B,pt,ZYH250 Rdio Cultura,,Arapiraca/Rua So Tom (AL),-9.754219,-36.669683,,1,,8010,225,137,,,,,,45579,,, +1150,PNR,,Ecos de Pedas,,Pedas (lsn),7.533333,-80.033333,,5,,9105,272,137,,,,,,52333,,, +1150,USA,,WBAG,,Burlington-Graham (NC),36.113333,-79.45,,0.048,,6665,291,137,,,,,,40798,,, +1150,USA,,WEAQ,,Chippewa Falls (WI),44.884722,-91.390278,,0.046,,6687,306,137,,,,,,41238,,, +1150,B,pt,ZYL283 Rdio Globo,,Belo Horizonte (MG),-19.970228,-43.985564,,5,,9379,227,138,,,,,,36901903,,, +1150,DOM,,HIAS Onda Musical,,Santo Domingo (sdo),18.475,-69.833333,,0.25,,7465,271,138,,1100-0500,1234567,,,37210,,, +1150,USA,,KNED,,McAlester (OK),34.936667,-95.733056,,0.5,,7756,301,138,,,,,,38978,,, +1150,USA,en,WAVO,,Rock Hill (SC),34.948611,-80.999444,,0.059,,6855,292,138,,,,,,40776,,, +1150,USA,en,WMST,,Mount Sterling (KY),38.044722,-83.901389,,0.053,,6791,296,138,,,,,,42395,,, +1150,HND,,HRLP16,,Tegucigalpa (fmz),14.066667,-87.216667,,3,,9022,282,139,,,,,,37782,,, +1150,HTI,,R Carabes,,Port-au-Prince (oue),18.516667,-72.316667,,0.25,,7631,273,139,,,,,,35626,,, +1150,USA,,KCPS,,Burlington (IA),40.853056,-91.136111,,0.067,,6996,303,139,,,,,,38198,,, +1150,USA,,KZNE,,College Station (D) (TX),30.631667,-96.357778,,1,,8164,299,139,,,,,,20012556,,, +1150,USA,,WLOC,,Munfordville (KY),37.269167,-85.915556,,0.061,,6976,297,139,,,,,,42201,,, +1150,USA,,WSNW,,Seneca (SC),34.6875,-82.987778,,0.058,,7002,293,139,,,,,,43040,,, +1150,B,pt,ZYJ617 Rdio Cabugido Serid,,Jardim do Serid (RN),-6.583333,-36.765556,,0.25,,7699,227,140,,,,,,36901901,,, +1150,EQA,,HCAV3,,Loja (loj),-4,-79.166667,,5,,10057,264,140,,,,,,36855,,, +1150,USA,en,WJEM,,Valdosta (GA),30.846944,-83.237222,,0.101,,7331,290,140,,,,,,41866,,, +1150,EQA,,HCVC7,,Lago Agrio (suc),0.116667,-76.966667,,3,,9546,265,141,,,,,,37162,,, +1150,USA,,KAGO,,Klamath Falls (N) (OR),42.215556,-121.798056,,1,,8405,323,141,,,,,,37923,,, +1150,USA,,WXKO,,Fort Valley (GA),32.576111,-83.904722,,0.062,,7232,292,141,,,,,,43473,,, +1150,USA,,KASM,,Albany (MN),45.631389,-94.6,,0.021,,6802,308,142,,,,,,37973,,, +1150,USA,,KZNE,,College Station (N) (TX),30.631667,-96.3575,,0.5,,8164,299,142,,,,,,39896,,, +1150,USA,,WGGH,,Marion (IL),37.729722,-88.895556,,0.044,,7119,299,142,,,,,,41508,,, +1150,CLM,es,HJGJ,,Duitama (boy),5.866667,-73.066667,,1,,8775,265,143,,,,,,37455,,, +1150,USA,,KCKY,,Coolidge (AZ),33.0075,-111.548333,,1,,8800,311,143,,,,,,38168,,, +1150,USA,,KDEF,,Albuquerque (NM),35.201667,-106.598333,,0.5,,8340,309,143,,,,,,38250,,, +1150,USA,,KRMS,,Osage Beach (MO),38.124722,-92.6775,,0.055,,7310,302,143,,,,,,39270,,, +1150,CAN,en,CBXA,,Mica Dam (BC),52.061111,-118.574722,,0.04,,7345,327,144,,,,,,20109153,,, +1150,CLM,es,HJFI,,Armenia (qui),4.533333,-75.716667,,1,,9072,267,144,,,,,,37434,,, +1150,CLM,es,HJTE,,Quibdo (cho),5.7,-76.666667,,1,,9035,268,144,,,,,,37641,,, +1150,MEX,es,XEBF-AM Extremo,,Gmez Palacio (dur),25.55585,-103.475483,,1,,9035,301,144,,,,,,43773,,, +1150,NCG,,R Dario,,Len (leo),12.433333,-86.883333,,1,,9142,280,144,,,,,,33700007,,, +1150,SLV,,YSCF,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,45267,,, +1150,CAN,en,CBKL,,Alice Arm (BC),55.458056,-129.455833,,0.04,,7385,334,145,,,,,,20109154,,, +1150,MEX,es,XEXM-AM R Jerez,,Jerez (zac),22.643606,-102.962081,,1,,9268,299,145,,,,,,45056,,, +1150,MEX,es,XEXP-AM La Mejor,,Tuxtepec (oax),18.092694,-96.143717,,1,,9253,291,145,,,,,,45062,,, +1150,USA,,KCCT,,Corpus Christi (TX),27.800278,-97.478889,,0.5,,8479,298,145,,,,,,38137,,, +1150,USA,,WGEA,,Geneva (AL),31.0225,-85.871111,,0.035,,7484,292,146,,,,,,41493,,, +1150,MEX,es,XEJS-AM,,Hidalgo del Parral (chi),26.934333,-105.631078,,0.5,,9035,303,147,,,,,,44223,,, +1150,MEX,es,XERM-AM R Frmula,,Mexicali (bcn),32.643822,-115.506411,,0.5,,9033,314,147,,,,,,44687,,, +1150,MEX,es,XETVR-AM La Nueva Azul,,Tuxpan/Col. Murillo Vidal (vcz),20.971417,-97.407317,,0.5,,9077,294,147,,,,,,44873,,, +1150,PRU,,R Ayabaca,,Ayabaca (piu),-4.633333,-79.716667,,1,,10150,264,147,,,,5,,52481,,, +1150,USA,es,KHRO,,El Paso (TX),31.753611,-106.416111,,0.38,,8642,307,147,,,,,,39436,,, +1150,ARG,es,LRA2 R Nacional,,Viedma (rn),-40.807022,-63.027511,,5,,12302,229,148,,0900-0400,1234567,,,40014,,, +1150,MEX,es,XEAD-AM R Metropol,,Tonal (jal),20.665389,-103.248772,,0.5,,9464,298,148,,,,,,43697,,, +1150,B,pt,ZYJ456 Rdio Trs Rios,,Trs Rios (RJ),-22.127353,-43.226017,,0.5,,9554,225,149,,,,,,36901902,,, +1150,BOL,,R 24 de Noviembre,,Eucaliptus (oru),-17.583333,-67.516667,,1,,10494,247,149,,,,,,52003,,, +1150,EQA,,HCGB5 La Voz de Riobamba,,Riobamba (chi),-1.633333,-78.616667,,0.5,,9812,265,149,,,,923,,36949,,, +1150,EQA,,HCJM4,,Esmeraldas (esm),0.966667,-79.716667,,0.5,,9658,268,149,,,,,,36987,,, +1150,USA,,KLPF,,Midland (TX),31.981944,-102.058056,,0.148,,8378,304,149,,,,,,38659,,, +1150,USA,,KOLJ,,Quanah (TX),34.315278,-99.746944,,0.077,,8041,304,149,,,,,,20016014,,, +1150,MEX,es,XESO-AM La Poderosa,,Ciudad Obregn (son),27.501478,-109.977514,,0.3,,9226,307,150,,,,,,44758,,, +1150,USA,,WONG,,Canton (MS),32.543056,-90.06,,0.019,,7619,296,150,,,,,,42606,,, +1150,USA,es,KBPO,,Port Neches (TX),30.084444,-93.970278,,0.063,,8067,297,150,,,,,,39570,,, +1150,USA,en,KQQQ,,Pullman (WA),46.726667,-117.206389,,0.027,,7787,323,151,,,,,,39204,,, +1150,ARG,,Concepto AM 11-50,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51830,,, +1150,ARG,es,LT9 R Brigadier Lpez,,Santa F (sf),-31.695647,-60.751292,,1,,11367,233,152,,0700-0300,1234567,2,,40202,,, +1150,BOL,,CP71 R El Condor,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,1100-2030,1234567,,,52001,,, +1150,ARG,,LRA51 R Nacional,,San Jos de Jachl (sj),-30.25,-68.75,,1,,11694,240,153,,1030-0300,1234567,,,39954,,, +1150,BOL,,R Guaqui,,Guaqui (lpz),-16.6,-68.866667,,0.3,,10491,248,154,,,,,,52002,,, +1150,MEX,es,XEUAS-AM R UAS,,Culiacn (sin),24.821461,-107.357894,,0.13,,9327,303,154,,,,,,44891,,, +1150,BOL,,CP194 R Chaco,,Yacuiba (trj),-22.016667,-63.7,,0.2,,10659,241,156,,1000-2400,123456,,,36680,,, +1150,BOL,,CP194 R Chaco,,Yacuiba (trj),-22.016667,-63.7,,0.2,,10659,241,156,,1100-1600,......7,,,36680,,, +1150,USA,,KXET,,Portland (OR),45.642778,-122.613889,,0.01,,8107,325,158,,,,9962,,39273,,, +1152,ROU,ro,SRR R Romnia Actualităţi,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,400,002 182,1381,108,45,,0300-2200,1234567,5,,1027,,, +1152,G,en,LBC News 1152,,London/Saffron Green (EN-HTS),51.665556,-0.242222,,24,,459,266,48,,0000-2400,1234567,0,,1021,,, +1152,G,en,Free R 80's,,Birmingham/Langley Mill-A (EN-WMD),52.568333,-1.764889,,3,220,557,278,58,,0000-2400,1234567,993,,1020,,, +1152,E,es,RNE R 5,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0000-2400,1234567,989,,1015,,, +1152,G,en,Clyde 2,,Glasgow/Dechmont Hill (SC-SLA),55.794167,-4.159444,,3.6,,803,305,59,,0000-2400,1234567,25,,1019,,, +1152,G,en,Gold,,Brundall/Ferry Lane (EN-NFK),52.618611,1.403889,,0.83,,345,281,61,,0000-2400,1234567,0,,1018,,, +1152,G,en,Magic 1152 MW,,Greenside (EN-TYW),54.958694,-1.765583,,1.8,,626,304,61,,0000-2400,1234567,0,,1023,,, +1152,G,en,Manchester's Magic 1152,,Ashton Moss/Arqiva (EN-GTM),53.491111,-2.114444,,1.5,,593,288,61,,0000-2400,1234567,9968,,1022,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0625-0630,12345..,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0650-0700,12345..,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0800-0815,1234567,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1208-1300,12345..,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1230-1300,.....67,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1400-1415,12345..,999,,1017,,, +1152,E,es,RNE R 5,,Albacete/El Palo (RNE) (CAM-AB),38.984308,-1.919122,,12,,1595,207,62,,0000-2400,1234567,,,1013,,, +1152,E,es,RNE R 5,,Mlaga/Sta. Rosala (RNE) (AND-MA),36.717311,-4.576356,,25,,1916,211,62,,0000-2400,1234567,9993,,1016,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0815-1208,12345..,999,,1017,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0815-1230,.....67,999,,1017,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1300-1400,12345..,999,,1017,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1300-2300,.....67,999,,1017,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1415-2300,12345..,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0630-0650,12345..,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0700-0800,12345..,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0711-0800,.....67,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,2300-0625,1234..7,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,2300-0710,....56.,999,,1017,,, +1152,E,pt,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0710-0711,.....67,999,,1017,,, +1152,E,es,RNE R 5,,Cartagena/RNE (MUR-MU),37.628333,-0.966803,,12,,1710,203,63,,0000-2400,1234567,,,1014,,, +1152,G,en,Gold,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,0.32,,756,260,69,,0000-2400,1234567,,,1024,,, +1152,UAE,ml,Voice of Kerala,,Ras al-Khaimah (rak),25.8,55.975,,200,,5049,106,85,,0100-2100,1234567,0,,1029,,, +1152,PAK,,PBC R Pakistan/NBS News,,Rawalpindi (pjb),33.609833,72.975972,,100,,5581,84,93,,0200-0400,1234567,20,,49870,,, +1152,PAK,,PBC R Pakistan/NBS News,,Rawalpindi (pjb),33.609833,72.975972,,100,,5581,84,93,,1300-1800,1234567,20,,49870,,, +1152,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Wajir (nea),1.845731,40.103244,,50,,6402,139,104,,0200-2110,1234567,999,,1967,,, +1152,AGL,pt,RNA Em. Prov. do Zaire,,M'Banza Kongo (zai),-6.266667,14.25,,10,,6534,171,112,,0400-2100,1234567,,,2472,,, +1152,RUS,ru,R Rossii,,Komsomolsk-na-Amure (KH),50.657792,136.904278,,50,,7678,31,117,,1900-1300,1234567,,,46931,,, +1152,CHN,,Bayannur RGD,,Linhe/NMTS691 (NM),40.729444,107.354444,,10,,7200,55,119,,,,,,49839,,, +1152,CHN,,Hunan RGD Xinwen Guangbo,,Changde (HN),29.033333,111.7,,150,,8454,60,120,,,,,,36201043,,, +1152,CHN,mn,Hinggan=Xingan RGD,,Ulanhot/NMTS825 (NM),46.126667,122.046444,,10,,7491,43,122,,,,,,49843,,, +1152,CHN,,Dalian RGD Chengshi,,Dalian (LN),38.9,121.583333,,10,,8118,47,128,,2050-1700,1234567,,,49841,,, +1152,KOR,ko,HLCW KBS 1 R,,Wonju (gan),37.359444,127.953611,,10,,8571,44,132,,0000-2400,1234567,,,49866,,, +1152,THA,th,Ror. Dor.,,Chiang Mai/Chottana Road (cmi),18.820833,98.979722,,10,,8539,76,132,,????-1800,1234567,,,49873,,, +1152,CHN,,Hunan RGD Xinwen Guangbo,,Hengyang/Hudong Cun (HN),26.895278,112.659167,,10,,8700,61,133,,2130-1700,1234567,,,49842,,, +1152,J,ja,JOPC NHK2,,Kushiro (hok),42.990278,144.4125,,10,,8697,30,133,,2030-1500,1.....7,,,49863,,, +1152,J,ja,JOPC NHK2,,Kushiro (hok),42.990278,144.4125,,10,,8697,30,133,,2030-1635,.2345..,,,49863,,, +1152,J,ja,JOPC NHK2,,Kushiro (hok),42.990278,144.4125,,10,,8697,30,133,,2030-1640,.....6.,,,49863,,, +1152,J,,JORB NHK2,,Kochi (shi-koc),33.566667,133.6,,10,,9196,42,134,,2030-1500,1.....7,,,49862,,, +1152,J,,JORB NHK2,,Kochi (shi-koc),33.566667,133.6,,10,,9196,42,134,,2030-1635,.2345..,,,49862,,, +1152,J,,JORB NHK2,,Kochi (shi-koc),33.566667,133.6,,10,,9196,42,134,,2030-1640,.....6.,,,49862,,, +1152,THA,th,Ror. Dor.,,Khon Kaen/Ratkhanung Rd (kkn),16.454167,102.847222,,10,,9000,75,134,,????-1630,1234567,,,49874,,, +1152,TWN,,Hua Sheng BS-HS R 1,,Taipei (TPS),25.096167,121.521931,,5,,9378,55,138,,,,,,49876,,, +1152,CHN,,Hunan RGD Xinwen Guangbo,,Zhangjiajie/Dayongqiao (HN),29.135,110.445833,,1,,8371,61,141,,,,,,36200444,,, +1152,CHN,,Hunan RGD Xinwen Guangbo,,Yongzhou (HN),26.416667,111.616667,,1,,8680,62,143,,,,,,49845,,, +1152,PHL,,DYCM-AM,,Bogo (ceb),11,124,,5,,10829,61,143,,,,,,49871,,, +1152,TWN,,BCC Country Network,,Puli (NT),23.968333,120.969167,,1,,9450,57,145,,0000-2400,1234567,,,49875,,, +1152,AUS,en,6PNN ABC News R,,Busselton/Kealy (WA),-33.659986,115.229306,,10,,14126,99,151,,,,997,,37700074,,, +1152,INS,id,PAS-R Pastra,,Banjar (JB-kbj),-7.372222,108.540278,,1,,11481,85,152,,,,,,49855,,, +1152,INS,id,R Suara Istana,,Yogyakarta (YO-yog),-7.783333,110.366667,,1,,11641,84,152,,0000-????,1234567,,,35400064,,, +1152,INS,id,R Yasmara,,Surabaya (JI-ksu),-7.283056,112.729722,,1,,11757,82,153,,0200-1700,1234567,7,,49861,,, +1152,INS,id,Jembrana FM/R.Ananda Praja Suara,,Negara (BA-jem),-8.366667,114.616667,,1,,11980,81,154,,,,,,49857,,, +1152,J,,NHK R 2,,Tsuyama (chg-oka),35.058394,134.006953,,0.1,,9070,41,154,,2030-1500,1.....7,,,49865,,, +1152,J,,NHK R 2,,Tsuyama (chg-oka),35.058394,134.006953,,0.1,,9070,41,154,,2030-1635,.2345..,,,49865,,, +1152,J,,NHK R 2,,Tsuyama (chg-oka),35.058394,134.006953,,0.1,,9070,41,154,,2030-1640,.....6.,,,49865,,, +1152,AUS,en,2WG,,Wagga Wagga/Brucedale (NSW),-35.042208,147.415528,,2,,16408,74,165,,0000-2400,1234567,2,,49838,,, +1152,NZL,,3ZC Newstalk ZB,,Timaru/Fairview (CAN),-44.401167,171.143583,,2,,18601,59,172,,,,999,,49867,,, +1155,UKR,,LS,b,Krasnyi Luch,48.1875,38.958333,,0.025,,2339,88,96,,,,2,L1024 U1028 15.3s,IDx2 + 7gap,85872,, +1155,KAZ,,NT,b,Tole Bi (zha),43.6875,73.708333,,0.025,,4919,73,122,,,,,,85873,,, +1160,USA,,WSKW,,Skowhegan (D) (ME),44.745278,-69.693333,,10,,5413,293,101,,,,,,20012603,,, +1160,USA,,WYLL,,Chicago (D) (IL),42.041667,-87.865833,,50,,6712,302,107,,,,,,20016222,,, +1160,USA,,WOBM,,Lakewood Township (NJ),40.135833,-74.23,,8.9,,6026,292,108,,,,,,42554,,, +1160,USA,,WYLL,,Chicago (N) (IL),41.573056,-87.993611,,50,,6757,301,108,,,,,,20016283,,, +1160,USA,,WPIE,,Trumansburg (NY),42.545,-76.710833,,5,,6004,295,110,,,,,,42692,,, +1160,USA,,WSKW,,Skowhegan (N) (ME),44.745,-69.692222,,0.73,,5412,293,112,,,,,,43016,,, +1160,USA,,WYLL,,Chicago (D aux) (IL),41.573056,-87.993611,,15,,6757,301,113,,,,1,,43526,,, +1160,USA,en,WVNJ,,Oakland (NJ),41.056389,-74.249444,,2.5,,5959,292,113,,,,,,43316,,, +1160,ATG,,Caribbean R Lighthouse,,Jolly Harbour (atg),17.066722,-61.868972,,10,,7042,264,117,,0925-0145,1234567,998,,46794,,, +1160,BER,en,VSB3 BBC WS,,Ireland Island South (-),32.313694,-64.842111,,1,,5997,278,117,,0000-2400,1234567,992,,46796,,, +1160,USA,,WABY,,Mechanicville (NY),42.92,-73.702222,,0.57,,5790,294,117,,,,999,,40636,,, +1160,USA,,WBYN,,Lehighton (PA),40.8175,-75.691944,,1,,6068,293,118,,,,,,43538,,, +1160,USA,,WMET,,Gaithersburg (MD),39.187778,-77.215556,,1.5,,6286,293,118,,,,,,42305,,, +1160,USA,en,WCCS,,Homer City (PA),40.571667,-79.17,,1,,6303,295,120,,,,,,40968,,, +1160,USA,en,KSL,,Salt Lake City (UT),40.779444,-112.098889,,50,,8110,316,121,,,,0,,39375,,, +1160,USA,,KVCE,,Highland Park (D) (TX),33.176944,-97.676667,,35,,8021,301,122,,,,,,38038,,, +1160,PTR,es,WBQN,,Barceloneta-Manati (PR),18.439722,-66.551944,,2.5,,7244,268,125,,1100-0200,1234567,36,,40897,,, +1160,USA,en,WCVX,,Florence (KY),38.969167,-84.682222,,0.99,,6765,297,125,,,,,,40889,,, +1160,VEN,,YVRR R Industrial 1160 Estereo,,Guarenas (mir),10.416667,-66.666667,,10,,7942,263,126,,,,,,45448,,, +1160,USA,,WKCM,,Hawesville (KY),37.905556,-86.758333,,1,,6976,298,127,,,,,,41975,,, +1160,USA,,WCRT,,Donelson (TN),36.163611,-86.715556,,1,,7114,296,128,,,,,,41980,,, +1160,USA,,WCXI,,Fenton (MI),42.808333,-83.730556,,0.215,,6410,300,128,,,,,,41112,,, +1160,USA,,WJFJ,,Tryon (NC),35.235278,-82.240833,,0.5,,6911,293,129,,,,,,41872,,, +1160,USA,,WODY,,Fieldale (VA),36.71,-79.966111,,0.25,,6651,292,130,,,,,,42566,,, +1160,USA,,WTEL,,Red Springs (NC),34.838611,-79.176667,,0.25,,6748,290,130,,,,,,43127,,, +1160,CLM,es,HJEC,,Ccuta (nsa),7.816667,-72.466667,,10,,8564,266,132,,,,,,37407,,, +1160,CLM,es,HJS31,,Barrancabermeja (sat),7.066667,-73.85,,10,,8723,267,133,,,,,,35901570,,, +1160,B,pt,ZYH714 Rdio Globo,,Gama (DF),-15.997672,-48.050378,,10,,9205,232,134,,,,,,36901922,,, +1160,B,pt,ZYI202 Rdio Espirito Santo,,Vitria (ES),-20.232722,-40.283817,,10,,9226,223,134,,,,16,,36901928,,, +1160,B,pt,ZYI674 Rdio Cariri,,Campina Grande/Sitio Covo (PB),-7.180256,-35.885253,,1,,7715,226,134,,,,,,36901912,,, +1160,CLM,es,HJEV R Unica,,Cali (val),3.5,-76.533333,,10,,9219,267,134,,,,996,,52590,,, +1160,CLM,es,HJOC Ecos de Colombia,,Bogot D. C. (bdc),4.716667,-74.116667,,10,,8947,265,134,,,,1,,37656,,, +1160,CUB,es,R Enciclopedia,,Santiago de Cuba/CTOM1 (sc),20.055531,-75.804389,,1,,7738,277,134,,,,,,36556,,, +1160,PNR,es,HOWK R Metrpolis,,Ciudad de Panam/Orillac (pnm),9.024389,-79.515786,,10,,8939,272,134,,,,,,52335,,, +1160,USA,es,WIWA,,St. Cloud (FL),28.270833,-81.333333,,0.5,,7420,287,134,,,,,,42636,,, +1160,VEN,,YVOK R Universidad,,Mrida (mrd),8.566667,-71.166667,,5,,8410,265,134,,,,,,45408,,, +1160,B,pt,ZYH660 Rdio Montevidu,,Cedro (CE),-6.598497,-39.0567,,1,,7816,229,135,,,,,,36901910,,, +1160,B,pt,ZYH784 Rdio Silvestre,,Itabera (GO),-16.013956,-49.808786,,10,,9302,233,135,,,,,,36901924,,, +1160,CLM,es,HJBL,,Barranquilla (atl),10.866667,-74.816667,,5,,8458,270,135,,,,,,37350,,, +1160,MEX,es,XEQIN-AM,,San Quintn (bcn),30.563056,-115.941667,,10,,9252,313,135,,,,9,,52636,,, +1160,B,pt,Rdio Cano Nova,,Itabuna/Roa do Povo (BA),-14.834953,-39.357239,,5,,8646,225,136,,,,,,36901930,,, +1160,CLM,es,HJAZ,,Montera (cor),8.616667,-75.783333,,5,,8720,269,136,,,,,,37340,,, +1160,CUB,es,R Bayamo,,Piln (gr),19.900169,-77.361178,,1,,7856,278,136,,,,,,36617,,, +1160,USA,es,WEWC,,Callahan (FL),30.374444,-81.741111,,0.25,,7273,289,136,,,,,,41341,,, +1160,B,pt,Rdio Cidade Modelo,,Bocaina (PI),-6.949167,-41.324167,,1,,7969,231,137,,,,,,36901911,,, +1160,DOM,,HIBE Rlandia,,Santiago de los Caballeros (sto),19.45,-70.7,,0.25,,7441,272,137,,0900-0400,1234567,,,52242,,, +1160,PNR,es,HOC20 Ondas Chiricanas,,Dolega (chq),8.616944,-82.446389,,5,,9175,274,137,,,,,,52334,,, +1160,USA,,KCTO,,Cleveland (MO),38.673889,-94.607778,,0.23,,7375,303,137,,,,,,38218,,, +1160,USA,,KVCE,,Highland Park (N) (TX),33.039167,-96.942778,,1,,7990,301,137,,,,,,20012584,,, +1160,USA,,WCFO,,East Point (GA),33.826111,-84.605556,,0.16,,7174,293,137,,,,,,42343,,, +1160,BOL,,CP132 R Continental,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,0930-2400,1234567,,,36638,,, +1160,CLM,es,HJZV R Las Lajas,,Ipiales (nar),0.8,-77.633333,,5,,9531,266,138,,,,,,37668,,, +1160,MEX,es,XEGI-AM R Reyna,,Tamazunchale (slp),21.240867,-98.766447,,4,,9138,295,138,,,,,,44061,,, +1160,B,pt,ZYH652 Rdio Vale do Coreau,,Granja/Lagoa Grande (CE),-3.115486,-40.833967,,0.25,,7569,232,139,,,,,,36901915,,, +1160,B,pt,ZYI385 Rdio A Voz do Oeste,,Cuiab (MT),-15.6,-55.970556,,5,,9612,239,139,,,,,,36901923,,, +1160,HND,,HREJ,,San Pedro Sula (cor),15.216667,-88.016667,,3,,8975,283,139,,,,,,37750,,, +1160,B,pt,ZYI558 Rdio Guam AM,,So Miguel do Guam (PA),-1.6,-47.486433,,0.25,,7799,239,141,,,,,,36901929,,, +1160,CLM,es,HJAU,,Florencia (caq),1.566667,-75.583333,,2.5,,9324,265,141,,,,,,37336,,, +1160,USA,,KRDY,,San Antonio (TX),29.536389,-98.686389,,1,,8398,300,141,,,,,,39231,,, +1160,USA,en,KFXE,,Waukon (IA),43.286944,-91.468333,,0.026,,6819,305,141,,,,,,38980,,, +1160,PRG,,ZP72 R Antena 2,,Asuncin (asu),-25.254594,-57.642408,,5,,10605,235,142,,,,,,45525,,, +1160,PRU,,OAX4C R Panamericana,,Lima (lim),-12.216667,-77.066667,,5,,10638,257,142,,,,,,40303,,, +1160,CTR,,TILX R Columbia,,Puntarenas (pta),9.966667,-84.816667,,1,,9218,277,144,,,,,,40590,,, +1160,GTM,,TGRI R Izabal,,Morales (izb),15.49175,-88.825006,,1,,9004,284,144,,1100-0130,1234567,,,40529,,, +1160,HND,,HRGF,,El Paraiso (elp),13.833333,-86.566667,,1,,8998,281,144,,,,,,37755,,, +1160,HND,,HRYS,,Marcala (lap),14.066667,-88,,1,,9074,282,144,,,,,,37884,,, +1160,NCG,,YNHM R Satlite,,Estel (esl),13.066667,-86.333333,,1,,9050,280,144,,,,,,52225,,, +1160,EQA,,HCVR3 R Via,,Machala (oro),-3.266667,-79.966667,,1.5,,10047,265,145,,,,,,37179,,, +1160,EQA,,HCCP1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36882,,, +1160,EQA,,HCUR6,,Runatacuyac (cot),-0.983333,-78.616667,,1,,9755,265,146,,,,,,37154,,, +1160,B,pt,ZYK558 Rdio Bandeirantes,,Bauru/Praa 3 (SP),-22.321944,-49.070833,,1,,9866,230,147,,,,,,36901909,,, +1160,B,pt,ZYJ741 Rdio Itaber,,Blumenau (SC),-26.852778,-48.998889,,1,,10297,227,148,,,,2,,36901926,,, +1160,URG,,CV116 R Impacto AM 1160,,Mercedes (so),-33.2675,-58.018611,,2,,11364,231,148,,0900-0400,1234567,,,36723,,, +1160,ARG,es,LU32 R Coronel Olavarria,,Olavarria (ba),-36.876906,-60.369614,,2.5,,11815,230,149,,0900-0300,1234567,,,40227,,, +1160,INS,id,R Ratu Anda Suara,,Argamakmur (BE-bku),-3.433333,102.266667,,1,,10709,87,149,,,,,,35400108,,, +1160,B,pt,ZYK273 Universidade Catolica AM,,Pelotas (RS),-31.761944,-52.286389,,1,,10929,227,150,,,,,,36901908,,, +1160,EQA,,HCND4,,Portoviejo (man),-1.066667,-80.45,,0.5,,9887,267,150,,,,,,37040,,, +1160,MEX,es,XEVW-AM R Sensacin,,Acmbaro (gua),20.038703,-100.761911,,0.25,,9369,296,151,,,,,,44998,,, +1160,ARG,,R Excelsior,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,51798,,, +1160,ARG,es,LRH253 R Catarates,,Puerto Iguaz (mn),-25.615861,-54.568517,,0.5,,10470,232,152,,1000-1600,1234567,,,40017,,, +1160,ARG,es,R La Ms Santiaguea,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,33000087,,, +1160,B,pt,ZYH323 Rdio Sociedade TV Manuara,,Boca do Acre (AM),-8.770833,-67.333333,,0.25,,9692,252,152,,,,,,36901914,,, +1160,B,pt,ZYK242 Rdio Miriam AM,,Farroupilha (RS),-29.175556,-51.173889,,0.5,,10628,228,152,,,,,,36901925,,, +1160,B,pt,ZYK245 Rdio Luz e Alegria,,Frederico Westphalen (RS),-27.378056,-53.396389,,0.5,,10573,230,152,,,,,,36901927,,, +1160,B,pt,ZYK582 Rdio Difusora Fernandpolis,,Fernandpolis (SP),-20.279928,-50.26435,,0.25,,9734,232,152,,,,,,36901921,,, +1160,B,pt,ZYK673 Rdio Cacique,,Taubat (SP),-22.994444,-45.55,,0.25,,9752,227,152,,,,54,,36901920,,, +1160,B,pt,ZYK685 Rdio Globo,,Mococa (SP),-21.473383,-46.9888,,0.25,,9677,228,152,,,,,,36901913,,, +1160,B,pt,ZYJ258 Norte AM 1160,,Londrina (PR),-23.233333,-51.141667,,0.25,,10062,231,153,,,,,,36901919,,, +1160,B,pt,ZYK256 Rdio Jaguari AM,,Jaguari/Rua Dona Tereza (RS),-29.494444,-54.699722,,0.5,,10840,230,153,,,,,,36901917,,, +1160,B,pt,ZYK517 Rdio Cacique de Sorocaba,,Votorantim/Av 31 de Maro 111 (SP),-23.539089,-47.447383,,0.25,,9900,228,153,,,,,,36901916,,, +1160,B,,ZYJ776,,Porto Unio (SC),-26.216667,-51.066667,,0.25,,10342,229,154,,,,,,46186,,, +1160,B,pt,ZYJ767 Rdio Difusora de Laguna AM,,Laguna (SC),-28.493333,-48.785,,0.25,,10444,226,154,,,,,,36901907,,, +1160,BOL,,CP317 R Centenario La Nueva,,Santa Cruz (scz),-17.766667,-63.166667,,0.25,,10242,243,154,,0900-0100,1234567,,,36685,,, +1160,BOL,,CP78 R RTC,,Cochabamba (cbb),-17.366667,-66.166667,,0.25,,10390,246,154,,1030-2400,1234567,,,36713,,, +1160,PRU,es,OAX2C R Libertad Mundo,,Trujillo (lal),-8.116667,-79.033333,,0.3,,10410,261,154,,,,,,40278,,, +1160,BOL,,CP98 R Nuevo Mundo,,Sucre (cqs),-19.016667,-65.283333,,0.25,,10484,244,155,,1000-0300,1234567,,,36721,,, +1160,CHL,,CC116 R Ancoa,,Linares (ML),-35.783333,-71.566667,,1,,12338,238,155,,1000-0600,1234567,,,35805,,, +1160,MEX,es,XEIW-AM,,Uruapan (mic),19.422156,-102.064553,,0.1,,9504,296,155,,,,,,44189,,, +1160,ARG,es,LRA57 R Nacional,,El Bolson (rn),-41.990828,-71.542878,,1,,12859,234,156,,0900-0300,1234567,,,39960,,, +1160,URG,es,CW116 R Agraria del Uruguay,,Cerro Chato (tt),-33.1,-55.116667,,0.25,,11198,229,157,,0830-0130,1234567,,,36742,,, +1160,USA,en,KNNV692,,Cedar Hill (TX),32.577667,-96.958333,,0.01,,8031,301,157,,,,,,20010622,,, +1160,USA,en,WQFX528,,Stafford (TX),29.625528,-95.563167,,0.01,,8204,298,159,,,,,,20010621,,, +1160,CHL,,CD116 R Baha'i,,Labranza (Temuco?) (AR),-38.766667,-72.75,,0.25,,12658,237,162,,1030-0230,1234567,,,35855,,, +1161,G,en,BBC R 5 Live,,Bexhill-on-Sea (EN-ESU),50.838056,0.4475,,1,,436,253,61,,0000-0500,1234567,,,1036,,, +1161,G,en,BBC Sussex,,Bexhill-on-Sea (EN-ESU),50.838056,0.4475,,1,,436,253,61,,0500-2400,1234567,,,1036,,, +1161,G,en,Tay AM,,Dundee/Greenside Scalp (SC-DDC),56.45,-2.923972,,1.4,,774,312,63,,0000-2400,1234567,0,,1038,,, +1161,G,en,Magic 1161 AM,,Goxhill/Neatgangs Lane (EN-LIN),53.7065,-0.321583,,0.35,,485,294,66,,0000-2400,1234567,9988,,1037,,, +1161,BUL,bg,BNR Horizont,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,0000-0600,1234567,24,,1030,,, +1161,BUL,bg,BNR Horizont,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,0800-1300,1234567,24,,1030,,, +1161,BUL,bg,BNR Horizont,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,1500-1830,1234567,24,,1030,,, +1161,BUL,bg,BNR Horizont,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,2030-2400,1234567,24,,1030,,, +1161,BUL,bg,BNR Horizont,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,0000-0600,1234567,24,,1031,,, +1161,BUL,bg,BNR Horizont,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,0800-1300,1234567,24,,1031,,, +1161,BUL,bg,BNR Horizont,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,1500-1830,1234567,24,,1031,,, +1161,BUL,bg,BNR Horizont,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,2030-2400,1234567,24,,1031,,, +1161,BUL,tr,R Bulgaria,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,0600-0800,1234567,24,,1030,,, +1161,BUL,tr,R Bulgaria,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,1300-1500,1234567,24,,1030,,, +1161,BUL,tr,R Bulgaria,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,1830-2030,1234567,24,,1030,,, +1161,BUL,tr,R Bulgaria,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,0600-0800,1234567,24,,1031,,, +1161,BUL,tr,R Bulgaria,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,1300-1500,1234567,24,,1031,,, +1161,BUL,tr,R Bulgaria,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,1830-2030,1234567,24,,1031,,, +1161,EGY,,ERTU Mid-Delta R,,Tanta (ghb),30.818167,31.005181,,100,,3101,130,68,,0400-2200,1234567,,,1034,,, +1161,IRN,ar,IRIB WS,,Qasr-e Shirin (ksh),34.448189,45.616767,,300,280,3667,107,69,,1530-0125,1234567,9998,,1800,,, +1161,G,en,Gold,,Blunsdon (EN-WLT),51.609056,-1.794472,,0.16,,566,268,71,,0000-2400,1234567,0,,1039,,, +1161,G,en,BBC R 5 Live,,Kempston (EN-BEF),52.106667,-0.489167,,0.1,,471,273,72,,0000-0500,1234567,0,,1035,,, +1161,G,en,BBC Three Counties R./BBC Asian Network,,Kempston (EN-BEF),52.106667,-0.489167,,0.1,,471,273,72,,0500-2400,1234567,0,,1035,,, +1161,ALG,ar,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2000-2030,1234567,,,200008,,, +1161,ALG,ar,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2100-2130,1234567,,,200008,,, +1161,ALG,ar,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2230-2300,1234567,,,200008,,, +1161,ALG,ar,R Coran,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2300-0200,1234567,,,200008,,, +1161,ALG,ar,R Tamanrasset,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,0200-1930,1234567,,,200008,,, +1161,ALG,en,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2130-2200,1234567,,,200008,,, +1161,ALG,es,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,1930-2000,1234567,,,200008,,, +1161,ALG,es,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2200-2230,1234567,,,200008,,, +1161,ALG,fr,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2030-2100,1234567,,,200008,,, +1161,TJK,tg,Tojikiston R.3 Sado-ye Dushanbe,,Orzu (ktl),37.5375,68.794444,,40,,5009,83,91,,0100-1900,1234567,967,,47099,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,0020-0400,1234567,9874,,49886,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,0630-0930,123456,9874,,49886,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,0630-1030,......7,9874,,49886,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,1100-1735,......7,9874,,49886,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,1130-1735,123456,9874,,49886,,, +1161,BGD,,Bangladesh Betar,,Rangamati (cgg),22.658333,92.166667,,10,,7757,79,125,,0530-0830,1234567,,,49881,,, +1161,CHN,,Weifang RGD News,,Weifang (SD),36.731389,119.136667,,10,,8187,50,129,,????-1500,1234567,,,49884,,, +1161,CHN,,Jingmen JGD,,Jingmen (HU),31.033333,112.2,,10,,8308,59,130,,????-1555,1234567,,,49882,,, +1161,THA,th,Wor. Sor. Sor.,,Bangkok/Si Ayutthaya Road (bmp),13.758917,100.531028,,20,,9082,78,131,,2300-1500,1234567,,,49921,,, +1161,CHN,zh,CNR 1,,unknown,34.95,104.5,,1,,7515,61,132,,,,,,36201041,,, +1161,KOR,ko,HLKU MBC,,Busan/Choup (bus),35.183861,129.057847,,10,,8829,44,133,,0000-2400,1234567,,,49911,,, +1161,CHN,,Guangxi JGD Caifu Guangbo,,Beihai (GX),21.483333,109.1,,7.5,,8961,67,135,,,,,,36200355,,, +1161,THA,th,Sor. Thor. Ror. 9,,Ubon Ratchathani/Trakan Rd (urt),15.306619,104.895736,,10,,9235,74,135,,2200-1402,1234567,,,49922,,, +1161,TWN,,BCC Country Network,,Miaoli (ML),24.547839,120.807339,,10,,9388,56,135,,0000-2400,1234567,,,49926,,, +1161,TWN,,BCC Country Network,,Yilan (YL),24.7338,121.802389,,10,,9427,55,135,,0000-2400,1234567,,,49924,,, +1161,PHL,,DWCM-AM Aksyon Radyo,,Dagupan City (pgs),16.033333,120.333333,,10,,10144,61,138,,????-1500,1234567,893,,49916,,, +1161,CHN,,Guangxi JGD Caifu Guangbo,,Bose/GXTS242 (GX),23.890278,106.608889,,1,,8593,67,142,,,,,,36201042,,, +1161,PHL,,DYKR-AM,,Kalibo (akl),11.716667,122.35,,5,,10664,62,142,,2000-1500,1234567,,,49918,,, +1161,PHL,,DZMD-AM,,Daet (cmn),14.116667,122.933333,,5,,10476,60,142,,,,,,49915,,, +1161,CHN,,Wuxi RGD Xinwen,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,2130-1500,1234567,,,49885,,, +1161,PHL,,DYRD-AM,,Tagbilaran City (boh),9.633333,123.85,,5,,10947,62,143,,2100-1500,1234567,,,49919,,, +1161,CHN,,Guangdong RGD/Zhujiang JGD,,Taishan (GD),22.25,112.783333,,1,,9122,64,144,,,,,,36200356,,, +1161,TWN,,Feng Ming Kuangpo Tientai,,Kaohsiung (KHS),22.64255,120.29915,,1,,9534,58,145,,,,,,49925,,, +1161,KOR,,AFN Korea-Thunder AM,,Uijeongbu/Camp Red Cloud (gye),37.747611,127.026472,,0.25,,8491,44,148,,0000-2400,1234567,,,49912,,, +1161,PNG,,NBC R New Ireland,,Kavieng (nir),-2.583333,150.816667,,10,,13600,43,149,,,,,,49920,,, +1161,INS,id,R RON,,Ciputat/Gondrong (BT-tan),-6.191944,106.693056,,1,,11252,86,151,,,,,,35400065,,, +1161,PHL,,DXDS-AM Radyo Ukay,,Digos City (dvs),6.75,125.35,,1,,11306,63,151,,????-1400,1234567,,,49917,,, +1161,J,,NHK R 1,,Imakane (hok),42.416667,139.966667,,0.1,,8595,33,152,,0000-2400,1234567,,,49891,,, +1161,J,,NHK R 1,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,0000-2400,1234567,,,49900,,, +1161,J,,NHK R 1,,Odate (toh-aki),40.266667,140.566667,,0.1,,8831,34,153,,0000-2400,1234567,,,49898,,, +1161,J,,NHK R 1,,Towada (toh-aom),40.6,141.233333,,0.1,,8823,33,153,,0000-2400,1234567,,,49905,,, +1161,J,,JOGQ NHK1,,Toyohashi (chu-aic),34.766667,137.366667,,0.1,,9246,39,154,,0000-2400,1234567,,,49906,,, +1161,J,,NHK R 1,,Aizuwakamatsu (toh-fuk),37.483333,139.95,,0.1,,9083,36,154,,0000-2400,1234567,,,49887,,, +1161,J,,NHK R 1,,Fukuyamakinosyo (chg-hir),34.5,133.35,,0.1,,9094,42,154,,0000-2400,1234567,,,49889,,, +1161,J,,NHK R 1,,Ikeda (shi-tok),34.033333,133.816667,,0.1,,9161,42,154,,0000-2400,1234567,,,49890,,, +1161,J,,NHK R 1,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,0000-2400,1234567,,,49892,,, +1161,J,,NHK R 1,,Miyakonojo (kyu-miy),31.766667,131.083333,,0.1,,9251,45,154,,0000-2400,1234567,,,49894,,, +1161,J,,NHK R 1,,Nakatsugawa (chu-gif),35.483333,137.483333,,0.1,,9180,38,154,,0000-2400,1234567,,,49895,,, +1161,J,,NHK R 1,,Naruko (toh-miy),38.75,140.733333,,0.1,,8988,34,154,,0000-2400,1234567,,,49896,,, +1161,J,,NHK R 1,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,0000-2400,1234567,,,49897,,, +1161,J,,NHK R 1,,Saiki (kyu-oit),32.966667,131.916667,,0.1,,9176,44,154,,0000-2400,1234567,,,49901,,, +1161,J,,NHK R 1,,Shirotori (chu-gif),35.85,136.883333,,0.1,,9119,39,154,,0000-2400,1234567,,,49903,,, +1161,J,,NHK R 1,,Shobara (chg-hir),34.85,133.033333,,0.1,,9046,42,154,,0000-2400,1234567,,,49902,,, +1161,J,,NHK R 1,,Toyooka (kns-hyo),35.533333,134.833333,,0.1,,9061,40,154,,0000-2400,1234567,,,49907,,, +1161,J,,NHK R 1,,Tsunan (chu-nii),37.033333,138.683333,,0.1,,9077,37,154,,0000-2400,1234567,,,49908,,, +1161,J,,NHK R 1,,Ueno (kns-mie),34.75,136.133333,,0.1,,9194,40,154,,0000-2400,1234567,,,49909,,, +1161,J,,NHK R 1,,Yusuhara (shi-koc),33.383333,132.933333,,0.1,,9183,43,154,,0000-2400,1234567,,,49910,,, +1161,J,ja,NHK R 1,,Futaba,34.5,134,,0.1,,9124,41,154,,,,,,31400077,,, +1161,J,ja,NHK R 1,,Matsumae,34.5,134,,0.1,,9124,41,154,,,,,,31400076,,, +1161,J,,NHK R 1,,Atami (chu-shi),35.083333,139.083333,,0.1,,9286,37,155,,0000-2400,1234567,,,49888,,, +1161,J,,NHK R 1,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,0000-2400,1234567,,,49899,,, +1161,J,,NHK R 1,,Tanabe (kns-wak),33.75,135.4,,0.1,,9259,41,155,,0000-2400,1234567,,,49904,,, +1161,AUS,en,5PA ABC Southeast SA,,Naracoorte (SA),-36.940472,140.671139,,10,,16098,83,157,,0000-2400,1234567,,,49880,,, +1161,AUS,en,4FC,,Maryborough/Dundathu (QLD),-25.463653,152.729317,,2,,15923,57,164,,0000-2400,1234567,17,,49879,,, +1161,NZL,mi,2XM Te Upoko o Te Ika,,Wellington/Titahi Bay (WGN),-41.100556,174.847778,,5,,18509,40,168,,,,,,49914,,, +1161,AUS,en,7FG ABC Northern Tasmania,,Fingal (TAS),-41.688972,147.875778,,1,,16911,84,170,,0000-2400,1234567,,,49878,,, +1165,UKR,,HC,b,Khmelnytskyi (KM),49.354167,26.958333,,0.025,,1473,94,88,,,,,,85874,,, +1165,UKR,,HM,b,Khmelnytskyi (KM),49.354167,26.958333,,0.025,,1473,94,88,,,,,U720 ,Cont ID,85875,, +1170,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.410556,28.521111,,800,064 244,1489,76,43,,0400-0700,1234567,9996,,1043,,, +1170,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.410556,28.521111,,800,064 244,1489,76,43,,1500-1600,1234567,9996,,1043,,, +1170,BLR,de,BR R Belarus,,Sasnovy (MA),53.410556,28.521111,,800,064 244,1489,76,43,,1700-1900,1234567,9996,,1043,,, +1170,BLR,pl,BR R Belarus,,Sasnovy (MA),53.410556,28.521111,,800,064 244,1489,76,43,,1600-1700,1234567,9996,,1043,,, +1170,RUS,ar,Voice of Russia,,Tbilisskaya/RV680 (KD),45.477306,40.094922,,1200,200,2549,93,52,ME,1600-2100,1234567,9997,,1050,,, +1170,SVN,,R Slovenia Int.,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,2300-0500,1234567,9997,,1052,,, +1170,SVN,it,R Capodistria,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,0500-2300,1234567,9997,,1052,,, +1170,G,en,Gold,,Ipswich/Foxhall Heath (EN-SFK),52.05525,1.226278,,0.28,,354,271,66,,0000-2400,1234567,9983,,1044,,, +1170,G,en,Swansea Sound,,Swansea/Winsh-wen (WA-SWA),51.653361,-3.907167,,0.58,,709,270,66,,0000-2400,1234567,0,,1045,,, +1170,G,en,Magic 1170 AM,,Stockton-on-Tees (EN-DUR),54.588667,-1.349778,,0.32,,584,301,68,,0000-2400,1234567,9985,,1046,,, +1170,G,en,Signal 2,,Stoke-on-Trent/Sideway (EN-SFS),52.98775,-2.185417,,0.2,,589,283,70,,0000-2400,1234567,9988,,1047,,, +1170,G,en,Gold,,Portsmouth/Farlington Marshes (EN-HPS),50.842444,-1.025,,0.12,,534,258,72,,0000-2400,1234567,,,1048,,, +1170,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400057,,, +1170,IRN,fa,IRIB R Iran,,Semnan (smn),35.5445,53.357878,,50,,4101,98,81,,0000-2400,1234567,,,1801,,, +1170,PAK,,PBC R Pakistan/NBS News,,Peshawar/Pabbi (kpk),34.007,71.831194,,100,,5473,85,92,,0200-0400,1234567,,,31500004,,, +1170,PAK,,PBC R Pakistan/NBS News,,Peshawar/Pabbi (kpk),34.007,71.831194,,100,,5473,85,92,,1300-1900,1234567,,,31500004,,, +1170,USA,,WWVA,,Wheeling (WV),40.101944,-80.867222,,50,,6444,296,105,,,,0,,43439,,, +1170,ALS,,KJNP,,North Pole (AK),64.759444,-147.323889,,21,,6825,348,112,,0000-2400,1234567,3,,38681,,, +1170,ALS,,KJNP,,North Pole (AK),64.759444,-147.323889,,21,,6825,348,112,,????-0810,1234567,3,,38681,,, +1170,USA,en,WFPB,,Orleans (MA),41.78,-70.01,,1,140,5638,290,113,,1200-2400,1234567,,,41429,,, +1170,USA,,WDIS,,Norfolk (MA),42.092222,-71.303611,,1,,5698,292,114,,,,,,20016011,,, +1170,CHN,zh,CNR 1,,Ji'an/JXTS802 (JX),26.828181,114.977453,,600,,8844,59,115,,2025-1805,1234567,,,36201254,,, +1170,USA,,WCTF,,Vernon (CT),41.868611,-72.484444,,1,,5789,292,115,,,,,,41096,,, +1170,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.82,126.863056,,500,,8663,46,116,J,1100-1300,1234567,,,49945,,, +1170,KOR,ko,HLSR KBS Hanminjok Bangsong 2,,Gimje=Kimjae (jeb),35.82,126.863056,,500,,8663,46,116,,1400-1000,1234567,,,49945,,, +1170,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.82,126.863056,,500,,8663,46,116,FE,1000-1100,1234567,,,49945,,, +1170,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.82,126.863056,,500,,8663,46,116,FE,1300-1400,1234567,,,49945,,, +1170,USA,es,WCXN,,Claremont (NC),35.726111,-81.147778,,7.7,,6803,292,116,,,,,,41113,,, +1170,CHN,zh,Gansu RGD Nongcun,,Zhangye (GS),38.931111,100.476944,,10,,6948,61,117,,,,,,36201261,,, +1170,USA,,KFAQ,,Tulsa (OK),36.146389,-95.807222,,50,,7658,302,117,,,,3,,38373,,, +1170,USA,,WCLN,,Clinton (NC),35.0225,-78.349444,,5,,6680,290,117,,,,,,41028,,, +1170,USA,,WWLE,,Cornwall (NY),41.44,-74.073611,,0.8,,5920,293,117,,,,,,43398,,, +1170,USA,en,WDEK,,Lexington (SC),33.972222,-81.277778,,10,,6951,291,117,,1200-2400,1234567,,,42164,,, +1170,CHN,zh,CNR 1,,Oroqen=Elunchun/NMTS051 (NM),50.583333,123.716667,,10,,7170,39,119,,2025-1805,1234567,,,36201258,,, +1170,USA,,WLBH,,Mattoon (IL),39.518056,-88.370833,,5,,6943,300,119,,,,,,42132,,, +1170,USA,,WWTR,,Bridgewater (NJ),40.560278,-74.589444,,0.6,,6017,292,119,,,,9968,,43437,,, +1170,AGL,pt,RNA Em. Prov. do Huambo,,Huambo (hua),-12.776783,15.855181,,10,,7272,170,120,,0300-2200,1234567,,,2027,,, +1170,BGD,,Bangladesh Betar,,Dhaka C/Kallyanpur (dha),23.780556,90.357,,10,,7541,79,122,,0900-1100,1234567,,,49931,,, +1170,BGD,,R Metrowave,,Dhaka C/Kallyanpur (dha),23.780556,90.357,,10,,7541,79,122,,0130-0430,1234567,,,49931,,, +1170,BGD,,R Metrowave,,Dhaka C/Kallyanpur (dha),23.780556,90.357,,10,,7541,79,122,,0600-0900,1234567,,,49931,,, +1170,CUB,es,R Trinchera,,Mais (gu),20.244444,-74.152778,,10,,7610,276,123,,,,,,31600077,,, +1170,HTI,,R Soleil,,Truittier (Port-au-Prince) (oue),18.616667,-72.333333,,10,,7623,273,123,,,,,,35655,,, +1170,USA,,WFDL,,Waupun (WI),43.641667,-88.722778,,1,,6636,303,123,,,,,,41368,,, +1170,USA,,KJOC,,Davenport (IA),41.389167,-90.516667,,1,,6918,303,126,,,,7,,38682,,, +1170,USA,,WDFB,,Junction City (KY),37.596111,-84.838611,,1,,6884,296,126,,,,,,41155,,, +1170,VEN,,YVKW Celestial 1170 AM,,Maiquetia (vgs),10.6,-66.95,,10,,7946,263,126,,1000-0400,1234567,,,51689,,, +1170,SWZ,en,TWR Africa,,Mpangela Ranch (man),-26.338056,31.598333,,50,,9062,157,127,SAf,1700-2105,1234567,,,2475,,, +1170,SWZ,zu,TWR Africa,,Mpangela Ranch (man),-26.338056,31.598333,,50,,9062,157,127,SAf,1630-1700,1234567,,,2475,,, +1170,CHN,,Binzhou JGD,,Binzhou (SD),37.366667,118.016667,,10,,8071,51,128,,,,,,49932,,, +1170,USA,en,KPUG,,Bellingham (WA),48.776111,-122.439167,,5,,7799,327,128,,,,2,,39176,,, +1170,CHN,,Zaozhuang RGD,,Zaozhuang (SD),34.841667,117.578222,,10,,8273,53,130,,,,,,49933,,, +1170,CHN,zh,Gansu RGD Nongcun,,Lanzhou/GSTS535 (GS),36.086389,103.846111,,1,,7382,61,131,,,,,,36201255,,, +1170,USA,,WKFL,,Bushnell (FL),28.708611,-82.126667,,1,,7435,288,131,,,,,,42004,,, +1170,USA,,WSOS,,St. Augustine Beach (FL),29.918056,-81.390556,,0.71,,7288,288,131,,,,,,43046,,, +1170,USA,en,WGMP,,Montgomery (AL),32.454444,-86.289167,,1,,7392,293,131,,,,,,40646,,, +1170,USA,en,WQHC,,Hanceville (AL),34.074444,-86.778889,,0.85,,7289,295,131,,1200-2400,1234567,,,43491,,, +1170,CHN,,Hefei RGD Story,,Hefei/Sanshitou (AH),31.987667,117.329028,,10,,8515,55,132,,,,,,36200437,,, +1170,CHN,zh,Nanjing RGD Chengshi Guanli Guangbo,,Nanjing/Gulizhen (JS),31.862533,118.671722,,10,,8601,54,132,,2130-1600,1234567,,,36200357,,, +1170,CLM,es,HJE74 Meridiano 70,,Arauca (ara),7.016667,-70.75,,10,,8517,264,132,,,,,,37541,,, +1170,CLM,es,HJNW Caracol,,Cartagena (bol),10.433333,-75.516667,,10,,8544,270,132,,0000-2400,1234567,4,,37599,,, +1170,CLM,es,HJPB,,Valledupar (ces),10.716667,-73.283333,,7.5,,8367,269,132,,,,,,37619,,, +1170,DOM,,HIJS Cadena Espacial,,Azua de Compostela (azu),18.433333,-70.716667,,1,,7529,272,132,,,,,,52243,,, +1170,B,pt,ZYJ598 Rdio Difusora de Mossor,,Mossor (RN),-5.207222,-37.313889,,1,,7590,228,133,,,,,,36901946,,, +1170,CHN,zh,Nantong RGD Jiaotong,,Nantong (JS),31.855833,121.010556,,10,,8729,52,133,,,,,,36201257,,, +1170,CLM,es,HJGA,,Tunja (boy),5.566667,-73.333333,,10,,8820,265,133,,,,,,37449,,, +1170,CLM,es,HJKW R Nutibara,,Medelln (ant),6.266667,-75.566667,,10,,8910,268,133,,,,98,,47307,,, +1170,THA,th,Sor. Thor. Ror. 8,,Phitsanulok/Tha Chang (psl),16.955472,100.116778,,10,,8776,77,133,,2300-1400,1234567,,,49953,,, +1170,CHN,,Guangzhou RGD Feiyang 88,,Guangzhou (GD),23.183333,113.233333,,10,,9066,63,134,,2100-1600,1234567,,,36200365,,, +1170,CHN,zh,CNR 1,,Huizhou (GD),23.069167,114.4125,,10,,9147,62,134,,2025-1805,1234567,,,36200438,,, +1170,CLM,es,HJBX Ondas del Meta,,Villavicencio (met),4.15,-73.633333,,10,,8964,265,134,,,,34,,35901576,,, +1170,USA,en,WRPM,,Poplarville (MS),30.815278,-89.506667,,1,,7730,294,134,,1300-0100,1234567,,,42907,,, +1170,B,pt,ZYJ273 Rdio Atalaia,,Curitiba (PR),-25.356944,-49.05,,20,,10156,228,135,,,,,,36901947,,, +1170,THA,th,Sor. Thor. Ror. 4,,Chanthaburi (ctb),12.607778,102.098056,,10,,9287,78,135,,2200-1700,1234567,,,49952,,, +1170,USA,,KJJD,,Windsor (CO),40.462778,-104.913056,,1,,7782,311,135,,,,,,38670,,, +1170,USA,en,WPQJ562,,East Hampton (NY),40.966667,-72.183333,,0.01,,5835,291,135,,,,,,20010623,,, +1170,EQA,,HCJM4,,Esmeraldas (esm),0.933333,-79.683333,,10,,9659,267,136,,,,,,36988,,, +1170,USA,hi,KLOK,i,San Jose (CA),37.311389,-121.816111,,5,,8880,321,136,,,,0,,52621,,, +1170,VTN,,VOV An Giang R,,Long Xuyn (agg),10.447644,105.328567,,10,,9692,77,136,,0330-0545,1234567,42,,49955,,, +1170,VTN,,VOV An Giang R,,Long Xuyn (agg),10.447644,105.328567,,10,,9692,77,136,,0900-1200,1234567,42,,49955,,, +1170,VTN,,VOV An Giang R,,Long Xuyn (agg),10.447644,105.328567,,10,,9692,77,136,,2200-0015,12345..,42,,49955,,, +1170,VTN,,VOV An Giang R,,Long Xuyn (agg),10.447644,105.328567,,10,,9692,77,136,,2200-0145,.....67,42,,49955,,, +1170,NCG,,R Maxima,,Masaya (msy),11.933333,-86.066667,,5,,9131,279,137,,,,,,52226,,, +1170,PTR,,WLEO,,Ponce (PR),17.981111,-66.613611,,0.2,,7287,268,137,,0000-2400,1234567,,,42154,,, +1170,SLV,,YSVE,,San Salvador (ssl),13.716667,-89.066667,,5,,9176,283,137,,,,,,45336,,, +1170,B,pt,ZYH284 Rdio Guaranpolis,,Maus (AM),-3.398294,-57.70985,,2.5,,8589,247,138,,,,,,36901949,,, +1170,B,pt,ZYL269 Rdio Sociedade Oliveira,,Oliveira (MG),-20.753272,-44.77185,,5,,9495,227,138,,,,95,,36901939,,, +1170,CHN,zh,Xuancheng RGD,,Xuancheng (AH),30.95,118.75,,3,,8688,54,138,,2155-1500,1234567,,,36200441,,, +1170,GTM,,TGRL R Cadena Landivar,,Quetzaltenango (qzt),14.816667,-91.5,,5,,9240,285,138,,0900-0300,1234567,,,40531,,, +1170,USA,en,WAVS,,Davie (FL),26.0775,-80.2175,,0.25,,7528,284,138,,,,,,40778,,, +1170,B,pt,ZYK569 Rdio Bandeirantes,,Campinas (SP),-22.875611,-47.0709,,5,,9817,228,139,,,,,,36901944,,, +1170,USA,,KCBQ,,San Diego (CA),32.895,-116.925278,,2.9,,9079,315,139,,,,,,38130,,, +1170,B,pt,ZYJ363 Rdio Colmia,,Mandaguau (PR),-23.378889,-52.031111,,5,,10123,231,140,,,,,,36901932,,, +1170,PHL,tl,DYSL-AM Radyo Ng Bayan,,Sogod/S.Leyte State Univ. (lyt),10.393611,124.980556,,10,,10944,61,140,,,,,,50611,,, +1170,MEX,es,XECD-AM R Oro,,Puebla (pue),19.10955,-98.222408,,2.5,,9294,293,141,,,,,,43829,,, +1170,MEX,es,XEUVA-AM,,Aguascalientes (agu),21.887125,-102.333556,,2.5,,9298,298,141,,,,,,44936,,, +1170,PHL,tl,DXMR-AM Radyo ng Bayan,,Zamboanga City (zds),6.933333,122.1,,10,,11090,65,141,,,,,,49950,,, +1170,CHN,,Lu'an RGD,,Lu'an (AH),31.75,116.483333,,1,,8489,55,142,,2155-1505,1234567,,,36200439,,, +1170,CHN,zh,CNR 1,,Shanghai/SHTS806 (SH),31.199444,121.416944,,1,,8811,52,143,,1000-1805,1234567,,,36201259,,, +1170,CAN,en,CBRH,,New Hazelton (BC),55.250556,-127.577222,,0.04,,7349,333,144,,,,,,20109156,,, +1170,CHN,zh,CNR 1,,Dabu (GD),22.366667,113.45,,1,,9152,63,144,,2025-1805,1234567,,,36200435,,, +1170,CHN,zh,CNR 1,,Donghai (GD),22.95,115.633333,,1,,9231,61,144,,2025-1805,1234567,,,36200436,,, +1170,CHN,zh,CNR 1,,Lufeng (GD),22.944444,115.65,,1,,9233,61,144,,2025-1805,1234567,,,36201256,,, +1170,CHN,zh,CNR 1,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,1,,9229,58,144,,2025-1805,1234567,,,36201260,,, +1170,CHN,zh,CNR 1,,Yangjiang (GD),21.827833,111.953611,,1,,9108,65,144,,2025-1805,1234567,,,36200442,,, +1170,CHN,zh,CNR 1,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,2025-1805,1234567,,,36200443,,, +1170,CHN,zh,CNR 1,,Zhaoqing (GD),23.039167,112.501667,,1,,9034,63,144,,2025-1805,1234567,,,36201262,,, +1170,CHN,zh,CNR 1,,Zhongshan (GD),22.566667,113.383333,,1,,9130,63,144,,2025-1805,1234567,,,36201263,,, +1170,CLM,,HJJY,,Guamo (tol),4.016667,-74.966667,,1,,9067,266,144,,,,,,37519,,, +1170,CLM,es,HJJE,,Tulu (val),4.083333,-76.2,,1,,9145,267,144,,,,,,37505,,, +1170,MEX,es,XEIB-AM La Primera,,Caborca (son),30.708333,-112.150833,,1,,9045,310,144,,,,,,44157,,, +1170,MEX,es,XEZS-AM R Hit,,Coatzacoalcos (vcz),18.105911,-94.448933,,1,,9143,290,144,,,,,,45155,,, +1170,B,pt,ZYJ334 Rdio Entre Rios,,Santo Antnio do Sudoeste (PR),-26.066667,-53.725,,2.5,,10467,231,145,,,,,,36901938,,, +1170,B,pt,ZYJ498 Rdio Nova Bom Jesus,,Bom Jesus do Itabapoana (RJ),-21.153167,-41.668244,,1,,9383,224,145,,,,25,,36902674,,, +1170,TWN,,Taiwan Guangbo Gongsi,,Guanhsi=Kuanshi (TY),24.878083,121.301858,,1,,9385,56,145,,0000-2400,1234567,,,49954,,, +1170,URG,es,CX32 Rmundo,,Montevideo (mo),-34.832222,-56.211667,,5,,11414,228,145,,1100-0300,1234567,,,36813,,, +1170,ARG,,LRA29 R Nacional,,San Lus (sl),-33.318739,-66.359492,,5,,11825,236,146,,1000-0500,1234567,,,39949,,, +1170,EQA,,HCJV5,,Riobamba (chi),-1.633333,-78.616667,,1,,9812,265,146,,,,,,36996,,, +1170,EQA,,HCUR6,,Latacunga (cot),-0.933333,-78.566667,,1,,9747,265,146,,,,,,37155,,, +1170,MEX,es,XEMDA-AM La Ley,,Monclova (coa),26.925278,-101.441944,,0.5,,8793,300,146,,,,,,44366,,, +1170,EQA,,HCAH3,,Trebol (oro),-3.633333,-79.583333,,1,,10053,265,147,,,,,,36843,,, +1170,EQA,,HCLA2,,Guayaquil (gua),-2.2,-79.866667,,1,,9947,266,147,,,,,,37002,,, +1170,B,pt,ZYK380 Rdio Pitangueira AM,,Itaqui (RS),-29.147222,-56.481667,,1.5,,10902,232,148,,,,,,36901937,,, +1170,PRU,,OCX4Y R COSAT,,Satipo (jun),-11.566667,-74.666667,,1,,10421,256,148,,,,,,40434,,, +1170,B,pt,ZYH473 Rdio Jornal de Eunpolis,,Eunpolis (BA),-16.374389,-39.614983,,0.25,,8811,225,149,,,,,,36901943,,, +1170,CAN,en,CBUX,,Port Alice (BC),50.4275,-127.478333,,0.04,,7817,331,149,,,,,,20109155,,, +1170,MEX,es,XERT-AM Ke Buena,,Reynosa (tam),26.053333,-98.291389,,0.25,,8682,297,149,,,,,,44713,,, +1170,PRU,,OAZ3K,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000085,,, +1170,USA,en,KRUE,,Waseca (MN),44.044722,-93.385556,,0.005,,6865,306,149,,,,,,39118,,, +1170,B,pt,ZYK213 Rdio Difusora AM-A Voz de Bage,,Bag (RS),-31.316667,-54.1,,1,,10979,229,150,,,,,,36901948,,, +1170,B,pt,ZYL327 Rdio Vanguarda,,Ipatinga (MG),-19.468533,-42.576344,,0.25,,9261,226,151,,,,,,36901945,,, +1170,B,pt,ZYL336 Rdio Cidade,,Arax (MG),-19.594578,-46.908594,,0.25,,9491,229,151,,,,,,36901941,,, +1170,MEX,es,XEJTF-AM Prisma Musical,,Zacoalco de Torres (jal),20.248719,-103.591589,,0.25,,9523,298,151,,,,,,44225,,, +1170,MEX,es,XERLK-AM,,Atlacomulco (mex),19.795,-99.871667,,0.25,,9336,295,151,,,,,,44686,,, +1170,ARG,,R Mi Pais,,Hurlingham (ba),-34.6,-58.633333,,1,,11518,230,152,,,,,,51831,,, +1170,B,pt,ZYH205 Rdio Difusora,,Feij (AC),-8.166111,-70.346506,,0.25,,9834,255,152,,,,,,36901935,,, +1170,B,pt,ZYL234 Rdio Clube de Fronteira,,Fronteira (MG),-20.27695,-49.189606,,0.25,,9676,231,152,,,,,,36901940,,, +1170,INS,id,PM3BID Dios R/R Paksi,,Bandung (JB-ban),-6.95,107.566667,,1,,11378,85,152,,,,75,,51439,,, +1170,USA,,KJXX,,Jackson (MO),37.381944,-89.653333,,0.005,,7193,299,152,,,,,,39569,,, +1170,MEX,es,XEFEM-AM R Manantial,,Hermosillo (son),29.075,-110.958889,,0.1,,9134,308,154,,,,,,45090,,, +1170,B,pt,ZYK207 Itapu AM,,Santo Antnio da Patrulha (RS),-29.849444,-50.523056,,0.25,,10660,227,155,,,,,,36901936,,, +1170,B,pt,ZYK359 Rdio Uirapur AM,,Passo Fundo (RS),-28.2425,-52.406389,,0.25,,10603,229,155,,,,,,36901942,,, +1170,CHL,,CD117 R Natales,,Puerto Natales (MA),-51.716667,-72.516667,,1,,13690,227,159,,1200-0400,1234567,,,35856,,, +1170,INS,id,R Suara Nusa Bahagia,,Jayapura (PA-jyp),-2.533333,140.7,,0.6,,13077,54,159,,,,,,35400066,,, +1170,AUS,en,2CH Easy 1170,,Sydney/Homebush Bay (NSW),-33.840319,151.077883,,5,,16549,68,162,,0000-2400,1234567,9934,,49929,,, +1170,USA,en,KYET,,Golden Valley (AZ),35.213056,-114.113889,,0.001,,8723,314,173,,,,,,39846,,, +1175,UKR,,DO,b,Dobrushin,45.395833,33.375,,0.025,,2098,100,94,,,,2,L1010 U1014 ,IDx2 + 20 gap,85877,, +1175,RUS,,BA,b,Bagayeksy,47.3125,40.375,,0.025,,2476,89,98,,,,,,85876,,, +1179,D,de,ARD Info Nacht,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0000-0500,1234567,9970,,2000002,,, +1179,D,de,ARD Info Nacht,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2200-2400,1234567,9970,,2000002,,, +1179,D,de,Antenne Saar,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1400-1500,.....67,9970,,2000002,,, +1179,D,de,Antenne Saar,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2100-2200,....56.,9970,,2000002,,, +1179,D,de,Phoenix,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1100-1300,......7,9970,,2000002,,, +1179,D,de,Phoenix,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2115-2200,1234...,9970,,2000002,,, +1179,D,de,SR2 KulturR,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1130-1200,123456,9970,,2000002,,, +1179,D,de,SR2 KulturR,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1600-1630,.....67,9970,,2000002,,, +1179,D,de,SR2 KulturR,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1630-1700,12345..,9970,,2000002,,, +1179,D,de,SR2 KulturR,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1900-2130,......7,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0500-0530,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0700-0730,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0700-0800,.....67,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0800-0830,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0900-0930,123456,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1000-1030,1234567,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1100-1130,123456,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1200-1230,123456,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1300-1330,1234567,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1400-1430,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1500-1530,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1600-1630,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1630-1700,.....67,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1800-1830,1234567,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1900-2000,.....6.,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2100-2115,1234...,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0500-0700,.....67,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0730-0800,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0800-0900,.....67,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0830-0900,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0900-1000,......7,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0930-1000,123456,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1030-1100,1234567,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1230-1300,123456,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1330-1400,1234567,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1430-1500,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1500-1600,.....67,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1530-1600,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1700-1800,1234567,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1830-1900,.....67,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1830-2100,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2000-2100,.....6.,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2130-2200,......7,9970,,2000002,,, +1179,ROU,ro,SRR R Romnia Actualităţi,,Bacău/Galbeni (BC),46.755722,26.847778,,200,,1587,104,50,,0000-2400,1234567,11,,1061,,, +1179,E,es,SER,,Valncia/Camino Rec d'Orellana (VAL-V),39.413706,-0.359986,,50,,1505,203,55,,0000-2400,1234567,993,,1055,,, +1179,E,es,SER,,Logroo (RIO-LO),42.483531,-2.506247,,10,,1262,216,60,,0000-2400,1234567,,,1056,,, +1179,ROU,ro,SRR R Romnia Actualităţi,,Reşiţa (CS),45.288378,21.867006,,7,,1360,118,62,,0000-2400,1234567,,,1060,,, +1179,CNR,es,SER,,Santa Cruz de Tenerife/EAJ43 (STC-TF),28.451667,-16.280556,,25,,3231,224,75,,0000-2400,1234567,,,1054,,, +1179,IRQ,,Voice of Iraq,,Baghdad (bgh),33.317072,44.2694,,30,,3669,110,79,,0400-1800,1234567,,,1059,,, +1179,EGY,ar,ERTU Al-Barnameg al-Aam,,Qena=Qina=Ena (qna),26.185111,32.737111,,10,,3628,132,83,,0300-2400,1234567,,,1840,,, +1179,G,,R BGWS (LPAM),,Farnborough (EN-HPS),51.288889,-0.75,,0.001,,502,262,92,,,,,,2800034,,, +1179,IRN,fa,IRIB R Iran,,Chah Bahar (sib),25.481778,60.537972,,50,,5378,102,94,,0000-2400,1234567,26,,10800019,,, +1179,CHN,zh,Karamay RGD,,Karamay/XJTS7605 (XJ),45.606111,84.845833,,10,,5499,64,102,,2355-1800,1234567,,,49959,,, +1179,IND,,AIR West,,Rewa (MP),24.522097,81.423569,,20,,6876,85,113,,0025-0430,1234567,,,49963,,, +1179,IND,,AIR West,,Rewa (MP),24.522097,81.423569,,20,,6876,85,113,,0630-0930,1234567,,,49963,,, +1179,IND,,AIR West,,Rewa (MP),24.522097,81.423569,,20,,6876,85,113,,1200-1740,1234567,,,49963,,, +1179,CHN,zh,Hubei RGD Chutian Xinwen,,Wuhan/Dadongcun (HU),30.456111,114.036667,,100,,8465,58,122,,1955-1705,1234567,,,49961,,, +1179,MOZ,pt,Em Prov de Zambezia,,Quelimane (zbz),-18.029508,36.81965,,50,,8336,150,123,,0000-2210,......7,,,2476,,, +1179,MOZ,pt,Em Prov de Zambezia,,Quelimane (zbz),-18.029508,36.81965,,50,,8336,150,123,,0000-2400,.....6.,,,2476,,, +1179,MOZ,pt,Em Prov de Zambezia,,Quelimane (zbz),-18.029508,36.81965,,50,,8336,150,123,,0250-2210,1234...,,,2476,,, +1179,MOZ,pt,Em Prov de Zambezia,,Quelimane (zbz),-18.029508,36.81965,,50,,8336,150,123,,0250-2400,....5..,,,2476,,, +1179,J,ja,JOOR MBS Mainichi Hoso,,Osaka/Takaishi (kns-osk),34.518464,135.443558,,50,,9186,40,127,,0000-2400,1234567,9999,,49967,,, +1179,THA,th,Sathaanii Witthayu 914 Kao-Neung-Sii,,Chiang Rai/Mae Chan (cri),20.10975,99.886528,,10,,8487,75,132,,2200-1330,1234567,,,49977,,, +1179,THA,th,Sor. Sor. Sor.,,Bangkok/Lat Phrao (bmp),13.8,100.591667,,10,,9082,78,134,,0000-2400,1234567,9959,,49976,,, +1179,CHN,,Shuangyashan RGD,,Shuangyashan (HL),46.533333,131.083333,,1,,7849,37,135,,,,,,49960,,, +1179,INS,id,RRI Pro-1,,Padang/Gunung Sariak (SB-pad),-0.884722,100.405278,,10,,10358,87,138,,0955-1700,1234567,,,49964,,, +1179,INS,id,RRI Pro-1,,Padang/Gunung Sariak (SB-pad),-0.884722,100.405278,,10,,10358,87,138,,2155-0130,1234567,,,49964,,, +1179,PHL,,DYSB-AM Super Radyo,,Bacolod City (noc),10.683333,122.966667,,10,,10796,62,140,,????-1500,1234567,,,49971,,, +1179,TWN,,Kuo Sheng Kuangpo Tientai,,Erhlin (CH),24.083333,120.533333,,2.5,,9415,57,141,,,,,,49978,,, +1179,CHN,,Yangzhou RGD,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,1,,8589,53,142,,2150-1530,1234567,,,49962,,, +1179,PHL,,DYCX-AM Super Radyo,,San Jose (atq),10.733333,121.933333,,5,,10729,63,142,,,,,,49974,,, +1179,PHL,,DXYK-AM Super Radyo,,Butuan City (agn),8.933333,125.516667,,5,,11113,61,144,,0000-2400,1234567,,,49972,,, +1179,J,,MBS, Mainichi Hoso,,Kyoto (kns-kyo),34.983333,135.783333,,0.3,,9156,40,149,,0000-2400,1234567,,,49966,, +1179,PHL,,DZRS-AM,,Sorsogon City (sor),12.966667,124,,1,,10646,60,149,,2100-1300,1234567,,,49975,,, +1179,INS,id,Happy R,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400139,,, +1179,PHL,,DXRC-AM Super Radyo,,Koronadal=Marbel (sco),6.5,124.85,,1,,11299,63,151,,,,,,49973,,, +1179,VUT,,R Vanuatu,,Luganville (Espiritu Santo) (sam),-15.5,167.25,,10,,15606,30,156,,1900-1000,......7,,,49979,,, +1179,VUT,,R Vanuatu,,Luganville (Espiritu Santo) (sam),-15.5,167.25,,10,,15606,30,156,,1900-1115,123456,,,49979,,, +1179,AUS,en,3RPH,,Melbourne/Lower Plenty (VIC),-37.741344,145.112239,,5,,16455,80,161,,0000-2400,1234567,,,49957,,, +1179,NZL,,Ruia Mai,,Auckland/Henderson (AUK),-36.844383,174.631153,,5,,18083,33,167,,,,,,49968,,, +1179,NZL,,Southern Star,,Dunedin (OTA),-45.883333,170.583333,,1,,18673,65,176,,,,,,49969,,, +1180,UKR,,PL,b,Poltava / Suprunovka (PO),49.5625,34.375,,0.025,,1972,87,93,,,,,,85878,,, +1180,UKR,,PO,b,Poltava / Suprunovka (PO),49.5625,34.375,,0.025,,1972,87,93,,,,,U1054 7.5s,ID+3 gap,85879,, +1180,USA,,WHAM,i,Rochester/Brook Road (NY),43.081944,-77.725,,50,,6027,296,100,,,,0,,41595,,, +1180,CUB,es,R Reloj,,Mart (ma),22.995967,-80.910167,,200,,7833,283,112,,,,,,31600101,,, +1180,USA,,WXLA,,Dimondale (MI),42.650278,-84.580278,,10,,6472,300,112,,,,,,43476,,, +1180,USA,en,WWRX,,Hope Valley (RI),41.526667,-71.743056,,1.8,,5766,291,112,,,,,,41051,,, +1180,USA,en,WLTT,,Carolina Beach (NC),34.150833,-78.08,,10,,6732,289,114,,1200-2400,1234567,,,42422,,, +1180,USA,,WJNT,,Pearl (MS),32.295278,-90.115,,50,,7643,296,116,,,,,,41906,,, +1180,CUB,es,R Rebelde,,Cacocm (ho),20.736878,-76.3294,,50,,7716,278,117,,,,,,31600082,,, +1180,USA,,WVLZ,,Knoxville (TN),35.98,-83.819167,,10,,6950,294,117,,,,72,,43309,,, +1180,USA,es,R Mart/VOA,,Marathon (FL),24.699389,-81.088528,,50,185,7701,284,117,,,,9,,52574,,, +1180,CUB,es,R Rebelde,,Camagey/CTOM3 (cm),21.333333,-77.866667,,50,,7769,279,118,,,,,,31600054,,, +1180,CUB,es,R Rebelde,,Chambas/CTOM1 (ca),22.374872,-78.885044,,50,,7750,281,118,,,,,,31600056,,, +1180,USA,,KYES,,Baxter (MN),45.361944,-94.299167,,5,,6808,308,118,,,,,,20000009,,, +1180,USA,,WFYL,,King of Prussia (PA),40.135,-75.390833,,1,,6099,292,118,,1200-2400,1234567,,,41465,,, +1180,CUB,es,R Rebelde,,Guanabacoa/CTOM1 (ch),23.108225,-82.284803,,50,,7915,284,119,,,,0,,52591,,, +1180,CUB,es,R Rebelde,,Coln (ma),22.733281,-80.918831,,25,,7856,282,122,,,,,,31600092,,, +1180,USA,,WZQZ,,Trion (GA),34.472778,-85.325278,,5,,7166,294,122,,,,,,43589,,, +1180,USA,en,KOFI,,Kalispell (MT),48.197778,-114.250833,,10,,7527,322,122,,,,2,,39059,,, +1180,USA,en,WFGN,,Gaffney (SC),35.049722,-81.645,,2.5,,6888,292,122,,1200-2400,1234567,,,41378,,, +1180,CUB,es,R Rebelde,,Cent Brasil (cm),21.833183,-77.963928,,10,,7734,280,124,,,,,,31600051,,, +1180,CUB,es,R Rebelde,,Victoria de las Tunas/CTOM3 (lt),20.937361,-76.995933,,10,,7744,278,124,,,,,,31600087,,, +1180,CUB,es,R Rebelde,,Sagua La Grande (vc),22.806986,-80.112372,,10,,7796,282,125,,,,,,31600120,,, +1180,CUB,es,R Rebelde,,Santa Clara/CTOM2 (vc),22.420144,-79.939294,,10,,7817,282,125,,,,,,31600071,,, +1180,VEN,,YVOR R Maturin,,Maturin (mgs),9.75,-63.166667,,10,,7764,260,125,,0900-0400,1234567,,,45413,,, +1180,CUB,es,R Rebelde,,Arroyo Arenas/CTOM2 (ch),23.05,-82.483333,,10,,7933,284,126,,,,,,31600043,,, +1180,CUB,es,R Rebelde,,Gines (my),22.807692,-82.018092,,10,,7923,283,126,,,,,,36472,,, +1180,CUB,es,R Rebelde,,Santa Cruz del Norte (my),23.146736,-81.948958,,10,,7889,283,126,,,,,,31600048,,, +1180,B,pt,ZYH889 Rdio Capital,,So Lus/Campo do Coroado (MA),-2.561806,-44.271217,,5,,7706,236,127,,,,,,36901966,,, +1180,CUB,es,R Rebelde,,Artemisa (ar),22.807056,-82.7663,,10,,7972,284,127,,,,,,36473,,, +1180,CUB,es,R Rebelde,,La Palma (pr),22.746561,-83.551156,,10,,8029,284,127,,,,,,31600105,,, +1180,CUB,es,R Rebelde,,Los Palacios (pr),22.653397,-83.224986,,10,,8016,284,127,,,,,,31600107,,, +1180,CUB,es,R Rebelde,,Sagua de Tnamo (ho),20.582531,-75.226036,,5,,7654,277,127,,,,,,36578,,, +1180,USA,,WLDS,,Jacksonville (IL),39.735,-90.197222,,1,,7033,301,127,,,,,,42147,,, +1180,VEN,,YVLQ LV de la Victoria Super Suave 11-80,,La Victoria (arg),10.183333,-67.366667,,10,,8010,263,127,,,,,,51690,,, +1180,CUB,es,R Rebelde,,Pinar del Ro/CTOM1 (pr),22.368153,-83.739372,,10,,8074,284,128,,,,,,31600103,,, +1180,CUB,es,R Rebelde,,Cienfuegos/Tulipn (cf),22.157414,-80.430478,,5,,7872,282,129,,,,,,31600065,,, +1180,CUB,es,R Rebelde,,Crdenas/CTOM2 (ma),23.033333,-81.2,,5,,7849,283,129,,,,9988,,31600095,,, +1180,CUB,es,R Rebelde,,La Jaiba (ma),23.024011,-81.59395,,5,,7876,283,129,,,,,,31600097,,, +1180,USA,en,KZOT,,Bellevue (NE),41.27,-95.786111,,1,,7225,306,129,,,,,,39845,,, +1180,CLM,es,HJGK,,Bucaramanga (sat),7.066667,-73.116667,,20,,8673,266,130,,,,,,37456,,, +1180,CUB,es,R Rebelde,,Baha Honda (pr),22.923986,-83.172664,,5,,7989,284,130,,,,,,31600112,,, +1180,VEN,,YVNJ R Petrolera,,Bachaquero (zul),10,-71.116667,,10,,8281,266,130,,0900-0700,1234567,,,45393,,, +1180,CTR,,TIPJ R Victoria,,Heredia (her),10,-84.116667,,20,,9167,277,131,,1100-0400,1234567,,,40598,,, +1180,CUB,es,R Rebelde,,Nueva Gerona (ij),21.861583,-82.805919,,5,,8055,283,131,,,,,,31600079,,, +1180,MEX,es,XERRIV-AM R.Quintana Roo,,Cozumel (qui),20.5,-86.941667,,10,,8445,285,131,,,,,,44624,,, +1180,CLM,,HJOV,,Neiva (hui),2.866667,-75.316667,,15,,9192,265,133,,,,,,37615,,, +1180,CUB,es,R Rebelde,,Mabujabo (gu),20.360681,-74.521503,,1,,7625,276,133,,,,,,31600076,,, +1180,CUB,es,R Rebelde,,Moa (ho),20.645583,-74.924033,,1,,7628,276,133,,,,,,36570,,, +1180,CLM,es,HJJT RCN,,Ibagu (tol),4.433333,-75.233333,,10,,9048,266,134,,,,,,37516,,, +1180,CUB,es,R Rebelde,,Banes (ho),20.94885,-75.725414,,1,,7657,277,134,,,,,,36575,,, +1180,CUB,es,R Rebelde,,Guantnamo/CTOM3 (gu),20.110272,-75.218842,,1,,7693,276,134,,,,,,31600074,,, +1180,CUB,es,R Rebelde,,Mayar Arriba (sc),20.418867,-75.536092,,1,,7689,277,134,,,,,,36561,,, +1180,CUB,es,R Rebelde,,Puerto Padre (lt),21.209139,-76.616003,,1,,7695,278,134,,,,,,31600086,,, +1180,GTM,,TGT R Sonora,,Ciudad de Guatemala (gut),14.516667,-90.616667,,10,,9209,284,134,,1100-0600,1234567,,,40545,,, +1180,PNR,,China Vision Panam,,Villa Lorena (pnm),9.041944,-79.5125,,10,,8938,272,134,,,,,,52337,,, +1180,PNR,es,HOU AM Original,,Los Algarrobos (vrg),8.108889,-81.016389,,10,,9122,273,134,,1100-0200,1234567,,,52336,,, +1180,USA,,KGOL,,Humble (TX),30.139167,-95.29,,3,,8143,298,134,,,,,,38505,,, +1180,USA,en,KERN,,Wasco-Greenacres (CA),35.571389,-119.323889,,10,,8936,318,134,,,,0,,38337,,, +1180,CUB,es,R Rebelde,,Ciego de vila/CTOM1 (ca),21.866892,-78.720875,,1,,7782,280,135,,,,,,31600057,,, +1180,CUB,es,R Rebelde,,Sancti Spritus/CTOM2 (ss),21.912044,-79.430931,,1,,7826,281,135,,,,,,36517,,, +1180,B,pt,ZYJ463 Rdio Mundial,,Rio de Janeiro/Ilha do Pontal (RJ),-22.828889,-43.1025,,10,,9617,225,136,,,,,,36901962,,, +1180,B,pt,ZYL203 Rdio Cultura,,Alfenas/Fazenda Vitoria (MG),-21.445331,-45.876361,,10,,9618,228,136,,,,34,,36901963,,, +1180,CUB,es,R Rebelde,,Cienfuegos (cf),22.135789,-80.448861,,1,,7875,282,136,,,,,,31600063,,, +1180,EQA,,HCLR1,,Quito (pic),-0.166667,-78.466667,,10,,9673,266,136,,,,,,37010,,, +1180,MEX,es,XEUBS-AM,,La Paz (bcs),24.102786,-110.315183,,10,,9560,305,136,,,,,,44893,,, +1180,CHL,,CB118 R Portales La primera de Chile,,Santiago (RM),-33.35,-70.666667,,50,,12077,239,137,,1030-0430,1234567,998,,35725,,, +1180,CLM,es,HJWA La Voz del Guaviare,,San Jos del Guaviare (guv),2.566667,-72.65,,5,,9037,263,137,,,,,,35901581,,, +1180,CUB,es,R Rebelde,,San Cristbal (pr),22.703156,-83.033047,,1,,7999,284,137,,,,,,31600108,,, +1180,USA,en,KLAY,,Lakewood (WA),47.15,-122.410556,,1,,7954,326,137,,,,1,,38776,,, +1180,CUB,es,R Rebelde,,Santa Luca (pr),22.67345,-83.943017,,1,,8062,285,138,,,,,,31600110,,, +1180,DOM,,HIBE R Mil,,Santo Domingo (sdo),18.516667,-69.866667,,0.25,,7464,271,138,,1000-0500,1234567,,,37218,,, +1180,MEX,es,XEFR-AM R Felicidad,,Mxico D.F/Isidro Fabela (dif),19.386419,-99.205889,,5,,9331,294,138,,,,,,44023,,, +1180,B,pt,ZYH280 Rdio Difusora do Amazonas,,Manaus (AM),-3.138033,-59.981328,,2.5,,8709,249,139,,,,,,36901960,,, +1180,PRU,es,OCU4K NSE R,,Lima/Puente Piedra (lim),-11.866667,-77.066667,,10,,10607,258,139,,,,,,37000112,,, +1180,B,pt,ZYI690 Rdio Bonsucesso,,Pombal (PB),-6.781422,-37.803017,,0.25,,7771,228,141,,,,,,36901954,,, +1180,B,pt,ZYI797 Rdio Cultural de Vitria,,Vitria de Santo Anto (PE),-8.117275,-35.286339,,0.25,,7780,225,141,,,,,,36901955,,, +1180,BOL,,R Central,,Oruro (oru),-17.966667,-67.116667,,5,,10504,246,142,,0900-2400,1234567,,,52005,,, +1180,MEX,es,XEDCH-AM Romntica,,Ciudad Delicias (chi),28.216389,-105.490556,,1.5,,8911,304,142,,,,,,43899,,, +1180,B,pt,ZYH248 Rdio Correio do Serto,,Santana do Ipanema (AL),-9.374967,-37.252783,,0.25,,8001,226,143,,,,,,36901950,,, +1180,USA,en,WPTJ872,,Milwaukee/One Brewers Way (WI),43.03,-87.977333,,0.01,,6641,302,143,,,,,,20010625,,, +1180,B,pt,ZYJ223 Rdio Emissora Atalaia,,Guarapuava (PR),-25.351389,-51.422222,,2.5,,10278,230,144,,,,,,36901951,,, +1180,B,pt,ZYN405 Rdio Enauan do Norte,,Guarant do Norte (MT),-9.939872,-54.914508,,1,,9022,241,144,,,,,,36901958,,, +1180,CLM,es,HJFX,,Manizales (cal),5.016667,-75.5,,1,,9015,267,144,,,,,,37446,,, +1180,EQA,,HCDP5,,Cuenca (azu),-2.85,-79,,2,,9945,265,144,,,,,,36905,,, +1180,HND,,HRNQ2,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37822,,, +1180,USA,en,WPUR937,,Kenosha (WI),42.594364,-87.960983,,0.01,,6674,302,144,,,,,,20010624,,, +1180,B,pt,ZYK567 Rdio Brotense,,Brotas (SP),-22.276639,-48.125164,,1,,9813,229,146,,,,,,36901953,,, +1180,EQA,,HCRT1,,Julioandrade (car),0.65,-77.716667,,1,,9550,266,146,,,,,,37114,,, +1180,MEX,es,XEYA-AM Picosa 1180,,Irapuato (gua),20.630083,-101.362972,,0.8,,9353,296,146,,,,,,45081,,, +1180,B,pt,ZYN602 Ativa AM,,Campo Grande (MS),-20.547994,-54.584139,,1,,9996,235,147,,,,,,36901961,,, +1180,EQA,,HCAN3,,Zaruma (oro),-3.7,-79.616667,,1,,10061,265,147,,,,,,36850,,, +1180,EQA,,HCSP4,,Portoviejo (man),-1,-80.366667,,1,,9875,267,147,,,,,,37136,,, +1180,USA,en,KXIQ,,Turrell (AR),35.141944,-90.135,,0.026,,7406,298,147,,,,,,42710,,, +1180,BOL,,CP235 R Emisora Ingavi,,Viacha (lpz),-16.666667,-66.283333,,1,,10335,246,148,,1000-0200,123456,,,52006,,, +1180,BOL,,CP235 R Emisora Ingavi,,Viacha (lpz),-16.666667,-66.283333,,1,,10335,246,148,,1100-2400,......7,,,52006,,, +1180,BOL,,Remisora 20 de Septiembre,,Arbieto (cbb),-17.566667,-66.016667,,1,,10399,246,148,,1100-0200,1234567,,,52007,,, +1180,MEX,es,XEAH-AM Ke Buena,,Juchitn de Zaragoza (oax),16.444294,-95.025328,,0.5,,9327,289,148,,,,,,43708,,, +1180,PRU,,OAM2K,,Jan/Cerro Palo Blanco (caj),-5.7,-78.783333,,1,,10181,263,148,,,,,,37000073,,, +1180,BOL,,R Amanecer,,Potosi (pts),-19.566667,-65.766667,,1,,10564,244,149,,0930-0200,1234567,,,52008,,, +1180,PRU,,OCZ4Z R Libertad,,Junn (jun),-12.216667,-75.2,,1,,10514,256,149,,,,,,40444,,, +1180,B,pt,ZYK647 Rdio Super Nova Difusora,,Santa Cruz do Rio Pardo (SP),-22.911417,-49.635556,,0.5,,9952,230,150,,,,,,36901959,,, +1180,B,pt,ZYJ770 Rdio Guri,,Lages (SC),-27.774167,-50.302778,,0.5,,10451,228,151,,,,,,36901956,,, +1180,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010626,,, +1180,B,pt,ZYK340 Rdio Gazeta,,Santa Cruz do Sul/Rua Irmo Elilio (RS),-29.706944,-52.452778,,0.5,,10744,228,152,,,,,,36901965,,, +1180,B,pt,ZYK749 Rdio Nova AM,,Bebedouro (SP),-20.947244,-48.463444,,0.25,,9702,230,152,,,,,,36901968,,, +1180,URG,es,CX118 La Voz de Artigas,,Artigas (ar),-30.400833,-56.466944,,0.5,,11018,231,153,,0900-0300,1234567,,,36783,,, +1180,B,pt,ZYJ237 Rdio Gua,,Toledo (PR),-24.7,-53.706944,,0.25,,10338,232,154,,,,,,36901967,,, +1180,B,pt,ZYJ314 Rdio Educadora,,So Joo do Iva (PR),-23.989444,-51.823611,,0.25,,10170,231,154,,,,,,36901952,,, +1180,B,pt,ZYJ737 Rdio Integraco do Oeste AM,,So Jos do Cedro (SC),-26.458611,-53.481111,,0.25,,10491,231,155,,,,,,36901957,,, +1180,PRG,,ZP52 R Coronel Oviedo RCO-AM,,Coronel Oviedo (cgz),-25.416667,-56.45,,0.25,,10554,234,155,,0900-0100,1234567,,,45548,,, +1180,USA,en,WSQR,,Sycamore (IL),42.006667,-88.677778,,0.001,,6762,302,155,,,,,,43059,,, +1180,INS,id,RSPDKDT2 Wonogiri,,Wonogiri (JT-wog),-7.816667,110.916667,,0.5,,11682,83,156,,,,,,49980,,, +1180,USA,,WGAB,,Newburgh (IN),37.954444,-87.418611,,0.001,,7012,298,157,,,,,,41468,,, +1180,HWA,,KORL,,Honolulu (HI),21.438333,-157.991389,,0.14,,11697,345,161,,,,,,38689,,, +1185,RUS,,D,b,Ramenskoe (MO),55.5625,38.125,,0.025,,2097,67,94,,,,,30.0s,IDx2,85881,, +1188,HNG,,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1100-1200,123456,5,,52667,,, +1188,HNG,,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1100-1300,......7,5,,52667,,, +1188,HNG,bg,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,..3....,5,,52667,,, +1188,HNG,de,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,0900-1100,1234567,5,,52667,,, +1188,HNG,el,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,...4...,5,,52667,,, +1188,HNG,hr,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,0700-0900,1234567,5,,52667,,, +1188,HNG,hy,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,.....6.,5,,52667,,, +1188,HNG,pl,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1230-1300,.....6.,5,,52667,,, +1188,HNG,ra,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1230-1300,12345..,5,,52667,,, +1188,HNG,ro,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1500-1700,1234567,5,,52667,,, +1188,HNG,rt,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,.2.....,5,,52667,,, +1188,HNG,sk,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1700-1900,1234567,5,,52667,,, +1188,HNG,sl,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,1......,5,,52667,,, +1188,HNG,sr,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1300-1500,1234567,5,,52667,,, +1188,HNG,uk,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,....5..,5,,52667,,, +1188,HNG,,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1100-1200,123456,,,52666,,, +1188,HNG,,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1100-1300,......7,,,52666,,, +1188,HNG,bg,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,..3....,,,52666,,, +1188,HNG,de,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,0900-1100,1234567,,,52666,,, +1188,HNG,el,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,...4...,,,52666,,, +1188,HNG,hr,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,0700-0900,1234567,,,52666,,, +1188,HNG,hy,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,.....6.,,,52666,,, +1188,HNG,pl,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1230-1300,.....6.,,,52666,,, +1188,HNG,ra,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1230-1300,12345..,,,52666,,, +1188,HNG,ro,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1500-1700,1234567,,,52666,,, +1188,HNG,rt,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,.2.....,,,52666,,, +1188,HNG,sk,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1700-1900,1234567,,,52666,,, +1188,HNG,sl,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,1......,,,52666,,, +1188,HNG,sr,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1300-1500,1234567,,,52666,,, +1188,HNG,uk,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,....5..,,,52666,,, +1188,IRN,fa,IRIB R Payam,,Tehran (thr),35.592944,51.248611,,300,,3955,100,72,,0000-2400,1234567,9996,,1066,,, +1188,EGY,ar,ERTU Al-Barnameg al-Aam,,Ras Gharib (bar),28.350583,33.080583,,10,,3440,130,81,,0300-2400,1234567,,,1841,,, +1188,GRC,el,Nikolas apo Elata,,Athnai/Parnitha (att-ath),38.155556,23.716667,,0.5,,2051,132,81,,0000-2400,1234567,42,,3400034,,, +1188,YEM,ar,YGCRT Sana'a R,,Aden/Al-Hiswah (adn),12.8211,44.912839,,100,,5552,128,93,,0300-2300,1234567,,,1069,,, +1188,AFG,,R Faryab,,Maimana (fyb),35.916667,64.75,,7,,4850,88,97,,1230-1430,1234567,,,46810,,, +1188,ARS,ar,BSKSA Idha'atu-i Riyadh,,unknown,24,45.45,,1,,4539,118,102,,,,,,10600015,,, +1188,IND,hi,AIR Vividh Bharati,,Mumbai C=Bombay (MH),19.184139,72.809028,,50,,6734,96,107,,0025-0435,1234567,345,,49987,,, +1188,IND,hi,AIR Vividh Bharati,,Mumbai C=Bombay (MH),19.184139,72.809028,,50,,6734,96,107,,0900-1200,1234567,345,,49987,,, +1188,IND,hi,AIR Vividh Bharati,,Mumbai C=Bombay (MH),19.184139,72.809028,,50,,6734,96,107,,1245-1800,1234567,345,,49987,,, +1188,CHN,en,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1200-1300,1234567,991,,49985,,, +1188,CHN,en,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1500-1600,1234567,991,,49985,,, +1188,CHN,hi,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1600-1700,1234567,991,,49985,,, +1188,CHN,my,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1130-1200,1234567,991,,49985,,, +1188,CHN,my,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1300-1400,1234567,991,,49985,,, +1188,CHN,si,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1400-1500,1234567,991,,49985,,, +1188,KOR,en,FEBC,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1100-1200,1234567,0,,50001,,, +1188,KOR,ko,FEBC,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,0000-1030,1234567,0,,50001,,, +1188,KOR,ko,FEBC,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1700-2400,1234567,0,,50001,,, +1188,KOR,ko,TWR Asia,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1030-1100,1234567,0,,50001,,, +1188,KOR,ko,Voice of America,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1200-1500,1234567,0,,50001,,, +1188,KOR,zh,FEBC,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1500-1700,1234567,0,,50001,,, +1188,CHN,,Xingtai RGD,,Xingtai (HB),37.066667,114.516667,,10,,7910,53,126,,,,,,49986,,, +1188,RUS,ru,FEBC,,Khabarovsk (KH),48.516667,135.12,,5,292,7819,33,128,,1000-1100,1234567,,,50007,,, +1188,RUS,ru,R Teos,,Khabarovsk (KH),48.516667,135.12,,5,292,7819,33,128,,0400-1000,1234567,,,50007,,, +1188,RUS,ru,R Teos,,Khabarovsk (KH),48.516667,135.12,,5,292,7819,33,128,,1100-1200,1234567,,,50007,,, +1188,J,ja,JOKP NHK1,,Kitami (hok),44.002222,144.240556,,10,,8589,30,132,,0000-2400,1234567,,,49999,,, +1188,THA,th,Thor. Phor. Saam,,Phitsanulok/Aranyik (psl),16.794444,100.288889,,10,,8801,77,133,,0000-1555,1234567,,,50008,,, +1188,THA,th,Thor. Phor. Saam,,Phitsanulok/Aranyik (psl),16.794444,100.288889,,10,,8801,77,133,,2200-2400,1234567,,,50008,,, +1188,THA,th,Kor. Wor. Sor. 3,,Sakon Nakhon (snk),17.25,104.166667,,10,,9017,73,134,,????-1700,1234567,,,50010,,, +1188,THA,th,Thor. Phor. Neung,,Tha Kasem/Fort Phairi Rayodet (sko),13.789653,102.154417,,10,,9187,77,134,,????-1405,1234567,,,50009,,, +1188,TWN,,BCC Country Network,,Hualien (HL),23.982833,121.614611,,10,,9486,56,135,,0000-2400,1234567,,,50011,,, +1188,CHN,,Botou RGD,,Botou (HB),38.066667,116.566667,,1,,7932,51,136,,,,,,49984,,, +1188,CHN,ko,Yanbian RGD,,Helong (JL),42.55,129,,1,,8133,40,138,,,,,,36200367,,, +1188,PHL,,DXRU-AM Radyo Ultra,,Opol/Taboc (mor),8.516978,124.580283,,10,,11095,62,141,,,,,,33300031,,, +1188,PHL,,DZXO-AM,,Cabanatuan City (nve),15.483333,120.95,,5,,10231,61,141,,2000-1500,1234567,,,50003,,, +1188,INS,id,RRI Pro-1,,Manado (SA-man),1.455,124.809167,,10,,11762,66,143,,0830-1515,1234567,,,49994,,, +1188,INS,id,RRI Pro-1,,Manado (SA-man),1.455,124.809167,,10,,11762,66,143,,2100-0230,1234567,,,49994,,, +1188,TWN,,Shengli chih Sheng 2,,Tainan (TN),22.942222,120.310756,,1,,9507,58,145,,,,,,50012,,, +1188,TWN,,Taiwan Guangbo Gongsi 2,,Taipei (TPS),25.020533,121.520175,,1,,9385,56,145,,,,,,50013,,, +1188,PHL,,DYRV-AM Radyo Patrol,,Catbalogan (sam),11.766667,124.866667,,1,,10810,60,150,,,,,,50005,,, +1188,INS,id,RSA Abadi/R Suara Tegal,,Adiwerna (JT-teg),-6.933333,109.116667,,1,,11482,84,152,,,,,,49997,,, +1188,INS,id,R Suara Perak Jaya,,Surabaya (JI-ksu),-7.233333,112.75,,1,,11754,81,153,,,,,,49996,,, +1188,AUS,,6XM ABC Northwest WA,,Exmouth (WA),-21.959222,114.128917,,2,,13114,90,154,,0000-2400,1234567,,,49982,,, +1188,WAL,fr,Wallis et Futuna 1re,,Mata'Utu (wal),-13.275,-176.177778,,2,,15691,4,163,,0000-2400,1234567,,,50014,,, +1188,AUS,,2NZ,,Inverell (NSW),-29.772833,151.225764,,2,,16218,63,165,,0000-2400,1234567,,,49983,,, +1188,NZL,,RNZ National,,Rotorua/Tihiotonga (BOP),-38.175,176.230833,,0.4,,18276,31,178,,0000-2400,1234567,,,50002,,, +1190,USA,en,WLIB,,New York/Lyndhurst [NJ] (NY),40.796667,-74.101667,,30,,5969,292,102,,,,0,,42167,,, +1190,USA,,WCRW,,Leesburg (VA),39.041111,-77.445,,50,,6311,293,103,,1200-2400,1234567,,,40665,,, +1190,USA,,WOWO,i,Fort Wayne (IN),40.996389,-85.351667,,9.8,,6646,299,114,,,,0,,42630,,, +1190,USA,en,WAFS,,Atlanta (GA),33.809444,-84.353889,,25,,7159,293,115,,,,,,40663,,, +1190,USA,,KJJI,,White Hall (D) (AR),34.283611,-92.1275,,25,,7598,298,119,,,,,,20016262,,, +1190,USA,,WCRW,,Leesburg (VA),39.123611,-77.625,,1.3,,6316,293,119,,0000-1200,1234567,,,20012531,,, +1190,CAN,en,CFSL,,Weyburn (SK),49.465833,-103.843056,,5,,6951,317,120,,,,0,,36011,,, +1190,USA,,KKOJ,,Jackson (MN),43.529167,-95.001389,,5,,6995,307,120,,,,,,38744,,, +1190,USA,en,KFXR,,Dallas (D) (TX),32.786111,-96.95,,50,,8013,301,120,,,,,,38445,,, +1190,USA,,WSDQ,,Dunlap (TN),35.361389,-85.375833,,5,,7097,295,121,,,,,,42973,,, +1190,USA,en,KEX,i,Portland (OR),45.422222,-122.565833,,50,,8126,325,121,,,,0,,38351,,, +1190,PTR,xx,WBMJ,,San Juan (PR),18.35,-66.113889,,5,,7221,268,122,,0000-2400,1234567,2,,40880,,, +1190,VEN,,YVPF Ondas de Libertad,,Ciudad Guayana/San Flix (blv),8.345372,-62.646922,,20,,7853,258,123,,0900-0300,1234567,,,51691,,, +1190,CUB,es,R Coral/R Revolucin,,Chivirico (sc),19.964586,-76.437017,,10,,7788,277,125,,,,,,36562,,, +1190,USA,,KREB,,Bentonville/Bella (AR),36.388333,-94.192778,,5,,7543,301,125,,,,,,39234,,, +1190,USA,,WBHA,,Wabasha (MN),44.346111,-91.978056,,1,,6763,306,125,,,,,,20016039,,, +1190,USA,en,WEUV,,Moulton (AL),34.481944,-87.301111,,2.5,,7288,295,126,,1300-0100,1234567,,,41645,,, +1190,USA,,WWIO,,St. Marys (GA),30.763056,-81.610833,,1.8,,7233,289,127,,,,,,43387,,, +1190,USA,es,WMEJ,,Bay St. Louis (MS),30.323611,-89.350833,,5,,7762,294,128,,1300-0100,1234567,84,,40909,,, +1190,USA,en,KFXR,,Dallas (N) (TX),32.899167,-96.413056,,5,,7971,300,130,,,,,,20012578,,, +1190,VEN,,YVRE R Barinas 1190 AM Estereo,,Barinas (bns),8.566667,-70.316667,,10,,8352,265,131,,,,,,45442,,, +1190,B,pt,ZYJ594 Rdio CBN,,Natal (RN),-5.818611,-35.253611,,1,,7549,226,132,,,,1,,36901982,,, +1190,CLM,es,HJCT La Voz de la Costa,,Barranquilla (atl),10.916667,-74.916667,,10,,8461,270,132,,,,999,,37379,,, +1190,CLM,es,HJEO Ondas del Valle,,Cartago (val),4.716667,-75.9,,15,,9069,267,132,,,,12,,37417,,, +1190,USA,,WSDE,,Cobleskill (NY),42.690556,-74.444444,,0.02,,5853,294,132,,,,,,42971,,, +1190,VEN,,YVZD R Dif. Cultural del Tchira Paz Vital 11-90,,San Cristbal (tch),7.766667,-72.266667,,10,,8554,266,132,,1000-0400,1234567,,,45484,,, +1190,USA,,KPHN,,Kansas City (MO),39.063611,-94.510278,,0.5,,7337,303,133,,,,,,39139,,, +1190,USA,en,WJPJ,,Humboldt (TN),35.844722,-88.902222,,0.42,,7274,297,133,,1300-0100,1234567,,,41666,,, +1190,CLM,es,HJKG R Mira CARACOL,,Tumaco (nar),1.766667,-78.783333,,10,,9524,267,135,,,,997,,37608,,, +1190,MEX,es,XEWK-AM W R,,Guadalajara (jal),20.736878,-103.349058,,10,,9464,298,135,,,,0,,45025,,, +1190,CUB,es,R Sancti Spritus,,Trinidad (ss),21.773378,-79.987389,,1,,7875,281,136,,,,,,36519,,, +1190,USA,es,WPSP,,Royal Palm Beach (FL),26.816944,-80.251944,,0.41,,7469,285,136,,,,,,42741,,, +1190,CLM,es,HJCV R Cordillera,,Bogot D. C. (bdc),4.616667,-74.15,,5,,8958,265,137,,,,993,,37381,,, +1190,USA,,WIXE,,Monroe (NC),34.961389,-80.544444,,0.07,,6825,291,137,,,,,,41824,,, +1190,USA,es,WAMT,,Pine Castle-Sky Lake (FL),28.466667,-81.374722,,0.23,,7406,287,137,,,,,,40715,,, +1190,B,pt,ZYL221 Rdio Guarani AM,,Belo Horizonte (MG),-19.852811,-44.016933,,5,,9369,227,138,,,,,,36901979,,, +1190,USA,,KDYA,,Vallejo (CA),38.134167,-122.425556,,3,,8826,321,138,,,,1,,38303,,, +1190,USA,,KJJI,,White Hall (N) (AR),34.283611,-92.1275,,0.35,,7598,298,138,,,,,,20016261,,, +1190,USA,,WVUS,,Grafton (WV),39.350278,-80.044444,,0.022,,6450,294,138,,,,,,43115,,, +1190,B,pt,ZYH459 Rdio Juazeiro,,Juazeiro (BA),-9.424733,-40.517642,,1,,8169,229,139,,,,95,,36901983,,, +1190,B,pt,ZYH663 Rdio Guaraciaba,,Guaraciaba do Norte (CE),-4.158203,-40.765356,,0.25,,7667,232,140,,,,,,36901978,,, +1190,MEX,es,XETOT-AM ABC R,,Pueblo Viejo (vcz),22.193511,-97.836653,,2.5,,8996,295,140,,,,0,,44848,,, +1190,HND,,HRVW3,,San Pedro Sula (cor),15.5,-88.016667,,2,,8950,283,141,,,,,,37870,,, +1190,HTI,,R Grand Anse,,Jrmie (gan),18.616667,-74.083333,,0.2,,7743,274,141,,,,,,35627,,, +1190,MEX,es,XESOL-AM R Sol,,Ciudad Hidalgo (mic),19.800556,-100.566944,,2.5,,9378,295,141,,,,,,44759,,, +1190,PRU,,OAX7B R Tawantinsuyo,,Cusco (cus),-13.5,-72.016667,,5,,10418,253,141,,,,69,,40351,,, +1190,USA,,WNWC,,Sun Prairie (WI),43.16,-89.215278,,0.021,,6702,303,141,,,,,,42533,,, +1190,USA,,KNEK,,Washington (LA),30.585833,-92.066667,,0.25,,7908,296,142,,,,,,38981,,, +1190,USA,,KVSV,,Beloit (KS),39.448056,-98.079167,,0.09,,7505,306,142,,,,,,39673,,, +1190,CLM,es,HJKI,,Sahagun (cor),8.916667,-75.416667,,1,,8669,269,143,,,,,,37603,,, +1190,HND,,HRPO,,San Francisco de la Paz (ola),14.816667,-86.2,,1,,8888,281,143,,,,,,37825,,, +1190,USA,ko,KGBN,,Anaheim (CA),33.945,-117.862222,,1.3,,9024,316,143,,,,9964,,39807,,, +1190,ARG,,LRA15 R Nacional,,San Miguel del Tucumn (tm),-26.816667,-65.216667,,5,,11182,239,144,,0000-2400,1234567,92,,39935,,, +1190,MEX,es,XEXQ-AM R Universidad,,San Luis Potos (slp),22.172089,-100.966006,,1,,9190,297,144,,,,,,45065,,, +1190,NCG,es,R Bendicin,,Cayanlipe (cnd),12.901389,-86.866667,,1,,9100,281,144,,,,,,33700002,,, +1190,USA,,KDAO,,Marshalltown (IA),42.071389,-92.921944,,0.02,,6999,305,144,,,,,,38236,,, +1190,ARG,es,LR9 R Amrica,,Buenos Aires (df),-34.670917,-58.434139,,5,,11514,230,145,,0000-2400,1234567,568,,39928,,, +1190,B,pt,ZYK354 Rdio Rosrio AM,,Serafina Corra (RS),-28.708333,-51.938889,,2.5,,10623,229,145,,,,,,36901969,,, +1190,USA,,KVCU,,Boulder (CO),39.964722,-105.235278,,0.11,,7843,311,145,,,,,,39615,,, +1190,USA,en,KQQZ,,De Soto (MO),38.706944,-90.052778,,0.022,,7108,300,145,,,,,,39242,,, +1190,B,pt,ZYK301 Rdio So Loureno do Sul,,So Loureno do Sul (RS),-31.373889,-51.968611,,2.5,,10876,227,146,,,,,,36901975,,, +1190,EQA,,HCDE2 UCSG R-TV,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,,,,,36862,,, +1190,B,pt,ZYJ355 Palmital AM,,Palmital/Jardim Santa Amalia (PR),-24.888056,-52.200833,,1,,10275,231,148,,,,,,36901972,,, +1190,MEX,es,XEJPA-AM Noticias W,,Jojutla (mor),18.699967,-99.248403,,0.5,,9395,294,148,,,,,,43925,,, +1190,PRU,,OAX1E,,Chiclayo (lam),-6.75,-79.816667,,1,,10343,263,148,,,,,,40268,,, +1190,MEX,es,XEPZ-AM La Nortea,,Ciudad Jurez (chi),31.716286,-106.440439,,0.25,,8646,307,149,,,,,,44593,,, +1190,USA,,KNUV,,Tolleson (AZ),33.445,-112.265,,0.25,,8796,312,149,,,,0,,38954,,, +1190,SLV,,YSCB,,Sonsonate (ssn),13.716667,-89.716667,,0.25,,9219,283,150,,,,,,45265,,, +1190,B,pt,ZYH800 Rdio Rio Vermelho,,Silvnia/Fazenda Lava (GO),-16.646667,-48.585278,,0.25,,9296,232,151,,,,,,36901981,,, +1190,MEX,es,XEPP-AM La Comadre,,Orizaba (vcz),18.843333,-97.080833,,0.25,,9246,292,151,,,,,,44571,,, +1190,B,pt,ZYK234 Rdio Sociedade Cerro Azul,,Cerro Largo/Morro dos Conventos (RS),-28.166111,-54.745,,0.5,,10718,231,152,,,,,,36901977,,, +1190,B,pt,ZYK715 Rdio Cidade AM,,Votuporanga (SP),-20.434392,-49.949511,,0.25,,9732,231,152,,,,,,36901985,,, +1190,B,pt,ZYK729 Rdio 31 de Maro,,Santa Cruz das Palmeiras (SP),-21.812472,-47.267272,,0.25,,9724,228,152,,,,,,36901980,,, +1190,B,pt,ZYL276 Rdio Mineira do Sul,,Passa Quatro (MG),-22.335556,-44.943678,,0.25,,9658,226,152,,,,,,36901984,,, +1190,EQA,,HCRF6,,Pujili (nap),-0.95,-78.4,,0.25,,9737,265,152,,,,,,37081,,, +1190,B,pt,ZYJ309 Rdio Pontal de Nova Londrina,,Nova Londrina (PR),-22.8,-52.983333,,0.25,,10119,233,153,,,,,,36901986,,, +1190,B,pt,ZYK512 Rdio Clube Marconi AM,,Paraguau Paulista (SP),-22.396828,-50.571478,,0.25,,9952,231,153,,,,,,36901970,,, +1190,B,pt,ZYK741 Rdio Regional de Taquarituba,,Taquarituba (SP),-23.525178,-49.250828,,0.25,,9991,229,153,,,,,,36901973,,, +1190,MEX,es,XECT-AM Contacto,,Monterrey (nvl),25.680372,-100.314256,,0.1,,8837,299,153,,,,,,43878,,, +1190,B,pt,ZYJ783 Rdio Clube AM So Joo Batista,,So Joo Batista/Morro da Caixa Dagua (SC),-27.283611,-48.848333,,0.25,,10331,227,154,,,,,,36901971,,, +1190,B,pt,ZYJ817 Rdio Planalto,,Major Vieira (SC),-26.370833,-50.382222,,0.25,,10321,229,154,,,,,,36901974,,, +1190,B,pt,ZYJ820 Rdio Clube So Domingos AM,,So Domingos (SC),-26.562222,-52.52,,0.25,,10450,230,154,,,,,,36901976,,, +1190,MEX,es,XEMBC-AM Cadena 1190,,Mexicali (bcn),32.647428,-115.472722,,0.1,,9031,314,154,,,,,,44357,,, +1190,PRG,es,ZP45 La Voz de la Libertad,,Hernandarias (apa),-25.383333,-54.666667,,0.25,,10454,232,155,,,,,,51737,,, +1190,USA,,KXKS,,Albuquerque (NM),35.051111,-106.642778,,0.024,,8356,309,157,,,,,,39797,,, +1197,G,en,Absolute R,,Hoo St Werburgh (EN-KNT),51.419167,0.573333,,2,,409,261,58,,0000-2400,1234567,2,,1086,,, +1197,G,en,Absolute R,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,1.1,,482,256,61,,0000-2400,1234567,,,1085,,, +1197,ROU,de,SRR R Bukarest,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0820-0830,......7,992,,1091,,, +1197,ROU,de,SRR R Bukarest,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1200-1300,123456,992,,1091,,, +1197,ROU,de,SRR R Neumarkt,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0830-0900,......7,992,,1091,,, +1197,ROU,de,SRR R Neumarkt,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1900-2000,123456,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0600-0900,.....6.,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0800-0820,......7,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0900-1200,1234567,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1200-1700,......7,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1300-1600,1234...,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1300-1700,....56.,992,,1091,,, +1197,ROU,ro,SRR Antena Braşovului,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0600-0700,1234...,992,,1091,,, +1197,ROU,ro,SRR Antena Braşovului,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1600-1700,1234...,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0350-0600,1234567,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0600-0700,....5..,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0600-0800,......7,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0700-0900,12345..,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1700-1900,1234567,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1900-1955,......7,992,,1091,,, +1197,G,en,Absolute R,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,1,,718,259,64,,0000-2400,1234567,,,1084,,, +1197,G,en,Absolute R,,Nottingham/Trowell (EN-NHS),52.953167,-1.248083,,0.5,,526,283,65,,0000-2400,1234567,0,,1083,,, +1197,G,en,Absolute R,,Wallasey (EN-MER),53.425667,-3.046861,,0.4,,652,287,67,,0000-2400,1234567,0,,1082,,, +1197,G,en,Absolute R,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.2,,426,274,68,,0000-2400,1234567,0,,1077,,, +1197,G,en,Absolute R,,Gloucester (EN-GLO),51.907028,-2.230472,,0.3,,591,271,68,,0000-2400,1234567,,,1080,,, +1197,G,en,Absolute R,,Oxford (EN-OXF),51.790639,-1.179111,,0.25,,521,269,68,,0000-2400,1234567,,,1078,,, +1197,G,en,Absolute R,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.25,,596,258,69,,0000-2400,1234567,,,1079,,, +1197,IRN,fa,IRIB R Ardabil,,Moghan (ard),39.527175,47.766367,,50,,3439,97,74,,0214-2000,1234567,22,,1088,,, +1197,IRN,fa,IRIB R Iran,,Moghan (ard),39.527175,47.766367,,50,,3439,97,74,,2000-0214,1234567,22,,1088,,, +1197,IRN,fa,IRIB R Fars,,Ghir=Qir/Karzin (frs),28.420772,53.083806,,10,,4641,106,93,,0000-2400,1234567,,,10800020,,, +1197,AGL,pt,RNA Em. Prov. de Malange,,Malanje (mal),-9.544492,16.363961,,10,,6921,169,116,,0355-2200,1234567,7,,2365,,, +1197,CHN,,Qiqihar RGD,,Qiqihar (HL),47.362778,123.981111,,10,,7469,41,122,,,,,,50019,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,0023-0345,1234567,6,,50025,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,0400-0530,1234567,6,,50025,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,0610-0900,123456,6,,50025,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,0630-1100,......7,6,,50025,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,1123-1740,1234567,6,,50025,,, +1197,LSO,,LNBS Ultimate FM,,Maseru/Lancer's Gap (msr),-29.310361,27.5544,,100,,9285,162,125,,1600-2200,1234567,984,,2366,,, +1197,LSO,en,LNBS Ultimate FM,,Maseru/Lancer's Gap (msr),-29.310361,27.5544,,100,,9285,162,125,,0600-1600,1234567,984,,2366,,, +1197,CHN,,Heze Shi RGD,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,????-1500,1234567,,,50017,,, +1197,CHN,zh,CNR 2,,Tuquan/NMTS728 (NM),45.383333,121.6,,1,,7537,43,132,,2100-1602,1234567,,,36201252,,, +1197,IND,,AIR Northeast,,Shillong (ML),25.566667,91.933333,,1,,7498,77,132,,0025-0400,1234567,,,50024,,, +1197,IND,,AIR Northeast,,Shillong (ML),25.566667,91.933333,,1,,7498,77,132,,1056-1630,1234567,,,50024,,, +1197,CHN,,Shanghai RGD Xiju Quyi Pinl,,Shanghai (SH),31.109167,121.514722,,10,,8824,52,133,,2125-1430,1234567,,,50022,,, +1197,J,ja,JOBF RKK Kumamoto Hoso,,Kumamoto/Koshi-Shi (kyu-kum),32.917344,130.726672,,10,,9124,44,134,,0000-2400,1234567,,,50036,,, +1197,THA,th,Jor. Thor. Lor.,,Lop Buri/Narai Maharat Rd (lpb),14.800583,100.642681,,10,,8998,78,134,,1900-1700,1234567,18,,50052,,, +1197,J,ja,JOWL STV Sapporo TV Hoso,,Asahikawa (hok),43.773889,142.442222,,3,,8550,31,137,,0000-2400,1234567,,,50029,,, +1197,J,ja,JOYF IBS Ibaraki Hoso,,Mito (kan-iba),36.434444,140.44,,5,,9207,36,137,,0000-2400,1234567,,,50037,,, +1197,MLA,,RTM Sabah VFM,,Kudat (sbh),6.913406,116.723775,,10,,10753,70,140,,2030-1400,1234567,,,50046,,, +1197,PHL,,DWBA-AM,,Bangued (abr),17.583333,120.616667,,5,,10018,60,140,,,,,,50049,,, +1197,J,,STV, Sapporo TV Hoso,,Enbetsu (hok),44.733333,141.8,,1,,8432,31,141,,0000-2400,1234567,,,50031,, +1197,J,,STV, Sapporo TV Hoso,,Wakkanai (hok),45.366667,141.716667,,1,,8366,31,141,,0000-2400,1234567,,,50043,, +1197,INS,id,RRI Pro-1,,Palangkaraya (KT-kpr),-2.190097,113.896914,,10,,11385,77,142,,1855-1600,1234567,,,50027,,, +1197,J,,STV, Sapporo TV Hoso,,Nayoro (hok),44.35,142.433333,,1,,8492,31,142,,0000-2400,1234567,,,50038,, +1197,KOR,,AFN Korea-Thunder AM,,Dongdducheon/Camp Casey (gye),37.921875,127.062125,,1,,8476,44,142,,0000-2400,1234567,,,50045,,, +1197,CHN,,Quanzhou RGD Jiaotong zhi Sheng,,Quanzhou/FJTS401 (FJ),24.882722,118.596917,,1,,9230,58,144,,????-1730,1234567,,,50020,,, +1197,J,,JOFO RKB Mainichi Hoso,,Kitakyushu (kyu-fuk),33.933333,130.816667,,1,,9031,44,144,,0000-2400,1234567,,,50035,,, +1197,J,,RKK, Kumamoto Hoso,,Aso (kyu-kum),32.933333,131.05,,1,,9138,44,144,,0000-2400,1234567,,,50030,, +1197,J,,RKK, Kumamoto Hoso,,Goshoura (kyu-kum),32.333333,130.316667,,1,,9160,45,144,,0000-2400,1234567,,,50032,, +1197,J,,RKK, Kumamoto Hoso,,Hitoyoshi (kyu-kum),32.2,130.8,,1,,9196,45,144,,0000-2400,1234567,,,50033,, +1197,J,ja,RKC Kochi Hoso,,Nakamura (shi-koc),32.983333,132.916667,,1,,9221,43,144,,,,,,31400079,,, +1197,J,ja,RKK, Kumamoto Hoso,,Minamiaso (kyu-kum),32.816667,131.1,,1,,9152,44,144,,,,,,31400082,, +1197,PHL,,DXFE-AM FEBC,,Davao City/San Raphael (dvs),7.033333,125.516667,,5,,11289,62,144,,2100-1400,1234567,,,50051,,, +1197,INS,id,Asri R,,Ciledug (BT-tan),-6.222222,106.713889,,1,,11256,86,151,,,,3,,35400068,,, +1197,INS,id,R Suara Mitra,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400014,,, +1197,J,,STV, Sapporo TV Hoso,,Rumoi (hok),43.95,141.65,,0.1,,8504,31,152,,0000-2400,1234567,,,50039,, +1197,J,,JOSE SBC, Shinetsu Hoso,,Suwa (chu-nag),36.057778,138.066944,,0.1,,9148,38,154,,0000-2400,1234567,,,50042,, +1197,J,,RKK, Kumamoto Hoso,,Arao (kyu-kum),32.966667,130.433333,,0.1,,9105,45,154,,0000-2400,1234567,,,50028,, +1197,J,,RKK, Kumamoto Hoso,,Kawaura (kyu-kum),32.3,130.083333,,0.1,,9152,45,154,,0000-2400,1234567,,,50034,, +1197,J,ja,GBS,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,,,,,31400078,,, +1197,J,ja,RKK, Kumamoto Hoso,,Oguni (toh-yam),38.066667,139.75,,0.1,,9018,35,154,,,,,,31400083,, +1197,J,ja,RKK, Kumamoto Hoso,,Soyokita,34.5,134,,0.1,,9124,41,154,,,,,,31400080,, +1197,J,ja,RKK, Kumamoto Hoso,,Soyominami,34.5,134,,0.1,,9124,41,154,,,,,,31400081,, +1197,AUS,,5RPH,,Adelaide/Wingfield (SA),-34.837486,138.569828,,2,,15802,82,163,,0000-2400,1234567,,,50015,,, +1197,AUS,en,4BI Switch 1197 AM,,Brisbane/Long Pocket (QLD),-27.515156,152.997664,,0.5,,16124,58,170,,0000-2400,1234567,294,,50016,,, +1197,NZL,,2ZW Newstalk ZB,,Wanganui/Kaitoke (MWT),-39.981944,175.0825,,2,,18412,37,172,,0000-2400,1234567,,,50047,,, +1200,USA,en,WXKS,i,Newton (MA),42.288889,-71.189167,,50,,5677,292,97,,,,1,,42055,,, +1200,CAN,en,CFGO,,Ottawa (ON),45.216667,-75.769722,,50,,5755,297,98,,,,9980,,35958,,, +1200,USA,en,WCHB,,Taylor (MI),42.156667,-83.332222,,15,,6436,299,110,,,,1,,40990,,, +1200,USA,,WAMB,,Nashville (DC) (TN),36.208889,-86.8725,,50,,7120,296,111,,1200-2400,1234567,,,40702,,, +1200,USA,en,WAMB,,Nashville (N) (TN),36.208889,-86.8725,,50,,7120,296,111,,,,,,20016075,,, +1200,USA,,KFNW,,West Fargo (ND),46.801667,-96.883056,,13,,6828,311,114,,,,0,,38415,,, +1200,USA,,WXIT,,Blowing Rock (NC),36.154722,-81.661389,,10,,6801,293,115,,,,,,43469,,, +1200,USA,,WTLA,,North Syracuse (NY),43.151667,-76.132778,,1,,5924,296,116,,,,,,43162,,, +1200,B,pt,ZYH585 Cear Rdio Clube,,Fortaleza (CE),-3.849572,-38.574178,,30,,7521,230,117,,,,993,,36901991,,, +1200,USA,es,WRTO,,Chicago (IL),41.661944,-87.63,,4.5,,6728,301,118,,,,2,,42928,,, +1200,CAN,xx,CJRJ,,Vancouver (BC),49.183056,-123.063611,,25,,7783,328,121,,,,9939,,52614,,, +1200,USA,,WKST,,New Castle (PA),40.939444,-80.393889,,1,,6351,296,121,,,,,,42073,,, +1200,USA,,WRKK,,Hughesville (PA),41.211944,-76.748611,,0.25,,6105,294,124,,,,,,42867,,, +1200,USA,en,WOAI,,San Antonio (TX),29.501944,-98.128611,,50,,8368,299,124,,,,5,,42548,,, +1200,USA,en,WSML,,Graham (NC),36.133611,-79.470556,,1,,6664,291,124,,,,,,43028,,, +1200,VEN,,YVSF R Dimension,,Caripito (mgs),10.111775,-63.130311,,10,,7730,260,124,,1000-0300,1234567,,,51692,,, +1200,VEN,es,YVOZ R Tiempo,,Caracas (dcf),10.540833,-66.953489,,10,,7951,263,127,,0000-2400,1234567,3,,45417,,, +1200,USA,,WBCE,,Wickliffe (KY),36.981667,-89.0775,,1,,7191,298,129,,,,,,40820,,, +1200,CLM,es,HJBZ Ondas del Riohacha,,Riohacha (lag),11.566667,-72.816667,,10,,8261,269,130,,,,,,37362,,, +1200,USA,,KYOO,,Bolivar (MO),37.621111,-93.401667,,1,,7394,302,131,,,,,,39867,,, +1200,CLM,es,HJBV,,Cartagena (bol),10.4,-75.516667,,10,,8547,270,132,,,,,,35901593,,, +1200,HTI,,4VRD,,Port-de-Paix (nou),19.916667,-72.816667,,1,,7546,274,132,,,,,,35654,,, +1200,CLM,es,HJGC RCN,,Sogamoso (boy),5.766667,-72.966667,,10,,8777,265,133,,,,32,,37555,,, +1200,USA,es,WJUA,,Pine Island Center (FL),26.714444,-82.046111,,1,,7596,286,133,,,,,,42744,,, +1200,B,pt,ZYK520 Rdio Cultura Brasil,,So Paulo (SP),-23.677267,-46.714944,,20,,9876,227,134,,,,,,36901993,,, +1200,CLM,es,HJNF R Red,,Cali (val),3.466667,-76.566667,,10,,9224,267,134,,,,923,,37584,,, +1200,USA,en,KYAA,,Soquel (CA),36.660556,-121.541389,,10,,8931,320,134,,,,,,52617,,, +1200,VEN,,YVNH Ondas del Escalante,,Santa Brbara del Zulia (zul),9,-71.916667,,5,,8423,266,134,,1000-0300,1234567,,,45480,,, +1200,CUB,es,R Sancti Spritus,,Yaguajay (ss),22.311972,-79.216556,,1,,7777,281,135,,,,,,2130,,, +1200,PTR,es,WGDL,,Lares (PR),18.294444,-66.897222,,0.25,,7280,269,136,,,,,,41491,,, +1200,B,pt,ZYH251 Rdio Correio do Serto,,Pilar/Campo Grande (AL),-9.759167,-35.85,,1,,7971,224,137,,,,,,36901987,,, +1200,MEX,es,XEQJAL-AM R Quertaro,,Jalpan de Serra (que),21.200556,-99.449136,,5,,9184,295,137,,,,,,34900021,,, +1200,DOM,,HIMR R Caracol,,Azua de Compostela (azu),18.433333,-70.716667,,0.25,,7529,272,138,,1000-0400,1234567,,,37277,,, +1200,HND,,HRSI,,Roatan (bah),16.316667,-86.5,,3,,8778,282,138,,,,,,37842,,, +1200,USA,en,WPJP633,,Niagara Falls/1500 Military Road (NY),43.0945,-78.977639,,0.01,,6103,297,138,,,,,,20010630,,, +1200,CHN,,Yunnan RGD Xinwen Guangbo,,unknown (YN),25.033333,102.716667,,1,,8247,69,139,,,,,,36201239,,, +1200,PRG,,ZP44 R Libre,,Fernando de la Mora (asu),-25.316667,-57.6,,10,,10609,235,139,,,,,,51738,,, +1200,CTR,,TIAM R Cuc,,San Jos (sjs),9.916667,-84.066667,,2.5,,9171,277,140,,1000-0600,1234567,,,40572,,, +1200,BOL,,CP32 R Oriental,,Santa Cruz (scz),-17.766667,-63.166667,,5,,10242,243,141,,0930-0200,1234567,,,36691,,, +1200,EQA,,HCCS1,,S Angolqui (pic),-0.316667,-78.516667,,3,,9689,266,141,,,,,,36889,,, +1200,MEX,es,XEQY-AM R Mexicana,,Cacalomacan (mex),19.249878,-99.697744,,2.5,,9374,294,141,,,,,,44641,,, +1200,CLM,es,HJIJ La Voz de la Raza,,Medelln (ant),6.416667,-75.616667,,1,,8901,268,143,,,,174,,37492,,, +1200,USA,en,WPQG470,,Columbus (OH),39.944303,-82.8485,,0.01,,6577,297,143,,,,,,20010632,,, +1200,USA,en,WPQG470,,Columbus (OH),39.975889,-83.127675,,0.01,,6592,297,143,,,,,,20010629,,, +1200,USA,en,WPQG470,,Columbus (OH),40.110972,-82.980194,,0.01,,6572,297,143,,,,,,20010628,,, +1200,USA,en,WPSL698,,Delaware (OH),40.3,-83.066667,,0.01,,6563,297,143,,,,,,20010633,,, +1200,CAN,en,CFIW,,Canal Flats (BC),50.156111,-115.803611,,0.05,,7412,324,144,,,,,,20109157,,, +1200,CLM,,HJBX,,Villavicencio (met),4.166667,-73.65,,1,,8964,265,144,,,,,,37361,,, +1200,CLM,es,HJCD,,Fusagasuga (cun),4.316667,-74.366667,,1,,9000,265,144,,,,,,37367,,, +1200,EQA,,HCRM5 R El Mercurio,,Cuenca (azu),-2.85,-79,,2,,9945,265,144,,,,,,37092,,, +1200,GTM,,TGRJ R Jutiapa,,Jutiapa (jut),14.278392,-89.889217,,1,,9181,284,144,,,,,,40530,,, +1200,HND,,HRDS,,Nacaome (val),13.5,-87.5,,1,,9090,281,144,,,,,,37749,,, +1200,USA,en,WEMM,,Huntington (WV),38.404722,-82.489167,,0.009,,6675,295,144,,,,,,41300,,, +1200,MEX,es,XEAGA-AM Bonita,,Aguascalientes (agu),21.919722,-102.266111,,1,,9291,298,145,,,,,,43703,,, +1200,MEX,es,XEPAS-AM,,Punta Abreojos (bcs),26.721497,-113.572183,,1,,9493,309,145,,,,,,44531,,, +1200,PRU,es,OAX4B R Cadena 1200,,Lima (lim),-12.183333,-77.033333,,2.5,,10633,257,145,,,,,,40302,,, +1200,USA,,WMIR,,Atlantic Beach (SC),33.836667,-78.784167,,0.011,,6802,289,145,,,,,,42331,,, +1200,B,pt,ZYH482 Rdio Clube Rio do Ouro,,Jacobina/Morro do Peru Pelado (BA),-11.189111,-40.523656,,0.25,,8343,228,146,,,,,,36901989,,, +1200,EQA,,HCMP4,,Bahia de Caraq (man),-0.016667,-80,,1,,9764,267,146,,,,,,37030,,, +1200,EQA,es,HCIA2 La Voz del Trpico,,Quevedo (rio),-1.016667,-79.466667,,1,,9815,266,146,,,,,,36969,,, +1200,USA,en,WPGG523,,Clear Lake (IA),43.133583,-93.361008,,0.01,,6937,306,146,,,,,,20010631,,, +1200,EQA,,R U,,Santa Rosa (oro),-3.45,-79.966667,,1,,10063,265,147,,,,14,,2266,,, +1200,CHL,,CD120 R Agricultura,,Los Angeles (BI),-37.466667,-72.333333,,5,,12525,238,148,,1000-0400,1234567,,,35857,,, +1200,ARG,,LT6 R Goya,,Goya (cn),-29.116667,-59.266667,,1.5,,11051,234,149,,0900-0300,1234567,,,40199,,, +1200,B,pt,ZYK239 Erechim AM,,Erechim (RS),-27.625,-52.247222,,1,,10536,229,149,,,,,,36901994,,, +1200,PRG,,ZP11,,Asuncin (asu),-25.266667,-57.616667,,1,,10605,235,149,,,,,,45506,,, +1200,PRU,,OBX5X,,Abancay (apu),-13.633333,-72.883333,,1,,10487,253,149,,,,,,37000093,,, +1200,MEX,es,XEYF-AM R Frmula,,Hermosillo (son),29.066944,-110.967222,,0.25,,9135,308,150,,,,,,45086,,, +1200,MEX,es,XEWT-AM W R,,Culiacn (sin),24.832222,-107.404722,,0.25,,9329,303,151,,,,,,45036,,, +1200,URG,,CW33 La Nueva R,,Florida (fd),-34.1,-56.216667,,1,,11347,229,151,,0000-2400,1234567,,,36768,,, +1200,ARG,es,LRA6 R Nacional,,Valle de Uspallata (mz),-32.666667,-69.366667,,1,,11942,239,153,,1000-0500,1234567,,,51832,,, +1200,B,pt,ZYK342 Rdio Cotrisel AM,,So Sep (RS),-30.177778,-53.572778,,0.5,,10845,229,153,,,,,,36901988,,, +1200,URG,,CX120,,Rivera (rv),-30.883333,-55.533333,,0.5,,11013,230,153,,,,,,36785,,, +1200,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010634,,, +1200,BOL,,CP171 R 24 de Noviembre,,Arani (cbb),-17.566667,-65.716667,,0.25,,10380,245,154,,1030-0400,1234567,,,36666,,, +1200,USA,en,WPKM997,,Salt Lake City (UT),40.766056,-111.966056,,0.01,,8105,316,158,,,,,,20010627,,, +1205,RUS,,C,b,Morozovsk (RO),48.3125,41.791667,,0.025,,2527,85,98,,,,,15.0s,2xID,86816,, +1206,F,fr,France Info,,Bordeaux/Nac (33),44.949722,-0.188889,,300,,932,214,42,,0000-2400,1234567,4,,1093,,, +1206,ISR,he,IBA Reshet Bet (B),,Haifa/'Akko (haf),32.911667,35.116667,,50,,3140,122,71,,0000-2400,1234567,17,,1095,,, +1206,GRC,el,R Babis,,Athnai (att-ath),38,23.75,,0.7,,2067,133,79,,0000-2400,1234567,999,,3400026,,, +1206,IRQ,,Voice of the People of Kurdistan/Voice of Iraqi Liberation,,Sulaimaniyah (sul),35.55,45.433333,,1,,3570,105,93,,0235-0430,1234567,3,,237,,, +1206,IRQ,,Voice of the People of Kurdistan/Voice of Iraqi Liberation,,Sulaimaniyah (sul),35.55,45.433333,,1,,3570,105,93,,1430-1915,1234567,3,,237,,, +1206,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Nehbandan (skh),31.542861,60.043861,,10,,4857,96,96,,0000-2400,1234567,,,1802,,, +1206,IND,,AIR East,,Bhawanipatna (OR),20.001111,83.178611,,200,,7372,87,108,,0025-0435,1234567,9891,,50067,,, +1206,IND,,AIR East,,Bhawanipatna (OR),20.001111,83.178611,,200,,7372,87,108,,0700-0945,1234567,9891,,50067,,, +1206,IND,,AIR East,,Bhawanipatna (OR),20.001111,83.178611,,200,,7372,87,108,,1130-1735,1234567,9891,,50067,,, +1206,CHN,ko,Yanbian RGD,,Yanji/Longjing (JL),42.8,129.441667,,200,,8129,40,115,,2125-1500,1234567,973,,50063,,, +1206,TWN,AM,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1000-1100,1234567,996,,50087,,, +1206,TWN,AM,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1200-1300,1234567,996,,50087,,, +1206,TWN,id,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,0300-0400,1234567,996,,50087,,, +1206,TWN,vi,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1300-1400,1234567,996,,50087,,, +1206,TWN,zh,...,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1100-1200,1234567,996,,50087,,, +1206,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,0400-0500,1234567,996,,50087,,, +1206,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,0900-1000,1234567,996,,50087,,, +1206,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1400-1500,1234567,996,,50087,,, +1206,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,2300-2400,1234567,996,,50087,,, +1206,CHN,,Handan JGD,,Handan (HB),36.6,114.466667,,10,,7948,54,127,,,,,,50059,,, +1206,CHN,,Ningxia RGD,,Zhongning (NX),37.516122,105.704756,,1,,7372,59,131,,2115-1830,1234567,,,50065,,, +1206,CHN,zh,CNR 2,,Nanning (GX),22.846944,108.3625,,10,,8795,67,133,,2100-1602,1234567,,,36200432,,, +1206,CHN,zh,CNR 2,,Sanming/FJTS701 (FJ),26.242222,117.621289,,10,,9051,58,134,,2100-1602,1234567,,,36200431,,, +1206,THA,th,Thor. Phor. Neung,,Prachuap Khiri Khan (pkk),11.791667,99.8,,10,,9204,80,134,,,,,,50084,,, +1206,TWN,,Taiwan Guangbo Gongsi,,Hsinchu (HCS),24.776344,120.983481,,10,,9377,56,135,,,,,,50086,,, +1206,CHN,zh,Cangzhou RGD Traffic,,Cangzhou (HB),38.275917,116.768333,,1,,7925,51,136,,,,,,36200434,,, +1206,MOZ,pt,Emisso Prov. de Inhambane,,Inhambane (ihb),-23.920389,35.404444,,5,,8912,153,136,,0250-2200,1234567,,,2480,,, +1206,THA,th,Sor. Wor. Thor. (R Thailand),,Satun/Khlong Khut (sat),6.658333,100.088889,,10,,9674,83,136,,2200-1700,1234567,,,50085,,, +1206,CHN,,Huixian JGD,,Huixian (HE),35.466667,113.8,,1,,8010,55,137,,,,,,50060,,, +1206,PHL,,DWAN-AM Traffic R/TeleRadyo,,Makati City/Guadalupe Nuevo (ncr),14.561389,121.043333,,10,,10322,62,138,,2100-1300,......7,,,50082,,, +1206,PHL,,DWAN-AM Traffic R/TeleRadyo,,Makati City/Guadalupe Nuevo (ncr),14.561389,121.043333,,10,,10322,62,138,,2100-1700,123456,,,50082,,, +1206,CHN,,Hubei RGD Sunshine FM,,Xiangfan/Pangongci (HU),32.027778,112.176389,,1,,8219,58,139,,,,,,36200430,,, +1206,CHN,,Weihai RGD Xinwen,,Weihai (SD),37.516667,122.116667,,1,,8270,48,140,,????-1500,1234567,,,50062,,, +1206,CHN,zh,Jiangsu RGD Jinling zhi Sheng,,Nanjing/Gulizhen (JS),31.862533,118.671722,,1,,8601,54,142,,2100-1700,1234567,,,50061,,, +1206,KOR,ko,HLSW KBS 1 R,,Jeongseon (gan),37.382778,128.673611,,1,,8603,44,142,,0000-2400,1234567,,,50077,,, +1206,KOR,,HLQR KBS 1 R,,Cheongsong (gsb),36.4275,129.053611,,1,,8711,44,143,,0000-2400,1234567,,,50076,,, +1206,PHL,,DXRS-AM Radyo Agong,,Surigao City (sdn),9.766667,125.466667,,5,,11032,61,143,,2100-1600,1234567,,,50083,,, +1206,CHN,,Guangdong Weixing Guangbo,,Shenzhen/Shiyan (GD),22.653392,113.895556,,1,,9153,63,144,,,,,,36200004,,, +1206,CHN,,Guangdong Weixing Guangbo,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,,,,,36200429,,, +1206,CHN,,Guangdong Weixing Guangbo,,Zhaoqing (GD),23.05,112.45,,1,,9030,63,144,,,,,,36200428,,, +1206,ROD,xx,R Rodrigues,,Citronelle/Mont Malartic (rod),-19.712778,63.433333,,1,,9698,128,146,,0000-2400,1234567,,,2479,,, +1206,INS,id,PM5CHL R Dirgan Bravo,,Padang (SB-pad),-1,100.416667,,1,,10369,87,148,,????-1600,1234567,,,50072,,, +1206,INS,id,PM3BGW R Histori,,Karawang (JB-kar),-6.316667,107.3,,1,,11304,85,151,,,,40,,50074,,, +1206,INS,id,R Global,,Jakarta (JK),-6.166667,106.833333,,1,,11259,86,151,,,,73,,35400070,,, +1206,AUS,,6BET,,Perth/Bentley (WA),-32.012389,115.890278,,2,,14044,97,157,,0000-2400,1234567,,,50057,,, +1206,AUS,,2GF,,Grafton/Swan Creek (NSW),-29.664333,152.981972,,5,,16314,61,161,,0000-2400,1234567,,,50056,,, +1206,AUS,,2CC,,Canberra/Barton Highway (ACT),-35.214333,149.116806,,5,,16532,72,162,,0000-2400,1234567,,,50055,,, +1206,NZL,,4XO LiveSPORT,,Dunedin/Highcliff (OTA),-45.883333,170.583333,,2,,18673,65,173,,,,,,50080,,, +1206,NZL,,1XHC Community Access R,,Hamilton/Newstead (WKO),-37.783333,175.344444,,0.5,,18204,33,177,,,,,,50081,,, +1210,CAN,,VOAR,,Saint John's (NL),47.534722,-52.821111,,10,,4160,287,89,,,,7,,40614,,, +1210,RUS,,G,b,Tretyakovo/Luhovitsi (MO),54.895833,39.041667,,0.025,,2160,69,95,,,,,,85882,,, +1210,RUS,,IO,b,Kirovsk / Apatity (MU),67.479167,33.625,,0.025,,2252,30,95,,,,,,85883,,, +1210,RUS,,R,b,Tretyakovo/Luhovitsi (MO),54.895833,38.958333,,0.025,,2155,69,95,,,,,,85885,,, +1210,RUS,,PR,b,Peredovaya,44.104167,41.458333,,0.025,,2719,95,100,,,,999,L1025 U1029 ,ID+5 gap,85884,, +1210,USA,en,WPHT,i,Philadelphia (PA),39.979444,-74.986944,,50,,6085,292,101,,,,9998,,42687,,, +1210,USA,,WJNL,,Kingsley (MI),44.559444,-85.593611,,50,,6385,302,104,,,,,,42146,,, +1210,KAZ,,UN,b,Arkalyk (qos),50.3125,66.958333,,0.025,,4098,68,114,,,,,,IDx2 + 15.2 gap,85886,, +1210,USA,,WANB,,Waynesburg (PA),39.87,-80.133611,,5,,6416,295,114,,,,,,40722,,, +1210,USA,en,WSBI,,Static (TN),36.622778,-85.0875,,10,,6977,296,117,,1300-0100,1234567,,,42957,,, +1210,USA,,WDGR,,Dahlonega (GA),34.529167,-84.006389,,10,,7079,293,118,,1200-2400,1234567,41,,41157,,, +1210,USA,,WILY,,Centralia (DC) (IL),38.481944,-89.148889,,10,,7073,300,118,,1300-0100,1234567,,,20012533,,, +1210,USA,es,KMIA,,Auburn-Federal Way (D) (WA),47.305556,-122.248056,,28,,7933,326,122,,,,,,20016024,,, +1210,PTR,,WHOY,,Salinas (D) (PR),17.975406,-66.303689,,5,,7266,268,123,,0900-0200,1234567,,,41682,,, +1210,PTR,,WHOY,,Salinas (N) (PR),17.975406,-66.303689,,5,,7266,268,123,,,,,,20016273,,, +1210,USA,,WDAO,,Dayton (OH),39.726667,-84.206389,,1,,6677,297,124,,,,,,41123,,, +1210,CUB,es,R Sancti Spritus,,Sancti Spritus/CTOM1 (ss),21.929769,-79.414564,,10,,7823,281,125,,,,,,31600114,,, +1210,VEN,,YVZT R Anzotegui,,Barcelona (azg),10.156217,-64.701728,,10,,7832,261,125,,0000-2400,1234567,998,,45490,,, +1210,B,pt,ZYJ620 Rdio Vale do Potengi,,So Paulo do Potengi (RN),-5.891667,-35.761111,,5,,7581,226,126,,,,,,36901999,,, +1210,USA,,KGYN,,Guymon (OK),36.676111,-101.382778,,10,,7927,306,126,,,,6,,38524,,, +1210,USA,es,KMIA,,Auburn-Federal Way (N) (WA),47.3,-122.188056,,10,,7931,326,126,,,,,,20016023,,, +1210,USA,,KOKK,,Huron (SD),44.362222,-98.1525,,0.87,,7095,310,129,,,,,,39075,,, +1210,USA,es,WNMA,,Miami Springs (FL),25.9,-80.363611,,2.5,,7553,284,129,,,,,,42482,,, +1210,CLM,es,HJBE La Carinosa,,Ccuta (nsa),7.783333,-72.466667,,10,,8566,266,132,,,,,,37344,,, +1210,DOM,,HIAH R VEN Voz Evangelica Nacional,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,1000-0400,123456,,,52244,,, +1210,DOM,,HIAH R VEN Voz Evangelica Nacional,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,1100-2300,......7,,,52244,,, +1210,CAN,en,CFYM,,Kindersley (SK),51.451389,-109.145556,,0.25,,7019,321,133,,,,3,,36027,,, +1210,HTI,,R Plus,,Port-au-Prince (oue),18.516667,-72.333333,,1,,7632,273,133,,,,,,35649,,, +1210,USA,,KUBR,,San Juan (D) (TX),26.244722,-98.090278,,10,,8653,297,133,,,,,,39565,,, +1210,CAN,en,CBAK,,Aklavik (NT),68.222222,-135.028056,,0.04,,6261,344,134,,,,,,20109158,,, +1210,CLM,es,HJBQ RCN,,Pereira (ris),4.766667,-75.766667,,10,,9055,267,134,,,,995,,37431,,, +1210,CLM,es,HJFR,,Neiva (hui),2.783333,-75.316667,,10,,9199,265,134,,,,,,37442,,, +1210,USA,,KHAT,,Laramie (WY),41.255278,-105.550278,,1,,7745,312,134,,,,2,,38528,,, +1210,USA,,KPRZ,,San Marcos/Canyon de Oro (CA),33.069444,-117.193056,,10,,9075,315,134,,,,2,,39167,,, +1210,USA,en,WLRO,,Denham Springs (LA),30.522222,-90.970833,,1,,7846,295,135,,,,,,43014,,, +1210,B,pt,ZYI786 Rdio Jornal,,Garanhuns (PE),-8.882472,-36.476614,,1,,7914,225,136,,,,,,36901998,,, +1210,USA,,KEBR,,Rocklin (D) (CA),38.462778,-121.130278,,5,,8739,321,136,,,,37,,38311,,, +1210,USA,,KQEQ,,Fowler (D) (CA),36.770556,-119.922222,,5,,8848,319,136,,,,94,,20012589,,, +1210,USA,,KUBR,,San Juan (N) (TX),26.243889,-98.090278,,5,,8653,297,136,,,,,,20012607,,, +1210,DOM,,HICJ R Merengue,,San Francisco de Macors (dua),19.3,-70.25,,0.25,,7423,272,137,,,,,,37229,,, +1210,EQA,,HCVC3,,Loja (loj),-3.966667,-79.2,,10,,10057,264,137,,,,,,37158,,, +1210,GTM,,TGMX Coco R,,Ciudad de Guatemala (gut),14.616667,-90.65,,5,,9202,285,137,,0000-2400,1234567,,,40519,,, +1210,MEX,,XECOPA-AM,,Copainal (cps),17.077989,-93.217111,,5,,9154,288,137,,,,,,34900027,,, +1210,USA,,WMPS,,Bartlett (TN),35.261111,-89.830556,,0.25,,7378,298,137,,,,,,42378,,, +1210,PNR,es,HOE91 R 10,,La Gloria Bethania (pnm),9.016389,-79.530278,,4,,8941,272,138,,,,,,37680,,, +1210,B,pt,ZYK240 Catedral AM,,Esteio/Rua So Lourenco (RS),-29.896389,-51.228056,,10,,10699,227,139,,,,,,36902009,,, +1210,B,pt,ZYK545 Rdio Bandeirantes,,Araatuba (SP),-21.172847,-50.421733,,5,,9827,231,139,,,,,,36902002,,, +1210,B,pt,ZYH452 Rdio Povo,,Feira de Santana (BA),-12.250053,-38.9371,,1,,8369,226,141,,,,,,36902004,,, +1210,B,pt,ZYH637 Rdio Princpe Imperial,,Crates (CE),-5.183475,-40.67925,,0.25,,7762,231,141,,,,,,36902003,,, +1210,B,pt,ZYJ219 Super Rdio Deus Amor,,Curitiba/Corpo de Bombeiros (PR),-25.448639,-49.125139,,5,,10169,228,141,,,,,,36902006,,, +1210,HND,,HRAV,,Santa Barbara (bar),14.9,-88.216667,,2,,9016,283,141,,,,,,37739,,, +1210,B,pt,ZYH641 RBE-Rdio Boa Esperana,,Barro (CE),-7.171678,-38.774236,,0.25,,7858,228,142,,,,,,36902001,,, +1210,USA,,KRSV,,Afton (WY),42.722778,-110.960833,,0.25,,7878,316,142,,,,998,,39297,,, +1210,USA,en,WPFD894,,Oshkosh (WI),43.977194,-88.57765,,0.01,,6601,304,143,,,,,,20010637,,, +1210,USA,en,WQAC662,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010638,,, +1210,USA,es,KEVT,,Sahuarita/Tucson (AZ),32.034444,-110.945833,,1,,8859,310,143,,,,13,,39205,,, +1210,CLM,,R Reloj,,,4.45,-74.4,,1,,8990,265,144,,,,986,,52498,,, +1210,HND,,HRRO,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37839,,, +1210,B,pt,ZYI200 Rdio Sim Cachoeiro,,Cachoeiro de Itapemirim (ES),-20.844444,-41.140528,,1,,9327,224,145,,,,99,,36902011,,, +1210,MEX,es,XEITC-AM,,Celaya (gua),20.536944,-100.813333,,1,,9327,296,145,,,,,,44183,,, +1210,MEX,es,XEPUE-AM Mexicana,,Puebla/Av.15 de Mayo 2939 (pue),19.063142,-98.214644,,1,,9298,293,145,,,,,,44581,,, +1210,USA,en,WPSL489,,North Wilkesboro (NC),36.166667,-81.15,,0.01,,6768,293,145,,,,,,20010635,,, +1210,ARG,,LRI229 R Las Flores,,Las Flores (sj),-30.216667,-69.2,,5,,11718,240,146,,0900-0300,1234567,,,51833,,, +1210,EQA,,HCJM6,,Sira (tun),-1.216667,-78.616667,,1,,9775,265,146,,,,,,36989,,, +1210,USA,,KEBR,,Rocklin (N) (CA),38.730833,-121.318889,,0.5,,8721,321,146,,,,,,20012570,,, +1210,B,pt,ZYH711 Super Rdio Braslia,,Braslia/Parque Ceilndia (DF),-15.789644,-48.049747,,0.5,,9185,232,147,,,,,,36902005,,, +1210,B,pt,ZYJ325 Rdio Brotense AM,,Porecatu (PR),-22.75,-51.4,,1,,10030,231,147,,,,,,36901996,,, +1210,EQA,,HCBJ2,,El Mundo (gua),-2.166667,-79.866667,,1,,9944,266,147,,,,,,36863,,, +1210,SLV,,YSCG,,La Paz (paz),13.488503,-88.873328,,0.5,,9183,282,147,,,,,,45268,,, +1210,PRU,,OAX2Q R Universo,,Trujillo (lal),-7.216667,-79.416667,,1,,10357,262,148,,,,,,40285,,, +1210,PRU,,OAX7M R Quillabamba,,Santa Ana (cus),-12.816667,-72.666667,,1,,10400,254,148,,,,,,40347,,, +1210,USA,,KQEQ,,Fowler (N) (CA),36.660278,-119.683611,,0.37,,8848,319,148,,,,9450,,39191,,, +1210,USA,en,KHKR,,Washington (UT),37.143889,-113.500833,,0.25,,8513,315,148,,,,9933,,39581,,, +1210,USA,en,WQES965,,Urbandale/3470 86th Street (IA),41.628833,-93.744303,,0.01,,7081,305,148,,,,,,20010636,,, +1210,B,pt,ZYH498 Rdio Cano Nova,,Vitria da Conquista (BA),-14.880906,-40.834439,,0.25,,8723,226,149,,,,,,36902007,,, +1210,B,pt,ZYL238 Rdio Clube de Varginha,,Varginha (MG),-21.581583,-45.457539,,0.5,,9610,227,149,,,,95,,36901995,,, +1210,B,,ZYK317,,Uruguaiana (RS),-29.766667,-57.066667,,1,,10991,232,150,,,,,,46344,,, +1210,EQA,,HCMD4,,Santa Ana (man),-1.216667,-80.366667,,0.5,,9894,267,150,,,,,,37020,,, +1210,URG,,CX121 Difusora Soriano,,Mercedes (so),-33.25,-58,,1,,11361,230,151,,0000-2400,1234567,,,36786,,, +1210,ARG,,R Mailin,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,51834,,, +1210,ARG,es,R del Promesero,,Jos Clemente Paz (ba),-34.5,-58.75,,1,,11515,230,152,,,,,,33000088,,, +1210,B,pt,ZYK353 RBN-Rdio Blau Nunes,,Santa Brbara do Sul (RS),-28.358611,-53.2475,,0.5,,10658,230,152,,,,,,36901997,,, +1210,B,pt,ZYK509 Vida Nova AM,,Jaboticabal (SP),-21.2625,-48.306944,,0.25,,9725,230,152,,,,,,36902010,,, +1210,B,pt,ZYK668 Rdio Emissora Vanguarda,,Sorocaba/Rua Margarida Izar 122 (SP),-23.498303,-47.432039,,0.25,,9895,228,153,,,,,,36902000,,, +1210,HWA,ja,KZOO,,Honolulu (HI),21.294722,-157.863611,,1,,11711,345,153,,1530-1000,1234567,998,,39903,,, +1210,USA,,WILY,,Centralia (N) (IL),38.524444,-89.134167,,0.003,,7069,300,153,,0100-1300,1234567,,,41759,,, +1210,CHL,,CB121 R Valparaiso,,Via del Mar (Valparaso) (VS),-33.033333,-71.566667,,1,,12103,240,154,,0930-0600,1234567,,,35726,,, +1210,B,pt,ZYJ785 Rdio Super Santa,,Tubaro (SC),-28.508889,-49.006944,,0.25,,10456,226,155,,,,,,36902008,,, +1210,CHL,,CC121 R Universidad de Talca,,Talca (ML),-35.466667,-71.666667,,1,,12317,238,155,,1100-0400,1234567,,,35806,,, +1210,USA,,WTXK,,Pike Road (AL),32.2925,-86.217222,,0.003,,7401,293,156,,,,,,20016054,,, +1210,CHL,,CD121 R Armonia,,Puerto Montt (LL),-41.45,-72.95,,1,,12892,235,157,,,,,,35858,,, +1210,URG,es,CW121 El Libertador,,Vergara (tt),-32.966667,-53.966667,,0.25,,11127,228,157,,0830-0300,1234567,,,36724,,, +1210,URG,,CV121 R RBC,,Piriapolis (ma),-34.867778,-55.251944,,0.25,,11368,228,158,,0000-2400,1234567,,,36743,,, +1215,RUS,ru,Vesti FM,,Bolshakovo (KA),54.905689,21.694433,,1200,,1055,67,37,,0000-2400,1234567,0,,1120,,, +1215,G,en,Absolute R,,Brookmans Park/4 wire T aerial (EN-HTS),51.727778,-0.176389,,130,,454,267,40,,0000-2400,1234567,0,,1115,,, +1215,G,en,Absolute R,,Moorside Edge (EN-WYK),53.63525,-1.8945,,200,,582,290,40,,0000-2400,1234567,0,,1117,,, +1215,G,en,Absolute R,,Droitwich/Mast C-D (EN-WOR),52.298667,-2.105389,,110,,580,275,42,,0000-2400,1234567,0,,1116,,, +1215,G,en,Absolute R,,Washford (EN-SOM),51.161389,-3.347944,,100,,681,265,44,,0000-2400,1234567,0,,1113,,, +1215,G,en,Absolute R,,Westerglen (SC-STL),55.975556,-3.816111,,100,,793,307,45,,0000-2400,1234567,0,,1114,,, +1215,ALB,en,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,0700-0900,1234567,336,,1098,,, +1215,ALB,eo,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,1700-1800,1234567,336,,1098,,, +1215,ALB,ro,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,1800-1900,1234567,336,,1098,,, +1215,ALB,sq,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,1600-1700,1234567,336,,1098,,, +1215,ALB,sr,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,2200-2300,1234567,336,,1098,,, +1215,G,en,Absolute R,,Lisnagarvey (NI-ANT),54.490833,-6.060833,,16,,869,293,54,,0000-2400,1234567,,,1112,,, +1215,G,en,Absolute R,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,2.2,,613,304,60,,0000-2400,1234567,,,1110,,, +1215,G,en,Absolute R,,Postwick (EN-NFK),52.626944,1.402778,,1.2,,345,282,60,,0000-2400,1234567,,,1109,,, +1215,E,es,COPE,,Len (CAL-LE),42.624094,-5.582622,,10,,1385,225,61,,0000-2400,1234567,,,1102,,, +1215,G,en,Absolute R,,Aberdeen/Redmoss (SC-ABC),57.113583,-2.094583,,2.3,,780,319,61,,0000-2400,1234567,,,1111,,, +1215,E,es,COPE,,Santander/Soto de la Marina (CNT-S),43.466258,-3.891533,,5,,1229,223,62,,0000-2400,1234567,,,1101,,, +1215,G,en,Absolute R,,Fareham (EN-HPS),50.849306,-1.226833,,1,,547,258,62,,0000-2400,1234567,,,1106,,, +1215,G,en,Absolute R,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0000-2400,1234567,,,1107,,, +1215,G,en,Absolute R,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,1.1,,756,260,64,,0000-2400,1234567,,,1108,,, +1215,E,es,COPE,,Crdoba/Carretera a Sevilla (AND-CO),37.835156,-4.794856,,10,,1811,213,65,,0000-2400,1234567,,,1100,,, +1215,E,es,COPE,,Lorca/Alto de Santa Mara (MUR-MU),37.678611,-1.701667,,5,,1725,205,67,,0000-2400,1234567,,,1103,,, +1215,G,en,Absolute R,,Hull/Paull (EN-EYK),53.716028,-0.229778,,0.32,,479,294,67,,0000-2400,1234567,,,1105,,, +1215,IRN,fa,IRIB R Mazandaran,,Chalus (mzd),36.678278,51.436589,,50,195,3888,98,79,,0230-2130,1234567,,,1803,,, +1215,IRQ,ar,Republic of Iraq R,,Tikrit (sad),34.605556,43.661389,,10,,3528,109,82,,0000-2400,1234567,,,10500002,,, +1215,G,en,Absolute R,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-2400,1234567,,,1104,,, +1215,ARS,ar,BSKSA Idha'atu-i Riyadh,,Al-Madinah=Medinah (mdh),24.409678,39.534411,,20,,4158,125,86,,0300-2300,1234567,,,47076,,, +1215,RUS,,WT,b,Kartino,55.604167,37.791667,,0.025,,2076,67,94,,,,,,85888,,, +1215,RUS,,P,b,Ufa (BA),54.604167,55.875,,0.025,,3226,65,105,,,,,,85887,,, +1215,IND,,AIR National Channel,,Delhi C (DL),28.697986,77.212403,,20,,6251,85,107,SAs,1320-0043,1234567,,,50096,,, +1215,NGR,,ORTN La Voix du Sahel,,Tahoua (thu),14.9,5.266667,,0.1,,4139,182,108,,0500-2300,1234567,,,2483,,, +1215,CHN,,Heihe RGD,,Heihe/SARFT913 (HL),50.23,127.519167,,50,,7361,37,114,,2100-1400,1234567,,,36200423,,, +1215,TZA,sw,TBC Taifa,,Arusha (ars),-3.419611,36.71175,,10,,6802,145,115,,0200-2100,1234567,992,,2484,,, +1215,CHN,,Tianshan JGD,,Tianshan (XJ),43.35,88.316667,,1,,5871,65,116,,,,,,50094,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,0015-0345,123456,9949,,50097,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,0025-0430,......7,9949,,50097,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,0610-1000,123456,9949,,50097,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,0630-1100,......7,9949,,50097,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,1200-1740,1234567,9949,,50097,,, +1215,CHN,zh,CNR 2,,Shenyang/SARFT033 (LN),41.625278,123.300556,,20,,7955,45,124,,2058-1602,1234567,,,50093,,, +1215,BOT,,R Botswana,,Mahalapye (ce),-23.141667,26.825833,,50,,8600,161,125,,0000-2400,1234567,,,2482,,, +1215,CHN,,CNR 7 Huaxia zhi Sheng,,Zhuhai/GDTS909 (GD),22.38255,113.557286,,50,,9157,63,127,,,,,,36200001,,, +1215,CHN,zh,CNR 2,,Dandong (LN),40.116667,124.366667,,10,,8144,45,128,,2058-1602,1234567,,,36201040,,, +1215,THA,,Sor. Wor. Thor. (R Thailand),,Surat Thani (stn),9.116667,99.2,,50,,9398,82,128,,2200-1600,1234567,,,50109,,, +1215,CHN,,Hubei RGD Shenghuo Pindao,,Yichang (HU),30.703056,111.228889,,10,,8280,60,130,,,,,,36200427,,, +1215,CHN,zh,Hubei RGD Chutian Weixing,,Xiantao (HU),30.383333,113.4,,10,,8435,58,131,,,,,,36200426,,, +1215,CHN,zh,CNR 2,,unknown,34.95,104.5,,1,,7515,61,132,,2058-1602,1234567,,,36201039,,, +1215,KOR,ko,HLAK MBC,,Jinju/Myeongseok (gsn),35.219444,128.024167,,10,,8776,45,133,,0000-2400,1234567,,,50104,,, +1215,THA,th,Kor. Wor. Sor. 2,,Phrae/Yantrakitkoson Rd (pre),18.06075,100.081222,,10,,8677,76,133,,????-1700,1234567,,,50108,,, +1215,THA,th,Thor. Phor. Song,,Ubon Ratchathani (urt),15.193889,104.879722,,10,,9244,74,135,,,,,,50110,,, +1215,PHL,,DYRF-AM Radyo Fuerza,,Cebu City/Mambaling (ceb),10.286411,123.876278,,10,,10888,62,140,,2100-1400,1234567,,,50106,,, +1215,INS,id,RRI Pro-1,,Samarinda (KI-sam),-0.467917,117.009056,,10,,11437,74,142,,2100-1600,1234567,,,50099,,, +1215,CHN,zh,CNR 1,,Jingdezhen (JX),29.269111,117.176278,,1,,8751,56,143,,2025-1805,1234567,,,36200425,,, +1215,J,ja,JOBO KBS Kinki Hoso,,Maizuru/Chitose (kns-kyo),35.535556,135.341667,,1,,9083,40,144,,0000-1600,......7,9999,,50102,,, +1215,J,ja,JOBO KBS Kinki Hoso,,Maizuru/Chitose (kns-kyo),35.535556,135.341667,,1,,9083,40,144,,0000-2400,123456,9999,,50102,,, +1215,J,ja,JOBO KBS Kinki Hoso,,Maizuru/Chitose (kns-kyo),35.535556,135.341667,,1,,9083,40,144,,2000-2400,......7,9999,,50102,,, +1215,J,ja,JOBW KBS Kinki Hoso,,Hikone/Mitsuya-cho (kns-shi),35.245,136.188333,,1,,9148,39,144,,0000-1600,......7,,,50100,,, +1215,J,ja,JOBW KBS Kinki Hoso,,Hikone/Mitsuya-cho (kns-shi),35.245,136.188333,,1,,9148,39,144,,0000-2400,123456,,,50100,,, +1215,J,ja,JOBW KBS Kinki Hoso,,Hikone/Mitsuya-cho (kns-shi),35.245,136.188333,,1,,9148,39,144,,2000-2400,......7,,,50100,,, +1215,TWN,,Tien Sheng Kuangpo Tientai,,Yuanli (ML),24.45,120.65,,1,,9388,57,145,,,,,,50112,,, +1215,J,,JOGE RAB, Aomori Hoso,,Hirosaki (toh-aom),40.616667,140.483333,,0.5,,8793,34,146,,0000-2400,1234567,7,,50101,, +1215,INS,id,RRI Pro-3,,Bandung/Gede Bage (JB-ban),-6.952178,107.688222,,1,,11386,85,152,,1130-????,1234567,,,50724,,, +1215,INS,id,RRI Pro-3,,Bandung/Gede Bage (JB-ban),-6.952178,107.688222,,1,,11386,85,152,,2200-????,1234567,,,50724,,, +1215,J,ja,TBC, Tohoku Hoso,,Shizugawa (toh-miy),38.666667,141.45,,0.1,,9024,34,154,,0000-1600,......7,,,50103,, +1215,J,ja,TBC, Tohoku Hoso,,Shizugawa (toh-miy),38.666667,141.45,,0.1,,9024,34,154,,0000-2400,123456,,,50103,, +1215,J,ja,TBC, Tohoku Hoso,,Shizugawa (toh-miy),38.666667,141.45,,0.1,,9024,34,154,,2000-2400,......7,,,50103,, +1215,AUS,en,6NM ABC Midwest & Wheatbelt,,Northam (WA),-31.661389,116.681667,,0.5,,14070,96,163,,0000-2400,1234567,,,50091,,, +1215,AUS,,4HI/t Zinc HI,,Moranbah (QLD),-22.001944,148.024444,,0.3,,15334,59,170,,0000-2400,1234567,,,50090,,, +1215,NZL,,1ZE Newstalk ZB,,Kaikohe/Ohaeawai (NTL),-35.361111,173.874167,,2,,17905,33,170,,,,,,50105,,, +1215,AUS,,2TAB Racing R,,Bowral/Moss Vale (NSW),-34.541889,150.353639,,0.4,,16559,70,173,,,,,,50089,,, +1220,USA,,WHKW,,Cleveland (OH),41.307222,-81.689167,,50,,6402,297,104,,,,32,,41650,,, +1220,ARM,,AND,b,Andranik (Urtsalanj) (arr),39.830278,44.9925,,0.025,,3231,100,105,,,,,L1219 U1221 ,86817,,, +1220,CAN,en,CJRB,,Boissevain (MB),49.257222,-100.057222,,10,,6787,314,115,,,,1,,36206,,, +1220,USA,en,WWSF,,Sanford (ME),43.431389,-70.762222,,0.234,,5570,293,119,,,,,,42688,,, +1220,USA,en,WQUN,,Hamden (CT),41.377222,-72.928889,,0.305,,5852,292,121,,,,,,42801,,, +1220,USA,,WSTL,,Providence (RI),41.820833,-71.385278,,0.166,,5723,291,122,,,,,,42852,,, +1220,USA,,WZBK,i,Keene (NH),42.930556,-72.3,,0.146,,5702,293,122,,,,,,43567,,, +1220,B,pt,ZYJ458 Rdio Globo,,Rio de Janeiro/Ilha do Pontal (RJ),-22.8225,-43.096389,,150,,9616,225,124,,,,16,,36902012,,, +1220,USA,,WGNY,,Newburgh (NY),41.531389,-74.113333,,0.18,,5916,293,124,,,,,,41540,,, +1220,USA,es,WREV,,Reidsville (NC),36.388611,-79.6475,,1,,6656,292,124,,1200-2400,1234567,,,42837,,, +1220,MEX,es,XEB-AM La B Grande,,Mxico D.F/San Lorenzo Tezonco (dif),19.309406,-99.059247,,100,,9329,294,125,,,,,,43754,,, +1220,VEN,,YVZO R Aeropuerto 1220,,Maracaibo (zul),10.766667,-71.566667,,20,,8245,267,126,,0000-2400,1234567,,,51694,,, +1220,CUB,es,R Caribe,,La Fe (ij),21.7136,-82.760747,,10,,8065,283,128,,,,,,31600080,,, +1220,USA,,WLPO,,Lasalle (IL),41.303889,-89.095556,,0.5,,6842,302,128,,,,,,42216,,, +1220,VEN,,YVRD LV de Apure,,San Fernando de Apure (apu),7.833333,-67.5,,10,,8225,262,129,,,,1,,45441,,, +1220,USA,,KLBB,,Stillwater (MN),45.054167,-92.828333,,0.254,,6753,307,130,,,,,,42320,,, +1220,VEN,,YVAP,,Maracaibo (zul),10.666667,-71.666667,,10,,8261,267,130,,,,,,45338,,, +1220,USA,,KDDR,,Oakes (ND),46.123056,-98.089167,,0.327,,6946,311,131,,,,,,38247,,, +1220,VEN,,YVVM R Venezuela,,Valencia (cbb),10.183333,-68,,5,,8053,264,131,,,,998,,51693,,, +1220,DOM,,HIN R Bemba,,Santo Domingo (sdo),18.566667,-69.866667,,1,,7459,271,132,,,,,,37279,,, +1220,USA,,WJUN,,Mexico (PA),40.535,-77.340556,,0.046,,6192,294,132,,,,,,41938,,, +1220,CLM,es,HJAV RCN,,Montera (cor),8.8,-75.833333,,10,,8707,269,133,,,,998,,37337,,, +1220,CLM,es,HJMT RCN,,San Gil (sat),6.5,-73.116667,,10,,8723,266,133,,,,,,37574,,, +1220,HTI,,Voix du Plateau Central,,Hinche (cen),19.141667,-72.005556,,1,,7557,273,133,,,,,,52117,,, +1220,USA,,WENC,,Whiteville (NC),34.308333,-78.716667,,0.152,,6760,289,133,,,,,,41304,,, +1220,USA,,WFAX,,Falls Church (VA),38.879722,-77.171667,,0.048,,6306,292,133,,,,,,41359,,, +1220,CLM,es,HJKR R Maria,,Bogot D. C. (bdc),4.75,-74.116667,,10,,8944,265,134,,,,,,37531,,, +1220,USA,,WKRS,,Waukegan (IL),42.349722,-87.881389,,0.09,,6689,302,134,,,,,,42066,,, +1220,CLM,es,HJFF,,Barranquilla (atl),10.866667,-74.766667,,5,,8455,270,135,,,,,,37445,,, +1220,CLM,es,HJNM R Viva,,Ipiales (nar),0.866667,-77.666667,,10,,9527,266,135,,,,,,37591,,, +1220,USA,,KQMG,,Independence (IA),42.475556,-91.873889,,0.134,,6907,304,135,,,,,,39198,,, +1220,USA,,WBCH,,Hastings (MI),42.626111,-85.278056,,0.048,,6515,300,135,,,,,,40822,,, +1220,USA,es,WDYT,,Kings Mountain (NC),35.286667,-81.174444,,0.106,,6840,292,135,,,,,,42046,,, +1220,MEX,es,XESAL-AM,,Saltillo (coa),25.348261,-101.025872,,4.5,,8909,299,137,,,,,,44729,,, +1220,PNR,es,Asamblea Nacional,,Santiago/La Pea (vrg),8.128056,-81.024167,,5,,9120,273,137,,,,,,35100007,,, +1220,USA,,WAXO,,Lewisburg (TN),35.428333,-86.772778,,0.144,,7178,296,137,,,,,,40783,,, +1220,USA,,WCPH,,Etowah (TN),35.320833,-84.509444,,0.109,,7046,294,137,,,,,,41065,,, +1220,USA,,WSLM,,Salem (IN),38.615278,-86.086111,,0.082,,6879,298,137,,,,,,43020,,, +1220,USA,,KGIR,,Cape Girardeau (MO),37.300833,-89.490833,,0.137,,7190,299,138,,,,,,38484,,, +1220,USA,,KLPW,,Union (MO),38.4825,-91.044167,,0.126,,7185,301,138,,,,,,38842,,, +1220,USA,,WERT,,Van Wert (OH),40.871944,-84.554167,,0.029,,6608,299,138,,,,,,41323,,, +1220,USA,,WFKN,,Franklin (KY),36.738889,-86.578333,,0.09,,7059,297,138,,,,,,41392,,, +1220,USA,,WFWL,,Camden (TN),36.052778,-88.0875,,0.14,,7207,297,138,,,,,,41459,,, +1220,EQA,,HCAP1 Sistema de Rdifusoras Maraon,,Quito (pic),-0.166667,-78.466667,,5,,9673,266,139,,,,,,36851,,, +1220,USA,,WLSD,,Big Stone Gap (VA),36.840556,-82.737222,,0.045,,6814,294,139,,,,,,42232,,, +1220,USA,,WZOT,,Rockmart (GA),34.003889,-85.056111,,0.103,,7187,293,139,,,,,,43587,,, +1220,USA,,KJAN,,Atlantic (IA),41.417222,-95.004167,,0.062,,7169,305,141,,,,,,38657,,, +1220,USA,,KTLV,,Midwest City (OK),35.397222,-97.451111,,0.25,,7816,303,141,,,,,,39506,,, +1220,USA,,WOTS,,Kissimmee (FL),28.324167,-81.395556,,0.11,,7420,287,141,,,,,,42628,,, +1220,USA,en,WSRQ,,Sarasota (FL),27.324167,-82.496389,,0.159,,7575,287,141,,,,,,41719,,, +1220,USA,,WAYE,,Birmingham (AL),33.4775,-86.849167,,0.075,,7343,294,142,,,,,,40785,,, +1220,HND,,HRRD4,,Gualaco (ola),15.066667,-86.166667,,1,,8864,281,143,,,,,,37835,,, +1220,PRU,es,OAX6X R Melodia,,Arequipa (are),-16.4,-71.533333,,4,,10644,251,143,,0000-2400,1234567,45,,37000025,,, +1220,USA,en,WPIZ762,,Durham/4900 Prospectus Drive (NC),35.898472,-78.893056,,0.01,,6646,291,143,,,,,,20010639,,, +1220,CTR,,TIQ R Casino,,Limon (lmn),9.992264,-83.055567,,1,,9096,276,144,,1030-0600,1234567,,,40599,,, +1220,HND,,HRHH2,,San Pedro Sula (cor),15.533333,-88.016667,,1,,8947,283,144,,,,,,37767,,, +1220,HND,,HRQL2,,Siguatepeque (cmy),14.5,-87.866667,,1,,9027,282,144,,,,,,37829,,, +1220,NCG,,YNVA R America,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,1200-0400,1234567,,,52222,,, +1220,USA,,WJAX,,Jacksonville (FL),30.325,-81.570833,,0.036,,7266,288,144,,,,,,41841,,, +1220,ARG,es,LRL328 Cadena Eco,,Buenos Aires (df),-34.616667,-58.466667,,5,,11511,230,145,,0000-2400,1234567,,,51835,,, +1220,USA,,KOFO,,Ottawa (KS),38.584444,-95.265833,,0.04,,7420,304,145,,,,,,39060,,, +1220,USA,,KOMC,,Branson (MO),36.718889,-93.238889,,0.044,,7460,301,145,,,,,,39085,,, +1220,USA,,KZEE,,Weatherford (TX),32.788056,-97.7925,,0.2,,8062,301,145,,,,,,39885,,, +1220,EQA,,HCBJ2,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,,,,,36864,,, +1220,GTM,,TGMT R Amiga,,Antigua (sap),14.566667,-90.75,,0.5,,9213,285,147,,1100-0300,1234567,,,40517,,, +1220,USA,,KHTS,,Canyon Country (CA),34.465278,-118.401944,,0.5,,9000,317,147,,,,990,,38566,,, +1220,USA,,KVSA,,McGehee (AR),33.560833,-91.385,,0.04,,7614,297,147,,,,,,39666,,, +1220,USA,en,KPJC,,Salem (OR),44.951389,-122.969444,,0.171,,8187,325,147,,,,999,,38136,,, +1220,BOL,,CP67 R Splendid,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,0900-0100,1234567,,,52009,,, +1220,BOL,,R El Condor,,Arque (cbb),-17.8,-66.383333,,1,,10443,246,148,,,,,,52010,,, +1220,PRU,,OCX1X R Libertad,,Chiclayo (lam),-6.766667,-79.85,,1,,10347,263,148,,,,93,,52453,,, +1220,BOL,,CP162 R Batalln Topter,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1000-0200,12345..,,,36659,,, +1220,BOL,,CP162 R Batalln Topter,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1000-2300,.....6.,,,36659,,, +1220,BOL,,CP162 R Batalln Topter,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1100-2300,......7,,,36659,,, +1220,EQA,,HCJM6,,Ambato (tun),-1.25,-78.616667,,0.5,,9778,265,149,,,,,,36990,,, +1220,PRU,es,R F,,Lima (lim),-12.05,-77.05,,1,,10622,257,149,,,,2,,37000102,,, +1220,USA,,WABF,,Fairhope (AL),30.510833,-87.903611,,0.03,,7655,293,149,,,,,,40625,,, +1220,USA,,WOEG,,Hazlehurst (MS),31.8925,-90.402222,,0.033,,7695,296,149,,,,,,42567,,, +1220,ARG,,R del Norte,,Presidencia Roque Saenz Pena (cc),-26.783333,-60.45,,1,,10904,236,150,,,,,,51836,,, +1220,URG,,CX122 R Reconquista,,Rivera (rv),-30.883333,-55.533333,,1,,11013,230,150,,0945-0300,1234567,,,51720,,, +1220,USA,,KWKU,,Pomona (CA),34.019722,-117.7175,,0.25,,9010,316,150,,,,,,39722,,, +1220,USA,,KDOW,,Palo Alto (CA),37.484444,-122.134444,,0.145,,8877,321,152,,,,9993,,39023,,, +1220,USA,,KLDC,,Denver (CO),39.683333,-105.006667,,0.011,,7856,311,155,,,,,,38860,,, +1220,USA,,KM2XVL,,Huntsville (TX),30.718611,-95.527778,,0.011,,8107,298,158,,,,,,38870,,, +1220,USA,,KMVL,,Madisonville (TX),30.965556,-95.897778,,0.011,,8108,299,158,,,,84,,38947,,, +1220,CHL,,CD122 R Santa Maria de Guadalupe,,Temuco (MA),-51.716667,-72.5,,1,,13690,227,159,,,,,,35860,,, +1224,HOL,nl,R Paradijs,,Utrecht (utr),52.1178,5.08085,,0.02,,91,271,54,,0000-2400,1234567,,,3800010,,, +1224,E,es,COPE,,Lleida=Lrida (CAT-L),41.594556,0.635703,,5,,1248,203,63,,0000-2400,1234567,1,,1126,,, +1224,E,es,COPE,,Palma/Son Espanyol (BAL-ML),39.630478,2.643472,,5,,1417,193,64,,0000-2400,1234567,4,,1129,,, +1224,E,es,COPE,,Albacete (CAM-AB),39.030192,-1.84655,,5,,1588,207,66,,0000-2400,1234567,,,1123,,, +1224,E,es,COPE,,Huelva/Marismas del Oldiel (AND-H),37.26275,-7.000167,,10,,1955,218,67,,0000-2400,1234567,,,1125,,, +1224,E,es,COPE,,Almera (AND-AL),36.865125,-2.4473,,5,,1832,206,68,,0000-2400,1234567,,,1124,,, +1224,E,es,COPE,,Lugo (GAL-LU),42.982789,-7.553875,,2,,1454,231,69,,0000-2400,1234567,,,1127,,, +1224,ISR,he,Galei Zahal,,Mishmar HaNegev (hdm),31.366667,34.719444,,20,,3253,124,77,,0000-2400,1234567,998,,1132,,, +1224,IRN,ar,IRIB WS,,Kish (hrg),26.565278,53.930417,,400,210,4851,107,80,,0000-2400,1234567,6,,10800011,,, +1224,IND,,AIR R Kashmir/Yuv Vani,,Srinagar C (JK),34.029528,74.906486,,10,,5680,82,104,,0105-0400,1234567,,,50124,,, +1224,IND,,AIR R Kashmir/Yuv Vani,,Srinagar C (JK),34.029528,74.906486,,10,,5680,82,104,,1245-1740,1234567,,,50124,,, +1224,MOZ,,Em Prov de Cabo Delgado,,Pemba (cbg),-12.967278,40.525583,,50,,7943,145,119,,0400-2204,1234567,,,1961,,, +1224,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,Jining/NMTS585 (NM),41.023056,113.073611,,10,,7489,52,122,,,,,,36201306,,, +1224,CHN,,Guangxi JGD Caifu Guangbo,,Nanning/GXTS101 (GX),22.792222,108.191667,,100,,8789,67,123,,2200-1605,1234567,,,50121,,, +1224,RUS,ru,R Dacha,,Khabarovsk (KH),48.511667,135.119444,,10,,7819,33,125,,1300-0900,1234567,,,47036,,, +1224,CHN,,Guangxi JGD Caifu Guangbo,,Yulin/GXTS241 (GX),22.673889,110.195,,50,,8924,65,127,,2200-1605,1234567,,,36200420,,, +1224,KOR,ko,HLAA KBS 3 R,,Gwangju (gwa),35.196389,126.835,,20,,8720,46,130,,2000-1800,1234567,,,50138,,, +1224,CHN,,Dongsheng RGD,,Dongsheng (NM),39.816667,110,,1,,7424,54,131,,,,,,50118,,, +1224,CHN,zh,CNR 1,,Hangjin=Hanggin Qi/NMTS843 (NM),39.845389,108.713278,,1,,7350,55,131,,2025-1805,1234567,,,36200421,,, +1224,CHN,,Guangxi JGD Caifu Guangbo,,Bose/GXTS242 (GX),23.890278,106.608889,,10,,8593,67,132,,2200-1605,1234567,,,36201287,,, +1224,CHN,,Zhenjiang RGD,,Zhenjiang (JS),32.216667,119.433333,,10,,8611,53,132,,,,,,50122,,, +1224,CHN,zh,CNR 1,,Uxin=Wushen/NMTS854 (NM),38.633333,108.820278,,1,,7458,56,132,,2025-1805,1234567,,,36201288,,, +1224,THA,th,Thor. Or. 015,,Chiang Rai/Phahonyothin Rd (cri),19.865,99.821667,,10,,8504,75,132,,2200-1502,1234567,,,50147,,, +1224,J,ja,JOJK NHK1,,Kanazawa (chu-ish),36.534411,136.606139,,10,,9040,38,134,,0000-2400,1234567,,,50135,,, +1224,THA,th,Thor. Or. 04,,Nakhon Sawan/Takhli (nsn),15.2584,100.31,,10,,8936,77,134,,????-1700,1234567,,,50148,,, +1224,CHN,,Guangxi JGD Caifu Guangbo,,Wuzhou (GX),23.482222,111.293611,,7.5,,8921,64,135,,2200-1605,1234567,,,36200688,,, +1224,TWN,,BCC Country Network,,Kaohsiung (KH),22.611017,120.42405,,10,,9544,58,136,,0000-2400,1234567,,,48847,,, +1224,PHL,,DZAG-AM Radyo ng Bayan,,Agoo (lun),16.083333,120.1,,10,,10125,62,137,,,,,,50143,,, +1224,REU,fr,Runion 1re,,Saint-Andr (974),-20.978875,55.648683,,5,,9422,135,138,,0000-2400,1234567,,,2376,,, +1224,PHL,,DWSR-AM,,Lucena City (qzn),13.95,121.6,,5,,10412,62,141,,????-1600,1234567,,,50144,,, +1224,PHL,,DXED-AM (r:DZEC 1062),,Davao City (dvs),7.05,125.583333,,10,,11292,62,141,,2000-1600,1234567,,,50142,,, +1224,PHL,,DWBF-AM Radyo ng Bayan,,Virac (ctd),13.585278,124.208889,,5,,10601,60,142,,,,,,50141,,, +1224,TWN,,Hua Sheng BS-HS R 2,,Taipei (TPS),25.096167,121.521931,,1,,9378,55,145,,,,,,50149,,, +1224,INS,id,PM3CEZ R.Cipta Anindyta Guna,,Binjai (SU-bin),3.6,98.5,,1,,9834,86,146,,,,,,50127,,, +1224,INS,id,R ABC-Angkasa Bahana Citra,,Surakarta (JT-ksu),-7.533333,110.833333,,1,,11651,83,152,,????-1410,1234567,,,50133,,, +1224,INS,id,R Sonata AM,,Bandung (JB-ban),-6.944722,107.645556,,1,,11383,85,152,,,,,,50125,,, +1224,INS,id,RSPDT2 Banyumas,,Purwokerto (JT-ban),-7.433333,109.2,,1,,11531,84,152,,,,,,35400074,,, +1224,J,,NHK R 1,,Tanohata (toh-iwa),39.933333,141.933333,,0.1,,8916,33,153,,,,,,50137,,, +1224,J,ja,NHK R 1,,Sera (chg-hir),34.601389,133.062222,,0.1,,9072,42,154,,0000-2400,1234567,,,50136,,, +1224,MHL,,AFN,,Kwajalein,8.733333,167.738889,,1,,13019,21,157,,0000-2400,1234567,,,50139,,, +1224,AUS,,3EA SBS R,,Melbourne/Graigieburn (VIC),-37.618833,144.933889,,5,,16435,80,161,,0000-2400,1234567,,,50114,,, +1224,AUS,,2RPH,,Sydney/Prospect (NSW),-33.808333,150.915556,,5,,16536,68,162,,0000-2400,1234567,,,50115,,, +1224,NZL,en,4XF LiveSPORT,,Invercargill/Highcliff (STL),-46.418611,168.476667,,2,,18573,71,172,,,,,,50140,,, +1230,CAN,,CFFB,,Iqaluit (NU),63.732222,-68.545278,,1,,4325,317,100,,,,997,,35952,,, +1230,CAN,,CFGN,,Port aux Basques (NL),47.585556,-59.121944,,0.25,,4564,291,109,,,,20,,35956,,, +1230,USA,,WGUY,,Veazie (ME),44.847222,-68.68,,0.64,,5342,293,112,,,,,,20016095,,, +1230,USA,en,WMOU,,Berlin (NH),44.459167,-71.173611,,1,,5525,294,112,,,,,,42371,,, +1230,USA,,WJOY,,Burlington (VT),44.450833,-73.1975,,1,,5651,295,114,,,,23,,41918,,, +1230,USA,,WNEB,,Worcester (MA),42.273056,-71.823056,,1,,5718,292,114,,,,,,42455,,, +1230,USA,,WTSV,,Claremont (NH),43.370833,-72.328333,,1,,5672,293,114,,,,,,43219,,, +1230,USA,,WHUC,,Hudson (NY),42.253611,-73.7625,,1,,5842,293,115,,,,968,,41696,,, +1230,USA,,WMML,,Glens Falls (DN) (NY),43.329167,-73.648333,,1,,5758,294,115,,,,,,20016285,,, +1230,USA,,WMML,,Glens Falls (U) (NY),43.328611,-73.649444,,1,,5758,294,115,,,,,,42352,,, +1230,USA,,WNAW,,North Adams (MA),42.684167,-73.106389,,1,,5770,293,115,,,,,,42431,,, +1230,USA,,WNEZ,,Manchester (CT),41.776111,-72.5575,,1,,5800,292,115,,,,,,20016027,,, +1230,USA,en,WBLQ,,Westerly (RI),41.365833,-71.836389,,1,,5784,291,115,,,,,,43483,,, +1230,USA,,WFAS,,White Plains (NY),41.025556,-73.8275,,1,,5935,292,116,,,,,,41356,,, +1230,USA,en,WIXT,,Little Falls (NY),43.0425,-74.858611,,1,,5854,295,116,,,,,,42159,,, +1230,USA,,WEEX,,Easton (PA),40.708333,-75.216667,,1,,6046,293,117,,,,,,41262,,, +1230,USA,,WENY,,Elmira (NY),42.074722,-76.779722,,1,,6043,295,117,,,,,,41312,,, +1230,USA,,WESX,,Salem (MA),42.452778,-70.980556,,0.45,,5652,292,117,,,,,,41329,,, +1230,USA,,WCMC,,Wildwood (NJ),39.0025,-74.812778,,1,,6147,291,118,,,,988,,41035,,, +1230,USA,,WECK,,Cheektowaga (NY),42.924167,-78.778056,,1,,6103,297,118,,,,,,41246,,, +1230,USA,,WBPZ,,Lock Haven (PA),41.134167,-77.469167,,1,,6155,294,119,,,,,,40896,,, +1230,USA,,WRBS,,Baltimore (MD),39.313889,-76.600278,,1,,6237,292,119,,,,,,41816,,, +1230,USA,,WSOO,,Sault Ste. Marie (MI),46.437778,-84.378333,,1,,6174,303,119,,,,0,,43045,,, +1230,USA,,WCRO,,Johnstown (PA),40.331944,-78.912778,,1,,6305,295,120,,,,,,41077,,, +1230,USA,,WTIV,,Titusville (PA),41.616667,-79.692222,,1,,6256,296,120,,,,,,43145,,, +1230,USA,en,WCMD,,Cumberland (MD),39.643889,-78.742222,,1,,6347,294,120,,,,,,42522,,, +1230,CAN,en,CHFC,,Churchill (MB),58.755,-94.094444,,0.25,,5774,320,121,,,,3,,36044,,, +1230,USA,,WBVP,,Beaver Falls (PA),40.737778,-80.296389,,1,,6360,296,121,,,,,,40929,,, +1230,USA,,WFVA,,Fredericksburg (VA),38.280556,-77.436389,,1,,6369,292,121,,,,,,41457,,, +1230,USA,,WMPC,,Lapeer (MI),43.079444,-83.309722,,1,,6364,300,121,,,,,,42374,,, +1230,USA,en,WFER,,Iron River (MI),46.065278,-88.638056,,1,,6442,305,121,,,,,,41744,,, +1230,CAN,fr,CBAF-21,,Saint-Quentin (NB),47.5125,-67.395278,,0.04,,5088,295,122,,,,,,20109164,,, +1230,USA,,WGRY,,Grayling (MI),44.651389,-84.738333,,0.75,,6329,302,122,,,,,,41562,,, +1230,USA,,WKBO,,Harrisburg (PA),40.281111,-76.868333,,0.48,,6182,293,122,,,,,,41967,,, +1230,USA,,WTKG,i,Grand Rapids (MI),42.995,-85.676667,,1,,6510,301,122,,,,0,,43153,,, +1230,USA,en,WCBT,,Roanoke Rapids (NC),36.445833,-77.664167,,1,,6525,291,122,,,,,,40959,,, +1230,USA,en,WCWA,,Toledo (OH),41.636944,-83.564444,,1,,6490,299,122,,,,,,41111,,, +1230,USA,,WBET,,Sturgis (MI),41.769722,-85.419167,,1,,6590,300,123,,,,,,42390,,, +1230,USA,,WODI,,Brookneal (VA),37.038056,-78.941667,,1,,6560,292,123,,,,,,42563,,, +1230,USA,,WXCF,,Clifton Forge (VA),37.821667,-79.813889,,1,,6554,293,123,,,,,,43457,,, +1230,USA,,WXCO,,Wausau (WI),44.969444,-89.606944,,1,,6582,305,123,,,,,,43458,,, +1230,USA,en,WJOI,,Norfolk (VA),36.834444,-76.269722,,0.63,,6405,290,123,,,,991,,41911,,, +1230,USA,en,WVNT,,Parkersburg (WV),39.258056,-81.563611,,0.88,,6552,295,123,,,,,,43320,,, +1230,USA,en,WYTS,,Columbus (OH),39.941944,-83.022222,,1,,6588,297,123,,,,,,43199,,, +1230,USA,es,WLNR,,Kinston (NC),35.258611,-77.609167,,1,,6614,289,123,,,,,,42198,,, +1230,USA,,KTRF,,Thief River Fall (MN),48.129722,-96.186389,,1,,6684,311,124,,,,997,,39535,,, +1230,USA,,WCLO,,Janesville (WI),42.659722,-89.042222,,1,,6731,303,124,,,,,,41029,,, +1230,USA,,WDBZ,,Cincinnati (OH),39.114167,-84.492222,,1,,6742,297,124,,,,,,41131,,, +1230,USA,,WFAY,,Fayetteville (NC),35.072222,-78.873889,,1,,6710,290,124,,,,,,41360,,, +1230,USA,,WIRO,,Ironton (OH),38.539444,-82.671389,,1,,6676,295,124,,,,,,41800,,, +1230,USA,,WJOB,,Hammond (IN),41.596944,-87.479167,,1,,6725,301,124,,,,,,41909,,, +1230,USA,,WKLK,,Cloquet (MN),46.749444,-92.421389,,0.72,,6596,308,124,,,,,,42036,,, +1230,USA,,WMFR,,High Point (NC),35.955556,-80.006111,,1,,6712,292,124,,,,,,42313,,, +1230,USA,,WSAL,,Logansport (IN),40.754444,-86.311111,,1,,6722,300,124,,,,,,42947,,, +1230,USA,,KWNO,,Winona (MN),44.033889,-91.605,,0.99,,6767,305,125,,,,,,39735,,, +1230,USA,,WABN,,Abingdon (VA),36.734167,-81.971667,,1,,6775,294,125,,,,,,40631,,, +1230,USA,,WNNC,,Newton (NC),35.672222,-81.236667,,1,,6813,292,125,,,,,,42485,,, +1230,USA,,WOLH,,Florence (SC),34.23,-79.746944,,1,,6833,290,125,,,,,,42596,,, +1230,USA,,KMRS,,Morris (MN),45.603056,-95.887222,,1,,6873,309,126,,,,,,38932,,, +1230,USA,,KYSM,,Mankato (D/N) (MN),44.168333,-93.910833,,1,,6883,307,126,,,,,,39871,,, +1230,USA,,KYSM,,Mankato (U) (MN),44.172222,-94.039722,,1,,6890,307,126,,,,,,20016203,,, +1230,USA,,WANO,,Pineville (KY),36.768611,-83.716389,,1,,6881,295,126,,,,,,40725,,, +1230,USA,,WFXN,,Moline (IL),41.481667,-90.530278,,1,,6911,303,126,,,,,,41462,,, +1230,USA,,WHIR,,Danville (KY),37.674444,-84.768333,,1,,6873,296,126,,,,,,41643,,, +1230,USA,,WJBC,,Bloomington (IL),40.450278,-89.011667,,1,,6906,301,126,,,,,,41844,,, +1230,USA,,WOIC,,Columbia (SC),33.992778,-81.045833,,1,,6935,291,126,,,,,,42577,,, +1230,USA,,WSKY,,Asheville (NC),35.595278,-82.565833,,1,,6903,293,126,,,,,,43017,,, +1230,CAN,en,CBMK,,Lebel-sur-Quvillon (QC),49.049444,-76.979722,,0.04,,5563,302,127,,,,,,20109163,,, +1230,USA,,KFJB,,Marshalltown (IA),42.066944,-92.969444,,1,,7002,305,127,,,,,,38397,,, +1230,USA,,WAIM,,Anderson (SC),34.531111,-82.613889,,1,,6991,292,127,,,,,,40675,,, +1230,USA,,WTCJ,,Tell City (IN),37.925833,-86.721944,,0.85,,6972,298,127,,,,,,43118,,, +1230,USA,en,WAMM,,Woodstock (VA),38.853056,-78.525,,0.25,,6394,293,127,,,,,,40710,,, +1230,USA,en,WEZO,,Augusta (GA),33.453889,-82.029722,,1,,7041,291,127,,,,,,42504,,, +1230,USA,en,WJUL,,Hiawassee (GA),34.942778,-83.774167,,1,,7031,293,127,,,,,,20016101,,, +1230,CAN,en,CBMN,,Malartic (QC),48.138889,-78.130278,,0.04,,5692,302,128,,,,,,20109168,,, +1230,USA,,KDIX,,Dickinson (ND),46.8725,-102.743889,,1,,7118,314,128,,,,,,38266,,, +1230,USA,,KGHS,,International Falls (MN),48.591389,-93.381667,,0.23,,6503,310,128,,,,,,38480,,, +1230,USA,,WAKI,,McMinnville (TN),35.666667,-85.776389,,1,,7097,295,128,,,,,,40685,,, +1230,USA,,WBLJ,,Dalton (GA),34.756389,-84.950556,,1,,7120,294,128,,,,,,40875,,, +1230,USA,,WCDS,,Glasgow (KY),37.004722,-85.940833,,0.75,,6999,296,128,,,,,,20000035,,, +1230,USA,,WHCO,,Sparta (IL),38.123611,-89.722222,,1,,7136,300,128,,,,,,41616,,, +1230,USA,,WHOP,,Hopkinsville (KY),36.881667,-87.512222,,1,,7105,297,128,,,,,,41679,,, +1230,USA,,WSOK,,Savannah (GA),32.072222,-81.076389,,1,,7092,289,128,,,,,,43041,,, +1230,ALS,,KVAK,,Valdez (AK),61.121111,-146.256944,,1,,7193,346,129,,,,920,,39609,,, +1230,USA,,KWIX,,Moberly (MO),39.403056,-92.4325,,1,,7190,302,129,,,,,,39716,,, +1230,USA,,WBHP,,Huntsville (AL),34.719167,-86.595,,1,,7225,295,129,,,,,,40853,,, +1230,USA,,WMLR,,Hohenwald (TN),35.522778,-87.544444,,1,,7217,296,129,,,,,,42347,,, +1230,USA,en,WAYX,,Waycross (GA),31.2125,-82.372222,,1,,7245,290,129,,,,,,43376,,, +1230,USA,en,WFOM,,Marietta (GA),33.927222,-84.502222,,1,,7159,293,129,,,,,,41423,,, +1230,PTR,,WNIK,,Arecibo (PR),18.455556,-66.74,,1,,7255,269,130,,0000-2400,1234567,987,,42468,,, +1230,USA,,KLWT,,Lebanon (MO),37.677778,-92.687778,,1,,7347,301,130,,,,,,38863,,, +1230,USA,,KTNC,,Falls City (NE),40.065833,-95.615278,,1,,7316,305,130,,,,,,39514,,, +1230,USA,,WAUD,,Auburn (AL),32.627778,-85.460278,,1,,7326,293,130,,,,,,40769,,, +1230,USA,,WSBB,,New Smyrna Beach (FL),29.0325,-80.9175,,1,,7330,287,130,,,,997,,42955,,, +1230,USA,,WXLI,,Dublin (GA),32.5225,-82.9,,0.7,,7172,291,130,,,,,,43477,,, +1230,USA,en,WTKN,,Corinth (MS),34.9575,-88.521389,,1,,7324,297,130,,,,,,41034,,, +1230,USA,en,WWWH,,Haleyville (AL),34.233333,-87.625556,,1,,7328,295,130,,,,,,41843,,, +1230,VEN,,YVOH R Valera,,Valera (tjl),9.316667,-70.616667,,10,,8307,266,130,,0900-0400,1234567,,,45407,,, +1230,ALS,en,KIFW,,Sitka (AK),57.0575,-135.333889,,1,,7385,338,131,,0000-2400,1234567,986,,38589,,, +1230,CAN,xx,CBQC,,Fort Providence (NT),61.672222,-117.639167,,0.099,,6437,332,131,,,,,,20109167,,, +1230,CLM,es,HJEH,,Bucaramanga (sat),7.133333,-73.133333,,15,,8669,266,131,,,,,,35901610,,, +1230,USA,,KBTM,,Jonesboro (AR),35.841389,-90.662222,,1,,7380,299,131,,,,,,38104,,, +1230,USA,,KHAS,,Hastings (NE),40.577778,-98.404722,,1,,7427,307,131,,,,,,38527,,, +1230,USA,,KWSN,,Sioux Falls (SD),43.457778,-96.670556,,0.44,,7091,308,131,,,,,,39756,,, +1230,USA,,KXLO,,Lewistown (MT),47.071111,-109.408889,,1,,7416,318,131,,,,,,39801,,, +1230,USA,,WGGG,,Gainesville (FL),29.682222,-82.413333,,1,,7374,288,131,,,,,,41507,,, +1230,USA,,WMAF,,Madison (FL),30.473056,-83.435833,,1,,7374,290,131,,,,,,42269,,, +1230,USA,,WTBC,,Tuscaloosa (AL),33.219167,-87.508611,,1,,7405,295,131,,,,,,43109,,, +1230,USA,,KHDN,,Hardin (MT),45.715278,-107.599722,,1,,7452,316,132,,,,,,38537,,, +1230,USA,,KZYM,,Joplin (MO),37.08,-94.552778,,1,,7506,302,132,,,,,,39687,,, +1230,USA,,WKWL,,Florala (AL),31.005556,-86.331389,,1,,7515,292,132,,,,,,42094,,, +1230,USA,,WSSO,,Starkville (MS),33.4525,-88.820833,,1,,7467,296,132,,,,,,43069,,, +1230,USA,en,WBZT,,West Palm Beach (FL),26.759167,-80.144444,,1,,7467,285,132,,,,,,40941,,, +1230,USA,en,WONN,,Lakeland (FL),28.039722,-81.960833,,1,,7480,287,132,,,,,,42607,,, +1230,CAN,en,CJNL,,Merritt (BC),50.108056,-120.769444,,1,,7610,327,133,,,,,,36194,,, +1230,USA,,KFPW,,Fort Smith (AR),35.391667,-94.331667,,1,,7636,301,133,,,,,,38422,,, +1230,USA,,KLCB,,Libby (MT),48.370556,-115.538611,,1,,7565,323,133,,,,,,38784,,, +1230,USA,,KOBB,,Bozeman (MT),45.659167,-111.056111,,1,,7617,318,133,,,,,,39047,,, +1230,USA,,KVOC,,Casper (WY),42.834722,-106.295556,,1,,7643,313,133,,,,,,39648,,, +1230,USA,,WBZT,,Pompano Beach (FL),26.255,-80.146944,,0.8,,7509,284,133,,,,,,40940,,, +1230,USA,,WRJX,,Jackson (AL),31.543889,-87.875,,1,,7567,294,133,,,,,,42863,,, +1230,USA,en,WDWR,,Pensacola (FL),30.4325,-87.218611,,1,,7619,292,133,,,,,,43582,,, +1230,B,pt,ZYI670 Rdio CBN,,Joo Pessoa (PB),-7.103772,-34.853922,,1,,7658,225,134,,,,,,36902025,,, +1230,CLM,es,HJLK R Calidad,,Cali (val),3.516667,-76.566667,,10,,9220,267,134,,,,998,,37549,,, +1230,HTI,,Voix de l'Ave Maria,,Cap-Hatien (nrd),19.716667,-72.2,,0.7,,7521,274,134,,,,,,35634,,, +1230,USA,,KSTC,,Sterling (CO),40.617778,-103.178056,,1,,7678,310,134,,,,,,39420,,, +1230,USA,,WBBZ,,Ponca City (OK),36.696111,-97.051944,,1,,7682,303,134,,,,,,40817,,, +1230,USA,en,KLIC,,Monroe (LA),32.487778,-92.090278,,1,,7748,297,134,,,,,,38813,,, +1230,USA,en,KSBN,,Spokane (WA),47.658333,-117.418889,,1,,7709,323,134,,,,,,39327,,, +1230,CUB,es,R Progreso,,unknown,21.7,-79.5,,1,,7848,281,135,,,,0,,31600127,,, +1230,USA,,KADA,,Ada (OK),34.785,-96.678889,,1,,7824,302,135,,,,,,37914,,, +1230,USA,,KORT,,Grangeville (ID),45.931111,-116.130556,,1,,7816,321,135,,,,999,,39101,,, +1230,USA,,KRXK,,Rexburg (ID),43.847222,-111.784167,,1,,7815,318,135,,,,,,39318,,, +1230,USA,,WBOK,,New Orleans (LA),29.988333,-90.045833,,1,,7834,294,135,,,,,,40891,,, +1230,USA,en,KOZI,,Chelan (WA),47.85,-120.005556,,1,,7794,325,135,,,,998,,39123,,, +1230,CLM,es,HJIL,,Medelln (ant),6.266667,-75.566667,,5,,8910,268,136,,,,32,,37493,,, +1230,USA,,KBCR,,Steamboat Springs (CO),40.488611,-106.849167,,1,,7879,312,136,,,,,,38014,,, +1230,USA,,KSLO,,Opelousas (LA),30.525,-92.106111,,1,,7916,296,136,,,,,,39383,,, +1230,USA,,KSST,,Sulphur Springs (TX),33.116667,-95.584722,,1,,7904,300,136,,,,,,39418,,, +1230,USA,ko,KWYZ,,Everett (WA),47.968333,-122.173333,,1,,7867,326,136,,,,994,,39776,,, +1230,B,pt,ZYK637 Rdio Difusora de Rancharia,,Rancharia (SP),-22.24955,-50.888169,,10,,9955,231,137,,,,,,36902027,,, +1230,B,pt,ZYK699 LBV-Boa Vontade AM,,So Paulo/Rua Jacofer 615 (SP),-23.509972,-46.678306,,10,,9858,227,137,,,,,,36902022,,, +1230,DOM,,HIPM R Moca,,Moca (esp),19.383333,-70.516667,,0.25,,7435,272,137,,1000-0300,1234567,,,37269,,, +1230,NCG,,YNMNG R Manantial,,Nueva Guinea (ats),11.683333,-84.45,,5,,9043,278,137,,1000-0300,1234567,,,52221,,, +1230,USA,,KBAR,,Burley (ID),42.534722,-113.815,,1,,8028,318,137,,,,,,38004,,, +1230,USA,,KGRO,,Pampa (TX),35.5775,-100.952222,,1,,7999,305,137,,,,,,38509,,, +1230,USA,,KKPC,,Pueblo (CO),38.277778,-104.654167,,1,,7962,309,137,,,,,,38750,,, +1230,CAN,xx,CBDC,,Mayo (YT),63.629167,-135.892778,,0.04,,6736,342,138,,,,,,20109159,,, +1230,USA,,KEXO,,Grand Junction (CO),39.094722,-108.578056,,1,,8091,313,138,,,,,,38352,,, +1230,USA,,KJQS,,Murray (UT),40.665833,-111.907222,,1,,8111,316,138,,,,,,38691,,, +1230,USA,,KSEY,,Seymour (TX),33.596944,-99.278333,,1,,8077,303,138,,,,,,39346,,, +1230,USA,,KWTX,,Waco (TX),31.528333,-97.120556,,1,,8132,300,138,,,,,,39762,,, +1230,USA,en,KVAS,,Astoria (OR),46.1875,-123.825,,1,,8101,326,138,,,,0,,38715,,, +1230,USA,es,KDYM,,Sunnyside (WA),46.330278,-120.036111,,0.7,,7940,324,138,,,,,,20000068,,, +1230,CLM,es,HJMJ RCN Antena 2,,Maicao (lag),11.366667,-72.216667,,1,,8237,268,139,,,,,,37567,,, +1230,USA,,KBNH,,Burns (OR),43.564722,-119.059444,,1,,8162,322,139,,,,0,,39918,,, +1230,USA,,KFUN,,Las Vegas (NM),35.596667,-105.205833,,1,,8230,308,139,,,,,,38438,,, +1230,USA,,KRYN,,Gresham (OR),45.484167,-122.411111,,0.92,,8114,325,139,,,,,,38945,,, +1230,USA,es,KCOH,,Houston (U) a (TX),29.757222,-95.338333,,1,,8179,298,139,,,,,,20016194,,, +1230,CLM,es,HJBR Oxgeno,,Tunja (boy),5.466667,-73.316667,,2,,8827,265,140,,,,985,,37355,,, +1230,EQA,,HCGT2,,Guayaquil (gua),-2.1,-79.916667,,5,,9941,266,140,,,,,,36961,,, +1230,USA,,KCUP,,Toledo (OR),44.629722,-123.943056,,1,,8256,326,140,,,,,,39157,,, +1230,USA,,KLVT,,Levelland (TX),33.598333,-102.385556,,1,,8253,305,140,,,,,,38859,,, +1230,B,pt,ZYH756 Rdio Daqui,,Goinia/Fazenda Botafogo (GO),-16.657869,-49.227633,,2.5,,9332,233,141,,,,,,36902029,,, +1230,B,pt,ZYJ776 Rdio Difusora Colmeia AM,,Porto Unio/Topo do Morro da Cruz (SC),-26.238611,-51.076667,,5,,10344,229,141,,,,,,36902024,,, +1230,USA,,KBCQ,,Roswell (NM),33.393611,-104.604444,,1,,8395,306,141,,,,,,39168,,, +1230,USA,,KERV,,Kerrville (TX),30.070556,-99.185278,,0.99,,8381,301,141,,,,,,38340,,, +1230,USA,,KHSN,,Coos Bay (OR),43.432778,-124.208333,,1,,8383,325,141,,,,,,38564,,, +1230,USA,,KOZA,,Odessa (TX),31.830556,-102.369167,,1,,8409,304,141,,,,,,39121,,, +1230,USA,,KSJK,i,Talent (OR),42.226944,-122.7425,,1,,8442,324,141,,,,,,39369,,, +1230,ARG,es,LW5 R.Libertador San Martn,,Tartagal (sa),-22.533333,-63.816667,,5,,10713,241,142,,,,,,40263,,, +1230,B,pt,Rdio Alecrim,,Caxias (MA),-4.838611,-43.327222,,0.25,,7872,234,142,,,,,,36902019,,, +1230,MEX,es,XEEX-AM R Frmula,,Culiacn (sin),24.832222,-107.404722,,2,,9329,303,142,,,,,,43984,,, +1230,USA,,KINO,,Winslow (AZ),35.0375,-110.716667,,1,,8569,312,142,,,,,,38621,,, +1230,USA,,KLXR,,Redding (CA),40.553889,-122.381389,,1,,8589,323,142,,,,,,38864,,, +1230,USA,,KRSY,,Alamogordo (NM),32.896111,-105.945,,1,,8513,307,142,,,,,,39299,,, +1230,USA,,KYVA,,Gallup (NM),35.533889,-108.705,,0.92,,8420,311,142,,,,,,39877,,, +1230,MEX,es,XEIZ-AM R Frmula 3,,Monterrey (nvl),25.670947,-100.185289,,1,,8830,299,143,,,,,,44192,,, +1230,USA,,KAAA,,Kingman (AZ),35.163611,-114.07,,1,,8726,314,143,,,,,,37899,,, +1230,USA,,KATO,,Safford (AZ),32.829444,-109.754444,,1,,8723,310,143,,,,,,37981,,, +1230,USA,,KBOV,,Bishop (CA),37.345556,-118.395278,,1,,8724,318,143,,,,,,38076,,, +1230,USA,,KDAC,,Fort Bragg (CA),39.443056,-123.78,,1,,8755,323,143,,,,,,38232,,, +1230,USA,,KLTO,,Del Rio (TX),29.429167,-100.904722,,0.86,,8538,301,143,,,,,,39493,,, +1230,USA,,KOTS,,Deming (NM),32.251389,-107.757778,,1,,8669,308,143,,,,,,39109,,, +1230,USA,,KOY,i,Phoenix (AZ),33.436111,-112.109444,,1,,8789,312,143,,,,,,39120,,, +1230,USA,,KQUE,,Houston (TX),29.859444,-95.558889,,0.41,,8183,298,143,,,,,,39209,,, +1230,USA,,KSIX,,Corpus Christi (TX),27.783889,-97.4575,,0.72,,8479,298,143,,,,,,39367,,, +1230,USA,,KSZL,,Barstow (CA),34.912222,-117.0275,,1,,8892,316,143,,,,,,39448,,, +1230,USA,,KWG,,Stockton (CA),37.959444,-121.257778,,0.9,,8793,321,143,,,,9715,,39708,,, +1230,USA,en,KLAV,,Las Vegas (NV),36.214444,-115.155,,1,,8680,315,143,,,,,,38775,,, +1230,USA,en,KSGG,,Reno (NV),39.511389,-119.714167,,0.82,,8576,320,143,,,,,,39145,,, +1230,USA,es,KCOH,,Houston (U) b (TX),29.859444,-95.558889,,0.41,,8183,298,143,,,,,,20016276,,, +1230,B,pt,ZYK297 Rdio Santiago,,Santiago (RS),-29.194444,-54.840278,,4,,10819,230,144,,,,,,36902014,,, +1230,CLM,,HJLF,,Acacias (met),4,-73.75,,1,,8985,265,144,,,,,,37545,,, +1230,CLM,es,HJTP R Colina,,Girardot (cun),4.316667,-74.866667,,1,,9034,266,144,,,,,,37648,,, +1230,EQA,,HCMV5,,Cuenca (azu),-2.85,-79,,2,,9945,265,144,,,,,,37034,,, +1230,GTM,,TGAT R Atlntida,,Puerto Barrios (izb),15.716667,-88.583333,,1,,8969,284,144,,1130-0500,1234567,,,40478,,, +1230,MEX,es,XETVH-AM La Morena,,Villahermosa (tab),17.988056,-92.9675,,1,,9058,288,144,,,,,,44871,,, +1230,SLV,,YSNB,,San Salvador (ssl),13.716667,-89.25,,1,,9188,283,144,,,,,,45301,,, +1230,USA,,KGEO,,Bakersfield (CA),35.348056,-119.009167,,1,,8943,318,144,,,,9997,,38466,,, +1230,USA,,KPRL,,Paso Robles (CA),35.654167,-120.681111,,1,,8990,319,144,,,,,,39161,,, +1230,USA,,KXO,,El Centro (CA),32.806667,-115.545556,,1,,9020,314,144,,,,,,39810,,, +1230,USA,,KYPA,,Los Angeles (DN) (CA),34.085556,-118.256667,,1,,9029,316,144,,,,,,20016293,,, +1230,USA,,KYPA,,Los Angeles (U) (CA),34.0375,-118.276389,,1,,9035,316,144,,,,,,39869,,, +1230,ARG,es,LT2 R 2,,Rosario (sf),-32.942386,-60.743422,,5,,11480,233,145,,0000-2400,1234567,998,,40171,,, +1230,GTM,,R Amrica,,Cuyotenango (sup),14.533333,-91.566667,,1,,9270,285,145,,,,,,52133,,, +1230,MEX,es,XELP-AM R Pa,,La Piedad de Cavadas (mic),20.332961,-102.025483,,1,,9420,297,145,,,,,,44318,,, +1230,EQA,,HCFG4,,Esmeraldas (esm),0.966667,-79.716667,,1,,9658,268,146,,,,,,36937,,, +1230,USA,,KELY,,Ely (NV),39.2625,-114.862778,,0.25,,8380,317,147,,,,,,38327,,, +1230,B,pt,ZYH532 Rdio Povo,,Ubat (BA),-14.2,-39.533333,,0.25,,8592,226,148,,,,,,36902017,,, +1230,B,pt,ZYJ816 Rdio Guararema,,So Jos (SC),-27.5725,-48.528056,,1,,10343,227,148,,,,,,36902028,,, +1230,MEX,es,XETCP-AM W R,,Tehuacn (pue),18.415611,-97.433489,,0.5,,9306,292,148,,,,,,44804,,, +1230,PRU,,OAX2T R Albujar,,Guadalupe (lal),-8.15,-79,,1,,10411,261,148,,1200-0400,1234567,,,40286,,, +1230,B,pt,ZYK716 Rdio Jequitib AM,,Campinas (SP),-22.987056,-47.0861,,0.5,,9828,228,149,,,,,,36902013,,, +1230,EQA,,HCRL6,,Saquisili (nap),-0.966667,-78.4,,0.5,,9738,265,149,,,,,,37090,,, +1230,B,pt,ZYK573 Rdio Cano Nova,,Capo Bonito (SP),-24.009461,-48.330744,,0.5,,9990,228,150,,,,,,36902016,,, +1230,B,pt,ZYL208 Rdio Correio da Serra AM,,Barbacena (MG),-21.191281,-43.769611,,0.25,,9488,226,151,,,,94,,36902023,,, +1230,MEX,es,XEDKN-AM R Frmula 2,,Guadalajara (jal),20.676786,-103.354406,,0.25,,9469,298,151,,,,,,45120,,, +1230,PRU,,OBX7J R Madre de Dios,,Puerto Maldonado (mdd),-12.616667,-69.166667,,0.5,,10155,251,151,,,,,,40409,,, +1230,ARG,,R Litoral,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,,,51838,,, +1230,B,pt,ZYL216 Rdio Sociedade Passos AM,,Passos (MG),-20.727569,-46.5863,,0.25,,9584,228,152,,,,,,36902031,,, +1230,EQA,,HCRI1 Centro Rfnico de Imbabura,,Ibarra (imb),0.35,-78.116667,,0.22,,9603,266,152,,,,92,,37086,,, +1230,PRG,,ZP21 R Oriental,,Caaguazu (cgz),-25.416667,-56.1,,0.5,,10535,234,152,,0800-0300,1234567,,,45516,,, +1230,PRU,,OBZ4Y R Selecciones,,Tarma (jun),-11.5,-75.666667,,0.5,,10482,257,152,,,,,,40427,,, +1230,ARG,,R La Benedicion,,General Pico (lp),-35.666667,-63.766667,,1,,11888,233,153,,,,,,51837,,, +1230,CAN,fr,CBPD-1,,Glacier Park (BC),51.3,-117.501111,,0.005,,7374,325,154,,,,,,20109161,,, +1230,B,pt,ZYK326 Rdio Nonoai,,Nonoai (RS),-27.341944,-52.78,,0.25,,10537,230,155,,,,,,36902020,,, +1230,B,pt,ZYK333 Rdio Prata AM,,Nova Prata (RS),-28.780833,-51.619444,,0.25,,10613,228,155,,,,,,36902021,,, +1230,B,pt,ZYK352 Rdio Encruzilhadense,,Encruzilhada do Sul (RS),-30.547778,-52.52,,0.25,,10826,228,156,,,,,,36902018,,, +1231,INS,,Boss R,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400110,,, +1232,AGL,pt,RNA Em. Prov. do Hula,,Lubango (hui),-14.942903,13.507722,,10,,7487,173,122,,0500-2300,1234567,977,,2486,,, +1233,CZE,cs,Rdio Dechovka,,Lbeznice/Bořanovice (PR),50.180761,14.465647,,10,,601,108,53,,0000-2400,1234567,2,,1900003,,, +1233,CYP,ar,Monte Carlo Doualiya,,Cape Greco (kyp-fam),34.958322,34.082583,,600,205,2903,120,58,,0300-1920,.....67,1,,1135,,, +1233,CYP,ar,Monte Carlo Doualiya,,Cape Greco (kyp-fam),34.958322,34.082583,,600,205,2903,120,58,,0330-1920,12345..,1,,1135,,, +1233,CYP,ar,Trans World R,,Cape Greco (kyp-fam),34.958322,34.082583,,600,205,2903,120,58,,0300-0330,12345..,1,,1135,,, +1233,CYP,ar,Trans World R,,Cape Greco (kyp-fam),34.958322,34.082583,,600,205,2903,120,58,,1925-2116,1234567,1,,1135,,, +1233,G,en,Absolute R,,Manningtree (EN-ESX),51.923611,1.086111,,0.5,,365,269,64,,0000-2400,1234567,9998,,1139,,, +1233,G,en,Absolute R,,Northampton/Kings Heath (EN-NHA),52.2635,-0.917139,,0.5,,500,275,65,,0000-2400,1234567,,,1140,,, +1233,CZE,cs,Rdio Dechovka,,Brno/Řečkovice (JM),49.25,16.583333,,0.5,,783,110,68,,0000-2400,1234567,,,1900005,,, +1233,G,en,Absolute R,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,0.3,,549,288,68,,0000-2400,1234567,0,,1138,,, +1233,G,en,Absolute R,,Reading/Manor Farm (EN-BER),51.432056,-0.979639,,0.16,,514,264,70,,0000-2400,1234567,,,1137,,, +1233,I,it,Media Veneto R,,Piove di Sacco (pd),45.3,12.033333,,0.4,,862,149,70,,????-????,1234567,9984,,4000035,,, +1233,G,en,Absolute R,,Swindon (EN-WLT),51.571556,-1.816083,,0.1,,568,267,73,,0000-2400,1234567,,,1136,,, +1233,GRC,el,Theofilos R,,Athnai (att-ath),38,23.75,,0.7,,2067,133,79,,0000-2400,1234567,,,3400046,,, +1233,IRN,fa,IRIB R Fars,,Abadeh (frs),31.14225,52.673389,,50,,4393,104,84,,,,,,1805,,, +1233,QAT,xx,QBS English/French,,Al-Khisah (dyn),25.404806,51.482472,,100,,4791,111,85,,0300-1000,1234567,,,1143,,, +1233,QAT,xx,QBS English/French,,Al-Khisah (dyn),25.404806,51.482472,,100,,4791,111,85,,1300-1900,1234567,,,1143,,, +1233,CHN,,Xinjiang RGD,,rmqi/XJTS904 (XJ),43.715833,87.595,,100,,5800,65,95,,0000-1600,1234567,,,50156,,, +1233,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,10,,5377,67,101,,2300-1800,1234567,,,36200416,,, +1233,KEN,,KBC English Service,,Marsabit (eas),2.391833,38.043278,,50,,6256,141,103,,0200-2110,1234567,,,2488,,, +1233,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Zhaosu/SARFT8113 (XJ),43.148333,81.119444,,1,,5433,69,111,,2300-1800,1234567,,,36200419,,, +1233,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Xinyuan=Knes/SARFT8117 (XJ),43.46,83.263611,,1,,5548,68,112,,2300-1800,1234567,,,36200417,,, +1233,IND,,AIR Northeast,,Tura (ML),25.501806,90.190972,,20,,7387,78,118,,0025-0335,123456,,,50158,,, +1233,IND,,AIR Northeast,,Tura (ML),25.501806,90.190972,,20,,7387,78,118,,0025-0430,......7,,,50158,,, +1233,IND,,AIR Northeast,,Tura (ML),25.501806,90.190972,,20,,7387,78,118,,0630-1130,1234567,,,50158,,, +1233,IND,,AIR Northeast,,Tura (ML),25.501806,90.190972,,20,,7387,78,118,,1228-1545,1234567,,,50158,,, +1233,RUS,ru,Yumor FM/R Troika,,Petropavlovsk/Yelizovo (KM),53.189847,158.41225,,20,,8020,17,124,,0000-2400,1234567,,,50172,,, +1233,CHN,,Nantong RGD,,Nantong (JS),31.855833,121.010556,,25,,8729,52,129,,2130-1510,1234567,,,50155,,, +1233,CHN,,Hunan RGD Xinwen Guangbo,,Shaoyang (HN),27,111.266667,,10,,8608,62,132,,2100-1700,1234567,,,36200418,,, +1233,CHN,,Hunan RGD Xinwen Guangbo,,Yueyang/Kangwang (HN),29.133333,113.116667,,10,,8529,59,132,,2130-1700,1234567,,,50157,,, +1233,THA,th,Wor. Por. Thor. 7,,Udon Thani/Thahan Road (udt),17.375,102.809167,,10,,8917,74,133,,????-1415,1234567,,,50174,,, +1233,THA,th,Thor. Or. 01,,Bangkok/Phahonyothin Rd (bmp),13.911111,100.621389,,10,,9074,78,134,,2200-1805,1234567,9896,,50173,,, +1233,J,ja,JOGR RAB Aomori Hoso,,Aomori (toh-aom),40.785556,140.636667,,5,,8782,34,136,,0000-2400,1234567,4,,50162,,, +1233,J,ja,JOUR NBC Nagasaki Hoso,,Nagasaki (kyu-nag),32.720833,129.889444,,5,,9103,45,137,,0000-1600,......7,,,50164,,, +1233,J,ja,JOUR NBC Nagasaki Hoso,,Nagasaki (kyu-nag),32.720833,129.889444,,5,,9103,45,137,,0000-2400,123456,,,50164,,, +1233,J,ja,JOUR NBC Nagasaki Hoso,,Nagasaki (kyu-nag),32.720833,129.889444,,5,,9103,45,137,,2000-2400,......7,,,50164,,, +1233,PHL,,DYVS-AM FEBC,,Bacolod City (noc),10.620217,122.926367,,10,225,10800,62,140,,0300-1410,......7,1,,50170,,, +1233,PHL,,DYVS-AM FEBC,,Bacolod City (noc),10.620217,122.926367,,10,225,10800,62,140,,2050-1410,123456,1,,50170,,, +1233,PHL,,DWRV-AM R Veritas,,Bayombong (nvc),16.489339,121.150806,,5,,10151,61,141,,2100-1400,1234567,,,50171,,, +1233,KOR,,KBS 1 R,,Pyeongchang (gan),37.366667,128.383333,,1,,8591,44,142,,0000-2400,1234567,,,50167,,, +1233,INS,id,RRI Pro-1,,Pontianak (KB-ptk),0.042222,109.336944,,5,,10882,80,143,,0930-1515,1234567,,,50160,,, +1233,INS,id,RRI Pro-1,,Pontianak (KB-ptk),0.042222,109.336944,,5,,10882,80,143,,????-0015,1234567,,,50160,,, +1233,KOR,ko,HLQG KBS 1 R,,Yeongyang (gsb),36.660278,129.115556,,1,,8692,44,143,,0000-2400,1234567,,,50168,,, +1233,J,ja,WBS Wakayama Hoso,,Hikigawasusami,34.5,134,,0.3,,9124,41,149,,,,,,31400084,,, +1233,J,ja,NBC, Nagasaki Hoso,,Isahaya (kyu-nag),32.833333,130,,0.1,,9097,45,154,,0000-1600,......7,,,50163,, +1233,J,ja,NBC, Nagasaki Hoso,,Isahaya (kyu-nag),32.833333,130,,0.1,,9097,45,154,,0000-2400,123456,,,50163,, +1233,J,ja,NBC, Nagasaki Hoso,,Isahaya (kyu-nag),32.833333,130,,0.1,,9097,45,154,,2000-2400,......7,,,50163,, +1233,J,ja,NBC, Nagasaki Hoso,,Shimabara (kyu-nag),32.766667,130.366667,,0.1,,9121,45,154,,0000-1600,......7,,,50165,, +1233,J,ja,NBC, Nagasaki Hoso,,Shimabara (kyu-nag),32.766667,130.366667,,0.1,,9121,45,154,,0000-2400,123456,,,50165,, +1233,J,ja,NBC, Nagasaki Hoso,,Shimabara (kyu-nag),32.766667,130.366667,,0.1,,9121,45,154,,2000-2400,......7,,,50165,, +1233,J,ja,JOVL WBS Wakayama Hoso,,Tanabeshirahama (kns-wak),33.7,135.4,,0.1,,9264,41,155,,0000-1630,......7,,,50166,,, +1233,J,ja,JOVL WBS Wakayama Hoso,,Tanabeshirahama (kns-wak),33.7,135.4,,0.1,,9264,41,155,,0000-2400,123456,,,50166,,, +1233,J,ja,JOVL WBS Wakayama Hoso,,Tanabeshirahama (kns-wak),33.7,135.4,,0.1,,9264,41,155,,2000-2400,......7,,,50166,,, +1233,AUS,en,2NC ABC Newcastle,,Newcastle/Beresfield (NSW),-32.799878,151.662542,,10,,16501,66,158,,0000-2400,1234567,13,,50153,,, +1233,NZL,en,Solid Gold AM,,Wellington/Horokiwi (WGN),-41.210556,174.845556,,2,,18520,40,172,,,,,,50169,,, +1240,CAN,,CKIM,,Baie Verte (NL),49.956944,-56.178056,,1,,4245,292,99,,,,985,,36323,,, +1240,USA,en,WSYY,,Millinocket (ME),45.673333,-68.718611,,1,,5289,294,110,,,,,,43097,,, +1240,USA,,WFTN,,Franklin (NH),43.454444,-71.6425,,1,,5624,293,113,,,,,,41450,,, +1240,USA,,WSKI,,Montpelier (VT),44.244444,-72.546389,,1,,5625,294,113,,,,65,,43011,,, +1240,USA,en,WEZR,,Lewiston (ME),44.115278,-70.248889,,0.86,,5490,293,113,,,,,,41047,,, +1240,USA,,WHMQ,,Greenfield (MA),42.588889,-72.618333,,1,,5746,293,114,,,,,,41665,,, +1240,USA,,WNBZ,,Saranac Lake (NY),44.316111,-74.118889,,1,,5717,295,114,,,,,,42442,,, +1240,USA,,WOON,,Woonsocket (RI),42.016111,-71.491667,,1,,5715,292,114,,,,1,,42613,,, +1240,USA,en,WBUR,i,West Yarmouth (MA),41.635278,-70.235,,1,,5662,290,114,,,,,,40926,,, +1240,USA,,WWCO,,Waterbury (CT),41.566389,-73.056389,,1,,5847,292,115,,,,,,43364,,, +1240,USA,en,WPTR,,Schenectady (NY),42.810278,-73.984444,,1,,5816,294,115,,,,,,43303,,, +1240,USA,,WATN,,Watertown (NY),43.980278,-75.936667,,1,,5853,296,116,,,,,,40758,,, +1240,USA,,WGBB,,Freeport (NY),40.645556,-73.5775,,1,,5947,292,116,,,,,,41480,,, +1240,USA,,WVOS,,Liberty (NY),41.781667,-74.730278,,1,,5937,293,116,,,,,,43335,,, +1240,USA,,WBAX,,Wilkes-Barre (PA),41.253611,-75.906944,,1,,6049,294,117,,,,,,40806,,, +1240,USA,,WGVA,,Geneva (NY),42.860278,-77.016389,,1,,6000,296,117,,,,99,,41581,,, +1240,USA,,WIOV,,Reading (PA),40.324444,-75.941944,,1,,6120,293,118,,,,,,41786,,, +1240,USA,,WSNJ,,Bridgeton (NJ),39.458889,-75.203333,,1,,6138,292,118,,,,,,43035,,, +1240,CAN,en,CJCS,,Stratford (ON),43.343056,-81.010833,,1,,6207,299,119,,,,,,36158,,, +1240,USA,,WCBY,,Cheboygan (DN) (MI),45.658333,-84.49,,1,,6239,303,119,,,,,,20016297,,, +1240,USA,,WCBY,,Cheboygan (U) (MI),45.660556,-84.490556,,1,,6238,303,119,,,,,,40962,,, +1240,USA,,WJTN,,Jamestown (NY),42.104722,-79.2575,,1,,6193,296,119,,,,,,41935,,, +1240,USA,,WCEM,,Cambridge (MD),38.584167,-76.081667,,1,,6260,291,120,,,,,,40977,,, +1240,USA,,WJEJ,,Hagerstown (MD),39.666667,-77.725,,1,,6282,293,120,,,,,,41865,,, +1240,USA,,WRTA,,Altoona (PA),40.507222,-78.420833,,1,,6261,294,120,,,,,,42923,,, +1240,USA,,WATT,,Cadillac (DN) (MI),44.224167,-85.4,,1,,6399,302,121,,,,,,20016296,,, +1240,USA,,WATT,,Cadillac (U) (MI),44.224167,-85.401667,,1,,6400,302,121,,,,,,40762,,, +1240,USA,,WBBW,,Youngstown (OH),41.080556,-80.648333,,1,,6355,296,121,,,,,,40815,,, +1240,USA,,WCNC,,Elizabeth City (NC),36.310556,-76.232222,,1,,6443,289,121,,,,,,41045,,, +1240,USA,,WIAN,,Ishpeming (MI),46.504444,-87.671944,,1,,6355,305,121,,,,,,41713,,, +1240,USA,,WTPS,,Petersburg (VA),37.233611,-77.376667,,1,,6445,291,121,,,,,,42903,,, +1240,CAN,,CJAR,,The Pas (MB),53.812778,-101.276389,,1,,6473,319,122,,,,,,36141,,, +1240,USA,,WDNE,,Elkins (WV),38.923333,-79.8625,,1,,6472,294,122,,,,,,41188,,, +1240,USA,,WHIZ,,Zanesville (OH),39.955556,-81.983611,,0.96,,6523,296,122,,,,,,41646,,, +1240,USA,,WJIM,,Lansing (MI),42.72,-84.519722,,0.89,,6463,300,122,,,,,,41881,,, +1240,USA,,WOBT,,Rhinelander (WI),45.628333,-89.393889,,1,,6518,305,122,,,,,,42555,,, +1240,USA,,WOMT,,Manitowoc (WI),44.125278,-87.628056,,0.99,,6535,303,122,,,,,,42602,,, +1240,USA,,WTON,,Staunton (VA),38.141667,-79.0425,,1,,6481,293,122,,,,,,43192,,, +1240,USA,,WGMN,,Roanoke (VA),37.27,-79.970556,,1,,6607,293,123,,,,,,41533,,, +1240,USA,,WJNC,,Jacksonville (NC),34.748889,-77.414167,,1,,6641,289,123,,,,,,41904,,, +1240,USA,,WPJL,,Raleigh (NC),35.773611,-78.619167,,1,,6638,291,123,,,,,,42697,,, +1240,USA,,WVTS,,Charleston (WV),38.385556,-81.714167,,1,,6629,295,123,,,,,,20016000,,, +1240,USA,,WFTM,,Maysville (KY),38.636111,-83.760556,,1,,6735,296,124,,,,,,41449,,, +1240,USA,,WHFA,,Poynette (WI),43.360556,-89.402222,,1,,6696,304,124,,,,,,41627,,, +1240,USA,,WJMC,,Rice Lake (WI),45.508611,-91.773889,,1,,6659,307,124,,,,,,41896,,, +1240,USA,,WKEZ,,Bluefield (WV),37.265833,-81.188889,,1,,6684,293,124,,,,,,42000,,, +1240,USA,,WSBC,,Chicago (IL),41.981389,-87.772222,,1,,6711,301,124,,,,,,42956,,, +1240,USA,,KDLR,,Devils Lake (ND),48.111667,-98.845278,,1,,6821,313,125,,,,,,38279,,, +1240,USA,,KWLC,,Decorah (IA),43.309722,-91.808333,,1,,6836,305,125,,,,,,39726,,, +1240,USA,,WBEJ,,Elizabethton (TN),36.335278,-82.2175,,1,,6822,293,125,,,,,,40831,,, +1240,USA,,WHVN,,Charlotte (NC),35.2,-80.810833,,1,,6823,292,125,,,,,,41698,,, +1240,USA,,WJON,,St. Cloud (MN),45.56,-94.139167,,1,,6783,308,125,,,,,,41914,,, +1240,USA,,WLSC,,Loris (SC),34.034722,-78.882778,,1,,6793,289,125,,,,,,42231,,, +1240,USA,,WPKE,,Pikeville (KY),37.480833,-82.526389,,1,,6750,295,125,,,,,,42701,,, +1240,USA,,WSDR,,Sterling (IL),41.816389,-89.670278,,1,,6835,302,125,,,,,,42974,,, +1240,USA,,WWWC,,Wilkesboro (NC),36.15,-81.161667,,1,,6770,293,125,,,,,,43441,,, +1240,USA,,WDXY,,Sumter (SC),33.904444,-80.323611,,1,,6896,290,126,,,,,,41228,,, +1240,USA,,WHBU,,Anderson (IN),40.073611,-85.699444,,0.7,,6739,299,126,,,,,,41613,,, +1240,USA,,WKDK,,Newberry (SC),34.291667,-81.620833,,1,,6947,291,126,,,,,,41983,,, +1240,USA,,WLLV,,Louisville (KY),38.246944,-85.705278,,1,,6885,297,126,,,,,,42189,,, +1240,USA,,WMFG,,Hibbing (MN),47.408333,-92.951111,,0.49,,6573,309,126,,,,,,42310,,, +1240,USA,,WSQL,,Brevard (NC),35.223056,-82.705556,,1,,6941,293,126,,,,,,43058,,, +1240,USA,,KICD,,Spencer (IA),43.165833,-95.146111,,1,,7033,307,127,,,,,,38577,,, +1240,USA,,WIFA,,Knoxville (TN),35.954722,-83.951111,,1,,6961,294,127,,,,,,41736,,, +1240,USA,,WSFC,,Somerset (KY),37.1175,-84.611667,,0.79,,6908,296,127,,,,,,42985,,, +1240,USA,,WTAX,,Springfield (IL),39.793333,-89.605,,1,,6993,301,127,,,,,,43107,,, +1240,B,pt,ZYI774 Rdio Capibaribe AM 1240,,Recife (PE),-8.013889,-34.882222,,5,,7750,224,128,,,,3,,36902046,,, +1240,USA,,KBIZ,,Ottumwa (IA),41,-92.389722,,1,,7056,304,128,,,,,,38041,,, +1240,USA,,KDEC,,Decorah (IA),43.324444,-91.784722,,0.58,,6834,305,128,,,,,,20016010,,, +1240,USA,,WEBQ,,Harrisburg (IL),37.7175,-88.543611,,1,,7099,299,128,,,,,,41243,,, +1240,USA,,WGGA,,Gainesville (GA),34.316944,-83.829167,,1,,7085,293,128,,,,,,41506,,, +1240,USA,es,WNVL,,Nashville (TN),36.156389,-86.771111,,1,,7118,296,128,,,,,,42507,,, +1240,CAN,en,CBLO,,Mattawa (ON),46.313611,-78.721389,,0.04,,5854,300,129,,,,,,20109174,,, +1240,CAN,en,CKMK,,Mackenzie (BC),55.346667,-123.149722,,1,,7198,331,129,,,,,,36341,,, +1240,PTR,es,WALO,,Humacao (PR),18.146944,-65.813611,,1,,7218,268,129,,0000-2400,1234567,,,40698,,, +1240,USA,,KCCR,,Pierre (SD),44.350556,-100.318889,,1,,7209,311,129,,,,997,,38135,,, +1240,USA,,KFMO,,Flat River (MO),37.852778,-90.520278,,1,,7206,300,129,,,,,,38410,,, +1240,USA,,KLIK,,Jefferson City (MO),38.563889,-92.189167,,1,,7245,302,129,,,,,,38816,,, +1240,USA,,KLTZ,,Glasgow (MT),48.219167,-106.648333,,1,,7188,317,129,,,,,,38852,,, +1240,USA,,WDDO,,Macon (GA),32.838333,-83.650556,,1,,7194,292,129,,,,,,41139,,, +1240,USA,,WEKR,,Fayetteville (TN),35.157778,-86.590278,,1,,7189,295,129,,,,,,41278,,, +1240,USA,,WENK,,Union City (TN),36.424444,-89.038056,,1,,7234,298,129,,,,,,41307,,, +1240,USA,,WMGJ,,Gadsden (AL),34.001111,-86.03,,1,,7249,294,129,,,,,,42317,,, +1240,USA,,KFOR,,Lincoln (NE),40.82,-96.658056,,1,,7311,306,130,,,,,,38420,,, +1240,USA,,WBCF,,Florence (AL),34.783611,-87.704167,,1,,7288,296,130,,,,,,40821,,, +1240,USA,,WBHB,,Fitzgerald (GA),31.706389,-83.261111,,1,,7262,291,130,,,,,,40848,,, +1240,USA,,WLAG,,La Grange (GA),33.04,-85.024167,,1,,7264,293,130,,,,,,42119,,, +1240,USA,,WTWA,,Thomson (GA),33.472222,-82.517222,,0.6,,7070,291,130,,,,,,43234,,, +1240,USA,,WWNS,,Statesboro (GA),32.455278,-81.774444,,0.71,,7105,290,130,,,,,,43415,,, +1240,USA,en,WJLX,,Jasper (AL),33.815,-87.271944,,1,,7341,295,130,,,,,,42265,,, +1240,BAH,en,ZNS-2,,Nassau (npr),25.045583,-77.318278,,1,,7421,281,131,,0000-2400,1234567,,,45503,,, +1240,CAN,en,CBLN,,Nakina (ON),50.175278,-86.710278,,0.04,,6029,308,131,,,,,,20109173,,, +1240,USA,,WPAX,,Thomasville (GA),30.836111,-83.988611,,1,,7380,290,131,,,,,,42646,,, +1240,USA,,WWZQ,,Aberdeen (MS),33.808889,-88.5425,,1,,7420,296,131,,,,,,43451,,, +1240,USA,en,WMMB,,Melbourne (FL),28.077778,-80.598611,,1,,7388,286,131,,,,,,42349,,, +1240,USA,en,WZCC,,Cross City (FL),29.609722,-83.134167,,1,,7426,289,131,,,,,,43539,,, +1240,CAN,en,CBLE,,Beardmore (ON),49.596944,-87.959444,,0.04,,6138,308,132,,,,,,20109172,,, +1240,DOM,,R Maria de Altagracia,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,,,,,21100005,,, +1240,USA,,KASL,,Newcastle (WY),43.846389,-104.2125,,1,,7450,313,132,,,,,,37972,,, +1240,USA,,KJCR,,Billings (MT),45.758056,-108.497778,,1,,7490,317,132,,,,,,38956,,, +1240,USA,,KODY,,North Platte (NE),41.153889,-100.773056,,1,,7505,309,132,,,,,,39055,,, +1240,USA,,KTLO,,Mountain Home (AR),36.356389,-92.359167,,0.83,,7438,300,132,,,,,,39502,,, +1240,USA,,WBGC,,Chipley (FL),30.771944,-85.558611,,1,,7485,291,132,,,,,,40841,,, +1240,USA,,WKIQ,,Eustis (FL),28.838611,-81.696111,,0.79,,7397,287,132,,,,,,42020,,, +1240,USA,en,WFOY,,Saint Augustine (FL),29.85,-81.330556,,0.58,,7289,288,132,,,,2,,41427,,, +1240,HTI,,Hati Internationales,,Port-au-Prince (oue),18.516667,-72.316667,,1,,7631,273,133,,,,,,52118,,, +1240,USA,,KBLL,,Helena (MT),46.611944,-112.053611,,0.85,,7576,319,133,,,,,,38057,,, +1240,USA,,KWAK,,Stuttgart (AR),34.485556,-91.559722,,0.96,,7547,298,133,,,,,,39684,,, +1240,USA,,WAVN,,Southaven (MS),34.9825,-90.0125,,0.58,,7412,298,133,,,,,,40775,,, +1240,USA,,WEBJ,,Brewton (AL),31.109722,-87.06,,1,,7552,293,133,,,,,,41241,,, +1240,USA,,WNRA,,Eufaula (AL),31.908333,-85.164167,,0.6,,7366,292,133,,,,,,43259,,, +1240,USA,en,KCVL,,Colville (WA),48.520833,-117.907778,,1,,7648,324,133,,,,,,38225,,, +1240,USA,en,WFWN,,Fort Myers (FL),26.624444,-81.831111,,1,,7589,286,133,,,,,,41770,,, +1240,CAN,en,CJOR,,Osoyoos (BC),49.0825,-119.523611,,1,,7659,325,134,,,,,,36359,,, +1240,CLM,es,HJFG RCN,,Armenia/Calarc (qui),4.566667,-75.566667,,10,,9059,266,134,,,,,,37432,,, +1240,GTM,,TGK R Luz,,Ciudad de Guatemala (gut),14.65,-90.466667,,10,,9187,284,134,,1200-????,1234567,,,40495,,, +1240,USA,,KLYQ,,Hamilton (MT),46.256111,-114.1625,,1,,7701,320,134,,,,,,38867,,, +1240,USA,,KNEM,,Nevada (MO),37.860278,-94.381667,,0.5,,7430,302,134,,,,,,38983,,, +1240,USA,,KOKL,,Okmulgee (OK),35.608611,-95.971944,,1,,7713,302,134,,,,,,39076,,, +1240,USA,,KTHE,,Thermopolis (WY),43.632222,-108.226667,,1,,7666,315,134,,,,,,39481,,, +1240,USA,,KVRC,,Arkadelphia (AR),34.110833,-93.050278,,1,,7668,299,134,,,,,,39662,,, +1240,USA,,WGCM,,Gulfport (MS),30.429167,-89.019444,,1,,7732,294,134,,,,,,41488,,, +1240,USA,,WGRM,,Greenwood (MS),33.533889,-90.195,,0.72,,7544,297,134,,,,,,41558,,, +1240,USA,,WPBQ,,Flowood (MS),32.300833,-90.136667,,0.88,,7644,296,134,,,,,,42650,,, +1240,CAN,en,CFNI,,Port Hardy (BC),50.709444,-127.4375,,1,,7788,331,135,,,,3,,35987,,, +1240,USA,,KASO,,Minden (LA),32.630556,-93.282222,,1,,7808,298,135,,,,,,37974,,, +1240,USA,,KBEL,,Idabel (OK),33.881667,-94.819444,,1,,7793,300,135,,,,,,38019,,, +1240,USA,,KFH,,Wichita (KS),37.718333,-97.318056,,0.63,,7610,304,135,,,,,,38388,,, +1240,USA,,KIUL,,Garden City (KS),37.997778,-100.906944,,1,,7785,307,135,,,,,,38644,,, +1240,USA,,KRAL,,Rawlins (WY),41.781944,-107.261111,,1,,7784,313,135,,,,,,39219,,, +1240,USA,,WMIS,,Natchez (MS),31.520556,-91.385833,,1,,7787,296,135,,,,,,42332,,, +1240,CLM,es,HJGN,,Barrancabermeja (sat),7.066667,-73.816667,,5,,8721,267,136,,,,,,37458,,, +1240,CUB,es,R Rebelde,,Bolondrn (ma),22.785586,-81.475728,,1,,7888,283,136,,,,,,31600133,,, +1240,USA,,KADS,,Elk City (OK),35.380833,-99.406944,,1,,7929,304,136,,,,,,37916,,, +1240,USA,,KANE,,New Iberia (LA),30.0175,-91.836111,,1,,7942,295,136,,,,,,37949,,, +1240,USA,,KFBC,,Cheyenne (WY),41.121389,-104.839444,,0.7,,7720,311,136,,,,,,38377,,, +1240,USA,,KRDO,,Colorado Springs (CO),38.828611,-104.838889,,1,,7923,310,136,,,,,,39229,,, +1240,USA,,KSAM,,Whitefish (MT),48.395556,-114.319722,,0.4,,7512,322,136,,,,,,20016093,,, +1240,USA,,KVSO,,Ardmore (OK),34.181667,-97.146667,,1,,7903,302,136,,,,,,39672,,, +1240,USA,,KWIK,,Pocatello (ID),42.924167,-112.458611,,0.96,,7930,317,136,,,,998,,39712,,, +1240,USA,en,KDOK,,Kilgore (TX),32.417222,-94.854167,,1,,7920,299,136,,,,,,38026,,, +1240,USA,en,KXLE,,Ellensburg (WA),47.0025,-120.525278,,1,,7895,325,136,,,,,,39799,,, +1240,B,pt,ZYI388 Difusora Pantanal,,Campo Grande (MS),-20.480656,-54.568044,,10,,9989,235,137,,,,,,36902043,,, +1240,DOM,,HIAU R Revelacion,,San Felipe de Puerto Plata (ppl),19.766667,-70.666667,,0.25,,7412,273,137,,0900-0300,1234567,,,37212,,, +1240,USA,,KOFE,,St. Maries (ID),47.320556,-116.547222,,0.5,,7704,323,137,,,,,,39058,,, +1240,USA,,KTIX,,Pendleton (OR),45.685,-118.854722,,0.8,,7953,323,137,,,,994,,39492,,, +1240,USA,,KXIT,,Dalhart (TX),36.095833,-102.510556,,1,,8039,307,137,,,,,,39795,,, +1240,USA,en,KGY,,Olympia (WA),47.057778,-122.900833,,1,,7982,326,137,,,,0,,38523,,, +1240,PRU,es,OAU4V R Maria,,Chilca (lim),-12.533333,-76.733333,,12,,10644,257,138,,0000-2400,1234567,9996,,52657,,, +1240,USA,,KEVA,,Evanston (WY),41.258056,-111.014167,,0.88,,8014,315,138,,,,,,38347,,, +1240,USA,,KMHI,,Mountain Home (ID),43.150833,-115.707222,,1,,8056,320,138,,,,8,,38898,,, +1240,USA,,KSLV,,Monte Vista (CO),37.602778,-106.149444,,1,,8100,310,138,,,,,,39386,,, +1240,B,pt,ZYH654 Rdio So Francisco de Canind,,Canind (CE),-4.347056,-39.319739,,0.25,,7609,230,139,,,,,,36902049,,, +1240,DOM,,HICV R Barahona,,Santa Cruz de Barahona (bh),18.183333,-71.116667,,0.25,,7577,272,139,,0900-0400,1234567,,,37234,,, +1240,EQA,,HCGB1,,Santo Domingo de los Colorados (pic),-0.316667,-79.166667,,5,,9733,266,139,,,,,,36947,,, +1240,USA,,KCLV,,Clovis (DN) (NM),34.378056,-103.206111,,1,,8230,306,139,,,,,,20016277,,, +1240,USA,,KCLV,,Clovis (U) (NM),34.377778,-103.204722,,1,,8230,306,139,,,,,,38176,,, +1240,USA,,KDGO,,Durango (CO),37.305,-107.856944,,1,,8216,311,139,,,,,,38258,,, +1240,USA,,KEJO,,Corvallis (OR),44.593889,-123.225,,1,,8232,325,139,,,,,,38319,,, +1240,USA,,KRDM,,Redmond (OR),44.278056,-121.145556,,1,,8180,324,139,,,,,,39228,,, +1240,USA,,KXOX,,Sweetwater (TX),32.487778,-100.391944,,1,,8238,303,139,,,,,,39814,,, +1240,USA,,KXYL,,Brownwood (TX),31.705833,-98.995833,,1,,8226,301,139,,,,,,39834,,, +1240,PNR,es,HOM56 Ondas de Vida,,San Pablo (chq),8.4415,-82.498422,,3,,9193,274,140,,,,,,52338,,, +1240,USA,,KELK,,Elko (NV),40.843611,-115.749444,,1,,8273,318,140,,,,,,38324,,, +1240,USA,en,KDSK,,Los Ranchos de Albuquerque (NM),35.201667,-106.598889,,1,,8340,309,140,,,,,,37942,,, +1240,MEX,es,XERO-AM La Rancherita,,Aguascalientes (agu),21.887125,-102.333556,,2.5,,9298,298,141,,,,,,44690,,, +1240,USA,,KQEN,,Roseburg (OR),43.193056,-123.360833,,1,,8373,325,141,,,,,,39190,,, +1240,CLM,es,HJGO,,Saravena (ara),6.966667,-71.883333,,1,,8598,265,142,,,,,,35901616,,, +1240,MEX,es,XERPA-AM R Ranchito,,Morelia (mic),19.704444,-101.191667,,2,,9425,296,142,,,,,,44697,,, +1240,MEX,es,XEVM-AM Amor,,Piedras Negras (coa),28.665914,-100.573458,,1,,8587,301,142,,,,,,44972,,, +1240,PRU,es,OAU6D R Lder,,Arequipa (are),-16.4,-71.533333,,5,,10644,251,142,,,,4,,37000026,,, +1240,USA,,KAMQ,,Carlsbad (NM),32.395278,-104.246667,,1,,8464,306,142,,,,,,37946,,, +1240,USA,,KPOD,,Crescent City (CA),41.759722,-124.191111,,1,,8546,324,142,,,,,,39152,,, +1240,USA,,KSUE,,Susanville (CA),40.395833,-120.627778,,1,,8531,321,142,,,,,,39429,,, +1240,USA,,KVLF,,Alpine (TX),30.373611,-103.662222,,1,,8613,304,142,,,,,,39635,,, +1240,B,pt,ZYH463 Rdio AM 1240 Alagoinhas,,Alagoinhas (BA),-12.152831,-38.389333,,0.5,,8333,226,143,,,,,,36902048,,, +1240,B,pt,ZYK653 Rdio Clube Santista,,Santos (SP),-23.923683,-46.457883,,2.5,,9887,227,143,,,,,,36902047,,, +1240,MEX,es,XEBN-AM Rla,,Ciudad Delicias (chi),28.244639,-105.479697,,1,,8908,304,143,,,,,,43785,,, +1240,MEX,es,XECG-AM Romntica,,Nogales (son),31.313792,-110.935625,,1,,8925,310,143,,,,,,43834,,, +1240,MEX,es,XEWG-AM Cambio 1240,,Ciudad Jurez (chi),31.736667,-106.441667,,1,,8645,307,143,,,,,,45018,,, +1240,PNR,es,R Infantil,,Ciudad de Panam/Orillac (pnm),9.029106,-79.515272,,1,,8939,272,143,,,,,,35100008,,, +1240,USA,,KJAA,,Globe (AZ),33.380833,-110.756944,,1,,8724,311,143,,,,,,38654,,, +1240,USA,,KJOP,,Lemoore (CA),36.313056,-119.73,,1,,8884,319,143,,,,,,38687,,, +1240,USA,,KSOX,,Raymondville (TX),26.405278,-97.914444,,0.85,,8628,297,143,,,,,,39401,,, +1240,USA,,KTAM,,Bryan (TX),30.650278,-96.349167,,0.38,,8162,299,143,,,,,,39449,,, +1240,USA,en,KCVV,,Sacramento (CA),38.588056,-121.468056,,1,,8741,321,143,,,,33,,39409,,, +1240,CLM,es,HJJA R Buenaventura/R Maria de Colombia,,Buenaventura (val),3.816667,-77.066667,,1,,9227,267,144,,,,42,,37502,,, +1240,HND,,HRZC,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37888,,, +1240,MEX,es,XEBQ-AM,,Guaymas (son),27.890192,-110.914883,,1,,9241,308,144,,,,,,43788,,, +1240,MEX,es,XERD-AM La Comadre,,Pachuca (hid),20.123428,-98.735228,,1,,9236,294,144,,,,,,44662,,, +1240,NCG,es,R Restauracin,,Managua (mng),12.116667,-86.333333,,1,,9133,280,144,,,,,,52220,,, +1240,SLV,es,YSQN,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,31100006,,, +1240,URG,es,CW35 R Paysand,,Paysand (pa),-32.316667,-58.066667,,5,,11279,231,144,,0900-0400,1234567,,,36769,,, +1240,USA,,KCRT,,Trinidad (CO),37.145833,-104.511667,,0.25,,8055,309,144,,,,,,38206,,, +1240,USA,,KEZY,,San Bernardino (CA),34.081944,-117.304722,,1,,8984,316,144,,,,,,38368,,, +1240,USA,,KLOA,,Ridgecrest (CA),35.634444,-117.670833,,0.82,,8854,317,144,,,,,,38835,,, +1240,USA,,KNRY,,Monterey (CA),36.615556,-121.898333,,1,,8951,320,144,,,,17,,39015,,, +1240,USA,,KSMX,,Santa Maria (CA),34.950556,-120.490833,,1,,9049,318,144,,,,,,39387,,, +1240,B,pt,Rdio Verde,,Jaru (RO),-10.433333,-62.483333,,1,,9532,247,145,,,,,,36902037,,, +1240,CHL,,CB124 R Universidad de Santiago,,Santiago (RM),-33.55,-70.566667,,7.5,,12088,239,145,,1100-0400,1234567,37,,35727,,, +1240,CTR,,TILX R Columbia,,Nicoya (gnc),10.15,-85.45,,1,,9245,278,145,,,,,,52155,,, +1240,MEX,es,XECE-AM Ke Buena,,Oaxaca (oax),17.061667,-96.712778,,1,,9381,291,145,,,,,,43831,,, +1240,MEX,es,XESI-AM R Positiva,,Santiago Ixcuintla (nay),21.811328,-105.197064,,1,,9476,300,145,,,,,,44744,,, +1240,BOL,,CP16 R Los Andes,,Tarija (trj),-21.55,-64.333333,,2,,10655,242,146,,1000-2200,1234567,,,36658,,, +1240,EQA,,HCPA1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,37055,,, +1240,USA,,KNSN,,San Diego (CA),32.694167,-117.121389,,0.55,,9108,315,147,,,,,,39396,,, +1240,BOL,,R Achocalla,,Achocalla (lpz),-16.583333,-68.166667,,1,,10446,248,148,,,,,,52011,,, +1240,CAN,en,CBXK,,Pemberton (BC),50.323056,-122.798611,,0.04,,7664,328,148,,,,,,20100010,,, +1240,PRU,,OAU9B,,Chachapoyas (ama),-6.225672,-77.879,,1,,10166,262,148,,,,,,37000076,,, +1240,PRU,,R Pachatusn,,Sicuani (cus),-14.333333,-71.216667,,1,,10440,252,148,,,,998,,40411,,, +1240,PRU,,R Sechura,,Sechura (piu),-5.55,-80.816667,,1,,10305,264,148,,,,14,,52447,,, +1240,PRU,es,R Norandino,,Santiago de Chuco (lal),-8.15,-78.183333,,1,,10356,261,148,,,,98,,37000062,,, +1240,EQA,,HCLA5,,Riobamba (chi),-1.633333,-78.616667,,0.5,,9812,265,149,,,,,,37003,,, +1240,PRU,,OAU3L,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000086,,, +1240,B,pt,ZYL317 Rdio Itatiaia,,Pirapora (MG),-17.36795,-44.918528,,0.25,,9173,229,150,,,,,,36902040,,, +1240,CHL,,CA124 R Principal Chuquicamata,,Calama (TA),-20.25,-70.166667,,1,,10899,247,150,,0950-0500,1234567,,,35677,,, +1240,MEX,es,XES-AM W R,,Tampico (tam),22.238889,-97.865317,,0.25,,8993,295,150,,,,,,44725,,, +1240,B,pt,ZYL298 Rdio Sociedade Ubaense,,Ub (MG),-21.108722,-42.969817,,0.25,,9441,225,151,,,,,,36902036,,, +1240,ARG,,R Vida,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,51839,,, +1240,B,pt,ZYK621 ORC 1240-Orlndia Rdio Clube,,Orlndia (SP),-20.74735,-47.866581,,0.25,,9652,229,152,,,,,,36902045,,, +1240,B,pt,ZYK711 Rdio Vale do Rio Tiet,,Jos Bonifcio/Estrada da Torre (SP),-21.045083,-49.660714,,0.25,,9775,231,152,,,,,,36902033,,, +1240,B,pt,ZYL294 Rdio Trs Pontas,,Trs Pontas (MG),-21.361506,-45.490161,,0.25,,9590,227,152,,,,,,36902042,,, +1240,B,pt,ZYL303 Rdio Platina,,Ituiutaba (MG),-18.966667,-49.5,,0.25,,9567,232,152,,,,,,36902041,,, +1240,EQA,,HCRF3,,Zaruma (oro),-3.716667,-79.616667,,0.3,,10063,265,152,,,,,,37078,,, +1240,EQA,,HCRQ2,,Quevedo (gua),-1.05,-79.45,,0.25,,9817,266,152,,,,,,37107,,, +1240,ARG,,Onda Marina,,Mar del Plata (ba),-38,-57.566667,,1,,11773,227,153,,0000-2400,1234567,,,51840,,, +1240,B,pt,ZYJ215 Rdio Arapongas AM,,Arapongas (PR),-23.416389,-51.422222,,0.25,,10094,231,153,,,,,,36902038,,, +1240,B,pt,ZYK565 Rdio Municipalista de Botucatu,,Botucatu/Av Raphael Serra 135 (SP),-22.887125,-48.427122,,0.25,,9887,229,153,,,,,,36902051,,, +1240,ARG,es,LRI218 R.Univ. Nacional del Sur,,Baha Blanca (ba),-38.7,-62.266667,,1,,12077,230,154,,,,,,33000077,,, +1240,B,pt,ZYJ280 Rdio Matelandia,,Matelndia (PR),-25.241667,-53.99,,0.25,,10404,232,154,,,,,,36902034,,, +1240,B,pt,ZYJ774 So Jos AM,,Mafra (SC),-26.119444,-49.806944,,0.25,,10268,228,154,,,,,,36902044,,, +1240,B,pt,ZYJ810 Rdio Iracema,,Cunha Por (SC),-26.923611,-53.175,,0.25,,10519,230,155,,,,,,36902032,,, +1240,B,pt,ZYK200 Rdio Aparados da Serra,,Bom Jesus (RS),-28.669722,-50.440556,,0.25,,10543,227,155,,,,,,36902039,,, +1240,B,pt,ZYK251 Rdio Ibirub AM,,Ibirub (RS),-28.650278,-53.100556,,0.25,,10677,230,155,,,,,,36902050,,, +1240,B,pt,ZYK355 Rdio So Jernimo AM,,So Jernimo (RS),-29.955278,-51.707778,,0.25,,10729,228,155,,,,,,36902035,,, +1240,BOL,,CP180 R San Miguel,,Arani (cbb),-17.566667,-65.716667,,0.2,,10380,245,155,,1000-0300,1234567,,,36662,,, +1242,F,fr,France Info,,Marseille/Raltor (13),43.462222,5.323056,,150,,965,185,45,,0000-2400,1234567,7,,1144,,, +1242,G,en,Absolute R,,Boston/Kirton Drove (EN-LIN),52.986111,-0.124444,,2,,452,285,59,,0000-2400,1234567,0,,1149,,, +1242,G,en,Absolute R,,Stockton-on-Tees (EN-DUR),54.588667,-1.349778,,1,,584,301,63,,0000-2400,1234567,9994,,1148,,, +1242,G,en,Absolute R,,Stoke-on-Trent/Sideway (EN-SFS),52.98775,-2.185417,,0.5,,589,283,66,,0000-2400,1234567,0,,1146,,, +1242,G,en,Gold,,Hoo St Werburgh/Arqiva (EN-KNT),51.426111,0.571111,,0.32,,409,262,66,,0000-2400,1234567,9981,,1145,,, +1242,G,en,Absolute R,,Dundee/Greenside Scalp (SC-DDC),56.45,-2.923972,,0.5,,774,312,68,,0000-2400,1234567,,,1147,,, +1242,IRN,fa,IRIB R Iran,,Zanjan (znj),36.595472,48.686111,,50,,3708,101,77,,0024-2205,1234567,9825,,1806,,, +1242,GRC,el,R Apollon,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,????-????,1234567,,,3400049,,, +1242,OMA,ar,R Sultanate Oman,,As Seeb (msc),23.577056,58.24175,,50,225,5385,106,94,,0000-2400,1234567,9276,,1151,,, +1242,IND,,AIR North,,Varanasi A (UP),25.371847,83.023042,,100,,6915,84,106,,0025-0435,1234567,,,50184,,, +1242,IND,,AIR North,,Varanasi A (UP),25.371847,83.023042,,100,,6915,84,106,,0630-0930,1234567,,,50184,,, +1242,IND,,AIR North,,Varanasi A (UP),25.371847,83.023042,,100,,6915,84,106,,1130-1742,1234567,,,50184,,, +1242,VTN,en,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1100-1130,1234567,5,,1876,,, +1242,VTN,fr,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1200-1230,1234567,5,,1876,,, +1242,VTN,fr,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1300-1330,1234567,5,,1876,,, +1242,VTN,id,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1430-1500,1234567,5,,1876,,, +1242,VTN,ja,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2200-2230,1234567,5,,1876,,, +1242,VTN,km,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1230-1300,1234567,5,,1876,,, +1242,VTN,lo,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1330-1430,1234567,5,,1876,,, +1242,VTN,th,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1130-1200,1234567,5,,1876,,, +1242,VTN,vi,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1500-1600,1234567,5,,1876,,, +1242,VTN,zh,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2230-2300,1234567,5,,1876,,, +1242,CHN,,Yunnan RGD Nongcun,,Kunming/Longquan (YN),25.120656,102.752439,,50,,8242,69,122,,,,,,50182,,, +1242,J,ja,JOLF NBS Nippon Hoso,,Tokyo/Kisarazu (kan-tok),35.396944,139.987778,,100,,9292,36,125,,0000-2400,1234567,13,,50191,,, +1242,THA,th,Sor. Wor. Sor.,,Surat Thani (stn),9.115278,99.295,,50,,9405,82,128,,2130-1700,1234567,,,50199,,, +1242,KOR,ko,HLSB MBC,,Wonju/Heungyang-ri (gan),37.389444,127.982222,,10,,8570,44,132,,0000-2400,1234567,,,50192,,, +1242,THA,th,Thor. Por. Saam,,Phetchabun (pbn),16.8,101.233333,,10,,8863,76,133,,,,,,50198,,, +1242,PHL,,DWBL-AM,,Malanday/Caloong (ncr),14.722461,120.945356,,20,,10301,62,135,,2000-1600,1234567,495,,50195,,, +1242,CHN,,Huludao RGD,,Huludao (LN),40.716667,121,,1,,7925,47,136,,,,446,,50180,,, +1242,CHN,,Qianjiang RGD,,Qianjiang (HB),30.416667,112.85,,1,,8400,59,141,,????-1345,1234567,2,,50203,,, +1242,INS,id,RRI Pro-1,,Bogor (JB-kbo),-6.409722,106.830278,,10,,11281,86,141,,2300-1700,1234567,0,,50187,,, +1242,CHN,,Lu'an RGD,,Lu'an (AH),31.75,116.483333,,1,,8489,55,142,,,,,,36200415,,, +1242,CHN,,Macheng RGD Jiaoyu yu Yinyue,,Macheng (HU),31.183333,115.033333,,1,,8458,57,142,,2155-1430,1234567,,,50183,,, +1242,CHN,,Ji'an RGD,,Ji'an/JXTS841 (JX),27.1725,114.969167,,1,,8812,59,143,,,,,,50181,,, +1242,PHL,,DXSY-AM,,Ozamis City/Mariano Marcos (moc),8.133333,123.816667,,5,,11084,63,144,,,,,,50204,,, +1242,PHL,,DXZB-AM,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,,,,,50196,,, +1242,TWN,,Yen Sheng Kuangpo Tientai 2,,Wuho=Wuhe (HL),23.958056,121.603333,,1,,9487,56,145,,,,,,50111,,, +1242,AUS,,8TAB,,Darwin/Ludmilla (NT),-12.425117,130.850167,,2,,13410,69,155,,0000-2400,1234567,,,50176,,, +1242,AUS,,5AU,,Port Augusta/5AU Rd Mambray Creek (SA),-32.829361,137.936306,,2,,15606,80,162,,0000-2400,1234567,,,50177,,, +1242,AUS,en,3GV Gold 1242,,Sale/Myrtlebank (VIC),-38.059444,147.028472,,5,,16607,78,162,,0000-2400,1234567,,,50178,,, +1242,AUS,en,4AK,,Oakey (Toowoomba) (QLD),-27.458544,151.755606,,2,,16047,60,164,,0000-2400,1234567,9979,,50179,,, +1242,NZL,,1XX 1 Double X/Triple X FM,,Whakatane (BOP),-37.966667,176.883333,,2,,18277,29,171,,,,,,50194,,, +1242,NZL,,LiveSPORT,,Timaru/Fairview (CAN),-44.401167,171.143583,,1,,18601,59,175,,,,,,32500003,,, +1242,NZL,,1XX 1 Double X/Triple X FM,,Galatea/Murupara (BOP),-38.4,176.733333,,0.1,,18316,30,184,,,,,,50193,,, +1245,RUS,,K,b,Kirzhach,56.1875,38.875,,0.025,,2141,65,94,,,,,L1025 U1025 ,86818,,, +1250,USA,en,WGAM,,Manchester (NH),43.011111,-71.505278,,5,,5646,293,106,,,,999,,41968,,, +1250,USA,,WMTR,,Morristown (NJ),40.8125,-74.46,,7,,5991,292,108,,,,992,,42406,,, +1250,USA,,WARE,,Ware (MA),42.245278,-72.208056,,2.5,,5745,292,110,,,,,,40739,,, +1250,CAN,en,CJYE,,Oakville (ON),43.458056,-79.754722,,5,,6123,298,111,,,,1,,36252,,, +1250,CAN,,CHSM,,Steinbach (MB),49.504167,-96.981944,,10,,6614,313,113,,,,999,,36094,,, +1250,USA,,WDDZ,i,Pittsburgh (PA),40.397222,-79.961944,,5,,6365,295,114,,,,2,,41234,,, +1250,USA,,WDVA,,Danville (VA),36.581389,-79.4425,,5,,6627,292,116,,,,,,41219,,, +1250,USA,,WYKM,,Rupert (WV),37.993056,-80.684167,,5,,6595,294,116,,,,,,43522,,, +1250,USA,en,WSSP,,Milwaukee (WI),42.946111,-88.060833,,5,,6652,302,117,,,,999,,41301,,, +1250,USA,,WGHB,,Farmville (NC),35.604722,-77.574722,,2.5,,6585,290,119,,,,,,41513,,, +1250,USA,en,WHHQ,,Bay City (Bridgeport) (MI),43.341944,-83.899167,,1.1,,6379,300,120,,,,,,42459,,, +1250,USA,,KBRF,,Fergus Falls (MN),46.272778,-96.044722,,2.2,,6827,310,122,,,,998,,38083,,, +1250,USA,,WLQM,,Franklin (VA),36.6825,-76.928611,,1,,6459,290,122,,,,,,42219,,, +1250,USA,,WGL,,Fort Wayne (IN),41.021111,-85.162778,,1,,6633,299,123,,,,0,,41525,,, +1250,USA,en,WHNZ,,Tampa (FL),28.020556,-82.609444,,5.9,,7524,287,125,,,,9998,,41672,,, +1250,USA,es,KYYS,,Kansas City (KS),39.185,-94.457778,,3.7,,7324,303,125,,,,,,38720,,, +1250,USA,,WCHO,,Washington Court House (OH),39.549722,-83.452778,,0.5,,6645,297,126,,,,,,40998,,, +1250,VEN,,YVPZ Latina 12-50,,Puerto Ordaz (blv),8.316667,-62.666667,,10,,7857,258,126,,0900-0400,1234567,17,,45424,,, +1250,USA,,KZDC,,San Antonio (D) (TX),29.283611,-98.474444,,25,,8408,300,127,,,,,,20016204,,, +1250,USA,en,WTMA,,Charleston (SC),32.8225,-79.980278,,1,,6960,289,127,,,,,,43170,,, +1250,B,pt,ZYL367 Rdio Metropolitana r:Nossa Rdio,,Vespasiano (MG),-19.682994,-43.937711,,50,,9349,227,128,,,,2,,36902062,,, +1250,USA,en,KWSU,,Pullman (WA),46.696389,-117.245556,,5,,7791,323,128,,,,997,,39758,,, +1250,PTR,,WJIT,,Sabana (PR),18.426944,-66.338889,,1,,7230,268,129,,,,,,41882,,, +1250,USA,,KCFI,,Cedar Falls (D) (IA),42.544167,-92.488056,,0.5,,6936,305,129,,,,,,38285,,, +1250,USA,,KCFI,,Cedar Falls (N) (IA),42.544722,-92.487778,,0.5,,6936,305,129,,,,,,20012558,,, +1250,USA,en,KKDZ,i,Seattle (D) (WA),47.563611,-122.359722,,5,,7913,326,129,,,,,,20012560,,, +1250,USA,en,KKDZ,i,Seattle (N) (WA),47.673056,-122.168889,,5,,7895,326,129,,,,9973,,38713,,, +1250,USA,,KTFJ,,Dakota City (NE),42.4425,-96.261389,,0.7,,7153,307,130,,,,,,39472,,, +1250,USA,es,WKDL,,Warrenton (VA),38.731111,-77.778333,,0.125,,6356,293,130,,,,,,42736,,, +1250,VEN,,YVML R Cabimas,,Cabimas (zul),10.4,-71.466667,,10,,8270,267,130,,1000-0300,1234567,,,45382,,, +1250,USA,,KPZK,,Little Rock (AR),34.701389,-92.217222,,1.2,,7569,299,132,,,,,,39182,,, +1250,HTI,,4VS,,Hinche (cen),19.141667,-72.005556,,1,,7557,273,133,,,,,,35656,,, +1250,CLM,es,HJCA Capital R,,Mosquera/Estado Solido Sender (cun),4.677156,-74.244069,,10,,8960,265,134,,,,993,,37363,,, +1250,CUB,es,R Trinchera,,Imas (gu),20.073283,-74.646278,,1,,7658,276,134,,,,,,36602,,, +1250,USA,,KCUE,,Red Wing (MN),44.537222,-92.5225,,0.11,,6778,306,134,,,,,,38221,,, +1250,USA,,WLEM,,Emporium (PA),41.506111,-78.223889,,0.03,,6174,295,134,,,,,,42153,,, +1250,USA,,WYYC,,York (PA),39.998889,-76.695278,,0.033,,6192,293,134,,,,,,42802,,, +1250,B,pt,ZYH594 Rdio Educadora de Crateus,,Crates (CE),-5.159058,-40.673422,,1,,7760,231,135,,,,,,36902058,,, +1250,B,pt,ZYI218 Rdio Nova Estao,,Vitria (ES),-20.3,-40.316667,,10,,9235,223,135,,,,,,36902065,,, +1250,B,pt,ZYI915 Rdio So Jos dos Altos,,Altos (PI),-5.05,-42.45,,1,,7845,233,135,,,,,,36902061,,, +1250,USA,,WKDX,,Hamlet (NC),34.885,-79.680556,,0.08,,6776,291,136,,,,,,41990,,, +1250,DOM,,HIBC LV del Progreso,,San Francisco de Macors (dua),19.266667,-70.25,,0.25,,7426,272,137,,1000-0400,1234567,913,,37217,,, +1250,DOM,,HIRJ El Sonido del Este Digital,,La Romana (rom),18.416667,-68.966667,,0.25,,7411,270,137,,0930-0430,1234567,,,37291,,, +1250,HND,,HRQG,,San Pedro Sula (cor),15.5,-88.016667,,5,,8950,283,137,,,,,,37827,,, +1250,PNR,es,HOLY R Hogar,,El Coco (ccl),8.450047,-80.355222,,5,,9047,273,137,,0955-0300,1234567,3,,52339,,, +1250,USA,,WSPL,,Streator (IL),41.158333,-88.836944,,0.064,,6839,301,137,,,,,,43051,,, +1250,B,pt,ZYH669 Rdio Liberdade de Itarema,,Itarema (CE),-2.935342,-39.909306,,0.25,,7502,231,138,,,,,,36902059,,, +1250,USA,,KDEI,,Port Arthur (TX),29.951111,-93.879444,,1,,8073,297,138,,,,,,38251,,, +1250,USA,,WLRT,,Nicholasville (KY),37.905,-84.556944,,0.059,,6842,296,138,,,,,,43373,,, +1250,USA,,WRKQ,,Madisonville (TN),35.508056,-84.379167,,0.084,,7023,294,138,,,,,,42872,,, +1250,USA,,WZOB,,Fort Payne (AL),34.439722,-85.753333,,0.122,,7195,294,138,,,,,,43584,,, +1250,B,pt,ZYJ925 Rdio Esperana,,Estncia/Praa Leo XIII (SE),-11.279167,-37.445278,,1,,8200,225,139,,,,,,36902068,,, +1250,B,pt,ZYL282 R.Difusora AM Pocos de Caldas,,Poos de Caldas (MG),-21.789039,-46.536536,,5,,9685,228,139,,,,7,,36902063,,, +1250,USA,,KIKC,,Forsyth (MT),46.258333,-106.689167,,0.132,,7361,316,139,,,,,,38601,,, +1250,USA,,KLLK,,Willits (CA),39.399444,-123.322222,,2.5,,8740,323,139,,,,9933,,38827,,, +1250,USA,,WBRM,,Marion (NC),35.685556,-82.034722,,0.051,,6862,293,139,,,,,,40902,,, +1250,USA,,WLCK,,Scottsville (KY),36.740278,-86.175278,,0.076,,7035,296,139,,,,,,42142,,, +1250,USA,,WRAY,,Princeton (IN),38.356944,-87.590278,,0.059,,6990,298,139,,,,,,42816,,, +1250,USA,,WYTH,,Madison (GA),33.579167,-83.477778,,0.079,,7123,292,139,,,,,,43552,,, +1250,USA,en,WNQA283,,Salisbury (MD),38.37765,-75.594342,,0.01,,6244,291,139,,,,,,20010641,,, +1250,B,pt,ZYI701 Rdio Sociedade de Soledade,,Soledade/Fazenda So Jose (PB),-7.072778,-36.363611,,0.25,,7728,226,140,,,,,,36902054,,, +1250,NCG,,YNCR Cadena Radial Samaritano,,Condega (esl),13.35,-86.4,,2.5,,9029,280,140,,1000-0400,1234567,,,52219,,, +1250,USA,,KZDC,,San Antonio (N) (TX),29.496944,-98.415833,,0.92,,8386,300,141,,,,,,39884,,, +1250,USA,,WKBL,,Covington (TN),35.586667,-89.639167,,0.08,,7340,298,141,,,,,,41964,,, +1250,USA,,WNTT,,Tazewell (TN),36.446944,-83.571944,,0.034,,6898,294,141,,,,,,42525,,, +1250,USA,,WQHL,,Live Oak (FL),30.287222,-82.965556,,0.083,,7359,289,141,,,,,,42772,,, +1250,CLM,es,HJEM,,Corozal (suc),9.3,-75.266667,,1,,8625,269,142,,,,,,37415,,, +1250,CLM,es,HJHS W R,,Ccuta (nsa),7.783333,-72.533333,,1,,8571,266,142,,,,22,,37479,,, +1250,CLM,es,HJOK Emisoras ABC,,Barranquilla (atl),10.816667,-74.783333,,1,,8460,270,142,,,,1,,37611,,, +1250,EQA,,HCCJ2,,Guayaquil (gua),-2.2,-79.9,,3,,9949,266,142,,,,,,36878,,, +1250,EQA,,HCEM1,,Tulcan (car),0.833333,-77.7,,2,,9532,266,142,,,,,,36917,,, +1250,EQA,,HCHB2 R Tricolor,,Guayaquil (gua),-2.166667,-79.9,,3,,9946,266,142,,,,995,,52460,,, +1250,PRU,es,OAX4L R Miraflores,,Miraflores (lim),-12.083333,-77.033333,,5,,10624,257,142,,0000-2400,1234567,999,,40308,,, +1250,USA,,WRBZ,,Wetumpka (AL),32.485,-86.206944,,0.08,,7384,293,142,,,,,,40736,,, +1250,CHN,zh,Quzhou RGD Jiaotong Yinyue Pinl,,Quzhou (ZJ),28.981778,118.833222,,1,,8871,55,143,,2200-1700,1234567,,,36201247,,, +1250,CLM,es,HJFV R Viva,,Pasto (nar),1.616667,-77.116667,,1.5,,9424,266,143,,,,94,,2169,,, +1250,HND,,HRJU,,Juticalpa (ola),14.683333,-86.266667,,1,,8904,281,143,,,,,,37772,,, +1250,USA,,KBTC,,Houston (MO),37.329167,-91.898611,,0.051,,7330,300,143,,,,,,38103,,, +1250,USA,,WPMA432,,Lodi (CA),38.133333,-121.266667,,1,,8776,321,143,,,,9891,,51942,,, +1250,USA,,WSRA,,Albany (GA),31.616667,-84.158889,,0.053,,7326,291,143,,,,,,43060,,, +1250,EQA,,HCMY1,,Santo Domingo de los Colorados (pic),-0.216667,-79.166667,,1.5,,9725,266,144,,,,,,37035,,, +1250,GTM,,LV Cristiana,,Totonicapn (tot),14.9,-91.333333,,1,,9222,285,144,,,,,,52135,,, +1250,GTM,,TGPY R Payak,,Esquipulas (cqm),14.566667,-89.333333,,1,,9119,283,144,,1100-0300,1234567,,,52134,,, +1250,HND,,HRIO2,,Danli (elp),14.016667,-86.566667,,1,,8982,281,144,,,,,,37771,,, +1250,MEX,es,XEAT-AM Nueva Imagen,,Hidalgo del Parral (chi),26.919328,-105.635406,,1,,9037,303,144,,,,,,43736,,, +1250,MEX,es,XETF-AM R.Frmula Veracruz,,Veracruz (vcz),19.152106,-96.157897,,1,,9160,292,144,,,,,,44815,,, +1250,USA,,KZER,,Santa Barbara (CA),34.418333,-119.818056,,1,,9070,318,144,,,,9959,,39886,,, +1250,MEX,,XEJX-AM R Frmula,,Quertaro (que),20.599286,-100.441217,,1,,9299,296,145,,,,,,44232,,, +1250,MEX,es,XEDK-AM,,Guadalajara (jal),20.641853,-103.340219,,1,,9472,298,145,,,,996,,43912,,, +1250,CHL,,CD125 R Armonia,,Valdivia (LL),-39.766667,-73.216667,,10,,12768,236,146,,1100-0400,1234567,,,35862,,, +1250,MEX,es,XESC-AM La Pantera,,Sabinas (coa),27.855375,-101.107144,,0.5,,8690,301,146,,,,,,44732,,, +1250,MEX,es,XESJ-AM R Saltillo,,Saltillo (coa),25.461447,-100.983428,,0.5,,8896,299,146,,,,,,44748,,, +1250,USA,,KIKZ,,Seminole (TX),32.699444,-102.636667,,0.25,,8347,305,146,,,,,,38606,,, +1250,USA,,KNEU,,Roosevelt (UT),40.286944,-109.958889,,0.129,,8051,314,146,,,,99086,,38985,,, +1250,USA,,KOFC,,Fayetteville (AR),36.040556,-94.275556,,0.045,,7577,301,146,,,,,,39057,,, +1250,USA,,KZHN,,Paris (TX),33.7225,-95.547222,,0.095,,7849,300,146,,,,,,39142,,, +1250,MEX,es,XEDL-AM,,Villa de Seris (son),29.049906,-110.967044,,0.5,,9136,308,147,,,,,,43917,,, +1250,PRU,,OAX8P R Pucallapa,,Pucallpa (uca),-8.383333,-74.533333,,1,,10131,258,147,,,,,,40358,,, +1250,B,pt,ZYJ500 Rdio Litoral AM,,Casimiro de Abreu (RJ),-22.475583,-42.183442,,0.5,,9538,224,148,,,,,,36902069,,, +1250,MEX,es,XEZT-AM R Tribuna,,Puebla (pue),19.049722,-98.210833,,0.5,,9299,293,148,,,,,,45157,,, +1250,B,pt,ZYK702 Rdio Cano Nova,,Caapava/Rua do Porto 1555 (SP),-23.080433,-45.712006,,0.5,,9769,227,149,,,,,,36902064,,, +1250,BOL,,R Uncia,,Uncia (pts),-18.45,-66.616667,,1,,10516,246,149,,,,,,52013,,, +1250,EQA,,HCRC6,,Ambato (tun),-1.25,-78.616667,,0.5,,9778,265,149,,,,,,37073,,, +1250,USA,en,WPMW409,,Cape Girardeau (MO),37.310964,-89.577689,,0.01,,7194,299,149,,,,,,20010640,,, +1250,B,pt,ZYH748 Rdio Difusora So Patricio,,Ceres (GO),-15.304006,-49.591258,,0.25,,9222,234,150,,,,,,36902053,,, +1250,B,pt,ZYK272 Rdio Tupanci,,Pelotas (RS),-31.761944,-52.286389,,1,,10929,227,150,,,,,,36902055,,, +1250,USA,,KHIL,,Willcox (AZ),32.266667,-109.832778,,0.196,,8779,309,150,,,,,,38541,,, +1250,B,pt,ZYJ211 Rdio Difusora A Pioneira,,Guarapuava (PR),-25.351389,-51.422222,,0.5,,10278,230,151,,,,,,36902067,,, +1250,MEX,es,XETEJ-AM R Mexiquense,,Tejupilco (mex),18.897833,-100.144806,,0.25,,9433,294,151,,,,,,44810,,, +1250,URG,,CW125 R Bella Union,,Bella Union (ar),-30.266667,-57.6,,1,,11066,232,151,,0900-0300,1234567,,,36744,,, +1250,ARG,es,AM 1250 R Estirpe Nacional,,San Justo (ba),-34.666667,-58.55,,1,,11520,230,152,,0000-2400,1234567,,,51841,,, +1250,B,pt,ZYK233 Rdio Difusora AM Caxiense,,Caxias do Sul (RS),-29.127778,-51.173056,,0.5,,10624,228,152,,,,,,36902070,,, +1250,PRG,,ZP3 R Libertad,,Asuncin (asu),-25.266667,-57.616667,,0.5,,10605,235,152,,0900-0600,1234567,18,,45526,,, +1250,URG,es,CX36 R Centenario,,Montevideo (mo),-34.858056,-56.131111,,1,,11412,228,152,,0000-2400,1234567,,,36814,,, +1250,B,pt,ZYI394 Rdio Difusora de Trs Lagoas,,Trs Lagoas (MS),-20.820086,-51.724339,,0.25,,9864,233,153,,,,,,36902057,,, +1250,B,pt,ZYJ233 Rdio Paranava AM,,Paranava (PR),-23.075,-52.423333,,0.25,,10115,232,153,,,,,,36902056,,, +1250,CHL,,CA125 R Santa Maria de Guadalupe,,La Serena (CO),-29.916667,-71.25,,1,,11815,242,153,,,,,,35679,,, +1250,B,pt,ZYJ313 Rdio Danbio Azul,,Santa Izabel do Oeste (PR),-25.815,-53.475556,,0.25,,10430,231,154,,,,,,36902071,,, +1250,B,pt,ZYJ766 Rdio Cultura de Joinville,,Joinville (SC),-26.275833,-48.776944,,0.25,,10230,227,154,,,,,,36902052,,, +1250,BOL,,CP26 R Amboro,,Santa Cruz (scz),-17.766667,-63.166667,,0.25,,10242,243,154,,0845-0200,123456,,,36686,,, +1250,BOL,,CP26 R Amboro,,Santa Cruz (scz),-17.766667,-63.166667,,0.25,,10242,243,154,,1000-2400,......7,,,36686,,, +1250,USA,,KCFM,,Florence (OR),44.029167,-124.096944,,0.037,,8321,326,154,,,,,,38212,,, +1250,USA,,KHOT,,Madera (CA),36.966111,-120.035,,0.081,,8835,319,154,,,,11,,38554,,, +1250,B,pt,ZYK361 Rdifuso guas Claras,,Catupe (RS),-28.256944,-54.02,,0.25,,10688,230,155,,,,,,36902060,,, +1250,BOL,,CP17 R Sararenda,,Camiri (scz),-20.05,-63.516667,,0.25,,10470,242,155,,1000-0400,1234567,,,36665,,, +1250,BOL,,CP54 R La Plata LV de la Capital,,Sucre (cqs),-19.016667,-65.283333,,0.25,,10484,244,155,,1000-0200,1234567,,,36705,,, +1250,BOL,,CP65 R Oruro,,Oruro (oru),-17.966667,-67.116667,,0.25,,10504,246,155,,1300-0400,1234567,,,36710,,, +1250,USA,,KNWH,,Twenty Nine Palm (CA),34.130833,-116.37,,0.077,,8935,315,155,,,,,,39214,,, +1250,BOL,,CP47 R Frontera,,Cobija (pdo),-11.033333,-68.733333,,0.1,,9985,252,157,,1000-1800,1234567,,,52012,,, +1250,USA,en,WPHG284,,Duncanville (TX),32.648194,-96.906111,,0.01,,8022,301,157,,,,,,20010644,,, +1250,USA,en,WQCE324,,Oroville (CA),39.624444,-121.377639,,0.01,,8637,321,162,,,,,,20010643,,, +1250,USA,en,WPMA702,,Lodi (CA),38.111017,-121.294358,,0.01,,8780,321,163,,,,,,20010642,,, +1251,HOL,nl,NPO R 5,,Hulsberg/Emmaberg (lim),50.875081,5.846614,,5,,143,196,49,,0000-2400,1234567,9979,,1159,,, +1251,HNG,hu,MR Dank Rdi,,Szombathely (Vas),47.200583,16.662444,,25,,917,122,52,,0325-2315,1234567,0,,1160,,, +1251,HNG,hu,MR Dank Rdi,,Nyregyhza (SSB),47.936806,21.757833,,25,,1188,107,55,,0325-2315,1234567,0,,1161,,, +1251,LBY,ar,R Libya,,Tarabulus=Tripoli (tbl),32.830722,12.99415,,200,,2208,164,56,,1115-1315,1234567,0,,1163,,, +1251,LBY,ar,R Libya,,Tarabulus=Tripoli (tbl),32.830722,12.99415,,200,,2208,164,56,,1745-0500,1234567,0,,1163,,, +1251,G,en,Gold,,Great Barton (EN-SFK),52.283472,0.764694,,0.76,,385,275,62,,0000-2400,1234567,9997,,1155,,, +1251,IRL,en,Atlantic R,,Ballyvary (MO),53.894444,-9.15,,1,,1058,287,68,,,,,,4100024,,, +1251,POR,pt,Rdio Sim,,Chaves (vrl),41.7398,-7.448028,,1,,1556,228,73,,0000-2400,1234567,,,1164,,, +1251,IRN,fa,IRIB R Iran,,Kiashahr (gln),37.412672,50.001292,,100,005 185,3738,98,74,,0000-2400,1234567,17,,1807,,, +1251,POR,pt,Rdio Sim,,Castelo Branco (cab),39.859189,-7.495886,,1,,1729,223,74,,0000-2400,1234567,,,1167,,, +1251,RUS,ru,R Rossii,,Cherkessk/RTPS (KC),44.263747,42.108889,,7,,2754,94,76,,0100-2100,1234567,,,46944,,, +1251,RUS,ru,R Rossii,,Urup (KC),43.844444,41.159722,,1,,2714,96,84,,0100-2100,1234567,,,6700153,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0200-0230,1234567,11,,50240,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0930-1000,1234567,11,,50240,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1400-1500,1234567,11,,50240,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1800-1830,1234567,11,,50240,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1830-1900,1234.67,11,,50240,,, +1251,TJK,en,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1630-1700,.....67,11,,50240,,, +1251,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0700-0900,1234567,11,,50240,,, +1251,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1700-1800,1234567,11,,50240,,, +1251,TJK,fa,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0230-0330,1234567,11,,50240,,, +1251,TJK,fa,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0330-0400,.....67,11,,50240,,, +1251,TJK,ru,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1630-1700,12345..,11,,50240,,, +1251,TJK,tg,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1000-1030,1234567,11,,50240,,, +1251,TJK,tg,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1830-1900,....5..,11,,50240,,, +1251,TJK,uz,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1300-1400,1234567,11,,50240,,, +1251,TJK,zh,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1100-1300,1234567,11,,50240,,, +1251,G,,Raw R Warwick (LPAM),,Warwick (EN-WAR),52.283333,-1.566667,,0.001,,544,275,92,,,,,,1157,,, +1251,G,,The Source (LPAM),,Warrington (EN-CHE),53.4,-2.616667,,0.001,,624,287,93,,,,0,,1158,,, +1251,PAK,,PBC R Pakistan/NBS News,,Loralai (blc),30.375925,68.613761,,10,,5532,91,102,,0200-0400,1234567,,,50233,,, +1251,PAK,,PBC R Pakistan/NBS News,,Loralai (blc),30.375925,68.613761,,10,,5532,91,102,,1145-1615,1234567,,,50233,,, +1251,CHN,bo,Qinghai RGD/CNR 11,,Xining/QHTS566 (QH),36.656389,101.579611,,200,230,7198,62,106,,1025-1520,1234567,,,50226,,, +1251,CHN,bo,Qinghai RGD/CNR 11,,Xining/QHTS566 (QH),36.656389,101.579611,,200,230,7198,62,106,,2225-0600,1234567,,,50226,,, +1251,IND,,AIR West,,Sangli (MH),16.927942,74.478889,,20,,7039,97,114,,0020-0430,1234567,9915,,50228,,, +1251,IND,,AIR West,,Sangli (MH),16.927942,74.478889,,20,,7039,97,114,,0700-0930,1234567,9915,,50228,,, +1251,IND,,AIR West,,Sangli (MH),16.927942,74.478889,,20,,7039,97,114,,1200-1740,1234567,9915,,50228,,, +1251,CHN,,Shijiazhuang RGD Nongcun,,Shijiazhuang (HB),37.833333,114.666667,,25,,7851,53,122,,,,,,36200402,,, +1251,CHN,,Hanzhong RGD News,,Hanzhong (SA),33.154944,106.962472,,10,,7815,61,125,,,,,,36200409,,, +1251,CHN,,Puyang RGD News,,Puyang (HE),35.7,115,,10,,8056,54,128,,,,,,50221,,, +1251,CHN,,Shandong Guangbo Dilu Pindao,,Zibo/Nanding Zhen (SD),36.761111,118.036667,,10,,8127,51,128,,,,,,36200359,,, +1251,CHN,,Luohe RGD,,Luohe (HE),33.533333,114.016667,,10,,8192,56,129,,0915-1400,1234567,,,50219,,, +1251,CHN,,Luohe RGD,,Luohe (HE),33.533333,114.016667,,10,,8192,56,129,,2130-0730,1234567,,,50219,,, +1251,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Yakeshi/NMTS785 (NM),49.3105,120.807556,,1,,7154,41,129,,2150-1605,1234567,,,36201243,,, +1251,CHN,,Qingdao JGD,,Qingdao/SDTS135 (SD),36.121111,120.350556,,10,,8306,50,130,,,,,,50222,,, +1251,CHN,,Changsha RGD Music,,Changsha/HNTS203 (HN),28.211544,113.051339,,10,,8607,60,132,,,,,,36200411,,, +1251,CHN,,Huai'an JGD,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,10,,8471,52,132,,2000-1600,1234567,,,36200408,,, +1251,CHN,,Shandong Guangbo Dilu Pindao,,Dezhou (SD),37.4575,116.313333,,3,,7973,52,132,,,,,,36200410,,, +1251,CHN,mn,Nei Menggu RGD Mongyol,,Jalaid=Zalaite/NMTS775 (NM),46.716667,122.9,,1,,7478,42,132,,,,,,36201241,,, +1251,CHN,,Hubei RGD Jingji Guangbo,,Jingmen (HU),31.033333,112.2,,5,,8308,59,133,,,,,,50215,,, +1251,CHN,,Wuxi JGD,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,10,,8709,53,133,,,,,,50224,,, +1251,KOR,ko,HLKT CBS,,Daegu (dae),35.908694,128.572194,,10,,8737,44,133,,2000-1600,1234567,,,50231,,, +1251,THA,th,Jor. Sor. 3,,Roi Et/Fort Prasoet Songkhram (ret),16.075,103.655556,,10,,9086,74,134,,,,,,50239,,, +1251,THA,th,Thor. Or. 06,,Bangkok/Nimitmai Road (bmp),13.835783,100.739903,,10,,9089,78,134,,0000-2400,1234567,48,,50238,,, +1251,CHN,en,CRI Easy FM,,Beijing (BJ),39.933333,116.383333,,1,,7759,50,135,,0000-2400,1234567,,,50209,,, +1251,INS,id,RRI Pro-1,,Banda Aceh (AC-bac),5.428822,95.420331,,10,,9464,87,135,,2200-1700,1234567,,,50229,,, +1251,CHN,,Hebei RGD Jingji Guangbo,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,,,,,36200403,,, +1251,TWN,,Han Sheng Kuangpo Tientai,,Kaohsiung (KHS),22.623056,120.344167,,10,,9538,58,136,,2100-1600,1234567,,,52265,,, +1251,CHN,,Anshan RGD Gushi,,Anshan (LN),41.116667,122.966667,,1,,7985,45,137,,,,,,50208,,, +1251,CHN,,Anyang RGD Traffic,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,2200-1400,1234567,,,36200413,,, +1251,CHN,,Jiaozuo RGD Play Service,,Jiaozuo (HE),35.192222,113.262778,,1,,8004,55,137,,,,,,36200406,,, +1251,CHN,,Yima RGD,,Yima (HE),34.755833,111.872222,,1,,7963,57,137,,,,,,36200400,,, +1251,CHN,zh,CNR 1,,Hutou Zhen (HL),45.986944,133.651667,,1,,8004,36,137,,2025-1805,1234567,,,36201106,,, +1251,CHN,,Shandong Guangbo Dilu Pindao,,Jinan/Huangtai (SD),36.700278,117.089444,,1,,8081,52,138,,,,,,50214,,, +1251,CHN,,Henan RGD Xinwen Guangbo,,unknown (HE),34,114,,1,,8150,56,139,,????-1700,1234567,,,50207,,, +1251,CHN,,Longkou JGD,,Longkou (SD),37.659389,120.328333,,1,,8166,49,139,,,,,,50218,,, +1251,CHN,,Weifang JGD,,Weifang (SD),36.716667,119.1,,1,,8187,50,139,,,,,,36200401,,, +1251,CHN,,Yunnan RGD Xinwen Guangbo,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200405,,, +1251,CHN,,Yuxi RGD Green FM,,Yuxi/YNTS693 (YN),24.402556,102.513944,,1,,8288,70,140,,2200-????,1234567,,,50117,,, +1251,CHN,,Lianyungang JGD,,Lianyungang (JS),34.666194,119.153972,,1,,8374,52,141,,2200-1410,1234567,,,50216,,, +1251,CHN,,Yunnan RGD Yinyue-Binfen 97,,Kaiyuan (YN),23.70675,103.269139,,1,,8397,70,141,,,,,,36201242,,, +1251,CHN,,Anhui RGD Xinwen Zonghe Guangbo,,Ma'anshan (AH),31.680722,118.53,,1,,8610,54,142,,2150-1500,1234567,,,50220,,, +1251,CHN,,Hubei RGD Jingji Guangbo,,Huanggang (HU),30.45,114.8,,1,,8510,57,142,,,,,,36200407,,, +1251,CHN,,Hubei RGD Jingji Guangbo,,Xianning (HU),29.866667,114.283333,,1,,8532,58,142,,,,,,50225,,, +1251,CHN,,Nanjing RGD Tiyu Pinl,,Nanjing (JS),31.883333,118.666667,,1,,8599,54,142,,,,,,36200404,,, +1251,CHN,,Yancheng RGD Traffic,,Yancheng (JS),33.4,120.133333,,1,,8541,52,142,,,,,,36200358,,, +1251,CHN,zh,Anhui RGD Xiqu Guangbo,,Chaohu (AH),31.5888,117.830833,,1,,8579,54,142,,,,,,36201240,,, +1251,CHN,,Huzhou RGD Dushi Wenyi,,Huzhou (ZJ),30.838611,120.221111,,1,,8779,53,143,,2130-1605,1234567,,,50213,,, +1251,CHN,,Zhejiang RGD Lyou zhi Sheng,,Jinhua (ZJ),29.108056,119.586111,,1,,8902,55,143,,,,,,36200252,,, +1251,CHN,zh,Shaoxing JGD,,Shaoxing (ZJ),30.060556,120.601389,,1,,8871,53,143,,????-1600,1234567,9,,50244,,, +1251,CHN,,Guangxi JGD Caifu Guangbo,,Beihai (GX),21.483333,109.1,,1,,8961,67,144,,,,,,36200412,,, +1251,PHL,,DXPH-AM,,Prosperidad (ags),8.583333,125.883333,,5,,11167,61,144,,,,,,50235,,, +1251,PHL,,DZMS-AM,,Sorsogon City (sor),12.966667,124,,2.5,,10646,60,145,,,,,,50236,,, +1251,PHL,,DYRG-AM IBC R,,Kalibo (akl),11.716667,122.35,,1,,10664,62,149,,,,,,50234,,, +1251,INS,id,R Refa Suara Abadi,,Tangerang (BT-ktg),-6.229167,106.715556,,1,,11257,86,151,,,,,,50887,,, +1251,INS,id,R Edukasi,,Yogyakarta (YO-yog),-7.783333,110.366667,,1,,11641,84,152,,0300-1200,1234567,,,35400075,,, +1251,AUS,,6NAN,,Narrogin (WA),-32.961111,117.216667,,2,,14207,97,158,,,,,,50206,,, +1251,AUS,,2DU,,Dubbo/Eulomogo (NSW),-32.271083,148.674639,,2,,16269,69,165,,0000-2400,1234567,29,,50205,,, +1251,NZL,,1XG NZs Rhema,,Auckland/Henderson (AUK),-36.844383,174.631153,,5,,18083,33,167,,0000-2400,1234567,,,50232,,, +1254,CHN,,Xiaoshan RGD,,Xiaoshan (ZJ),30.166667,120.266667,,1,,8843,54,143,,,,,,50243,,, +1255,UKR,,LU,b,Lugansk (LU),48.4375,39.291667,,0.025,,2351,87,96,,,,,U1020 5.7s,85891,,, +1255,UKR,,LG,b,Lugansk (LU),48.395833,39.458333,,0.025,,2364,87,97,,,,,,85890,,, +1255,RUS,,DX,b,Maksim Gorkiy,54.3125,56.791667,,0.025,,3292,65,106,,,,448,L1012 U1909 ,85889,,, +1259,AGL,pt,RNA Em. Prov. do Kwanza-Norte,,N'dalatando (cno),-9.294989,14.908344,,10,,6876,170,116,,0400-2200,1234567,,,2491,,, +1260,E,es,SER,,Murcia (MUR-MU),37.9872,-1.162722,,25,,1677,204,60,,0000-2400,1234567,993,,1172,,, +1260,G,en,Absolute R,,Lydd/Romney Marsh (EN-KNT),50.950972,0.915694,,1,,401,253,61,,0000-2400,1234567,11,,1178,,, +1260,G,en,Gold,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,1.6,,614,267,61,,0000-2400,1234567,,,1176,,, +1260,GRC,el,ERA Net/ERA 2/ERA Sport,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,0500-0459,.....67,845,,1554,,, +1260,GRC,el,ERA Net/ERA 2/ERA Sport,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,1100-1300,12345..,845,,1554,,, +1260,GRC,el,ERA Net/ERA 2/ERA Sport,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,1600-0500,12345..,845,,1554,,, +1260,GRC,el,ERA Notiou Aigaiou,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,0500-1100,12345..,845,,1554,,, +1260,GRC,el,ERA Notiou Aigaiou,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,1300-1600,12345..,845,,1554,,, +1260,CVA,ar,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0310-0330,1234567,9998,,1170,,, +1260,CVA,ar,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0500-0600,1234567,9998,,1170,,, +1260,CVA,ar,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1630-1700,1234567,9998,,1170,,, +1260,CVA,be,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0420-0440,1234567,9998,,1170,,, +1260,CVA,be,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1800-1820,1234567,9998,,1170,,, +1260,CVA,bg,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1920-1940,1234567,9998,,1170,,, +1260,CVA,eo,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,2020-2030,..34...,9998,,1170,,, +1260,CVA,es,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0100-0145,1234567,9998,,1170,,, +1260,CVA,es,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1130-1215,123456,9998,,1170,,, +1260,CVA,es,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1400-1415,1234567,9998,,1170,,, +1260,CVA,es,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1500-1530,1...5..,9998,,1170,,, +1260,CVA,fi,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0600-0620,1....6.,9998,,1170,,, +1260,CVA,fi,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1940-2000,....56.,9998,,1170,,, +1260,CVA,lt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0440-0500,1234567,9998,,1170,,, +1260,CVA,lt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1820-1840,1234567,9998,,1170,,, +1260,CVA,lv,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1840-1900,1234567,9998,,1170,,, +1260,CVA,no,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0600-0620,.2.....,9998,,1170,,, +1260,CVA,no,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1940-2000,1......,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0030-0100,1234567,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0900-0930,123456,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1000-1030,123456,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1415-1430,1234567,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1500-1530,...4...,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1600-1630,1234567,9998,,1170,,, +1260,CVA,ro,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1900-1920,1234567,9998,,1170,,, +1260,CVA,ru,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0330-0400,1234567,9998,,1170,,, +1260,CVA,ru,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1330-1400,1234567,9998,,1170,,, +1260,CVA,ru,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,2100-2130,1234567,9998,,1170,,, +1260,CVA,sq,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0600-0620,1234567,9998,,1170,,, +1260,CVA,sq,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,2000-2020,1234567,9998,,1170,,, +1260,CVA,sv,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0600-0620,..345.7,9998,,1170,,, +1260,CVA,sv,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1730-1800,1234567,9998,,1170,,, +1260,CVA,sv,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1940-2000,.234.6.,9998,,1170,,, +1260,CVA,tl,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,2020-2030,....5..,9998,,1170,,, +1260,CVA,uk,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0400-0420,1234567,9998,,1170,,, +1260,G,en,Absolute R,,Guildford/Fox Corner (EN-SUR),51.277389,-0.625444,,0.5,,493,262,65,,0000-2400,1234567,,,1177,,, +1260,G,en,BBC R 5 Live,,Scarborough/Row Bow (EN-NYK),54.26725,-0.441889,,0.5,,515,300,65,,0000-0530,12345..,0,,1173,,, +1260,G,en,BBC R 5 Live,,Scarborough/Row Bow (EN-NYK),54.26725,-0.441889,,0.5,,515,300,65,,0000-0600,.....67,0,,1173,,, +1260,G,en,BBC R York,,Scarborough/Row Bow (EN-NYK),54.26725,-0.441889,,0.5,,515,300,65,,0530-2400,12345..,0,,1173,,, +1260,G,en,BBC R York,,Scarborough/Row Bow (EN-NYK),54.26725,-0.441889,,0.5,,515,300,65,,0600-2400,.....67,0,,1173,,, +1260,G,en,Gold,,Farndon (EN-CHE),53.092417,-2.889222,,0.64,,637,284,65,,0000-2400,1234567,12,,1175,,, +1260,G,,Sabras R,,Leicester/Freemen's Common (EN-LEI),52.619,-1.131472,,0.29,,515,279,68,,0000-2400,1234567,997,,1174,,, +1260,E,es,SER,,Algeciras/Carretera a Cdiz (AND-CA),36.091819,-5.47895,,5,,2012,212,70,,0000-2400,1234567,65,,1171,,, +1260,ARS,ar,BSKSA Idha'atu-i Riyadh,,Dammam (shy),26.461783,50.041697,,500,,4608,111,76,,0000-2400,1234567,33,,52551,,, +1260,PAK,,PBC R Pakistan,,Peshawar (kpk),34,71.833333,,400,,5474,85,86,,1200-1813,1234567,1,,31500052,,, +1260,PAK,,PBC R Pakistan,,Peshawar (kpk),34,71.833333,,400,,5474,85,86,,2300-0200,1234567,1,,31500052,,, +1260,IRN,fa,IRIB R Esfahan,,Khur (esf),33.757017,54.720669,,10,,4327,99,90,,0000-2400,1234567,7,,1180,,, +1260,CAN,en,CKHJ,,Fredericton (NB),45.997778,-66.693611,,10,,5141,293,98,,,,0,,36124,,, +1260,RUS,ru,Dorozhnoye R,,Nizhneudinsk (IR),54.945467,99.129483,,10,,5671,48,104,,,,,,6700154,,, +1260,USA,,WMKI,i,Boston (MA),42.274444,-71.042222,,5,,5669,292,107,,,,0,,42340,,, +1260,USA,en,WSKO,,Syracuse (NY),43.025556,-76.065278,,5,,5929,295,109,,,,1,,42511,,, +1260,CAN,en,CFRN,,Edmonton (AB),53.451944,-113.682222,,50,,7029,325,110,,,,4,,36006,,, +1260,USA,en,WRIE,,Erie (PA),42.055,-80.04,,5,,6245,297,112,,,,,,42853,,, +1260,USA,,WWRC,,Washington (DC),38.999722,-77.0575,,5,,6290,292,113,,,,,,43425,,, +1260,USA,,WFJS,,Trenton (NJ),40.265556,-74.7575,,2.5,,6050,292,114,,,,,,40925,,, +1260,USA,,WWMK,,Cleveland (OH),41.286111,-81.642778,,5,,6400,297,114,,,,,,43407,,, +1260,IND,,AIR West,,Ambikapur (MP),23.180583,83.060944,,20,,7098,85,115,,0025-0430,1234567,,,50254,,, +1260,IND,,AIR West,,Ambikapur (MP),23.180583,83.060944,,20,,7098,85,115,,0630-0930,1234567,,,50254,,, +1260,IND,,AIR West,,Ambikapur (MP),23.180583,83.060944,,20,,7098,85,115,,1200-1740,1234567,,,50254,,, +1260,USA,,WCHV,,Charlottesville (VA),38.114444,-78.455,,2.5,,6446,292,117,,,,,,41004,,, +1260,USA,,WXCE,,Amery (WI),45.256944,-92.366667,,5,,6712,307,117,,,,,,43456,,, +1260,USA,,WNDE,,Indianapolis (IN),39.865,-86.061944,,5,,6778,299,118,,,,,,42450,,, +1260,USA,,WBNR,,Beacon (NY),41.492222,-73.978611,,0.4,,5910,293,120,,,,,,40886,,, +1260,USA,es,WSUA,,Miami (FL),25.772778,-80.421111,,20,,7567,284,120,,,,9999,,43079,,, +1260,USA,,WSDZ,,Belleville (IL),38.458611,-89.961389,,5,,7123,300,121,,,,,,42978,,, +1260,USA,,WUFE,,Baxley (GA),31.799167,-82.411944,,5,,7200,290,122,,,,,,43253,,, +1260,PTR,,WI3XSO r:WISO,,Aguadilla (PR),18.4025,-67.146389,,4.8,,7287,269,123,,1000-0300,1234567,,,41708,,, +1260,USA,,WPNW,,Zeeland (MI),42.732222,-86.101667,,1,,6555,301,123,,,,,,42721,,, +1260,USA,,KSGF,,Springfield (MO),37.264167,-93.317778,,5,,7419,301,124,,,,,,39351,,, +1260,USA,en,WNXT,,Portsmouth (OH),38.810556,-82.989167,,1,,6674,296,124,,,,,,42540,,, +1260,THA,th,Sor. Wor. Thor. (R Thailand),,Chiang Rai/Rim Kok (cri),19.938222,99.848972,,50,,8500,75,125,,2200-1700,1234567,3,,50277,,, +1260,USA,,WWIS,,Black River Falls (WI),44.319722,-90.891944,,0.58,,6705,305,126,,,,,,43388,,, +1260,PTR,,WISO,,Ponce (PR),17.984167,-66.636667,,2,,7288,268,127,,1000-0300,1234567,,,41808,,, +1260,USA,,KROX,,Crookston (MN),47.788889,-96.594444,,0.5,,6733,311,127,,,,,,39285,,, +1260,USA,,WCLC,,Jamestown (TN),36.436111,-84.928333,,1,,6982,295,127,,,,,,41022,,, +1260,USA,,WKXR,,Asheboro (NC),35.723889,-79.805833,,0.5,,6718,291,127,,,,,,42101,,, +1260,VEN,es,YVRM RRB,,Caracas (dcf),10.540678,-66.928044,,10,,7949,263,127,,,,0,,45446,,, +1260,CHN,,Liaoning RGD Xinwen Tai,,Fengcheng/LNTS313 (LN),40.45,124.066667,,10,,8099,45,128,,,,,,36201038,,, +1260,CHN,zh,CNR 2,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,1,,7117,74,128,,2100-1602,1234567,,,36201037,,, +1260,MOZ,pt,Emisso Provincial do Niassa,,Lichinga (nia),-13.316919,35.249211,,5,,7786,150,128,,0250-2000,1234567,9967,,2494,,, +1260,PTR,,WI2XSO r:WISO,,Mayaguez (PR),18.154722,-67.152222,,1.8,,7309,269,128,,1000-0300,1234567,,,41707,,, +1260,CHN,,Shannan RGD,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,,,,,50251,,, +1260,CHN,,Xizang RGD,,Tsetang (XZ),29.266667,91.766667,,1,,7181,74,129,,,,,,50252,,, +1260,B,pt,ZYH242 Rdio Gazeta de Alagoas,,Macei/Rua Dr. Oswaldo Cruz (AL),-9.617967,-35.761169,,5,,7953,224,130,,,,,,36902079,,, +1260,CHN,zh,CNR 1,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,0000-0030,1234567,,,36200399,,, +1260,CHN,zh,CNR 1,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,1030-1100,1234567,,,36200399,,, +1260,CHN,zh,CNR 1,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2230-2300,1234567,,,36200399,,, +1260,CHN,zh,CNR 1,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,0000-0030,1234567,,,36201171,,, +1260,CHN,zh,CNR 1,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,1030-1100,1234567,,,36201171,,, +1260,CHN,zh,CNR 1,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2230-2300,1234567,,,36201171,,, +1260,CHN,zh,CNR 2,,Tongxin (NX),36.98575,105.904472,,1,,7428,59,131,,2100-1602,1234567,,,36201172,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,0030-0600,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,0600-1000,1.34567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,1000-1030,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,1100-1800,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2000-2230,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2300-2400,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,0030-0600,1234567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,0600-1000,1.34567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,1000-1030,1234567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,1100-1800,1234567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2000-2230,1234567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2300-2400,1234567,,,36201171,,, +1260,CUB,es,R Progreso,,Media Luna (gr),20.150067,-77.433781,,2.5,,7840,278,131,,,,3,,31600068,,, +1260,J,ja,JOIR TBC Tohoku Hoso,,Sendai (toh-miy),38.234722,140.966667,,20,,9049,34,131,,0000-2400,1234567,,,50267,,, +1260,VEN,,YVRY R Horizonte,,Nirgua (ycy),10.166667,-68.5,,5,,8089,264,131,,1000-0200,1234567,,,45452,,, +1260,B,pt,ZYK688 Rdio Morada do Sol,,So Paulo/Jardim Nakamura (SP),-23.695,-46.770833,,25,,9881,227,133,,,,,,36902078,,, +1260,KOR,ko,HLKL KBS 1 R,,Namweon=Namwon (jeb),35.382778,127.335833,,10,,8727,46,133,,0000-2400,1234567,,,50269,,, +1260,USA,,KPOW,,Powell (WY),44.7,-108.766667,,1,,7597,316,133,,,,4,,39156,,, +1260,CLM,es,HJOH RCN,,Valledupar (ces),10.666667,-73.266667,,5,,8370,269,134,,,,0,,37566,,, +1260,USA,,WCSA,,Ripley (MS),34.720833,-88.944444,,0.5,,7369,297,134,,,,,,41082,,, +1260,USA,,WPHB,,Philipsburg (PA),40.894167,-78.1975,,0.034,,6219,295,134,,,,,,42684,,, +1260,CLM,es,HJTM,,Ocana (nsa),8.216667,-73.366667,,5,,8590,267,135,,,,,,37647,,, +1260,MEX,es,XEJAM-AM,,Santiago Jamiltepec (oax),16.292389,-97.828522,,10,,9520,291,135,,,,,,44196,,, +1260,TWN,,Ching-Cha Kuangpo Tientai,,Taipei (TPS),25.080333,121.517961,,10,,9379,56,135,,,,,,50279,,, +1260,USA,,KMZT,,Beverly Hills (CA),34.249167,-118.453889,,7.5,,9023,317,135,,,,9966,,39433,,, +1260,USA,,KWSH,,Wewoka (OK),35.169444,-96.541667,,1,,7783,302,135,,,,,,39754,,, +1260,CHN,,Liaoning RGD Xinwen Tai,,Panjin/LNTS315 (LN),41.203278,122.029139,,1,,7932,46,136,,,,,,50249,,, +1260,CHN,,Liaoning RGD Xinwen Tai,,Tieling/LNTS325 (LN),42.353611,123.901667,,1,,7918,44,136,,,,,,36200398,,, +1260,CLM,es,HJDA,,Medelln (ant),6.283333,-75.533333,,5,,8907,268,136,,,,,,37385,,, +1260,EQA,,HCMO1,,Quito (pic),-0.166667,-78.5,,10,,9675,266,136,,,,,,37029,,, +1260,KOR,,AFN Korea-Thunder AM,,Busan/Camp Hialeah (bus),35.116667,128.966667,,5,,8831,45,136,,0000-2400,1234567,,,50268,,, +1260,USA,,WSHU,,Westport (CT),41.128889,-73.388889,,0.009,,5900,292,136,,,,,,43001,,, +1260,USA,,WZBO,,Edenton (NC),36.083333,-76.6,,0.034,,6485,290,136,,,,,,43568,,, +1260,CHN,zh,CNR 1,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,2230-2300,1234567,,,36201173,,, +1260,CHN,zh,CNR 2,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,0700-0800,1234567,,,36201173,,, +1260,CHN,zh,CNR 2,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,1200-1300,1234567,,,36201173,,, +1260,CHN,zh,Suining RGD,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,0800-1200,1234567,,,36201173,,, +1260,CHN,zh,Suining RGD,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,1300-1600,1234567,,,36201173,,, +1260,CHN,zh,Suining RGD,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,2150-2230,1234567,,,36201173,,, +1260,CHN,zh,Suining RGD,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,2300-0700,1234567,,,36201173,,, +1260,CTR,,TIHM R Emas,,San Vito de Coto Brus (pta),8.833333,-82.966667,,6,,9191,275,137,,1100-0300,1234567,,,52156,,, +1260,USA,,KBHC,,Nashville (AR),33.929167,-93.850278,,0.5,,7731,299,137,,,,,,38030,,, +1260,USA,,KDUZ,,Hutchinson (MN),44.906667,-94.366389,,0.064,,6848,308,137,,,,,,38298,,, +1260,USA,,WOCO,,Oconto (WI),44.891944,-87.955,,0.029,,6495,304,137,,,,,,42561,,, +1260,DOM,,HIT R Recuerdos,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,0900-0400,1234567,,,37307,,, +1260,MEX,es,XEL-AM La 1260,,Los Reyes Acaquilpan (mex),19.360667,-98.992717,,5,,9320,294,138,,,,,,44284,,, +1260,MEX,es,XETBV-AM Ke Buena,,Tierra Blanca (vcz),18.438619,-96.341806,,5,,9235,291,138,,,,,,44800,,, +1260,PHL,,DZEL-AM (r:DZEC 1062),,Lucena City (qzn),13.95,121.6,,10,,10412,62,138,,,,,,50274,,, +1260,USA,,KWYR,,Winner (SD),43.3825,-99.910556,,0.146,,7270,310,138,,,,,,39774,,, +1260,USA,,WHYM,,Lake City (SC),33.861667,-79.7375,,0.055,,6861,290,138,,,,,,41704,,, +1260,B,pt,ZYH596 Rdio Vale do Jaguaribe,,Limoeiro do Norte (CE),-5.157364,-38.093911,,0.25,,7625,229,139,,,,,,36902072,,, +1260,B,pt,ZYJ670 Rdio Educadora,,Guajar-Mirim (RO),-10.753056,-65.333056,,5,,9741,249,139,,,,31,,36902080,,, +1260,BOL,,R Nacional de Huanuni,,Huanuni (oru),-18.291111,-66.841222,,10,,10515,246,139,,,,,,36500032,,, +1260,EQA,,HCVI5,,Caar (can),-0.566667,-78.916667,,5,,9738,266,139,,,,,,37169,,, +1260,USA,,KLYC,,McMinnville (OR),45.234444,-123.1325,,0.85,,8166,325,139,,,,,,38866,,, +1260,USA,en,WIYD,,Palatka (FL),29.651944,-81.592222,,0.135,,7323,288,139,,,,,,41827,,, +1260,USA,en,WWVT,,Christiansburg (VA),37.153611,-80.507222,,0.025,,6650,293,139,,,,,,43440,,, +1260,PHL,,DYDD-AM Bantay Radyo,,Lapu-Lapu City/MEPZ (ceb),10.331111,123.978611,,10,,10890,62,140,,????-1600,1234567,,,50273,,, +1260,SLV,,YSA,,San Salvador (ssl),13.716667,-89.216667,,3,,9186,283,140,,,,,,45260,,, +1260,USA,,KTRC,,Santa Fe (NM),35.682222,-105.9725,,1,,8263,309,140,,,,,,39534,,, +1260,PHL,,DWMC-AM,,Rosales/Tomana (pgs),15.883333,120.6,,5,,10174,61,141,,,,,,50275,,, +1260,URG,,CW37 Dif. Rochense,,Rocha (ro),-34.5,-54.316667,,10,,11287,227,141,,0900-0300,1234567,,,36770,,, +1260,CHN,,Changde JGD,,Changde (HN),29.033333,111.7,,1,,8454,60,142,,,,,,50250,,, +1260,CLM,es,HJOU,,Leticia (ama),-4.116667,-69.966667,,2,,9449,257,142,,,,,,37614,,, +1260,EQA,,HCEM1,,Tulcan (car),0.8,-77.716667,,2,,9537,266,142,,,,,,36918,,, +1260,EQA,,HCEV5,,Cuenca (azu),-2.85,-79,,3,,9945,265,142,,,,,,36924,,, +1260,USA,,KDLF,,Boone (IA),42.048611,-93.898333,,0.033,,7055,305,142,,,,,,38387,,, +1260,USA,,WEKZ,,Monroe (WI),42.594444,-89.592778,,0.019,,6768,303,142,,,,,,41281,,, +1260,USA,,WFTW,,Fort Walton Beach (FL),30.413611,-86.627778,,0.131,,7583,292,142,,,,,,41453,,, +1260,USA,,WMCH,,Church Hill (TN),36.520833,-82.748333,,0.021,,6840,294,142,,,,,,42289,,, +1260,CLM,es,HJHU,,San Andrs (sap),12.566667,-81.708333,,1,,8781,276,143,,,,,,37481,,, +1260,CLM,es,HJNO,,Duitama (boy),5.816667,-73.066667,,1,,8779,265,143,,,,,,37593,,, +1260,USA,,KIMB,,Kimball (NE),41.261667,-103.668333,,0.112,,7648,311,143,,,,,,38611,,, +1260,USA,,KSFB,,San Francisco (CA),37.716389,-122.393889,,1,,8865,321,143,,,,30,,39069,,, +1260,USA,,WTJH,,East Point (GA),33.696389,-84.474722,,0.039,,7176,293,143,,,,,,43147,,, +1260,CHN,zh,CNR 1,,Hui'an/FJTS404 (FJ),25.033333,118.8,,1,,9228,58,144,,2025-1805,1234567,,,36201284,,, +1260,CHN,zh,CNR 1,,Zhangpu/FJTS503 (FJ),24.130722,117.571333,,1,,9239,59,144,,2025-1805,1234567,,,36201285,,, +1260,CLM,es,HJDV Caracol Colombia,,Ibagu (tol),4.416667,-75.2,,1,,9048,266,144,,,,6,,37402,,, +1260,CLM,es,HJET,,Cali (val),3.466667,-76.533333,,1,,9222,267,144,,,,,,37422,,, +1260,CLM,es,HJLX,,Villavicencio (met),4.116667,-73.666667,,1,,8969,265,144,,,,,,37558,,, +1260,EQA,,HCWN1,,Santo Domingo de los Colorados (pic),-0.25,-79.15,,1.5,,9726,266,144,,,,,,37183,,, +1260,HND,,HRYF2,,San Marcos de Colon (cho),13.5,-86.816667,,1,,9044,281,144,,,,,,37882,,, +1260,MEX,es,XEMTV-AM,,Minatitln (vcz),17.987175,-94.543728,,1,,9160,290,144,,,,,,44414,,, +1260,MEX,es,XEMW-AM Sonido Zeta,,San Luis Ro Colorado (son),32.460878,-114.817389,,1,,9017,313,144,,,,,,44418,,, +1260,MEX,es,XEXR-AM R Mensajera,,Ciudad Valles (slp),21.975561,-99.005775,,1,,9087,295,144,,,,,,45067,,, +1260,PHL,,DXRF-AM (r:666 DZRH-AM),,Davao City (dvs),7.05,125.583333,,5,,11292,62,144,,0000-2400,1234567,,,50272,,, +1260,PRU,,OAU3G,,Nuevo Chimbote (anc),-9.133333,-78.516667,,3,,10464,260,144,,,,,,37000087,,, +1260,USA,,WNOO,,Chattanooga (TN),35.052222,-85.272778,,0.025,,7116,294,144,,,,,,42492,,, +1260,USA,en,WYDE,,Birmingham (AL),33.524722,-86.786111,,0.041,,7335,294,144,,,,,,43511,,, +1260,ARG,,LT14 R General Urquiza,,Parana (er),-31.760364,-60.537183,,5,,11362,233,145,,0900-0500,1234567,,,40166,,, +1260,BOL,,CP14 Remisoras Unidas,,La Paz (lpz),-16.5,-68.116667,,2,,10435,248,145,,0900-0100,1234567,,,36644,,, +1260,MEX,es,XEQL-AM Catedral de la Msica,,Zamora/Av. 5 de Mayo 501 (mic),19.98,-102.283333,,1,,9467,297,145,,,,,,44618,,, +1260,TWN,,Cheng Sheng BC,,Taipao/Kangweili (CY),23.466667,120.333333,,1,,9460,57,145,,0000-2400,1234567,,,50278,,, +1260,USA,,KBRH,,Baton Rouge (LA),30.460556,-91.243611,,0.127,,7868,295,145,,,,,,38084,,, +1260,USA,,KCCB,,Corning (AR),36.4,-90.584722,,0.031,,7329,299,145,,,,,,38133,,, +1260,USA,es,WPJF,,Greenville (SC),34.908333,-82.344722,,0.015,,6944,292,145,,,,,,42410,,, +1260,EQA,,HCRO6,,Calidad (tun),-1.216667,-78.633333,,1,,9776,265,146,,,,,,37101,,, +1260,MEX,es,XEJY-AM La Mejor,,El Grullo (jal),19.7699,-104.247772,,1,,9606,298,146,,,,,,44235,,, +1260,USA,en,WDKN,,Dickson (TN),36.108611,-87.370556,,0.018,,7159,297,146,,,,,,41170,,, +1260,B,pt,ZYK629 Rdio Clube de Piraju,,Piraju (SP),-22.007856,-49.429703,,1,,9855,230,147,,,,,,36902074,,, +1260,CAN,xx,CBPM,,Sicamous (BC),50.835833,-118.972778,,0.03,,7474,326,147,,,,,,20109177,,, +1260,EQA,,HCRB3,,Benemerita (oro),-3.45,-79.95,,1,,10062,265,147,,,,,,37071,,, +1260,USA,,KBLY,,Idaho Falls (ID),43.520833,-111.9925,,0.064,,7854,317,147,,,,,,39416,,, +1260,USA,,KLDS,,Falfurrias (TX),27.236389,-98.172778,,0.33,,8570,298,147,,,,,,38793,,, +1260,INS,id,PM5CLZ R.Gitamitra Suara Perdana,,Lubuk Basung (SB-aga),-0.333333,100.066667,,1,,10286,87,148,,,,,,35400076,,, +1260,MEX,es,XESA-AM La Mexicana,,Culiacn (sin),24.819072,-107.474594,,0.5,,9334,303,148,,,,,,44726,,, +1260,PRU,,R Centinela,,Huancabamba (piu),-5.283333,-79.466667,,1,,10190,264,148,,,,392,,52463,,, +1260,USA,,KSML,,Diboll (TX),31.364722,-94.718889,,0.072,,8003,298,148,,,,,,39389,,, +1260,USA,,KWNX,,Taylor (TX),30.605,-97.416944,,0.144,,8230,300,148,,,,,,39736,,, +1260,USA,,WGVM,,Greenville (MS),33.422222,-91.028056,,0.032,,7604,297,148,,,,,,41583,,, +1260,CHL,,CD126 R Santa Maria de Guadalupe,,Punta Arenas (MA),-53.157472,-71.004333,,10,,13728,225,149,,1100-0400,1234567,,,35863,,, +1260,MEX,es,XEOG-AM R Ranchito,,Ojinaga (chi),29.555278,-104.4025,,0.25,,8728,304,149,,,,,,44485,,, +1260,MEX,es,XER-AM Stereo Hits,,Linares (nvl),24.873056,-99.556389,,0.25,,8863,298,149,,,,,,44645,,, +1260,B,pt,ZYJ740 Rdio Bandeirantes,,Blumenau (SC),-26.852778,-48.998889,,0.5,,10297,227,151,,,,,,36902077,,, +1260,CAN,xx,CBPU,,Ucluelet (BC),49.053056,-125.720833,,0.03,,7891,329,151,,,,,,20109178,,, +1260,INS,id,R Suara Pekerja,,Bekasi (JB-kbk),-6.233333,107,,1,,11277,85,151,,,,,,35400077,,, +1260,MEX,es,XEZH-AM,,Salamanca (gua),20.570833,-101.200556,,0.25,,9348,296,151,,,,,,45139,,, +1260,ARG,,R Fortaleza Cristiana,,Rafael Castillo (ba),-34.716667,-58.616667,,1,,11528,230,152,,,,,,51842,,, +1260,PRG,,ZP34 R Cultura,,Villarrica (cgz),-25.75,-56.416667,,0.5,,10583,234,152,,,,,,45557,,, +1260,PRU,,OBX6D R Mundial,,Arequipa (are),-16.466667,-72.583333,,0.5,,10718,251,152,,,,,,40408,,, +1260,USA,,KKSA,,San Angelo (TX),31.487222,-100.449167,,0.071,,8330,302,152,,,,,,38754,,, +1260,USA,,KTRP,,Weiser (ID),44.062222,-116.906111,,0.036,,8023,321,152,,,,,,20016109,,, +1260,INS,id,PM6BQQ R Gabriel,,Madiun (JI-mad),-7.640556,111.526389,,1,,11707,83,153,,,,,,50258,,, +1260,CHL,,CC126 R Condell,,Curic (ML),-34.966667,-71.366667,,1,,12257,239,154,,1100-0500,1234567,,,35807,,, +1260,INS,id,R Molina Indah Pesona,,Sinjai (SN-sin),-5.116667,120.25,,1,,12067,74,154,,,,,,35400078,,, +1260,B,pt,ZYK345 Rdio Gaurama,,Gaurama (RS),-27.590278,-52.098611,,0.25,,10525,229,155,,,,,,36902075,,, +1260,B,pt,ZYK204 Rdio Cultura AM,,So Borja (RS),-28.681389,-56.001944,,0.25,,10833,232,156,,,,,,36902073,,, +1260,B,pt,ZYK327 Rdio Fandango AM,,Cachoeira do Sul (RS),-30.016667,-52.897778,,0.25,,10795,229,156,,,,,,36902076,,, +1260,USA,,KBSZ,,Wickenburg (AZ),33.382222,-111.535833,,0.05,,8764,311,156,,,,5,,38100,,, +1260,AUS,,4MW,,Torres Strait/Thursday Island (QLD),-10.580306,142.2085,,2,,13931,57,157,,,,,,50248,,, +1260,AUS,,6KA Spirit R,,Karratha (WA),-20.725028,116.8295,,1,,13195,87,158,,0000-2400,1234567,,,50245,,, +1260,USA,en,WPYW801,,Provo/1155 N University Ave (UT),40.249889,-111.659556,,0.01,,8137,315,158,,,,,,20010645,,, +1260,AUS,,3SR Sport 927,,Shepparton/Dookie (VIC),-36.378875,145.537583,,2,,16385,78,165,,0000-2400,1234567,,,50247,,, +1260,NZL,,3XA LiveSPORT,,Christchurch/Marshland (CAN),-43.481569,172.635014,,5,,18613,52,168,,,,,,50270,,, +1265,BOL,,R Uncia,,Uncia (pts),-18.45,-66.616667,,0.4,,10516,246,153,,1100-0300,1234567,,,52014,,, +1269,D,de,Deutschlandfunk,,Neumnster/Ehndorfer Moor (shs),54.041944,9.847778,,300,,314,46,35,,0000-2400,1234567,9979,,1185,,, +1269,E,es,COPE,,Figueres/Avinyonet d'Puigvents (CAT-GI),42.270611,2.926231,,5,,1125,195,61,,0000-2400,1234567,9983,,1187,,, +1269,E,es,COPE,,Ciudad Real (CAM-CR),38.9775,-3.923333,,10,,1664,213,64,,0000-2400,1234567,,,1186,,, +1269,SRB,sr,R Novi Sad,,Srbobran (Voj-jbc),45.509344,19.794522,,3,,1221,122,64,,0000-2400,1234567,995,,1193,,, +1269,E,es,COPE,,Badajoz (EXT-BA),38.862117,-6.941372,,10,,1797,220,65,,0000-2400,1234567,2,,1189,,, +1269,E,es,COPE,,Zamora (CAL-ZA),41.516728,-5.729353,,5,,1493,223,65,,0000-2400,1234567,999,,1188,,, +1269,IRN,fa,IRIB R Ardabil,,Khalkhal (ard),37.623181,48.507861,,50,,3622,100,76,,,,8,,1190,,, +1269,GRC,el,unid,,unknown (att),38,23.658333,,1,,2062,133,78,,,,,,3400064,,, +1269,KWT,ar,R Kuwait FM,,Kabd/Sulaibiyah (jah),29.146244,47.780539,,100,170,4237,111,79,,0000-2400,1234567,6,,1192,,, +1269,UAE,ml,R Asia,,Ras al-Khaimah (rak),25.8,55.975,,200,,5049,106,85,,0000-2400,1234567,,,1659,,, +1269,NIG,,TSBS Taraba R,,Jalingo (trb),8.897944,11.3706,,10,,4826,173,95,,0500-2300,1234567,,,2496,,, +1269,CHN,bn,China R Int.,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1400-1500,1234567,993,,50283,,, +1269,CHN,en,China R Int.,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1100-1300,1234567,993,,50283,,, +1269,CHN,en,Voice of Russia,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1700-1800,1234567,993,,50283,,, +1269,CHN,hi,China R Int.,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1600-1700,1234567,993,,50283,,, +1269,CHN,ne,China R Int.,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1500-1600,1234567,993,,50283,,, +1269,IND,,AIR Northeast,,Agartala (TR),23.845,91.355833,,20,,7603,79,120,,0025-0430,1234567,,,50288,,, +1269,IND,,AIR Northeast,,Agartala (TR),23.845,91.355833,,20,,7603,79,120,,0630-0930,1234567,,,50288,,, +1269,IND,,AIR Northeast,,Agartala (TR),23.845,91.355833,,20,,7603,79,120,,1030-1630,1234567,,,50288,,, +1269,IND,,AIR South,,Madurai (TN),9.961944,78.096389,,20,,7888,98,123,,0015-0345,1234567,9905,,50290,,, +1269,IND,,AIR South,,Madurai (TN),9.961944,78.096389,,20,,7888,98,123,,0610-0900,123456,9905,,50290,,, +1269,IND,,AIR South,,Madurai (TN),9.961944,78.096389,,20,,7888,98,123,,0630-1100,......7,9905,,50290,,, +1269,IND,,AIR South,,Madurai (TN),9.961944,78.096389,,20,,7888,98,123,,1200-1733,1234567,9905,,50290,,, +1269,CHN,zh,Shanxi RGD Zonghe Guangbo,,Taiyuan (SX),37.75,112.55,,10,,7742,54,124,,2200-1700,1234567,,,50286,,, +1269,CHN,zh,Shanxi RGD Zonghe Guangbo,,Xinzhou (SX),38.416667,112.733333,,10,,7694,54,124,,2200-1700,1234567,,,36200388,,, +1269,RUS,ru,R Vostok Rossii,,Komsomolsk-na-Amure (KH),50.657569,136.906111,,7,,7678,31,125,,1900-1300,1234567,,,47040,,, +1269,CHN,,Xuzhou RGD Tiyu,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,10,,8308,53,130,,2110-1600,1234567,,,50287,,, +1269,KOR,,KBS 1 R,,Yangju (jeb),37.826111,127.054167,,10,,8485,44,132,,0000-2400,1234567,,,50296,,, +1269,THA,th,Khor. Sor. Thor. Bor. BKK R,,Bangkok/Thahaan Road (bmp),13.79215,100.527189,,10,,9078,78,134,,,,9976,,50303,,, +1269,CHN,zh,Shanxi RGD Zonghe Guangbo,,Linfen (SX),36.083611,111.577222,,1,,7832,56,135,,2200-1700,1234567,,,36200387,,, +1269,TWN,,Han Sheng Kuangpo Tientai,,Magong=Makung (PG),23.566417,119.562811,,10,,9407,58,135,,2100-1600,1234567,,,50304,,, +1269,J,,JOHW HBC, Hokkaido Hoso,,Obihiro (hok),42.866667,143.3,,5,,8671,31,136,,0000-2400,1234567,,,50292,, +1269,THA,th,Mor. Kor.,,Songkhla/Kanjanavanit Rd (sgk),7.11475,100.573111,,10,,9666,82,136,,,,,,52407,,, +1269,CHN,,Dunhua RGD,,Dunhua (JL),43.366667,128.216667,,1,,8022,40,137,,2130-1500,1234567,,,50284,,, +1269,J,ja,JOJR JRT Shikoku Hoso,,Tokushima (shi-tok),34.102361,134.597081,,5,,9189,41,137,,0000-2400,1234567,,,50294,,, +1269,PHL,,DWRC-AM Super Radyo,,San Nicolas (iln),18.15,120.633333,,10,,9967,60,137,,0000-2400,1234567,,,50300,,, +1269,PHL,,DZVX-AM Bombo Radyo,,Daet (cmn),14.116667,122.916667,,5,,10475,60,142,,2100-1500,1234567,3,,50299,,, +1269,J,,JOFM HBC, Hokkaido Hoso,,Esashi (hok),41.866667,140.133333,,1,,8656,33,143,,0000-2400,1234567,,,50291,, +1269,KOR,,HLSI KBS 1 R,,Gurye (jen),35.221111,127.460833,,1,,8748,46,143,,0000-2400,1234567,,,50295,,, +1269,PHL,tl,DYWB-AM Bombo Radyo,,Bacolod City/Mandalagan (noc),10.688856,122.957767,,5,,10795,62,143,,2100-1500,1234567,,,50298,,, +1269,J,ja,JRT,,Ikeda (shi-tok),34.033333,133.816667,,1,,9161,42,144,,,,,,31400085,,, +1269,TWN,,Cheng Sheng BC,,Taitung (TT),22.758778,121.1425,,1,,9572,57,146,,0000-2400,1234567,,,50305,,, +1269,AUS,en,6RN ABC National,,Busselton/Kealy (WA),-33.659986,115.229306,,5,,14126,99,154,,,,,,37700073,,, +1269,J,,JOGS OBS, Oita Hoso,,Saiki (kyu-oit),32.95,131.916667,,0.1,,9177,44,154,,0000-2400,1234567,,,50293,, +1269,J,ja,JRT,,Hiwasa,34.5,134,,0.1,,9124,41,154,,,,,,31400087,,, +1269,J,ja,JRT,,Mugi (shi-tok),33.666667,134.416667,,0.1,,9223,41,154,,,,,,31400086,,, +1269,AUS,en,2SM,,Sydney/Homebush Bay (NSW),-33.832311,151.07105,,5,,16548,68,162,,0000-2400,1234567,998,,50282,,, +1269,NZL,,2ZT Classic Hits,,Takaka (NSN),-40.866667,172.816667,,0.4,,18394,45,179,,,,,,50297,,, +1270,CAN,,CJCB,,Sydney (NS),46.180556,-60.190833,,10,,4716,290,94,,,,15,,36149,,, +1270,USA,,WXYT,,Detroit (MI),42.0275,-83.345,,50,,6446,299,105,,,,1,,43501,,, +1270,USA,,WTSN,,Dover (NH),43.183611,-70.853889,,5,,5593,292,106,,,,998,,43217,,, +1270,USA,,WMKT,,Charlevoix (MI),45.272778,-85.252222,,5,,6311,303,113,,,,,,42342,,, +1270,USA,es,WSPR,,Springfield (DN) AUX (MA),42.09,-72.603056,,1,,5781,292,115,,,,,,20016279,,, +1270,USA,,WHEO,,Stuart (VA),36.623611,-80.263889,,5,,6676,292,117,,,,,,41624,,, +1270,USA,,WWWI,,Baxter (MN),46.298611,-94.278333,,5,,6731,309,117,,,,,,43443,,, +1270,USA,en,WHLD,,Niagara Falls (NY),42.744722,-78.886944,,1,,6123,297,118,,,,,,41655,,, +1270,USA,,WKBF,,Rock Island (IL),41.494444,-90.466667,,5,,6906,303,119,,,,,,41960,,, +1270,USA,,WLBR,,Lebanon (PA),40.359722,-76.458333,,1,,6150,293,119,,,,,,42138,,, +1270,USA,es,WSPR,,Springfield (DN) (MA),42.101667,-72.623056,,0.35,,5781,292,119,,,,,,43054,,, +1270,CAN,fr,CBGA-6,,Murdochville (QC),48.955556,-65.496389,,0.04,,4882,296,120,,,,,,20109180,,, +1270,USA,,WCBC,,Cumberland (MD),39.674444,-78.78,,1,,6347,294,120,,,,,,40952,,, +1270,USA,,WTJZ,,Newport News (VA),37.031111,-76.366667,,0.9,,6396,290,121,,,,,,43151,,, +1270,USA,,WCMR,,Elkhart (IN),41.621111,-85.961111,,1,,6633,300,123,,,,,,41436,,, +1270,USA,,WWCA,,Gary (IN),41.527222,-87.376667,,1,,6724,301,124,,,,,,43358,,, +1270,USA,es,WRLZ,,Eatonville (FL),28.5675,-81.427222,,5,,7401,287,124,,,,,,42878,,, +1270,USA,,KFAN,,Rochester (MN),43.979722,-92.4475,,1,,6818,306,125,,,,,,39700,,, +1270,USA,,WMIZ,,Vineland (NJ),39.498056,-75.075278,,0.21,,6127,291,125,,,,,,42335,,, +1270,USA,en,KNWC,,Sioux Falls (SD),43.285278,-96.764722,,2.3,,7111,308,125,,,,997,,39031,,, +1270,USA,,WQTT,,Marysville (OH),40.246111,-83.330556,,0.5,,6583,297,126,,,,,,43252,,, +1270,USA,en,WNOG,,Naples (FL),26.257222,-81.675833,,5,,7610,285,126,,,,9945,,42491,,, +1270,USA,,WDLA,,Walton (NY),42.136111,-75.08,,0.089,,5933,294,127,,,,,,41171,,, +1270,B,pt,ZYI696 Rdio Cidade,,Sum (PB),-7.643386,-36.897878,,5,,7811,226,128,,,,,,36902096,,, +1270,USA,,WCGC,,Belmont (NC),35.251389,-81.057222,,0.5,,6835,292,128,,,,,,40984,,, +1270,USA,,WLIK,,Newport (TN),35.963611,-83.208611,,0.5,,6914,294,129,,,,,,42170,,, +1270,USA,en,WEIC,,Charleston (IL),39.505,-88.215,,0.5,,6935,300,129,,,,,,41270,,, +1270,USA,,KFLC,,Fort Worth (TX),32.726667,-97.191667,,5,,8032,301,130,,,,,,38402,,, +1270,B,pt,ZYI530 Rdio RBN,,Belm (PA),-1.473972,-48.465267,,2.5,,7845,240,131,,,,,,36902098,,, +1270,VEN,,YVOU R Ondas Panamericanas,,El Vigia (mrd),8.566667,-71.666667,,10,,8444,266,131,,,,,,45414,,, +1270,B,pt,ZYJ593 Rdio Clube,,Natal (RN),-5.778806,-35.249583,,1,,7545,226,132,,,,,,36902092,,, +1270,USA,,KIML,,Gillette (WY),44.303333,-105.497778,,1,,7474,314,132,,,,1,,38612,,, +1270,USA,,WMPM,,Smithfield (NC),35.525833,-78.333611,,0.145,,6640,290,132,,,,,,42376,,, +1270,ABW,,R 1270,,San Nicolas (arb),12.433333,-69.9,,2.5,,7987,267,133,,,,,,47114,,, +1270,USA,,KLXX,,Bismarck-Mandan (ND),46.810278,-100.836111,,0.25,,7028,313,133,,,,,,38865,,, +1270,USA,,KRVT,,Claremore (OK),36.265278,-95.710278,,1,,7642,302,133,,,,,,39312,,, +1270,USA,,WHGS,,Hampton (SC),32.843889,-81.125556,,0.219,,7032,290,134,,,,,,41632,,, +1270,B,pt,ZYH753 Rdio Brasil Central,,Goinia/Fazenda Bananal (GO),-16.587422,-49.217464,,10,,9325,233,135,,,,3,,36902094,,, +1270,USA,,KBZZ,,Sparks (NV),39.533611,-119.663333,,5,,8572,320,135,,,,9969,,38117,,, +1270,USA,,WJJC,,Commerce (GA),34.215833,-83.435833,,0.173,,7068,293,135,,,,,,41884,,, +1270,USA,,WILE,,Cambridge (OH),40.04,-81.647222,,0.035,,6496,296,136,,,,,,41751,,, +1270,USA,,WYXC,,Cartersville (GA),34.209444,-84.796944,,0.187,,7154,293,136,,,,,,43557,,, +1270,CLM,,HJKD La Carinosa,,Neiva (hui),2.933333,-75.333333,,5,,9187,265,137,,,,,,35902895,,, +1270,CLM,es,HJBM R Internacional,,Honda (tol),5.2,-74.75,,5,,8948,266,137,,,,,,35901639,,, +1270,CLM,es,HJQ99 Colombia Mia,,San Jos del Guaviare (guv),2.566667,-72.65,,5,,9037,263,137,,,,,,35901636,,, +1270,DOM,,HIDA R Hit 12-70,,Santiago de los Caballeros (sto),19.416667,-70.666667,,0.25,,7442,272,137,,0000-2400,1234567,,,37235,,, +1270,EQA,,HCUM2 R Universal,,Guayaquil (gua),-2.2,-79.9,,10,,9949,266,137,,,,995,,37151,,, +1270,USA,,WSHE,,Columbus (GA),32.437778,-85.019444,,0.188,,7313,292,137,,,,,,42998,,, +1270,ARG,es,LS11 R Provincia de Buenos Aires,,La Plata (ba),-34.840333,-58.073967,,25,,11511,230,138,,0000-2400,1234567,5,,40158,,, +1270,B,pt,ZYJ474 Rdio Continental,,Campos dos Goytacazes (RJ),-21.802886,-41.347661,,5,,9432,224,138,,,,4,,36902090,,, +1270,DOM,,HITA R Ambiente,,Ban (pva),18.266667,-70.316667,,0.25,,7515,271,138,,1000-0400,1234567,,,37308,,, +1270,USA,,WAIN,,Columbia (KY),37.107222,-85.278333,,0.068,,6950,296,138,,,,,,40676,,, +1270,USA,,WGSV,,Guntersville (AL),34.308611,-86.295556,,0.124,,7240,295,138,,,,,,41569,,, +1270,USA,,WXGO,,Madison (IN),38.741111,-85.361389,,0.058,,6825,297,138,,,,,,43466,,, +1270,USA,en,KXQZ,,Twin Falls (ID),42.5625,-114.542778,,1,,8059,319,138,,,,2,,39471,,, +1270,NCG,,YNRA R Amistad,,Matagalpa (mgp),12.883333,-85.95,,3,,9040,280,139,,,,,,52218,,, +1270,B,pt,ZYH282 Rdio Boas Novas,,Tef (AM),-3.379422,-64.721261,,2.5,,9037,253,140,,,,,,36902086,,, +1270,USA,,WRJC,,Mauston (WI),43.831111,-90.080833,,0.027,,6698,304,140,,,,,,42859,,, +1270,USA,,WNLS,,Tallahassee (FL),30.428889,-84.328611,,0.11,,7435,290,141,,,,,,42481,,, +1270,USA,,WQKR,,Portland (TN),36.611111,-86.581111,,0.043,,7070,296,141,,,,,,42778,,, +1270,ARG,,LRA20 R Nacional,,Las Lomitas (fm),-24.716667,-60.6,,5,,10723,237,142,,0900-0300,1234567,,,39940,,, +1270,CLM,es,HJAR La Carinosa, Antena 2,,Cartagena (bol),10.5,-75.5,,1,,8537,270,142,,,,996,,37333,, +1270,MEX,es,XEVHT-AM W R,,Villahermosa (tab),17.978056,-92.984167,,1.7,,9060,288,142,,,,,,44965,,, +1270,VEN,,RNV Canal Informativo,,Urena (tch),7.916667,-72.45,,1,,8554,266,142,,,,,,51695,,, +1270,CLM,,HJPJ,,Riosucio (cho),7.4,-77.116667,,1,,8917,269,143,,,,,,37623,,, +1270,CLM,es,HJTX Besame AM,,Bucaramanga (sat),7.083333,-73.15,,1,,8674,266,143,,,,,,37653,,, +1270,CLM,es,HJXQ La Voz Amiga,,Ubate (cun),5.316667,-73.816667,,1,,8874,266,143,,,,992,,35901637,,, +1270,PNR,es,HOJ22 R Tipy Q,,Llano Bonito (pnm),9.034578,-79.4564,,1,,8934,272,143,,,,,,37693,,, +1270,SLV,es,YSQZ,,San Miguel (smg),13.466667,-88.166667,,1.4,,9138,282,143,,,,,,45306,,, +1270,USA,,KJUG,,Tulare (CA),36.168333,-119.253333,,1,,8876,318,143,,,,26,,38699,,, +1270,USA,,WIJD,,Prichard (AL),30.745556,-88.094444,,0.103,,7648,293,143,,,,,,41742,,, +1270,CLM,es,HJIM Colmundo,,Pereira (ris),4.766667,-75.716667,,1,,9052,267,144,,,,,,37539,,, +1270,EQA,,HCLD4,,Junin (man),-0.816667,-80.316667,,2,,9856,267,144,,,,,,37004,,, +1270,GTM,,TGCQ R Exlusica,,Ciudad de Guatemala (gut),14.616667,-90.583333,,1,,9198,284,144,,0000-2400,1234567,,,40488,,, +1270,HND,,HRNQ,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37821,,, +1270,MEX,es,XEQH-AM Milenium R,,Ixmiquilpan (hid),20.509444,-99.208333,,1,,9231,295,144,,,,,,44610,,, +1270,USA,,KGNM,,St. Joseph (MO),39.744167,-94.787778,,0.036,,7296,304,144,,,,,,38499,,, +1270,USA,,KIIK,,Waynesville (MO),37.828333,-92.174167,,0.044,,7305,301,144,,,,,,39125,,, +1270,USA,en,KNNV694,,Hammond/5911 Calumet Ave (IN),41.610964,-87.632556,,0.01,,6733,301,144,,,,,,20010647,,, +1270,USA,en,KFSQ,,Thousand Palms (Palm Desert) (CA),33.851111,-116.393333,,0.75,,8963,315,145,,,,,,39034,,, +1270,HWA,xx,KNDI,,Honolulu (HI),21.323889,-157.879722,,5,,11708,345,146,,,,995,,38972,,, +1270,PRU,,OAX8T R Eco,,Iquitos (lor),-3.5,-73.316667,,1,,9618,260,146,,,,,,40359,,, +1270,CHL,,CB127 R Festival,,Via del Mar (VS),-33.016667,-71.566667,,5,,12101,240,147,,1000-0700,1234567,996,,35728,,, +1270,MEX,es,XEAZ-AM La Z,,Tijuana (bcn),32.5391,-117.049114,,0.5,,9119,315,147,,,,,,43750,,, +1270,MEX,es,XEGL-AM Digital,,Navojoa (son),27.081111,-109.454167,,0.5,,9236,306,147,,,,,,44064,,, +1270,MEX,es,XERRT-AM Sport R,,Ciudad Madero (tam),22.253167,-97.857808,,0.5,,8992,295,147,,,,,,44709,,, +1270,URG,es,CV127 R Cuareim,,Artigas (ar),-30.401667,-56.451111,,2,,11017,231,147,,0900-0300,1234567,,,36725,,, +1270,USA,,WMLC,,Monticello (MS),31.556667,-90.135,,0.053,,7707,295,147,,,,,,42344,,, +1270,BOL,,CP134 R Vanguardia,,Colquiri (lpz),-17.383333,-67.116667,,1,,10451,247,148,,1000-0300,1234567,,,36640,,, +1270,MEX,es,XEHD-AM R.Universidad,,Durango (dur),23.961125,-104.577339,,0.5,,9244,301,148,,,,,,44103,,, +1270,USA,en,KBAM,,Longview (WA),46.183056,-122.958056,,0.083,,8068,326,148,,,,,,38003,,, +1270,B,pt,ZYK640 Rdio Globo,,Ribeiro Preto (SP),-21.204167,-47.754722,,0.5,,9690,229,149,,,,,,36902083,,, +1270,B,pt,ZYK678 Rdio Brasil Campinas,,Campinas/Chcara California (SP),-22.948572,-47.017786,,0.5,,9821,228,149,,,,,,36902082,,, +1270,PRU,,OAZ4H R Huacho,,Huacho (lim),-13.166667,-76.5,,1,,10684,256,149,,,,,,40367,,, +1270,B,pt,ZYJ222 Rdio Atual Guairac AM 1270,,Mandaguari (PR),-23.521667,-51.660278,,0.5,,10117,231,150,,,,,,36902088,,, +1270,B,pt,ZYJ236 Rdio Continental AM,,Curitiba/Piraquara (PR),-25.415833,-49.207778,,0.5,,10170,228,151,,,,,,36902097,,, +1270,B,pt,ZYJ289 Cidade AM,,Cascavel (PR),-24.923056,-53.411667,,0.5,,10343,232,151,,,,,,36902099,,, +1270,B,pt,ZYL227 Rdio Carijs,,Conselheiro Lafaiete (MG),-20.64815,-43.790628,,0.25,,9436,226,151,,,,,,36902087,,, +1270,PRU,,OBZ4T R La Merced,,Chanchamayo (jun),-11.05,-75.25,,0.5,,10414,257,151,,,,,,40423,,, +1270,USA,,KDJI,,Holbrook (AZ),34.905833,-110.190278,,0.13,,8555,311,151,,,,18,,38268,,, +1270,B,pt,ZYK206 Rdio Amrica AM,,Montenegro (RS),-29.685833,-51.4475,,0.5,,10690,228,152,,,,,,36902089,,, +1270,B,pt,ZYK250 Rdio Vera Cruz,,Horizontina (RS),-27.6375,-54.313056,,0.5,,10646,231,152,,,,,,36902093,,, +1270,B,pt,ZYL300 Rdio Estncia,,So Loureno (MG),-22.120939,-45.081564,,0.25,,9644,227,152,,,,,,36902085,,, +1270,MEX,es,XEWN-AM El Fongrafo,,Gmez Palacio (dur),25.543556,-103.492028,,0.15,,9038,301,152,,,,,,34900015,,, +1270,USA,,KSCB,,Liberal (KS),37.059444,-100.901389,,0.025,,7867,306,152,,,,,,39329,,, +1270,EQA,,HCCC6,,Latacunga (cot),-0.916667,-78.566667,,0.2,,9745,265,153,,,,,,36876,,, +1270,MEX,es,XERPL-AM La Poderosa,,Len (gua),21.083333,-101.683333,,0.15,,9331,297,153,,,,,,44700,,, +1270,USA,,KINN,,Alamogordo (NM),32.886944,-105.951111,,0.08,,8514,307,153,,,,,,38620,,, +1270,USA,,KXBX,,Lakeport (CA),39.013889,-122.894167,,0.097,,8760,322,153,,,,,,39779,,, +1270,B,pt,ZYJ768 Rdio Garibaldi,,Laguna/Rua da Esperana (SC),-28.473167,-48.787056,,0.25,,10442,226,154,,,,,,36902095,,, +1270,B,pt,ZYJ765 Rdio Sociedade Catarinense,,Joaaba (SC),-27.180556,-51.509167,,0.25,,10456,229,155,,,,,,36902091,,, +1270,USA,,KAJO,,Grants Pass (OR),42.437778,-123.3575,,0.048,,8446,324,155,,,,,,37931,,, +1270,USA,en,WPUB241,,Bellevue (WA),47.6,-122.158333,,0.01,,7901,326,156,,,,,,20010646,,, +1270,USA,,KEPS,,Eagle Pass (TX),28.7325,-100.492778,,0.032,,8576,301,157,,,,,,38335,,, +1275,BOL,,CP187 R Chane,,Mineros (scz),-17.119444,-63.230556,,0.5,,10187,244,151,,1000-0400,12345..,,,36674,,, +1275,BOL,,CP187 R Chane,,Mineros (scz),-17.119444,-63.230556,,0.5,,10187,244,151,,1100-2200,.....67,,,36674,,, +1275,INS,id,R.SP Reformasi/R.Suara Persada,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,50308,,, +1278,F,fr,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,0000-2400,.....67,9993,,1195,,, +1278,F,fr,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,1130-1330,12345..,9993,,1195,,, +1278,F,fr,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,1600-0600,12345..,9993,,1195,,, +1278,F,ls,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,0600-1130,12345..,9993,,1195,,, +1278,F,ls,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,1330-1600,12345..,9993,,1195,,, +1278,GRC,el,ERA Flrina,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,0500-1000,12345..,26,,1204,,, +1278,GRC,el,ERA Flrina,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,1330-1800,12345..,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,0000-0500,1......,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,0000-2400,.....67,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,1000-1330,12345..,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,1800-0500,1234...,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,1800-2400,....5..,26,,1204,,, +1278,G,en,Pulse 2,,Bradford/Tyersal Lane (EN-WYK),53.786111,-1.702083,,0.43,,574,292,66,,0000-2400,1234567,18,,1196,,, +1278,IRN,fa,IRIB R Kermanshah,,Kermanshah=Bakhtaran (ksh),34.460811,46.956303,,200,,3754,105,72,,0300-2003,1234567,,,1205,,, +1278,GRC,,unid (Greek 1960s Oldies),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,0000-2400,9999999,999,,3400042,,, +1278,EGY,ar,ERTU Al-Barnameg al-Aam,,Aswan (asn),24.074222,32.891583,,10,,3840,134,85,,0300-2400,1234567,,,1842,,, +1278,G,,BFBS Gurkha R,,Folkestone (EN-KNT),51.1,1.216667,,0.001,,376,255,91,,,,,,1199,,, +1278,G,,BFBS Gurkha R,,Shorncliffe (EN-KNT),51.1,1.133333,,0.001,,381,255,91,,,,2,,1200,,, +1278,G,,Crush AM (LPAM),,Hatfield/UH (EN-HTS),51.752778,-0.241111,,0.001,,458,268,91,,,,1,,1201,,, +1278,G,en,Blue Bull R (LPAM),,Marham/RAF (EN-NFK),52.654444,0.547222,,0.001,,402,281,91,,,,,,2800014,,, +1278,G,en,Harlow Hospital R (LPAM),,Harlow (EN-ESX),51.783333,0.133333,,0.001,,432,268,91,,,,,,1202,,, +1278,G,en,Red Sands R,,Whitstable (EN-KNT),51.35,1.1,,0.001,,375,259,91,,,,,,2800003,,, +1278,OMA,ar,R Sultanate Oman,,Bahla (dkl),22.95,57.3,,100,,5377,107,91,,0000-2400,1234567,,,11700019,,, +1278,G,,D:ONE,,Derby (EN-DRB),52.966667,-1.5,,0.001,,543,283,92,,,,,,2573,,, +1278,G,,Trust AM (LPAM),,Worksop (EN-NHS),53.3,-1.116667,,0.001,,524,288,92,,,,983,,1198,,, +1278,G,en,Castle R (LPAM),,Nottingham/Castle College (EN-NHS),52.950833,-1.152778,,0.001,,520,283,92,,,,,,2800015,,, +1278,G,,BFBS Gurkha R,,Stafford/Beacon Barracks (EN-SFS),52.8,-2.1,,0.001,,581,281,93,,,,2,,2800009,,, +1278,G,en,Pinesbury AM (LPAM),,Swindon/Beech Avenue (EN-WLT),51.581389,-1.788889,,0.001,,566,267,93,,,,,,2800016,,, +1278,G,,R Royal (LPAM),,Falkirk (SC-FLK),56,-3.8,,0.001,,793,307,95,,,,,,1203,,, +1278,RUS,xx,R Rossii,,Barguzin (BU),53.616667,109.616667,,25,,6281,44,106,,2057-1700,1234567,,,50329,,, +1278,RUS,xx,R Rossii,,Severobaykalsk (BU),55.628222,109.345,,7,,6114,42,110,,2057-1700,1234567,,,46805,,, +1278,AGL,pt,RNA Em. Prov. do Cabinda,,Tenda (cab),-5.256528,12.153889,,10,,6402,173,111,,0500-2300,1234567,41,,2499,,, +1278,RUS,xx,R Rossii,,Bagdarin (BU),54.416011,113.538367,,5,,6399,41,114,,2057-1700,1234567,,,46804,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Shijiazhuang/HBTS717 (HB),37.830833,114.468889,,100,,7840,53,115,,,,,,36200825,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Tangshan (HB),39.6679,118.284117,,100,,7881,49,116,,????-1700,1234567,,,50316,,, +1278,CHN,,Daxing'anling RGD,,Jagdaqi (HL),50.421389,124.158056,,7.5,,7203,39,120,,,,,,50312,,, +1278,CHN,bo,CNR 11,,Lhaz=Lazi (XZ),29.088889,87.633333,,1,,6922,77,126,,,,,,36201226,,, +1278,J,ja,JOFR RKB Mainichi Hoso,,Fukuoka (kyu-fuk),33.686667,130.428611,,50,,9036,44,127,,0000-2400,1234567,0,,50324,,, +1278,CHN,bo,CNR 11,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,,,,,36201227,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Zhangbei (HB),41.15,114.716667,,1,,7565,50,133,,,,,,36201228,,, +1278,CHN,,Nanchang RGD,,Nanchang/JXTS801 (JX),28.647639,115.867794,,10,,8732,58,133,,2000-1700,1234567,,,50313,,, +1278,CHN,zh,Hebei RGD Xinwen Guangbo,,Zhangjiakou/HBTS109 (HB),40.600556,115.0925,,1,,7632,51,133,,,,,,36200002,,, +1278,CHN,,Xiamen RGD Xinwen Pindao,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,10,,9229,58,134,,????-1500,1234567,,,50317,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Baoding/HBTS662 (HB),38.932778,115.443056,,1,,7796,51,135,,,,,,36200386,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Langfang (HB),39.516667,116.7,,1,,7812,50,135,,,,,,36200383,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Cangzhou (HB),38.275917,116.768333,,1,,7925,51,136,,,,,,36200385,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,36200384,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Xingtai (HB),37.066667,114.516667,,1,,7910,53,136,,,,,,36200382,,, +1278,PHL,tl,DZRM-AM Radyo Magasin,,Malolos (bul),14.863361,120.810033,,10,,10280,62,138,,2100-1700,1234567,,,50327,,, +1278,KOR,,HLQV KBS 1 R,,Hapcheon (gsn),35.566389,128.165,,1,,8750,45,143,,0000-2400,1234567,,,50325,,, +1278,TWN,,Fuhsingkang College R,,Taipei/Fuhsingkang College (TPS),25.143356,121.492714,,0.5,,9372,55,148,,,,,,50330,,, +1278,INS,id,R 68H Pikonane,,Kurima/Anyelma (PA-yah),-3.833333,136.333333,,1,,12953,59,157,,2100-1400,1234567,,,50321,,, +1278,AUS,en,3EE Magic 1278,,Melbourne/Lower Plenty (VIC),-37.744556,145.110667,,5,,16456,80,161,,0000-2400,1234567,,,47916,,, +1278,NZL,en,Newstalk ZB,,Rotokare (TKI),-39.463236,174.300833,,2.5,,18329,38,171,,,,,,32500009,,, +1278,NZL,,2ZC Newstalk ZB,,Napier/Pakowhai (HKB),-39.561111,176.866111,,2,,18439,31,172,,0000-2400,1234567,,,50326,,, +1280,CAN,xx,CFMB,,Montral/Saint-Mathieu (QC),45.325278,-73.548056,,50,,5612,296,96,,,,9967,,35983,,, +1280,USA,en,WFAU,,Gardiner (ME),44.248056,-69.814167,,5,,5454,293,105,,,,997,,41357,,, +1280,USA,es,WADO,i,New York/Carlstadt [NJ] (NY),40.826667,-74.075556,,7.2,,5965,292,108,,,,,,40653,,, +1280,USA,,WHTK,i,Rochester (NY),43.098333,-77.583611,,5,,6017,296,110,,,,1,,41694,,, +1280,USA,en,WPKZ,,Fitchburg (MA),42.594444,-71.836667,,1,,5696,292,114,,,,994,,41271,,, +1280,USA,,WYAL,,Scotland Neck (NC),36.135833,-77.435833,,5,,6534,290,115,,,,,,43503,,, +1280,CAN,en,CJSL,,Estevan (SK),49.057222,-102.922778,,10,,6941,316,116,,,,994,,36221,,, +1280,USA,,WNAM,,Neenah-Menasha (WI),44.100278,-88.533889,,5,,6589,304,116,,,,3,,42426,,, +1280,BER,en,VSB2 BBN,,Ireland Island South (-),32.313694,-64.842111,,1,,5997,278,117,,0000-2400,1234567,997,,46795,,, +1280,USA,,WWTC,,Minneapolis (MN),44.961389,-93.356667,,5,,6789,307,118,,,,997,,43434,,, +1280,USA,,WJST,,New Castle (PA),40.953889,-80.318056,,1,,6345,296,120,,,,,,41932,,, +1280,USA,,KZNS,,Salt Lake City (D) (UT),40.851944,-111.968611,,50,,8097,316,121,,,,14,,39898,,, +1280,USA,,WHVR,,Hanover (PA),39.819722,-77.006944,,0.5,,6225,293,122,,,,,,41700,,, +1280,CAN,fr,CBPP-1,,Parc National de l.-P.-. (PE),46.486389,-63.313611,,0.02,,4897,292,123,,,,,,20109182,,, +1280,USA,,KVXR,,Moorhead (MN),46.819444,-96.765556,,1,,6820,311,125,,,,,,39659,,, +1280,USA,,WSAT,,Salisbury (NC),35.675,-80.508333,,1,,6766,292,125,,,,,,42951,,, +1280,B,pt,ZYJ455 Super Rdio Tupi,,Rio de Janeiro/Rua Antonio Leoncio (RJ),-22.773611,-43.067222,,100,,9609,225,126,,,,2,,36902100,,, +1280,USA,,WBWX,,Berwick (PA),41.076667,-76.258889,,0.164,,6084,294,126,,,,,,41363,,, +1280,USA,,WJWK,,Seaford (DE),38.613056,-75.586667,,0.211,,6226,291,126,,,,,,41941,,, +1280,USA,,WONW,,Defiance (OH),41.278889,-84.397222,,0.5,,6567,299,126,,,,,,42609,,, +1280,VEN,,YVQS R Zaraza,,Zaraza (gco),9.316667,-65.266667,,10,,7944,261,126,,1000-0300,1234567,,,45433,,, +1280,USA,,WGBF,,Evansville (IN),37.995833,-87.476667,,1,,7012,298,127,,,,,,41481,,, +1280,USA,en,WANS,,Anderson (SC),34.538056,-82.691111,,1,,6995,292,127,,,,,,40727,,, +1280,USA,,WBIG,,Aurora (IL),41.769444,-88.245556,,0.5,,6756,302,128,,,,,,40858,,, +1280,USA,es,WODT,,New Orleans (LA),29.895278,-90.004444,,5,,7839,294,128,,,,,,42565,,, +1280,PTR,es,WCMN,,Arecibo (PR),18.481111,-66.687778,,1,,7249,269,129,,0000-2400,1234567,5,,41037,,, +1280,USA,,KBNO,,Denver (CO),39.601389,-104.98,,5,,7862,311,129,,,,995,,38070,,, +1280,VEN,,YVOF R Trujillo,,Trujillo (tjl),9.366667,-70.4,,10,,8288,265,130,,,,,,45406,,, +1280,DOM,,HIHZ R Clave,,Monte Plata (mp),18.8,-69.783333,,1,,7434,271,131,,1000-0300,1234567,,,52246,,, +1280,USA,,KCNI,,Broken Bow (NE),41.408611,-99.674444,,1,,7425,308,131,,,,,,38183,,, +1280,USA,,WJAY,,Mullins (SC),34.191667,-79.315278,,0.27,,6808,290,131,,,,,,41842,,, +1280,DOM,,HIJH Cadena Espacial,,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,,,,,52245,,, +1280,USA,,WMCP,,Columbia (TN),35.618889,-86.981111,,0.5,,7175,296,132,,,,,,42292,,, +1280,USA,,WYVE,,Wytheville (VA),36.965,-81.080556,,0.164,,6701,293,132,,,,,,43555,,, +1280,USA,es,WIPC,,Lake Wales (D) (FL),27.926111,-81.601111,,1,,7466,287,132,,,,,,20016046,,, +1280,CLM,es,HJHO Impacto Popular,,San Juan del Cesar (lag),10.766667,-72.983333,,5,,8342,268,133,,,,88,,2036,,, +1280,USA,en,WDNT,,Dayton (TN),35.47,-85.0375,,0.31,,7067,295,133,,,,,,41190,,, +1280,B,pt,ZYI688 Rdio Sanhau,,Bayeux (PB),-7.1253,-34.934528,,1,,7664,225,134,,,,991,,36902101,,, +1280,CLM,es,HJSO R Playa Mend,,Barranquilla (atl),11,-74.783333,,5,,8444,270,134,,,,,,37637,,, +1280,CUB,es,R Mamb,,Santiago de Cuba/CTOM2 (sc),20.100044,-75.8203,,1,,7735,277,134,,,,,,31600041,,, +1280,USA,,WFYC,,Alma (MI),43.368889,-84.605278,,0.056,,6418,301,134,,,,,,41464,,, +1280,USA,en,WMXB,,Tuscaloosa (AL),33.218611,-87.568056,,0.5,,7409,295,134,,,,,,43423,,, +1280,CLM,es,HJRP,,Tib (nsa),8.65,-72.733333,,5,,8509,267,135,,,,,,35901643,,, +1280,USA,en,WCPM,,Cumberland (KY),36.973611,-82.9875,,0.115,,6819,294,135,,,,,,41067,,, +1280,USA,es,WIPC,,Lake Wales (N) (FL),27.925,-81.604444,,0.5,,7466,287,135,,,,,,41790,,, +1280,CAN,xx,CBQG,,Wrigley (NT),63.217222,-123.44,,0.04,,6470,336,136,,,,,,20109181,,, +1280,CUB,es,R Trinidad,,Trinidad (ss),21.8,-79.983333,,1,,7872,281,136,,,,,,31600132,,, +1280,PRG,,ZP53 R LV del Este,,Ciudad del Este (apa),-25.316667,-54.666667,,20,,10447,232,136,,,,,,45549,,, +1280,USA,en,KIT,,Yakima (WA),46.571944,-120.494722,,1,,7935,325,136,,,,997,,38639,,, +1280,CLM,es,HJKN R Unica,,Bogot D. C. (bdc),4.616667,-74.166667,,5,,8960,265,137,,,,23,,37528,,, +1280,CLM,es,HJTK,,Caicedonia (val),4.333333,-75.833333,,5,,9098,267,137,,,,,,35901644,,, +1280,CTR,,TIHT R Alajuela,,Alajuela (alj),10.016667,-84.25,,5,,9175,277,137,,1030-0300,1234567,,,40584,,, +1280,USA,,KRVM,i,Eugene (OR),44.100833,-123.051667,,1.5,,8273,325,138,,,,9789,,39310,,, +1280,USA,en,WIBB,,Macon (GA),32.804444,-83.604444,,0.099,,7194,292,139,,,,,,42141,,, +1280,GTM,,TGVY R Zamaneb,,Salam (bvp),15.1,-90.266667,,2.5,,9134,285,140,,1100-0200,1234567,,,52136,,, +1280,USA,,KXTK,,Arroyo Grande (CA),35.145556,-120.520833,,2.5,,9032,319,140,,,,9994,,39827,,, +1280,USA,,KZNS,,Salt Lake City (N) (UT),40.851944,-111.968056,,0.67,,8097,316,140,,,,,,20016049,,, +1280,USA,,WPID,,Piedmont (AL),33.930556,-85.583333,,0.084,,7226,294,140,,,,,,42691,,, +1280,USA,es,KLDY,,Lacey (WA),47.062222,-122.830278,,0.5,,7979,326,140,,,,,,38794,,, +1280,HND,,HRYT,,San Pedro Sula (cor),15.5,-88.016667,,2,,8950,283,141,,,,,,37885,,, +1280,USA,,KNBY,,Newport (AR),35.610556,-91.250556,,0.088,,7435,299,142,,,,,,38965,,, +1280,USA,,KYRO,,Potosi (MO),39.053611,-90.996389,,0.045,,7135,301,142,,,,,,39870,,, +1280,USA,,WGLR,,Lancaster (WI),42.838333,-90.670556,,0.022,,6810,304,142,,,,,,41529,,, +1280,ARG,es,LU11 R Trenque Lauquen,,Trenque Lauquen (ba),-35.989661,-62.724542,,10,,11861,232,143,,0900-0300,1234567,,,40204,,, +1280,CLM,es,HJNQ,,Barbosa (sat),5.916667,-73.616667,,1,,8808,266,143,,,,,,37594,,, +1280,HND,,HRAM,,Olanchito (yor),15.483333,-86.583333,,1,,8856,282,143,,,,,,37737,,, +1280,MEX,es,XEAW-AM,,Monterrey (nvl),25.699128,-100.2072,,1,,8829,299,143,,,,,,43745,,, +1280,MEX,es,XECAM-AM,,Campeche (cam),19.848889,-90.534722,,1,,8737,288,143,,,,,,43812,,, +1280,MEX,es,XESQ-AM R San Miguel,,San Miguel Allen (gua),20.862728,-100.754183,,1.5,,9294,296,143,,,,,,44765,,, +1280,USA,,KDKD,,Clinton (MO),38.395,-93.771667,,0.058,,7351,302,143,,,,,,38275,,, +1280,USA,,KPRV,,Poteau (OK),35.015278,-94.651667,,0.108,,7686,301,143,,,,,,39166,,, +1280,USA,,KSOK,,Arkansas City (KS),37.086111,-97.032778,,0.1,,7648,304,143,,,,,,39395,,, +1280,USA,en,KWSX,i,Stockton (D) (CA),37.982778,-121.229444,,1,,8789,321,143,,,,,,20016200,,, +1280,USA,en,KWSX,i,Stockton (N) (CA),37.981944,-121.228889,,1,,8789,321,143,,,,9982,,39605,,, +1280,USA,en,KZFS,,Spokane (WA),47.6075,-117.361111,,0.125,,7711,323,143,,,,,,37963,,, +1280,USA,en,WTMY,,Sarasota (FL),27.336389,-82.573611,,0.1,,7579,287,143,,,,,,43180,,, +1280,CLM,es,HJMB,,Concordia (ant),6.066667,-75.9,,1,,8951,268,144,,,,,,37561,,, +1280,EQA,,HCAA4,,Portoviejo (man),-1.066667,-80.45,,2,,9887,267,144,,,,,,36830,,, +1280,EQA,,HCRP3,,Arenillas (oro),-3.266667,-79.966667,,2,,10047,265,144,,,,,,37103,,, +1280,MEX,es,XETUT-AM R Tamaulipas,,Tula (tam),22.991667,-99.65,,1,,9036,296,144,,,,,,44869,,, +1280,NCG,es,R La Voz Apostlica,,Managua (mng),12.247222,-86.047222,,1,,9102,279,144,,,,,,33700001,,, +1280,SLV,es,YSMQ,,San Vicente (svc),13.616667,-88.783333,,1,,9166,282,144,,,,,,31100008,,, +1280,SLV,es,YSQV R CRET,,Santa Ana/Altos del Palmar (sta),13.979444,-89.566111,,1,,9186,283,144,,,,,,31100005,,, +1280,USA,,KCOB,,Newton (IA),41.736389,-93.02,,0.019,,7032,304,144,,,,,,38189,,, +1280,USA,,KFRN,,Long Beach (CA),33.798333,-118.246389,,1,,9056,316,144,,,,9966,,38427,,, +1280,CLM,es,HJCM R Sur,,Pitalito (hui),1.816667,-76.016667,,1,,9331,265,145,,,,13,,37373,,, +1280,CLM,es,HJLR Caracol Colombia,,Pasto (nar),1.166667,-77.316667,,1,,9477,266,145,,,,994,,37553,,, +1280,MEX,es,XEPVI-AM,,Xalisco (nay),21.441667,-104.9,,1,,9493,300,145,,,,,,34900028,,, +1280,USA,,KSLI,,Abilene (TX),32.441667,-99.718889,,0.226,,8204,302,145,,,,,,39379,,, +1280,EQA,,HCAB1 La Cariosa,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36831,,, +1280,EQA,,HCWW5,,Riobamba (chi),-1.316667,-78.616667,,1,,9784,265,146,,,,,,37187,,, +1280,MEX,es,XEBW-AM,,Chihuahua (chi),28.629844,-105.965764,,0.6,,8900,305,146,,,,,,43797,,, +1280,URG,,CX128 R Noticias Tacuarembo,,Tacuaremb (ta),-31.716667,-55.966667,,3,,11113,230,146,,0900-0300,1234567,,,51721,,, +1280,USA,en,WDSP,,De Funiak Springs (FL),30.711389,-86.106944,,0.046,,7525,292,146,,,,,,41577,,, +1280,EQA,,HCIN4 Voz del Sur,,El Cacao (gua),-1.35,-80.083333,,1,,9887,266,147,,,,,,36973,,, +1280,USA,en,WPNQ973,,Okobji (IA),43.375528,-95.125833,,0.01,,7014,307,147,,,,,,20010652,,, +1280,MEX,es,XEBON-AM R Frmula 3,,Guadalajara (jal),20.666439,-103.360094,,0.5,,9471,298,148,,,,,,44625,,, +1280,MEX,es,XEEG-AM ABC R,,Puebla (pue),19.008106,-98.088533,,0.5,,9295,293,148,,,,996,,43960,,, +1280,PRU,,OBX3C,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000088,,, +1280,USA,es,KMFR,,Pearsall (TX),28.886944,-99.111111,,0.19,,8481,300,149,,,,,,39473,,, +1280,USA,es,KRZE,,Farmington (NM),36.8175,-108.096389,,0.108,,8272,311,149,,,,,,39320,,, +1280,USA,,KWHI,,Brenham (TX),30.168056,-96.422222,,0.072,,8208,299,150,,,,,,39709,,, +1280,ARG,es,R Apocalipsis II,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,0300-1500,1234567,,,33000078,,, +1280,ARG,es,R Punto,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,1500-0300,1234567,,,33000078,,, +1280,USA,en,WQCA448,,Miramar (FL),25.981083,-80.380944,,0.01,,7547,284,152,,,,,,20010648,,, +1280,USA,en,WQCA448,,Miramar (FL),25.981111,-80.227694,,0.01,,7537,284,152,,,,,,20010649,,, +1280,USA,en,WQCA448,,Miramar (FL),25.994303,-80.294358,,0.01,,7541,284,152,,,,,,20010650,,, +1280,USA,en,WQCF602,,Miami (FL),25.592389,-80.511006,,0.01,,7588,284,153,,,,,,20010651,,, +1280,URG,,CW64,,Termas del Arapey (sa),-30.983333,-57.516667,,0.5,,11127,231,154,,,,,,36780,,, +1280,USA,,KXEG,,Phoenix (AZ),33.492222,-112.141111,,0.049,,8785,312,156,,,,,,39784,,, +1280,CHL,,CD128 R del Sur En Voz Alta,,Osorno (AI),-45.466667,-72.666667,,1,,13204,232,158,,,,,,35865,,, +1280,USA,,KQLL,,Henderson (NV),36.210833,-115.163056,,0.028,,8681,315,158,,,,,,38287,,, +1280,CHL,,CC128 R Arturo Prat Chacon AM,,San Carlos (BI),-36.4,-71.933333,,0.25,,12412,238,161,,1050-0405,1234567,,,35808,,, +1280,USA,en,WPGK943,,Mill Valley (CA),37.912972,-122.579139,,0.01,,8854,321,163,,,,,,20010654,,, +1280,USA,en,WPQB916,,Alameda/1432 San Antonio Ave (CA),37.777675,-122.261639,,0.01,,8854,321,163,,,,,,20010653,,, +1285,RUS,,SW,b,Savelovo,56.354167,37.458333,,0.025,,2053,64,94,,,,972,L1003 U1010 30.0s,IDx2 + 22 gap,85892,, +1287,E,es,SER,,Lleida=Lrida/Granyena (CAT-L),41.624361,0.653439,,5,,1244,203,62,,0000-2400,1234567,2,,1209,,, +1287,E,es,SER,,Lugo/As Arierias (GAL-LU),42.991628,-7.578247,,10,,1455,231,62,,0000-2400,1234567,,,1211,,, +1287,E,es,SER,,Burgos (CAL-BU),42.334014,-3.680417,,5,,1325,219,63,,0000-2400,1234567,9989,,1210,,, +1287,RUS,,Voice of Russia,,Bolshakovo (KA),54.905689,21.694433,,1,,1055,67,68,,1600-2400,1234567,,,6700146,,, +1287,RUS,ru,Voice of Russia,,Bolshakovo (KA),54.905689,21.694433,,1,,1055,67,68,,0900-1400,1234567,,,6700146,,, +1287,RUS,ru,R Rossii,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,,,9997,,6700004,,, +1287,POR,pt,Antena 1,,Portalegre (ple),39.308639,-7.413917,,2,,1776,222,72,,0000-2400,1234567,,,1246,,, +1287,GRC,el,R 322,,Athnai (att-ath),38,23.75,,0.7,,2067,133,79,,0000-2400,1234567,995,,3400032,,, +1287,IRN,fa,IRIB R Fars,,Lar (frs),27.65325,54.294389,,100,,4784,106,85,,,,43,,1808,,, +1287,KGZ,en,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1445-1500,1234567,,,2230,,, +1287,KGZ,en,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,2300-2315,1234567,,,2230,,, +1287,KGZ,en,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,2315-2345,......7,,,2230,,, +1287,KGZ,kk,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1500-1515,1234567,,,2230,,, +1287,KGZ,kk,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1715-1725,1234567,,,2230,,, +1287,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,0000-1230,1234567,,,2230,,, +1287,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1755-1900,1234567,,,2230,,, +1287,KGZ,ky,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1545-1600,1234567,,,2230,,, +1287,KGZ,ky,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1630-1645,1234567,,,2230,,, +1287,KGZ,ky,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1745-1755,1234567,,,2230,,, +1287,KGZ,ru,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1515-1545,.....67,,,2230,,, +1287,KGZ,ru,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1645-1700,1234567,,,2230,,, +1287,KGZ,tg,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1700-1715,1234567,,,2230,,, +1287,KGZ,ug,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1600-1630,1234567,,,2230,,, +1287,KGZ,uz,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1515-1545,12345..,,,2230,,, +1287,KGZ,uz,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1725-1745,1234567,,,2230,,, +1287,G,,BFBS Gurkha R,,Maidstone (EN-KNT),51.283333,0.533333,,0.001,,415,260,91,,,,,,1230,,, +1287,G,,BHR 1287 (LPAM),,Basildon (EN-ESX),51.557167,0.451639,,0.001,,414,264,91,,,,96,,1231,,, +1287,G,,R Hotspot (LPAM),,Ipswich/Holbrook (EN-SFK),51.983333,1.16,,0.001,,359,270,91,,,,10,,1236,,, +1287,G,,BCRL (LPAM),,Bicester (EN-OXF),51.9,-1.15,,0.001,,518,270,92,,,,,,1215,,, +1287,G,,Insanity (LPAM),,Egham (EN-SUR),51.433333,-0.566667,,0.001,,486,264,92,,,,,,1237,,, +1287,G,,Junction 11 (LPAM),,Reading (EN-BER),51.466667,-0.983333,,0.001,,513,265,92,,,,,,1238,,, +1287,G,,R Gwendolen (LPAM),,Leicester (EN-LEI),52.616667,-1.133333,,0.001,,515,279,92,,,,,,1235,,, +1287,G,,Surge (LPAM),,Southampton (EN-HPS),50.916667,-1.416667,,0.001,,557,259,92,,,,,,1234,,, +1287,G,en,BFBS R,,Aldershot (EN-HPS),51.25,-0.766667,,0.001,,504,262,92,,,,,,1213,,, +1287,G,en,Hemel Hospital R,,Hemel Hempstead (EN-HTS),51.766667,-0.466667,,0.001,,473,268,92,,,,,,1242,,, +1287,G,,Nevill Hall Sound (LPAM),,Abergavenny (WA-MOM),51.833333,-3,,0.001,,645,271,93,,,,,,1239,,, +1287,G,,R Redhill (LPAM),,Redhill (EN-SOM),51.316667,-2.716667,,0.001,,635,266,93,,,,,,1241,,, +1287,G,,Solar AM (LPAM),,St. Helens (EN-MER),53.466667,-2.733333,,0.001,,633,287,93,,,,0,,1240,,, +1287,G,en,BFBS R,,Bulford (EN-WLT),51.2,-1.766667,,0.001,,573,263,93,,,,,,1214,,, +1287,G,en,BFBS R,,Catterick (EN-NYK),54.366667,-1.633333,,0.001,,591,298,93,,,,,,1212,,, +1287,G,en,BFBS R,,Tidworth (EN-WLT),51.083333,-1.8,,0.001,,578,262,93,,,,,,2374,,, +1287,G,,R Coombeshead (LPAM),,Newton Abbot (EN-DVN),50.533333,-3.6,,0.001,,717,260,94,,,,,,1232,,, +1287,G,,R Glan Clwyd,,Rhyl (WA-DBG),53.316667,-3.483333,,0.001,,679,285,94,,,,,,1244,,, +1287,G,,Crawley Hospital R (LPAM),,Crawley (EN-WSU),51.116667,-0.2,,0.0005,,469,259,95,,,,,,1233,,, +1287,G,,Victoria R Network (LPAM),,Kirkcaldy (SC-FIF),56.116667,-3.166667,,0.001,,766,309,95,,,,,,1243,,, +1287,G,en,BFBS R,,Ballykinler/Abercorn Barracks (NI-DWN),54.252778,-5.794444,,0.001,,846,291,95,,,,,,1224,,, +1287,G,en,BFBS R,,Aldergrove (NI-ANT),54.65,-6.216667,,0.001,,882,294,96,,,,,,1217,,, +1287,G,en,BFBS R,,Ballykelly (NI-LDR),55.05,-7.016667,,0.001,,943,296,96,,,,,,1218,,, +1287,G,en,BFBS R,,Ballymena (NI-ANT),54.866667,-6.266667,,0.001,,891,295,96,,,,,,2800006,,, +1287,G,en,BFBS R,,Holywood/Palace Baracks (NI-DWN),54.626944,-5.847222,,0.001,,859,294,96,,,,,,1227,,, +1287,G,en,BFBS R,,Bessbrook Mill (NI-ARM),54.2,-6.416667,,0.0005,,885,290,99,,,,,,1225,,, +1287,IND,,AIR West,,Panaji A (GA),15.459111,73.847906,,100,,7123,98,108,,0025-0405,1234567,9963,,50343,,, +1287,IND,,AIR West,,Panaji A (GA),15.459111,73.847906,,100,,7123,98,108,,0630-0930,1234567,9963,,50343,,, +1287,IND,,AIR West,,Panaji A (GA),15.459111,73.847906,,100,,7123,98,108,,1200-1742,1234567,9963,,50343,,, +1287,BGD,,Bangladesh Betar,,Barisal (bar),22.674017,90.336969,,20,,7633,80,120,,0445-1115,1234567,,,50333,,, +1287,CHN,,Fuxin RGD,,Fuxin/LNTS322 (LN),41.995119,121.732717,,20,,7846,45,122,,,,,,50337,,, +1287,CHN,,Ningxia RGD,,Guyuan (NX),36.256111,106.166389,,10,,7505,59,122,,2115-1830,1234567,,,50338,,, +1287,J,ja,JOHR HBC Hokkaido Hoso,,Sapporo (hok),43.134722,141.531667,,50,,8581,32,125,,0000-2400,1234567,9993,,50346,,, +1287,CHN,,Chuxiong RGD,,Chuxiong/YNTS692 (YN),25.020511,101.555006,,10,,8174,70,129,,,,,,50335,,, +1287,CHN,,Shenzhen RGD Lingnan zhi Sheng,,Shenzhen (GD),22.511622,114.034061,,25,,9175,63,130,,2225-1800,1234567,,,50339,,, +1287,KOR,ko,HLAF MBC,,Gangneung (gan),37.788333,128.901944,,10,,8576,43,132,,0000-2400,1234567,,,50349,,, +1287,KOR,ko,HLAX MBC,,Cheongju (ccb),36.6,127.433333,,10,,8618,45,132,,0000-2400,1234567,,,50348,,, +1287,CHN,zh,CNR 1,,Ningde/FJTS901 (FJ),26.733222,119.57125,,10,,9117,56,134,,2025-1805,1234567,,,36201036,,, +1287,THA,th,Sor. Or. Tor. Smart R,,Samut Prakan/Bang Phli (spk),13.613889,100.677778,,10,,9104,78,134,,2200-1800,1234567,,,50354,,, +1287,THA,th,Wor. Por. Thor. 6,,Ubon Ratchathani (urt),15.266667,104.866667,,10,,9237,74,135,,2200-1455,1234567,,,50355,,, +1287,TWN,,Han Sheng Kuangpo Tientai,,Taichung (TCS),24.131711,120.694756,,10,,9420,57,135,,2100-1600,1234567,,,50357,,, +1287,CHN,,Renqiu RGD,,Renqiu (HB),38.7,116.1,,1,,7852,51,136,,2225-1600,1234567,,,36200381,,, +1287,CHN,,Xuchang RGD,,Xuchang (HE),34.033333,113.8,,1,,8136,56,138,,0930-1500,1234567,,,50342,,, +1287,CHN,,Xuchang RGD,,Xuchang (HE),34.033333,113.8,,1,,8136,56,138,,2155-????,1234567,,,50342,,, +1287,PHL,,DZZH-AM (r:666 DZRH-AM),,Sorsogon City/Cabitan (sor),12.966667,124,,5,,10646,60,142,,,,,,50351,,, +1287,CHN,,Zhejiang zhi Sheng,,Dongtou (ZJ),29.15,121.45,,1,,9001,53,144,,2130-1605,1234567,,,50336,,, +1287,CHN,zh,CNR 2,,Quanzhou/FJTS401 (FJ),24.882722,118.596917,,1,,9230,58,144,,2100-1602,1234567,,,36201283,,, +1287,PHL,,DXRC-AM Super Radyo,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,2000-1230,1234567,,,50352,,, +1287,TWN,,Min Li Kuangpo Tientai,,Fangliao (PT),22.385278,120.580556,,1,,9574,58,146,,,,,,50356,,, +1287,INS,,Java R Station,,Semarang (JT-kse),-6.966667,110.483333,,1,,11578,83,152,,,,,,35400141,,, +1287,AUS,,2TM,,Tamworth/Kingswood (NSW),-31.164806,150.920972,,2,,16318,65,165,,0000-2400,1234567,,,50332,,, +1287,NZL,,3ZW Newstalk ZB,,Westport/Cape Foulwind (WTC),-41.750167,171.466194,,2,,18404,50,172,,,,,,50350,,, +1290,UKR,,BO,b,Bohdanivka,50.645833,30.875,,0.025,,1698,86,90,,,,,L1030 U1020 ,IDx2 + 20 gap,85893,, +1290,RUS,,TU,b,Bely (TV),55.854167,32.958333,,0.025,,1773,66,91,,,,3,L1024 U1031 ,85896,,, +1290,RUS,,P,b,Murmansk / Murmashi South (MU),68.8125,32.708333,,0.025,,2313,27,96,,,,,15.1s,IDx2,85894,, +1290,RUS,,R,b,Murmansk (MU),68.770833,32.791667,,0.025,,2312,27,96,,,,0,L1040 U1030 15.0s,IDx2,85895,, +1290,USA,es,WRNI,i,Providence (RI),41.855833,-71.444722,,10,,5724,291,104,,,,,,42888,,, +1290,USA,,WKBK,,Keene (NH),42.946111,-72.309167,,5,,5701,293,107,,,,9995,,41963,,, +1290,CAN,en,CJBK,,London (ON),42.868889,-81.2325,,10,,6256,298,110,,,,1,,36145,,, +1290,USA,,WNBF,,Binghamton (NY),42.058056,-75.954167,,5,,5993,294,110,,,,2,,42433,,, +1290,CAN,en,CFRW,,Winnipeg (MB),49.799444,-97.275,,10,,6605,313,113,,,,1,,36008,,, +1290,USA,,WHIO,,Dayton (OH),39.678889,-84.130278,,5,,6676,297,117,,,,1,,41641,,, +1290,USA,en,WZTI,,Greenfield (WI),42.919722,-87.988056,,5,,6650,302,117,,,,9985,,42294,,, +1290,USA,,KOUU,,Pocatello (D) (ID),42.9575,-112.429444,,50,,7926,317,119,,,,,,20012583,,, +1290,USA,,WIRL,,Peoria (IL),40.623333,-89.590833,,5,,6926,301,119,,,,2,,43372,,, +1290,USA,,WFBG,,Altoona (PA),40.455556,-78.397222,,1,,6264,294,120,,,,,,41361,,, +1290,USA,,WTKS,,Savannah (GA),32.090556,-81.148611,,5,,7095,289,121,,,,,,43158,,, +1290,USA,en,KOIL,,Omaha (NE),41.188889,-96.005833,,5,,7244,306,122,,,,1,,38705,,, +1290,USA,,WVOW,,Logan (WV),37.856111,-81.971944,,1,,6686,294,124,,,,,,43337,,, +1290,USA,en,WHKY,,Hickory (NC),35.726389,-81.300556,,1,,6813,292,125,,,,,,41654,,, +1290,USA,en,WJNO,,West Palm Beach (FL),26.763889,-80.204722,,4.9,,7471,285,125,,,,9946,,41905,,, +1290,USA,,KGVO,,Missoula (MT),46.829722,-114.079167,,5,,7645,321,126,,,,1,,38519,,, +1290,B,pt,ZYH888 Rdio Timbira do Maranho,,So Lus (MA),-2.533333,-44.305556,,5,,7705,236,127,,,,15,,36902112,,, +1290,VEN,es,YVLF R Puerto Cabello,,Puerto Cabello (cbb),10.488444,-67.992181,,10,,8026,264,127,,0000-2400,1234567,15,,2201,,, +1290,USA,,KUMA,,Pendleton (OR),45.673611,-118.746667,,5,,7949,323,130,,,,996,,39579,,, +1290,USA,es,WCHK,,Canton (GA),34.252222,-84.463611,,0.5,,7130,293,131,,,,,,40994,,, +1290,USA,,WWTX,i,Wilmington (DE),39.734167,-75.528889,,0.032,,6138,292,133,,,,,,43438,,, +1290,CLM,es,HJEB,,Santa Marta/El Rodadero (mag),11.183333,-74.166667,,5,,8386,270,134,,,,,,37406,,, +1290,USA,,KOWB,,Laramie (WY),41.283889,-105.580833,,1,,7744,312,134,,,,994,,39115,,, +1290,CLM,es,HJOI R Chacur,,Sampues/S Onofre (suc),9.716667,-75.516667,,5,,8606,270,135,,,,,,37609,,, +1290,CLM,es,HJSZ,,Saravena (ara),6.966667,-71.883333,,5,,8598,265,135,,,,,,35901651,,, +1290,URG,,CX129,,Carmelo (co),-34,-58.266667,,50,,11444,230,135,,,,,,36787,,, +1290,URG,es,CX38 RNU,,Santiago Vzquez (mo),-34.80725,-56.363111,,50,,11419,228,135,,1000-0300,1234567,5,,36815,,, +1290,USA,,WCCC,,West Hartford (CT),41.796667,-72.797222,,0.011,,5814,292,135,,,,,,43173,,, +1290,USA,,WOPP,,Opp (AL),31.290833,-86.230833,,0.5,,7485,292,135,,,,,,42615,,, +1290,USA,en,WDZY,,Colonial Heights (VA),37.258333,-77.394444,,0.041,,6445,291,135,,,,0,,41232,,, +1290,CLM,,HJHI,,Garagoa (boy),5.083333,-73.366667,,5,,8864,265,136,,,,,,37471,,, +1290,USA,,KPAY,,Chico (CA),39.710556,-121.787778,,5,,8646,322,136,,,,99933,,39129,,, +1290,USA,,KRGE,,Weslaco (TX),26.21,-97.909167,,5,,8645,297,136,,,,,,39243,,, +1290,USA,,WOMP,,Bellaire (OH),40.035833,-80.771111,,0.033,,6443,296,136,,,,,,42601,,, +1290,CLM,es,HJMC R Viva 12-90,,Cali (val),3.566667,-76.45,,5,,9207,267,137,,,,2683,,37562,,, +1290,CLM,es,HJNE,,Granada (met),3.533333,-73.7,,5,,9023,264,137,,,,,,35901653,,, +1290,PNR,es,R nica,,Guarar/La Guaca (lsn),7.805711,-80.274281,,5.5,,9097,272,137,,,,,,52341,,, +1290,SLV,,YSLV,,San Salvador (ssl),13.75,-89.216667,,5,,9183,283,137,,,,,,45296,,, +1290,USA,,KKDD,,San Bernardino (CA),34.124167,-117.237222,,5,,8977,316,137,,,,9971,,38711,,, +1290,USA,,KMMM,,Pratt (KS),37.642778,-98.6775,,0.5,,7693,305,137,,,,,,39729,,, +1290,USA,,WJCV,,Jacksonville (NC),34.766111,-77.391111,,0.047,,6639,289,137,,,,,,41856,,, +1290,USA,,WKLJ,,Sparta (WI),43.968333,-90.859722,,0.059,,6731,305,137,,,,,,42035,,, +1290,USA,,WLBY,,Saline (MI),42.204722,-83.788611,,0.026,,6459,299,137,,,,,,42139,,, +1290,USA,,WNIL,,Niles (MI),41.822778,-86.284167,,0.044,,6637,300,137,,,,,,42469,,, +1290,USA,,WXKL,,Sanford (NC),35.450278,-79.158333,,0.04,,6698,291,138,,,,,,43472,,, +1290,B,pt,ZYH286 Rdio Rio Mar,,Manaus (AM),-3.121978,-60.041739,,2.5,,8712,249,139,,,,,,36902113,,, +1290,B,pt,ZYK663 Rdio Novo Tempo,,So Jos do Rio Preto (SP),-20.851442,-49.329017,,5,,9739,231,139,,,,,,36902102,,, +1290,SLV,es,YSMA,,Chalatenango (ctn),14.016667,-88.95,,3,,9142,283,139,,,,,,45297,,, +1290,USA,en,WPFE399,,Ocean City/4001 Coastal Hwy (MD),38.37765,-75.077683,,0.01,,6211,290,139,,,,,,20010655,,, +1290,B,pt,ZYJ619 Rdio Caic,,Caic (RN),-6.443611,-37.079444,,0.25,,7701,227,140,,,,,,36902111,,, +1290,PNR,es,R nica,,Alanje/Orilla del Ro (chq),8.363608,-82.509508,,3,,9201,274,140,,,,,,52340,,, +1290,USA,,WKLB,,Manchester (KY),37.1375,-83.780556,,0.034,,6855,295,140,,,,,,42034,,, +1290,USA,en,KNIC273,,Rockville (MD),39.110389,-77.194361,,0.01,,6290,292,140,,,,,,20010657,,, +1290,USA,en,WNVY507,,Rockville (MD),39.016222,-77.127694,,0.01,,6293,292,140,,,,,,20010661,,, +1290,USA,en,WNVY508,,Largo (MD),38.92765,-76.861028,,0.01,,6283,292,140,,,,,,20010660,,, +1290,USA,en,WPHG707,,Oxon Hill (MD),38.810983,-76.998861,,0.01,,6301,292,140,,,,,,20010659,,, +1290,B,pt,ZYH450 Metropole AM,,Salvador (BA),-13.008333,-38.529167,,1,,8424,225,141,,,,28,,36902115,,, +1290,USA,,WBTG,,Sheffield (AL),34.774167,-87.670556,,0.079,,7287,296,141,,,,,,40917,,, +1290,USA,,WCBL,,Benton (KY),36.858611,-88.336389,,0.053,,7156,298,141,,,,,,40954,,, +1290,USA,,KBMO,,Benson (MN),45.318333,-95.563333,,0.024,,6879,309,142,,,,,,38060,,, +1290,USA,,KJEF,,Jennings (LA),30.210556,-92.665278,,0.28,,7977,296,142,,,,,,38666,,, +1290,USA,,WJBI,,Batesville (MS),34.303611,-89.983056,,0.091,,7467,297,142,,,,,,41846,,, +1290,CLM,,HJNY,,Barrancabermeja (sat),7.066667,-73.833333,,1,,8722,267,143,,,,,,37601,,, +1290,CLM,es,HJTH La Voz de Las Estrellas,,Medelln (ant),6.283333,-75.566667,,1,,8909,268,143,,,,99,,37643,,, +1290,PNR,es,HOS23 R nica,,Pedregal/Calle Tenera Tauro (pnm),9.063878,-79.434164,,1,,8930,272,143,,,,,,37727,,, +1290,USA,,KALM,,Thayer (MO),36.556389,-91.551389,,0.056,,7374,300,143,,,,,,37938,,, +1290,USA,,KCUB,,Tucson (AZ),32.276944,-110.980556,,1,,8838,310,143,,,,,,38220,,, +1290,USA,,WNBN,,Meridian (MS),32.361667,-88.623889,,0.091,,7545,295,143,,,,,,42436,,, +1290,USA,,WYEA,,Sylacauga (AL),33.195556,-86.233889,,0.05,,7327,294,143,,,,,,43512,,, +1290,CLM,es,HJKY RCN,,Girardot (cun),4.366667,-74.566667,,1,,9009,266,144,,,,995,,37538,,, +1290,EQA,,HCJA5 LV del Ro Tarqui,,Cuenca (azu),-2.85,-79,,2,,9945,265,144,,,,96,,36978,,, +1290,GTM,,R Miramundo LV del Ejercito,,Zacapa (zcp),14.966667,-89.516667,,1,,9096,284,144,,,,,,52137,,, +1290,HND,,HRNN27,,Choluteca (cho),13.266667,-87.166667,,1,,9088,281,144,,,,,,37814,,, +1290,MEX,es,XETH-AM R Palizada,,Palizada (cam),18.257222,-92.054722,,1,,8975,288,144,,,,,,44820,,, +1290,USA,,KDMS,,El Dorado (AR),33.208333,-92.687778,,0.106,,7723,298,144,,,,,,38283,,, +1290,MEX,es,XEDA-AM R Trece,,Mxico D.F/Aculco (dif),19.374056,-99.109506,,1,,9326,294,145,,,,999,,43894,,, +1290,MEX,es,XENX-AM R Mujer,,Mazatln (sin),23.280047,-106.418283,,1,,9414,302,145,,,,,,44465,,, +1290,USA,,KIVY,,Crockett (TX),31.305556,-95.451667,,0.175,,8052,299,145,,,,,,38647,,, +1290,USA,,WPCF,,Panama City Beach (FL),30.178889,-85.781944,,0.055,,7549,291,145,,,,,,42655,,, +1290,USA,en,WWHM,,Sumter (SC),33.923889,-80.286667,,0.012,,6892,290,145,,,,,,42781,,, +1290,ARG,,LRJ212 R Murialdo,,Villa Nueva de Guaymalln (mz),-32.933061,-68.744375,,5,,11929,238,146,,,,987,,51847,,, +1290,B,pt,ZYK331 Rdio Planetrio AM,,Espumoso (RS),-28.738333,-52.821389,,2,,10671,229,146,,,,,,36902117,,, +1290,EQA,,HCNS1,,Atuntaqui (nap),-0.366667,-78.15,,1,,9669,265,146,,,,,,37045,,, +1290,MEX,es,XEAP-AM Romntica 1290,,Ciudad Obregn (son),27.501478,-109.977514,,0.75,,9226,307,146,,,,,,43722,,, +1290,PRG,,ZP47,,Encarnacin (ita),-27.333333,-55.866667,,2,,10701,232,146,,,,,,45543,,, +1290,EQA,,HCOF2 Canal Milagr,, (gua),-2.1,-79.533333,,1,,9915,266,147,,,,,,37048,,, +1290,GTM,,TGTU R Nacional de Totonicapn,,Totonicapn (tot),14.9,-91.333333,,0.5,,9222,285,147,,0000-0400,1234567,,,40549,,, +1290,PRU,es,OCX1Q RPP,,Tumbes (tum),-3.566667,-80.5,,1,,10110,265,147,,,,0,,37000114,,, +1290,B,pt,ZYL273 Uberlndia AM,,Uberlndia (MG),-18.89645,-48.302978,,0.5,,9497,231,148,,,,,,36902116,,, +1290,MEX,es,XEIX-AM La Pantera,,Jiquilpan de Jurez (mic),19.991944,-102.721111,,0.5,,9493,297,148,,,,,,44190,,, +1290,PRU,es,R Estelar,,Chota (caj),-6.55,-78.65,,1,,10246,262,148,,,,99,,37000063,,, +1290,USA,,KUOA,,Siloam Springs (AR),36.191111,-94.566111,,0.031,,7582,301,148,,,,,,39584,,, +1290,USA,,KWFS,,Wichita Falls (TX),33.960556,-98.561667,,0.073,,8004,303,148,,,,,,39707,,, +1290,B,pt,ZYJ734 Rdio Ararangu AM,,Ararangu (SC),-28.932222,-49.464444,,1,,10519,227,149,,,,,,36902109,,, +1290,B,pt,ZYK745 Rdio Eldorado,,So Jos dos Campos (SP),-23.188889,-45.908333,,0.5,,9789,227,149,,,,81,,36902104,,, +1290,BOL,,CP212 Rdifusoras Mineria,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1000-2400,1234567,,,52015,,, +1290,EQA,,HCUM6,,Latacunga (cot),-0.916667,-78.566667,,0.5,,9745,265,149,,,,,,37152,,, +1290,B,pt,ZYJ310 Rdio Brasil Sul,,Ibipor (PR),-23.300556,-51.179167,,0.5,,10070,231,150,,,,,,36902110,,, +1290,EQA,,HCAI5,,Chunchi (chi),-2.316667,-78.916667,,0.5,,9892,265,150,,,,,,36844,,, +1290,ARG,,LRI371 R Amanecer,,Reconquista (sf),-29.15,-59.666667,,1,,11076,234,151,,,,,,51844,,, +1290,B,pt,Rdio Sim 1290,,Vila Velha/Fazenda Setiba (ES),-20.427697,-40.374617,,0.25,,9250,223,151,,,,,,36902105,,, +1290,B,pt,ZYJ804 Rdio Cambori AM,,Balnerio Cambori (SC),-27.020078,-48.658264,,0.5,,10296,227,151,,,,,,36902106,,, +1290,B,pt,ZYL345 Rdio Cidade,,Arcos (MG),-20.233333,-45.501667,,0.25,,9481,228,151,,,,,,36902107,,, +1290,MEX,es,XEFAC-AM La Mera Mera,,Salvatierra (gua),20.259414,-100.88835,,0.25,,9357,296,151,,,,,,43991,,, +1290,ARG,,R Cristal,,Lans (ba),-34.716667,-58.4,,1,,11516,230,152,,0000-2400,1234567,,,51845,,, +1290,ARG,,R Provincia,,Mariano Acosta (ba),-34.733333,-58.8,,1,,11539,230,152,,,,,,51846,,, +1290,B,pt,ZYK662 R.Difusora So Jose do Rio Pardo,,So Jos do Rio Pardo (SP),-21.611039,-46.900433,,0.25,,9686,228,152,,,,,,36902108,,, +1290,USA,,KOUU,,Pocatello (N) (ID),42.957778,-112.429444,,0.024,,7926,317,152,,,,,,39111,,, +1290,USA,,KZSB,,Santa Barbara (CA),34.418611,-119.686111,,0.122,,9064,318,153,,,,,,39883,,, +1290,PRU,es,OAX7X R Juliaca,,Juliaca (pun),-15.816667,-70.016667,,0.3,,10495,250,154,,,,908,,40353,,, +1290,USA,,KAZA,,Gilroy (CA),37.163333,-121.641111,,0.088,,8886,320,154,,,,3,,37996,,, +1290,CHL,,CD129 R Mulchen,,Mulchen (BI),-37.716667,-72.216667,,1,,12539,237,155,,,,,,51953,,, +1290,CHL,,CA129 R Coya,,Maria Elena (AN),-22.3,-69.683333,,0.25,,11050,246,156,,,,,,35682,,, +1290,USA,en,WPBF212,,League City (TX),29.477686,-95.082694,,0.01,,8187,297,159,,,,,,20010658,,, +1290,USA,en,WPCD886,,Houston/8615 Manchester Blvd (TX),29.727689,-95.277689,,0.01,,8178,298,159,,,,,,20010656,,, +1296,G,en,The Mighty KBC,,Orfordness (EN-SFK),52.101333,1.578889,,300,96,330,272,36,,0900-1100,9999999,9988,,1254,,, +1296,G,,R XL 1296 AM,,Birmingham/Langley Mill-B (EN-WMD),52.566694,-1.763167,,10,,557,278,53,,0000-2400,1234567,14,,1255,,, +1296,E,es,COPE,,Valncia/Castellar (VAL-V),39.408694,-0.348417,,50,,1505,203,55,,0000-2400,1234567,0,,1253,,, +1296,SRB,sr,R Beograd 1,,Vranje (Srb-pcn),42.533161,21.947939,,8,,1577,126,64,,0000-2400,1234567,999,,1257,,, +1296,AZE,az,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,0300-0400,1234567,2,,1250,,, +1296,AZE,az,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1400-1600,1234567,2,,1250,,, +1296,AZE,de,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1300-1330,1234567,2,,1250,,, +1296,AZE,fa,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1100-1200,1234567,2,,1250,,, +1296,AZE,fr,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1330-1400,1234567,2,,1250,,, +1296,AZE,tu,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1200-1300,1234567,2,,1250,,, +1296,IRN,fa,IRIB R Iran,,Qazvin (qzv),36.106933,50.038789,,50,,3835,100,78,,,,8,,1256,,, +1296,SDN,ar,SRTC Sudan Nat. R,,Reiba (si),13.562361,33.527639,,600,,4919,141,78,,0100-2330,1234567,969,,2226,,, +1296,TJK,ru,R Rossii,,Orzu (ktl),37.539,68.791972,,300,,5008,83,82,,0000-1700,1234567,0,,34200010,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0330-0430,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0530-0630,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0730-0830,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0930-1030,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1130-1230,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1330-1430,1234567,999,,1955,,, +1296,AFG,en,Voice of America,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,2030-0030,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0230-0330,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0430-0530,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0630-0730,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0830-0930,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1030-1130,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1230-1330,1234567,999,,1955,,, +1296,AFG,ps,VOA R Ashna,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0030-0230,1234567,999,,1955,,, +1296,AFG,ps,VOA R Ashna,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1430-2030,1234567,999,,1955,,, +1296,IRN,,IRIB R Zahedan,,Zabol (sib),31.039217,61.546739,,10,,4998,96,97,,0430-1230,1234567,997,,10800018,,, +1296,AGL,pt,RNA Em. Prov. de Uge,,Uge (uig),-7.583333,15.066667,,10,,6689,170,114,,0300-2200,1234567,,,2492,,, +1296,CHN,fr,R France Int.,,Kunming/Anning-SARFT501 (YN),24.875833,102.488333,,300,175,8246,70,115,,1600-1700,1234567,,,50365,,, +1296,CHN,vi,China R Int.,,Kunming/Anning-SARFT501 (YN),24.875833,102.488333,,300,175,8246,70,115,,1100-1500,1234567,,,50365,,, +1296,CHN,vi,R France Int.,,Kunming/Anning-SARFT501 (YN),24.875833,102.488333,,300,175,8246,70,115,,1500-1600,1234567,,,50365,,, +1296,IND,,AIR East,,Darbhanga (BR),26.143611,85.9325,,10,,7048,81,118,,0025-0430,1234567,985,,50370,,, +1296,IND,,AIR East,,Darbhanga (BR),26.143611,85.9325,,10,,7048,81,118,,0700-1000,1234567,985,,50370,,, +1296,IND,,AIR East,,Darbhanga (BR),26.143611,85.9325,,10,,7048,81,118,,1200-1740,1234567,985,,50370,,, +1296,CHN,,Benxi RGD,,Benxi (LN),41.166667,123.633333,,20,,8013,45,124,,,,,,50363,,, +1296,CHN,,Xianyang RGD Xinwen,,Xianyang (SA),34.35,108.716667,,10,,7816,59,125,,0855-1445,1234567,,,50368,,, +1296,CHN,,Xianyang RGD Xinwen,,Xianyang (SA),34.35,108.716667,,10,,7816,59,125,,2215-0630,1234567,,,50368,,, +1296,CHN,zh,Shanghai Dongfang GD Xinwen Pinl,,Shanghai/Minhang (SH),31.109167,121.514722,,20,,8824,52,130,,0000-2400,1234567,994,,50366,,, +1296,J,ja,JOTK NHK1,,Matsue/Izumo-Shi (chg-shi),35.378333,132.745556,,10,,8982,42,134,,0000-2400,1234567,0,,50380,,, +1296,TWN,,BCC News Network,,Tainan (TN),23.118367,120.151517,,10,,9482,58,135,,0000-2400,1234567,,,50389,,, +1296,CHN,,Xingcheng RGD,,Xingcheng (LN),40.616667,120.716667,,1,,7920,47,136,,,,,,36200323,,, +1296,THA,th,Sor. Wor. Thor. (R Thailand),,Pattani (pti),6.8925,101.250833,,10,,9732,82,136,,2200-1503,1234567,,,50388,,, +1296,CHN,,Qinghe RGD,,Qinghe (HB),37.066667,115.666667,,1,,7972,53,137,,,,,,36200380,,, +1296,CHN,,Suining RGD,,Suining (SC),30.533333,105.533333,,1,,7952,64,137,,,,,,50367,,, +1296,PHL,,DWLQ-AM,,Lucena City/Ibabang Dupay (qzn),13.933333,121.633333,,5,,10415,62,141,,,,,,50384,,, +1296,PHL,,DWPR-AM,,Dagupan City/Bolosan (pgs),16.05,120.366667,,5,,10144,61,141,,,,9,,50382,,, +1296,PHL,,DXAB-AM Radyo Patrol,,Davao City/Matina (dvs),7.054722,125.576389,,10,,11291,62,141,,1955-1405,1234567,32,,50383,,, +1296,PHL,,DYJJ-AM Radyo Budyong,,Roxas City (cpz),11.583333,122.75,,5,,10700,62,142,,,,,,50385,,, +1296,TWN,,Min Pen Kuangpo Tientai 1,,Taipei (TPS),25.01795,121.494183,,1,,9383,56,145,,,,,,50390,,, +1296,AUS,en,6RN ABC National,,Wagin/Arthur River Road (WA),-33.336389,117.092389,,10,,14227,98,151,,0000-2400,1234567,3,,50361,,, +1296,INS,id,PM4DUI R Suara Merak Jaya,,Muarateweh (KT),-0.95,114.883333,,1,,11340,76,151,,,,,,50375,,, +1296,INS,id,RKM-R Kawala Muda,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,50261,,, +1296,INS,id,PM8DCY R.Suara Kelandka Utama,,Palopo (SN-plp),-3,120.2,,1,,11873,73,153,,,,,,50373,,, +1296,INS,id,PM2DHA R Shinta Rama,,Cakranegara (NB-kma),-8.583333,116.133333,,0.5,,12101,80,157,,,,,,50371,,, +1296,AUS,en,4RPH,,Brisbane/Tingalpa (QLD),-27.463111,153.123056,,5,,16127,58,160,,0000-2400,1234567,44,,50360,,, +1296,NZL,,1ZH Newstalk ZB,,Hamilton/Eureka (WKO),-37.691878,175.404903,,2.5,,18197,32,170,,0000-2400,1234567,,,50381,,, +1298,AGL,pt,RNA Em. Prov. do Zaire,,Soyo (zai),-6.133333,12.366667,,1,,6501,173,122,,,,,,47109,,, +1300,USA,en,WGDJ,,Rensselaer (NY),42.589722,-73.743611,,8,,5817,294,106,,,,14,,43175,,, +1300,USA,en,WOOD,,Grand Rapids (MI),42.756111,-85.656667,,20,,6527,301,109,,,,994,,42611,,, +1300,AFG,,R Ghazni,,Ghazni (gha),33.533333,68.333333,,0.5,,5270,88,113,,0230-0430,1234567,,,50392,,, +1300,AFG,,R Ghazni,,Ghazni (gha),33.533333,68.333333,,0.5,,5270,88,113,,1400-1630,1234567,,,50392,,, +1300,USA,en,WJZ,,Baltimore (MD),39.333333,-76.770278,,5,,6247,292,113,,,,,,41873,,, +1300,USA,,WXRL,,Lancaster (NY),42.882778,-78.631667,,2.5,,6097,297,114,,,,992,,43490,,, +1300,USA,en,WJMO,,Cleveland (OH),41.341111,-81.741667,,5,,6402,297,114,,,,2,,41320,,, +1300,USA,,WIMG,,Ewing (NJ),40.287778,-74.873056,,1.3,,6055,292,116,,,,,,41761,,, +1300,USA,es,WAVZ,i,New Haven (CT),41.287778,-72.946667,,1,,5860,292,116,,,,,,40780,,, +1300,USA,,WRDZ,,La Grange (IL),41.674722,-87.7625,,4.5,,6735,301,118,,,,,,42831,,, +1300,USA,,KGLO,,Mason City (IA),43.054167,-93.204722,,5,,6935,306,119,,,,1,,38491,,, +1300,USA,en,KKOL,,Seattle/Tacoma (Marc St.) (WA),47.248889,-122.405,,47,,7944,326,120,,,,1,,38745,,, +1300,USA,en,KPMI,,Bemidji (D) (MN),47.442222,-94.865833,,2.5,,6671,310,120,,,,,,20016271,,, +1300,USA,,WKZN,,West Hazleton (PA),40.940556,-76.001944,,0.5,,6078,293,121,,,,,,42573,,, +1300,USA,en,WNQM,,Nashville (TN),36.208333,-86.893889,,5,,7122,296,121,,,,,,42500,,, +1300,B,pt,ZYH586 Rdio Iracema,,Fortaleza (CE),-3.816625,-38.612439,,10,,7520,230,122,,,,12,,36902127,,, +1300,USA,,WPNH,,Plymouth (NH),43.775556,-71.705556,,0.082,,5605,294,124,,,,,,42717,,, +1300,USA,,WSYD,,Mount Airy (NC),36.503333,-80.593056,,1,,6706,292,124,,,,,,43093,,, +1300,USA,,KWCK,,Searcy (AR),35.2575,-91.730278,,5,,7493,299,125,,1300-0100,1234567,,,39695,,, +1300,USA,,WJDA,,Quincy (MA),42.259722,-70.976667,,0.072,,5666,292,125,,,,,,41858,,, +1300,USA,,WLXG,,Lexington (KY),38.097222,-84.529167,,1,,6825,296,125,,,,9991,,42261,,, +1300,USA,en,KPMI,,Bemidji (N) (MN),47.442222,-94.865833,,0.6,,6671,310,126,,,,,,20016270,,, +1300,VEN,,YVKH R Recuerdos 1300,,Caracas (dcf),10.484544,-66.813733,,10,,7946,263,126,,1000-0400,1234567,999,,45354,,, +1300,SXM,,PJD2 Voice of St. Maarten,,Philipsburg (smt),18.019444,-63.066667,,1,,7042,265,127,,,,989,,40459,,, +1300,USA,en,WRCR,,Spring Valley (NY),41.096667,-74.004722,,0.083,,5941,292,127,,,,,,42823,,, +1300,USA,,KAPL,,Phoenix (D) (OR),42.295556,-122.804167,,20,,8438,324,128,,,,16,,37959,,, +1300,PTR,es,WTIL,,Mayagez (PR),18.183333,-67.167778,,1,,7307,269,130,,0000-2400,1234567,,,43141,,, +1300,USA,en,WFFG,,Marathon (FL),24.691111,-81.108333,,2.5,,7703,284,130,,,,9984,,41373,,, +1300,USA,en,WOSW,,Fulton (NY),43.294722,-76.443056,,0.04,,5933,296,130,,,,,,40706,,, +1300,USA,xx,KAZN,,Pasadena (D) (CA),34.118889,-118.081667,,23,,9018,316,130,,,,,,20012606,,, +1300,VEN,es,YVNS R Reloj 1300,,Maracaibo (zul),10.566667,-71.616667,,10,,8266,267,130,,0000-2400,1234567,983,,45399,,, +1300,USA,en,WMEL,,Cocoa Beach (FL),28.343889,-80.768333,,1,,7377,286,131,,,,9847,,43143,,, +1300,HTI,,R Vision Nouvelle,,Port-au-Prince (oue),18.516667,-72.316667,,1,,7631,273,133,,,,,,52119,,, +1300,USA,,WOAD,,Jackson (MS),32.386667,-90.163056,,1,,7638,296,133,,,,,,42547,,, +1300,CUB,es,R Angulo,,Banes (ho),20.94885,-75.725414,,1,,7657,277,134,,,,,,36573,,, +1300,USA,,KAPL,,Phoenix (N) (OR),42.295556,-122.804167,,5,,8438,324,134,,,,,,20016274,,, +1300,USA,en,KAKC,,Tulsa (OK),35.994444,-95.8575,,1,,7673,302,134,,,,,,37932,,, +1300,CLM,es,HJOG La Voz de las Antillas,,Cartagena (bol),10.558333,-75.511111,,5,,8533,270,135,,,,1,,37607,,, +1300,USA,,KLER,,Orofino (ID),46.478056,-116.242778,,1,,7770,322,135,,,,,,38799,,, +1300,USA,,WCLG,,Morgantown (WV),39.627778,-79.969722,,0.044,,6425,295,135,,,,,,41025,,, +1300,USA,,WQPM,,Princeton (MN),45.552778,-93.581667,,0.083,,6754,308,135,,,,,,42789,,, +1300,USA,,WWCH,,Clarion (PA),41.199167,-79.356944,,0.028,,6267,296,135,,,,,,43360,,, +1300,USA,en,WMVO,,Mount Vernon (OH),40.404722,-82.439722,,0.051,,6517,297,135,,,,,,42413,,, +1300,CLM,es,HJRB,,Tunja (boy),5.533333,-73.366667,,5,,8825,265,136,,,,,,35901666,,, +1300,MEX,es,XEXW-AM W R,,Nogales (son),31.327778,-110.966667,,5,,8925,310,136,,,,,,45072,,, +1300,USA,,KCSF,,Colorado Springs (CO),38.812778,-104.814167,,1,,7923,310,136,,,,,,38732,,, +1300,USA,,WJYP,,St. Albans (WV),38.395278,-81.85,,0.049,,6637,295,136,,,,,,41945,,, +1300,USA,,WLNC,,Laurinburg (NC),34.783333,-79.439444,,0.074,,6769,290,136,,,,,,42195,,, +1300,USA,,WMTN,,Morristown (TN),36.204167,-83.3325,,0.096,,6902,294,136,,,,,,42405,,, +1300,USA,,WSSG,,Goldsboro (NC),35.402222,-78.022222,,0.049,,6629,290,136,,,,,,20016008,,, +1300,CLM,es,HJEA,,Mariquita (tol),5.166667,-74.9,,5,,8961,266,137,,,,,,37405,,, +1300,HND,,HRLH CCI R,,Tegucigalpa (fmz),14.083333,-87.216667,,5,,9020,282,137,,,,,,37776,,, +1300,PNR,es,HOI417 R Baha'is,,Boca del Monte (chq),8.356711,-82.120447,,5,,9175,274,137,,1045-2300,1234567,,,52342,,, +1300,USA,,WBOW,,Terre Haute (IN),39.466944,-87.426111,,0.075,,6891,299,137,,,,,,40893,,, +1300,USA,,WCKI,,Greer (SC),34.9275,-82.261667,,0.094,,6937,292,137,,,,,,41015,,, +1300,CLM,es,HJEF,,Belalczar (cau),2.65,-76,,5,,9257,266,138,,,,,,35901662,,, +1300,CLM,es,HJUA,,Mocoa (put),1.15,-76.65,,5,,9433,265,138,,,,,,35901664,,, +1300,DOM,,HIKQ R Dos,,Santo Domingo (sdo),18.475,-69.833333,,0.25,,7465,271,138,,0000-2400,1234567,,,37265,,, +1300,USA,,KOLY,,Mobridge (SD),45.535278,-100.345833,,0.111,,7111,312,138,,,,,,39084,,, +1300,B,pt,ZYK203 Rdio Boa Vontade,,Porto Alegre/Esteio (RS),-29.868128,-51.103194,,10,,10690,227,139,,,,,,36902131,,, +1300,BOL,,R Bandera Beniana,,Trinidad (ebn),-14.8,-64.783333,,5,,10072,246,140,,,,,,52018,,, +1300,USA,,KVET,,Austin (TX),30.375,-97.716111,,1,,8267,300,140,,,,,,39621,,, +1300,USA,,WFRX,,West Frankfort (IL),37.884444,-88.928889,,0.06,,7108,299,140,,,,,,41437,,, +1300,USA,,WQBN,,Temple Terrace (FL),27.9475,-82.395833,,0.16,,7516,287,140,,,,,,42764,,, +1300,B,pt,ZYI799 Rdio Guarany,,Camaragibe (PE),-8.027439,-34.995883,,0.25,,7757,224,141,,,,,,36902121,,, +1300,B,pt,ZYJ288 Rdio Educadora,,Dois Vizinhos (PR),-25.741667,-53.075556,,5,,10402,231,141,,,,,,36902118,,, +1300,USA,,KBRL,,McCook (NE),40.191944,-100.651667,,0.136,,7581,308,141,,,,,,38087,,, +1300,USA,,KMMO,,Marshall (MO),39.134167,-93.221944,,0.068,,7257,303,141,,,,,,38916,,, +1300,USA,,WBZQ,,Huntington (IN),40.875278,-85.474167,,0.019,,6663,299,141,,,,,,40938,,, +1300,USA,,WIMO,,Winder (GA),33.927778,-83.726944,,0.05,,7110,293,141,,,,,,41762,,, +1300,ARG,es,LRA5 R Nacional Rosario,,Rosario (sf),-33.018217,-60.630725,,10,,11481,232,142,,0853-0303,1234567,362,,2038,,, +1300,EQA,,HCPS6,,Ambato (tun),-1.25,-78.616667,,3,,9778,265,142,,,,,,37063,,, +1300,USA,,WNEA,,Newnan (GA),33.375278,-84.785556,,0.05,,7222,293,142,,,,,,42454,,, +1300,B,pt,ZYK762 Rdio Realidade,,So Carlos (SP),-21.9902,-47.92605,,2,,9775,229,143,,,,,,36902123,,, +1300,CLM,es,HJNB Onda Cinco,,Bucaramanga (sat),7.116667,-73.116667,,1,,8669,266,143,,,,,,37580,,, +1300,PRU,,OAX6P R Comercial Latina,,Tacna (tac),-18,-70.5,,4,,10720,249,143,,,,,,40337,,, +1300,USA,,WMTM,,Moultrie (GA),31.17,-83.747222,,0.06,,7337,290,143,,,,,,42404,,, +1300,USA,en,KSET,,Lumberton (TX),30.232222,-94.211389,,0.27,,8069,297,143,,,,,,39344,,, +1300,USA,es,KWRU,,Fresno (CA),36.770556,-119.75,,1,,8841,319,143,,,,99965,,39753,,, +1300,CLM,es,HJLD Oxigeno,,Pereira (ris),4.816667,-75.716667,,1,,9048,267,144,,,,,,37543,,, +1300,CTR,,TILC La Fuente Musical,,Cartago (ctg),9.866667,-83.916667,,1,,9166,276,144,,0500-1300,1234567,,,40580,,, +1300,MEX,es,XEAWL-AM Hidalgo R,,Jacala (hid),21.01235,-99.195022,,1,,9185,295,144,,,,,,43747,,, +1300,NCG,,R Stereo Cristiana,,Jalapa (nsg),13.916667,-86.133333,,1,,8962,281,144,,,,,,33700015,,, +1300,NCG,es,YNR Canal 130 AM,,Managua (mng),12.065833,-86.2075,,1,,9128,280,144,,1200-2330,1234567,,,45207,,, +1300,SLV,es,YSKG,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,31100009,,, +1300,USA,,WBSA,,Boaz (AL),34.213889,-86.152778,,0.037,,7239,294,144,,,,,,40907,,, +1300,USA,en,WKCY,,Harrisonburg (VA),38.463889,-78.806944,,0.005,,6441,293,144,,,,,,41979,,, +1300,USA,xx,KAZN,,Pasadena (N) (CA),34.160556,-118.079444,,1,,9014,316,144,,,,9,,37999,,, +1300,B,pt,ZYL339 Rdio Eldorado,,Sete Lagoas (MG),-19.466667,-44.25,,1,,9343,227,145,,,,,,36902124,,, +1300,MEX,es,XEKW-AM La Guadalupana,,Morelia/Col. Ventura Puente (mic),19.690225,-101.181278,,1,,9426,296,145,,,,,,44278,,, +1300,PRG,es,ZP10 R Fe y Alegra,,Villa Hayes (asu),-25.077247,-57.553506,,2.5,,10584,235,145,,,,,,45505,,, +1300,USA,,KCMY,,Carson City (NV),39.166389,-119.726944,,0.5,,8610,320,145,,,,3,,39172,,, +1300,MEX,es,XEP-AM R 13,,Ciudad Jurez (chi),31.716286,-106.440439,,0.5,,8646,307,146,,,,,,44523,,, +1300,MEX,es,XEXV-AM La Z,,San Francisco del Rincn (gua),20.988561,-101.809847,,0.75,,9348,297,146,,,,,,45070,,, +1300,USA,,WKXM,,Winfield (AL),33.931111,-87.81,,0.03,,7365,295,146,,,,,,42099,,, +1300,B,pt,ZYK535 Rdio Universo,,So Bernardo do Campo (SP),-23.607917,-46.437264,,1,,9856,227,147,,,,993,,36902129,,, +1300,CHL,,CB130 R Tierra,,Santiago (RM),-33.5,-70.566667,,5,,12084,239,147,,1300-0100,1234567,,,35729,,, +1300,EQA,,HCDC2 R Cenit 1-300,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,????-0400,1234567,73,,36849,,, +1300,PRU,,OAZ8O R Nuevo Mundo,,Pucallpa (uca),-8.383333,-74.533333,,1,,10131,258,147,,,,,,40379,,, +1300,USA,,KROP,,Brawley (CA),33.011111,-115.521111,,0.5,,8999,314,147,,,,,,39283,,, +1300,BOL,,R Coronel Eduardo Avaroa,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,0930-0230,1234567,,,52016,,, +1300,BOL,,R Sol Poder de Dios,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1000-0100,1234567,,,52017,,, +1300,MEX,es,XEJL-AM La 130 La Ley,,Guamuchil (sin),25.470506,-108.102897,,0.5,,9310,304,148,,,,,,44213,,, +1300,USA,,WTLS,,Tallassee (AL),32.510833,-85.8925,,0.018,,7362,293,148,,,,,,43169,,, +1300,BOL,,CP82 R Fides,,Potosi (pts),-19.566667,-65.766667,,1,,10564,244,149,,1000-0100,123456,,,36717,,, +1300,BOL,,CP82 R Fides,,Potosi (pts),-19.566667,-65.766667,,1,,10564,244,149,,1100-0500,......7,,,36717,,, +1300,CHL,,CD130 R Chilena Solonoticias,,Valdivia (LL),-39.816667,-73.25,,5,,12774,236,149,,1000-0430,1234567,,,35869,,, +1300,EQA,,HCRU1,,Santo Domingo de los Colorados (pic),-0.283333,-78.466667,,0.5,,9683,266,149,,,,,,37116,,, +1300,PRU,,OAX4M R Comas,,Comas (lim),-11.9,-77.416667,,1,,10634,258,149,,,,,,40309,,, +1300,PRU,,OAZ4B Andina,,Huancayo (jun),-12.116667,-75.216667,,1,,10506,256,149,,,,,,40365,,, +1300,USA,,KKUB,,Brownfield (TX),33.180278,-102.246944,,0.12,,8282,305,149,,,,,,38761,,, +1300,USA,en,WPIX910,,Jefferson City (MO),38.583333,-92.166667,,0.01,,7242,302,149,,,,,,20010665,,, +1300,B,pt,ZYI210 Rdio Novo Tempo,,Afonso Cludio (ES),-20.095094,-41.119742,,0.25,,9252,224,151,,,,,,36902126,,, +1300,PRU,,OAX3O R Huascaran,,Independencia (anc),-9.495339,-77.531375,,0.5,,10430,259,151,,,,,,40295,,, +1300,USA,,KSYB,,Shreveport (LA),32.53,-93.804444,,0.03,,7848,298,151,,,,,,39445,,, +1300,BOL,,CP51 R Loyola,,Sucre (cqs),-19.016667,-65.283333,,0.5,,10484,244,152,,0900-2400,123456,,,36703,,, +1300,BOL,,CP51 R Loyola,,Sucre (cqs),-19.016667,-65.283333,,0.5,,10484,244,152,,1100-2200,......7,,,36703,,, +1300,B,,ZYK633 R Onda Viva,,Presidente Prudente (SP),-22.133333,-51.383333,,0.25,,9970,232,153,,,,,,46515,,, +1300,B,pt,ZYK347 Rdio Maratan AM,,Santana do Livramento (RS),-30.866667,-55.506944,,0.5,,11010,230,153,,,,,,36902125,,, +1300,B,pt,ZYK649 Rdio Cultura,,Santo Anastcio (SP),-21.970889,-51.640725,,0.25,,9969,232,153,,,,,,36902128,,, +1300,PRU,,OAX7P R Misercordia,,Cusco (cus),-13.516667,-72,,0.35,,10419,253,153,,,,,,40349,,, +1300,USA,,KLAR,,Laredo (TX),27.529167,-99.520833,,0.08,,8625,299,153,,,,,,38772,,, +1300,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010671,,, +1300,B,pt,ZYJ278 Rdio CBN,,Ponta Grossa (PR),-25.051667,-50.118056,,0.25,,10182,229,154,,,,,,36902122,,, +1300,B,pt,ZYJ819 Rdio Alvorada,,Santa Ceclia (SC),-26.969722,-50.405278,,0.25,,10379,228,154,,,,,,36902130,,, +1300,USA,,KPMO,i,Mendocino (CA),39.3425,-123.780833,,0.077,,8765,323,154,,,,341,,39146,,, +1300,B,pt,ZYK337 Rdio Regional AM,,Santo Cristo (RS),-27.826667,-54.655556,,0.25,,10682,231,155,,,,,,36902120,,, +1300,BOL,,CP168 R Chichas,,Siete Suyos (pts),-20.959722,-66.306944,,0.3,,10722,244,155,,1100-0400,1234567,,,36663,,, +1300,USA,,KACI,,The Dalles (OR),45.581667,-121.131389,,0.013,,8055,324,156,,,,,,37912,,, +1300,USA,en,WPUI734,,Salt Lake City (UT),40.48,-111.910967,,0.01,,8128,316,158,,,,,,20010662,,, +1300,USA,en,WPUI734,,Salt Lake City (UT),40.6305,-111.811014,,0.01,,8110,316,158,,,,,,20010663,,, +1300,USA,en,WQIH551,,Helper (UT),39.711008,-110.877675,,0.01,,8149,314,158,,,,,,20010667,,, +1300,USA,en,WQIH551,,Spanish Fork (UT),40.09435,-111.596833,,0.01,,8149,315,158,,,,,,20010668,,, +1300,USA,en,WQII297,,Farmington (UT),40.990833,-111.911031,,0.01,,8081,316,158,,,,,,20010672,,, +1300,USA,en,WQII297,,Salt Lake City (UT),40.84435,-111.944303,,0.01,,8096,316,158,,,,,,20010666,,, +1300,CHL,,CD130 R Cabo de Homos,,Puerto Williams (MA),-54.933333,-67.616667,,1,,13709,221,159,,1100-0500,1234567,,,35870,,, +1300,USA,en,WQDV998,,Davis/53 Russell Blvd (CA),38.547194,-121.743333,,0.01,,8757,321,163,,,,,,20010664,,, +1300,USA,en,WQGT278,,Stockton (CA),37.933333,-121.266667,,0.01,,8796,321,163,,,,,,20010670,,, +1300,USA,en,KG2XAJ,,San Antonio (TX),29.446667,-98.608056,,0.0001,,8402,300,181,,,,,,20010669,,, +1302,GRC,el,Kostas o Security,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400016,,, +1304,INS,id,RKPD Nganjuk,,Nganjuk (JI-ngj),-7.6,111.916667,,0.5,,11730,82,156,,,,,,35400079,,, +1305,E,es,RNE R 5,,Ourense/Pereiro (RNE) (GAL-OU),42.355867,-7.8021,,25,,1521,230,58,,0000-2400,1234567,995,,1265,,, +1305,E,es,RNE R 5,,Bilbao/Santo Domingo (RNE5) (PVA-BI),43.271058,-2.907928,,10,,1203,219,59,,0000-2400,1234567,,,1263,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0625-0630,12345..,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0650-0700,12345..,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0800-0815,1234567,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1208-1300,12345..,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1230-1300,.....67,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1400-1415,12345..,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0815-1208,12345..,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0815-1230,.....67,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1300-1400,12345..,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1300-2300,.....67,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1415-2300,12345..,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0630-0650,12345..,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0700-0800,12345..,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0711-0800,.....67,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,2300-0625,1234..7,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,2300-0710,....56.,,,1264,,, +1305,E,pt,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0710-0711,.....67,,,1264,,, +1305,E,es,RNE R 5,,Ciudad Real/Almagro (RNE) (CAM-CR),38.866503,-3.721228,,10,,1667,212,64,,0000-2400,1234567,0,,1262,,, +1305,G,en,Premier Christian R,,London/Chingford (EN-ESX),51.650528,-0.009222,,0.5,,443,266,64,,0000-2400,1234567,1,,1268,,, +1305,G,en,Premier Christian R,,London/North Looe (EN-SUR),51.335083,-0.237194,,0.5,,466,262,65,,0000-2400,1234567,,,1269,,, +1305,G,en,Gold,,Christchurch (WA-NEW),51.601611,-2.935361,,0.2,,644,269,70,,0000-2400,1234567,0,,1266,,, +1305,G,en,Magic AM,,Barnsley/Ardsley (EN-SYK),53.55075,-1.412694,,0.15,,549,290,71,,0000-2400,1234567,9986,,1267,,, +1305,GRC,el,Simmetohiko Rfono,,Patra (wgr-akh),38.25,21.75,,1,,1946,136,76,,,,,,3400028,,, +1305,ISR,he,Galei Zahal,,Rosh Pina (hzf),32.955556,35.556111,,10,,3161,121,79,,0000-2400,1234567,7,,46842,,, +1305,EGY,ar,ERTU Al-Barnameg al-Aam,,Asyut (ast),27.270467,31.244517,,10,,3449,134,82,,0300-2400,1234567,,,1843,,, +1305,IRN,fa,IRIB R Bushehr,,Bushehr (bus),28.938939,50.958428,,50,,4459,108,85,,,,87,,1271,,, +1305,IRQ,,Al-Mustaqbal R,,Baghdad (bgh),33.35,44.383333,,0.5,,3674,110,97,,0600-1700,1234567,,,1272,,, +1305,AFG,,R Kandahar,,Kandahar (kan),31.666667,65.666667,,7,,5230,92,101,,0230-0430,1234567,,,46812,,, +1305,AFG,,R Kandahar,,Kandahar (kan),31.666667,65.666667,,7,,5230,92,101,,1130-1430,1234567,,,46812,,, +1305,KEN,,KBC English Service,,Wajir (nea),1.849858,40.101589,,50,,6402,139,104,,0200-2110,1234567,4,,2506,,, +1305,IND,,AIR West,,Parbhani (MH),19.324167,76.743333,,20,,6989,93,114,,0020-0432,1234567,29,,50397,,, +1305,IND,,AIR West,,Parbhani (MH),19.324167,76.743333,,20,,6989,93,114,,0700-0830,1234567,29,,50397,,, +1305,IND,,AIR West,,Parbhani (MH),19.324167,76.743333,,20,,6989,93,114,,1200-1741,1234567,29,,50397,,, +1305,CHN,zh,CNR 2,,Xining/QHTS560 (QH),36.702778,101.749444,,10,,7205,62,119,,2100-1602,1234567,,,36200319,,, +1305,CHN,zh,CNR 2,,Saihan Tal/NMTS731 (NM),42.724,112.635611,,10,,7320,51,120,,2100-1602,1234567,,,36200320,,, +1305,CHN,zh,Manzhouli Shi RGD,,Manzhouli/NMTS717 (NM),49.578056,117.497222,,1,,6980,43,127,,,,,,36201035,,, +1305,CHN,mn,Nei Menggu RGD Mongyol,,Zhengxiangbai Qi/NMTS851 (NM),42.313111,115.014194,,2,,7480,49,129,,2150-1605,1234567,,,36201314,,, +1305,CHN,zh,CNR 2,,Baotou (NM),40.666667,109.933333,,1,,7349,54,130,,2100-1602,1234567,,,36200194,,, +1305,CHN,zh,CNR 2,,Damao/NMTS863 (NM),41.712778,110.4075,,1,,7286,53,130,,2100-1602,1234567,,,36201307,,, +1305,CHN,zh,CNR 2,,Dong Wuzhumuqin Qi/NMTS732 (NM),45.493278,116.974444,,1,,7305,46,130,,2100-1602,1234567,,,36201308,,, +1305,CHN,bo,CNR 11,,Hezuo (GS),34.971111,102.908889,,1,,7418,62,131,,2155-1605,1234567,,,36201310,,, +1305,CHN,zh,CNR 2,,Lanzhou/GSTS535 (GS),36.086389,103.846111,,1,,7382,61,131,,2100-1602,1234567,,,50395,,, +1305,CHN,zh,CNR 2,,Zalantun/NMTS696 (NM),48,122.741667,,1,,7357,41,131,,2100-1602,1234567,,,36200773,,, +1305,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,unknown (NM),34.95,104.5,,1,,7515,61,132,,,,,,36201312,,, +1305,CHN,zh,CNR 1,,Huining (GS),35.694444,105.05,,1,,7486,60,132,,2025-1805,1234567,,,36201311,,, +1305,CHN,zh,CNR 2,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,2100-1602,1234567,,,36200196,,, +1305,KOR,,HLSV KBS 1 R,,Uljin (gsb),36.971667,129.406667,,10,,8676,43,133,,0000-2400,1234567,,,50399,,, +1305,THA,th,Yaan Kraw 1305,,Bangkok/Samsen Road (bmp),13.793661,100.519792,,10,,9078,78,134,,0000-2400,1234567,,,50406,,, +1305,CHN,zh,CNR 2,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,2100-1602,1234567,,,36201309,,, +1305,CHN,zh,CNR 2,,Mudanjiang (HL),44.588889,129.585278,,1,,7968,39,137,,2100-1602,1234567,,,36200322,,, +1305,CHN,,Jinan RGD Wenxue,,Jinan/Daqiao (SD),36.791389,117.015556,,1,,8069,52,138,,????-1700,1234567,,,50394,,, +1305,CHN,zh,CNR 2,,Suifenhe (HL),44.4,131.166667,,1,,8053,38,138,,2100-1602,1234567,,,36201313,,, +1305,CHN,zh,CNR 2,,Hangzhou/ZJTS4 (ZJ),30.266667,120.133333,,1,,8826,54,143,,2100-1602,1234567,,,36200195,,, +1305,CHN,zh,CNR 2,,Jinhua (ZJ),29.108056,119.586111,,1,,8902,55,143,,2100-1602,1234567,,,36200253,,, +1305,CHN,zh,CNR 2,,Shaoxing (ZJ),30.060556,120.601389,,1,,8871,53,143,,2100-1602,1234567,,,36200197,,, +1305,CHN,zh,CNR 2,,Xinchang/Kexia Cun (ZJ),29.503889,120.872306,,1,,8936,53,143,,2100-1602,1234567,,,36200198,,, +1305,INS,id,R Syaibah,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,55,,35400081,,, +1305,AUS,en,5RN ABC National,,Renmark/Loxton (Berri) (SA),-34.265356,140.614089,,2,,15896,80,163,,0000-2400,1234567,,,50393,,, +1305,NZL,,4XD R Dunedin,,Dunedin/Highcliff (OTA),-45.884167,170.588333,,2.5,,18673,65,172,,,,,,50400,,, +1310,CAN,en,CIWW,,Ottawa (ON),45.26,-75.783889,,50,,5753,297,98,,,,1,,36136,,, +1310,USA,en,WLOB,,Portland (ME),43.689444,-70.334722,,5,,5525,293,105,,,,0,,42200,,, +1310,USA,,WICH,,Norwich (CT),41.552778,-72.076111,,5,,5786,292,108,,,,,,41725,,, +1310,USA,en,WCCW,,Traverse City (D) (MI),44.677222,-85.665556,,15,,6380,302,109,,,,,,20012569,,, +1310,USA,en,WCCW,,Traverse City (N) (MI),44.676944,-85.665556,,7.5,,6380,302,112,,,,997,,40969,,, +1310,USA,,WDTW,,Dearborn (MI),42.263889,-83.253889,,5,,6423,299,114,,,,998,,43460,,, +1310,USA,,WGH,,Newport News (VA),37.045278,-76.448333,,5,,6401,290,114,,,,,,41512,,, +1310,USA,es,WORC,,Worcester (MA),42.221944,-71.817222,,1,,5721,292,114,,,,0,,42619,,, +1310,MRT,xx,Martinique 1re,,Fort-de-France (972),14.627122,-60.988586,,20,,7192,261,116,,,,,,33600001,,, +1310,USA,,WSLW,,White Sulphur Springs (WV),37.804722,-80.350833,,5,,6589,293,116,,1200-2400,1234567,,,43022,,, +1310,USA,,WIBA,,Madison (WI),42.999444,-89.429722,,5,,6727,303,117,,,,999,,41714,,, +1310,USA,,WOBM,,Asbury Park (NJ),40.229722,-74.090833,,1,,6010,292,117,,,,9949,,40648,,, +1310,USA,,WRSB,,Canandaigua (NY),42.888889,-77.319167,,1,,6017,296,117,,,,,,42916,,, +1310,USA,,KNOX,,Grand Forks (ND),47.844167,-97.025,,5,,6750,312,118,,,,2,,39010,,, +1310,USA,,WTLB,,Utica (NY),43.056667,-75.278333,,0.5,,5879,295,119,,,,,,43163,,, +1310,USA,,WDCT,,Fairfax (VA),38.852222,-77.315833,,0.5,,6318,292,123,,,,,,41135,,, +1310,USA,,WTIK,,Durham (NC),36.025,-78.902222,,1,,6637,291,123,,,,,,43140,,, +1310,USA,,WDPN,,Alliance (OH),40.926111,-81.128056,,0.48,,6397,297,124,,,,,,41202,,, +1310,USA,,WEMG,,Camden (NJ),39.957778,-75.115,,0.25,,6095,292,124,,,,,,41298,,, +1310,USA,,WTLC,,Indianapolis (IN),39.718889,-86.175833,,1,,6796,299,125,,,,,,43164,,, +1310,VEN,es,YVSM RNV Canal Informativo,,Barcelona (azg),10.15,-64.666667,,10,,7830,261,125,,,,13,,2064,,, +1310,USA,,WISE,,Asheville (NC),35.619167,-82.5725,,1,,6901,293,126,,,,,,41804,,, +1310,USA,,WTTL,,Madisonville (KY),37.336667,-87.544722,,1.5,,7070,298,126,,,,,,43225,,, +1310,USA,,WOCV,,Oneida (TN),36.500833,-84.49,,1,,6950,295,127,,,,,,42562,,, +1310,USA,,WXMC,,Parsippany-Troy Hill (NJ),40.864167,-74.351667,,0.088,,5980,292,127,,,,,,43480,,, +1310,USA,,KMBS,,West Monroe (LA),32.483889,-92.152778,,5,,7752,297,128,,,,,,38886,,, +1310,VEN,,YVZX,,Maturin (mgs),9.816667,-63.066667,,5,,7752,260,128,,,,,,45491,,, +1310,USA,,WNAE,,Warren (PA),41.813889,-79.167778,,0.094,,6209,296,129,,,,,,42423,,, +1310,USA,,WTZN,,Troy (PA),41.780833,-76.819167,,0.072,,6067,295,129,,,,,,43246,,, +1310,USA,,KOKX,,Keokuk (IA),40.380556,-91.3525,,0.5,,7047,302,130,,,,,,39079,,, +1310,USA,,KTCK,,Dallas (TX),32.944722,-96.940278,,5,,7998,301,130,,,,,,39462,,, +1310,USA,,WDXI,,Jackson (TN),35.663889,-88.822222,,1,,7284,297,130,,,,,,41225,,, +1310,USA,,WBFD,,Bedford (PA),40.043611,-78.503056,,0.085,,6302,294,131,,,,,,40839,,, +1310,USA,en,KGLB,,St. Peter (MN),44.778056,-94.127778,,0.27,,6846,307,131,,,,,,39222,,, +1310,USA,es,WGSP,,Charlotte (NC),35.256389,-80.864444,,0.24,,6822,292,131,,,,,,41567,,, +1310,USA,es,WRVP,,Mount Kisco (NY),41.193611,-73.739444,,0.033,,5917,292,131,,,,,,43299,,, +1310,USA,,KEIN,,Great Falls (MT),47.522222,-111.388333,,1,,7465,320,132,,,,1,,38318,,, +1310,USA,,KZRG,,Joplin (MO),37.1175,-94.544722,,1,,7502,302,132,,,,,,39050,,, +1310,PNR,es,R Mara,,Juan Daz (pnm),9.026069,-79.431433,,12,,8933,272,133,,,,2,,52343,,, +1310,USA,,KBOK,,Malvern (AR),34.373611,-92.831111,,1,,7633,299,133,,,,,,38075,,, +1310,USA,,KDLS,,Perry (IA),41.832778,-94.0375,,0.3,,7081,305,133,,,,,,38280,,, +1310,VEN,,YVTS R Andina Sonido 13-10,,Isnotu (tjl),9.366667,-70.666667,,5,,8306,266,133,,0900-0500,1234567,,,45473,,, +1310,USA,,KLIX,,Twin Falls (ID),42.551667,-114.3675,,2.5,,8052,318,134,,,,3,,38821,,, +1310,CLM,es,HJAK La Voz de la Patria,,Barranquilla (atl),10.944053,-74.836489,,5,,8453,270,135,,,,678,,37327,,, +1310,CLM,es,HJTQ,,Ccuta (nsa),7.816667,-72.5,,5,,8566,266,135,,,,,,37649,,, +1310,USA,,KFKA,,Greeley (CO),40.365556,-104.732222,,1,,7781,311,135,,,,5,,38399,,, +1310,USA,,WAUC,,Wauchula (FL),27.53,-81.818889,,0.5,,7513,286,135,,,,,,40768,,, +1310,B,pt,ZYH602 Rdio Progresso de Juazeiro,,Juazeiro do Norte (CE),-7.201339,-39.327514,,1,,7890,229,136,,,,,,36902140,,, +1310,CLM,es,HJDG Caracol,,Montera (cor),8.816667,-75.816667,,5,,8705,269,136,,,,998,,37388,,, +1310,EQA,,HCGB R Nacional Espejo,,Quito (pic),-0.166667,-78.466667,,10,,9673,266,136,,,,15,,36948,,, +1310,USA,,KMKY,i,Oakland (CA),37.824167,-122.319444,,5,,8852,321,136,,,,0,,38913,,, +1310,VEN,es,YVSL RNV Canal Informativo,,Guri (blv),7.65,-62.833333,,1,,7927,258,136,,,,,,51696,,, +1310,B,pt,ZYI691 Rdio Cidade Esperana,,Esperana (PB),-7.027961,-35.863844,,0.5,,7699,226,137,,,,,,36902146,,, +1310,CLM,es,HJJZ Aviva 2,,Bogot D. C. (bdc),4.7,-74.166667,,5,,8952,265,137,,,,1,,37520,,, +1310,CLM,es,HJLM,,Santa Brbara (ant),5.866667,-75.566667,,5,,8945,267,137,,,,,,37550,,, +1310,CLM,es,HJWD Micrfono Civico,,Palermo (hui),2.866667,-75.45,,5,,9201,265,137,,,,13,,2175,,, +1310,DOM,,HIMH R Real,,Concepcin de La Vega (veg),19.216667,-70.516667,,0.25,,7449,272,137,,1100-0400,1234567,,,37275,,, +1310,NCG,,YNSC R San Cristbal,,Chinandega (cnd),12.645081,-87.125272,,5,,9140,281,137,,1000-0200,1234567,,,45194,,, +1310,B,pt,ZYL359 Rdio Montanheza,,Vazante (MG),-17.997794,-46.888844,,5,,9336,230,138,,,,,,36902144,,, +1310,BOL,,CP68 R San Rafael,,Cochabamba (cbb),-17.366667,-66.166667,,10,,10390,246,138,,1100-0200,1234567,,,36712,,, +1310,CUB,es,R Enciclopedia,,Nueva Gerona (ij),21.861583,-82.805919,,1,,8055,283,138,,,,,,36623,,, +1310,MEX,es,XEHY-AM Stereo Joya,,Villa Corregidora (que),20.554322,-100.422319,,5,,9302,296,138,,,,,,44152,,, +1310,USA,,WDKD,,Kingstree (SC),33.703333,-79.816111,,0.06,,6879,290,138,,,,,,41169,,, +1310,B,pt,ZYH656 Rdio Liberdade,,Boa Viagem/Fazenda Poo d'Agua (CE),-5.087117,-39.734167,,0.25,,7703,230,140,,,,,,36902137,,, +1310,EQA,,HCRF2,,Babahoyo (rio),-1.8,-79.516667,,5,,9888,266,140,,,,,,37077,,, +1310,USA,,KNPT,,Newport (OR),44.627778,-123.9875,,1,,8258,326,140,,,,,,39011,,, +1310,USA,,WDOC,,Prestonsburg (KY),37.695833,-82.756667,,0.025,,6748,295,140,,,,,,41193,,, +1310,USA,,WYND,,Deland (FL),28.999167,-81.298333,,0.115,,7357,287,140,,,,,,43533,,, +1310,USA,,KGMT,,Fairbury (NE),40.116111,-97.151389,,0.095,,7397,306,141,,,,,,38495,,, +1310,B,pt,ZYH426 Rdio Mazago,,Mazago (AP),-0.11945,-51.290903,,0.25,,7888,243,142,,,,4,,36902135,,, +1310,USA,,KFVR,,Crescent City (CA),41.759722,-124.163611,,1,,8544,324,142,,,,,,38440,,, +1310,B,pt,ZYK596 Rdio Difusora Itpolis,,Itpolis (SP),-21.588156,-48.843558,,2,,9784,230,143,,,,,,36902134,,, +1310,CLM,es,HJIR RCN,,Apartado (ant),7.866667,-76.666667,,1,,8846,269,143,,,,,,37497,,, +1310,HND,,HRLR,,Juticalpa (ola),14.683333,-86.25,,1,,8903,281,143,,,,,,37795,,, +1310,USA,,KKNS,,Corrales (NM),35.2,-106.599722,,0.5,,8340,309,143,,,,,,38736,,, +1310,USA,,KYUL,,Scott City (KS),38.526389,-100.911667,,0.147,,7740,307,143,,,,,,38400,,, +1310,GTM,,TGAN R LV de los Altos,,Quetzaltenango (qzt),14.866667,-91.466667,,1,,9234,285,144,,1100-0500,1234567,,,40477,,, +1310,HND,,HRGR,,Marcala (lap),14.15,-88.016667,,1,,9068,282,144,,,,,,37759,,, +1310,HND,,HRXX,,San Pedro Sula (cor),15.366667,-87.866667,,1,,8952,283,144,,,,,,37878,,, +1310,USA,,WPBC,,Decatur (GA),33.772778,-84.281944,,0.031,,7158,293,144,,,,,,42649,,, +1310,USA,en,WKZD,,Priceville (AL),34.540278,-86.904167,,0.033,,7259,295,144,,,,,,42759,,, +1310,USA,en,WOKA,,Douglas (GA),31.523333,-82.872778,,0.039,,7252,290,144,,,,,,42580,,, +1310,ARG,,LRA42 R Nacional de Gualeguachu,,Gualeguaychu (er),-33.012906,-58.582886,,5,,11370,231,145,,0853-0303,1234567,,,39953,,, +1310,B,pt,ZYJ684 Tropical AM,,Porto Velho (RO),-8.776644,-63.882433,,1,,9470,249,145,,,,,,36902138,,, +1310,MEX,es,XEBTS-AM R.Bahia Tortugas,,Bahia Tortugas (bcs),27.636944,-114.823611,,1,,9472,311,145,,,,,,43790,,, +1310,MEX,es,XEGRT-AM Soy Guerrero,,Taxco de Alarcn (gue),18.567422,-99.608231,,1,,9429,294,145,,,,,,44081,,, +1310,MEX,es,XEHIT-AM R Felicidad,,Puebla (pue),19.035992,-98.27265,,1,,9304,293,145,,,,,,44119,,, +1310,MEX,es,XETIA-AM R Vital,,Tonal (jal),20.665389,-103.248772,,1,,9464,298,145,,,,,,44824,,, +1310,USA,,KIHP,,Mesa (AZ),33.439722,-111.835833,,0.5,,8774,311,146,,,,4,,39777,,, +1310,USA,,WJUS,,Marion (AL),32.635833,-87.302222,,0.033,,7440,294,146,,,,,,41939,,, +1310,USA,,WPLV,,West Point (GA),32.896667,-85.156667,,0.025,,7284,293,146,,,,,,42708,,, +1310,USA,en,KAHL,,San Antonio (TX),29.414722,-98.343333,,0.28,,8389,300,146,,,,,,39829,,, +1310,EQA,,HCCP3 La Voz de El,, (oro),-3.283333,-79.783333,,1,,10036,265,147,,,,,,36884,,, +1310,USA,,WHEP,,Foley (AL),30.443889,-87.681111,,0.043,,7647,293,147,,,,,,41625,,, +1310,B,pt,ZYH454 Rdio Bahiana,,Ilhus (BA),-14.812161,-39.036694,,0.25,,8628,225,148,,,,,,36902132,,, +1310,USA,,KZIP,,Amarillo (TX),35.183889,-101.969722,,0.088,,8090,306,148,,,,,,39891,,, +1310,USA,es,KZXR,,Prosser (WA),46.234167,-119.813611,,0.066,,7940,324,148,,,,997,,39914,,, +1310,ARG,es,LRG379 R.Dr. Gregoria lvarez,,Piedra del guila (nq),-40.033333,-70.066667,,5,,12613,234,149,,0000-2400,1234567,,,39995,,, +1310,B,pt,ZYK305 Rdio Sarand AM,,Sarandi (RS),-27.945833,-52.911111,,1,,10601,230,149,,,,,,36902142,,, +1310,MEX,es,XEAM-AM La M Grande,,Matamoros (tam),25.896092,-97.532033,,0.25,,8649,297,149,,,,,,43716,,, +1310,MEX,es,XEFH-AM,,Agua Prieta (son),31.293056,-109.533889,,0.25,,8852,309,149,,,,,,44007,,, +1310,MEX,es,XELPZ-AM,,La Paz (bcs),24.161389,-110.345556,,0.5,,9556,305,149,,,,,,44320,,, +1310,MEX,es,XERU-AM R.Universidad,,Chihuahua (chi),28.588917,-106.107942,,0.25,,8912,305,149,,,,,,44717,,, +1310,MEX,es,XEVB-AM Mujer,,Monterrey (nvl),25.684761,-100.316317,,0.25,,8837,299,149,,,,,,44950,,, +1310,PRU,es,OAU6N R Libertad MCV,,Arequipa (are),-16.4,-71.533333,,1,,10644,251,149,,,,975,,37000027,,, +1310,B,pt,ZYJ274 Rdio Atalaia,,Maring (PR),-23.363611,-51.9,,0.5,,10115,231,150,,,,95,,36902141,,, +1310,MEX,es,XEC-AM R Enciso,,Tijuana/Col. Dvila (bcn),32.520367,-117.021794,,0.25,,9119,315,150,,,,,,43803,,, +1310,USA,,KEZM,,Sulphur (LA),30.224167,-93.378889,,0.05,,8019,297,150,,,,,,38365,,, +1310,B,pt,ZYJ504 Rdio Difusora Coroados,,So Fidlis (RJ),-21.618353,-41.764744,,0.25,,9433,224,151,,,,8,,36902136,,, +1310,ARG,,R Integracion,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51849,,, +1310,B,pt,ZYK371 Rdio Horizonte AM,,Capo da Canoa (RS),-29.811111,-50.056667,,0.5,,10633,227,152,,,,,,36902148,,, +1310,B,pt,ZYK566 Rdio Cultura de Bragana Paulista,,Bragana Paulista (SP),-22.928139,-46.543717,,0.25,,9795,227,152,,,,,,36902139,,, +1310,B,pt,ZYI426 Rdio Pindorama,,Sidrolndia (MS),-20.936461,-54.952189,,0.25,,10053,235,153,,,,,,36902143,,, +1310,USA,es,KIQQ,,Barstow (CA),34.914444,-117.0175,,0.118,,8892,316,153,,,,247,,38631,,, +1310,B,pt,ZYJ801 Sintonia AM,,Ituporanga (SC),-27.424167,-49.603611,,0.25,,10382,227,154,,,,,,36902147,,, +1310,B,pt,ZYK329 Rdio Integraco,,Restinga Seca/Rua Agusto Rossi (RS),-29.813333,-53.375833,,0.25,,10801,229,156,,,,,,36902133,,, +1313,AGL,,RNA Em. Prov. do Hula,,Lubango (hui),-14.916667,13.466667,,1,,7484,173,132,,0500-2300,1234567,,,2507,,, +1314,ROU,de,SRR R Bukarest,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,0820-0830,......7,3,,1917,,, +1314,ROU,de,SRR R Bukarest,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,1200-1300,123456,3,,1917,,, +1314,ROU,ro,SRR Antena Satelor,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,0000-0820,......7,3,,1917,,, +1314,ROU,ro,SRR Antena Satelor,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,0000-1200,123456,3,,1917,,, +1314,ROU,ro,SRR Antena Satelor,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,0830-2400,......7,3,,1917,,, +1314,ROU,ro,SRR Antena Satelor,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,1300-2400,123456,3,,1917,,, +1314,E,es,RNE R 5,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0000-2400,1234567,998,,1277,,, +1314,ARM,,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,0600-0630,1234567,0,,1275,,, +1314,ARM,ar,Voice of Russia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1700-2100,1234567,0,,1275,,, +1314,ARM,az,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1145-1200,1234567,0,,1275,,, +1314,ARM,ku,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1230-1300,1234567,0,,1275,,, +1314,ARM,ku,Voice of Russia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,0500-0600,1234567,0,,1275,,, +1314,ARM,ku,Voice of Russia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1600-1700,1234567,0,,1275,,, +1314,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1300-1500,1234567,0,,1275,,, +1314,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,2100-2230,1234567,0,,1275,,, +1314,ARM,tr,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1200-1215,.....67,0,,1275,,, +1314,ARM,tr,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1200-1215,12345..,0,,1275,,, +1314,ARM,tr,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1215-1230,1234567,0,,1275,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0625-0630,12345..,0,,1276,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0650-0700,12345..,0,,1276,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0800-0815,1234567,0,,1276,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1208-1300,12345..,0,,1276,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1400-1415,12345..,0,,1276,,, +1314,E,es,RNE R 5,,Cuenca/Martinete (RNE) (CAM-CU),40.063153,-2.144075,,10,,1491,209,62,,0000-2400,1234567,997,,1278,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0815-1208,12345..,0,,1276,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0815-1230,.....67,0,,1276,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1300-1400,12345..,0,,1276,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1300-2300,.....67,0,,1276,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1415-2300,12345..,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0630-0650,12345..,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0700-0800,12345..,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0711-0800,.....67,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,2300-0625,1234..7,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,2300-0710,....56.,0,,1276,,, +1314,E,pt,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0710-0711,.....67,0,,1276,,, +1314,ROU,ro,SRR Antena Satelor,,Constanţa/Valu lui Traian (CT),44.169306,28.540178,,14,,1854,110,64,,0000-2400,1234567,9977,,1285,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,0000-1300,.....6.,115,,1280,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1100-1300,1234567,115,,1280,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1800-0500,1234..7,115,,1280,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1800-1300,.....6.,115,,1280,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1800-2400,....5..,115,,1280,,, +1314,GRC,el,ERA Tripolis,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,0500-1100,12345..,115,,1280,,, +1314,GRC,el,ERA Tripolis,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1300-1800,1234567,115,,1280,,, +1314,ROU,ro,SRR R Oltenia-Craiova,,Craiova (DJ),44.304761,23.780692,,1,,1546,117,72,,0000-2400,1234567,999,,1286,,, +1314,G,en,MAR-Merseyside Alternative R,,Mersey area (EN-MER),53.4,-2.9,,0.1,,642,287,73,,????-????,9999999,6,,2800019,,, +1314,IRN,fa,IRIB R Iran,,Ardabil (ard),38.361167,48.255694,,50,,3553,99,76,,0000-2400,1234567,981,,1809,,, +1314,NOR,no,LKB/LLE-2 Bergen Kringkaster,,Erdal (ho),60.448778,5.216861,,0.08,,930,356,77,,0500-0800,.23....,,,6300042,,, +1314,NOR,no,LKB/LLE-2 Bergen Kringkaster,,Erdal (ho),60.448778,5.216861,,0.08,,930,356,77,,0730-1000,.....6.,,,6300042,,, +1314,NOR,no,LKB/LLE-2 Bergen Kringkaster,,Erdal (ho),60.448778,5.216861,,0.08,,930,356,77,,1400-1600,...4...,,,6300042,,, +1314,EGY,ar,ERTU Al-Barnameg al-Aam,,Hurghada (bar),27.26575,33.791806,,10,,3579,130,83,,0300-2400,1234567,,,1844,,, +1314,NIG,,Plateau R,,Jos (plt),9.882439,8.839056,,50,,4701,176,87,,0500-2300,1234567,,,2485,,, +1314,EGY,ar,ERTU Al-Barnameg al-Aam,,Nag Hammadi (qna),25.997358,32.282739,,1,,3623,133,93,,0300-2400,1234567,,,1845,,, +1314,EGY,ar,ERTU Janub Sa'id Misr,,Abu Simbel (asn),22.408472,31.582944,,1,,3941,137,96,,0300-2400,1234567,,,1846,,, +1314,IND,,AIR West,,Bhuj (GJ),23.217222,69.772222,,10,,6189,96,109,,0025-0430,1234567,997,,50419,,, +1314,IND,,AIR West,,Bhuj (GJ),23.217222,69.772222,,10,,6189,96,109,,0630-0930,1234567,997,,50419,,, +1314,IND,,AIR West,,Bhuj (GJ),23.217222,69.772222,,10,,6189,96,109,,1200-1740,1234567,997,,50419,,, +1314,AGL,pt,RNA Em. Prov. de Namibe,,Namibe (nam),-15.208556,12.139928,,10,,7506,174,122,,0500-2200,1234567,,,2508,,, +1314,BGD,,Bangladesh Betar,,Cox's Bazar (cgg),21.421378,92.025122,,10,,7852,80,126,,0545-0845,1234567,,,50411,,, +1314,CHN,,Chongqing RGD Xinwen Pinl,,Chongqing/Daping (CQ),29.547828,106.473139,,15,,8094,64,126,,2050-1800,1234567,,,50414,,, +1314,J,ja,JOUF OBC R Osaka,,Osaka/Sakai-Shi (kns-osk),34.551944,135.528333,,50,,9187,40,127,,0000-2400,1234567,9998,,50429,,, +1314,CHN,,Xiangfan RGD Xinwen,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,2150-1630,1234567,,,50416,,, +1314,CHN,,Yantai RGD News,,Yantai (SD),37.5675,121.360556,,10,,8227,48,129,,2125-1530,1234567,,,50418,,, +1314,THA,,Mor. Kor.,,Khon Kaen/Maliwan Rd (kkn),16.440833,102.813889,,20,,8999,75,131,,2100-1705,1234567,,,50433,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Huaiyin (JS),33.583333,119.016667,,10,,8464,52,132,,,,,,36200809,,, +1314,IND,,AIR Vividh Bharati,,Cuttack B (OR),20.482506,85.874567,,1,,7515,85,132,,0025-0435,1234567,,,50420,,, +1314,IND,,AIR Vividh Bharati,,Cuttack B (OR),20.482506,85.874567,,1,,7515,85,132,,0900-1200,1234567,,,50420,,, +1314,IND,,AIR Vividh Bharati,,Cuttack B (OR),20.482506,85.874567,,1,,7515,85,132,,1245-1730,1234567,,,50420,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Suzhou (JS),31.412778,120.693056,,10,,8752,52,133,,2059-1600,1234567,,,50415,,, +1314,KOR,ko,HLCM CBS,,Jeonbuk/Jeonju (jeb),35.927222,126.91,,10,,8655,46,133,,2000-1600,1234567,,,50430,,, +1314,TWN,,Tien Sheng Kuangpo Tientai,,Chunan (ML),24.7025,120.885,,10,,9378,56,135,,,,,,50434,,, +1314,CHN,,Chongqing RGD Xinwen Pinl,,Fengjie (CQ),31.05,109.516667,,1,,8148,61,138,,,,,,36200317,,, +1314,CHN,,Chongqing RGD Xinwen Pinl,,Qijiang (CQ),29.033333,106.65,,1,,8149,64,138,,,,,,36200318,,, +1314,PHL,,DWXI-AM,,Novalete (cav),14.438028,120.879117,,10,,10324,62,138,,2030-1610,1234567,9952,,50432,,, +1314,TWN,,Ching-Cha Kuangpo Tientai,,Ma-Tou (TN),23.188889,120.265278,,5,,9482,58,138,,,,,,50435,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Dongtai (JS),32.833333,120.316667,,1,,8602,52,142,,,,,,50413,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,1,,8471,52,142,,,,,,36201034,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,1,,8589,53,142,,,,,,36200314,,, +1314,CHN,,Xianning RGD,,Xianning (HU),29.866667,114.283333,,1,,8532,58,142,,,,,,50417,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Zhangjiagang (JS),31.866667,120.533333,,1,,8702,52,143,,,,,,50412,,, +1314,INS,id,R Suara Sion Perdana,,Karanganyar (JT-kar),-7.633333,109.566667,,5,,11574,84,145,,,,,,50425,,, +1314,INS,id,R Suara Al Falah,,Tanjung Balai (SU-tba),2.966667,99.8,,1,,9978,86,147,,,,,,50428,,, +1314,J,ja,OBC R Osaka,,Kyoto (kns-kyo),34.9825,135.787222,,0.3,,9156,40,149,,,,,,31400013,,, +1314,INS,id,R Citra Kemang,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,0100-????,1234567,60,,50408,,, +1314,INS,id,PM3BGC R Mutiara Gegana,,Bandung (JB-ban),-6.95,107.566667,,1,,11378,85,152,,0100-????,1234567,81,,50421,,, +1314,INS,id,R.GSM-Gema Sritanjung Mediatama,,Brebes (JT-bre),-7.116667,110.683333,,1,,11604,83,152,,,,,,50423,,, +1314,AUS,,3BT Sport 927,,Ballarat (VIC),-37.539667,143.77875,,5,,16351,81,161,,0000-2400,1234567,,,50409,,, +1314,AUS,,2WL/2KY Racing R,,Wollongong/Windang (NSW),-34.517194,150.873625,,5,,16591,69,162,,0000-2400,1234567,12,,50410,,, +1314,NZL,,Southern Star/RNZ Parliament,,Invercargill/Dacre (STL),-46.320278,168.621389,,5,,18577,70,168,,,,,,32500008,,, +1314,NZL,en,RNZ National,,Gisborne/Wainui (GIS),-38.693889,178.062778,,2,,18390,27,172,,0000-2400,1234567,,,50431,,, +1317,INS,id,Telstar R,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,50436,,, +1320,CAN,xx,CJMR,,Oakville (ON),43.458056,-79.754722,,20,,6123,298,105,,,,0,,36187,,, +1320,USA,,WARL,,Attleboro (MA),41.959167,-71.326944,,5,,5709,291,107,,,,,,40741,,, +1320,USA,,WDER,,Derry (NH),42.866389,-71.287222,,1,,5642,292,113,,,,999,,41152,,, +1320,USA,,WATR,,Waterbury (CT),41.536667,-73.031111,,1,,5847,292,115,,,,,,40760,,, +1320,USA,en,WJAS,,Pittsburgh (PA),40.479444,-79.903333,,3.3,,6355,295,115,,,,,,41838,,, +1320,USA,,KOZY,,Grand Rapids (MN),47.172778,-93.452778,,5,,6618,309,116,,,,999,,39126,,, +1320,USA,en,WCOG,,Greensboro (NC),36.150278,-79.913333,,5,,6691,292,117,,,,,,41055,,, +1320,CAN,zh,CHMB,,Vancouver (BC),49.165,-123.0425,,50,,7784,328,118,,,,996,,36075,,, +1320,USA,,WILS,,Lansing (MI),42.621944,-84.643889,,1.9,,6478,300,119,,,,1,,41757,,, +1320,USA,,KELO,,Sioux Falls (SD),43.488056,-96.637222,,5,,7087,308,121,,,,3,,38325,,, +1320,USA,,WOBL,,Oberlin (OH),41.268056,-82.211111,,1,,6436,297,121,,,,,,42553,,, +1320,USA,,WGET,,Gettysburg (PA),39.841667,-77.223611,,0.5,,6237,293,122,,,,,,41497,,, +1320,USA,,WISW,,Columbia (SC),34.004444,-81.070833,,2.5,,6935,291,122,,,,,,41812,,, +1320,USA,en,WJNJ,,Jacksonville (FL),30.295,-81.7425,,5,,7280,288,123,,,,999,,41876,,, +1320,USA,,WLQY,,Hollywood (FL),26.031389,-80.278333,,5,,7536,284,125,,,,997,,42222,,, +1320,USA,,WTKZ,,Allentown (PA),40.5925,-75.478333,,0.195,,6071,293,125,,,,,,43161,,, +1320,USA,en,WCVR,,Randolph (VT),43.939167,-72.636944,,0.066,,5652,294,125,,,,,,43447,,, +1320,PTR,es,WSKN,,San Juan (PR),18.383333,-66.066944,,2.3,,7215,268,126,,0000-2400,1234567,998,,43012,,, +1320,USA,,KWHN,,Fort Smith (AR),35.416944,-94.365,,5,,7635,301,126,,,,,,39849,,, +1320,USA,,WFHR,,Wisconsin Rapids (WI),44.415556,-89.835,,0.5,,6638,305,126,,,,,,41382,,, +1320,USA,,WCVG,,Covington (KY),39.045556,-84.508333,,0.5,,6749,297,127,,,,,,41108,,, +1320,USA,,WKAN,,Kankakee (IL),41.135556,-87.819444,,0.5,,6781,301,128,,,,,,41951,,, +1320,USA,en,WGOC,,Kingsport (TN),36.553333,-82.482778,,0.5,,6821,294,128,,,,,,42018,,, +1320,USA,,WAGY,,Forest City (NC),35.355278,-81.881111,,0.5,,6879,292,129,,,,,,20016068,,, +1320,USA,,WDMJ,,Marquette (MI),46.545278,-87.444444,,0.135,,6339,305,129,,,,,,41181,,, +1320,VEN,,YVSG R Colonial,,El Tocuyo (lar),9.8,-69.75,,10,,8205,265,129,,,,,,45456,,, +1320,USA,,KFNZ,,Salt Lake City (UT),40.643333,-111.923333,,5,,8114,316,131,,,,1,,38418,,, +1320,USA,,KHRT,,Minot (ND),48.196667,-101.233333,,0.31,,6932,314,131,,,,1,,38560,,, +1320,DOM,,HIBZ R Centro,,San Juan de la Maguana (jua),18.8,-71.2,,1,,7531,272,132,,1000-0400,1234567,,,37226,,, +1320,MEX,es,XENET-AM R Monitor,,Mxico D.F/La Pradera (dif),19.479439,-99.065428,,20,,9314,294,132,,,,,,43855,,, +1320,USA,,KXYZ,,Houston (TX),29.710833,-95.175,,5,,8173,297,132,,,,,,39835,,, +1320,VEN,,YVWP R Apolo,,Turmero (arg),10.227422,-67.485131,,3,,8014,264,132,,0000-2400,1234567,4,,45481,,, +1320,ABW,,Voz di Aruba,,Oranjestad (arb),12.516667,-70.033333,,2.5,,7989,267,133,,,,,,47115,,, +1320,B,pt,ZYH597 Rdio Regional,,Sobral (CE),-3.734722,-40.316783,,1,,7602,231,133,,,,,,36902161,,, +1320,USA,,KOLT,,Scottsbluff (NE),41.863889,-103.705556,,1,,7597,311,133,,,,,,39083,,, +1320,USA,,WDDV,,Venice (FL),27.105,-82.399722,,1,,7586,287,133,,,,,,40713,,, +1320,CLM,,HJPC,,Esquina Progresso (mag),10.583333,-74.2,,5,,8441,269,134,,,,,,37620,,, +1320,CLM,es,HJLV,,Fundacion (mag),10.516667,-74.183333,,5,,8445,269,134,,,,,,35901675,,, +1320,USA,,KMAQ,,Maquoketa (IA),42.090556,-90.628611,,0.135,,6868,303,134,,,,,,38879,,, +1320,USA,,KNIA,,Knoxville (IA),41.330556,-93.109444,,0.222,,7070,304,134,,,,,,38996,,, +1320,USA,,KSIV,,Clayton (MO),38.607222,-90.353889,,0.27,,7134,300,134,,,,,,39365,,, +1320,USA,,WICO,,Salisbury (MD),38.360833,-75.616667,,0.028,,6247,291,135,,,,,,41727,,, +1320,CLM,es,HJHT,,Guateque (boy),5.016667,-73.466667,,5,,8877,265,136,,,,,,37480,,, +1320,CLM,es,HJQI,,San Andrs (sap),12.551253,-81.717294,,5,,8783,276,136,,,,,,37631,,, +1320,CUB,es,CMGW R 26,,La Jaiba (ma),23.024011,-81.59395,,1,,7876,283,136,,,,77,,31600096,,, +1320,USA,,KCTC,,Sacramento (D) (CA),38.636389,-121.5525,,5,,8740,321,136,,,,9915,,38215,,, +1320,USA,,KCTC,,West Sacramento (N) (CA),38.711667,-121.328889,,5,,8723,321,136,,,,,,20016064,,, +1320,USA,,WTOW,,Washington (NC),35.535278,-77.067778,,0.045,,6557,289,136,,,,,,20016021,,, +1320,B,pt,ZYL322 Rdio Mucuri,,Tefilo Otoni (MG),-17.85,-41.468611,,5,,9047,226,137,,,,,,36902156,,, +1320,CLM,es,HJNV La Cariosa,,Girardot (cun),4.366667,-74.866667,,5,,9029,266,137,,,,971,,37612,,, +1320,CUB,es,R Artemisa,,Artemisa (ar),22.8,-82.75,,1,,7972,284,137,,,,,,36471,,, +1320,SLV,,YSHQ,,San Salvador (ssl),13.716667,-89.25,,5,,9188,283,137,,,,,,45279,,, +1320,USA,,KLWN,,Lawrence (KS),38.934722,-95.286667,,0.25,,7392,304,137,,,,,,38862,,, +1320,USA,en,KXRO,,Aberdeen (WA),46.9575,-123.809167,,1,,8026,327,137,,,,,,39823,,, +1320,B,pt,ZYH672 Vento Leste AM,,Aracati (CE),-4.544603,-37.790406,,0.25,,7549,229,138,,,,,,36902152,,, +1320,B,pt,ZYJ475 Rdio Difusora Boas Novas,,Petrpolis (RJ),-22.530036,-43.175406,,5,,9591,225,139,,,,,,36902164,,, +1320,PRU,es,OAX4I R La Crnica,,Lima (lim),-12.05,-77.083333,,10,,10625,257,139,,,,995,,40307,,, +1320,USA,,KRLW,,Walnut Ridge (AR),36.066111,-90.94,,0.152,,7378,299,139,,,,,,39264,,, +1320,USA,,WKRK,,Murphy (NC),35.111667,-84.008611,,0.062,,7032,294,139,,,,,,42063,,, +1320,USA,,WMSR,,Manchester (TN),35.4675,-86.095,,0.079,,7133,295,139,,,,,,42394,,, +1320,USA,,WNGO,,Mayfield (KY),36.760278,-88.638889,,0.097,,7183,298,139,,,,,,42466,,, +1320,USA,,WVGM,,Lynchburg (VA),37.426944,-79.123889,,0.024,,6541,292,139,,,,,,43296,,, +1320,MEX,es,XEPAR-AM Los 40 Principales,,Paraso (tab),18.4,-93.216667,,2.5,,9038,289,140,,,,,,34900019,,, +1320,USA,,KVMC,,Colorado City (TX),32.3875,-100.8925,,1,,8276,303,140,,,,,,39640,,, +1320,USA,,WBRT,,Bardstown (KY),37.819167,-85.486111,,0.044,,6906,297,140,,,,,,40904,,, +1320,USA,,WHIE,,Griffin (GA),33.241667,-84.304722,,0.083,,7202,292,140,,,,,,41638,,, +1320,USA,en,WENN,,Birmingham (AL),33.561389,-86.860278,,0.111,,7336,294,140,,,,,,43602,,, +1320,B,pt,ZYI823 Rdio Cultura de So Jose do Egit,,So Jos do Egito (PE),-7.492739,-37.271747,,0.25,,7815,227,141,,,,,,36902155,,, +1320,USA,en,WLOH,,Lancaster (OH),39.703611,-82.553611,,0.016,,6578,296,141,,,,,,42204,,, +1320,B,pt,ZYH503 Rdio Regional,,Ccero Dantas (BA),-10.588333,-38.382778,,0.5,,8177,226,142,,,,,,36902159,,, +1320,EQA,,HCVG8 La Voz de San Cristbal,,Isla de San Cristbal (GAL) (gal),-0.916667,-89.616667,,5,,10499,274,142,,,,,,37165,,, +1320,MEX,es,XEUH-AM X R,,Tuxtepec (oax),18.092694,-96.143717,,2,,9253,291,142,,,,,,44902,,, +1320,USA,,WAGF,,Dothan (AL),31.248333,-85.388889,,0.092,,7435,292,142,,,,,,40666,,, +1320,USA,,WVNZ,,Richmond (VA),37.466667,-77.452222,,0.008,,6432,291,142,,,,,,43321,,, +1320,B,pt,ZYH243 Rdio Milenium,,Macei/Rua Marqus de Pombal (AL),-9.6603,-35.757439,,0.25,,7957,224,143,,,,,,36902162,,, +1320,CLM,es,HJMS,,Barrancabermeja (sat),7.066667,-73.833333,,1,,8722,267,143,,,,,,37573,,, +1320,CLM,es,HJTA R Maria,,Medelln (ant),6.266667,-75.616667,,1,,8914,268,143,,,,,,37638,,, +1320,USA,en,WPTJ868,,Milwaukee/5300 S Howell Ave (WI),42.946667,-87.899444,,0.01,,6643,302,143,,,,,,20010673,,, +1320,CLM,es,HJNK,,Palmira (val),3.516667,-76.316667,,1,,9203,266,144,,,,,,37589,,, +1320,GTM,,TGME R Quesada,,Jutiapa (jut),14.266667,-90.016667,,1,,9191,284,144,,,,,,40512,,, +1320,MEX,es,XENI-AM Romntica,,Uruapan (mic),19.390131,-102.006839,,1,,9504,296,145,,,,,,44446,,, +1320,USA,,KCLI,,Clinton (OK),35.483333,-98.981667,,0.108,,7896,304,146,,,,,,38172,,, +1320,USA,,WRJW,,Picayune (MS),30.518333,-89.644722,,0.075,,7764,294,146,,,,,,42862,,, +1320,EQA,,HCFR2,,Guayaquil (gua),-1.8,-79.516667,,1,,9888,266,147,,,,,,36942,,, +1320,EQA,,HCRF4,,Portoviejo (man),-0.916667,-80.45,,1,,9874,267,147,,,,,,37080,,, +1320,USA,,KKSM,,Oceanside (CA),33.202222,-117.338056,,0.5,,9070,315,147,,,,,,38756,,, +1320,B,pt,Rdio Vitria AM,,Videira (SC),-26.997222,-51.193611,,1,,10422,229,148,,,,,,36902154,,, +1320,B,pt,ZYJ255 Rdio Tropical,,Curitiba/Rua dos Ferrovirios (PR),-25.447056,-49.199611,,1,,10172,228,148,,,,,,36902163,,, +1320,BOL,,R Panorama,,Achocalla (lpz),-16.583333,-68.166667,,1,,10446,248,148,,,,,,52019,,, +1320,MEX,es,XENM-AM R 1320,,Aguascalientes (agu),21.961667,-102.299481,,0.5,,9290,298,148,,,,,,44451,,, +1320,MEX,es,XERJ-AM La Ranchera,,Mazatln (sin),23.22,-106.416389,,0.5,,9419,302,148,,,,,,44678,,, +1320,PRU,es,R Frecuencia Popular,,Olmos (lam),-5.983333,-79.75,,1,,10271,263,148,,,,,,37000035,,, +1320,USA,,KNCB,,Vivian (LA),32.901944,-93.982778,,0.057,,7827,299,148,,,,,,38966,,, +1320,USA,,KRDD,,Roswell (NM),33.403889,-104.47,,0.188,,8386,306,148,,,,,,39227,,, +1320,USA,en,KGDC,,Walla Walla (WA),46.023611,-118.354722,,0.066,,7900,323,148,,,,,,38461,,, +1320,ARG,,LU10 R Azul,,Azul (ba),-36.766667,-59.85,,2.5,,11778,230,149,,0900-0300,1234567,444,,40203,,, +1320,PRU,,OAU7W R Per,,Juliaca (pun),-15.816667,-70.016667,,1,,10495,250,149,,,,946,,52592,,, +1320,PRU,es,OBU4T R Bcan Sat Dos,,Huancayo (jun),-12.1,-75.25,,1,,10507,256,149,,,,945,,37000120,,, +1320,USA,,KSDT,,Hemet (CA),33.749722,-116.998056,,0.3,,9001,315,149,,,,,,39338,,, +1320,B,pt,ZYK271 Rdio Cultura,,Pelotas (RS),-31.761944,-52.286389,,1,,10929,227,150,,,,,,36902160,,, +1320,EQA,,HCOB7,,Limon (mor),-2.916667,-78.5,,0.5,,9917,264,150,,,,,,37047,,, +1320,EQA,es,HCJD6 R Continental,,Ambato (tun),-1.25,-78.616667,,0.4,,9778,265,150,,,,,,36983,,, +1320,MEX,es,XEJZ-AM La Campera,,Ciudad Jimnez (chi),27.131111,-104.923333,,0.25,,8977,303,150,,,,,,44236,,, +1320,MEX,es,XESR-AM,,Santa Rosala (bcs),27.32695,-112.271122,,0.25,,9367,308,151,,,,,,44766,,, +1320,ARG,,R Sentir,,Remedios de Escalada (ba),-34.733333,-58.383333,,1,,11517,230,152,,,,,,51851,,, +1320,ARG,es,R Mstica,,Merlo Gmez (ba),-34.7,-58.65,,1,,11528,230,152,,,,,,51850,,, +1320,B,pt,ZYJ351 Rdio Foz do Iguau,,Foz do Iguau (PR),-25.522222,-54.522778,,0.5,,10459,232,152,,,,,,36902158,,, +1320,B,pt,ZYK630 Rdio Difusora AM Pirassununga,,Pirassununga (SP),-22.017139,-47.429811,,0.25,,9752,229,152,,,,,,36902151,,, +1320,MEX,es,XECPN-AM R Noticias,,Piedras Negras (coa),28.723172,-100.527153,,0.1,,8579,301,152,,,,,,43865,,, +1320,B,pt,ZYK675 Rdio Clube de Tup,,Tup/Rua Caetes (SP),-21.9265,-50.507667,,0.25,,9904,231,153,,,,,,36902157,,, +1320,EQA,,HCCP3,,Pasaje (mor),-3.316667,-78.783333,,0.25,,9971,264,153,,,,,,36885,,, +1320,USA,,KAWC,,Yuma (AZ),32.689722,-114.5,,0.106,,8979,313,153,,,,,,37989,,, +1320,USA,,KSCR,,Eugene (OR),44.090278,-123.111944,,0.048,,8276,325,153,,,,,,39332,,, +1320,ARG,,LV24 R Rio Tunuyan,,Tunuyan (mz),-33.566667,-69,,1,,11999,238,154,,1000-0600,1234567,1,,40248,,, +1320,URG,,CW132 R Fortaleza,,Rocha (ro),-34.466667,-54.283333,,0.5,,11282,227,154,,0900-0300,1234567,,,36745,,, +1320,URG,,CW39 R LV de Paysandu,,Paysand (pa),-32.283333,-58.1,,0.5,,11278,231,154,,0858-0400,1234567,,,36771,,, +1320,B,pt,ZYK223 Rdio Clube de Canela,,Canela (RS),-29.352222,-50.795,,0.25,,10626,227,155,,,,,,36902165,,, +1320,B,pt,ZYK266 Rdio Sul Brasileira,,Panambi/Rua Gaspar Martins (RS),-28.280556,-53.488889,,0.25,,10663,230,155,,,,,,36902150,,, +1320,CHL,,CA132 R Estrella del Norte,,Vallenar (AT),-28.583333,-70.733333,,0.5,,11667,242,156,,,,,,35683,,, +1320,CHL,,CD132 R Lincoyan,,Mulchen (BI),-37.716667,-72.216667,,0.1,,12539,237,165,,1100-0300,1234567,,,35871,,, +1322,ETH,,ERTA Ethiopia National R,,unknown,10.5,40.5,,1,,5550,134,113,,0300-0600,1234567,,,46834,,, +1322,ETH,,ERTA Ethiopia National R,,unknown,10.5,40.5,,1,,5550,134,113,,0800-2100,1234567,,,46834,,, +1323,CYP,en,BBC WS,,Zygi (Limassol) (kyp-lem),34.722017,33.328,,200,150,2879,122,63,,0300-0700,1234567,1,,1290,,, +1323,CYP,en,BBC WS,,Zygi (Limassol) (kyp-lem),34.722017,33.328,,200,150,2879,122,63,,1300-1900,1234567,1,,1290,,, +1323,ROU,de,SRR R Bukarest,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0820-0830,......7,984,,1298,,, +1323,ROU,de,SRR R Bukarest,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1200-1300,123456,984,,1298,,, +1323,ROU,de,SRR R Neumarkt,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0830-0900,......7,984,,1298,,, +1323,ROU,de,SRR R Neumarkt,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1900-2000,123456,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0500-0600,1234567,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0600-0700,1234..7,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0600-0900,.....6.,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0800-0820,......7,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0900-1200,123456,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0900-1700,......7,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1300-1600,123456,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1300-1700,....56.,984,,1298,,, +1323,ROU,ro,SRR Antena Braşovului,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1600-1700,1234...,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0350-0500,1234567,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0600-0900,....5..,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0700-0800,......7,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1700-1900,1234567,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1900-1955,......7,984,,1298,,, +1323,G,en,Gold,,Brighton/Southwick (EN-ESU),50.832639,-0.252056,,0.5,,483,256,65,,0000-2400,1234567,9981,,1292,,, +1323,IRN,,IRIB Tabriz Rsu/IRIB WS,,Jolfa (eaz),38.935558,45.6061,,50,,3334,100,73,,1930-1730,1234567,992,,1293,,, +1323,IRN,az,IRIB WS,,Jolfa (eaz),38.935558,45.6061,,50,,3334,100,73,,1730-1930,1234567,992,,1293,,, +1323,CHN,en,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.157167,86.893222,,600,057 235,5726,65,87,,1500-1800,1234567,992,,50450,,, +1323,CHN,mn,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.157167,86.893222,,600,057 235,5726,65,87,057,1200-1300,1234567,992,,50450,,, +1323,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.157167,86.893222,,600,057 235,5726,65,87,057,1100-1200,1234567,992,,50450,,, +1323,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.157167,86.893222,,600,057 235,5726,65,87,057,1300-1500,1234567,992,,50450,,, +1323,CHN,en,China R Int.,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1600-1800,1234567,987,,50448,,, +1323,CHN,hi,China R Int.,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1500-1600,1234567,987,,50448,,, +1323,CHN,ko,China R Int.,,Huadian/SARFT763 (JL),43.124111,126.5238,,600,175,7969,42,109,,1100-1400,1234567,993,,50442,,, +1323,CHN,ru,China R Int.,,Shuangyashan/HLTS128 (HL),46.721783,131.210511,,200,120,7836,37,112,,1100-1600,1234567,,,36200307,,, +1323,TZA,,R One,,Moshi (klj),-3.380581,37.331811,,10,,6822,144,115,,,,,,47149,,, +1323,IND,,AIR Vividh Bharati,,Kolkata C (WB),22.362194,88.292611,,20,,7521,82,119,,0025-0435,1234567,,,50453,,, +1323,IND,,AIR Vividh Bharati,,Kolkata C (WB),22.362194,88.292611,,20,,7521,82,119,,0900-1200,1234567,,,50453,,, +1323,IND,,AIR Vividh Bharati,,Kolkata C (WB),22.362194,88.292611,,20,,7521,82,119,,1245-1730,1234567,,,50453,,, +1323,CHN,bo,CNR 11,,Chagyab=Chaya (XZ),30.298667,81.172833,,1,,6392,81,121,,,,,,36201174,,, +1323,CHN,,Baicheng RGD,,Baicheng (JL),45.5755,122.794906,,10,,7575,43,123,,,,,,50443,,, +1323,CHN,,Shaanxi RGD Jiaotong-Jili FM,,Xi'an/Caotan-SATS1 (SA),34.385556,108.950556,,10,,7827,59,125,,0000-2400,1234567,,,50452,,, +1323,CHN,bo,CNR 11,,Nagqu=Naqu (XZ),31.472389,92.042306,,1,,7020,72,127,,,,,,36201176,,, +1323,CHN,,Heze zhi Sheng,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,????-1610,1234567,,,50445,,, +1323,CHN,zh,CNR 2,,Gyangz=Jiangzi (XZ),28.904722,89.598889,,1,,7068,76,128,,2100-1602,1234567,,,36201175,,, +1323,CHN,zh,CNR 1,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,0000-0030,1234567,,,36201177,,, +1323,CHN,zh,CNR 1,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,1030-1100,1234567,,,36201177,,, +1323,CHN,zh,CNR 1,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2230-2300,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,0030-0600,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,0600-1000,1.34567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,1000-1030,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,1100-1800,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2000-2230,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2300-2400,1234567,,,36201177,,, +1323,CHN,,Ningbo RGD News,,Ningbo (ZJ),29.887778,121.486667,,20,,8935,53,131,,2110-1535,1234567,,,50449,,, +1323,CHN,,Xingsha zhi Sheng,,Changsha/HNTS203 (HN),28.211544,113.051339,,10,,8607,60,132,,2200-1700,1234567,,,50444,,, +1323,THA,th,Thor. Or. 013,,Chiang Mai/Air Base (cmi),18.770278,98.9695,,10,,8542,76,132,,2200-1500,1234567,,,50469,,, +1323,CHN,,Wafangdian RGD,,Wafangdian (LN),39.616667,122,,1,,8074,47,138,,,,,,50451,,, +1323,THA,,Thor. Or.,,Surat Thani/Airport Approach Rd (stn),9.156389,99.133611,,5,,9390,82,138,,????-1705,1234567,,,50470,,, +1323,PHL,,DYSI-AM Super Radyo,,Iloilo City (ilo),10.742914,122.514217,,10,,10764,63,140,,2000-1500,1234567,,,50467,,, +1323,KOR,,HLCU KBS 1 R,,Ulleung (gsb),37.485556,130.8925,,1,,8696,42,143,,0000-2400,1234567,,,50464,,, +1323,KOR,,HLQJ KBS 1 R,,Yeonggwang (jen),35.273333,126.505556,,1,,8697,46,143,,0000-2400,1234567,,,50465,,, +1323,J,,JOFP NHK1,,Fukushima (toh-fuk),37.766667,140.483333,,1,,9076,35,144,,0000-2400,1234567,,,50456,,, +1323,J,ja,NHK R 1,,Yamada (toh-iwa),39.414444,141.989722,,1,,8970,33,144,,0000-2400,1234567,,,50462,,, +1323,PHL,ar,DXAD-AM,,Marawi City (lds),8.016667,124.3,,5,,11124,63,144,,2113-????,1234567,6,,50438,,, +1323,TWN,,Taiwan Guangbo Gongsi,,Taipei (TPS),25.020533,121.520175,,1,,9385,56,145,,,,,,50471,,, +1323,J,,NHK R 1,,Chizu (chg-tot),35.266667,134.233333,,0.1,,9060,41,154,,,,,,50455,,, +1323,J,,NHK R 1,,Gotsu (chg-shi),35.016667,132.233333,,0.1,,8994,42,154,,,,,,50457,,, +1323,J,,NHK R 1,,Kuse (chg-oka),35.066667,133.75,,0.1,,9058,41,154,,,,,,50458,,, +1323,J,,NHK R 1,,Muikamachi (chu-nii),34.316667,131.95,,0.1,,9048,43,154,,0000-2400,1234567,,,50459,,, +1323,J,,NHK R 1,,Nomura (shi-ehi),33.383333,132.65,,0.1,,9170,43,154,,,,,,50460,,, +1323,J,,NHK R 1,,Suzaki (shi-koc),33.383333,133.3,,0.1,,9200,42,154,,,,,,50461,,, +1323,J,ja,NHK R 1,,Muikaichi,34.5,134,,0.1,,9124,41,154,,,,,,31400089,,, +1323,J,ja,NHK R 1,,Takeda,34.5,134,,0.1,,9124,41,154,,,,,,31400088,,, +1323,NRU,,C2AM R Nauru,,Yaren,-0.533333,166.933333,,1,,13999,24,160,,1900-1130,1234567,,,50466,,, +1323,AUS,,5DN Cruise 1323,,Adelaide/MF Cavan Road (SA),-34.841111,138.593056,,2,,15803,82,163,,0000-2400,1234567,,,50439,,, +1323,AUS,,Kix Canberra,,Canberra/Gungahlin Dr. (ACT),-35.23,149.119444,,0.4,,16533,72,173,,,,,,37700070,,, +1330,USA,,WRCA,,Waltham (MA),42.288889,-71.189167,,17,,5677,292,102,,,,2,,42819,,, +1330,USA,es,WWRV,,New York/Hackensack [NJ] (NY),40.911111,-74.028333,,5,,5956,292,110,,,,17,,43429,,, +1330,USA,,WESR,,Onley-Onancock (VA),37.717222,-75.683611,,5,,6300,290,113,,,,,,41327,,, +1330,USA,en,WFNN,,Erie (PA),41.992222,-80.028889,,5,,6249,297,113,,,,0,,41414,,, +1330,CAN,en,CJYM,,Rosetown (SK),51.458611,-107.994444,,10,,6968,320,117,,,,0,,36253,,, +1330,USA,,WSPQ,,Springville (NY),42.498056,-78.686111,,1,,6129,296,118,,,,,,43053,,, +1330,USA,en,WLOL,,Minneapolis (MN),44.783889,-93.343889,,5.1,,6803,307,118,,,,993,,42207,,, +1330,USA,,KWLO,,Waterloo (IA),42.466944,-92.266389,,5,,6930,305,119,,,,,,39728,,, +1330,USA,en,WEBY,,Milton (D) (FL),30.518056,-87.082222,,25,,7603,292,119,,1200-2400,1234567,,,20012541,,, +1330,USA,,WYRD,,Greenville (SC),34.855,-82.423333,,5,,6953,292,120,,,,,,43542,,, +1330,USA,,WTRX,,Flint (MI),42.973333,-83.650556,,1,,6392,300,121,,,,,,43210,,, +1330,USA,en,WJSS,,Havre de Grace (MD),39.565278,-76.118889,,0.5,,6188,292,122,,,,,,41931,,, +1330,USA,,WANG,,Havelock (NC),34.923056,-76.943611,,1,,6597,289,123,,,,,,40723,,, +1330,USA,,WBTM,,Danville (VA),36.607222,-79.433611,,1,,6625,292,123,,,,,,40920,,, +1330,USA,,WHBL,,Sheboygan (WI),43.720556,-87.734444,,1,,6573,303,123,,,,0,,41608,,, +1330,USA,en,WCVC,,Tallahassee (FL),30.484167,-84.286944,,5,,7428,290,124,,,,,,41107,,, +1330,USA,en,WGFT,,Campbell (OH),41.089167,-80.615278,,0.5,,6353,296,124,,1200-2400,1234567,,,41504,,, +1330,ALS,,KXXJ,,Juneau (AK),58.301389,-134.440556,,3,,7238,339,125,,,,,,20016105,,, +1330,USA,,KNSS,,Wichita (KS),37.713056,-97.2475,,5,,7606,304,126,,,,,,39019,,, +1330,DOM,,HIVC R Vision Cristiana,,Santo Domingo (sdo),18.466667,-69.9,,3,,7470,271,127,,0000-2400,1234567,991,,1960,,, +1330,USA,,WVHI,,Evansville (IN),38.053333,-87.594444,,1,,7015,298,127,,,,,,43297,,, +1330,USA,en,KMBI,,Spokane (WA),47.604722,-117.3575,,5,,7711,323,127,,,,,,38884,,, +1330,USA,en,WMOR,,Morehead (KY),38.182222,-83.448889,,0.57,,6752,296,127,,1200-2400,1234567,,,42370,,, +1330,USA,,WGTJ,,Murrayville (GA),34.371111,-83.946389,,1,,7088,293,128,,,,,,41572,,, +1330,USA,,WHAZ,,Troy (NY),42.776389,-73.686111,,0.049,,5800,294,128,,,,,,41601,,, +1330,PTR,,WENA,,Yauco (PR),18.034444,-66.863333,,1.4,,7299,268,129,,0000-2400,1234567,,,41303,,, +1330,USA,,WEBO,,Owego (NY),42.0925,-76.256667,,0.036,,6009,295,131,,,,,,41242,,, +1330,USA,,WJNX,,Fort Pierce (FL),27.455556,-80.367222,,1,,7424,285,131,,,,,,41907,,, +1330,USA,en,KKPZ,i,Portland (OR),45.453611,-122.545833,,5,,8123,325,131,,,,,,38751,,, +1330,VEN,,YVOY R Los Llanos,,Calabozo (gco),8.916667,-67.5,,5,,8130,263,131,,0900-0300,1234567,,,45416,,, +1330,USA,,WMLT,,Dublin (GA),32.563889,-82.866667,,0.5,,7166,291,132,,,,,,42348,,, +1330,USA,,WFIN,,Findlay (OH),41.008611,-83.635278,,0.079,,6542,298,133,,,,,,41387,,, +1330,GTM,,TGMU Unin R LV de la Esperanza,,Ciudad de Guatemala (gut),14.566667,-90.516667,,10,,9198,284,134,,1100-2330,1234567,,,40518,,, +1330,USA,,WELW,,Willoughby (OH),41.649167,-81.423611,,0.042,,6360,297,134,,,,,,41293,,, +1330,USA,,WETZ,,New Martinsville (WV),39.6575,-80.859444,,0.059,,6477,295,134,,,,,,41334,,, +1330,USA,,WKTA,,Evanston (IL),42.139444,-87.885278,,0.11,,6706,302,134,,,,,,42074,,, +1330,B,pt,ZYI600 Rdio Liberal,,Castanhal (PA),-1.299811,-47.983475,,1,,7800,240,135,,,,83,,36901564,,, +1330,B,pt,ZYJ621 Rdio Eldorado,,Natal/Rua Gadelha (RN),-5.756111,-35.272861,,0.5,,7543,226,135,,,,4,,36902178,,, +1330,USA,,WNTA,,Rockford (IL),42.225556,-89.046944,,0.091,,6766,302,135,,,,,,42514,,, +1330,VEN,,YVPJ,,Rubio (tch),7.7,-72.316667,,5,,8564,266,135,,,,,,45421,,, +1330,CLM,es,HJNR La Caliente,,San Gil (sat),6.516667,-73.116667,,5,,8722,266,136,,,,,,37595,,, +1330,MEX,es,XEMAC-AM Ke Buena,,Manzanillo (col),19.044444,-104.318333,,10,,9676,298,136,,,,,,44345,,, +1330,USA,,KLBS,,Los Banos (CA),37.0975,-120.830833,,5,,8857,320,136,,,,,,52577,,, +1330,USA,,WNIX,,Greenville (MS),33.41,-91.0175,,0.5,,7605,297,136,,,,,,42474,,, +1330,USA,,WYPC,,Wellston (OH),39.106111,-82.578889,,0.05,,6626,296,136,,,,,,43541,,, +1330,CAN,xx,CJBW,,Jans Bay (SK),55.148333,-108.126667,,0.05,,6658,323,137,,,,,,20109183,,, +1330,NCG,,YNGA R Matagalpa,,Matagalpa (mgp),12.883333,-85.95,,5,,9040,280,137,,1100-0500,1234567,,,52217,,, +1330,PNR,es,R La Voz Poderosa,,Ciudad de Panam/Los Andes 2 (pnm),9.042222,-79.512222,,5,,8938,272,137,,,,,,52344,,, +1330,USA,en,WRAA,,Luray (VA),38.659444,-78.491111,,0.026,,6406,293,137,,,,,,42808,,, +1330,USA,es,KWKW,,Los Angeles (CA),34.019444,-118.345556,,5,,9040,316,137,,,,998,,39723,,, +1330,VEN,es,RNV Canal Informativo,,La Paragua (tch),6.833333,-63.333333,,1,,8033,258,137,,,,999,,31300001,,, +1330,CLM,es,HJLS,,Popayn (cau),2.45,-75.616667,,5,,9249,265,138,,,,,,35901688,,, +1330,USA,,WITM,,Marion (VA),36.819722,-81.47,,0.031,,6737,293,139,,,,,,42594,,, +1330,B,pt,ZYH468 Rdio Continental,,Serrinha (BA),-11.671589,-39.006406,,1,,8315,226,140,,,,,,36902168,,, +1330,B,pt,ZYK736 Rdio Terra AM,,So Paulo/Osasco (SP),-23.514167,-46.7725,,5,,9863,227,140,,,,0,,36902177,,, +1330,USA,,WRAM,,Monmouth (IL),40.949722,-90.571944,,0.05,,6956,302,140,,,,,,42813,,, +1330,USA,,WTRE,,Greensburg (IN),39.328056,-85.501667,,0.033,,6787,298,140,,,,,,43203,,, +1330,USA,en,KWFM,,South Tucson (AZ),32.314167,-110.838056,,2,,8827,310,140,,,,,,38676,,, +1330,EQA,,HCOV1,,Elangel (car),0.633333,-77.783333,,3,,9556,266,141,,,,,,37054,,, +1330,USA,,KGAK,,Gallup (NM),35.542778,-108.736389,,1,,8421,311,141,,,,,,38455,,, +1330,USA,,KOVE,,Lander (WY),42.842778,-108.744722,,0.25,,7762,315,141,,,,,,39113,,, +1330,USA,,WWAB,,Lakeland (FL),28.044444,-81.974444,,0.118,,7481,287,141,,,,,,43352,,, +1330,USA,en,WPJS,,Conway (SC),33.853611,-79.020556,,0.023,,6816,289,141,,,,,,42699,,, +1330,CLM,es,HJAD,,Cartagena (bol),10.513889,-75.498611,,1,,8536,270,142,,,,,,37322,,, +1330,USA,,KJPR,i,Shasta Lake City (CA),40.68,-122.266944,,1,,8572,323,142,,,,,,39392,,, +1330,USA,,WAEW,,Crossville (TN),35.950278,-85.035833,,0.035,,7028,295,142,,,,,,40660,,, +1330,USA,en,KCKM,,Monahans (TX),31.645833,-103.001111,,1,,8461,304,142,,,,,,38781,,, +1330,CLM,es,HJRD R Fnix,,El Peol (ant),7.133333,-75.45,,1,,8827,268,143,,,,975,,35901687,,, +1330,USA,,KUKU,,Willow Springs (MO),36.979722,-91.991389,,0.052,,7365,300,143,,,,,,39575,,, +1330,USA,,WZCT,,Scottsboro (AL),34.701944,-86.004167,,0.038,,7190,295,143,,,,,,43569,,, +1330,CLM,,RCN,,,4.45,-74.4,,1,,8990,265,144,,,,75,,49219,,, +1330,CLM,es,HJFE Antena 2,,Pereira (ris),4.766667,-75.666667,,1,,9049,267,144,,0000-2400,1234567,3,,37430,,, +1330,HND,,HRSW,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37847,,, +1330,MEX,es,XEAJ-AM La Explosiva,,Saltillo (coa),25.401667,-101.977222,,0.9,,8961,300,144,,,,,,43710,,, +1330,USA,,WKDP,,Corbin (KY),36.938889,-84.078889,,0.016,,6890,295,144,,,,,,41987,,, +1330,USA,en,WEBY,,Milton (N) (FL),30.62,-87.0225,,0.079,,7591,292,144,,0000-1200,1234567,,,41245,,, +1330,USA,en,WLBB,,Carrollton (GA),33.571389,-85.050556,,0.034,,7222,293,144,,,,,,42129,,, +1330,EQA,,HCRV3 Nacional El Oro,,Machala (oro),-3.25,-79.866667,,1.5,,10039,265,145,,,,,,37119,,, +1330,MEX,es,XEBO-AM R Variedades,,Irapuato (gua),20.635092,-101.359175,,1,,9352,296,145,,,,,,43786,,, +1330,PRG,,ZP4 R Chaco Boreal,,Asuncin (asu),-25.266667,-57.616667,,2.5,,10605,235,145,,,,,,45535,,, +1330,B,pt,ZYK641 Rdio Cultura,,Ribeiro Preto (SP),-21.212639,-47.773133,,1,,9692,229,146,,,,,,36902175,,, +1330,B,pt,ZYN610 Rdio Pantanal,,Coxim (MS),-18.561506,-54.758361,,1,,9819,236,146,,,,,,36902169,,, +1330,EQA,,HCJA1,,Sideral (pic),-0.216667,-78.466667,,1,,9677,266,146,,,,,,36977,,, +1330,ARG,es,R Cadena Cental,,Bernal (ba),-34.716667,-58.3,,3,,11511,230,147,,,,,,51852,,, +1330,MEX,es,XEEV-AM R Festival,,Izcar de Matamoros (pue),18.612222,-98.4625,,0.5,,9353,293,148,,,,,,43982,,, +1330,PRU,es,OAU1A R Dos Mil,,Chiclayo (lam),-6.783333,-79.866667,,1,,10349,263,148,,1000-0400,1234567,,,52511,,, +1330,URG,,CX40 R Fenix,,Montevideo (mo),-34.866667,-56.116667,,2.5,,11412,228,148,,1000-0600,1234567,,,36817,,, +1330,USA,,KGLD,,Tyler (TX),32.376389,-95.265278,,0.077,,7948,299,148,,,,,,38488,,, +1330,USA,,KINE,,Kingsville (TX),27.61,-97.795,,0.28,,8515,298,148,,,,,,38618,,, +1330,BOL,,CP112 R Frontera,,Yacuiba (trj),-22.016667,-63.7,,1,,10659,241,149,,0930-0330,1234567,,,36629,,, +1330,MEX,es,XEWQ-AM R Triunfadora,,Monclova (coa),26.917778,-101.409167,,0.25,,8792,300,149,,,,,,45031,,, +1330,USA,en,KTON,,Cameron (TX),30.846667,-96.965278,,0.097,,8182,299,149,,,,,,38906,,, +1330,B,pt,ZYJ264 Rdio Jaguariava,,Jaguariava (PR),-24.25,-49.7,,0.5,,10083,229,150,,,,,,36902173,,, +1330,CLM,es,HKR33,,Salamina (cal),5.4,-75.483333,,0.25,,8981,267,150,,,,,,35901689,,, +1330,EQA,,HCLW5 R Vision Cristiana,,Cuenca (azu),-2.85,-79,,0.45,,9945,265,150,,,,,,37011,,, +1330,B,pt,ZYJ739 Rdio Clube de Blumenau,,Blumenau (SC),-26.852778,-48.998889,,0.5,,10297,227,151,,,,,,36902174,,, +1330,USA,,KSWA,,Graham (TX),33.126944,-98.593056,,0.051,,8079,302,151,,,,,,39439,,, +1330,B,pt,ZYK323 Rdio Diplomata AM,,So Marcos (RS),-28.938056,-51.085278,,0.5,,10601,228,152,,,,,,36902170,,, +1330,BOL,,CP176 R America,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,0930-2400,1234567,,,36669,,, +1330,EQA,,HCJP2,,El Empalme (gua),-2.2,-79.9,,0.3,,9949,266,152,,,,,,36992,,, +1330,USA,en,KGRG,,Enumclaw (WA),47.214722,-121.971944,,0.026,,7931,326,152,,,,,,38333,,, +1330,B,pt,ZYK638 Rdio Paulista,,Regente Feij (SP),-22.193272,-51.333492,,0.25,,9973,232,153,,,,,,36902171,,, +1330,B,,ZYJ320,,Umuarama (PR),-23.75,-53.316667,,0.25,,10227,232,154,,,,,,46042,,, +1330,MEX,es,XERP-AM La Tremenda,,Ciudad Madero (tam),22.253167,-97.857808,,0.1,,8992,295,154,,,,,,44696,,, +1330,B,pt,ZYJ749 Rdio Chapec,,Chapec (SC),-27.080556,-52.619444,,0.25,,10504,230,155,,,,,,36902166,,, +1330,B,pt,ZYK236 Rdio Upacara,,Dom Pedrito (RS),-30.960833,-54.663056,,0.25,,10975,229,156,,,,46,,36902167,,, +1330,CHL,,CD133 R Vicente Perez Rosales,,Puerto Montt (LL),-41.466667,-72.95,,1,,12893,235,157,,1055-0400,1234567,,,35872,,, +1330,CHL,es,CB133 La Mexicana R,,Santiago (RM),-33.4,-70.733333,,0.5,,12085,239,157,,,,994,,35731,,, +1330,USA,en,WPGU994,,Corte Madera/342 Tamalpais Drive (CA),37.927683,-122.544361,,0.01,,8851,321,163,,,,213,,20010675,,, +1330,USA,en,WPLR739,,San Jose (CA),37.327692,-121.894944,,0.01,,8881,321,163,,,,,,20010674,,, +1332,CZE,cs,ČRo Dvojka,,Moravske Budějovice/Domamil (VY),49.074131,15.709111,,50,,737,114,47,,0300-1500,12345..,9990,,1301,,, +1332,CZE,cs,ČRo Dvojka,,Moravske Budějovice/Domamil (VY),49.074131,15.709111,,50,,737,114,47,,0400-1500,.....67,9990,,1301,,, +1332,CZE,cs,ČRo Plus,,Moravske Budějovice/Domamil (VY),49.074131,15.709111,,50,,737,114,47,,1500-2300,1234567,9990,,1301,,, +1332,HOL,nl,R Paradijs,,Nieuwegein (utr),52.036994,5.060844,,0.015,,93,266,56,,0000-2400,1234567,,,1305,,, +1332,ROU,ro,SRR R Romnia Actualităţi,,Galaţi/Barboşi (GL),45.403822,27.994522,,50,,1740,107,57,,0000-2400,1234567,5,,1308,,, +1332,G,en,Premier Christian R,,East London/Bow (EN-GTL),51.532917,-0.017667,,1,,446,264,61,,0000-2400,1234567,9989,,1303,,, +1332,G,en,Gold,,Peterborough/Gunthorpe (EN-CAM),52.617222,-0.247778,,0.6,,455,280,64,,0000-2400,1234567,9909,,1304,,, +1332,G,en,BBC R 5 Live,,Lacock (EN-WLT),51.406361,-2.104583,,0.3,,591,266,68,,0000-0500,1234567,0,,1302,,, +1332,G,en,BBC R Wiltshire,,Lacock (EN-WLT),51.406361,-2.104583,,0.3,,591,266,68,,0500-2400,1234567,0,,1302,,, +1332,POL,pl,R AM,,Pińczw/Komin PEC Pińczw (SK),50.509722,20.544722,,0.5,,997,95,70,,0000-2400,1234567,,,6400027,,, +1332,IRN,fa,IRIB R Tehran,,Tehran (thr),35.594653,51.252875,,300,,3955,100,72,,0000-2400,1234567,999,,1306,,, +1332,PAK,ur,PBC R Pakistan/NBS News,,Lahore (pjb),31.458889,74.214722,,100,,5830,85,95,,0200-0400,1234567,,,31500002,,, +1332,PAK,ur,PBC R Pakistan/NBS News,,Lahore (pjb),31.458889,74.214722,,100,,5830,85,95,,1300-1800,1234567,,,31500002,,, +1332,CHN,,Henan RGD Lyou Guangbo,,Zhengzhou (HE),34.7,113.7,,100,,8072,55,118,,,,,,50479,,, +1332,CHN,,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,7.5,,7418,62,122,,,,,,50478,,, +1332,IND,,AIR Northeast,,Tezu (AR),27.928611,96.141944,,10,,7578,72,123,,0025-0430,1234567,,,50481,,, +1332,IND,,AIR Northeast,,Tezu (AR),27.928611,96.141944,,10,,7578,72,123,,0630-0930,1234567,,,50481,,, +1332,IND,,AIR Northeast,,Tezu (AR),27.928611,96.141944,,10,,7578,72,123,,1030-1630,1234567,,,50481,,, +1332,CHN,,Changchun JGD,,Changchun (JL),43.8,125.4,,10,,7855,42,126,,,,,,50475,,, +1332,J,ja,JOSF Tokai Hoso,,Nagoya (chu-aic),35.174167,136.788611,,50,,9181,39,127,,0000-2400,1234567,0,,50491,,, +1332,KOR,ko,HLAO MBC,,Chungju (ccb),36.9575,127.923889,,10,,8608,44,132,,0000-2400,1234567,,,50493,,, +1332,CHN,,Fuzhou RGD,,Fuzhou/FJTS103 (FJ),26.073889,119.339722,,10,,9164,57,134,,2135-1730,1234567,,,50476,,, +1332,THA,th,Or. Sor.,,Bangkok/Chitralada Palace (bmp),13.771361,100.521233,,10,,9080,78,134,,0210-0500,......7,,,50500,,, +1332,THA,th,Or. Sor.,,Bangkok/Chitralada Palace (bmp),13.771361,100.521233,,10,,9080,78,134,,0310-0500,.23456.,,,50500,,, +1332,THA,th,Or. Sor.,,Bangkok/Chitralada Palace (bmp),13.771361,100.521233,,10,,9080,78,134,,0850-1200,.23456.,,,50500,,, +1332,THA,th,Thor. Or. 14,,Mahasarakham/Wapi Prathum Rd (msk),16.158889,103.304167,,10,,9056,75,134,,,,,,50501,,, +1332,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Yunxiao (FJ),23.980661,117.297156,,10,,9237,59,135,,,,,,36200311,,, +1332,TWN,,Han Sheng Kuangpo Tientai,,Tzuoyin (KH),22.696111,120.278333,,10,,9528,58,135,,2100-1600,1234567,,,50503,,, +1332,CHN,,Henan RGD Lyou Guangbo,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,,,,,36200313,,, +1332,CHN,,Henan RGD Nongcun Guangbo,,Lingyang (HE),36.133333,113.85,,1,,7954,54,137,,,,,,36200312,,, +1332,PHL,,DYFX-AM Radyo Agila,,Cebu City (ceb),10.333333,123.933333,,10,,10887,62,140,,,,,,50402,,, +1332,INS,id,RRI Pro-4,,Depok/Cimanggis (JB-kde),-6.388989,106.862733,,10,185,11281,86,141,,2200-1700,1234567,0,,50483,,, +1332,PHL,,DZKI-AM,,Iriga City (cas),13.416667,123.6,,5,,10581,60,142,,,,,,50497,,, +1332,PHL,,DWAY-AM Sonshine R,,Cabanatuan City (nve),15.483333,120.966667,,2,,10232,61,145,,,,,,50496,,, +1332,TWN,,Taiwan Guangbo Gongsi,,Puli (NT),23.976111,120.982778,,1,,9450,57,145,,,,,,50502,,, +1332,J,,Tokai Hoso,,Shinshiro (chu-aic),34.9,137.5,,0.1,,9238,39,154,,0000-2400,1234567,,,50492,,, +1332,AUS,,4BU Classic Gold,,Bundaberg (QLD),-24.844472,152.406167,,5,,15848,57,159,,0000-2400,1234567,9962,,50473,,, +1332,AUS,,3SH Classic Hits,,Swan Hill (VIC),-35.408375,143.581917,,2,,16182,78,164,,0000-2400,1234567,,,50474,,, +1332,NZL,en,R Sport,,Auckland/Henderson (AUK),-36.849089,174.629694,,10,,18083,33,164,,0000-2400,1234567,,,50494,,, +1340,CAN,xx,CKHV,,Happy Valley (NL),53.316389,-60.286944,,1,,4328,299,100,,,,,,36322,,, +1340,USA,,WMDR,,Augusta (ME),44.328611,-69.764722,,1,,5445,293,111,,,,,,42300,,, +1340,USA,,WNZS,,Veazie (ME),44.852778,-68.678889,,0.63,,5342,293,112,,,,,,42544,,, +1340,USA,en,WSTJ,,St. Johnsbury (VT),44.418333,-71.995833,,1,,5579,294,113,,,,,,43072,,, +1340,USA,,WGAW,,Gardner (MA),42.5925,-71.988889,,1,,5706,293,114,,,,,,41478,,, +1340,USA,,WIRY,,Plattsburgh (NY),44.67,-73.444722,,0.94,,5651,295,114,,,,81,,41802,,, +1340,USA,,WNBH,,New Bedford (MA),41.6225,-70.918611,,1,,5707,291,114,,,,,,42434,,, +1340,USA,,WVNR,,Poultney (VT),43.504444,-73.203056,,1,,5718,294,114,,,,,,43319,,, +1340,USA,,WBNC,,Conway (NH),43.98,-71.110833,,0.62,,5554,293,115,,,,,,20016256,,, +1340,USA,,WBRK,,Pittsfield (MA),42.45,-73.215278,,1,,5793,293,115,,,,,,40901,,, +1340,USA,,WENT,,Gloversville (NY),43.025,-74.352778,,1,,5823,294,115,,,,,,41310,,, +1340,USA,,WMSA,,Massena (NY),44.903056,-74.883889,,0.91,,5723,296,115,,,,9936,,42388,,, +1340,CAN,xx,CFYK,,Yellowknife (NT),62.431944,-114.419444,,2.5,,6267,331,116,,,,997,,36026,,, +1340,USA,,WALL,,Middletown (NY),41.456944,-74.44,,1,,5942,293,116,,,,,,40697,,, +1340,USA,,WYBC,,New Haven (CT),41.2925,-72.953333,,0.88,,5860,292,116,,,,,,43505,,, +1340,USA,en,WMBO,,Auburn (NY),42.951389,-76.584722,,1,,5967,296,117,,,,,,43399,,, +1340,USA,,WHAT,,Philadelphia (PA),40.001667,-75.209722,,1,,6098,292,118,,,,,,41599,,, +1340,USA,,WLVL,,Lockport (NY),43.175,-78.710833,,1,,6081,297,118,,,,,,42253,,, +1340,USA,,WMID,,Atlantic City (NJ),39.376389,-74.452222,,0.89,,6096,291,118,,,,0,,42326,,, +1340,USA,,WWPA,,Williamsport (PA),41.229167,-77.0125,,1,,6120,294,118,,,,,,43422,,, +1340,USA,,WYCK,,Plains (PA),41.250278,-75.825556,,0.81,,6044,294,118,,,,,,43509,,, +1340,USA,es,WRAW,,Reading (PA),40.324167,-75.919444,,1,,6119,293,118,,,,,,42815,,, +1340,USA,,WTRN,,Tyrone (PA),40.663333,-78.256667,,1,,6240,295,119,,,,,,43205,,, +1340,USA,,WEPM,,Martinsburg (WV),39.463333,-77.986389,,1,,6313,293,120,,,,,,41317,,, +1340,USA,,WLEW,,Bad Axe (MI),43.800833,-83.023056,,1,,6293,300,120,,,,,,42157,,, +1340,USA,,WMBN,,Petoskey (MI),45.347222,-84.966944,,1,,6289,303,120,,,,,,42284,,, +1340,USA,en,WYCB,,Washington (DC),38.955278,-77.004167,,1,,6290,292,120,,,,,,43508,,, +1340,USA,,WEXL,,Royal Oak (MI),42.469444,-83.115,,1,,6399,299,121,,,,,,41343,,, +1340,USA,,WHAP,,Hopewell (VA),37.296111,-77.313889,,1,,6437,291,121,,,,,,41597,,, +1340,USA,,WVCV,,Orange (VA),38.253889,-78.120833,,1,,6414,292,121,,,,,,43289,,, +1340,USA,,KRBT,,Eveleth (DN) (MN),47.481944,-92.531667,,1,,6545,309,122,,,,,,20016289,,, +1340,USA,,KRBT,,Eveleth (U) (MN),47.477778,-92.533333,,1,,6545,309,122,,,,59,,39223,,, +1340,USA,,WAGN,,Menominee (MI),45.1075,-87.606944,,1,,6458,304,122,,,,,,40668,,, +1340,USA,,WKSN,,Jamestown (NY),42.104722,-79.2575,,0.52,,6193,296,122,,,,,,42071,,, +1340,USA,,WMTE,,Manistee (MI),44.235278,-86.318056,,1,,6452,302,122,,,,,,42402,,, +1340,USA,,WNCO,,Ashland (OH),40.840278,-82.357222,,1,,6478,297,122,,,,,,42445,,, +1340,USA,en,WJRW,,Grand Rapids (MI),42.951389,-85.698611,,1,,6515,301,122,,,,,,40810,,, +1340,USA,en,WXKX,,Clarksburg (WV),39.290833,-80.315556,,1,,6472,295,122,,,,,,43475,,, +1340,USA,,WCBQ,,Oxford (NC),36.3075,-78.576944,,1,,6594,291,123,,,,,,40956,,, +1340,USA,,WIZE,,Springfield (OH),39.9425,-83.7875,,1,,6634,297,123,,,,,,41828,,, +1340,USA,,WJYI,,Milwaukee (WI),43.046944,-87.981111,,1,,6640,302,123,,,,,,41943,,, +1340,USA,,WKEY,,Covington (VA),37.7675,-79.985,,1,,6569,293,123,,,,,,41999,,, +1340,USA,,WLDY,,Ladysmith (WI),45.466389,-91.123056,,1,,6627,306,123,,,,,,42149,,, +1340,USA,,WMON,,Montgomery (WV),38.177222,-81.314167,,1,,6620,294,123,,,,,,42368,,, +1340,USA,,WOOW,,Greenville (NC),35.616111,-77.370556,,1,,6571,290,123,,,,,,20016057,,, +1340,USA,,WOUB,,Athens (OH),39.329167,-82.091389,,1,,6579,296,123,,,,,,42629,,, +1340,USA,,WTRC,,Elkhart (IN),41.674444,-85.9475,,1,,6628,300,123,,,,,,43202,,, +1340,USA,,KVBR,,Brainerd (MN),46.3475,-94.181111,,1,,6722,309,124,,,,,,39611,,, +1340,USA,,KXPO,,Grafton (ND),48.398056,-97.448889,,1,,6727,312,124,,,,51,,39818,,, +1340,USA,,WBLB,,Pulaski (VA),37.065833,-80.784167,,1,,6674,293,124,,,,,,20016033,,, +1340,USA,,WLSG,,Wilmington (NC),34.231111,-77.955,,1,,6717,289,124,,,,,,42233,,, +1340,USA,,WPOL,,Winston-Salem (NC),36.073889,-80.255278,,1,,6719,292,124,,,,,,42722,,, +1340,USA,,WXFN,,Muncie (IN),40.161667,-85.378056,,1,,6713,299,124,,,,,,43463,,, +1340,USA,en,WCMI,,Ashland (KY),38.467222,-82.597222,,1,,6677,295,124,,,,,,41036,,, +1340,USA,,KDLM,,Detroit Lakes (MN),46.837222,-95.838056,,1,,6770,310,125,,,,,,38278,,, +1340,USA,,KROC,,Rochester (MN),44.029722,-92.491944,,1,,6817,306,125,,,,,,39278,,, +1340,USA,,WADE,,Wadesboro (NC),34.9525,-80.05,,1,,6795,291,125,,,,,,40650,,, +1340,USA,,WAGR,,Lumberton (NC),34.599444,-79.009167,,1,,6756,290,125,,,,,,40669,,, +1340,USA,,WEKY,,Richmond (KY),37.716667,-84.306944,,1,,6842,296,125,,,,,,41280,,, +1340,USA,,WJOL,,Joliet (IL),41.535,-88.054167,,1,,6763,301,125,,,,,,41913,,, +1340,USA,,WJRI,,Lenoir (NC),35.894167,-81.558333,,1,,6815,293,125,,,,,,41924,,, +1340,USA,,WKCB,,Hindman (KY),37.329167,-83.004722,,1,,6792,295,125,,,,,,41971,,, +1340,CUB,es,R Ciudad del Mar,,Palmira (cf),22.244378,-80.385947,,10,,7861,282,126,,,,0,,36508,,, +1340,USA,,KROS,,Clinton (IA),41.86,-90.205,,1,,6862,303,126,,,,,,39284,,, +1340,USA,,KWLM,,Willmar (MN),45.133333,-95.043056,,1,,6866,308,126,,,,,,39727,,, +1340,USA,,WBIW,,Bedford (IN),38.873056,-86.476111,,1,,6881,298,126,,,,,,40864,,, +1340,USA,,WGRV,,Greeneville (TN),36.169444,-82.847778,,1,,6875,294,126,,,,,,41561,,, +1340,USA,,WRHI,,Rock Hill (SC),34.983056,-81.019722,,1,,6854,292,126,,,,,,42850,,, +1340,USA,,WSSC,,Sumter (SC),33.929167,-80.324722,,1,,6894,290,126,,,,,,43068,,, +1340,VEN,,YVNE R.Uno AM 1340/R.Maria,,Caracas (dcf),10.472817,-66.790272,,10,,7946,263,126,,0000-2400,1234567,,,45392,,, +1340,CAN,en,CBEY,,Moosonee (ON),51.273611,-80.638611,,0.04,,5620,306,127,,,,,,20109189,,, +1340,USA,,WBGN,,Bowling Green (KY),37.009444,-86.4525,,1,,7030,297,127,,,,,,40843,,, +1340,USA,,WKGN,,Knoxville (TN),35.955556,-83.970556,,1,,6962,294,127,,,,,,42009,,, +1340,USA,,WQSC,,Charleston (SC),32.818611,-79.961944,,1,,6959,289,127,,,,,,42791,,, +1340,USA,,WSOY,,Decatur (IL),39.815,-89.002222,,1,,6956,300,127,,,,,,43047,,, +1340,USA,en,WYNF,,Augusta (GA),33.493611,-81.997778,,0.99,,7036,291,127,,,,,,42993,,, +1340,USA,,KIJV,,Huron (SD),44.345833,-98.209722,,1,,7099,310,128,,,,,,38600,,, +1340,USA,,WBAC,,Cleveland (TN),35.165,-84.853611,,1,,7080,294,128,,,,,,40795,,, +1340,USA,,WCSR,,Hillsdale (MI),41.928056,-84.636111,,0.25,,6531,300,128,,,,,,41088,,, +1340,USA,,WGAU,,Athens (GA),33.941111,-83.398611,,1,,7088,292,128,,,,,,41477,,, +1340,VIR,en,WSTA,,Charlotte Amalie (sto),18.336111,-64.954722,,1,,7143,267,128,,,,,,43070,,, +1340,USA,,KPOK,,Bowman (ND),46.18,-103.37,,1,,7207,314,129,,,,998,,39155,,, +1340,USA,,KXEO,,Mexico (MO),39.166667,-91.861944,,0.96,,7176,302,129,,,,,,39788,,, +1340,USA,,WBBT,,Lyons (GA),32.213333,-82.331944,,1,,7161,290,129,,,,,,40814,,, +1340,USA,,WCDT,,Winchester (TN),35.180833,-86.092778,,1,,7156,295,129,,,,,,40974,,, +1340,USA,,WGAA,,Cedartown (GA),34.035,-85.251111,,1,,7197,294,129,,,,,,41467,,, +1340,USA,,WJPF,,Herrin (IL),37.834444,-89.027778,,0.77,,7118,299,129,,,,,,41920,,, +1340,USA,,WKRM,,Columbia (TN),35.610556,-87.056111,,1,,7180,296,129,,,,,,42064,,, +1340,USA,en,WIFN,,Atlanta (GA),33.748889,-84.407222,,1,,7168,293,129,,,,,,40699,,, +1340,USA,en,WNBS,,Murray (KY),36.628333,-88.301111,,1,,7173,298,129,,,,,,42438,,, +1340,CAN,en,CBEU,,Temagami (ON),47.063611,-79.788611,,0.04,,5864,301,130,,,,,,20109188,,, +1340,PTR,es,WWNA,,Aguadilla (PR),18.4,-67.163333,,0.95,,7289,269,130,,0900-0300,1234567,,,43408,,, +1340,USA,,KDTD,,Kansas City (U a) (KS),39.113889,-94.679167,,1,,7342,304,130,,,,,,20016025,,, +1340,USA,,KLID,,Poplar Bluff (MO),36.7675,-90.369722,,1,,7286,299,130,,,,,,38814,,, +1340,USA,,KSMO,,Salem (MO),37.626667,-91.535833,,1,,7284,300,130,,,,,,39391,,, +1340,USA,,WDSR,,Lake City (FL),30.155556,-82.637222,,1,,7349,289,130,,,,,,41210,,, +1340,USA,,WFEB,,Sylacauga (AL),33.171111,-86.2325,,1,,7329,294,130,,,,,,41371,,, +1340,USA,,WOKS,,Columbus (GA),32.451944,-84.973611,,1,,7309,292,130,,,,,,42584,,, +1340,USA,,WROD,,Daytona Beach (FL),29.188611,-81.007778,,1,,7323,287,130,,,,,,42897,,, +1340,USA,,WSBM,,Florence (AL),34.797222,-87.665,,1,,7284,296,130,,,,,,42958,,, +1340,USA,,WTIF,,Tifton (GA),31.471111,-83.486667,,1,,7295,291,130,,,,,,43137,,, +1340,B,pt,ZYH886 Rdio So Lus,,So Lus (MA),-2.535206,-44.269217,,2,,7703,236,131,,,,,,36902188,,, +1340,CAN,en,CIVH,,Vanderhoof (BC),54.016389,-123.991389,,1,,7353,331,131,,,,,,36135,,, +1340,USA,,KADI,,Springfield (MO),37.092778,-93.266389,,1,,7430,301,131,,,,,,38586,,, +1340,USA,,KBTA,,Batesville (AR),35.744167,-91.639167,,1,,7447,299,131,,,,,,38101,,, +1340,USA,,KTOQ,,Rapid City (SD),44.068333,-103.169722,,1,,7379,312,131,,,,,,39528,,, +1340,USA,,WLOK,,Memphis (TN),35.116944,-90.016389,,1,,7401,298,131,,,,7,,42206,,, +1340,USA,,WMHZ,,Holt (D) (AL),33.214444,-87.489444,,1,,7404,295,131,,,,,,20016266,,, +1340,USA,,WMHZ,,Holt (N) (AL),33.214444,-87.489444,,1,,7404,295,131,,,,,,20016265,,, +1340,USA,,WWFL,,Clermont (FL),28.583056,-81.705278,,1,,7418,287,131,,,,,,43370,,, +1340,USA,en,WJAM,,Selma (AL),32.425278,-86.996389,,1,,7439,294,131,,,,,,42385,,, +1340,USA,,KGFW,,Kearney (NE),40.668056,-99.081111,,1,,7456,307,132,,,,,,38473,,, +1340,USA,,KSEK,,Pittsburg (KS),37.395556,-94.678333,,1,,7487,302,132,,,,,,39340,,, +1340,USA,,WFMH,,Cullman (AL),34.180278,-86.866389,,0.67,,7286,295,132,,,,,,41408,,, +1340,USA,,WTAN,,Clearwater (FL),27.9725,-82.796667,,1,,7540,287,132,,,,,,43103,,, +1340,USA,en,WITS,,Sebring (FL),27.508333,-81.422222,,1,,7489,286,132,,,,,,41818,,, +1340,CAN,en,CBLB,,Schreiber (ON),48.808333,-87.266667,,0.04,,6159,307,133,,,,,,20109186,,, +1340,CAN,en,CINL,,Ashcroft (BC),50.758333,-121.297778,,1,,7568,327,133,,,,,,36128,,, +1340,CAN,en,CKDR-1,,Ignace (ON),49.402222,-91.665556,,0.05,,6350,310,133,,,,,,20109184,,, +1340,USA,,KCAP,,Helena (MT),46.611944,-112.053611,,1,,7576,319,133,,,,,,38123,,, +1340,USA,,KCAT,,Pine Bluff (AR),34.213056,-92.031389,,1,,7598,298,133,,,,,,38125,,, +1340,USA,,KFMD,,Bethel Heights (D) (AR),36.211944,-94.127222,,1,,7554,301,133,,,,,,20016268,,, +1340,USA,,KFMD,,Bethel Heights (N) (AR),36.211944,-94.127222,,1,,7554,301,133,,,,,,20016269,,, +1340,USA,,KPRK,,Livingston (MT),45.6725,-110.539167,,1,,7592,318,133,,,,,,39160,,, +1340,USA,,KSID,,Sidney (NE),41.130556,-102.970833,,1,,7623,310,133,,,,,,39360,,, +1340,USA,,KWOR,,Worland (WY),44.017222,-107.970556,,1,,7620,315,133,,,,,,39742,,, +1340,USA,,KYLT,,Missoula (MT),46.882222,-113.985556,,1,,7636,321,133,,,,,,39854,,, +1340,USA,,KZNG,,Hot Springs (AR),34.495278,-93.024167,,1,,7634,299,133,,,,,,39897,,, +1340,USA,,WAML,,Laurel (MS),31.666944,-89.149722,,1,,7636,295,133,,,,,,40709,,, +1340,USA,,WPBR,,Lantana (FL),26.62,-80.080833,,0.81,,7474,285,133,,,,,,42651,,, +1340,B,pt,ZYI671 Rdio Consolao,,Joo Pessoa (PB),-7.127153,-34.846711,,1,,7660,225,134,,,,,,36902180,,, +1340,USA,,KJMU,,Sand Springs (OK),36.133056,-96.092222,,0.9,,7675,302,134,,,,,,39476,,, +1340,USA,,KQJZ,,Evergreen (MT),48.238889,-114.2525,,0.67,,7524,322,134,,,,,,20016097,,, +1340,USA,,WTYS,,Marianna (FL),30.763056,-85.231111,,0.54,,7465,291,134,,,,,,43243,,, +1340,CLM,es,HJPY R Mil,,Ccuta (nsa),7.816667,-72.466667,,5,,8564,266,135,,,,,,37628,,, +1340,GTM,,TGCO Emisoras Unidas LV del Trpico,,Coatepeque (qzt),14.516667,-91.866667,,10,,9291,285,135,,,,,,40487,,, +1340,USA,,KGHM,,Oklahoma City (OK),35.499444,-97.509167,,1,,7811,303,135,,,,,,38308,,, +1340,USA,,KHUB,,Fremont (NE),41.432778,-96.454444,,0.25,,7248,306,135,,,,,,38567,,, +1340,USA,,KRMD,,Shreveport (LA),32.493333,-93.765278,,1,,7848,298,135,,,,,,39265,,, +1340,USA,,KSGT,,Jackson (WY),43.4625,-110.793611,,1,,7804,317,135,,,,,,39354,,, +1340,USA,en,KGGS,,Garden City (KS),37.968889,-100.932222,,1,,7789,307,135,,,,,,20016132,,, +1340,USA,en,KWLE,,Anacortes (WA),48.495556,-122.604167,,1,,7832,327,135,,,,4,,38824,,, +1340,USA,en,KZNW,,Wenatchee (WA),47.397222,-120.273611,,1,,7848,325,135,,,,,,39767,,, +1340,EQA,,HCPB6,,Ambato (tun),-1.216667,-78.566667,,10,,9772,265,136,,,,,,37058,,, +1340,USA,,KVOQ,,Denver (CO),39.683333,-105.006667,,1,,7856,311,136,,,,,,20016026,,, +1340,USA,,KWVR,,Enterprise (DN) (OR),45.399444,-117.258333,,1,,7913,322,136,,,,,,20016292,,, +1340,USA,,KWVR,,Enterprise (U) (OR),45.437222,-117.291667,,1,,7911,322,136,,,,,,39765,,, +1340,USA,en,KJOX,,Kennewick (WA),46.221667,-119.186111,,1,,7916,324,136,,,,,,39463,,, +1340,CLM,es,HJFB R Amor,,Bogot D. C. (bdc),4.583333,-74.066667,,5,,8956,265,137,,,,5,,37427,,, +1340,CLM,es,HJKD,,Neiva (hui),2.783333,-75.283333,,5,,9197,265,137,,,,,,37523,,, +1340,CLM,es,HJNY,,Bucaramanga (sat),7.133333,-73.133333,,4,,8669,266,137,,,,,,35901700,,, +1340,CTR,,TIHR R Sideral,,San Ramn (alj),10.066667,-84.466667,,5,,9185,277,137,,1000-0400,1234567,,,40583,,, +1340,HND,,HRHH,,San Pedro Sula (cor),15.216667,-88.016667,,5,,8975,283,137,,,,,,37766,,, +1340,MEX,es,XEQB-AM La Divertida,,Tulancingo de Bravo (hid),20.072931,-98.367722,,5,,9217,294,137,,,,,,44598,,, +1340,MEX,es,XERPV-AM La Cotorra,,Ciudad Victoria (tam),23.796572,-99.132256,,5,,8933,297,137,,,,,,44704,,, +1340,USA,,KACH,,Preston (ID),42.129167,-111.85,,1,,7974,317,137,,,,,,37911,,, +1340,USA,,KAND,,Corsicana (TX),32.114722,-96.463056,,1,,8042,300,137,,,,,,37948,,, +1340,USA,,KRBA,,Lufkin (TX),31.364722,-94.718889,,1,,8003,298,137,,,,,,39221,,, +1340,USA,,KTFI,,Wendell (ID),42.723889,-114.669722,,1,,8049,319,137,,,,,,20016100,,, +1340,USA,,KVRH,,Salida (CO),38.531944,-106.015,,1,,8010,311,137,,,,,,39663,,, +1340,USA,en,KUOW r:KUOW-FM,i,Tumwater (WA),47.006944,-122.918611,,1,,7987,326,137,,,,,,39671,,, +1340,B,pt,ZYH661 Rdio Pitaguary,,Maracana (CE),-3.86825,-38.588314,,0.25,,7524,230,138,,,,3,,36902184,,, +1340,B,pt,ZYL241 Rdio Cultura de Itabirito,,Itabirito (MG),-20.253047,-43.790361,,5,,9397,226,138,,,,,,36902189,,, +1340,CAN,,CFKC,,Creston (BC),49.093056,-116.531667,,0.25,,7540,324,138,,,,,,35968,,, +1340,MEX,es,XELU-AM Ke Buena,,Ciudad Serdan (pue),18.989333,-97.454675,,5,,9256,292,138,,,,,,44327,,, +1340,USA,,KDTD,,Kansas City (U b) (KS),38.266944,-94.516389,,0.2,,7404,303,138,,,,,,20016220,,, +1340,USA,,KIHR,,Hood River (OR),45.701667,-121.534722,,1,,8059,325,138,,,,,,38595,,, +1340,USA,,KOLE,,Port Arthur (TX),29.904167,-93.936111,,1,,8081,297,138,,,,,,39080,,, +1340,USA,,KTMM,,Grand Junction (CO),39.126389,-108.636667,,1,,8091,313,138,,,,,,39509,,, +1340,USA,,KTMP,,Heber City (UT),40.500556,-111.448611,,1,,8104,315,138,,,,,,39510,,, +1340,B,pt,ZYK571 Emissora de Campos do Jordo,,Campos do Jordo (SP),-22.768944,-45.618367,,5,,9734,227,139,,,,,,36902179,,, +1340,USA,,KKAM,,Lubbock (TX),33.556667,-101.862778,,1,,8228,305,139,,,,,,38702,,, +1340,USA,,KLOO,,Corvallis (OR),44.593889,-123.225,,1,,8232,325,139,,,,,,38841,,, +1340,USA,,KVOT,,Taos (NM),36.389444,-105.585833,,1,,8179,309,139,,,,,,20016090,,, +1340,USA,,KWKC,,Abilene (TX),32.420556,-99.731667,,1,,8206,302,139,,,,,,39719,,, +1340,USA,,KYCN,,Wheatland (WY),42.045556,-104.946389,,0.25,,7645,312,139,,,,,,39842,,, +1340,PNR,es,R Tipikal,,Las Tablas/Los Cerritos (lsn),7.781508,-80.26445,,2.5,,9099,272,140,,,,,,52345,,, +1340,USA,,KCQL,,Aztec (NM),36.821389,-107.999444,,1,,8267,311,140,,,,,,38200,,, +1340,USA,,KCRN,,San Angelo (TX),31.478611,-100.463889,,1,,8331,302,140,,,,,,38203,,, +1340,USA,,KTSN,,Elko (DN) (NV),40.865556,-115.719444,,1,,8270,318,140,,,,,,39542,,, +1340,USA,,KTSN,,Elko (U) (NV),40.868889,-115.719167,,1,,8270,318,140,,,,,,20016198,,, +1340,USA,,KBBR,,North Bend (OR),43.432778,-124.208333,,1,,8383,325,141,,,,,,38007,,, +1340,USA,,KPGE,,Page (AZ),36.906389,-111.458889,,1,,8435,313,141,,,,,,39137,,, +1340,USA,,KVNN,,Victoria (TX),28.830278,-97.009167,,1,,8360,298,141,,,,,,39644,,, +1340,CLM,es,HJFA R Alegre,,Barranquilla (atl),10.944308,-74.831578,,1,,8453,270,142,,,,789,,37426,,, +1340,CLM,es,HJHY RCN,,Sincelejo (suc),9.266667,-75.333333,,1,,8633,269,142,,,,2,,37484,,, +1340,MEX,es,XEBK-AM,,Nuevo Laredo (tam),27.486456,-99.511003,,1,,8628,299,142,,,,,,43782,,, +1340,MEX,es,XEDH-AM R Amistad,,Ciudad Acua (coa),29.332778,-100.957778,,1,,8550,301,142,,,,,,43907,,, +1340,PRU,es,OAU4Q R Alegra,,Lima/Villa El Salvador (lim),-12.208333,-76.958333,,5.5,,10630,257,142,,,,1,,37000028,,, +1340,USA,,KATA,,Arcata (CA),40.853333,-124.083333,,1,,8630,324,142,,,,,,37976,,, +1340,USA,,KBNW,,Bend (OR),44.079722,-121.282778,,0.5,,8204,324,142,,,,,,20016099,,, +1340,USA,,KXEQ,,Reno (NV),39.518056,-119.741389,,0.98,,8577,320,142,,,,,,39789,,, +1340,CLM,,HJKV R Laser,,Gala (sap),6.666667,-73.3,,1,,8721,266,143,,,,,,37535,,, +1340,MEX,es,XENV-AM,,Monterrey (nvl),25.684444,-100.2325,,1,,8832,299,143,,,,,,44462,,, +1340,USA,,KCBL,i,Fresno (CA),36.764167,-119.785556,,1,,8843,319,143,,,,0,,38128,,, +1340,USA,,KIKO,,Miami (AZ),33.411389,-110.838056,,0.93,,8726,311,143,,,,,,38604,,, +1340,USA,,KRLV,,Las Vegas (NV),36.156111,-115.256667,,0.9,,8690,315,143,,,,,,39263,,, +1340,USA,,KTOX,,Needles (CA),34.852778,-114.621944,,1,,8782,314,143,,,,,,39529,,, +1340,USA,,KTPI,,Mojave (CA),35.039722,-118.149167,,1,,8933,317,143,,,,,,39532,,, +1340,USA,,KVIV,,El Paso (TX),31.760278,-106.435556,,0.91,,8642,307,143,,,,,,39630,,, +1340,USA,en,KNTF,,Oroville (CA),39.508889,-121.598333,,1,,8658,322,143,,,,15,,38349,,, +1340,CAN,en,CJEV,,Elkford (BC),50.021944,-114.925556,,0.05,,7389,323,144,,,,,,20109187,,, +1340,CLM,es,HJIS R Uno,,Buenaventura (val),3.816667,-77.033333,,1,,9225,267,144,,,,,,37498,,, +1340,CLM,es,HJNP,,Nario (ant),5.616667,-75.183333,,1,,8941,267,144,,,,,,35901692,,, +1340,MEX,es,XEAA-AM,,Mexicali (bcn),32.618622,-115.537419,,1,,9037,314,144,,,,,,43674,,, +1340,MEX,es,XEOS-AM,,Ciudad Obregn (son),27.494444,-109.955,,1,,9226,307,144,,,,,,44514,,, +1340,NCG,,YNOS R Ondas Sonoras,,Managua (mng),12.166667,-86.266667,,1,,9124,280,144,,,,,,45182,,, +1340,SLV,,YSXW,,Usulutn (usu),13.316667,-88.45,,1,,9170,282,144,,,,,,45337,,, +1340,USA,,KWXY,,Cathedral City (CA),33.801944,-116.462222,,1,,8971,315,144,,,,,,39770,,, +1340,USA,en,KOMY,,La Selva Beach (Watsonville) (CA),36.961944,-121.980833,,0.85,,8921,321,144,,,,9968,,39089,,, +1340,CLM,es,HJHA,,Pasto (nar),1.166667,-77.216667,,1,,9470,266,145,,,,,,37579,,, +1340,EQA,,HCRV3,,Machala (oro),-3.316667,-79.966667,,1.5,,10052,265,145,,,,,,37120,,, +1340,MEX,es,XEASM-AM Romntica 1340,,Cuernavaca (mor),18.915,-99.236944,,1,,9375,294,145,,,,,,44200,,, +1340,MEX,es,XECR-AM La Z,,Morelia (mic),19.701944,-101.184722,,1,,9425,296,145,,,,,,43870,,, +1340,MEX,es,XEDKT-AM R Ranchito,,Guadalajara (jal),20.641853,-103.340219,,1,,9472,298,145,,,,,,43915,,, +1340,MEX,es,XEMT-AM Nostalgia,,Matamoros (tam),25.862656,-97.476667,,0.6,,8649,297,145,,,,,,44410,,, +1340,MEX,es,XEQE-AM La Kaona,,Escuinapa (sin),22.849722,-105.802222,,1,,9417,301,145,,,,,,44603,,, +1340,USA,,KYNS,,San Luis Obispo (CA),35.234167,-120.675833,,0.79,,9030,319,145,,,,,,39864,,, +1340,EQA,,HCDN5,,Lican (chi),-1.666667,-78.75,,1,,9824,265,146,,,,,,36901,,, +1340,EQA,,HCGF1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36954,,, +1340,EQA,,HCNC7,,Fco Orellana (nap),-0.45,-76.966667,,1,,9595,264,146,,,,,,37039,,, +1340,MEX,es,XEAPM-AM Candela,,Apatzingan (mic),19.063678,-102.248464,,1,,9548,296,146,,,,,,43725,,, +1340,MEX,es,XECI-AM Romntica 1340,,Acapulco (gue),16.844817,-99.913592,,1,,9603,293,146,,,,,,43843,,, +1340,MEX,es,XERCH-AM R xitos,,Ojinaga (chi),29.540556,-104.395556,,0.5,,8729,304,146,,,,,,44656,,, +1340,USA,,KCLU,,Santa Barbara (CA),34.418611,-119.686111,,0.65,,9064,318,146,,,,,,39501,,, +1340,EQA,,HCDR4,,Bahia (man),-0.95,-80.416667,,1,,9874,267,147,,,,,,36907,,, +1340,EQA,,HCSF2,,Fluminense (rio),-1.8,-79.533333,,1,,9889,266,147,,,,,,37133,,, +1340,BOL,,CP24 R Grigota,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,1000-0100,1234567,,,36684,,, +1340,B,pt,ZYJ490 Rdio 1340,,Rio Bonito (RJ),-22.722672,-42.69375,,0.5,,9587,224,149,,,,,,36902192,,, +1340,B,pt,ZYK227 Rdio CBN,,Canoas/Rua Primavera (RS),-29.966111,-51.200556,,1,,10705,227,149,,,,,,36902185,,, +1340,B,pt,ZYK543 Rdio Cultura de Araatuba,,Araatuba (SP),-21.2,-50.433333,,0.5,,9831,231,149,,,,,,36902187,,, +1340,USA,,KVGC,,Jackson (CA),38.355833,-120.768889,,0.25,,8733,320,149,,,,,,20016094,,, +1340,ARG,,R Tradicional,,Ituzaingo (cn),-27.566667,-56.666667,,1,,10766,233,150,,,,,,51853,,, +1340,ARG,,Frequencia Mediterranea,,Rosario del Tala (er),-32.3,-59.15,,1,,11335,232,151,,,,,,33000050,,, +1340,URG,,CW53 LV de Melo,,Melo (cl),-32.45,-54.216667,,1,,11091,228,151,,0800-0300,1234567,,,36777,,, +1340,ARG,es,R.Tradicional Conurbano Norte,,Florida (ba),-34.516667,-58.5,,1,,11503,230,152,,,,,,33000049,,, +1340,B,,ZYK352,,Iju (RS),-28.366667,-53.916667,,0.5,,10693,230,152,,,,,,46378,,, +1340,B,pt,ZYL352 Rdio Globo,,Passos/Rua Valinhos (MG),-20.723317,-46.637814,,0.25,,9586,229,152,,,,,,36902186,,, +1340,BOL,,R Copacabana,,Copacabana (lpz),-16.166667,-69.083333,,0.5,,10467,249,152,,,,,,52021,,, +1340,BOL,,R Jach'a Suyu,,Corocoro (lpz),-17.2,-68.483333,,0.5,,10521,248,152,,1000-1630,1234567,,,52022,,, +1340,BOL,,R Jach'a Suyu,,Corocoro (lpz),-17.2,-68.483333,,0.5,,10521,248,152,,2000-0100,1234567,,,52022,,, +1340,PRU,,OAZ4Q R Jauja,,Jauja (jun),-11.666667,-75.566667,,0.5,,10490,257,152,,,,,,40372,,, +1340,B,pt,ZYI380 Rdio Difusora de Aquidauana,,Aquidauana (MS),-20.461272,-55.78065,,0.25,,10055,236,153,,,,,,36902191,,, +1340,B,pt,ZYJ249 Transamrica Hits,,Arapongas (PR),-23.416389,-51.422222,,0.25,,10094,231,153,,,,,,36902182,,, +1340,B,pt,ZYK738 Rdio Nova Canoa Grande,,Igarau do Tiet (SP),-22.515156,-48.547272,,0.25,,9857,229,153,,,,,,36902181,,, +1340,BOL,,CP146 R San Francisco,,Apolo (lpz),-14.716667,-68.466667,,0.35,,10298,249,153,,,,,,36649,,, +1340,B,pt,ZYJ205 Rdio Difusora de Rio Negro,,Rio Negro (PR),-26.016111,-49.791111,,0.25,,10257,228,154,,,,,,36902183,,, +1340,B,pt,ZYJ368 CBN Cascavel,,Cascavel (PR),-24.923056,-53.411667,,0.25,,10343,232,154,,,,,,36902190,,, +1340,CHL,,CB134 R Caracola,,Valparaso (VS),-33.466667,-71.666667,,1,,12146,240,154,,0930-0300,1234567,,,35732,,, +1340,CHL,,CC134 R La Discusion,,Chilln (BI),-36.533333,-72.066667,,1,,12431,238,155,,0000-2400,1234567,,,35809,,, +1340,CHL,,CD134 R Panguipulli,,Panguipulli (LL),-39.6,-72.35,,1,,12705,236,156,,1200-0100,1234567,,,35873,,, +1340,USA,en,WPGG906,,San Jose (CA),37.350222,-121.911022,,0.01,,8880,321,163,,,,,,20010678,,, +1340,USA,en,WPUD976,,Sacramento (CA),38.583333,-121.5,,0.01,,8743,321,163,,,,,,20010676,,, +1340,USA,en,WPUD976,,Sacramento/4135 Traffic Way (CA),38.546306,-121.344328,,0.01,,8740,321,163,,,,,,20010677,,, +1341,G,en,BBC R 5 Live,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0100-0630,.23456.,0,,1313,,, +1341,G,en,BBC R 5 Live,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0200-0630,1......,0,,1313,,, +1341,G,en,BBC R 5 Live,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0200-0700,......7,0,,1313,,, +1341,G,en,BBC R Ulster,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0630-0100,12345..,0,,1313,,, +1341,G,en,BBC R Ulster,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0645-0200,.....6.,0,,1313,,, +1341,G,en,BBC R Ulster,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0700-0200,......7,0,,1313,,, +1341,E,es,SER,,Len (CAL-LE),42.624094,-5.582622,,10,,1385,225,61,,0000-2400,1234567,,,1310,,, +1341,E,es,Onda Cero,,Ciudad Real/Ctra. Piedrabuena (CAM-CR),39.007839,-3.966022,,10,,1662,213,64,,0000-2400,1234567,,,1311,,, +1341,E,es,Onda Cero,,Almera (AND-AL),36.822181,-2.425311,,5,,1836,206,68,,0000-2400,1234567,,,1309,,, +1341,EGY,ar,ERTU Al-Barnameg al-Aam,,Siwa (mth),29.185194,25.534917,,10,,2996,141,77,,0000-2400,1234567,,,1848,,, +1341,EGY,ar,ERTU Al-Aghani (Songs),,Abu Za'bal (qlb),30.270136,31.366203,,10,,3171,130,79,,0300-2400,1234567,,,1312,,, +1341,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,Bawiti=Al Bawiti (gzh),28.338528,28.931722,,10,,3234,136,79,,0200-2200,1234567,,,1849,,, +1341,KWT,ar,R Kuwait 2,,Madinat al-Kuwayt/Al-Maqwa (muk),29.181153,48.042678,,100,,4251,110,80,,0700-1700,1234567,,,1316,,, +1341,KWT,ar,R Kuwait Quran Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.181153,48.042678,,100,,4251,110,80,,0200-0700,1234567,,,1316,,, +1341,KWT,ar,R Kuwait Quran Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.181153,48.042678,,100,,4251,110,80,,1700-2300,1234567,,,1316,,, +1341,EGY,ar,ERTU Al-Barnameg al-Aam,,Edfu=Idfu (asn),24.993597,32.908778,,10,,3751,133,85,,0000-2400,1234567,,,1847,,, +1341,IRQ,,Dangi Komal-Kirkuk R,,Kirkuk (krk),35.466667,44.4,,1,,3509,107,92,,,,,,1315,,, +1341,KAZ,,R Liberty,,Almaty (alm),43.283333,77,,30,,5159,71,94,,1500-1600,1234567,,,2563,,, +1341,KAZ,kk,R Liberty,,Almaty (alm),43.283333,77,,30,,5159,71,94,,0100-0200,1234567,,,2563,,, +1341,KAZ,kk,R Liberty,,Almaty (alm),43.283333,77,,30,,5159,71,94,,1300-1400,1234567,,,2563,,, +1341,IRN,fa,IRIB R Kerman,,Bam (krm),29.072028,58.382778,,10,,4940,100,96,,0000-2400,1234567,607,,1810,,, +1341,BFA,,RTB-R.Nationale du Burkina,,Ouagadougou (kad),12.43475,-1.550889,,1,,4469,192,102,,0530-0900,1234567,,,2512,,, +1341,BFA,,RTB-R.Nationale du Burkina,,Ouagadougou (kad),12.43475,-1.550889,,1,,4469,192,102,,0900-1200,.....67,,,2512,,, +1341,BFA,,RTB-R.Nationale du Burkina,,Ouagadougou (kad),12.43475,-1.550889,,1,,4469,192,102,,1200-2400,1234567,,,2512,,, +1341,PAK,,PBC R Pakistan/NBS News,,Bahawalpur (pjb),29.407089,71.682108,,10,,5817,89,105,,0200-0400,1234567,954,,50540,,, +1341,PAK,,PBC R Pakistan/NBS News,,Bahawalpur (pjb),29.407089,71.682108,,10,,5817,89,105,,0850-1810,1234567,954,,50540,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Heihe/SARFT913 (HL),50.23,127.519167,,100,,7361,37,111,,0000-2400,1234567,,,36200309,,, +1341,CHN,en,China R Int.,,Guangzhou/SARFT522 (GD),23.403514,113.240917,,300,140,9047,63,119,,1130-1400,1234567,,,50508,,, +1341,CHN,tl,China R Int.,,Guangzhou/SARFT522 (GD),23.403514,113.240917,,300,140,9047,63,119,,1430-1500,1234567,,,50508,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mishan/SARFT914 (HL),45.644722,131.875278,,10,,7965,37,127,,0855-1500,1234567,,,50511,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mishan/SARFT914 (HL),45.644722,131.875278,,10,,7965,37,127,,2100-0600,1234567,,,50511,,, +1341,CHN,zh,Shenyang RGD Tiyu,,Shenyang (LN),41.748056,123.385,,10,,7948,45,127,,1955-1800,1234567,,,50510,,, +1341,KOR,ko,KBS 1 R,,Gimpo=Kimpo (gye),37.705833,126.635833,,25,,8476,45,128,,0000-2400,1234567,,,50538,,, +1341,THA,th,Sor. Wor. Thor. (R Thailand),,Loei (loe),17.562222,101.729722,,20,,8830,75,130,,,,,,50543,,, +1341,THA,th,Sor. Wor. Thor. (R Thailand),,Ubon Ratchathani (urt),15.318056,104.753333,,25,,9225,74,131,,2200-1600,1234567,,,50544,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Yichun (HL),47.777222,128.843611,,1,,7640,37,133,,2125-1630,1234567,,,50514,,, +1341,IND,,AIR Northeast,,Kohima (NL),25.716667,94.05,,1,,7626,75,133,,0000-0510,1234567,,,50515,,, +1341,IND,,AIR Northeast,,Kohima (NL),25.716667,94.05,,1,,7626,75,133,,0700-0900,1234567,,,50515,,, +1341,IND,,AIR Northeast,,Kohima (NL),25.716667,94.05,,1,,7626,75,133,,1000-1630,1234567,,,50515,,, +1341,THA,th,Sor. Wor. Thor. (R Thailand),,Phangnga (pgg),8.448056,98.534444,,10,,9411,83,135,,,,,,52408,,, +1341,CHN,,Dezhou RGD Traffic,,Dezhou (SD),37.4575,116.313333,,1,,7973,52,137,,,,,,36200308,,, +1341,CHN,,Taizhou RGD,,Taizhou (ZJ),28.612222,121.415278,,5,,9048,54,137,,2047-1703,1234567,,,50512,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Suifenhe (HL),44.4,131.166667,,1,,8053,38,138,,0855-1500,1234567,,,36200310,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Suifenhe (HL),44.4,131.166667,,1,,8053,38,138,,2100-0600,1234567,,,36200310,,, +1341,CHN,,Qufu RGD,,Qufu (SD),35.6,116.983333,,1,,8173,53,139,,,,,,50509,,, +1341,CHN,,Yincheng RGD,,Yingcheng (HU),30.95,113.55,,1,,8393,58,141,,0955-1305,1234567,,,50513,,, +1341,CHN,,Yincheng RGD,,Yingcheng (HU),30.95,113.55,,1,,8393,58,141,,2144-0120,1234567,,,50513,,, +1341,CHN,,Chibi RGD,,Chibi (HU),29.883333,113.633333,,1,,8493,58,142,,,,,,50507,,, +1341,J,,JOHQ NHK1,,Iwaki (toh-fuk),37.059167,140.881111,,1,,9162,35,144,,0000-2400,1234567,,,50521,,, +1341,J,ja,NHK R 1,,Minamata/Gion-Cho (kyu-kum),32.216667,130.383333,,1,,9174,45,144,,,,,,31400012,,, +1341,INS,id,RRI Pro-1,,Tanjung Pinang (KR-tjp),0.916667,104.466667,,1,,10476,83,149,,0745-1600,1234567,,,50516,,, +1341,INS,id,RRI Pro-1,,Tanjung Pinang (KR-tjp),0.916667,104.466667,,1,,10476,83,149,,2200-0300,1234567,,,50516,,, +1341,INS,id,Citra R,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400083,,, +1341,INS,id,R Bittara Indah,,Toli-Toli (ST-tol),1.05,120.816667,,1,,11547,70,152,,,,,,50517,,, +1341,J,,NHK R 1,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,0000-2400,1234567,,,50523,,, +1341,J,,NHK R 1,,Nakashibetsu (hok),43.533333,144.983333,,0.1,,8661,29,153,,0000-2400,1234567,,,50525,,, +1341,J,,NHK R 1,,Urakawa (hok),42.166667,142.783333,,0.1,,8723,31,153,,0000-2400,1234567,,,50535,,, +1341,J,,NHK R 1,,Yokote (toh-aki),39.3,140.566667,,0.1,,8927,34,153,,0000-2400,1234567,,,50536,,, +1341,J,,NHK R 1,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,0000-2400,1234567,,,50519,,, +1341,J,,NHK R 1,,Ina (chu-nag),35.833333,137.95,,0.1,,9165,38,154,,0000-2400,1234567,,,50520,,, +1341,J,,NHK R 1,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,0000-2400,1234567,,,50522,,, +1341,J,,NHK R 1,,Masuda (chg-shi),34.683333,131.85,,0.1,,9008,43,154,,0000-2400,1234567,,,50524,,, +1341,J,,NHK R 1,,Niimi (chg-oka),34.966667,133.466667,,0.1,,9055,41,154,,0000-2400,1234567,,,50527,,, +1341,J,,NHK R 1,,Sakuma (chu-shi),35.083333,137.816667,,0.1,,9233,38,154,,0000-2400,1234567,,,50528,,, +1341,J,,NHK R 1,,Shinjo (toh-yam),38.783333,140.316667,,0.1,,8969,35,154,,0000-2400,1234567,,,50529,,, +1341,J,,NHK R 1,,Tajima (toh-fuk),37.2,139.766667,,0.1,,9104,36,154,,0000-2400,1234567,,,50530,,, +1341,J,,NHK R 1,,Tokamachi (chu-nii),37.116667,138.75,,0.1,,9072,37,154,,0000-2400,1234567,,,50531,,, +1341,J,,NHK R 1,,Tono (toh-iwa),39.333333,141.55,,0.1,,8961,34,154,,0000-2400,1234567,,,50533,,, +1341,J,,NHK R 1,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,0000-2400,1234567,,,50534,,, +1341,J,ja,NHK R 1,,Hanawa,34.5,134,,0.1,,9124,41,154,,,,,,31400095,,, +1341,J,ja,NHK R 1,,Hirado (kyu-nag),33.383333,129.55,,0.1,,9023,45,154,,,,,,31400090,,, +1341,J,ja,NHK R 1,,Johen,34.5,134,,0.1,,9124,41,154,,,,,,31400094,,, +1341,J,ja,NHK R 1,,Kubokawa,34.5,134,,0.1,,9124,41,154,,,,,,31400093,,, +1341,J,ja,NHK R 1,,Kusu,34.5,134,,0.1,,9124,41,154,,,,,,31400092,,, +1341,J,ja,NHK R 1,,Sameura,34.5,134,,0.1,,9124,41,154,,,,,,31400091,,, +1341,J,,NHK R 1,,Nichinan (kyu-miy),31.6,131.383333,,0.1,,9282,45,155,,0000-2400,1234567,,,50526,,, +1341,J,,NHK R 1,,Tokunoshima (kyu-kag),27.75,129.016667,,0.1,,9532,48,155,,0000-2400,1234567,,,50532,,, +1341,AUS,zh,3CW,,Geelong/Leopold (VIC),-38.171278,144.461222,,5,,16442,81,161,,0000-2400,1234567,12,,50505,,, +1341,AUS,,2KY Sky Sports R,,Newcastle/Birmingham Gardens (NSW),-32.889194,151.680333,,5,,16509,66,162,,0000-2400,1234567,3,,50506,,, +1341,NZL,,2ZN Newstalk ZB,,Nelson/Stoke (NSN),-41.329167,173.215278,,2,,18455,45,172,,0000-2400,1234567,,,50539,,, +1350,HNG,,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1100-1200,123456,0,,1348,,, +1350,HNG,,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1100-1300,......7,0,,1348,,, +1350,HNG,bg,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,..3....,0,,1348,,, +1350,HNG,de,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,0900-1100,1234567,0,,1348,,, +1350,HNG,el,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,...4...,0,,1348,,, +1350,HNG,hr,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,0700-0900,1234567,0,,1348,,, +1350,HNG,hy,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,.....6.,0,,1348,,, +1350,HNG,pl,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1230-1300,.....6.,0,,1348,,, +1350,HNG,ra,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1230-1300,12345..,0,,1348,,, +1350,HNG,ro,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1500-1700,1234567,0,,1348,,, +1350,HNG,rt,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,.2.....,0,,1348,,, +1350,HNG,sk,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1700-1900,1234567,0,,1348,,, +1350,HNG,sl,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,1......,0,,1348,,, +1350,HNG,sr,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1300-1500,1234567,0,,1348,,, +1350,HNG,uk,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,....5..,0,,1348,,, +1350,ARM,he,TWR Asia,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1845-1915,1234.67,1,,1319,,, +1350,ARM,ku,TWR Asia,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1800-1815,1234567,1,,1319,,, +1350,ARM,ru,TWR Asia,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1845-1915,....5..,1,,1319,,, +1350,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,0300-0500,1234567,1,,1319,,, +1350,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1300-1600,1234567,1,,1319,,, +1350,ARM,tu,TWR Iyi Haberler Radyosu,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1815-1845,1234567,1,,1319,,, +1350,ARM,xx,TWR Asia,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1755-1800,1234567,1,,1319,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0340-0430,123456,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0340-0445,......7,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0445-0600,123456,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0530-1200,......7,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0630-1200,.....6.,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0700-1600,12345..,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1225-1500,.....67,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1700-1915,1234567,43,,1346,,, +1350,GEO,ru,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0445-0530,......7,43,,1346,,, +1350,GEO,ru,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1200-1225,.....67,43,,1346,,, +1350,GEO,ru,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1500-1535,.....67,43,,1346,,, +1350,GEO,ru,R Rossii,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0600-0630,.....6.,43,,1346,,, +1350,GEO,ru,R Rossii,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0600-0700,12345..,43,,1346,,, +1350,GEO,ru,R Rossii,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1535-1700,.....67,43,,1346,,, +1350,GEO,ru,R Rossii,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1600-1700,12345..,43,,1346,,, +1350,EGY,ar,ERTU Al-Barnameg al-Aam,,Al-Qusayr=Quseir (bar),26.145106,34.260911,,10,,3710,130,84,,0200-2400,1234567,9993,,1320,,, +1350,G,,Livewire (LPAM),,Norwich (EN-NFK),52.633333,1.3,,0.001,,352,282,90,,,,,,1330,,, +1350,G,,R Yare (LPAM),,Great Yarmouth (EN-NFK),52.616667,1.733333,,0.001,,322,282,90,,,,,,1345,,, +1350,G,en,Future AM 1350,,Suffolk Prison (EN-SFK),52.051111,1.451389,,0.001,,339,271,90,,,,,,2800002,,, +1350,G,,Dorton College R (LPAM),,Sevenoaks/Seal (EN-KNT),51.266667,0.2,,0.001,,438,260,91,,,,,,1325,,, +1350,G,,R Stortford (LPAM),,Bishop's Stortford (EN-HTS),51.883333,0.15,,0.001,,429,269,91,,,,,,1338,,, +1350,G,,UKC R (LPAM),,Canterbury (EN-KNT),51.283333,1.083333,,0.001,,378,258,91,,,,,,1340,,, +1350,G,en,BFBS R,,Colchester (EN-ESX),51.9,0.9,,0.001,,378,269,91,,,,,,2572,,, +1350,G,,GU2 (LPAM),,Guildford (EN-SUR),51.2,-0.583333,,0.001,,493,261,92,,,,,,1324,,, +1350,G,,LCR-Loughborough Campus R. (LPAM),,Loughborough (EN-LEI),52.783333,-1.183333,,0.001,,520,281,92,,,,,,1331,,, +1350,G,,Mid Downs R (LPAM),,Haywards Heath (EN-WSU),51,-0.1,,0.001,,467,257,92,,,,,,1332,,, +1350,G,,R Newbold (LPAM),,Binfield Berks (EN-BER),51.433333,-0.75,,0.001,,498,264,92,,,,,,1333,,, +1350,G,,R Nightingale (LPAM),,Rotherham (EN-SYK),53.433333,-1.333333,,0.001,,541,289,92,,,,994,,1334,,, +1350,G,,University R Nottingham (LPAM),,Nottingham (EN-NHS),52.966667,-1.166667,,0.001,,521,284,92,,,,,,1341,,, +1350,G,en,Hemel Hospital R (LPAM),,Hemel Hempstead (EN-HTS),51.766667,-0.466667,,0.001,,473,268,92,,,,988,,1327,,, +1350,G,en,Kingstown Hospital R (LPAM),,Hull/Kingstown Gnrl.Hospital (EN-EYK),53.744444,-0.356389,,0.001,,488,295,92,,,,989,,1329,,, +1350,G,,Frequency 1350 (LPAM),,Preston (EN-LNC),53.716667,-2.566667,,0.001,,627,290,93,,,,,,1326,,, +1350,G,,Knutsford AM,,Knutsford (EN-CHE),53.3,-2.366667,,0.001,,606,286,93,,,,1,,2800008,,, +1350,G,,R Cavell (LPAM),,Oldham (EN-GTM),53.55,-2.116667,,0.001,,594,289,93,,,,107,,1323,,, +1350,G,,R Hope (LPAM),,Liverpool (EN-MER),53.416667,-2.916667,,0.001,,644,287,93,,,,,,1328,,, +1350,G,,R Pulse (LPAM),,Redditch (EN-WOR),52.316667,-1.933333,,0.001,,569,276,93,,,,,,1335,,, +1350,G,,R RamAir (LPAM),,Bradford (EN-WYK),53.8,-1.75,,0.001,,578,292,93,,,,,,1336,,, +1350,G,,Range R (LPAM),,Manchester/Whalley (EN-GTM),53.822222,-2.405556,,0.001,,620,291,93,,,,,,1337,,, +1350,G,,WCR AM (LPAM),,Wolverhampton (EN-WMD),52.6,-2.133333,,0.001,,582,279,93,,,,,,1343,,, +1350,G,en,BFBS R,,Edinburgh (SC-COE),55.95,-3.2,,0.001,,758,308,94,,,,,,52491,,, +1350,G,,R Air3 (LPAM),,Stirling (SC-STL),56.116667,-3.95,,0.001,,808,308,95,,,,,,1321,,, +1350,G,,Subcity R (LPAM),,Glasgow (SC-GCC),55.883333,-4.25,,0.001,,812,305,95,,,,,,1339,,, +1350,IND,,AIR North/AIR R Kashmir,,Kupwara (JK),34.529606,74.229311,,20,,5597,82,100,,0025-0505,1234567,,,50553,,, +1350,IND,,AIR North/AIR R Kashmir,,Kupwara (JK),34.529606,74.229311,,20,,5597,82,100,,0930-1630,12345.7,,,50553,,, +1350,IND,,AIR North/AIR R Kashmir,,Kupwara (JK),34.529606,74.229311,,20,,5597,82,100,,0930-1730,.....6.,,,50553,,, +1350,RUS,ru,R Rossii,,Ust-Kan=Kan-Oosy (RA),50.95,84.75,,5,,5147,59,102,,2100-1700,1234567,,,46954,,, +1350,RUS,ru,R Rossii,,Ust-Ulagan (RA),50.633333,87.966667,,5,,5353,57,104,,2100-1700,1234567,,,46955,,, +1350,CAN,en,CKAD,,Middleton (NS),44.9875,-65.020833,,1,,5101,291,108,,,,4,,36258,,, +1350,USA,,WHWH,,Princeton (NJ),40.366667,-74.743889,,5,,6041,292,110,,,,,,41702,,, +1350,USA,,WGPL,,Portsmouth (VA),36.883333,-76.372778,,5,,6408,290,114,,,,72,,41554,,, +1350,USA,en,WARF,,Akron (OH),41.168056,-81.5125,,5,,6402,297,114,,,,2,,43196,,, +1350,CAN,fr,CBSI-14,,Aguanish (QC),50.221667,-62.0775,,0.04,,4599,296,117,,,,,,20109190,,, +1350,CHN,mn,Tongliao RGD,,Tongliao (NM),43.666667,122.216667,,50,,7719,44,117,,0925-1500,1234567,987,,50550,,, +1350,CHN,mn,Tongliao RGD,,Tongliao (NM),43.666667,122.216667,,50,,7719,44,117,,2145-0500,1234567,987,,50550,,, +1350,USA,,WNLK,,Norwalk (CT),41.115,-73.435,,0.5,,5904,292,119,,,,,,42479,,, +1350,USA,,WOYK,,York (PA),39.933333,-76.818333,,1,,6204,293,119,,,,9991,,42637,,, +1350,USA,,KRNT,,Des Moines (IA),41.558611,-93.579167,,5,,7078,305,121,,,,991,,39276,,, +1350,CAN,fr,CIRA-5,,Gatineau (QC),45.507778,-75.695,,0.18,,5730,298,122,,,,9954,,20109276,,, +1350,USA,,WEZS,,Laconia (NH),43.5075,-71.516667,,0.112,,5612,293,123,,,,,,41350,,, +1350,USA,,WIOU,,Kokomo (IN),40.416944,-86.113611,,1,,6737,299,124,,,,,,41785,,, +1350,PTR,,WEGA,,Vega Baja (PR),18.477222,-66.395278,,2.5,,7230,268,125,,1000-0200,1234567,4,,41265,,, +1350,USA,,WINY,,Putnam (CT),41.902778,-71.895278,,0.079,,5749,292,125,,,,,,41777,,, +1350,BOT,,R Botswana,,Tsahbong (kg),-26.006,22.418972,,50,,8825,165,126,,0000-2400,1234567,26,,1884,,, +1350,CUB,es,R Ciudad del Mar,,Aguada de Pasajeros (cf),22.382386,-80.8343,,10,,7880,282,126,,,,1,,36509,,, +1350,USA,,WOAM,,Peoria (IL),40.594722,-89.594444,,1,,6928,301,126,,,,999,,42549,,, +1350,USA,,WGDN,,Gladwin (MI),43.950833,-84.509444,,0.25,,6368,301,127,,,,,,41492,,, +1350,USA,en,WRNY,,Rome (NY),43.205,-75.485556,,0.057,,5881,295,128,,,,,,42893,,, +1350,USA,en,WWWL,,New Orleans (LA),29.924167,-90.034444,,5,,7838,294,128,,,,,,43024,,, +1350,USA,,WLOU,,Louisville (KY),38.231111,-85.822778,,0.5,,6893,297,129,,,,,,42212,,, +1350,VEN,,YVZZ R Eclipse R Guanipa,,El Tigrito (mir),8.866667,-64.15,,5,,7908,260,129,,0000-2400,1234567,,,45492,,, +1350,B,pt,ZYK692 Rdio Excelsior,,Ibina (SP),-23.645361,-47.1338,,50,,9894,227,130,,,,,,36902201,,, +1350,USA,,WTDR,,Gadsden (AL),34.0175,-86.0875,,1,,7251,294,130,,,,,,41471,,, +1350,VEN,,YVTJ R Falcon,,Puerto Cumarebo (flc),11.5,-69.316667,,5,,8028,266,130,,,,995,,45469,,, +1350,J,ja,JOER RCC Chugoku Hoso,,Etajima/Okimi (chg-hir),34.259444,132.388889,,20,,9074,43,131,,0000-2400,1234567,6,,1959,,, +1350,USA,,WMMV,,Cocoa (FL),28.366111,-80.752222,,1,,7374,286,131,,,,,,42354,,, +1350,DOM,,HIJD Ondas del Yuna,,Bonao (mnl),18.916667,-70.416667,,1,,7467,272,132,,,,,,52247,,, +1350,KOR,ko,HLAQ MBC,,Samcheok (gan),37.456667,129.161944,,10,,8619,43,132,,0000-2400,1234567,,,50559,,, +1350,USA,,WCBA,,Corning (NY),42.116389,-77.04,,0.037,,6056,295,132,,,,,,40951,,, +1350,USA,en,WRWR,,Warner Robins (GA),32.616667,-83.65,,0.5,,7212,291,132,,,,,,42486,,, +1350,CHN,zh,Jiangxi RGD Nongcun Guangbo,,Ji'an/JXTS802 (JX),26.828181,114.977453,,10,,8844,59,133,,2200-1600,1234567,,,36200306,,, +1350,CHN,zh,Jiangxi RGD Xinwen Guangbo,,Shangrao/JXTS821 (JX),28.470278,117.979167,,10,,8869,56,133,,2000-1730,1234567,,,36200304,,, +1350,CHN,zh,Jiangxi RGD Xinwen Guangbo,,Yichun/JXTS811 (JX),27.8,114.416667,,10,,8724,59,133,,2000-1730,1234567,,,2135,,, +1350,USA,,KTLQ,,Tahlequah (OK),35.895278,-94.953333,,1,,7629,301,133,,,,,,39503,,, +1350,B,pt,ZYI675 Rdio Super Borborema,,Campina Grande (PB),-7.191667,-35.855556,,1,,7715,225,134,,,,,,36902194,,, +1350,CUB,es,R Libertad,,Puerto Padre (lt),21.209139,-76.616003,,1,,7695,278,134,,,,989,,36585,,, +1350,MEX,es,XECTZ-AM,,Ciudad de Cuetzalan (pue),20.006811,-97.501475,,10,,9169,293,134,,,,,,43882,,, +1350,THA,th,Phon Neung Ror. Or.,,Bangkok/Phitsanulok Road (bmp),13.766708,100.510042,,10,,9079,78,134,,????-1745,1234567,9876,,50568,,, +1350,USA,,KCOR,,San Antonio (TX),29.524167,-98.618056,,5,,8395,300,134,,,,,,38196,,, +1350,USA,,WLLY,,Wilson (NC),35.723333,-77.921111,,0.079,,6598,290,134,,,,,,42190,,, +1350,TWN,,BCC News Network,,Chiayi=Chia-i (CYS),23.483333,120.45,,10,,9465,57,135,,0000-2400,1234567,,,50570,,, +1350,USA,,WDCF,,Dade City (FL),28.334444,-82.189722,,0.5,,7471,287,135,,,,,,41133,,, +1350,USA,en,KRLC,,Clarkston Lewiston (WA),46.394167,-116.994444,,1,,7809,322,135,,,,1,,39259,,, +1350,USA,en,WNTX,,Fredericksburg (VA),38.312778,-77.438889,,0.037,,6366,292,135,,,,,,43548,,, +1350,THA,th,Wor. Por. Thor. 17,,Trang/Palian Road (trg),7.519722,99.628611,,10,,9567,83,136,,2215-1500,1234567,,,50569,,, +1350,USA,,KSRO,,Santa Rosa (CA),38.439444,-122.7475,,5,,8810,322,136,,,,993,,39412,,, +1350,USA,en,WBLT,,Bedford (VA),37.3475,-79.523611,,0.047,,6573,292,136,,,,,,20012514,,, +1350,B,pt,ZYH521 Super Rdio Cristal,,Salvador/Ilha de Itaparica (BA),-12.955572,-38.615689,,2.5,,8423,225,137,,,,989,,36902200,,, +1350,CHN,zh,Haicheng RGD Jiaotong,,Haicheng (LN),40.85,122.75,,1,,7999,45,137,,2135-1500,1234567,,,50546,,, +1350,PNR,es,HOZ38 BBN Panam,,Ro Abajo/Via Cincuentenario (pnm),9.026008,-79.488167,,5,,8937,272,137,,,,,,52346,,, +1350,USA,,KCHK,,New Prague (MN),44.5775,-93.504444,,0.07,,6828,307,137,,,,,,38149,,, +1350,USA,,WCMP,,Pine City (MN),45.819444,-92.995833,,0.052,,6701,308,137,,,,,,41038,,, +1350,USA,,WHIP,,Mooresville (NC),35.601111,-80.814167,,0.067,,6792,292,137,,,,,,41642,,, +1350,DOM,,HIPM R Rutas Musical,,La Romana (rom),18.416667,-69.9,,0.25,,7474,271,138,,1000-0400,1234567,,,37272,,, +1350,PHL,,DWUN UNTV Radyo La Verdad 1350,,Malabon/Muzon (ncr),14.6749,120.950011,,10,,10306,62,138,,0000-2400,1234567,9696,,50564,,, +1350,USA,,WPDR,,Portage (WI),43.528333,-89.433611,,0.041,,6685,304,138,,,,2,,42661,,, +1350,USA,,WRKM,,Carthage (TN),36.245,-85.945556,,0.09,,7061,296,138,,,,,,42869,,, +1350,USA,,WRWH,,Cleveland (GA),34.586389,-83.766944,,0.093,,7059,293,138,,,,,,42938,,, +1350,USA,en,WZGM,,Black Mountain (NC),35.591389,-82.414722,,0.056,,6893,293,138,,,,,,43581,,, +1350,B,pt,ZYH201 Rdio Universitria Metropolitana,,Rio Branco (AC),-9.946733,-67.890472,,5,,9833,252,139,,,,,,36902198,,, +1350,B,pt,ZYH662 Rdio Liberal,,Morada Nova (CE),-5.089961,-38.371486,,0.25,,7633,229,139,,,,,,36902196,,, +1350,B,pt,ZYL214 Rdio Cultura,,Poos de Caldas (MG),-21.819661,-46.537044,,5,,9688,228,139,,,,,,36902199,,, +1350,USA,,KWMO,,Washington (MO),38.578889,-90.999167,,0.084,,7174,301,139,,,,,,39731,,, +1350,USA,,WCHI,,Chillicothe (OH),39.321111,-82.9525,,0.028,,6632,296,139,,,,,,40992,,, +1350,USA,,WNVA,,Norton (VA),36.966111,-82.588056,,0.037,,6795,294,139,,,,,,42529,,, +1350,USA,en,WFNS,,Blackshear (GA),31.312222,-82.233333,,0.117,,7228,290,139,,,,27,,41417,,, +1350,CLM,,HJOZ,,Yopal (cas),5.316667,-72.366667,,2,,8776,264,140,,,,,,37616,,, +1350,USA,,KCHR,,Charleston (MO),36.925,-89.295833,,0.079,,7209,298,140,,,,,,38152,,, +1350,USA,,KDIO,,Ortonville (MN),45.349722,-96.452222,,0.038,,6924,309,140,,,,998,,38264,,, +1350,USA,,KTIK,,Nampa (ID),43.549444,-116.410556,,0.6,,8050,320,140,,,,1,,39488,,, +1350,USA,,WJBD,,Salem (IL),38.632222,-88.917222,,0.059,,7047,300,140,,,,,,41845,,, +1350,CLM,es,HJMN,,Agustn Codazzi (ces),10.05,-73.216667,,1,,8420,268,141,,,,,,37636,,, +1350,CLM,es,HJOC RCN La Cariosa/Antena 2,,Santa Marta (mag),11.166667,-74.166667,,1,,8388,270,141,,,,,,37604,,, +1350,HTI,,R Dame-Marie,,Dame-Marie (gan),18.561111,-74.419444,,0.25,,7770,275,141,,,,,,52120,,, +1350,INS,id,RRI Pro-1,,Tarakan/Gunung Amal (KU-tar),3.3,117.633333,,10,,11138,71,141,,2100-1600,1234567,,,35400085,,, +1350,USA,,WCRM,,Fort Myers (FL),26.625278,-81.841389,,0.15,,7590,286,141,,,,,,41075,,, +1350,CHN,zh,Jiangxi RGD Xinwen Guangbo,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,2000-1730,1234567,,,36200305,,, +1350,CLM,es,HJDS R Ondas de la Montaa,,Medelln (ant),6.25,-75.583333,,1,,8913,268,143,,,,1,,37399,,, +1350,CLM,es,HJHW,,Puerto Boyaca (boy),5.95,-74.566667,,1,,8870,267,143,,,,,,37482,,, +1350,CLM,es,HJLO RCN La Cariosa/Antena 2,,Caucacia (ant),7.966667,-75.166667,,1,,8735,268,143,,,,,,37552,,, +1350,HND,,HRLW,,La Ceiba (atl),15.75,-86.816667,,1,,8848,282,143,,,,,,37798,,, +1350,PHL,,DXXY-AM Super Radyo,,Dipolog City (zdn),8.583333,123.35,,5,,11014,63,143,,,,,,50563,,, +1350,USA,,KBRX,,O'Neill (NE),42.459444,-98.656389,,0.044,,7281,308,143,,,,,,38093,,, +1350,USA,,WCSM,,Celina (OH),40.538056,-84.588889,,0.011,,6636,298,143,,,,,,41086,,, +1350,BOL,,CP214 R Ichilo,,Yapacani (scz),-17.4,-63.833333,,2.5,,10249,244,144,,0930-0135,1234567,,,52025,,, +1350,BOL,,CP28 R Cochabamba CBA,,Cochabamba (cbb),-17.366667,-66.166667,,2.5,,10390,246,144,,1030-0200,1234567,,,52024,,, +1350,CLM,,Armona 1350,,,4.45,-74.4,,1,,8990,265,144,,,,96,,2173,,, +1350,CLM,es,HJEN R Armona,,Cali (val),3.533333,-76.516667,,1,,9215,267,144,,,,9,,37416,,, +1350,CLM,es,HJHL Oxigeno,,Ibagu (tol),4.366667,-75.25,,1,,9055,266,144,,,,995,,37474,,, +1350,GTM,,TGMC R Monja Blanca,,Cobn (avp),15.466667,-90.366667,,1,,9109,285,144,,,,,,40511,,, +1350,NCG,,YNGF R Ondas del Sur,,Jinotepe (crz),11.85,-86.2,,1,,9147,279,144,,,,,,52216,,, +1350,USA,,KABQ,,Albuquerque (NM),35.100556,-106.676111,,0.5,,8353,309,144,,,,,,37908,,, +1350,USA,,WKCU,,Corinth (MS),34.908056,-88.501667,,0.044,,7327,296,144,,,,,,41977,,, +1350,USA,en,WPKL708,,Long Beach (NC),33.912389,-78.116111,,0.01,,6753,289,144,,,,,,20010679,,, +1350,ARG,,R Sucesos,,Crdoba (cb),-31.416667,-64.2,,5,,11534,236,145,,,,,,51854,,, +1350,ARG,es,LS6 R Buenos Aires RBA,,Burzaco (ba),-34.840261,-58.403272,,5,,11528,230,145,,0000-2400,1234567,1,,40161,,, +1350,B,pt,ZYK336 Rdio Agudo AM,,Agudo (RS),-29.648056,-52.257222,,2.5,,10728,228,145,,,,,,36902193,,, +1350,EQA,,HCPZ1,,Tulcan (car),0.833333,-77.716667,,1,,9534,266,145,,,,,,37067,,, +1350,MEX,es,XECAH-AM La Popular,,Cacahoatn (cps),15.006278,-92.156831,,1,,9267,286,145,,,,,,43810,,, +1350,MEX,es,XEQK-AM Tropicalsima 1350,,Mxico D.F/San Lorenzo Tezonco (dif),19.309406,-99.059247,,1,,9329,294,145,,,,,,44617,,, +1350,USA,,KMAN,,Manhattan (KS),39.216667,-96.558333,,0.04,,7440,305,145,,,,,,38876,,, +1350,USA,,WELB,,Elba (AL),31.452778,-86.066667,,0.044,,7461,292,145,,,,,,41283,,, +1350,USA,en,KCCY,,Pueblo (CO),38.357778,-104.638611,,0.15,,7954,310,145,,,,34,,38478,,, +1350,EQA,,HCPS1 Voz de Santo Go,, (pic),-0.216667,-79.166667,,1,,9725,266,146,,,,,,37062,,, +1350,USA,,KTDD,,San Bernardino (CA),34.093611,-117.299167,,0.6,,8983,316,146,,,,,,39466,,, +1350,CAN,en,CBRZ,,Bralorne (BC),50.776389,-122.817778,,0.04,,7622,328,147,,,,,,20109192,,, +1350,EQA,,HCSF5,,S Fernando (azu),-3.25,-79.25,,1,,9997,265,147,,,,,,37134,,, +1350,EQA,es,HCVR2 Teler 13-50,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,,,15,,37178,,, +1350,MEX,es,XELBL-AM R Frmula,,San Luis Ro Colorado (son),32.449669,-114.756878,,0.5,,9015,313,147,,,,9947,,44293,,, +1350,MEX,es,XETB-AM R Laguna,,Gmez Palacio (dur),25.581361,-103.480083,,0.5,,9033,301,147,,,,,,44799,,, +1350,PRU,,OBX8D R Super,,Pucallpa (uca),-8.383333,-74.533333,,1,,10131,258,147,,,,,,37000104,,, +1350,USA,,KCAR,,Clarksville (TX),33.613056,-95.0175,,0.065,,7827,300,147,,,,,,38124,,, +1350,CAN,en,CBKY,,Keremeos (BC),49.204722,-119.818611,,0.04,,7659,326,148,,,,,,20109191,,, +1350,PRU,,OAX3N Ondas del Huallaga,,Hunuco (huc),-9.75,-76.416667,,1,,10378,258,148,,,,,,40294,,, +1350,PRU,es,OAU1H R Visin,,Chiclayo (lam),-6.766667,-79.85,,1,,10347,263,148,,,,974,,37000016,,, +1350,PRU,es,R Santa Beatriz,,Cusco (cus),-13.516667,-71.983333,,1,,10418,253,148,,,,839,,37000105,,, +1350,USA,,KPNS,,Duncan (OK),34.511944,-97.968056,,0.07,,7922,303,148,,,,,,39149,,, +1350,B,pt,ZYK313 Rdio Difusora Celeiro AM,,Trs Passos (RS),-27.456389,-53.915,,1,,10608,231,149,,,,,,36902203,,, +1350,BOL,es,R Amrica LV del Sur,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,0800-0200,1234567,994,,52026,,, +1350,MEX,es,XEZD-AM La Preferida,,Ciudad Camargo (tam),26.306111,-98.824781,,0.25,,8692,298,149,,,,,,45131,,, +1350,PRU,,OAX6U R Ilo,,Ilo (moq),-17.616667,-71.366667,,1,,10741,250,149,,,,,,40343,,, +1350,CLM,es,HKZ98,,Caicedonia (val),4.333333,-75.833333,,0.25,,9098,267,150,,,,,,35901710,,, +1350,INS,id,PM7CMB R BMW,,Baturaja (SS-oku),-4.133333,104.166667,,1,,10900,86,150,,,,,,50554,,, +1350,USA,,KCOX,,Jasper (TX),30.919722,-93.970278,,0.037,,7996,297,151,,,,,,39553,,, +1350,ARG,,R Nuestra Seora de Itat,,Moron (ba),-34.65,-58.616667,,1,,11521,230,152,,,,,,51855,,, +1350,CHL,,CA135 R Riquelme,,Coquimbo (CO),-29.933333,-71.366667,,1,,11823,242,153,,1030-0430,1234567,,,35686,,, +1350,INS,id,RGS-R Gelora Surabaya,,Surabaya (JI-ksu),-7.2525,112.755556,,1,,11757,81,153,,2230-????,1234567,71,,50489,,, +1350,B,,ZYJ745,,Canoinhas (SC),-26.133333,-50.366667,,0.25,,10298,229,154,,,,,,46158,,, +1350,B,pt,ZYJ760 Rdio Bandeirantes,,Itaja (SC),-26.909167,-48.677222,,0.25,,10286,227,154,,,,,,36902195,,, +1350,B,pt,ZYK205 Rdio Aurora AM,,Guapor (RS),-28.837222,-51.891944,,0.25,,10633,228,155,,,,,,36902197,,, +1350,CHL,,CD135 R San Carlos,,Ancud (LL),-41.883333,-73.816667,,1,,12976,235,157,,1130-0400,1234567,,,35874,,, +1350,USA,es,KLHC,,Bakersfield (CA),35.35,-118.982778,,0.033,,8942,318,158,,,,,,38033,,, +1350,AUS,,2LF,,Young (NSW),-34.343167,148.335,,5,,16413,72,161,,0000-2400,1234567,9978,,50545,,, +1350,NZL,,R Sport,,Rotorua (BOP),-38.175278,176.230556,,1,,18276,31,174,,0000-2400,1234567,,,50561,,, +1355,BOL,,CP154 R Armonia,,Cliza (cbb),-17.6,-65.9,,0.25,,10395,245,154,,0900-0400,1234567,,,36651,,, +1359,G,en,BBC R 5 Live,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.85,,596,258,64,,0000-0500,1234567,,,1358,,, +1359,G,en,BBC R Solent,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.85,,596,258,64,,0500-2400,1234567,,,1358,,, +1359,G,en,Gold,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.28,,414,266,67,,0000-2400,1234567,9979,,1359,,, +1359,G,en,Free R 80's,,Coventry/Shilton (EN-WMD),52.449556,-1.397028,,0.27,,532,277,68,,0000-2400,1234567,9917,,1360,,, +1359,G,en,Gold,,Cardiff/Hadfield Road (WA-CDF),51.464778,-3.202333,,0.2,,665,268,71,,0000-2400,1234567,,,1361,,, +1359,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400058,,, +1359,IRN,fa,IRIB R Fars,,Darab (frs),28.75665,54.560617,,50,,4711,104,87,,,,8,,1362,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,0300-0530,1234567,,,9600008,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,0530-0900,.....67,,,9600008,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,0930-1030,12345..,,,9600008,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,1100-1500,.....67,,,9600008,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,1500-2000,1234567,,,9600008,,, +1359,CHN,zh,CNR 1,,Tacheng=Qoqek/SARFT634 (XJ),46.745556,83.006667,,10,,5310,64,100,,2025-1805,1234567,,,36201324,,, +1359,CHN,zh,CNR 1,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,10,,5398,68,101,,2025-1805,1234567,,,36200277,,, +1359,CHN,zh,CNR 1,,Akesu=Aksu/XJTS636 (XJ),41.185833,80.280833,,10,,5516,72,102,,2025-1805,1234567,,,36200161,,, +1359,CHN,zh,CNR 1,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,10,,5777,76,105,,2025-1805,1234567,,,36200165,,, +1359,CHN,zh,CNR 1,,Korla/SARFT8104 (XJ),41.772778,86.214722,,10,,5853,67,106,,2025-1805,1234567,,,36200292,,, +1359,CHN,zh,CNR 1,,Turfan/Gaochang Lu-SARFT8101 (XJ),42.957778,89.175833,,10,,5952,65,107,,2025-1805,1234567,,,36200281,,, +1359,CHN,zh,CNR 1,,Kaba=Habahe/SARFT8114 (XJ),48.075,86.404722,,1,,5428,61,111,,2025-1805,1234567,,,36201317,,, +1359,CHN,zh,CNR 1,,Bachu/XJTS2041 (XJ),39.815278,78.535833,,1,,5499,74,112,,2025-1805,1234567,,,36200303,,, +1359,CHN,zh,CNR 1,,Fuyun=Koktokay/XJTS8115 (XJ),46.994167,89.503889,,1,,5686,60,114,,2025-1805,1234567,,,36201316,,, +1359,CHN,zh,CNR 1,,Mori=Mulei/SARFT8112 (XJ),43.811111,90.274722,,1,,5958,63,117,,2025-1805,1234567,,,36201319,,, +1359,TWN,en,R Taiwan Int.,,Fangliao (PT),22.387944,120.566606,,600,220,9573,58,118,,1100-1200,1234567,9928,,50614,,, +1359,TWN,ms,R Free Malaysia,,Fangliao (PT),22.387944,120.566606,,600,220,9573,58,118,,1300-1500,1234567,9928,,50614,,, +1359,TWN,vi,R Free Asia,,Fangliao (PT),22.387944,120.566606,,600,220,9573,58,118,,2300-2400,1234567,9928,,50614,,, +1359,TWN,vi,R Taiwan Int.,,Fangliao (PT),22.387944,120.566606,,600,220,9573,58,118,,1200-1300,1234567,9928,,50614,,, +1359,CHN,bo,Qinghai RGD/CNR 11,,Huzhu/Duoshidai (QH),36.877778,101.956944,,10,,7203,62,119,,2250-1600,1234567,,,36201278,,, +1359,CHN,zh,CNR 1,,Yinchuan (NX),38.563056,106.310278,,10,,7320,58,120,,2025-1805,1234567,,,36200278,,, +1359,CHN,zh,CNR 1,,Yiwu/XTS8103 (XJ),43.247222,94.699444,,1,,6266,61,120,,2025-1805,1234567,,,36201330,,, +1359,CHN,zh,CNR 1,,Hongyuan/SCTS537 (SC),32.788625,102.550411,,10,,7578,64,123,,2025-1805,1234567,,,36200164,,, +1359,CHN,zh,CNR 1,,Lushui/Liuku Zhen (YN),25.966667,98.833333,,10,,7918,72,126,,2025-1805,1234567,,,36200290,,, +1359,CHN,zh,CNR 1,,Siping/Shanmen Zhen (JL),43.101389,124.423333,,10,,7874,43,126,,2025-1805,1234567,,,36200282,,, +1359,CHN,zh,CNR 1,,Ankang/Shuangquan (SX),32.733333,108.983333,,10,,7971,60,127,,2025-1805,1234567,4,,50572,,, +1359,CHN,zh,CNR 1,,Dali/SARFT653 (YN),25.716667,100.166667,,10,,8025,71,127,,2025-1805,1234567,,,50575,,, +1359,CHN,zh,CNR 1,,Yingjiang (YN),24.694517,97.950522,,10,,7968,73,127,,2025-1805,1234567,,,36201026,,, +1359,CHN,zh,CNR 1,,Ji'an (JL),41.116667,126.183333,,10,,8138,43,128,,2025-1805,1234567,,,36201030,,, +1359,CHN,zh,CNR 1,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,10,,8308,53,130,,2025-1805,1234567,,,36200279,,, +1359,CHN,zh,CNR 1,,Tongxin (NX),36.98575,105.904472,,1,,7428,59,131,,2025-1805,1234567,,,36201326,,, +1359,CHN,zh,CNR 1,,Funing (YN),23.616667,105.633333,,10,,8555,68,132,,2025-1805,1234567,,,36200297,,, +1359,CHN,zh,CNR 1,,Hekou/Binlangzhai (YN),22.527778,103.966944,,10,,8544,70,132,,0300-0500,1234567,,,36200294,,, +1359,CHN,zh,CNR 1,,Hekou/Binlangzhai (YN),22.527778,103.966944,,10,,8544,70,132,,0900-1600,1234567,,,36200294,,, +1359,CHN,zh,CNR 1,,Hekou/Binlangzhai (YN),22.527778,103.966944,,10,,8544,70,132,,2200-0100,1234567,,,36200294,,, +1359,CHN,zh,CNR 1,,Mengla (YN),21.466667,101.583333,,10,,8481,73,132,,2025-1805,1234567,,,36200287,,, +1359,CHN,zh,CNR 1,,Nanjing/Gulizhen (JS),31.862533,118.671722,,10,,8601,54,132,,2025-1805,1234567,,,36200167,,, +1359,CHN,zh,CNR 1,,Wayuan (YN),34.95,104.5,,1,,7515,61,132,,2025-1805,1234567,,,36201027,,, +1359,CHN,zh,CNR 1,,Wenshan/YNTS703 (YN),23.335278,104.298889,,10,,8495,69,132,,2025-1805,1234567,,,36200170,,, +1359,CHN,zh,CNR 1,,Yulin (SA),38.299722,109.735,,1,,7538,56,132,,2025-1805,1234567,,,36200171,,, +1359,CHN,zh,CNR 1,,Chongzuo (GX),22.416667,107.366667,,10,,8770,68,133,,2025-1805,1234567,,,36200298,,, +1359,CHN,zh,CNR 1,,Jingxi (GX),23.133333,106.416667,,10,,8647,68,133,,2025-1805,1234567,,,36201029,,, +1359,CHN,zh,CNR 1,,Longzhou (GX),22.35,106.85,,10,,8743,68,133,,2025-1805,1234567,,,36201028,,, +1359,CHN,zh,CNR 1,,Nantong (JS),31.855833,121.010556,,10,,8729,52,133,,2025-1805,1234567,,,36200168,,, +1359,CHN,zh,CNR 1,,Chengde/HBTS1084 (HB),40.966667,117.933333,,1,,7748,49,134,,2025-1805,1234567,,,36200299,,, +1359,CHN,zh,CNR 1,,Lishui (ZJ),28.465411,119.958611,,10,,8981,55,134,,2025-1805,1234567,,,36201318,,, +1359,CHN,zh,CNR 1,,Sanming/FJTS701 (FJ),26.242222,117.621289,,10,,9051,58,134,,2025-1805,1234567,,,36200285,,, +1359,CHN,zh,CNR 1,,Xiamen=Amoy/FJTS202 (FJ),24.492694,118.03595,,10,,9233,58,134,,2025-1805,1234567,,,36200280,,, +1359,THA,th,Thor. Phor. Song,,Sakon Nakhon/Fort Krit Siwara (snk),17.186944,104.105556,,10,,9018,73,134,,????-1405,1234567,,,50613,,, +1359,CHN,zh,CNR 1,,Maoxian/SCTS545 (SC),31,103.4,,1,,7781,65,135,,2025-1805,1234567,,,36200288,,, +1359,CHN,zh,CNR 1,,Shangrila=Xianggelila (YN),27.82,99.686389,,1,,7816,70,135,,2025-1805,1234567,,,36200284,,, +1359,CHN,zh,CNR 1,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,2025-1805,1234567,,,36200169,,, +1359,CHN,,Yunnan RGD Xinwen Guangbo,,Menglian (YN),24.6,98.8,,1,,8031,73,137,,,,,,36200286,,, +1359,CHN,zh,CNR 1,,Ruili (YN),24.020556,97.873333,,1,,8020,74,137,,2025-1805,1234567,,,36201323,,, +1359,CHN,zh,CNR 1,,Baishan (JL),41.95,126.433333,,1,,8073,42,138,,2025-1805,1234567,,,36200302,,, +1359,CHN,zh,CNR 1,,Songjianghe/JLTS154 (JL),42.158839,127.475194,,1,,8101,42,138,,2025-1805,1234567,,,36200296,,, +1359,CHN,zh,CNR 1,,Wangqing (JL),43.316667,129.75,,1,,8094,40,138,,2025-1805,1234567,,,36201327,,, +1359,CHN,zh,CNR 1,,Zhenkang (YN),23.9,99.033333,,1,,8106,73,138,,2025-1805,1234567,,,36201024,,, +1359,CHN,zh,CNR 1,,Baoshan/YNTS702 (YN),26.366667,104.5,,1,,8246,67,139,,2025-1805,1234567,,,36200301,,, +1359,CHN,zh,CNR 1,,Lincang/YNTS699 (YN),23.9,100.033333,,1,,8171,72,139,,2025-1805,1234567,,,36200291,,, +1359,CHN,,Yunnan RGD Xinwen Guangbo,,Yuxi/YNTS693 (YN),24.402556,102.513944,,1,,8288,70,140,,,,,,36200276,,, +1359,CHN,zh,CNR 1,,Raoping (GD),23.698142,116.977539,,3,,9244,60,140,,2025-1805,1234567,,,36201322,,, +1359,CHN,zh,CNR 1,,Simao/YNTS655 (YN),22.81,100.978333,,1,,8326,72,140,,2025-1805,1234567,,,36200283,,, +1359,CHN,zh,CNR 1,,Xiuwen/GZTS645 (GZ),26.86685,106.725539,,1,,8341,65,140,,2025-1805,1234567,,,36201329,,, +1359,PHL,tl,DZYR-AM,,San Fernando (lun),16.616667,120.316667,,5,,10089,61,140,,2000-????,1234567,6,,50610,,, +1359,CHN,zh,CNR 1,,Gejiu/YNTS654 (YN),23.398333,103.161389,,1,,8417,70,141,,2025-1805,1234567,,,36200295,,, +1359,CHN,zh,CNR 1,,Guiyang (GZ),26.416667,106.6,,1,,8373,66,141,,2025-1805,1234567,,,36200163,,, +1359,CHN,zh,CNR 1,,Jiangcheng (YN),22.6,101.833333,,1,,8400,72,141,,2025-1805,1234567,,,49192,,, +1359,CHN,zh,CNR 1,,Jinping (YN),24.05,104.2,,1,,8427,69,141,,2025-1805,1234567,,,36201321,,, +1359,CHN,zh,CNR 1,,Kaili/GZTS706 (GZ),26.583333,107.983333,,1,,8444,65,141,,2025-1805,1234567,,,36200293,,, +1359,CHN,zh,CNR 1,,Luxi/YNTS705 (YN),24.516667,103.766667,,1,,8359,69,141,,2025-1805,1234567,,,36200289,,, +1359,KOR,,AFN Korea-Thunder AM,,Songtan/Osan Air Base (gye),37.116667,127.1,,1,,8553,45,142,,0000-2400,1234567,,,50607,,, +1359,CHN,zh,CNR 1,,Daxin (GX),22.846944,107.188889,,1,,8721,68,143,,2025-1805,1234567,,,36201031,,, +1359,CHN,zh,CNR 1,,Hangzhou/ZJTS4 (ZJ),30.266667,120.133333,,1,,8826,54,143,,2025-1805,1234567,,,36200162,,, +1359,CHN,zh,CNR 1,,Quzhou (ZJ),28.981778,118.833222,,1,,8871,55,143,,2025-1805,1234567,,,36201246,,, +1359,CHN,zh,CNR 1,,Jianyang/FJTS801 (FJ),27.316667,118.136111,,1,,8983,57,144,,2025-1805,1234567,,,36201320,,, +1359,CHN,zh,CNR 1,,Longyan/FJTS601 (FJ),25.063333,117.027778,,1,,9123,59,144,,2025-1805,1234567,,,36200166,,, +1359,CHN,zh,CNR 1,,Taizhou (ZJ),28.612222,121.415278,,1,,9048,54,144,,2025-1805,1234567,,,36201325,,, +1359,CHN,zh,CNR 1,,Xiapu/FJTS904 (FJ),26.883333,120,,1,,9128,56,144,,2025-1805,1234567,,,36201328,,, +1359,CHN,zh,CNR 1,,Zhangzhou/FJTS501 (FJ),24.5,117.666667,,1,,9211,59,144,,2025-1805,1234567,,,36201025,,, +1359,CHN,zh,CNR 1,,Chaozhou (GD),23.697778,116.977778,,1,,9244,60,145,,2025-1805,1234567,,,36200300,,, +1359,PHL,,DYSJ-AM IBC,,San Jose de Buenavista (atq),10.75,121.933333,,1,,10728,63,149,,,,,,33300004,,, +1359,J,,NHK R 2,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,0000-1500,1.....7,,,50589,,, +1359,J,,NHK R 2,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,0000-1635,.2345..,,,50589,,, +1359,J,,NHK R 2,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,0000-1640,.....6.,,,50589,,, +1359,J,,NHK R 2,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,2030-2400,1234567,,,50589,,, +1359,J,,NHK R 2,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,0000-1500,1.....7,,,50596,,, +1359,J,,NHK R 2,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,0000-1635,.2345..,,,50596,,, +1359,J,,NHK R 2,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,0000-1640,.....6.,,,50596,,, +1359,J,,NHK R 2,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,2030-2400,1234567,,,50596,,, +1359,J,,NHK R 2,,Esashi (hok),41.85,140.133333,,0.1,,8657,33,153,,0000-1500,1.....7,,,50581,,, +1359,J,,NHK R 2,,Esashi (hok),41.85,140.133333,,0.1,,8657,33,153,,0000-1635,.2345..,,,50581,,, +1359,J,,NHK R 2,,Esashi (hok),41.85,140.133333,,0.1,,8657,33,153,,0000-1640,.....6.,,,50581,,, +1359,J,,NHK R 2,,Esashi (hok),41.85,140.133333,,0.1,,8657,33,153,,2030-2400,1234567,,,50581,,, +1359,J,,NHK R 2,,Miyako (toh-iwa),39.633333,141.966667,,0.1,,8947,33,153,,2030-1500,1.....7,,,50587,,, +1359,J,,NHK R 2,,Miyako (toh-iwa),39.633333,141.966667,,0.1,,8947,33,153,,2030-1635,.2345..,,,50587,,, +1359,J,,NHK R 2,,Miyako (toh-iwa),39.633333,141.966667,,0.1,,8947,33,153,,2030-1640,.....6.,,,50587,,, +1359,J,,NHK R 2,,Nemuro (hok),43.333333,145.6,,0.1,,8702,29,153,,2030-1500,1.....7,,,50591,,, +1359,J,,NHK R 2,,Nemuro (hok),43.333333,145.6,,0.1,,8702,29,153,,2030-1635,.2345..,,,50591,,, +1359,J,,NHK R 2,,Nemuro (hok),43.333333,145.6,,0.1,,8702,29,153,,2030-1640,.....6.,,,50591,,, +1359,J,,NHK R 2,,Odate (toh-aki),40.266667,140.566667,,0.1,,8831,34,153,,2030-1500,1.....7,,,50593,,, +1359,J,,NHK R 2,,Odate (toh-aki),40.266667,140.566667,,0.1,,8831,34,153,,2030-1635,.2345..,,,50593,,, +1359,J,,NHK R 2,,Odate (toh-aki),40.266667,140.566667,,0.1,,8831,34,153,,2030-1640,.....6.,,,50593,,, +1359,J,,JOCZ NHK2,,Toyohashi (chu-aic),34.766667,137.366667,,0.1,,9246,39,154,,2030-1500,1.....7,,,50603,,, +1359,J,,JOCZ NHK2,,Toyohashi (chu-aic),34.766667,137.366667,,0.1,,9246,39,154,,2030-1635,.2345..,,,50603,,, +1359,J,,JOCZ NHK2,,Toyohashi (chu-aic),34.766667,137.366667,,0.1,,9246,39,154,,2030-1640,.....6.,,,50603,,, +1359,J,,JOUZ NHK2,,Shimonoseki (chu-yam),33.966667,130.933333,,0.1,,9034,44,154,,2030-1500,1.....7,,,50597,,, +1359,J,,JOUZ NHK2,,Shimonoseki (chu-yam),33.966667,130.933333,,0.1,,9034,44,154,,2030-1635,.2345..,,,50597,,, +1359,J,,JOUZ NHK2,,Shimonoseki (chu-yam),33.966667,130.933333,,0.1,,9034,44,154,,2030-1640,.....6.,,,50597,,, +1359,J,,NHK R 2,,Fukuchiyama (kns-kyo),35.3,135.116667,,0.1,,9096,40,154,,2030-1500,1.....7,,,50582,,, +1359,J,,NHK R 2,,Fukuchiyama (kns-kyo),35.3,135.116667,,0.1,,9096,40,154,,2030-1635,.2345..,,,50582,,, +1359,J,,NHK R 2,,Fukuchiyama (kns-kyo),35.3,135.116667,,0.1,,9096,40,154,,2030-1640,.....6.,,,50582,,, +1359,J,,NHK R 2,,Hamada (chg-shi),34.9,132.083333,,0.1,,8998,42,154,,2030-1500,1.....7,,,50583,,, +1359,J,,NHK R 2,,Hamada (chg-shi),34.9,132.083333,,0.1,,8998,42,154,,2030-1635,.2345..,,,50583,,, +1359,J,,NHK R 2,,Hamada (chg-shi),34.9,132.083333,,0.1,,8998,42,154,,2030-1640,.....6.,,,50583,,, +1359,J,,NHK R 2,,Ikeda (shi-tok),34.033333,133.816667,,0.1,,9161,42,154,,2030-1500,1.....7,,,50584,,, +1359,J,,NHK R 2,,Ikeda (shi-tok),34.033333,133.816667,,0.1,,9161,42,154,,2030-1635,.2345..,,,50584,,, +1359,J,,NHK R 2,,Ikeda (shi-tok),34.033333,133.816667,,0.1,,9161,42,154,,2030-1640,.....6.,,,50584,,, +1359,J,,NHK R 2,,Katsuyama (chu-fuk),36.016667,136.533333,,0.1,,9087,39,154,,2030-1500,1.....7,,,50585,,, +1359,J,,NHK R 2,,Katsuyama (chu-fuk),36.016667,136.533333,,0.1,,9087,39,154,,2030-1635,.2345..,,,50585,,, +1359,J,,NHK R 2,,Katsuyama (chu-fuk),36.016667,136.533333,,0.1,,9087,39,154,,2030-1640,.....6.,,,50585,,, +1359,J,,NHK R 2,,Kurayoshi (chg-tot),35.416667,133.8,,0.1,,9026,41,154,,2030-1500,1.....7,,,50586,,, +1359,J,,NHK R 2,,Kurayoshi (chg-tot),35.416667,133.8,,0.1,,9026,41,154,,2030-1635,.2345..,,,50586,,, +1359,J,,NHK R 2,,Kurayoshi (chg-tot),35.416667,133.8,,0.1,,9026,41,154,,2030-1640,.....6.,,,50586,,, +1359,J,,NHK R 2,,Miyakonojo (kyu-miy),31.766667,131.083333,,0.1,,9251,45,154,,2030-1500,1.....7,,,50588,,, +1359,J,,NHK R 2,,Miyakonojo (kyu-miy),31.766667,131.083333,,0.1,,9251,45,154,,2030-1635,.2345..,,,50588,,, +1359,J,,NHK R 2,,Miyakonojo (kyu-miy),31.766667,131.083333,,0.1,,9251,45,154,,2030-1640,.....6.,,,50588,,, +1359,J,,NHK R 2,,Nakatsugawa (chu-gif),35.483333,137.483333,,0.1,,9180,38,154,,2030-1500,1.....7,,,50590,,, +1359,J,,NHK R 2,,Nakatsugawa (chu-gif),35.483333,137.483333,,0.1,,9180,38,154,,2030-1635,.2345..,,,50590,,, +1359,J,,NHK R 2,,Nakatsugawa (chu-gif),35.483333,137.483333,,0.1,,9180,38,154,,2030-1640,.....6.,,,50590,,, +1359,J,,NHK R 2,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,2030-1500,1.....7,,,50592,,, +1359,J,,NHK R 2,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,2030-1635,.2345..,,,50592,,, +1359,J,,NHK R 2,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,2030-1640,.....6.,,,50592,,, +1359,J,,NHK R 2,,Ofunato (toh-iwa),39.083333,141.733333,,0.1,,8993,34,154,,2030-1500,1.....7,,,50594,,, +1359,J,,NHK R 2,,Ofunato (toh-iwa),39.083333,141.733333,,0.1,,8993,34,154,,2030-1635,.2345..,,,50594,,, +1359,J,,NHK R 2,,Ofunato (toh-iwa),39.083333,141.733333,,0.1,,8993,34,154,,2030-1640,.....6.,,,50594,,, +1359,J,,NHK R 2,,Okayasuwa (chu-nag),36.05,138.066667,,0.1,,9149,38,154,,2030-1500,1.....7,,,50595,,, +1359,J,,NHK R 2,,Okayasuwa (chu-nag),36.05,138.066667,,0.1,,9149,38,154,,2030-1635,.2345..,,,50595,,, +1359,J,,NHK R 2,,Okayasuwa (chu-nag),36.05,138.066667,,0.1,,9149,38,154,,2030-1640,.....6.,,,50595,,, +1359,J,,NHK R 2,,Shobara (chg-hir),34.85,133.033333,,0.1,,9046,42,154,,2030-1500,1.....7,,,50599,,, +1359,J,,NHK R 2,,Shobara (chg-hir),34.85,133.033333,,0.1,,9046,42,154,,2030-1635,.2345..,,,50599,,, +1359,J,,NHK R 2,,Shobara (chg-hir),34.85,133.033333,,0.1,,9046,42,154,,2030-1640,.....6.,,,50599,,, +1359,J,,NHK R 2,,Tadami (toh-fuk),37.3,139.366667,,0.1,,9078,36,154,,2030-1500,1.....7,,,50600,,, +1359,J,,NHK R 2,,Tadami (toh-fuk),37.3,139.366667,,0.1,,9078,36,154,,2030-1635,.2345..,,,50600,,, +1359,J,,NHK R 2,,Tadami (toh-fuk),37.3,139.366667,,0.1,,9078,36,154,,2030-1640,.....6.,,,50600,,, +1359,J,,NHK R 2,,Takachiho (chu-gif),32.7,131.3,,0.1,,9172,44,154,,2030-1500,1.....7,,,50601,,, +1359,J,,NHK R 2,,Takachiho (chu-gif),32.7,131.3,,0.1,,9172,44,154,,2030-1635,.2345..,,,50601,,, +1359,J,,NHK R 2,,Takachiho (chu-gif),32.7,131.3,,0.1,,9172,44,154,,2030-1640,.....6.,,,50601,,, +1359,J,,NHK R 2,,Takada (chu-nii),37.1,138.283333,,0.1,,9054,37,154,,2030-1500,1.....7,,,50602,,, +1359,J,,NHK R 2,,Takada (chu-nii),37.1,138.283333,,0.1,,9054,37,154,,2030-1635,.2345..,,,50602,,, +1359,J,,NHK R 2,,Takada (chu-nii),37.1,138.283333,,0.1,,9054,37,154,,2030-1640,.....6.,,,50602,,, +1359,J,,NHK R 2,,Tsuwano (chg-shi),34.45,131.766667,,0.1,,9027,43,154,,2030-1500,1.....7,,,50604,,, +1359,J,,NHK R 2,,Tsuwano (chg-shi),34.45,131.766667,,0.1,,9027,43,154,,2030-1635,.2345..,,,50604,,, +1359,J,,NHK R 2,,Tsuwano (chg-shi),34.45,131.766667,,0.1,,9027,43,154,,2030-1640,.....6.,,,50604,,, +1359,J,,NHK R 2,,Wajima (chu-ish),37.366667,136.916667,,0.1,,8971,38,154,,2030-1500,1.....7,,,50605,,, +1359,J,,NHK R 2,,Wajima (chu-ish),37.366667,136.916667,,0.1,,8971,38,154,,2030-1635,.2345..,,,50605,,, +1359,J,,NHK R 2,,Wajima (chu-ish),37.366667,136.916667,,0.1,,8971,38,154,,2030-1640,.....6.,,,50605,,, +1359,J,,NHK R 2,,Yonezawa (toh-yam),37.9,140.1,,0.1,,9048,35,154,,2030-1500,1.....7,,,50606,,, +1359,J,,NHK R 2,,Yonezawa (toh-yam),37.9,140.1,,0.1,,9048,35,154,,2030-1635,.2345..,,,50606,,, +1359,J,,NHK R 2,,Yonezawa (toh-yam),37.9,140.1,,0.1,,9048,35,154,,2030-1640,.....6.,,,50606,,, +1359,J,,NHK R 2,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,2030-1500,1.....7,,,50598,,, +1359,J,,NHK R 2,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,2030-1635,.2345..,,,50598,,, +1359,J,,NHK R 2,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,2030-1640,.....6.,,,50598,,, +1359,NZL,en,The Coast,,New Plymouth/Bell Block (TKI),-39.033111,174.131556,,2.5,,18280,38,170,,,,,,50608,,, +1359,AUS,en,4WK,,Toowoomba/37-41 Jones St (QLD),-27.538072,151.948867,,0.3,,16065,60,172,,0000-2400,1234567,9996,,50574,,, +1359,AUS,,Sport 927/Alive R,,Mildura/6 Byrne Court (VIC),-34.199083,142.172306,,0.2,,15996,78,174,,0000-2400,1234567,,,50573,,, +1359,NZL,,4XC More FM,,Queenstown (OTA),-45.05,168.7,,1,,18500,66,175,,,,,,50609,,, +1360,AFG,,R Nangarhar,,Jalalabad (nan),34.410667,70.4625,,10,,5350,85,101,,0230-0430,1234567,,,50617,,, +1360,AFG,,R Nangarhar,,Jalalabad (nan),34.410667,70.4625,,10,,5350,85,101,,1230-1430,1234567,,,50617,,, +1360,USA,,WDRC,,Hartford (D) (CT),41.813056,-72.696111,,5,,5806,292,108,,,,,,20016299,,, +1360,USA,,WDRC,,Hartford (N) (CT),41.813056,-72.696667,,5,,5806,292,108,,,,19,,41204,,, +1360,USA,en,WMNY,,McKeesport (D) (PA),40.408333,-79.927778,,5,,6362,295,114,,0000-1200,1234567,23,,42748,,, +1360,USA,en,WTAQ,,Green Bay (WI),44.430833,-88.080833,,5,,6537,304,115,,,,999,,43104,,, +1360,USA,en,WMOV,,Ravenswood (WV),38.964444,-81.769167,,5,,6587,295,116,,1200-2400,1234567,,,42372,,, +1360,USA,en,WSAI,,Cincinnati (OH),39.2475,-84.531111,,5,,6734,297,117,,,,0,,41019,,, +1360,USA,,WNJC,,Washington Township (NJ),39.789722,-75.103056,,0.8,,6107,292,119,,,,,,42475,,, +1360,USA,,KKBJ,,Bemidji (MN),47.442222,-94.865833,,2.5,,6671,310,120,,,,4,,38708,,, +1360,USA,,WKYO,,Caro (MI),43.458889,-83.394167,,1,,6340,300,120,,,,,,42107,,, +1360,USA,,WYOS,,Binghamton (NY),42.066944,-75.906111,,0.5,,5989,294,120,,,,1,,43540,,, +1360,USA,,WMNY,,McKeesport (N) (PA),40.311389,-79.849722,,1,,6365,295,121,,,,,,20016212,,, +1360,USA,,WPPA,,Pottsville (PA),40.698889,-76.195278,,0.5,,6108,293,121,,,,,,42725,,, +1360,USA,,KSCJ,,Sioux City (IA),42.556667,-96.336667,,5,,7148,307,122,,,,989,,39330,,, +1360,USA,en,WTOC,,Newton (NJ),41.039444,-74.738611,,0.32,,5991,293,122,,,,,,42487,,, +1360,USA,,WKMI,,Kalamazoo (MI),42.326667,-85.525833,,1,,6553,300,123,,,,,,42044,,, +1360,USA,,WCHL,,Chapel Hill (NC),35.938333,-79.026667,,1,,6651,291,124,,,,,,40995,,, +1360,USA,en,WHJC,,Matewan (WV),37.617222,-82.167778,,1,,6717,294,124,,,,,,41648,,, +1360,USA,,WGFA,,Watseka (IL),40.793611,-87.754722,,1,,6804,300,125,,,,,,41499,,, +1360,USA,,WLYN,,Lynn (MA),42.452778,-70.980556,,0.076,,5652,292,125,,,,,,42266,,, +1360,HTI,,R Liberte,,Port-au-Prince (oue),18.516667,-72.316667,,5,,7631,273,126,,,,,,52121,,, +1360,USA,,WHNR,,Cypress Gardens (FL),28.021111,-81.700556,,2.5,,7465,287,128,,,,9992,,41670,,, +1360,B,pt,ZYJ464 Rdio Bandeirantes,,Rio de Janeiro/So Gonalo (RJ),-22.794806,-43.055278,,50,,9611,225,129,,,,0,,36902212,,, +1360,USA,es,KKMO,,Tacoma (WA),47.305278,-122.4425,,5,,7940,326,129,,,,1,,38733,,, +1360,USA,,KDJW,,Amarillo (D) (TX),35.2425,-101.784167,,6,,8074,306,130,,,,,,38273,,, +1360,VEN,,YVTZ R Armonia,,Charallave (mir),10.316667,-66.816667,,5,,7961,263,130,,1000-0300,1234567,993,,45478,,, +1360,USA,,KUIK,,Hillsboro (OR),45.486944,-122.908611,,5,,8133,325,131,,,,998,,39572,,, +1360,VEN,,YVTW R Alegria,,Chivacoa (ycy),10.15,-68.9,,5,,8117,265,131,,,,,,45476,,, +1360,DOM,,HIXZ R Listin,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,,,,,37319,,, +1360,USA,,KNGN,,McCook (NE),40.222222,-100.693611,,1,,7581,308,133,,,,,,38993,,, +1360,USA,es,WKAT,,North Miami (FL),25.743333,-80.153889,,1,,7552,284,133,,,,0,,41955,,, +1360,VEN,,YVTI R Internacional,,Maracaibo (zul),10.666667,-71.666667,,5,,8261,267,133,,0000-2400,1234567,,,45468,,, +1360,GTM,,TGLK R Tic Tac LV del Tiempo,,Ciudad de Guatemala (gut),14.616667,-90.583333,,10,,9198,284,134,,1100-0500,1234567,,,40506,,, +1360,USA,,WOEN,,Olean (NY),42.105,-78.390278,,0.03,,6140,296,134,,,,,,42568,,, +1360,USA,en,WWOW,,Conneaut (OH),41.925556,-80.542222,,0.035,,6285,297,134,,,,35,,43421,,, +1360,MEX,es,XEZON-AM,,Tepetitlanapa (vcz),18.645122,-97.011461,,10,,9259,292,135,,,,,,45151,,, +1360,USA,,KHNC,,Johnstown (CO),40.386389,-104.905278,,1,,7788,311,135,,,,973,,38548,,, +1360,USA,,KMJM,,Cedar Rapids (IA),41.924444,-91.615278,,0.124,,6937,304,135,,,,,,38911,,, +1360,USA,,KRKK,,Rock Springs (WY),41.62,-109.238889,,1,,7896,315,136,,,,,,39254,,, +1360,CLM,es,HJMI,,Melgar (tol),4.2,-74.65,,5,,9029,266,137,,,,,,35901713,,, +1360,B,pt,ZYH469 Rdio Cultura de Paulo Afonso,,Paulo Afonso (BA),-9.393547,-38.230617,,1,,8051,227,138,,,,,,36902213,,, +1360,USA,es,KMNY,,Hurst (TX),32.774444,-96.964722,,0.89,,8014,301,138,,,,,,37928,,, +1360,USA,,KAHS,,El Dorado (KS),37.813056,-96.812222,,0.24,,7573,304,139,,,,,,37927,,, +1360,USA,,KWWJ,,Baytown (TX),29.774444,-95.015278,,1,,8158,297,139,,,,,,39766,,, +1360,USA,en,WWWJ,,Galax (VA),36.663333,-80.914444,,0.031,,6714,293,139,,,,,,43444,,, +1360,B,pt,ZYH650 Rdio Iracema,,Ip (CE),-4.303594,-40.691028,,0.25,,7677,231,140,,,,99,,36902209,,, +1360,B,pt,ZYJ605 Rdio Ouro Branco,,Currais Novos (RN),-6.261111,-36.509722,,0.25,,7655,227,140,,,,,,36902207,,, +1360,USA,,KOHU,,Hermiston (OR),45.865833,-119.3125,,0.5,,7954,323,140,,,,,,39066,,, +1360,USA,en,WCGL,,Jacksonville (FL),30.275833,-81.636667,,0.089,,7274,288,140,,,,,,40985,,, +1360,USA,en,WMOB,,Mobile (AL),30.690556,-88.025833,,0.212,,7648,293,140,,,,0,,42364,,, +1360,BOL,,CP270 Rdifusoras Jimenez,,El Alto (lpz),-16.5,-68.166667,,5,,10438,248,141,,0800-0100,1234567,,,52027,,, +1360,USA,,KRWC,,Buffalo (MN),45.166667,-93.919722,,0.027,,6803,308,141,,,,,,39317,,, +1360,USA,,WELP,,Easley (SC),34.839722,-82.639444,,0.036,,6968,293,141,,,,,,41290,,, +1360,USA,,WHCG,,Metter (GA),32.398889,-82.043333,,0.059,,7127,290,141,,,,,,41615,,, +1360,USA,,WLBK,,Dekalb (IL),41.938333,-88.750833,,0.024,,6772,302,141,,,,,,42134,,, +1360,USA,,WVRQ,,Viroqua (WI),43.534444,-90.873056,,0.023,,6766,305,141,,,,,,43342,,, +1360,CLM,es,HJTU R Oxigeno,,Cartagena (bol),10.468056,-75.5,,1,,8540,270,142,,,,968,,37651,,, +1360,EQA,,HCHG3 R Jerusalem AM,,Machala (oro),-3.25,-79.866667,,3,,10039,265,142,,,,,,36966,,, +1360,USA,,KBKB,,Fort Madison (IA),40.658333,-91.272222,,0.034,,7020,303,142,,,,,,38047,,, +1360,USA,,KFFA,,Helena (AR),34.5275,-90.63,,0.09,,7488,298,142,,,,,,38383,,, +1360,USA,,KKTX,,Corpus Christi (TX),27.800278,-97.461389,,1,,8478,298,142,,,,994,,38759,,, +1360,USA,,WFFF,,Columbia (MS),31.262222,-89.844722,,0.159,,7713,295,142,,,,,,41372,,, +1360,USA,en,WGJK,,Rome (GA),34.270833,-85.183333,,0.047,,7174,294,142,,,,,,43213,,, +1360,USA,en,WHBG,,Harrisonburg (VA),38.451111,-78.908056,,0.009,,6449,293,142,,,,,,41606,,, +1360,USA,en,WLWE,,Roanoke (AL),33.183889,-85.405833,,0.054,,7277,293,142,,,,,,41291,,, +1360,B,pt,ZYI383 Rdio Difusora Matogrossense Limi,,Corumb (MS),-19.016206,-57.664444,,2.5,,10029,238,143,,,,,,36902210,,, +1360,CLM,es,HJKB,,Zapatoca (sat),6.816667,-73.266667,,1,,8706,266,143,,,,,,35901714,,, +1360,USA,,KDJW,,Amarillo (N) (TX),35.242222,-101.783889,,0.32,,8075,306,143,,,,,,20012604,,, +1360,USA,,KFIV,i,Modesto (CA),37.689722,-120.953333,,0.95,,8805,320,143,,,,0,,38395,,, +1360,USA,,KLYR,,Clarksville (AR),35.4725,-93.491111,,0.098,,7579,300,143,,,,,,38868,,, +1360,USA,,KNIR,,New Iberia (LA),30.025556,-91.822222,,0.209,,7941,295,143,,,,,,38998,,, +1360,USA,,KPXQ,,Glendale (AZ),33.507778,-112.216944,,1,,8787,312,143,,,,9585,,39179,,, +1360,USA,,WBLC,,Lenoir City (TN),35.792222,-84.295833,,0.024,,6995,294,143,,,,,,40873,,, +1360,USA,,WFLW,,Monticello (KY),36.837222,-84.863889,,0.02,,6946,296,143,,,,,,41403,,, +1360,USA,en,KELE r:KELE-FM 92.5,,Mountain Grove (MO),37.135278,-92.249722,,0.06,,7367,301,143,,,,,,38322,,, +1360,CLM,es,HJRA,,Pereira (ris),4.716667,-75.666667,,1,,9053,267,144,,,,,,37634,,, +1360,CTR,,TICA R Celestial,,San Jos (sjs),9.933333,-84.066667,,1,,9170,277,144,,0000-2400,1234567,,,52158,,, +1360,HND,,HRDN,,Trinidad (bar),15.166667,-88.25,,1,,8995,283,144,,,,,,37747,,, +1360,HND,,HRLP18,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37784,,, +1360,USA,,WNAH,,Nashville (TN),36.191667,-86.773889,,0.027,,7116,296,144,,,,,,42424,,, +1360,USA,en,KLSD,,San Diego (CA),32.730278,-117.083611,,1,,9102,315,144,,,,,,38844,,, +1360,USA,en,WIXI,,Jasper (AL),33.82,-87.273889,,0.042,,7341,295,144,,,,,,43588,,, +1360,B,pt,ZYK281 Navegantes AM,,Porto Lucena (RS),-27.858056,-55.006111,,3,,10703,231,145,,,,,,36902211,,, +1360,MEX,es,XEY-AM R.Fiesta Retro,,Celaya (gua),20.51535,-100.765653,,1,,9326,296,145,,,,,,45080,,, +1360,B,pt,ZYK581 Rdio guas Quentes,,Fernandpolis (SP),-20.256219,-50.232311,,1,,9730,232,146,,,,,,36902205,,, +1360,EQA,,HCEG4 La Voz del C,, (pic),-0.25,-79.5,,1,,9750,267,146,,,,,,36913,,, +1360,EQA,,HCLE7,,Oriental (nap),-0.983333,-77.8,,1,,9699,265,146,,,,,,37007,,, +1360,EQA,,HCMT1,,Yaruqui (pic),-0.166667,-78.316667,,1,,9662,266,146,,,,,,37033,,, +1360,USA,,KMRN,,Cameron (MO),39.684722,-94.239444,,0.025,,7270,304,146,,,,,,38931,,, +1360,EQA,,HCEM4,,Portoviejo (man),-1.066667,-80.45,,1,,9887,267,147,,,,,,36920,,, +1360,MEX,es,XEDI-AM,,Chihuahua (chi),28.670636,-106.082722,,0.4,,8903,305,147,,,,,,43909,,, +1360,MEX,es,XEKF-AM La Z,,Iguala (gue),18.354039,-99.511872,,0.7,,9442,294,147,,,,,,44252,,, +1360,USA,,KACT,,Andrews (TX),32.347222,-102.556389,,0.24,,8374,304,147,,,,,,37913,,, +1360,PRU,,OAU3A R Intercontinental,,Yungay/Piquiq (anc),-9.138889,-77.744444,,1,,10413,260,148,,,,,,37000092,,, +1360,PRU,,OZX7R R Sicuani,,Sicuani (cus),-14.316667,-71.25,,1,,10441,252,148,,,,997,,40447,,, +1360,EQA,,HCRJ5,,Riobamba (chi),-1.666667,-78.65,,0.5,,9817,265,149,,,,,,37089,,, +1360,PRU,es,OCU4I La Nueva Q,,Lima (lim),-12.166667,-77.066667,,1,,10634,257,149,,,,8,,37000029,,, +1360,USA,,KBUY,,Ruidoso (NM),33.326111,-105.670556,,0.201,,8459,307,149,,,,,,38110,,, +1360,B,pt,ZYK261 Rdio Alvorada,,Marau/Morro dos Padres (RS),-28.452778,-52.207778,,0.5,,10613,229,152,,,,,,36902215,,, +1360,B,pt,ZYK759 Rdifuso Luzes da Ribalta,,Santa Brbara d'Oeste (SP),-22.766167,-47.403511,,0.25,,9823,228,152,,,,,,36902208,,, +1360,B,pt,ZYJ268 Lder AM,,Assa (PR),-23.381667,-50.856389,,0.25,,10061,231,153,,,,,,36902214,,, +1360,B,pt,ZYK739 Rdio Regional de Dracena,,Dracena/Rua Fortaleza (SP),-21.484511,-51.523967,,0.25,,9916,232,153,,,,,,36902206,,, +1360,B,pt,ZYJ265 Rdio Cidade Pato Branco,,Pato Branco (PR),-26.224167,-52.638333,,0.25,,10424,230,154,,,,,,36902217,,, +1360,PRG,,ZP37 R Yby Yau,,Araza Poty or Ybu Yau (cnc),-23,-56.5,,0.25,,10332,235,154,,0900-0300,1234567,,,51629,,, +1360,CHL,,CC136 R UBB,,Concepcin (BI),-36.716667,-73.066667,,1,,12504,239,155,,1040-0300,1234567,,,35811,,, +1360,URG,,CW41 R 41,,San Jos de Mayo (sj),-34.35,-56.666667,,0.5,,11393,229,155,,0900-0300,1234567,988,,36772,,, +1360,BOL,,CP143 R Libertad,,Villazon (pts),-22.116667,-65.616667,,0.25,,10784,243,156,,1100-0300,123456,,,36647,,, +1360,BOL,,CP143 R Libertad,,Villazon (pts),-22.116667,-65.616667,,0.25,,10784,243,156,,1100-2200,......7,,,36647,,, +1360,URG,,CV136,,Chiflero (ar),-30.416667,-56.5,,0.25,,11021,231,156,,,,,,36726,,, +1360,URG,,CW136 R Rio Branco,,Ro Branco (cl),-32.566667,-53.383333,,0.25,,11060,228,157,,0930-0230,1234567,,,36746,,, +1360,USA,,KWDJ,,Ridgecrest (CA),35.616111,-117.643056,,0.031,,8854,317,158,,,,,,39698,,, +1368,G,en,Manx R,,Douglas/Foxdale (IOM),54.168333,-4.605,,20,,769,292,52,,0600-0100,1234567,9977,,1371,,, +1368,I,,Challenger R,,Villa Estense (pd),45.157858,11.702367,,10,,865,151,56,,1200-1800,1234567,74,,4000009,,, +1368,I,en,Challenger R,,Villa Estense (pd),45.157858,11.702367,,10,,865,151,56,,1800-2400,1234567,74,,4000009,,, +1368,G,en,BBC R Humberside,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,1200-1400,1234567,1,,1368,,, +1368,G,en,BBC R Lincolnshire,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,0600-1200,12345..,1,,1368,,, +1368,G,en,BBC R Lincolnshire,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,0700-1200,.....67,1,,1368,,, +1368,G,en,BBC R Lincolnshire,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,1400-2400,1234567,1,,1368,,, +1368,G,en,BBC WS,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,0000-0600,12345..,1,,1368,,, +1368,G,en,BBC WS,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,0000-0700,.....67,1,,1368,,, +1368,G,en,BBC R 5 Live,,Duxhurst (EN-SUR),51.193528,-0.200167,,0.5,,467,260,65,,0000-0500,1234567,0,,1369,,, +1368,G,en,BBC Surrey,,Duxhurst (EN-SUR),51.193528,-0.200167,,0.5,,467,260,65,,0500-2400,1234567,0,,1369,,, +1368,G,en,BBC R 5 Live,,Swindon (EN-WLT),51.571556,-1.816083,,0.4,,568,267,67,,0000-0600,1234567,,,1370,,, +1368,G,en,BBC R Wiltshire,,Swindon (EN-WLT),51.571556,-1.816083,,0.4,,568,267,67,,0600-2400,1234567,,,1370,,, +1368,ISR,he,Galei Zahal,,Shivta/Hivan (hdm),30.933333,34.633333,,20,,3287,125,77,,0000-2400,1234567,,,1374,,, +1368,GRC,el,unid,,unknown,38.4,24.65,,1,,2077,130,78,,,,,,3400048,,, +1368,IRN,fa,IRIB R Golestan,,Gonbad-e Qabus (gsn),37.235556,55.053444,,100,,4093,94,78,,0000-2400,1234567,996,,52633,,, +1368,EGY,ar,ERTU Al-Barnameg al-Aam,,El-Kharga (wjd),25.401194,30.553944,,10,,3597,136,83,,0300-2400,1234567,,,1367,,, +1368,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,Qasr el-Farafra (wjd),27.077617,27.978894,,1,,3313,139,90,,0200-2200,1234567,,,1850,,, +1368,CHN,zh,CNR 1,,Karamay/XJTS7605 (XJ),45.606111,84.845833,,10,,5499,64,102,,2025-1805,1234567,,,50623,,, +1368,IND,,AIR Vividh Bharati,,Delhi D (DL),28.698556,77.210917,,20,,6250,85,107,,0025-0435,1234567,997,,50624,,, +1368,IND,,AIR Vividh Bharati,,Delhi D (DL),28.698556,77.210917,,20,,6250,85,107,,0900-1200,1234567,997,,50624,,, +1368,IND,,AIR Vividh Bharati,,Delhi D (DL),28.698556,77.210917,,20,,6250,85,107,,1245-1730,1234567,997,,50624,,, +1368,CHN,mn,Nei Menggu RGD Mongyol,,Oroqen=Elunchun/NMTS051 (NM),50.583333,123.716667,,10,,7170,39,119,,2150-1605,1234567,,,36201023,,, +1368,CHN,mn,Nei Menggu RGD Mongyol,,Ulan Hua/NMTS078 (NM),41.527778,111.691667,,10,,7372,52,121,,2150-1605,1234567,,,36200275,,, +1368,SEY,,..,,Victoria (mhe),-4.618594,55.439722,,10,,7812,127,125,,0200-0930,1234567,,,2518,,, +1368,SEY,,SBC R,,Victoria (mhe),-4.618594,55.439722,,10,,7812,127,125,,1100-1800,1234567,,,2518,,, +1368,CHN,,Jixi JGD,,Jixi (HL),45.298056,130.938611,,10,,7959,38,127,,,,,,50622,,, +1368,THA,th,Sor. Wor. Thor. (R Thailand),,Nan/Ban Khowang (nan),18.700556,100.742778,,25,,8666,75,129,,2200-1700,1234567,,,50655,,, +1368,CHN,mn,Nei Menggu RGD Mongyol,,Jarud=Zalute/NMTS751 (NM),44.578917,120.913944,,1,,7576,44,133,,2150-1605,1234567,,,36201143,,, +1368,THA,th,Sor. Wor. Thor. (R Thailand),,Buriram/Niwat Road (brr),15.002222,103.100556,,10,,9144,76,134,,2200-1700,1234567,,,50653,,, +1368,THA,th,Thor. Or. 012,,Nakhon Pathom/Aviation School (npt),14.0975,99.944167,,10,,9013,79,134,,2200-1702,1234567,,,50654,,, +1368,J,,JOHP NHK1,,Takamatsu (shi-kag),34.315278,134.0625,,5,,9145,41,137,,0000-2400,1234567,,,50642,,, +1368,KRE,,KCBS Voice of Korea,,Pyongyang (pyo),39.153939,125.751983,,2,,8299,45,137,,0000-1800,1234567,,,50647,,, +1368,KRE,,KCBS Voice of Korea,,Pyongyang (pyo),39.153939,125.751983,,2,,8299,45,137,,2100-2400,1234567,,,50647,,, +1368,CHN,,Guangshui RGD,,Guangshui (HU),31.616667,113.816667,,1,,8350,57,141,,0000-0055,1234567,,,50621,,, +1368,CHN,,Guangshui RGD,,Guangshui (HU),31.616667,113.816667,,1,,8350,57,141,,0355-0515,1234567,,,50621,,, +1368,CHN,,Guangshui RGD,,Guangshui (HU),31.616667,113.816667,,1,,8350,57,141,,0955-1255,1234567,,,50621,,, +1368,CHN,,Guangshui RGD,,Guangshui (HU),31.616667,113.816667,,1,,8350,57,141,,2155-2400,1234567,,,50621,,, +1368,J,ja,JOTS HBC Hokkaido Hoso,,Wakkanai (hok),45.400833,141.672222,,1,,8361,31,141,,0000-2400,1234567,,,50645,,, +1368,KOR,ko,HLKO KBS 1 R,,Muju (jeb),36.007222,127.655278,,1,,8684,45,143,,,,,,52087,,, +1368,PHL,,DZBS-AM Radyo Ronda,,Baguio City/Bakawkan (bgt),16.416667,120.6,,2.5,,10124,61,143,,,,,,50649,,, +1368,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Changting/FJTS605 (FJ),25.266667,117.9,,1,,9155,58,144,,,,,,50620,,, +1368,J,,JOJP NHK1,,Tsuruoka (toh-yam),38.733333,139.866667,,1,,8956,35,144,,0000-2400,1234567,,,50644,,, +1368,J,,JOLG NHK1,,Tottori (chg-tot),35.516667,134.2,,1,,9034,41,144,,0000-2400,1234567,,,50643,,, +1368,PHL,tl,DXKO-AM Radyo Ronda,,Cagayan de Oro City (mor),8.472222,124.682778,,5,,11105,62,144,,2100-1300,1234567,1,,50650,,, +1368,TWN,,Chin Hsi chih Sheng/Fochiao KT,,Kaohsiung/Mituo (KH),22.775756,120.234861,,1,,9518,58,145,,,,,,50656,,, +1368,PHL,,DZRA-AM,,Virac/Catanduanes State College (ctd),13.585278,124.208889,,1,,10601,60,149,,,,,,50651,,, +1368,J,,NHK R 1,,Kawamoto (chg-shi),34.966667,132.483333,,0.1,,9010,42,154,,0000-2400,1234567,,,50636,,, +1368,J,,NHK R 1,,Koide (chu-nii),37.266667,138.983333,,0.1,,9066,36,154,,0000-2400,1234567,,,50637,,, +1368,J,,NHK R 1,,Nishiaizu (chg-yam),37.583333,139.65,,0.1,,9062,36,154,,0000-2400,1234567,,,50640,,, +1368,J,,NHK R 1,,Taisho (shi-koc),33.195,132.973056,,0.1,,9203,43,154,,0000-2400,1234567,,,50641,,, +1368,J,,NHK R 1,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,0000-2400,1234567,,,50646,,, +1368,J,ja,NHK R 1,,Susa,34.5,134,,0.1,,9124,41,154,,,,,,31400096,,, +1368,J,,NHK R 1,,Kumano (kns-mie),33.883333,136.1,,0.1,,9277,40,155,,0000-2400,1234567,,,50638,,, +1368,J,,NHK R 1,,Hirara (kyu-oki),24.8,125.283333,,0.1,,9613,53,156,,0000-2400,1234567,,,50635,,, +1368,AUS,,2GN,,Goulburn (NSW),-34.745681,149.696542,,2,,16533,71,166,,0000-2400,1234567,,,50619,,, +1368,NZL,,1XT Village R,,Tauranga (BOP),-37.816667,176.416667,,1,,18246,30,174,,2100-0500,......7,,,50648,,, +1368,NZL,,R Live,,Napier/Pakipaki (HKB),-39.692222,176.803333,,1,,18450,32,175,,,,,,32500006,,, +1370,USA,en,WQLL,,Pikesville (D) (MD),39.439722,-76.355556,,50,,6212,292,102,,,,,,43401,,, +1370,USA,,WDEA,,Ellsworth (ME),44.466667,-68.469722,,5,,5354,292,104,,,,3,,41143,,, +1370,USA,en,WQLL,,Pikesville (N) (MD),39.408056,-76.775556,,24,,6241,292,106,,,,,,20012582,,, +1370,USA,,WFEA,,Manchester (NH),42.907222,-71.4625,,5,,5651,293,107,,,,3,,41370,,, +1370,USA,en,WJIP (r:WKIP),,Ellenville (NY),41.738611,-74.396667,,5,,5919,293,109,,,,,,42937,,, +1370,USA,,WXXI,,Rochester (NY),43.100278,-77.573056,,5,,6017,296,110,,,,9982,,43499,,, +1370,USA,,WSPD,,Toledo (OH),41.600833,-83.536389,,5,,6491,299,115,,,,995,,43050,,, +1370,USA,,WVMR,,Frost (WV),38.290278,-79.931111,,5,,6525,294,115,,,,,,43312,,, +1370,CAN,en,CFOK,,Westlock (AB),54.087778,-113.878611,,10,,6980,325,117,,,,999,,35991,,, +1370,USA,,WHEE,,Martinsville (VA),36.685833,-79.903889,,5,,6649,292,117,,,,,,41621,,, +1370,USA,,KDTH,,Dubuque (IA),42.485,-90.644167,,5,,6837,304,118,,,,999,,38295,,, +1370,USA,,WDEF,,Chattanooga (TN),35.040556,-85.339444,,5,,7121,294,121,,,,,,41146,,, +1370,USA,,WLJW,,Cadillac (MI),44.231667,-85.4125,,1,,6400,302,121,,,,9987,,42178,,, +1370,USA,en,WWCB,,Corry (PA),41.936111,-79.655556,,0.5,,6230,297,122,,,,,,43359,,, +1370,DOM,,HIRP R Seybo,,Santa Cruz de El Seibo (sey),18.766667,-69.016667,,5,,7384,271,124,,0000-2400,1234567,,,37294,,, +1370,USA,,WLTH,,Gary (D) (IN),41.571389,-87.317222,,1,,6717,301,124,,,,,,20012597,,, +1370,USA,,WTKY,,Tompkinsville (KY),36.724167,-85.681389,,2.1,,7006,296,124,,,,,,43160,,, +1370,USA,,WBTN,,Bennington (VT),42.905278,-73.208889,,0.085,,5761,294,125,,,,,,40921,,, +1370,USA,,WALK,,East Patchogue (NY),40.753889,-72.987222,,0.102,,5901,291,126,,,,,,40696,,, +1370,USA,,WSHV,,South Hill (VA),36.744167,-78.161667,,0.41,,6533,291,126,,,,968,,43002,,, +1370,USA,en,WCOA,,Pensacola (FL),30.449167,-87.262778,,5,,7620,292,126,,,,,,41053,,, +1370,B,pt,ZYK766 Rdio Iguatemi,,So Paulo/Rua Jacofer 615 (SP),-23.509972,-46.678306,,100,,9858,227,127,,,,98,,36902220,,, +1370,USA,,KSUM,,Fairmont (MN),43.629167,-94.483333,,1,,6958,307,127,,,,986,,39431,,, +1370,USA,,KXTL,,Butte (MT),46.005833,-112.631667,,5,,7657,319,127,,,,988,,39828,,, +1370,USA,,WLTH,,Gary (N) (IN),41.539444,-87.3,,0.5,,6719,301,127,,,,,,42243,,, +1370,USA,,WLOV,,Washington (GA),33.733889,-82.719444,,1,,7062,292,128,,,,,,42213,,, +1370,PTR,xx,WIVV,,Viequez Island (PR),18.101944,-65.4725,,1,,7199,267,129,,0000-2400,1234567,983,,41821,,, +1370,USA,,WGCL,,Bloomington (IN),39.19,-86.634444,,0.5,,6866,299,129,,,,,,41487,,, +1370,USA,,KWTL,,Grand Forks (ND),47.883056,-97.112778,,0.27,,6752,312,130,,,,7,,39760,,, +1370,VEN,,YVOQ R La Pascua/Union R,,Valle de la Pascua (gco),9.266667,-66.066667,,5,,8002,262,130,,1000-0400,1234567,988,,45369,,, +1370,B,pt,ZYJ929 Rdio Capital do Agreste,,Itabaiana (SE),-10.673056,-37.383333,,5,,8136,225,131,,,,,,36902230,,, +1370,USA,,KSOP,,South Salt Lake (D) (UT),40.72,-111.928333,,5,,8107,316,131,,,,,,39399,,, +1370,USA,en,WPAZ,,Pottstown (PA),40.276389,-75.628889,,0.052,,6104,293,131,,,,,,42648,,, +1370,B,pt,ZYI892 Rdio Difusora AM,,Teresina (PI),-5.073889,-42.826667,,2.5,,7867,233,132,,,,,,36902225,,, +1370,USA,,KAWW,,Heber Springs (AR),35.486111,-92.034722,,1,,7492,299,132,,,,,,37991,,, +1370,VEN,es,YVSV RNV,,Acarigua/Araure (ptg),9.616667,-69.216667,,5,,8185,265,132,,1000-0400,1234567,987,,45461,,, +1370,USA,,KTPA,,Prescott (AR),33.793333,-93.395,,1,,7716,299,134,,1300-0100,1234567,,,39531,,, +1370,USA,,WKMC,,Roaring Spring (PA),40.323889,-78.394444,,0.038,,6274,294,134,,,,,,42042,,, +1370,USA,,WTAB,,Tabor City (NC),34.15,-78.861111,,0.109,,6782,289,134,,,,,,43098,,, +1370,VEN,,YVJI R Continente Cumbre,,Ejido (mrd),8.575,-71.183333,,5,,8410,265,134,,1000-0400,1234567,,,45346,,, +1370,HTI,,R Citadelle,,Cap-Hatien (nrd),19.75,-72.2,,0.5,,7518,274,135,,,,,,52122,,, +1370,HTI,,Rdiffusion Cayenne,,Les Cayes (sud),18.166667,-73.716667,,1,,7756,274,135,,,,,,35650,,, +1370,LAO,lo,LNR Champasak R,,Pakse=Pakx (cpk),15.115742,105.821822,,10,,9313,73,135,,2155-1400,1234567,,,50658,,, +1370,CLM,es,HJEQ RCN Cauca,,Popayn (cau),2.416667,-70.583333,,5,,8910,261,136,,,,,,37419,,, +1370,MEX,es,XEHF-AM R Frmula,,Nogales (son),31.313792,-110.935625,,5,,8925,310,136,,,,,,44111,,, +1370,USA,,KFRO,,Longview (TX),32.501944,-94.703333,,1,,7904,299,136,,,,,,38428,,, +1370,USA,,KZSF,,San Jose (CA),37.357778,-121.871389,,5,,8877,321,136,,,,33,,39908,,, +1370,CLM,es,HJKI R Mundial,,Bogot D. C. (bdc),4.583333,-74.116667,,5,,8959,265,137,,,,15,,37537,,, +1370,USA,,WCCN,,Neillsville (WI),44.571667,-90.585556,,0.042,,6667,305,137,,,,,,40966,,, +1370,USA,,WLLN,,Lillington (NC),35.387778,-78.806111,,0.049,,6681,290,137,,,,,,42188,,, +1370,USA,,KAST,,Astoria (OR),46.175278,-123.849444,,1,,8103,326,138,,,,1,,37975,,, +1370,USA,,KAWL,,York (NE),40.841667,-97.587778,,0.176,,7360,307,138,,,,,,37990,,, +1370,USA,,WVLY,,Moundsville (WV),39.905556,-80.778333,,0.02,,6453,295,138,,,,,,43308,,, +1370,B,pt,Rdio Vanguarda,,Caridade (CE),-4.237042,-39.202933,,0.25,,7592,230,139,,,,,,36902229,,, +1370,B,pt,ZYK374 Rdio Jornal da Manh,,Iju (RS),-28.367778,-53.897222,,10,,10692,230,139,,,,,,36902224,,, +1370,USA,,WGHN,,Grand Haven (MI),43.038056,-86.229444,,0.022,,6539,301,139,,,,,,41515,,, +1370,USA,,WGIV,,Pineville (NC),35.2125,-80.868333,,0.045,,6826,292,139,,,,,,42240,,, +1370,USA,,KWRT,,Boonville (MO),38.945556,-92.770556,,0.084,,7247,302,140,,,,,,39752,,, +1370,USA,,WRGS,,Rogersville (TN),36.416111,-82.984444,,0.04,,6863,294,140,,,,,,42845,,, +1370,USA,zh,KWRM,,Corona (CA),33.881111,-117.5425,,2.5,,9015,316,140,,,,9944,,39749,,, +1370,B,pt,ZYI800 Rdio Vale do Capibaribe,,Santa Cruz do Capibaribe (PE),-7.936075,-36.216278,,0.25,,7807,225,141,,,,,,36902226,,, +1370,B,pt,ZYJ618 Rdio Difusora AM,,So Miguel (RN),-6.216667,-38.5,,0.25,,7750,228,141,,,,,,36902218,,, +1370,USA,,KGNO,,Dodge City (KS),37.76,-100.098056,,0.23,,7761,306,141,,,,,,38500,,, +1370,USA,,KSOP,,South Salt Lake (N) (UT),40.72,-111.928056,,0.5,,8107,316,141,,,,,,20016197,,, +1370,USA,,WGOH,,Grayson (KY),38.328889,-82.975833,,0.021,,6711,296,141,,,,,,41544,,, +1370,USA,,WLLM,,Lincoln (IL),40.14,-89.386111,,0.035,,6953,301,141,,,,,,42187,,, +1370,USA,en,WRND,,Fort Campbell (KY),36.641111,-87.433611,,0.053,,7119,297,141,,,,,,42005,,, +1370,BOL,,CP288 Rdifusoras Coral,,Oruro (oru),-17.966667,-67.116667,,5,,10504,246,142,,1000-0400,123456,,,52029,,, +1370,BOL,,CP288 Rdifusoras Coral,,Oruro (oru),-17.966667,-67.116667,,5,,10504,246,142,,1100-2400,......7,,,52029,,, +1370,CLM,es,HJBD,,Ccuta (nsa),7.816667,-72.466667,,1,,8564,266,142,,,,,,37343,,, +1370,CLM,es,HJBO R Minuto de Dios,,Barranquilla (atl),10.866667,-74.783333,,1,,8456,270,142,,,,997,,37353,,, +1370,CLM,es,HJNI,,Sincelejo (suc),9.3,-75.316667,,1,,8629,269,142,,,,,,37587,,, +1370,USA,,KCRV,,Caruthersville (MO),36.213889,-89.690278,,0.063,,7291,298,142,,,,,,38207,,, +1370,USA,,WZTA,,Vero Beach (FL),27.600278,-80.3925,,0.074,,7414,286,142,,,,,,40782,,, +1370,CLM,es,HJNU,,Rionegro (ant),6.15,-75.333333,,1,,8905,267,143,,,,,,37598,,, +1370,EQA,,HCJS1,,Pimanpiro (imb),0.366667,-77.916667,,2,,9588,266,143,,,,,,36994,,, +1370,EQA,,HCRP7,,El Puyo (pas),-1.466667,-77.866667,,2,,9746,265,143,,,,,,37106,,, +1370,MEX,es,XEA-AM Ke Buena,,Campeche (cam),19.829392,-90.561931,,1,,8740,288,143,,,,,,43672,,, +1370,MEX,es,XEJE-AM R Reyna,,Dolores Hidalgo (gua),21.170056,-100.889836,,1.5,,9275,296,143,,,,,,44207,,, +1370,USA,,KJCE,,Rollingwood (TX),30.304167,-97.6475,,0.5,,8270,300,143,,,,,,38662,,, +1370,USA,,WDXE,,Lawrenceburg (TN),35.256944,-87.306667,,0.044,,7225,296,143,,,,,,41224,,, +1370,USA,,WLOP,,Jesup (GA),31.601667,-81.933333,,0.035,,7185,290,143,,,,,,42209,,, +1370,CLM,es,HJJQ,,Zarzal (val),4.4,-76.083333,,1,,9109,267,144,,,,,,35901727,,, +1370,HND,,HRBJ,,La Paz (lap),14.316667,-87.666667,,1,,9030,282,144,,,,,,37740,,, +1370,HND,,HRST,,San Pedro Sula (cor),15.466667,-88.016667,,1,,8953,283,144,,,,,,37846,,, +1370,HND,,HRTR,,Danli (elp),14.016667,-86.566667,,1,,8982,281,144,,,,,,37853,,, +1370,NCG,,Palabra de Mujer,,Bocana de Paiwas (ats),12.8,-85.133333,,1,,8992,279,144,,,,,,33700016,,, +1370,NCG,,R Patria,,Boaco (bco),12.466667,-85.666667,,1,,9057,279,144,,,,,,33700008,,, +1370,NCG,,YNRE R Somoto/R Fronteras,,Somoto (mdz),13.466667,-86.583333,,1,,9032,281,144,,,,,,52215,,, +1370,PNR,es,HOB64 R Sitrachilco,,Puerto Armuelles (chq),8.337778,-82.822222,,1,,9225,275,144,,1000-0200,1234567,,,52347,,, +1370,PRU,,OAZ7J R Santa Mnica,,Cusco (cus),-13.516667,-71.983333,,3,,10418,253,144,,,,,,2286,,, +1370,USA,en,KIOL,,Iola (KS),37.901944,-95.407222,,0.058,,7486,303,144,,,,,,37939,,, +1370,B,pt,ZYH555 Rdio Jornal Frande-Serto AM,,Monte Santo/Rua do Estadio (BA),-10.442222,-39.328889,,0.25,,8209,227,145,,,,,,36902231,,, +1370,B,pt,ZYJ267 Rdio Cano Nova,,Curitiba/Fazenda Guatup (PR),-25.486639,-49.132833,,2,,10173,228,145,,,,,,36902221,,, +1370,GTM,,TGAC LV de Colomba,,Colomba (qzt),14.683333,-91.716667,,1,,9266,285,145,,1200-0300,1234567,,,40472,,, +1370,HWA,en,KUPA,,Pearl City (HI),21.438333,-157.991389,,6.2,,11697,345,145,,,,0,,39587,,, +1370,MEX,es,XEGNK-AM Fiesta Mexicana,,Nuevo Laredo (tam),27.523403,-99.557272,,0.5,,8628,299,145,,,,,,44069,,, +1370,MEX,es,XEPJ-AM,,Guadalajara (jal),20.641853,-103.340219,,1,,9472,298,145,,,,996,,44552,,, +1370,USA,,KRAC,,Quincy (CA),39.948333,-120.898333,,0.5,,8585,321,145,,,,,,39132,,, +1370,USA,,WFDR,,Manchester (GA),32.887222,-84.598333,,0.028,,7250,292,145,,,,,,41369,,, +1370,USA,,WOCA,,Ocala (FL),29.201111,-82.151944,,0.033,,7396,288,146,,,,,,42558,,, +1370,EQA,,HCCP7,,Zamora (zam),-4.066667,-78.916667,,1,,10046,264,147,,,,,,36886,,, +1370,EQA,,HCEH3,,Progreso (loj),-3.95,-79.216667,,1,,10056,264,147,,,,,,36914,,, +1370,EQA,,R El Rocio,,Biblian (can),-2.7,-78.866667,,1,,9923,265,147,,,,8,,32600011,,, +1370,MEX,es,XEMON-AM R Frmula 2,,Monterrey (nvl),25.670947,-100.185289,,0.4,,8830,299,147,,,,,,44397,,, +1370,MEX,es,XESV-AM R Nicolaita,,Morelia (mic),19.689247,-101.200861,,0.5,,9427,296,148,,,,,,44778,,, +1370,URG,,CX42 Emis. Ciudad de Montevideo,,Montevideo (mo),-34.85,-56.133333,,2.5,,11411,228,148,,1100-0300,1234567,,,36818,,, +1370,BOL,,CP133 R Agricultura,,Achacachi (lpz),-16.016667,-68.65,,0.8,,10426,249,149,,1000-2400,1234567,,,36639,,, +1370,USA,,WMGO,,Canton (MS),32.626667,-90.029722,,0.028,,7610,296,149,,,,,,42318,,, +1370,USA,es,KWNC,,Quincy (WA),47.291667,-119.852778,,0.039,,7841,325,149,,,,,,39734,,, +1370,MEX,es,XEHG-AM Romntica 1370,,Mexicali (bcn),32.643822,-115.506411,,0.25,,9033,314,150,,,,,,44112,,, +1370,MEX,es,XERPU-AM La Z,,Durango (dur),24.030269,-104.617739,,0.25,,9241,301,150,,,,,,44703,,, +1370,ARG,,LRA54 R Nacional,,Ingeniero Jacobacci (rn),-41.283333,-69.583333,,3,,12692,233,151,,0900-0300,1234567,,,39957,,, +1370,ARG,,AM-1370,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,0000-2400,1234567,,,51856,,, +1370,B,pt,ZYK243 Me de Deus AM,,Flores da Cunha (RS),-29.106944,-51.181389,,0.5,,10622,228,152,,,,,,36902222,,, +1370,BOL,,CP158 R LV de Minero,,Llallagua/Campamento Siglo XX (pts),-18.366667,-66.616667,,0.5,,10508,246,152,,0900-1700,1234567,,,52028,,, +1370,BOL,,CP158 R LV de Minero,,Llallagua/Campamento Siglo XX (pts),-18.366667,-66.616667,,0.5,,10508,246,152,,2200-2300,1234567,,,52028,,, +1370,EQA,,HCUT2,,Milagro (gua),-2.166667,-79.866667,,0.3,,9944,266,152,,,,,,37156,,, +1370,PRU,,OAZ4O R Cosmos,,Huacho (lim),-13.166667,-76.5,,0.3,,10684,256,154,,,,,,40370,,, +1370,B,pt,ZYJ782 Rdio Peperi,,So Miguel do Oeste (SC),-26.716667,-53.533333,,0.25,,10518,231,155,,,,,,36902223,,, +1370,USA,,KGEN,,Tulare (CA),36.204444,-119.564722,,0.072,,8887,318,155,,,,,,38465,,, +1370,USA,en,WQFL351,,St. Rose/IMTT Corporation Yard (LA),29.941111,-90.326111,,0.01,,7855,294,155,,,,,,20010681,,, +1370,B,pt,ZYK334 Gazeta AM,,Alegrete (RS),-29.791667,-55.769444,,0.25,,10924,231,156,,,,,,36902227,,, +1370,CHL,,CD137 R Conun Hueno La Popular,,Temuco (AR),-38.75,-72.566667,,1,,12646,237,156,,1100-0400,12345.7,,,35876,,, +1370,CHL,,CD137 R Conun Hueno La Popular,,Temuco (AR),-38.75,-72.566667,,1,,12646,237,156,,1100-0800,.....6.,,,35876,,, +1370,USA,en,WQFL351,,Bayou Gauche (LA),29.811022,-90.427683,,0.01,,7872,294,156,,,,,,20010683,,, +1370,USA,en,WQFL351,,Boutte/Hahnville High School (LA),29.894311,-90.411008,,0.01,,7864,294,156,,,,,,20010680,,, +1370,USA,en,WQFL351,,Taft (LA),29.988333,-90.460961,,0.01,,7859,294,156,,,,,,20010682,,, +1370,BOL,,CP186 R Libertad,,Cliza (cbb),-17.6,-65.9,,0.15,,10395,245,157,,0930-0300,1234567,,,36673,,, +1370,URG,,CV137 R Real,,Minas de Corrales (rv),-31.583889,-55.444444,,0.25,,11074,230,157,,0930-0130,1234567,,,36727,,, +1370,URG,,CW137 R San Javier,,San Javier (rn),-32.666667,-58.116667,,0.25,,11314,231,157,,1000-2400,1234567,,,36747,,, +1370,PRU,,OAX6T R Moquegua,,Moquegua (moq),-17.316667,-70.916667,,0.05,,10686,250,162,,,,,,40342,,, +1372,INS,id,R Pesona Asturia,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,35400088,,, +1376,INS,id,R Angkasa Mega,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400089,,, +1377,F,fr,France Info,,Lille/Camphin-en-Carembault (59),50.518125,2.995008,,300,,296,235,35,,0000-2400,1234567,9999,,1377,,, +1377,ARM,ar,TWR Asia,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,ME,1900-2000,1234567,0,,52493,,, +1377,ARM,fa,ERF/TWR,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,ME,1715-1900,1234567,0,,52493,,, +1377,ARM,fa,Voice of Russia,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,ME,1500-1700,1234567,0,,52493,,, +1377,ARM,ku,ERF/TWR,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,ME,1700-1715,1234567,0,,52493,,, +1377,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,,0200-0400,1234567,0,,52493,,, +1377,UKR,uk,R Khvylia,,Vinnytsya/Zarvantsi (VI),49.246594,28.398489,,7,,1575,93,64,,1000-1415,1234567,6,,51620,,, +1377,UKR,uk,R Kanal Mykolaiv,,Mykolaiv/Varvarivske ROC (MY),46.986972,31.928083,,3.7,,1916,97,70,,0600-1800,12345..,0,,1383,,, +1377,UKR,uk,R Kanal Mykolaiv,,Mykolaiv/Varvarivske ROC (MY),46.986972,31.928083,,3.7,,1916,97,70,,0800-1800,.....67,0,,1383,,, +1377,G,,Asian Sound R,,Ashton Moss/NGW (EN-GTM),53.482917,-2.128639,,0.08,,594,288,74,,0000-2400,1234567,55,,1378,,, +1377,IRN,fa,IRIB R Kermanshah,,Paveh (ksh),35.053417,46.344389,,10,,3668,105,84,,,,0,,1770,,, +1377,IRN,fa,IRIB R Zahedan,,Chah Bahar (sib),25.481778,60.537972,,50,,5378,102,94,,0000-2400,1234567,0,,1379,,, +1377,IRN,,unid Jammer,,unknown,32.5,53.625,,1,,4350,101,101,,,,,,10800004,,, +1377,TZA,,R Free Africa,,Mwanza (mwz),-2.484594,32.912156,,50,,6562,149,106,,0500-2400,1234567,9915,,1758,,, +1377,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,0000-0030,1234567,,,50666,,, +1377,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1030-1100,1234567,,,50666,,, +1377,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,2230-2300,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,0030-0600,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,0600-1000,1.34567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1000-1030,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1100-1800,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,2000-2230,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,2300-2400,1234567,,,50666,,, +1377,CHN,zh,CNR 1,,Xingyang/SARFT554 (HE),34.807833,113.388,,600,295,8045,55,110,,2025-1805,1234567,0,,50670,,, +1377,IND,,AIR South,,Hyderabad B (AP),17.338333,78.56,,20,,7282,93,117,,0025-0415,1234567,9980,,50671,,, +1377,IND,,AIR South,,Hyderabad B (AP),17.338333,78.56,,20,,7282,93,117,,0730-0930,1234567,9980,,50671,,, +1377,IND,,AIR South,,Hyderabad B (AP),17.338333,78.56,,20,,7282,93,117,,1200-1735,1234567,9980,,50671,,, +1377,CHN,zh,CNR 1,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,0000-0030,1234567,,,36201170,,, +1377,CHN,zh,CNR 1,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,1030-1100,1234567,,,36201170,,, +1377,CHN,zh,CNR 1,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,2230-2300,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,0030-0600,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,0600-1000,1.34567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,1000-1030,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,1100-1800,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,2000-2230,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,2300-2400,1234567,,,36201170,,, +1377,CHN,,Qingdao RGD,,Qingdao/SDTS135 (SD),36.121111,120.350556,,10,,8306,50,130,,,,,,50667,,, +1377,CHN,,Qingtongxia RGD,,Qingtongxia (NX),38.013611,106.082778,,1,,7353,58,131,,,,,,50668,,, +1377,THA,th,Wor. Phon Sii,,Phitsanulok (psl),16.833333,100.266667,,10,,8796,77,133,,2100-1700,1234567,,,50684,,, +1377,THA,th,Sor. Wor. Thor. (R Thailand),,Chumphon (cpn),10.458056,99.131111,,10,,9276,81,135,,2200-1600,1234567,,,50683,,, +1377,J,ja,JOUC NHK2,,Yamaguchi/Hofu-Shi (chg-yam),34.030556,131.510556,,5,,9055,43,137,,2030-1500,1.....7,,,50677,,, +1377,J,ja,JOUC NHK2,,Yamaguchi/Hofu-Shi (chg-yam),34.030556,131.510556,,5,,9055,43,137,,2030-1635,.2345..,,,50677,,, +1377,J,ja,JOUC NHK2,,Yamaguchi/Hofu-Shi (chg-yam),34.030556,131.510556,,5,,9055,43,137,,2030-1640,.....6.,,,50677,,, +1377,PHL,tl,DXKP-AM Radyo Ronda,,Pagadian City (zds),7.816667,123.433333,,10,,11090,64,141,,2000-1200,1234567,,,50679,,, +1377,CHN,,Chuzhou RGD Gushi Fuwu,,Chuzhou (AH),32.285167,118.346917,,1,,8545,54,142,,,,,,50664,,, +1377,INS,id,RRI Pro-1,,Toli-Toli (ST-tol),1.0175,120.790278,,10,,11548,70,142,,2055-1600,1234567,,,35400015,,, +1377,J,ja,JOTZ NHK2,,Hachinohe (toh-aom),40.4625,141.469722,,1,,8845,33,143,,2030-1500,1.....7,,,50675,,, +1377,J,ja,JOTZ NHK2,,Hachinohe (toh-aom),40.4625,141.469722,,1,,8845,33,143,,2030-1635,.2345..,,,50675,,, +1377,J,ja,JOTZ NHK2,,Hachinohe (toh-aom),40.4625,141.469722,,1,,8845,33,143,,2030-1640,.....6.,,,50675,,, +1377,CHN,zh,CNR 2,,Yuhuan (ZJ),28.133333,121.233333,,1,,9082,54,144,,2100-1602,1234567,,,36201169,,, +1377,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Nanping/FJTS802 (FJ),26.65,118.166667,,1,,9045,57,144,,,,,,36200274,,, +1377,J,ja,JOAC NHK2,,Nagasaki (kyu-nag),32.720556,129.883889,,1,,9102,45,144,,2030-1500,1.....7,,,50676,,, +1377,J,ja,JOAC NHK2,,Nagasaki (kyu-nag),32.720556,129.883889,,1,,9102,45,144,,2030-1635,.2345..,,,50676,,, +1377,J,ja,JOAC NHK2,,Nagasaki (kyu-nag),32.720556,129.883889,,1,,9102,45,144,,2030-1640,.....6.,,,50676,,, +1377,INS,id,R Top FM,,Sukoharjo (JT-suk),-7.680556,110.841667,,0.25,,11665,83,158,,,,9,,50674,,, +1377,NZL,,2XX R Sport,,Levin/Te Horo (WGN),-40.8075,175.085278,,2,,18492,39,172,,0000-2400,1234567,,,50678,,, +1380,CAN,,CKPC,,Brantford (ON),43.051389,-80.313611,,25,,6187,298,105,,,,1,,36370,,, +1380,USA,zh,WKDM,,New York/Carlstadt [NJ] (NY),40.820278,-74.069167,,13,,5965,292,106,,,,9986,,41985,,, +1380,USA,,WPHM,,Port Huron (MI),42.863889,-82.494444,,5,,6332,299,113,,,,1,,42686,,, +1380,USA,en,WMYF,i,Portsmouth (NH),43.063333,-70.785833,,1,,5597,292,113,,,,,,42417,,, +1380,USA,,WSYB,,Rutland (VT),43.593056,-72.990278,,1,,5698,294,114,,,,8,,43092,,, +1380,USA,es,WBTK,,Richmond (VA),37.621111,-77.448889,,5,,6420,291,114,,,,,,40919,,, +1380,USA,,WAOK,,Atlanta (D) (GA),33.760833,-84.478333,,25,,7171,293,115,,,,,,20016295,,, +1380,USA,,WKJG,,Fort Wayne (IN),41.004167,-85.099167,,5,,6630,299,116,,,,4,,42023,,, +1380,USA,,WTJK,,South Beloit (IL),42.459444,-89.028611,,5,,6746,303,117,,,,9,,43148,,, +1380,USA,en,KLIZ,,Brainerd (MN),46.331944,-94.173889,,5,,6723,309,117,,,,8,,38822,,, +1380,USA,en,KRKO,i,Everett (WA),47.875556,-122.078333,,50,,7872,326,119,,,,0,,39255,,, +1380,USA,es,WFNW,,Naugatuck (CT),41.509722,-73.055556,,0.5,,5851,292,119,,,,,,41419,,, +1380,USA,,WOTE,,Clintonville (WI),44.566944,-88.7425,,1.8,,6564,304,120,,,,,,41364,,, +1380,USA,,WTOB,,Winston-Salem (NC),36.148056,-80.319722,,2.5,,6717,292,120,,,,,,43189,,, +1380,USA,en,KXFN,,St. Louis (D) (MO),38.750278,-90.162778,,5,,7111,300,121,,,,,,39378,,, +1380,USA,en,WABH r:WEHH,,Bath (NY),42.314444,-77.285833,,0.45,,6057,295,121,,,,2,,40627,,, +1380,USA,,WAOK,,Atlanta (N) (GA),33.76,-84.479167,,4.2,,7171,293,122,,,,,,40730,,, +1380,USA,,KOTA,,Rapid City (SD),44.033333,-103.1875,,5,,7383,312,124,,,,998,,39105,,, +1380,USA,en,WWMI,,St. Petersburg (FL),27.870833,-82.6175,,6.5,,7537,287,124,,,,,,43406,,, +1380,USA,,WGLM,,Greenville (MI),43.158333,-85.254444,,0.5,,6473,301,125,,,,,,42965,,, +1380,USA,,WAGS,,Bishopville (SC),34.209722,-80.226111,,1,,6865,290,126,,,,,,40670,,, +1380,USA,,WELE,,Ormond Beach (FL),29.269167,-81.081667,,2.5,,7321,287,126,,,,,,41286,,, +1380,USA,,WKJV,,Asheville (NC),35.605278,-82.591944,,1,,6904,293,126,,,,,,42027,,, +1380,B,pt,ZYI773 Rdio Novas de Paz,,Recife (PE),-8.085731,-34.948011,,5,,7761,224,128,,,,1,,36902252,,, +1380,USA,,KCIM,,Carroll (IA),42.041389,-94.885,,1,,7111,306,128,,,,13,,38158,,, +1380,USA,en,KXFN,,St. Louis (N) (MO),38.524167,-90.238056,,1,,7134,300,128,,,,,,20016082,,, +1380,PTR,,WOLA,,Barranquitas (PR),18.183611,-66.306667,,1,,7249,268,129,,0900-0200,1234567,,,42592,,, +1380,USA,en,KDXE,,North Little Rock (AR),34.880278,-92.233611,,2.5,,7554,299,129,,,,,,38301,,, +1380,VEN,,YVJC,,Soledad (azg),8.116667,-63.566667,,5,,7935,259,129,,,,,,45343,,, +1380,VEN,,YVME R Fantasia,,Ciudad Bolivar (blv),8.133333,-63.55,,5,,7932,259,129,,,,,,51697,,, +1380,VEN,,YVNG Ondas del Mar,,Puerto Cabello (cbb),10.485094,-67.9762,,5,,8025,264,130,,0900-0359,1234567,994,,45345,,, +1380,DOM,,HISC R Nacional,,Santiago de los Caballeros (sto),19.466667,-70.666667,,1,,7438,272,131,,1000-0300,1234567,,,37297,,, +1380,USA,,WLRM,,Millington (TN),35.315556,-89.923056,,1,,7379,298,131,,,,,,42225,,, +1380,B,pt,Rdio Jericoacoara,,Jijoca de Jericoacoara (CE),-2.794444,-40.516389,,1,,7521,232,132,,,,,,36902240,,, +1380,USA,,WGYV,,Greenville (AL),31.833611,-86.601944,,1,,7463,293,132,,,,,,41589,,, +1380,USA,,WNRI,,Woonsocket (RI),42.016111,-71.491667,,0.018,,5715,292,132,,,,,,42502,,, +1380,PNR,es,Mujer AM,,San Pedro (pnm),9.045025,-79.461889,,10,,8934,272,134,,1130-0400,1234567,,,52348,,, +1380,USA,,WDLW,,Lorain (OH),41.43,-82.151944,,0.057,,6420,298,134,,,,,,41178,,, +1380,B,pt,ZYH283 Rdio Alvorada,,Parintins (AM),-2.639481,-56.724983,,5,,8458,247,135,,,,,,36902250,,, +1380,B,pt,ZYH495 Rdio Unio de Gandu,,Gandu (BA),-13.763889,-39.490833,,5,,8546,226,135,,,,,,36902248,,, +1380,B,pt,ZYL204 Rdio Ita,,Ina (ES),-20.326808,-41.546667,,10,,9295,224,135,,,,72,,36902866,,, +1380,HTI,,R Port-au-Prince,,Port-au-Prince (oue),18.516667,-72.316667,,0.7,,7631,273,135,,,,,,35630,,, +1380,CLM,es,HJEE RCN,,Tunja (boy),5.516667,-73.366667,,5,,8826,265,136,,,,25,,37409,,, +1380,USA,,KKRX,,Lawton (OK),34.59,-98.362222,,1,,7938,303,136,,,,,,39780,,, +1380,USA,,KQKD,,Redfield (SD),44.898056,-98.506389,,0.142,,7069,310,136,,,,,,39194,,, +1380,USA,,WMLP,,Milton (PA),40.997778,-76.871389,,0.018,,6128,294,136,,,,,,42346,,, +1380,USA,,WNLA,,Indianola (D) (MS),33.478056,-90.641111,,0.5,,7576,297,136,,,,,,20016047,,, +1380,USA,,WTYM,,Kittanning (PA),40.788611,-79.534722,,0.028,,6309,295,136,,,,,,43242,,, +1380,USA,en,KTKZ,,Sacramento (D) (CA),38.508056,-121.579444,,5,,8754,321,136,,,,8,,39500,,, +1380,USA,en,KTKZ,,Sacramento (N) (CA),38.5575,-121.180833,,5,,8732,321,136,,,,,,20016045,,, +1380,CHL,,CB138 R Corporacin,,Santiago (RM),-33.366667,-70.65,,50,,12077,239,137,,0000-2400,1234567,994,,2105,,, +1380,CLM,,HJIO,,Vde Conquist (met),3.583333,-73.666667,,5,,9016,264,137,,,,,,37495,,, +1380,SLV,,YSMM,,San Salvador (ssl),13.75,-89.216667,,5,,9183,283,137,,,,,,45299,,, +1380,USA,,KSRV,,Ontario (OR),44.043056,-116.972778,,1,,8028,321,137,,,,996,,39414,,, +1380,USA,,WCBG,,Waynesboro (PA),39.738889,-77.602778,,0.02,,6268,293,137,,,,,,41633,,, +1380,USA,,WLRV,,Lebanon (VA),36.921667,-82.104444,,0.063,,6768,294,137,,,,,,42228,,, +1380,USA,,WTMC,,Wilmington (DE),39.729444,-75.551944,,0.014,,6140,292,137,,,,,,43171,,, +1380,MEX,es,XECO-AM Romntica 1380,,Mxico D.F/Barrio Zapotla (dif),19.396014,-99.120994,,5,,9325,294,138,,,,,,43858,,, +1380,USA,,WYSH,,Clinton (TN),36.113333,-84.141667,,0.08,,6960,294,138,,,,,,43547,,, +1380,USA,,WNRR,,North Augusta (SC),33.488056,-81.946111,,0.07,,7033,291,139,,,,,,42656,,, +1380,USA,en,WPRH381,,Dover (DE),39.15,-75.516667,,0.01,,6181,291,139,,,,,,20010688,,, +1380,USA,en,WPRH381,,Dover/Sign Shop (DE),39.146583,-75.511025,,0.01,,6181,291,139,,,,,,20010685,,, +1380,USA,en,WPRH381,,Milford (DE),38.961022,-75.427889,,0.01,,6190,291,139,,,,,,20010686,,, +1380,USA,en,WPRH381,,Rehoboth Beach (DE),38.712056,-75.111014,,0.01,,6188,291,139,,,,,,20010687,,, +1380,USA,,KAGE,,Winona (MN),44.033889,-91.605,,0.028,,6767,305,140,,,,,,37920,,, +1380,USA,,WMJR,,Winchester (KY),37.9075,-84.478333,,0.038,,6837,296,140,,,,,,42338,,, +1380,CLM,es,HJMM,,Valledupar (ces),10.583333,-73.216667,,1,,8374,268,141,,,,983,,37570,,, +1380,VEN,,YVTL R Triunfo 13-80,,Caja Seca (mrd),9.183333,-71.083333,,1,,8350,266,141,,0900-0400,1234567,,,45470,,, +1380,EQA,,HCWV7,,Macas (mor),-2.316667,-78.116667,,3,,9838,264,142,,,,,,37186,,, +1380,USA,,KBWD,,Brownwood (TX),31.71,-98.96,,0.5,,8224,301,142,,,,,,38111,,, +1380,USA,,WMTD,,Hinton (WV),37.684167,-80.915278,,0.013,,6634,294,142,,,,,,42401,,, +1380,USA,es,WWRF,,Lake Worth (FL),26.622778,-80.072222,,0.103,,7474,285,142,,,,,,43426,,, +1380,CLM,,HJLM,,Medelln (ant),6.25,-75.516667,,1,,8908,267,143,,,,,,37551,,, +1380,CLM,es,HJJD,,Medelln (ant),6.283333,-75.533333,,1,,8907,268,143,,,,,,35901732,,, +1380,CLM,es,HJLG La Voz de la Dorada/Caracol,,La Dorada (cal),5.466667,-74.7,,1,,8921,266,143,,,,995,,37546,,, +1380,EQA,,HCOF4,,Chone (man),-0.65,-80.083333,,2,,9825,267,143,,,,,,37050,,, +1380,USA,,KCII,,Washington (IA),41.305,-91.71,,0.025,,6993,303,143,,,,,,38156,,, +1380,USA,,WRAB,,Arab (AL),34.335,-86.468611,,0.049,,7248,295,143,,,,,,42809,,, +1380,CLM,es,HJEJ,,Palmira (val),3.5,-76.316667,,1,,9204,266,144,,,,,,37412,,, +1380,CTR,,TIMS R Guanacaste,,Liberia (gnc),10.616667,-85.416667,,1,,9202,278,144,,1000-0500,1234567,,,40592,,, +1380,CTR,,TIMS R Guanacaste,,San Jos (sjs),9.933333,-84.066667,,1,,9170,277,144,,1000-0500,1234567,,,52159,,, +1380,MEX,es,XEGW-AM Mazz W,,Ciudad Victoria (tam),23.718869,-99.131328,,1,,8940,297,144,,,,,,44089,,, +1380,MEX,es,XETP-AM Sensacin,,Banderilla (vcz),19.575003,-96.907597,,1,,9170,292,144,,,,,,44849,,, +1380,PRU,,OAX6O R San Martin,,Arequipa (are),-16.35,-71.566667,,3,,10642,251,144,,,,,,40336,,, +1380,USA,,KOSS,,Lancaster (D) (CA),34.711944,-118.176111,,1,,8965,317,144,,,,18,,39717,,, +1380,USA,,KUVR,,Holdrege (NE),40.440556,-99.4,,0.062,,7493,308,144,,,,,,39603,,, +1380,USA,,WMTA,,Central City (KY),37.276111,-87.144167,,0.023,,7050,297,144,,,,,,42399,,, +1380,B,,ZYJ470,,Campos (RJ),-21.75,-41.316667,,1,,9425,224,145,,,,,,46085,,, +1380,B,,unid,,unknown,-14.5,-53.1,,1,,9343,237,145,,,,9,,52471,,, +1380,CLM,es,HJID Gigante,,La Plata (hui),2.416667,-75.583333,,1,,9249,265,145,,,,,,37488,,, +1380,USA,,WVSA,,Vernon (AL),33.795833,-88.1175,,0.039,,7395,295,145,,,,,,43343,,, +1380,EQA,,HCCV1 R Cristal RCQ,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,866,,36893,,, +1380,USA,,KCNW,,Fairway (KS),39.071944,-94.682778,,0.029,,7346,304,146,,,,,,38187,,, +1380,USA,,KHEY,,El Paso (TX),31.757222,-106.375833,,0.5,,8639,307,146,,,,,,38538,,, +1380,USA,,WNLA,,Indianola (N) (MS),33.458889,-90.629167,,0.044,,7577,297,146,,,,,,42478,,, +1380,B,pt,ZYK623 Rdio Cultura,,Pederneiras (SP),-22.351111,-48.778333,,1,,9854,229,147,,,,,,36902239,,, +1380,BOL,,CP342 R Bandera Tricolor,,Cochabamba (cbb),-17.366667,-66.166667,,1.5,,10390,246,147,,1100-0300,1234567,,,52030,,, +1380,EQA,,HCHB3,,Pinas (oro),-3.616667,-79.716667,,1,,10061,265,147,,,,,,36964,,, +1380,GTM,,TGEB R Momostenango Educativa,,Momostenango (tot),15.05,-91.416667,,0.5,,9214,285,147,,1100-1900,1234567,,,40491,,, +1380,MEX,es,XERS-AM Romntica,,Gmez Palacio (dur),25.55585,-103.475483,,0.5,,9035,301,147,,,,,,43615,,, +1380,B,pt,ZYJ821 Rdio Cidade AM,,Itaipolis (SC),-26.36,-49.911667,,1,,10296,228,148,,,,,,36902236,,, +1380,BOL,,R Misericordia,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,0900-0330,1234567,,,52034,,, +1380,PRG,,ZP8 R Concepcion LV del Norte,,Concepcion (cnc),-23.383333,-57.45,,1,,10421,236,148,,0930-0100,1234567,,,45560,,, +1380,PRU,,OAX2W R Atahualpa,,Cajamarca (caj),-7.166667,-78.5,,1,,10290,262,148,,,,,,40287,,, +1380,USA,es,WPYR,,Baton Rouge (LA),30.460833,-91.223056,,0.062,,7867,295,148,,,,2,,43536,,, +1380,B,pt,ZYK372 Chiru AM,,Palmitinho (RS),-27.35,-53.547778,,1,,10578,231,149,,,,,,36902233,,, +1380,B,pt,ZYK616 Rdio Difusora de Mogi Guau,,Mogi Guau (SP),-22.365817,-46.951356,,0.5,,9761,228,149,,,,,,36902235,,, +1380,EQA,,HCJR6,,Ambato (tun),-1.25,-78.616667,,0.5,,9778,265,149,,,,,,36993,,, +1380,USA,,KWMF,,Pleasanton (TX),29,-98.530556,,0.16,,8436,299,149,,,,,,38412,,, +1380,B,pt,ZYL323 Rdio Gorutubana AM,,Janaba (MG),-15.832161,-43.290761,,0.25,,8940,228,150,,,,,,36902249,,, +1380,B,pt,ZYL284 Rdio Paranaba,,Rio Paranaba (MG),-19.187642,-46.248439,,0.25,,9418,229,151,,,,,,36902246,,, +1380,USA,,KRCM,,Beaumont (TX),30.195,-95.390278,,0.06,,8144,298,151,,,,,,39224,,, +1380,ARG,,R La Voz,,Monte Chingolo (ba),-34.716667,-58.333333,,1,,11513,230,152,,,,,,51857,,, +1380,ARG,es,R Buenas Nuevas,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000019,,, +1380,B,pt,ZYK311 Rdio Maristela,,Torres (RS),-29.333333,-49.716667,,0.5,,10570,227,152,,,,,,36902245,,, +1380,B,pt,ZYK772 Rdio Repblica,,Morro Agudo (SP),-20.733333,-48.066667,,0.25,,9661,230,152,,,,,,36902243,,, +1380,B,pt,ZYL218 Rdio Cidade Braspolis,,Braspolis (MG),-22.482533,-45.608567,,0.25,,9705,227,152,,,,,,36902238,,, +1380,B,pt,ZYN203 Rdio Estrela de Ibiuna,,Campina Verde (MG),-19.544983,-49.490589,,0.25,,9622,231,152,,,,,,36902254,,, +1380,BOL,,CP227 R Luis de Fuentes,,Tarija (trj),-21.55,-64.333333,,0.5,,10655,242,152,,0930-0400,1234567,,,52032,,, +1380,MEX,es,XEVD-AM R Sensacin,,Ciudad Allende (coa),28.330478,-100.848372,,0.1,,8633,301,152,,,,,,44955,,, +1380,ARG,,R Los Toldos,,Los Toldos=General Viamonte (ba),-34.983333,-61.033333,,1,,11680,232,153,,,,,,51858,,, +1380,B,pt,ZYJ276 Rdio Bom Jesus,,Siqueira Campos (PR),-23.689167,-49.840556,,0.25,,10037,230,153,,,,3,,36902244,,, +1380,B,pt,ZYK751 Rdio Globo,,Presidente Prudente (SP),-22.136483,-51.409278,,0.25,,9972,232,153,,,,,,36902251,,, +1380,B,pt,ZYJ367 Rdio Integraco,,Toledo (PR),-24.7,-53.706944,,0.25,,10338,232,154,,,,,,36902237,,, +1380,B,pt,ZYJ831 Rdio Frequencia News,,Garopaba (SC),-28.041667,-48.636667,,0.25,,10393,226,154,,,,97,,36902242,,, +1380,B,pt,ZYJ827 Rdio Barriga Verde,,Capinzal (SC),-27.347778,-51.585556,,0.25,,10476,229,155,,,,,,36902234,,, +1380,B,pt,ZYK350 Rdio Cultura Taperense,,Tapera (RS),-28.638611,-52.873333,,0.25,,10664,229,155,,,,,,36902232,,, +1380,USA,,KJUA,,Cheyenne (WY),41.122778,-104.801944,,0.008,,7718,311,155,,,,,,20016040,,, +1380,USA,,KLPZ,,Parker (AZ),34.153889,-114.2875,,0.058,,8831,314,155,,,,104,,38843,,, +1380,B,pt,ZYK293 Rdio Cultura,,Santana do Livramento (RS),-30.866667,-55.506944,,0.25,,11010,230,156,,,,,,36902241,,, +1380,PRU,,OCY4U R Nuevo Tiempo,,Lima (lim),-11.816667,-76.666667,,0.2,,10576,257,156,,,,11,,40443,,, +1380,USA,en,WPSK562,,Royse City/100 West Main St. (TX),32.975278,-96.3325,,0.01,,7960,300,157,,,,,,20010684,,, +1380,USA,,KOSS,,Lancaster (N) (CA),34.711667,-118.175833,,0.02,,8966,317,161,,,,,,20012568,,, +1383,INS,id,Pas R,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,35400090,,, +1386,LTU,be,Polskie R,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,1900-2000,1234567,0,,1392,,, +1386,LTU,be,R Baltic Waves Int.,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,0400-0430,1234567,0,,1392,,, +1386,LTU,pl,Polskie R,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,1800-1900,1234567,0,,1392,,, +1386,LTU,ru,NHK R Japan,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,0330-0400,1234567,0,,1392,,, +1386,LTU,ru,NHK R Japan,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,1730-1800,1234567,0,,1392,,, +1386,IRL,en,Energy Power AM,,Dublin (D),53.266667,-6.383333,,0.4,,871,284,70,,,,,,52658,,, +1386,GRC,xx,R Makedonia,,Veria (cmc-ima),40.483333,22.316667,,2,,1771,131,72,,,,,,3400033,,, +1386,GRC,,unid (1980s Italo Disco),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400061,,, +1386,GRC,el,Zografos R,,Athnai/Zografos (att-ath),37.975,23.773611,,1,,2070,133,78,,,,,,3400012,,, +1386,EGY,ar,ERTU Al-Quran al-Karim,,Al-Uqsur=Luxor (uqr),25.591417,32.561819,,10,,3676,133,84,,0200-0400,1234567,9993,,1852,,, +1386,EGY,ar,ERTU Al-Quran al-Karim,,Al-Uqsur=Luxor (uqr),25.591417,32.561819,,10,,3676,133,84,,2000-2300,1234567,9993,,1852,,, +1386,EGY,ar,ERTU Janub Sa'id Misr,,Al-Uqsur=Luxor (uqr),25.591417,32.561819,,10,,3676,133,84,,0400-2000,1234567,9993,,1852,,, +1386,G,,Anker R (LPAM),,Nuneaton (EN-WAR),52.533333,-1.466667,,0.001,,537,278,92,,,,0,,1386,,, +1386,G,,Blast 1386 (LPAM),,Reading (EN-BER),51.466667,-0.983333,,0.001,,513,265,92,,,,,,1384,,, +1386,G,en,Carillon R (LPAM),,Coalville (EN-LEI),52.733333,-1.333333,,0.001,,529,281,92,,,,58,,2574,,, +1386,G,en,Carillon R (LPAM),,Leicester/Loughborough Hospital (EN-LEI),52.772778,-1.223611,,0.001,,522,281,92,,,,996,,1385,,, +1386,EGY,ar,ERTU,,Baranis (bar),23.929722,35.419444,,1,,3981,131,97,,0300-2400,1234567,,,2300001,,, +1386,AFG,,R Paktin Voice,,Zareh Sharan (pka),33.175,68.786111,,5,,5328,88,103,,0230-1800,1234567,,,11000004,,, +1386,KEN,,KBC English Service,,Maralal/Kisima (rif),0.901517,36.781006,,50,,6356,143,104,,0200-2110,1234567,9948,,1760,,, +1386,IND,,AIR West,,Gwalior (MP),26.300556,78.1125,,20,,6505,87,109,,0020-0405,1234567,2,,50695,,, +1386,IND,,AIR West,,Gwalior (MP),26.300556,78.1125,,20,,6505,87,109,,0700-0930,1234567,2,,50695,,, +1386,IND,,AIR West,,Gwalior (MP),26.300556,78.1125,,20,,6505,87,109,,1130-1741,1234567,2,,50695,,, +1386,CHN,zh,Tianjin RGD Shenghuo Pindao Xin Chengshi zhi Sheng,,Yangliuqing (TJ),39.139189,117.022583,,50,,7862,50,119,,2055-1800,1234567,,,50693,,, +1386,J,ja,JOQC NHK2,,Morioka (toh-iwa),39.629167,141.135,,10,,8916,34,133,,2030-1500,1.....7,,,50704,,, +1386,J,ja,JOQC NHK2,,Morioka (toh-iwa),39.629167,141.135,,10,,8916,34,133,,2030-1635,.2345..,,,50704,,, +1386,J,ja,JOQC NHK2,,Morioka (toh-iwa),39.629167,141.135,,10,,8916,34,133,,2030-1640,.....6.,,,50704,,, +1386,KOR,ko,HLAM MBC,,Mokpo/Samho (jen),34.776208,126.470653,,10,,8741,46,133,,0000-2400,1234567,4,,50707,,, +1386,J,ja,JOJB NHK2,,Kanazawa (chu-ish),36.534411,136.606139,,10,,9040,38,134,,2030-1500,1.....7,,,50703,,, +1386,J,ja,JOJB NHK2,,Kanazawa (chu-ish),36.534411,136.606139,,10,,9040,38,134,,2030-1635,.2345..,,,50703,,, +1386,J,ja,JOJB NHK2,,Kanazawa (chu-ish),36.534411,136.606139,,10,,9040,38,134,,2030-1640,.....6.,,,50703,,, +1386,PHL,,DZTV-AM Radyo Budyong,,Quezon City (ncr),14.416667,121.033333,,25,,10335,62,134,,,,,,50710,,, +1386,THA,th,Witthayu Pheua Kaan Kaset,,Bangkok/Phahonyothin Rd (bmp),13.911111,100.621389,,10,,9074,78,134,,2133-1705,1234567,6,,50715,,, +1386,J,ja,JOHC NHK2,,Kagoshima/Kirishima-Shi (kyu-kag),31.726389,130.735278,,10,,9238,45,135,,2030-1500,1.....7,,,50702,,, +1386,J,ja,JOHC NHK2,,Kagoshima/Kirishima-Shi (kyu-kag),31.726389,130.735278,,10,,9238,45,135,,2030-1635,.2345..,,,50702,,, +1386,J,ja,JOHC NHK2,,Kagoshima/Kirishima-Shi (kyu-kag),31.726389,130.735278,,10,,9238,45,135,,2030-1640,.....6.,,,50702,,, +1386,CHN,,Liuzhou RGD,,Liuzhou/GXTS238 (GX),24.39875,109.344889,,5,,8719,65,136,,,,,,50691,,, +1386,J,ja,JOKB NHK2,,Okayama (chg-oka),34.612222,133.898333,,5,,9108,41,137,,2030-1500,1.....7,,,50705,,, +1386,J,ja,JOKB NHK2,,Okayama (chg-oka),34.612222,133.898333,,5,,9108,41,137,,2030-1635,.2345..,,,50705,,, +1386,J,ja,JOKB NHK2,,Okayama (chg-oka),34.612222,133.898333,,5,,9108,41,137,,2030-1640,.....6.,,,50705,,, +1386,TWN,,BCC Country Network,,Y-Li (HL),23.389722,121.33,,3.5,,9524,57,140,,0000-2400,1234567,,,50717,,, +1386,CHN,,Shishou RGD,,Shishou (HU),29.716667,112.4,,1,,8435,59,141,,,,,,50692,,, +1386,PHL,,DXCR-AM Voice of Hope,,Valencia/Malyabalay (buk),8.1,125.116667,,10,,11166,62,141,,,,9,,50711,,, +1386,CHN,,Jiangyin RGD,,Jiangyin (JS),31.9,120.266667,,1,,8685,53,143,,2200-1400,1234567,,,50690,,, +1386,PHL,,DYVW-AM R Veritas,,Borongan (sam),11.6,125.416667,,5,,10858,60,143,,2030-1300,1234567,,,50709,,, +1386,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Quanzhou/FJTS401 (FJ),24.882722,118.596917,,1,,9230,58,144,,0000-2400,1234567,,,50688,,, +1386,SLM,,SIBC R Temotu,,Lata (tem),-10.716667,165.833333,,5,,15053,29,157,,1300-1900,1234567,,,50714,,, +1386,SLM,,SIBC R Temotu,,Lata (tem),-10.716667,165.833333,,5,,15053,29,157,,1900-1130,1234567,,,50714,,, +1386,NZL,,1XOR R.Tarana/R.Korea/Chinese Life Comm.R.,,Auckland/Henderson (AUK),-36.849089,174.629694,,10,,18083,33,164,,0000-2400,1234567,,,50708,,, +1390,USA,en,WEGP,,Presque Isle (ME),46.654167,-68.05,,10,,5184,295,99,,0000-2400,1234567,12,,41268,,, +1390,USA,,WPLM,,Plymouth (MA),41.968056,-70.701667,,5,,5669,291,107,,0000-2400,1234567,0,,42705,,, +1390,USA,en,WCAT r:WIFY,,Burlington (VT),44.496389,-73.213611,,5,,5649,295,107,,0000-2400,1234567,9965,,43274,,, +1390,USA,,WFBL,,Syracuse (NY),43.152778,-76.193056,,5,,5928,296,109,,0000-2400,1234567,3,,41362,,, +1390,USA,,WNIO,,Youngstown (D) (OH),41.121389,-80.701389,,9.5,,6356,296,111,,,,,,20012562,,, +1390,USA,,WZHF,,Arlington (VA),38.904167,-77.165,,5,,6304,292,113,,0000-2400,1234567,,,43574,,, +1390,USA,,WNIO,,Youngstown (N) (OH),40.986389,-80.598333,,4.8,,6360,296,114,,0000-2400,1234567,3,,42471,,, +1390,USA,en,WRIG,,Schofield (WI),44.878333,-89.641389,,7.2,,6591,305,114,,0000-2400,1234567,994,,42854,,, +1390,USA,,WLCM,,Charlotte (D) (MI),42.567222,-84.866111,,5,,6495,300,115,,LSRi-LSSs,1234567,998,,42143,,, +1390,USA,,WLCM,,Charlotte (N) (MI),42.551944,-84.551389,,4.5,,6478,300,115,,,,,,20012602,,, +1390,USA,,WGRB,,Chicago (IL),41.736944,-87.7,,5,,6727,301,117,,0000-2400,1234567,0,,41557,,, +1390,USA,,WZQQ,,Hazard (KY),37.239167,-83.210833,,5,,6812,295,118,,1100-LSSs,1234567,,,42015,,, +1390,USA,,WRSC,,State College (PA),40.808333,-77.942222,,1,,6209,294,119,,0000-2400,1234567,,,42917,,, +1390,USA,en,WSPO,,Charleston (SC),32.824444,-80.002778,,5,,6962,289,120,,0000-2400,1234567,992,,43494,,, +1390,USA,,WTJS,,Jackson (D) (TN),35.646111,-88.8325,,5,,7286,297,123,,1100-0552,1234567,,,43150,,, +1390,USA,,WYXI,,Athens (TN),35.446667,-84.571944,,2.5,,7040,294,123,,,,,,43559,,, +1390,USA,,KXSS,,Waite Park (MN),45.541944,-94.261389,,1,,6791,308,125,,0000-2400,1234567,,,39824,,, +1390,USA,,KRRZ,,Minot (ND),48.2125,-101.241667,,1,,6931,314,126,,0000-2400,1234567,996,,39292,,, +1390,USA,en,WEOK,,Poughkeepsie (NY),41.720556,-73.908056,,0.106,,5889,293,126,,,,26,,41314,,, +1390,USA,,WANY,,Albany (KY),36.698333,-85.15,,1,,6975,296,127,,,,,,40728,,, +1390,USA,,WROA,,Gulfport (MS),30.458333,-89.079167,,5,,7733,294,127,,0000-2400,1234567,,,42894,,, +1390,USA,,WRIV,,Riverhead (NY),40.915278,-72.657778,,0.064,,5869,291,128,,,,,,42857,,, +1390,VEN,,YVTT R Terepaima,,Cabudare (lar),10.066667,-69.25,,10,,8148,265,129,,0000-2400,1234567,,,45474,,, +1390,VEN,es,YVZO R Lumen 2000,,Maracaibo (zul),10.766667,-71.566667,,10,,8245,267,129,,1030-0500,1234567,995,,2161,,, +1390,PTR,es,WISA,,Isabela (PR),18.501667,-67.033611,,1,,7271,269,130,,0000-2400,1234567,998,,41803,,, +1390,USA,,WHMA,,Anniston (AL),33.708611,-85.853889,,1,,7262,294,130,,,,,,41663,,, +1390,USA,,WTJS,,Jackson (N) (TN),35.647222,-88.833333,,1,,7286,297,130,,,,,,20016214,,, +1390,VEN,es,YVZA R Fe y Alegra,,Caracas (dcf),10.484417,-66.986181,,5,,7958,263,130,,0000-2400,1234567,5,,2107,,, +1390,DOM,,HIAR R San Cristobal,,San Cristbal (cri),18.416667,-70.1,,1,,7488,271,132,,1100-0300,1234567,,,51760,,, +1390,USA,,WKLP,,Keyser (WV),39.436667,-78.955833,,0.074,,6376,294,132,,0000-2400,1234567,,,42037,,, +1390,USA,,WMPO,,Middleport-Pomeroy (OH),39.010278,-82.066111,,0.12,,6602,295,132,,,,,,42377,,, +1390,USA,,WTNL,,Reidsville (GA),32.087222,-82.129722,,0.5,,7158,290,132,,,,,,43185,,, +1390,B,,ZYJ614,,Santa Cruz (RN),-6.216667,-36.016667,,1,,7626,226,133,,,,,,46131,,, +1390,B,pt,ZYO701 Rdio Rorama,,Caracara (RR),1.816667,-61.133333,,5,,8335,253,133,,,,216,,36902265,,, +1390,B,pt,ZYI535 Rdio Educadora,,Bragana (PA),-1.066389,-46.78,,1,,7708,239,134,,,,,,36902255,,, +1390,USA,,WBLL,,Bellefontaine (OH),40.368056,-83.733889,,0.081,,6598,298,134,,,,,,40876,,, +1390,USA,,KCRC,,Enid (OK),36.419722,-97.874444,,1,,7753,304,135,,0000-2400,1234567,,,38201,,, +1390,B,pt,ZYI788 Rdio Jornal,,Pesqueira (PE),-8.35745,-36.687056,,1,,7872,226,136,,,,982,,36902257,,, +1390,CLM,es,HJYW R Autentica,,Pacho (cun),5.166667,-74.116667,,5,,8908,266,136,,0000-2400,1234567,,,51758,,, +1390,PNR,es,R Mundo Internacional,,Coln (clo),9.363611,-79.903611,,6,,8936,273,136,,,,,,52350,,, +1390,USA,,KCLN,,Clinton (IA),41.909444,-90.224444,,0.091,,6859,303,136,,,,,,38174,,, +1390,USA,,KRFO,,Owatonna (MN),44.074722,-93.179444,,0.094,,6851,306,136,,0000-2400,1234567,,,39240,,, +1390,USA,en,WLAN,,Lancaster (PA),40.060556,-76.316389,,0.018,,6163,293,136,,0000-2400,1234567,,,42121,,, +1390,USA,es,KLOC,,Turlock (CA),37.53,-120.693611,,5,,8809,320,136,,0000-2400,1234567,9952,,38836,,, +1390,CLM,es,HJFO La Red de los Andes,,Manizales (cal),5.083333,-75.566667,,5,,9014,267,137,,0000-2400,1234567,997,,37439,,, +1390,CLM,es,HJFY R Avenida,,Espinal (tol),4.116667,-74.866667,,5,,9051,266,137,,1000-0400,1234567,,,37447,,, +1390,GTM,,TGYC R Istmania,,Ciudad de Guatemala (gut),14.616667,-90.583333,,5,,9198,284,137,,1130-0330,1234567,,,40561,,, +1390,HND,,HRVC La Voz Evanglica,,Tegucigalpa (fmz),14.25,-87.316667,,5,,9012,282,137,,0000-2400,1234567,999,,37864,,, +1390,MEX,es,XEKT-AM,,Tecate (bcn),32.529722,-116.692917,,5,,9102,314,137,,0000-2400,1234567,,,51762,,, +1390,USA,,WKPA,,Lynchburg (VA),37.464444,-79.1225,,0.034,,6538,292,137,,,,,,42057,,, +1390,USA,,WMCT,,Mountain City (TN),36.489722,-81.786667,,0.058,,6783,293,137,,,,,,42295,,, +1390,USA,,WZZB,,Seymour (IN),38.975833,-85.889167,,0.074,,6838,298,137,,1100-LSSs,1234567,,,43600,,, +1390,B,pt,ZYH907 Rdio Cultura do Rio Jordo,,Coroat (MS),-4.15,-44.116667,,0.5,,7849,235,138,,,,,,52381,,, +1390,B,pt,ZYJ599 Rdio Farol,,Touros (RN),-5.203333,-35.461111,,0.25,,7497,226,138,,,,,,36902270,,, +1390,B,pt,ZYJ687 Rdio Planalto 1390,,Ji-Paran/Rua Mato Grosso (RO),-10.863889,-61.894444,,5,,9534,246,138,,,,217,,36902260,,, +1390,USA,,KDQN,,De Queen (AR),34.0325,-94.328611,,0.5,,7751,300,138,,,,,,38288,,, +1390,USA,,KLTX,,Long Beach (CA),33.891667,-118.184167,,3.6,,9044,316,138,,0000-2400,1234567,6,,38851,,, +1390,USA,,WEED,,Rocky Mount (NC),35.961944,-77.826389,,0.03,,6573,290,138,,0000-2400,1234567,,,41255,,, +1390,USA,en,WPKW685,,Wilmington (DE),39.8165,-75.461011,,0.01,,6128,292,138,,,,,,20010690,,, +1390,B,pt,ZYK209 Rdio Esperana AM,,Porto Alegre/Ilha dos Marinheiros (RS),-29.991989,-51.229667,,10,,10708,227,139,,,,,,36902269,,, +1390,USA,,KENN,,Farmington (NM),36.7075,-108.147222,,1.3,,8285,311,139,,0000-2400,1234567,,,38330,,, +1390,USA,,WJRM,,Troy (NC),35.361944,-79.860556,,0.035,,6750,291,139,,,,,,41925,,, +1390,USA,,KBBO,,Yakima (WA),46.571389,-120.454167,,0.39,,7933,325,140,,0000-2400,1234567,,,38688,,, +1390,USA,,KJAM,,Madison (SD),44.010278,-97.171667,,0.062,,7072,309,140,,1200-0600,1234567,,,38656,,, +1390,USA,,KJPW r:FM-102.3,,Waynesville (MO),37.819167,-92.151667,,0.111,,7304,301,140,,1100-0600,1234567,,,38690,,, +1390,USA,,KLGN,,Logan (UT),41.734444,-111.853611,,0.5,,8011,316,140,,0000-2400,1234567,997,,38809,,, +1390,USA,,WFIW,,Fairfield (IL),38.379444,-88.325833,,0.058,,7032,299,140,,,,,,41390,,, +1390,USA,en,KWOD r:KFXX,,Salem (OR),44.995278,-123.070833,,0.69,,8187,325,140,,0000-2400,1234567,,,39382,,, +1390,MEX,es,XETY-AM Los 40 Principales,,Tecomn (col),18.91,-103.870611,,2.5,,9661,297,142,,1100-0300,1234567,,,44880,,, +1390,USA,,KFRA,,Franklin (LA),29.837222,-91.539444,,0.244,,7939,295,142,,,,,,38424,,, +1390,USA,,WMER,,Meridian (MS),32.344722,-88.692222,,0.101,,7551,295,142,,,,,,42303,,, +1390,CLM,es,HJZY LV de la Misericordia,,Bucaramanga (sat),7.116667,-73.116667,,1,,8669,266,143,,0000-2400,1234567,,,37670,,, +1390,MEX,es,XEOR-AM La Papaya,,Reynosa (tam),26.095833,-98.286389,,1,,8678,297,143,,1230-0600,1234567,,,44509,,, +1390,USA,,KBEC,,Waxahachie (TX),32.445833,-96.804167,,0.26,,8033,300,143,,1200-0500,1234567,,,38018,,, +1390,USA,,WFHT,,Avon Park (FL),27.617778,-81.496944,,0.077,,7485,286,143,,,,,,40777,,, +1390,HND,,HRVC La Voz Evanglica,,Santa Rosa de Copan (cop),14.766667,-88.783333,,1,,9065,283,144,,0000-2400,1234567,,,51761,,, +1390,MEX,,XEZG-AM R Mezquital,,Ixmiquilpan (hid),20.481944,-99.2225,,1,,9234,295,144,,1300-0100,1234567,,,45138,,, +1390,MEX,es,XETL-AM R Ola,,Tuxpan (vcz),20.950683,-97.432989,,1,,9081,294,144,,1200-0600,1234567,,,44831,,, +1390,MEX,es,XEXO-AM La Super Buena,,Ciudad Mante (tam),22.718044,-98.978453,,1,,9020,296,144,,1200-0600,1234567,,,45060,,, +1390,PRU,es,OAM7A Exitosa,,Sicuani (cus),-14.333333,-71.233333,,3,,10441,252,144,,,,,,37000124,,, +1390,USA,,KGNU,,Denver (CO),39.658056,-105.013611,,0.139,,7858,311,144,,0000-2400,1234567,,,38501,,, +1390,USA,,KHOB,,Hobbs (NM),32.739167,-103.18,,0.5,,8374,305,144,,,,,,38551,,, +1390,USA,,KNCK,,Concordia (KS),39.566111,-97.684444,,0.054,,7473,306,144,,,,,,38967,,, +1390,USA,,WAJD,,Gainesville (FL),29.665556,-82.290556,,0.051,,7367,288,144,,,,,,40680,,, +1390,USA,en,WABB,,Belton (SC),34.588611,-82.538056,,0.017,,6982,292,144,,,,,,42247,,, +1390,USA,en,WOHS,,Shelby (NC),35.291111,-81.5675,,0.016,,6864,292,144,,0000-2400,1234567,,,40647,,, +1390,EQA,,HCEA5 R Tropicana Canal 13-90,,Cuenca (azu),-2.85,-79,,1.5,,9945,265,145,,1200-0300,1234567,,,36922,,, +1390,EQA,,HCDN5 R Atenas,,Riobamba (chi),-0.616667,-78.666667,,1,,9726,266,146,,0900-0500,1234567,,,36902,,, +1390,ARG,,LR11 R Universidad,,La Plata (ba),-35.001764,-58.122322,,3,,11528,230,147,,0800-0300,1234567,990,,39922,,, +1390,B,pt,ZYJ242 Rdio Cultura,,Maring (PR),-23.363611,-51.9,,1,,10115,231,147,,,,,,36902267,,, +1390,EQA,,HCIE1 R Uno,,Urcuqui (nap),0.416667,-78.216667,,0.75,,9604,266,147,,,,,,36971,,, +1390,USA,,KULP,,El Campo (TX),29.209444,-96.263889,,0.18,,8282,298,147,,,,,,39577,,, +1390,B,pt,ZYL305 R Vitoriosa,,Uberlndia (MG),-18.85085,-48.298725,,0.5,,9492,231,148,,,,19,,36902268,,, +1390,USA,,KFFK,,Rogers (AR),36.388333,-94.192778,,0.03,,7543,301,148,,,,,,38384,,, +1390,B,pt,ZYJ473 Rdio Sul Fluminense,,Barra Mansa (RJ),-22.538392,-44.148144,,0.5,,9639,226,149,,,,,,36902261,,, +1390,PRU,es,OAU7T R Enlace,,Kunturkanki (cus),-14.533333,-71.3,,1,,10463,251,149,,????-0319,1234567,99,,37000013,,, +1390,EQA,,HCHE4 LV de Esmeraldas,,Esmeraldas (esm),0.966667,-79.716667,,0.4,,9658,268,150,,,,,,37164,,, +1390,MEX,,XEQC-AM,,Puerto Peasco (son),31.327047,-113.532428,,0.25,,9058,312,150,,1200-0100,1234567,,,44599,,, +1390,B,pt,ZYI209 Rdio Educadora,,Afonso Cludio (ES),-20.083356,-41.129206,,0.25,,9251,224,151,,,,,,36902711,,, +1390,MEX,es,XECTA-AM R Cuautla,,Cuautla (mor),18.790833,-98.936611,,0.25,,9367,293,151,,,,,,43880,,, +1390,MEX,es,XERW-AM R FrmulaBajo,,Len (gua),21.137431,-101.623344,,0.25,,9323,297,151,,,,,,44722,,, +1390,URG,es,CW45 Difusora Treinta y Tres,,Treinta y Tres (tt),-33.242303,-54.369044,,1,,11173,228,151,,0800-0300,1234567,,,36775,,, +1390,ARG,es,LRA6 R Nacional,,Valle de Uspallata (mz),-32.666667,-69.366667,,1.5,,11942,239,152,,1000-0500,1234567,,,51747,,, +1390,B,pt,ZYK570 Rdio Globo,,Campinas/Rua Bartira 345 (SP),-22.945939,-47.042639,,0.25,,9822,228,152,,0000-2400,1234567,,,36902262,,, +1390,B,pt,ZYK636 Rdio Cultura,,Promisso (SP),-21.533333,-49.866667,,0.25,,9832,231,152,,,,,,36902264,,, +1390,B,pt,ZYL358 Rdio Club Ouro Verde,,So Sebastio do Paraso (MG),-20.894039,-47.007944,,0.25,,9622,229,152,,,,,,36902259,,, +1390,B,pt,ZYK594 Rdio Anchieta,,Itanham (SP),-24.186111,-46.781111,,0.25,,9929,227,153,,,,,,36902258,,, +1390,CLM,,R Ciudad de Antioquia,,Santa F de Antioquia (ant),6.566667,-75.833333,,0.1,,8902,268,153,,1100-2300,1234567,,,51759,,, +1390,B,pt,ZYJ335 Rdio Independncia,,Salto do Lontra (PR),-25.779167,-53.303611,,0.25,,10418,231,154,,,,,,36902272,,, +1390,B,pt,ZYJ769 Rdio Globo,,Lages (SC),-27.774167,-50.302778,,0.25,,10451,228,154,,,,,,36902256,,, +1390,EQA,,HCFL2,,Guayaquil (gua),-2.2,-79.9,,0.2,,9949,266,154,,,,,,36938,,, +1390,B,pt,ZYK368 Rdio Atlntica,,Constantina (RS),-27.729167,-52.983889,,0.25,,10584,230,155,,,,,,36902263,,, +1390,BOL,,CP169 R LV Minera del Sud,,Mina Telamayu (pts),-20.933333,-66.216667,,0.25,,10714,244,155,,1100-0300,1234567,,,36664,,, +1390,USA,en,WPXK823,,Boomtown (NV),39.510389,-119.963528,,0.01,,8587,320,162,,,,,,20010689,,, +1394,MDG,mg,R Madagasikara,,Antananarivo (tan),-18.9,47.516667,,4,,8840,141,137,,0300-1500,1234567,,,2521,,, +1395,ALB,ar,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1915-1930,.....6.,851,,1395,,, +1395,ALB,bs,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1945-2030,......7,851,,1395,,, +1395,ALB,hr,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1930-1945,1234567,851,,1395,,, +1395,ALB,hr,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1945-2000,123456,851,,1395,,, +1395,ALB,hr,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,2000-2030,.....6.,851,,1395,,, +1395,ALB,hu,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1822-1900,1234567,851,,1395,,, +1395,ALB,pl,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1900-1915,1234567,851,,1395,,, +1395,ALB,pl,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1915-1930,12345.7,851,,1395,,, +1395,ALB,sq,R Tirana,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,0900-1000,1234567,851,,1395,,, +1395,ALB,sr,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,2000-2030,12345..,851,,1395,,, +1395,ARM,ru,Voice of Mongolia,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,,2148-2200,....56.,9994,,400002,,, +1395,ARM,ru,Voice of Russia,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,,0100-2400,1234567,9994,,400002,,, +1395,G,en,MAR-Merseyside Alternative R,,Mersey area (EN-MER),53.4,-2.9,,0.1,,642,287,73,,????-????,9999999,933,,2800030,,, +1395,G,en,WNKR,,unknown (EN-KNT),51.2,1.133333,,0.05,,378,257,74,,0000-2400,.....67,,,2800026,,, +1395,RUS,ru,Orenburgskaya GTRK,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0110-0200,12345..,999,,1397,,, +1395,RUS,ru,Orenburgskaya GTRK,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0210-0300,12345..,999,,1397,,, +1395,RUS,ru,R Rossii,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0000-0110,12345..,999,,1397,,, +1395,RUS,ru,R Rossii,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0000-2000,.....67,999,,1397,,, +1395,RUS,ru,R Rossii,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0200-0210,12345..,999,,1397,,, +1395,RUS,ru,R Rossii,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0300-2000,12345..,999,,1397,,, +1395,IRN,fa,IRIB R Khalij-e Fars,,Hajiabad (hrg),28.315722,55.936083,,50,,4838,103,88,,,,,,1813,,, +1395,IND,,AIR North,,Bikaner (RJ),28.022222,73.368611,,20,,6042,89,104,,0025-0435,1234567,,,50723,,, +1395,IND,,AIR North,,Bikaner (RJ),28.022222,73.368611,,20,,6042,89,104,,0630-0930,1234567,,,50723,,, +1395,IND,,AIR North,,Bikaner (RJ),28.022222,73.368611,,20,,6042,89,104,,1130-1740,1234567,,,50723,,, +1395,CHN,zh,Xilingol RGD Hanyu,,Xilinhot/NMTS680 (NM),43.970778,116.108611,,10,,7393,48,121,,2230-1450,1234567,,,50722,,, +1395,CHN,zh,Anhui RGD Xiaoshuo Pingshu Guangbo,,Hefei/Sanshitou (AH),31.986667,117.3275,,50,,8515,55,125,,,,,,36200219,,, +1395,CHN,zh,Anhui RGD Xiaoshuo Pingshu Guangbo,,Fuyang (AH),32.929167,115.804167,,10,,8346,55,130,,,,,,36200268,,, +1395,KOR,ko,HLCO KBS 1 R,,Cheorwon (gye),38.15,127.306389,,10,,8467,44,132,,0000-2400,1234567,,,50731,,, +1395,THA,th,Sathaanii Witthayu 914 Kao-Neung-Sii,,Chiang Rai/Mae Chan (cri),20.10975,99.886528,,10,,8487,75,132,,2200-1600,1234567,,,50737,,, +1395,CHN,zh,Anhui RGD Xiaoshuo Pingshu Guangbo,,Chizhou (AH),30.65,117.483333,,10,,8644,55,133,,2100-1650,1234567,,,50721,,, +1395,CHN,zh,CNR 1,,Fugong (YN),26.966667,98.9,,1,,7837,71,135,,2025-1805,1234567,,,50694,,, +1395,CHN,,Tonghai RGD,,Tonghai (YN),24.116667,102.766667,,1,,8329,70,140,,,,,,36200271,,, +1395,CHN,,Yunnan RGD Xinwen Guangbo,,Lancang/Pu'er (YN),22.533333,99.933333,,1,,8282,73,140,,,,,,36200273,,, +1395,PHL,,DYCH-AM (r:666 DZRH-AM),,Talisay City/Tangke (ceb),10.253056,123.864167,,10,,10891,62,140,,0000-2400,1234567,,,50733,,, +1395,CHN,zh,CNR 1,,Funing (YN),23.616667,105.633333,,1,,8555,68,142,,2025-1805,1234567,,,48420,,, +1395,PHL,,DZVT-AM Spirit AM,,San Jose/Puerto Gallenero (ocm),12.383333,121.05,,5,,10523,63,142,,????-1050,......7,959,,50734,,, +1395,PHL,,DZVT-AM Spirit AM,,San Jose/Puerto Gallenero (ocm),12.383333,121.05,,5,,10523,63,142,,????-1405,123456,959,,50734,,, +1395,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Hui'an/FJTS404 (FJ),25.033333,118.8,,1,,9228,58,144,,,,,,36200267,,, +1395,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Yongchun/FJTS403 (FJ),25.333333,118.283333,,1,,9171,58,144,,,,,,36200270,,, +1395,J,ja,JOCE CRK R Kansai,,Toyooka (kns-hyo),35.5025,134.838056,,1,,9064,40,144,,2000-1800,1234567,,,50730,,, +1395,J,ja,JOWE RFC Fukushima Hoso,,Aizuwakamatsu (toh-fuk),37.485,139.941667,,1,,9083,36,144,,0000-2400,1234567,,,50727,,, +1395,TWN,,Cheng Sheng BC,,Jenwu/Tafa (KH),22.704722,120.361111,,1,,9532,58,145,,0000-2400,1234567,,,50738,,, +1395,CHN,,Yunnan RGD Xinwen Guangbo,,Mojiang (YN),23.416667,101.733333,,0.1,,8323,71,150,,,,,,36200272,,, +1395,INS,id,R Nusantara Jaya,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400091,,, +1395,J,,RKC, Kochi Hoso,,Sukumo (shi-koc),32.933333,132.716667,,0.1,,9216,43,154,,0000-2400,1234567,,,50729,, +1395,J,,RKC, Kochi Hoso,,Tosashimizu (shi-koc),32.75,132.95,,0.1,,9245,43,154,,0000-2400,1234567,,,50728,, +1395,INS,id,RRI Pro-1,,Wamena (PA-jyw),-4.104397,138.927928,,1,,13128,56,157,,2000-1500,1234567,,,50726,,, +1395,AUS,,5AA,,Adelaide/Paralowie (SA),-34.757472,138.608694,,5,,15798,82,159,,0000-2400,1234567,,,50719,,, +1395,BOL,,R Horizontes,,Huanuni (oru),-19.066667,-68.366667,,0.1,,10680,247,159,,,,,,51757,,, +1395,NZL,,4ZW Newstalk ZB,,Oamaru (OTA),-45.071389,170.929722,,2,,18638,62,173,,0000-2400,1234567,,,50732,,, +1395,AUS,,2LG ABC Central West NSW,,Lithgow/Bracys Lookout (NSW),-33.487258,150.159672,,0.2,,16462,69,175,,0000-2400,1234567,,,50720,,, +1400,CAN,en,CBG,,Gander (NL),48.965833,-54.655,,4,,4201,290,93,,,,87,,35776,,, +1400,USA,,WJZN,,Augusta (ME),44.291667,-69.774167,,1,,5448,293,111,,,,,,41948,,, +1400,USA,,WWNZ,,Veazie (ME),44.847222,-68.68,,0.81,,5342,293,111,,,,921,,43417,,, +1400,USA,en,WGIN (r:WGAN),,Biddeford (ME),43.481111,-70.485556,,1,,5549,293,112,,,,,,43276,,, +1400,USA,,WLLH,,Lowell (U b) (MA),42.7075,-71.164167,,1,,5646,292,113,,,,,,20016209,,, +1400,USA,,WLTN,,Littleton (NH),44.313056,-71.768889,,1,,5572,294,113,,,,,,42244,,, +1400,USA,,WTSL,,Hanover (NH),43.684167,-72.296111,,1,,5648,294,113,,,,,,43216,,, +1400,USA,,WHTB,,Fall River (MA),41.689722,-71.145278,,1,,5717,291,114,,,,,,41690,,, +1400,USA,,WLLH,,Lowell (U a) (MA),42.658056,-71.317778,,1,,5659,292,114,,,,0,,42185,,, +1400,USA,,WAMC,,Albany (NY),42.689167,-73.793611,,1,,5813,294,115,,,,,,40703,,, +1400,USA,,WHMP,,Northampton (MA),42.326667,-72.657778,,1,,5767,293,115,,,,,,41664,,, +1400,USA,,WILI,,Willimantic (CT),41.715,-72.189722,,1,,5781,292,115,,,,,,41752,,, +1400,USA,,WSLB,,Ogdensburg (NY),44.705833,-75.465278,,1,,5772,297,115,,,,12,,43019,,, +1400,USA,,WEST,,Easton (PA),40.673056,-75.208333,,1,,6048,293,117,,,,,,41328,,, +1400,USA,,WICK,,Scranton (PA),41.418056,-75.661944,,1,,6022,294,117,,,,,,41726,,, +1400,USA,,WSTC,,Stamford (CT),41.046944,-73.526667,,0.78,,5914,292,117,,,,,,43071,,, +1400,USA,,WDNY,,Dansville (NY),42.538611,-77.6825,,1,,6065,296,118,,,,,,41191,,, +1400,USA,,WRAK,,Williamsport (PA),41.239444,-77.040833,,1,,6121,294,118,,,,,,42812,,, +1400,USA,en,WOND,,Pleasantville (NJ),39.39,-74.5125,,1,,6099,291,118,,,,991,,42604,,, +1400,USA,,WJET,,Erie (PA),42.124444,-80.065,,1,,6241,297,119,,,,,,41870,,, +1400,USA,,WKBI,,St. Marys (PA),41.415556,-78.565556,,1,,6202,295,119,,,,,,41962,,, +1400,USA,,WKNW,,Sault Sainte Marie (MI),46.488333,-84.329167,,0.95,,6168,303,119,,,,,,42051,,, +1400,USA,,WWWS,,Buffalo (NY),42.926111,-78.841111,,0.75,,6107,297,119,,,,,,43446,,, +1400,USA,en,WHGB,,Harrisburg (PA),40.249444,-76.8675,,1,,6184,293,119,,,,,,43125,,, +1400,USA,,WINC,,Winchester (VA),39.188056,-78.151944,,1,,6345,293,120,,,,,,41765,,, +1400,USA,,WQXO,,Munising (MI),46.408333,-86.639444,,1,,6304,305,120,,,,,,42806,,, +1400,USA,,WWGE,,Loretto (PA),40.503333,-78.636111,,1,,6275,295,120,,,,,,43379,,, +1400,USA,,WBBD,,Wheeling (WV),40.096944,-80.701667,,1,,6434,296,121,,,,,,40808,,, +1400,USA,,WCCY,,Houghton (MI),47.135,-88.564722,,1,,6357,306,121,,,,,,40970,,, +1400,USA,,WDTK,,Detroit (MI),42.406111,-83.112222,,1,,6404,299,121,,,,,,41212,,, +1400,USA,,WPCE,,Portsmouth (VA),36.829167,-76.323056,,1,,6409,290,121,,,,26,,42654,,, +1400,USA,,WSAM,,Saginaw (MI),43.416667,-83.918056,,1,,6374,300,121,,,,,,42948,,, +1400,USA,,WBFN,,Battle Creek (MI),42.304167,-85.192222,,1,,6535,300,122,,,,,,42820,,, +1400,USA,,WDUZ,,Green Bay (WI),44.493333,-87.986944,,1,,6527,304,122,,,,,,41218,,, +1400,USA,,WKAV,,Charlottesville (VA),38.030278,-78.489444,,1,,6455,292,122,,,,,,41956,,, +1400,USA,,WMAN,,Mansfield (U) (Aux) (OH),40.766667,-82.546667,,0.96,,6495,297,122,,,,,,20016211,,, +1400,USA,,WMAN,,Mansfield (U) (OH),40.770278,-82.543333,,0.92,,6495,297,122,,,,,,42273,,, +1400,USA,,WSMY,,Weldon (NC),36.411944,-77.618333,,1,,6525,290,122,,,,,,43032,,, +1400,USA,,WWIN,i,Baltimore (MD),39.301667,-76.569167,,0.5,,6236,292,122,,,,,,43386,,, +1400,USA,,WAJL,,South Boston (VA),36.709722,-78.874444,,1,,6581,292,123,,,,,,20000053,,, +1400,USA,,WATW,,Ashland (WI),46.573611,-90.865556,,0.78,,6526,307,123,,,,,,40764,,, +1400,USA,,WAVQ,,Jacksonville (NC),34.748889,-77.414167,,1,,6641,289,123,,,,,,20016108,,, +1400,USA,,WLJN,,Elmwood Township (MI),44.776667,-85.661944,,0.64,,6373,303,123,,,,,,42177,,, +1400,USA,,WRON,,Ronceverte (WV),37.76,-80.455,,1,,6599,293,123,,,,,,42901,,, +1400,USA,,WVRC,,Spencer (WV),38.806389,-81.361111,,1,,6574,295,123,,,,,,43341,,, +1400,GRD,en,Harbour Light of the Windwards,,Carriacou/Tarleton Point (cpm),12.487106,-61.427222,,5,,7408,260,124,,0953-0245,1234567,3,,47123,,, +1400,USA,,WBAT,,Marion (IN),40.561111,-85.691667,,1,,6701,299,124,,,,,,40802,,, +1400,USA,,WBIZ,,Eau Claire (WI),44.815556,-91.518611,,0.97,,6700,306,124,,,,,,40866,,, +1400,USA,,WBTH,,Williamson (WV),37.669167,-82.269167,,1,,6720,295,124,,,,,,40918,,, +1400,USA,,WHHV,,Hillsville (VA),36.75,-80.722222,,1,,6695,293,124,,,,,,41636,,, +1400,USA,,WKEW,,Greensboro (NC),36.066667,-79.796944,,1,,6690,292,124,,,,,,41997,,, +1400,USA,,WMFA,,Raeford (NC),34.978611,-79.208889,,1,,6739,290,124,,,,,,42307,,, +1400,USA,,WRDB,,Reedsburg (WI),43.541667,-90.034722,,1,,6718,304,124,,,,,,42826,,, +1400,USA,,WRJN,,Racine (WI),42.710556,-87.830278,,1,,6657,302,124,,,,,,42860,,, +1400,USA,,WSJM,,St. Joseph (MI),42.086667,-86.444444,,0.88,,6626,301,124,,,,,,43009,,, +1400,CAN,en,CBMD,,Chapais (QC),49.784444,-74.861944,,0.04,,5391,302,125,,,,,,20109194,,, +1400,USA,,KEYL,,Long Prairie (MN),45.9625,-94.869167,,1,,6790,309,125,,,,,,38359,,, +1400,USA,,KMNV,,Saint Paul (MN),44.957778,-93.206389,,1,,6781,307,125,,,,,,38778,,, +1400,USA,,WCYN,,Cynthiana (KY),38.405556,-84.292222,,1,,6786,296,125,,,,,,41114,,, +1400,USA,,WKPT,,Kingsport (TN),36.543611,-82.5225,,1,,6824,294,125,,,,,,42059,,, +1400,USA,,WSIC,,Statesville (NC),35.8025,-80.891667,,1,,6781,292,125,,,,,,43003,,, +1400,USA,en,WJMX,,Darlington (SC),34.316111,-79.888056,,1,,6835,290,125,,,,,,42674,,, +1400,USA,,KADR,,Elkader (IA),42.849167,-91.411944,,1,,6851,304,126,,,,,,37915,,, +1400,USA,,KQDJ,,Jamestown (ND),46.893611,-98.688889,,1,,6913,312,126,,,,,,39188,,, +1400,USA,,WCOS,,Columbia (SC),34.005,-81.011944,,1,,6932,291,126,,,,,,41061,,, +1400,USA,,WDWS,,Champaign (IL),40.084444,-88.248056,,1,,6890,300,126,,,,,,41223,,, +1400,USA,,WGTN,,Georgetown (SC),33.404167,-79.326667,,1,,6872,289,126,,,,,,41575,,, +1400,USA,,WIEL,,Elizabethtown (KY),37.686389,-85.871944,,1,,6940,297,126,,,,,,41734,,, +1400,USA,,WMXF,,Waynesville (NC),35.503889,-82.973611,,1,,6936,293,126,,,,,,42416,,, +1400,USA,en,WSPG,,Spartanburg (SC),34.973889,-81.926944,,1,,6912,292,126,,,,,,41991,,, +1400,USA,,KMHL,,Marshall (MN),44.449722,-95.761944,,1,,6961,308,127,,,,,,38899,,, +1400,USA,,WEOA,,Evansville (IN),37.938056,-87.530833,,1,,7020,298,127,,,,,,41313,,, +1400,USA,,WFTG,,London (KY),37.141667,-84.079167,,0.69,,6873,295,127,,,,,,41444,,, +1400,USA,,WGAP,,Maryville (TN),35.761389,-83.9825,,1,,6978,294,127,,,,,,41474,,, +1400,USA,,WGHC,,Clayton (GA),34.861389,-83.406944,,1,,7014,293,127,,,,,,41514,,, +1400,USA,,WHUB,,Cookeville (TN),36.173611,-85.511111,,1,,7040,295,127,,,,,,41695,,, +1400,USA,,WSGC,,Elberton (GA),34.113889,-82.881111,,1,,7042,292,127,,,,,,42992,,, +1400,USA,,KCOG,,Centerville (IA),40.744444,-92.908889,,1,,7107,304,128,,,,,,38190,,, +1400,USA,,KVFD,,Fort Dodge (IA),42.478889,-94.202778,,0.85,,7037,306,128,,,,,,39623,,, +1400,USA,,WGIL,,Galesburg (IL),40.942778,-90.344167,,0.74,,6944,302,128,,,,,,41519,,, +1400,USA,,WJZM,,Clarksville (TN),36.515833,-87.349167,,1,,7124,297,128,,,,,,41947,,, +1400,USA,,WLTA,,Alpharetta (GA),34.063611,-84.276111,,1,,7134,293,128,,,,,,42239,,, +1400,USA,,WLYY,,Copper Hill (TN),34.967778,-84.3275,,1,,7064,294,128,,,,,,42230,,, +1400,CAN,fr,CBOF-4,,Rolphton (ON),46.171667,-77.701944,,0.04,,5804,299,129,,,,,,20109195,,, +1400,PTR,,WIDA,,Carolina (PR),18.396944,-65.935,,1,,7205,268,129,,0000-2400,1234567,,,41730,,, +1400,USA,,KBJM,,Lemmon (SD),45.918056,-102.198611,,1,,7172,313,129,,,,,,38044,,, +1400,USA,,KFRU,,Columbia (MO),38.9625,-92.303889,,1,,7219,302,129,,,,,,38429,,, +1400,USA,,KJFF,,Festus (MO),38.232222,-90.397222,,1,,7167,300,129,,,,,,38667,,, +1400,USA,,KSIM,,Sikeston (MO),36.87,-89.608889,,1,,7232,299,129,,,,,,39362,,, +1400,USA,,KXGN,,Glendive (MT),47.094444,-104.713889,,1,,7194,315,129,,,,,,39793,,, +1400,USA,,WAWO,,Alma (GA),31.530556,-82.4625,,1,,7225,290,129,,,,,,40682,,, +1400,USA,,WCOH,,Newnan (GA),33.364722,-84.811667,,1,,7224,293,129,,,,,,41056,,, +1400,USA,,WFPA,,Fort Payne (AL),34.439167,-85.7025,,1,,7192,294,129,,,,,,41428,,, +1400,USA,,WNEX,,Macon (GA),32.851944,-83.653056,,1,,7193,292,129,,,,,,42462,,, +1400,USA,,WZNG,,Shelbyville (TN),35.473889,-86.445833,,1,,7154,296,129,,,,,,43580,,, +1400,VEN,,YVQZ R Anaco,,Anaco (azg),9.5,-64.466667,,5,,7874,261,129,,0900-0400,1234567,,,45439,,, +1400,USA,,KBRB,,Ainsworth (NE),42.554444,-99.831111,,1,,7336,309,130,,,,,,38080,,, +1400,USA,,KLIN,,Lincoln (NE),40.848333,-96.674722,,1,,7309,306,130,,,,998,,38818,,, +1400,USA,,WANI,,Opelika (AL),32.657222,-85.424167,,1,,7321,293,130,,,,,,40724,,, +1400,USA,,WJLD,,Fairfield (AL),33.476667,-86.883611,,1,,7345,294,130,,,,,,41892,,, +1400,USA,,WSEG,,Savannah (GA),32.074722,-81.071389,,0.65,,7091,289,130,,,,,,20016018,,, +1400,USA,,WWTM,,Decatur (AL),34.612222,-86.991111,,1,,7258,295,130,,,,,,43436,,, +1400,USA,,WZAZ,,Jacksonville (FL),30.328611,-81.695,,1,,7274,288,130,,,,,,43566,,, +1400,USA,en,WHLJ,,Moultrie (GA),31.165556,-83.766944,,1,,7338,290,130,,,,,,41611,,, +1400,CAN,en,CHNL-1,,Clearwater (BC),51.657222,-120.083056,,1,,7439,327,131,,,,,,36066,,, +1400,USA,,KGMY,,Springfield (MO),37.196111,-93.3225,,1,,7425,301,131,,,,,,38496,,, +1400,USA,,KWYN,,Wynne (AR),35.255833,-90.796944,,1,,7437,298,131,,,,,,39772,,, +1400,USA,,WBIP,,Booneville (MS),34.639167,-88.575833,,1,,7353,296,131,,,,,,40861,,, +1400,USA,,WIRA,,Fort Pierce (FL),27.435278,-80.361389,,1,,7425,285,131,,,,,,41796,,, +1400,USA,,WJWF,,Columbus (MS),33.491667,-88.403889,,1,,7438,295,131,,,,,,41940,,, +1400,USA,,WPRY,,Perry (FL),30.1075,-83.566667,,1,,7413,290,131,,,,,,42735,,, +1400,USA,,WSDO,,Sanford (FL),28.801111,-81.251667,,1,,7371,287,131,,,,,,42972,,, +1400,USA,,KCOW,,Alliance (DN) (NE),42.106111,-102.888056,,1,,7534,311,132,,,,,,20016281,,, +1400,USA,,KCOW,,Alliance (U) (NE),42.107222,-102.8875,,1,,7534,311,132,,,,,,38197,,, +1400,USA,,KVOE,,Emporia (KS),38.386111,-96.176667,,1,,7489,304,132,,,,,,39649,,, +1400,USA,en,WZHR,,Zephyrhills (FL),28.281667,-82.208333,,1,,7476,287,132,,,,,,43575,,, +1400,USA,pt,WFLL,,Fort Lauderdale (FL),26.153611,-80.169722,,1,,7519,284,132,,,,,,41398,,, +1400,USA,,KAYS,,Hays (KS),38.891389,-99.3675,,1,,7624,306,133,,,,,,37995,,, +1400,USA,,KBCK,,Deer Lodge (MT),46.414444,-112.721111,,1,,7624,320,133,,,,,,38012,,, +1400,USA,,KKTL,,Casper (WY),42.856111,-106.361389,,1,,7644,314,133,,,,,,38758,,, +1400,USA,,KODI,,Cody (WY),44.512778,-109.055556,,1,,7627,316,133,,,,,,39053,,, +1400,USA,,KSPT,,Sandpoint (ID),48.304444,-116.542222,,1,,7613,323,133,,,,,,39406,,, +1400,USA,,KWON,,Bartlesville (OK),36.764722,-95.959722,,1,,7614,303,133,,,,,,39741,,, +1400,USA,,KXGF,,Great Falls (MT),47.465556,-111.322778,,0.68,,7467,320,133,,,,,,39792,,, +1400,USA,,WJQS,,Jackson (MS),32.32,-90.190278,,1,,7646,296,133,,,,,,42097,,, +1400,USA,,WXAL,,Demopolis (AL),32.502222,-87.818611,,0.79,,7484,294,133,,,,,,43453,,, +1400,USA,en,WFDM,,Fort Walton Beach (FL),30.410556,-86.623056,,1,,7583,292,133,,,,,,40804,,, +1400,CAN,en,CIOR,,Princeton (BC),49.447222,-120.512778,,1,,7663,326,134,,,,,,36382,,, +1400,NCG,es,YNRG R Mara,,Managua (mng),12.103361,-86.095542,,10,,9118,279,134,,,,,,45223,,, +1400,USA,,KELD,,El Dorado (AR),33.237222,-92.665,,1,,7719,298,134,,,,,,38321,,, +1400,USA,,KFTM,,Fort Morgan (CO),40.258611,-103.851944,,1,,7745,310,134,,,,,,38437,,, +1400,USA,,WFOR,,Hattiesburg (MS),31.335,-89.326389,,1,,7675,294,134,,,,,,41424,,, +1400,B,pt,ZYI677 Rdio Espinharas,,Patos (PB),-7.0746,-37.282347,,1,,7774,227,135,,,,,,36902280,,, +1400,CLM,es,HJAS RCN Antena 2,,Barranquilla (atl),10.866667,-74.75,,5,,8454,270,135,,,,999,,37334,,, +1400,CUB,es,R Sagua,,Sagua La Grande (vc),22.806986,-80.112372,,1,,7796,282,135,,,,,,31600118,,, +1400,USA,,KREF,,Norman (OK),35.217778,-97.410278,,1,,7829,303,135,,,,,,39235,,, +1400,USA,,KRPL,,Moscow (ID),46.746389,-117.018333,,1,,7777,322,135,,,,,,39287,,, +1400,USA,,KTMC,,McAlester (OK),34.949444,-95.766944,,1,,7757,301,135,,,,,,39507,,, +1400,USA,,WFPR,,Hammond (LA),30.508611,-90.505,,1,,7818,295,135,,,,,,41430,,, +1400,USA,en,KKTK,,Texarkana (DN) (TX),33.442778,-94.055556,,1,,7785,299,135,,,,,,20016288,,, +1400,USA,en,KKTK,,Texarkana (U) (TX),33.441111,-94.054444,,1,,7785,299,135,,,,,,38757,,, +1400,B,pt,ZYH200 Rdifusora Acreana,,Rio Branco/Estrada da Sobral (AC),-9.999228,-67.830817,,10,,9834,251,136,,,,2,,36902284,,, +1400,CLM,es,HJDF,,Montelibano (cor),7.983333,-75.433333,,5,,8751,269,136,,,,,,35901744,,, +1400,USA,,KBLJ,,La Junta (CO),37.987222,-103.566944,,1,,7930,309,136,,,,,,38056,,, +1400,USA,,KEYE,,Perryton (TX),36.388889,-100.826944,,1,,7921,306,136,,,,,,38354,,, +1400,USA,,KGVL,,Greenville (TX),33.167222,-96.098611,,1,,7930,300,136,,,,,,38518,,, +1400,USA,es,KRSC,,Othello (WA),46.825556,-119.186944,,1,,7859,324,136,,,,,,39294,,, +1400,CTR,,TICJ R Sinai,,San Isidro del General (sjs),9.366667,-83.7,,5,,9194,276,137,,1000-0400,1234567,,,40574,,, +1400,DOM,,HIAC Ondas del Valle,,Concepcin de La Vega (veg),19.216667,-70.516667,,0.25,,7449,272,137,,1100-0200,1234567,,,37203,,, +1400,USA,,KAOK,,Lake Charles (LA),30.236111,-93.167222,,1,,8005,296,137,,,,,,37956,,, +1400,USA,,KART,,Jerome (ID),42.730833,-114.538056,,1,,8043,319,137,,,,999,,37968,,, +1400,USA,,KEBE,,Jacksonville (TX),31.969722,-95.264444,,1,,7983,299,137,,,,,,38309,,, +1400,USA,,KRLN,,Canon City (CO),38.459722,-105.223889,,1,,7976,310,137,,,,,,39262,,, +1400,USA,en,KITZ,,Silverdale (WA),47.629167,-122.664444,,0.89,,7918,326,137,,,,,,38643,,, +1400,USA,en,KLCK,,Goldendale (WA),45.823611,-120.837778,,1,,8020,324,137,,,,,,38785,,, +1400,B,pt,ZYH529 Rdio Vale do Vasa Barris,,Jeremoabo (BA),-10.080556,-38.343889,,1,,8125,226,138,,,,15,,36902277,,, +1400,B,pt,ZYJ339 Rdio Agape,,Balsa Nova (PR),-25.489167,-49.467222,,10,,10190,228,138,,,,,,36902283,,, +1400,USA,,KJDY,,John Day (OR),44.421389,-118.9525,,1,,8076,322,138,,,,,,38665,,, +1400,USA,,KSRR,,Provo (UT),40.258056,-111.706667,,1,,8139,315,138,,,,,,39413,,, +1400,USA,en,KEDO,,Longview (WA),46.149167,-122.974722,,1,,8072,326,138,,,,,,38314,,, +1400,USA,en,KJYE,,Delta (CO),38.760556,-108.091111,,1,,8096,312,138,,,,,,38294,,, +1400,USA,en,WPKN267,,Philadelphia (PA),39.960989,-75.142111,,0.01,,6097,292,138,,,,,,20010692,,, +1400,VEN,,YVNF R Sabana,,El Sombrero (gco),9.366667,-67.033333,,1,,8059,263,138,,1000-0200,1234567,,,45342,,, +1400,B,pt,ZYJ462 Rdio Rio de Janeiro,,Rio de Janeiro (RJ),-22.719975,-43.18685,,5,,9610,225,139,,,,1,,36902285,,, +1400,GTM,,TGRB R Portena,,Puerto Barrios (izb),15.716667,-88.566667,,3,,8968,284,139,,0000-2400,1234567,,,40525,,, +1400,USA,,KBCH,,Lincoln City (OR),44.990833,-123.979167,,1,,8223,326,139,,,,992,,38011,,, +1400,USA,,KHCB,,Galveston (TX),29.426389,-95.133333,,1,,8195,297,139,,,,,,38533,,, +1400,USA,,KREW,,Plainview (TX),34.215278,-101.723611,,1,,8162,305,139,,,,,,39238,,, +1400,USA,,KTEM,,Temple (TX),31.066944,-97.399167,,0.95,,8188,300,139,,,,,,39469,,, +1400,USA,,KTNM,,Tucumcari (NM),35.170833,-103.706944,,1,,8187,307,139,,,,,,39516,,, +1400,USA,,KVRP,,Stamford (TX),32.931111,-99.783333,,1,,8164,303,139,,,,,,39665,,, +1400,USA,,KWUF,,Pagosa Springs (CO),37.256667,-107.018333,,1,,8177,310,139,,,,,,39764,,, +1400,USA,,KBYG,,Big Spring (TX),32.222778,-101.476389,,1,,8324,303,140,,,,,,38112,,, +1400,USA,,KNND,,Cottage Grove (OR),43.761944,-123.078333,,0.95,,8307,325,140,,,,,,39003,,, +1400,USA,,KRUN,,Ballinger (TX),31.725278,-99.961667,,1,,8281,302,140,,,,,,39307,,, +1400,USA,,KVSF,,Santa Fe (NM),35.682222,-105.9725,,1,,8263,309,140,,,,,,39667,,, +1400,BOL,,CP3 R Nacional de Bolivia,,La Paz (lpz),-16.5,-68.116667,,5,,10435,248,141,,0900-0200,1234567,,,36690,,, +1400,USA,,KENT,,Parowan (UT),37.806111,-112.944444,,1,,8425,315,141,,,,,,38332,,, +1400,USA,,KFJL,,Central Point (D) (OR),42.348611,-122.914167,,1,,8437,324,141,,,,,,20016257,,, +1400,USA,,KFJL,,Central Point (N) (OR),42.348611,-122.914167,,1,,8437,324,141,,,,,,20016258,,, +1400,USA,,KWNA,,Winnemucca (NV),40.956389,-117.713333,,1,,8351,320,141,,,,,,39733,,, +1400,B,pt,ZYN660 Rdifuso Guara,,Guara (TO),-8.835833,-48.512778,,1,,8545,236,142,,,,,,36902275,,, +1400,CLM,es,HJBK,,Ccuta (nsa),7.816667,-72.466667,,1,,8564,266,142,,,,,,37349,,, +1400,EQA,,HCFL2 R Z-Uno,,Guayaquil (gua),-2.166667,-79.95,,3,,9949,266,142,,,,945,,36939,,, +1400,PRU,,OAU3O,,Chimbote (anc),-9.075,-78.583333,,5,,10464,260,142,,,,,,37000089,,, +1400,SLV,es,YSJI La Voz del Litoral,,Usulutn (usu),13.342458,-88.433233,,1.5,,9166,282,142,,,,,,45282,,, +1400,USA,,KCHS,,Truth Or Consequence (NM),33.140556,-107.231944,,1,,8560,308,142,,,,,,38153,,, +1400,USA,,KGWU,,Uvalde (TX),29.187778,-99.776667,,1,,8494,300,142,,,,,,39657,,, +1400,USA,,KIUN,,Pecos (TX),31.435833,-103.503889,,1,,8509,304,142,,,,,,38645,,, +1400,USA,,KNNR,,Sparks (NV),39.569444,-119.750833,,1,,8572,320,142,,,,,,38017,,, +1400,USA,,KQMS,,Redding (CA),40.558611,-122.33,,1,,8587,323,142,,,,,,39199,,, +1400,USA,,KUNO,,Corpus Christi (TX),27.76,-97.437222,,1,,8480,298,142,,,,,,39582,,, +1400,B,pt,ZYI926 Rdio Cantagalo,,Jaics (PI),-7.338922,-41.159028,,0.25,,7998,230,143,,,,,,36902288,,, +1400,CLM,es,HJD31,,Cimitarra (sat),6.316667,-73.95,,1,,8796,266,143,,,,,,35901749,,, +1400,CLM,es,HJLL RCN Antena 2,,Santa Brbara (ant),5.9,-75.516667,,1,,8939,267,143,,,,,,37366,,, +1400,MEX,es,XESH-AM R Sabinas,,Sabinas Hidalgo (nvl),26.488211,-100.183236,,1,,8757,299,143,,,,,,44741,,, +1400,USA,,KSHP,,North Las Vegas (NV),36.210833,-115.163056,,1,,8681,315,143,,,,,,39358,,, +1400,USA,,KSUN,,Phoenix (AZ),33.389722,-111.997778,,1,,8787,312,143,,,,,,39432,,, +1400,USA,,KTUC,,Tucson (AZ),32.276944,-110.980556,,1,,8838,310,143,,,,,,39548,,, +1400,USA,,KUKI,,Ukiah (CA),39.168333,-123.212778,,1,,8758,322,143,,,,,,39574,,, +1400,USA,,KVTO,,Berkeley (CA),37.849444,-122.295556,,1,,8848,321,143,,,,43,,39676,,, +1400,USA,en,KRZR,i,Visalia (CA),36.353889,-119.283889,,1,,8860,318,143,,,,,,39610,,, +1400,B,pt,ZYJ346 Rdio Jornal So Miguel,,So Miguel do Iguau (PR),-25.354722,-54.2125,,2.5,,10426,232,144,,,,,,36902279,,, +1400,CLM,,unid, ?,,,4.45,-74.4,,1,,8990,265,144,,,,82,,52277,, +1400,CLM,es,HJHM,,Calarca (qui),4.516667,-75.666667,,1,,9071,267,144,,,,,,37475,,, +1400,CLM,es,HJIT,,Quibdo (cho),5.766667,-76.7,,1,,9032,268,144,,,,,,37499,,, +1400,CLM,es,HJKM Emisora Mariana/R Multicultural,,Bogot D. C. (bdc),4.616667,-74.15,,1,,8958,265,144,,????-0459,1234567,15,,37527,,, +1400,HND,,HRYT,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37886,,, +1400,MEX,es,XEPF-AM,,Ensenada/Indeco Lomitas (bcn),31.889061,-116.579725,,1,,9158,314,144,,,,,,44544,,, +1400,MEX,es,XEWU-AM La Poderosa,,Matehuala (slp),23.646389,-100.642222,,1,,9038,298,144,,,,,,45037,,, +1400,PNR,es,HOT40 Digital R Luz,,La Chorrera (pnm),8.864558,-79.787311,,1,,8972,272,144,,,,,,37731,,, +1400,URG,,CX140 R Zorrilla de San Martin,,Tacuaremb (ta),-31.716667,-55.966667,,5,,11113,230,144,,0900-0300,1234567,889,,36789,,, +1400,USA,,KESQ,,Indio (CA),33.726944,-116.252778,,1,,8968,315,144,,,,,,38343,,, +1400,USA,,KIHH,,Eureka (CA),40.802778,-124.137778,,0.79,,8637,324,144,,,,,,20000010,,, +1400,USA,,KKJL,,San Luis Obispo (CA),35.264167,-120.665556,,1,,9027,319,144,,,,,,38724,,, +1400,USA,,KKZZ,,Santa Paula (CA),34.33,-119.091944,,1,,9045,317,144,,,,,,39583,,, +1400,USA,en,KCYK,,Yuma (AZ),32.651667,-114.651111,,1,,8990,313,144,,,,,,38684,,, +1400,ARG,,LRG202 R Cumbre,,Neuqun (nq),-38.965072,-68.097075,,10,,12413,234,145,,,,993,,51859,,, +1400,CLM,es,HJJJ,,Ipiales (nar),0.866667,-77.666667,,1,,9527,266,145,,,,,,37509,,, +1400,MEX,es,XEAC-AM Ke Buena,,Aguascalientes (agu),21.8695,-102.297858,,1,,9298,298,145,,,,,,43682,,, +1400,MEX,es,XEI-AM R Trece,,Morelia (mic),19.724475,-101.172706,,1,,9422,296,145,,,,,,44155,,, +1400,MEX,es,XEUBJ-AM R Universidad,,Oaxaca (oax),17.049725,-96.710422,,1,,9381,291,145,,,,,,44892,,, +1400,MEX,es,XEVI-AM Exa,,San Juan del Ro (que),20.351878,-99.963292,,1,,9292,295,145,,,,,,44966,,, +1400,MEX,es,XEXI-AM,,Ixtapan de la Sal (mex),18.837017,-99.671569,,1,,9409,294,145,,,,,,45051,,, +1400,PRU,es,OBX4W Callao Sper R,,Lima (lim),-12.166667,-77.066667,,2.5,,10634,257,145,,,,994,,40398,,, +1400,EQA,,HCVL1,,Multicolor (nap),-0.833333,-77.683333,,1,,9678,265,146,,,,,,37170,,, +1400,EQA,,HCVL6,,Salcedo (cot),-1.066667,-78.566667,,1,,9759,265,146,,,,,,37171,,, +1400,MEX,es,XEKJ-AM Mariachi Estreo,,Acapulco (gue),16.844817,-99.913592,,1,,9603,293,146,,,,,,44258,,, +1400,MEX,es,XEOJ-AM R Horizonte,,Ciudad Lzaro Crdenas (mic),18.005161,-102.2523,,1,,9644,296,146,,,,,,44489,,, +1400,MEX,es,XEAB-AM R Santa Ana,,Santa Ana (son),30.552778,-111.116667,,0.5,,9005,309,147,,,,,,43678,,, +1400,B,pt,ZYK376 Rdio Educadora,,So Joo da Urtiga (RS),-27.771111,-51.799167,,1.1,,10527,229,148,,,,,,36902278,,, +1400,CLM,es,HKZ25,,Ovejas (suc),9.533333,-75.233333,,0.25,,8603,269,148,,,,,,35901739,,, +1400,BOL,,R Comunidad,,Patacamaya (lpz),-17.233333,-67.916667,,1,,10488,247,149,,,,,,52036,,, +1400,CLM,es,HKZ22,,Majagual (suc),8.55,-74.633333,,0.25,,8647,268,149,,,,,,35901738,,, +1400,CHL,,CD140 R Belen,,Puerto Montt (LL),-41.466667,-72.916667,,5,,12891,235,150,,,,,,51955,,, +1400,ARG,,R Fantastica,,Lujan (ba),-34.566667,-59.1,,1,,11539,230,152,,,,,,51861,,, +1400,ARG,es,AM 1400,,Haedo (ba),-34.650556,-58.593333,,1,,11520,230,152,,,,,,33000085,,, +1400,ARG,es,R Malvinas Argentinas,,Rosario (sf),-32.95,-60.65,,1,,11475,233,152,,,,,,33000051,,, +1400,B,pt,ZYK658 Rdio Clube de So Carlos,,So Carlos/Chcara Pedra Branca (SP),-22.047317,-47.890686,,0.25,,9779,229,152,,,,,,36902281,,, +1400,B,pt,ZYK682 Rdio Metrpole AM,,So Jos do Rio Preto (SP),-20.854433,-49.355911,,0.25,,9740,231,152,,,,,,36902287,,, +1400,EQA,,HCBS4,,Manta (man),-1,-80.766667,,0.3,,9903,267,152,,,,,,36870,,, +1400,PRU,,OAX7I R La Hora,,Cusco/Cerro Osqollo (cus),-13.51875,-72.010236,,0.45,,10420,253,152,,,,,,40346,,, +1400,B,pt,ZYJ256 Rdio Globo,,Londrina (PR),-23.233333,-51.141667,,0.25,,10062,231,153,,,,,,36902282,,, +1400,B,pt,ZYK527 Rdio Difusora Luclia,,Luclia (SP),-21.718611,-51.009167,,0.25,,9911,232,153,,,,,,36902286,,, +1400,PRU,,OAX6J R Landa,,Arequipa (are),-16.366667,-71.566667,,0.45,,10643,251,153,,,,,,40332,,, +1400,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010691,,, +1400,B,,ZYJ291,,Rebouas (PR),-25.616667,-50.7,,0.25,,10266,229,154,,,,,,46014,,, +1400,B,,ZYL285,,Laranjeiras do Sul (PR),-25.383333,-52.383333,,0.25,,10331,231,154,,,,,,46712,,, +1400,B,pt,ZYJ299 Rdio Fronteira d'Oeste,,Terra Roxa (PR),-24.157222,-54.073889,,0.25,,10306,233,154,,,,,,36902276,,, +1400,B,,ZYK247,,Getlio Vargas (RS),-27.866667,-52.216667,,0.25,,10558,229,155,,,,,,46280,,, +1400,B,pt,ZYJ775 Rdio Entre Rios,,Palmitos (SC),-27.0675,-53.161111,,0.25,,10531,230,155,,,,,,36902274,,, +1400,CHL,,CD140 R La Amistad,,Los Angeles (BI),-37.466667,-72.333333,,1,,12525,238,155,,1030-0400,1234567,,,51954,,, +1400,PRG,,ZP37,,Carapegua (pgu),-25.75,-57.2,,0.25,,10626,234,155,,,,,,45533,,, +1400,CHL,,CA140 R Tarapaca,,Iquique (TA),-20.233333,-70.133333,,0.25,,10895,247,156,,1045-0600,1234567,,,35690,,, +1400,USA,,KRVZ,,Springerville (AZ),34.138056,-109.270833,,0.022,,8577,310,159,,,,,,39315,,, +1404,F,fr,France Info,,Brest/Quimerc'h (29),48.274167,-4.153056,,20,,863,245,53,,0000-2400,1234567,,,1403,,, +1404,ROU,de,SRR R Bukarest,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0820-0830,......7,8,,1412,,, +1404,ROU,de,SRR R Bukarest,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1200-1300,123456,8,,1412,,, +1404,ROU,hu,SRR Kolozsvri Rdi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0600-0800,123456,8,,1412,,, +1404,ROU,hu,SRR Kolozsvri Rdi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1200-1600,12345.7,8,,1412,,, +1404,ROU,hu,SRR Kolozsvri Rdi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1300-1600,.....6.,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0355-0430,123456,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0355-0600,......7,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0600-0820,......7,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0800-1200,.....6.,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0800-1200,12345..,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0830-1200,......7,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1600-1700,1234567,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1800-2000,1234567,8,,1412,,, +1404,ROU,ro,SRR R Romnia Actualităţi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,2000-0355,1234567,8,,1412,,, +1404,ROU,ro,SRR R Sighet,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0430-0600,123456,8,,1412,,, +1404,ROU,ro,SRR R Sighet,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1700-1800,1234567,8,,1412,,, +1404,F,fr,France Info,,Dijon/Couternon (21),47.338433,5.159789,,5,,538,190,55,,0000-2400,1234567,,,1400,,, +1404,F,fr,France Bleu Corse Frequenza Mora,,Ajaccio/Coti-Chiavari (20A),41.768056,8.768333,,20,,1164,170,56,,0000-2400,1234567,0,,1405,,, +1404,GRC,el,ERA Komotinis,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,0500-1600,12345..,,,1408,,, +1404,GRC,el,ERA Komotinis,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,0900-1100,.....6.,,,1408,,, +1404,GRC,el,ERA Komotinis,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,1100-1300,......7,,,1408,,, +1404,GRC,el,ERA Net/ERA 2/ERA Sport,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,0000-0900,.....6.,,,1408,,, +1404,GRC,el,ERA Net/ERA 2/ERA Sport,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,1300-0500,......7,,,1408,,, +1404,GRC,el,ERA Net/ERA 2/ERA Sport,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,1600-0500,1234...,,,1408,,, +1404,GRC,el,ERA Net/ERA 2/ERA Sport,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,1600-2400,....5..,,,1408,,, +1404,ROU,ro,SRR R Romnia Actualităţi,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0600-2200,1234567,996,,1413,,, +1404,UKR,uk,UR 1 Persha Prog.,,Izmail/OORTPTS (OD),45.333139,28.872194,,10,,1802,106,65,,0330-2200,1234567,,,8100020,,, +1404,POL,pl,Twoje R Chojnice Plus,,Chojnice/Komin Ciepłowni Rindipol (PM),53.690556,17.591111,,0.8,,769,72,66,,0700-0900,1234567,,,6400010,,, +1404,POL,pl,Twoje R Chojnice Plus,,Chojnice/Komin Ciepłowni Rindipol (PM),53.690556,17.591111,,0.8,,769,72,66,,1700-1900,1234567,,,6400010,,, +1404,POL,pl,Twoje R,,Chojnice/Komin Ciepłowni Rindipol (PM),53.690556,17.591111,,0.8,,769,72,66,,0900-1700,1234567,,,6400010,,, +1404,POL,pl,Twoje R,,Chojnice/Komin Ciepłowni Rindipol (PM),53.690556,17.591111,,0.8,,769,72,66,,1900-0700,1234567,,,6400010,,, +1404,I,it,R Luna 106,,Dinazzano di Casalgrande (re),44.567544,10.732728,,0.15,,897,158,74,,0700-1800,1234567,,,1409,,, +1404,G,,RED (LPAM),,Colchester (EN-ESX),51.9,0.9,,0.001,,378,269,91,,,,17,,1406,,, +1404,IRN,fa,IRIB R Iran,,Ghir=Qir/Karzin (frs),28.420772,53.083806,,10,,4641,106,93,,0000-2400,1234567,,,10800010,,, +1404,KGZ,ky,KTRK Birinchi R,,Jojomel=Dedemel (jld),41.433333,74.366667,,20,,5111,75,95,,0000-1900,1234567,,,47126,,, +1404,KGZ,ky,KTRK Birinchi R,,Ala Mishik (nan),42.4,75,,7,,5088,74,99,,0000-1900,1234567,,,50754,,, +1404,KGZ,ky,KTRK Birinchi R,,Khaidarkan (bat),39.941667,71.338889,,7,,5012,79,99,,0000-1900,1234567,,,47125,,, +1404,KGZ,ky,KTRK Birinchi R,,Naryn (nan),41.433333,76,,7,,5219,74,101,,0000-1900,1234567,,,47127,,, +1404,ARS,ar,BSKSA Idha'atu-i Jeddah,,unknown,24,45.45,,1,,4539,118,102,,,,,,10600016,,, +1404,KGZ,ky,KTRK Birinchi R,,Cholpon-Ata (ykl),42.633333,77.083333,,1,,5208,72,109,,0000-1900,1234567,,,2231,,, +1404,KGZ,ky,KTRK Birinchi R,,Orgochor (ykl),42.366667,78.05,,1,,5289,72,110,,0000-1900,1234567,,,47128,,, +1404,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629722,,20,,7129,78,115,,0100-0400,1234567,,,50745,,, +1404,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629722,,20,,7129,78,115,,1030-1600,1234567,,,50745,,, +1404,MWI,,MBC R 1,,Chitipa (ctp),-9.695958,33.263956,,10,,7336,151,120,,0253-2200,1234567,,,2498,,, +1404,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Jingzhou (HU),30.363889,112.095,,50,,8360,59,124,,,,,,36200683,,, +1404,CHN,,Fujian JGD Interactive FM,,Fuzhou (FJ),26.1,119.4,,50,,9165,57,127,,,,,,36200199,,, +1404,CHN,,Dandong RGD News,,Dandong/LNTS311 (LN),40.182778,124.370833,,10,,8138,45,128,,,,,,50741,,, +1404,CHN,zh,Hubei RGD Xinwen Zonghe Pinl,,Chongyang (HU),31.483333,111.383333,,10,,8220,59,129,,2125-1700,1234567,22,,50742,,, +1404,CHN,zh,Hubei RGD Xinwen Zonghe Pinl,,Suizhou (HU),31.715,113.344722,,10,,8314,58,130,,,,,,36200266,,, +1404,KOR,,HLKP CBS,,Busan (bus),35.110833,129.121667,,10,,8839,44,133,,2000-1600,1234567,,,50758,,, +1404,THA,th,Jor. Sor. 3,,Yasothon/104 Thetsaban 1 Rd (yst),15.803889,104.143056,,10,,9142,74,134,,????-1305,1234567,,,50764,,, +1404,THA,th,Thor. Phor. Neung,,Suphanburi/Ban Samliam (shb),14.463333,100.044722,,10,,8988,78,134,,????-1758,1234567,871,,50763,,, +1404,J,ja,JOVR SBS Shizuoka Hoso,,Shizuoka (chu-shi),34.931389,138.380556,,10,90,9272,38,135,,0000-2400,1234567,,,50753,,, +1404,TWN,,Yi Shih Kuangpo Tientai,,Keelung=Chi-Lung (KLS),25.083333,121.672222,,10,,9387,55,135,,,,,,50767,,, +1404,J,ja,JOQL HBC Hokkaido Hoso,,Kushiro (hok),42.981944,144.403056,,5,,8697,30,136,,0000-2400,1234567,9997,,50752,,, +1404,THA,th,Sor. Wor. Thor. (R Thailand),,Songkhla (sgk),7.138333,100.569722,,10,,9664,82,136,,2200-1600,1234567,,,50762,,, +1404,PHL,,DXAQ-AM Kingdom R,,Davao City (dvs),7.066667,125.6,,15,,11291,62,140,,,,,,33300015,,, +1404,CHN,zh,CNR 1,,Shengsi (ZJ),30.716667,122.45,,1,,8911,52,143,,2025-1805,1234567,,,36200200,,, +1404,PHL,,DYKB-AM Radyo Ronda,,Bacolod City/Sumag (noc),10.6,122.916667,,5,,10801,62,143,,2000-1330,1234567,,,50761,,, +1404,CHN,zh,CNR 1,,Wenling (ZJ),28.366667,121.366667,,1,,9068,54,144,,2025-1805,1234567,,,50743,,, +1404,J,ja,JOVO SBS Shizuoka Hoso,,Hamamatsu (chu-shi),34.730278,137.709444,,1,90,9264,38,145,,,,,,31400006,,, +1404,INS,id,PM7CLA R Puspa Irama,,Belitang (SS-oku),-4.25,104.433333,,1,,10928,86,150,,,,,,50746,,, +1404,INS,id,Gema Prisma R,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,50748,,, +1404,INS,id,Karisma R,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400142,,, +1404,TMP,,R Timor Kmanek,,Dili (dil),-8.55,125.566667,,2.5,,12721,72,152,,2030-1500,1234567,,,50765,,, +1404,J,ja,SBS Shizuoka Hoso,,Haruno (chu-shi),34.983333,137.916667,,0.1,,9248,38,154,,,,,,31400007,,, +1404,J,ja,SBS Shizuoka Hoso,,Kakegawa,34.5,134,,0.1,,9124,41,154,,,,,,31400098,,, +1404,J,ja,SBS Shizuoka Hoso,,Misakubo (chu-shi),35.166667,137.866667,,0.1,,9227,38,154,,,,,,31400008,,, +1404,J,ja,SBS Shizuoka Hoso,,Sakuma (chu-shi),35.066667,137.783333,,0.1,,9234,38,154,,,,,,31400009,,, +1404,J,ja,SBS Shizuoka Hoso,,Tatsuyama (chu-shi),34.95,137.816667,,0.1,,9247,38,154,,,,,,31400010,,, +1404,J,ja,SBS Shizuoka Hoso,,Tenryu (chu-shi),34.933333,137.733333,,0.1,,9245,38,154,,,,,,31400011,,, +1404,AUS,,6TAB Racing R.,,Busselton/Kealy (WA),-33.658936,115.227556,,4,,14126,99,155,,0000-2400,1234567,,,50739,,, +1404,J,ja,SBS Shizuoka Hoso,,Gotenba (chu-shi),35.337778,138.911667,,0.1,,9254,37,155,,,,,,31400005,,, +1404,J,ja,SBS Shizuoka Hoso,,Mishima (chu-shi),35.1,138.916667,,0.1,,9278,37,155,,,,,,31400097,,, +1404,INS,id,RSPD Brebes,,Brebes (JT-bre),-6.883333,109.05,,0.25,,11473,84,158,,,,,,50747,,, +1404,AUS,,2PK,,Parkes/Forbes (NSW),-33.166667,148.207778,,2,,16311,71,165,,0000-2400,1234567,,,50740,,, +1404,NZL,,4XL NZs Rhema,,Invercargill/Tussock Creek (STL),-46.2475,168.468333,,2.5,,18562,70,171,,0000-2400,1234567,,,50759,,, +1410,CAN,xx,CJWI,,Saint-Constant (QC),45.368056,-73.6225,,10,,5614,296,103,,,,9935,,20109311,,, +1410,USA,,WPOP,i,Hartford (CT),41.693056,-72.758333,,5,,5819,292,108,,,,0,,42724,,, +1410,CAN,en,CKSL,,London (ON),42.883056,-81.223333,,10,,6254,298,110,,,,8,,36394,,, +1410,USA,,WELM,,Elmira (NY),42.119722,-76.810278,,5,,6042,295,110,,,,,,41288,,, +1410,USA,,WLSH,,Lansford (PA),40.844444,-75.843611,,5,,6075,293,111,,,,,,42234,,, +1410,USA,,WDOV,,Dover (DE),39.200833,-75.565278,,5,,6180,292,112,,,,,,41199,,, +1410,USA,,KQV,,Pittsburgh (PA),40.523333,-80.011111,,5,,6359,295,114,,,,,,39210,,, +1410,USA,,WSCW,,South Charleston (WV),38.376111,-81.703611,,5,,6629,295,116,,,,,,42970,,, +1410,USA,,WING,,Dayton (OH),39.682222,-84.159167,,5,,6677,297,117,,,,,,41768,,, +1410,CAN,en,CFTE,,Vancouver (BC),49.127778,-123.029444,,50,,7787,327,118,,,,0,,36016,,, +1410,USA,,WIZM,,La Crosse (WI),43.846944,-91.218611,,5,,6760,305,118,,,,982,,41830,,, +1410,USA,,WDOE,,Dunkirk (NY),42.463611,-79.355833,,0.5,,6173,297,122,,,,,,41195,,, +1410,USA,,WZBR,,Brockton (MA),42.058333,-71.044444,,0.156,,5684,291,122,,,,,,42397,,, +1410,USA,,KRWB,,Roseau (MN),48.845278,-95.726111,,1,,6604,312,123,,,,,,39316,,, +1410,USA,,WRMN,,Elgin (IL),42.005833,-88.298611,,1.3,,6740,302,123,,,,,,42881,,, +1410,USA,,WENU,,South Glen Falls (NY),43.329167,-73.648333,,0.103,,5758,294,124,,,,,,41311,,, +1410,USA,,WKKP,,McDonough (GA),33.429722,-84.131111,,2.5,,7176,292,125,,,,,,42030,,, +1410,B,pt,ZYJ614 Rdio Santa Cruz AM,,Santa Cruz/Rua das Marrecas (RN),-6.226944,-36.013333,,5,,7627,226,126,,,,,,36902294,,, +1410,USA,,WHTG,,Eatontown (NJ),40.269444,-74.071944,,0.126,,6006,292,126,,,,9955,,41692,,, +1410,USA,en,WMYR,,Fort Myers (FL),26.623056,-81.855,,5,,7591,286,126,,,,2,,42421,,, +1410,USA,en,WNGL,,Mobile (AL),30.706667,-88.061944,,4.6,,7649,293,127,,,,9990,,42256,,, +1410,BES,,PJF1 Voice of Saba,,Saba (sba),17.616667,-63.25,,1,,7089,265,128,,,,,,40460,,, +1410,DOM,,HICH R 14-10,,Santa Cruz de Barahona (bh),18.183333,-71.083333,,3,,7575,272,128,,0900-0400,1234567,,,37228,,, +1410,USA,,WNER,,Watertown (NY),43.946389,-75.947778,,0.058,,5856,296,128,,,,9899,,42460,,, +1410,USA,,WLAQ,,Rome (GA),34.26,-85.205278,,1,,7176,294,129,,,,,,42123,,, +1410,USA,,WYIS,,McRae (GA),32.056944,-82.865556,,1,,7208,291,129,,,,,,43520,,, +1410,USA,en,WRJD,,Durham (NC),36.028889,-78.85,,0.29,,6633,291,129,,,,,,43061,,, +1410,PTR,,WRSS,,San Sebastian (PR),18.320556,-66.979167,,1,,7283,269,130,,0000-2400,1234567,,,42921,,, +1410,USA,,WBBX,,Kingston (TN),35.880278,-84.515556,,0.5,,7002,295,130,,,,,,40816,,, +1410,USA,,WHAG,,Halfway (MD),39.6175,-77.738056,,0.099,,6286,293,130,,,,,,41592,,, +1410,VEN,,YVSP R Simpatia,,Valera (tjl),9.316667,-70.616667,,10,,8307,266,130,,,,982,,51699,,, +1410,USA,es,WIQR,,Prattville (AL),32.423056,-86.439167,,1,,7404,293,131,,,,,,41795,,, +1410,USA,,WVCB,,Shallotte (NC),33.972222,-78.383889,,0.168,,6765,289,132,,,,,,43284,,, +1410,VEN,,YVST R Turen,,Turen (ptg),9.816667,-69.75,,5,,8204,265,132,,0900-0400,1234567,,,45460,,, +1410,B,pt,ZYH639 Rdio Boas Novas,,Pacajus/Fazenda Guarany (CE),-4.214608,-38.474744,,1,,7552,229,133,,,,,,36902292,,, +1410,USA,,KKLO,,Leavenworth (KS),39.273333,-94.9075,,0.5,,7342,304,133,,,,,,38729,,, +1410,USA,en,KGSO,,Wichita (KS),37.734722,-97.351667,,1,,7610,304,133,,,,,,38955,,, +1410,VEN,,YVLY,,Guiria (suc),10.566667,-62.266667,,1,,7632,260,133,,,,,,45376,,, +1410,USA,en,WRTZ,,Roanoke (VA),37.279722,-79.991389,,0.072,,6608,293,134,,,,,,42856,,, +1410,MEX,es,XEBS-AM La Ms Perrona,,Mxico D.F/Iztacalco (dif),19.388756,-99.125003,,10,,9326,294,135,,,,0,,43789,,, +1410,MEX,es,XEKB-AM,,Guadalajara (jal),20.701894,-103.281375,,10,,9463,298,135,,,,,,44246,,, +1410,USA,,KIIX,,Fort Collins (CO),40.592778,-105.105,,1,,7781,311,135,,,,,,38598,,, +1410,USA,,KOOQ,,North Platte (NE),41.175,-100.751944,,0.5,,7502,309,135,,,,,,39093,,, +1410,USA,,WNWZ,,Grand Rapids (MI),42.987222,-85.623889,,0.048,,6507,301,135,,,,,,42539,,, +1410,USA,en,KDKT,,Beulah (ND),47.2875,-101.762778,,0.189,,7034,314,135,,,,,,38552,,, +1410,CLM,es,HJDU Emisora Cultural Universidad de Antioquia,,Medelln (ant),6.216667,-75.466667,,5,,8908,267,136,,,,997,,37401,,, +1410,USA,,WPCC,,Clinton (SC),34.445,-81.89,,0.1,,6952,292,136,,,,,,42653,,, +1410,B,pt,ZYK691 Rdio Amrica,,So Paulo/Rod. Raposo Tavares (SP),-23.588028,-46.795306,,10,100,9872,227,137,,,,991,,36902300,,, +1410,CLM,es,HJEI R Guadalajara,,Buga (val),3.866667,-76.316667,,5,,9172,267,137,,,,96,,37411,,, +1410,DOM,,HIJJ R Gr-Gr,,Ro San Juan (mts),19.616667,-70.066667,,0.25,,7384,272,137,,1000-0300,1234567,,,37252,,, +1410,DOM,,HIRM R Sol,,Salvalon de Higey (alt),18.616667,-68.7,,0.25,,7375,270,137,,1000-0300,1234567,,,37293,,, +1410,PNR,es,HOH779 R Mensab,,Las Tablas/El Cocal (lsn),7.75,-80.280833,,5,,9103,272,137,,1000-0300,1234567,3,,52351,,, +1410,USA,,KWYO,,Sheridan (WY),44.798333,-106.930833,,0.35,,7501,315,137,,,,,,39773,,, +1410,USA,,WSHY,,Lafayette (IN),40.360556,-86.877222,,0.06,,6787,300,137,,,,,,42125,,, +1410,USA,en,WTIX,,Concord (NC),35.411944,-80.611667,,0.067,,6794,292,137,,,,,,41267,,, +1410,USA,es,KCAL,,Redlands (D) (CA),34.068889,-117.201667,,5,,8981,316,137,,,,,,20016217,,, +1410,DOM,,HIAE R Revelacion en America,,Santo Domingo (sdo),18.566667,-69.916667,,0.25,,7463,271,138,,1200-0200,1234567,,,37196,,, +1410,USA,es,KCAL,,Redlands (N) (CA),34.110833,-117.153056,,4,,8974,316,138,,,,,,38121,,, +1410,HTI,,Voix de Nord-ouest,,Port-de-Paix (nou),19.916667,-72.816667,,0.2,,7546,274,139,,,,,,35631,,, +1410,NCG,,YNRA La Estacion de la Amistad/R Venceremos,,Len (leo),12.433333,-86.9,,3,,9143,280,139,,1000-0200,1234567,,,52214,,, +1410,USA,,KLFD,,Litchfield (MN),45.117222,-94.553611,,0.045,,6841,308,139,,,,,,38804,,, +1410,USA,,WHLN,,Harlan (KY),36.849722,-83.394722,,0.041,,6854,295,139,,,,,,41658,,, +1410,USA,,WIHM,,Taylorville (IL),39.543889,-89.275,,0.063,,6994,300,139,,,,,,41740,,, +1410,USA,,KGRN,,Grinnell (IA),41.744444,-92.705833,,0.047,,7013,304,140,,,,,,38508,,, +1410,USA,,KLEM,,Le Mars (IA),42.817778,-96.163056,,0.05,,7117,307,141,,,,,,38798,,, +1410,B,pt,ZYK294 Rdio Santa Rosa,,Santa Rosa (RS),-27.85,-54.498056,,5,,10676,231,142,,,,,,36902295,,, +1410,USA,,KTCS,,Fort Smith (AR),35.277778,-94.376389,,0.13,,7648,301,142,,,,,,39464,,, +1410,USA,,WCMT,,Martin (TN),36.3625,-88.849167,,0.058,,7228,298,142,,,,,,41041,,, +1410,USA,,WQBQ,,Leesburg (FL),28.786944,-81.890556,,0.09,,7414,287,142,,,,,,42765,,, +1410,CLM,es,HJTY,,Velez (sat),6.016667,-73.666667,,1,,8803,266,143,,,,,,37654,,, +1410,HND,,HRDD,,La Ceiba (atl),15.8,-86.816667,,1,,8844,282,143,,,,,,37744,,, +1410,USA,,KMYC,,Marysville (CA),39.138333,-121.554167,,1,,8692,321,143,,,,9991,,38953,,, +1410,USA,,WZZA,,Tuscumbia (AL),34.708056,-87.693056,,0.051,,7293,296,143,,,,,,43599,,, +1410,B,pt,Rdio Bandeirantes Braslia,,Taguatinga (DF),-15.833333,-48.056944,,1,,9189,232,144,,,,,,36902864,,, +1410,B,pt,ZYH467 Rdio So Gonalo,,So Gonalo dos Campos (BA),-12.440278,-38.944444,,0.5,,8388,226,144,,,,,,36902291,,, +1410,B,pt,ZYH803 Voz do Cerrado,,Santo Antnio do Descoberto (GO),-16.05095,-48.109281,,1,,9213,232,144,,,,,,36902289,,, +1410,CLM,es,HJFS,,Honda (tol),5.216667,-74.783333,,1,,8949,266,144,,,,,,37443,,, +1410,GTM,,TGGH R Xelaj,,Quetzaltenango (qzt),14.616667,-90.583333,,1,,9198,284,144,,1200-0600,1234567,,,40494,,, +1410,HND,,HRSY,,San Lorenzo (val),13.416667,-87.45,,1,,9094,281,144,,,,,,37848,,, +1410,USA,,KERI,,Bakersfield (CA),35.351944,-118.958056,,1,,8941,318,144,,,,76,,38338,,, +1410,USA,,KNAL,,Victoria (TX),28.778611,-97.003611,,0.5,,8364,298,144,,,,,,38961,,, +1410,ARG,es,R Folklorismo,,Jose Leon Suarez (ba),-34.533333,-58.583333,,5,,11509,230,145,,0000-0100,1234567,951,,51862,,, +1410,ARG,es,R Folklorismo,,Jose Leon Suarez (ba),-34.533333,-58.583333,,5,,11509,230,145,,1100-2400,1234567,951,,51862,,, +1410,URG,,CX44 AM Libre,,Montevideo (mo),-34.883333,-56.316667,,5,,11424,228,145,,0800-0400,1234567,986,,36819,,, +1410,USA,,KNTX,,Bowie (TX),33.585556,-97.806944,,0.15,,7993,302,145,,,,,,39024,,, +1410,B,pt,ZYJ799 Rdio Namb,,Ponte Serrada/Fazenda Baia (SC),-26.9,-52,,2,,10455,230,146,,,,,,36902297,,, +1410,EQA,,HCFA4,,Quininde (esm),0.366667,-79.516667,,1,,9697,267,146,,,,,,36930,,, +1410,EQA,,HCMS7,,El Coca (nap),-0.5,-77.95,,1,,9667,265,146,,,,,,37032,,, +1410,MEX,es,XEZHO-AM Aquamarina 1410,,Zihuatanejo (gue),17.637222,-101.563333,,1,,9635,295,146,,,,,,34900026,,, +1410,USA,,KCUL,,Marshall (TX),32.491667,-94.364444,,0.09,,7885,299,146,,,,,,38222,,, +1410,USA,,KLVQ,,Athens (TX),32.156111,-95.841944,,0.139,,8002,300,146,,,,,,38858,,, +1410,USA,,KNVR,,San Saba (TX),31.190556,-98.715278,,0.203,,8255,301,146,,,,,,38002,,, +1410,B,pt,ZYI382 Nova Rdio Clube de Corumb,,Corumb (MS),-19.016278,-57.629053,,1,,10026,238,147,,0000-0100,......7,7,,36902293,,, +1410,B,pt,ZYI382 Nova Rdio Clube de Corumb,,Corumb (MS),-19.016278,-57.629053,,1,,10026,238,147,,0700-2200,12345.7,7,,36902293,,, +1410,B,pt,ZYI382 Nova Rdio Clube de Corumb,,Corumb (MS),-19.016278,-57.629053,,1,,10026,238,147,,0700-2400,.....6.,7,,36902293,,, +1410,EQA,,HCKD5,,Gualaceo (azu),-2.916667,-78.816667,,1,,9938,264,147,,,,,,37000,,, +1410,MEX,es,XEIR-AM La Seal Perfecta,,Ciudad Valles (slp),22.012386,-98.999517,,0.5,,9084,295,147,,,,,,44178,,, +1410,USA,,KRIL,,Odessa (TX),31.825833,-102.355833,,0.235,,8409,304,147,,,,,,39248,,, +1410,B,pt,ZYJ486 Rdio Itaperuna,,Itaperuna/Fazenda do Entroncamento (RJ),-21.198822,-41.919269,,0.5,,9399,224,148,,,,993,,36902290,,, +1410,MEX,es,XEAS-AM Ke Buena,,Nuevo Laredo (tam),27.4935,-99.515428,,0.25,,8628,299,148,,,,,,43735,,, +1410,MEX,es,XECF-AM La Mexicana,,Los Mochis (sin),25.838333,-109.062889,,0.5,,9329,305,148,,,,997,,43833,,, +1410,PRU,,OAX2Y R Heroica,,Trujillo (lal),-8.116667,-79.033333,,1,,10410,261,148,,,,,,40289,,, +1410,PRU,,R Olmos,,Olomos (lam),-6.7,-79.916667,,1,,10345,263,148,,,,2,,2043,,, +1410,B,pt,ZYK246 Rdio Garibaldi,,Garibaldi (RS),-29.23,-51.533333,,1,,10652,228,149,,,,,,36902296,,, +1410,B,pt,ZYK683 Rdio Excelsior,,Rio Claro (SP),-22.410128,-47.585833,,0.5,,9798,228,149,,,,,,36902299,,, +1410,EQA,,HCJN1,,Quito (pic),-0.166667,-78.466667,,0.5,,9673,266,149,,,,,,36991,,, +1410,EQA,,HCRN5,,Guano (chi),-1.6,-78.616667,,0.5,,9809,265,149,,,,,,37099,,, +1410,MEX,es,XECUA-AM R Universidad,,Campeche (cam),19.832222,-90.515631,,0.25,,8737,288,149,,,,,,43884,,, +1410,PRU,,OBZ4V R Universal,,Santa Maria (anc),-10.166667,-77.666667,,1,,10498,259,149,,,,,,40425,,, +1410,USA,,KHCH,,Huntsville (TX),30.715,-95.528333,,0.087,,8107,298,149,,,,,,38534,,, +1410,USA,,WHBT,,Tallahassee (FL),30.484167,-84.286944,,0.018,,7428,290,149,,,,,,41612,,, +1410,EQA,,HCVM2,,Milagro (gua),-2.166667,-79.616667,,0.5,,9927,266,150,,,,,,37173,,, +1410,CLM,es,HKP86,,Chiquinquira (boy),5.616667,-73.816667,,0.15,,8848,266,151,,,,,,35901769,,, +1410,URG,,CW141 R Turistica,,Salto (sa),-31.516667,-57.916667,,1,,11198,231,151,,,,,,36748,,, +1410,USA,,KDBS,,Alexandria (LA),31.273611,-92.428611,,0.03,,7871,297,151,,,,,,38241,,, +1410,ARG,es,R COPE,,Chivilcoy (ba),-34.9,-60.019444,,1,,11618,231,152,,,,,,33000056,,, +1410,BOL,,R Robor,,Robor (scz),-18.333333,-59.75,,0.25,,10088,240,153,,1000-0400,1234567,,,52037,,, +1410,CHL,,CB141 R Quinta Region,,Valparaso (VS),-33.016667,-71.616667,,1,,12104,240,154,,,,,,35734,,, +1410,BOL,,CP124 R Atlantida,,Oruro (oru),-17.966667,-67.116667,,0.25,,10504,246,155,,1100-2400,1234567,,,36635,,, +1410,USA,en,KSMA,,Lompoc (CA),34.663056,-120.382778,,0.077,,9072,318,155,,,,,,39508,,, +1410,B,pt,ZYK284 Rdio Minuano,,Rio Grande (RS),-32.03,-52.09,,0.25,,10944,227,156,,,,,,36902298,,, +1410,CHL,,CD141 R Loncoche,,Loncoche (AR),-39.35,-72.616667,,1,,12699,236,156,,1100-0330,1234567,,,35877,,, +1410,USA,,KBNP,,Portland (OR),45.473333,-122.66,,0.009,,8125,325,159,,,,989,,38071,,, +1410,USA,,KRML,,Carmel (CA),36.536389,-121.903611,,0.016,,8959,320,161,,,,9970,,39267,,, +1413,MDA,ru,Vesti FM,,Grigoriopol/Maiac (TN),47.280189,29.436683,,500,,1733,99,47,,0000-2400,1234567,3,,52480,,, +1413,E,es,RNE R 5,,Girona/Campllong (CAT-GI),41.901139,2.847,,12,,1167,195,58,,0000-2400,1234567,9987,,1415,,, +1413,E,es,RNE R 5,,Vigo/Monte do Castro (GAL-PO),42.230928,-8.726633,,25,,1580,232,59,,0000-2400,1234567,0,,1416,,, +1413,G,en,Premier Christian R,,Dartford Marshes (EN-KNT),51.470917,0.235139,,0.5,,430,263,64,,0000-2400,1234567,9882,,1423,,, +1413,E,es,RNE R 5,,Jan/Las Lagunillas (AND-J),37.795017,-3.772844,,10,,1778,210,65,,0000-2400,1234567,999,,1417,,, +1413,G,en,Premier Christian R,,Heathrow Airport (EN-GTL),51.483917,-0.446833,,0.5,,476,264,65,,0000-2400,1234567,9995,,1424,,, +1413,G,en,BBC R 5 Live,,Berkeley Heath (EN-GLO),51.691889,-2.421194,,0.5,,607,269,66,,0000-0600,1234567,0,,1419,,, +1413,G,en,BBC R 5 Live,,Bourton-on-the-Water (EN-GLO),51.908917,-1.733444,,0.5,,558,271,66,,0000-0600,1234567,0,,1418,,, +1413,G,en,BBC R Gloucestershire,,Berkeley Heath (EN-GLO),51.691889,-2.421194,,0.5,,607,269,66,,0600-2400,1234567,0,,1419,,, +1413,G,en,BBC R Gloucestershire,,Bourton-on-the-Water (EN-GLO),51.908917,-1.733444,,0.5,,558,271,66,,0600-2400,1234567,0,,1418,,, +1413,OMA,dr,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0030-0100,1234567,9998,,1427,,, +1413,OMA,dr,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1800-1900,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0200-0230,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0300-0400,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1300-1400,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1730-1800,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1900-2100,1234567,9998,,1427,,, +1413,OMA,fa,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0230-0300,1234567,9998,,1427,,, +1413,OMA,fa,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1600-1700,1234567,9998,,1427,,, +1413,OMA,hi,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0100-0130,1234567,9998,,1427,,, +1413,OMA,hi,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1400-1500,1234567,9998,,1427,,, +1413,OMA,hi,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1700-1730,1234567,9998,,1427,,, +1413,OMA,ur,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0130-0200,1234567,9998,,1427,,, +1413,OMA,ur,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1500-1600,1234567,9998,,1427,,, +1413,G,,R Man United (RSL),,Manchester (EN-GTM),53.5,-2.25,,0.001,,602,288,93,,,,,,1425,,, +1413,IRN,fa,IRIB R Fars,,Estahban (frs),29.1225,54.074444,,10,,4649,104,94,,,,2,,1814,,, +1413,IRQ,,Voice of the Iraqi Communist Workers Party,,Baghdad (bgh),33.35,44.383333,,0.5,,3674,110,97,,,,,,1426,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,10,,5377,67,101,,,,,,36200246,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Xinyuan=Knes/SARFT8117 (XJ),43.46,83.263611,,5,,5548,68,106,,,,,,36200250,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Hami=Kumul/XJTS761 (XJ),42.872778,93.511667,,10,,6223,62,109,,,,,,36200247,,, +1413,IND,,AIR North,,Kota (RJ),25.131511,75.942811,,20,,6452,89,109,,0630-0930,1234567,,,51362,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Shache=Yarkant/SARFT8107 (XJ),38.417222,77.225833,,1,,5512,76,112,,,,,,36200249,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Kuqa=Kuche/SARFT8106 (XJ),41.717222,82.895278,,1,,5646,70,113,,,,,,36200248,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Ruoqiang=Qarkilik/SARFT8105 (XJ),39.042222,88.170278,,1,,6179,69,119,,2300-1800,1234567,25,,47259,,, +1413,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,unknown (NM),34.95,104.5,,10,,7515,61,122,,,,,,36201305,,, +1413,BGD,,Bangladesh Betar,,Comilla (cgg),23.356417,91.141,,10,,7630,79,123,,1100-1710,1234567,,,50770,,, +1413,J,ja,JOIF KBC-Kyushu Asahi Hoso,,Fukuoka (kyu-fuk),33.689444,130.403889,,50,,9035,44,127,,0000-1600,......7,999,,50778,,, +1413,J,ja,JOIF KBC-Kyushu Asahi Hoso,,Fukuoka (kyu-fuk),33.689444,130.403889,,50,,9035,44,127,,0000-2400,123456,999,,50778,,, +1413,J,ja,JOIF KBC-Kyushu Asahi Hoso,,Fukuoka (kyu-fuk),33.689444,130.403889,,50,,9035,44,127,,1850-2400,......7,999,,50778,,, +1413,CHN,,Wuzhong RGD,,Wuzhong (NX),38,106.2,,1,,7361,58,131,,,,,,50774,,, +1413,CHN,,Jiangsu RGD Xinwen Pinl,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,10,,8541,52,132,,,,,,36200262,,, +1413,CHN,,Hegang RGD,,Hegang/HLTS919 (HL),47.316944,130.213333,,1,,7740,37,134,,2125-????,1234567,,,50772,,, +1413,TWN,,BCC News Network,,Miaoli (ML),24.547839,120.807339,,10,,9388,56,135,,0000-2400,1234567,,,50785,,, +1413,CHN,,Tieling RGD News,,Tieling/LNTS325 (LN),42.353611,123.901667,,1,,7918,44,136,,,,,,50773,,, +1413,PHL,,DWRA-AM Super Radyo,,Baguio (bgt),16.4,120.583333,,5,,10125,61,140,,0000-2400,1234567,,,50781,,, +1413,CHN,,Jiangsu RGD Xinwen Pinl,,Binhai (JS),34,119.833333,,1,,8471,52,142,,,,,,36200263,,, +1413,CHN,,Jiangsu RGD Xinwen Pinl,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,2050-1600,1234567,,,50775,,, +1413,INS,id,RRI Pro-1,,Sungailiat (BB),-2.002778,106.111111,,5,,10845,84,143,,2200-1700,1234567,,,50777,,, +1413,PHL,,DYXW-AM Radyo Totoo,,Tacloban City (lyt),11.216667,125,,5,,10869,60,143,,2000-1520,1234567,,,50783,,, +1413,TWN,,BCC News Network,,Puli (NT),23.971111,120.969444,,1,,9450,57,145,,0000-2400,1234567,,,50786,,, +1413,AUS,,2EA SBS National,,Newcastle/Hexham (NSW),-32.855833,151.701556,,5,,16508,66,162,,0000-2400,1234567,,,50768,,, +1413,AUS,,Vision R,,Shepparton/Dookie (VIC),-36.378875,145.537583,,0.5,,16385,78,171,,,,,,50769,,, +1413,NZL,,1ZO Newstalk ZB,,Tokoroa/Wiltsdown (WKO),-38.165,175.793333,,2,,18259,32,171,,,,,,50780,,, +1413,NZL,,3XP R Ferrymead-Nga Hou E Wha,,Christchurch/Ferrymead (CAN),-43.568044,172.699067,,0.9,,18623,52,176,,,,,,50779,,, +1415,INS,id,R Suara Magaga,,Toli-Toli (ST-tol),1.05,120.816667,,1,,11547,70,152,,,,,,50788,,, +1420,CAN,en,CKDY,,Digby (NS),44.634167,-65.777778,,1,,5172,291,109,,,,,,36298,,, +1420,USA,,WCOJ,,Coatesville (PA),40.0225,-75.814722,,5,,6135,292,111,,,,,,41057,,, +1420,USA,,WBSM,,New Bedford (MA),41.650556,-70.916111,,1,,5705,291,114,,,,,,40910,,, +1420,USA,,WHK,,Cleveland (OH),41.358333,-81.6675,,5,,6396,297,114,,,,998,,42883,,, +1420,USA,,WBEC,,Pittsfield (MA),42.444444,-73.278611,,1,,5798,293,115,,,,,,40830,,, +1420,USA,,WLNA,,Peekskill (NY),41.308611,-73.916667,,1,,5920,292,116,,,,,,42194,,, +1420,USA,,WIMS,,Michigan City (IN),41.673889,-86.932778,,5,,6687,301,117,,,,,,41763,,, +1420,USA,,WLIS,,Old Saybrook (CT),41.327222,-72.389167,,0.5,,5822,292,118,,,,,,42174,,, +1420,USA,,KTOE,,Mankato (MN),44.168333,-93.910278,,5,,6883,307,119,,,,8,,39524,,, +1420,USA,,WAMV,,Amherst (D) (VA),37.539722,-79.052778,,2.2,,6528,292,119,,,,,,40717,,, +1420,USA,en,WOC,,Davenport (IA),41.55,-90.476944,,5,,6902,303,119,,,,0,,42557,,, +1420,USA,,WACK,,Newark (NY),43.018889,-77.078056,,0.5,,5992,296,120,,,,998,,40641,,, +1420,USA,,WASR,,Wolfeboro (NH),43.591944,-71.219722,,0.137,,5587,293,121,,,,,,40753,,, +1420,USA,,WRSA,,St. Albans (VT),44.831111,-73.090278,,0.107,,5618,295,123,,,,,,42915,,, +1420,USA,,WVOT,,Wilson (NC),35.735556,-77.883889,,0.5,,6594,290,126,,,,,,43336,,, +1420,USA,,WTCR,,Kenova (WV),38.411667,-82.603611,,0.5,,6682,295,127,,,,,,43122,,, +1420,USA,,WNRS,,Herkimer (NY),43.061111,-75.028889,,0.064,,5863,295,128,,,,,,42505,,, +1420,USA,,WFLT,,Flint (MI),43.021944,-83.643056,,0.142,,6388,300,129,,,,,,41402,,, +1420,USA,,WKSR,,Pulaski (TN),35.199722,-87.075278,,0.95,,7215,296,129,,,,,,42072,,, +1420,VEN,,YVRW R Cardenal,,Carora (lar),10.166667,-70.066667,,10,,8195,266,129,,1000-0400,1234567,,,51701,,, +1420,PTR,es,WUKQ,,Ponce (PR),17.989722,-66.6225,,1,,7287,268,130,,0000-2400,1234567,,,43258,,, +1420,USA,en,KITI,,Centralia-Chehalis (WA),46.702222,-122.932778,,5,,8017,326,130,,,,9960,,38641,,, +1420,VEN,,R Sintonia,,Caracas (dcf),10.5,-66.916667,,5,,7952,263,130,,,,996,,51700,,, +1420,USA,,WINI,,Murphysboro (IL),37.758333,-89.233889,,0.5,,7137,299,131,,,,,,41769,,, +1420,USA,,WBRD,,Palmetto (FL),27.545,-82.574444,,1,,7561,287,133,,,,,,40898,,, +1420,USA,,WKCW,,Warrenton (VA),38.731111,-77.778333,,0.06,,6356,293,133,,,,1,,41978,,, +1420,USA,,WXGM,,Gloucester (VA),37.41,-76.547778,,0.058,,6379,291,133,,,,,,43465,,, +1420,USA,,KGIM,,Aberdeen (SD),45.486667,-98.497222,,0.232,,7020,311,134,,,,,,38483,,, +1420,USA,es,KOTK,,Omaha (NE),41.199722,-95.909444,,0.33,,7237,306,134,,,,,,38545,,, +1420,CLM,,HJAP,,Cartagena (bol),10.466667,-75.5,,5,,8540,270,135,,,,,,37331,,, +1420,USA,,KBTN,,Neosho (MO),36.847778,-94.32,,0.5,,7512,302,135,,,,,,38105,,, +1420,USA,,KJCK,,Junction City (KS),39.025833,-96.81,,0.5,,7470,305,135,,,,,,38663,,, +1420,USA,,WCRE,,Cheraw (SC),34.68,-79.899444,,0.097,,6807,291,135,,,,,,41072,,, +1420,USA,,WJUB,,Plymouth (WI),43.7425,-87.939167,,0.062,,6583,303,135,,,,,,41937,,, +1420,USA,,WMYN,,Mayodan (NC),36.415,-79.987222,,0.068,,6675,292,135,,,,,,42419,,, +1420,USA,es,WDJA,,Delray Beach (FL),26.456111,-80.099444,,0.5,,7489,284,135,,,,,,41165,,, +1420,HTI,,R Messie Continental,,Dessalines (art),19.261111,-72.516667,,0.5,,7581,274,136,,,,,,52123,,, +1420,USA,,KPEL,,Lafayette (LA),30.277222,-92.064167,,1,,7934,296,136,,,,,,39135,,, +1420,USA,,KRLL,,California (MO),38.636667,-92.583333,,0.225,,7262,302,136,,,,,,39261,,, +1420,USA,,WAMV,,Amherst (N) (VA),37.539722,-79.091667,,0.047,,6531,292,136,,,,,,20012561,,, +1420,USA,,WAOC,,St. Augustine (FL),29.85,-81.330556,,0.25,,7289,288,136,,,,,,40729,,, +1420,USA,,WPEH,,Louisville (GA),33.013333,-82.3925,,0.159,,7100,291,136,,,,,,42663,,, +1420,USA,en,KUJ,,Walla Walla (WA),46.067222,-118.401389,,0.9,,7898,323,136,,,,79,,39573,,, +1420,DOM,,HIFD R Oro,,Cotu (szr),19.066667,-70.15,,0.25,,7436,272,137,,,,,,37245,,, +1420,USA,,WQBC,,Vicksburg (MS),32.332222,-90.85,,0.5,,7685,296,137,,,,,,42763,,, +1420,USA,,KULY,,Ulysses (KS),37.548056,-101.363611,,0.5,,7849,307,138,,,,,,39578,,, +1420,USA,,WKWN,,Trenton (GA),34.861944,-85.499722,,0.112,,7145,294,138,,,,,,42095,,, +1420,USA,,WGAS,,South Gastonia (NC),35.182778,-81.208333,,0.041,,6850,292,139,,,,,,41475,,, +1420,USA,,WHBN,,Harrodsburg (KY),37.734167,-84.813889,,0.046,,6871,296,139,,,,,,41609,,, +1420,USA,en,KRIZ,,Renton (WA),47.440278,-122.2025,,0.5,,7918,326,139,,,,,,39250,,, +1420,B,pt,ZYJ609 Rdio Farol,,Alexandria (RN),-6.411944,-38.0175,,0.25,,7745,228,140,,,,,,36902314,,, +1420,USA,,KPOC,,Pocahontas (AR),36.277222,-90.954444,,0.118,,7361,299,140,,,,,,39151,,, +1420,CLM,es,HJBH R Magdalena (Caracol),,Santa Marta (mag),11.166667,-74.15,,1,,8387,270,141,,,,989,,37346,,, +1420,MEX,es,XEXX-AM R Mexicana,,Tijuana/Col. Aviacin (bcn),32.5148,-117.005914,,2,,9119,315,141,,,,183,,45074,,, +1420,USA,,KPIR,,Granbury (TX),32.461944,-97.788611,,0.5,,8090,301,141,,,,,,39141,,, +1420,USA,,KTJS,,Hobart (OK),35.049167,-99.096667,,0.36,,7940,304,141,,,,,,39494,,, +1420,USA,,WACT,,Tuscaloosa (AL),33.175,-87.555,,0.108,,7411,295,141,,,,,,40645,,, +1420,USA,,WATB,,Decatur (GA),33.786944,-84.248056,,0.051,,7154,293,141,,,,,,40755,,, +1420,USA,,WRCG,,Columbus (GA),32.430278,-85.066111,,0.079,,7317,292,141,,,,,,42821,,, +1420,USA,,WCED,,Du Bois (PA),41.140278,-78.830556,,0.005,,6239,295,142,,,,989,,40976,,, +1420,USA,,WEMB,,Erwin (TN),36.116111,-82.446944,,0.02,,6854,293,142,,,,,,41296,,, +1420,CLM,es,HJD23,,Frontino (ant),6.783333,-76.133333,,1,,8904,268,143,,,,,,35901798,,, +1420,CLM,es,HJSN,,Zapatoca (sat),6.816667,-73.266667,,1,,8706,266,143,,,,,,35901791,,, +1420,MEX,es,XEEW-AM W1420,,Matamoros (tam),25.860556,-97.474722,,1,,8649,297,143,,,,,,43983,,, +1420,MEX,es,XEH-AM,,Monterrey (nvl),25.720942,-100.264467,,1,,8830,299,143,,,,,,44096,,, +1420,USA,,KSTN,,Stockton (CA),37.925556,-121.245556,,1,,8795,321,143,,,,9922,,39423,,, +1420,B,pt,ZYJ754 Rdio Guaruj,,Florianpolis/Rua Joo Meirelles (SC),-27.602944,-48.595306,,2.5,,10349,227,144,,,,,,36902301,,, +1420,CLM,es,HJHK R Recuerdos,,Manizales (cal),5.066667,-75.5,,1,,9011,267,144,,,,293,,37473,,, +1420,CLM,es,HJLE,,Ibagu (tol),4.433333,-75.233333,,1,,9048,266,144,,,,,,35901799,,, +1420,EQA,,HCTR3,,El Guabo (oro),-3.25,-79.816667,,2,,10036,265,144,,,,,,37142,,, +1420,GTM,,TGRP R Verdad,,Ciudad de Guatemala (gut),14.616667,-90.583333,,1,,9198,284,144,,1130-0600,1234567,,,40534,,, +1420,HND,,HRSAL,,Trinidad (bar),15.15,-88.166667,,1,,8991,283,144,,,,,,37840,,, +1420,MEX,es,XEPK-AM R Felicidad,,Pachuca (hid),20.123428,-98.735228,,1,,9236,294,144,,,,,,44554,,, +1420,USA,,KBHS,,Hot Springs (AR),34.455278,-93.057222,,0.087,,7639,299,144,,,,,,39813,,, +1420,USA,,KFYN,,Bonham (TX),33.577778,-96.165278,,0.148,,7898,301,144,,,,,,38449,,, +1420,USA,,WVJS,,Owensboro (KY),37.775,-87.158889,,0.02,,7011,298,144,,,,,,43301,,, +1420,B,pt,ZYK308 Rdio Tapense,,Tapes (RS),-30.676389,-51.406667,,3,,10782,227,145,,,,,,36902304,,, +1420,CTR,,TIRP R Pampa,,Nicoya (gnc),10.15,-85.45,,1,,9245,278,145,,1000-0300,1234567,,,52160,,, +1420,MEX,es,XEWE-AM,,Irapuato (gua),20.700922,-101.339836,,1,,9345,296,145,,,,,,45015,,, +1420,EQA,,HCRN1,,Otavalo (imb),0.216667,-78.266667,,1,,9625,266,146,,,,,,37093,,, +1420,HWA,en,KKEA,,Honolulu (HI),21.323889,-157.879722,,5,,11708,345,146,,0000-2400,1234567,1,,38714,,, +1420,MEX,es,XEF-AM Tu Recuerdo,,Ciudad Jurez (chi),31.686111,-106.429722,,0.5,,8649,307,146,,,,,,43988,,, +1420,USA,,KTAN,,Sierra Vista (AZ),31.546389,-110.274722,,0.5,,8868,309,146,,,,5,,39450,,, +1420,USA,en,KMOG,,Payson (AZ),34.266667,-111.315,,0.5,,8671,312,146,,,,414,,38921,,, +1420,B,pt,ZYH504 Rdio Cidade,,Irec (BA),-11.305667,-41.833508,,0.25,,8422,229,147,,,,,,36902309,,, +1420,BOL,,CP254 R Guadalquivir,,Tarija (trj),-21.55,-64.333333,,1.5,,10655,242,147,,0900-0100,1234567,,,52038,,, +1420,EQA,,HCNR3 La Voz de Hu As,,Huaquillas (oro),-3.5,-80.25,,1,,10087,265,147,,,,,,37043,,, +1420,EQA,,HCVN4,,Jipijapa (man),-1.316667,-80.583333,,1,,9918,267,147,,,,,,37174,,, +1420,PRU,,OAX8Z R Oriente,,Yurimaguas (lor),-5,-75.566667,,1,,9902,261,147,,,,,,40360,,, +1420,BOL,,CP49 R Centro,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,1000-0300,123456,,,36701,,, +1420,BOL,,CP49 R Centro,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,1100-0400,......7,,,36701,,, +1420,PRU,,R Ilucan,,Cutervo (caj),-6.366667,-78.85,,1,,10244,262,148,,,,14,,2044,,, +1420,URG,,CW43 R Lavalleja,,Minas (la),-34.366667,-55.266667,,2,,11323,228,148,,0830-0300,1234567,,,36773,,, +1420,USA,,KGNB,,New Braunfels (TX),29.6625,-98.174722,,0.196,,8357,300,148,,,,,,38497,,, +1420,USA,en,KJDL,,Lubbock (TX),33.613611,-101.875,,0.14,,8223,305,148,,,,,,38803,,, +1420,BOL,,R Real Audiencia,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,0900-0200,1234567,,,52039,,, +1420,PRU,es,OBZ4G R San Isidro,,Lima (lim),-12,-77,,1,,10615,257,149,,,,,,37000010,,, +1420,B,pt,ZYL286 R.Difusora de So Joo Nepumuceno,,So Joo Nepomuceno (MG),-21.544736,-43.012544,,0.25,,9486,225,151,,,,,,36902308,,, +1420,B,pt,ZYL288 Rdio Cultura de Sete Lagoas,,Sete Lagoas (MG),-19.472661,-44.221394,,0.25,,9343,227,151,,,,,,36902302,,, +1420,EQA,,HCMA6 R Alternativa,,Salcedo (cot),-0.966667,-78.583333,,0.3,,9751,265,151,,,,,,37013,,, +1420,MEX,es,XEWJ-AM WJ Frmula,,Tehuacn (pue),18.457097,-97.422083,,0.25,,9302,292,151,,,,,,45023,,, +1420,PRG,,ZP42 R Guyra Campana,,Horqueta (cnc),-23.3,-57.066667,,0.5,,10392,235,151,,,,0,,45538,,, +1420,ARG,,LRI220 AM Mil420,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,996,,33000009,,, +1420,ARG,,R Magica,,Lans (ba),-34.716667,-58.4,,1,,11516,230,152,,,,,,51864,,, +1420,B,pt,ZYK597 Rdio CRN,,Itatiba (SP),-22.983306,-46.832903,,0.25,,9815,228,152,,,,,,36902305,,, +1420,B,pt,ZYL313 Rdio Montanhs de Botelhos,,Botelhos (MG),-21.646944,-46.391944,,0.25,,9663,228,152,,,,,,36902315,,, +1420,ARG,es,LRJ359 R.Granaderos Puntanos,,San Lus (sl),-33.283333,-66.366667,,1,,11823,236,153,,,,,,51863,,, +1420,B,pt,ZYI397 Rdio Difusora Cacique AM,,Nova Andradina (MS),-22.256983,-53.358783,,0.25,,10089,233,153,,,,,,36902310,,, +1420,B,pt,ZYJ282 Rdio Educadora,,Jacarezinho (PR),-23.122222,-49.944444,,0.25,,9988,230,153,,,,,,36902313,,, +1420,B,pt,ZYK733 Rdio Nova So Manuel,,So Manuel (SP),-22.748333,-48.556667,,0.25,,9880,229,153,,,,,,36902312,,, +1420,B,pt,ZYJ269 Rdio Cultura,,Umuarama (PR),-23.857778,-53.195111,,0.25,,10231,232,154,,,,,,36902317,,, +1420,ARG,,R Genesis 2000,,General Conesa (rn),-40.1,-64.416667,,1,,12313,231,155,,,,,,51865,,, +1420,B,,ZYJ334,,Santo Antnio do Sudoeste (PR),-26.016667,-53.716667,,0.25,,10462,231,155,,,,,,46056,,, +1420,B,pt,ZYJ744 Rdio Cultura,,Campos Novos (SC),-27.38,-51.206944,,0.25,,10459,229,155,,,,,,36902303,,, +1420,CHL,,CC142 R Maule,,Cauquenes (ML),-35.966667,-72.25,,1,,12393,238,155,,1050-0430,1234567,,,35815,,, +1420,USA,,KIGO,,St. Anthony (ID),43.667222,-111.870556,,0.012,,7835,317,155,,,,997,,38591,,, +1420,USA,,KMHS,,Coos Bay (OR),43.368611,-124.203056,,0.041,,8389,325,155,,,,,,38900,,, +1420,B,pt,ZYK258 Rdio 14 de Julho AM,,Jlio de Castilhos (RS),-29.245278,-53.675833,,0.25,,10763,230,156,,,,,,36902318,,, +1420,URG,,CW142,,Artigas (ar),-30.416667,-56.466667,,0.25,,11019,231,156,,,,,,36749,,, +1420,URG,,CX142 R Felicidad,,Paysand (pa),-32.316667,-58.066667,,0.25,,11279,231,157,,1000-0300,1234567,,,36790,,, +1420,CHL,,CB142 R Panamericana,,Santiago (RM),-33.316667,-70.716667,,0.25,,12077,239,160,,1100-0400,1234567,,,35737,,, +1422,D,de,Deutschlandfunk,,Heusweiler/Am Sender (saa),49.345,6.914444,,400,,309,173,34,,0000-2400,1234567,9995,,1432,,, +1422,ALG,ar,R.Coran/R.Mitidja/R.UFC/R.Culture/Chane 3,,Ouled Fayet (16),36.722222,2.951389,,50,,1732,190,57,,0000-2400,1234567,9979,,200002,,, +1422,ROU,ro,SRR R Romnia Actualităţi,,Rmnicu Vlcea (VL),45.104667,24.335333,,7,,1525,114,64,,0000-2400,1234567,9970,,1435,,, +1422,EGY,ar,ERTU R Matruh,,Salum (mth),31.542278,25.162611,,10,,2747,139,74,,0200-2200,1234567,,,1853,,, +1422,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,Ras Gharib (bar),28.350583,33.080583,,10,,3440,130,81,,0200-2200,1234567,,,1854,,, +1422,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,1300-1400,1234567,0,,50794,,, +1422,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,1600-1700,1234567,0,,50794,,, +1422,CHN,kk,CNR 8,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0100-0300,1234567,0,,50794,,, +1422,CHN,kk,CNR 8,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0500-0600,1234567,0,,50794,,, +1422,CHN,kk,CNR 8,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,1100-1200,1234567,0,,50794,,, +1422,CHN,ug,CNR 13,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0600-0700,1234567,0,,50794,,, +1422,CHN,ug,CNR 13,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0800-0900,1234567,0,,50794,,, +1422,CHN,ug,CNR 13,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,2355-0100,1234567,0,,50794,,, +1422,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,1400-1600,1234567,0,,50794,,, +1422,CHN,zh,CNR 1,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0700-0800,1234567,0,,50794,,, +1422,CHN,zh,CNR 1,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0900-1100,1234567,0,,50794,,, +1422,ARS,,BSKSA R Saudi Int.,,Ar-Riyad (riy),24.816906,46.865469,,20,,4552,116,90,,0500-2100,1234567,,,47088,,, +1422,CHN,zh,Taiyuan RGD,,Taiyuan (SX),37.75,112.55,,10,,7742,54,124,,2155-1600,1234567,999,,50796,,, +1422,CHN,zh,Zigong RGD,,Zigong/SCTS507 (SC),29.45,104.666667,,10,,7991,65,127,,2220-1505,1234567,,,50798,,, +1422,MWI,,MBC R 1,,Matiya (zom),-15.6,35.366667,,10,,8031,151,127,,0253-2200,1234567,,,47131,,, +1422,J,ja,JORF RF R Nippon,,Yokohama (kan-kgw),35.548333,139.699722,,50,,9266,37,128,,0000-2400,1234567,9993,,50809,,, +1422,TWN,,CBS5,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0600-0900,1234567,,,50817,,, +1422,TWN,en,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0230-0300,1234567,,,50817,,, +1422,TWN,hk,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0200-0230,1234567,,,50817,,, +1422,TWN,id,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0300-0500,1234567,,,50817,,, +1422,TWN,id,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1200-1300,1234567,,,50817,,, +1422,TWN,id,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1500-1600,1234567,,,50817,,, +1422,TWN,tf,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0100-0200,1234567,,,50817,,, +1422,TWN,tf,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0500-0600,1234567,,,50817,,, +1422,TWN,tf,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0900-1000,1234567,,,50817,,, +1422,TWN,th,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1300-1500,1234567,,,50817,,, +1422,TWN,th,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,2300-2400,1234567,,,50817,,, +1422,TWN,vi,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1100-1200,1234567,,,50817,,, +1422,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0000-0100,1234567,,,50817,,, +1422,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1000-1100,1234567,,,50817,,, +1422,CHN,zh,Pujiang zhi Sheng,,Shanghai (SH),31.109167,121.514722,,20,,8824,52,130,,2200-1600,1234567,,,50795,,, +1422,THA,th,Sor. Wor. Phor. 4,,Phitsanulok (psl),16.813333,100.255,,10,,8797,77,133,,2200-1600,1234567,,,50815,,, +1422,THA,th,Phon Neung Ror. Or.,,Bangkok/Phitsanulok Road (bmp),13.766708,100.510042,,10,,9079,78,134,,0000-2400,1234567,,,50813,,, +1422,THA,th,Sor. Wor. Thor. (R Thailand),,Amnat Charoen (ach),15.903333,104.618889,,10,,9165,74,134,,,,,,50814,,, +1422,PHL,,DYZD-AM,,Ubay/Tapon (boh),10.05,124.466667,,5,,10946,61,143,,2100-1500,1234567,2,,50812,,, +1422,AFS,el,Hellenic R,,Bedfordview (GT),-26.150936,28.129567,,1,,8956,160,144,,0000-2400,1234567,18,,2529,,, +1422,PHL,,DXMU-AM,,Musuan (buk),7.816667,125.016667,,5,,11186,62,144,,,,,,50810,,, +1422,TWN,,Chien Kuo Kuangpo Tientai,,Kuanyin=Guanin (TY),25.015556,121.1175,,1,,9362,56,145,,????-1615,......7,,,50816,,, +1422,TWN,,Chien Kuo Kuangpo Tientai,,Kuanyin=Guanin (TY),25.015556,121.1175,,1,,9362,56,145,,????-1700,123456,,,50816,,, +1422,PHL,,DZOR-AM Radyo Olongapo,,Olongapo City (zmb),14.816667,120.283333,,1,,10253,62,148,,,,,,50790,,, +1422,INS,,Refa Music R 1422,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,0050-????,1234567,74,,50808,,, +1422,INS,id,R PMA,,Kraksaan (JI),-7.766667,113.416667,,1,,11846,81,153,,,,92,,35400003,,, +1422,CHR,,ABC R National,,Phosphate Hill (VLU2) (WA),-10.433333,105.683333,,0.5,,11553,89,155,,0000-2400,1234567,,,47119,,, +1422,AUS,,6GS,,Wagin/Brockman Road (WA),-33.331658,117.357611,,2,,14245,97,158,,0000-2400,1234567,,,50793,,, +1422,AUS,el,3XY R Hellas,,Melbourne/Truganina (VIC),-37.828211,144.7589,,5,,16438,80,161,,0000-2400,1234567,9960,,50791,,, +1422,AUS,,4AM,,Port Douglas (QLD),-16.499444,145.451111,,1,,14675,58,162,,0000-2400,1234567,9967,,50792,,, +1430,CAN,,CHKT,,Toronto Island (ON),43.6175,-79.380556,,50,,6089,298,101,,,,1,,36435,,, +1430,USA,,WNSW,,Newark (NJ),40.849722,-74.183056,,7,,5970,292,108,,,,9872,,42513,,, +1430,USA,en,WENE,,Endicott (NY),42.082222,-76.031389,,5,,5996,294,110,,,,1,,41305,,, +1430,USA,,WVAM,,Altoona (PA),40.495,-78.401667,,5,,6261,294,113,,,,9977,,43278,,, +1430,USA,es,WKOX,i,Everett (MA),42.403056,-71.074722,,1,,5662,292,114,,,,0,,43474,,, +1430,USA,,WDJS,,Mount Olive (NC),35.200278,-78.123056,,5,,6652,290,117,,,,,,41167,,, +1430,USA,,WXNT,,Indianapolis (IN),39.838333,-86.198889,,5,,6788,299,118,,,,1,,43484,,, +1430,USA,,WNAV,,Annapolis (MD),38.983333,-76.5225,,1,,6257,292,120,,,,,,42430,,, +1430,USA,,KZQZ,,St. Louis (MO),38.535833,-90.190556,,5,,7130,300,121,,,,,,42925,,, +1430,USA,,WDEX,,Monroe (NC),34.984444,-80.603889,,2.5,,6827,291,121,,,,,,41154,,, +1430,USA,,WEIR,,Weirton (WV),40.445,-80.628056,,1,,6403,296,121,,,,,,41272,,, +1430,PTR,es,WNEL,,Caguas (PR),18.248056,-66.023611,,5,,7224,268,122,,0000-2400,1234567,988,,42458,,, +1430,USA,,WFOB,,Fostoria (OH),41.101667,-83.399722,,1,,6521,298,122,,,,,,41422,,, +1430,VEN,,YVTP R Bahia,,Puerto La Cruz (azg),10.066667,-64.766667,,25,,7844,261,122,,0000-2400,1234567,6,,2152,,, +1430,USA,,WFHK,,Pell City (AL),33.586111,-86.326389,,5,,7301,294,123,,,,,,41381,,, +1430,USA,,WRXO,,Roxboro (NC),36.367778,-78.999444,,1,,6616,291,123,,,,,,42940,,, +1430,USA,,WBEV,,Beaver Dam (WI),43.428611,-88.8925,,1,,6662,303,124,,,,,,40836,,, +1430,USA,,WEEF,,Highland Park (IL),42.139444,-87.885278,,0.75,,6706,302,125,,,,,,41256,,, +1430,USA,,WLTG,,Panama City (FL),30.165278,-85.588611,,5,,7538,291,125,,,,,,42241,,, +1430,DOM,,HIJC R Emanuel,,Santiago de los Caballeros (sto),19.45,-70.7,,3,,7441,272,127,,0000-2400,1234567,1,,52248,,, +1430,USA,,KTBZ,,Tulsa (OK),36.236667,-95.955278,,5,,7658,302,127,,,,,,39460,,, +1430,USA,,WION,,Ionia (MI),43.004444,-85.085833,,0.33,,6475,301,127,,,,,,41782,,, +1430,USA,,WOWW,,Germantown (TN),35.213889,-89.796111,,2.5,,7380,298,127,,,,9941,,42633,,, +1430,USA,,WPLN,,Madison (TN),36.271944,-86.714722,,1,,7106,296,128,,,,0,,42706,,, +1430,VEN,,Llanerisima,,Guacara (cbb),10.166667,-68,,10,,8055,264,128,,0930-0400,1234567,908,,2269,,, +1430,USA,,KEZW,,Aurora (CO),39.563056,-104.929444,,5,,7862,310,129,,,,991,,38366,,, +1430,USA,,WYMC,,Mayfield (KY),36.786667,-88.654444,,1,,7181,298,129,,,,,,43529,,, +1430,VEN,,YVTM R Caicara,,Caicara del Orinoco (blv),7.65,-66.166667,,10,,8151,261,129,,,,,,45471,,, +1430,USA,,WRMG,,Red Bay (AL),34.414167,-88.136389,,1,,7345,296,130,,,,,,42880,,, +1430,USA,,KRGI,,Grand Island (NE),40.871389,-98.274167,,1,,7395,307,131,,,,,,39244,,, +1430,USA,en,KLO,,Ogden (UT),41.046944,-112.026944,,5,,8082,316,131,,,,0,,38834,,, +1430,USA,,KNSP,,Staples (MN),46.359444,-94.781944,,0.199,,6753,309,132,,,,,,39018,,, +1430,USA,,KSHJ,,Houston (D) (TX),29.755833,-95.276944,,5,,8175,298,132,,,,,,38192,,, +1430,USA,,KYKN,,Keizer (OR),44.926667,-122.955278,,5,,8189,325,132,,,,10,,39852,,, +1430,USA,en,WLKF,,Lakeland (FL),28.040833,-81.935556,,1,,7478,287,132,,,,,,42180,,, +1430,B,pt,ZYK707 Rdio Imaculada Conceio,,So Roque (SP),-23.538056,-47.065833,,25,,9881,227,133,,,,,,36902328,,, +1430,CTR,es,R San Carlos,,Ciudad Quesada (alj),10.333333,-84.433333,,12,,9160,277,133,,1100-0400,1234567,91,,52161,,, +1430,USA,en,WRDN,,Durand (WI),44.585278,-91.912222,,0.152,,6740,306,133,,,,,,42787,,, +1430,HTI,,R MBC,,Port-au-Prince (oue),18.516667,-72.316667,,0.8,,7631,273,134,,,,,,35640,,, +1430,USA,,KMRB,,San Gabriel (CA),34.118889,-118.081667,,9.8,,9018,316,134,,,,996,,38927,,, +1430,USA,,WNFO,,Sun City Hilton Head (SC),32.356667,-80.923056,,0.21,,7059,289,134,,,,,,42465,,, +1430,USA,en,WPNI,,Amherst (MA),42.356944,-72.486944,,0.011,,5754,293,134,,,,,,42718,,, +1430,CLM,es,HJPW,,Barranquilla (atl),10.966667,-74.8,,5,,8449,270,135,,,,,,35901804,,, +1430,CLM,es,HJQX,,Corozal (suc),9.316667,-75.3,,5,,8626,269,135,,,,,,35901810,,, +1430,PNR,es,R Union,,Ro Abajo/Bloiser (pnm),9.021111,-79.488889,,7.5,,8938,272,135,,,,,,52352,,, +1430,USA,,WBLR,,Batesburg (SC),33.880278,-81.554444,,0.163,,6976,291,135,,,,,,40877,,, +1430,USA,,WGFS,,Covington (GA),33.620556,-83.884444,,0.212,,7145,292,135,,,,,,41502,,, +1430,USA,,WKEX,,Blacksburg (VA),37.2325,-80.444444,,0.062,,6640,293,135,,,,,,41998,,, +1430,USA,en,KBRC,,Mount Vernon (WA),48.422778,-122.352778,,1,,7830,327,135,,,,995,,38081,,, +1430,USA,en,KCLK,,Asotin (WA),46.316389,-117.04,,1,,7818,322,135,,,,1,,38173,,, +1430,B,pt,ZYJ604 Rdio Libertadora Mossoroense,,Mossor (RN),-5.207222,-37.313889,,0.5,,7590,228,136,,,,,,36902327,,, +1430,CLM,,HJQX,,Sincelejo (suc),9.266667,-75.366667,,5,,8635,269,136,,,,,,37632,,, +1430,USA,,KEES,,Gladewater (TX),32.529444,-94.880556,,1,,7912,299,136,,,,,,38317,,, +1430,USA,,KYNO,,Fresno (CA),36.890833,-119.658333,,5,,8825,319,136,,,,9967,,38391,,, +1430,USA,,WCLT,,Newark (OH),40.033889,-82.402222,,0.048,,6543,297,136,,,,,,41030,,, +1430,USA,,WHAN,,Ashland (VA),37.746111,-77.495556,,0.031,,6414,291,136,,,,,,41596,,, +1430,USA,,WOIR,,Homestead (FL),25.452222,-80.516944,,0.5,,7600,284,136,,,,2,,42578,,, +1430,CLM,es,HJKU R 1430 AM,,Bogot D. C. (bdc),4.566667,-74.066667,,5,,8957,265,137,,,,997,,37534,,, +1430,USA,,KBRK,,Brookings (SD),44.303333,-96.766944,,0.1,,7026,309,137,,,,,,38086,,, +1430,USA,,WDIC,,Clinchco (VA),37.145,-82.389444,,0.054,,6768,294,137,,,,,,41161,,, +1430,B,pt,ZYJ200 RB2,,Curitiba/Estrada da Graciosa (PR),-25.393961,-49.171222,,10,,10166,228,138,,,,2,,36902319,,, +1430,USA,,KALV,,Alva (OK),36.818333,-98.643889,,0.5,,7762,305,138,,,,,,37941,,, +1430,USA,,KMRC,,Morgan City (LA),29.750833,-91.173333,,0.5,,7924,295,139,,,,,,38928,,, +1430,USA,,KSHJ,,Houston (N) (TX),29.755556,-95.276944,,1,,8175,298,139,,,,,,20012590,,, +1430,USA,,KVVN,,Santa Clara (CA),37.329722,-121.866111,,2.5,,8880,321,139,,,,11,,39677,,, +1430,USA,,WCMY,,Ottawa (IL),41.348056,-88.804167,,0.038,,6822,302,139,,,,,,41043,,, +1430,USA,,WMNC,,Morganton (NC),35.7525,-81.721944,,0.046,,6837,293,139,,,,,,42357,,, +1430,USA,,WDAL,,Dalton (GA),34.789722,-84.953333,,0.072,,7117,294,140,,,,,,41121,,, +1430,USA,,WXAM,,Buffalo (KY),37.530278,-85.713611,,0.042,,6943,297,140,,,,,,43454,,, +1430,USA,,KCRX,,Roswell (NM),33.436389,-104.605,,1,,8391,306,141,,,,,,38208,,, +1430,USA,,WCWC,,Williamsburg (KY),36.723333,-84.139722,,0.032,,6911,295,141,,,,,,41348,,, +1430,CLM,es,HJBP,,Pamplona (nsa),7.366667,-72.65,,1,,8615,266,142,,,,,,37354,,, +1430,USA,,KASI,,Ames (IA),42.038333,-93.681389,,0.032,,7044,305,142,,,,,,37971,,, +1430,VEN,,YVIT,,La Grita (tch),8.116667,-71.9,,1,,8499,266,142,,,,,,45339,,, +1430,CLM,es,HJMF,,Puerto Berrio (ant),6.516667,-74.4,,1,,8809,267,143,,,,,,37564,,, +1430,CLM,es,HJPK,,Yarumal (ant),6.966667,-75.466667,,1,,8842,268,143,,,,,,37624,,, +1430,HND,,HRSJ R Futura,,Tocoa (col),15.65,-86,,1,,8802,282,143,,,,99,,37843,,, +1430,CLM,es,HJIU,,Riosucio (cal),5.4,-75.666667,,1,,8993,267,144,,,,,,37500,,, +1430,CLM,es,HKX73,,Pereira (ris),4.816667,-75.7,,1,,9047,267,144,,,,,,35901811,,, +1430,GTM,,TGAG LV de Huehuetenango,,Huehuetenango (huh),15.316667,-91.466667,,1,,9194,286,144,,1100-0400,1234567,,,40474,,, +1430,HND,,HRIC,,Puerto Cortes (cor),15.466667,-87.916667,,1,,8946,283,144,,,,,,37768,,, +1430,HND,,HRVM R Maranatha,,Santiago de Puringla (lap),14.366667,-87.866667,,1,,9039,282,144,,,,,,37865,,, +1430,NCG,,YNLE R Liberacion La Tayacana,,Estel (esl),13.066667,-86.333333,,1,,9050,280,144,,1100-0300,1234567,,,45229,,, +1430,USA,,WTMN,,Gainesville (FL),29.623889,-82.288611,,0.045,,7370,288,144,,,,,,43176,,, +1430,B,pt,ZYJ671 Rdio Caiari,,Porto Velho (RO),-8.776644,-63.882433,,1,,9470,249,145,,,,7,,36902326,,, +1430,CLM,es,HJEG,,Popayn (cau),2.45,-76.616667,,1,,9317,266,145,,,,,,37410,,, +1430,MEX,es,XETT-AM R Tlaxcala,,Tlaxcala (tlx),19.300394,-98.231514,,1,,9278,293,145,,,,,,44864,,, +1430,USA,,KAOL,,Carrollton (MO),39.332778,-93.5375,,0.027,,7259,303,145,,,,,,37957,,, +1430,EQA,,HCJC6,,Guaranda (bol),-1.55,-78.966667,,1,,9828,265,146,,,,,,36982,,, +1430,MEX,es,XECOC-AM,,Colima (col),19.257867,-103.725008,,1,,9621,297,146,,,,,,43860,,, +1430,MEX,es,XEOX-AM Exa,,Ciudad Obregn (son),27.493064,-109.936217,,0.5,,9225,307,147,,,,,,44520,,, +1430,PRG,,ZP35 La Voz de Misiones,,San Juan Bautista (mis),-26.616667,-57.133333,,1.5,,10703,234,148,,1000-0130,1234567,,,45531,,, +1430,PRU,,OBX9H,,Bagua Grande/Cerro La Esperanza (ama),-5.75,-78.433333,,1,,10161,262,148,,,,,,37000080,,, +1430,USA,,KKOZ,,Ava (MO),36.93,-92.655278,,0.02,,7408,301,148,,,,,,38749,,, +1430,MEX,es,XERAC-AM R Frmula,,Campeche (cam),19.843611,-90.533333,,0.25,,8737,288,149,,,,,,44649,,, +1430,PRU,,OAZ3H,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000090,,, +1430,PRU,es,OAU6M R Lider,,Tacna (tac),-18,-70.25,,1,,10704,249,149,,,,3,,37000037,,, +1430,USA,,KHBM,,Monticello (AR),33.605,-91.787222,,0.03,,7635,298,149,,,,,,38530,,, +1430,EQA,,HCMB2,,Guayaquil (gua),-2.2,-79.9,,0.5,,9949,266,150,,,,,,37016,,, +1430,B,pt,ZYL371 Rdio Planalto de Perdizes,,Perdizes (MG),-19.353889,-47.278056,,0.25,,9487,230,151,,,,7,,36902324,,, +1430,EQA,,HCAA1,,Quito (pic),-0.166667,-78.5,,0.3,,9675,266,151,,,,,,36829,,, +1430,MEX,es,XEWD-AM La Grande,,Ciudad Miguel Alemn (tam),26.3827,-99.049181,,0.15,,8698,298,151,,,,14,,45013,,, +1430,URG,es,CW25 R Durazno,,Durazno (du),-33.403333,-56.573333,,1,,11301,229,151,,0900-0300,1234567,,,36765,,, +1430,ARG,,R Ilusiones,,Berazategui (ba),-34.766667,-58.216667,,1,,11511,230,152,,,,,,47303,,, +1430,ARG,,R Imagen,,Castelar (ba),-34.666667,-58.666667,,1,,11526,230,152,,,,,,51868,,, +1430,ARG,es,R 2001,,Quilmes Oeste (ba),-34.716667,-58.266667,,1,,11509,230,152,,,,,,33000022,,, +1430,ARG,es,R Jos de San Martn,,El Jagel (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51867,,, +1430,ARG,es,R Shekin,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000020,,, +1430,ARG,es,R Sonidos del Cielo,,Rafael Castillo (ba),-34.716667,-58.616667,,1,,11528,230,152,,,,,,33000021,,, +1430,B,pt,ZYK666 Rdio Transmissora de Serra Negra,,Serra Negra (SP),-22.612503,-46.689956,,0.25,,9772,228,152,,,,,,36902321,,, +1430,B,pt,ZYL239 Rdio Clube de Guaxup,,Guaxup (MG),-21.3,-46.716667,,0.25,,9646,228,152,,,,,,36902323,,, +1430,PRU,,OAZ4V R Universal,,El Tambo (jun),-12.116667,-75.266667,,0.5,,10510,256,152,,,,,,40375,,, +1430,ARG,es,La Red Pampeana,,General Pico (lp),-35.666667,-63.766667,,1,,11888,233,153,,,,,,33000052,,, +1430,BOL,,CP141 R Nuestra Senora de Burgos,,Mizque (cbb),-17.933333,-65.35,,0.25,,10391,245,154,,1000-0200,1234567,,,36646,,, +1430,CHL,,CC143 R Chilena Solonoticias,,Rancagua (LI),-34.166667,-70.7,,1,,12149,239,154,,1030-0500,1234567,,,35816,,, +1430,EQA,,HCCV3,,Loja (loj),-4,-79.166667,,0.2,,10057,264,154,,,,,,36894,,, +1430,B,pt,ZYK366 Rdio Guarita,,Coronel Bicaco (RS),-27.716667,-53.716667,,0.25,,10622,230,155,,,,,,36902320,,, +1430,BOL,,R Centinela,,Tupiza (pts),-21.416667,-65.716667,,0.25,,10727,243,155,,,,,,52041,,, +1430,B,,ZYK224,,Canguu (RS),-31.366667,-52.666667,,0.25,,10911,228,156,,,,,,46259,,, +1430,USA,en,KROO-AM,,Breckenridge (TX),32.792222,-98.94,,0.017,,8128,302,156,,,,,,39282,,, +1430,ARG,es,LT24 R San Nicols,,San Nicols de los Arroyos (ba),-33.316667,-60.216667,,0.25,,11485,232,158,,0000-2400,1234567,981,,40176,,, +1430,ARG,es,LV26 R Ro Tercero,,Ro Tercero (cb),-32.166667,-64.116667,,0.25,,11597,235,158,,0000-2400,1234567,,,40250,,, +1430,USA,,KWST,,El Centro (CA),32.8075,-115.538333,,0.036,,9020,314,158,,,,,,39757,,, +1430,ARG,,LRI235 R Balcarce,,Balcarce (ba),-37.825425,-58.227722,,0.25,,11790,228,159,,0900-0300,1234567,,,51866,,, +1430,USA,,KJAY,,Sacramento (CA),38.504722,-121.560833,,0.02,,8753,321,160,,,,9979,,38658,,, +1431,I,it,RAI Puglia,,Foggia/Istituto Cerealicoltura (fg),41.464653,15.500292,,5,,1369,146,64,,0620-0630,123456,25,,1446,,, +1431,I,it,RAI Puglia,,Foggia/Istituto Cerealicoltura (fg),41.464653,15.500292,,5,,1369,146,64,,1110-1130,123456,25,,1446,,, +1431,I,it,RAI Puglia,,Foggia/Istituto Cerealicoltura (fg),41.464653,15.500292,,5,,1369,146,64,,1140-1200,......7,25,,1446,,, +1431,I,it,RAI R1,,Foggia/Istituto Cerealicoltura (fg),41.464653,15.500292,,5,,1369,146,64,,0000-2400,1234567,25,,1446,,, +1431,G,en,Gold,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.35,,401,264,66,,0000-2400,1234567,0,,1436,,, +1431,G,en,Gold,,Reading/Manor Farm (EN-BER),51.432056,-0.979639,,0.14,,514,264,71,,0000-2400,1234567,6,,1437,,, +1431,IRN,fa,IRIB R Iran,,Esfahan/Habibabad (esf),32.836839,51.771592,,200,,4200,103,76,,0030-1830,1234567,89,,1447,,, +1431,GRC,el,1431 AM,,Thessaloniki/Aristotle University (cmc-tsk),40.626222,22.954722,,0.28,,1792,129,80,,,,,,1445,,, +1431,IRN,fa,IRIB R Fars,,Lamerd (frs),27.325889,53.224194,,50,,4741,107,87,,0000-2400,1234567,,,46836,,, +1431,DJI,ar,R Sawa,,Djibouti/Doraleh (djb),11.566597,43.067114,,300,325,5575,130,88,,1630-0400,1234567,0,,1863,,, +1431,DJI,so,Voice of America,,Djibouti/Doraleh (djb),11.566597,43.067114,,300,325,5575,130,88,,1600-1630,1234567,0,,1863,,, +1431,G,,Chichester Hospital R (LPAM),,Chichester (EN-WSU),50.833333,-0.8,,0.001,,519,257,92,,,,,,1441,,, +1431,G,,University R Falmer (LPAM),,Brighton (EN-ESU),50.833333,-0.166667,,0.001,,477,255,92,,,,,,1443,,, +1431,G,en,HBS R,,Sheffield/Northern General (EN-SYK),53.410556,-1.469167,,0.001,,549,288,92,,,,13,,2800007,,, +1431,G,,Viva,,Penketh (EN-CHE),53.383333,-2.666667,,0.001,,627,287,93,,,,,,2575,,, +1431,G,,Apple AM (LPAM),,Taunton (EN-SOM),51.016667,-3.1,,0.001,,668,263,94,,,,,,1440,,, +1431,G,en,Xtreme AM (LPAM),,Swansea (WA-SWA),51.633333,-3.95,,0.001,,713,270,94,,,,,,1444,,, +1431,BGD,,Bangladesh Betar,,Bandorban=Bandarban (cgg),22.220056,92.202222,,10,,7796,79,125,,0530-1030,1234567,,,36300001,,, +1431,CHN,,Shijiazhuang RGD Changshu Yule Guangbo,,Shijiazhuang (HB),37.833333,114.666667,,10,,7851,53,126,,0825-1500,1234567,,,50825,,, +1431,CHN,,Shijiazhuang RGD Changshu Yule Guangbo,,Shijiazhuang (HB),37.833333,114.666667,,10,,7851,53,126,,2155-0600,1234567,,,50825,,, +1431,CHN,zh,Huaibei RGD Xinwen,,Huaibei (AH),33.956972,116.783444,,10,,8309,54,130,,2115-1500,1234567,,,36200678,,, +1431,CHN,,Fengzhen RGD,,Fengzhen (NM),40.433333,113.15,,1,,7543,52,132,,,,,,36200679,,, +1431,THA,th,Sor. Thor. Ror. 6 KCS R,,Songkhla/Naval Base (sgk),7.195278,100.604167,,20,,9662,82,133,,2300-1305,1234567,,,50845,,, +1431,CHN,,Songyuan RGD News,,Songyuan (JL),45.1625,124.849778,,1,,7706,42,134,,,,,,50826,,, +1431,THA,th,Thor. Or. 03,,Korat=Nakhon Ratchasima (nrt),14.925,102.083333,,10,,9083,76,134,,????-1702,1234567,,,50844,,, +1431,TWN,,Han Sheng Kuangpo Tientai,,Chingsui (TC),24.15,120.683333,,10,,9417,57,135,,0655-0105,1234567,,,50846,,, +1431,J,ja,JOVF WBS Wakayama Hoso,,Wakayama (kns-wak),34.248611,135.144167,,5,,9199,41,137,,0000-2400,1234567,,,50839,,, +1431,J,ja,JOZF GBS Gifu Hoso,,Gifu (chu-gif),35.423333,136.702222,,5,,9153,39,137,,0000-2400,1234567,,,50832,,, +1431,CHN,,Danjiangkou RGD,,Danjiangkou (HU),32.548889,111.519722,,1,,8135,58,138,,,,,,50822,,, +1431,CHN,,Jinshi RGD,,Jinshi (HN),29.633333,111.883333,,1,,8412,60,141,,,,,,50824,,, +1431,CHN,,Huangshan RGD,,Huangshan (AH),30.15,118.266667,,1,,8733,55,143,,0920-1400,1234567,4,,50847,,, +1431,CHN,,Huangshan RGD,,Huangshan (AH),30.15,118.266667,,1,,8733,55,143,,2200-0600,1234567,4,,50847,,, +1431,PHL,,DYRS-AM,,San Carlos (noc),10.483333,123.416667,,5,,10842,62,143,,2100-1600,1234567,,,50819,,, +1431,J,,JOHL BSS, Sanin Hoso,,Tottori (chg-tot),35.5,134.2,,1,,9036,41,144,,0000-2400,1234567,,,50837,, +1431,J,,NBC, Nagasaki Hoso,,Fukue (kyu-nag),32.666667,128.85,,1,,9057,46,144,,0000-2400,1234567,,,50831,, +1431,J,ja,BSS Sanin Hoso,,Izumo (chg-shi),35.355,132.729167,,1,135,8984,42,144,,0000-2400,1234567,,,50834,,, +1431,J,ja,JOWW RFC R.Fukushima,,Iwaki (toh-fuk),37.059167,140.908611,,1,,9164,35,144,,0000-2400,1234567,,,50833,,, +1431,J,,GBS Gifu Hoso,,Ena (chu-gif),35.45,137.45,,0.5,,9182,38,147,,0000-2400,1234567,,,50830,,, +1431,J,,GBS Gifu Hoso,,Tajimi (chu-gif),35.333333,137.166667,,0.1,,9181,39,154,,0000-2400,1234567,,,50836,,, +1431,J,,JOHN BSS, Sanin Hoso,,Masuda (chg-shi),34.683333,131.833333,,0.1,,9007,43,154,,0000-2400,1234567,,,50835,, +1431,J,ja,WBS Wakayama Hoso,,Kushimoto,34.5,134,,0.1,,9124,41,154,,,,,,31400099,,, +1431,AUS,,Vision R,,Kalgoorlie/RFDS Radio Base (WA),-30.725556,121.466667,,2,,14324,92,158,,,,,,50820,,, +1431,AUS,,2RN ABC National,,Wollongong/Windang (NSW),-34.529167,150.864028,,2,,16591,69,166,,0000-2400,1234567,,,50821,,, +1431,NZL,,2XCK R Kidnappers,,Napier/Pakowhai (HKB),-39.561111,176.866111,,2,,18439,31,172,,,,,,50842,,, +1440,LUX,de,China R Int.,,Marnach (gld),50.045833,6.078333,,600,324,231,186,32,,0700-1200,1234567,0,,1452,,, +1440,LUX,de,China R Int.,,Marnach (gld),50.045833,6.078333,,600,324,231,186,32,,1900-2400,1234567,0,,1452,,, +1440,LUX,de,RTL R,,Marnach (gld),50.045833,6.078333,,600,324,231,186,32,,0400-0700,1234567,0,,1452,,, +1440,LUX,de,RTL R,,Marnach (gld),50.045833,6.078333,,600,324,231,186,32,,1200-1900,1234567,0,,1452,,, +1440,RUS,ru,R Zvezda,,Sankt-Peterburg/ul. Sofiyskaya (SP),59.855667,30.418778,,10,,1710,50,64,,0245-2200,1234567,3,,1454,,, +1440,SRB,sr,R Beograd 1,,Jagodina (Srb-pmr),43.973833,21.324472,,4,,1426,123,65,,0000-2400,1234567,4,,1455,,, +1440,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ras al-Khair (Ras al-Zawr) (shy),27.474444,49.301944,,1600,,4475,111,70,,0000-2400,1234567,5,,1451,,, +1440,NIG,,Adamawa BC,,Yola (adw),9.189933,12.525986,,58,,4805,171,87,,0430-2300,1234567,,,2532,,, +1440,CAF,,R Centrafrique,,Bangui (bgf),4.326278,18.524306,,20,,5430,164,98,,0430-1700,1234567,,,2531,,, +1440,RUS,ru,R Rossii,,Turochak (RA),52.255556,87.133333,,5,,5203,56,102,,2100-1700,1234567,,,6700068,,, +1440,RUS,ru,R Rossii,,Ust-Koksa=Kk-Suu (RA),50.268889,85.666667,,5,,5243,59,102,,2100-1700,1234567,,,6700067,,, +1440,RUS,ru,R Rossii,,Kosh-Agach (RA),50,88.666667,,5,,5434,58,104,,2100-1700,1234567,,,46968,,, +1440,USA,en,WRED,,Westbrook (ME),43.680556,-70.379722,,5,,5528,293,105,,,,4,,41835,,, +1440,USA,,WVEI,,Worcester (MA),42.290278,-71.846389,,5,,5718,292,107,,,,,,43291,,, +1440,USA,,WHKZ,,Warren (OH),41.164444,-80.846389,,5,,6361,297,114,,,,990,,41653,,, +1440,USA,,WNPV,,Lansdale (PA),40.238333,-75.316667,,2.5,,6087,292,114,,,,,,42499,,, +1440,USA,,WNYG,,Babylon (NY),40.795833,-72.992222,,1,,5899,291,116,,,,,,42542,,, +1440,CHN,mn,Chifeng RGD,,Chifeng/NMTS915 (NM),42.339722,118.878889,,50,,7675,47,117,,,,,,50851,,, +1440,USA,,WLXN,,Lexington (D) (NC),35.833889,-80.233889,,5,,6736,292,117,,,,,,20012564,,, +1440,USA,,WMAX,,Bay City (MI),43.524167,-83.966111,,2.5,,6369,300,117,,,,,,42275,,, +1440,CAN,en,CKJR,,Wetaskiwin (AB),52.958333,-113.451111,,10,,7064,324,118,,,,996,,36326,,, +1440,USA,en,WFNY,,Gloversville (NY),43.0325,-74.350556,,0.5,,5823,294,118,,,,,,41420,,, +1440,TZA,,R One,,Dar es Salaam (des),-6.690672,39.196933,,10,,7240,144,119,,,,2,,2245,,, +1440,CHN,mn,Alxa Zuoqi RGD,,Alxa Zuoqi=Alashan Zuoqi/NMTS782 (NM),38.821944,105.688333,,10,,7263,58,120,,,,,,50850,,, +1440,USA,,WGVL,,Greenville (SC),34.868333,-82.467778,,5,,6955,292,120,,,,,,41582,,, +1440,USA,,WDRJ,,Inkster (MI),42.256111,-83.363333,,1,,6430,299,121,,,,,,42341,,, +1440,USA,,WAJR,,Morgantown (WV),39.676111,-80.003333,,0.5,,6423,295,124,,,,,,40683,,, +1440,USA,,WLXN,,Lexington (N) (NC),35.832222,-80.287222,,1,,6740,292,124,,,,25,,42263,,, +1440,AGL,pt,RNA Em. Prov. da Lunda-Norte,,Dundo (lno),-7.402778,20.820833,,1,,6758,164,125,,0500-2300,1234567,,,2530,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Bose/GXTS242 (GX),23.890278,106.608889,,50,,8593,67,125,,2200-1600,1234567,,,50853,,, +1440,J,,JOWF STV-Sapporo TV Hoso,,Sapporo (hok),43.125833,141.467222,,50,,8580,32,125,,0000-2400,1234567,2,,50872,,, +1440,USA,,WGMI,,Bremen (GA),33.715556,-85.159444,,2.5,,7217,293,125,,,,,,41531,,, +1440,USA,,WNFL,,Green Bay (WI),44.477778,-88,,0.5,,6529,304,125,,,,,,42464,,, +1440,USA,,WJBS,,Holly Hill (SC),33.339722,-80.438333,,1,,6948,290,126,,,,,,41849,,, +1440,CHN,mn,Chifeng RGD,,Hexigten/NMTS052 (NM),43.320278,117.055,,3,,7497,48,127,,,,,,36200676,,, +1440,USA,,WHIS,,Bluefield (WV),37.275833,-81.251667,,0.5,,6687,294,127,,,,,,41644,,, +1440,USA,,WVGG,,Lucedale (MS),30.932778,-88.605833,,5,,7664,294,127,,,,,,42817,,, +1440,CHN,,Zhuanghe RGD,,Zhuanghe/LNTS305 (LN),39.755222,122.950833,,10,,8108,46,128,,,,,,36200245,,, +1440,IND,,AIR East,,Kurseong (WB),26.865,88.258611,,1,,7145,79,128,,0055-0400,1234567,,,50857,,, +1440,IND,,AIR East,,Kurseong (WB),26.865,88.258611,,1,,7145,79,128,,0620-1030,1234567,,,50857,,, +1440,IND,,AIR East,,Kurseong (WB),26.865,88.258611,,1,,7145,79,128,,1130-1700,12345..,,,50857,,, +1440,IND,,AIR East,,Kurseong (WB),26.865,88.258611,,1,,7145,79,128,,1130-1741,.....67,,,50857,,, +1440,USA,,KDIZ,,Golden Valley (MN),44.988889,-93.351667,,0.5,,6787,307,128,,,,,,38267,,, +1440,USA,,WGEM,,Quincy (IL),39.98,-91.323333,,1,,7078,302,128,,,,,,41495,,, +1440,USA,,WGIG,,Brunswick (GA),31.168611,-81.537222,,1,,7195,289,129,,,,,,41518,,, +1440,NCG,,YNRM R Maranatha,,Managua (mng),12.15,-86.283333,,25,,9126,280,130,,1000-0500,1234567,86,,1766,,, +1440,USA,,KKXL,,Grand Forks (ND),47.964444,-97.029444,,0.3,,6741,312,130,,,,,,38765,,, +1440,USA,,WROK,,Rockford (IL),42.279167,-89.0375,,0.27,,6761,302,130,,,,,,42898,,, +1440,USA,,WSGO,,Oswego (NY),43.415556,-76.466667,,0.045,,5926,296,130,,,,,,42996,,, +1440,USA,es,WMVB,,Millville (NJ),39.421944,-75.020556,,0.065,,6129,291,130,,,,,,42411,,, +1440,USA,,KMAJ,,Topeka (KS),39.018611,-95.572778,,1,,7401,304,131,,,,,,38873,,, +1440,USA,,WBLA,,Elizabethtown (NC),34.625556,-78.624444,,0.197,,6729,290,131,,,,,,40872,,, +1440,USA,,WLWI,,Montgomery (AL),32.306667,-86.276389,,1,,7403,293,131,,,,,,42258,,, +1440,USA,en,KODL,,The Dalles (OR),45.591944,-121.199167,,5,,8056,324,131,,,,,,39054,,, +1440,USA,en,WJJL,,Niagara Falls (NY),43.078611,-79.011111,,0.055,,6106,297,131,,,,,,41886,,, +1440,USA,es,WCDL,,Carbondale (PA),41.557778,-75.486389,,0.037,,6000,294,131,,,,,,40971,,, +1440,USA,fr,WPRD,,Winter Park (FL),28.588333,-81.381389,,1,,7397,287,131,,,,,,42728,,, +1440,CHN,,Chifeng RGD,,Linxi/NMTS726 (NM),43.6,118.05,,1,,7523,47,132,,2000-1730,1234567,,,36200244,,, +1440,USA,,WGLD,,Red Lion (PA),39.999444,-76.745556,,0.053,,6195,293,132,,,,,,43134,,, +1440,USA,,WPRS,,Paris (IL),39.605556,-87.725556,,0.25,,6898,300,132,,,,,,42732,,, +1440,B,pt,ZYH285 Rdio Globo,,Manaus (AM),-3.134511,-59.977472,,10,,8709,249,133,,,,,,36902343,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Jingxi (GX),23.133333,106.416667,,10,,8647,68,133,,,,,,36200239,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Longzhou (GX),22.35,106.85,,10,,8743,68,133,,,,,,36200240,,, +1440,CHN,mn,Chifeng RGD,,Daban/NMTS805 (NM),43.533333,118.666667,,1,,7559,46,133,,,,,,36200677,,, +1440,CHN,mn,Chifeng RGD,,Tianshan/NMTS806 (NM),43.865278,120.081944,,1,,7599,45,133,,,,,,36200675,,, +1440,CHN,mn,Chifeng RGD,,Wudan/NMTS804 (NM),42.933333,119.016667,,1,,7629,47,133,,,,,,36200674,,, +1440,USA,,WKLV,,Blackstone (VA),37.053889,-78.020833,,0.072,,6500,291,133,,,,,,42038,,, +1440,USA,es,WWCL,,Lehigh Acres (FL),26.601389,-81.558333,,1,60,260,7573,286,133,,,,,,43362,, +1440,VEN,,YVZI R Estelar 14-40,,Guanare (ptg),9.05,-69.716667,,5,,8269,265,133,,0900-0400,1234567,,,45486,,, +1440,B,pt,ZYJ757 Rdio Belos Vales,,Ibirama/Serra Urucana (SC),-27.086389,-49.590556,,25,,10349,228,134,,,,,,36902345,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Mengshan (GX),25.866667,110.166667,,7.5,,8641,63,134,,,,,,36200241,,, +1440,THA,th,Thor. Phor. Song,,Nakhon Phanom (npn),17.33,104.573889,,10,,9036,73,134,,????-1415,1234567,,,50885,,, +1440,THA,th,Wor. Por. Thor. 8,,Samut Sakhon (ssk),13.659444,100.296667,,10,,9075,79,134,,0000-1105,......7,,,50886,,, +1440,THA,th,Wor. Por. Thor. 8,,Samut Sakhon (ssk),13.659444,100.296667,,10,,9075,79,134,,0000-2400,123456,,,50886,,, +1440,THA,th,Wor. Por. Thor. 8,,Samut Sakhon (ssk),13.659444,100.296667,,10,,9075,79,134,,2230-2400,......7,,,50886,,, +1440,KOR,en,AFN Korea-Thunder AM,,Munsan/Camp Pelham (gye),37.869444,126.811944,,5,,8469,45,135,,,,,,52088,,, +1440,B,pt,ZYH603 Rdio Araripe,,Crato (CE),-7.245053,-39.4001,,1,,7898,229,136,,,,,,36902346,,, +1440,DOM,,HIFS R Bahia,,Nagua (mts),19.366667,-69.833333,,0.25,,7389,272,137,,1000-0500,1234567,,,37248,,, +1440,DOM,,HILF,,Salvalon de Higey (alt),18.616667,-68.716667,,0.25,,7377,270,137,,,,,,37268,,, +1440,USA,,WPGW,,Portland (IN),40.436111,-85.015556,,0.045,,6670,299,137,,,,,,42682,,, +1440,USA,,WRGM,,Ontario (OH),40.768056,-82.617778,,0.028,,6499,297,137,,,,,,42844,,, +1440,VEN,,YVRF R Orituco,,Altagracia del Orituco (gco),9.816667,-66.316667,,1,,7971,262,137,,,,,,45443,,, +1440,CLM,es,HJIB,,Florencia (caq),1.616667,-75.616667,,5,,9322,265,138,,,,,,35901827,,, +1440,DOM,,HIAD R San Juan,,San Juan de la Maguana (jua),18.766667,-71.2,,0.25,,7533,272,138,,1000-0300,1234567,,,37195,,, +1440,DOM,es,HIAK R Impacto,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,1000-0400,1234567,99,,37201,,, +1440,J,ja,STV-Sapporo TV Hoso,,Muroran (hok),42.3675,140.989167,,3,,8638,33,138,,0000-2400,1234567,,,50871,,, +1440,PHL,,DWDH-AM (r:666 DZRH-AM),,Dagupan City/Lucao (pgs),16.016667,120.333333,,10,,10145,61,138,,0000-2400,1234567,,,50884,,, +1440,USA,,KPUR,,Amarillo (TX),35.122222,-101.8025,,1,,8086,306,138,,,,,,39177,,, +1440,USA,,WIBH,,Anna (IL),37.445833,-89.25,,0.109,,7163,299,138,,,,,,41717,,, +1440,B,pt,ZYJ469 Rdio Livre,,Rio de Janeiro/So Gonalo (RJ),-22.837978,-43.096433,,5,,9617,225,139,,,,3,,36902344,,, +1440,USA,,WKPR,,Kalamazoo (MI),42.313056,-85.6175,,0.024,,6559,300,139,,,,,,42058,,, +1440,USA,es,KTUV,,Little Rock (AR),34.712778,-92.28,,0.24,,7571,299,139,,,,,,38640,,, +1440,USA,,KRDZ,,Wray (CO),40.082222,-102.190278,,0.212,,7673,309,140,,,,,,39232,,, +1440,USA,,WHDM,,McKenzie (TN),36.133056,-88.523333,,0.091,,7227,297,140,,,,,,41620,,, +1440,USA,,WZYX,,Cowan (TN),35.160833,-86.030833,,0.066,,7154,295,140,,,,,,43598,,, +1440,EQA,,HCMD7,,Puyo (pas),-1.5,-78,,3,,9758,265,141,,,,,,37021,,, +1440,USA,,KMED,,Medford (OR),42.31,-122.811389,,1,,8437,324,141,,,,9974,,38892,,, +1440,USA,,KPTO,,Pocatello (ID),42.945278,-112.415833,,0.35,,7926,317,141,,,,,,39173,,, +1440,USA,,WYGH,,Paris (KY),38.225,-84.249722,,0.025,,6798,296,141,,,,,,43516,,, +1440,J,ja,STV-Sapporo TV Hoso,,Tomakomai (hok),42.695,141.646389,,1,,8629,32,142,,0000-2400,1234567,,,50873,,, +1440,KOR,,AFN Korea-Thunder AM,,Pyeongtaek/Camp Humphreys (gye),36.953611,127.020556,,1,,8565,45,142,,0000-2400,1234567,,,50878,,, +1440,USA,,KEYS,,Corpus Christi (TX),27.783889,-97.458056,,1,,8479,298,142,,,,,,38361,,, +1440,USA,,KTNO,,Denton (TX),32.750556,-96.722778,,0.35,,8002,301,142,,,,,,39518,,, +1440,USA,en,WDXQ,,Cochran (GA),32.411944,-83.361667,,0.048,,7210,291,142,,,,,,43311,,, +1440,VEN,,YVTY R Sucesos,,Tariba (tch),7.816667,-72.216667,,1,,8547,266,142,,0950-0400,1234567,,,45477,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Daxin (GX),22.846944,107.188889,,1,,8721,68,143,,,,,,36200237,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Fengshan/GXTS233 (GX),24.533333,109.25,,1,,8702,65,143,,,,,,36200238,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Shangsi (GX),22.15,107.983333,,1,,8832,67,143,,,,,,36200242,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Yizhou/GXTS231 (GX),24.466667,108.583333,,1,,8666,65,143,,,,,,36200243,,, +1440,CLM,es,HJGM,,Sogamoso (boy),5.666667,-72.916667,,1,,8782,265,143,,,,,,37457,,, +1440,CLM,es,HJNZ Colmundo R,,Medelln (ant),6.283333,-75.616667,,1,,8912,268,143,,,,,,37602,,, +1440,EQA,,HCDY4,,Esmeraldas (esm),0.966667,-79.716667,,2,,9658,268,143,,,,,,36908,,, +1440,KOR,en,AFN Korea-Thunder AM,,Gunsan=Kunsan/Air Base (jeb),35.926067,126.621217,,1,,8641,46,143,,0000-2400,1234567,,,50876,,, +1440,USA,,KCHE,,Cherokee (IA),42.789167,-95.552222,,0.029,,7086,307,143,,,,,,38146,,, +1440,USA,,KVON,,Napa (CA),38.2625,-122.282222,,1,,8807,321,143,,,,76,,39654,,, +1440,USA,,WSEL,,Pontotoc (MS),34.252778,-88.96,,0.066,,7409,296,143,,,,,,42979,,, +1440,B,pt,ZYH466 Rdio Independncia,,Santo Amaro (BA),-12.57,-38.714444,,0.5,,8390,226,144,,0000-2400,1234567,,,36902341,,, +1440,B,pt,ZYJ930 Rdio Educadora,,Frei Paulo (SE),-10.543333,-37.526944,,0.25,,8131,225,144,,,,0,,36902339,,, +1440,CHN,zh,CNR 1,,Putian/FJTS301 (FJ),25.423056,119.028333,,1,,9206,57,144,,2025-1805,1234567,,,50855,,, +1440,CLM,,HJBM,,Honda (tol),5.2,-74.766667,,1,,8949,266,144,,,,,,37351,,, +1440,CLM,es,HJEK R Reloj,,Tulu (val),4.066667,-76.216667,,1,,9147,267,144,,,,98,,37413,,, +1440,EQA,,HCTB5,,Azogues (can),-2.716667,-78.766667,,2,,9917,265,144,,,,,,37137,,, +1440,USA,,KUHL,,Santa Maria (CA),34.983889,-120.452778,,1,,9044,318,144,,,,9974,,39571,,, +1440,USA,en,KFNY,i,Riverside (CA),34.026667,-117.3575,,1,,8992,316,144,,,,0,,38263,,, +1440,B,pt,ZYK221 Rdio Ceres AM,,No-Me-Toque (RS),-28.436111,-52.808333,,2.5,,10642,229,145,,,,,,36902336,,, +1440,GTM,,TGMS R Nacional,,Mazatenango (sup),14.516667,-91.5,,1,,9267,285,145,,0000-0400,1234567,,,40516,,, +1440,MEX,es,XEABCJ-AM ABC R,,Guadalajara (jal),20.612989,-103.298678,,1,,9472,298,145,,,,,,43824,,, +1440,MEX,es,XEEST-AM Cambio 1440,,Mxico D.F/Granjas Mxico (dif),19.397756,-99.101222,,1,,9323,294,145,,,,,,43980,,, +1440,PRU,,OBX1I R Cooperativa Tuman,,Chiclayo (lam),-6.75,-79.75,,2,,10338,263,145,,,,,,40384,,, +1440,BOL,,CP61 R Batallon Colorados,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1100-0100,123456,,,36707,,, +1440,BOL,,CP61 R Batallon Colorados,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1100-2400,......7,,,36707,,, +1440,EQA,,HCDF1,,Ibarra (imb),0.35,-79.116667,,0.6,,9672,267,148,,,,,,36900,,, +1440,KOR,,AFN Korea-Thunder AM,,Chuncheon/Camp Page (gan),37.861111,127.733889,,0.25,,8514,44,148,,0000-2400,1234567,,,50875,,, +1440,KOR,,AFN Korea-Thunder AM,,Wonju/Camp Long (gan),37.366667,127.95,,0.25,,8571,44,148,,0000-2400,1234567,,,50879,,, +1440,PRU,,OAU2O R Frecuencia VH,,Celendn (caj),-6.866667,-78.15,,1,,10240,262,148,,1100-2300,1234567,,,52279,,, +1440,USA,en,KETX,,Livingston (TX),30.739722,-94.925,,0.091,,8069,298,148,,,,,,38345,,, +1440,CHL,,CA144 R Santa Maria de Guadalupe,,Arica (TA),-18.433333,-70.266667,,1,,10744,248,149,,1000-0430,1234567,,,35693,,, +1440,EQA,,HCCS5,,Riobamba (chi),-1.566667,-78.616667,,0.5,,9806,265,149,,,,,,36891,,, +1440,PRU,es,OAX4K R Imperial 2,,Lima/Cerro Papa (lim),-12.183333,-76.966667,,1,,10628,257,149,,,,928,,37000011,,, +1440,PRU,es,OAX6R R Santa Monica,,Cayma (are),-16.316667,-71.583333,,1,,10640,251,149,,,,251,,40340,,, +1440,PRU,es,R Solar,,Espinar (cus),-14.783333,-71.416667,,1,,10493,251,149,,,,245,,37000106,,, +1440,KIR,,T3K1 R Kiribati,,Betio Tarawa/Bairiki (trw),1.329722,172.993889,,10,,13941,17,150,,0000-0130,1234567,,,48561,,, +1440,KIR,,T3K1 R Kiribati,,Betio Tarawa/Bairiki (trw),1.329722,172.993889,,10,,13941,17,150,,0530-0930,1234567,,,48561,,, +1440,KIR,,T3K1 R Kiribati,,Betio Tarawa/Bairiki (trw),1.329722,172.993889,,10,,13941,17,150,,1800-2000,1234567,,,48561,,, +1440,ARG,,LRI221 R General Obligado,,Reconquista (sf),-29.15,-59.666667,,1,,11076,234,151,,,,983,,51873,,, +1440,INS,id,R Suara Edukasi,,Tangerang/Ciputat (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,50803,,, +1440,PHL,,DXSI-AM,,Cagayan de Oro City (mor),8.466667,124.633333,,1,,11103,62,151,,,,,,50883,,, +1440,ARG,,R Impacto,,Tapiales (ba),-34.7,-58.516667,,1,,11521,230,152,,,,,,51872,,, +1440,B,pt,ZYK568 Rdio Cultura de Cajuru,,Cajuru (SP),-21.276517,-47.300731,,0.25,,9674,229,152,,,,,,36902333,,, +1440,B,pt,ZYK752 Rdio Azul Celeste,,Americana (SP),-22.7317,-47.330833,,0.25,,9816,228,152,,,,,,36902332,,, +1440,B,pt,ZYL365 Rdio Som 2000,,Santa Vitria (MG),-18.854583,-50.128483,,0.25,,9590,232,152,,,,,,36902331,,, +1440,BOL,,CP104 R Oriente,,Camiri (scz),-20.05,-63.516667,,0.5,,10470,242,152,,,,,,36625,,, +1440,MRA,,KKMP,,Saipan/Garapan (D) (MP),15.157306,145.717817,,1.1,,11572,40,152,,,,,,50880,,, +1440,MRA,,KKMP,,Saipan/Garapan (N) (MP),15.157778,145.718056,,1.1,,11572,40,152,,,,,,20016267,,, +1440,URG,,CV144 AM 1440,,Chuy (ro),-33.7025,-53.450833,,0.75,,11169,227,152,,0000-2400,1234567,,,36728,,, +1440,URG,,CX144 R Rivera,,Rivera (rv),-30.883333,-55.533333,,0.75,,11013,230,152,,0830-0300,1234567,,,36791,,, +1440,B,pt,ZYK634 Rdio Comercial AM,,Presidente Prudente (SP),-22.132206,-51.41645,,0.25,,9972,232,153,,,,,,36902329,,, +1440,CHL,,CA144 R Agricultura,,La Serena (CO),-29.883333,-71.266667,,1,,11813,242,153,,1000-0400,1234567,,,35694,,, +1440,B,,ZYJ250,,Cascavel (PR),-24.933333,-53.45,,0.25,,10346,232,154,,,,,,45976,,, +1440,B,pt,ZYI407 Rdio Bela Vista,,Bela Vista (MS),-22.0991,-56.510078,,0.25,,10249,236,154,,,,,,36902334,,, +1440,B,pt,ZYJ353 Rdio Integraco Oeste,,Corblia (PR),-24.784444,-53.301389,,0.25,,10324,232,154,,,,,,36902340,,, +1440,BOL,,CP107 R Yaguari,,Vallegrande (scz),-18.5,-64.066667,,0.25,,10363,244,154,,1000-0200,1234567,,,36626,,, +1440,MEX,es,XEVSD-AM,,Villa Constitucin (bcs),25.011889,-111.6619,,0.15,,9550,307,154,,,,,,44988,,, +1440,B,,ZYK221,,Campo Real (RS),-28.466667,-52.816667,,0.25,,10645,229,155,,,,,,46256,,, +1440,B,pt,ZYJ792 Rdio Difusora Maravilha,,Maravilha (SC),-26.751667,-53.170556,,0.25,,10502,231,155,,,,,,36902338,,, +1440,B,pt,ZYK328 Rdio Excelsior,,Gramado (RS),-29.383333,-50.883333,,0.25,,10633,227,155,,,,,,36902342,,, +1440,B,pt,ZYK362 Rdio Caibat,,Caibat (RS),-28.314444,-54.658611,,0.25,,10728,231,155,,,,,,36902330,,, +1440,CHL,,CC144 R El Sembrador,,Chilln (BI),-36.566667,-72.083333,,1,,12434,238,155,,1030-0430,1234567,,,35817,,, +1440,ARG,,LRA53 R Nacional,,San Martn de los Andes (nq),-40.159486,-71.345647,,1,,12695,235,156,,1000-0400,1234567,,,39956,,, +1440,USA,,KAZG,,Scottsdale (AZ),33.478611,-111.94,,0.052,,8776,312,156,,,,9975,,37997,,, +1440,ARG,es,LV27 R San Francisco,,San Francisco (cb),-31.433333,-62.066667,,0.25,,11416,234,158,,0900-0300,1234567,,,40251,,, +1440,ARG,,LU36 R Coronel Suarez,,Coronel Suarez (ba),-37.466667,-61.916667,,0.25,,11949,231,159,,1000-0300,1234567,,,40230,,, +1440,ARG,,LV20 R Laboulaye,,Laboulaye (cb),-34.116667,-63.366667,,0.25,,11729,234,159,,0900-0300,1234567,,,40244,,, +1440,AUS,,1SBS,,Canberra/Barton Highway (ACT),-35.217728,149.118675,,2,,16532,72,166,,0000-2400,1234567,,,50849,,, +1440,NZL,en,GoldRush R,,Lawrence (OTA),-45.912778,169.659167,,0.5,,18617,67,178,,,,,,50881,,, +1440,NZL,mi,1XK Te Reo o Tauranga Moana,,Tauranga/Matapihi (BOP),-37.693889,176.196389,,0.2,,18226,30,181,,,,,,50882,,, +1445,BOL,,Super Broadcasting Alborada SBA,,Santa Cruz (scz),-17.766667,-63.166667,,0.5,,10242,243,151,,1000-0300,1234567,,,52045,,, +1449,I,it,RAI R1,,Belluno/La Costa (bl),46.140444,12.241194,,2.5,,787,145,61,,0500-2300,1234567,0,,1461,,, +1449,I,it,RAI Veneto,,Belluno/La Costa (bl),46.140444,12.241194,,2.5,,787,145,61,,0620-0630,123456,0,,1461,,, +1449,I,it,RAI Veneto,,Belluno/La Costa (bl),46.140444,12.241194,,2.5,,787,145,61,,1110-1130,123456,0,,1461,,, +1449,G,en,BBC R 4,,Aberdeen/Redmoss (SC-ABC),57.113583,-2.094583,,2,,780,319,62,,0600-0100,1234567,1,,1456,,, +1449,G,en,BBC WS,,Aberdeen/Redmoss (SC-ABC),57.113583,-2.094583,,2,,780,319,62,,0100-0600,1234567,1,,1456,,, +1449,G,,BBC Asian Network,,Peterborough/Gunthorpe (EN-CAM),52.617222,-0.247778,,0.15,,455,280,70,,0000-2400,1234567,0,,1457,,, +1449,IRN,ru,IRIB WS,,Bandar-e Torkaman (gsn),36.903778,54.0478,,400,70,4049,95,72,CAs,1430-1530,1234567,1,,1469,,, +1449,IRN,tk,IRIB WS,,Bandar-e Torkaman (gsn),36.903778,54.0478,,400,70,4049,95,72,,0230-0500,1234567,1,,1469,,, +1449,IRN,tk,IRIB WS,,Bandar-e Torkaman (gsn),36.903778,54.0478,,400,70,4049,95,72,,1330-1430,1234567,1,,1469,,, +1449,IRN,tk,IRIB WS,,Bandar-e Torkaman (gsn),36.903778,54.0478,,400,70,4049,95,72,,1530-1830,1234567,1,,1469,,, +1449,ARS,ar,BSKSA Idha'atu-i Riyadh,,Yanbu al-Bahr (mdh),24.083333,38.05,,100,,4106,127,78,,,,9993,,10600014,,, +1449,G,,Lyneham R,,RAF Lyneham (EN-WLT),51.507778,-1.981667,,0.001,,580,267,93,,,,,,2571,,, +1449,G,,University R Bath (LPAM),,Bath (EN-SOM),51.383333,-2.366667,,0.001,,609,266,93,,,,,,1458,,, +1449,ARS,ar,BSKSA Al-Quran al-Karim,,unknown,24,45.45,,1,,4539,118,102,,,,,,10600013,,, +1449,PAK,,PBC R Pakistan/NBS News,,Zhob (blc),31.335067,69.435122,,10,,5513,89,102,,0200-0400,1234567,,,50902,,, +1449,PAK,,PBC R Pakistan/NBS News,,Zhob (blc),31.335067,69.435122,,10,,5513,89,102,,1155-1600,1234567,,,50902,,, +1449,RUS,ru,R Rossii,,unknown,61.2,99.9,,1,,5299,41,110,,,,,,6700096,,, +1449,CHN,,Dongying RGD News Channel,,Dongying (SD),37.453889,118.569167,,10,,8093,50,128,,2150-1433,1234567,,,50892,,, +1449,MLD,,R Eke,,Male (mle),4.171667,73.517222,,10,,8095,106,128,,1740-0025,1234567,52,,2533,,, +1449,MLD,dv,Voice of Maldives,,Male (mle),4.171667,73.517222,,10,,8095,106,128,,0025-1200,1234567,52,,2533,,, +1449,MLD,dv,Voice of Maldives,,Male (mle),4.171667,73.517222,,10,,8095,106,128,,1400-1740,1234567,52,,2533,,, +1449,MLD,en,Voice of Maldives,,Male (mle),4.171667,73.517222,,10,,8095,106,128,,1200-1400,1234567,52,,2533,,, +1449,CHN,zh,Rizhao RGD,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2130-1530,1234567,,,36200202,,, +1449,CHN,,Jiangxi RGD Xinwen Guangbo,,several locations,34.95,104.5,,1,,7515,61,132,,2000-1730,1234567,,,50893,,, +1449,KOR,,HLQB KBS 1 R,,Ulsan (uls),35.530833,129.346111,,10,,8810,44,133,,0000-2400,1234567,,,50898,,, +1449,THA,th,Thor. Phor. Saam.,,Phichit (pct),16.491667,100.141667,,10,,8818,77,133,,2200-1400,1234567,,,50906,,, +1449,J,ja,JOQM HBC Hokkaido Hoso,,Abashiri/Mount Tento (hok),44.002222,144.240278,,5,,8589,30,135,,0000-2400,1234567,,,50895,,, +1449,J,ja,JOKF RNC Nishi-Nippon Hoso,,Takamatsu (shi-kag),34.320833,134.072778,,5,,9145,41,137,,,,,,50897,,, +1449,THA,th,Wor. Sor. Por. 1449,,Chumphon/Fort Khet Udomsak (cpn),10.511111,99.109722,,5,,9270,81,138,,2300-1330,1234567,,,50905,,, +1449,PHL,,DYAC-AM,,Baybay/Pangasugan (lyt),10.683333,124.8,,5,,10907,61,143,,2100-0900,12345..,,,50903,,, +1449,J,ja,RNC Nishi-Nippon Hoso,,Marugame,34.5,134,,1,,9124,41,144,,,,,,31400100,,, +1449,PHL,,DXSA-AM,,Marawi City (lds),8.016667,124.3,,5,,11124,63,144,,,,,,50904,,, +1449,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Dongshan/FJTS504 (FJ),23.7,117.416667,,1,,9269,59,145,,0000-2400,1234567,,,36200201,,, +1449,FSM,,V6AH FSMBS Voice of Pohnpei,,Kolonia (pnp),6.965,158.207778,,10,,12921,32,147,,2000-1400,1234567,,,50899,,, +1449,J,,MBC Minami Nihon Hoso,,Naze (kyu-kag),28.383333,129.483333,,0.3,,9495,48,151,,0000-2400,1234567,,,50896,,, +1449,INS,id,R Khusus Informasi Pertanian,,Surabaya/Wonocolo (JI-ksu),-7.329167,112.730278,,1,,11762,82,153,,,,71,,35400004,,, +1449,J,ja,RNC Nishi-Nippon Hoso,,Kannoji,34.5,134,,0.1,,9124,41,154,,,,,,31400102,,, +1449,J,ja,RNC Nishi-Nippon Hoso,,Shiratori,34.5,134,,0.1,,9124,41,154,,,,,,31400101,,, +1449,AUS,en,6TAB Racing R.,,Mandurah/West Pinjarra (WA),-32.641917,115.803125,,2,,14087,98,157,,0000-2400,1234567,,,50890,,, +1449,AUS,,2MG,,Mudgee (NSW),-32.582014,149.571,,5,,16351,68,161,,0000-2400,1234567,,,50891,,, +1449,NZL,en,RNZ National,,Palmerston North/Kairanga (MWT),-40.509167,175.570556,,2.5,,18483,37,171,,0000-2400,1234567,,,50901,,, +1450,CAN,en,CFAB,,Windsor (NS),44.995278,-64.113611,,1,,5042,290,107,,,,,,35927,,, +1450,USA,en,WVOM,,Rockland (ME),44.126111,-69.138611,,1,,5420,292,111,,,,,,42866,,, +1450,USA,en,WKTQ,,South Paris (ME),44.221111,-70.528611,,1,,5501,293,112,,,,,,42078,,, +1450,CAN,xx,CHOU,,Montral (QC),45.495833,-73.743889,,1,,5612,296,113,,,,6,,20100002,,, +1450,USA,,WKXL,,Concord (NH),43.194167,-71.554722,,1,,5636,293,113,,,,,,42098,,, +1450,USA,,WNBP,,Newburyport (MA),42.823056,-70.861667,,1,,5619,292,113,,,,,,42437,,, +1450,USA,,WSNO,,Barre (VT),44.194444,-72.514444,,1,,5626,294,113,,,,,,43037,,, +1450,USA,,WLKW,,West Warwick (RI),41.695,-71.523889,,1,,5740,291,114,,,,,,42184,,, +1450,USA,,WTSA,,Brattleboro (VT),42.870278,-72.559722,,1,,5722,293,114,,,,,,43211,,, +1450,USA,,WWSC,,Glens Falls (NY),43.3125,-73.598611,,0.94,,5756,294,115,,,,,,43430,,, +1450,USA,en,WHLL,,Springfield (MA),42.108889,-72.612222,,1,,5780,292,115,,,,,,42274,,, +1450,USA,,WCUM,,Bridgeport (CT),41.219444,-73.202222,,1,,5881,292,116,,,,,,41105,,, +1450,USA,,WKAL,,Rome (NY),43.205,-75.479167,,1,,5880,295,116,,,,,,43515,,, +1450,USA,,WKIP,,Poughkeepsie (NY),41.705,-73.887778,,1,,5889,293,116,,,,,,42019,,, +1450,BER,en,VSB1 AM Gold,,Ireland Island South (-),32.313694,-64.842111,,1,,5997,278,117,,0000-2400,1234567,994,,46797,,, +1450,USA,,WYNY,,Milford (PA),41.336111,-74.795833,,1,,5973,293,117,,,,,,20016107,,, +1450,USA,en,WCTC,,New Brunswick (U) (NJ),40.492222,-74.419722,,1,,6012,292,117,,,,9930,,41095,,, +1450,USA,,WENI,,Corning (NY),42.116389,-77.04,,0.93,,6056,295,118,,,,,,41026,,, +1450,USA,,WHDL,,Olean (NY),42.0775,-78.475556,,1,,6147,296,118,,,,,,41619,,, +1450,USA,,WILM,i,Wilmington (DE),39.729444,-75.551944,,1,,6140,292,118,,,,,,41755,,, +1450,USA,,WPAM,,Pottsville (PA),40.690833,-76.194167,,1,,6109,293,118,,,,,,42643,,, +1450,USA,en,WPGG,,Atlantic City (NJ),39.378333,-74.448056,,1,,6096,291,118,,,,9958,,42103,,, +1450,USA,,WATZ,,Alpena (MI),45.066111,-83.485,,1,,6225,302,119,,,,,,40766,,, +1450,USA,,WNBY,,Newberry (MI),46.313333,-85.510556,,1,,6248,304,119,,,,,,42441,,, +1450,USA,en,WQWK,,State College (PA),40.808889,-77.841111,,1,,6203,294,119,,,,,,42270,,, +1450,USA,,WDAD,,Indiana (PA),40.638056,-79.146389,,1,,6297,295,120,,,,,,41117,,, +1450,USA,,WFRA,,Franklin (PA),41.391667,-79.811389,,0.99,,6281,296,120,,,,,,41431,,, +1450,USA,,WHLS,,Port Huron (MI),42.976944,-82.464444,,1,,6322,299,120,,,,,,41660,,, +1450,USA,,WTBO,,Cumberland (MD),39.645278,-78.751389,,1,,6347,294,120,,,,,,43113,,, +1450,USA,,WBVA,,Virginia Beach (Bayside) (VA),36.858056,-76.157778,,1,,6396,290,121,,,,,,40928,,, +1450,USA,,WFTR,,Front Royal (VA),38.908611,-78.176944,,1,,6368,293,121,,,,,,41451,,, +1450,USA,,WJER,,Dover-New Philadelphia (OH),40.512778,-81.456944,,1,,6448,296,121,,,,,,41868,,, +1450,USA,,WJPA,,Washington (PA),40.189722,-80.233889,,1,,6398,295,121,,,,,,41919,,, +1450,USA,,WMIQ,,Iron Mountain (MI),45.821111,-88.054444,,1,,6429,305,121,,,,,,42330,,, +1450,USA,,WPSE,,Erie (PA),42.136389,-80.040278,,0.77,,6239,297,121,,,,,,42737,,, +1450,USA,en,WCLM,,Highland Springs (VA),37.544167,-77.346389,,0.96,,6420,291,121,,,,,,41027,,, +1450,USA,,WHNK,,Parkersburg (WV),39.289722,-81.526667,,1,,6547,295,122,,,,,,41668,,, +1450,USA,,WHRY,,Hurley (WI),46.415556,-90.159444,,1,,6500,307,122,,,,,,41685,,, +1450,USA,,WKLA,,Ludington (MI),43.951389,-86.424444,,1,,6480,302,122,,,,,,42033,,, +1450,USA,,WLEC,,Sandusky (OH),41.441111,-82.687222,,1,,6452,298,122,,,,,,42151,,, +1450,USA,,WREL,,Lexington (VA),37.766667,-79.432222,,1,,6534,293,122,,,,,,42835,,, +1450,USA,,WVAX,,Charlottesville (VA),38.048333,-78.47,,1,,6452,292,122,,,,,,20016104,,, +1450,USA,,KFIZ,,Fond Du Lac (WI),43.791111,-88.471111,,1,,6610,303,123,,,,,,38396,,, +1450,USA,,WCTC,,New Brunswick (U) (Aux) (NJ),40.475833,-74.492778,,0.25,,6017,292,123,,,,,,20016206,,, +1450,USA,,WDLB,,Marshfield (WI),44.696944,-90.155556,,1,,6634,305,123,,,,,,41172,,, +1450,USA,,WELY,,Ely (MN),47.894444,-91.863889,,0.77,,6477,309,123,,,,,,41294,,, +1450,USA,,WHTC,,Holland (MI),42.794722,-86.106111,,1,,6551,301,123,,,,,,41691,,, +1450,USA,,WIBM,,Jackson (MI),42.237222,-84.364444,,0.81,,6491,300,123,,,,,,41718,,, +1450,USA,,WIZS,,Henderson (NC),36.325278,-78.41,,1,,6582,291,123,,,,,,41832,,, +1450,USA,,WLUX,,Dunbar (WV),38.349167,-81.748056,,1,,6634,295,123,,,,,,20016102,,, +1450,USA,,WLYV,,Fort Wayne (IN),41.070556,-85.119444,,1,,6626,299,123,,,,,,42267,,, +1450,USA,,WMVA,,Martinsville (VA),36.7,-79.851944,,1,,6644,292,123,,,,,,20016030,,, +1450,USA,,WNOS,,New Bern (NC),35.100833,-77.075833,,1,,6592,289,123,,,,,,42494,,, +1450,USA,,KBUN,,Bemidji (MN),47.465556,-94.905556,,1,,6671,310,124,,,,,,38108,,, +1450,USA,,WCEV,,Cicero (IL),41.8325,-87.705556,,1,,6719,301,124,,,,,,40979,,, +1450,USA,,WMOH,,Hamilton (OH),39.403333,-84.530556,,1,,6722,297,124,,,,,,42366,,, +1450,USA,,WOL,,Washington (DC),38.955278,-77.004167,,0.37,,6290,292,124,,,,,,42591,,, +1450,USA,,WRLL,,Cicero (IL),41.8325,-87.705556,,1,,6719,301,124,,,,,,20016032,,, +1450,USA,,WTHU,,Thurmont (MD),39.626944,-77.403056,,0.4,,6264,293,124,,,,,,20016006,,, +1450,USA,en,WFBX,,Spring Lake (NC),35.186389,-78.959722,,0.95,,6706,290,124,,,,,,41005,,, +1450,USA,,KNSI,,St. Cloud (MN),45.539167,-94.168056,,1,,6787,308,125,,,,,,39017,,, +1450,USA,,WASK,,Lafayette (IN),40.402222,-86.849722,,1,,6782,300,125,,,,,,40749,,, +1450,USA,,WATA,,Boone (NC),36.216389,-81.701667,,1,,6799,293,125,,,,,,40754,,, +1450,USA,,WGNC,,Gastonia (NC),35.275556,-81.201111,,1,,6842,292,125,,,,,,41536,,, +1450,USA,,WLKS,,West Liberty (KY),37.926667,-83.278056,,1,,6762,295,125,,,,,,42183,,, +1450,USA,,WRCO,,Richland Center (DN) (WI),43.316111,-90.3775,,1,,6755,304,125,,,,,,20016278,,, +1450,USA,,WRCO,,Richland Center (U) (WI),43.316111,-90.375278,,1,,6755,304,125,,,,,,42822,,, +1450,USA,,WRNN,,Myrtle Beach (SC),33.705556,-78.889722,,1,,6819,289,125,,,,,,42776,,, +1450,USA,,WTOD,,Hartsville (SC),34.354444,-80.068333,,1,,6843,290,125,,,,,,41686,,, +1450,CAN,xx,CHMO,,Moosonee (ON),51.2775,-80.644167,,0.05,,5620,306,126,,,,,,20109204,,, +1450,USA,,KATE,,Albert Lea (MN),43.633333,-93.370833,,1,,6897,306,126,,,,,,37978,,, +1450,USA,,KBMW,,Breckenridge (MN),46.280556,-96.588056,,1,,6855,310,126,,,,,,38066,,, +1450,USA,,KMRY,,Cedar Rapids (IA),42.006944,-91.708056,,1,,6936,304,126,,,,,,38933,,, +1450,USA,,KZZJ,,Rugby (ND),48.353889,-99.991944,,1,,6858,314,126,,,,,,39916,,, +1450,USA,,WHKP,,Hendersonville (NC),35.338889,-82.455556,,0.97,,6916,293,126,,,,,,41651,,, +1450,USA,,WKEI,,Kewanee (IL),41.226667,-89.934722,,1,,6897,302,126,,,,,,41993,,, +1450,USA,,WLAF,,La Follette (TN),36.381111,-84.125556,,1,,6937,295,126,,,,,,42118,,, +1450,USA,,WTCO,,Campbellsville (KY),37.335278,-85.375833,,1,,6938,296,126,,,,,,43121,,, +1450,USA,,WWXL,,Manchester (KY),37.151111,-83.7625,,1,,6853,295,126,,,,,,43448,,, +1450,USA,en,WXVW,,Jeffersonville (IN),38.294722,-85.751944,,1,,6884,297,126,,,,,,40773,,, +1450,VEN,,YVXC R Mega Vision,,Ciudad Guayana/San Flix (blv),8.347222,-62.65,,10,,7853,258,126,,,,,,51702,,, +1450,USA,,WAOV,,Vincennes (IN),38.707222,-87.495,,1,,6956,299,127,,,,,,40732,,, +1450,USA,,WCRS,,Greenwood (SC),34.209444,-82.151389,,1,,6988,292,127,,,,,,41079,,, +1450,USA,,WFMB,,Springfield (IL),39.76,-89.651389,,1,,6999,301,127,,,,,,41404,,, +1450,USA,,WLAR,,Athens (TN),35.445556,-84.611944,,1,,7043,294,127,,,,987,,42124,,, +1450,USA,,WSMG,,Greeneville (TN),36.169444,-82.847778,,0.67,,6875,294,127,,,,,,43026,,, +1450,USA,,WWKU,,Glasgow (KY),37.010278,-86.423889,,1,,7028,297,127,,,,,,40973,,, +1450,USA,en,CBS Sports R.,,Charleston (SC),32.818611,-79.961944,,0.85,,6959,289,127,,0600-1200,67,,,42784,,, +1450,USA,en,CBS Sports R.,,Charleston (SC),32.818611,-79.961944,,0.85,,6959,289,127,,1200-1800,12345,,,42784,,, +1450,USA,,KIRX,,Kirksville (MO),40.206667,-92.575278,,1,,7132,303,128,,,,,,38638,,, +1450,USA,,WCON,,Cornelia (GA),34.515833,-83.538889,,1,,7051,293,128,,,,,,41059,,, +1450,USA,,WGNS,,Murfreesboro (TN),35.840556,-86.390833,,1,,7121,296,128,,,,,,41538,,, +1450,USA,,WLMR,,Chattanooga (TN),35.048333,-85.273889,,1,,7116,294,128,,,,,,42192,,, +1450,USA,,WMVG,,Milledgeville (GA),33.082778,-83.250278,,1,,7149,292,128,,,,,,42412,,, +1450,USA,,KVCK,,Wolf Point (MT),48.088333,-105.656111,,1,,7153,317,129,,,,,,39613,,, +1450,USA,,KYLS,,Fredericktown (MO),37.583333,-90.291944,,1,,7214,300,129,,,,,,39853,,, +1450,USA,,WBHF,,Cartersville (GA),34.185833,-84.803611,,1,,7157,293,129,,,,,,40851,,, +1450,USA,,WDXR,,Paducah (KY),37.098611,-88.621944,,1,,7154,298,129,,,,,,41227,,, +1450,USA,,WKEU,,Griffin (GA),33.24,-84.248611,,1,,7199,292,129,,,,,,41996,,, +1450,USA,en,KYNT,,Yankton (SD),42.891667,-97.419444,,1,,7179,308,129,,,,,,39865,,, +1450,USA,en,WTKI,,Huntsville (AL),34.725,-86.604167,,1,,7225,295,129,,,,,,43154,,, +1450,VEN,,YVZQ Informativa 14-50,,Los Puertos de Altagracia (zul),10.766667,-71.566667,,10,,8245,267,129,,0900-0500,1234567,,,45488,,, +1450,CAN,en,CBLF,,Foleyet (ON),48.237778,-82.434722,,0.04,,5932,304,130,,,,,,20109202,,, +1450,PTR,,WCPR,,Coamo (PR),18.091389,-66.370833,,1,,7261,268,130,,1000-0200,1234567,,,41068,,, +1450,USA,,KOKO,,Warrensburg (MO),38.775556,-93.72,,1,,7316,303,130,,,,,,39077,,, +1450,USA,,WDNG,,Anniston (AL),33.666944,-85.848889,,1,,7265,294,130,,,,,,41189,,, +1450,USA,,WLAY,,Muscle Shoals (AL),34.756389,-87.685556,,1,,7289,296,130,,,,,,42127,,, +1450,USA,,WMFJ,,Daytona Beach (FL),29.225,-81.025,,1,,7321,287,130,,,,,,42311,,, +1450,USA,,WTRO,,Dyersburg (TN),36.050556,-89.368611,,1,,7285,298,130,,,,,,43206,,, +1450,USA,en,WGPC,,Albany (GA),31.581944,-84.199444,,1,,7332,291,130,,,,,,41553,,, +1450,VEN,,YVKJ Sonera 14-50 (R Maria),,Catia La Mar (vgs),10.601389,-67.0375,,5,,7951,263,130,,0900-0400,1234567,1,,45347,,, +1450,USA,,KBFS,,Belle Fourche (SD),44.667222,-103.856111,,1,,7361,313,131,,,,,,38025,,, +1450,USA,,KWPM,,West Plains (MO),36.741111,-91.833611,,1,,7375,300,131,,,,,,39745,,, +1450,USA,,WSTU,,Stuart (FL),27.214722,-80.256667,,1,,7437,285,131,,,,,,43076,,, +1450,USA,,WTAL,,Tallahassee (FL),30.427222,-84.245278,,1,,7430,290,131,,,,,,43101,,, +1450,USA,,WVLD,,Valdosta (GA),30.834722,-83.299167,,0.86,,7336,290,131,,,,,,43304,,, +1450,USA,,WWNT,,Dothan (AL),31.219444,-85.370556,,1,,7436,292,131,,,,,,43416,,, +1450,USA,,WZGX,,Bessemer (AL),33.423056,-86.954722,,1,,7354,294,131,,,,,,43573,,, +1450,CAN,en,CBOL,,Armstrong (ON),50.302222,-89.036667,,0.04,,6144,309,132,,,,,,20109201,,, +1450,USA,,KBBS,,Buffalo (WY),44.3425,-106.681667,,1,,7529,315,132,,,,,,38008,,, +1450,USA,,KQYX,,Joplin (MO),37.069444,-94.546944,,0.94,,7506,302,132,,,,,,39215,,, +1450,USA,,KYLW,,Lockwood (MT),45.810278,-108.427222,,1,,7482,317,132,,,,,,39857,,, +1450,USA,,WCOX,,Camden (AL),31.985833,-87.288056,,1,,7494,294,132,,,,,,41062,,, +1450,USA,,WOCN,,Miami (FL),25.839444,-80.189722,,1,,7546,284,132,,,,,,42560,,, +1450,USA,,WROX,,Clarksdale (MS),34.211111,-90.578333,,1,,7511,297,132,,,,,,42905,,, +1450,USA,,WWJB,,Brooksville (FL),28.550556,-82.417222,,1,,7467,288,132,,,,,,43392,,, +1450,USA,,WYHL,,Meridian (MS),32.385833,-88.693333,,1,,7548,295,132,,,,,,41374,,, +1450,USA,,KBFI,,Bonners Ferry (ID),48.688889,-116.334444,,1,,7569,323,133,,,,,,38024,,, +1450,USA,,KGRZ,,Missoula (MT),46.8775,-114.043333,,1,,7639,321,133,,,,,,38511,,, +1450,USA,,KMMS,,Bozeman (MT),45.698333,-111.028056,,1,,7612,318,133,,,,,,38917,,, +1450,USA,,KQDI,,Great Falls (MT),47.465556,-111.322778,,0.72,,7467,320,133,,,,,,39187,,, +1450,USA,,KWBE,,Beatrice (NE),40.263611,-96.774167,,0.53,,7364,306,133,,,,,,39691,,, +1450,USA,,KWBW,,Hutchinson (KS),38.072778,-97.964722,,1,,7616,305,133,,,,,,39693,,, +1450,USA,,WBSR,,Pensacola (FL),30.428889,-87.240833,,1,,7620,292,133,,,,,,40911,,, +1450,USA,,WSDV,,Sarasota (FL),27.336389,-82.573611,,1,,7579,287,133,,,,,,43065,,, +1450,CAN,en,CKDR-3,,Hudson (ON),50.089167,-92.165278,,0.04,,6323,311,134,,,,,,20109205,,, +1450,CAN,en,CKDR-4,,Ear Falls (ON),50.636111,-93.231111,,0.04,,6336,312,134,,,,,,20109200,,, +1450,CLM,,HJPM,,Santa Marta (mag),11.166667,-74.116667,,5,,8385,269,134,,,,,,37626,,, +1450,USA,,KENA,,Mena (AR),34.573056,-94.248611,,1,,7700,300,134,,,,,,38328,,, +1450,USA,,KNHD,,Camden (AR),33.563611,-92.843611,,1,,7702,298,134,,,,,,38995,,, +1450,USA,,KVOW,,Riverton (WY),43.026389,-108.345833,,1,,7726,315,134,,,,,,39658,,, +1450,USA,,WCJU,,Columbia (MS),31.237222,-89.84,,1,,7715,295,134,,,,,,41009,,, +1450,ALS,,KLAM,,Cordova (AK),60.538889,-145.759722,,0.25,,7246,345,135,,0000-2400,1234567,,,38771,,, +1450,B,pt,ZYI561,,Castanhal (PA),-1.322333,-47.892978,,1,,7797,240,135,,,,,,36902886,,, +1450,CUB,es,R Maboas,,Amancio (lt),20.836722,-77.575222,,1,,7791,279,135,,,,,,36586,,, +1450,USA,,KGFF,,Shawnee (DN) (OK),35.352778,-96.8775,,1,,7787,302,135,,,,,,20016282,,, +1450,USA,,KGFF,,Shawnee (U) (OK),35.360833,-96.894722,,1,,7787,302,135,,,,,,38469,,, +1450,USA,,KGRE,,Greeley (CO),40.4375,-104.723611,,1,,7775,311,135,,,,,,38507,,, +1450,USA,,KJCV,,Jackson (WY),43.4625,-110.793611,,1,,7804,317,135,,,,,,20016103,,, +1450,USA,,KSIW,,Woodward (OK),36.428333,-99.402778,,1,,7838,305,135,,,,,,39366,,, +1450,USA,,WNAT,,Natchez (MS),31.559167,-91.391667,,1,,7784,296,135,,,,,,42428,,, +1450,USA,en,KCLX,,Colfax (WA),46.913889,-117.324444,,0.9,,7774,323,135,,,,,,38178,,, +1450,CAN,xx,CBKE,,Fort Chipewyan (AB),58.720833,-111.145556,,0.04,,6471,327,136,,,,,,20109199,,, +1450,CLM,es,HJHH,,Bucaramanga (sat),7.133333,-73.133333,,5,,8669,266,136,,,,,,35901839,,, +1450,CUB,es,R Mayabeque,,Gines (my),22.807692,-82.018092,,1,,7923,283,136,,,,,,31600033,,, +1450,PNR,es,R Meloda AM Stereo,,Villalobos (pnm),9.079722,-79.439444,,5,,8929,272,136,,1000-0330,1234567,,,52353,,, +1450,USA,,KNOC,,Natchitoches (LA),31.763056,-93.063056,,1,,7868,297,136,,,,,,39006,,, +1450,USA,,KVSI,,Montpelier (ID),42.317222,-111.322222,,1,,7932,316,136,,,,,,39669,,, +1450,USA,en,KONP,,Port Angeles (WA),48.098611,-123.405556,,0.91,,7900,327,136,,,,3,,39092,,, +1450,USA,ko,KSUH,,Puyallup (WA),47.178056,-122.273333,,1,,7946,326,136,,,,,,39430,,, +1450,CLM,es,HJBY Oxgeno 1450,,Flandes (tol),4.283333,-74.816667,,5,,9033,266,137,,,,,,35901840,,, +1450,CLM,es,HJNL La Cariosa,,Manizales (cal),5.066667,-75.516667,,5,,9012,267,137,,,,15,,52502,,, +1450,DOM,,HIAC R Util,,Salcedo (hmb),19.366667,-70.366667,,0.25,,7426,272,137,,0900-0400,1234567,,,37194,,, +1450,USA,,KLBM,,La Grande (OR),45.329167,-118.066667,,1,,7954,322,137,,,,,,38780,,, +1450,USA,,KLMX,,Clayton (NM),36.444167,-103.19,,1,,8046,307,137,,,,,,38831,,, +1450,USA,,KSIG,,Crowley (LA),30.229167,-92.349722,,1,,7956,296,137,,,,,,39361,,, +1450,USA,,KWEI,,Notus (ID),43.845556,-116.755833,,1,,8037,321,137,,,,9960,,39702,,, +1450,USA,en,KBKW,,Aberdeen (WA),46.949722,-123.820278,,1,,8027,327,137,,,,997,,38050,,, +1450,DOM,,R Alfa y Omega,,Santo Domingo (sdo),18.466667,-69.9,,0.25,,7470,271,138,,,,,,52249,,, +1450,USA,,KBPS,,Portland (OR),45.527222,-122.650833,,1,,8119,325,138,,,,,,38079,,, +1450,USA,,KEYY,,Provo (UT),40.230278,-111.686667,,1,,8140,315,138,,,,,,38362,,, +1450,USA,,KEZJ,,Twin Falls (ID),42.543333,-114.470556,,1,,8057,318,138,,,,,,38364,,, +1450,USA,,KGIW,,Alamosa (CO),37.472222,-105.853611,,1,,8097,310,138,,,,,,38485,,, +1450,USA,,KIKR,,Beaumont (TX),30.064444,-94.12,,1,,8078,297,138,,,,,,38605,,, +1450,USA,,KMHT,,Marshall (TX),32.563889,-94.351111,,0.65,,7878,299,138,,,,,,38901,,, +1450,USA,en,KAVP,,Colona (CO),38.387778,-107.674444,,1,,8109,312,138,,,,,,37987,,, +1450,B,pt,ZYH623 Rdio Pinto Martins,,Camocim (CE),-2.933931,-40.857344,,0.25,,7553,232,139,,,,,,36902362,,, +1450,B,pt,ZYJ701 Rdio Transamrica Hits,,Alto Alegre (RR),3.0125,-61.275278,,1,,8237,254,139,,,,,,36902359,,, +1450,USA,,KNET,,Palestine (TX),31.772778,-95.616389,,0.63,,8021,299,139,,,,,,38984,,, +1450,USA,,KSNY,,Snyder (TX),32.725833,-100.941667,,1,,8249,303,139,,,,,,39394,,, +1450,USA,,KWHW,,Altus (OK),34.626389,-99.336111,,0.67,,7991,304,139,,,,,,39711,,, +1450,B,pt,ZYH601 Rdio Difusora Cristal,,Quixeramobim (CE),-5.193822,-39.299289,,0.25,,7691,230,140,,,,,,36902377,,, +1450,USA,,KCTI,,Gonzales (TX),29.509722,-97.414167,,1,,8325,299,140,,,,,,38217,,, +1450,USA,,KCYL,,Lampasas (TX),31.049167,-98.169444,,0.8,,8235,300,140,,,,,,38230,,, +1450,USA,,KRZY,,Albuquerque (NM),35.132222,-106.621667,,1,,8347,309,140,,,,,,39323,,, +1450,USA,,KSEL,,Portales (NM),34.1975,-103.323333,,0.95,,8252,306,140,,,,,,39341,,, +1450,USA,en,KLZS r:KKNX,,Eugene (OR),44.081667,-123.109444,,1,,8277,325,140,,,,,,39095,,, +1450,B,pt,Rdio Carinhosa,,Acopiara (CE),-6.1231,-39.441425,,0.25,,7790,229,141,,,,,,36902357,,, +1450,B,pt,ZYH531 Rdio Ipir,,Ipir (BA),-12.165872,-39.734642,,1,,8400,227,141,,,,,,36902355,,, +1450,B,pt,ZYI699 Rdio Itatiunga,,Patos (PB),-7.053367,-37.271419,,0.25,,7771,227,141,,,,,,36902360,,, +1450,USA,,KFLS,,Klamath Falls (OR),42.205278,-121.767778,,1,,8404,323,141,,,,,,38407,,, +1450,USA,,KMBL,,Junction (TX),30.492778,-99.761389,,1,,8378,301,141,,,,,,38885,,, +1450,ARG,es,R El Sol,,Quilmes (ba),-34.733333,-58.266667,,10,,11511,230,142,,,,991,,33000004,,, +1450,B,pt,ZYI794 Rdio Cultura dos Palmares,,Palmares (PE),-8.683333,-35.583333,,0.25,,7851,225,142,,,,,,36902350,,, +1450,CLM,es,HJMX,,El Carmen de Bolvar (bol),9.616667,-75.15,,1,,8590,269,142,,,,,,37576,,, +1450,EQA,,HCHW2,,Quevedo (gua),-1.05,-79.45,,3,,9817,266,142,,,,,,36968,,, +1450,EQA,,HCSC5 R Calidad,,Riobamba (chi),-1.633333,-78.616667,,3,,9812,265,142,,,,35,,2046,,, +1450,USA,,KBEN,,Carrizo Springs (TX),28.520833,-99.858333,,1,,8557,300,142,,,,,,38020,,, +1450,USA,,KHIT,,Reno (NV),39.574167,-119.846667,,1,,8576,320,142,,,,,,38542,,, +1450,USA,,KOBE,,Las Cruces (NM),32.301944,-106.802222,,1,,8613,307,142,,,,,,39048,,, +1450,USA,,KZNU,,St. George (UT),37.038056,-113.636667,,1,,8530,315,142,,,,,,39900,,, +1450,USA,en,KWES,,Ruidoso (NM),33.326111,-105.670556,,0.91,,8459,307,142,,,,,,20000059,,, +1450,CLM,,HJHH,,Floridablanca (sat),7.066667,-73.066667,,1,,8670,266,143,,,,,,37470,,, +1450,MEX,es,XEJM-AM La Caliente,,Monterrey (nvl),25.655778,-100.2552,,1,,8835,299,143,,,,,,44215,,, +1450,MEX,es,XERDO-AM,,Valle Hermoso (tam),25.750556,-97.806556,,1,,8679,297,143,,,,,,44964,,, +1450,USA,,KDAP,,Douglas (AZ),31.355,-109.551667,,1,,8848,309,143,,,,,,38237,,, +1450,USA,,KEST,,San Francisco (CA),37.760278,-122.382222,,1,,8860,321,143,,,,99977,,38344,,, +1450,USA,,KNOT,,Prescott (AZ),34.545,-112.446111,,1,,8703,313,143,,,,16,,39009,,, +1450,USA,,KQTE,,Helendale (CA),34.740556,-117.363889,,1,,8925,316,143,,,,,,20016092,,, +1450,USA,,KSKE,,Buena Vista (CO),38.818611,-106.159444,,0.25,,7992,311,143,,,,,,39372,,, +1450,USA,,KTIP,,Porterville (CA),36.095556,-119.052778,,1,,8874,318,143,,,,,,39489,,, +1450,USA,,KVML,,Sonora (CA),38.008333,-120.3625,,0.94,,8749,320,143,,,,9939,,39641,,, +1450,USA,,KVSL,,Show Low (AZ),34.211111,-110.005556,,0.95,,8609,311,143,,,,,,39670,,, +1450,USA,es,KTZR,i,Tucson (AZ),32.201111,-110.946667,,1,,8843,310,143,,,,,,39706,,, +1450,B,pt,ZYH900 Rdio Boa Esperana,,So Joo dos Patos (MA),-6.497778,-43.708056,,0.25,,8053,233,144,,,,,,36902354,,, +1450,CAN,en,CBKA,,Stewart (BC),55.942778,-129.993333,,0.04,,7353,335,144,,,,,,20109206,,, +1450,CAN,en,CIFL,,Fraser Lake (BC),54.054444,-124.848611,,0.05,,7378,331,144,,,,,,20109203,,, +1450,CLM,,HJNE,,Villamaria (cal),5.066667,-75.516667,,1,,9012,267,144,,,,,,37583,,, +1450,CLM,es,HJE20,,Urrao (ant),6.316667,-76.133333,,1,,8945,268,144,,,,,,35901836,,, +1450,GTM,,TGLG R Epoca,,Ciudad de Guatemala (gut),14.616667,-90.466667,,1,,9190,284,144,,,,,,40505,,, +1450,HND,,HRBR,,Santa Rosa de Copan (cop),15.05,-88.716667,,1,,9036,283,144,,,,,,37742,,, +1450,HND,,HRXZ3,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37880,,, +1450,MEX,es,XEBP-AM Bonita,,Gmez Palacio (dur),25.55585,-103.475483,,1,,9035,301,144,,,,,,44336,,, +1450,MEX,es,XECM-AM Bonita,,Ciudad Mante (tam),22.815,-98.945833,,1,,9009,296,144,,,,,,43853,,, +1450,USA,,KPTR,,Palm Springs (CA),33.801944,-116.462222,,0.96,,8971,315,144,,,,,,38457,,, +1450,USA,,KVEN,,Ventura (CA),34.260833,-119.241111,,1,,9058,317,144,,,,,,39620,,, +1450,USA,en,KFSD r:KSPA 1510 Ontario CA,,Escondido (CA),33.117222,-117.119167,,1,,9067,315,144,,,,,,38431,,, +1450,B,pt,ZYJ828 Rdio Belos Montes,,Seara (SC),-27.158333,-52.300556,,2.5,,10495,230,145,,,,,,36902369,,, +1450,B,pt,ZYJ932 Rdio Abais,,Estncia/Rua Frei Damio (SE),-11.233333,-37.418333,,0.25,,8194,225,145,,,,,,36902365,,, +1450,MEX,es,XECU-AM La Rancherita,,Los Mochis (sin),25.762367,-109.000283,,1,,9333,305,145,,,,,,43883,,, +1450,MEX,es,XENA-AM R Capital,,Quertaro (que),20.598611,-100.438889,,1,,9299,296,145,,,,,,44433,,, +1450,MEX,es,XERNB-AM R Impacto,,Sahuayo de Morelos (mic),20.066667,-102.716667,,1,,9486,297,145,,,,,,44048,,, +1450,MEX,es,XERY-AM,,Arcelia (gue),18.3266,-100.287003,,1,,9493,294,145,,,,,,44723,,, +1450,ARG,,R Las Cuarenta,,San Juan (sj),-31.516667,-68.516667,,5,,11792,239,146,,,,,,51875,,, +1450,B,pt,ZYI908 Rdio Cultura do Gurguia,,Bom Jesus (PI),-9.077778,-44.376667,,0.25,,8339,232,146,,,,,,36902364,,, +1450,B,pt,ZYJ674 Rdio Vilhena AM,,Vilhena (RO),-12.749392,-60.1207,,1,,9597,244,146,,0900-2400,1234567,,,36902349,,, +1450,EQA,,HCRI7,,Interoceanic (nap),-0.266667,-77.766667,,1,,9634,265,146,,,,,,37088,,, +1450,EQA,,HCSC1,,Sensacion (pic),-0.033333,-78.1,,1,,9636,266,146,,,,,,37128,,, +1450,USA,,KOBO,,Yuba City (CA),39.106111,-121.655278,,0.5,,8699,321,146,,,,16,,39049,,, +1450,B,pt,ZYI417 Rdio Difusora Rio Brilhante,,Rio Brilhante (MS),-21.788592,-54.536683,,1,,10109,234,147,,,,,,36902376,,, +1450,BOL,,R Amazonia,,Cobija (pdo),-11.033333,-68.733333,,1,,9985,252,147,,,,,,52047,,, +1450,CAN,en,CBKS,,Cache Creek (BC),50.811667,-121.327778,,0.04,,7564,327,147,,,,,,20109197,,, +1450,EQA,,HCDR2,,Minutera (gua),-2.683333,-79.933333,,1,,9994,265,147,,,,,,36906,,, +1450,EQA,,HCSE2,,S Elena (gua),-2.216667,-80.866667,,1,,10016,266,147,,,,,,37130,,, +1450,MEX,es,XEDJ-AM R Clave,,Magdalena de Kino (son),30.639056,-110.954592,,0.5,,8988,309,147,,,,,,43910,,, +1450,B,pt,ZYI208 Sim AM r:Tupi 1280,,Guarapari (ES),-20.652672,-40.520264,,0.5,,9279,223,148,,,,50,,36902375,,, +1450,B,pt,ZYI559 Rdio Juru,,So Flix do Xingu (PA),-6.636111,-51.983333,,0.25,,8539,240,148,,,,,,36902374,,, +1450,B,pt,ZYK591 RBN-Rdio Boa Nova,,Guarulhos/Av Andr Lus (SP),-23.437706,-46.543889,,0.7,,9845,227,148,,,,,,36902363,,, +1450,PRG,,ZP29,,Vallemi (cnc),-22.247778,-57.914444,,1,,10342,237,148,,,,,,45524,,, +1450,URG,,CX46 R America,,Montevideo (mo),-34.85,-56.366667,,2.5,,11423,228,148,,0900-0630,1234567,,,36820,,, +1450,BOL,,CP62 R Em. Bolivia,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,0900-0130,1234567,,,36708,,, +1450,BOL,,R Amanecer,,Huari (oru),-19,-66.8,,1,,10577,245,149,,,,,,52046,,, +1450,MEX,es,XEARE-AM,,Ojinaga (chi),29.533889,-104.461111,,0.25,,8733,304,149,,,,,,43730,,, +1450,MEX,es,XEPNO-AM Aro,,Santiago Pinotepa Nacional (oax),16.313056,-98.034167,,0.4,,9532,291,149,,,,,,44565,,, +1450,B,pt,ZYJ503 Rdio Feliz,,Santo Antnio de Pdua (RJ),-21.552192,-42.172778,,0.25,,9446,224,151,,,,,,36902356,,, +1450,B,pt,ZYL312 Rdio Diamante de Coromandel,,Coromandel (MG),-18.456633,-47.207692,,0.25,,9397,230,151,,,,,,36902368,,, +1450,BOL,,CP262 R Verde y Blanco,,Santa Cruz (scz),-17.766667,-63.166667,,0.5,,10242,243,151,,1000-0700,1234567,,,36645,,, +1450,ARG,,R Presencia,,Martinez (ba),-34.483333,-58.5,,1,,11500,230,152,,,,,,51876,,, +1450,ARG,es,R Banderas,,Moreno (ba),-34.633333,-58.791667,,1,,11529,230,152,,,,,,33000093,,, +1450,B,,ZYL270,,Ouro Fino (MG),-22.266667,-46.366667,,0.25,,9722,228,152,,,,,,46697,,, +1450,B,pt,ZYJ480 Rdio do Comercio,,Barra Mansa/Fazenda Boa Vista (RJ),-22.563889,-44.116667,,0.25,,9640,226,152,,,,,,36902366,,, +1450,B,pt,ZYK526 Rdio Cultura 1450,,Ituverava (SP),-20.342942,-47.769356,,0.25,,9608,230,152,,,,,,36902370,,, +1450,B,pt,ZYK587 RDG-Rdio Difusora Guararapes,,Guararapes (SP),-21.2453,-50.617936,,0.25,,9845,231,152,,,,,,36902348,,, +1450,B,pt,ZYK657 Rdio So Carlos,,So Carlos/Chcara So Pedro (SP),-22.016667,-47.9,,0.25,,9776,229,152,,,,,,36902372,,, +1450,B,,ZYJ225,,Telmaco Borba (PR),-24.316667,-50.616667,,0.25,,10137,230,153,,,,,,45952,,, +1450,B,,ZYJ293,,Irati (PR),-25.433333,-50.616667,,0.25,,10244,229,154,,,,,,46016,,, +1450,B,pt,ZYJ301 Rdio Difusora Ubiratanense,,Ubirat (PR),-24.553056,-52.993333,,0.25,,10285,232,154,,,,,,36902351,,, +1450,B,pt,ZYJ317 Rdio Rainha do Oeste,,Altnia (PR),-23.870717,-53.875031,,0.25,,10269,233,154,,,,,,36902371,,, +1450,B,pt,ZYJ802 Rdio So Bento AM,,So Bento do Sul (SC),-26.216667,-49.416667,,0.25,,10257,228,154,,,,,,36902379,,, +1450,CHL,,CB145 R Universidad Tecnica Federico Santa Maria,,Valparaso (VS),-33.033333,-71.5,,1,,12099,240,154,,1100-0300,1234567,,,35738,,, +1450,CHL,,CC145 R Libertad,,Curic (ML),-35.066667,-71.25,,1,,12258,238,154,,1000-0400,1234567,,,35818,,, +1450,B,pt,ZYJ822 Rdio Hulha Negra,,Cricima (SC),-28.695556,-49.325,,0.25,,10490,227,155,,,,,,36902378,,, +1450,B,pt,ZYK338 Rdio Cultura,,Arvorezinha (RS),-28.858056,-52.183889,,0.25,,10650,229,155,,,,,,36902361,,, +1450,B,pt,ZYK346 Rdio Cassino AM,,Rio Grande (RS),-32.03,-52.09,,0.25,,10944,227,156,,,,,,36902367,,, +1450,CHL,,CD145 R Santa Maria de Guadalupe,,Puerto Varas (LL),-41.3,-73.016667,,1,,12883,235,157,,0000-2400,1234567,,,51956,,, +1450,URG,,CW145 R Arapey,,Salto (sa),-31.516667,-57.916667,,0.25,,11198,231,157,,0000-2400,1234567,,,36752,,, +1455,BOL,,R Magnal,,Capinota (cbb),-17.716667,-66.266667,,0.5,,10428,246,151,,1000-1800,......7,,,52048,,, +1455,BOL,,R Magnal,,Capinota (cbb),-17.716667,-66.266667,,0.5,,10428,246,151,,1600-2400,123456,,,52048,,, +1458,G,,14 58 AM,,Brookmans Park/4 wire T aerial (EN-HTS),51.727778,-0.176389,,130,,454,267,40,,0000-2400,1234567,0,,1477,,, +1458,ALB,bg,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1700-1800,1234567,636,,1473,,, +1458,ALB,cs,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,2230-2330,1234567,636,,1473,,, +1458,ALB,el,R Tirana,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1645-1700,123456,636,,1473,,, +1458,ALB,hu,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,2000-2100,1234567,636,,1473,,, +1458,ALB,it,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1800-1900,1234567,636,,1473,,, +1458,ALB,pl,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,2130-2230,1234567,636,,1473,,, +1458,ALB,sq,R Tirana,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1500-1630,1234567,636,,1473,,, +1458,ALB,sr,R Tirana,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,2115-2130,123456,636,,1473,,, +1458,ALB,tu,R Tirana,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1930-2000,123456,636,,1473,,, +1458,G,,BBC Asian Network,,Birmingham/Langley Mill-A (EN-WMD),52.568333,-1.764889,,5,220,557,278,56,,0000-2400,1234567,,,1478,,, +1458,G,en,Gold,,Ashton Moss/Arqiva (EN-GTM),53.491111,-2.115,,5,,593,288,56,,0000-2400,1234567,48,,1479,,, +1458,ROU,ro,SRR R Romnia Actualităţi,,Constanţa/Techirghiol (CT),44.089806,28.6035,,50,,1863,110,59,,0000-2400,1234567,998,,1482,,, +1458,G,en,BBC R Newcastle,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,2,,613,304,60,,0000-2400,1234567,0,,1475,,, +1458,G,en,BBC R 5 Live,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,2,,718,259,61,,0000-0400,12345..,,,1476,,, +1458,G,en,BBC R 5 Live,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,2,,718,259,61,,0000-0500,.....67,,,1476,,, +1458,G,en,BBC R Devon,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,2,,718,259,61,,0400-2400,12345..,,,1476,,, +1458,G,en,BBC R Devon,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,2,,718,259,61,,0500-2400,.....67,,,1476,,, +1458,G,en,BBC R 5 Live,,Whitehaven (EN-CUM),54.539583,-3.586472,,0.5,,716,296,67,,0000-0600,1234567,2,,1474,,, +1458,G,en,BBC R Cumbria,,Whitehaven (EN-CUM),54.539583,-3.586472,,0.5,,716,296,67,,0600-2400,1234567,2,,1474,,, +1458,GIB,en,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,0000-2400,......7,,,1480,,, +1458,GIB,en,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,1400-2400,.....6.,,,1480,,, +1458,GIB,en,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,1500-1300,12345..,,,1480,,, +1458,GIB,es,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,1300-1400,.....6.,,,1480,,, +1458,GIB,es,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,1300-1500,12345..,,,1480,,, +1458,ISR,he,IBA Reshet Aleph (A),,She'ar-Yeshuv (hzf),33.216111,35.644444,,10,,3144,120,78,,0000-2400,1234567,,,4300001,,, +1458,RUS,ru,R Rossii,,Kudymkar/Egva (PR),59.113056,54.7675,,7,,3061,56,79,,2300-1900,1234567,,,1483,,, +1458,ISR,he,IBA Reshet Aleph (A),,Eilat (hdm),29.556056,34.964317,,10,,3430,126,81,,0000-2400,1234567,,,1481,,, +1458,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Ghayen=Qaen (skh),33.745389,59.161972,,10,,4629,95,93,,,,1,,1815,,, +1458,BHR,ar,R Bahrain,,Al-Manamah (mnh),26.216667,50.583333,,10,,4664,111,94,,0000-2400,1234567,,,10900017,,, +1458,IND,,AIR North,,Barmer (RJ),25.813011,71.405997,,20,,6086,92,105,,0025-0430,1234567,3,,50915,,, +1458,IND,,AIR North,,Barmer (RJ),25.813011,71.405997,,20,,6086,92,105,,0630-0930,1234567,3,,50915,,, +1458,IND,,AIR North,,Barmer (RJ),25.813011,71.405997,,20,,6086,92,105,,1130-1740,1234567,3,,50915,,, +1458,CHN,mn,Nei Menggu RGD Mongyol,,Hohhot/NMTS610 (NM),40.736944,111.475278,,150,,7427,53,110,,2150-1605,1234567,999,,50913,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,0020-0425,123456,,,50916,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,0020-0435,......7,,,50916,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,0630-0955,123456,,,50916,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,0630-1025,......7,,,50916,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,1130-1730,1234567,,,50916,,, +1458,AGL,pt,RNA Em. Prov. do Moxico,,Luena (mox),-11.783458,19.922178,,10,,7222,165,119,,0400-2300,1234567,61,,2368,,, +1458,CHN,mn,Nei Menggu RGD Mongyol,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,10,,7431,54,121,,,,,,36200662,,, +1458,CHN,,Zhengzhou RGD Yes R,,Zhengzhou (HE),34.7,113.7,,5,,8072,55,131,,,,,,50912,,, +1458,MYT,fr,Mayotte 1re,,Pamandzi (976),-12.76395,45.283089,,5,,8120,140,131,,1030-2400,1234567,9967,,2535,,, +1458,CHN,,Lianyungang RGD News,,Lianyungang (JS),34.666194,119.153972,,5,,8374,52,134,,2125-1515,1234567,,,50914,,, +1458,CHN,mn,Nei Menggu RGD Mongyol,,Tongliao/NMTS729 (NM),43.666667,122.216667,,1,,7719,44,134,,,,,,36200661,,, +1458,THA,th,Jor. Sor. 6,,Sisaket/1543-23 Si Sumang Rd (sis),15.101389,104.334167,,10,,9216,75,134,,2200-1502,1234567,,,50937,,, +1458,THA,th,Sor. Thor. Ror. 3,,Phuket (puk),7.868264,98.393083,,10,,9453,84,135,,0000-2400,1234567,,,50936,,, +1458,CHN,,Anshan RGD Traffic,,Anshan (LN),41.116667,122.966667,,1,,7985,45,137,,,,,,36200663,,, +1458,PHL,,DZJV-AM,,Calamba City (lag),14.208889,121.152222,,10,,10361,62,138,,????-0915,123456,,,50932,,, +1458,PHL,,DYZZ-AM Bantay Radyo,,Guihulngan (noc),10.116667,123.266667,,10,,10867,62,140,,????-1600,1234567,,,50933,,, +1458,KOR,,HLSD KBS 1 R,,Bonghwa (gsb),36.940556,128.918611,,1,,8656,44,143,,0000-2400,1234567,,,50929,,, +1458,KOR,,HLSH KBS 1 R,,Hamyang (gsn),35.516667,127.716667,,1,,8733,45,143,,0000-2400,1234567,,,50930,,, +1458,J,ja,IBS Ibaraki Hoso,,Sekijo (kan-iba),36.268333,139.954167,,1,,9204,36,144,,0000-2400,1234567,,,50926,,, +1458,J,ja,JOUO NBC Saga,,Saga (kyu-sag),33.251944,130.265833,,1,,9070,45,144,,0000-2400,1234567,,,50924,,, +1458,J,ja,JOWR RFC R.Fukushima,,Fukushima (toh-fuk),37.774444,140.491389,,1,,9076,35,144,,0000-2400,1234567,,,50922,,, +1458,J,ja,JOYL IBS Ibaraki Hoso,,Tsuchiura (kan-iba),36.073889,140.175,,1,,9233,36,144,,0000-2400,1234567,,,50927,,, +1458,J,ja,RCC,,Shobara (chg-hir),34.85,133.033333,,1,,9046,42,144,,,,,,31400104,,, +1458,INS,id,Ragesa 1458 AM,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,50910,,, +1458,INS,id,R Fajri,,Bandung (JB-ban),-6.95,107.566667,,1,,11378,85,152,,,,,,50917,,, +1458,INS,id,R Kareme Nuvula,,Parigi (ST-par),-0.833333,120.175,,1,,11676,71,153,,,,,,35400092,,, +1458,J,,JOSS Tokai Hoso,,Kamioka (chu-gif),36.316667,137.3,,0.1,,9090,38,154,,0000-2400,1234567,,,50923,,, +1458,J,,NBC Saga,,Arita (kyu-sag),33.183333,129.883333,,0.1,,9058,45,154,,0000-2400,1234567,,,50921,,, +1458,J,,SBC, Shinetsu Hoso,,Saku (chu-nag),36.283333,138.483333,,0.1,,9143,37,154,,0000-2400,1234567,,,50925,, +1458,J,ja,NBC Saga,,Karatsu (kyu-sag),33.466667,130,,0.1,,9037,45,154,,,,,,31400103,,, +1458,J,ja,RCC,,Miyoshi (chg-hir),34.8,132.85,,0.1,,9043,42,154,,,,,,31400106,,, +1458,J,ja,RCC,,Tojp,34.5,134,,0.1,,9124,41,154,,,,,,31400105,,, +1458,AUS,en,2PB ABC Newsr,,Newcastle/Beresfield (NSW),-32.800597,151.661661,,2,,16501,66,165,,0000-2400,1234567,,,50911,,, +1458,NZL,,RNZ National,,Westport/Cape Foulwind (WTC),-41.750167,171.466194,,2.5,,18404,50,171,,0000-2400,1234567,,,50931,,, +1460,USA,en,WOPG,i,Albany (NY),42.6225,-73.8025,,5,,5818,294,108,,,,9945,,41140,,, +1460,CAN,,CJOY,,Guelph (ON),43.485833,-80.245,,10,,6150,298,109,,,,999,,36204,,, +1460,USA,,WHIC,,Rochester (NY),43.083056,-77.647778,,5,,6023,296,110,,,,9993,,41637,,, +1460,USA,en,WGMF,,Tunkhannock (PA),41.562778,-75.969722,,5,,6030,294,110,,,,,,41302,,, +1460,USA,,WKDV,,Manassas (VA),38.75,-77.513611,,5,,6338,292,113,,,,2,,41988,,, +1460,USA,en,WTKT,i,Harrisburg (PA),40.308889,-76.936944,,4.2,,6184,293,113,,,,,,43159,,, +1460,USA,,WXBR,,Brockton (MA),42.048333,-71.055556,,1,,5686,291,114,,,,9757,,40834,,, +1460,USA,,WBRN,,Big Rapids (MI),43.663611,-85.481667,,2.5,,6447,301,118,,,,,,40903,,, +1460,USA,,WEKB,,Elkhorn City (KY),37.306944,-82.331389,,5,,6752,294,118,,,,,,40895,,, +1460,USA,,WEWO,,Laurinburg (NC),34.783333,-79.511111,,5,,6774,290,118,,,,,,41342,,, +1460,USA,,WKAM,,Goshen (IN),41.59,-85.815556,,2.5,,6627,300,119,,,,,,41950,,, +1460,USA,,KKAQ,,Thief River Fall (MN),48.123611,-96.141944,,2.5,,6683,311,120,,,,,,38704,,, +1460,USA,,KLTC,,Dickinson (ND),46.848333,-102.830278,,5,,7124,314,121,,,,999,,38846,,, +1460,USA,,WIFI,,Florence (NJ),40.081389,-74.794722,,0.5,,6066,292,121,,,,,,41737,,, +1460,USA,en,KXNO,,Des Moines (IA),41.645833,-93.536667,,5,,7068,305,121,,,,1,,39808,,, +1460,USA,,WKHZ,,Easton (MD),38.770278,-76.081944,,0.5,,6246,291,122,,,,,,41297,,, +1460,USA,,WPON,,Walled Lake (MI),42.543889,-83.499444,,0.76,,6416,299,122,,,,,,42723,,, +1460,USA,,WABQ,,Painesville (OH),41.738889,-81.235833,,0.5,,6341,297,123,,,,,,40633,,, +1460,USA,,WBNS,,Columbus (OH),39.951667,-82.906389,,1,,6580,297,123,,,,,,40887,,, +1460,USA,en,WQOP,,Jacksonville (FL),30.327778,-81.746944,,5,,7277,288,123,,,,,,43583,,, +1460,USA,,WBOG,,Tomah (WI),43.968611,-90.513889,,1,,6711,305,124,,,,,,40890,,, +1460,USA,,WMBA,,Ambridge (PA),40.585556,-80.203056,,0.5,,6366,296,124,,,,,,42277,,, +1460,USA,,WVOX,,New Rochelle (NY),40.928333,-73.775,,0.122,,5939,292,125,,,,,,43338,,, +1460,USA,,KDMA,,Montevideo (MN),44.934722,-95.7475,,1,,6920,309,126,,,,,,38281,,, +1460,USA,,WBCU,,Union (SC),34.719444,-81.662222,,1,,6916,292,126,,,,,,40827,,, +1460,USA,,WRAD,,Radford (VA),37.143056,-80.577222,,0.5,,6655,293,127,,,,,,42810,,, +1460,USA,,WNPL,,Golden Gate (FL),26.257222,-81.675833,,2,,7610,285,130,,,,9999,,20000012,,, +1460,USA,es,WJTI,,Racine (WI),43.008889,-88.035,,0.24,,6646,302,130,,,,,,40867,,, +1460,USA,en,KUTI,,Yakima (WA),46.558056,-120.450556,,3.7,,7934,325,131,,,,7,,39597,,, +1460,USA,,WRKB,,Kannapolis (NC),35.487222,-80.605,,0.194,,6787,292,132,,,,,,42865,,, +1460,USA,en,KARR,,Kirkland (WA),47.673056,-122.168889,,2.5,,7895,326,132,,,,1,,37966,,, +1460,B,pt,ZYK707 Rdio Universal,,So Roque/Morro do Itapecu (SP),-23.517794,-47.0324,,25,,9877,227,133,,,,,,36902383,,, +1460,PTR,,WLRP,,San Sebastian (PR),18.347222,-66.998889,,0.5,,7282,269,133,,0900-0400,1234567,,,42226,,, +1460,USA,,KION,,Salinas (CA),36.733056,-121.592222,,10,,8926,320,133,,,,95,,37906,,, +1460,USA,,WELZ,,Belzoni (MS),33.173333,-90.480833,,1,,7592,297,133,,,,,,41295,,, +1460,USA,,WMCJ,,Cullman (AL),34.178889,-86.866111,,0.5,,7286,295,133,,,,,,42290,,, +1460,VEN,,YVRJ R Jardin,,Bocono (tjl),9.25,-70.25,,5,,8287,265,133,,,,,,45444,,, +1460,CUB,,?,,Mayar Arriba/CTOM2 (sc),20.410894,-75.526333,,1,,7689,277,134,,,,,,31600128,,, +1460,USA,,WHBK,,Marshall (NC),35.801111,-82.68,,0.139,,6893,293,134,,,,,,41607,,, +1460,B,pt,ZYH300 Rdio Clube de Parintins,,Parintins (AM),-2.640583,-56.757356,,5,,8460,247,135,,,,,,36902386,,, +1460,CLM,es,HJVH,,Barranquilla (atl),10.966667,-74.8,,5,,8449,270,135,,,,,,35901853,,, +1460,PTR,,WRRE,,Juncos (PR),18.215,-65.909167,,0.27,,7219,268,135,,,,,,42912,,, +1460,USA,,KHOJ,,St. Charles (MO),38.834722,-90.468889,,0.21,,7122,301,135,,,,,,20016003,,, +1460,USA,,WXEM,,Buford (GA),34.120833,-83.976389,,0.193,,7110,293,135,,,,,,43461,,, +1460,B,pt,ZYH917 Rdio Vanguarda de Santa Luzia,,Santa Luzia (MA),-3.960556,-45.668056,,1,,7919,236,136,,,,,,36902397,,, +1460,USA,,WRVK,,Mount Vernon (KY),37.396944,-84.329167,,0.093,,6869,296,136,,,,,,42935,,, +1460,USA,en,WJCP,,North Vernon (IN),38.996111,-85.650556,,0.092,,6822,298,136,,,,,,42530,,, +1460,CLM,es,HJJH,,Armenia (qui),4.5,-75.716667,,5,,9075,267,137,,,,,,37508,,, +1460,DOM,,HIAN R Renacimiento,,Hato Mayor del Rey (hmr),18.75,-69.25,,0.25,,7402,271,137,,,,,,37206,,, +1460,USA,,WEEN,,Lafayette (TN),36.535,-86.0075,,0.119,,7041,296,137,,,,,,41258,,, +1460,USA,,WXRQ,,Mount Pleasant (TN),35.5225,-87.192778,,0.169,,7196,296,137,,,,,,43492,,, +1460,CLM,es,HJZU,,Pasto (nar),1.166667,-77.266667,,5,,9474,266,138,,,,,,37667,,, +1460,USA,,KZUE,,El Reno (OK),35.508333,-97.9,,0.5,,7832,303,138,,,,,,39913,,, +1460,USA,,WBUC,,Buckhannon (WV),38.974444,-80.207222,,0.024,,6490,294,138,,,,,,40924,,, +1460,USA,,WROY,,Carmi (IL),38.081667,-88.201111,,0.085,,7049,299,138,,,,,,42906,,, +1460,USA,sp,WKJR,,Rantoul (IL),40.310278,-88.215,,0.065,,6870,300,138,,,,,,41854,,, +1460,B,pt,ZYH595 Rdio Ressurreio,,Massap (CE),-3.597667,-40.347344,,0.25,,7590,232,139,,,,,,36902389,,, +1460,B,pt,ZYH616 Rdio Uirapuru,,Morada Nova (CE),-5.112361,-38.366753,,0.25,,7635,229,139,,,,70,,36902381,,, +1460,B,pt,ZYJ615 Rdio Agreste,,Santo Antnio (RN),-6.307778,-35.477778,,0.25,,7608,226,139,,,,992,,36902384,,, +1460,EQA,,HCIC6,,Latacunga (cot),-0.916667,-78.566667,,5,,9745,265,139,,,,,,36970,,, +1460,HTI,,Voix du Nord,,Cap-Hatien (nrd),19.75,-72.166667,,0.2,,7516,274,139,,,,,,35637,,, +1460,USA,,KDWA,,Hastings (MN),44.737222,-92.828333,,0.041,,6778,307,139,,,,,,38299,,, +1460,USA,,KZNT,,Colorado Springs (CO),38.826111,-104.741389,,0.54,,7918,310,139,,,,,,39899,,, +1460,USA,,WHAL,,Phenix City/Columbus (AL),32.432778,-84.950556,,0.14,,7309,292,139,,,,,,41594,,, +1460,USA,en,KCLE,,Burleson (TX),32.578611,-97.280556,,0.7,,8050,301,139,,,,,,39475,,, +1460,EQA,,HCCL3,,Cariamanga (loj),-4.35,-79.6,,5,,10117,264,140,,,,,,36879,,, +1460,USA,,WJAK,,Jackson (TN),35.643611,-88.773333,,0.105,,7282,297,140,,,,,,41837,,, +1460,USA,,WZEP,,Defuniak Springs (FL),30.729167,-86.117778,,0.186,,7524,292,140,,,,,,43570,,, +1460,USA,es,WQXM,,Bartow (FL),27.909444,-81.858056,,0.155,,7484,287,140,,,,,,42805,,, +1460,B,pt,ZYH536 Rdio Alvorada,,Cruz das Almas (BA),-12.6567,-39.127483,,1,,8419,226,141,,,,,,36902380,,, +1460,B,pt,ZYJ308 Rdio Ampre AM,,Ampre (PR),-25.933333,-53.483333,,5,,10442,231,141,,,,,,36902395,,, +1460,CHL,,CA146 R Antofagasta,,Antofagasta (AN),-23.466667,-70.366667,,10,,11196,245,141,,1130-0300,1234567,,,35695,,, +1460,CTR,,TILX R Columbia,,Limon (lmn),10,-83.016667,,2,,9093,276,141,,,,,,40591,,, +1460,USA,,KTKC,,Springhill (LA),33.007778,-93.478611,,0.22,,7787,298,141,,,,,,38095,,, +1460,USA,,WDOG,,Allendale (SC),33.223611,-81.359722,,0.045,,7017,290,141,,,,,,41196,,, +1460,USA,,WXOK,,Baton Rouge (LA),30.473611,-91.226111,,0.29,,7866,295,141,,,,,,43485,,, +1460,B,pt,ZYH253 Rdio Canavieiro,,Unio dos Palmares (AL),-9.15,-36.033333,,0.25,,7919,225,142,,,,,,45580,,, +1460,B,pt,ZYH472 Rdio Povo,,Jequi (BA),-13.836967,-40.070764,,1,,8582,226,142,,,,,,36902402,,, +1460,CLM,,HJMY,,Villa del Rosario (nsa),7.811111,-72.473611,,1,,8565,266,142,,,,,,37578,,, +1460,CLM,es,HJAL,,Sincelejo (suc),9.3,-75.4,,1,,8634,269,142,,,,,,37328,,, +1460,EQA,,HCC15,,Biblian (can),-2.683333,-78.9,,3,,9923,265,142,,,,,,36873,,, +1460,HND,,HRQX,,Comayagua (cmy),14.316667,-87.5,,1.5,,9019,282,142,,,,,,37832,,, +1460,USA,,WIXN,,Dixon (IL),41.827222,-89.486389,,0.023,,6823,302,142,,,,,,41826,,, +1460,B,pt,ZYI903 Rdio Cultura,,Amarante (PI),-6.232928,-42.854861,,0.25,,7981,232,143,,,,,,36902392,,, +1460,CLM,es,HJE26,,La Ceja (ant),6.033333,-75.433333,,1,,8922,267,143,,,,,,35901855,,, +1460,CLM,es,HJMN,,Amalfi (ant),8.116667,-76.616667,,1,,8821,270,143,,,,,,37571,,, +1460,CLM,es,HJTN,,Turbo (ant),8.1,-76.733333,,1,,8830,270,143,,,,,,35901854,,, +1460,HND,,HRIC,,Puerto Cortes (cor),15.833333,-87.916667,,1,,8914,283,143,,,,,,37769,,, +1460,CLM,,HJTF R Maria,,Turbo (ant),6.083333,-76.616667,,1,,8998,268,144,,,,48,,37642,,, +1460,CLM,es,HJJW R Nuevo Continente,,Bogot D. C. (bdc),4.616667,-74.066667,,1,,8953,265,144,,0000-2400,1234567,998,,37517,,, +1460,GTM,,TGRN R Petn,,Flores (pet),16.916667,-89.9,,1,,8951,285,144,,1100-0500,1234567,,,40532,,, +1460,HND,,HRMS2,,Campamento (ola),14.433333,-86.65,,1,,8952,281,144,,,,,,37801,,, +1460,MEX,es,XECB-AM R Ranchito,,San Luis Ro Colorado (son),32.460878,-114.817389,,1,,9017,313,144,,,,,,43821,,, +1460,USA,,KCNR,,Shasta (CA),40.553889,-122.381389,,0.75,,8589,323,144,,,,,,38186,,, +1460,USA,,KXPN,,Kearney (NE),40.7125,-99.170833,,0.056,,7457,308,144,,,,,,39817,,, +1460,USA,en,KKOY,,Chanute (KS),37.688333,-95.47,,0.057,,7507,303,144,,,,,,38748,,, +1460,B,pt,ZYL201 Rdio Cultura de Porto Novo,,Alm Paraba/Sitio Santa Monica (MG),-21.880278,-42.704444,,1,,9504,225,145,,,,,,36902399,,, +1460,CLM,es,HJFL,,San Agustin (hui),1.866667,-76.283333,,1,,9345,265,145,,,,,,37436,,, +1460,PRU,,OAX5K R Internacional,,Pisco (ica),-13.666667,-76.166667,,2.5,,10706,256,145,,,,,,40321,,, +1460,USA,,KBZO,,Lubbock (TX),33.547222,-101.823056,,0.243,,8226,305,145,,,,,,38115,,, +1460,USA,,KENO,,Las Vegas (NV),36.190278,-115.176389,,0.62,,8683,315,145,,,,9931,,38331,,, +1460,B,pt,Rdio Globo,,Costa Rica (MS),-18.553883,-53.1333,,1,,9727,235,146,,,,4,,36902390,,, +1460,HWA,ko,KHRA,,Honolulu (HI),21.323889,-157.875556,,5,,11708,345,146,,,,0,,38559,,, +1460,MEX,es,XEGRA-AM Soy Guerrero,,Acapulco (gue),16.908889,-99.825833,,1,,9592,293,146,,,,,,44076,,, +1460,B,pt,ZYH523 Rdio Cano Nova,,Morro do Chapu (BA),-11.545278,-41.145,,0.25,,8410,228,147,,,,,,36901100,,, +1460,EQA,,HCMG5,,Giron (azu),-3.2,-79.116667,,1,,9984,265,147,,,,,,37025,,, +1460,PNR,es,HOD42 La Voz de Almirante,,Almirante (bct),9.283333,-82.416667,,0.5,,9114,275,147,,1400-0400,1234567,,,37710,,, +1460,USA,,KTYM,,Inglewood (CA),34.007222,-118.365,,0.5,,9042,316,147,,,,8,,39556,,, +1460,MEX,es,XEKC-AM Stereo Exitos,,Oaxaca (oax),17.061842,-96.733306,,0.5,,9382,291,148,,,,,,44247,,, +1460,PRU,,OAX1V LV de Chira,,Sullana (piu),-4.566667,-81.316667,,1,,10253,265,148,,,,,,40275,,, +1460,USA,,KBRZ,,Freeport (TX),29.564444,-95.701667,,0.125,,8217,298,148,,,,,,38094,,, +1460,USA,,KCWM,,Hondo (TX),29.361667,-99.128333,,0.226,,8440,300,148,,,,,,38228,,, +1460,B,pt,ZYK312 Rdio Colonial AM,,Trs de Maio (RS),-28.55,-49.133333,,1,,10466,227,149,,,,,,36902404,,, +1460,CLM,es,HKY73,,San Andrs (sat),6.816667,-72.85,,0.25,,8677,266,149,,,,,,35901841,,, +1460,PRU,,OAX7W R El Sol de los Andes,,Juliaca (pun),-15.816667,-70.016667,,1,,10495,250,149,,,,,,40352,,, +1460,PRU,,OBX6C R Bahia,,Mollendo (are),-17,-72,,1,,10727,251,149,,,,,,40407,,, +1460,ARG,,R Contacto,,Ituzaingo (cn),-27.566667,-56.666667,,1,,10766,233,150,,0000-2400,1234567,,,51878,,, +1460,B,pt,ZYL356 Rdio Buritis,,Buritis (MG),-15.638264,-46.42535,,0.25,,9083,231,150,,,,,,36902406,,, +1460,ARG,,LRK146 R 21,,Yerba Buena (tm),-26.816667,-65.316667,,1,,11188,240,151,,0000-2400,1234567,,,51880,,, +1460,B,,ZYI685,,Barra do Garas (MT),-15.866667,-52.25,,0.25,,9424,236,151,,,,,,45877,,, +1460,B,pt,ZYH766 Rdio Morrinhos,,Morrinhos (GO),-17.737328,-49.096178,,0.25,,9428,232,151,,,,,,36902405,,, +1460,B,pt,ZYL363 Rdio Sociedade Entre Rios,,Raul Soares/Serra Matipozinho (MG),-20.1,-42.466667,,0.25,,9317,225,151,,,,,,36902398,,, +1460,CLM,es,HKR44,,Victoria (cal),5.316667,-74.916667,,0.2,,8949,266,151,,,,,,35901852,,, +1460,EQA,,HCLD4,,Junin (man),-0.916667,-80.216667,,0.35,,9858,267,151,,,,,,37005,,, +1460,ARG,,R Almirante Brown,,San Jos (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51881,,, +1460,ARG,,R Luminemos el Mundo,,Ezeiza (ba),-34.85,-58.533333,,1,,11535,230,152,,,,,,51879,,, +1460,ARG,,R Nativa,,Claypole (ba),-34.8,-58.333333,,1,,11520,230,152,,,,,,51877,,, +1460,B,,ZYL333,,Paraguau (MG),-21.55,-45.716667,,0.25,,9620,227,152,,,,,,46759,,, +1460,B,pt,ZYK548 Rdio Clube Ararense,,Araras (SP),-22.359856,-47.345125,,0.25,,9781,228,152,,,,928,,36902385,,, +1460,B,pt,ZYK608 Rdio Cultura de Lorena,,Lorena (SP),-22.736403,-45.092067,,0.25,,9704,226,152,,,,85,,36902393,,, +1460,PRU,,OCY4I R Imperial,,Junn (jun),-12.183333,-75.166667,,0.5,,10509,256,152,,,,,,40442,,, +1460,URG,,CX146 R Carmelo,,Carmelo (co),-34,-58.283333,,1,,11445,230,152,,0900-0300,1234567,,,36792,,, +1460,B,pt,ZYJ204 Rdio Difusora AM,,Paranagu (PR),-25.5175,-48.535,,0.25,,10145,228,153,,,,,,36902401,,, +1460,B,pt,ZYJ251 Rdio Cultura de Apucarana,,Apucarana (PR),-23.523611,-51.450556,,0.25,,10106,231,153,,,,,,36902403,,, +1460,B,pt,ZYJ318 Guadalupe AM,,Loanda (PR),-22.9,-53.166667,,0.25,,10139,233,153,,,,,,36902382,,, +1460,B,,ZYJ748,,Curitibanos (SC),-27.266667,-50.566667,,0.25,,10416,228,154,,,,,,46161,,, +1460,B,pt,ZYJ228 Rdio Central do Paran,,Ponta Grossa (PR),-25.051667,-50.118056,,0.25,,10182,229,154,,,,,,36902400,,, +1460,B,pt,ZYJ297 Rdio Guara,,Guara (PR),-24.097222,-54.279444,,0.25,,10312,233,154,,,,,,36902396,,, +1460,B,pt,ZYJ756 Rdio Sentinela do Vale AM,,Gaspar (SC),-26.885556,-48.825,,0.25,,10291,227,154,,,,,,36902387,,, +1460,CHL,,CB146 R Yungay,,Santiago (RM),-33.566667,-70.766667,,1,,12101,239,154,,1100-0400,1234567,,,35739,,, +1460,B,pt,ZYK373 Rdio Campinas do Sul AM,,Campinas do Sul (RS),-27.718056,-52.615833,,0.25,,10564,230,155,,,,,,36902388,,, +1460,B,,ZYK316,,Uruguaiana (RS),-29.766667,-57.066667,,0.25,,10991,232,156,,,,,,46343,,, +1460,B,pt,ZYK214 Rdio Cultura AM,,Bag (RS),-31.316667,-54.1,,0.25,,10979,229,156,,,,,,36902394,,, +1460,B,pt,ZYK378 Rdio Mostardas,,Mostardas (RS),-31.091667,-50.910556,,0.25,,10797,227,156,,,,,,36902391,,, +1460,URG,,CV146 R Jose Batlle y Ordonez,,Jos Batlle y Ordoez (la),-33.467222,-55.15,,0.25,,11233,228,157,,1100-0300,1234567,,,36729,,, +1460,USA,,KCKX,,Stayton (OR),44.802778,-122.734167,,0.015,,8193,325,157,,,,,,38167,,, +1460,ARG,,LT29 R Venado Tuerto,,Venado Tuerto (sf),-33.766667,-61.966667,,0.25,,11621,233,158,,0930-0330,1234567,,,40181,,, +1460,ARG,,LU30 R Maipu,,Maipu (ba),-36.366667,-57.883333,,0.25,,11640,229,158,,0900-2400,1234567,,,40226,,, +1460,USA,,KRRS,,Santa Rosa (CA),38.370278,-122.7275,,0.033,,8816,322,158,,,,9912,,39291,,, +1460,USA,en,WPXG674,,Magalia/14211 Wycliff Way (CA),39.824722,-121.6075,,0.01,,8627,322,162,,,,,,20010693,,, +1460,ARG,es,LU34 R Pigue,,Pigue (ba),-37.666667,-62.383333,,0.1,,11991,231,164,,1000-0300,1234567,,,40229,,, +1461,BOL,,R LV del Pueblo de Dios,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,0900-0100,123456,,,52049,,, +1461,BOL,,R LV del Pueblo de Dios,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,1100-0100,......7,,,52049,,, +1467,F,ar,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2115-2300,...4...,9970,,1487,,, +1467,F,ar,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2130-2300,123.567,9970,,1487,,, +1467,F,cs,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2013-2030,.....6.,9970,,1487,,, +1467,F,cs,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2013-2045,12345.7,9970,,1487,,, +1467,F,en,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2300-2315,123456,9970,,1487,,, +1467,F,en,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2300-2345,......7,9970,,1487,,, +1467,F,fr,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2030-2100,.....6.,9970,,1487,,, +1467,F,kb,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2045-2115,12345..,9970,,1487,,, +1467,F,kb,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2045-2130,......7,9970,,1487,,, +1467,F,kb,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2100-2130,.....6.,9970,,1487,,, +1467,F,tz,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2115-2130,1.3....,9970,,1487,,, +1467,F,us,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2115-2130,....5..,9970,,1487,,, +1467,MCO,fr,R Maria,,Col de la Madone [F] (6),43.789317,7.418311,,50,,928,175,49,,0500-1900,1234567,1,,2500001,,, +1467,IRN,fa,IRIB R Qom,,Qom=Kum (qom),34.765931,50.882931,,100,,3992,101,77,,0000-2400,1234567,9800,,1816,,, +1467,KGZ,,TWR PANI,,Krasnaya Rechka (cuy),42.878467,74.995922,,500,210,5056,73,81,,,,995,,2140,,, +1467,ARS,ar,BSKSA Idha'atu-i Riyadh,,Hafar al-Batin=Hafrul Baten (shy),28.436153,46.067722,,50,,4188,113,82,,0000-2400,1234567,9994,,1486,,, +1467,IND,,AIR East,,Jeypore (OR),18.921111,82.563333,,100,,7421,89,111,,0025-0440,123456,997,,50947,,, +1467,IND,,AIR East,,Jeypore (OR),18.921111,82.563333,,100,,7421,89,111,,0025-0445,......7,997,,50947,,, +1467,IND,,AIR East,,Jeypore (OR),18.921111,82.563333,,100,,7421,89,111,,0700-0905,1234567,997,,50947,,, +1467,IND,,AIR East,,Jeypore (OR),18.921111,82.563333,,100,,7421,89,111,,1130-1742,1234567,997,,50947,,, +1467,THA,th,Sor. Wor. Sor.,,Pathum Thani/Khlong Ha (ptn),14.072333,100.71175,,100,270,9066,78,124,,2130-1700,1234567,995,,50966,,, +1467,CHN,zh,Baoding RGD,,Baoding (HB),38.85,115.55,,10,,7809,51,125,,2210-1500,1234567,,,50943,,, +1467,KOR,ko,HLKN KBS 1 R,,Mokpo/Yeongam (jen),34.7425,126.445278,,50,,8743,47,126,,0000-2400,1234567,999,,50962,,, +1467,CHN,zh,Fujian JGD Caifu Guangbo,,Zhangzhou/FJTS501 (FJ),24.5,117.666667,,50,,9211,59,127,,0000-2400,1234567,,,50944,,, +1467,CHN,zh,Shandong RGD Xinwen Pindao,,Dezhou (SD),37.4575,116.313333,,5,,7973,52,130,,2125-1700,1234567,,,50942,,, +1467,J,,NHK R 2,,Wakkanai (hok),45.375,141.711667,,1,,8365,31,141,,2030-1500,1.....7,,,50957,,, +1467,J,,NHK R 2,,Wakkanai (hok),45.375,141.711667,,1,,8365,31,141,,2030-1635,.2345..,,,50957,,, +1467,J,,NHK R 2,,Wakkanai (hok),45.375,141.711667,,1,,8365,31,141,,2030-1640,.....6.,,,50957,,, +1467,CHN,,Jingdezhen RGD,,Jingdezhen (JX),29.269111,117.176278,,1,,8751,56,143,,2200-1600,1234567,,,50945,,, +1467,J,ja,JOVB NHK2,,Hakodate (hok),41.811906,140.754967,,1,,8684,33,143,,2030-1500,1.....7,,,50951,,, +1467,J,ja,JOVB NHK2,,Hakodate (hok),41.811906,140.754967,,1,,8684,33,143,,2030-1635,.2345..,,,50951,,, +1467,J,ja,JOVB NHK2,,Hakodate (hok),41.811906,140.754967,,1,,8684,33,143,,2030-1640,.....6.,,,50951,,, +1467,J,,JOID NHK2,,Oita (kyu-oit),33.248056,131.575,,1,,9133,44,144,,2030-1500,1.....7,,,50956,,, +1467,J,,JOID NHK2,,Oita (kyu-oit),33.248056,131.575,,1,,9133,44,144,,2030-1635,.2345..,,,50956,,, +1467,J,,JOID NHK2,,Oita (kyu-oit),33.248056,131.575,,1,,9133,44,144,,2030-1640,.....6.,,,50956,,, +1467,J,ja,JONB NHK2,,Nagano (chu-nag),36.671944,138.256944,,1,,9095,37,144,,2030-1500,1.....7,,,50954,,, +1467,J,ja,JONB NHK2,,Nagano (chu-nag),36.671944,138.256944,,1,,9095,37,144,,2030-1635,.2345..,,,50954,,, +1467,J,ja,JONB NHK2,,Nagano (chu-nag),36.671944,138.256944,,1,,9095,37,144,,2030-1640,.....6.,,,50954,,, +1467,PHL,,DXVP-AM R Veritas,,Zamboanga City/Bolong (zds),7.1,122.233333,,5,,11082,65,144,,2100-1300,1234567,,,50963,,, +1467,J,ja,JOMC NHK2,,Miyazaki (kyu-miy),31.952778,131.44,,1,,9251,44,145,,2030-1500,1.....7,,,50953,,, +1467,J,ja,JOMC NHK2,,Miyazaki (kyu-miy),31.952778,131.44,,1,,9251,44,145,,2030-1635,.2345..,,,50953,,, +1467,J,ja,JOMC NHK2,,Miyazaki (kyu-miy),31.952778,131.44,,1,,9251,44,145,,2030-1640,.....6.,,,50953,,, +1467,J,ja,JORC NHK2,,Hirosaki (toh-aom),40.619444,140.452778,,0.5,,8792,34,146,,2030-1500,1.....7,9990,,50952,,, +1467,J,ja,JORC NHK2,,Hirosaki (toh-aom),40.619444,140.452778,,0.5,,8792,34,146,,2030-1635,.2345..,9990,,50952,,, +1467,J,ja,JORC NHK2,,Hirosaki (toh-aom),40.619444,140.452778,,0.5,,8792,34,146,,2030-1640,.....6.,9990,,50952,,, +1467,J,,NHK R 2,,Akune (kyu-kag),32.023997,130.202778,,0.1,,9184,45,154,,2030-1500,1.....7,,,50949,,, +1467,J,,NHK R 2,,Akune (kyu-kag),32.023997,130.202778,,0.1,,9184,45,154,,2030-1635,.2345..,,,50949,,, +1467,J,,NHK R 2,,Akune (kyu-kag),32.023997,130.202778,,0.1,,9184,45,154,,2030-1640,.....6.,,,50949,,, +1467,J,,NHK R 2,,Nanao (chu-ish),37.033333,137,,0.1,,9007,38,154,,2030-1500,1.....7,,,50955,,, +1467,J,,NHK R 2,,Nanao (chu-ish),37.033333,137,,0.1,,9007,38,154,,2030-1635,.2345..,,,50955,,, +1467,J,,NHK R 2,,Nanao (chu-ish),37.033333,137,,0.1,,9007,38,154,,2030-1640,.....6.,,,50955,,, +1467,J,,NHK R 2,,Yusuhara (shi-koc),33.383333,132.933333,,0.1,,9183,43,154,,2030-1500,1.....7,,,50958,,, +1467,J,,NHK R 2,,Yusuhara (shi-koc),33.383333,132.933333,,0.1,,9183,43,154,,2030-1635,.2345..,,,50958,,, +1467,J,,NHK R 2,,Yusuhara (shi-koc),33.383333,132.933333,,0.1,,9183,43,154,,2030-1640,.....6.,,,50958,,, +1467,J,ja,NHK R 2,,Fukuyamakinosyo (chg-hir),34.499722,133.35,,0.1,,9094,42,154,,2030-1500,1.....7,,,50950,,, +1467,J,ja,NHK R 2,,Fukuyamakinosyo (chg-hir),34.499722,133.35,,0.1,,9094,42,154,,2030-1635,.2345..,,,50950,,, +1467,J,ja,NHK R 2,,Fukuyamakinosyo (chg-hir),34.499722,133.35,,0.1,,9094,42,154,,2030-1640,.....6.,,,50950,,, +1467,AUS,en,3ML Easymix,,Mildura/Flora Avenue (VIC),-34.178681,142.122267,,2,,15991,78,164,,0000-2400,1234567,,,50941,,, +1470,USA,en,WLAM r:WLVP,,Lewiston (ME),44.063056,-70.25,,5,,5494,293,105,,,,4,,42120,,, +1470,USA,,WAZN,,Marlborough (MA),42.413611,-71.211111,,3.4,,5670,292,108,,,,,,40790,,, +1470,USA,en,WNYY,,Ithaca (NY),42.392222,-76.474722,,5,,6001,295,110,,,,45,,43157,,, +1470,USA,en,WMMW,,Meriden (CT),41.553889,-72.801944,,2.5,,5832,292,111,,,,,,42355,,, +1470,USA,en,WSAN,i,Allentown (PA),40.636111,-75.485,,5,,6068,293,111,,,,,,41952,,, +1470,USA,,WTZE,,Tazewell (VA),37.1325,-81.555833,,5,,6717,294,117,,,,,,43245,,, +1470,USA,,WWBG,,Greensboro (NC),36.150278,-79.913333,,5,,6691,292,117,,,,,,43357,,, +1470,CAN,xx,CJVB,,Vancouver (BC),49.193056,-123.022778,,50,,7781,328,118,,,,996,,36232,,, +1470,USA,es,KMNQ,,Brooklyn Park (MN),45.088056,-93.383056,,5,,6780,307,118,,,,999,,38782,,, +1470,USA,,WBKV,,West Bend (WI),43.370556,-88.166111,,2.5,,6625,303,119,,,,0,,40870,,, +1470,USA,,WMBD,,Peoria (IL),40.572778,-89.533333,,5,,6926,301,119,,,,996,,42278,,, +1470,USA,,WTTR,,Westminster (MD),39.576944,-77.0225,,1,,6244,293,119,,,,,,43228,,, +1470,USA,,WFNT,,Flint (MI),42.972778,-83.64,,1,,6392,300,121,,,,,,41418,,, +1470,USA,,WRGA,,Rome (GA),34.301389,-85.155278,,5,,7169,294,122,,,,10,,42842,,, +1470,USA,es,KWSL,,Sioux City (IA),42.411667,-96.425,,5,,7165,307,122,,,,993,,39755,,, +1470,USA,,WLOA,,Farrell (PA),41.199444,-80.522778,,0.5,,6339,296,123,,,,,,42199,,, +1470,USA,en,WLQR,,Toledo (OH),41.631667,-83.477222,,0.69,,6485,299,123,,,,,,42220,,, +1470,USA,,WCFJ,,Chicago Heights (IL),41.424722,-87.640833,,1,,6748,301,124,,,,,,40981,,, +1470,VEN,es,YVSY R Vibracin,,Carpano (suc),10.662492,-63.295294,,10,,7693,260,124,,,,994,,2124,,, +1470,PTR,,WKCK,,Orocovis (PR),18.256667,-66.416667,,2.5,,7250,268,126,,0900-0200,1234567,,,41974,,, +1470,USA,,KHND,,Harvey (ND),47.756389,-99.918333,,1,,6904,313,126,,,,,,38549,,, +1470,USA,,WVOL,,Berry Hill (TN),36.200278,-86.779722,,1,,7115,296,128,,,,,,43332,,, +1470,USA,,WXAG,,Athens (GA),33.987222,-83.338056,,1,,7081,292,128,,,,,,43452,,, +1470,USA,en,WPDM,,Potsdam (NY),44.643889,-75.058889,,0.044,,5752,296,128,,,,1,,42660,,, +1470,USA,en,WWNN,,Pompano Beach (FL),26.179444,-80.220833,,2.5,,7520,284,128,,,,998,,43413,,, +1470,VEN,es,YVJW Union R Cultural,,Valencia (cbb),10.081233,-68.005111,,10,,8062,264,128,,0000-2400,1234567,35,,45349,,, +1470,USA,,KWRD,,Henderson (TX),32.181944,-94.796944,,5,,7937,299,129,,,,,,39746,,, +1470,USA,,KAIR,,Atchison (KS),39.619167,-94.990833,,1,,7318,304,130,,,,,,37930,,, +1470,USA,,KMAL,,Malden (MO),36.552222,-89.978333,,1,,7280,299,130,,,,,,38874,,, +1470,DOM,,HIDE LV de la Alabanza,,San Francisco de Macors (dua),19.266667,-70.25,,1,,7426,272,131,,1000-0400,1234567,,,37239,,, +1470,DOM,,HICV R Emisoras Unidas,,Duverg (ind),18.366667,-71.516667,,1,,7589,272,133,,,,,,52251,,, +1470,USA,en,WJDY,,Salisbury (MD),38.391667,-75.646667,,0.043,,6247,291,133,,,,998,,41863,,, +1470,B,pt,Rdio Urbano Santos,,Urbano Santos (MA),-3.197778,-43.383333,,1,,7717,235,134,,,,,,36902436,,, +1470,USA,,WCLA,,Claxton (GA),32.17,-81.898889,,0.26,,7137,290,134,,,,,,41020,,, +1470,USA,,WLMC,,Georgetown (SC),33.370833,-79.2775,,0.147,,6871,289,134,,,,,,42191,,, +1470,USA,,WNAU,,New Albany (MS),34.496667,-89.014444,,0.5,,7392,297,134,,,,,,42429,,, +1470,USA,,WVBS,,Burgaw (NC),34.522778,-77.904722,,0.093,,6691,289,134,,,,,,43283,,, +1470,CUB,es,R Ciudad Bandera,,Crdenas/CTOM1 (ma),23.045514,-81.204964,,1,,7848,283,135,,,,2,,36487,,, +1470,PRU,es,OAU4B R Capital,,Lima/Pantanos de Villa (lim),-12.210669,-76.994231,,25,,10633,257,135,,0000-2400,1234567,0,,1883,,, +1470,USA,,WMGG,,Dunedin (FL),28.056389,-82.736944,,0.5,,7529,288,135,,,,,,42255,,, +1470,USA,,WTOE,,Spruce Pine (NC),35.906667,-82.105833,,0.103,,6849,293,135,,,,,,43191,,, +1470,USA,en,KBSN,,Moses Lake (WA),47.104444,-119.292222,,1,,7837,324,135,,,,5,,38096,,, +1470,HTI,,R Lakansyel,,Port-au-Prince (oue),18.516667,-72.366667,,0.5,,7634,273,136,,,,,,35625,,, +1470,USA,,KKTY,,Douglas (WY),42.763333,-105.392222,,0.5,,7604,313,136,,,,,,38760,,, +1470,USA,,WBTX,,Broadway-Timberville (VA),38.623333,-78.814444,,0.036,,6429,293,136,,,,,,40923,,, +1470,USA,,WQXL,,Columbia (SC),33.959444,-81.041111,,0.1,,6937,291,136,,,,,,42804,,, +1470,MEX,es,XERCN-AM R Hispana,,Tijuana/Cerro Colorado (bcn),32.474192,-116.898931,,5,,9118,315,137,,1300-0800,1234567,997,,44659,,, +1470,PNR,es,R La Primersima,,Juan Daz (pnm),9.0375,-79.473611,,5,,8935,272,137,,,,1,,2172,,, +1470,USA,en,KELA,,Centralia-Chehalis (WA),46.696389,-122.956389,,1,,8019,326,137,,,,997,,38320,,, +1470,USA,es,KUTY,,Palmdale (CA),34.665278,-118.011111,,5,,8962,317,137,,,,9935,,39601,,, +1470,MEX,es,XEAI-AM R Frmula 3,,Mxico D.F/Granjas Esmeralda (dif),19.3512,-99.114306,,5,,9328,294,138,,0000-2400,1234567,996,,2158,,, +1470,USA,,KWAY,,Waverly (IA),42.703611,-92.4725,,0.061,,6922,305,138,,,,,,39689,,, +1470,USA,,WBCR,,Alcoa (TN),35.752222,-83.917778,,0.082,,6975,294,138,,,,,,40826,,, +1470,B,pt,ZYH665 Rdio Guanancs de Itapag,,Itapag (CE),-3.6975,-39.565556,,0.25,,7558,231,139,,,,,,36902409,,, +1470,DOM,,HICH R Sur,,Santa Cruz de Barahona (bh),18.183333,-71.083333,,0.25,,7575,272,139,,,,,,52250,,, +1470,USA,,KYYW,,Abilene (TX),32.492222,-99.751944,,1,,8201,302,139,,,,,,39881,,, +1470,USA,,WGNR,,Anderson (IN),40.061944,-85.710278,,0.036,,6741,299,139,,,,,,41537,,, +1470,B,pt,ZYJ616 Rural AM,,Parelhas (RN),-6.683333,-36.666667,,0.25,,7704,226,140,,,,15,,36902415,,, +1470,USA,,KLCL,,Lake Charles (LA),30.258611,-93.268611,,0.5,,8010,296,140,,,,,,38786,,, +1470,USA,,WEVG,,Evergreen (AL),31.441389,-86.935556,,0.177,,7517,293,140,,,,,,41743,,, +1470,B,pt,ZYI548 Rdio Moreno Braga,,Vigia (PA),-0.867556,-48.116933,,0.25,,7767,240,141,,,,,,36902411,,, +1470,B,pt,ZYI928 Rdio AM Cidade de Castelo,,Castelo do Piau (PI),-5.326389,-41.556944,,0.25,,7823,232,141,,,,,,36902435,,, +1470,CLM,es,HJTB Ondas de Ibagu (R Maria),,Ibagu (tol),4.416667,-75.2,,2,,9048,266,141,,1000-0400,1234567,986,,37639,,, +1470,USA,,WBFC,,Stanton (KY),37.882778,-83.882222,,0.025,,6802,296,141,,,,,,40838,,, +1470,CLM,es,HJPX Colmundo,,Cartagena (bol),10.516667,-75.466667,,1,,8533,270,142,,0000-2400,1234567,,,37627,,, +1470,B,pt,Rdio Tradio,,Rio Branco do Sul (PR),-25.166667,-49.3,,3,,10151,228,143,,,,,,36902424,,, +1470,B,pt,ZYH908 Rdio Parano,,Presidente Dutra (MA),-5.298411,-44.454333,,0.25,,7979,234,143,,,,,,36902433,,, +1470,B,pt,ZYI822 Rdio Educadora de Belm,,Belm de So Francisco (PE),-8.756922,-38.967856,,0.25,,8025,228,143,,,,,,36902407,,, +1470,B,pt,ZYI827 Rdio Papacaa,,Bom Conselho (PE),-9.17,-36.691389,,0.25,,7953,225,143,,,,,,36902432,,, +1470,CLM,es,HJB63 R Uno,,Iza (boy),5.6,-72.983333,,1,,8793,265,143,,0000-2400,1234567,,,51786,,, +1470,CLM,es,HJHQ R Futurama,,Pacho (cun),5.166667,-74.116667,,1,,8908,266,143,,0930-0400,1234567,,,37478,,, +1470,CLM,es,HJIM R Popular,,Medelln (ant),6.266667,-75.566667,,1,,8910,268,143,,0000-2400,1234567,899,,37494,,, +1470,HND,,HRRD,,La Ceiba (atl),15.8,-86.816667,,1,,8844,282,143,,,,,,37834,,, +1470,MEX,,XEBAL-AM,,Becal (cam),20.427342,-90.0299,,1,,8654,288,143,,,,,,43758,,, +1470,USA,,KGND,,Vinita (OK),36.642778,-95.126389,,0.088,,7576,302,143,,,,,,20016012,,, +1470,USA,,KIID,i,Sacramento (CA),38.591667,-121.462778,,1,,8740,321,143,,,,,,38596,,, +1470,USA,,KSMM,,Liberal (KS),37.065278,-100.866389,,0.17,,7864,306,143,,,,,,39874,,, +1470,B,pt,ZYI913 Rdio Ingazeira,,Paulistana (PI),-8.131667,-41.153056,,0.25,,8076,230,144,,,,,,36902423,,, +1470,CLM,es,HJNT R Huellas,,Cali (val),3.516667,-76.333333,,1,,9204,266,144,,1100-0500,1234567,70,,37597,,, +1470,MEX,es,XECAV-AM Play 1470,,Durango (dur),24.052228,-104.620164,,1,,9239,301,144,,,,,,43818,,, +1470,MEX,es,XEIND-AM Hidalgo R,,Tlanchinol (hid),20.945278,-98.634722,,1,,9156,294,144,,,,,,44173,,, +1470,NCG,,YNRY R Yarrince,,Boaco (bco),12.466667,-85.666667,,1,,9057,279,144,,,,,,52213,,, +1470,B,pt,ZYI900 Rdio Difusora Vale do Urucui,,Uruu (PI),-7.272778,-44.551389,,0.25,,8174,233,145,,,,,,36902437,,, +1470,B,pt,ZYJ476 Rdio Absoluta,,Campos dos Goytacazes (RJ),-21.786464,-41.320222,,1,,9429,224,145,,,,,,36902408,,, +1470,B,pt,ZYK263 Rdio ABC 1470,,Novo Hamburgo (RS),-29.666667,-51.116667,,2.5,,10672,227,145,,????-0200,1234567,,,51781,,, +1470,CLM,es,HJIF R Tres Fronteras,,Puerto Ass (put),0.516667,-76.5,,1,,9479,265,145,,1100-0200,1234567,,,37489,,, +1470,MEX,es,XEIRG-AM La Campirana,,Irapuato (gua),20.677964,-101.345133,,1,,9347,296,145,,,,,,44180,,, +1470,B,pt,ZYJ676 Rdio Rondnia AM,,Cacoal (RO),-11.418056,-61.433333,,1,,9556,246,146,,,,,,36902440,,, +1470,B,pt,ZYK712 Rdio Nova Jornal AM,,Indaiatuba (SP),-23.055556,-47.175,,1,,9839,228,146,,,,,,36902429,,, +1470,EQA,,HCRD4,,Rich (man),-0.766667,-80.233333,,1,,9846,267,146,,,,,,37076,,, +1470,USA,,KFMZ,,Brookfield (MO),39.840556,-93.081111,,0.02,,7191,303,146,,,,,,38411,,, +1470,USA,,KUOL,,San Marcos (TX),29.898056,-97.912222,,0.25,,8321,300,146,,,,,,39585,,, +1470,USA,,WCHJ,,Brookhaven (MS),31.562778,-90.4475,,0.066,,7725,295,146,,,,,,40993,,, +1470,B,pt,ZYH509 Rdio Morro Verde,,Mairi/Rua do Coqueiro (BA),-11.711389,-40.1675,,0.25,,8377,227,147,,,,,,36902427,,, +1470,EQA,,HCLD2 R Ecos de Naranjito,,Naranjito (gua),-2.25,-79.5,,1,,9926,265,147,,,,,,37190,,, +1470,EQA,,HCNP5,,Alaus (chi),-2.25,-78.816667,,1,,9880,265,147,,,,,,37042,,, +1470,USA,,KDHN,,Dimmitt (TX),34.586389,-102.309722,,0.149,,8162,306,147,,,,,,38260,,, +1470,B,pt,Rdio Panorama,,Itapejara d'Oeste (PR),-25.954167,-52.813333,,1,,10408,231,148,,,,,,36902420,,, +1470,B,pt,ZYI413 Rdio Alvorada,,Dourados (MS),-22.183333,-54.866667,,1,,10165,234,148,,,,,,45826,,, +1470,B,pt,ZYJ781 Rdio Record,,So Jos (SC),-27.5725,-48.528056,,1,,10343,227,148,,,,76,,36902425,,, +1470,CLM,es,HKO96 Alcaldia de Baranoa,,Baranoa (atl),10.8,-74.916667,,0.25,,8471,270,148,,,,,,51785,,, +1470,MEX,es,XEACE-AM R Frmula,,Mazatln (sin),23.245794,-106.378683,,0.5,,9415,302,148,,,,,,43692,,, +1470,PRU,,OAX7G R Cusco,,Cusco (cus),-13.5,-72.016667,,1,,10418,253,148,,1000-0300,1234567,31,,40345,,, +1470,PRU,,OCX2G R Occidente,,Quiruvilca (lal),-7.966667,-78.2,,1,,10341,261,148,,,,,,51784,,, +1470,USA,en,KDEB,,Estes Park (CO),40.3375,-105.526667,,0.053,,7825,311,148,,,,,,20016062,,, +1470,B,pt,ZYK599 Rdio Mensagem,,Jacare/Av Malek Assad 535 (SP),-23.284989,-45.971039,,0.5,,9801,227,149,,,,,,36902426,,, +1470,MEX,es,XEHI-AM,,Ciudad Miguel Alemn (tam),26.391944,-99.026567,,0.25,,8696,298,149,,,,,,44117,,, +1470,PRU,es,OAU6E R Victoria,,Arequipa (are),-16.4,-71.533333,,1,,10644,251,149,,,,949,,51783,,, +1470,B,pt,ZYI214 Rdio So Francisco,,Barra de So Francisco (ES),-18.769444,-40.889444,,0.25,,9110,225,150,,,,,,36902410,,, +1470,EQA,,HCJC1 Ecos de Cayambe,,Cayambe (pic),0.05,-78.116667,,0.36,,9630,266,150,,,,8,,36911,,, +1470,B,pt,ZYH773 Rdio Difusora Serra dos Cristais,,Cristalina (GO),-16.784725,-47.625811,,0.25,,9258,231,151,,,,,,36902438,,, +1470,B,pt,ZYH779 Rdio Cidade de Gois,,Gois (GO),-15.947019,-50.1301,,0.25,,9313,234,151,,,,,,36902412,,, +1470,ARG,,Cadena 14-70,,Lans (ba),-34.716667,-58.4,,1,,11516,230,152,,,,,,51764,,, +1470,ARG,,R Mburucuya,,Jose Leon Suarez (ba),-34.533333,-58.583333,,1,,11509,230,152,,,,,,51763,,, +1470,B,pt,ZYJ481 RBP-Rdio Barra do Pira,,Barra do Pira (RJ),-22.4775,-43.833411,,0.25,,9617,225,152,,,,96,,36902439,,, +1470,B,pt,ZYK586 Rdio Cultura de Guara,,Guara (SP),-20.319394,-48.295942,,0.25,,9633,230,152,,,,,,36902430,,, +1470,B,pt,ZYK632 Rdio Primavera,,Porto Ferreira (SP),-21.856739,-47.468578,,0.25,,9739,229,152,,,,,,36902434,,, +1470,B,pt,ZYL247 Rdio Difusora de Ituiutaba,,Ituiutaba (MG),-18.972906,-49.474275,,0.25,,9567,232,152,,,,,,36902418,,, +1470,URG,,CX147 R Cristal del Uruguay,,La Paz (Las Piedras) (ca),-34.766667,-56.216667,,1,,11408,228,152,,0000-2400,1234567,995,,36793,,, +1470,B,pt,ZYJ294 Rdio Educadora,,Ibaiti (PR),-23.862778,-50.192222,,0.25,,10072,230,153,,,,,,36902416,,, +1470,B,pt,ZYK771 Bastos AM,,Bastos (SP),-21.928497,-50.723633,,0.25,,9915,231,153,,,,,,36902431,,, +1470,ARG,,LT26 R Nuevo Mundo,,Coln (er),-32.222819,-58.144797,,0.5,,11275,231,154,,0900-0300,1234567,,,40178,,, +1470,B,pt,ZYI413 Rdio Alvorada,,Itapor (MS),-22.120511,-54.7981,,0.25,,10155,234,154,,,,,,36902414,,, +1470,B,pt,ZYJ304 RJ AM 1470,,Assis Chateaubriand (PR),-24.416667,-53.533333,,0.25,,10302,232,154,,,,,,36902422,,, +1470,CLM,es,HJS20 Ecos de Palocabildo,,Palocabildo (tol),5.133333,-75.033333,,0.1,,8973,266,154,,,,,,35901869,,, +1470,ARG,,LT20 R Junin,,Junn (ba),-34.566667,-60.966667,,0.5,,11639,232,155,,0900-0300,1234567,,,40172,,, +1470,ARG,,LT28 R Rafaela,,Rafaela (sf),-31.25,-61.466667,,0.5,,11366,234,155,,0900-0300,1234567,982,,40180,,, +1470,ARG,,R Municipal,,Fray Luis Beltran (rn),-39.316667,-65.766667,,1,,12317,232,155,,1200-0100,1234567,32,,51765,,, +1470,B,pt,ZYJ798 Rdio Nova Lder do Vale,,Herval d'Oeste/Altos do Morro (SC),-27.17,-51.484722,,0.25,,10454,229,155,,,,,,36902417,,, +1470,B,pt,ZYK324 Cinderela AM,,Campo Bom (RS),-29.651389,-51.080833,,0.25,,10669,227,155,,,,,,36902419,,, +1470,BOL,,CP215 R CORDECH,,Alcala (cqs),-19.366667,-64.416667,,0.25,,10463,243,155,,1100-1600,1234567,,,52051,,, +1470,BOL,,CP215 R CORDECH,,Alcala (cqs),-19.366667,-64.416667,,0.25,,10463,243,155,,1900-0200,1234567,,,52051,,, +1470,PRU,,OAX6M R Tacna,,Tacna (tac),-18,-70.5,,0.3,,10720,249,155,,0900-0500,1234567,,,40338,,, +1470,B,pt,ZYK219 Rdio Cultura Cacequiense,,Cacequi (RS),-29.868056,-54.816667,,0.25,,10881,230,156,,,,,,36902421,,, +1470,ARG,,LU26 R Coronel Dorrego,,Coronel Dorrego (ba),-38.716667,-61.266667,,0.5,,12026,229,157,,1030-0300,1234567,,,40222,,, +1470,URG,,CW147 Abril 1470 AM,,Melo (cl),-32.366667,-54.116667,,0.25,,11078,228,157,,0830-0330,1234567,,,36753,,, +1470,USA,,KNXN,,Sierra Vista (AZ),31.548611,-110.244444,,0.039,,8867,309,157,,,,,,39039,,, +1475,BOL,,R Tiraque,,Tiraque (cbb),-17.416667,-65.716667,,1,,10367,245,148,,,,,,52052,,, +1475,INS,id,R.Khusus Daerah Tingat Dua,,Karawang (JB-kar),-6.316667,107.3,,1,,11304,85,151,,????-1700,1234567,99,,50969,,, +1476,G,en,R Britannia,,Yorkshire area (EN-NYK),53.966667,-1.083333,,1,,542,295,62,,????-????,9999999,,,2800033,,, +1476,I,,R Cosmo Milano,,Greater Milano area (mi),45.5,9.5,,1,,769,162,65,,,,,,4000058,,, +1476,I,,R Medjugorje Italia,,Villa Estense (pd),45.157858,11.702367,,1,,865,151,66,,????-????,9999999,999,,4000037,,, +1476,GRC,el,R Veteranos,,Veria (cmc-ima),40.483333,22.316667,,1,,1771,131,75,,,,,,3400051,,, +1476,GRC,el,Thenamites me Seneryate & Kharama,,Tyrnavos (the-lar),39.733333,22.283333,,1,,1836,132,75,,,,,,3400050,,, +1476,IRN,,IRIB R Kordestan,,Marivan=Merwan (kdn),35.517694,46.1735,,20,,3622,105,80,,0230-2230,1234567,256,,1494,,, +1476,EGY,ar,ERTU Al-Quran al-Karim,,Al-Minya=Menya (mny),28.057778,30.800194,,10,,3351,133,81,,0200-0400,1234567,31,,1855,,, +1476,EGY,ar,ERTU Al-Quran al-Karim,,Al-Minya=Menya (mny),28.057778,30.800194,,10,,3351,133,81,,2000-2200,1234567,31,,1855,,, +1476,EGY,ar,ERTU Shamal Sa'id Misr,,Al-Minya=Menya (mny),28.057778,30.800194,,10,,3351,133,81,,0400-2000,1234567,31,,1855,,, +1476,EGY,ar,ERTU Al-Quran al-Karim,,Sohag (shj),26.550761,31.620733,,10,,3537,134,82,,0200-0400,1234567,9995,,1493,,, +1476,EGY,ar,ERTU Al-Quran al-Karim,,Sohag (shj),26.550761,31.620733,,10,,3537,134,82,,2000-2200,1234567,9995,,1493,,, +1476,EGY,ar,ERTU Janub Sa'id Misr,,Sohag (shj),26.550761,31.620733,,10,,3537,134,82,,0400-2000,1234567,9995,,1493,,, +1476,TKM,tk,TR1 Watan R,,Trkmenbaşy (bal),40.051472,52.941556,,10,,3755,92,85,,0000-2400,1234567,2,,1878,,, +1476,AZE,,Azərbaycan R,,Sixli (qzx),41.311111,45.1,,1,,3139,97,88,,0200-2000,1234567,,,600001,,, +1476,RUS,ru,R Rossii,,Onguday (RA),50.75,86.133333,,20,,5239,58,96,,2100-1700,1234567,758,,46979,,, +1476,PAK,,PBC R Pakistan/NBS News,,Faisalabad (pjb),31.408333,73.109722,,10,,5758,86,105,,0045-0820,1234567,,,50993,,, +1476,CHN,,Xining RGD Health,,Xining (QH),36.583333,101.833333,,10,,7220,62,119,,,,,,50984,,, +1476,IND,,AIR North,,Jaipur A (RJ),26.91,75.75,,1,,6294,88,120,,0025-0430,123456,,,50986,,, +1476,IND,,AIR North,,Jaipur A (RJ),26.91,75.75,,1,,6294,88,120,,0025-0600,......7,,,50986,,, +1476,IND,,AIR North,,Jaipur A (RJ),26.91,75.75,,1,,6294,88,120,,0630-0931,1234567,,,50986,,, +1476,IND,,AIR North,,Jaipur A (RJ),26.91,75.75,,1,,6294,88,120,,1130-1741,1234567,,,50986,,, +1476,CHN,ko,Heilongjiang RGD,,Luobei (HL),47.578181,130.818239,,10,,7740,36,124,,1300-1500,1234567,,,36201101,,, +1476,CHN,ko,Heilongjiang RGD,,Luobei (HL),47.578181,130.818239,,10,,7740,36,124,,2100-2400,1234567,,,36201101,,, +1476,CHN,zh,Heilongjiang RGD Gushi,,Luobei (HL),47.578181,130.818239,,10,,7740,36,124,,0000-1300,1234567,,,36201101,,, +1476,CHN,zh,Heilongjiang RGD,,Luobei (HL),47.578181,130.818239,,10,,7740,36,124,,1500-2100,1234567,,,36201101,,, +1476,THA,th,Sor. Wor. Thor.,,Lamphun/Ban Pratu Khong (lpn),18.568389,99.041444,,50,,8564,76,125,,2200-1600,1234567,992,,50999,,, +1476,CHN,ko,Heilongjiang RGD,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,1300-1500,1234567,,,36201103,,, +1476,CHN,ko,Heilongjiang RGD,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,2100-2400,1234567,,,36201103,,, +1476,CHN,zh,Heilongjiang RGD Gushi,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,0000-1300,1234567,,,36201103,,, +1476,CHN,zh,Heilongjiang RGD,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,1500-2100,1234567,,,36201103,,, +1476,CHN,,Qian Gorlos RGD,,Qian Gorlos (JL),45.133333,124.8,,1,,7707,42,134,,,,,,50980,,, +1476,CHN,ko,Heilongjiang RGD,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,1300-1500,1234567,,,50974,,, +1476,CHN,ko,Heilongjiang RGD,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,2100-2400,1234567,,,50974,,, +1476,CHN,zh,Heilongjiang RGD Gushi,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,0000-1300,1234567,,,50974,,, +1476,CHN,zh,Heilongjiang RGD,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,1500-2100,1234567,,,50974,,, +1476,CHN,,Leshan RGD,,Leshan/SCTS525 (SC),29.616667,103.666667,,1,,7915,66,136,,2200-1600,1234.67,,,50978,,, +1476,CHN,,Leshan RGD,,Leshan/SCTS525 (SC),29.616667,103.666667,,1,,7915,66,136,,2200-1700,....5..,,,50978,,, +1476,CHN,ko,Heilongjiang RGD,,Huanan (HL),46.216667,130.516667,,1,,7855,37,136,,1300-1500,1234567,,,36201102,,, +1476,CHN,ko,Heilongjiang RGD,,Huanan (HL),46.216667,130.516667,,1,,7855,37,136,,2100-2400,1234567,,,36201102,,, +1476,CHN,zh,Heilongjiang RGD Gushi,,Huanan (HL),46.216667,130.516667,,1,,7855,37,136,,0000-1300,1234567,,,36201102,,, +1476,CHN,zh,Heilongjiang RGD,,Huanan (HL),46.216667,130.516667,,1,,7855,37,136,,1500-2100,1234567,,,36201102,,, +1476,CHN,,Mudanjiang JGD,,Mudanjiang (HL),44.588889,129.585278,,1,,7968,39,137,,,,,,50979,,, +1476,CHN,,Zibo RGD Traffic & Arts,,Zibo (SD),36.8,118.05,,1,,8124,51,138,,,,,,36200664,,, +1476,CHN,,Laohekou RGD,,Laohekou (HU),32.383333,111.666667,,1,,8158,58,139,,,,,,50977,,, +1476,CHN,,Xinyu RGD,,Xinyu (JX),27.8,114.933333,,1,,8754,59,143,,,,,,36200665,,, +1476,CHN,,Zhejiang zhi Sheng,,Yueqing (ZJ),28.133333,120.95,,1,,9066,54,144,,2130-1605,1234567,,,50985,,, +1476,J,,JOSD NHK2,,Iida (chu-nag),35.5,137.85,,1,,9194,38,144,,2030-1500,1.....7,,,50989,,, +1476,J,,JOSD NHK2,,Iida (chu-nag),35.5,137.85,,1,,9194,38,144,,2030-1635,.2345..,,,50989,,, +1476,J,,JOSD NHK2,,Iida (chu-nag),35.5,137.85,,1,,9194,38,144,,2030-1640,.....6.,,,50989,,, +1476,PHL,tl,DXRJ-AM,,Iligan City (ldn),8.268056,124.258889,,5,,11099,63,144,,2050-1440,1234567,91,,50995,,, +1476,INS,id,R Rodja,,Bandung/Selacau (JB-ban),-6.933333,107.525,,2.5,,11374,85,148,,2000-1630,1234567,,,35400121,,, +1476,PHL,,DWRB-AM,,Lipa City (btg),13.933333,121.15,,1,,10386,62,148,,,,,,50996,,, +1476,PHL,,DZYA-AM,,Angeles City/Balibago (pam),15.166667,120.6,,1,,10240,62,148,,,,,,50994,,, +1476,INS,id,R Bhalqist,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400144,,, +1476,INS,id,R HK-Biangnya Dangdut AM,,Semarang (JT-kse),-6.966667,110.483333,,1,,11578,83,152,,,,5,,50988,,, +1476,J,,NHK R 2,,Imabari (shi-ehi),34.05,133.016667,,0.1,,9123,42,154,,2030-1500,1.....7,,,50990,,, +1476,J,,NHK R 2,,Imabari (shi-ehi),34.05,133.016667,,0.1,,9123,42,154,,2030-1635,.2345..,,,50990,,, +1476,J,,NHK R 2,,Imabari (shi-ehi),34.05,133.016667,,0.1,,9123,42,154,,2030-1640,.....6.,,,50990,,, +1476,J,,NHK R 2,,Ozu (shi-ehi),33.516667,132.566667,,0.1,,9153,43,154,,2030-1500,1.....7,,,50991,,, +1476,J,,NHK R 2,,Ozu (shi-ehi),33.516667,132.566667,,0.1,,9153,43,154,,2030-1635,.2345..,,,50991,,, +1476,J,,NHK R 2,,Ozu (shi-ehi),33.516667,132.566667,,0.1,,9153,43,154,,2030-1640,.....6.,,,50991,,, +1476,INS,id,R 68H,,Paniai/Enarotali (PA-pan),-3.916667,136.35,,1,,12962,59,157,,,,,,50948,,, +1476,AUS,en,4ZR Zinc ZR,,Roma/St George (QLD),-26.56645,148.819194,,2,,15792,62,163,,0000-2400,1234567,9964,,50973,,, +1476,NZL,,1XD LiveSPORT/BBC WS,,Auckland/Henderson (AUK),-36.844383,174.631153,,5,,18083,33,167,,0000-2400,1234567,,,50992,,, +1476,AUS,,2KA Cool Country,,Penrith/Luddenham (NSW),-33.867233,150.718856,,0.27,,16529,69,174,,0000-2400,1234567,999,,50972,,, +1476,AUS,,5MG ABC Southeast SA,,Mount Gambier/60 Crouch St. N (SA),-37.8245,140.790389,,0.2,,16169,84,174,,0000-2400,1234567,1,,50971,,, +1480,USA,,WCFR,,Springfield (VT),43.281667,-72.489167,,5,,5689,293,107,,,,,,20016001,,, +1480,USA,,WSAR,,Fall River (MA),41.723889,-71.189167,,5,,5717,291,107,,,,9989,,42950,,, +1480,USA,,WHBC,,Canton (D) (OH),40.8975,-81.319444,,15,,6410,297,109,,,,,,20012550,,, +1480,USA,en,WRCK (r:WUSP-FM),,Remsen (NY),43.325278,-75.174722,,5,,5853,295,109,,,,14,,40654,,, +1480,USA,ko,WZRC,,New York/Ridgefield Park [NJ] (NY),40.845,-74.02,,5,,5960,292,110,,,,9974,,43590,,, +1480,USA,,WHBC,,Canton (N) (OH),40.720833,-81.441111,,5,,6431,297,114,,,,999,,41605,,, +1480,USA,,WGVU,,Kentwood (MI),42.843333,-85.618611,,5,,6518,301,115,,,,9966,,41585,,, +1480,USA,,WSDS,,Salem Township (MI),42.261667,-83.619444,,3.8,,6445,299,116,,,,,,42975,,, +1480,USA,es,WLMV,,Madison (WI),43.025,-89.396667,,5,,6723,303,117,,,,994,,42193,,, +1480,USA,,WIZD,,Neon (KY),37.198333,-82.711667,,5,,6784,294,118,,,,,,41346,,, +1480,USA,en,WDAS,i,Philadelphia (PA),39.998056,-75.211944,,1,,6098,292,118,,,,,,41125,,, +1480,USA,en,WGFY,,Charlotte (NC),35.284722,-80.876111,,5,,6821,292,118,,,,,,41505,,, +1480,USA,,WTOX,,Glen Allen (VA),37.682222,-77.563889,,1.5,,6423,291,119,,,,,,43197,,, +1480,USA,,WCNS,,Latrobe (PA),40.27,-79.386944,,1,,6339,295,120,,,,,,41049,,, +1480,USA,en,WCHZ,,Augusta (GA),33.516667,-82.01,,5,,7035,291,120,,,,,,41580,,, +1480,PTR,es,WMDD,,Fajardo (PR),18.362778,-65.64,,5,,7188,268,122,,0000-2400,1234567,998,,42298,,, +1480,USA,es,WPWC,,Dumfries-Triangle (VA),38.568333,-77.338889,,0.5,,6341,292,123,,,,,,42755,,, +1480,USA,,KAUS,,Austin (MN),43.622222,-92.990556,,1,,6877,306,126,,,,990,,37984,,, +1480,USA,,WPFR,,Terre Haute (IN),39.500556,-87.386111,,1,,6886,299,126,,,,,,42675,,, +1480,USA,,WRSW,,Warsaw (IN),41.2225,-85.838056,,0.5,,6657,300,127,,,,,,42922,,, +1480,USA,,WSPY,,Geneva (IL),41.906944,-88.295278,,0.5,,6748,302,127,,,,,,43056,,, +1480,USA,en,WTKD,,Mobile (AL),30.719722,-88.071111,,4.4,,7648,293,127,,,,,,40623,,, +1480,USA,,WIOS,,Tawas City-East Tawa (MI),44.263333,-83.545,,0.109,,6288,301,129,,,,,,41784,,, +1480,USA,,WDJO,,Cincinnati (OH),39.211944,-84.488889,,0.3,,6734,297,130,,,,,,41007,,, +1480,USA,,KLMS,,Lincoln (NE),40.796389,-96.582222,,0.75,,7308,306,131,,,,,,38830,,, +1480,B,pt,ZYH671 Rdio Princesa do Norte,,Morrinhos (CE),-3.233361,-40.122333,,1,,7543,231,132,,,,,,36902445,,, +1480,DOM,,HIAH R Villa,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,1000-0400,123456,,,37199,,, +1480,DOM,,HIAH R Villa,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,1100-2300,......7,,,37199,,, +1480,USA,,KCZZ,,Mission (KS),39.068056,-94.7025,,0.5,,7348,304,133,,,,,,38231,,, +1480,USA,,KQAM,,Wichita (KS),37.739167,-97.270556,,1,,7605,304,133,,,,,,39185,,, +1480,USA,en,WVOI,,Marco Island (FL),25.991667,-81.625,,1,,7629,285,133,,,,,,43328,,, +1480,GTM,,TGBH R Buenas Nuevas,,Ciudad de Guatemala (gut),14.466667,-90.45,,10,,9202,284,134,,1030-????,1234567,,,40482,,, +1480,USA,,KBXD,,Dallas (TX),32.661667,-96.655556,,1.9,,8006,300,134,,,,,,38535,,, +1480,USA,,KKCQ,,Fosston (MN),47.564167,-95.724167,,0.09,,6706,311,134,,,,,,38709,,, +1480,USA,,WKND,,Windsor (CT),41.852778,-72.678611,,0.014,,5802,292,134,,,,,,42463,,, +1480,USA,en,KBMS,,Vancouver (WA),45.601667,-122.718333,,2.5,,8115,325,134,,,,995,,38062,,, +1480,USA,,WLEA,,Hornell (NY),42.2875,-77.646389,,0.019,,6081,296,135,,,,,,42150,,, +1480,B,pt,ZYH508 Rdio Alvorada,,Guanambi (BA),-14.224642,-42.797511,,5,,8757,228,136,,,,,,36902451,,, +1480,B,pt,ZYI929 Rdio Vale do Coroat,,Elesbo Veloso (PI),-6.192506,-42.144292,,1,,7939,232,136,,,,,,36902463,,, +1480,CLM,,HJTZ,,Lebrija (sat),7.083333,-73.2,,5,,8678,266,136,,,,,,37655,,, +1480,CLM,es,HJTZ RCN Antena 2,,Bucaramanga (sat),7.133333,-73.133333,,5,,8669,266,136,,,,,,35901889,,, +1480,USA,,KYOS,,Merced (CA),37.375,-120.459722,,5,,8814,320,136,,,,9949,,39868,,, +1480,CTR,xx,R Pacfico Sur,,Ciudad Cortes (pta),8.966667,-83.533333,,5,,9218,275,137,,,,,,8200002,,, +1480,USA,,KCHL,,San Antonio (TX),29.4125,-98.414444,,2.5,,8393,300,137,,,,,,38150,,, +1480,USA,,WYRN,,Louisburg (NC),36.112778,-78.280556,,0.035,,6590,291,137,,,,,,43545,,, +1480,USA,vi,KVNR,,Santa Ana (CA),33.751667,-117.910556,,5,,9045,316,137,,,,,,39645,,, +1480,VEN,,R Cumarebo,,Cumarebo (flc),11.466667,-69.316667,,1,,8031,266,137,,,,,,51703,,, +1480,MEX,xx,XECARH-AM,,Cardonal (hid),20.058333,-99.233333,,5,,9273,294,138,,,,,,34900023,,, +1480,USA,en,WQTM,,Fair Bluff (NC),34.323056,-79.001944,,0.048,,6777,290,138,,,,,,43571,,, +1480,B,pt,ZYJ601 Rdio Princesa do Vale,,Au (RN),-5.583333,-36.916667,,0.25,,7608,227,139,,,,,,36902444,,, +1480,USA,en,WNYD958,,Erie (PA),42.143944,-80.132556,,0.01,,6244,297,139,,,,,,20010694,,, +1480,USA,,KSDR,,Watertown (SD),44.932778,-97.105278,,0.05,,6992,309,140,,,,,,39337,,, +1480,USA,,WEEO,,Shippensburg (PA),40.075,-77.535833,,0.009,,6239,294,140,,,,,,41259,,, +1480,USA,,WTOY,,Salem (VA),37.2725,-80.081111,,0.02,,6614,293,140,,,,,,43198,,, +1480,USA,es,WZJY,,Mount Pleasant (SC),32.825,-79.831389,,0.044,,6951,289,140,,,,,,43576,,, +1480,B,pt,ZYI825 Rdio Cano Nova,,Gravat (PE),-8.211389,-35.602222,,0.25,,7805,225,141,,,,,,36902452,,, +1480,CLM,,HJOD,,El Rodadero (mag),11.166667,-74.2,,1,,8390,270,141,,,,,,37605,,, +1480,CLM,es,HJOD,,Santa Marta (mag),11.25,-74.2,,1,,8383,270,141,,,,,,35901885,,, +1480,USA,,WFLN,,Arcadia (FL),27.228611,-81.857778,,0.131,,7541,286,141,,,,,,41399,,, +1480,USA,,WJFC,,Jefferson City (TN),36.104167,-83.486111,,0.034,,6920,294,141,,,,,,41871,,, +1480,B,pt,ZYI790 Rdio A Voz do Serto,,Serra Talhada (PE),-7.977558,-38.280939,,0.25,,7913,227,142,,,,,,36902471,,, +1480,EQA,,HCBS3,,Pasaje (mor),-3.35,-78.783333,,3,,9974,264,142,,,,,,36869,,, +1480,USA,,KLVL,,Pasadena (TX),29.683889,-95.185833,,0.5,,8176,297,142,,,,,,38856,,, +1480,USA,,WJLE,,Smithville (TN),35.925278,-85.820556,,0.034,,7079,295,142,,,,,,41893,,, +1480,USA,,WTLO,,Somerset (KY),37.080556,-84.660833,,0.027,,6914,296,142,,,,,,43168,,, +1480,USA,,WYZE,,Atlanta (GA),33.723611,-84.368889,,0.044,,7167,293,142,,,,,,43562,,, +1480,B,pt,ZYH897 Rdio Itapecuru de Colinas,,Colinas (MA),-6.022581,-44.250978,,0.25,,8037,234,143,,,,,,36902448,,, +1480,CAN,en,CHLD,,Granisle (BC),54.881944,-126.202222,,0.05,,7342,332,143,,,,,,20109209,,, +1480,CAN,en,CIFJ,,Fort St James (BC),54.444444,-124.248333,,0.05,,7321,331,143,,,,,,20109208,,, +1480,CLM,,RCN,,Bucaramanga (sat),7.133333,-73.133333,,1,,8669,266,143,,,,272,,52484,,, +1480,MEX,es,XETKR-AM,,Guadalupe (nvl),25.6992,-100.207506,,1,,8829,299,143,,,,,,44829,,, +1480,USA,,KGOE,,Eureka (CA),40.741111,-124.201389,,1,,8645,324,143,,,,9968,,38504,,, +1480,USA,,WGNQ,,Bridgeport (AL),34.942778,-85.707222,,0.039,,7152,295,143,,,,,,43531,,, +1480,USA,,WJBM,,Jerseyville (IL),39.112778,-90.311944,,0.032,,7090,301,143,,,,,,41847,,, +1480,USA,,WUNA,,Ocoee (FL),28.557778,-81.541111,,0.071,,7410,287,143,,,,,,43262,,, +1480,CLM,es,HJFC,,Pereira (ris),4.833333,-75.666667,,1,,9043,267,144,,,,,,37428,,, +1480,CLM,es,HJVB,,Armero (Guayabal) (tol),5.033333,-74.883333,,1,,8972,266,144,,,,,,35901890,,, +1480,HND,,HREZ,,Tegucigalpa (fmz),14.066667,-87.016667,,1,,9008,281,144,,,,,,37751,,, +1480,USA,,KIOU,,Shreveport (LA),32.571667,-93.744167,,0.129,,7840,298,144,,,,,,38624,,, +1480,USA,,KTHS,,Berryville (AR),36.361667,-93.561111,,0.064,,7509,301,144,,,,,,39484,,, +1480,USA,,WHVO,,Hopkinsville (KY),36.870833,-87.511944,,0.024,,7105,297,144,,,,,,41699,,, +1480,B,pt,ZYJ928 Rdio Cidade de Sergipe,,Simo Dias (SE),-10.737778,-37.800833,,0.25,,8163,226,145,,,,,,36902469,,, +1480,CLM,,HJIB,,Florencia (caq),1.616667,-75.566667,,1,,9318,265,145,,,,,,37487,,, +1480,MEX,es,XEZJ-AM Ciudad 1480,,Guadalajara (jal),20.666439,-103.360094,,1,,9471,298,145,,,,,,45142,,, +1480,USA,,KLEE,,Ottumwa (IA),41.024444,-92.482222,,0.017,,7060,304,145,,,,,,38797,,, +1480,USA,,WBBP,,Memphis (TN),35.055,-90.0875,,0.041,,7411,298,145,,,,,,40812,,, +1480,EQA,,HCMC1,,Municipal Co I (pic),-0.3,-78.25,,1,,9670,266,146,,,,,,37017,,, +1480,MEX,es,XEHM-AM HM R,,Ciudad Delicias (chi),28.164722,-105.471667,,0.5,,8915,304,146,,,,9994,,44127,,, +1480,USA,,KAVA,,Pueblo (CO),38.315556,-104.6175,,0.107,,7957,309,146,,,,,,37985,,, +1480,USA,,KPHX,,Phoenix (AZ),33.400556,-112.107778,,0.5,,8792,312,146,,,,44,,39140,,, +1480,USA,,KRAE,,Cheyenne (WY),41.121389,-104.839444,,0.072,,7720,311,146,,,,,,39216,,, +1480,USA,,WPFJ,,Franklin (NC),35.182778,-83.3575,,0.013,,6985,293,146,,,,,,42673,,, +1480,USA,en,WQOH,,Irondale (AL),33.548333,-86.665556,,0.028,,7325,294,146,,,,,,42215,,, +1480,USA,es,KNTB,,Lakewood (WA),47.165556,-122.575556,,0.111,,7959,326,146,,,,,,39021,,, +1480,B,pt,ZYH510 Rdio Tribuna do Vale do So Fran,,Xique-Xique (BA),-10.827647,-42.718172,,0.25,,8421,230,147,,,,,,36902457,,, +1480,EQA,,HCJV4,,Jipijapa (man),-1.316667,-80.583333,,1,,9918,267,147,,,,,,36995,,, +1480,EQA,,HCWP5 R Atlntida,,Alaus (chi),-2.2,-78.85,,1,,9877,265,147,,,,11,,37185,,, +1480,USA,,KHQN,,Spanish Fork (UT),40.075,-111.661667,,0.133,,8153,315,147,,,,,,38558,,, +1480,USA,en,WKGC,,Southport (FL),30.295833,-85.661667,,0.034,,7531,291,147,,,,,,42006,,, +1480,B,pt,ZYH795 RCM-Rdio Cultura de Miracema,,Miracema do Tocantins (TO),-9.566667,-48.416667,,0.25,,8609,236,148,,,,,,36902458,,, +1480,B,pt,ZYJ370 Prola AM 1480,,Prola d'Oeste (PR),-25.826944,-53.729444,,1,,10445,231,148,,,,,,36902465,,, +1480,BOL,,R Amor de Dios,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,,,,,52056,,, +1480,BOL,,R Chiwalaki,,Vacas (cbb),-17.533333,-65.583333,,1,,10369,245,148,,0900-1400,1234567,,,52054,,, +1480,BOL,,R Chiwalaki,,Vacas (cbb),-17.533333,-65.583333,,1,,10369,245,148,,2100-0100,1234567,,,52054,,, +1480,USA,,KRXR,,Gooding (ID),42.915,-114.711389,,0.093,,8034,319,148,,,,9980,,39319,,, +1480,B,pt,ZYH524 Rdio Santana,,Santana (BA),-12.983333,-44.05,,0.25,,8701,230,149,,,,,,36902442,,, +1480,B,pt,ZYK551 Rdio Tecnica de Atibaia,,Atibaia (SP),-23.102328,-46.5863,,0.5,,9814,227,149,,,,,,36902443,,, +1480,EQA,,HCCY6,,El Corazon (pic),-0.5,-78.666667,,0.5,,9716,266,149,,,,,,36896,,, +1480,EQA,,HCVQ7,,Baeza (nap),-0.116667,-77.75,,0.5,,9619,265,149,,,,,,37177,,, +1480,PRG,,ZP20 R America,,emby (cet),-25.459861,-57.404806,,1,,10611,234,149,,0000-2400,1234567,,,45515,,, +1480,URG,,CW43B R Internacional,,Rivera (rv),-30.866667,-55.516667,,1.5,,11011,230,149,,0800-0300,1234567,,,36774,,, +1480,B,pt,ZYK767 Rdio Nova Amrica,,Boituva (SP),-23.287786,-47.751017,,0.5,,9891,228,150,,,,,,36902460,,, +1480,MEX,es,XENS-AM,,Navojoa (son),27.075633,-109.469017,,0.25,,9238,306,150,,,,,,44458,,, +1480,B,pt,ZYL307 Rdio Emboabas de Minas Gerais,,Santa Cruz de Minas (MG),-21.120217,-44.228986,,0.25,,9504,226,151,,,,,,36902441,,, +1480,PRG,,ZP23 R Mariscal Francisco Solano Lopez,,Bella Vista Norte (amm),-22.1,-56.516667,,0.5,,10249,236,151,,1000-0100,1234567,,,45518,,, +1480,ARG,,La R del Corazon,,Tablada (ba),-34.7,-58.533333,,1,,11522,230,152,,,,,,51882,,, +1480,B,pt,ZYJ681 Rdio Rondnia AM,,Pimenta Bueno (RO),-11.666667,-61.2,,0.25,,9564,245,152,,,,,,36902450,,, +1480,B,pt,ZYK539 Rdio Clube Altinpolis AM,,Altinpolis (SP),-21.016667,-47.366667,,0.25,,9652,229,152,,,,,,36902468,,, +1480,B,pt,ZYL235 Nova Frutal AM,,Frutal (MG),-20.007772,-48.91015,,0.25,,9636,231,152,,,,,,36902470,,, +1480,MEX,es,XEVIC-AM R Tamaulipas,,Ciudad Victoria (tam),23.691944,-99.120833,,0.15,,8942,297,152,,,,,,44967,,, +1480,URG,,CW148 R Universo,,Castillos (ro),-34.166667,-53.85,,0.75,,11233,227,152,,0900-0300,1234567,,,36754,,, +1480,B,pt,ZYI393 Rdio Caula,,Trs Lagoas (MS),-20.781156,-51.713422,,0.25,,9860,233,153,,,,,,36902467,,, +1480,B,pt,ZYJ221 Rdio Brotas,,Pira do Sul (PR),-24.533333,-49.933333,,0.25,,10123,229,153,,,,,,36902474,,, +1480,B,pt,ZYJ230 Rdio Astorga,,Astorga (PR),-23.245556,-51.675833,,0.25,,10091,231,153,,,,,,36902472,,, +1480,CHL,,CA148 R Amanecer,,Ovalle (CO),-30.616667,-71.15,,1,,11869,241,153,,1100-0400,1234567,,,35696,,, +1480,MEX,es,XEXU-AM La Poderosa,,Villa Frontera (coa),26.936322,-101.443211,,0.1,,8792,300,153,,,,,,45069,,, +1480,URG,,CX148 Difusora Rio Negro,,Young (rn),-32.7,-57.616667,,0.7,,11290,231,153,,,,,,36794,,, +1480,B,pt,ZYJ270 Rdio Educadora,,Unio da Vitria (PR),-26.203889,-51.051111,,0.25,,10340,229,154,,,,,,36902453,,, +1480,B,pt,ZYJ302 Rdio Cultura,,Ipor (PR),-24.015,-53.723333,,0.25,,10274,232,154,,,,,,36902464,,, +1480,B,pt,ZYJ731 Rdio Difusora de Joinville,,Joinville/Rua Rio Doce (SC),-26.322222,-48.835278,,0.25,,10238,227,154,,,,,,36902447,,, +1480,B,pt,ZYJ762 Litoral AM 1480,,Imaru (SC),-28.35,-48.816667,,0.25,,10431,226,154,,,,,,36902475,,, +1480,PRG,,ZP74,,Lima (spd),-23.866667,-56.5,,0.25,,10413,235,154,,,,,,45558,,, +1480,B,pt,ZYJ826 Rdio Caibi AM,,Caibi (SC),-27.067778,-53.263333,,0.25,,10537,230,155,,,,,,36902473,,, +1480,B,pt,ZYK255 Rdio Guaramano,,Guarani das Misses (RS),-28.150556,-54.563056,,0.25,,10707,231,155,,,,,,36902446,,, +1480,B,pt,ZYK321 Veranense AM,,Veranpolis (RS),-28.924722,-51.531389,,0.25,,10623,228,155,,,,,,36902454,,, +1480,CHL,,CC148 R La Amistad AM,,Tome (BI),-36.6,-72.916667,,1,,12486,238,155,,1100-0230,1234567,,,35820,,, +1480,B,pt,ZYK244 Rdio So Roque AM,,Faxinal do Soturno (RS),-29.573333,-53.453333,,0.25,,10782,229,156,,,,,,36902449,,, +1480,CHL,,CD148 R General Baquedano,,Valdivia (LL),-39.866667,-73.25,,1,,12778,236,156,,,,,,35881,,, +1480,USA,,KSBQ,,Santa Maria (CA),34.950556,-120.489444,,0.061,,9049,318,156,,,,,,39328,,, +1480,BOL,,Patrimonio Rdifusion,,Potosi (pts),-19.566667,-65.766667,,0.1,,10564,244,159,,0950-0100,1234567,,,52053,,, +1484,NGR,,ORTN La Voix du Sahel,,Diffa (dff),13.315556,12.586944,,0.1,,4349,170,110,,0500-2300,1234567,,,2539,,, +1485,E,es,SER,,Santander/Soto de la Marina (CNT-S),43.466258,-3.891533,,10,,1229,223,59,,0000-2400,1234567,,,1508,,, +1485,E,es,SER,,Zamora (CAL-ZA),41.508706,-5.770625,,10,,1495,223,62,,0000-2400,1234567,,,1509,,, +1485,G,en,BBC R 5 Live,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,1,,482,256,62,,0000-0500,1234567,,,1515,,, +1485,G,en,BBC R 5 Live,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0000-0400,12345..,0,,1513,,, +1485,G,en,BBC R 5 Live,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0000-0500,.....67,0,,1513,,, +1485,G,en,BBC R Humberside,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0400-2400,12345..,0,,1513,,, +1485,G,en,BBC R Humberside,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0500-2400,.....67,0,,1513,,, +1485,G,en,BBC Sussex,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,1,,482,256,62,,0500-2400,1234567,,,1515,,, +1485,G,en,Gold,,Newbury/Washwater (EN-BER),51.361806,-1.347944,,1,,540,264,62,,0000-2400,1234567,,,1516,,, +1485,E,es,COPE,,Vilanova i la Geltr/Masa Padruell (CAT-B),41.243125,1.70435,,5,,1260,198,63,,0000-2400,1234567,999,,1511,,, +1485,G,en,BBC R 5 Live,,Wallasey (EN-MER),53.425667,-3.046861,,1.2,,652,287,63,,0000-0500,1234567,0,,1514,,, +1485,G,en,BBC R Merseyside,,Wallasey (EN-MER),53.425667,-3.046861,,1.2,,652,287,63,,0500-2400,1234567,0,,1514,,, +1485,G,en,BBC R 4,,Carlisle/Brisco (EN-CUM),54.865111,-2.916639,,1,,688,300,64,,0600-0100,1234567,0,,1512,,, +1485,G,en,BBC WS,,Carlisle/Brisco (EN-CUM),54.865111,-2.916639,,1,,688,300,64,,0100-0600,1234567,0,,1512,,, +1485,D,en,AFN PowerNet,,Ansbach/Katterbach-Kammerforst (bay),49.321389,10.595556,,0.3,,428,135,66,,0000-2400,1234567,9955,,1504,,, +1485,E,es,SER,,Alcoy (VAL-A),38.670986,-0.475525,,5,,1586,202,66,,0000-2400,1234567,,,1507,,, +1485,D,en,AFN PowerNet,,Hohenfels-Nainhof/General Patton Road (bay),49.228611,11.825556,,0.3,,498,128,67,,0000-2400,1234567,21,,1505,,, +1485,D,en,AFN PowerNet,,Garmisch-Partenkirchen (bay),47.483056,11.055833,,0.3,,613,145,68,,0000-2400,1234567,,,2000014,,, +1485,POL,pl,R AM,,Zakopane/Gra Gubałowka (MP),49.297778,19.945833,,0.8,,1001,103,68,,,,,,6400033,,, +1485,I,it,Broadcastitalia,s,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,9999999,,,4000007,,, +1485,LVA,lv,R Merkurs,,Riga/Bolderaja (Rig),57.036111,24.010278,,1,,1255,57,70,,0000-2400,1234567,977,,5200001,,, +1485,ROU,ro,R Vocea Speranţei,,Oradea (BH),47.057778,21.966667,,1,,1251,111,70,,0000-2400,1234567,,,52649,,, +1485,SRB,,R Beograd 1,,Tutin (Srb-rsk),42.983333,20.3,,1,,1450,129,71,,0000-2400,1234567,,,1535,,, +1485,SRB,,R Priboj,,Priboj (Srb-zlb),43.575278,19.5365,,1,,1360,129,71,,,,,,1543,,, +1485,ROU,ro,R Vocea Speranţei,,Botoşani (BT),47.75,26.666667,,1,,1523,101,72,,0000-2400,1234567,,,1896,,, +1485,ROU,ro,R Vocea Speranţei,,Mediaş (SB),46.146667,24.338056,,1,,1458,110,72,,0000-2400,1234567,,,1906,,, +1485,SRB,,R Beograd 2,,Negotin (Srb-bor),44.216667,22.55,,1,,1479,120,72,,,,,,1536,,, +1485,E,es,Onda Cero,,Antequera/Santa Luca (AND-MA),36.999111,-4.593611,,2,,1888,211,73,,0000-2400,1234567,,,1510,,, +1485,ROU,ro,R Vocea Speranţei,,Bacău (BC),46.605556,26.927778,,1,,1600,104,73,,0000-2400,1234567,,,1893,,, +1485,ROU,ro,R Vocea Speranţei,,Iaşi (IS),47.166667,27.583333,,1,,1614,101,73,,0000-2400,1234567,,,6600004,,, +1485,SRB,,R Beograd 1,,Crna Trava (Srb-jab),42.802778,22.288889,,1,,1574,125,73,,0000-2400,1234567,,,1534,,, +1485,GRC,el,ERA Net,,Orestiada (emc-evr),41.498919,26.534572,,1,,1922,120,76,,0000-2400,1234567,,,1517,,, +1485,E,es,SER,,Melilla (MEL-ML),35.284333,-2.965667,,1,,2013,205,77,,0000-2400,1234567,,,1528,,, +1485,IRN,fa,IRIB R.Markaze Azerbaijaneh Gharb,,Khoy (waz),38.650361,45.067167,,10,,3318,101,80,,0000-2400,1234567,,,10800008,,, +1485,TUN,,RTT R Nationale,,Borj El Khadra (tat),30.252153,9.558539,,1,,2444,173,81,,0400-2400,1234567,,,7900001,,, +1485,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,El Tur=At Tur (jsn),28.244444,33.632778,,10,,3479,129,82,,0200-0500,1234567,,,1856,,, +1485,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,El Tur=At Tur (jsn),28.244444,33.632778,,10,,3479,129,82,,2000-2200,1234567,,,1856,,, +1485,NOR,no,NRK P1/NRK P2,,Longyearbyen (sp),78.216667,15.633333,,1,,2926,4,86,,0000-2400,1234567,997,,1532,,, +1485,IRN,fa,IRIB R Iran,,Damghan (smn),36.132556,54.312389,,10,,4122,96,88,,0000-2400,1234567,155,,52525,,, +1485,IRN,fa,IRIB Sedaye Abadan,,Abadan (kuz),30.335283,48.313447,,10,,4172,109,89,,0030-2100,1234567,,,1524,,, +1485,SDN,,SRTC Sudan Nat. R,,Al-Qadarif=Gedaref (gdr),14.033333,35.4,,5,,4955,138,100,,,,,,47147,,, +1485,ARS,,BSKSA R Saudi Int.,,Jeddah/Al-Nuzla (mkh),21.379111,39.423194,,1,,4436,128,101,,1500-2100,1234567,,,47089,,, +1485,BHR,ar,R Bahrain,,Al-Manamah (mnh),26.216667,50.583333,,1,,4664,111,104,,,,,,10900002,,, +1485,IRN,fa,IRIB R Fars,,Jahrom (frs),28.512644,53.624683,,1,,4669,105,104,,,,,,1818,,, +1485,UGA,xx,UBC West,,Arua (aw),3.010222,30.8965,,10,,5911,149,106,,0300-2100,12345..,,,2543,,, +1485,UGA,xx,UBC West,,Arua (aw),3.010222,30.8965,,10,,5911,149,106,,0345-2100,.....67,,,2543,,, +1485,CHN,zh,Kytun RGD Hanyu,,Kytun=Kuitun (XJ),44.39005,84.909406,,1,,5586,66,113,,,,,,36200668,,, +1485,IND,,AIR North/Vividh Bharati,,Drass (JK),34.430556,75.765,,1,,5708,81,114,,1030-1630,1234567,,,52626,,, +1485,IND,,AIR North/Vividh Bharati,,Khalsi (JK),34.320811,76.863378,,1,,5790,81,115,,1200-1700,1234567,,,51030,,, +1485,ETH,,ERTA Ethiopia National R,,3 stations,5.283333,39.683333,,1,,6035,138,117,,0300-0600,1234567,,,2541,,, +1485,ETH,,ERTA Ethiopia National R,,3 stations,5.283333,39.683333,,1,,6035,138,117,,0800-2100,1234567,,,2541,,, +1485,IND,,AIR North/Vividh Bharati,,Nyoma (JK),33.5,78.666667,,1,,5974,80,117,,1200-1600,1234567,,,32200011,,, +1485,AGL,pt,RNA Em. Prov. do Kwanza-Sul,,Sumbe (cus),-11.2159,13.843867,,10,,7078,172,118,,0400-2300,1234567,514,,2369,,, +1485,CHN,,Hami RGD,,Hami=Kumul (XJ),42.833333,93.333333,,1,,6215,62,119,,,,,,51011,,, +1485,IND,,AIR North,,Chamoli (UT),30.407875,79.323078,,1,,6258,82,120,,1200-1600,1234567,,,51026,,, +1485,IND,,AIR West,,Ahwa (GJ),20.762678,73.684578,,1,,6660,94,124,,1200-1600,1234567,,,51024,,, +1485,CHN,,Gansu RGD,,unknown (GS),38,102.333333,,1,,7134,61,128,,2150-1605,1234567,,,36200670,,, +1485,IND,,AIR South,,Adilabad (AP),19.669894,78.523211,,1,,7082,91,128,,0025-0430,1234567,,,51023,,, +1485,IND,,AIR South,,Adilabad (AP),19.669894,78.523211,,1,,7082,91,128,,0700-1000,1234567,,,51023,,, +1485,IND,,AIR South,,Adilabad (AP),19.669894,78.523211,,1,,7082,91,128,,1200-1735,1234567,,,51023,,, +1485,RUS,ru,R Rossii,,Kamenskoye (KM),62.469444,166.2125,,1,,7152,10,129,,1700-1300,1234567,,,46984,,, +1485,IND,,AIR East,,Joranda (OR),20.756139,85.720811,,1,,7481,85,132,,0530-1740,1234567,,,51029,,, +1485,IND,,AIR East,,Soro (OR),21.2925,86.687722,,1,,7502,84,132,,0025-0430,1234567,,,51028,,, +1485,IND,,AIR East,,Soro (OR),21.2925,86.687722,,1,,7502,84,132,,0700-0900,1234567,,,51028,,, +1485,IND,,AIR East,,Soro (OR),21.2925,86.687722,,1,,7502,84,132,,1130-1740,1234567,,,51028,,, +1485,IND,,AIR Northeast,,Nongstoin (ML),25.522489,91.271844,,1,,7457,77,132,,0925-1300,1234567,,,51031,,, +1485,CHN,,Shuozhou RGD,,Shuozhou (SX),39.316667,112.416667,,1,,7600,53,133,,,,,,36200667,,, +1485,CHN,,Chengdu RGD Culture & Leisure,,Chengdu/SCTS504 (SC),30.599722,104.098611,,1,,7858,65,136,,,,,,51008,,, +1485,CHN,,Gongzhuling RGD Traffic,,Gongzhuling (JL),43.5,124.816667,,1,,7856,43,136,,,,,,51014,,, +1485,CHN,,Panjin RGD News,,Panjin (LN),41.116667,122.05,,1,,7941,46,136,,,,,,51016,,, +1485,CHN,,Jixi RGD Traffic,,Jixi (HL),45.3,130.933333,,1,,7958,38,137,,,,,,36200669,,, +1485,CHN,zh,Shandong RGD Xinwen Pindao,,Liaocheng (SD),36.433333,115.966667,,1,,8044,53,137,,2125-1700,1234567,,,51006,,, +1485,CHN,,Shiyan RGD,,Shiyan (HU),32.613889,110.841944,,1,,8090,59,138,,,,,,51017,,, +1485,CHN,,Chuxiong RGD,,Chuxiong (YN),25.033333,101.466667,,1,,8167,70,139,,,,,,51009,,, +1485,CHN,,Wuzhou RGD,,Wuzhou (GX),23.482222,111.293611,,3,,8921,64,139,,2200-1600,1234567,,,51020,,, +1485,CHN,,Yunnan RGD Xinwen Guangbo,,Ximeng/Mengka Zhen (YN),22.736111,99.456944,,1,,8233,73,139,,2210-1555,1234567,,,51018,,, +1485,CHN,zh,Shandong RGD Xinwen Pindao,,Weihai (SD),37.516667,122.116667,,1,,8270,48,140,,2125-1700,1234567,,,36200315,,, +1485,CHN,,Honghe RGD,,Jinping (YN),24.05,104.2,,1,,8427,69,141,,,,,,51012,,, +1485,KOR,ko,HLQS KBS 1 R,,Gongju (ccg),36.473889,127.129167,,1,,8615,45,142,,0000-2400,1234567,,,51060,,, +1485,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Lingshan (GX),22.416667,109.283333,,1,,8890,66,143,,2200-1600,1234567,,,51015,,, +1485,CHN,,Guilin RGD,,Guilin/GXTS240 (GX),25.396278,110.323667,,1,,8692,64,143,,,,,,51010,,, +1485,CHN,,Jiujiang RGD City Life,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,,,,,51013,,, +1485,CHN,zh,CNR 1,,Yichun/JXTS811 (JX),27.8,114.416667,,1,,8724,59,143,,2025-1805,1234567,,,36200666,,, +1485,J,,JOGO RAB, Aomori Hoso,,Hachinohe (toh-aom),40.5,141.466667,,1,,8842,33,143,,0000-2400,1234567,,,51040,, +1485,KOR,,HLQU KBS 1 R,,Goheung (jen),34.598889,127.276111,,1,,8798,46,143,,0000-2400,1234567,,,51059,,, +1485,PHL,,DYDH-AM (r:666 DZRH-AM),,Iloilo City (ilo),10.716667,122.566667,,5,,10769,63,143,,,,,,51061,,, +1485,AFS,en,R Today,,Johannesburg/Marks Park (GT),-26.161317,28.003572,,1,,8954,160,144,,0000-2400,1234567,,,2542,,, +1485,J,,JOPL KRY, Yamaguchi Hoso,,Hagi (chg-yam),34.416667,131.416667,,1,,9013,43,144,,0000-2400,1234567,,,51041,, +1485,TWN,,Fenlin Nan Tien Tientai,,Kaohsiung (KHS),22.633333,120.283333,,1,,9534,58,145,,,,164,,51623,,, +1485,BOL,,CP135 R LV del Valle,,Punata (cbb),-17.566667,-65.783333,,1,,10385,245,148,,1000-0300,1234567,,,36641,,, +1485,BIO,en,AFN,,Diego Garcia (dga),-7.260911,72.378372,,0.25,,9059,114,150,,0000-2400,1234567,,,51005,,, +1485,J,,JOYS STV, Sapporo TV Hoso,,Kitami (hok),43.816667,143.866667,,0.1,,8595,30,152,,0000-2400,1234567,,,51045,, +1485,J,,JOTO ABS, Akita Hoso,,Asamai (toh-aki),39.25,140.5,,0.1,,8929,34,153,,0000-2400,1234567,,,51037,, +1485,J,,RAB, Aomori Hoso,,Fukaura (toh-aom),40.633333,139.916667,,0.1,,8770,34,153,,0000-2400,1234567,,,51038,, +1485,J,,RAB, Aomori Hoso,,Towada (toh-aom),40.6,141.233333,,0.1,,8823,33,153,,0000-2400,1234567,0,,51053,, +1485,J,,BSN Niigata Hoso,,Shiozawa (chu-nii),37.016667,138.85,,0.1,,9086,37,154,,0000-2400,1234567,,,51051,,, +1485,J,,BSS Sanin Hoso,,Ota (chg-shi),35.183333,132.5,,0.1,,8990,42,154,,0000-2400,1234567,,,51050,,, +1485,J,,CBC Chubu-Nippon Hoso,,Ueno (kns-mie),34.75,136.116667,,0.1,,9193,40,154,,0000-2400,1234567,,,51055,,, +1485,J,,JOAE CBC Chubu-Nippon Hoso,,Toyohashi (chu-aic),34.75,137.4,,0.1,,9249,39,154,,0000-2400,1234567,,,51054,,, +1485,J,,JOBE KBS, Kinki Hoso,,Fukuchiyama (kns-kyo),35.3,135.133333,,0.1,,9097,40,154,,0000-2400,1234567,,,51039,, +1485,J,,JOIM KBC, Kyushu Asahi Hoso,,Omuta (kyu-fuk),33.033333,130.433333,,0.1,,9099,45,154,,0000-2400,1234567,,,51049,, +1485,J,,JOSN Tokai Hoso,,Takayama (chu-gif),36.15,137.266667,,0.1,,9105,38,154,,0000-2400,1234567,,,51052,,, +1485,J,,JOTM Tokai Hoso,,Gero (chu-gif),35.8,137.233333,,0.1,,9138,38,154,,0000-2400,1234567,,,51058,,, +1485,J,,KBC, Kyushu Asahi Hoso,,Yukuhashi (kyu-fuk),33.733333,131.016667,,0.1,,9060,44,154,,0000-2400,1234567,,,51057,, +1485,J,,MRO, Hokoriku Hoso,,Yamanaka (chu-ish),36.233333,136.366667,,0.1,,9059,39,154,,0000-2400,1234567,,,51056,, +1485,J,,SBC, Shinetsu Hoso,,Karuizawa (chu-nag),36.333333,138.616667,,0.1,,9143,37,154,,0000-2400,1234567,,,51044,, +1485,J,,WBS, Wakayama Hoso,,Hashimoto (kns-wak),34.3,135.583333,,0.1,,9214,40,154,,0000-2400,1234567,,,51042,, +1485,J,,WBS, Wakayama Hoso,,Koyasan (kns-wak),34.2,135.583333,,0.1,,9224,40,154,,0000-2400,1234567,,,51046,, +1485,J,,JORL RF R Nippon,,Odawara (kan-kgw),35.3,139.166667,,0.1,,9268,37,155,,0000-2400,1234567,,,51048,,, +1485,J,,Tokai Hoso,,Kumano (kns-mie),33.866667,136.083333,,0.1,,9278,40,155,,0000-2400,1234567,,,51047,,, +1485,INS,id,RKPD Madiun,,Madiun/Caruban (JI-mad),-7.55,111.65,,0.5,,11708,83,156,,,,,,35400093,,, +1485,AUS,,5LN ABC West Coast SA,,Port Lincoln/Cardiff Road (SA),-34.729478,135.879536,,0.2,,15611,84,172,,0000-2400,1234567,,,51002,,, +1485,AUS,,4HU ABC Northwest QLD,,Hughenden/Flinders Hwy (QLD),-20.842694,144.185694,,0.1,,15000,62,173,,0000-2400,1234567,,,51001,,, +1485,NZL,,LiveSPORT,,Gisborne/Wainui (GIS),-38.693889,178.062778,,1,,18390,27,175,,,,,,32500001,,, +1485,AUS,,2EA SBS National,,Wollongong/Windang (NSW),-34.517625,150.875119,,0.2,,16591,69,176,,0000-2400,1234567,,,51004,,, +1485,AUS,,2RN ABC National,,Wilcannia (NSW),-31.552778,143.379722,,0.1,,15868,74,176,,0000-2400,1234567,,,51003,,, +1490,USA,,WTVL,,Waterville (ME),44.564444,-69.610833,,1,,5420,293,111,,,,,,42564,,, +1490,USA,,WBAE,,Portland (ME),43.663333,-70.271389,,1,,5523,293,112,,,,999,,40796,,, +1490,USA,,WEMJ,,Laconia (NH),43.541389,-71.4625,,1,,5606,293,113,,,,,,41299,,, +1490,USA,,WIKE,,Newport (VT),44.941111,-72.226389,,1,,5557,295,113,,,,,,41746,,, +1490,USA,en,WKDR,,Berlin (NH),44.482778,-71.177222,,0.93,,5523,294,113,,,,,,20012535,,, +1490,USA,es,WCEC,,Haverhill (MA),42.772778,-71.100278,,1,,5637,292,113,,,,,,40965,,, +1490,USA,,WFAD,,Middlebury (VT),43.999167,-73.159722,,1,,5680,295,114,,,,,,41352,,, +1490,USA,,WICY,,Malone (NY),44.846111,-74.268611,,1,,5689,296,114,,,,,,41728,,, +1490,USA,,WKVT,,Brattleboro (VT),42.8475,-72.582222,,1,,5725,293,114,,,,,,42090,,, +1490,USA,,WMRC,,Milford (MA),42.136667,-71.513889,,1,,5708,292,114,,,,,,42382,,, +1490,USA,,WCSS,,Amsterdam (NY),42.961111,-74.176389,,1,,5817,294,115,,,,,,41089,,, +1490,USA,,WUVR,,Lebanon (NH),43.653333,-72.237778,,0.64,,5647,294,115,,,,,,43273,,, +1490,USA,,WACM,,West Springfield (DN) (Aux) (MA),42.101667,-72.623056,,0.83,,5781,292,116,,,,,,20016294,,, +1490,USA,,WACM,,West Springfield (U) (MA),42.098611,-72.629167,,0.83,,5782,292,116,,,,,,40642,,, +1490,USA,,WCDO,,Sidney (NY),42.323333,-75.3825,,1,,5938,294,116,,,,,,40972,,, +1490,USA,,WGCH,,Greenwich (CT),41.026944,-73.633056,,1,,5923,292,116,,,,,,41486,,, +1490,USA,,WKNY,,Kingston (NY),41.936389,-74.008333,,1,,5880,293,116,,,,,,42052,,, +1490,USA,,WOLF,,Syracuse (NY),43.058333,-76.166667,,1,,5933,295,116,,,,,,42595,,, +1490,USA,,WDLC,,Port Jervis (NY),41.363611,-74.678056,,1,,5964,293,117,,,,,,41173,,, +1490,USA,,WAZL,,Hazleton (PA),40.94,-75.967778,,1,,6076,293,118,,,,,,40789,,, +1490,USA,,WBCB,,Levittown (PA),40.168889,-74.835556,,1,,6062,292,118,,,,,,40819,,, +1490,USA,,WNBT,,Wellsboro (PA),41.744722,-77.293056,,1,,6099,295,118,,,,,,42439,,, +1490,USA,,WRCE,,Watkins Glen (NY),42.352222,-76.868333,,0.88,,6028,295,118,,,,,,43244,,, +1490,USA,,WBTA,,Batavia (NY),42.976389,-78.186667,,0.71,,6063,297,119,,,,,,40913,,, +1490,USA,,WESB,,Bradford (PA),41.965,-78.616944,,1,,6164,296,119,,,,,,41324,,, +1490,USA,,WARK,,Hagerstown (MD),39.626389,-77.711111,,1,,6284,293,120,,,,,,40740,,, +1490,USA,,WMGW,,Meadville (PA),41.631389,-80.176944,,1,,6285,297,120,,,,,,42321,,, +1490,USA,,WNTJ,,Johnstown (PA),40.323611,-78.896944,,1,,6305,295,120,,,,,,43052,,, +1490,USA,,WTIQ,,Manistique (MI),45.964167,-86.276944,,1,,6318,304,120,,,,,,43142,,, +1490,USA,,WERE,,Cleveland Heights (OH),41.513333,-81.601389,,1,,6381,297,121,,,,,,41898,,, +1490,USA,,WLPA,,Lancaster (PA),40.060556,-76.316389,,0.6,,6163,293,121,,,,,,42214,,, +1490,USA,,WMPX,,Midland (MI),43.613333,-84.221389,,1,,6377,301,121,,,,,,42379,,, +1490,USA,,WOHI,,East Liverpool (OH),40.629722,-80.6025,,1,,6387,296,121,,,,,,42574,,, +1490,USA,,WTCS,,Fairmont (WV),39.471944,-80.140556,,1,,6447,295,121,,,,,,43123,,, +1490,USA,en,WXTG,,Hampton (VA),37.030556,-76.375556,,0.97,,6397,290,121,,,,,,42227,,, +1490,USA,,WABJ,,Adrian (MI),41.900556,-84.014167,,1,,6496,299,122,,,,,,40629,,, +1490,USA,,WKLQ,,Whitehall (MI),43.384444,-86.325,,1,,6518,302,122,,,,,,43251,,, +1490,USA,,WMOA,,Marietta (OH),39.419167,-81.476389,,1,,6534,295,122,,,,,,42363,,, +1490,USA,,WMRN,,Marion (OH),40.613889,-83.129722,,1,,6542,297,122,,,,,,42386,,, +1490,USA,,WPAK,,Farmville (VA),37.313056,-78.394722,,1,,6504,292,122,,,,,,42642,,, +1490,USA,en,WBSS r:WTKU,,Pleasantville (NJ),39.39,-74.5125,,0.4,,6099,291,122,,,,,,43269,,, +1490,CAN,en,CBPP,,PEI National Park (PE),46.486389,-63.313611,,0.02,,4897,292,123,,,,,,20109217,,, +1490,USA,,WBEX,,Chillicothe (OH),39.331111,-82.996944,,1,,6634,296,123,,,,,,40837,,, +1490,USA,,WCVA,,Culpeper (VA),38.484444,-77.989444,,0.68,,6388,292,123,,,,,,41106,,, +1490,USA,,WDUR,,Durham (NC),35.9675,-78.888333,,1,,6640,291,123,,,,,,41216,,, +1490,USA,,WIGM,,Medford (WI),45.164167,-90.341111,,1,,6607,306,123,,,,,,41739,,, +1490,USA,,WOSH,,Oshkosh (WI),44.045833,-88.529167,,1,,6593,304,123,,,,,,42624,,, +1490,USA,,WRMT,,Rocky Mount (NC),35.9325,-77.830278,,1,,6575,290,123,,,,,,42885,,, +1490,USA,,WSGB,,Sutton (WV),38.653056,-80.719444,,0.9,,6546,294,123,,,,,,42989,,, +1490,USA,,WSWW,,Charleston (WV),38.357778,-81.616667,,1,,6625,295,123,,,,,,43091,,, +1490,USA,,WWNB,,New Bern (NC),35.133056,-77.065556,,1,,6589,289,123,,,,,,43409,,, +1490,USA,en,KQDS,,Duluth (MN),46.724444,-92.119722,,1,,6582,308,123,,,,,,39189,,, +1490,USA,,WAEY,,Princeton (WV),37.389722,-81.099444,,1,,6669,294,124,,,,,,40661,,, +1490,USA,,WAZZ,,Fayetteville (NC),35.068333,-78.9025,,1,,6712,290,124,,,,,,40793,,, +1490,USA,,WGEZ,,Beloit (WI),42.495833,-89.0175,,1,,6743,303,124,,,,,,41498,,, +1490,USA,,WKBV,,Richmond (IN),39.828056,-84.9325,,1,,6713,298,124,,,,,,41969,,, +1490,USA,,WLOE,,Eden (NC),36.505833,-79.771667,,1,,6654,292,124,,,,,,42203,,, +1490,USA,,WPNA,,Oak Park (IL),41.881111,-87.793889,,1,,6721,301,124,,,,,,42716,,, +1490,USA,,WSIP,,Paintsville (KY),37.805833,-82.766944,,1,,6740,295,124,,,,,,43004,,, +1490,USA,,WWIL,,Wilmington (NC),34.231111,-77.955,,1,,6717,289,124,,,,988,,43385,,, +1490,USA,,KXRA,,Alexandria (MN),45.868333,-95.363056,,1,,6824,309,125,,,,,,39820,,, +1490,USA,,WDAN,,Danville (IL),40.149444,-87.626389,,1,,6848,300,125,,,,,,41122,,, +1490,USA,,WDBQ,,Dubuque (IA),42.502778,-90.706667,,1,,6839,304,125,,,,,,41130,,, +1490,USA,,WKYW,,Frankfort (KY),38.203333,-84.913611,,1,,6840,297,125,,,,,,41393,,, +1490,USA,,WLFN,,La Crosse (WI),43.828333,-91.240833,,1,,6763,305,125,,,,,,42161,,, +1490,USA,,WOPI,,Bristol (VA),36.595833,-82.161667,,1,,6798,294,125,,,,,,42614,,, +1490,USA,,WSTP,,Salisbury (NC),35.688333,-80.495556,,1,,6765,292,125,,,,,,43074,,, +1490,USA,,WSVM,,Valdese (NC),35.734167,-81.567778,,1,,6829,293,125,,,,,,43085,,, +1490,USA,,KLGR,,Redwood Falls (MN),44.5425,-95.1325,,1,,6919,308,126,,,,,,38810,,, +1490,USA,,KOVC,,Valley City (ND),46.913333,-98.017222,,1,,6877,311,126,,,,,,39112,,, +1490,USA,,KRIB,,Mason City (IA),43.135,-93.207778,,1,,6928,306,126,,,,,,39247,,, +1490,USA,,WFXY,,Middlesboro (KY),36.613056,-83.709444,,1,,6893,295,126,,,,,,41463,,, +1490,USA,,WGCD,,Chester (SC),34.698333,-81.201667,,1,,6888,291,126,,,,,,41485,,, +1490,USA,,WZOE,,Princeton (IL),41.352222,-89.468056,,1,,6860,302,126,,,,,,43585,,, +1490,USA,,WCLU,,Glasgow (KY),36.983889,-85.872222,,1,,6996,296,127,,,,,,41031,,, +1490,USA,,WCSV,,Crossville (TN),35.950278,-85.035833,,1,,7028,295,127,,,,,,41091,,, +1490,USA,,WITA,,Knoxville (TN),35.969722,-83.965556,,1,,6960,294,127,,,,,,41813,,, +1490,USA,,WPCI,,Greenville (SC),34.851944,-82.415,,1,,6953,292,127,,,,,,42657,,, +1490,USA,,WTQS,,Cameron (SC),33.5525,-80.743889,,1,,6951,290,127,,,,,,20000011,,, +1490,USA,,WVGB,,Beaufort (SC),32.435556,-80.698333,,1,,7038,289,127,,,,,,43295,,, +1490,VEN,es,YVXD La Dinmica,,Caracas (dcf),10.5,-66.916667,,10,,7952,263,127,,,,13,,51704,,, +1490,CAN,en,CJSN,,Shaunavon (SK),49.641389,-108.4875,,1,,7148,319,128,,,,,,36223,,, +1490,USA,,KBUR,,Burlington (IA),40.823889,-91.1425,,0.76,,6999,303,128,,,,,,38109,,, +1490,USA,,KORN,,Mitchell (SD),43.703889,-97.999167,,1,,7142,309,128,,,,,,39100,,, +1490,USA,,WCHM,,Clarkesville (GA),34.6075,-83.5375,,0.88,,7043,293,128,,,,,,40996,,, +1490,USA,,WCOR,,Lebanon (TN),36.207222,-86.2675,,1,,7083,296,128,,,,,,41014,,, +1490,USA,,WJOC,,Chattanooga (TN),35.051944,-85.273333,,1,,7116,294,128,,,,,,41910,,, +1490,USA,,WKUN,,Monroe (GA),33.810278,-83.700278,,1,,7118,292,128,,,,,,42083,,, +1490,USA,,WOMI,,Owensboro (KY),37.741389,-87.116111,,0.83,,7011,298,128,,,,,,42598,,, +1490,USA,,WQQX,,East St. Louis (IL),38.621111,-90.16,,1,,7121,300,128,,,,,,41325,,, +1490,USA,,WSNT,,Sandersville (GA),32.973056,-82.809444,,1,,7130,291,128,,,,,,43039,,, +1490,USA,,WSYL,,Sylvania (GA),32.730833,-81.617778,,1,,7073,290,128,,,,,,43094,,, +1490,USA,,WYYZ,,Jasper (GA),34.475556,-84.436944,,1,,7110,293,128,,,,,,43560,,, +1490,USA,,KNDC,,Hettinger (ND),46.019722,-102.6925,,1,,7188,313,129,,,,997,,38971,,, +1490,USA,,KOMJ,,Omaha (NE),41.233056,-95.967222,,1,,7238,306,129,,,,,,20016080,,, +1490,USA,,WJJM,,Lewisburg (TN),35.450833,-86.7825,,1,,7177,296,129,,,,,,41887,,, +1490,USA,,WKRO,,Cairo (IL),37.043333,-89.183889,,1,,7192,299,129,,,,,,42065,,, +1490,PTR,es,WDEP,,Ponce (PR),17.981111,-66.614167,,1,,7287,268,130,,,,998,,41151,,, +1490,USA,,KTTR,,Rolla (MO),37.945,-91.746111,,1,,7270,301,130,,,,,,39546,,, +1490,USA,,WDXL,,Lexington (TN),35.634722,-88.392778,,1,,7260,297,130,,,,,,41226,,, +1490,USA,,WEKI,,Decatur (AL),34.587222,-86.986944,,1,,7260,295,130,,,,,,40681,,, +1490,USA,,WRLA,,West Point (GA),32.873889,-85.192222,,1,,7289,293,130,,,,,,42875,,, +1490,USA,en,WFZX,,Anniston (AL),33.6875,-85.830278,,1,,7262,294,130,,,,,,40721,,, +1490,VEN,,YVRP R El Sol,,Maracaibo (zul),10.666667,-71.616667,,10,,8257,267,130,,0000-2400,1234567,,,51705,,, +1490,USA,,KDRO,,Sedalia (MO),38.676389,-93.255,,0.78,,7297,302,131,,,,,,38289,,, +1490,USA,,KDRS,,Paragould (AR),36.050278,-90.462222,,1,,7351,299,131,,,,,,38290,,, +1490,USA,,KTOP,,Topeka (KS),39.0775,-95.679444,,1,,7402,304,131,,,,,,39527,,, +1490,USA,,KXLQ,,Indianola (IA),41.356667,-93.587778,,0.5,,7095,305,131,,,,,,39802,,, +1490,USA,,WHBB,,Selma (AL),32.433889,-87.011111,,1,,7439,294,131,,,,,,41603,,, +1490,USA,,WMOG,,Brunswick (GA),31.161667,-81.474444,,0.6,,7191,289,131,,,,9982,,42365,,, +1490,USA,,WSFB,,Quitman (GA),30.780833,-83.575,,1,,7358,290,131,,,,,,42984,,, +1490,USA,,WTJV,,Deland (FL),29.018056,-81.299722,,1,,7356,287,131,,,,,,42447,,, +1490,USA,,WTTB,,Vero Beach (FL),27.62,-80.416944,,1,,7414,286,131,,,,,,43221,,, +1490,USA,,WTUP,,Tupelo (MS),34.255,-88.69,,1,,7392,296,131,,,,,,43230,,, +1490,CAN,en,CFNC,,Cross Lake (MB),54.624444,-97.7825,,0.05,,6249,318,132,,,,,,20109216,,, +1490,USA,,KBSR,,Laurel (MT),45.653056,-108.7525,,1,,7511,317,132,,,,,,38097,,, +1490,USA,,KDMO,,Carthage (MO),37.182778,-94.361944,,1,,7486,302,132,,,,,,38282,,, +1490,USA,,KFCR,,Custer (SD),43.7175,-103.583333,,0.83,,7430,312,132,,,,,,38380,,, +1490,USA,,KKAN,,Phillipsburg (KS),39.792222,-99.331944,,1,,7544,307,132,,,,,,38703,,, +1490,USA,,WHOC,,Philadelphia (MS),32.764444,-89.13,,1,,7543,295,132,,,,,,41674,,, +1490,USA,,WIRB,,Level Plains (AL),31.299444,-85.790556,,1,,7456,292,132,,,,,,41797,,, +1490,USA,,WSIR,,Winter Haven (FL),28.013889,-81.750556,,1,,7468,287,132,,,,,,43005,,, +1490,USA,en,WMBM,,Miami Beach (FL),25.769444,-80.136389,,1,,7549,284,132,,,,,,42283,,, +1490,USA,,KGOS,,Torrington (WY),42.072222,-104.227778,,1,,7606,312,133,,,,,,38506,,, +1490,USA,,KWXT,,Dardanelle (AR),35.218889,-93.127222,,1,,7579,300,133,,,,,,39769,,, +1490,USA,,WCLD,,Cleveland (MS),33.733611,-90.713889,,1,,7559,297,133,,,,,,41023,,, +1490,USA,,WTKE,,Milton (FL),30.625,-87.048333,,1,,7592,292,133,,,,,,41247,,, +1490,CUB,es,R Mayar,,Mayar (ho),20.664344,-75.688744,,1,,7678,277,134,,,,4,,36574,,, +1490,USA,,KDBM,,Dillon (MT),45.236389,-112.645833,,1,,7727,319,134,,,,0,,38240,,, +1490,USA,,WAFZ,,Immokalee (FL),26.409444,-81.43,,0.7,,7581,285,134,,,,,,40664,,, +1490,USA,,WVBG,,Vicksburg (MS),32.345556,-90.867222,,1,,7685,296,134,,,,,,20016020,,, +1490,USA,,WWPR,,Bradenton (FL),27.476667,-82.535833,,0.8,,7564,287,134,,,,9875,,43424,,, +1490,USA,en,WXBD,,Biloxi (MS),30.393889,-88.999444,,1,,7734,294,134,,,,,,43455,,, +1490,USA,,KCFC,,Boulder (CO),40.028333,-105.251667,,1,,7838,311,135,,,,,,38140,,, +1490,USA,,KJNT,,Jackson (WY),43.474444,-110.768611,,1,,7801,317,135,,,,,,20000066,,, +1490,USA,,KMFS,,Guthrie (OK),35.882222,-97.392778,,1,,7771,303,135,,,,,,38896,,, +1490,USA,,KRUS,,Ruston (LA),32.513333,-92.665556,,1,,7780,298,135,,,,,,39308,,, +1490,USA,en,KEYG,,Grand Coulee (WA),47.884444,-118.972222,,0.96,,7750,324,135,,,,1,,38357,,, +1490,USA,,KEUN,,Eunice (LA),30.471389,-92.414167,,1,,7939,296,136,,,,,,38346,,, +1490,USA,,KJIN,,Houma (LA),29.570556,-90.728333,,1,,7912,294,136,,,,,,38669,,, +1490,USA,,KPLT,,Paris (TX),33.635278,-95.553889,,1,,7857,300,136,,,,,,39144,,, +1490,USA,,KRTK,,Chubbuck (ID),42.927222,-112.500833,,1,,7932,317,136,,,,,,39301,,, +1490,USA,,KUGR,,Green River (WY),41.515556,-109.436389,,1,,7915,315,136,,,,,,39568,,, +1490,USA,,KXAR,,Hope (AR),33.688889,-93.598611,,0.7,,7737,299,136,,,,,,39778,,, +1490,USA,,KXRE,,Manitou Springs (CO),38.861944,-104.925556,,1,,7924,310,136,,,,,,39822,,, +1490,USA,,KYZS,,Tyler (TX),32.374444,-95.273333,,1,,7949,299,136,,,,,,39882,,, +1490,USA,en,KTEL,,Walla Walla (WA),46.0425,-118.333333,,1,,7898,323,136,,,,,,39468,,, +1490,USA,en,KYNR,,Toppenish (WA),46.375833,-120.321667,,1,,7947,324,136,,,,992,,39863,,, +1490,USA,es,KBRO,,Bremerton (WA),47.564444,-122.657222,,1,,7924,326,136,,,,,,38089,,, +1490,CLM,es,HJZB LV de los Robles,,Tulu (val),4.066667,-76.216667,,5,,9147,267,137,,,,94,,52459,,, +1490,DOM,,HIAP LV del Cibao,,Moca (esp),19.383333,-70.516667,,0.25,,7435,272,137,,0000-2400,1234567,,,37207,,, +1490,USA,,KBIX,,Muskogee (OK),35.782222,-95.376944,,0.45,,7664,302,137,,,,,,38040,,, +1490,USA,,KBKR,,Baker (OR),44.788333,-117.809722,,1,,7994,322,137,,,,,,38049,,, +1490,USA,,KCID,,Caldwell (ID),43.664167,-116.636111,,1,,8049,320,137,,,,995,,38155,,, +1490,USA,,KQTY,,Borger (TX),35.684722,-101.388889,,1,,8014,306,137,,,,,,39206,,, +1490,USA,,KVWC,,Vernon (TX),34.153333,-99.269167,,1,,8028,303,137,,,,,,39678,,, +1490,USA,,KWUD,,Woodville (TX),30.747778,-94.432222,,1,,8038,298,137,,,,,,39763,,, +1490,USA,en,KFKB,,Forks (WA),47.953889,-124.388889,,1,,7950,328,137,,,,,,39608,,, +1490,B,pt,ZYH246 Emisora Rio So Francisco,,Penedo (AL),-10.285,-36.544167,,1,,8057,225,138,,,,,,36902488,,, +1490,MEX,es,XEKN-AM R Variedades,,Huetamo de Nuez (mic),18.626944,-100.899167,,5,,9504,295,138,,,,,,44263,,, +1490,USA,,KHVL,,Huntsville (TX),30.696667,-95.552222,,1,,8110,298,138,,,,,,38569,,, +1490,USA,,KNAM,,Silt (CO),39.560278,-107.651389,,0.74,,8002,312,138,,,,,,20016096,,, +1490,USA,,KOGN,,Ogden (UT),41.239722,-111.982778,,1,,8062,316,138,,,,,,39847,,, +1490,USA,,KPKE,,Gunnison (CO),38.565833,-106.925556,,1,,8054,311,138,,,,,,39143,,, +1490,USA,,KRTN,,Raton (NM),36.886667,-104.443056,,1,,8074,308,138,,,,,,39302,,, +1490,USA,en,KLOG,,Kelso (WA),46.116667,-122.885278,,1,,8072,326,138,,,,,,38838,,, +1490,USA,en,KWOK,,Hoquiam (WA),46.972222,-123.8525,,0.82,,8026,327,138,,,,995,,39740,,, +1490,PNR,es,Asamblea Nacional,,Penonom/Llano Marn (ccl),8.506111,-80.3375,,3,,9041,273,139,,,,,,35100009,,, +1490,USA,,KBZY,,Salem (DN) (OR),44.881667,-122.985,,1,,8195,325,139,,,,,,20016216,,, +1490,USA,,KBZY,,Salem (U) (OR),44.950833,-123.045278,,1,,8190,325,139,,,,,,38116,,, +1490,USA,,KCPX,,Spanish Valley (UT),38.467778,-109.438333,,1,,8191,313,139,,,,,,20016091,,, +1490,USA,,KZZN,,Littlefield (TX),33.938056,-102.343889,,1,,8221,305,139,,,,,,39917,,, +1490,USA,,KBST,,Big Spring (TX),32.262222,-101.460278,,1,,8319,303,140,,,,,,38098,,, +1490,USA,,KNEL,,Brady (TX),31.13,-99.3225,,1,,8296,301,140,,,,,,38982,,, +1490,USA,,KRSN,,Los Alamos (D/N) (NM),35.893889,-106.293056,,1,,8261,309,140,,,,,,20016195,,, +1490,USA,,KRSN,,Los Alamos (U) (NM),35.893889,-106.293056,,1,,8261,309,140,,,,,,39296,,, +1490,USA,en,KLGO,,Austin (TX),30.253611,-97.706944,,1,,8277,300,140,,,,,,38419,,, +1490,USA,,KIBL,,Beeville (TX),28.385556,-97.728333,,1,,8442,298,141,,,,,,38575,,, +1490,USA,,KSKR,,Roseburg (OR),43.193056,-123.360833,,1,,8373,325,141,,,,,,39275,,, +1490,VEN,,YVSQ R Merida 14-90,,Mrida (mrd),8.566667,-71.25,,1,,8415,266,141,,0000-2400,1234567,3,,45458,,, +1490,CLM,es,HJAY R Vida Nueva,,Barranquilla (atl),10.916667,-74.866667,,1,,8457,270,142,,,,9802,,37339,,, +1490,USA,,KBLF,,Red Bluff (CA),40.191111,-122.215,,1,,8618,322,142,,,,,,38053,,, +1490,USA,,KLNT,,Laredo (TX),27.494722,-99.471111,,1,,8625,299,142,,,,,,38833,,, +1490,USA,,KRUI,,Ruidoso Downs (NM),33.321389,-105.59,,1,,8455,307,142,,,,,,39306,,, +1490,USA,,KSYC,i,Yreka (CA),41.724444,-122.65,,1,,8487,323,142,,,,,,39446,,, +1490,USA,,KWMC,,Del Rio (TX),29.371389,-100.865278,,1,,8541,301,142,,,,,,39730,,, +1490,USA,en,KLZN,,Susanville (D) (CA),40.443889,-120.643056,,0.95,,8527,321,142,,,,,,20016260,,, +1490,CAN,en,CKBV,,New Hazelton (BC),55.249167,-127.580278,,0.05,,7349,333,143,,,,,,20109210,,, +1490,CLM,es,HJJO,,San Marcos (suc),8.616667,-75.116667,,1,,8675,269,143,,,,,,37610,,, +1490,MEX,es,XEMS-AM R Mexicana,,Matamoros (tam),25.862794,-97.571669,,1,,8655,297,143,,,,,,44408,,, +1490,USA,,KCUZ,,Clifton (AZ),33.041667,-109.294444,,1,,8679,309,143,,,,,,38224,,, +1490,USA,,KFFN,,Tucson (AZ),32.248889,-110.924722,,1,,8838,310,143,,,,,,38385,,, +1490,USA,,KOWL,,South Lake Tahoe (CA),38.942778,-119.956944,,1,,8641,320,143,,,,9965,,39116,,, +1490,USA,,KTOB,,Petaluma (CA),38.226944,-122.621389,,1,,8825,322,143,,,,24,,39522,,, +1490,USA,,KYCA,,Prescott (AZ),34.550833,-112.4625,,1,,8703,313,143,,,,0,,39841,,, +1490,USA,,KZZZ,,Bullhead City (AZ),35.168889,-114.637778,,1,,8753,314,143,,,,,,39919,,, +1490,USA,en,KLZN,,Susanville (N) (CA),40.443889,-120.643056,,0.87,,8527,321,143,,,,,,20016259,,, +1490,CLM,es,HJBS R Punto 5,,Bogot D. C. (bdc),4.566667,-74.116667,,1,,8961,265,144,,,,9987,,37356,,, +1490,CLM,es,HJTC,,Sonson (ant),5.716667,-75.316667,,1,,8942,267,144,,,,,,37640,,, +1490,EQA,,HCSM5 R Santa Mara,,Azogues (can),-2.75,-78.85,,2,,9926,265,144,,0930-0330,1234567,,,2184,,, +1490,HND,,HRLP23,,El Progreso (yor),15.366667,-87.783333,,1,,8946,283,144,,,,,,37787,,, +1490,MEX,es,XECJC-AM R Net,,Ciudad Jurez (chi),31.733611,-106.474722,,0.8,,8647,307,144,,,,,,43846,,, +1490,MEX,es,XEFF-AM La Nortea,,Matehuala (slp),23.644722,-100.640556,,1,,9038,298,144,,,,,,44003,,, +1490,MEX,es,XEYT-AM R Teocelo,,Teocelo (vcz),19.380172,-96.977767,,1,,9191,292,144,,,,,,45107,,, +1490,USA,,KMET,,Banning (CA),33.930278,-116.922222,,1,,8980,315,144,,,,,,38895,,, +1490,USA,,KRKC,,King City (CA),36.226111,-121.123889,,1,,8954,320,144,,,,,,39252,,, +1490,USA,es,KSPE,,Santa Barbara (CA),34.418611,-119.686111,,1,,9064,318,144,,,,,,38048,,, +1490,CLM,es,HJAG R Garzn,,Garzn (hui),2.166667,-75.65,,1,,9276,265,145,,,,923,,2048,,, +1490,GTM,,TGRE R Modelo,,Retalhuleu (ret),14.566667,-91.65,,1,,9272,285,145,,0900-0300,1234567,,,40527,,, +1490,MEX,es,XEGT-AM W R,,Zamora/Av. 5 de Mayo 501 (mic),19.98,-102.283333,,1,,9467,297,145,,,,,,44083,,, +1490,PRU,,OBU5C R Los Chankas,,Andahuaylas/Cerro San Jose (apu),-13.661358,-73.386467,,2.5,,10522,254,145,,,,,,37000095,,, +1490,USA,es,KWAC,,Bakersfield (CA),35.348056,-119.009167,,0.64,,8943,318,145,,,,,,39680,,, +1490,EQA,,HCMQ1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,37031,,, +1490,PRU,,OAX8J R Nueva Atlantida,,Iquitos (lor),-3.75,-73.25,,1,,9635,260,146,,,,,,40355,,, +1490,URG,,CX149 R del Oeste,,Nueva Helvecia (co),-34.266667,-57.216667,,4,,11413,229,146,,0930-0300,1234567,,,36795,,, +1490,BOL,,CP172 R San Jos,,San Jos de Chiquitos (scz),-17.844444,-60.738889,,1,,10102,241,147,,1100-2300,......7,,,36667,,, +1490,BOL,,CP172 R San Jos,,San Jos de Chiquitos (scz),-17.844444,-60.738889,,1,,10102,241,147,,1100-2400,123456,,,36667,,, +1490,EQA,,HCBO2,,Guayaquil (gua),-2.2,-79.866667,,1,,9947,266,147,,,,,,36867,,, +1490,USA,,KGBA,,Calexico (CA),32.742222,-115.553056,,0.5,,9026,314,147,,,,,,38579,,, +1490,B,pt,ZYH478 Rdio Educadora de Ipia,,Ipia (BA),-14.13645,-39.724017,,0.25,,8595,226,148,,,,,,36902496,,, +1490,PRU,,OAX1L R Vision,,Chiclayo (lam),-6.7,-79.916667,,1,,10345,263,148,,,,,,40273,,, +1490,B,pt,ZYD999 Vila AM,,Vila Rica (MT),-10.006106,-51.106133,,0.25,,8805,238,149,,,,,,36902483,,, +1490,B,pt,ZYH512 Rdio Planalto do Oeste,,Correntina (BA),-13.351317,-44.621611,,0.25,,8767,230,149,,,,,,36902479,,, +1490,CHL,,CD149 R Malleco,,Victoria (AR),-38.233333,-72.316667,,5,,12588,237,149,,????-0300,1234567,992,,35882,,, +1490,CLM,es,HJJ76,,El Peon (bol),8.983333,-73.95,,0.2,,8563,268,149,,,,,,35901912,,, +1490,EQA,,HCAE4 R Unin,,Esmeraldas (esm),0.966667,-79.716667,,0.5,,9658,268,149,,,,,,36838,,, +1490,EQA,,HCVT7,,Smiguelpilla (tun),-1.166667,-78.533333,,0.5,,9765,265,149,,,,,,37182,,, +1490,MEX,es,XEAQ-AM La Caliente,,Agua Prieta (son),31.327089,-109.568875,,0.25,,8851,309,149,,,,,,43726,,, +1490,B,pt,ZYL231 Rdio Onda Viva,,Araguari (MG),-18.633333,-48.183333,,0.25,,9465,231,151,,,,,,36902477,,, +1490,B,pt,ZYL353 Rdio Pirapetinga,,Pirapetinga (MG),-21.648556,-42.346678,,0.25,,9464,225,151,,,,5,,36902478,,, +1490,INS,id,RKB-R Karya Bersama,,Jakarta/Kemang (JK-kjs),-6.266667,106.816667,,1,,11267,86,151,,,,,,50939,,, +1490,PRU,,OCX4P R La Luz,,Cerro de Pasco (pas),-10.666667,-76.316667,,0.5,,10452,258,151,,,,,,40432,,, +1490,ARG,,R Canaan Celestial,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,,,51883,,, +1490,ARG,,R Gama,,Valentin Alsina (ba),-34.683333,-58.416667,,1,,11514,230,152,,,,,,51860,,, +1490,ARG,es,R Ciudad de Ca-Cat,,Buenos Aires (df),-34.483333,-58.558333,,1,,11503,230,152,,,,,,33000091,,, +1490,ARG,es,R Unidad,,Rafael Calzada (ba),-34.8,-58.366667,,1,,11522,230,152,,,,,,52509,,, +1490,B,pt,ZYK530 Rdio Difusora Olmpia,,Olmpia (SP),-20.736406,-48.901236,,0.25,,9705,230,152,,,,,,36902494,,, +1490,B,pt,ZYK583 Rdio Educadora,,Fernandpolis (SP),-20.287428,-50.261453,,0.25,,9734,232,152,,,,,,36902484,,, +1490,B,pt,ZYK680 Rdio Cultura,,Vargem Grande do Sul (SP),-21.868817,-46.877139,,0.25,,9710,228,152,,,,2,,36902489,,, +1490,B,pt,ZYL274 Rdio Paraispolis,,Paraispolis (MG),-22.559781,-45.780483,,0.25,,9721,227,152,,,,,,36902481,,, +1490,CHL,,CA149 R Alicanto,,Salvador (AT),-26.166667,-69.5,,1,,11380,243,152,,1000-0400,1234567,,,35697,,, +1490,CLM,es,HKW24,,Guaitarilla (nar),1.133333,-77.55,,0.2,,9496,266,152,,,,,,35901903,,, +1490,MEX,es,XESK-AM La Costeita,,Ruiz (nay),21.958056,-105.143056,,0.2,,9460,300,152,,,,,,44751,,, +1490,ARG,,R Vida AM,,Mar del Plata (ba),-38,-57.566667,,1,,11773,227,153,,,,,,51884,,, +1490,B,pt,ZYJ210 Rdio Cornlio AM 1490,,Cornlio Procpio (PR),-23.174722,-50.644444,,0.25,,10030,230,153,,,,,,36902480,,, +1490,B,pt,ZYK580 Rdio Globo,,Dracena (SP),-21.50115,-51.527503,,0.25,,9918,232,153,,,,,,36902499,,, +1490,B,pt,ZYK764 Rdio Imaculada Conceio,,Mau/Rua America do Sul 235 (SP),-23.633983,-46.499583,,0.25,,9861,227,153,,,,,,36902502,,, +1490,BOL,,CP196 R Moxos,,San Ignacio de Moxos (ebn),-14.916667,-65.616667,,0.25,,10135,247,153,,,,,,36681,,, +1490,BOL,,CP198 R Pedro Domingo Murillo,,Quime (lpz),-16.980556,-67.216667,,0.35,,10421,247,153,,1000-1400,1234567,,,36682,,, +1490,USA,en,WPXZ439,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010695,,, +1490,B,,ZYJ217,,Lapa (PR),-25.766667,-49.716667,,0.25,,10229,228,154,,,,,,45943,,, +1490,B,,ZYJ300,,Marechal Cndido Rondon (PR),-24.566667,-54.066667,,0.25,,10345,232,154,,,,,,46023,,, +1490,B,,ZYJ757,,Ibirama (SC),-27.05,-49.516667,,0.25,,10342,228,154,,,,,,46169,,, +1490,B,pt,ZYI404 Rdio Nova Paiagus,,Glria de Dourados (MS),-22.418056,-54.226944,,0.25,,10151,234,154,,,,,,36902495,,, +1490,B,pt,ZYJ347 R.Difusora de So Jorge do Oeste,,So Jorge d'Oeste (PR),-25.693611,-52.909167,,0.25,,10389,231,154,,,,,,36902500,,, +1490,BOL,,R Mairana,,Mairana (scz),-18.116667,-63.933333,,0.25,,10320,244,154,,1100-0300,1234567,,,52058,,, +1490,CAN,en,CBPC-1,,Glacier Park (BC),51.3,-117.501111,,0.005,,7374,325,154,,,,,,20109212,,, +1490,CHL,,CB149 R El Canelo de Nos AM,,San Bernardo (RM),-33.6,-70.7,,1,,12100,239,154,,1100-0400,1234567,,,35741,,, +1490,B,,ZYK341,,Giru (RS),-28.016667,-54.35,,0.25,,10683,231,155,,,,,,46368,,, +1490,B,pt,ZYJ791 Rdio Cultura de Xaxim,,Xaxim (SC),-26.961944,-52.528333,,0.25,,10488,230,155,,,,,,36902492,,, +1490,B,pt,ZYK309 Rdio Taquara AM,,Taquara/Rua Sem Denominaco (RS),-29.673889,-50.778333,,0.25,,10656,227,155,,,,,,36902490,,, +1490,PRU,,OAX5N R Nazca,,Nazca (ica),-14.666667,-74.966667,,0.3,,10714,254,155,,,,,,40324,,, +1490,B,pt,ZYK208 Rdifuso Assisense,,So Francisco de Assis (RS),-29.55,-55.133333,,0.25,,10868,231,156,,,,,,36902486,,, +1490,B,pt,ZYK225 Rdio Liberdade AM,,Canguu (RS),-31.384444,-52.673611,,0.25,,10913,228,156,,,,,,36902476,,, +1490,URG,,CV149 Em. del Centro,,Baltasar Brum (ar),-30.701667,-57.318056,,0.25,,11091,231,157,,,,,,36730,,, +1490,ARG,,LV22 R Huinca Renanco,,Huinca Renanco (cb),-34.85,-64.366667,,0.25,,11849,234,159,,1000-0300,1234567,,,40246,,, +1490,ARG,,LU25 R Carhue,,Carhue (ba),-37.166667,-62.75,,0.1,,11967,231,163,,0900-0330,1234567,,,40221,,, +1494,F,fr,France Info,,Clermont-Ferrand/Ennezat (63),45.910556,3.216667,,20,,727,200,51,,0000-2400,1234567,0,,1552,,, +1494,F,fr,France Bleu Corse Frequenza Mora,,Bastia/Serra di Pigno (20B),42.695833,9.400278,,20,,1070,167,55,,0000-2400,1234567,4,,1553,,, +1494,MDA,ro,R Moldova Actualităţi,,Edineţ (ED),48.182778,27.300556,,20,,1545,98,59,,0400-2200,1234567,,,1558,,, +1494,MDA,ro,R Moldova Actualităţi,,Cahul (CH),45.935,28.275278,,30,,1727,105,60,,0400-2200,1234567,,,1559,,, +1494,I,it,R Speranza,,Pavullo (mo),44.333333,10.833333,,1,,924,158,66,,????-????,9999999,,,1556,,, +1494,IRN,fa,IRIB R Khorasan-e Razavi,,Taybad (rkh),34.736811,60.795147,,10,,4666,92,94,,0000-2400,1234567,995,,1819,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Tacheng=Qoqek/SARFT634 (XJ),46.745556,83.006667,,1,,5310,64,110,,2300-1800,1234567,,,36200003,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Kaba=Habahe/SARFT8114 (XJ),48.075,86.404722,,1,,5428,61,111,,2300-1800,1234567,,,36200234,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,1,,5398,68,111,,2300-1800,1234567,,,36200230,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Akesu=Aksu/XJTS636 (XJ),41.185833,80.280833,,1,,5516,72,112,,2300-1800,1234567,,,36200236,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Bachu/XJTS2041 (XJ),39.815278,78.535833,,1,,5499,74,112,,2300-1800,1234567,,,36200673,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Fuyun=Koktokay/XJTS8115 (XJ),46.994167,89.503889,,1,,5686,60,114,,2300-1800,1234567,,,36200235,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Korla/SARFT8104 (XJ),41.772778,86.214722,,1,,5853,67,116,,2300-1800,1234567,,,36200233,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Mori=Mulei/SARFT8112 (XJ),43.811111,90.274722,,1,,5958,63,117,,2300-1800,1234567,,,36200232,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Turfan/Gaochang Lu-SARFT8101 (XJ),42.957778,89.175833,,1,,5952,65,117,,2300-1800,1234567,,,51071,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Yiwu/XTS8103 (XJ),43.247222,94.699444,,1,,6266,61,120,,2300-1800,1234567,,,36200231,,, +1494,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Hailar=Haila'er/NMTS861 (NM),49.234722,119.722222,,1,,7112,42,128,,2150-1605,1234567,,,51069,,, +1494,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Erenhot=Erlian/NMTS872 (NM),43.618056,111.999722,,1,,7211,50,129,,,,,,36200672,,, +1494,J,,JOYR RSK Sanyo Hoso,,Okayama (chg-oka),34.647222,133.835556,,10,,9102,41,134,,0000-2400,1234567,9998,,51078,,, +1494,THA,th,Or. Sor. Mor. Thor. Modern R,,Bangkok/Phetchakasem Rd (bmp),13.711861,100.360444,,10,,9074,78,134,,0000-2400,1234567,,,51085,,, +1494,TWN,en,BBC WS,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,1500-1600,1234567,,,51086,,, +1494,TWN,en,BBC WS,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,2200-2300,1234567,,,51086,,, +1494,TWN,fr,R France Int.,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,0830-0930,1234567,,,51086,,, +1494,TWN,fr,R France Int.,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,1600-1700,1234567,,,51086,,, +1494,TWN,zh,Chiao Y BS,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,1030-1500,1234567,,,51086,,, +1494,TWN,zh,Chiao Y BS,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,2300-0830,1234567,,,51086,,, +1494,TWN,zh,R France Int.,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,0930-1030,1234567,,,51086,,, +1494,PHL,,DWSS-AM Entertainment R,,Quezon City (ncr),14.633333,120.95,,10,,10310,62,138,,1930-1700,1234567,130,,51083,,, +1494,J,,JOTL HBC, Hokkaido Hoso,,Nayoro (hok),44.35,142.483333,,1,,8494,31,142,,0000-2400,1234567,,,51077,, +1494,CHN,,Wuhu RGD,,Wuhu (AH),31.3,118.4,,1,,8637,54,143,,,,,,51072,,, +1494,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Lianjiang/FJTS902 (FJ),26.206389,119.526111,,1,,9163,56,144,,,,,,36200671,,, +1494,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Fu'an/FJTS903 (FJ),27.111117,119.622122,,1,,9086,56,144,,,,,,51068,,, +1494,J,ja,RSK Sanyo Hoso,,Bizen,34.5,134,,1,,9124,41,144,,,,,,31400108,,, +1494,J,ja,RSK Sanyo Hoso,,Niimi (chg-oka),34.966667,133.466667,,1,,9055,41,144,,,,,,31400110,,, +1494,J,ja,RSK Sanyo Hoso,,Ochiai,34.5,134,,1,,9124,41,144,,,,,,31400107,,, +1494,J,ja,RSK Sanyo Hoso,,Takahashi,34.5,134,,1,,9124,41,144,,,,,,31400111,,, +1494,J,ja,RSK Sanyo Hoso,,Tsuyama (chg-oka),35.05,134,,1,,9071,41,144,,,,,,31400109,,, +1494,PHL,,DXOC-AM,,Ozamis City (moc),8.15,123.816667,,5,,11083,63,144,,1955-1400,1234567,1,,51082,,, +1494,FSM,,V6AI FSMBS R Yap,,Colonia (yap),9.490944,138.077222,,5,,11766,50,146,,2000-1315,1234567,99947,,51080,,, +1494,PNG,,NBC Kundu-R Enga,,Wabag (ega),-5.316667,143.733333,,10,,13512,52,149,,1930-1200,12345..,,,51084,,, +1494,INS,id,R Suara Kasih,,Tahuna (SA-san),3.616667,125.483333,,1,,11605,64,152,,,,,,35400094,,, +1494,J,ja,RSK Sanyo Hoso,,Kasaoka,34.5,134,,0.1,,9124,41,154,,,,,,31400112,,, +1494,AUS,en,2AY,,Albury/Thurgoona (NSW),-36.054489,146.964767,,2,,16455,76,165,,0000-2400,1234567,16,,51066,,, +1494,NZL,,Southern Star/RNZ Parliament,,Hamilton/Eureka (WKO),-37.691878,175.404903,,2.5,,18197,32,170,,,,3,,32500005,,, +1494,NZL,,R Sport,,Timaru/Saint Andrews (CAN),-44.515556,171.198333,,2.5,,18613,59,171,,0000-2400,1234567,11,,51081,,, +1494,LHW,,R Lord Howe Island,,Lord Howe Island (NSW),-31.466667,159.15,,0.1,,16830,55,180,,,,,,51079,,, +1495,BOL,,R Domingo Savio,,Villa Independencia (cbb),-17.116667,-66.883333,,1,,10413,247,148,,,,,,52055,,, +1500,AFG,,R Badghis,,Qalay-e-Naw (bdg),34.983333,63.133333,,6,,4807,90,97,,0133-0330,1234567,994,,11000003,,, +1500,AFG,,R Badghis,,Qalay-e-Naw (bdg),34.983333,63.133333,,6,,4807,90,97,,1330-1630,1234567,994,,11000003,,, +1500,USA,en,WFED,,Washington (DC),39.041944,-77.046389,,50,,6286,292,103,,,,992,,32091,,, +1500,USA,,KSTP,,Saint Paul (D) (MN),45.025556,-93.043889,,50,,6767,307,108,,,,,,20012594,,, +1500,USA,,KSTP,,Saint Paul (N) (MN),45.025556,-93.051667,,50,,6767,307,108,,,,14,,39425,,, +1500,USA,,WFIF,,Milford (CT),41.1925,-73.101389,,5,,5877,292,109,,,,9954,,41385,,, +1500,USA,,WLQV,,Detroit (MI),42.231111,-83.199444,,10,,6422,299,111,,,,3,,42221,,, +1500,AFG,,R Bamiyan,,Bamiyan (bam),34.816667,67.816667,,0.4,,5139,87,112,,1330-1500,1234567,,,46816,,, +1500,USA,en,WGHT,,Pompton Lakes (NJ),40.980833,-74.285,,1,,5967,292,117,,,,9962,,41517,,, +1500,USA,,WBRI,,Indianapolis (IN),39.870556,-86.088056,,5,,6779,299,118,,,,,,40900,,, +1500,AFG,,R Nuristan,,Parun (nur),35.420833,70.922222,,0.1,,5306,84,120,,,,,,11000009,,, +1500,USA,,WDPC,,Dallas (GA),33.944444,-84.824444,,5,,7178,293,122,,,,,,41201,,, +1500,HTI,,Hati Flambeau Carabes,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52124,,, +1500,USA,,WASN,,Youngstown (OH),41.107222,-80.5825,,0.5,,6349,296,123,,,,,,40750,,, +1500,VEN,es,YVRZ R 2000 AM,,Cuman (suc),10.433333,-64.203889,,10,,7774,261,125,,0800-0400,1234567,7,,2195,,, +1500,USA,,WZZQ,,Gaffney (SC),35.088333,-81.644444,,1,,6885,292,126,,,,,,41233,,, +1500,USA,,WBZI,,Xenia (OH),39.713333,-83.913333,,0.5,,6660,297,127,,,,,,40936,,, +1500,USA,,WDEB,,Jamestown (TN),36.425278,-84.942222,,1,,6984,295,127,,,,,,41144,,, +1500,USA,,WVSM,,Rainsville (AL),34.498889,-85.842778,,1,,7196,294,129,,,,,,43344,,, +1500,USA,en,WAYS,,Macon (GA),32.813056,-83.626667,,1,,7194,292,129,,1200-2400,1234567,,,43371,,, +1500,USA,,KDFN,,Doniphan (D) (MO),36.614167,-90.822778,,1,,7326,299,130,,1300-0100,1234567,,,38254,,, +1500,USA,,WKAX,,Russellville (AL),34.528333,-87.711389,,1,,7309,296,130,,,,,,41957,,, +1500,USA,,WSEM,,Donalsonville (GA),31.073889,-84.879722,,1,,7417,291,131,,,,,,42980,,, +1500,USA,,WKXO,,Berea (KY),37.586667,-84.301111,,0.25,,6852,296,132,,,,,,42100,,, +1500,DOM,,HIRD R Juan Pablo Duarte,,Elas Pia (epi),18.875806,-71.678522,,1,,7557,273,133,,,,,,52253,,, +1500,USA,,WQMS,,Quitman (MS),32.064167,-88.724167,,1,,7577,295,133,,1300-0100,1234567,,,42782,,, +1500,USA,,WSMX,,Winston-Salem (NC),36.073889,-80.255278,,0.14,,6719,292,133,,1200-2400,1234567,,,43031,,, +1500,NCG,,YNPT R Minuto,,Managua (mng),12.15,-86.266667,,10,,9125,280,134,,,,,,45205,,, +1500,HTI,,4VBD,,Cap-Hatien (nrd),19.75,-72.2,,0.5,,7518,274,135,,,,,,35633,,, +1500,PTR,,WMNT,,Manati (PR),18.435,-66.498333,,0.25,,7240,268,135,,0900-0200,1234567,,,42360,,, +1500,USA,,WMJL,,Marion (KY),37.337778,-88.0675,,0.18,,7101,298,135,,,,,,42337,,, +1500,CLM,es,HJSH R Reloj / Ecos del Ricaurte,,Moniquir (boy),5.65,-73.566667,,5,,8828,266,136,,????-0100,1234567,11,,2222,,, +1500,USA,,KCLF,,New Roads (LA),30.735556,-91.416111,,1,,7855,296,136,,,,,,38171,,, +1500,USA,,KJIM,,Sherman (TX),33.691667,-96.558056,,1,,7911,301,136,,,,,,38668,,, +1500,USA,,KPGM,,Pawhuska (OK),36.761667,-96.199444,,0.5,,7628,303,136,,,,,,39138,,, +1500,USA,,KSJX,,San Jose (CA),37.357778,-121.871389,,5,,8877,321,136,,,,9993,,39371,,, +1500,CLM,es,HJUW R Mara - La Onda de Dis,,Manizales (cal),5.066667,-75.5,,5,,9011,267,137,,,,5,,52427,,, +1500,DOM,,HIPA R Color,,Salvalon de Higey (alt),18.6,-68.7,,0.25,,7377,270,137,,0900-0400,1234567,,,37284,,, +1500,PRU,es,OBX4I R Santa Rosa,,Lima/San Miguel (lim),-12.062153,-77.086272,,18,,10626,257,137,,,,85,,29304,,, +1500,MEX,es,XEDF-AM R Frmula 2,,Mxico D.F/Aculco (dif),19.379792,-99.102561,,5,,9325,294,138,,,,999,,47309,,, +1500,USA,,WPSO,,New Port Richey (FL),28.259167,-82.729167,,0.25,,7512,288,138,,,,,,42740,,, +1500,B,pt,ZYH615 Rdio Macio,,Baturit (CE),-4.336761,-38.882706,,0.25,,7585,230,139,,,,,,36902508,,, +1500,B,pt,ZYH487 Rdio Jacupe AM,,Riacho do Jacupe (BA),-11.8,-39.383333,,1,,8346,227,140,,,,,,36902504,,, +1500,B,pt,ZYI919 Rdio Voz do Longa,,Esperantina (PI),-3.903667,-42.252928,,0.25,,7723,233,140,,,,,,36902512,,, +1500,CHL,,CA150 R.Santa Maria de Guadalupe,,Iquique (TA),-20.25,-70.166667,,10,,10899,247,140,,1100-0500,1234567,,,35698,,, +1500,USA,,WAKE,,Valparaiso (IN),41.443333,-87.048333,,0.025,,6712,301,140,,,,,,40684,,, +1500,USA,,WKIZ,,Key West (FL),24.567222,-81.748333,,0.25,,7756,284,141,,,,,,42021,,, +1500,B,pt,ZYI779 Rdio Pajeu,,Afogados da Ingazeira (PE),-7.749631,-37.646572,,0.25,,7859,227,142,,,,,,36902513,,, +1500,CLM,es,HJMP,,Aguachica (ces),8.3,-73.616667,,1,,8600,267,142,,,,,,37572,,, +1500,EQA,,HCHG2,,Vinces (rio),-1.566667,-79.716667,,3,,9881,266,142,,,,,,36965,,, +1500,CLM,,HJZH,,Medelln (ant),6.333333,-75.583333,,1,,8906,268,143,,,,,,37664,,, +1500,HWA,en,KHKA,,Honolulu (HI),21.336111,-157.8925,,10,,11707,345,143,,0000-2400,1234567,999,,39580,,, +1500,USA,,KANI,,Wharton (TX),29.322778,-96.058889,,0.5,,8260,298,143,,,,,,37950,,, +1500,B,pt,ZYI542 Rdio Floresta,,Tucuru (PA),-3.777722,-49.66925,,0.25,,8133,240,144,,,,10,,36902510,,, +1500,CLM,es,HJLJ Sonora 1500 AM,,Cali (val),3.533333,-76.466667,,1,,9211,267,144,,,,256,,26525,,, +1500,CLM,es,HJTW,,Fusagasuga (cun),4.333333,-74.316667,,1,,8995,265,144,,,,,,37652,,, +1500,CTR,,TIRC R Cima,,Ciudad Quesada (alj),10.333333,-84.433333,,1,,9160,277,144,,1100-0300,1234567,,,52162,,, +1500,HND,,HRTX,,Choluteca (cho),13.3,-87.333333,,1,,9096,281,144,,,,,,37854,,, +1500,SLV,,YSDA,,San Salvador (ssl),13.566667,-89.116667,,1,,9192,283,144,,,,,,45269,,, +1500,ARG,,LRI214 R Bonaerense,,Llavallol (df),-34.775078,-58.454367,,5,,11524,230,145,,,,,,51885,,, +1500,USA,,KMXO,,Merkel (TX),32.471389,-100.005278,,0.25,,8218,303,145,,,,,,38952,,, +1500,USA,,KBRN,,Boerne (TX),29.812222,-98.728056,,0.25,,8377,300,147,,,,,,38088,,, +1500,BOL,,CP238 R Sagrado Corazon,,Mineros (scz),-17.119444,-63.230556,,1,,10187,244,148,,0930-0100,1234567,,,52059,,, +1500,MEX,es,XEFL-AM R Santa Fe,,Guanajuato (gua),21.038542,-101.27485,,0.5,,9311,297,148,,,,,,44011,,, +1500,PRU,,OBU2J R San Pablo,,San Pablo (cus),-14.2,-71.316667,,1,,10435,252,148,,,,458,,37000107,,, +1500,CHL,,CD150 R Tierra del Fuego,,Puerto Porvenir (MA),-53.283333,-70.316667,,10,,13705,224,149,,1100-0400,1234567,,,35883,,, +1500,EQA,,HCAD4,,El Carmen (man),-0.316667,-79.5,,0.5,,9756,267,149,,,,,,36836,,, +1500,EQA,,HCRO1,,Otavalo (imb),0.216667,-78.266667,,0.5,,9625,266,149,,,,,,37100,,, +1500,EQA,,HCVE3,,Santa Rosa (oro),-3.45,-79.966667,,0.7,,10063,265,149,,,,,,37163,,, +1500,EQA,,HCWN5,,Riobamba (chi),-1.666667,-78.466667,,0.5,,9804,265,149,,,,,,37184,,, +1500,MEX,es,XEJQ-AM La Explosiva,,Parras de la Fuente (coa),25.4375,-102.183333,,0.25,,8970,300,150,,,,,,44222,,, +1500,B,pt,ZYL215 Rdio Montanhesa AM,,Viosa (MG),-20.765606,-42.878028,,0.25,,9403,225,151,,,,,,36902505,,, +1500,USA,,WPJX,,Zion (IL),42.455278,-87.900833,,0.002,,6682,302,151,,,,,,42700,,, +1500,ARG,,LT45 R San Javier,,San Javier (mn),-27.883333,-55.133333,,0.5,,10712,231,152,,1100-0500,12345..,,,51887,,, +1500,ARG,,LT45 R San Javier,,San Javier (mn),-27.883333,-55.133333,,0.5,,10712,231,152,,1100-2100,.....67,,,51887,,, +1500,ARG,,R En Realidad,,Capilla del Senor (ba),-34.3,-59.1,,1,,11515,231,152,,,,,,51888,,, +1500,ARG,es,Frecuencia On,,La Reja (ba),-34.633333,-58.8,,1,,11530,230,152,,,,,,33000089,,, +1500,B,pt,ZYK549 Rdio Fraternidade,,Araras (SP),-22.365939,-47.401144,,0.25,,9784,228,152,,,,,,36902517,,, +1500,B,pt,ZYK626 Rdio Difusora Taubate,,Pindamonhangaba (SP),-22.933778,-45.470056,,0.25,,9742,226,152,,,,,,36902515,,, +1500,B,pt,ZYK706 Rdio Vale do Rio Grande,,Miguelpolis (SP),-20.174556,-48.025236,,0.25,,9605,230,152,,,,,,36902509,,, +1500,B,pt,ZYK773 Rdio Cumbica,,Guarulhos/Rua ngelo Caldini 1500 (SP),-23.474167,-46.396194,,0.25,,9841,227,152,,,,,,36902514,,, +1500,B,pt,ZYL340 Rdio Aparecida do Sul,,Ilicnea (MG),-20.933253,-45.834083,,0.25,,9566,228,152,,,,,,36902511,,, +1500,USA,,WTNE,,Trenton (TN),35.981111,-88.925556,,0.006,,7264,298,152,,,,,,43182,,, +1500,B,pt,ZYK776 Rdio Cidade de Apia,,Apia (SP),-24.491944,-48.931944,,0.25,,10067,228,153,,,,,,36902516,,, +1500,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010699,,, +1500,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010698,,, +1500,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010701,,, +1500,USA,en,WD9XEY,,Merrimack (NH),42.85,-71.516667,,0.0001,,5658,292,153,,,,,,20010704,,, +1500,B,,ZYJ336,,Prudentpolis (PR),-25.216667,-50.966667,,0.25,,10241,230,154,,,,,,46058,,, +1500,B,pt,ZYJ366 Rdio Araucria,,Mangueirinha (PR),-25.944444,-52.180278,,0.25,,10374,230,154,,,,,,36902518,,, +1500,URG,,CW150,,Paso de los Toros (ta),-32.766667,-56.466667,,0.5,,11236,230,154,,,,,,36755,,, +1500,USA,,WPMB,,Vandalia (IL),38.957778,-89.122778,,0.002,,7033,300,154,,,,,,42711,,, +1500,ARG,,R Municipal,,General Conesa (rn),-40.1,-64.416667,,1,,12313,231,155,,1000-2400,1234567,,,51886,,, +1500,B,pt,ZYK365 Rdio Simpatia AM,,Chapada (RS),-28.058056,-53.059722,,0.25,,10619,230,155,,,,,,36902507,,, +1500,USA,,WQCR,,Alabaster (AL),33.2075,-86.759444,,0.003,,7359,294,156,,,,,,42768,,, +1500,ARG,,LT34 R Nuclear,,Zarate (ba),-34.1,-59.016667,,0.25,,11492,231,158,,0900-2400,1234567,,,40185,,, +1500,ARG,,LV25 R Union,,Bell Ville (cb),-32.616667,-62.666667,,0.25,,11556,234,158,,0900-0400,1234567,,,40249,,, +1500,ARG,,LT22 R Nueva Era,,Pehuajo (ba),-35.783333,-61.866667,,0.25,,11796,232,159,,,,,,40174,,, +1500,CHL,,CB150 R Trasandina,,Los Andes (VS),-32.816667,-70.666667,,0.25,,12031,240,160,,1100-0400,1234567,,,35742,,, +1500,CHL,,CC150 R Centenario,,San Javier (ML),-35.616667,-71.716667,,0.25,,12332,238,161,,1100-0300,1234567,,,35821,,, +1500,USA,en,WPQY846,,Paradise/1250 Wagstaff Road (CA),39.777672,-121.595528,,0.01,,8632,322,162,,,,,,20010696,,, +1500,USA,en,WPKJ354,,Folsom/1150 Sibley St. (CA),38.659639,-121.177686,,0.01,,8722,321,163,,,,,,20010700,,, +1500,USA,en,WPLV688,,Yuba City/Sam Brannan Park (CA),39.144339,-121.633306,,0.01,,8694,321,163,,,,,,20010705,,, +1500,USA,en,WPUA214,,Sacramento (CA),38.54435,-121.427692,,0.01,,8743,321,163,,,,,,20010706,,, +1500,USA,en,WPDY857,,Anaheim (CA),33.811006,-117.908778,,0.01,,9039,316,164,,,,,,20010703,,, +1500,USA,en,WPIE851,,Beverly hills (CA),34.0725,-118.394317,,0.01,,9037,317,164,,,,,,20010702,,, +1500,USA,en,WPWT499,,San Diego (CA),32.771667,-117.138333,,0.01,,9101,315,164,,,,,,20010697,,, +1500,ARG,es,LU1 R.Libertador General San Martn,,Lisandro Olmos (ba),-34.6,-58.45,,0.04,,11508,230,166,,,,,,51889,,, +1503,SRB,sr,R Beograd 202,,Beograd/Krnjača (Srb-gbg),44.841239,20.473014,,10,,1311,122,60,,0000-2400,1234567,9958,,1576,,, +1503,G,en,BBC R 5 Live,,Stoke-on-Trent/Sideway (EN-SFS),52.98775,-2.185417,,1,,589,283,63,,0000-0600,1234567,9977,,1568,,, +1503,G,en,BBC R Stoke,,Stoke-on-Trent/Sideway (EN-SFS),52.98775,-2.185417,,1,,589,283,63,,0600-2400,1234567,9977,,1568,,, +1503,E,es,RNE R 5,,Monforte de Lemos/Pieira (GAL-LU),42.500906,-7.532717,,6,,1494,230,64,,0000-2400,1234567,995,,1565,,, +1503,E,es,RNE R 5,,La Lnea (RNE) (AND-CA),36.154056,-5.340656,,10,,2001,212,67,,0000-2400,1234567,993,,1566,,, +1503,RUS,ru,R Tsentr,,Moskva/Kurkino (MV),55.881361,37.391611,,10,,2050,66,68,,0400-0600,1234567,,,1574,,, +1503,RUS,ru,R Tserkov,,Moskva/Kurkino (MV),55.881361,37.391611,,10,,2050,66,68,,1600-1900,1234567,,,1574,,, +1503,BIH,bs,BH R 1,,Zavidovići/Mecevici (srp),44.453333,18.167917,,1,,1214,130,69,,0500-0600,1234567,87,,1564,,, +1503,BIH,bs,BH R 1,,Zavidovići/Mecevici (srp),44.453333,18.167917,,1,,1214,130,69,,2000-2300,1234567,87,,1564,,, +1503,BIH,bs,R 1503 Zavidovići,,Zavidovići/Mecevici (srp),44.453333,18.167917,,1,,1214,130,69,,0600-2000,1234567,87,,1564,,, +1503,HOL,,R 05-11,,unknown (fri),53.35,5.9,,0.03,,142,346,70,,0800-1700,.....67,,,3800016,,, +1503,I,it,Ondamedia Broadcast,,Piove di Sacco (pd),45.3,12.033333,,0.4,,862,149,70,,0600-0800,1234567,,,4000044,,, +1503,I,it,Ondamedia Broadcast,,Piove di Sacco (pd),45.3,12.033333,,0.4,,862,149,70,,1200-2230,1234567,,,4000044,,, +1503,I,it,Voice of Russia,,Piove di Sacco (pd),45.3,12.033333,,0.4,,862,149,70,,0800-1200,1234567,,,4000044,,, +1503,G,,Betar Bangla,,East London/Bow (EN-GTL),51.533056,-0.0175,,0.1,,446,264,71,,0000-2400,1234567,,,1570,,, +1503,EGY,ar,ERTU Al-Barnameg al-Aam,,El-Arish=Al-Arish (sin),31.114722,33.6975,,25,,3218,126,75,,0300-0405,1234567,4,,1567,,, +1503,EGY,ar,ERTU Al-Barnameg al-Aam,,El-Arish=Al-Arish (sin),31.114722,33.6975,,25,,3218,126,75,,0500-2300,1234567,4,,1567,,, +1503,EGY,ar,ERTU Shamal Sina',,El-Arish=Al-Arish (sin),31.114722,33.6975,,25,,3218,126,75,,0405-0500,1234567,4,,1567,,, +1503,I,it,R Poggio Lupo,,unknown (ct),37.405556,15.066667,,1,,1769,154,75,,????-????,9999999,,,4000042,,, +1503,IRN,fa,IRIB R Iran,,Bushehr (bus),28.935911,50.958667,,200,,4459,108,79,,1430-0215,1234567,9988,,1573,,, +1503,TJK,ru,Voice of Mongolia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,500,,4943,82,80,,2148-2200,....56.,33,,47101,,, +1503,TJK,ru,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,500,,4943,82,80,,0000-2300,1234567,33,,47101,,, +1503,G,,R Diamonds (RSL),,Irthlingborough (EN-NHA),52.316667,-0.6,,0.001,,478,276,92,,,,,,1571,,, +1503,AZR,en,AFN Island AM,,Base Area das Lajes (tce),38.711147,-27.152867,,0.1,,2976,253,97,,0000-2400,1234567,,,1563,,, +1503,RUS,ru,R Rossii,,Magistralnyy (IR),56.166667,107.441667,,1,,5986,43,117,,2100-1700,1234567,,,46989,,, +1503,TWN,km,R France Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1200-1300,1234567,9955,,51115,,, +1503,TWN,th,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1500-1600,1234567,9955,,51115,,, +1503,TWN,th,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,2200-2300,1234567,9955,,51115,,, +1503,TWN,vi,R Đp Lời Sng Ni,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1430-1500,1234567,9955,,51115,,, +1503,TWN,vi,R Chn Trời Mới,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1330-1400,1234567,9955,,51115,,, +1503,TWN,vi,R Free Asia,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1400-1430,1234567,9955,,51115,,, +1503,TWN,vi,R Free Asia,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,2300-2400,1234567,9955,,51115,,, +1503,TWN,zh,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1000-1200,1234567,9955,,51115,,, +1503,TWN,zh,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1300-1330,1234567,9955,,51115,,, +1503,TWN,zh,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1600-1700,1234567,9955,,51115,,, +1503,AGL,pt,RNA Em. Prov. de Benguela,,Benguela (bgu),-12.552167,13.426389,,10,,7222,172,119,,0500-2300,1234567,,,2544,,, +1503,J,ja,JOUK NHK1,,Akita (toh-aki),39.78,140.076389,,10,,8860,34,133,,0000-2400,1234567,,,51100,,, +1503,THA,th,Jor. Sor. 2,,Surat Thani/115 Tharathibodi Rd (stn),9.110889,99.235153,,10,,9401,82,135,,,,,,51112,,, +1503,CHN,,Liaoyang RGD Jiaotong Wenyi Pinl,,Liaoyang (LN),41.235556,123.183056,,1,,7985,45,137,,,,,,51094,,, +1503,CHN,,Fuyang JGD,,Fuyang (AH),32.9,115.85,,1,,8351,55,141,,????-1300,1234567,7,,51091,,, +1503,CHN,zh,Xiangtan RGD News Channel,,Xiangtan (HN),27.846617,112.949403,,1,,8633,60,142,,2200-1700,1234567,,,51095,,, +1503,CHN,,Zhejiang RGD News,,Huzhou (ZJ),30.833333,120.216667,,1,,8779,53,143,,,,,,51093,,, +1503,KOR,,HLSK KBS 1 R,,Gimcheon (gsb),36.1325,128.102778,,1,,8694,45,143,,0000-2400,1234567,,,51104,,, +1503,CHN,,Zhejiang RGD News,,Xinchang (ZJ),29.483333,120.9,,1,,8940,53,144,,,,,,36200710,,, +1503,CHN,,Zhejiang RGD Xinwen,,Zhoushan (ZJ),30.05,122.016667,,1,,8949,52,144,,,,,,36200709,,, +1503,J,,NHK R 1,,Aso (kyu-kum),32.966667,131.05,,1,,9135,44,144,,0000-2400,1234567,0,,51101,,, +1503,INS,id,R Balada Kamajaya,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400145,,, +1503,J,ja,NHK R 1,,Okuchi (kyu-kag),32.054167,130.595833,,0.1,,9200,45,154,,0000-2400,1234567,,,51102,,, +1503,J,,NHK R 1,,Yamashiro (shi-tok),33.951578,133.758975,,0.05,,9166,42,157,,,,,,51103,,, +1503,FSM,,V6AJ FSMBS Voice of Kosrae,,Tofol (ksa),5.326564,163.012917,,1,,13255,27,158,,0000-1400,1234567,,,51105,,, +1503,FSM,,V6AJ FSMBS Voice of Kosrae,,Tofol (ksa),5.326564,163.012917,,1,,13255,27,158,,2000-2400,1234567,,,51105,,, +1503,AUS,en,2BS Gold,,Bathurst/Eglinton (NSW),-33.371744,149.537717,,5,,16413,69,161,,0000-2400,1234567,,,51089,,, +1503,AUS,xx,3KND Kool 'n' Deadly,,Melbourne/Lower Plenty (VIC),-37.744556,145.110667,,5,,16456,80,161,,,,,,51090,,, +1503,NZL,,R Sport,,Wellington/Horokiwi (WGN),-41.210556,174.845556,,5,,18520,40,168,,0000-2400,1234567,,,51107,,, +1503,NZL,,R Sport,,Christchurch/Ouruhia (CAN),-43.445967,172.671261,,2.5,,18612,52,171,,0000-2400,1234567,,,51106,,, +1510,USA,en,Brother Stair,,Boston (Waverley) (MA),42.386111,-71.200278,,50,,5671,292,97,,0500-0600,1234567,6,,43450,,, +1510,USA,en,WUFC,,Boston (Waverley) (MA),42.386111,-71.200278,,50,,5671,292,97,,0600-0500,1234567,6,,43450,,, +1510,USA,es,WRRD,,Waukesha (WI),43.017222,-88.195278,,23,,6654,303,110,,1200-2300,1234567,9995,,40771,,, +1510,USA,,WLAC,,Nashville (TN),36.271944,-86.757778,,50,,7108,296,111,,,,5,,42116,,, +1510,USA,,WWSM,,Annville-Cleona (PA),40.295556,-76.462778,,5,,6155,293,112,,,,,,43433,,, +1510,USA,,WFAI,,Salem (NJ),39.582778,-75.460833,,2.5,,6145,292,114,,,,,,41353,,, +1510,USA,en,WWBC,,Cocoa (FL),28.353333,-80.779167,,50,,7377,286,114,,1200-2400,1234567,,,43355,,, +1510,USA,,WJKN,,Jackson (MI),42.186111,-84.3775,,5,,6496,300,115,,,,,,41890,,, +1510,USA,,WPUT,,Brewster (NY),41.409444,-73.624722,,1,,5894,292,116,,,,,,42752,,, +1510,USA,en,KCTE,,Independence (MO),39.070556,-94.449444,,10,,7333,303,120,,1400-0200,1234567,839,,38216,,, +1510,USA,,,,Littleton (CO),39.868889,-104.926944,,25,,7835,311,121,,,,1,,38223,,, +1510,USA,en,KGA,,Spokane (WA),47.502222,-117.385,,15,,7722,323,122,,,,987,,38452,,, +1510,USA,,WLGN,,Logan (OH),39.528611,-82.385,,1,,6581,296,123,,,,,,42163,,, +1510,USA,,WRNJ,,Hackettstown (NJ),40.816667,-74.826389,,0.23,,6013,293,123,,,,995,,42889,,, +1510,USA,,KMRF,,Marshfield (MO),37.319167,-92.961944,,5,,7393,301,124,,,,,,38929,,, +1510,USA,,WEAL,,Greensboro (NC),36.061667,-79.793056,,0.82,,6691,292,125,,,,,,41236,,, +1510,USA,,WLKR,,Norwalk (OH),41.279167,-82.656389,,0.5,,6462,298,125,,,,,,42182,,, +1510,USA,,WWHN,,Joliet (IL),41.513889,-88.052778,,1,,6765,301,125,,,,,,43382,,, +1510,USA,en,WQUL,,Woodruff (SC),34.756111,-82.055,,1,,6938,292,126,,1200-2400,1234567,,,20012513,,, +1510,USA,,KIFG,,Iowa Falls (IA),42.513611,-93.215833,,1,,6979,305,127,,,,,,38588,,, +1510,USA,,WLRB,,Macomb (IL),40.497222,-90.675,,1,,6999,302,127,,,,,,42223,,, +1510,USA,,KLLB,,West Jordan (UT),40.551667,-111.971389,,10,,8125,316,128,,,,,,38826,,, +1510,USA,,WQQW,,Highland (IL),38.748889,-89.569444,,1,,7076,300,128,,,,,,20016084,,, +1510,PTR,,WBSG,,Lajas (PR),18.036389,-67.082778,,1,,7314,269,130,,,,,,43057,,, +1510,USA,,WJOT,,Wabash (IN),40.786389,-85.821944,,0.25,,6691,299,130,,,,,,41915,,, +1510,USA,es,KBED,,Nederland (TX),30.061111,-93.98,,5,,8070,297,131,,1300-0100,1234567,,,39192,,, +1510,USA,,KIRV,,Fresno (CA),36.711667,-119.833056,,10,,8850,319,133,,,,9944,,38637,,, +1510,USA,,KTTT,,Columbus (NE),41.453889,-97.405556,,0.5,,7298,307,133,,,,,,39547,,, +1510,CLM,es,HJUH,,Santa Marta (mag),11.25,-74.2,,5,,8383,270,134,,,,,,35901990,,, +1510,USA,,KNNS,,Larned (KS),38.165,-99.101389,,1,,7671,306,134,,,,,,39004,,, +1510,USA,en,KOAZ,,Alamo Community (NM),34.979444,-106.736944,,5,,8367,309,134,,,,,,37909,,, +1510,B,pt,ZYH493 RDD-R.Difusora do Descobrimento,,Porto Seguro (BA),-16.482172,-39.073689,,5,,8796,224,136,,,,,,36902506,,, +1510,CLM,es,HJD24 LV de La Unin,,La Unin (ant),6.183333,-74.7,,5,,8859,267,136,,,,934,,52536,,, +1510,USA,,KAGY,,Port Sulphur (LA),29.484167,-89.704167,,1,,7855,293,136,,,,,,37925,,, +1510,B,pt,ZYJ797 Rdio Educadora,,Tai (SC),-27.138333,-49.984444,,13,,10374,228,137,,,,98,,36902540,,, +1510,USA,,KMND,,Midland (TX),31.963611,-102.081389,,2.4,,8381,304,137,,,,,,38918,,, +1510,DOM,,HIBL R Pueblo,,Santo Domingo (sdo),18.516667,-69.866667,,0.25,,7464,271,138,,1000-0300,1234567,,,52254,,, +1510,PNR,es,HOA95 Hosanna R,,Rana de Oro (pnm),9.086322,-79.428622,,3,,8928,272,139,,0000-2400,1234567,996,,37671,,, +1510,USA,zh,KSFN,,Piedmont (CA),37.817222,-122.286111,,2.4,,8851,321,139,,,,4,,38957,,, +1510,B,pt,ZYH608 Rdio Planalto da Ibiapaba,,So Benedito (CE),-4.035283,-40.8651,,0.25,,7661,232,140,,,,,,36902537,,, +1510,B,pt,ZYH630 Rdio Trapi,,Pedra Branca (CE),-5.492756,-39.714556,,0.25,,7742,230,140,,,,,,36902527,,, +1510,B,pt,ZYJ602 Rdio Centenrio,,Carabas (RN),-5.8,-37.55,,0.25,,7661,228,140,,,,,,36902532,,, +1510,USA,en,KWJB,,Canton (TX),32.541667,-95.8575,,0.5,,7969,300,140,,,,,,20016004,,, +1510,USA,,KSTV,,Stephenville (TX),32.202222,-98.248333,,0.5,,8139,301,141,,,,,,39426,,, +1510,B,pt,ZYI544 Rdio Oriente de Redenco,,Redeno (PA),-8.053217,-50.028414,,1,,8558,238,142,,,,,,36902535,,, +1510,USA,,KAGC,,Bryan (TX),30.651667,-96.385,,0.5,,8164,299,142,,,,,,37919,,, +1510,B,pt,Rdio Nordeste AM,,Picos (PI),-7.074094,-41.461494,,0.25,,7988,231,143,,,,,,36902538,,, +1510,B,pt,ZYI894 Rdio Difusora Floriano,,Floriano (PI),-6.766928,-43.008194,,0.25,,8041,232,143,,,,,,36902534,,, +1510,CLM,,HJHX,,Bucaramanga (sat),7.066667,-73.083333,,1,,8671,266,143,,,,,,37483,,, +1510,CLM,es,HJA22,,San Luis de Gaceno (boy),4.816667,-73.166667,,1,,8874,265,143,,,,,,35901962,,, +1510,EQA,,HCUC3,,Cariamanga (loj),-4.3,-79.55,,3,,10110,264,143,,,,,,37160,,, +1510,EQA,es,HCRC1 R Monumental,,Quito (pic),-0.166667,-78.466667,,2,,9673,266,143,,,,,,37072,,, +1510,CLM,,HJLE,,Armero (tol),4.783333,-74.9,,1,,8995,266,144,,,,,,37544,,, +1510,CLM,es,HJZA R Cristal,,Armenia (qui),4.5,-75.65,,1,,9071,266,144,,,,890,,37659,,, +1510,GTM,,TGDX R Centroamericana Nueva RCA,,Ciudad de Guatemala (gut),14.583333,-90.533333,,1,,9197,284,144,,1130-0500,1234567,,,40490,,, +1510,PRU,es,R Virgen de la Alta Gracia,,Huamachuco (lal),-7.8,-78.066667,,2.5,,10317,261,144,,,,,,37000046,,, +1510,USA,,KCTX,,Childress (TX),34.428056,-100.229722,,0.25,,8059,304,144,,,,,,38219,,, +1510,USA,en,KSPA,,Ontario (CA),34.094722,-117.612778,,1,,8998,316,144,,,,9968,,39402,,, +1510,EQA,,HCVL7,,Lago Agrio (suc),0.166667,-76.9,,1,,9537,265,145,,,,,,37172,,, +1510,USA,,KMSD,,Milbank (SD),45.194444,-96.639167,,0.014,,6946,309,145,,,,997,,38934,,, +1510,USA,,KROB,,Robstown (TX),27.7775,-97.631944,,0.5,,8490,298,145,,,,,,39277,,, +1510,B,pt,Rdio Athenas Paulista,,Jaboticabal (SP),-21.275272,-48.353428,,1,,9728,230,146,,,,,,36902522,,, +1510,EQA,,HCRY6,,Runacunapac (bol),-1.266667,-79,,1,,9806,266,146,,,,,,37123,,, +1510,EQA,,R Net,,Ambato (tun),-1.25,-78.616667,,1,,9778,265,146,,,,805,,51871,,, +1510,EQA,,HCHD2 INOCAR,,Guayaquil (gua),-2.2,-79.866667,,1,,9947,266,147,,0000-2400,1234567,993,,37148,,, +1510,EQA,,HCMC5 Voz de la Ju,, (can),-2.533333,-78.916667,,1,,9911,265,147,,,,,,37019,,, +1510,B,pt,ZYI896 Rdio Progresso AM,,Corrente (PI),-10.436111,-45.152222,,0.25,,8512,232,148,,,,,,36902526,,, +1510,PRU,,OBX7P R El Sur,,Wanchaq (cus),-13.466667,-72.016667,,1,,10415,253,148,,,,,,40412,,, +1510,MEX,es,XEQI-AM,,Monterrey (nvl),25.750556,-100.300278,,0.25,,8830,299,149,,,,,,44613,,, +1510,PRU,,OAX5F R LV Huamanga,,Nazca (ica),-14.05,-75.666667,,1,,10706,255,149,,,,,,40318,,, +1510,PRU,es,OCX4J R Tarma,,Tarma/Cerro Penitencia (jun),-11.408856,-75.691656,,1,,10475,257,149,,,,,,37000065,,, +1510,PRU,es,OCX6Q R Alegra,,Arequipa (are),-16.4,-71.533333,,1,,10644,251,149,,,,16,,37000108,,, +1510,PRU,es,R Las Vegas,,Mollendo (are),-17.016667,-72.016667,,1,,10730,251,149,,,,995,,37000032,,, +1510,B,,ZYL330,,Araua (MG),-16.85,-42.066667,,0.25,,8978,227,150,,,,,,46756,,, +1510,CLM,es,HKZ93 R Versalles,,Versalles (val),3.466667,-76.533333,,0.25,,9222,267,150,,,,,,2072,,, +1510,CLM,es,HKZ94,,Buenaventura (val),3.9,-77.066667,,0.25,,9220,267,150,,,,,,35902002,,, +1510,USA,,WPGR,,Monroeville (PA),40.470278,-79.851111,,0.001,,6353,295,150,,,,,,42680,,, +1510,ARG,es,R Belgrano,,Suardi (sf),-30.533333,-61.966667,,1,,11329,235,151,,,,,,33000038,,, +1510,B,pt,ZYH770 Rdio Goiatuba,,Goiatuba (GO),-18.016667,-49.366667,,0.25,,9469,232,151,,,,,,36902529,,, +1510,MEX,es,XEHUI-AM Hidalgo R,,Huichapan (hid),20.355489,-99.647561,,0.25,,9272,295,151,,,,,,44146,,, +1510,ARG,,LV del Oeste,,Libertad (ba),-34.7,-58.683333,,1,,11530,230,152,,0000-2400,1234567,,,51890,,, +1510,ARG,,R Alabanza,,Guernica (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51891,,, +1510,ARG,,R Sentimento Litoral,,Banfield (ba),-34.75,-58.4,,1,,11519,230,152,,,,,,51892,,, +1510,B,pt,ZYJ492 Rdio Terespolis,,Terespolis/Praa do Galo (RJ),-22.429183,-42.972289,,0.25,,9571,225,152,,,,,,36902536,,, +1510,USA,en,WPEP788,,Lakeland/4175 Medulla Road (FL),27.994292,-82.026194,,0.01,,7488,287,152,,,,,,20010709,,, +1510,USA,en,WPUR527,,Bartow (FL),27.9,-81.85,,0.01,,7484,287,152,,,,,,20010707,,, +1510,USA,en,WQAM844,,Lakeland/4175 Medulla Road (FL),27.993514,-82.026389,,0.01,,7488,287,152,,,,,,20010708,,, +1510,B,pt,ZYJ216 Rdio Educadora,,Wenceslau Braz (PR),-23.861111,-49.807222,,0.25,,10052,229,153,,,,,,36902520,,, +1510,B,pt,ZYK654 Rdio Difusora Cacique,,Santos/Rod. Piaaguera (SP),-23.909375,-46.292306,,0.25,,9878,227,153,,,,,,36902541,,, +1510,B,pt,ZYK665 Rdio Clube de So Manuel,,So Manuel/Chcara Miranda (SP),-22.736069,-48.588667,,0.25,,9881,229,153,,,,,,36902523,,, +1510,B,pt,ZYK770 Rdio Vale do Tiet,,Salto/Rua Roque Lazzazera (SP),-23.212233,-47.270333,,0.25,,9859,228,153,,,,,,36902539,,, +1510,CHL,,CA151 R Luis Alvarez Sierra,,Illapel (CO),-31.616667,-71.166667,,1,,11957,241,153,,1100-0400,1234567,,,51958,,, +1510,USA,,KFNN,,Mesa (AZ),33.692778,-112.0025,,0.1,,8759,312,153,,,,1566,,38413,,, +1510,B,,ZYJ328,,Pitanga (PR),-24.75,-51.766667,,0.25,,10239,231,154,,,,,,46050,,, +1510,B,pt,ZYJ326 Rdio Unio de Cu Azul,,Cu Azul (PR),-25.133333,-53.841667,,0.25,,10386,232,154,,,,,,36902519,,, +1510,CHL,es,CC151 R Poder Pentecostal,,Rancagua (LI),-34.2,-70.716667,,1,,12153,239,154,,1100-0400,1234567,13,,35822,,, +1510,B,,ZYK356,,Tapera (RS),-28.616667,-52.866667,,0.25,,10662,229,155,,,,,,46383,,, +1510,B,pt,ZYJ795 RCO-Rdio Centro Oeste AM,,Pinhalzinho (SC),-26.863333,-52.965833,,0.25,,10502,230,155,,,,,,36902531,,, +1510,CHL,,CD151 R Teniente Merino,,Lebu (BI),-37.616667,-73.666667,,1,,12615,238,156,,1130-0300,1234567,,,35885,,, +1510,URG,,CW151 R Ibirapita,,San Gregorio de Polanco (ta),-32.6,-55.816667,,0.25,,11187,229,157,,1000-0200,1234567,,,36756,,, +1510,URG,,CW57 R San Carlos,,San Carlos (ma),-34.766667,-54.883333,,0.25,,11340,227,157,,0830-0300,1234567,999,,36779,,, +1510,ARG,,LV21 R Champaqui,,Villa Dolores (cb),-31.933333,-65.2,,0.25,,11637,236,158,,1000-0100,1234567,,,40245,,, +1510,ARG,es,RBN-R de las Buenas Nuevas,,Banfield Oeste (ba),-34.75,-58.4,,0.25,,11519,230,158,,,,,,33000014,,, +1510,URG,,CV151 R Rincon,,Fray Bentos (rn),-33.116667,-58.316667,,0.25,,11366,231,158,,1000-0300,1234567,,,36732,,, +1512,GRC,el,ERA Hanion,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,0500-1100,12345..,929,,1580,,, +1512,GRC,el,ERA Hanion,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,1330-1800,12345..,929,,1580,,, +1512,GRC,el,ERT Kosmos 93.6/ERA Net/ERA 2/ERA Sport,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,0500-0459,.....67,929,,1580,,, +1512,GRC,el,ERT Kosmos 93.6/ERA Net/ERA 2/ERA Sport,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,1100-1330,12345..,929,,1580,,, +1512,GRC,el,ERT Kosmos 93.6/ERA Net/ERA 2/ERA Sport,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,1800-0500,12345..,929,,1580,,, +1512,I,it,Ondamedia Broadcast,,San Pietro in Casale (bo),44.7,11.4,,0.4,,902,154,70,,0600-0800,1234567,987,,4000015,,, +1512,I,it,Ondamedia Broadcast,,San Pietro in Casale (bo),44.7,11.4,,0.4,,902,154,70,,1300-2230,1234567,987,,4000015,,, +1512,I,it,Voice of Russia,,San Pietro in Casale (bo),44.7,11.4,,0.4,,902,154,70,,0800-1300,1234567,987,,4000015,,, +1512,ARS,ar,BSKSA Al-Quran al-Karim,,Jeddah/Sumaymah (mkh),21.245906,39.157056,,1000,180,4434,128,71,,0000-0100,1234567,991,,1578,,, +1512,ARS,ar,BSKSA Al-Quran al-Karim,,Jeddah/Sumaymah (mkh),21.245906,39.157056,,1000,180,4434,128,71,,1300-2400,1234567,991,,1578,,, +1512,ARS,ar,BSKSA Idha'atu Nedaa al-Islam,,Jeddah/Sumaymah (mkh),21.245906,39.157056,,1000,180,4434,128,71,,0100-0300,1234567,991,,1578,,, +1512,IRN,fa,IRIB R Ardabil,,Ardabil (ard),38.361167,48.255694,,50,,3553,99,76,,0000-2400,1234567,997,,1820,,, +1512,PAK,,PBC R Pakistan,,Gilgit (ggb),35.918725,74.379278,,10,,5503,81,102,,1004-1700,1234567,,,51142,,, +1512,AFG,,R Herat,,Herat (her),34.333333,62.2,,0.1,,4792,92,115,,0300-0500,1234567,,,46817,,, +1512,AFG,,R Herat,,Herat (her),34.333333,62.2,,0.1,,4792,92,115,,1130-1330,1234567,,,46817,,, +1512,IND,,AIR Northeast,,Kokrajhar (AS),26.37295,90.303431,,20,,7322,77,117,,1230-1600,1234567,,,51126,,, +1512,CHN,,Linxia RGD,,Linxia/Luojiabao (GS),35.572222,103.170833,,10,,7384,62,121,,,,,,51124,,, +1512,CHN,zh,Chifeng RGD,,Linxi/NMTS726 (NM),43.6,118.05,,1,,7523,47,132,,,,,,36200259,,, +1512,THA,th,Kor. Wor. Sor. 4,,Phayao (pyo),19.194167,99.880556,,10,,8566,75,132,,,,,,51145,,, +1512,CHN,zh,Chifeng RGD,,Lindong/NMTS739 (NM),43.977778,119.383333,,1,,7555,46,133,,2130-1430,1234567,,,51122,,, +1512,CHN,zh,Chifeng RGD,,Xinhui/NMTS716 (NM),42.284922,119.926686,,1,,7732,46,134,,,,,,36200261,,, +1512,CHN,zh,Chifeng RGD,,Ningcheng/NMTS725 (NM),41.584089,119.321553,,1,,7764,47,135,,,,,,36200260,,, +1512,TWN,,Ching-Cha Kuangpo Tientai,,Chupei (HC),24.813333,121.025556,,10,,9376,56,135,,0000-2400,1234567,,,51146,,, +1512,THA,th,Thor. Or. 011,,Hat Yai/Airport (sgk),6.924089,100.410344,,10,,9672,83,136,,????-1300,1234567,,,51144,,, +1512,J,ja,JOZB NHK2,,Matsuyama (shi-ehi),33.823333,132.735556,,5,,9132,43,137,,2030-1500,1.....7,,,51134,,, +1512,J,ja,JOZB NHK2,,Matsuyama (shi-ehi),33.823333,132.735556,,5,,9132,43,137,,2030-1635,.2345..,,,51134,,, +1512,J,ja,JOZB NHK2,,Matsuyama (shi-ehi),33.823333,132.735556,,5,,9132,43,137,,2030-1640,.....6.,,,51134,,, +1512,CHN,,Jinan RGD Traffic,,Jinan/Daqiao (SD),36.791389,117.015556,,1,,8069,52,138,,2000-1630,1234567,,,51123,,, +1512,INS,id,RRI Pro-1,,Bukittinggi (SB-buk),-0.283333,100.333333,,10,,10300,87,138,,1000-1700,1234567,,,51128,,, +1512,INS,id,RRI Pro-1,,Bukittinggi (SB-buk),-0.283333,100.333333,,10,,10300,87,138,,2200-0100,1234567,,,51128,,, +1512,PHL,,DZAT-AM,,Lucena City (qzn),13.933333,121.6,,10,,10413,62,138,,,,,,33300019,,, +1512,PHL,tl,DYAB-AM Radyo Patrol,,Cebu City/Pardo (ceb),10.283333,123.85,,10,,10887,62,140,,2000-1510,1234567,,,51143,,, +1512,KOR,,AFN Korea-Thunder AM,,Pilsung/Kotar Range (gan),37.1,128.9,,1,,8640,44,143,,,,,,52092,,, +1512,J,,JOSC NHK2,,Matsumoto (chu-nag),36.216667,137.95,,1,,9127,38,144,,2030-1500,1.....7,,,51133,,, +1512,J,,JOSC NHK2,,Matsumoto (chu-nag),36.216667,137.95,,1,,9127,38,144,,2030-1635,.2345..,,,51133,,, +1512,J,,JOSC NHK2,,Matsumoto (chu-nag),36.216667,137.95,,1,,9127,38,144,,2030-1640,.....6.,,,51133,,, +1512,J,ja,JOCD NHK2,,Koriyama (toh-fuk),37.360556,140.355833,,1,,9112,35,144,,2030-1500,1.....7,,,51131,,, +1512,J,ja,JOCD NHK2,,Koriyama (toh-fuk),37.360556,140.355833,,1,,9112,35,144,,2030-1635,.2345..,,,51131,,, +1512,J,ja,JOCD NHK2,,Koriyama (toh-fuk),37.360556,140.355833,,1,,9112,35,144,,2030-1640,.....6.,,,51131,,, +1512,J,,JOAZ NHK2,,Sasebo (kyu-nag),33.133333,129.7,,0.5,,9054,45,147,,2030-1500,1.....7,,,51135,,, +1512,J,,JOAZ NHK2,,Sasebo (kyu-nag),33.133333,129.7,,0.5,,9054,45,147,,2030-1635,.2345..,,,51135,,, +1512,J,,JOAZ NHK2,,Sasebo (kyu-nag),33.133333,129.7,,0.5,,9054,45,147,,2030-1640,.....6.,,,51135,,, +1512,KOR,,AFN Korea-Thunder AM,,Jinhae/Naval Station (gsn),35.116667,128.65,,0.25,,8816,45,149,,0000-2400,1234567,,,51138,,, +1512,KOR,,AFN Korea-Thunder AM,,Pohang/Camp Libby (gsb),36.05,129.383333,,0.25,,8762,44,149,,0000-2400,1234567,,,51139,,, +1512,INS,id,PM3DTD R.Suara Mitra Dirgantara,,Balikpapan (KI-bal),-1.283333,116.833333,,1,,11499,74,152,,0000-1200,1234567,,,51127,,, +1512,AUS,en,6BAY Spirit R,,Geraldton/Morawa (WA),-29.299444,115.911111,,5,,13833,95,153,,0000-2400,1234567,3,,51118,,, +1512,J,,NHK R 2,,Komagane (chu-nag),35.716667,137.933333,,0.1,,9176,38,154,,2030-1500,1.....7,,,51130,,, +1512,J,,NHK R 2,,Komagane (chu-nag),35.716667,137.933333,,0.1,,9176,38,154,,2030-1635,.2345..,,,51130,,, +1512,J,,NHK R 2,,Komagane (chu-nag),35.716667,137.933333,,0.1,,9176,38,154,,2030-1640,.....6.,,,51130,,, +1512,J,,NHK R 2,,Tsuruga (chu-fuk),35.65,136.05,,0.1,,9102,39,154,,2030-1500,1.....7,,,51136,,, +1512,J,,NHK R 2,,Tsuruga (chu-fuk),35.65,136.05,,0.1,,9102,39,154,,2030-1635,.2345..,,,51136,,, +1512,J,,NHK R 2,,Tsuruga (chu-fuk),35.65,136.05,,0.1,,9102,39,154,,2030-1640,.....6.,,,51136,,, +1512,J,ja,NHK R 2,,Isimi,34.5,134,,0.1,,9124,41,154,,2030-1500,1.....7,,,51129,,, +1512,J,ja,NHK R 2,,Isimi,34.5,134,,0.1,,9124,41,154,,2030-1635,.2345..,,,51129,,, +1512,J,ja,NHK R 2,,Isimi,34.5,134,,0.1,,9124,41,154,,2030-1640,.....6.,,,51129,,, +1512,J,,NHK R 2,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,2030-1500,1.....7,,,51132,,, +1512,J,,NHK R 2,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,2030-1635,.2345..,,,51132,,, +1512,J,,NHK R 2,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,2030-1640,.....6.,,,51132,,, +1512,KOR,,AFN Korea-Thunder AM,,Sandong (jej),33.416667,126.5,,0.05,,8870,47,156,,0000-2400,1234567,,,51137,,, +1512,AUS,en,2RN ABC National,,Newcastle/Beresfield (NSW),-32.799878,151.662542,,10,,16501,66,158,,0000-2400,1234567,1,,51119,,, +1512,NZL,,1ZU Classic Hits,,Taumarunui (MWT),-38.883333,175.266667,,1,,18311,35,174,,,,,,51140,,, +1512,NZL,,Coast Access R,,Waikanae (WGN),-40.883333,175.066667,,0.3,,18498,39,180,,,,,,51141,,, +1514,INS,id,R Primadona Ikhwan,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,51147,,, +1517,PRU,,OCX2Q R Inca,,Los Baos del Inca (caj),-7.166667,-78.466667,,1,,10288,262,148,,0800-0300,1234567,8,,52278,,, +1518,AFG,,Balkh R,,Mazar-e Sharif (bal),36.666667,67.133333,,2,,4958,85,104,,0230-0430,1234567,,,51149,,, +1518,AFG,,Balkh R,,Mazar-e Sharif (bal),36.666667,67.133333,,2,,4958,85,104,,1230-1530,1234567,,,51149,,, +1518,AFG,,R Nimroz,,Zaranj (nim),30.966667,61.883333,,2,,5027,95,104,,0330-0530,1234567,,,46818,,, +1518,AFG,,R Nimroz,,Zaranj (nim),30.966667,61.883333,,2,,5027,95,104,,1230-1500,1234.67,,,46818,,, +1518,AFG,,R Nimroz,,Zaranj (nim),30.966667,61.883333,,2,,5027,95,104,,1230-1930,....5..,,,46818,,, +1519,INS,id,R Arisha,,Tangerang/Karang Timur (BT-tan),-6.225,106.716667,,1,,11257,86,151,,,,,,35400146,,, +1520,USA,en,WWKB,,Buffalo (NY),42.769444,-78.842778,,50,,6119,297,101,,,,106,,43395,,, +1520,USA,en,WIZZ,,Greenfield (MA),42.603333,-72.605833,,10,,5744,293,104,,,,3,,41833,,, +1520,USA,es,WTRI,,Brunswick (MD),39.311389,-77.607222,,17,,6301,293,108,,,,,,43204,,, +1520,PTR,es,WVOZ,,San Juan (PR),18.353056,-66.2025,,25,,7227,268,115,,0000-2400,1234567,994,,32232,,, +1520,USA,en,KOLM,,Rochester (DC) (MN),43.986944,-92.418056,,10,,6816,306,115,,,,,,20012605,,, +1520,USA,,WARR,,Warrenton (NC),36.405,-78.135833,,5,,6558,291,116,,,,,,40743,,, +1520,USA,,WTHE,,Mineola (NY),40.745833,-73.624722,,1,,5943,292,116,,,,,,43133,,, +1520,USA,,WLGC,,Greenup (KY),38.595556,-82.855556,,5,,6683,296,117,,,,,,42162,,, +1520,USA,,WCHE,,West Chester (PA),39.966111,-75.631944,,1,,6127,292,118,,,,,,40991,,, +1520,USA,,WDSL,,Mocksville (NC),35.880556,-80.540556,,5,,6752,292,118,,,,,,41208,,, +1520,USA,en,KOKC,,Oklahoma City (OK),35.333333,-97.504444,,50,,7825,303,118,,,,1,,39073,,, +1520,USA,,WHOW,,Clinton (IL),40.095278,-88.964167,,5,,6931,301,119,,,,,,41681,,, +1520,USA,en,KKXA,i,Snohomish (WA),47.875556,-122.077778,,50,,7872,326,119,,,,16,,20012526,,, +1520,USA,,WINW,,Canton (OH),40.844722,-81.350556,,1,,6416,297,121,,,,,,20016005,,, +1520,USA,,WJMP,,Kent (OH),41.160278,-81.304444,,1,,6389,297,121,,,,,,41899,,, +1520,USA,,WKVI,,Knox (IN),41.322222,-86.604722,,1.8,,6695,300,121,,,,,,42086,,, +1520,USA,,WMLM,,St. Louis (MI),43.352222,-84.604167,,1,,6420,301,121,,,,,,42345,,, +1520,USA,en,KMSR,,Mayville (ND),47.499167,-97.350833,,1.3,,6795,311,124,,1400-0200,1234567,994,,38881,,, +1520,USA,,WDCY,,Douglasville (GA),33.763333,-84.741111,,2.5,,7187,293,125,,,,,,41136,,, +1520,USA,,KOLM,,Rochester (N) (MN),43.9875,-92.427778,,0.8,,6816,306,126,,,,996,,39082,,, +1520,USA,,WKMG,,Newberry (SC),34.253333,-81.595556,,1,,6949,291,126,,,,,,42043,,, +1520,USA,,WNWT,,Toledo (OH),41.508889,-83.551944,,0.4,,6499,299,126,,,,,,41183,,, +1520,USA,,KRHW,,Sikeston (MO),36.823611,-89.595833,,1.6,,7235,299,127,,,,,,39246,,, +1520,USA,es,KGDD,,Oregon City (OR),45.412222,-122.576944,,15,,8128,325,127,,,,2,,38462,,, +1520,USA,,KSIB,,Creston (IA),41.037778,-94.393889,,1,,7166,305,129,,,,,,39359,,, +1520,USA,,WVOH,,Spindale (NC),35.35,-81.938333,,0.5,,6883,292,129,,,,,,41530,,, +1520,USA,,WTLM,,Opelika (AL),32.657222,-85.424167,,1,,7321,293,130,,,,,,43166,,, +1520,DOM,,HIWJ R Saman R 15-20,,Santa Brbara de Saman (smn),19.197222,-69.3125,,1,,7368,271,131,,0930-0400,1234567,,,37317,,, +1520,USA,,KZOY,,Sioux Falls (SD),43.557778,-96.796111,,0.5,,7090,308,131,,,,,,39407,,, +1520,USA,en,WEXY,,Wilton Manors (FL),26.173889,-80.1575,,0.8,,7517,284,133,,,,,,41345,,, +1520,CUB,es,R Baragu,,Palma Soriano (sc),20.166667,-75.966667,,1,,7739,277,134,,,,9957,,36560,,, +1520,USA,,KYND,,Cypress (TX),30.010278,-95.694444,,3,,8178,298,134,,,,,,39860,,, +1520,USA,en,KUNX,,Port Hueneme (CA),34.167222,-119.133889,,10,,9062,317,134,,,,100,,39674,,, +1520,B,pt,ZYI801 Rdio Surubim,,Surubim (PE),-7.830278,-35.755278,,1,,7774,225,135,,,,,,36902570,,, +1520,USA,,WXYB,,Indian Rocks Beach (FL),27.845833,-82.7725,,0.6,,7549,287,135,,,,,,43500,,, +1520,B,pt,ZYH530 Rdio Povo,,Poes/Rua Dulce Pazzi 6 (BA),-14.511872,-40.355522,,5,,8663,226,136,,,,,,36902563,,, +1520,USA,,KMPG,,Hollister (CA),36.835,-121.418611,,5,,8908,320,136,,,,9936,,38926,,, +1520,USA,,WNWS,,Brownsville (TN),35.608333,-89.244444,,0.25,,7314,297,136,,,,,,42538,,, +1520,USA,en,WBZW,,Apopka (FL),28.652222,-81.494444,,0.35,,7399,287,136,,,,,,41639,,, +1520,CLM,es,HJLI R Libertad,,Bogot D. C. (bdc),4.716667,-74.116667,,5,,8947,265,137,,,,998,,37547,,, +1520,USA,,KQQB,,Stockdale (D) (TX),29.193056,-97.866667,,2.5,,8380,299,137,,,,,,20016060,,, +1520,B,pt,ZYJ610 Rdio Salinas,,Macau (RN),-5.116944,-36.625278,,0.25,,7547,227,138,,,,,,36902545,,, +1520,USA,en,KFXZ,,Lafayette (LA),30.280833,-92.014722,,0.5,,7931,296,139,,,,,,38447,,, +1520,B,pt,ZYH635 Rdio Regional de Ip,,Ip (CE),-4.336678,-40.726606,,0.25,,7682,231,140,,,,997,,36902547,,, +1520,B,pt,ZYH653 Rdio Cachoeira,,Solonpole (CE),-5.742444,-38.999589,,0.25,,7729,229,140,,,,,,36902569,,, +1520,B,pt,ZYH928 Mirante AM,,Chapadinha (MA),-3.734189,-43.340756,,0.25,,7766,234,141,,,,,,36902553,,, +1520,CLM,es,HJLQ R Minuto,,Barranquilla (atl),10.9,-74.766667,,1,,8452,270,142,,,,145,,26531,,, +1520,CLM,es,HJMZ,,Sincelejo (suc),9.3,-75.366667,,1,,8632,269,142,,,,,,37569,,, +1520,EQA,,HCJJ2,,Quevedo (gua),-1.05,-79.45,,3,,9817,266,142,,,,,,36985,,, +1520,MEX,es,XEART-AM La Seal 152,,Zacatepec (mor),18.667594,-99.194636,,2,,9394,294,142,,,,,,43733,,, +1520,B,pt,ZYH797 Rdio Cristal,,Cristalndia (TO),-10.593889,-49.191389,,1,,8751,236,143,,,,,,36902548,,, +1520,GTM,,R Taysal,,Santa Elena de la Cruz (pet),17.05,-89.166667,,1,,8891,285,143,,,,,,52138,,, +1520,CLM,es,HJAM R Altamiza,,Dolores (tol),3.75,-74.883333,,1,,9084,265,144,,,,,,37329,,, +1520,CLM,es,HJMA,,Jerico (ant),5.816667,-75.866667,,1,,8970,267,144,,,,,,37560,,, +1520,CLM,es,HJRL,,Santa Rosa de Cabal (ris),4.866667,-75.616667,,1,,9036,267,144,,,,,,35902035,,, +1520,CTR,,TIECC R Cartago,,Cartago (ctg),9.9,-83.666667,,1,,9146,276,144,,1100-0400,1234567,,,40594,,, +1520,HND,,HRBN,,Marcala (lap),14.066667,-88,,1,,9074,282,144,,,,,,37741,,, +1520,HND,,HRFU,,San Pedro Sula (cor),15.466667,-88.016667,,1,,8953,283,144,,,,,,37752,,, +1520,MEX,es,XEVO-AM La Furia,,San Rafael (vcz),20.190067,-96.868356,,1,,9113,293,144,,,,,,44978,,, +1520,USA,,WLUV,,Loves Park (IL),42.33,-89.082778,,0.0125,,6760,303,144,,,,,,42248,,, +1520,USA,en,WRCI,,Three Rivers (MI),41.928611,-85.6375,,0.008,,6590,300,144,,,,,,42181,,, +1520,B,pt,ZYJ931 Rdio Ilha,,Tobias Barreto (SE),-11.166667,-38.004444,,0.25,,8216,226,145,,,,,,36902560,,, +1520,CLM,,HJLS,,Popayn (cau),2.366667,-76.516667,,1,,9317,266,145,,,,,,37556,,, +1520,GTM,,TGRS R Superior,,Coatepeque (qzt),14.683333,-91.866667,,1,,9276,286,145,,,,,,52139,,, +1520,B,pt,Rdio Torre Forte AM,,Buritama (SP),-21.061006,-50.151717,,1,,9802,231,146,,,,,,36902544,,, +1520,B,pt,ZYK627 Clube AM,,Esprito Santo do Pinhal (SP),-22.199444,-46.779444,,1,,9737,228,146,,,,,,36902555,,, +1520,EQA,,HCTI1,,Ibarra (imb),0.266667,-78.116667,,1,,9611,266,146,,,,,,37138,,, +1520,MEX,es,XEJCC-AM,,Ciudad Jurez (chi),31.682728,-106.357019,,0.5,,8645,307,146,,,,,,44202,,, +1520,USA,,WQCT,,Bryan (OH),41.478611,-84.580278,,0.005,,6563,299,146,,,,,,42769,,, +1520,EQA,,HCRN2 LV de Naranjal,,Naranjal (gua),-2.666667,-79.5,,1,,9963,265,147,,,,2,,26075,,, +1520,MEX,es,XEYP-AM Bonita,,El Limn (tam),22.833333,-99,,0.5,,9011,296,147,,,,,,45104,,, +1520,B,pt,ZYJ292 Nova Rdio Cultura Palotinense,,Palotina (PR),-23.866667,-53.083333,,1,,10226,232,148,,,,,,36902567,,, +1520,BOL,,CP179 R Petrolera,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,1200-0330,12345..,,,36670,,, +1520,BOL,,CP179 R Petrolera,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,1400-2300,.....67,,,36670,,, +1520,BOL,,R Nueva Esperanza,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,0900-2400,1234567,,,52064,,, +1520,MEX,es,XEVUC-AM La Norteita,,Villa Unin (coa),28.235561,-100.747233,,0.25,,8635,300,148,,,,,,44996,,, +1520,PRU,,OAX1C R Delcar,,Chiclayo (lam),-6.7,-79.816667,,1,,10339,263,148,,,,,,40266,,, +1520,URG,,CX152 R Acuarela,,Melo (cl),-32.35,-54.166667,,2,,11079,228,148,,0900-0300,1234567,,,36796,,, +1520,B,pt,ZYH806 RCB-Rdio Campos Belos,,Campos Belos (GO),-13.028664,-46.767567,,0.25,,8850,232,149,,,,,,36902561,,, +1520,B,pt,ZYJ491 Rdio Continental,,So Joo de Meriti/Praa Elvira 10 (RJ),-22.801889,-43.338222,,0.5,,9625,225,149,,,,,,36902556,,, +1520,B,pt,ZYK614 R Iguatemi,,Mogi das Cruzes (SP),-23.512375,-46.197511,,0.5,,9835,227,149,,,,988,,36902557,,, +1520,BOL,,R Melodia,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,,,,,52063,,, +1520,CLM,es,HKT20,,Montera (cor),8.75,-75.883333,,0.25,,8715,269,149,,,,,,35902059,,, +1520,EQA,,HCRI5,,Guamote (chi),-1.883333,-78.7,,0.5,,9839,265,149,,,,,,37087,,, +1520,PRG,,ZP36,,Ypoa (pgu),-25.5825,-57.135278,,1,,10607,234,149,,,,,,45532,,, +1520,USA,,WSVX,,Shelbyville (IN),39.558056,-85.770278,,0.004,,6784,298,149,,,,,,42093,,, +1520,MEX,es,XEEH-AM R xitos,,San Luis Ro Colorado (son),32.483192,-114.786761,,0.25,,9013,313,150,,,,,,43962,,, +1520,B,,ZYH802,,Santa Helena de Gois (GO),-17.866667,-50.533333,,0.25,,9518,233,151,,,,,,45760,,, +1520,B,pt,ZYL245 Rdio Clube de Itana,,Itana (MG),-20.066667,-44.583333,,0.25,,9419,227,151,,,,,,36902552,,, +1520,EQA,,HCEB4,,Manta (man),-1,-80.766667,,0.35,,9903,267,151,,,,,,36910,,, +1520,MEX,es,XEATL-AM R Mexiquense,,Atlacomulco (mex),19.791894,-99.874403,,0.25,,9336,295,151,,,,,,43738,,, +1520,ARG,,AM Reverendo Aquiles Acosta,,San Justo (ba),-34.666667,-58.55,,1,,11520,230,152,,,,,,51895,,, +1520,ARG,,R Metropolitana,,Ciudadela (ba),-34.633333,-58.533333,,1,,11516,230,152,,,,,,51896,,, +1520,ARG,,R Modelo,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,51894,,, +1520,B,,ZYI424,,Rosrio Oeste (MT),-14.836111,-56.4275,,0.25,,9568,240,152,,,,,,45839,,, +1520,B,pt,ZYL223 Rdio Cultura,,Cssia (MG),-20.583333,-46.933333,,0.25,,9588,229,152,,,,,,36902550,,, +1520,B,pt,ZYJ218 Rdio Serra do Mar,,Antonina (PR),-25.467778,-48.686389,,0.25,,10148,228,153,,,,,,36902565,,, +1520,B,pt,ZYJ358 Rdifuso Guairac,,Terra Rica (PR),-22.726389,-52.611111,,0.25,,10092,232,153,,,,,,36902543,,, +1520,B,pt,ZYK760 Rdio Manchester,,Votorantim (SP),-23.539167,-47.422222,,0.25,,9899,228,153,,,,,,36902566,,, +1520,B,pt,ZYN605 Rdio Campo Alegre,,Rio Verde de Mato Grosso (MS),-18.909283,-54.855194,,0.25,,9857,236,153,,,,,,36902546,,, +1520,EQA,,HCPB5,,Giron (azu),-3.2,-79.116667,,0.25,,9984,265,153,,,,,,37056,,, +1520,B,,ZYJ287,,Ivaipor (PR),-24.216667,-51.666667,,0.25,,10183,231,154,,,,,,46011,,, +1520,B,,ZYJ758,,Imbituba (SC),-28.216667,-48.666667,,0.25,,10411,226,154,,,,,,46170,,, +1520,B,pt,ZYI405 Rdio Jornal,,Amamba (MS),-23.106667,-55.255328,,0.25,,10273,234,154,,,,,,36902568,,, +1520,B,pt,ZYJ340 Rdio Internacional,,Quedas do Iguau (PR),-25.448333,-52.935278,,0.25,,10367,231,154,,,,,,36902554,,, +1520,B,pt,ZYJ806 Cultura AM Timb,,Timb (SC),-26.802778,-49.281667,,0.25,,10306,228,154,,,,,,36902564,,, +1520,BOL,,CP207 R LV del Cobre,,Corocoro (lpz),-17.2,-68.483333,,0.25,,10521,248,155,,1000-0400,1234567,,,52062,,, +1520,CHL,,CC152 R Nueva Soberania,,Linares (ML),-35.816667,-71.65,,1,,12346,238,155,,1030-0430,1234567,,,35823,,, +1520,CLM,es,HKW43,,Tangua (nar),1.1,-77.4,,0.1,,9489,266,155,,,,,,35902041,,, +1520,B,,ZYK308,,Tapes (RS),-30.666667,-51.416667,,0.25,,10782,227,156,,,,,,46337,,, +1520,B,pt,ZYK217 RDC-Rdio Difusora Cachoeirense,,Cachoeira do Sul/Rua Paraguai (RS),-30.039167,-52.893889,,0.25,,10797,229,156,,,,,,36902551,,, +1520,USA,en,WQCT908,,Gig Harbor (WA),47.577664,-122.576694,,0.01,,7919,326,156,,,,,,20010714,,, +1520,USA,en,WQED923,,Gig Harbor (WA),47.310997,-122.576694,,0.01,,7945,326,156,,,,,,20010712,,, +1520,CHL,,CB152 R Integracion,,San Antonio (VS),-33.566667,-71.6,,0.5,,12150,240,157,,0900-0500,1234567,,,35743,,, +1520,URG,,CV152 R Paz La nueva r,,Guichn (pa),-32.366667,-57.216667,,0.25,,11239,230,157,,1000-2300,1234567,,,36733,,, +1520,USA,en,WPVZ859,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010710,,, +1520,USA,en,WPVZ859,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010711,,, +1520,USA,en,WPVZ859,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010713,,, +1520,USA,en,WPVZ859,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010715,,, +1520,ARG,,LT38 R Gualeguay,,Gualeguay (er),-33.133333,-59.316667,,0.25,,11420,231,158,,0900-0300,1234567,,,40189,,, +1520,ARG,,R Chascomus,,Chascomus (ba),-35.566667,-58.016667,,0.25,,11574,229,158,,0000-2400,1234567,,,2073,,, +1520,CHL,,CD152 R Anibal Pinto,,Lautaro (AR),-38.516667,-72.416667,,0.1,,12618,237,166,,,,,,35886,,, +1521,ARS,ar,BSKSA Idha'atu Nedaa al-Islam,,Duba (tbk),27.444444,35.590833,,2000,295,3659,127,61,,1500-1700,1234567,0,,1582,,, +1521,ARS,ar,BSKSA Idha'atu-i Riyadh,,Duba (tbk),27.444444,35.590833,,2000,295,3659,127,61,,1700-0300,1234567,0,,1582,,, +1521,E,es,SER,,Castelln/Ramell (VAL-CS),40.004061,-0.009056,,5,,1433,203,64,,0000-2400,1234567,9994,,1583,,, +1521,G,en,Flame CCR,,Birkenhead/Bidston (EN-MER),53.401944,-3.077778,,0.03,,654,286,79,,,,9997,,2800029,,, +1521,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.164014,86.895514,,500,310,5725,65,87,,0000-0056,1234567,0,,1763,,, +1521,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.164014,86.895514,,500,310,5725,65,87,,1100-1956,1234567,0,,1763,,, +1521,BHR,ar,Bahrain FM,,Al-Manamah (mnh),26.216667,50.583333,,10,,4664,111,94,,0500-1700,1234567,997,,10900018,,, +1521,RUS,ru,R Rossii,,Boguchany (KN),58.373403,97.515972,,5,,5366,45,104,,0000-1800,1234567,0,,46992,,, +1521,RUS,ru,R Rossii,,Boguchany (KN),58.373403,97.515972,,5,,5366,45,104,,2200-2400,1234567,0,,46992,,, +1521,IND,,AIR Northeast,,Tawang (AR),27.584156,91.864589,,10,,7326,75,120,,0025-0430,1234567,,,51174,,, +1521,IND,,AIR Northeast,,Tawang (AR),27.584156,91.864589,,10,,7326,75,120,,1000-1630,1234567,,,51174,,, +1521,CHN,,Langfang RGD Wan=Play,,Langfang (HB),39.528333,116.729722,,25,,7812,50,121,,,,,,51160,,, +1521,CHN,mn,Ulanqab RGD,,Jining/NMTS585 (NM),41.023056,113.073611,,10,,7489,52,122,,,,,,36200257,,, +1521,IND,,AIR West,,Aurangabad (MH),19.875167,75.344444,,1,,6848,94,125,,0025-0430,1234567,,,51173,,, +1521,IND,,AIR West,,Aurangabad (MH),19.875167,75.344444,,1,,6848,94,125,,0630-0930,1234567,,,51173,,, +1521,IND,,AIR West,,Aurangabad (MH),19.875167,75.344444,,1,,6848,94,125,,1200-1741,1234567,,,51173,,, +1521,CHN,zh,Xinxiang RGD Traffic,,Xinxiang (HE),35.283611,113.923056,,10,,8033,55,127,,,,,,36200258,,, +1521,CHN,,Heze Shi JGD,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,,,,,36200705,,, +1521,CHN,,Xiangyang RGD,,Xiangfan/Xiangyang (HU),32.1,112.2,,10,,8214,58,129,,,,,,36200699,,, +1521,CHN,,Yakeshi RGD,,Yakeshi/NMTS785 (NM),49.3105,120.807556,,1,,7154,41,129,,,,,,36200447,,, +1521,CHN,,Huai'an JGD,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,10,,8471,52,132,,,,,,51157,,, +1521,CHN,,Zhejiang RGD Lyou zhi Sheng,,unknown (ZJ),34.95,104.5,,1,,7515,61,132,,,,,,36200695,,, +1521,CHN,,Taonan RGD,,Taonan (JL),45.333333,122.783333,,1,,7596,43,133,,,,,,51165,,, +1521,CHN,zh,CNR 1,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,5,,8308,53,133,,2025-1805,1234567,,,36201335,,, +1521,THA,th,Witthayu Krajaisiang 919,,Bangkok/Viphavadee-Rangsit Rd (bmp),13.774222,100.551222,,10,,9082,78,134,,2100-1500,1234567,,,51190,,, +1521,CHN,,Changzhi RGD,,Qinxian (SX),36.75,112.683333,,1,,7836,55,135,,,,,,51162,,, +1521,CHN,,Hebei RGD Lyou yu Wenhua,,Baoding (HB),38.85,115.55,,1,,7809,51,135,,,,,,36200708,,, +1521,CHN,,Hebei RGD Jingji Guangbo,,Xingtai (HB),37.066667,114.516667,,1,,7910,53,136,,,,,,36200698,,, +1521,CHN,,Shaanxi Xinwen Guangbo,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,2150-1710,1234567,,,51164,,, +1521,CHN,,Suzhou JGD,,Suzhou (JS),31.412778,120.693056,,5,,8752,52,136,,,,,,36200701,,, +1521,CHN,zh,CNR 3,,Beidaihe (HB),39.85,119.416667,,1,,7923,48,136,,2200-1600,1234567,,,36200707,,, +1521,CHN,,Jiaozuo RGD,,Jiaozuo (HE),35.192222,113.262778,,1,,8004,55,137,,,,,,51159,,, +1521,CHN,,Luoyang RGD Traffic,,Luoyang (HE),34.7,112.4,,1,,7998,56,137,,,,,,36200702,,, +1521,CHN,,Yunnan JGD,,Dali/SARFT653 (YN),25.716667,100.166667,,1,,8025,71,137,,,,,,51155,,, +1521,CHN,zh,CNR 1,,Dazhou (SC),31.216667,107.5,,1,,8013,62,137,,2025-1805,1234567,,,36200706,,, +1521,CHN,,Henan RGD My R,,Zhengzhou/HETS104 (HE),34.743611,113.858056,,1,,8077,55,138,,????-1500,1234567,,,51172,,, +1521,CHN,,Pingdingshan RGD,,Pingdingshan (HE),33.7,113.283333,,1,,8136,56,138,,,,,,51161,,, +1521,CHN,zh,Changzhou RGD Literary,,Changzhou (JS),31.768333,119.782778,,3,,8670,53,138,,2130-1435,1234567,,,51153,,, +1521,CHN,,Anshun RGD,,Anshun (GZ),26.25,105.916667,,1,,8345,66,140,,,,,,51152,,, +1521,CHN,,Qujing RGD,,Qujing (YN),25.466667,103.666667,,1,,8270,68,140,,,,,,51163,,, +1521,CHN,,Xiamen RGD Music,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,3,,9229,58,140,,,,,,51169,,, +1521,CHN,,Honghe RGD,,Gejiu/YNTS654 (YN),23.398333,103.161389,,1,,8417,70,141,,,,,,51156,,, +1521,CHN,,Jingzhou RGD News,,Jingzhou (HU),30.35,112.183333,,1,,8367,59,141,,,,,,36200703,,, +1521,CHN,,Yangzhou Traffic Station,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,1,,8589,53,142,,2120-????,1234567,,,51170,,, +1521,CHN,,Huzhou JGD,,Huzhou (ZJ),30.838611,120.221111,,1,,8779,53,143,,,,,,36200704,,, +1521,CHN,,Wuxi RGD Urban Life,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,????-1800,1234567,,,51167,,, +1521,CHN,,Zhangjiagang RGD Music,,Zhangjiagang (JS),31.866667,120.533333,,1,,8702,52,143,,,,,,36200697,,, +1521,J,ja,JOTC NHK2,,Aomori (toh-aom),40.793889,140.7575,,1,,8786,33,143,,2030-1500,1.....7,9995,,51179,,, +1521,J,ja,JOTC NHK2,,Aomori (toh-aom),40.793889,140.7575,,1,,8786,33,143,,2030-1635,.2345..,9995,,51179,,, +1521,J,ja,JOTC NHK2,,Aomori (toh-aom),40.793889,140.7575,,1,,8786,33,143,,2030-1640,.....6.,9995,,51179,,, +1521,CHN,zh,CNR 1,,Zhaoqing (GD),23.05,112.45,,1,,9030,63,144,,2025-1805,1234567,,,51171,,, +1521,CHN,zh,CNR 2,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,2100-1602,1234567,,,36200696,,, +1521,J,ja,JOFC NHK2,,Fukui (chu-fuk),36.040833,136.233611,,1,,9072,39,144,,2030-1500,1.....7,,,51180,,, +1521,J,ja,JOFC NHK2,,Fukui (chu-fuk),36.040833,136.233611,,1,,9072,39,144,,2030-1635,.2345..,,,51180,,, +1521,J,ja,JOFC NHK2,,Fukui (chu-fuk),36.040833,136.233611,,1,,9072,39,144,,2030-1640,.....6.,,,51180,,, +1521,J,ja,JOJC NHK2,,Yamagata (toh-yam),38.279167,140.326111,,1,,9019,35,144,,2030-1500,1.....7,,,51187,,, +1521,J,ja,JOJC NHK2,,Yamagata (toh-yam),38.279167,140.326111,,1,,9019,35,144,,2030-1635,.2345..,,,51187,,, +1521,J,ja,JOJC NHK2,,Yamagata (toh-yam),38.279167,140.326111,,1,,9019,35,144,,2030-1640,.....6.,,,51187,,, +1521,J,ja,JOLZ NHK2,,Yonago (chg-tot),35.446667,133.314167,,1,,9001,41,144,,2030-1500,1.....7,,,51188,,, +1521,J,ja,JOLZ NHK2,,Yonago (chg-tot),35.446667,133.314167,,1,,9001,41,144,,2030-1635,.2345..,,,51188,,, +1521,J,ja,JOLZ NHK2,,Yonago (chg-tot),35.446667,133.314167,,1,,9001,41,144,,2030-1640,.....6.,,,51188,,, +1521,J,ja,NHK R 2,,Nakamura/Shimanto (shi-koc),32.991944,132.916111,,1,,9220,43,144,,2030-1500,1.....7,,,51185,,, +1521,J,ja,NHK R 2,,Nakamura/Shimanto (shi-koc),32.991944,132.916111,,1,,9220,43,144,,2030-1635,.2345..,,,51185,,, +1521,J,ja,NHK R 2,,Nakamura/Shimanto (shi-koc),32.991944,132.916111,,1,,9220,43,144,,2030-1640,.....6.,,,51185,,, +1521,J,ja,JODC NHK2,,Hamamatsu (chu-shi),34.674167,137.764167,,1,,9272,38,145,,2030-1500,1.....7,,,51182,,, +1521,J,ja,JODC NHK2,,Hamamatsu (chu-shi),34.674167,137.764167,,1,,9272,38,145,,2030-1635,.2345..,,,51182,,, +1521,J,ja,JODC NHK2,,Hamamatsu (chu-shi),34.674167,137.764167,,1,,9272,38,145,,2030-1640,.....6.,,,51182,,, +1521,J,ja,NHK R 2,,Ishigaki (kyu-oki),24.363889,124.157778,,1,,9593,54,146,,2030-1500,1.....7,,,51183,,, +1521,J,ja,NHK R 2,,Ishigaki (kyu-oki),24.363889,124.157778,,1,,9593,54,146,,2030-1635,.2345..,,,51183,,, +1521,J,ja,NHK R 2,,Ishigaki (kyu-oki),24.363889,124.157778,,1,,9593,54,146,,2030-1640,.....6.,,,51183,,, +1521,INS,id,PM7CLY R.Suara Musi Jaya Pertama,,Sekayu (SS-mba),-2.85,103.85,,1,,10765,86,150,,,,,,51177,,, +1521,J,,NHK R 2,,Kure (chg-hir),34.25,132.6,,0.1,,9084,42,154,,2030-1500,1.....7,,,51184,,, +1521,J,,NHK R 2,,Kure (chg-hir),34.25,132.6,,0.1,,9084,42,154,,2030-1635,.2345..,,,51184,,, +1521,J,,NHK R 2,,Kure (chg-hir),34.25,132.6,,0.1,,9084,42,154,,2030-1640,.....6.,,,51184,,, +1521,J,,NHK R 2,,Saiki (kyu-oit),32.966667,131.916667,,0.1,,9176,44,154,,2030-1500,1.....7,,,51186,,, +1521,J,,NHK R 2,,Saiki (kyu-oit),32.966667,131.916667,,0.1,,9176,44,154,,2030-1635,.2345..,,,51186,,, +1521,J,,NHK R 2,,Saiki (kyu-oit),32.966667,131.916667,,0.1,,9176,44,154,,2030-1640,.....6.,,,51186,,, +1521,J,ja,NHK R 2,,Gujohachiman,34.5,134,,0.1,,9124,41,154,,,,,,31400113,,, +1521,J,ja,NHK R 2,,Hanawa,34.5,134,,0.1,,9124,41,154,,,,,,31400114,,, +1521,INS,id,RSPDK Klaten,,Klaten (JT),-7.703611,110.600556,,0.1,,11650,84,162,,,,,,51192,,, +1521,AUS,en,2QN QN Country,,Deniliquin (NSW),-35.625989,144.913356,,2,,16287,77,165,,0000-2400,1234567,8,,51150,,, +1521,NZL,,1XTR Classic Good Time Oldies,,Tauranga/Matapihi (BOP),-37.693889,176.196389,,1,22,18226,30,174,,,,,,51189,,, +1523,INS,id,PM3BIX R Primadona,,Cikampek (JB-kar),-6.416667,107.466667,,1,,11324,85,151,,,,,,35400096,,, +1530,ROU,ro,SRR R Romnia Actualităţi,,Rădăuţi (SV),47.857336,25.913753,,14,,1467,101,60,,0000-2400,1234567,61,,1596,,, +1530,G,en,Pulse 2,,Huddersfield/Vicars Lot (EN-WYK),53.651778,-1.89275,,0.74,,583,290,64,,0000-2400,1234567,5,,1592,,, +1530,ROU,ro,SRR R Constanţa,,Nufăru/Releul Delta (TL),45.150194,28.924583,,14,,1817,106,64,,0236-2208,1234567,1,,1597,,, +1530,G,en,BBC Essex,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.15,,401,264,69,,0300-2400,12345..,1,,1591,,, +1530,G,en,BBC Essex,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.15,,401,264,69,,0500-2400,.....67,1,,1591,,, +1530,G,en,BBC R 5 Live,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.15,,401,264,69,,0000-0300,12345..,1,,1591,,, +1530,G,en,BBC R 5 Live,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.15,,401,264,69,,0000-0500,.....67,1,,1591,,, +1530,GRC,el,R Iperohos,,Thessaloniki (cmc-tsk),40.633333,22.933333,,1,,1791,129,75,,,,,,3400013,,, +1530,G,,Celtic Music R,,Glasgow (SC-GCC),55.883333,-4.25,,0.05,,812,305,78,,,,999,,2800004,,, +1530,MDR,pt,PEF-Posto Emissor do Funchal,,Poiso/Cho dos Balces (md),32.709919,-16.908203,,3,,2859,230,81,,0000-2400,1234567,997,,1595,,, +1530,AZE,,Azad Azərbaycan R,,Baku (bak),40.398197,49.846197,,7,,3521,94,84,,,,7,,47116,,, +1530,IRN,fa,IRIB R Iran,,Yazd/Fahraj (yzd),31.771792,54.536278,,50,,4468,101,85,,0030-1730,1234567,973,,1602,,, +1530,STP,en,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,0300-0430,1234567,2,,1764,,, +1530,STP,en,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,0600-0700,1234567,2,,1764,,, +1530,STP,en,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,1600-1700,1234567,2,,1764,,, +1530,STP,en,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,2000-2200,1234567,2,,1764,,, +1530,STP,fr,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,0530-0600,1234567,2,,1764,,, +1530,STP,fr,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,1830-2000,1234567,2,,1764,,, +1530,STP,ha,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,0500-0530,1234567,2,,1764,,, +1530,STP,pt,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,1700-1800,1234567,2,,1764,,, +1530,STP,pt,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,1800-1830,12345..,2,,1764,,, +1530,IRN,,Al-Alam,,unknown,32.5,53.625,,1,,4350,101,101,,1100-2000,1234567,976,,10800007,,, +1530,IND,,AIR North,,Agra (UP),27.133389,78.049667,,20,,6433,86,108,,0025-0400,1234567,,,51197,,, +1530,IND,,AIR North,,Agra (UP),27.133389,78.049667,,20,,6433,86,108,,0700-0930,1234567,,,51197,,, +1530,IND,,AIR North,,Agra (UP),27.133389,78.049667,,20,,6433,86,108,,1200-1740,1234567,,,51197,,, +1530,USA,en,WCKY,,Cincinnati (D) (OH),39.068611,-84.605556,,50,,6753,297,108,,1200-2400,1234567,,,20016133,,, +1530,USA,en,WCKY,,Cincinnati (N) (OH),39.065278,-84.6075,,50,,6753,297,108,,0000-1200,1234567,0,,42945,,, +1530,USA,,WDJZ,,Bridgeport (CT),41.169167,-73.220556,,5,,5886,292,109,,,,,,41168,,, +1530,AGL,pt,RNA Em. Prov. do Cabinda,,Tenda (cab),-5.256556,12.154528,,10,,6402,173,111,,0500-2300,1234567,,,47110,,, +1530,USA,,WYMM,,Jacksonville (FL),30.363889,-81.748333,,50,,7274,289,113,,,,,,43530,,, +1530,AFG,,R Nangarhar,,Jalalabad (nan),34.421467,70.470161,,0.4,,5349,85,114,,0130-0330,1234567,,,46815,,, +1530,AFG,,R Nangarhar,,Jalalabad (nan),34.421467,70.470161,,0.4,,5349,85,114,,1230-1500,1234567,,,46815,,, +1530,USA,en,WLCO,,Lapeer (MI),43.026389,-83.286667,,5,,6367,300,114,,,,998,,42236,,, +1530,USA,es,WLLQ,,Chapel Hill (NC),35.968611,-79.002778,,10,,6648,291,114,,1200-2400,1234567,,,42929,,, +1530,USA,,KQSP,,Shakopee (MN),44.807222,-93.556944,,8.6,,6812,307,116,,,,,,39390,,, +1530,USA,es,WJDM,,Elizabeth (NJ),40.690278,-74.261111,,1,,5987,292,117,,,,9940,,41861,,, +1530,USA,,WTTI,,Dalton (GA),34.785833,-85.044444,,10,,7123,294,118,,,,,,43224,,, +1530,USA,,WCTR,,Chestertown (MD),39.226389,-76.088889,,1,,6212,292,119,,,,,,41098,,, +1530,USA,en,WMCE,,North East (PA),42.201389,-79.861944,,1,,6223,297,119,,,,,,43534,,, +1530,USA,,WOBX,,Wanchese (NC),35.864444,-75.650278,,1,,6440,289,121,,,,,,42556,,, +1530,USA,,WFIC,,Collinsville (VA),36.715556,-79.920833,,1,,6647,292,123,,,,,,41384,,, +1530,USA,,WYGR,,Wyoming (MI),42.927222,-85.747222,,0.5,,6519,301,125,,,,,,43518,,, +1530,USA,en,WCKG,,Elmhurst (IL),41.8675,-87.918611,,0.76,,6729,301,125,,1300-0100,1234567,,,41885,,, +1530,CHN,,Zhejiang RGD Chengshi zhi Sheng,,Hangzhou/ZJTS4 (ZJ),30.266667,120.133333,,50,,8826,54,126,,2130-1605,1234567,,,51194,,, +1530,USA,,WASC,,Spartanburg (SC),34.949444,-81.959167,,1,,6916,292,126,,,,,,40747,,, +1530,USA,,WLIQ,,Quincy (IL),39.930833,-91.429444,,1.4,,7088,302,126,,,,,,20016035,,, +1530,USA,en,KFBK,i,Sacramento (CA),38.848333,-121.482778,,50,,8716,321,126,,,,13,,38378,,, +1530,CHN,zh,Jilin RGD,,Fuyuan (JL),41.9,125.333333,,10,,8026,43,127,,0000-2400,1234567,,,36201120,,, +1530,USA,,KXTD,,Wagoner (OK),35.975,-95.491667,,5,,7654,302,127,,,,,,39826,,, +1530,CHN,zh,Jilin RGD,,Yanji=Yeon'gil (JL),42.933211,129.501367,,10,,8119,40,128,,0000-2400,1234567,,,36200692,,, +1530,VEN,,YVNP R San Felipe el Fuerte,,San Felipe (ycy),10.5,-68.716667,,10,,8074,265,128,,,,,,51708,,, +1530,USA,,KVDW,,England (AR),34.545833,-91.984444,,2.5,,7568,299,129,,,,,,39617,,, +1530,USA,,WWDX,,Huntingdon (TN),36.001111,-88.433889,,1,,7232,297,129,,,,,,41124,,, +1530,USA,es,WLWB,,Chilton (WI),44.019444,-88.158889,,0.25,,6574,303,129,,,,,,42279,,, +1530,USA,,KZNX,,Creedmoor (DC) (TX),30.077222,-97.635556,,10,,8289,299,130,,,,,,39901,,, +1530,USA,,KLBW,,New Boston (TX),33.482222,-94.423611,,2.5,,7803,299,131,,,,,,38963,,, +1530,USA,,KCLR,,Ralls (TX),33.666667,-101.378889,,5,,8191,304,132,,,,,,38175,,, +1530,CLM,es,HJOZ LV de Prov de Padilla,,San Juan del Cesar (lag),10.783333,-72.966667,,5,,8339,268,133,,,,,,37617,,, +1530,PNR,es,R Avivamiento,,Pedregal/San Jos (pnm),9.106944,-79.420278,,10,,8926,272,133,,,,994,,52329,,, +1530,THA,th,Wor. Por. Thor. 14,,Uttaradit/13-7 Prachanimit Rd (utr),17.632903,100.098167,,10,,8716,76,133,,2200-1700,1234567,,,51213,,, +1530,USA,,KGBT,,Harlingen (TX),26.375833,-97.895278,,10,,8629,297,133,,,,,,38460,,, +1530,USA,,KQNK,,Norton (KS),39.826944,-99.868889,,1,,7571,307,133,,,,,,39202,,, +1530,CHN,,Jilin RGD,,Tongyu (JL),44.8,123.1,,1,,7659,43,134,,,,,,51196,,, +1530,PHL,tl,DZME-AM Radyo Uno,,Obando/78 Kalye Plamingco (bul),14.700056,120.943433,,25,,10303,62,134,,0000-2400,1234567,118,,51209,,, +1530,USA,,KMAM,,Butler (MO),38.248889,-94.321667,,0.5,,7394,303,134,,,,,,38875,,, +1530,CHN,,Jinzhong RGD,,Jinzhong (SX),37.683333,112.733333,,1,,7758,54,135,,,,,,36200694,,, +1530,KOR,en,AFN Korea-Thunder AM,,Yongsan=Youngsan (seo),37.522806,126.976417,,5,,8509,45,135,,0000-2400,1234567,,,51206,,, +1530,THA,th,Thor. Phor. Neung,,Chanthaburi/Bang Kacha (ctb),12.583333,102.058333,,10,,9286,78,135,,????-1700,1234567,,,51212,,, +1530,B,pt,ZYI781 Rdio Bitury,,Belo Jardim (PE),-8.368097,-36.4303,,1,,7860,225,136,,,,,,36902596,,, +1530,CHN,,Jilin RGD,,Liaoyuan (JL),42.866667,125.166667,,1,,7930,43,136,,,,,,36200693,,, +1530,PTR,,WUPR,,Utuado (PR),18.267778,-66.709722,,0.25,,7269,268,136,,1000-0300,1234567,,,43266,,, +1530,DOM,,HIJN R 1530,,Santiago de los Caballeros (sto),19.466667,-70.666667,,0.25,,7438,272,137,,0000-2400,1234567,,,37260,,, +1530,J,ja,JOXF CRT Tochigi Hoso,,Utsunomiya (kan-toc),36.548611,139.800278,,5,,9170,36,137,,0000-2400,1234567,,,51205,,, +1530,B,pt,ZYJ603 Rdio Curimatau,,Nova Cruz (RN),-6.466667,-35.433333,,0.25,,7622,225,139,,,,,,36902575,,, +1530,B,pt,ZYJ685 Rdio Planalto,,Vilhena (RO),-12.744872,-60.110714,,5,,9596,244,139,,0900-0330,1234567,,,36902574,,, +1530,PRU,es,OBU4C R Milenia,,Lima/Fundo Villa (lim),-12.188889,-77.016667,,10,,10632,257,139,,,,,,37000012,,, +1530,MEX,es,XEGQ-AM,,Los Reyes (mic),19.584981,-102.467733,,3.5,,9514,297,140,,,,,,44072,,, +1530,USA,,WVBF,,Middleborough Center (MA),41.923889,-70.935278,,0.002,,5687,291,141,,,,,,43281,,, +1530,B,pt,ZYH666 Rdio das Trs Fronteiras,,Campos Sales (CE),-7.076119,-40.3908,,0.25,,7932,230,142,,,,,,36902576,,, +1530,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20010717,,, +1530,CHN,,Hengyang RGD,,Hengyang (HN),26.883333,112.616667,,1,,8699,61,143,,,,,,51195,,, +1530,CLM,,HJGD,,Chiquinquira (boy),5.666667,-73.716667,,1,,8837,266,143,,,,,,37451,,, +1530,CLM,es,HJDN La Voz de Jesucristo,,Medelln (ant),6.283333,-75.566667,,1,,8909,268,143,,,,,,37394,,, +1530,B,pt,ZYI432 Rdio Atual,,Peixoto de Azevedo (MT),-10.257747,-54.998622,,1,,9057,241,144,,,,,,36902592,,, +1530,B,pt,ZYJ348 Rdio Vale do Iguau,,Ver (PR),-25.871389,-52.906389,,2.5,,10405,231,144,,,,,,36902589,,, +1530,CLM,,HJPE,,Melgar (tol),4.166667,-74.616667,,1,,9030,265,144,,,,,,37621,,, +1530,CLM,es,HJJB,,Sevilla (val),4.266667,-75.95,,1,,9112,267,144,,,,,,37503,,, +1530,J,,JODO BSN Niigata Hoso,,Joetsu (chu-nii),37.161111,138.241111,,1,,9046,37,144,,0000-2400,1234567,,,51202,,, +1530,J,ja,JOEO RCC Chugoku Hoso,,Fukuyama (chg-hir),34.501944,133.363611,,1,,9095,42,144,,0000-2400,1234567,,,51200,,, +1530,J,ja,RCC Chugoku Hoso,,Mihara (chg-hir),34.386111,133.05,,1,,9092,42,144,,0000-2400,1234567,,,51203,,, +1530,MEX,es,XEUR-AM R Fiesta,,Mxico D.F/Barrio Zapotla (dif),19.396014,-99.120994,,1,,9325,294,145,,,,,,44925,,, +1530,B,pt,ZYH479 Rdio Cultura de Guanambi,,Guanambi/Fazenda Piranha (BA),-14.226981,-42.752331,,0.5,,8755,228,146,,,,,,36902584,,, +1530,EQA,,HCJY1,,Uno (pic),-0.016667,-79,,1,,9696,266,146,,,,,,36999,,, +1530,USA,,KZNX,,Creedmoor (N) (TX),30.345556,-97.634444,,0.22,,8265,300,146,,,,,,20012598,,, +1530,EQA,,HCMC2,,Libertad (gua),-2.216667,-80.866667,,1,,10016,266,147,,,,,,37018,,, +1530,EQA,,HCVP5 La Voz de Pa,,Pallatanga (chi),-2,-78.95,,1,,9867,265,147,,,,,,37176,,, +1530,EQA,es,HCCC5 Ondas Caaris - R Universitaria Catolica,,Azogues (can),-2.716667,-78.766667,,1,,9917,265,147,,,,,,36875,,, +1530,NCG,,YNRST LV de Santa Teresa,,Santa Teresa (crz),11.8,-86.166667,,0.5,,9149,279,147,,1400-0200,1234567,,,52212,,, +1530,B,pt,Rdio AM Atalaia,,Sete Quedas (MS),-23.968056,-55.017778,,1,,10340,233,148,,,,,,36902585,,, +1530,CLM,es,HKN57,,San Juan de Uraba (ant),8.766667,-76.533333,,0.25,,8758,270,149,,,,,,35902107,,, +1530,CLM,es,HKN65,,Caucasia (ant),7.983333,-75.2,,0.25,,8735,268,149,,,,,,35902119,,, +1530,EQA,es,HCMZ6 R Dorado Deportes,,Pelileo (tun),-1.316667,-78.516667,,0.5,,9777,265,149,,,,,,37036,,, +1530,PRU,,OBZ4S R 15-15,,Huancayo (jun),-12.066667,-75.233333,,1,,10503,256,149,,,,,,40422,,, +1530,B,,ZYH782,,Formoso (GO),-13.616667,-48.9,,0.25,,9023,234,150,,,,,,45749,,, +1530,B,pt,ZYJ502 Rdio Princesinha do Norte,,Miracema (RJ),-21.4037,-42.186294,,0.25,,9432,225,151,,,,12,,36902583,,, +1530,CLM,es,HKV82 Alcaravan R,,Puerto Lleras (met),3.266667,-73.366667,,0.2,,9024,264,151,,,,,,35902144,,, +1530,INS,id,R Masjid Sunda Kelapa,,Jakarta/Menteng (JK-kjp),-6.191667,106.833333,,1,,11262,86,151,,,,,,35400147,,, +1530,ARG,,R Contempornea,,Lomas de Zamora (ba),-34.766667,-58.4,,1,,11521,230,152,,,,,,51898,,, +1530,ARG,,R Portea,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51843,,, +1530,ARG,es,R La Roca/Eco Portea,,Gregorio de Laferrere (ba),-34.749722,-58.609444,,1,,11530,230,152,,,,,,33000016,,, +1530,B,pt,ZYJ482 Rdio Bzios,,Cabo Frio (RJ),-22.816614,-41.984139,,0.25,,9562,224,152,,,,,,36902582,,, +1530,B,pt,ZYL262 Rdio Progresso AM,,Monte Santo de Minas (MG),-21.1772,-46.969639,,0.25,,9647,229,152,,,,,,36902580,,, +1530,B,pt,ZYL280 Rdio Clube de Pouso Alegre,,Pouso Alegre (MG),-22.236289,-45.926608,,0.25,,9697,227,152,,,,3,,36902573,,, +1530,CLM,es,HKS56,,Becerril (ces),9.7,-73.283333,,0.1,,8455,268,152,,,,,,35902179,,, +1530,CLM,es,HKS58,,El Copey (ces),10.15,-73.966667,,0.1,,8463,269,152,,,,,,35902177,,, +1530,EQA,,HCNI4,,San Lorenzo (esm),1.3,-78.866667,,0.25,,9571,267,152,,,,,,37041,,, +1530,B,pt,ZYK677 Rdio Difusora,,Tupi Paulista (SP),-21.434708,-51.5399,,0.25,,9912,232,153,,,,,,36902581,,, +1530,B,pt,ZYK714 Rdio Notcias de Tatu,,Tatu (SP),-23.342433,-47.864275,,0.25,,9902,228,153,,,,,,36902571,,, +1530,B,pt,ZYK755 Rdio Universal,,Teodoro Sampaio (SP),-22.513683,-52.177872,,0.25,,10049,232,153,,,,,,36902595,,, +1530,B,,ZYJ321,,Cianorte (PR),-23.616667,-52.616667,,0.25,,10177,232,154,,,,,,46043,,, +1530,B,,ZYJ339,,Balsa Nova (PR),-25.566667,-49.616667,,0.25,,10205,228,154,,,,,,46060,,, +1530,B,pt,ZYJ761 Rdio Difusora Itaja,,Itaja (SC),-26.909167,-48.677222,,0.25,,10286,227,154,,,,,,36902578,,, +1530,BOL,,CP111 R Em. Ballivian,,San Borja (ebn),-14.866667,-66.866667,,0.25,,10209,248,154,,1030-0100,1234567,,,36628,,, +1530,CHL,,CB153 R Nexo,,Quillota (VS),-32.883333,-71.25,,1,,12071,240,154,,1100-0600,1234567,,,35744,,, +1530,J,,BSN Niigata Hoso,,Itoigawa (chu-nii),37.05,137.866667,,0.1,,9042,37,154,,,,,,51201,,, +1530,J,ja,RCC Chugoku Hoso,,Fuchu (chg-hir),34.562222,133.229444,,0.1,,9083,42,154,,0000-2400,1234567,,,51199,,, +1530,USA,,KCMN,,Colorado Springs (CO),38.818889,-104.775556,,0.015,,7920,310,154,,,,,,38180,,, +1530,AUS,xx,ARDS Yolngu R Service,,Darwin/Ludmilla (NT),-12.424,130.849667,,2,,13410,69,155,,,,,,37700012,,, +1530,B,pt,ZYJ780 Rdio Difusora So Joaquim,,So Joaquim (SC),-28.302222,-49.923056,,0.25,,10482,227,155,,,,,,36902597,,, +1530,B,pt,ZYJ796 Rdio Porto Feliz AM,,Monda (SC),-27.095,-53.412222,,0.25,,10547,231,155,,,,,,36902590,,, +1530,B,pt,ZYK300 Rdio Progresso AM,,So Leopoldo (RS),-29.741389,-51.160278,,0.25,,10681,227,155,,,,,,36902587,,, +1530,B,pt,ZYK304 Rdio Tapejara,,Tapejara (RS),-28.070278,-51.985833,,0.25,,10565,229,155,,,,,,36902588,,, +1530,BOL,,CP200 R Litoral,,Llica (pts),-19.866667,-68.266667,,0.25,,10745,246,155,,1400-0300,1234567,,,52065,,, +1530,CHL,,CC153 R Corporacion,,Coronel (Lota?) (BI),-37,-73.15,,1,,12533,238,155,,,,,,35824,,, +1530,MEX,es,XESD-AM Los 40 Principales,,Silao (gua),20.94,-101.433056,,0.1,,9329,297,155,,,,,,44734,,, +1530,B,pt,ZYK235 Sulina AM,,Dom Pedrito (RS),-30.960833,-54.663056,,0.25,,10975,229,156,,,,,,36902593,,, +1530,ARG,,LRJ200 R Centro Morteros,,Morteros (cb),-30.716667,-62,,0.25,,11348,235,157,,0900-0300,1234567,,,51897,,, +1530,CHL,,CD153 R Calbuco,,Calbuco (LL),-41.783333,-73.15,,1,,12931,235,157,,,,,,35889,,, +1530,ARG,,LRJ376 LV del Futuro,,General San Martn (ba),-34.575,-58.533333,,0.25,,11510,230,158,,,,,,40090,,, +1530,URG,,CX153 Emisora Cono Sur,,Nueva Palmira (co),-33.866667,-58.366667,,0.25,,11437,230,158,,0900-0300,1234567,,,36797,,, +1530,USA,en,WPUI734,,Provo/1860 South University Ave (UT),40.211944,-111.658333,,0.01,,8141,315,158,,,,,,20010716,,, +1530,USA,en,WPUI734,,South Ogden (UT),41.148361,-111.933556,,0.01,,8068,316,158,,,,,,20010718,,, +1530,GUM,,KVOG,,Agana (GU),13.456667,144.672222,,0.25,,11697,42,159,,,,,,20016098,,, +1530,USA,,WENG,,Englewood (FL),26.970833,-82.323333,,0.001,,7593,286,163,,,,,,41306,,, +1530,AUS,en,2VM,,Moree/Gwydir Highway (NSW),-29.485133,149.891758,,2,,16111,64,164,,,,111,,51193,,, +1530,NZL,,The Coast,,Napier/Pakipaki (HKB),-39.692222,176.803333,,1,,18450,32,175,,,,,,51207,,, +1539,E,es,SER,,Manresa/Buflvent (CAT-B),41.708089,1.852983,,5,,1207,198,62,,0000-2400,1234567,9945,,1601,,, +1539,E,es,SER,,Elche=Elx (VAL-A),38.257222,-0.746944,,6,,1637,203,66,,0000-2400,1234567,9995,,1600,,, +1539,GRC,el,R Vassilis,,Nafpaktos (wgr-ait),38.394444,21.833333,,1,,1937,136,76,,,,,,3400052,,, +1539,IRN,fa,IRIB R Golestan,,Gorgan (gsn),36.852889,54.435631,,50,,4079,95,81,,0000-2400,1234567,0,,1822,,, +1539,UAE,ml,Asianet R,,Al-Dhabbaya (abd),24.23025,54.405306,,100,,5079,109,88,,0200-1400,1234567,,,47103,,, +1539,DJI,,RTD R Nationale,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0300-0700,1234567,2,,2548,,, +1539,DJI,,RTD R Nationale,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0900-2000,1234.67,2,,2548,,, +1539,DJI,,RTD R Nationale,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0900-2200,....5..,2,,2548,,, +1539,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.422642,94.99685,,300,,6812,67,100,,2025-1805,1234567,998,,36201054,,, +1539,IRN,fa,IRIB R Iran,,unknown,32.5,53.625,,1,,4350,101,101,,,,9493,,10800037,,, +1539,CHN,bo,Qinghai RGD/CNR 11,,Maqn=Maqin/QHTS921 (QH),34.455278,101.2625,,1,,7360,64,131,,2250-1600,1234567,,,36201280,,, +1539,CHN,bo,Qinghai RGD,,several locations,34.95,104.5,,1,,7515,61,132,,,,,,36200362,,, +1539,CHN,zh,CNR 1,,several locations,34.95,104.5,,1,,7515,61,132,,,,,,36200361,,, +1539,THA,th,Phon Ror. Kao,,Kanchanaburi/Fort Surasi (knb),14.033333,99.569444,,10,,8993,79,134,,0000-2400,1234567,18,,51245,,, +1539,CHN,zh,CNR 1,,Zhenjiang (JS),32.216667,119.433333,,1,,8611,53,142,,2025-1805,1234567,,,36200360,,, +1539,PHL,tl,DZYM-AM Radyo Pilipinas,,San Jose/Puerto Gallenero (ocm),12.383333,121.05,,5,,10523,63,142,,,,32,,51244,,, +1539,KOR,,HLQC KBS 1 R,,Gosan (jej),33.300278,126.198889,,1,,8866,47,143,,0000-2400,1234567,,,51242,,, +1539,J,,NHK R 2,,Engaru (hok),44.05,143.516667,,0.1,,8560,30,152,,2030-1500,1.....7,,,51225,,, +1539,J,,NHK R 2,,Engaru (hok),44.05,143.516667,,0.1,,8560,30,152,,2030-1635,.2345..,,,51225,,, +1539,J,,NHK R 2,,Engaru (hok),44.05,143.516667,,0.1,,8560,30,152,,2030-1640,.....6.,,,51225,,, +1539,J,,NHK R 2,,Imakane (hok),42.416667,139.966667,,0.1,,8595,33,152,,2030-1500,1.....7,,,51227,,, +1539,J,,NHK R 2,,Imakane (hok),42.416667,139.966667,,0.1,,8595,33,152,,2030-1635,.2345..,,,51227,,, +1539,J,,NHK R 2,,Imakane (hok),42.416667,139.966667,,0.1,,8595,33,152,,2030-1640,.....6.,,,51227,,, +1539,J,,NHK R 2,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,2030-1500,1.....7,,,51234,,, +1539,J,,NHK R 2,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,2030-1635,.2345..,,,51234,,, +1539,J,,NHK R 2,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,2030-1640,.....6.,,,51234,,, +1539,J,,NHK R 2,,Nakashibetsu (hok),43.533333,144.983333,,0.1,,8661,29,153,,2030-1500,1.....7,,,51236,,, +1539,J,,NHK R 2,,Nakashibetsu (hok),43.533333,144.983333,,0.1,,8661,29,153,,2030-1635,.2345..,,,51236,,, +1539,J,,NHK R 2,,Nakashibetsu (hok),43.533333,144.983333,,0.1,,8661,29,153,,2030-1640,.....6.,,,51236,,, +1539,J,,NHK R 2,,Aizuwakamatsu (toh-fuk),37.483333,139.95,,0.1,,9083,36,154,,2030-1500,1.....7,,,51224,,, +1539,J,,NHK R 2,,Aizuwakamatsu (toh-fuk),37.483333,139.95,,0.1,,9083,36,154,,2030-1635,.2345..,,,51224,,, +1539,J,,NHK R 2,,Aizuwakamatsu (toh-fuk),37.483333,139.95,,0.1,,9083,36,154,,2030-1640,.....6.,,,51224,,, +1539,J,,NHK R 2,,Ina (chu-nag),35.833333,137.95,,0.1,,9165,38,154,,2030-1500,1.....7,,,51228,,, +1539,J,,NHK R 2,,Ina (chu-nag),35.833333,137.95,,0.1,,9165,38,154,,2030-1635,.2345..,,,51228,,, +1539,J,,NHK R 2,,Ina (chu-nag),35.833333,137.95,,0.1,,9165,38,154,,2030-1640,.....6.,,,51228,,, +1539,J,,NHK R 2,,Iwaki (toh-fuk),37.05,140.883333,,0.1,,9163,35,154,,2030-1500,1.....7,,,51229,,, +1539,J,,NHK R 2,,Iwaki (toh-fuk),37.05,140.883333,,0.1,,9163,35,154,,2030-1635,.2345..,,,51229,,, +1539,J,,NHK R 2,,Iwaki (toh-fuk),37.05,140.883333,,0.1,,9163,35,154,,2030-1640,.....6.,,,51229,,, +1539,J,,NHK R 2,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,2030-1500,1.....7,,,51230,,, +1539,J,,NHK R 2,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,2030-1635,.2345..,,,51230,,, +1539,J,,NHK R 2,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,2030-1640,.....6.,,,51230,,, +1539,J,,NHK R 2,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,2030-1500,1.....7,,,51231,,, +1539,J,,NHK R 2,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,2030-1635,.2345..,,,51231,,, +1539,J,,NHK R 2,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,2030-1640,.....6.,,,51231,,, +1539,J,,NHK R 2,,Kobayashi (kyu-miy),32,130.966667,,0.1,,9223,45,154,,2030-1500,1.....7,,,51232,,, +1539,J,,NHK R 2,,Kobayashi (kyu-miy),32,130.966667,,0.1,,9223,45,154,,2030-1635,.2345..,,,51232,,, +1539,J,,NHK R 2,,Kobayashi (kyu-miy),32,130.966667,,0.1,,9223,45,154,,2030-1640,.....6.,,,51232,,, +1539,J,,NHK R 2,,Komoro (chu-nag),36.316667,138.433333,,0.1,,9138,37,154,,2030-1500,1.....7,,,51233,,, +1539,J,,NHK R 2,,Komoro (chu-nag),36.316667,138.433333,,0.1,,9138,37,154,,2030-1635,.2345..,,,51233,,, +1539,J,,NHK R 2,,Komoro (chu-nag),36.316667,138.433333,,0.1,,9138,37,154,,2030-1640,.....6.,,,51233,,, +1539,J,,NHK R 2,,Masuda (chg-shi),34.683333,131.85,,0.1,,9008,43,154,,2030-1500,1.....7,,,51235,,, +1539,J,,NHK R 2,,Masuda (chg-shi),34.683333,131.85,,0.1,,9008,43,154,,2030-1635,.2345..,,,51235,,, +1539,J,,NHK R 2,,Masuda (chg-shi),34.683333,131.85,,0.1,,9008,43,154,,2030-1640,.....6.,,,51235,,, +1539,J,,NHK R 2,,Shinjo (toh-yam),38.783333,140.316667,,0.1,,8969,35,154,,2030-1500,1.....7,,,51238,,, +1539,J,,NHK R 2,,Shinjo (toh-yam),38.783333,140.316667,,0.1,,8969,35,154,,2030-1635,.2345..,,,51238,,, +1539,J,,NHK R 2,,Shinjo (toh-yam),38.783333,140.316667,,0.1,,8969,35,154,,2030-1640,.....6.,,,51238,,, +1539,J,,NHK R 2,,Toyooka (kns-hyo),35.533333,134.833333,,0.1,,9061,40,154,,2030-1500,1.....7,,,51240,,, +1539,J,,NHK R 2,,Toyooka (kns-hyo),35.533333,134.833333,,0.1,,9061,40,154,,2030-1635,.2345..,,,51240,,, +1539,J,,NHK R 2,,Toyooka (kns-hyo),35.533333,134.833333,,0.1,,9061,40,154,,2030-1640,.....6.,,,51240,,, +1539,J,,NHK R 2,,Tsunan (chu-nii),37.033333,138.683333,,0.1,,9077,37,154,,2030-1500,1.....7,,,51241,,, +1539,J,,NHK R 2,,Tsunan (chu-nii),37.033333,138.683333,,0.1,,9077,37,154,,2030-1635,.2345..,,,51241,,, +1539,J,,NHK R 2,,Tsunan (chu-nii),37.033333,138.683333,,0.1,,9077,37,154,,2030-1640,.....6.,,,51241,,, +1539,J,ja,NHK R 2,,Johen,34.5,134,,0.1,,9124,41,154,,,,,,31400115,,, +1539,J,,NHK R 2,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,2030-1500,1.....7,,,51237,,, +1539,J,,NHK R 2,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,2030-1635,.2345..,,,51237,,, +1539,J,,NHK R 2,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,2030-1640,.....6.,,,51237,,, +1539,J,,NHK R 2,,Tokunoshima (kyu-kag),27.75,129.016667,,0.1,,9532,48,155,,2030-1500,1.....7,,,51239,,, +1539,J,,NHK R 2,,Tokunoshima (kyu-kag),27.75,129.016667,,0.1,,9532,48,155,,2030-1635,.2345..,,,51239,,, +1539,J,,NHK R 2,,Tokunoshima (kyu-kag),27.75,129.016667,,0.1,,9532,48,155,,2030-1640,.....6.,,,51239,,, +1539,AUS,en,5TAB,,Adelaide/Paralowie (SA),-34.757472,138.608694,,10,,15798,82,156,,0000-2400,1234567,996,,51215,,, +1539,AUS,it,2RF Rete Italia,,Sydney/Bicentennial Park (NSW),-33.847789,151.081294,,1,,16550,68,169,,0000-2400,1234567,,,51217,,, +1539,NZL,,2ZE R Sport,,Blenheim (MBH),-41.516667,173.966667,,1,,18508,44,175,,0000-2400,1234567,,,51243,,, +1540,USA,en,WDCD,i,Albany (NY),42.733611,-73.863611,,50,,5814,294,98,,,,2,,41132,,, +1540,USA,,WNWR,,Philadelphia (PA),40.046111,-75.2375,,50,,6096,292,101,,,,,,42537,,, +1540,CAN,xx,CHIN,,Toronto Island (ON),43.615278,-79.380278,,30,,6089,298,103,,0000-2400,1234567,984,,36049,,, +1540,USA,en,KXEL,,Waterloo (D) (IA),42.179722,-92.310556,,50,,6956,304,110,,,,997,,20012595,,, +1540,USA,en,KXEL,,Waterloo (N) (IA),42.18,-92.310556,,50,,6956,304,110,,,,9987,,39785,,, +1540,USA,,WACA,,Wheaton (MD),39.013889,-77.029444,,5,,6287,292,113,,,,,,40637,,, +1540,USA,,WECZ,,Punxsutawney (PA),40.96,-79.002222,,5,,6263,295,113,,,,,,41250,,, +1540,BAH,en,ZNS-1 R Bahamas,,Nassau/South Beach (npr),25.003917,-77.350333,,50,,7427,281,114,,0000-2400,1234567,998,,45502,,, +1540,USA,,WADK,,Newport (RI),41.503611,-71.311944,,1,,5741,291,114,,,,,,40651,,, +1540,USA,,WSIV,,East Syracuse (D) (NY),43.094444,-76.033333,,1,,5922,295,116,,,,,,20012572,,, +1540,USA,,WTBI,,Pickens (SC),34.860278,-82.723611,,10,,6972,293,117,,,,,,43111,,, +1540,USA,,WYNC,,Yanceyville (NC),36.414444,-79.335,,2.5,,6634,292,119,,,,958,,43532,,, +1540,USA,,WOGR,,Charlotte (NC),35.273889,-80.861111,,2.4,,6821,292,121,,,,,,42572,,, +1540,USA,,WWGK,,Cleveland (OH),41.502778,-81.6325,,1,,6383,297,121,,,,,,20000074,,, +1540,USA,,WYCL,,Niles (OH),41.132222,-80.761111,,0.5,,6358,296,124,,,,,,42926,,, +1540,USA,,WBCO,,Bucyrus (OH),40.764167,-82.934722,,0.5,,6519,297,125,,,,,,40824,,, +1540,USA,,WTXY,,Whiteville (NC),34.323056,-78.713056,,1,,6759,289,125,,,,,,43240,,, +1540,USA,,KTGG,,Spring Arbor (MI),42.153611,-84.549167,,0.45,,6508,300,126,,,,,,39478,,, +1540,USA,,WTKM,,Hartford (WI),43.28,-88.383889,,0.5,,6645,303,126,,,,,,43155,,, +1540,USA,en,WKVQ,,Eatonton (GA),33.321944,-83.4175,,1.6,,7140,292,126,,,,,,20012399,,, +1540,USA,,WSMI,,Litchfield (IL),39.1725,-89.570556,,1,,7042,300,127,,,,,,43027,,, +1540,USA,en,WGRK,,Greensburg (KY),37.259444,-85.515833,,1,,6952,296,127,,1300-0100,1234567,,,40691,,, +1540,USA,,WMYJ,,Martinsville (IN),39.408611,-86.419444,,0.5,,6835,299,128,,,,,,42288,,, +1540,USA,ko,KMPC,,Los Angeles (CA),34.078611,-118.184722,,37,,9026,316,128,,,,9865,,38925,,, +1540,PTR,es,WIBS,,Guayama (PR),17.995556,-66.0775,,1,,7249,268,129,,,,,,41721,,, +1540,USA,,WSIV,,East Syracuse (N) (NY),43.022778,-76.159444,,0.057,,5935,295,129,,,,,,43007,,, +1540,USA,en,WJZI,,Decatur (IN),40.820556,-84.92,,0.25,,6634,299,129,,,,,,40652,,, +1540,USA,es,R Misin Cristiana,,Bellevue (WA),47.591389,-122.182222,,5,,7903,326,129,,1100-1500,12345..,,,39815,,, +1540,USA,xx,KXPA,,Bellevue (WA),47.591389,-122.182222,,5,,7903,326,129,,0000-2400,1234567,,,39815,,, +1540,USA,,WLOI,,La Porte (IN),41.633611,-86.759167,,0.25,,6680,301,130,,,,,,42205,,, +1540,USA,,KGLA,,Gretna (LA),29.8875,-90.084167,,1,,7844,294,135,,,,,,38487,,, +1540,B,pt,ZYI824 Rdio Voluntrios da Patria,,Ouricuri (PE),-7.925808,-40.105256,,1,,8001,229,137,,,,,,36902610,,, +1540,DOM,,HIBU LV de La Romana,,La Romana (rom),18.416667,-68.966667,,0.25,,7411,270,137,,0930-0400,1234567,,,37225,,, +1540,MEX,es,XEHOS-AM La Poderosa,,Villa de Seris (son),29.049283,-111.007133,,5,,9139,308,137,,,,,,44132,,, +1540,B,pt,ZYJ611 Rdio Baixa Verde,,Joo Cmara (RN),-5.530556,-35.805556,,0.25,,7547,226,138,,,,994,,36902601,,, +1540,DOM,,HIFP R Criolla Comercial,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,,,,,37247,,, +1540,USA,,WXEX,,Exeter (NH),42.989722,-70.937222,,0.003,,5612,292,138,,,,,,41521,,, +1540,USA,es,KZMP,,University Park (TX),32.8125,-97.008333,,0.75,,8014,301,138,,,,,,39893,,, +1540,B,pt,ZYH611 Rdio Sant'ana,,Tiangu (CE),-3.743489,-41.006275,,0.25,,7640,232,139,,,,99,,36902618,,, +1540,B,pt,ZYH631 Rdio Sertes,,Mombaa (CE),-5.748189,-39.626669,,0.25,,7762,230,141,,,,,,36902621,,, +1540,B,pt,ZYI694 Rdio Santa Maria,,Monteiro (PB),-7.896867,-37.123925,,0.25,,7847,226,141,,,,,,36902620,,, +1540,PRU,es,OCU2X R Turbo Mix,,Cajamarca (caj),-7.158522,-78.461972,,5,,10287,262,141,,,,500,,37000033,,, +1540,USA,,KEDA,,San Antonio (TX),29.358333,-98.351389,,1,,8394,299,141,,,,,,38313,,, +1540,B,pt,ZYH921 Rdio Santa Maura,,Lago da Pedra (MA),-4.293794,-45.242272,,0.25,,7926,236,142,,,,,,36902599,,, +1540,B,pt,ZYI545 Rdio Boa Vista,,So Sebastio da Boa Vista (PA),-1.716667,-49.530556,,0.25,,7931,241,142,,,,,,36902603,,, +1540,CLM,,HJBV,,Cartagena (bol),10.566667,-75.466667,,1,,8529,270,142,,,,,,37359,,, +1540,EQA,,HCHG3 R Flecha AM,,Machala (oro),-3.266667,-79.966667,,3,,10047,265,142,,,,,,36967,,, +1540,PRU,es,OAX6Q R Milenio Universal,,Arequipa (are),-16.316667,-71.566667,,5,,10639,251,142,,,,,,40339,,, +1540,CLM,es,HJA26,,Belmira (ant),6.6,-75.666667,,1,,8888,268,143,,,,,,35902261,,, +1540,CLM,es,HJHD,,Barrancabermeja (sat),7.066667,-73.816667,,1,,8721,267,143,,,,,,37467,,, +1540,USA,en,WREJ,,Richmond (VA),37.618889,-77.424167,,0.007,,6419,291,143,,,,98,,42834,,, +1540,CLM,es,HJZF R Cndor,,Manizales (cal),5.15,-75.583333,,1,,9009,267,144,,,,994,,37662,,, +1540,CTR,,Enlace R,,Pavas (sjs),9.95,-84.133333,,1,,9173,277,144,,,,,,52163,,, +1540,HND,,HRYK,,Tegucigalpa (fmz),14.083333,-87.2,,1,,9019,282,144,,,,,,37883,,, +1540,USA,,WBTC,,Uhrichsville (OH),40.423889,-81.363056,,0.005,,6449,296,144,,,,,,40915,,, +1540,CAN,en,CBXH,,Cooper Creek (BC),50.206944,-116.970556,,0.04,,7454,325,145,,,,,,20109219,,, +1540,MEX,es,XENC-AM La Autntica,,Celaya (gua),20.506667,-100.811944,,1,,9330,296,145,,,,,,44442,,, +1540,MEX,es,XERTP-AM La Poderosa,,San Martin Texmelucan (pue),19.266158,-98.3922,,1,,9291,293,145,,,,,,44716,,, +1540,USA,,KGBC,,Galveston (TX),29.315278,-94.805278,,0.25,,8185,297,145,,,,,,20012581,,, +1540,EQA,,HCDP1 Caracol,,Quito (pic),-0.216667,-78.5,,1,,9679,266,146,,,,,,36903,,, +1540,EQA,,HCPV1,,Mira (nap),-0.566667,-78.016667,,1,,9677,265,146,,,,,,37064,,, +1540,EQA,,HCVB7 La Voz del Upano,,Macas (mor),-2.316667,-78.2,,1,,9844,264,146,,,,,,37145,,, +1540,HWA,ko,KREA,,Honolulu (HI),21.324167,-157.879722,,5,,11708,345,146,,,,0,,39233,,, +1540,MEX,es,XESTN-AM R RED,,Monterrey (nvl),25.668056,-100.311944,,0.5,,8838,299,146,,,,,,44773,,, +1540,B,pt,ZYK723 Rdio Nova Difusora,,So Paulo/Osasco (SP),-23.559611,-46.792167,,1,,9869,227,147,,,,,,36902623,,, +1540,B,pt,ZYN601 Rdio Regional Piravev,,Ivinhema (MS),-22.292222,-53.810556,,1,,10117,233,147,,,,,,36902622,,, +1540,GTM,,TGRF R Cultura y Deportes,,Ciudad de Guatemala (gut),14.616667,-90.516667,,0.5,,9193,284,147,,,,,,40528,,, +1540,PRU,es,OBX1B R La Voz de la Frontera,,Tumbes (tum),-3.566667,-80.5,,1,,10110,265,147,,,,,,40380,,, +1540,B,pt,ZYH511 Rdio Jornal,,Souto Soares (BA),-12.087778,-41.646944,,0.25,,8489,228,148,,,,3,,36902608,,, +1540,B,pt,ZYJ206 Litornea AM,,Guaratuba (PR),-25.911111,-48.569722,,1,,10185,227,148,,,,84,,36902617,,, +1540,BOL,,R.Bendita Trindad y Espirito Santo,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,,,429,,52448,,, +1540,CLM,es,HKP50,,Arjona (bol),10.25,-75.35,,0.25,,8548,270,148,,,,,,35902264,,, +1540,URG,es,CX154 R Patria,,Treinta y Tres (tt),-33.216667,-54.366667,,2,,11170,228,148,,0800-0300,1234567,18,,36798,,, +1540,B,pt,Alto do Vale AM,,Lageado (RS),-29.466944,-51.961389,,1,,10696,228,149,,,,,,36902604,,, +1540,BOL,,R Sariri,,Escoma (lpz),-15.661111,-69.125,,0.8,,10424,249,149,,1000-1300,1234567,206,,52066,,, +1540,BOL,,R Sariri,,Escoma (lpz),-15.661111,-69.125,,0.8,,10424,249,149,,2200-0235,1234567,206,,52066,,, +1540,EQA,,HCMH6,,Latacunga (cot),-0.916667,-78.566667,,0.5,,9745,265,149,,,,,,37026,,, +1540,PRU,es,OBZ4U R Barranca,,Barranca (lim),-10.816667,-77.75,,1,,10561,259,149,,,,,,40424,,, +1540,B,pt,ZYK282 Rdio Quara AM,,Quara/Estrada Vicinal (RS),-30.364444,-56.446111,,1,,11013,231,150,,,,,,36902605,,, +1540,EQA,,HCFM2,,Ventanas (rio),-1.5,-79.5,,0.45,,9860,266,150,,,,,,36940,,, +1540,B,pt,ZYL217 Rdio Difusora Bondespachense,,Bom Despacho (MG),-19.745361,-45.239372,,0.25,,9420,228,151,,,,,,36902615,,, +1540,B,pt,ZYL226 Rdio Clube de Minas Gerais,,Conselheiro Lafaiete (MG),-20.64815,-43.790628,,0.25,,9436,226,151,,,,,,36902600,,, +1540,CLM,es,HKR80,,Sacama (cas),6.1,-72.25,,0.15,,8699,265,151,,,,,,35902284,,, +1540,ARG,,R Fuego,,Longchamps (ba),-34.866667,-58.383333,,1,,11529,230,152,,,,,,51900,,, +1540,ARG,es,AM 15-40,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51899,,, +1540,ARG,es,R Cotidiana,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000018,,, +1540,B,pt,Ativa AM 1540,,Barra do Bugres (MT),-15.0719,-57.211839,,0.25,,9636,240,152,,,,,,36902602,,, +1540,B,pt,ZYJ508 Super Rdio Clube,,Paraba do Sul (RJ),-22.151322,-43.274233,,0.25,,9558,225,152,,,,98,,36902619,,, +1540,B,pt,ZYK514 Rdio Cultura,,Leme (SP),-22.1813,-47.368942,,0.25,,9765,228,152,,,,,,36902612,,, +1540,B,pt,ZYL293 Rdio Tropical de Trs Coraes,,Trs Coraes (MG),-21.689733,-45.235711,,0.25,,9609,227,152,,,,,,36902613,,, +1540,USA,,WBIN,,Benton (TN),35.180556,-84.642778,,0.004,,7066,294,152,,,,,,40860,,, +1540,B,pt,ZYK564 Rdio Emissora de Botucatu,,Botucatu (SP),-22.877114,-48.436494,,0.25,,9887,229,153,,,,,,36902614,,, +1540,B,pt,ZYK737 Rdio Central de Pompia,,Pompia/Rua Zaki Haddad (SP),-22.096206,-50.186861,,0.25,,9903,231,153,,,,,,36902609,,, +1540,USA,en,WQCX654,,Pensacola (FL),30.416667,-87.216667,,0.01,,7620,292,153,,,,,,20010719,,, +1540,USA,en,WQCX654,,Pensacola/6575 North W Street (FL),30.482778,-87.261944,,0.01,,7617,292,153,,,,,,20010720,,, +1540,CHL,,CB154 R Sudamerica,,Santiago (RM),-33.516667,-70.666667,,1,,12091,239,154,,1200-0030,1234567,,,35745,,, +1540,PRU,es,OBX4N R Corporacion,,Cerro de Pasco (pas),-10.666667,-76,,0.3,,10431,257,154,,,,942,,40394,,, +1540,B,pt,ZYJ803 Rdio Capinzal,,Capinzal (SC),-27.347778,-51.585556,,0.25,,10476,229,155,,,,,,36902607,,, +1540,CHL,,CC154 R Central,,Chilln (BI),-36.533333,-72.066667,,1,,12431,238,155,,,,,,35825,,, +1540,USA,,WKDG,,Sumiton (AL),33.763889,-87.063056,,0.003,,7332,295,155,,,,,,42920,,, +1540,B,,ZYK297,,Santiago (RS),-29.183333,-54.866667,,0.25,,10820,231,156,,,,,,46327,,, +1540,PRG,,ZP54,,Ita Cora Nee (neb),-27.166667,-58.166667,,0.25,,10811,234,156,,,,,,45551,,, +1540,USA,,WJJT,,Jellico (TN),36.583056,-84.136111,,0.001,,6922,295,156,,,,,,41889,,, +1540,USA,,WBNL,,Boonville (IN),38.066111,-87.274167,,0.001,,6994,298,157,,,,,,40885,,, +1540,ARG,,LT35 R Mon,,Pergamino (ba),-33.883333,-60.566667,,0.25,,11555,232,158,,0930-0400,1234567,,,40186,,, +1540,ARG,,LU28 R Tuyu,,General Madariaga (ba),-37,-57.116667,,0.25,,11659,228,158,,1000-0300,1234567,,,40224,,, +1540,USA,,WKXG,,Greenwood (MS),33.52,-90.141111,,0.002,,7542,297,159,,,,,,42096,,, +1540,USA,,KASA,,Phoenix (AZ),33.376667,-112.090278,,0.019,,8793,312,160,,,,9982,,37970,,, +1540,USA,,KBOA,,Kennett (MO),36.253056,-90.048889,,0.001,,7309,298,160,,,,,,38072,,, +1540,USA,,KNGL,,McPherson (KS),38.338611,-97.668056,,0.002,,7577,305,160,,,,,,38992,,, +1540,URG,,CW154 R Charrua,,Paysand (pa),-32.166667,-58.016667,,0.1,,11263,231,161,,1000-0300,1234567,,,36757,,, +1540,CHL,,CD154 R San Jose de Alcudia,,Ro Bueno (LL),-40.316667,-72.966667,,0.25,,12799,236,162,,0955-0300,1234567,,,35890,,, +1540,URG,,CV154 R Centro,,Cardona (so),-33.866667,-57.366667,,0.1,,11385,230,162,,0900-0200,1234567,98,,36734,,, +1540,USA,,KLKC,,Parsons (KS),37.343056,-95.231944,,0.001,,7523,303,162,,,,,,38823,,, +1540,USA,,KDYN,,Ozark (AR),35.487778,-93.811944,,0.001,,7597,300,163,,,,,,38305,,, +1542,INS,id,R Idola Siaran Gema Isa,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,51249,,, +1545,BOL,,CP191 R Mejillones,,Tarata (cbb),-17.6,-66.016667,,0.35,,10402,246,153,,1900-0400,1234567,,,36677,,, +1548,G,en,Gold,,London/Saffron Green (EN-HTS),51.665556,-0.242222,,98,,459,266,42,,0000-2400,1234567,0,,1612,,, +1548,MDA,,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1830-1845,1234567,0,,1620,,, +1548,MDA,,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1915-1945,12345..,0,,1620,,, +1548,MDA,bg,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1800-1830,1234567,0,,1620,,, +1548,MDA,ro,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1845-1915,12345..,0,,1620,,, +1548,MDA,ro,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1845-1945,.....67,0,,1620,,, +1548,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,0400-0800,1234567,0,,1620,,, +1548,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1700-1800,1234567,0,,1620,,, +1548,MDA,sr,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1945-2000,1234567,0,,1620,,, +1548,MDA,sr,Voice of Russia,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1500-1700,1234567,0,,1620,,, +1548,MDA,sr,Voice of Russia,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,2000-2130,1234567,0,,1620,,, +1548,G,en,BBC R 5 Live,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,5,,614,267,56,,0000-0600,123456,,,1611,,, +1548,G,en,BBC R 5 Live,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,5,,614,267,56,,0000-0700,......7,,,1611,,, +1548,G,en,BBC R Bristol,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,5,,614,267,56,,0600-2400,123456,,,1611,,, +1548,G,en,BBC R Bristol,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,5,,614,267,56,,0700-2400,......7,,,1611,,, +1548,G,en,Forth 2,,Edinburgh/Colinswell (SC-FIF),56.061667,-3.253167,,2.2,,767,309,61,,0000-2400,1234567,992,,1615,,, +1548,G,en,Magic Liverpool,,Liverpool/Bebington (EN-MER),53.347889,-2.975444,,1,,646,286,63,,0000-2400,1234567,9958,,1614,,, +1548,G,en,Magic AM,,Sheffield/Skew Hill (EN-SYK),53.436444,-1.506917,,0.74,,552,289,64,,0000-2400,1234567,9983,,1613,,, +1548,KWT,ar,R Sawa,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,600,323,4201,110,71,,0000-2400,1234567,988,,1619,,, +1548,IRN,fa,IRIB R Iran,,Shahroud (smn),36.383528,55.018883,,50,,4152,95,82,,0000-2400,1234567,,,10800002,,, +1548,IRN,fa,IRIB R Iran,,Sanandaj (kdn),35.320278,46.986056,,10,,3690,104,84,,0000-2400,1234567,,,1824,,, +1548,IRN,fa,IRIB R Mazandaran,,Larijan (mzd),35.908031,52.226678,,10,,3997,98,87,,0000-2400,1234567,,,1823,,, +1548,IRN,fa,IRIB R Yasuj,,Gachsaran (kba),30.361933,50.794097,,15,,4332,106,89,,0330-2100,1234567,,,1825,,, +1548,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Ferdows (skh),34.029417,58.172278,,10,,4540,95,92,,0000-2400,1234567,,,1618,,, +1548,CLN,,Athmeeya Yathra,,Trincomalee (tcm),8.748528,81.120639,,400,35,8199,97,113,,0000-0045,1234567,990,,51260,,, +1548,CLN,,Athmeeya Yathra,,Trincomalee (tcm),8.748528,81.120639,,400,35,8199,97,113,,1300-1530,1234567,990,,51260,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Linyi (SD),35.078333,118.328056,,200,,8293,52,117,,2125-1700,1234567,,,51251,,, +1548,CHN,bo,Xizang RGD,,Nyalam=Nielamu (XZ),27.991111,85.983889,,1,,6901,79,126,,2100-1805,1234567,,,36201225,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Jining (SD),35.466667,116.583333,,10,,8164,53,129,,2125-1700,1234567,,,36200363,,, +1548,PHL,tl,DZST-AM Super Radyo,,Dagupan City (pgs),16.033333,120.333333,,10,,10144,61,138,,2015-1505,1234567,,,51256,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Longkou (SD),37.659389,120.328333,,1,,8166,49,139,,2125-1700,1234567,,,36201224,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Weifang (SD),36.731389,119.136667,,1,,8187,50,139,,2125-1700,1234567,,,36200255,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Qingdao/SDTS135 (SD),36.121111,120.350556,,1,,8306,50,140,,2125-1700,1234567,,,36200364,,, +1548,PHL,tl,DYDM-AM Radyo Totoo,,Maasin City (lyt),10.133333,124.85,,5,,10961,61,143,,2030-1330,1234567,,,51258,,, +1548,AFS,en,R Islam,,Lenasia (GT),-26.357472,27.89945,,1,,8973,161,144,,0000-2400,1234567,,,2549,,, +1548,AUS,en,4QD ABC Capricornia,,Emerald (QLD),-23.459422,148.1493,,50,,15474,60,148,,0000-2400,1234567,127,,51250,,, +1548,NZL,,1XN LiveSPORT,,Rotorua/Hinemoa Point (BOP),-38.124444,176.289722,,0.99,,18273,31,174,,,,,,51255,,, +1548,NZL,,The Coast,,Palmerston North/Setters Line (MWT),-40.3,175.6,,1,,18464,36,175,,,,,,32500004,,, +1550,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,0600-1215,1234567,30,,1624,,, +1550,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,1700-1715,1234567,30,,1624,,, +1550,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,1800-2330,1234567,30,,1624,,, +1550,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,1215-1300,1234567,30,,1624,,, +1550,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,1715-1800,1234567,30,,1624,,, +1550,USA,,WITK,,Pittston (PA),41.345833,-75.785556,,10,,6035,294,107,,,,,,41817,,, +1550,CAN,fr,CBEF,,Windsor (ON),42.215556,-82.920833,,10,,6407,299,111,,,,2,,35774,,, +1550,USA,en,WSDK,,Bloomfield (CT),41.863056,-72.733611,,2.4,,5805,292,111,,,,9981,,41231,,, +1550,USA,,WKBA,,Vinton (VA),37.29,-79.922778,,10,,6602,293,113,,,,,,41958,,, +1550,CAN,fr,CBSI-8,,La Romaine (QC),50.216111,-60.674722,,0.04,,4512,295,116,,,,,,20109220,,, +1550,USA,,WHIT,,Madison (WI),43.002222,-89.386944,,5,,6724,303,117,,,,,,43231,,, +1550,USA,,WCGR,,Canandaigua (NY),42.881111,-77.250556,,0.25,,6013,296,123,,,,,,40987,,, +1550,USA,es,WRHC,,Coral Gables (D) (FL),25.650556,-80.16,,10,,7560,284,123,,,,,,42848,,, +1550,USA,,WBFJ,,Winston-Salem (NC),36.109167,-80.245556,,1,,6715,292,124,,,,,,40840,,, +1550,CUB,es,R Rebelde,,Santa Clara/CTOM4 (vc),22.404711,-79.893633,,10,,7815,281,125,,,,2,,31600121,,, +1550,USA,xx,KRPI,,Ferndale (WA),48.843056,-122.601389,,10,,7799,327,125,,,,6,,39286,,, +1550,USA,,KUAZ,i,Tucson (AZ),32.3725,-111.097778,,50,,8835,310,126,,,,26,,39561,,, +1550,USA,en,KKOV,,Vancouver (WA),45.646389,-122.514167,,12,,8103,325,127,,,,996,,38701,,, +1550,CUB,es,R Rebelde,,Cienfuegos/Tulipn (cf),22.157414,-80.430478,,5,,7872,282,129,,,,,,31600066,,, +1550,CUB,es,R Rebelde,,Circunvalacin (ma),23.016667,-81.616667,,5,,7878,283,129,,,,,,31600091,,, +1550,CUB,es,R Rebelde,,Crdenas/CTOM1 (ma),23.045514,-81.204964,,5,,7848,283,129,,,,9957,,31600094,,, +1550,USA,,WLTI,,New Castle (IN),39.933056,-85.407222,,0.25,,6733,298,130,,,,,,42299,,, +1550,VEN,,YVXO R Impacto,,Ciudad Ojeda (zul),10.2,-71.316667,,10,,8277,267,130,,,,,,51710,,, +1550,USA,,WNDI,,Sullivan (IN),39.075556,-87.399167,,0.25,,6921,299,132,,,,,,42451,,, +1550,USA,,KESJ,,St. Joseph (MO),39.8275,-94.810833,,0.5,,7290,304,133,,,,,,39350,,, +1550,USA,,KZDG,,San Francisco (CA),37.530278,-122.274722,,10,,8878,321,133,,,,9962,,39844,,, +1550,CUB,es,R Rebelde,,Guantnamo/CTOM2 (gu),20.1671,-75.169889,,1,,7685,276,134,,,,,,31600073,,, +1550,MEX,es,XERUV-AM R UV,,Xalapa (vcz),19.58545,-96.999206,,10,,9175,292,134,,,,,,44719,,, +1550,SLV,es,YSCZ,,San Salvador (ssl),13.716667,-89.2,,10,,9185,283,134,,,,,,31100011,,, +1550,CLM,es,HKX29,,Tib (nsa),8.65,-72.733333,,5,,8509,267,135,,,,,,35902308,,, +1550,CUB,es,R Rebelde,,Sagua La Grande (vc),22.806986,-80.112372,,1,,7796,282,135,,,,,,31600119,,, +1550,CUB,es,R Rebelde,,Yaguajay (ss),22.311972,-79.216556,,1,,7777,281,135,,,,,,31600117,,, +1550,PTR,,WKFE,,Yauco (PR),18.023333,-66.867222,,0.25,,7301,268,136,,0000-2400,1234567,,,42002,,, +1550,USA,,WNZF,,Bunnell (FL),29.469167,-81.266667,,0.25,,7317,287,136,,,,,,20000060,,, +1550,USA,es,WRHC,,Coral Gables (N) (FL),25.743333,-80.314444,,0.5,,7563,284,136,,,,,,20016111,,, +1550,CLM,es,HJE68,,Aguadas (cal),5.616667,-75.466667,,5,,8961,267,137,,,,,,35902359,,, +1550,CLM,es,HJZI G12 R,,Bogot D. C. (bdc),4.716667,-74.116667,,5,,8947,265,137,,,,42,,37665,,, +1550,USA,,WDLR,,Delaware (OH),40.298889,-83.046111,,0.029,,6562,297,138,,,,,,43486,,, +1550,B,pt,ZYJ606 Rdio Ivipanin,,Areia Branca (RN),-4.95,-37.133333,,0.25,,7556,228,139,,,,,,36902638,,, +1550,USA,,KXEX,,Fresno (CA),36.770556,-119.922222,,2.5,,8848,319,139,,,,,,39791,,, +1550,USA,en,WNTN,,Newton (MA),42.3575,-71.241667,,0.003,,5675,292,139,,,,9981,,42520,,, +1550,B,pt,ZYI550 Rdio Cabano,,Maracan (PA),-0.781161,-47.45045,,0.25,,7720,240,140,,,,,,36902626,,, +1550,B,pt,ZYI700 Rdio Jardim da Borborema,,Areia (PB),-6.964511,-35.697861,,0.25,,7685,225,140,,,,,,36902636,,, +1550,BOL,,CP115 R Caranavi,,Caranavi (lpz),-15.8,-67.516667,,5,,10334,248,141,,0930-1800,1234567,,,36631,,, +1550,BOL,,CP115 R Caranavi,,Caranavi (lpz),-15.8,-67.516667,,5,,10334,248,141,,2200-0200,1234567,,,36631,,, +1550,USA,,WAMA,,Tampa (FL),27.921111,-82.394722,,0.133,,7518,287,141,,,,,,40701,,, +1550,USA,,WTTC,,Towanda (PA),41.765278,-76.486111,,0.004,,6047,294,141,,,,,,43222,,, +1550,USA,en,WUSP,,Utica (NY),43.113333,-75.256944,,0.003,,5873,295,141,,,,,,43271,,, +1550,B,pt,ZYJ814 Rdio Imigrantes AM,,Turvo (SC),-28.932778,-49.681667,,5,,10530,227,142,,,,,,36902642,,, +1550,CLM,es,HJCB R El Sol La Carinosa,,Barranquilla (atl),10.866667,-74.75,,1,,8454,270,142,,1000-0300,1234567,998,,37364,,, +1550,USA,,KAPE,,Cape Girardeau (MO),37.279444,-89.559722,,0.048,,7195,299,142,,,,,,37958,,, +1550,USA,,WMRE,,Charlestown (WV),39.273056,-77.865556,,0.006,,6320,293,142,,,,,,42384,,, +1550,CLM,,HJGY,,Lorica (cor),9.216667,-75.833333,,1,,8671,270,143,,,,,,37465,,, +1550,USA,,KMRI,,West Valley City (UT),40.721111,-112.041389,,0.34,,8112,316,143,,,,,,38930,,, +1550,USA,,WLOR,,Huntsville (AL),34.8525,-86.652778,,0.044,,7217,295,143,,,,,,42211,,, +1550,USA,en,WPSK550,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010721,,, +1550,B,pt,ZYJ217 Itay AM,,Tibagy/Lapa (PR),-25.773611,-49.730833,,2.5,,10231,228,144,,,,,,36902643,,, +1550,CLM,es,HJLT Revivir en Cristo,,Cali (val),3.5,-76.516667,,1,,9218,267,144,,,,73,,37557,,, +1550,CLM,es,HJQD R Reloj 1550,,Calarca (qui),4.516667,-75.616667,,1,,9067,266,144,,,,97,,37630,,, +1550,HND,,HRNN37,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37816,,, +1550,MEX,es,XEBG-AM Cadena 1550,,Tijuana (bcn),32.51215,-117.015714,,1,,9120,315,144,,,,3,,43776,,, +1550,USA,,WCLY,,Raleigh (NC),35.760278,-78.657222,,0.008,,6642,291,144,,,,,,41033,,, +1550,USA,en,WZUM,,Reserve Township (PA),40.413056,-79.853889,,0.004,,6357,295,144,,,,,,20000054,,, +1550,B,pt,ZYH518 Rdio So Francisco,,Juazeiro (BA),-9.446433,-40.496556,,0.25,,8171,229,145,,,,5,,36902641,,, +1550,MEX,es,XEREL-AM R Michoacn,,Morelia (mic),19.679928,-101.234303,,1,,9430,296,145,,,,,,44668,,, +1550,USA,,KDCC,,Dodge City (KS),37.787222,-100.031944,,0.09,,7755,306,145,,,,,,38243,,, +1550,USA,en,KNSH,,Canyon (TX),34.981667,-101.955,,0.219,,8107,306,145,,,,,,39907,,, +1550,USA,en,WPSL489,,North Wilkesboro (NC),36.166667,-81.15,,0.01,,6768,293,145,,,,,,20010722,,, +1550,EQA,,HCEI6,,Montalvo (tun),-1.216667,-78.633333,,1,,9776,265,146,,,,,,36915,,, +1550,EQA,,HCRA7,,Amazonas (nap),-0.3,-77.766667,,1,,9637,265,146,,,,,,37069,,, +1550,USA,,KKLE,,Winfield (KS),37.236389,-97.025278,,0.052,,7634,304,146,,,,,,38727,,, +1550,USA,,KMAD,,Madill (OK),34.106667,-96.775,,0.09,,7888,301,146,,,,,,38872,,, +1550,USA,,WKTF,,Vienna (GA),32.128889,-83.796111,,0.023,,7261,291,146,,,,,,42076,,, +1550,USA,es,KWRN,,Apple Valley (CA),34.536667,-117.156111,,0.5,,8934,316,146,,,,9968,,39750,,, +1550,B,pt,ZYK590 Rdio Guaruj AM,,Guaruj (SP),-23.998483,-46.277339,,1,,9886,227,147,,,,98,,36902640,,, +1550,BOL,,CP205 R Tamengo,,Puerto Quijarro (scz),-17.783333,-57.766667,,1,,9920,239,147,,,,,,52069,,, +1550,EQA,,HCAD5,,Santa Isabel (loj),-3.316667,-79.316667,,1,,10007,265,147,,,,,,36837,,, +1550,USA,,KICS,,Hastings (NE),40.5675,-98.375278,,0.027,,7426,307,147,,,,,,38580,,, +1550,USA,,KLFJ,,Springfield (MO),37.195833,-93.318611,,0.028,,7424,301,147,,,,,,38807,,, +1550,USA,,WCSJ,,Morris (IL),41.341389,-88.425278,,0.006,,6800,301,147,,,,,,41084,,, +1550,USA,,WIGN,,Bristol (TN),36.565833,-82.1575,,0.006,,6800,294,147,,,,,,40828,,, +1550,USA,,WJIL,,Jacksonville (IL),39.722222,-90.195278,,0.01,,7034,301,147,,,,,,41880,,, +1550,USA,,WTHB,,Augusta (GA),33.5,-81.934167,,0.011,,7031,291,147,,,,,,43132,,, +1550,USA,en,WPTC653,,Cherokee (NC),35.473056,-83.321111,,0.01,,6960,293,147,,,,,,20010724,,, +1550,USA,es,WAZX,,Smyrna (GA),33.857778,-84.644167,,0.016,,7174,293,147,,,,,,40792,,, +1550,MEX,es,XENU-AM La Rancherita,,Nuevo Laredo (tam),27.494722,-99.547778,,0.25,,8630,299,148,,,,,,44461,,, +1550,USA,,KYAL,,Sapulpa (OK),36.018889,-96.098611,,0.04,,7685,302,148,,,,,,39839,,, +1550,USA,,WCVL,,Crawfordsville (IN),40.065556,-86.933611,,0.005,,6814,299,148,,,,,,41109,,, +1550,USA,,WEVR,,River Falls (WI),44.888611,-92.650556,,0.004,,6756,307,148,,,,,,41339,,, +1550,USA,,WIRV,,Irvine (KY),37.715833,-83.974722,,0.005,,6821,296,148,,,,,,41801,,, +1550,USA,,WOCC,,Corydon (IN),38.190556,-86.133333,,0.006,,6915,297,148,,,,,,42559,,, +1550,USA,en,WPSQ852,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20010723,,, +1550,PRU,,OAU3D,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000091,,, +1550,USA,,WPFC,,Baton Rouge (LA),30.501944,-91.210833,,0.042,,7862,295,149,,,,,,42671,,, +1550,USA,en,WSRY,,Elkton (MD),39.595833,-75.797222,,0.001,,6165,292,149,,,,,,43467,,, +1550,B,pt,ZYK377 AM 1550,,Capo do Leo (RS),-31.759444,-52.408056,,1,,10935,227,150,,,,,,36902645,,, +1550,EQA,,HCAD2,,El Triunfo (gua),-2.166667,-79.416667,,0.5,,9913,265,150,,,,,,36835,,, +1550,EQA,,HCDP1,,Quito (pic),-0.166667,-78.466667,,0.36,,9673,266,150,,,,,,36904,,, +1550,USA,,KIWA,,Sheldon (IA),43.181389,-95.865556,,0.006,,7071,307,150,,,,,,38648,,, +1550,USA,,WMSK,,Morganfield (KY),37.667778,-87.929444,,0.006,,7066,298,150,,,,,,42391,,, +1550,B,pt,ZYL211 Rdio Cultura,,Monte Carmelo (MG),-18.717711,-47.498678,,0.25,,9437,230,151,,,,,,36902632,,, +1550,CLM,es,HKW50,,Mallama (nar),1.133333,-77.85,,0.25,,9516,266,151,,,,,,35902313,,, +1550,USA,,KCOM,,Comanche (TX),31.898333,-98.587222,,0.054,,8186,301,151,,,,,,38194,,, +1550,ARG,,R Trompeta de Dios,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,,,51902,,, +1550,ARG,,R Urkupia,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51893,,, +1550,B,pt,Suprema AM,,Cacoal (RO),-11.418056,-61.433333,,0.25,,9556,246,152,,,,,,36902633,,, +1550,B,pt,ZYJ479 Rdio Imperial,,Petrpolis/Colina de Fatima (RJ),-22.512317,-43.186314,,0.25,,9589,225,152,,,,7,,36902627,,, +1550,B,pt,ZYK528 Rdio Tamba,,Tamba/Chcara Ip (SP),-21.701211,-47.284647,,0.25,,9714,229,152,,,,,,36902625,,, +1550,B,pt,ZYK659 Lidersom AM,,So Joaquim da Barra (SP),-20.58,-47.869167,,0.25,,9636,230,152,,,,,,36902629,,, +1550,B,pt,ZYK740 Rdio Nova Difusora,,Auriflama (SP),-20.695322,-50.556056,,0.25,,9789,232,152,,,,,,36902628,,, +1550,B,pt,ZYL222 Rdio Difusora,,Carmo do Rio Claro (MG),-20.970958,-46.133717,,0.25,,9585,228,152,,,,,,36902646,,, +1550,B,pt,ZYL289 Rdio Difusora Santaritense,,Santa Rita do Sapuca (MG),-22.238989,-45.703033,,0.25,,9686,227,152,,,,,,36902624,,, +1550,ARG,,R Tiempo,,Mar del Plata (ba),-38,-57.566667,,1,,11773,227,153,,,,,,51901,,, +1550,B,,ZYJ206,,Jacarezinho (PR),-23.133333,-49.966667,,0.25,,9990,230,153,,,,,,45933,,, +1550,B,pt,ZYK501 Rdio Clube de Itarar,,Itarar (SP),-24.105972,-49.332017,,0.25,,10051,229,153,,,,,,36902637,,, +1550,B,pt,ZYK572 Caique AM-R.Cacique de Capivari,,Capivari (SP),-23.000706,-47.511717,,0.25,,9851,228,153,,,,,,36902634,,, +1550,USA,,KXTO,,Reno (NV),39.5775,-119.847778,,0.094,,8576,320,153,,,,,,39830,,, +1550,B,pt,ZYJ213 Rdio Ipiranga,,Palmeira/Alto da Escola Rural (PR),-25.417222,-50.021389,,0.25,,10212,229,154,,,,,,36902635,,, +1550,B,pt,ZYJ303 Rdio Pioneira AM,,Formosa do Oeste (PR),-24.336111,-53.288889,,0.25,,10281,232,154,,,,,,36902631,,, +1550,B,pt,ZYJ315 Rdio Cristal AM,,Marmeleiro (PR),-26.144444,-53.018889,,0.25,,10437,231,154,,,,,,36902644,,, +1550,CHL,,CC155 R Manuel Rodriguez,,San Fernando (LI),-34.566667,-71,,1,,12201,239,154,,1100-0400,1234567,,,35826,,, +1550,USA,,WZRK,,Lake Geneva (WI),42.594167,-88.39,,0.001,,6699,302,154,,,,,,43592,,, +1550,B,,ZYJ734,,Ararangu (SC),-28.916667,-49.5,,0.25,,10520,227,155,,,,,,46148,,, +1550,B,pt,ZYK375 Rdio Soledade,,Soledade (RS),-28.835278,-52.5,,0.25,,10664,229,155,,,,,,36902639,,, +1550,CLM,es,HKW53,,El Tabln (nar),1.433333,-77.1,,0.1,,9439,266,155,,,,,,35902324,,, +1550,CLM,es,HKW55,,Guachucal (nar),0.966667,-77.733333,,0.1,,9523,266,155,,,,,,35902316,,, +1550,USA,,KWBC,,Navasota (TX),30.38,-96.100278,,0.026,,8171,299,155,,,,,,39690,,, +1550,USA,en,KRKE,,Albuquerque (NM),35.170556,-106.630833,,0.027,,8344,309,156,,,,,,38726,,, +1550,ARG,,LT40 R LV de la Paz,,La Paz (er),-30.716667,-59.616667,,0.25,,11216,233,157,,0900-0100,1234567,,,40192,,, +1550,URG,,CV155 R Agraciada,,Mercedes (so),-33.216667,-58,,0.25,,11358,231,157,,0800-0300,1234567,,,36735,,, +1550,URG,,CW155 R Sarandi del Yi,,Sarand del Y (du),-33.316667,-55.616667,,0.25,,11243,229,157,,1030-0130,1234567,,,36758,,, +1550,ARG,,LT23 R Regional,,San Genaro Norte (sf),-32.366667,-61.283333,,0.25,,11457,233,158,,0900-0300,1234567,967,,40175,,, +1550,ARG,,LT32 R Chivilcoy,,Chivilcoy (ba),-34.883333,-60.016667,,0.25,,11616,231,158,,1000-0400,1234567,,,40183,,, +1550,PRU,,OBX4P R Independencia,,Lima/Cerro los Incas (lim),-12,-77.066667,,0.1,,10619,258,159,,,,,,40396,,, +1550,CHL,,CB155 R Provincia AM,,Putaendo (VS),-32.65,-70.716667,,0.25,,12019,240,160,,,,,,35746,,, +1550,CHL,,CD155 R Regional,,Traiguen (AR),-38.216667,-72.666667,,0.25,,12607,237,162,,,,,,35891,,, +1557,F,fr,France Info,,Col de la Madone (06),43.796344,7.414878,,300,,927,175,42,,0000-2400,1234567,0,,1626,,, +1557,G,en,Gold,,Northampton/Kings Heath (EN-NHA),52.2635,-0.917139,,0.76,,500,275,63,,0000-2400,1234567,9994,,1628,,, +1557,G,en,Gold,,Southampton/Veals Farm (EN-HPS),50.883667,-1.436139,,0.5,,560,259,66,,0000-2400,1234567,,,1629,,, +1557,G,en,BBC R 5 Live,,Oxcliffe (EN-LNC),54.045389,-2.849444,,0.25,,654,293,70,,0000-0600,1234567,5,,1627,,, +1557,G,en,BBC R Lancashire,,Oxcliffe (EN-LNC),54.045389,-2.849444,,0.25,,654,293,70,,0600-2400,1234567,5,,1627,,, +1557,GRC,el,Erasitehnikos AM,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400017,,, +1557,IRN,fa,IRIB R Iran,,Zabol (sib),31.039217,61.546739,,50,,4998,96,90,,0000-2400,1234567,178,,1826,,, +1557,PAK,,PBC R Pakistan,,Skardu (ggb),35.297236,75.612736,,10,,5633,81,103,,1000-1700,1234567,93,,51297,,, +1557,TWN,zh,R Taiwan Int.,,Kouhu (YL),23.537083,120.174472,,300,315,9445,57,120,,0300-0800,.....67,998,,1867,,, +1557,TWN,zh,RTI iLoveMusic 1557,,Kouhu (YL),23.537083,120.174472,,300,315,9445,57,120,,0900-1700,1234567,998,,1867,,, +1557,CHN,,Cangzhou zhi Sheng,,Cangzhou (HB),38.3,116.85,,25,,7927,51,122,,,,,,51264,,, +1557,THA,th,Siang Adison=Voice of Adison,,Phetchabun/Nong Khwai (pbn),16.754167,101.207778,,10,,8865,76,133,,????-1400,1234567,,,51300,,, +1557,CHN,zh,Fuxin RGD Jingji Shenghuo Guangbo,,Fuxin/LNTS322 (LN),41.995119,121.732717,,1,,7846,45,135,,,,,,51263,,, +1557,THA,th,Sor. Wor. Thor. (R Thailand),,Trat/Ban Kraja (trt),12.237792,102.532917,,10,,9348,78,135,,2158-1502,1234567,,,51301,,, +1557,CHN,,Nangong RGD,,Nangong (HB),37.35,115.366667,,1,,7931,53,136,,,,,,51265,,, +1557,CHN,zh,CNR 1,,Fuzhou/Wenshanzhou (FJ),25.971361,119.294444,,1,,9171,57,144,,2025-1805,1234567,,,36201336,,, +1557,CHN,zh,CNR 1,,Xiamen=Amoy (FJ),24.607778,118.086111,,1,,9226,58,144,,2200-1600,1234567,,,36201337,,, +1557,MHL,,V7RR Micronesia Heatwave,,Majuro,7.087222,171.377778,,10,,13279,17,148,,0000-2400,1234567,,,51295,,, +1557,INS,id,R Pesona Nostalgia,,Rempoa (BT-tan),-6.3,106.766667,,1,,11267,86,151,,,,11,,51268,,, +1557,J,,JOHS HBC, Hokkaido Hoso,,Rumoi (hok),43.95,141.65,,0.1,,8504,31,152,,0000-2400,1234567,,,51284,, +1557,J,,ABS Akita Hoso,,Honjo (toh-aki),39.383333,140.05,,0.1,,8899,35,153,,0000-2400,1234567,,,51274,,, +1557,J,,JODN IBC, Iwate Hoso,,Miyako (toh-iwa),39.633333,141.933333,,0.1,,8946,33,153,,0000-2400,1234567,,,51278,, +1557,J,,JOTE ABS, Akita Hoso,,Odate (toh-aki),40.283333,140.5,,0.1,,8827,34,153,,,,,,51283,, +1557,J,,BSS Sanin Hoso,,Kurayoshi (chg-tot),35.45,133.816667,,0.1,,9024,41,154,,0000-2400,1234567,,,51276,,, +1557,J,,CBC Chubu-Nippon Hoso,,Nakatsugawa (chu-gif),35.5,137.483333,,0.1,,9178,38,154,,0000-2400,1234567,,,51280,,, +1557,J,,CBC Chubu-Nippon Hoso,,Shinshiro (chu-aic),34.9,137.516667,,0.1,,9239,38,154,,0000-2400,1234567,,,51287,,, +1557,J,,FBC Fukui Hoso,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,0000-2400,1234567,,,51275,,, +1557,J,,FBC Fukui Hoso,,Tsuruga (chu-fuk),35.616667,136.066667,,0.1,,9106,39,154,,0000-2400,1234567,,,51292,,, +1557,J,,JOAO CBC, Chubu-Nippon Hoso,,Takayama (chu-gif),36.15,137.25,,0.1,,9105,38,154,,0000-2400,1234567,,,51289,, +1557,J,,JOGN OBS, Oita Hoso,,Hita (kyu-oit),33.333333,130.916667,,0.1,,9093,44,154,,0000-2400,1234567,,,51273,, +1557,J,,JOHM BSS, Sanin Hoso,,Hamada (chg-shi),34.9,132.05,,0.1,,8996,42,154,,0000-2400,1234567,,,51272,, +1557,J,,JOVM WBS, Wakayama Hoso,,Gobo (kns-wak),33.866667,135.166667,,0.1,,9238,41,154,,0000-2400,1234567,,,51271,, +1557,J,,OBS, Oita Hoso,,Nakatsu (kyu-oit),33.583333,131.216667,,0.1,,9084,44,154,,0000-2400,1234567,,,51279,, +1557,J,,OBS, Oita Hoso,,Taketa (kyu-oit),32.966667,131.366667,,0.1,,9150,44,154,,0000-2400,1234567,,,51290,, +1557,J,,SBS, Shizuoka Hoso,,Fujinomiya (chu-shi),35.266667,138.6,,0.1,,9248,38,154,,0000-2400,1234567,,,51270,, +1557,J,,TBC, Tohoku Hoso,,Naruko (toh-miy),38.733333,140.7,,0.1,,8989,34,154,,0000-2400,1234567,,,51281,, +1557,J,,Tokai Hoso,,Ueno (kns-mie),34.75,136.15,,0.1,,9195,40,154,,0000-2400,1234567,,,51293,,, +1557,J,,JOVN WBS, Wakayama Hoso,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,0000-2400,1234567,,,51285,, +1557,J,,RKC, Kochi Hoso,,Suzaki (shi-koc),34.666667,138.2,,0.1,,9291,38,155,,0000-2400,1234567,,,51288,, +1557,J,,SBS, Shizuoka Hoso,,Atami (chu-shi),35.033333,139.183333,,0.1,,9295,37,155,,0000-2400,1234567,,,51269,, +1557,AUS,en,2RE Coastal R,,Taree (NSW),-31.925278,152.465236,,2,,16477,64,165,,0000-2400,1234567,9965,,51262,,, +1557,AUS,en,5TAB Wild Country,,Renmark/Loxton (Berri) (SA),-34.227889,140.644444,,0.5,,15896,80,169,,,,,,51261,,, +1557,NZL,,2ZH Newstalk ZB,,Rotokare (TKI),-39.463236,174.300833,,2,,18329,38,171,,0000-2400,1234567,,,51296,,, +1560,USA,en,WQEW,i,New York/Queens (NY),40.716667,-73.917778,,50,,5963,292,100,,,,9972,,42770,,, +1560,USA,en,WAGL,,Lancaster (SC),34.831389,-80.868889,,50,,6856,291,109,,,,,,40667,,, +1560,USA,,KKAA,,Aberdeen (SD),45.418056,-98.476667,,10,,7024,311,117,,,,999,,38700,,, +1560,USA,,WCNW,,Fairfield (OH),39.338889,-84.525,,5,,6727,297,117,,,,,,41050,,, +1560,USA,,WNWN,,Portage (MI),42.183056,-85.591667,,4.1,,6568,300,117,,,,,,42536,,, +1560,USA,,KLNG,,Council Bluffs (IA),41.207778,-95.906667,,10,,7237,306,119,,,,,,38832,,, +1560,USA,,WSBV,,South Boston (VA),36.709722,-78.874444,,2.5,,6581,292,119,,,,,,42962,,, +1560,USA,,WKIK,,La Plata (MD),38.543333,-76.993611,,1,,6321,292,120,,,,,,42017,,, +1560,USA,,WFSP,,Kingwood (WV),39.480556,-79.719722,,1,,6420,294,121,,,,,,41440,,, +1560,USA,,WTNS,,Coshocton (OH),40.275,-81.826944,,1,,6489,296,122,,,,,,43186,,, +1560,HTI,,Voix de l'Esperance,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,0000-2400,1234567,,,52125,,, +1560,USA,en,KGOW,,Bellaire (D) (TX),29.326944,-95.55,,46,,8229,297,123,,1400-0200,1234567,9302,,38607,,, +1560,USA,,WLZR,,Melbourne (FL),28.127778,-80.708056,,5,,7391,286,124,,,,,,41773,,, +1560,USA,,WYZD,,Dobson (NC),36.393333,-80.734722,,1,,6724,292,124,,,,,,43561,,, +1560,USA,,WQXY,,Hazard (KY),37.274167,-83.191389,,1,,6808,295,125,,,,,,42807,,, +1560,USA,,WRIN,,Rensselaer (IN),40.961389,-87.151944,,1,,6756,300,125,,,,,,42855,,, +1560,USA,,KBEW,,Blue Earth (MN),43.645556,-94.0925,,1,,6936,307,126,,,,,,38022,,, +1560,USA,,WKDO,,Liberty (KY),37.306111,-84.917222,,1,,6912,296,126,,,,,,41986,,, +1560,USA,en,KGOW,,Bellaire (N) (TX),29.901389,-95.804167,,15,,8194,298,127,,0200-1400,1234567,,,20012516,,, +1560,USA,en,WAHT,,Clemson (SC),34.700833,-82.825556,,1,,6991,293,127,,,,,,40672,,, +1560,USA,,KTUI,,Sullivan (MO),38.195,-91.186667,,1,,7217,301,129,,,,,,39550,,, +1560,USA,,WGLB,,Elm Grove (WI),43.008889,-88.035,,0.25,,6646,302,129,,,,,,41526,,, +1560,USA,,WPAD,,Paducah (KY),37.052222,-88.600833,,1,,7157,298,129,,,,,,42641,,, +1560,USA,en,WLYG,,Centre (AL),34.128056,-85.640833,,1,,7214,294,129,,1200-2400,1234567,,,43595,,, +1560,PTR,,WRSJ,,Bayamon (PR),18.401389,-66.120556,,0.75,,7218,268,130,,0000-2400,1234567,,,42918,,, +1560,VEN,,YVLZ R Difusora Andina,,Mrida (mrd),8.6,-71.15,,10,,8405,265,131,,,,,,51711,,, +1560,USA,,WSEZ,,Paoli (IN),38.540278,-86.478333,,0.25,,6908,298,132,,,,,,42983,,, +1560,PNR,es,R Adventista de Panam,,Llano Bonito (pnm),9.037778,-79.461578,,10,,8934,272,134,,1000-0300,1234567,9908,,52330,,, +1560,USA,,KNZR,,Bakersfield (CA),35.308333,-119.046111,,10,,8949,318,134,,,,13,,39040,,, +1560,MEX,es,XEINFO-AM,,San Jernimo Tepetlacalco (mex),19.519617,-99.204711,,10,,9319,294,135,,,,,,43992,,, +1560,USA,,WSLA,,Slidell (LA),30.25,-89.762778,,1,,7794,294,135,,,,,,43018,,, +1560,USA,en,KEBC,,Del City (D) (OK),35.440556,-97.49,,1,,7815,303,135,,,,,,20012554,,, +1560,USA,,WBOL,,Bolivar (TN),35.258333,-88.980556,,0.25,,7327,297,136,,,,,,40892,,, +1560,B,pt,ZYH257 Rdio Princesa das Matas,,Viosa (AL),-9.373606,-36.230156,,1,,7951,225,137,,,,551,,36902667,,, +1560,CLM,es,HJLP RCN - La Cariosa,,Tulu (val),4.066667,-76.216667,,5,,9147,267,137,,,,16,,2171,,, +1560,USA,en,KZIZ,,Sumner (WA),47.236111,-122.228889,,0.9,,7939,326,137,,,,,,39892,,, +1560,CTR,,TIRN R Nicoya,,Nicoya (gnc),10.15,-85.45,,5,,9245,278,138,,1000-0300,1234567,,,52164,,, +1560,USA,en,KVAN,,Burbank (WA),46.169722,-119.025556,,0.7,,7914,323,138,,,,2,,20000002,,, +1560,B,pt,ZYH622 Rdio Difusora Vale do Curu,,Pentecoste (CE),-3.781944,-39.264722,,0.25,,7551,230,139,,,,,,36902663,,, +1560,DOM,,HIPZ R Pedernales,,Pedernales (pnl),18.016667,-71.716667,,0.25,,7632,272,139,,0900-0400,1234567,,,37288,,, +1560,B,pt,ZYJ608 Rdio Cultura do Oeste,,Pau dos Ferros (RN),-6.108333,-38.186111,,0.25,,7724,228,140,,,,,,36902652,,, +1560,CLM,es,HJPZ,,Agustn Codazzi (ces),10.083333,-73.266667,,1,,8421,268,141,,,,,,37629,,, +1560,USA,en,KEBC,,Del City (N) (OK),35.440833,-97.49,,0.25,,7815,303,141,,,,,,39052,,, +1560,USA,en,WPKL659,,Scott Township (PA),40.412278,-80.076722,,0.01,,6371,295,141,,,,,,20010725,,, +1560,B,pt,ZYH903 Rdio gua Branca,,Vitorino Freire (MA),-4.125,-45.168333,,0.25,,7906,236,142,,,,,,36902648,,, +1560,USA,,KLTI,,Macon (MO),39.709444,-92.463889,,0.041,,7166,303,142,,,,,,38848,,, +1560,CLM,es,HJHE,,Malaga (sat),6.7,-72.716667,,1,,8678,266,143,,,,,,37468,,, +1560,CLM,es,HJXZ Santa Maria de la Paz R,,Medelln (ant),6.283333,-75.566667,,1,,8909,268,143,,,,993,,26635,,, +1560,MEX,es,XEJPV-AM R Viva,,Zaragoza (chi),31.641944,-106.369444,,1,,8649,307,143,,,,,,44219,,, +1560,CHL,,CA156 R Parinacota,,Putre (Parinacota) (TA),-18.2,-69.55,,3,,10677,248,144,,0000-2400,1234567,,,35700,,, +1560,CLM,es,HJCP,,Arbelaez (cun),4.266667,-74.416667,,1,,9007,265,144,,,,,,37376,,, +1560,EQA,,HCCS2,,Daule (gua),-2.2,-79.9,,2,,9949,266,144,,,,,,36890,,, +1560,EQA,,HCZD1,,Urcuqui (nap),-0.416667,-78.216667,,1.5,,9678,265,144,,,,,,37191,,, +1560,NCG,,YNCN R America,,Managua (mng),12.066667,-86.216667,,1,,9129,280,144,,1600-0200,1234567,,,45178,,, +1560,USA,,KABI,,Abilene (KS),38.929444,-97.246111,,0.058,,7503,305,144,,,,,,37905,,, +1560,USA,,KHBR,,Hillsboro (TX),32.015833,-97.109167,,0.25,,8089,300,144,,,,,,38531,,, +1560,USA,,WBYS,,Canton (IL),40.544444,-90.020833,,0.018,,6957,302,144,,,,,,40933,,, +1560,B,pt,Rdio Canaa,,Guarapari (ES),-20.669722,-40.498889,,1,,9280,223,145,,,,,,36902653,,, +1560,B,pt,ZYH526 Rdio Povo,,Ribeira do Pombal (BA),-10.831642,-38.520811,,0.25,,8208,226,145,,,,,,36902669,,, +1560,EQA,,HCEI6,,Ambato (tun),-1.25,-78.616667,,1.5,,9778,265,145,,,,,,36916,,, +1560,EQA,,HCAI5 Eco de los A,,Cajabamba (chi),-1.7,-78.783333,,1,,9829,265,146,,,,,,36845,,, +1560,MEX,es,XELAC-AM R Azul,,Guacamayas (mic),18.025267,-102.196342,,1,,9639,295,146,,,,,,44287,,, +1560,EQA,,HCTR3 La Voz del Guabo,,El Guabo (oro),-3.233333,-79.866667,,1,,10037,265,147,,,,,,37143,,, +1560,URG,,CW51 R Maldonado,,Maldonado (ma),-34.866667,-54.966667,,3,,11354,227,147,,0000-2400,1234567,992,,36776,,, +1560,USA,,WWYC,,Toledo (OH),41.616667,-83.621389,,0.003,,6495,299,147,,,,,,43190,,, +1560,B,pt,ZYJ275 Rdio Capanema,,Capanema (PR),-25.583333,-53.55,,1,,10412,231,148,,,,,,36902665,,, +1560,PRU,es,OAZ7N R Mara,,Wanchaq (cus),-13.516667,-71.983333,,1,,10418,253,148,,,,,,37000109,,, +1560,USA,,KNGR,,Daingerfield (TX),33.026389,-94.706111,,0.06,,7859,299,148,,,,,,38994,,, +1560,BOL,,CP255 R Occidental,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,0930-2400,1234567,,,52070,,, +1560,MEX,es,XESE-AM,,Champoton (cam),19.3525,-90.713889,,0.25,,8792,288,149,,,,,,44737,,, +1560,USA,,KIQS,,Willows (CA),39.528889,-122.169167,,0.25,,8680,322,149,,,,174,,38632,,, +1560,ARG,,R Castanares,,Ituzaingo (cn),-27.566667,-56.666667,,1,,10766,233,150,,,,,,51904,,, +1560,B,pt,Rdio Barigui,,Almirante Tamandar (PR),-25.349783,-49.285236,,0.5,,10167,228,151,,,,81,,36902654,,, +1560,B,pt,ZYL256 Rdio Jornal,,Leopoldina/Morro Arranca Toco (MG),-21.533878,-42.648014,,0.25,,9467,225,151,,,,,,36902664,,, +1560,BOL,,R Urkupina,,Quillacollo (cbb),-17.4,-66.3,,0.5,,10402,246,151,,1000-2400,1234567,,,52071,,, +1560,CLM,es,HKV90,,Villavicencio (met),4.15,-73.633333,,0.2,,8964,265,151,,,,,,35902405,,, +1560,MEX,es,XEMAS-AM Ke Buena,,Salamanca (gua),20.586264,-101.224036,,0.25,,9348,296,151,,,,,,44349,,, +1560,ARG,,R Almirante Brown,,Rafael Calzada (ba),-34.8,-58.366667,,1,,11522,230,152,,,,,,51906,,, +1560,ARG,,R Ebenezer,,Ezeiza (ba),-34.85,-58.533333,,1,,11535,230,152,,,,,,51905,,, +1560,ARG,,R Rencar,,Quilmes Oeste (ba),-34.733333,-58.266667,,1,,11511,230,152,,,,,,51903,,, +1560,B,pt,ZYJ501 Rdio Grande Rio,,Itagua (RJ),-22.875856,-43.809211,,0.25,,9655,225,152,,,,977,,36902670,,, +1560,B,pt,ZYK593 Rdio Show,,Igarapava (SP),-20.053033,-47.740186,,0.25,,9579,230,152,,,,,,36902651,,, +1560,B,pt,ZYK725 Regional AM,,Pedreira (SP),-22.733333,-46.883333,,0.25,,9793,228,152,,,,,,36902656,,, +1560,CLM,es,HKS65,,Tamalameque (ces),8.866667,-73.816667,,0.1,,8564,268,152,,,,,,35902386,,, +1560,EQA,,HCUI5,,Caar (can),-0.566667,-78.916667,,0.25,,9738,266,152,,,,,,37149,,, +1560,USA,,KZQQ,,Abilene (TX),32.455833,-99.799722,,0.045,,8207,302,152,,,,,,39905,,, +1560,USA,,WMBH,,Joplin (MO),37.069444,-94.546944,,0.009,,7506,302,152,,,,,,42281,,, +1560,B,pt,ZYJ361 Rdio Cultura Serpin,,Ribeiro do Pinhal (PR),-23.398056,-50.355278,,0.25,,10036,230,153,,,,,,36902650,,, +1560,B,pt,ZYK679 Rdio Valparaso,,Valparaso (SP),-21.217867,-50.868139,,0.25,,9856,232,153,,,,,,36902658,,, +1560,B,pt,ZYK778 Rdio Vale do Rio Parana,,Presidente Epitcio (SP),-21.757594,-52.094081,,0.25,,9973,232,153,,,,,,36902649,,, +1560,USA,,WMRO,,Gallatin (TN),36.400833,-86.450833,,0.003,,7079,296,153,,,,,,42387,,, +1560,ARG,es,LT11 R General Francisco Ramrez,,Concepcion del Uruguay/Villaguay (er),-32.466667,-58.216667,,0.5,,11301,231,154,,????-0300,1234567,11,,40163,,, +1560,B,,ZYJ286,,Palmas (PR),-26.466667,-51.966667,,0.25,,10412,230,154,,,,,,46010,,, +1560,B,,ZYJ797,,Tai (SC),-27.116667,-49.966667,,0.25,,10371,228,154,,,,,,46207,,, +1560,B,pt,ZYJ364 Rdio Clube de Mallet,,Mallet/Rua Tiradentes (PR),-25.889722,-50.838333,,0.25,,10299,229,154,,,,,,36902668,,, +1560,BOL,,CP156 1 de Octubre,,Capinota (cbb),-17.716667,-66.266667,,0.25,,10428,246,154,,1030-0100,1234567,,,36655,,, +1560,CHL,,CB156 R Manantial,,Talagante (RM),-33.75,-71.016667,,1,,12132,239,154,,1100-0400,1234567,,,35747,,, +1560,B,pt,ZYJ825 Rdio Cidade,,So Miguel do Oeste (SC),-26.716667,-53.533333,,0.25,,10518,231,155,,,,,,36902660,,, +1560,B,pt,ZYK310 Aoriana AM,,Taquari (RS),-29.778056,-51.845,,0.25,,10719,228,155,,,,,,36902659,,, +1560,B,pt,ZYK369 Rdio Poat,,So Jos do Ouro (RS),-27.768889,-51.584444,,0.25,,10516,229,155,,,,,,36902661,,, +1560,ARG,,AM 1560 Tandil,,Tandil (ba),-37.316667,-59.116667,,0.5,,11790,229,156,,,,,,33000002,,, +1560,B,,ZYK282,,Quara (RS),-30.366667,-56.45,,0.25,,11014,231,156,,,,,,46311,,, +1560,CHL,,CD156 R Parque Nacional,,Villarrica (AR),-39.266667,-72.25,,1,,12671,236,156,,1100-0400,1234567,,,35892,,, +1560,URG,,CV156 R Vichadero,,Vichadero (rv),-31.766667,-54.666667,,0.25,,11050,229,156,,1000-0200,1234567,,,36736,,, +1560,URG,,CX156 Dif. Americana,,Trinidad (fs),-33.516667,-56.916667,,0.25,,11329,230,157,,0930-0130,1234567,,,36799,,, +1560,ARG,,LT33 R Nueve de Julio,,Nueve de Julio (ba),-35.45,-60.866667,,0.25,,11713,231,159,,0900-0300,1234567,,,40184,,, +1566,HOL,hi,Vahon Hindustani R,,Den Haag/Leidschenveen (zho),52.057167,4.409056,,1,,137,268,53,,0000-2400,1234567,9949,,3800015,,, +1566,G,en,Eagle Extra,,Guildford/Peasmarsh (EN-SUR),51.204111,-0.592444,,0.75,,493,261,63,,0000-2400,1234567,0,,1635,,, +1566,G,en,BBC R 5 Live,,Taunton (EN-SOM),51.022333,-3.088167,,0.63,,667,263,66,,0000-0700,1234567,1,,1634,,, +1566,G,en,BBC Somerset,,Taunton (EN-SOM),51.022333,-3.088167,,0.63,,667,263,66,,0700-2400,1234567,1,,1634,,, +1566,I,it,R Studio X,,Momigno (pt),43.966667,10.8,,0.35,,962,159,71,,0000-2400,......7,,,1636,,, +1566,I,,R Kolbe Sat,,Colli Berici (vi),45.333333,11.566667,,0.2,,843,151,72,,,,,,4000039,,, +1566,I,it,R Melody,,Lido Adriano (ra),44.411111,12.308333,,0.25,,960,151,73,,????-????,1234567,,,4000040,,, +1566,GRC,el,R Asteras,,Kilkis (cmc-kil),41,22.866667,,1,,1756,128,75,,,,,,3400005,,, +1566,GRC,el,R Apithanos,,Patra (wgr-akh),38.25,21.75,,1,,1946,136,76,,,,,,3400029,,, +1566,BEN,bao,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2130-2245,1......,9998,,2251,,, +1566,BEN,bm,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2215-2245,12345..,9998,,2251,,, +1566,BEN,en,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,0255-0330,1234567,9998,,2251,,, +1566,BEN,en,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,0430-0500,1234567,9998,,2251,,, +1566,BEN,en,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,1740-1820,1234567,9998,,2251,,, +1566,BEN,fr,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2040-2130,1234567,9998,,2251,,, +1566,BEN,fr,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2130-2145,123456,9998,,2251,,, +1566,BEN,fr,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2145-2215,1234567,9998,,2251,,, +1566,BEN,fr,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2215-2245,.....67,9998,,2251,,, +1566,BEN,xx,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,0330-0430,1234567,9998,,2251,,, +1566,BEN,xx,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,0500-0530,1234567,9998,,2251,,, +1566,BEN,xx,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,1700-1740,1234567,9998,,2251,,, +1566,BEN,xx,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,1820-2040,1234567,9998,,2251,,, +1566,IRN,fa,IRIB R Iran,,Bandar-e Abbas (hrg),27.255167,56.413556,,100,,4957,104,87,,0000-2400,1234567,163,,1637,,, +1566,IND,,AIR National Channel,,Nagpur/Buttibori (MH),20.895556,78.996389,,1000,,7011,90,97,,1325-0043,1234567,27,,1765,,, +1566,KOR,en,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1730-1830,1234567,3,,1968,,, +1566,KOR,ja,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1230-1345,1234567,3,,1968,,, +1566,KOR,ko,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1900-1100,1234567,3,,1968,,, +1566,KOR,ru,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1830-1900,1234567,3,,1968,,, +1566,KOR,zh,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1100-1230,1234567,3,,1968,,, +1566,KOR,zh,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1345-1730,1234567,3,,1968,,, +1566,CHN,,Zhangjiakou RGD,,Zhangjiakou/HBTS710 (HB),40.816667,114.85,,10,,7601,51,123,,,,,,51310,,, +1566,CHN,,Linhe RGD,,Linhe/NMTS691 (NM),40.729444,107.354444,,1,,7200,55,129,,,,,,51306,,, +1566,CHN,zh,Hubei RGD Xinwen Zonghe Pinl,,Jingmen (HU),31.033333,112.2,,10,,8308,59,130,,,,29,,36200324,,, +1566,CHN,zh,Yuncheng RGD,,Yuncheng (SX),35.016667,111,,1,,7891,57,136,,2200-1600,1234567,,,51308,,, +1566,CHN,zh,Liaocheng RGD Jiaotong Tai,,Liaocheng (SD),36.433333,115.966667,,1,,8044,53,137,,,,,,36201253,,, +1566,CHN,,Yanbian RGD,,Songjiangzhen (JL),42.575,128.333333,,1,,8101,41,138,,2130-1510,1234567,,,36200366,,, +1566,PHL,,DXID-AM,,Pagadian City (zds),7.816667,123.416667,,10,,11089,64,141,,2100-1400,1234567,,,51314,,, +1566,CHN,,Pingliang RGD,,Pingliang (GS),35.555,136.616667,,1,,9136,39,144,,,,,,36200256,,, +1566,AUS,en,3NE,,Wangaratta (VIC),-36.313611,146.371944,,5,,16435,77,161,,0000-2400,1234567,31,,51304,,, +1566,AUS,en,4GM ABC Wide Bay,,Gympie (QLD),-26.210778,152.689011,,0.2,,15989,57,174,,0000-2400,1234567,2383,,51303,,, +1566,NFK,,VL2NI Norfolk Island Broadcasting Service,,Kingston,-29.05,167.933333,,0.05,,17033,38,183,,0000-2400,1234567,9993,,51313,,, +1570,CAN,fr,CJLV,,Laval (QC),45.530833,-73.841389,,10,,5616,297,103,,,,15,,35933,,, +1570,USA,,WFLR,,Dundee (NY),42.544444,-76.993056,,5,,6022,295,110,,,,,,41401,,, +1570,CAN,en,CKMW,,Morden (Winkler) (MB),49.121111,-98.0675,,10,,6699,313,114,,,,0,,36345,,, +1570,USA,,WISP,,Doylestown (PA),40.326111,-75.161111,,0.9,,6071,292,118,,,,9813,,41809,,, +1570,USA,,WFTU,,Riverhead (NY),40.913333,-72.654444,,0.5,,5869,291,119,,,,,,41452,,, +1570,USA,,WQTW,,Latrobe (PA),40.301944,-79.365556,,1,,6336,295,120,,,,,,42800,,, +1570,USA,,WCLE,,Cleveland (TN),35.181944,-84.848611,,5,,7079,294,121,,,,,,41024,,, +1570,MEX,es,XERF-AM La Poderosa,,Ciudad Acua (coa),29.349017,-101.033264,,100,,8553,301,122,,0000-2400,1234567,5,,33529,,, +1570,USA,,WVTL,,Amsterdam (NY),42.910556,-74.217778,,0.204,,5823,294,122,,,,,,43346,,, +1570,USA,,WKKS,,Vanceburg (KY),38.597222,-83.347222,,1,,6713,296,124,,,,,,42031,,, +1570,USA,es,WMVX,,Beverly (MA),42.556111,-70.836944,,0.085,,5636,292,124,,,,,,42508,,, +1570,USA,,KBCV,,Hollister (D) (MO),36.614444,-93.213611,,5,,7467,301,125,,,,,,20016086,,, +1570,USA,,WLKD,,Minocqua (WI),45.820278,-89.724167,,0.5,,6522,306,125,,,,,,42179,,, +1570,USA,,WPGM,,Danville (PA),40.986111,-76.626944,,0.221,,6114,294,125,,,,,,42679,,, +1570,USA,,WTLK,,Taylorsville (D) (NC),35.931667,-81.171389,,0.9,,6788,292,125,,,,,,43165,,, +1570,USA,,WNST,,Towson (MD),39.417778,-76.556389,,0.237,,6227,292,126,,,,29,,42512,,, +1570,USA,,KBCV,,Hollister (N) (MO),36.614167,-93.213889,,3,,7467,301,127,,,,,,38016,,, +1570,USA,,WBGX,,Harvey (IL),41.603889,-87.679167,,0.5,,6736,301,127,,,,998,,40846,,, +1570,USA,,WFUR,,Grand Rapids (MI),42.953889,-85.697778,,0.307,,6514,301,127,,,,,,41456,,, +1570,USA,,WFRL,,Freeport (IL),42.3125,-89.593889,,0.5,,6791,303,128,,,,,,41434,,, +1570,USA,,WIZK,,Bay Springs (MS),31.965556,-89.300833,,3.2,,7621,295,128,,,,,,41829,,, +1570,USA,,WSCO,,Appleton (WI),44.217778,-88.409167,,0.331,,6573,304,128,,,,,,42966,,, +1570,USA,,WWCK,,Flint (MI),43.010833,-83.650833,,0.179,,6389,300,128,,,,,,43361,,, +1570,USA,,WKBH,,Holmen (WI),43.925556,-91.267222,,0.36,,6757,305,129,,,,,,41961,,, +1570,USA,,WNCA,,Siler City (NC),35.727778,-79.488333,,0.28,,6697,291,129,,,,,,42443,,, +1570,USA,,WPTW,,Piqua (OH),40.140278,-84.268611,,0.25,,6648,298,129,,,,,,42749,,, +1570,USA,,KAKK,,Walker (MN),47.078889,-94.590278,,0.25,,6686,310,130,,,,,,37933,,, +1570,USA,,WECU,,Winterville (NC),35.5375,-77.418333,,0.2,,6580,290,130,,,,,,20000073,,, +1570,USA,,WYTI,,Rocky Mount (VA),36.976944,-79.895833,,0.22,,6625,292,130,,,,,,43553,,, +1570,USA,en,WHTX,,Warren (OH),41.206111,-80.841389,,0.116,,6358,297,130,,,,,,40726,,, +1570,USA,,KYCR,,Golden Valley (MN),44.960833,-93.356944,,0.23,,6789,307,131,,,,,,39843,,, +1570,USA,,WGLL,,Auburn (IN),41.333611,-85.052222,,0.151,,6602,299,131,,,,,,41528,,, +1570,USA,,WILO,,Frankfort (IN),40.277778,-86.485278,,0.25,,6770,299,131,,,,,,41756,,, +1570,USA,,WNDA,,New Albany (IN),38.327778,-85.782222,,0.233,,6883,297,132,,,,,,42133,,, +1570,USA,,WTLK,,Taylorsville (N) (NC),35.9325,-81.171944,,0.2,,6788,292,132,,,,,,20012586,,, +1570,B,pt,RIR-Rede Integrada de Rdifuso,,Angicos (RN),-5.666667,-36.6,,1,,7600,227,133,,,,,,52385,,, +1570,USA,,KZLI,,Pryor (OK),36.265278,-95.710278,,1,,7642,302,133,,,,,,38943,,, +1570,USA,,WSWV,,Pennington Gap (VA),36.733889,-83.042778,,0.191,,6842,294,133,,,,,,43090,,, +1570,USA,,WTAY,,Robinson (IL),39.008056,-87.778056,,0.188,,6949,299,134,,,,,,43108,,, +1570,B,pt,ZYH907 Rdio Cultura Rio Jordo AM,,Coroat (MA),-4.144444,-44.115,,1,,7849,235,135,,,,,,36902683,,, +1570,USA,,WLBQ,,Morgantown (KY),37.219167,-86.689167,,0.15,,7027,297,135,,,,,,42137,,, +1570,USA,en,WPII600,,Glastonbury/2108 Main St. (CT),41.710989,-72.610083,,0.01,,5808,292,135,,,,,,20010726,,, +1570,EQA,,HCPG1,,Quito (pic),0.066667,-79.05,,10,,9692,266,136,,,,,,37060,,, +1570,USA,,KQWC,,Webster City (IA),42.467778,-93.796667,,0.137,,7015,305,136,,,,,,39212,,, +1570,USA,,KMCD,,Fairfield (IA),41.006944,-92.013889,,0.109,,7034,303,137,,,,,,38889,,, +1570,PRU,,OCU4J R Bethel,,Lima (lim),-12.05,-77.05,,10,,10622,257,139,,,,1,,37000036,,, +1570,PTR,,WPPC,,Penuelas (PR),18.063056,-66.717778,,0.126,,7287,268,139,,1000-2400,1234567,,,42726,,, +1570,USA,,WBGZ,,Alton (IL),38.928056,-90.2175,,0.074,,7100,301,139,,,,,,40847,,, +1570,B,pt,ZYH621 Rdio Serto Central,,Senador Pompeu (CE),-5.591844,-39.367636,,0.25,,7734,230,140,,,,,,36902698,,, +1570,USA,,KVTK,,Vermillion (SD),42.792222,-97.000833,,0.071,,7164,308,140,,,,1,,39675,,, +1570,HWA,en,KUAU,,Haiku (HI),20.791667,-156.466944,,15,,11740,343,141,,,,999,,39560,,, +1570,USA,en,WMAK,,Lobelville (TN),35.766944,-87.831111,,0.066,,7215,297,141,,,,,,42476,,, +1570,USA,en,WPLQ318,,Cleveland (OH),41.444306,-81.810992,,0.01,,6399,297,141,,,,,,20010727,,, +1570,USA,,WCRL,,Oneonta (AL),33.954444,-86.472222,,0.064,,7280,294,142,,,,,,41074,,, +1570,USA,,WIGO,,Morrow (GA),33.601389,-84.311111,,0.05,,7173,293,142,,,,,,43067,,, +1570,B,pt,ZYI798 Rdio Asa Branca,,Salgueiro (PE),-8.082308,-39.113167,,0.25,,7966,228,143,,,,,,36902685,,, +1570,CLM,,HJIP,,Envigado (ant),6.166667,-75.566667,,1,,8919,267,143,,,,,,37496,,, +1570,CLM,es,HKO22,,Dabeiba (ant),7,-76.266667,,1,,8894,269,143,,,,,,35902534,,, +1570,USA,,WTRB,,Ripley (TN),35.729444,-89.5425,,0.053,,7322,298,143,,,,,,43201,,, +1570,CLM,es,HJZT R Sensacin,,Manizales (cal),5.116667,-75.583333,,1,,9012,267,144,,,,991,,26643,,, +1570,GTM,,TGVE Voz Evangelica de Amrica (R VEA),,Ciudad de Guatemala (gut),14.616667,-90.583333,,1,,9198,284,144,,1030-0600,1234567,995,,29464,,, +1570,HND,es,HRRF RCN R Cadena Nacional de Noticias,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,0000-2400,1234567,,,37756,,, +1570,USA,,KLEX,,Lexington (MO),39.187222,-93.834167,,0.04,,7288,303,144,,,,,,38800,,, +1570,USA,es,WVOJ,,Fernandina Beach (FL),30.675833,-81.459722,,0.03,,7230,289,144,,,,,,43329,,, +1570,B,,unid,,unknown,-14.5,-53.1,,1,,9343,237,145,,,,75,,52529,,, +1570,B,,unid,,unknown,-14.5,-53.1,,1,,9343,237,145,,,,86,,52472,,, +1570,B,pt,ZYI418 Cidade AM,,Aparecida do Taboado (MS),-20.087981,-51.092311,,1,,9760,232,146,,,,,,36902680,,, +1570,EQA,,HCRZ1,,Tabacundo (pic),0.05,-78.2,,1,,9635,266,146,,,,,,37124,,, +1570,USA,,KCVR,i,Lodi (CA),38.086111,-121.215833,,0.5,,8779,321,146,,,,19,,38226,,, +1570,USA,,KNDY,,Marysville (KS),39.850556,-96.647778,,0.033,,7391,305,146,,,,,,38975,,, +1570,USA,,KTGE,,Salinas (CA),36.660556,-121.541389,,0.5,,8931,320,146,,,,9902,,39477,,, +1570,PRU,es,OAU7Z R Carrviz,,Juliaca (pun),-15.816667,-70.016667,,1.5,,10495,250,147,,,,77,,37000030,,, +1570,B,pt,ZYH496 Rdio Povo,,Jaguaquara (BA),-13.544622,-39.969133,,0.25,,8548,226,148,,,,,,36902671,,, +1570,B,pt,ZYI409 Nova Difusora AM,,Caarap (MS),-22.628392,-54.837994,,1,,10205,234,148,,,,,,36902673,,, +1570,CLM,es,HKP58,,Santa Rosa Sur (bol),10.45,-75.366667,,0.25,,8532,270,148,,,,,,35902545,,, +1570,PRU,,R Julcn,,Julcn (lal),-8.05,-78.5,,1,,10368,261,148,,,,25,,52452,,, +1570,PRU,,R Vilcanota,,Sicuani (cus),-14.316667,-71.25,,1,,10441,252,148,,,,,,37000110,,, +1570,USA,,KBRI,,Brinkley (AR),34.867222,-91.201111,,0.023,,7494,298,148,,,,,,38085,,, +1570,B,,ZYL...,,Pedra Azul (MG),-16,-41.283333,,0.25,,8856,226,149,,,,,,52383,,, +1570,PRG,,R Oriental AM 1570,,Caaguazu (cgz),-25.416667,-56.1,,1,,10535,234,149,,,,,,51739,,, +1570,B,pt,ZYK651 Rdio Emissora ABC,,Santo Andr/Rua Aruj 858 (SP),-23.645133,-46.516242,,0.5,,9863,227,150,,,,995,,36902699,,, +1570,CLM,es,HKX78,,Balboa (ris),4.95,-75.95,,0.25,,9052,267,150,,,,,,35902457,,, +1570,EQA,,HCUJ3,,Pasaje (mor),-3.35,-78.783333,,0.5,,9974,264,150,,,,,,37150,,, +1570,USA,,WTWB,,Auburndale (FL),28.075556,-81.821944,,0.013,,7468,287,150,,,,,,43235,,, +1570,B,pt,ZYJ678 Rdio Sociedade Espigo,,Espigo d'Oeste (RO),-11.521667,-61.018056,,0.25,,9540,245,151,,,,4,,36902690,,, +1570,B,pt,ZYL344 Rdio Cidade,,Corinto (MG),-18.362128,-44.449306,,0.25,,9246,228,151,,,,,,36902681,,, +1570,B,pt,ZYL364 Rdio Difusora de Piranga,,Piranga (MG),-20.690333,-43.29745,,0.25,,9416,226,151,,,,,,36902687,,, +1570,BOL,,R 1 de Mayo,,Villa Primero de Mayo (scz),-17.791667,-63.122222,,0.5,,10241,243,151,,1000-0200,123456,,,52072,,, +1570,BOL,,R 1 de Mayo,,Villa Primero de Mayo (scz),-17.791667,-63.122222,,0.5,,10241,243,151,,1000-1800,......7,,,52072,,, +1570,USA,,KPRO,,Riverside (CA),33.931667,-117.396389,,0.194,,9003,316,151,,,,1,,39164,,, +1570,USA,,WOKC,,Okeechobee (FL),27.215833,-80.811667,,0.012,,7473,286,151,,,,,,42583,,, +1570,ARG,,R Interactiva,,Ciudad Madero (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51908,,, +1570,ARG,,R Rocha,,La Plata (ba),-34.916667,-57.95,,1,,11511,229,152,,,,,,51907,,, +1570,ARG,es,R Alegra,,Luis Palacios (sf),-32.780556,-60.905556,,1,,11474,233,152,,,,,,33000053,,, +1570,B,,ZYK636,,Promisso (SP),-21.516667,-49.866667,,0.25,,9831,231,152,,,,,,46518,,, +1570,B,pt,ZYJ493 Rdio Cultura,,Valena/Fazenda So Jose (RJ),-22.230956,-43.72925,,0.25,,9588,225,152,,,,37,,36902686,,, +1570,B,pt,ZYK648 Rdio Zequinha de Abreu,,Santa Rita do Passa Quatro (SP),-21.695192,-47.496511,,0.25,,9724,229,152,,,,,,36902677,,, +1570,B,pt,ZYK667 Rdio Nossa Senhora do Socorro,,Socorro/Chcara So Joo (SP),-22.580375,-46.531956,,0.25,,9761,228,152,,,,,,36902691,,, +1570,B,pt,ZYK670 RCT-Rdio Clube de Tanabi,,Tanabi/Jardim Santa Mnica (SP),-20.634167,-49.662222,,0.25,,9736,231,152,,,,,,36902694,,, +1570,B,pt,ZYL242 Rdio Universitria Itajub,,Itajub (MG),-22.411231,-45.447467,,0.25,,9690,227,152,,,,,,36902693,,, +1570,CLM,es,HKQ82,,Santa Mara (boy),4.866667,-73.266667,,0.15,,8876,265,152,,,,,,35902572,,, +1570,CLM,es,HKU42,,Cajica (cun),4.916667,-74.033333,,0.15,,8924,265,152,,,,,,35902475,,, +1570,URG,,CX157 R Canelones,,Canelones (ca),-34.5,-56.266667,,1,,11386,229,152,,1055-0200,1234567,,,36800,,, +1570,USA,,KPIO,,Loveland (CO),40.391944,-105.0975,,0.018,,7798,311,152,,,,,,39444,,, +1570,B,pt,ZYJ209 Rdio CBN,,Paranagu (PR),-25.5175,-48.535,,0.25,,10145,228,153,,,,,,36902682,,, +1570,B,pt,ZYJ324 Rdio Nova Brasileira,,Bela Vista do Paraso (PR),-23.002778,-51.184722,,0.25,,10042,231,153,,,,,,36902688,,, +1570,B,pt,ZYJ365 Rdio Arapoti Popular,,Arapoti (PR),-24.158056,-49.837778,,0.25,,10082,229,153,,,,,,36902697,,, +1570,B,pt,ZYK552 Rdio Avar,,Avar (SP),-23.11825,-48.935708,,0.25,,9935,229,153,,,,,,36902678,,, +1570,B,pt,ZYK605 Rdio Junqueirpolis,,Junqueirpolis/Rua da Paz (SP),-21.513567,-51.443561,,0.25,,9915,232,153,,,,,,36902675,,, +1570,CLM,es,HKQ83,,Maripi (boy),5.55,-74.016667,,0.1,,8868,266,153,,,,,,35902517,,, +1570,USA,,WABL,,Amite (LA),30.708611,-90.525278,,0.015,,7802,295,153,,,,,,40630,,, +1570,ARG,,LRK365 R Nuevo Mundo,,General Pinto (ba),-29.116667,-62.633333,,0.5,,11239,236,154,,,,,,40121,,, +1570,B,,ZYJ223,,Guarapuava (PR),-25.383333,-51.45,,0.25,,10282,230,154,,,,,,45949,,, +1570,B,,ZYK288,,Dois Vizinhos (PR),-25.766667,-53.033333,,0.25,,10402,231,154,,,,,,46318,,, +1570,B,pt,Rdio Tangar,,Tangar (SC),-27.104167,-51.230833,,0.25,,10434,229,154,,,,,,36902672,,, +1570,B,pt,ZYJ341 Rdio Club de Nova Aurora,,Nova Aurora/Rua Melissa 520 (PR),-24.5225,-53.234167,,0.25,,10295,232,154,,,,,,36902676,,, +1570,B,pt,ZYJ777 Rdio Rio Negrinho,,Rio Negrinho/Rua Alfredo Girardi 138 (SC),-26.253333,-49.519444,,0.25,,10266,228,154,,,,,,36902679,,, +1570,CHL,,CC157 R Niebla,,Rancagua (LI),-34.166667,-70.716667,,1,,12150,239,154,,0000-2400,1234567,,,35827,,, +1570,CLM,es,HKX80,,Marsella (ris),4.933333,-75.733333,,0.1,,9039,267,154,,,,,,35902460,,, +1570,B,pt,ZYJ829 Rdio Modelo,,Modelo (SC),-26.775833,-53.063611,,0.25,,10499,230,155,,,,,,36902695,,, +1570,B,pt,ZYK358 Metrpole AM,,Gravata (Cachoeirinha) (RS),-29.926667,-51.041389,,0.25,,10693,227,155,,,,5,,36902689,,, +1570,URG,,CW157,,Young (rn),-32.7,-57.616667,,0.25,,11290,231,157,,,,,,36759,,, +1570,URG,,CW157A R Celeste,,Toms Gomensoro (ar),-30.416667,-57.416667,,0.25,,11070,232,157,,0900-0300,1234567,,,36760,,, +1570,USA,,KLLA,,Leesville (LA),31.141111,-93.295556,,0.006,,7936,297,159,,,,,,38825,,, +1570,USA,,KPYK,,Terrell (TX),32.754722,-96.239444,,0.006,,7973,300,159,,,,,,39180,,, +1570,USA,,KTAT,,Frederick (OK),34.391667,-99.030833,,0.006,,7994,303,159,,,,,,39453,,, +1570,USA,,KVLG,,La Grange (TX),29.882778,-96.865833,,0.011,,8260,299,159,,,,,,39636,,, +1570,CHL,,CC157 R Familia del Maule,,Talca (ML),-35.366667,-71.65,,0.25,,12307,239,161,,0000-2400,1234567,,,35828,,, +1570,CHL,,CD157 R Acuarela,,Nueva Imperial (AR),-38.95,-73.316667,,0.25,,12706,237,162,,1155-1810,1234567,,,35893,,, +1570,CHL,,CD157 R Acuarela,,Nueva Imperial (AR),-38.95,-73.316667,,0.25,,12706,237,162,,2200-0200,1234567,,,35893,,, +1575,I,it,RAI Liguria,,Genova/Portofino (ge),44.332222,9.171389,,30,,889,166,51,,0620-0630,123456,0,,1651,,, +1575,I,it,RAI Liguria,,Genova/Portofino (ge),44.332222,9.171389,,30,,889,166,51,,1110-1130,123456,0,,1651,,, +1575,I,it,RAI R1,,Genova/Portofino (ge),44.332222,9.171389,,30,,889,166,51,,0500-2300,1234567,0,,1651,,, +1575,E,es,SER,,Pamplona (NAV-NA),42.816667,-1.633333,,5,,1196,213,62,,0000-2400,1234567,,,1644,,, +1575,E,es,SER,,Crdoba (AND-CO),37.858369,-4.765758,,10,,1807,213,65,,0000-2400,1234567,,,1643,,, +1575,IRN,fa,IRIB R Iran,,Abadan (kuz),30.430444,48.290167,,800,33,4163,109,70,,0000-2400,1234567,9666,,10800034,,, +1575,UAE,fa,R Farda,,Al-Dhabbaya (abd),24.232944,54.416056,,800,0,5080,109,79,,0000-2400,1234567,0,,47306,,, +1575,EGY,ar,ERTU Al-Shabab wal Riyadah,,Hurghada (bar),27.26575,33.791806,,10,,3579,130,83,,0415-2200,1234567,45,,1857,,, +1575,G,en,Stoke Mandeville Hospital R. (LPAM),,Aylesbury/Mandeville Road (EN-BKS),51.798417,-0.801972,,0.001,,495,269,92,,,,,,1646,,, +1575,G,en,Hospital R Tyneside (LPAM),,Newcastle upon Tyne (EN-TYW),54.983333,-1.583333,,0.001,,617,304,93,,,,,,1647,,, +1575,IRN,fa,IRIB R Iran,,Ghayen=Qaen (skh),33.745389,59.161972,,10,,4629,95,93,,0000-2400,1234567,22,,1655,,, +1575,NGR,,ORTN La Voix du Sahel,,Niamey (nmy),13.541667,2.058333,,1,,4306,187,100,,0500-2300,1234567,,,2553,,, +1575,IRN,,unid Jammer,,unknown,32.5,53.625,,1,,4350,101,101,,,,70,,10800005,,, +1575,THA,bn,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1600-1700,1234567,995,,51329,,, +1575,THA,en,VOA Music Mix,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1100-1200,.....67,995,,51329,,, +1575,THA,en,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,0030-0100,1234567,995,,51329,,, +1575,THA,en,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,2230-2400,....56.,995,,51329,,, +1575,THA,km,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1330-1430,1234567,995,,51329,,, +1575,THA,km,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,2200-2230,1234567,995,,51329,,, +1575,THA,lo,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1230-1300,1234567,995,,51329,,, +1575,THA,my,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,0000-0030,1234567,995,,51329,,, +1575,THA,my,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1430-1500,1234567,995,,51329,,, +1575,THA,my,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1500-1530,.....67,995,,51329,,, +1575,THA,my,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1530-1600,1234567,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1030-1100,1234567,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1100-1130,12345..,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1200-1230,12345..,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1500-1530,1234567,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,2230-2400,1234..7,995,,51329,,, +1575,THA,vi,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1300-1330,1234567,995,,51329,,, +1575,CHN,zh,CNR 1,,Tongxin (NX),36.98575,105.904472,,10,,7428,59,121,,2025-1805,1234567,,,51318,,, +1575,CHN,zh,CNR 2,,Hanzhong (SA),33.154944,106.962472,,10,,7815,61,125,,2100-1602,1234567,,,36200691,,, +1575,RUS,ru,Ekho Usolye,,Usolye Sibirskoje (IR),52.766667,103.65,,0.2,,6054,48,125,,,,,,47053,,, +1575,CHN,zh,CNR 1,,Songyuan (JL),45.1625,124.849778,,1,,7706,42,134,,2025-1805,1234567,,,36200686,,, +1575,CHN,,Dalian RGD Shequ,,Dalian (LN),38.9,121.583333,,2,,8118,47,135,,,,,,51319,,, +1575,CHN,zh,CNR 1,,Fuyu/Sanchahe (JL),44.983333,126.016667,,1,,7775,41,135,,2025-1805,1234567,,,36201291,,, +1575,CHN,,Lishu RGD,,Lishu (JL),43.3,124.333333,,1,,7852,43,136,,,,,,51320,,, +1575,CHN,zh,CNR 1,,Dunhua (JL),43.366667,128.216667,,1,,8022,40,137,,2025-1805,1234567,,,36201290,,, +1575,CHN,,Jilin JGD,,Tumen (JL),42.966667,129.85,,1,,8131,40,138,,,,,,36201296,,, +1575,CHN,zh,CNR 2,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,1,,8055,69,138,,2100-1602,1234567,,,36200687,,, +1575,CHN,,Yunnan RGD Xinwen Guangbo,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200690,,, +1575,CHN,,Kaiyuan RGD,,Kaiyuan (YN),23.70675,103.269139,,1,,8397,70,141,,,,,,36201294,,, +1575,PHL,,DXJR-AM Radyo Higala,,Manolo Fortich/Damilag (buk),8.36915,124.814133,,10,,11123,62,141,,2100-1330,1234567,97,,51326,,, +1575,CHN,,Guangxi JGD Caifu Guangbo,,Hechi (GX),24.7,108.033333,,1,,8612,66,142,,,,,,36201292,,, +1575,MAU,en,BBC WS,,Port Louis (mau),-20.165458,57.478333,,2,,9432,133,142,,0000-2400,1234567,,,2552,,, +1575,CHN,,Guangxi JGD Caifu Guangbo,,Daxin (GX),22.846944,107.188889,,1,,8721,68,143,,,,,,36201289,,, +1575,CHN,,Guangxi JGD Caifu Guangbo,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,,,,,36200689,,, +1575,CHN,,Guangxi JGD Caifu Guangbo,,Pingxiang (GX),22.097778,106.752278,,1,,8759,68,143,,,,,,36201295,,, +1575,J,,AFN-The Thunder,,Iwakuni (chg-yam),34.161353,132.23345,,1,,9076,43,144,,0000-2400,1234567,,,51322,,, +1575,J,en,AFN-The Thunder,,Misawa (toh-aom),40.697633,141.354747,,0.6,,8818,33,145,,0000-2400,1234567,2,,51323,,, +1575,J,,AFN-The Thunder,,Sasebo (kyu-nag),33.167717,129.717331,,0.25,,9052,45,150,,0000-2400,1234567,,,51324,,, +1575,AUS,it,2RF Rete Italia,,Wollongong/Windang (NSW),-34.517194,150.873625,,5,,16591,69,162,,0000-2400,1234567,,,51317,,, +1575,NZL,,4XS Hills AM,,Dunedin/Centre Road (OTA),-45.886944,170.5675,,2.5,,18672,65,172,,0000-2400,1234567,,,51325,,, +1578,BOL,,CP237 R Don Bosco,,Kami (cbb),-17.366667,-66.8,,1,,10430,246,148,,0900-1330,1234567,,,52074,,, +1578,BOL,,CP237 R Don Bosco,,Kami (cbb),-17.366667,-66.8,,1,,10430,246,148,,2100-0200,1234567,,,52074,,, +1580,CAN,en,CKDO,,Oshawa (ON),43.871583,-78.764111,,10,,6033,298,107,,0000-2400,1234567,2,,52604,,, +1580,USA,,WTTN,,Columbus (D) (WI),43.334722,-89.165556,,5,,6685,303,117,,0000-2400,1234567,,,20016070,,, +1580,USA,es,WLIM,,Patchogue (NY),40.795833,-72.992222,,0.5,,5899,291,119,,0000-2400,1234567,9969,,42172,,, +1580,USA,,WDAB,,Travelers Rest (SC),34.948611,-82.443889,,5,,6947,292,120,,0000-2400,1234567,,,20016009,,, +1580,USA,en,WNPZ,,Knoxville (TN),35.911667,-83.8925,,5,,6960,294,120,,0000-2400,1234567,,,40671,,, +1580,AFG,,R Kunar,,Asadabad (knr),34.866667,71.133333,,0.1,,5361,84,121,,0330-0530,1234567,,,46819,,, +1580,AFG,,R Kunar,,Asadabad (knr),34.866667,71.133333,,0.1,,5361,84,121,,0930-1230,1234567,,,46819,,, +1580,USA,es,WNTF,,Bithlo (FL),28.536389,-81.085,,10,,7382,287,121,,,,,,42517,,, +1580,DOM,,HIAJ R Amanecer,,San Pedro de Macors (pms),18.466667,-69.866667,,10,,7468,271,122,,1000-0400,1234567,,,37200,,, +1580,USA,,WTCL,,Chattahoochee (FL),30.670556,-84.835556,,10,,7448,291,122,,0000-2400,1234567,,,43119,,, +1580,USA,,WWDN,,Danville (VA),36.5675,-79.380556,,1,,6625,292,123,,,,,,41747,,, +1580,DOM,,HIJR R Amanecer,,Santiago de los Caballeros (sto),19.45,-70.7,,5,,7441,272,124,,,,,,52229,,, +1580,PTR,,WEKO,,Morovis (PR),18.342222,-66.418889,,2.5,,7243,268,125,,0000-2400,1234567,,,41277,,, +1580,USA,,WTTN,,Columbus (CN) (WI),43.334167,-89.165833,,0.8,,6685,303,125,,,,,,43227,,, +1580,VEN,,YVTK Manzanares 15-80,,Cuman (suc),10.5,-64.166667,,10,,7766,261,125,,,,3,,51713,,, +1580,USA,,KMIK,i,Tempe (AZ),33.456111,-111.833611,,50,,8773,311,126,,0000-2400,1234567,9998,,38905,,, +1580,USA,,WVOK,,Oxford (D) (AL),33.590833,-85.831667,,2.5,,7270,294,126,,,,,,43331,,, +1580,USA,en,WHLY,,South Bend (IN),41.685833,-86.164722,,0.5,,6640,300,126,,,,,,41187,,, +1580,USA,en,WJFK,,Morningside (MD),38.868611,-76.896944,,0.27,,6290,292,126,,0000-2400,1234567,,,42678,,, +1580,USA,,WPJK,,Orangeburg (SC),33.478611,-80.879444,,1,,6965,290,127,,,,,,42696,,, +1580,USA,,WPMO,,Pascagoula-moss Poin (MS),30.383611,-88.535278,,5,,7706,293,127,,,,,,20016022,,, +1580,USA,es,KBLA,,Santa Monica (CA),34.085556,-118.256667,,50,,9029,316,127,,0000-2400,1234567,13,,38051,,, +1580,USA,,WVKO,,Columbus (OH),40.061667,-82.944722,,0.29,,6574,297,128,,0000-2400,1234567,,,43302,,, +1580,VEN,,YVYV R Venezolana,,Calabozo (gco),8.916667,-67.5,,10,,8130,263,128,,1000-0200,1234567,,,51712,,, +1580,USA,,WAMW,,Washington (D) (IN),38.646389,-87.28,,0.5,,6948,299,129,,,,,,40719,,, +1580,USA,,WIOL,,Columbus (GA),32.465278,-85.022778,,1,,7311,292,130,,,,,,41237,,, +1580,VEN,,YVYO R Celestial San Francisco,,Maracaibo (zul),10.666667,-71.616667,,10,,8257,267,130,,,,1,,2259,,, +1580,USA,en,WPGY,,Ellijay (GA),34.703889,-84.476389,,0.5,,7094,294,131,,,,,,42683,,, +1580,USA,ht,WSRF,,Fort Lauderdale (FL),26.0775,-80.2175,,1.5,,7528,284,131,,0000-2400,1234567,997,,43062,,, +1580,DOM,,HIPK R Neiba,,Neiba (brc),18.466667,-71.416667,,1,,7574,272,133,,0900-0400,1234567,,,37286,,, +1580,CTR,,R Mi Pais,,Siquirres (lmn),10.1,-83.516667,,10,,9118,276,134,,,,,,52167,,, +1580,MEX,es,XEDM-AM DM Noticias,,Hermosillo (son),29.061747,-110.942678,,10,,9134,308,134,,1300-0700,1234567,,,43921,,, +1580,CLM,es,HJQZ R Maria,,Barranquilla (atl),10.916667,-74.766667,,5,,8451,270,135,,,,0,,37633,,, +1580,CLM,es,HJRM Caracol Colombia,,Sincelejo (suc),9.3,-75.4,,5,,8634,269,136,,,,0,,35902611,,, +1580,CLM,es,HJQT AvivaR Candela,,Bogot D. C. (bdc),4.6,-74.083333,,5,,8955,265,137,,0000-2400,1234567,4,,52631,,, +1580,CLM,es,HJSQ R.Robledo/RCN Antena 2,,Cartago (val),4.75,-75.916667,,5,,9067,267,137,,1100-0500,1234567,994,,35902599,,, +1580,USA,,KXZZ,,Lake Charles (LA),30.257778,-93.198611,,1,,8005,296,137,,0000-2400,1234567,,,39836,,, +1580,USA,en,WQEL333,,Metuchen/500 Main Street (NJ),40.543611,-74.363056,,0.01,,6004,292,137,,,,,,20010753,,, +1580,USA,en,WPSH264,,Cheektowaga (NY),42.938611,-78.739444,,0.01,,6100,297,138,,,,,,20010755,,, +1580,B,pt,ZYJ506 Resende AM,,Resende (RJ),-22.469461,-44.491233,,5,,9649,226,139,,,,,,36902715,,, +1580,USA,,KGAL,,Lebanon (OR),44.573611,-122.918056,,1,,8222,325,139,,,,9801,,38456,,, +1580,USA,en,WWTF,,Georgetown (KY),38.168056,-84.593611,,0.045,,6823,296,139,,0000-2400,1234567,,,43488,,, +1580,B,,ZYK626,,Jaguaribe (CE),-5.866667,-38.566667,,0.25,,7719,229,140,,,,,,46508,,, +1580,USA,,KKTS,,Evansville (D) (WY),42.881667,-106.286944,,0.22,,7638,313,140,,,,,,20016264,,, +1580,USA,,KKTS,,Evansville (N) (WY),42.881667,-106.286944,,0.22,,7638,313,140,,,,,,20016263,,, +1580,USA,,WGYM,,Hammonton (NJ),39.625833,-74.795556,,0.006,,6100,291,140,,0000-2400,1234567,,,41588,,, +1580,CLM,es,HJFU,,Villa del Rosario (nsa),7.833333,-72.466667,,1,,8562,266,142,,,,,,35902580,,, +1580,CLM,es,HJLC,,El Banco (mag),9.016667,-73.95,,1,,8560,268,142,,,,,,37542,,, +1580,EQA,,HCAE5,,Giron (azu),-3.133333,-79.166667,,3,,9981,265,142,,,,,,36839,,, +1580,USA,,KGAF,,Gainesville (TX),33.628333,-97.106944,,0.25,,7949,301,142,,,,,,38454,,, +1580,USA,,WCCF,,Punta Gorda (FL),26.893611,-82.050833,,0.11,,7581,286,142,,,,,,40964,,, +1580,USA,,WVZN,,Columbia (PA),40.014722,-76.470278,,0.005,,6176,293,142,,,,,,43350,,, +1580,B,pt,ZYI898 Rdio Santa Clara,,Floriano (PI),-6.783139,-43.026411,,0.25,,8044,232,143,,,,,,36902721,,, +1580,CLM,,HJKF,,Zipaquir (cun),5.016667,-74,,1,,8913,266,143,,,,,,37524,,, +1580,USA,en,WQAC662,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010749,,, +1580,CAN,xx,CBPK,,Revelstoke (BC),50.99,-118.22,,0.05,,7431,326,144,,,,,,20109222,,, +1580,CLM,,Caracol,,,4.45,-74.4,,1,,8990,265,144,,,,291,,52489,,, +1580,CLM,es,HJDE R Miraflores,,Rovira (tol),4.2,-75.216667,,1,,9068,266,144,,,,,,37606,,, +1580,EQA,,HCHA2,,Eloy Alfaro (gua),-2.25,-79.816667,,2,,9948,266,144,,,,,,36963,,, +1580,PNR,es,Hosanna Manantial,,Chorrera/La Pitahaya (pnm),8.826389,-79.780278,,1,,8975,272,144,,,,896,,52331,,, +1580,USA,,WORV,,Hattiesburg (MS),31.3425,-89.298056,,0.088,,7673,294,144,,0000-2400,1234567,,,42623,,, +1580,USA,,WZKY,,Albemarle (NC),35.360556,-80.1775,,0.012,,6770,291,144,,,,,,43577,,, +1580,USA,,KREL,,Colorado Springs (CO),38.719722,-104.721111,,0.14,,7926,310,145,,0000-2400,1234567,,,39771,,, +1580,USA,,KTLU,,Rusk (TX),31.82,-95.171944,,0.165,,7991,299,145,,,,,,39505,,, +1580,EQA,,HCLF1 Ecos de Orellana,,Machachi (pic),-0.5,-78.566667,,1,,9709,266,146,,1030-0230,1234567,829,,37008,,, +1580,EQA,,HCUA4,,Esmeraldas (esm),0.966667,-79.716667,,1,,9658,268,146,,,,,,37144,,, +1580,USA,,KCHA,,Charles City (IA),43.051389,-92.666667,,0.01,,6905,305,146,,0000-2400,1234567,,,38145,,, +1580,USA,,KESM,,Eldorado Springs (MO),37.864167,-94.015,,0.032,,7409,302,146,,,,,,38341,,, +1580,USA,,KHGG,,Van Buren (AR),35.391667,-94.331667,,0.049,,7636,301,146,,,,,,38539,,, +1580,USA,,KWED,,Seguin (TX),29.58,-97.984722,,0.253,,8353,299,146,,,,,,39701,,, +1580,USA,,WESY,,Leland (MS),33.379444,-90.929722,,0.048,,7602,297,146,,,,,,41330,,, +1580,USA,,WVOK,,Oxford (N) (AL),33.448611,-86.065,,0.022,,7296,294,146,,,,,,20016077,,, +1580,B,pt,ZYH464 Rdiovox,,Muritiba/Chcara So Jose (BA),-12.624167,-38.985278,,0.25,,8409,226,147,,,,76,,36902714,,, +1580,EQA,,HCCP2 Canal del Pueblo,,Samborondon (gua),-1.95,-79.716667,,1,,9914,266,147,,,,,,36883,,, +1580,USA,,KOKB,,Blackwell (OK),36.809722,-97.263889,,0.049,,7684,304,147,,,,,,39072,,, +1580,USA,,WWSJ,,St. Johns (MI),42.970556,-84.549722,,0.003,,6446,300,147,,,,,,43432,,, +1580,USA,en,WLPK,,Connersville (IN),39.638333,-85.148333,,0.005,,6741,298,147,,0000-2400,1234567,,,41044,,, +1580,B,pt,ZYH497 RBM-Rdio Barra do Mendes,,Barra do Mendes (BA),-11.805978,-42.067419,,0.25,,8483,229,148,,,,,,36901760,,, +1580,BOL,,R Andres Ibanez,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,1000-0300,1234567,,,52075,,, +1580,BOL,,R El Fuego del Espiritu Santo,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,1000-2400,1234567,51,,52076,,, +1580,MEX,es,XEAF-AM La Temeraria,,Ojo Seco (gua),20.389142,-100.797044,,0.5,,9340,296,148,,,,,,43701,,, +1580,PRU,es,OBX1M R Naylamp,,Lambayeque (lam),-6.683333,-79.9,,1,,10343,263,148,,1000-0200,1234567,,,37000113,,, +1580,USA,,KIRT,,Mission (TX),26.293333,-98.330556,,0.302,,8663,298,148,,,,,,38636,,, +1580,USA,,WAMY,,Amory (MS),33.975833,-88.491389,,0.018,,7403,296,148,,,,,,40720,,, +1580,USA,,WBCP,,Urbana (IL),40.126389,-88.290278,,0.006,,6889,300,148,,,,,,40825,,, +1580,USA,,WLIJ,,Shelbyville (TN),35.455278,-86.451944,,0.012,,7156,296,148,,,,,,42169,,, +1580,USA,,WPKY,,Princeton (KY),37.120556,-87.858611,,0.009,,7106,298,148,,,,,,42702,,, +1580,B,pt,ZYH502 Rdio Atalaia de Canavieiras,,Canavieiras (BA),-15.68,-38.948889,,0.25,,8710,224,149,,,,,,36902720,,, +1580,B,pt,ZYL329 Rdio Educadora,,Espinosa (MG),-14.897317,-42.794486,,0.25,,8823,228,149,,,,,,36902719,,, +1580,CLM,es,HKT34,,San Antero (cor),9.383333,-75.75,,0.25,,8651,270,149,,,,,,35902614,,, +1580,USA,,WAMW,,Washington (N) (IN),38.651111,-87.165278,,0.005,,6941,298,149,,,,,,20012576,,, +1580,CLM,es,HKV44,,Yaguara (hui),2.666667,-75.516667,,0.25,,9223,265,150,,,,,,35902591,,, +1580,CTR,,TIRCC R Cultural de Corredores,,Ciudad Neily (pta),8.65,-82.933333,,0.25,,9205,275,150,,,,,,52170,,, +1580,CTR,,TIRCL R Cultural,,Los Chiles (alj),11.033333,-84.716667,,0.25,,9118,278,150,,,,,,52165,,, +1580,CTR,,TIRCLC R Cultural,,La Cruz (gnc),11.066667,-85.65,,0.25,,9178,278,150,,,,,,52166,,, +1580,CTR,,TIRCLS R Cultural Los Santos,,San Marcos de Tarraz (sjs),9.666667,-84.033333,,0.25,,9191,276,150,,,,,,52169,,, +1580,CTR,,TIRCM R Cultural Malecu,,Tonjibe (alj),10.616667,-84.783333,,0.25,,9159,277,150,,,,,,52168,,, +1580,EQA,,HCAB3,,Catacocha (loj),-4.033333,-79.616667,,0.5,,10091,264,150,,,,,,36832,,, +1580,USA,,KAMI,,Cozad (NE),40.838333,-99.938889,,0.017,,7488,308,150,,0000-2400,1234567,,,37944,,, +1580,USA,,KTGR,,Columbia (MO),38.9625,-92.303889,,0.008,,7219,302,150,,,,,,39480,,, +1580,USA,,WDQN,,Duquoin (IL),38.032222,-89.241667,,0.0066,,7115,299,150,,,,,,41203,,, +1580,B,pt,ZYJ487 Rdio Popular Fluminense,,Conceio de Macabu (RJ),-22.069628,-41.869522,,0.25,,9483,224,151,,,,,,36902705,,, +1580,B,pt,ZYL210 Liberdade AM,,Itapecerica (MG),-20.466667,-45.116667,,0.25,,9484,227,151,,,,,,36902703,,, +1580,B,pt,ZYL290 Rdio Cultura,,Santos Dumont (MG),-21.473144,-43.540692,,0.25,,9505,226,151,,,,,,36902702,,, +1580,MEX,es,XELI-AM Super 94.7,,Chilpancingo (gue),17.537372,-99.494539,,0.25,,9514,293,151,,,,,,44306,,, +1580,MEX,es,XEVAB-AM Super Stereo Miled,,Valle de Bravo (mex),19.191944,-100.134444,,0.25,,9406,295,151,,,,,,44946,,, +1580,PRU,,OBX7Q R El Triunfo,,Cusco (cus),-13.466667,-72,,0.5,,10414,253,151,,,,,,40413,,, +1580,URG,,CW54 Emisoras del Este,,Minas (la),-34.366667,-55.216667,,1,,11320,228,151,,0800-0200,1234567,,,36778,,, +1580,USA,,KNIM,,Maryville (MO),40.3175,-94.870556,,0.007,,7253,305,151,,0000-2400,1234567,,,38997,,, +1580,ARG,,R Activa,,Longchamps (ba),-34.866667,-58.383333,,1,,11529,230,152,,,,,,51911,,, +1580,ARG,,R Planeta,,Rosario (sf),-32.95,-60.666667,,1,,11476,233,152,,,,,,51912,,, +1580,B,pt,ZYJ505 Rdio Gerao 2000,,Terespolis/Rua Torre da Radio (RJ),-22.310556,-42.824444,,0.25,,9552,225,152,,,,95,,36902710,,, +1580,B,pt,ZYK504 Rdio Difusora de Amparo,,Amparo (SP),-22.716847,-46.794378,,0.25,,9787,228,152,,,,,,36902706,,, +1580,B,pt,ZYL335 Rdio Nova Guaransia AM,,Guaransia (MG),-21.306594,-46.791628,,0.25,,9651,228,152,,,,,,36902722,,, +1580,EQA,,HCTI6,,Quero (tun),-1.366667,-78.616667,,0.3,,9788,265,152,,,,,,37139,,, +1580,ARG,,R Tradicion,,San Martn (mz),-33.066667,-68.466667,,1,,11924,238,153,,,,,,51910,,, +1580,B,pt,ZYK743 Rdio Pedra Bonita,,Itaporanga (SP),-23.670833,-49.505556,,0.25,,10018,229,153,,,,,,36902707,,, +1580,URG,,CW158,,Tranqueras (rv),-31.183333,-55.75,,0.5,,11052,230,153,,,,,,36761,,, +1580,USA,en,WPWL619,,Pensacola (FL),30.543497,-87.204444,,0.01,,7609,292,153,,,,,,20010748,,, +1580,B,pt,ZYI415 Rdio Laguna,,Jardim (MS),-21.470231,-56.171539,,0.25,,10171,236,154,,,,,,36902701,,, +1580,B,pt,ZYJ342 R.So Joo do Sudoeste do Paran,,So Joo (PR),-25.819722,-52.7175,,0.25,,10390,231,154,,,,,,36902717,,, +1580,B,pt,ZYJ818 Rdio Pomerode AM,,Pomerode/Rua Elisa Utpadel (SC),-26.698333,-49.156389,,0.25,,10290,228,154,,,,,,36902716,,, +1580,CHL,,CC158 R Colchagua,,Santa Cruz (LI),-34.616667,-71.366667,,1,,12227,239,154,,,,,,35829,,, +1580,USA,,KDOM,,Windom (MN),43.861389,-95.097222,,0.002,,6973,307,154,,,,,,38286,,, +1580,ARG,,LT36 R Chacabuco,,Chacabuco (ba),-34.616667,-60.466667,,0.5,,11616,231,155,,1000-0400,1234567,,,40187,,, +1580,B,pt,ZYK237 Encanto AM,,Encantado (RS),-29.243611,-51.863611,,0.25,,10670,228,155,,,,,,36902712,,, +1580,CLM,es,HKW74,,Pupiales (nar),0.866667,-77.65,,0.1,,9526,266,155,,,,,,35902583,,, +1580,USA,en,WQHL398,,Coulee City (WA),47.611025,-119.365111,,0.01,,7792,324,155,,,,,,20010733,,, +1580,USA,en,WQHL398,,Wenatchee (WA),47.416667,-120.316667,,0.01,,7848,325,155,,,,,,20010732,,, +1580,USA,en,WQHM720,,San Juan County (WA),48.57,-122.97,,0.01,,7839,327,155,,,,,,20016248,,, +1580,USA,en,WQHM720,,Skagit County (WA),48.48,-121.78,,0.01,,7803,326,155,,,,,,20016247,,, +1580,USA,en,WQHM720,,Snohomish County (WA),48.04,-121.71,,0.01,,7842,326,155,,,,,,20016246,,, +1580,USA,en,WQHM720,,Whatcom County (WA),48.83,-121.9,,0.01,,7774,327,155,,,,,,20010728,,, +1580,B,pt,ZYK339 Rdio Difusora Fronteira AM,,Arroio Grande (RS),-32.246667,-53.079167,,0.25,,11014,228,156,,,,,,36902704,,, +1580,USA,en,WPUI731,,Pendleton (OR),45.643333,-118.692778,,0.01,,7950,323,156,,,,,,20010740,,, +1580,USA,en,WPUI773,,Pt Townsend (WA),48.010969,-122.877664,,0.01,,7889,327,156,,,,,,20010743,,, +1580,USA,en,WPUJ295,,Forks (WA),48.077686,-124.278889,,0.01,,7934,328,156,,,,,,20010742,,, +1580,USA,en,WPWG300,,Puyallup (WA),47.210181,-122.297778,,0.01,,7944,326,156,,,,,,20010746,,, +1580,USA,en,WPWY976,,Pt Angeles (WA),48.099472,-123.544358,,0.01,,7905,327,156,,,,,,20010751,,, +1580,USA,en,WQGK745,,Fife/5000 26th St. E (WA),47.243481,-122.362778,,0.01,,7943,326,156,,,,,,20010730,,, +1580,USA,en,WQGK745,,Orting/409 Washington Ave. (WA),47.110189,-122.210556,,0.01,,7950,326,156,,,,,,20010729,,, +1580,USA,en,WQHM720,,Island County (WA),48.15,-122.58,,0.01,,7865,327,156,,,,,,20016251,,, +1580,USA,en,WQHM720,,King County (WA),47.47,-121.84,,0.01,,7902,326,156,,,,,,20016250,,, +1580,USA,en,WQHM720,,Pierce County (WA),47.05,-122.11,,0.01,,7952,326,156,,,,,,20016249,,, +1580,ARG,,LT27 R LV del Montiel,,Villaguay (er),-31.866667,-59.016667,,0.25,,11289,232,157,,0900-0300,1234567,,,40179,,, +1580,URG,,CV158,,El Pororo (la),-34.2,-54.816667,,0.25,,11284,228,157,,,,,,36737,,, +1580,USA,en,WPQE577,,Dallas/3447 Hawes Ave (TX),32.844328,-96.837778,,0.01,,8001,301,157,,,,,,20010754,,, +1580,USA,en,WPXE446,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010750,,, +1580,URG,,CW158 R San Salvador,,Dolores (so),-33.516667,-58.2,,0.25,,11396,230,158,,0000-2400,1234567,998,,36801,,, +1580,USA,en,WQAV954,,West Point/3016 West 300 North (UT),41.127653,-112.094347,,0.01,,8078,316,158,,,,,,20010747,,, +1580,USA,en,WPHV350,,Victoria (TX),28.690278,-96.942778,,0.01,,8368,298,161,,,,,,20010741,,, +1580,USA,en,WPVP652,,Oroville (CA),39.611003,-121.627694,,0.01,,8649,322,162,,,,,,20010731,,, +1580,USA,en,WPVP765,,Hornbrook (CA),41.992361,-122.60975,,0.01,,8459,323,162,,,,,,20010737,,, +1580,USA,en,WPQK812,,Auburn (CA),38.977669,-121.0155,,0.01,,8684,321,163,,,,,,20010752,,, +1580,USA,en,WPQK812,,Newcastle (CA),38.860983,-121.146833,,0.01,,8701,321,163,,,,,,20010745,,, +1580,CHL,,CD158B R Continental,,Collipulli (AR),-37.95,-72.416667,,0.05,,12570,237,168,,1100-0430,1234567,,,35895,,, +1580,CHL,,CD158A R Millaray,,Canete (BI),-37.766667,-73.366667,,0.05,,12610,238,169,,,,,,35894,,, +1584,HOL,nl,R Paradijs,,Utrecht/Galgenwaard (utr),52.07615,5.142667,,0.1,,87,268,45,,0000-2400,1234567,61,,3800007,,, +1584,I,it,R Studio X,,Momigno (pt),43.966667,10.8,,12,,962,159,56,,0000-2400,1234567,988,,1677,,, +1584,G,en,BBC R 5 Live,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0000-0600,12345..,0,,1669,,, +1584,G,en,BBC R 5 Live,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0100-0700,.....67,0,,1669,,, +1584,G,en,BBC R Nottingham,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0600-0100,....5..,0,,1669,,, +1584,G,en,BBC R Nottingham,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0600-2400,1234...,0,,1669,,, +1584,G,en,BBC R Nottingham,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0700-0100,.....6.,0,,1669,,, +1584,G,en,BBC R Nottingham,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0700-2400,......7,0,,1669,,, +1584,E,es,SER,,Ourense (GAL-OU),42.373528,-7.916436,,5,,1525,230,65,,0000-2400,1234567,,,1667,,, +1584,IRL,en,Zenith Classic Rock,,Waterford (WD),52.233333,-7.166667,,1,,925,276,66,,0000-2400,....567,,,4100025,,, +1584,POL,pl,Twoje R Andrychw,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,0600-0700,1234567,,,6400007,,, +1584,POL,pl,Twoje R Andrychw,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1000-1100,1234567,,,6400007,,, +1584,POL,pl,Twoje R Andrychw,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1500-1600,1234567,,,6400007,,, +1584,POL,pl,Twoje R Andrychw,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1900-2000,1234567,,,6400007,,, +1584,POL,pl,Twoje R,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,0700-1000,1234567,,,6400007,,, +1584,POL,pl,Twoje R,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1100-1500,1234567,,,6400007,,, +1584,POL,pl,Twoje R,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1600-1900,1234567,,,6400007,,, +1584,POL,pl,Twoje R,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,2000-0600,1234567,,,6400007,,, +1584,BIH,,R Bosanski Petrovac,,Bosanski Petrovac (usk),44.566667,16.366667,,1,,1114,135,68,,,,,,46829,,, +1584,G,en,BBC R 5 Live,,Woofferton (EN-SHP),52.318111,-2.718278,,0.3,,622,276,68,,0000-0600,1234567,0,,1670,,, +1584,G,en,BBC R Hereford & Worcester,,Woofferton (EN-SHP),52.318111,-2.718278,,0.3,,622,276,68,,0600-2400,1234567,0,,1670,,, +1584,G,tr,London Turkish R,,East London/Lea Bridge Road (EN-GTL),51.561944,-0.038611,,0.2,,447,265,68,,0000-2400,1234567,,,1672,,, +1584,E,es,SER,,Ganda/Rafalcaid (VAL-V),38.974469,-0.163639,,2,,1546,202,69,,0000-2400,1234567,995,,1666,,, +1584,ROU,ro,R Vocea Speranţei,,Snnicolau Mare (TM),46.083333,20.633333,,1,,1230,117,69,,0000-2400,1234567,,,1914,,, +1584,E,es,Rl,,Ceuta (CEU-CE),35.897778,-5.291667,,5,,2025,212,70,,0000-2400,1234567,,,1664,,, +1584,POL,pl,R AM,,Busko-Zdrj/Komin KZC Ponidzie (SK),50.4675,20.735556,,0.5,,1011,95,70,,0000-2400,1234567,,,6400012,,, +1584,ROU,ro,R Vocea Speranţei,,Sighetu Marmaţiei (MM),47.933333,23.891667,,1,,1328,104,70,,0000-2400,1234567,,,1915,,, +1584,ROU,ro,R Vocea Speranţei,,Zalău (SJ),47.19575,23.040356,,1,,1312,108,70,,0000-2400,1234567,,,6600006,,, +1584,FIN,fi,R Hami,,Ryskl (kh),60.749444,24.120556,,1,,1444,41,71,,0500-2100,9999999,,,2600005,,, +1584,SRB,,R Prijepolje,,Prijepolje (Srb-zlb),43.4,19.65,,1,,1381,129,71,,,,,,1689,,, +1584,G,en,R Tay,,Perth/Friarton Road (SC-PEK),56.375833,-3.4275,,0.21,,795,311,72,,0000-2400,1234567,0,,1671,,, +1584,ROU,ro,R Vocea Speranţei,,Craiova (DJ),44.333333,23.816667,,1,,1546,117,72,,0000-2400,1234567,,,1899,,, +1584,ROU,ro,R Vocea Speranţei,,Făgăraş (BV),45.845222,24.958631,,1,,1516,110,72,,0000-2400,1234567,,,1901,,, +1584,ROU,ro,R Vocea Speranţei,,Suceava (SV),47.633333,26.25,,1,,1501,101,72,,0000-2400,1234567,,,1916,,, +1584,ROU,ro,R Vocea Speranţei,,Vatra Dornei (SV),47.35,25.366667,,1,,1456,104,72,,0000-2400,1234567,,,1911,,, +1584,POL,pl,R AM,,Słupsk/Komin ZPZ Stolon (PM),54.474444,17.019722,,0.1,,752,65,74,,,,,,6400034,,, +1584,ROU,,R Sud,,Giurgiu (GR),43.9,25.966667,,1,,1709,115,74,,,,,,52650,,, +1584,ROU,ro,R Vocea Speranţei,,Tecuci (GL),45.841667,27.427778,,1,,1677,106,74,,0000-2400,1234567,,,6600005,,, +1584,I,it,R Verona,,Verona (vr),45.45,11,,0.1,,813,154,75,,????-????,9999999,,,4000002,,, +1584,GRC,el,RSA 92,7,,Kastro (wgr-ili),37.888364,21.166372,,1,,1953,138,77,,0000-2400,1234567,9936,,1674,, +1584,IRN,fa,IRIB R Iran,,Biarjmand (smn),36.087889,55.805911,,50,,4227,95,82,,2230-0230,1234567,996,,1827,,, +1584,IRN,fa,IRIB R Semnan,,Biarjmand (smn),36.087889,55.805911,,50,,4227,95,82,,0230-2230,1234567,996,,1827,,, +1584,EGY,ar,ERTU Al-Barnameg al-Aam,,Edfu=Idfu (asn),24.993597,32.908778,,10,,3751,133,85,,0300-2300,1234567,,,1668,,, +1584,RUS,ru,R MTUCI,,Moskva/MTUCI (MV),55.755222,37.712333,,0.1,,2070,66,88,,0500-1500,1234567,,,6700142,,, +1584,EGY,ar,ERTU R Al-Wadi al-Gaded,,Baris (wjd),24.666,30.602111,,1,,3672,137,94,,0400-2200,1234567,,,1858,,, +1584,AFG,,R Balkh,,Mazar-e Sharif (bal),36.666667,67.133333,,10,,4958,85,97,,0230-0430,1234.67,,,46820,,, +1584,AFG,,R Balkh,,Mazar-e Sharif (bal),36.666667,67.133333,,10,,4958,85,97,,0230-0730,....5..,,,46820,,, +1584,AFG,,R Balkh,,Mazar-e Sharif (bal),36.666667,67.133333,,10,,4958,85,97,,1230-1530,1234567,,,46820,,, +1584,SDN,ar,SRTC Sudan Nat. R,,Kosti (wnl),13.166667,32.666667,,5,,4923,142,99,,,,,,9400013,,, +1584,AFG,,R Nimroz,,Zaranj (nim),30.961111,61.858333,,2,,5026,95,104,,1230-1430,1234.67,,,51333,,, +1584,AFG,,R Nimroz,,Zaranj (nim),30.961111,61.858333,,2,,5026,95,104,,1230-1930,....5..,,,51333,,, +1584,BHR,en,R Bahrain FM,,Al-Manamah (mnh),26.216667,50.583333,,1,,4664,111,104,,0300-2100,1234567,,,1662,,, +1584,AFG,,R Ghor,,Chaghcharan (gho),34.519444,65.255556,,0.5,,4987,89,110,,,,,,11000006,,, +1584,IND,,AIR North,,Kargil B (JK),34.539928,76.138106,,1,,5725,81,114,,1130-1630,1234567,,,51359,,, +1584,IND,,AIR North/Vividh Bharati,,Padam (JK),33.475678,76.872925,,1,,5855,81,116,,0025-0430,1234567,,,32200002,,, +1584,IND,,AIR North/Vividh Bharati,,Padam (JK),33.475678,76.872925,,1,,5855,81,116,,0700-0930,1234567,,,32200002,,, +1584,IND,,AIR North/Vividh Bharati,,Padam (JK),33.475678,76.872925,,1,,5855,81,116,,1200-1740,1234567,,,32200002,,, +1584,PAK,,PBC R Pakistan,,Chitral (kpk),35.845833,71.784722,,0.25,,5333,83,116,,1045-1530,1234567,,,51393,,, +1584,IND,,AIR North,,Kalpa (HP),31.5,78.166667,,1,,6095,82,118,,0100-0430,1234567,,,51358,,, +1584,IND,,AIR North,,Kalpa (HP),31.5,78.166667,,1,,6095,82,118,,0700-0930,1234567,,,51358,,, +1584,IND,,AIR North,,Kalpa (HP),31.5,78.166667,,1,,6095,82,118,,1100-1740,1234567,,,51358,,, +1584,PAK,,NBS News,,Turbat (blc),26.007,63.064389,,0.25,,5504,99,118,,0200-0400,1234567,,,51395,,, +1584,PAK,,PBC R Pakistan,,Sibbi (blc),29.55,67.883333,,0.25,,5547,92,118,,0755-1108,1234567,,,51394,,, +1584,PAK,,PBC R Pakistan/NBS News,,Turbat (blc),26.007,63.064389,,0.25,,5504,99,118,,1300-1810,1234567,,,51395,,, +1584,RUS,xx,R Rossii,,Taksimo (BU),56.35,114.916667,,1,,6305,39,120,,2057-1700,1234567,,,47001,,, +1584,IND,,AIR North,,Kota (RJ),25.186,75.858544,,1,,6442,89,121,,0025-0400,1234567,,,32200051,,, +1584,IND,,AIR North,,Kota (RJ),25.186,75.858544,,1,,6442,89,121,,1130-1740,1234567,,,32200051,,, +1584,IND,,AIR North/Vividh Bharati,,Mathura/Brindavan (UP),27.51615,77.674439,,1,,6377,86,121,,0025-0430,1234567,,,51363,,, +1584,IND,,AIR North/Vividh Bharati,,Mathura/Brindavan (UP),27.51615,77.674439,,1,,6377,86,121,,0700-0930,1234567,,,51363,,, +1584,IND,,AIR North/Vividh Bharati,,Mathura/Brindavan (UP),27.51615,77.674439,,1,,6377,86,121,,1130-1740,......7,,,51363,,, +1584,IND,,AIR North/Vividh Bharati,,Mathura/Brindavan (UP),27.51615,77.674439,,1,,6377,86,121,,1200-1740,123456,,,51363,,, +1584,IND,,AIR West,,Himmat Nagar (GJ),23.608011,72.977892,,1,,6375,93,121,,0025-0430,1234567,,,52629,,, +1584,IND,,AIR West,,Himmat Nagar (GJ),23.608011,72.977892,,1,,6375,93,121,,0630-0930,1234567,,,52629,,, +1584,IND,,AIR West,,Himmat Nagar (GJ),23.608011,72.977892,,1,,6375,93,121,,1200-1740,1234567,,,52629,,, +1584,CHN,,Changzhi RGD,,Changzhi (SX),36.166667,113.1,,10,,7910,55,126,,????-1505,1234567,,,51343,,, +1584,RUS,ru,R Rossii,,Belaya Gora (RS),68.533333,146.416667,,0.2,,6203,17,126,,1900-1500,1234567,,,47002,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,0025-0400,123456,,,51357,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,0025-1200,......7,,,51357,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,0700-1000,123456,,,51357,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,1130-1740,123456,,,51357,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,1245-1740,......7,,,51357,,, +1584,IND,,AIR East,,Keonjhar (OR),21.648275,85.624767,,1,,7400,84,131,,0025-0430,1234567,,,51361,,, +1584,IND,,AIR East,,Keonjhar (OR),21.648275,85.624767,,1,,7400,84,131,,0630-1130,1234567,,,51361,,, +1584,IND,,AIR East,,Keonjhar (OR),21.648275,85.624767,,1,,7400,84,131,,1200-1630,1234567,,,51361,,, +1584,IND,,AIR South,,Kavaratti (Lakshadweep) (LD),10.566667,72.641667,,1,,7469,103,132,,0110-0415,123456,,,51360,,, +1584,IND,,AIR South,,Kavaratti (Lakshadweep) (LD),10.566667,72.641667,,1,,7469,103,132,,0300-0415,......7,,,51360,,, +1584,IND,,AIR South,,Kavaratti (Lakshadweep) (LD),10.566667,72.641667,,1,,7469,103,132,,0630-0930,1234567,,,51360,,, +1584,IND,,AIR South,,Kavaratti (Lakshadweep) (LD),10.566667,72.641667,,1,,7469,103,132,,1130-1500,1234567,,,51360,,, +1584,IND,,AIR Northeast,,Diphu (AS),25.840689,93.454933,,1,,7576,76,133,,0025-0430,1234567,,,51027,,, +1584,IND,,AIR Northeast,,Diphu (AS),25.840689,93.454933,,1,,7576,76,133,,1000-1600,1234567,,,51027,,, +1584,IND,,AIR Northeast,,Mon (NL),26.716667,95.033333,,1,,7607,74,133,,0000-0500,1234567,,,51364,,, +1584,IND,,AIR Northeast,,Mon (NL),26.716667,95.033333,,1,,7607,74,133,,0700-0900,1234567,,,51364,,, +1584,IND,,AIR Northeast,,Mon (NL),26.716667,95.033333,,1,,7607,74,133,,1000-1630,1234567,,,51364,,, +1584,CHN,,Chengde RGD,,Chengde/HBTS1084 (HB),40.966667,117.933333,,1,,7748,49,134,,,,,,51344,,, +1584,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Tongliao (NM),43.666667,122.216667,,1,,7719,44,134,,0955-1700,1234567,,,51347,,, +1584,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Tongliao (NM),43.666667,122.216667,,1,,7719,44,134,,2215-0800,1234567,,,51347,,, +1584,RUS,ru,R Rossii,,Klyuchi/RV620 (KM),56.304428,160.869758,,1,,7735,15,134,,1700-1300,1234567,,,46996,,, +1584,CHN,,Jinzhong RGD,,Jinzhong (SX),37.683333,112.733333,,1,,7758,54,135,,,,,,51348,,, +1584,CHN,,Meihekou RGD,,Meihekou/Hesheng Cun (JL),42.533333,125.683333,,1,,7985,43,137,,,,,,51350,,, +1584,CHN,,Suizhou RGD,,Suizhou (HU),31.716667,113.366667,,1,,8315,57,140,,,,,,36200685,,, +1584,CHN,,Zunyi RGD,,Zunyi/GZTS691 (GZ),27.533333,106.833333,,1,,8290,65,140,,,,,,51356,,, +1584,PHL,,DYAY-AM,,Minglanilla (ceb),10.25,123.783333,,10,,10886,62,140,,,,,,51396,,, +1584,CHN,,Anqing RGD,,Anqing (AH),30.516667,117.05,,1,,8632,56,142,,,,,,51341,,, +1584,CHN,,Ma'anshan RGD,,Ma'anshan (AH),31.680722,118.53,,1,,8610,54,142,,2150-1500,1234567,,,51349,,, +1584,KOR,,HLDK KBS 1 R,,Danyang (ccb),36.976667,128.363889,,1,,8627,44,142,,0000-2400,1234567,,,51389,,, +1584,CHN,,Yingtan RGD,,Yingtan (JX),28.233333,117,,1,,8835,57,143,,,,,,51353,,, +1584,KOR,,HLQZ KBS 1 R,,Geumsan (ccg),36.096944,127.502778,,1,,8668,45,143,,0000-2400,1234567,,,51390,,, +1584,KOR,,KBS 1 R,,Sancheong (gsn),35.42,127.881389,,1,,8750,45,143,,0000-2400,1234567,,,51391,,, +1584,CHN,,Rui'an RGD,,Rui'an (ZJ),27.783333,120.633333,,1,,9081,55,144,,,,,,51351,,, +1584,PLW,,T8AA Voice of Palau,,Koror/Malakal Island (kor),7.331667,134.453056,,5,,11780,54,146,,1900-1300,1234567,62,,51398,,, +1584,PHL,tl,DWBR-AM Radyo Batay,,Talavera (nve),13,122,,1,,10524,62,149,,????-1005,1234567,9,,51397,,, +1584,INS,id,R Suara Kemang,,Jakarta/Bungur (JK-kju),-6.166667,106.855556,,1,,11261,86,151,,,,,,35400098,,, +1584,J,,NHK R 1,,Shinkitami (hok),43.8,143.866667,,0.1,,8597,30,152,,0000-2400,1234567,,,51383,,, +1584,J,,JOQG NHK1,,Fukaura (toh-aom),40.65,139.933333,,0.1,,8769,34,153,,0000-2400,1234567,,,51370,,, +1584,J,,NHK R 1,,Hiroo (hok),42.3,143.316667,,0.1,,8728,31,153,,0000-2400,1234567,,,51371,,, +1584,J,,NHK R 1,,Nemuro (hok),43.333333,145.6,,0.1,,8702,29,153,,0000-2400,1234567,,,51378,,, +1584,J,,NHK R 1,,Yuzawa (toh-aki),39.15,140.483333,,0.1,,8939,34,153,,0000-2400,1234567,,,51388,,, +1584,HKG,en,RTHK R 3,,Chung Hom Kok (sou),22.213611,114.205056,,0.1,,9212,63,154,,0000-2400,1234567,,,51619,,, +1584,J,,JOBG NHK1,,Shimabara (kyu-nag),32.783333,130.383333,,0.1,,9120,45,154,,0000-2400,1234567,,,51382,,, +1584,J,,NHK R 1,,Atsumi (toh-yam),38.616667,139.583333,,0.1,,8957,35,154,,0000-2400,1234567,,,51368,,, +1584,J,,NHK R 1,,Fujiyoshida (chu-yam),35.5,138.816667,,0.1,,9234,37,154,,0000-2400,1234567,,,51369,,, +1584,J,,NHK R 1,,Karatsu (kyu-sag),33.45,130,,0.1,,9039,45,154,,0000-2400,1234567,,,51372,,, +1584,J,,NHK R 1,,Kasumi (kns-hyo),35.633333,134.633333,,0.1,,9042,40,154,,0000-2400,1234567,,,51373,,, +1584,J,,NHK R 1,,Katsuyama (chu-fuk),36.016667,136.533333,,0.1,,9087,39,154,,0000-2400,1234567,,,51374,,, +1584,J,,NHK R 1,,Mikata (chu-fuk),35.566667,135.9,,0.1,,9104,39,154,,0000-2400,1234567,,,51375,,, +1584,J,,NHK R 1,,Misakubo (chu-shi),35.166667,137.866667,,0.1,,9227,38,154,,,,,,51376,,, +1584,J,,NHK R 1,,Mugi (shi-tok),33.666667,134.416667,,0.1,,9223,41,154,,0000-2400,1234567,,,51377,,, +1584,J,,NHK R 1,,Okayasuwa (chu-nag),36.05,138.066667,,0.1,,9149,38,154,,0000-2400,1234567,,,51379,,, +1584,J,,NHK R 1,,Okuwa (chu-nag),35.675,137.6375,,0.1,,9168,38,154,,0000-2400,1234567,,,51380,,, +1584,J,,NHK R 1,,Osaka (kns-osk),34.55,135.566667,,0.1,,9189,40,154,,0000-2400,1234567,,,51381,,, +1584,J,,NHK R 1,,Tadami (toh-fuk),37.3,139.366667,,0.1,,9078,36,154,,0000-2400,1234567,,,51385,,, +1584,J,,NHK R 1,,Takachiho (chu-gif),32.7,131.3,,0.1,,9172,44,154,,0000-2400,1234567,,,51386,,, +1584,J,,NHK R 1,,Wajima (chu-ish),37.366667,136.916667,,0.1,,8971,38,154,,0000-2400,1234567,,,51387,,, +1584,J,ja,NHK R 1,,Hikimi,34.5,134,,0.1,,9124,41,154,,,,,,31400117,,, +1584,J,ja,NHK R 1,,Hino,34.5,134,,0.1,,9124,41,154,,,,,,31400123,,, +1584,J,ja,NHK R 1,,Hokubo,34.5,134,,0.1,,9124,41,154,,,,,,31400122,,, +1584,J,ja,NHK R 1,,Kannoji,34.5,134,,0.1,,9124,41,154,,,,,,31400121,,, +1584,J,ja,NHK R 1,,Miyoshi (chg-hir),34.8,132.85,,0.1,,9043,42,154,,,,,,31400118,,, +1584,J,ja,NHK R 1,,Oguni (toh-yam),38.066667,139.75,,0.1,,9018,35,154,,,,,,31400116,,, +1584,J,ja,NHK R 1,,Tosashimizu (shi-koc),32.75,132.95,,0.1,,9245,43,154,,,,,,31400119,,, +1584,J,ja,NHK R 1,,Uwa,34.5,134,,0.1,,9124,41,154,,,,,,31400120,,, +1584,AUS,,4CC/t Zinc 1584,,Rockhampton/Pink Lily (QLD),-23.353056,150.462778,,0.5,,15600,58,168,,0000-2400,1234567,14,,51336,,, +1584,AUS,,4VL/t,,Cunnamulla (QLD),-28.111806,145.691931,,0.2,,15732,68,173,,,,,,51334,,, +1584,AUS,,5WM ABC North & West SA,,Woomera (SA),-31.201667,136.825556,,0.1,,15405,80,175,,0000-2400,1234567,,,51339,,, +1584,AUS,,2EC/t,,Narooma/Beach (NSW),-36.228333,150.138333,,0.2,,16677,73,176,,0000-2400,1234567,,,51335,,, +1584,AUS,,2WA ABC Broken Hill,,Wilcannia (NSW),-31.552778,143.379722,,0.1,,15868,74,176,,0000-2400,1234567,,,51338,,, +1584,NZL,,2ZF R Classic Hits,,Picton (MBH),-41.285833,174.015,,0.4,,18489,43,179,,,,,,51392,,, +1584,AUS,,7SH ABC National,,St. Helens (TAS),-41.333753,148.287033,,0.1,,16916,83,180,,0000-2400,1234567,,,51337,,, +1590,USA,,WARV,,Warwick (RI),41.727778,-71.462778,,5,,5734,291,107,,0000-2400,1234567,0,,40745,,, +1590,USA,,WSMN,,Nashua (NH),42.744444,-71.497778,,5,,5664,292,107,,0000-2400,1234567,999,,43029,,, +1590,TUR,en,AFN,,Incirlik/Air Base (akd-ada),37,35.433333,,0.005,,2817,115,108,,0000-2400,1234567,,,1704,,, +1590,USA,,WAKR,,Akron (OH),41.020556,-81.505556,,5,,6412,297,114,,,,4,,40689,,, +1590,USA,,WASB,,Brockport (NY),43.195556,-77.951389,,1,,6033,297,117,,,,,,40746,,, +1590,USA,,WAUB,,Auburn (NY),42.909444,-76.6025,,1,,5971,296,117,,,,9995,,40767,,, +1590,USA,,WNTS,,Beech Grove (D) (IN),39.739167,-86.091389,,5,,6789,299,118,,,,,,20016044,,, +1590,USA,,WPWA,,Chester (PA),39.8775,-75.456389,,1,,6123,292,118,,,,,,42754,,, +1590,USA,,WFBR,,Glen Burnie (MD),39.176667,-76.622222,,1,,6249,292,119,,,,,,41926,,, +1590,USA,,WCGO,,Evanston (IL),42.022222,-87.711944,,2.5,,6705,301,120,,,,1,,42610,,, +1590,USA,,WQCH,,Lafayette (GA),34.715833,-85.268333,,5,,7143,294,121,,,,,,42767,,, +1590,USA,,WTVB,,Coldwater (MI),41.909444,-85.005833,,1,,6554,300,123,,,,,,43232,,, +1590,USA,en,KGFK,,East Grand Forks (MN),47.878056,-97.006667,,1,,6747,312,124,,0000-2400,1234567,,,38185,,, +1590,USA,,WGBW,,Denmark (WI),44.313889,-87.787778,,0.5,,6530,303,125,,0000-2400,1234567,,,43209,,, +1590,USA,,WVOE,,Chadbourn (NC),34.351389,-78.843889,,1,,6765,290,125,,,,,,43325,,, +1590,USA,en,WIJK,,Ocean City (MD),38.404444,-75.126944,,0.23,,6212,291,125,,,,,,20016031,,, +1590,USA,,KVGB,,Great Bend (KS),38.313889,-98.793056,,5,,7641,306,126,,,,998,,39624,,, +1590,VEN,,YVUD R Deporte 15-90,,Caracas (dcf),10.5,-66.916667,,10,,7952,263,127,,0000-2400,1234567,998,,51715,,, +1590,USA,,WNTS,,Beech Grove (N) (IN),39.739167,-86.090556,,0.5,,6789,299,128,,,,,,42524,,, +1590,USA,,WPVL,,Platteville (WI),42.746111,-90.474444,,0.5,,6806,304,128,,,,,,42753,,, +1590,USA,en,KLFE,,Seattle (WA),47.655278,-122.518333,,5,,7910,326,129,,,,995,,38805,,, +1590,PTR,es,WXRF,,Guayama (PR),17.961111,-66.138889,,1,,7256,268,130,,0000-2400,1234567,,,43489,,, +1590,USA,,WALG,,Albany (GA),31.621944,-84.1525,,1,,7326,291,130,,,,,,40694,,, +1590,USA,,WHLX,,Marine City (MI),42.728333,-82.520833,,0.102,,6344,299,130,,,,1,,41661,,, +1590,USA,,WVNA,,Tuscumbia (AL),34.756667,-87.686111,,1,,7289,296,130,,,,993,,43314,,, +1590,USA,,KWBG,,Boone (IA),42.022778,-93.876667,,0.5,,7056,305,131,,,,664,,39692,,, +1590,B,pt,Rdio Veneza AM,,Eusbio (CE),-3.898817,-38.438836,,1,,7519,230,132,,,,,,36902876,,, +1590,USA,,KDEX,,Dexter (MO),36.788889,-89.907778,,0.62,,7257,299,132,,,,,,38253,,, +1590,USA,,KMIC,,Houston (TX),29.843889,-95.4475,,5,,8178,298,132,,,,,,38904,,, +1590,USA,,WHGT,,Chambersburg (PA),39.806389,-77.779167,,0.058,,6274,293,132,,0000-2400,1234567,0,,40953,,, +1590,USA,en,WRXB,,St. Petersburg Beach (FL),27.734167,-82.685556,,1,,7553,287,133,,,,,,42939,,, +1590,B,pt,ZYL369 Rdio Guaicu,,Vrzea da Palma (MG),-17.616556,-44.722556,,10,,9187,228,134,,,,,,36902737,,, +1590,B,pt,ZYI703 Rdio Correio do Vale,,Itaporanga (PB),-7.310389,-38.136875,,1,,7840,228,135,,,,5,,36902729,,, +1590,MEX,es,XEVOZ-AM La Mexicana,,Los Reyes Acaquilpan (mex),19.360667,-98.992717,,10,,9320,294,135,,,,0,,44981,,, +1590,USA,,KQLO,,Sun Valley (NV),39.415833,-119.714167,,5,,8585,320,135,,,,9966,,39196,,, +1590,USA,,WIXK,,New Richmond (WI),45.086111,-92.571944,,0.095,,6736,307,135,,0000-2400,1234567,,,41825,,, +1590,USA,,WPSN,,Honesdale (PA),41.553611,-75.255,,0.015,,5986,293,135,,,,,,42739,,, +1590,CLM,es,HJIP BBN,,Envigado (ant),6.166667,-75.566667,,5,,8919,267,136,,,,0,,2163,,, +1590,CLM,es,HJWB,,Socorro (sat),6.466667,-73.266667,,5,,8736,266,136,,,,,,35902672,,, +1590,USA,,KDJS,,Willmar (MN),45.085278,-95.005278,,0.089,,6868,308,136,,,,,,38272,,, +1590,USA,,KLIV,,San Jose (CA),37.329167,-121.856389,,5,,8880,321,136,,,,4,,38819,,, +1590,DOM,,HIAC R Libertad,,Santiago de los Caballeros (sto),19.45,-70.7,,0.25,,7441,272,137,,0000-2400,1234567,,,52255,,, +1590,USA,,WGGO,,Salamanca (NY),42.173333,-78.685278,,0.014,,6153,296,137,,,,,,41510,,, +1590,USA,en,KVTA,,Ventura (CA),34.236944,-119.2025,,5,,9059,317,137,,,,980,,38769,,, +1590,USA,en,WQEP918,,Trenton (NJ),40.216667,-74.75,,0.01,,6053,292,137,,,,,,20010757,,, +1590,USA,en,WQEP918,,Trenton (NJ),40.216667,-74.75,,0.01,,6053,292,137,,,,,,20010758,,, +1590,USA,en,WQEP918,,Trenton (NJ),40.216667,-74.75,,0.01,,6053,292,137,,,,,,20010760,,, +1590,B,pt,Rdio Bom Jesus,,Camocim (CE),-2.9,-40.833333,,0.25,,7548,232,138,,,,,,36902735,,, +1590,USA,,WFTH,,Richmond (VA),37.500556,-77.457778,,0.019,,6430,291,138,,,,,,41445,,, +1590,USA,,KDAV,,Lubbock (TX),33.520833,-101.774167,,1,,8226,305,139,,,,,,38238,,, +1590,USA,,KTIL,,Tillamook (OR),45.456944,-123.871944,,1,,8173,326,139,,,,,,38883,,, +1590,USA,,WAIK,,Galesburg (IL),40.961944,-90.308333,,0.055,,6940,302,139,,,,,,40674,,, +1590,USA,,WHPY,,Clayton (NC),35.646944,-78.505833,,0.025,,6641,290,139,,,,,,41684,,, +1590,USA,,KMOZ,,Rolla (MO),37.944444,-91.811667,,0.085,,7274,301,140,,,,,,38924,,, +1590,USA,,WSRW,,Hillsboro (OH),39.166111,-83.606944,,0.025,,6684,297,140,,,,,,43066,,, +1590,B,pt,R Restauraco,,Bezerros (PE),-8.309444,-35.8475,,0.25,,7826,225,141,,,,997,,36902724,,, +1590,CTR,,TILGJ Rado 16,,Grecia (alj),10.066667,-84.316667,,2,,9175,277,141,,1100-0400,1234567,,,52171,,, +1590,USA,,WBHN,,Bryson City (NC),35.428056,-83.438333,,0.037,,6971,294,141,,,,,,40852,,, +1590,USA,en,WCSL,,Cherryville (NC),35.374167,-81.404444,,0.03,,6847,292,141,,,,14,,41085,,, +1590,PRU,,OAZ4Z R Agricultura,,Lima (lim),-12.05,-77.05,,5,,10622,257,142,,,,,,2185,,, +1590,USA,,KTCH,,Wayne (NE),42.234444,-97.055278,,0.047,,7214,307,142,,,,,,39461,,, +1590,USA,,WCAM,,Camden (SC),34.223889,-80.678611,,0.027,,6893,291,142,,,,,,40944,,, +1590,USA,,WRCY,,Mt. Vernon (IN),37.934167,-87.928333,,0.035,,7044,298,142,,,,,,42825,,, +1590,USA,en,WKTP,,Jonesborough (TN),36.331667,-82.474167,,0.023,,6838,294,142,,,,,,42077,,, +1590,USA,en,WLBN,,Lebanon (KY),37.598611,-85.246389,,0.024,,6909,296,142,,,,,,42136,,, +1590,USA,,KELP,,El Paso (TX),31.743889,-106.395833,,0.8,,8642,307,143,,,,,,38326,,, +1590,USA,,WABV,,Abbeville (SC),34.150833,-82.392778,,0.027,,7008,292,143,,,,,,40635,,, +1590,USA,,WDBL,,Springfield (TN),36.495,-86.906111,,0.03,,7099,297,143,,,,,,41128,,, +1590,USA,,WYSR,,High Point (NC),35.984444,-80.068889,,0.014,,6714,292,143,,,,,,43551,,, +1590,USA,en,WPSL,,Port St. Lucie (FL),27.307778,-80.307222,,0.063,,7432,285,143,,,,,,42738,,, +1590,USA,en,WPSL698,,Delaware (OH),40.3,-83.066667,,0.01,,6563,297,143,,,,,,20010756,,, +1590,CLM,,HJJQ,,Zarzal (val),4.2,-76.066667,,1,,9126,267,144,,,,,,37513,,, +1590,CLM,es,HJQM Ecos de la Miel,,Samana (cal),5.416667,-76,,1,,9014,267,144,,,,,,2074,,, +1590,GTM,,TGXC R Triunfadora,,Chimaltenango (cmt),14.566667,-90.816667,,1,,9217,285,144,,,,,,40557,,, +1590,MEX,es,XEHC-AM R Baha,,Ensenada/Indeco Lomitas (bcn),31.889061,-116.579725,,1,,9158,314,144,,,,,,44102,,, +1590,USA,,KPRT,,Kansas City (MO),39.068056,-94.536111,,0.047,,7338,303,144,,,,,,39165,,, +1590,USA,,KDAE,,Sinton (TX),28.021111,-97.470556,,0.5,,8459,298,145,,,,,,38233,,, +1590,USA,,KGAS,,Carthage (TX),32.153333,-94.314444,,0.128,,7911,298,145,,,,,,38458,,, +1590,USA,,WPUL,,South Daytona (FL),29.154444,-81.022222,,0.032,,7327,287,145,,,,,,42751,,, +1590,USA,,WTGA,,Thomaston (GA),32.895833,-84.302778,,0.025,,7231,292,145,,,,,,43130,,, +1590,USA,en,WXRS,,Swainsboro (GA),32.556944,-82.341389,,0.023,,7133,291,145,,,,,,43493,,, +1590,EQA,,HCGG6,,La Mana (cot),-0.916667,-79.25,,1,,9792,266,146,,,,,,36955,,, +1590,EQA,,HCOT6 R Panamericana,,Quero (tun),-1.35,-78.566667,,1,,9783,265,146,,,,,,37053,,, +1590,EQA,,HCRZ1 R Mensaje,,Cajambe (pic),-0.05,-78.216667,,1,,9645,266,146,,,,,,37125,,, +1590,USA,,KYNG,,Springdale (AR),36.206944,-94.119167,,0.05,,7554,301,146,,,,,,39906,,, +1590,B,pt,Rdio Vale do Jiquiri,,Jiquiri (BA),-13.266111,-39.575556,,0.25,,8501,226,148,,,,,,36902727,,, +1590,BOL,,R Globo,,La Guardia (scz),-17.9,-63.333333,,1,,10264,243,148,,,,,,52079,,, +1590,USA,,KKAY,,White Castle (LA),30.183611,-91.1075,,0.067,,7883,295,148,,,,,,38707,,, +1590,USA,en,KBJT,,Fordyce (AR),33.802778,-92.436111,,0.035,,7657,298,148,,,,,,38046,,, +1590,BOL,,R Kollasuyo Marka,,Tiwanacu=Tiawanaku (lpz),-16.55,-68.7,,1,,10476,248,149,,,,432,,52077,,, +1590,MEX,es,XEBZ-AM Extasis,,Ciudad Delicias (chi),28.190567,-105.449164,,0.25,,8911,304,149,,,,,,43802,,, +1590,PRU,,OCX6S R Mundo,,Arequipa/Cerro Colorado (are),-16.4,-71.533333,,1,,10644,251,149,,,,,,2162,,, +1590,PRU,,R Huaynaroque,,Juliaca (pun),-15.816667,-70.016667,,1,,10495,250,149,,,,,,52412,,, +1590,B,pt,ZYK774 Rdio Japi,,Cabreva/Av So Paulo 100 (SP),-23.247542,-47.067275,,0.5,,9853,228,150,,,,,,36902738,,, +1590,CHL,,CD159 Em. Tepual,,Llanquihue (LL),-41.25,-73.016667,,5,,12879,235,150,,,,,,51959,,, +1590,EQA,,HCAS2,,Libertad (gua),-2.216667,-80.866667,,0.5,,10016,266,150,,,,,,36852,,, +1590,USA,,KLRK,,Mexia (TX),31.62,-96.751667,,0.065,,8102,300,150,,,,,,39288,,, +1590,B,pt,Rdio Sim Tupi r:Tupi 1280,,Cachoeiro de Itapemirim (ES),-20.85,-41.1,,0.25,,9326,224,151,,,,982,,36902725,,, +1590,B,pt,ZYL368 Rdio Cidade Carinho,,Ub (MG),-21.100278,-42.930556,,0.25,,9438,225,151,,,,,,36902736,,, +1590,USA,,KWEY,,Weatherford (OK),35.559167,-98.719722,,0.032,,7875,304,151,,,,,,39704,,, +1590,ARG,,R Stentor,,Buenos Aires (df),-34.605556,-58.375,,1,,11505,230,152,,,,,,33000054,,, +1590,ARG,es,AM 1590 Sin Fronteras,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000090,,, +1590,ARG,es,R Guaviyu,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,51914,,, +1590,ARG,es,R Voz,,Lomas de Zamora (ba),-34.766667,-58.4,,1,,11521,230,152,,,,,,51913,,, +1590,B,pt,ZYN207 Rdio Globo,,Lambari (MG),-21.973736,-45.335769,,0.25,,9642,227,152,,,,96,,36902726,,, +1590,BOL,,R Producciones Pusisuyu,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,0000-0400,123456,43,,52078,,, +1590,BOL,,R Producciones Pusisuyu,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,1000-1300,123456,43,,52078,,, +1590,BOL,,R Producciones Pusisuyu,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,1200-1300,......7,43,,52078,,, +1590,URG,,CX159 R Real,,Colonia (co),-34.45,-57.766667,,1,,11459,230,152,,0930-0300,1234567,,,36802,,, +1590,USA,en,WPWL619,,Pensacola (FL),31.527678,-87.327683,,0.01,,7534,293,152,,,,,,20010763,,, +1590,USA,es,KVTR,,Victorville (CA),34.5375,-117.311667,,0.131,,8941,316,152,,,,,,39298,,, +1590,B,,ZYJ316,,Faxinal (PR),-23.966667,-51.316667,,0.25,,10141,231,153,,,,,,46038,,, +1590,B,pt,ZYJ290 Rdio Cultura,,Andir/Fazenda So Gabriel (PR),-23.043056,-50.240833,,0.25,,9996,230,153,,,,,,36902732,,, +1590,USA,en,WQFS211,,Pinecrest (FL),25.660978,-80.327306,,0.01,,7570,284,153,,,,,,20010759,,, +1590,B,,ZYJ224,,Araucria (PR),-25.566667,-49.383333,,0.25,,10193,228,154,,,,,,45950,,, +1590,B,,ZYJ799,,Ponte Serrada (SC),-26.866667,-51.966667,,0.25,,10450,230,154,,,,,,46209,,, +1590,B,pt,ZYI403 Eldorado AM,,Eldorado (MS),-23.787292,-54.29305,,0.25,,10284,233,154,,,,,,36902739,,, +1590,B,pt,ZYJ296 Rdio Hava,,Capito Lenidas Marques (PR),-25.441111,-53.596389,,0.25,,10401,232,154,,,,,,36902733,,, +1590,B,pt,ZYJ823 Rdio Clube de Joinville,,Joinville (SC),-26.275833,-48.776944,,0.25,,10230,227,154,,,,99,,36902723,,, +1590,BOL,,CP118,,Viacha (lpz),-16.666667,-66.283333,,0.25,,10335,246,154,,,,,,36633,,, +1590,CHL,,CB159 R Aconcagua,,San Felipe (VS),-32.766667,-70.716667,,1,,12029,240,154,,1100-0430,1234567,,,35749,,, +1590,URG,,CX159A,,Paso de los Toros (ta),-32.766667,-56.466667,,0.5,,11236,230,154,,,,,,36803,,, +1590,B,pt,ZYK281 Rdio Navegantes,,Porto Lucena (RS),-27.85,-55.016667,,0.25,,10703,231,155,,,,,,46310,,, +1590,USA,en,WPPU297,,Jackson (WY),43.477681,-110.794347,,0.01,,7802,317,155,,,,,,20010762,,, +1590,USA,en,WPPU297,,Victor (WY),43.594347,-111.111019,,0.01,,7806,317,155,,,,,,20010761,,, +1590,B,pt,ZYK212 Rdio Clube de Bag AM,,Bag (RS),-31.316667,-54.1,,0.25,,10979,229,156,,,,,,36902728,,, +1590,BOL,,CP155 R Bermejo,,Bermejo (trj),-22.683333,-64.366667,,0.25,,10760,241,156,,0930-0100,1234567,,,36654,,, +1590,PRG,,R Villeta,,Villeta (cet),-25.466667,-57.6,,0.2,,10622,235,156,,,,,,1947,,, +1590,URG,,CV159 R Regional,,Constitucion (sa),-31.066667,-57.816667,,0.25,,11151,232,157,,1000-0200,1234567,,,36738,,, +1590,URG,,CW159 R Regional La Nueva R,,Lascano (ro),-33.666667,-54.216667,,0.25,,11205,228,157,,0900-0300,1234567,,,36731,,, +1590,USA,en,WPLX298,,Trinidad/136 W Main St (CO),37.177625,-104.511031,,0.01,,8052,309,157,,,,,,20010764,,, +1590,ARG,es,La R de la Regin,,Dolores (ba),-36.316667,-57.666667,,0.25,,11624,228,158,,,,,,33000057,,, +1590,CHL,,CC159 R Rengo,,Rengo (LI),-34.366667,-70.866667,,0.25,,12176,239,160,,1000-0400,1234567,,,35830,,, +1593,F,,Bretagne 5,,Saint-Gouno (22),48.305556,-2.55,,5,,764,240,58,,0000-2400,9999999,,,2500002,,, +1593,ROU,de,SRR R Bukarest,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0820-0830,......7,994,,1702,,, +1593,ROU,de,SRR R Bukarest,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1200-1300,123456,994,,1702,,, +1593,ROU,de,SRR R Bukarest,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0820-0830,......7,993,,1700,,, +1593,ROU,de,SRR R Bukarest,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,1200-1300,123456,993,,1700,,, +1593,ROU,de,SRR R Neumarkt,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0830-0900,......7,994,,1702,,, +1593,ROU,de,SRR R Neumarkt,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1900-2000,123456,994,,1702,,, +1593,ROU,hu,SRR Kolozsvri Rdi,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0600-0800,123456,993,,1700,,, +1593,ROU,hu,SRR Kolozsvri Rdi,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,1300-1600,1234567,993,,1700,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0600-0900,.....6.,994,,1702,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0800-0820,......7,994,,1702,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0900-1200,123456,994,,1702,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0900-1700,......7,994,,1702,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1300-1600,123456,994,,1702,,, +1593,ROU,ro,SRR Antena Braşovului,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0600-0700,1234...,994,,1702,,, +1593,ROU,ro,SRR Antena Braşovului,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1600-1700,1234...,994,,1702,,, +1593,ROU,ro,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1300-1700,....56.,994,,1702,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0355-0600,1234567,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0600-0820,......7,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0800-1200,12345..,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0800-1300,.....6.,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0830-1300,......7,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,1600-2000,1234567,993,,1700,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0350-0600,1234567,994,,1702,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0600-0800,......7,994,,1702,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0700-0900,12345..,994,,1702,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1700-1900,1234567,994,,1702,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1900-1955,......7,994,,1702,,, +1593,ROU,de,SRR R Bukarest,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0820-0830,......7,,,1701,,, +1593,ROU,de,SRR R Bukarest,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1200-1300,123456,,,1701,,, +1593,ROU,hu,SRR Kolozsvri Rdi,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0600-0800,123456,,,1701,,, +1593,ROU,hu,SRR Kolozsvri Rdi,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1300-1600,1234567,,,1701,,, +1593,ROU,ro,SRR Antena Sibiului,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1630-1900,1234567,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0355-0600,1234567,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0600-0820,......7,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0800-1200,12345..,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0800-1300,.....6.,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0830-1300,......7,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1600-1630,1234567,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1900-2000,1234567,,,1701,,, +1593,ROU,ro,SRR R Romnia Actualităţi,,Ion Corvin (CT),44.116958,27.801311,,14,,1810,111,64,,0000-2400,1234567,9890,,1900,,, +1593,I,it,R Gold Italia,,unknown (me),38.266667,15.627778,,1,,1697,151,74,,????-????,9999999,,,4000043,,, +1593,EGY,ar,ERTU R Matruh/ERTU Al-Quran al-Karim,,Matruh (mth),31.330194,27.266556,,10,,2865,136,76,,0200-2200,1234567,993,,1694,,, +1593,KWT,ar,R Free Iraq,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,0200-0700,1234567,22,,1697,,, +1593,KWT,ar,R Free Iraq,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,1500-1530,1234567,22,,1697,,, +1593,KWT,ar,R Free Iraq,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,1830-2000,1234567,22,,1697,,, +1593,KWT,ar,R Free Iraq,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,2100-2300,1234567,22,,1697,,, +1593,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,0130-0200,.23456.,22,,1697,,, +1593,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,2300-0130,1234567,22,,1697,,, +1593,KWT,fa,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,1530-1830,1234567,22,,1697,,, +1593,KWT,ku,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,1400-1500,1234567,22,,1697,,, +1593,KWT,ku,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,2000-2100,1234567,22,,1697,,, +1593,MRC,,SNRT C,,Marrakech (mth),31.666667,-8,,1,,2556,213,83,,0600-0100,1234567,,,1699,,, +1593,RUS,ru,ZS1SDR,,Sankt-Peterburg/SPBGuT (SP),59.902778,30.488889,,0.01,,1715,50,94,,1200-1330,..3....,,,6700144,,, +1593,CHN,mn,Xinjiang RGD Mongγol/CNR 8,,Korla/SARFT8104 (XJ),41.772778,86.214722,,10,,5853,67,106,,2300-1800,1234567,,,52557,,, +1593,IND,,AIR West,,Bhopal A (MP),23.254444,77.483333,,10,,6711,90,114,,0025-0530,1234567,,,51409,,, +1593,IND,,AIR West,,Bhopal A (MP),23.254444,77.483333,,10,,6711,90,114,,0700-1115,1234567,,,51409,,, +1593,IND,,AIR West,,Bhopal A (MP),23.254444,77.483333,,10,,6711,90,114,,1130-1740,1234567,,,51409,,, +1593,CHN,zh,CNR 1,,Changzhou/SARFT623 (JS),31.703556,120.105806,,600,233,8694,53,115,,1000-1805,1234567,0,,52559,,, +1593,CHN,zh,CNR 1,,Changzhou/SARFT623 (JS),31.703556,120.105806,,600,233,8694,53,115,,2025-2330,1234567,0,,52559,,, +1593,CHN,,Suihua RGD,,Suihua (HL),46.566667,126.833333,,1,,7666,39,134,,,,,,51405,,, +1593,J,,JOQB NHK2,,Niigata (chu-nii),37.845,138.9175,,10,,9006,36,134,,2030-1500,1.....7,,,51411,,, +1593,J,,JOQB NHK2,,Niigata (chu-nii),37.845,138.9175,,10,,9006,36,134,,2030-1635,.2345..,,,51411,,, +1593,J,,JOQB NHK2,,Niigata (chu-nii),37.845,138.9175,,10,,9006,36,134,,2030-1640,.....6.,,,51411,,, +1593,J,,JOTB NHK2,,Matsue/Izumo-Shi (chg-shi),35.378333,132.745556,,10,,8982,42,134,,2030-1500,1.....7,,,51410,,, +1593,J,,JOTB NHK2,,Matsue/Izumo-Shi (chg-shi),35.378333,132.745556,,10,,8982,42,134,,2030-1635,.2345..,,,51410,,, +1593,J,,JOTB NHK2,,Matsue/Izumo-Shi (chg-shi),35.378333,132.745556,,10,,8982,42,134,,2030-1640,.....6.,,,51410,,, +1593,THA,,Sor. Wor. Thor. (R Thailand),,Ratchaburi (rtb),13.533333,99.816667,,10,,9053,79,134,,2200-1550,1234567,,,51419,,, +1593,THA,th,Neung Por. Nor.,,Buriram (brr),14.983611,103.088889,,10,,9145,76,134,,????-1405,1234567,,,51418,,, +1593,TWN,,Taiwan Ch Yuyeh Kuangpo Tientai,,Yilan (YL),24.753319,121.735689,,3,,9421,56,140,,0000-2400,1234567,,,51420,,, +1593,PHL,tl,DXFM-AM/DXSK-AM Radyo Ranaw,,Marawi City (lds),8.016667,124.3,,10,,11124,63,141,,2325-????,1234567,,,51415,,, +1593,FSM,,V6AK FSMBS R Chuuk,,Weno (chu),7.458133,151.849511,,5,,12623,38,149,,2000-1400,1234567,974,,51412,,, +1593,AUS,it,3RG Rete Italia,,Melbourne/Epping (VIC),-37.638556,145.018611,,5,,16442,80,161,,,,,,1953,,, +1593,NZL,,1XCB R.Asia Pacific/R.Samoa,,Auckland (AUK),-36.95,174.866667,,2,,18102,33,171,,0000-2400,1234567,12,,1952,,, +1593,NZL,,The Coast,,Christchurch/Marshland (CAN),-43.489747,172.637478,,2.5,,18613,52,171,,,,,,51414,,, +1593,AUS,en,2KY Sky Sports R,,Murwillumbah/Terranora (NSW),-28.242722,153.511333,,0.2,,16219,59,174,,,,9914,,51403,,, +1600,USA,,WUNR,,Brookline (MA),42.288889,-71.189167,,20,,5677,292,101,,0000-2400,1234567,0,,43265,,, +1600,USA,es,WWRL,,New York/Secaucus (Radio Av.) [NJ] (NY),40.795556,-74.055,,5,,5966,292,110,,0000-2400,1234567,9915,,43427,,, +1600,USA,,WHNP,,East Longmeadow (MA),42.073611,-72.524444,,2.5,,5777,292,111,,0000-2400,1234567,,,41669,,, +1600,USA,en,WAAM,,Ann Arbor (MI),42.192222,-83.685833,,5,,6454,299,115,,0000-2400,1234567,5,,40619,,, +1600,USA,,WRPN,,Ripon (WI),43.816944,-88.846944,,5,,6629,304,116,,,,997,,42908,,, +1600,USA,,KPNP,,Watertown (MN),44.923056,-93.782222,,5,,6815,307,118,,,,0,,39889,,, +1600,USA,en,WXMY,,Saltville (VA),36.861944,-81.724722,,5,,6749,294,118,,1200-2400,1234567,,,43481,,, +1600,USA,,WRJE,,Dover (DE),39.169722,-75.553611,,1,,6182,291,119,,0000-2400,1234567,,,41994,,, +1600,USA,en,KGYM,,Cedar Rapids (IA),41.970833,-91.533611,,5,,6929,304,119,,,,11,,38202,,, +1600,PTR,es,WCMA,,Bayamon (PR),18.360556,-66.158333,,5,,7224,268,122,,1100-0400,1234567,997,,42249,,, +1600,USA,,KATZ,,St. Louis (MO),38.617222,-90.082778,,3.5,,7117,300,123,,,,,,37983,,, +1600,USA,,WLXE,,Rockville (MD),39.097778,-77.151111,,0.5,,6289,292,123,,,,,,42260,,, +1600,DOM,,HIFG R Revelacion en Amrica,,Santo Domingo (sdo),18.466667,-69.9,,5,,7470,271,125,,1200-0200,1234567,,,52256,,, +1600,USA,,WEHH,,Elmira Hts-Horsehds (NY),42.119722,-76.810278,,0.17,,6042,295,125,,0000-2400,1234567,,,41269,,, +1600,USA,ht,WHTY,,Riviera Beach (FL),26.748611,-80.132778,,4.7,,7467,285,125,,,,,,42358,,, +1600,USA,xx,KVRI,,Blaine (WA),48.954167,-122.743333,,10,,7794,327,125,,0000-2400,1234567,2,,39664,,, +1600,EQA,es,HCPN1 Ilusin AM,,Quito (pic),-0.183333,-78.5,,100,,9676,266,126,,,,15,,2054,,, +1600,USA,,KEPN,,Lakewood (CO),39.655556,-105.074444,,5,,7862,311,129,,,,,,20016019,,, +1600,USA,,KLGA,,Algona (IA),43.068056,-94.304444,,0.5,,6994,306,130,,,,,,38808,,, +1600,USA,,WHOL,,Allentown (PA),40.5925,-75.478333,,0.056,,6071,293,130,,,,,,41676,,, +1600,USA,en,WLRS (r:WNDA),,Eminence (KY),38.3525,-85.185833,,0.32,,6845,297,130,,,,,,43220,,, +1600,USA,,WXVI,,Montgomery (AL),32.394444,-86.289167,,1,,7397,293,131,,,,,,43497,,, +1600,USA,,WHIY,,Huntsville (AL),34.758889,-86.643056,,0.5,,7225,295,132,,,,,,41335,,, +1600,USA,,WIDU,,Fayetteville (NC),35.098333,-78.886667,,0.147,,6709,290,132,,,,,,41733,,, +1600,USA,xx,KAHZ,,Pomona (CA),34.03,-117.726389,,15,,9009,316,132,,,,9997,,38920,,, +1600,VEN,,YVJR,,Barquisimeto (lar),10.066667,-69.283333,,5,,8151,265,132,,,,,,45348,,, +1600,USA,,WMCR,,Oneida (NY),43.084444,-75.693056,,0.02,,5902,295,133,,,,,,42293,,, +1600,B,pt,ZYK779 Rdio Nove de Julho,,So Paulo (SP),-23.501944,-46.6925,,20,,9858,227,134,,0000-2400,1234567,9869,,36902740,,, +1600,USA,,WJSA,,Jersey Shore (PA),41.225556,-77.266944,,0.02,,6136,294,135,,,,,,41928,,, +1600,CLM,es,HJHV,,Zipaquir (cun),5.033333,-74,,5,,8912,266,136,,,,,,35902728,,, +1600,CLM,es,HJO72,,Carepa (ant),7.766667,-76.666667,,5,,8854,269,136,,,,,,35902809,,, +1600,USA,,KDAK,,Carrington (ND),47.428611,-99.084167,,0.09,,6889,312,136,,,,,,38234,,, +1600,USA,,WKKX,,Wheeling (WV),40.090556,-80.703056,,0.033,,6434,296,136,,0000-2400,1234567,9959,,42032,,, +1600,USA,,WPDC,,Elizabethtown (PA),40.1625,-76.576667,,0.018,,6172,293,136,,,,,,42659,,, +1600,USA,es,KGST,,Fresno (CA),36.71,-119.835,,5,,8850,319,136,,,,9976,,38512,,, +1600,GTM,,TGML R Mara LV de la Familia,,Ciudad de Guatemala (gut),14.566667,-90.466667,,5,,9194,284,137,,1130-0500,1234567,,,52140,,, +1600,USA,,KOGT,,Orange (TX),30.140278,-93.753056,,1,,8049,297,137,,,,,,39064,,, +1600,USA,,KRVA,,Cockrell Hill (TX),32.739722,-96.711389,,0.93,,8003,301,137,,,,,,39309,,, +1600,USA,,WAYC,,Bedford (PA),40.043056,-78.503611,,0.018,,6302,294,137,,,,,,41647,,, +1600,USA,,WCPK,,Chesapeake (VA),36.802778,-76.282778,,0.023,,6409,290,137,,,,,,41066,,, +1600,USA,,WARU,,Peru (IN),40.764722,-86.040556,,0.037,,6705,299,138,,,,,,40744,,, +1600,USA,,WULM,,Springfield (OH),39.953056,-83.868611,,0.034,,6639,297,138,,,,,,43260,,, +1600,USA,en,WKWF,,Key West (FL),24.571389,-81.740278,,0.5,,7755,284,138,,,,9998,,42092,,, +1600,USA,es,KTUB,,Centerville (UT),40.902222,-111.927778,,1,,8090,316,138,,,,,,39289,,, +1600,USA,,KUBA,,Yuba City (CA),39.106111,-121.655,,2.5,,8699,321,139,,,,53,,39562,,, +1600,USA,,WTTF,,Tiffin (OH),41.125556,-83.231944,,0.019,,6509,298,139,,,,,,43223,,, +1600,USA,,WZZW,,Milton (WV),38.429444,-82.105833,,0.026,,6650,295,139,,,,,,43603,,, +1600,CTR,,TIJV R 88 Stereo,,San Isidro del General (sjs),9.366667,-83.7,,3,,9194,276,140,,1100-0300,1234567,,,52174,,, +1600,USA,,KOPB,,Eugene (OR),44.051389,-123.063333,,1,,8278,325,140,,,,,,38315,,, +1600,USA,,WZNZ,,Atlantic Beach (FL),30.324722,-81.43,,0.089,,7257,288,140,,,,,,42786,,, +1600,USA,es,WAOS,,Austell (GA),33.809444,-84.656944,,0.067,,7178,293,140,,0000-2400,1234567,5,,40731,,, +1600,CTR,,TIMMCH R Golfito,,Puerto Golfito (pta),8.65,-83.15,,2,,9220,275,141,,0000-2400,1234567,,,52173,,, +1600,USA,,WRSL,,Corbin (KY),37.018333,-84.099444,,0.027,,6885,295,141,,,,,,20012401,,, +1600,CTR,,TIMQ R Pococ,,Gupiles (lmn),10.216667,-83.766667,,1.5,,9125,276,142,,1100-0400,1234567,,,52172,,, +1600,USA,,KLEB,,Golden Meadow (LA),29.395278,-90.266944,,0.25,,7898,294,142,,,,,,38796,,, +1600,USA,,WFIS,,Fountain Inn (SC),34.707778,-82.227778,,0.025,,6952,292,142,,,,,,41389,,, +1600,USA,,KXEW,,South Tucson (AZ),32.196111,-110.983889,,1,,8846,310,143,,,,,,39790,,, +1600,USA,en,WKZK,,North Augusta (SC),33.493611,-81.997778,,0.027,,7036,291,143,,,,,,42112,,, +1600,EQA,,HCPB5,,Giron (azu),-2.916667,-78.983333,,2,,9950,265,144,,,,,,37057,,, +1600,HND,,HRPC,,San Luis del Pacayal (bar),15.116667,-88.283333,,1,,9001,283,144,,,,,,37823,,, +1600,HND,,HRXN,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37873,,, +1600,USA,,KTTN,,Trenton (MO),40.083333,-93.558333,,0.033,,7198,304,144,,,,,,39544,,, +1600,USA,en,WATX,,Algood (TN),36.188611,-85.473056,,0.02,,7036,295,144,,,,,,40765,,, +1600,MEX,es,XETPA-AM Soy Guerrero,,Tlapa de Comonfort (gue),17.556111,-98.530556,,1,,9452,292,145,,,,,,44851,,, +1600,USA,,KNCY,,Nebraska City (NE),40.674167,-95.885556,,0.031,,7280,305,145,,,,,,38970,,, +1600,USA,,KNWA,,Bellefonte (AR),36.246944,-93.085,,0.05,,7490,300,145,,,,,,39030,,, +1600,USA,,KRFS,,Superior (NE),40.025,-98.077222,,0.044,,7456,306,145,,,,,,39241,,, +1600,USA,,WMQM,,Lakeland (TN),35.176111,-89.936111,,0.035,,7392,298,145,,0000-2400,1234567,,,42380,,, +1600,USA,,WTZQ,,Hendersonville (NC),35.314722,-82.432778,,0.012,,6917,293,145,,,,,,43247,,, +1600,URG,,CW160,,Tacuaremb (ta),-31.683333,-55.966667,,3,,11110,230,146,,,,,,36762,,, +1600,USA,,KMDO,,Fort Scott (KS),37.783611,-94.7,,0.035,,7455,303,146,,,,,,38891,,, +1600,USA,,KUSH,,Cushing (OK),35.986389,-96.710278,,0.07,,7723,303,146,,,,,,39596,,, +1600,USA,es,WLAA,,Winter Garden (FL),28.568056,-81.518889,,0.035,,7407,287,146,,,,,,42581,,, +1600,EQA,,HCIP2,,Consular (gua),-2.616667,-80.366667,,1,,10017,266,147,,,,,,36974,,, +1600,EQA,,Ondas de Caluma,,Caluma (bol),-1.5,-79.333333,,1,,9849,266,147,,,,27,,2115,,, +1600,BOL,,R La Voz de Dios,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,0850-0200,1234567,,,52081,,, +1600,USA,en,KIVA,,Albuquerque (NM),35.051111,-106.642778,,0.175,,8356,309,148,,,,,,37951,,, +1600,CLM,es,HKO63,,Jardin (ant),6.966667,-75.533333,,0.25,,8847,268,149,,,,,,35902835,,, +1600,CLM,es,HKT39,,Valencia (cor),8.266667,-76.15,,0.25,,8776,269,149,,,,,,35902727,,, +1600,PRU,es,OBU4R R Nuevo Tempo,,Huancayo (jun),-12.133333,-75.25,,1,,10510,256,149,,1000-0500,1234567,,,37000122,,, +1600,URG,,CV160 Emisora Continental,,Pando/Joaqun Surez (ca),-34.780556,-55.98825,,2,,11398,228,149,,0915-0300,1234567,,,36739,,, +1600,CLM,es,HKX83,,La Celia (ris),5.05,-76.016667,,0.25,,9048,267,150,,,,,,35902778,,, +1600,CTR,,LV de Talamanca,,Talamanca (sjs),9.5,-83.666667,,0.25,,9181,276,150,,,,,,52181,,, +1600,CTR,,R Quepos,,Puerto Quepos (pta),9.416667,-84.166667,,0.25,,9222,276,150,,,,,,52179,,, +1600,CTR,,TIRCBA R Cultural,,Buenos Aires (alj),10.066667,-84.433333,,0.25,,9183,277,150,,,,,,52177,,, +1600,CTR,,TIRCP R Cultural,,Pital (alj),10.45,-84.283333,,0.25,,9139,277,150,,,,,,52178,,, +1600,CTR,,TIRCT R Cultural,,Turrialba (ctg),9.9,-83.683333,,0.25,,9147,276,150,,,,,,52175,,, +1600,CTR,,TIRCU R Cultural,,Upala (alj),10.9,-85.033333,,0.25,,9151,278,150,,,,,,52180,,, +1600,USA,en,WPBE684,,Kansas City (MO),39.056111,-94.495778,,0.01,,7337,303,150,,,,,,20010767,,, +1600,ARG,,R Armonia,,Jose Ingenieros (ba),-34.6,-58.45,,1.2,,11508,230,151,,0000-2400,1234567,,,51915,,, +1600,BOL,,CP153 R Continental,,Punata (cbb),-17.566667,-65.783333,,0.5,,10385,245,151,,1000-0200,1234567,,,52080,,, +1600,CTR,,TIRCN R Cultural Nicoyano,,Nicoya (gnc),10.15,-85.45,,0.25,,9245,278,151,,,,,,52176,,, +1600,MEX,es,XEGEM-AM R Mexiquense,,Metepec (mex),19.249517,-99.5874,,0.25,,9367,294,151,,,,,,44052,,, +1600,ARG,,R Belgrano,,Junn (ba),-34.566667,-60.966667,,1,,11639,232,152,,,,,,51917,,, +1600,ARG,,R Copacabana,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,51918,,, +1600,ARG,es,Region Centro,,Montes de Oca (sf),-32.566667,-61.766667,,1,,11502,234,152,,,,,,33000058,,, +1600,USA,en,WQCX525,,Great Falls/15 Upper River Road (MT),47.4925,-111.3075,,0.01,,7464,320,152,,,,,,20010772,,, +1600,ARG,,R Fenix,,General Viamonte (ba),-34.983333,-61.033333,,1,,11680,232,153,,,,,,51916,,, +1600,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010768,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010765,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010766,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010769,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010773,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010774,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010775,,, +1600,USA,en,WPWW707,,Bozeman (MT),45.683333,-111.033333,,0.01,,7614,318,153,,,,,,20010778,,, +1600,USA,en,WPWW707,,Bozeman (MT),45.683333,-111.033333,,0.01,,7614,318,153,,,,,,20010780,,, +1600,CLM,es,HKX84,,Dosquebradas (ris),4.833333,-75.666667,,0.1,,9043,267,154,,,,,,35902777,,, +1600,CLM,es,HKZ77,,Venadillo (tol),4.716667,-74.933333,,0.1,,9003,266,154,,,,,,35902759,,, +1600,CLM,es,HKZ79,,Cajamarca (tol),4.45,-75.433333,,0.1,,9060,266,154,,,,,,35902794,,, +1600,USA,en,WPWA784,,West Yellowstone (MT),44.7095,-111.098167,,0.01,,7705,318,154,,,,,,20010770,,, +1600,URG,,CX160 R Litoral,,Fray Bentos (rn),-33.133333,-58.266667,,0.5,,11365,231,155,,1000-0300,1234567,,,36805,,, +1600,USA,,KYBC,,Cottonwood (AZ),34.720833,-111.998611,,0.046,,8664,312,156,,,,36,,39840,,, +1600,USA,,KOHI,,St. Helens (OR),45.854167,-122.819722,,0.012,,8095,326,157,,,,,,39065,,, +1600,USA,en,WQHE837,,Stevenson (WA),45.662306,-121.910964,,0.01,,8078,325,158,,,,,,20010779,,, +1600,CHL,,CB160A R Nuevo Tiempo,,Santiago (RM),-33.566667,-70.666667,,0.25,,12096,239,160,,,,804,,35751,,, +1600,CHL,,CB160B Rcable,,Valparaso (Via del Mar) (VS),-33.016667,-71.533333,,0.25,,12099,240,160,,,,,,35750,,, +1600,USA,,KTAP,,Santa Maria (CA),34.98,-120.453333,,0.026,,9045,318,160,,,,,,39451,,, +1600,CHL,,CC160 R Llacolen,,Concepcin (BI),-36.783333,-73.016667,,0.25,,12507,238,161,,1000-0430,1234567,,,35831,,, +1600,USA,en,WQHR432,,San Fernando (CA),34.28375,-118.438111,,0.01,,9019,317,164,,,,,,20010783,,, +1600,USA,en,WQHR432,,San Fernando (CA),34.294325,-118.444306,,0.01,,9018,317,164,,,,,,20010782,,, +1602,HOL,en,R Seagull,,Harlingen/Pietersbierum (fri),53.205233,5.470167,,1,,137,333,53,,0000-2400,1234567,30,,2361,,, +1602,E,es,SER,,Segovia/San Agustn (CAL-SG),40.933967,-4.094583,,5,,1477,217,65,,0000-2400,1234567,17,,1707,,, +1602,E,es,SER,,Onteniente=Ontinyent (VAL-V),38.823011,-0.573306,,5,,1573,203,66,,0000-2400,1234567,992,,1709,,, +1602,E,es,SER,,Cartagena (MUR-MU),37.62875,-0.964667,,5,,1710,203,67,,0000-2400,1234567,990,,1706,,, +1602,E,es,SER,,Linares (AND-J),38.11425,-3.67535,,5,,1742,211,67,,0000-2400,1234567,994,,1708,,, +1602,G,en,BBC R 5 Live,,Tonbridge/Rusthall (EN-KNT),51.139472,0.224556,,0.25,,440,258,67,,0000-0600,1234567,0,,1710,,, +1602,G,en,BBC R Kent,,Tonbridge/Rusthall (EN-KNT),51.139472,0.224556,,0.25,,440,258,67,,0600-2400,1234567,0,,1710,,, +1602,POL,pl,R AM,,Krakw/Rajsko (MP),49.99,19.971944,,0.8,,975,99,68,,0000-2400,1234567,,,6400026,,, +1602,ROU,,R CNM,,Arad (AR),46.183333,21.316667,,1,,1265,115,70,,,,9968,,1735,,, +1602,ROU,ro,R Vocea Speranţei,,Bistriţa (BN),47.133333,24.483333,,1,,1410,106,71,,0000-2400,1234567,,,1683,,, +1602,ROU,ro,R Vocea Speranţei,,Piatra Neamţ (NT),46.916667,26.333333,,1,,1544,104,72,,0000-2400,1234567,,,1909,,, +1602,SRB,sr,R Beograd 1,,Leskovac (Srb-jab),43.011433,21.961297,,1,,1539,125,72,,0500-2300,1234567,9785,,1737,,, +1602,G,,Desi R,,London/Glade Lane (EN-GTL),51.504444,-0.359722,,0.07,,470,264,73,,,,114,,1711,,, +1602,ROU,ro,R Vocea Speranţei,,Tulcea (TL),45.166667,28.8,,1,,1808,106,75,,0000-2400,1234567,,,1918,,, +1602,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377861,23.623556,,0.4,,1532,35,76,,0700-1900,.....6.,,,2600003,,, +1602,EGY,ar,ERTU R Matruh,,Siwa (mth),29.185194,25.534917,,10,,2996,141,77,,0200-2200,1234567,,,1861,,, +1602,ROU,,R Sud-Est,,Slobozia (IL),44.666667,27.416667,,0.5,,1749,110,77,,,,,,1734,,, +1602,GRC,,ERA Net,,Samos (neg-sam),37.683333,26.883333,,1,,2259,127,80,,,,,,1722,,, +1602,EGY,ar,ERTU Janub Sa'id Misr/ERTU Al-Quran al-Karim,,Nag Hammadi (qna),25.997358,32.282739,,10,,3623,133,83,,0400-2000,1234567,,,1860,,, +1602,IRN,fa,IRIB R Semnan,,Damghan (smn),36.132556,54.312389,,10,,4122,96,88,,,,174,,10800009,,, +1602,RUS,ru,R Zeleny Glazh,,Moskva (MV),55.830833,37.64,,0.1,,2065,66,88,,1700-2000,1234567,,,6700141,,, +1602,G,en,Motor Racing RSLs,,Brands Hatch (EN-KNT),51.358333,0.261111,,0.001,,431,261,91,,,,,,1721,,, +1602,G,en,Motor Racing RSLs,,Snetterton (EN-NFK),52.416667,0.75,,0.001,,387,277,91,,,,,,1716,,, +1602,G,en,Horse Racing RSLs,,Ascot (EN-BER),51.4,-0.666667,,0.001,,493,264,92,,,,,,1712,,, +1602,G,en,Horse Racing RSLs,,Doncaster (EN-SYK),53.533333,-1.116667,,0.001,,530,290,92,,,,,,1714,,, +1602,G,en,Horse Racing RSLs,,York (EN-NYK),53.966667,-1.083333,,0.001,,542,295,92,,,,,,1713,,, +1602,G,en,Motor Racing RSLs,,Donington Park (EN-LEI),52.833333,-1.383333,,0.001,,534,282,92,,,,,,1715,,, +1602,G,en,Motor Racing RSLs,,Silverstone (EN-NHA),52.1,-1.033333,,0.001,,508,273,92,,,,,,1720,,, +1602,G,en,Motor Racing RSLs,,Castle Coombe (EN-SOM),51.383333,-2.366667,,0.001,,609,266,93,,,,,,1718,,, +1602,G,en,Motor Racing RSLs,,Oulton Park (EN-CHE),53.15,-2.666667,,0.001,,623,284,93,,,,,,1719,,, +1602,IRN,fa,IRIB R Ahwaz,,Dezful (kuz),32.408056,48.418444,,1,,4012,106,97,,0300-2100,1234567,,,1773,,, +1602,SDN,,SRTC Sudan Nat. R,,Kaduqli=Kadugli (ks),11.004328,29.716261,,5,,5029,147,100,,,,,,9400011,,, +1602,IRN,fa,IRIB R Fars,,Kazeroun (frs),29.633111,51.617667,,1,,4445,106,101,,0000-2400,1234567,,,1772,,, +1602,IRN,fa,IRIB R Iran,,Behabad (yzd),31.843044,56.044333,,1,,4563,100,103,,0000-2400,1234567,,,1771,,, +1602,IRN,fa,IRIB R Iran,,Estahban (frs),29.1225,54.074444,,1,,4649,104,103,,0000-2400,1234567,,,1728,,, +1602,QAT,,QBS,,Doha=Ad-Dawha (daw),25.283333,51.533333,,1,,4804,111,105,,0245-0700,1234567,,,1733,,, +1602,QAT,,QBS,,Doha=Ad-Dawha (daw),25.283333,51.533333,,1,,4804,111,105,,1300-1900,1234567,,,1733,,, +1602,AFG,,R Khost,,Khost (kho),33.366667,69.95,,0.5,,5393,87,114,,0230-0630,1234567,,,2118,,, +1602,AFG,,R Khost,,Khost (kho),33.366667,69.95,,0.5,,5393,87,114,,1130-1530,1234567,,,2118,,, +1602,IND,,AIR North/Vividh Bharati,,Tiesuru/Panikhar (JK),34.100889,75.945178,,1,,5745,82,114,,1030-1630,1234567,,,32200012,,, +1602,IND,,AIR North/Vividh Bharati,,Diskit (JK),34.5512,77.537933,,1,,5818,80,115,,1200-1700,1234567,,,52630,,, +1602,IND,,AIR North,,Pauri (UT),30.154139,78.76715,,1,,6241,83,119,,1125-1600,1234567,,,51429,,, +1602,IND,,AIR North,,Uttarkashi (UT),30.723472,78.434461,,1,,6173,83,119,,1130-1630,1234567,,,51435,,, +1602,PAK,,PBC R Pakistan,,Abbottabad (kpk),34.18,73.231111,,0.25,,5555,83,119,,0845-1415,1234567,,,51472,,, +1602,RUS,xx,R Rossii,,Ust-Barguzin (BU),53.379619,109.014422,,1,,6271,44,120,,2057-1700,1234567,,,47007,,, +1602,IND,,AIR North,,Pithoragarh (UT),29.577244,80.204569,,1,,6384,82,121,,1130-1630,1234567,,,51430,,, +1602,RUS,xx,R Rossii,,Novoilinsk (BU),51.683333,108.666667,,1,,6386,46,121,,2057-1700,1234567,,,47005,,, +1602,IND,,AIR Vividh Bharati,,Varanasi B (UP),25.333333,83,,1,,6916,84,126,,0025-0435,1234567,,,51436,,, +1602,IND,,AIR Vividh Bharati,,Varanasi B (UP),25.333333,83,,1,,6916,84,126,,0900-1200,1234567,,,51436,,, +1602,IND,,AIR Vividh Bharati,,Varanasi B (UP),25.333333,83,,1,,6916,84,126,,1245-1740,1234567,,,51436,,, +1602,IND,,AIR Northeast,,William Nagar (ML),25.5104,90.604333,,1,,7414,78,131,,0925-1330,1234567,,,51437,,, +1602,IND,,AIR Northeast,,Ziro (AR),27.633333,93.833333,,1,,7452,74,132,,0025-0430,1234567,,,51438,,, +1602,IND,,AIR Northeast,,Ziro (AR),27.633333,93.833333,,1,,7452,74,132,,1000-1630,1234567,,,51438,,, +1602,CHN,,Shuozhou RGD,,Shuozhou (SX),39.316667,112.416667,,1,,7600,53,133,,,,,,51427,,, +1602,IND,,AIR Northeast,,Tuensang (NL),26.233333,94.8,,1,,7632,74,133,,1000-1600,1234567,,,51433,,, +1602,IND,,AIR South,,Udhagamandalam (TN),11.418989,76.672983,,1,,7664,99,134,,1130-1700,1234567,,,51434,,, +1602,IND,,AIR Northeast,,Saiha (MZ),22.483333,92.966667,,1,,7825,78,135,,0930-1330,1234567,,,51431,,, +1602,J,,NHK R 2,,Enbetsu (hok),44.716667,141.8,,1,,8433,31,141,,2030-1500,1.....7,,,51444,,, +1602,J,,NHK R 2,,Enbetsu (hok),44.716667,141.8,,1,,8433,31,141,,2030-1635,.2345..,,,51444,,, +1602,J,,NHK R 2,,Enbetsu (hok),44.716667,141.8,,1,,8433,31,141,,2030-1640,.....6.,,,51444,,, +1602,CHN,,Jiangsu RGD,,Hongze (JS),33.3,118.85,,1,,8481,53,142,,2050-1600,1234567,,,51426,,, +1602,J,,JOCC NHK2,,Asahikawa (hok),43.766667,142.416667,,1,,8550,31,142,,2030-1500,1.....7,,,51443,,, +1602,J,,JOCC NHK2,,Asahikawa (hok),43.766667,142.416667,,1,,8550,31,142,,2030-1635,.2345..,,,51443,,, +1602,J,,JOCC NHK2,,Asahikawa (hok),43.766667,142.416667,,1,,8550,31,142,,2030-1640,.....6.,,,51443,,, +1602,KOR,ko,HLQE KBS 1 R,,Sabuk (gan),37.231389,128.818333,,1,,8624,43,142,,0000-2400,1234567,0,,51470,,, +1602,J,,JOFD NHK2,,Fukushima (toh-fuk),37.766667,140.483333,,1,,9076,35,144,,2030-1500,1.....7,,,51445,,, +1602,J,,JOFD NHK2,,Fukushima (toh-fuk),37.766667,140.483333,,1,,9076,35,144,,2030-1635,.2345..,,,51445,,, +1602,J,,JOFD NHK2,,Fukushima (toh-fuk),37.766667,140.483333,,1,,9076,35,144,,2030-1640,.....6.,,,51445,,, +1602,J,,JOKC NHK2,,Kofu (chu-yam),35.65,138.533333,,1,,9208,37,144,,2030-1500,1.....7,,,51455,,, +1602,J,,JOKC NHK2,,Kofu (chu-yam),35.65,138.533333,,1,,9208,37,144,,2030-1635,.2345..,,,51455,,, +1602,J,,JOKC NHK2,,Kofu (chu-yam),35.65,138.533333,,1,,9208,37,144,,2030-1640,.....6.,,,51455,,, +1602,J,,JOSB NHK2,,Kitakyushu (kyu-fuk),33.883333,130.866667,,1,,9039,44,144,,2030-1500,1.....7,,,51454,,, +1602,J,,JOSB NHK2,,Kitakyushu (kyu-fuk),33.883333,130.866667,,1,,9039,44,144,,2030-1635,.2345..,,,51454,,, +1602,J,,JOSB NHK2,,Kitakyushu (kyu-fuk),33.883333,130.866667,,1,,9039,44,144,,2030-1640,.....6.,,,51454,,, +1602,J,,NHK R 2,,Hitoyoshi (kyu-kum),32.216667,130.783333,,1,,9194,45,144,,2030-1500,1.....7,,,51449,,, +1602,J,,NHK R 2,,Hitoyoshi (kyu-kum),32.216667,130.783333,,1,,9194,45,144,,2030-1635,.2345..,,,51449,,, +1602,J,,NHK R 2,,Hitoyoshi (kyu-kum),32.216667,130.783333,,1,,9194,45,144,,2030-1640,.....6.,,,51449,,, +1602,J,,NHK R 2,,Nobeoka (kyu-miy),32.566667,131.683333,,1,,9203,44,144,,2030-1500,1.....7,,,51462,,, +1602,J,,NHK R 2,,Nobeoka (kyu-miy),32.566667,131.683333,,1,,9203,44,144,,2030-1635,.2345..,,,51462,,, +1602,J,,NHK R 2,,Nobeoka (kyu-miy),32.566667,131.683333,,1,,9203,44,144,,2030-1640,.....6.,,,51462,,, +1602,J,,NHK R 2,,Uwajima (shi-ehi),33.216667,132.566667,,1,,9182,43,144,,2030-1500,1.....7,,,51468,,, +1602,J,,NHK R 2,,Uwajima (shi-ehi),33.216667,132.566667,,1,,9182,43,144,,2030-1635,.2345..,,,51468,,, +1602,J,,NHK R 2,,Uwajima (shi-ehi),33.216667,132.566667,,1,,9182,43,144,,2030-1640,.....6.,,,51468,,, +1602,J,ja,NHK R 2,,Onomichi (chg-hir),34.4,133.2,,1,,9097,42,144,,,,,,31400125,,, +1602,J,,NHK R 2,,Naze (kyu-kag),28.4,129.5,,1,,9495,48,145,,2030-1500,1.....7,,,51460,,, +1602,J,,NHK R 2,,Naze (kyu-kag),28.4,129.5,,1,,9495,48,145,,2030-1635,.2345..,,,51460,,, +1602,J,,NHK R 2,,Naze (kyu-kag),28.4,129.5,,1,,9495,48,145,,2030-1640,.....6.,,,51460,,, +1602,PHL,,DZUP-AM,,Quezon City/Diliman UP (ncr),14.651944,121.063056,,1,,10315,62,148,,0330-0800,1234567,,,51473,,, +1602,INS,,Alwaish R Jakarta,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,51441,,, +1602,INS,id,PM3BIW R Swadaya Cempaka,,Karawang (JB-kar),-6.316667,107.3,,1,,11304,85,151,,,,,,51442,,, +1602,J,,NHK R 2,,Iwaizumi (toh-iwa),39.85,141.8,,0.1,,8919,33,153,,2030-1500,1.....7,,,51450,,, +1602,J,,NHK R 2,,Iwaizumi (toh-iwa),39.85,141.8,,0.1,,8919,33,153,,2030-1635,.2345..,,,51450,,, +1602,J,,NHK R 2,,Iwaizumi (toh-iwa),39.85,141.8,,0.1,,8919,33,153,,2030-1640,.....6.,,,51450,,, +1602,J,,NHK R 2,,Urakawa (hok),42.166667,142.783333,,0.1,,8723,31,153,,2030-1500,1.....7,0,,51467,,, +1602,J,,NHK R 2,,Urakawa (hok),42.166667,142.783333,,0.1,,8723,31,153,,2030-1635,.2345..,0,,51467,,, +1602,J,,NHK R 2,,Urakawa (hok),42.166667,142.783333,,0.1,,8723,31,153,,2030-1640,.....6.,0,,51467,,, +1602,J,,NHK R 2,,Yokote (toh-aki),39.3,140.566667,,0.1,,8927,34,153,,2030-1500,1.....7,,,51469,,, +1602,J,,NHK R 2,,Yokote (toh-aki),39.3,140.566667,,0.1,,8927,34,153,,2030-1635,.2345..,,,51469,,, +1602,J,,NHK R 2,,Yokote (toh-aki),39.3,140.566667,,0.1,,8927,34,153,,2030-1640,.....6.,,,51469,,, +1602,J,,NHK R 2,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,2030-1500,1.....7,,,51447,,, +1602,J,,NHK R 2,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,2030-1635,.2345..,,,51447,,, +1602,J,,NHK R 2,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,2030-1640,.....6.,,,51447,,, +1602,J,,NHK R 2,,Kamaishi (toh-iwa),39.266667,141.883333,,0.1,,8980,33,154,,2030-1500,1.....7,,,51451,,, +1602,J,,NHK R 2,,Kamaishi (toh-iwa),39.266667,141.883333,,0.1,,8980,33,154,,2030-1635,.2345..,,,51451,,, +1602,J,,NHK R 2,,Kamaishi (toh-iwa),39.266667,141.883333,,0.1,,8980,33,154,,2030-1640,.....6.,,,51451,,, +1602,J,,NHK R 2,,Kawamoto (chg-shi),34.966667,132.483333,,0.1,,9010,42,154,,2030-1500,1.....7,,,51452,,, +1602,J,,NHK R 2,,Kawamoto (chg-shi),34.966667,132.483333,,0.1,,9010,42,154,,2030-1635,.2345..,,,51452,,, +1602,J,,NHK R 2,,Kawamoto (chg-shi),34.966667,132.483333,,0.1,,9010,42,154,,2030-1640,.....6.,,,51452,,, +1602,J,,NHK R 2,,Kisofukushima (chu-nag),35.846667,137.696111,,0.1,,9153,38,154,,2030-1500,1.....7,,,51453,,, +1602,J,,NHK R 2,,Kisofukushima (chu-nag),35.846667,137.696111,,0.1,,9153,38,154,,2030-1635,.2345..,,,51453,,, +1602,J,,NHK R 2,,Kisofukushima (chu-nag),35.846667,137.696111,,0.1,,9153,38,154,,2030-1640,.....6.,,,51453,,, +1602,J,,NHK R 2,,Maizuru (kns-kyo),35.466667,135.4,,0.1,,9092,40,154,,2030-1500,1.....7,,,51458,,, +1602,J,,NHK R 2,,Maizuru (kns-kyo),35.466667,135.4,,0.1,,9092,40,154,,2030-1635,.2345..,,,51458,,, +1602,J,,NHK R 2,,Maizuru (kns-kyo),35.466667,135.4,,0.1,,9092,40,154,,2030-1640,.....6.,,,51458,,, +1602,J,,NHK R 2,,Tajima (toh-fuk),37.2,139.766667,,0.1,,9104,36,154,,2030-1500,1.....7,,,51463,,, +1602,J,,NHK R 2,,Tajima (toh-fuk),37.2,139.766667,,0.1,,9104,36,154,,2030-1635,.2345..,,,51463,,, +1602,J,,NHK R 2,,Tajima (toh-fuk),37.2,139.766667,,0.1,,9104,36,154,,2030-1640,.....6.,,,51463,,, +1602,J,,NHK R 2,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,2030-1500,1.....7,,,51466,,, +1602,J,,NHK R 2,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,2030-1635,.2345..,,,51466,,, +1602,J,,NHK R 2,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,2030-1640,.....6.,,,51466,,, +1602,J,ja,NHK R 2,,Taira,34.5,134,,0.1,,9124,41,154,,,,,,31400124,,, +1602,J,ja,NHK R 2,,Tojp,34.5,134,,0.1,,9124,41,154,,,,,,31400126,,, +1602,J,,NHK R 2,,Koza (kns-wak),33.516667,135.833333,,0.1,,9301,40,155,,2030-1500,1.....7,,,51456,,, +1602,J,,NHK R 2,,Koza (kns-wak),33.516667,135.833333,,0.1,,9301,40,155,,2030-1635,.2345..,,,51456,,, +1602,J,,NHK R 2,,Koza (kns-wak),33.516667,135.833333,,0.1,,9301,40,155,,2030-1640,.....6.,,,51456,,, +1602,J,,NHK R 2,,Kumano (kns-mie),33.883333,136.1,,0.1,,9277,40,155,,2030-1500,1.....7,,,51457,,, +1602,J,,NHK R 2,,Kumano (kns-mie),33.883333,136.1,,0.1,,9277,40,155,,2030-1635,.2345..,,,51457,,, +1602,J,,NHK R 2,,Kumano (kns-mie),33.883333,136.1,,0.1,,9277,40,155,,2030-1640,.....6.,,,51457,,, +1602,J,,NHK R 2,,Nichinan (kyu-miy),31.6,131.383333,,0.1,,9282,45,155,,2030-1500,1.....7,,,51461,,, +1602,J,,NHK R 2,,Nichinan (kyu-miy),31.6,131.383333,,0.1,,9282,45,155,,2030-1635,.2345..,,,51461,,, +1602,J,,NHK R 2,,Nichinan (kyu-miy),31.6,131.383333,,0.1,,9282,45,155,,2030-1640,.....6.,,,51461,,, +1602,J,,NHK R 2,,Tanabe (kns-wak),33.75,135.4,,0.1,,9259,41,155,,2030-1500,1.....7,,,51464,,, +1602,J,,NHK R 2,,Tanabe (kns-wak),33.75,135.4,,0.1,,9259,41,155,,2030-1635,.2345..,,,51464,,, +1602,J,,NHK R 2,,Tanabe (kns-wak),33.75,135.4,,0.1,,9259,41,155,,2030-1640,.....6.,,,51464,,, +1602,NZL,,2XA R Reading Service,,Levin (WGN),-40.635556,175.268056,,2.5,182,18483,38,171,,0000-2400,1234567,,,51471,,, +1602,AUS,,5LC ABC North & West SA,,Leigh Creek (SA),-30.599694,138.403847,,0.2,,15463,77,172,,0000-2400,1234567,,,51424,,, +1602,AUS,,3WL ABC Western Victoria,,Warrnambool (VIC),-38.336444,142.508611,,0.3,,16322,83,173,,0000-2400,1234567,,,51425,,, +1602,AUS,,2CP ABC Southeast NSW,,Cooma (NSW),-36.228472,149.1375,,0.1,,16611,74,179,,0000-2400,1234567,,,51423,,, +1605,USA,en,WD2XKZ,,San Antonio (TX),29.441389,-98.632222,,0.0001,,8404,300,181,,,,,,20010784,,, +1609,BEN,,TYA Cotonou R,4,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900255,,, +1610,AIA,en,Caribbean Beacon,,The Valley (tvy),18.219367,-63.018511,,50,,7021,265,110,,0000-2400,1234567,998,,2138,,, +1610,CAN,xx,CHHA,,Toronto (ON),43.641911,-79.340211,,6.3,,6084,298,110,,,,0,,47293,,, +1610,USA,en,WQDK533,,Millinocket/64 Balsam Drive (ME),45.658389,-68.027625,,0.01,,5247,293,129,,,,,,20011125,,, +1610,USA,en,WPVS949,,Augusta (ME),44.303889,-69.808056,,0.01,,5450,293,131,,,,,,20011236,,, +1610,USA,en,WPKW775,,Gray (ME),43.894314,-70.342,,0.01,,5511,293,132,,,,,,20010922,,, +1610,USA,en,WPKW775,,Portland (ME),43.732861,-70.299778,,0.01,,5520,293,132,,,,,,20010923,,, +1610,USA,en,WPKW775,,Saco (ME),43.510978,-70.482833,,0.01,,5547,293,132,,,,,,20010921,,, +1610,USA,en,WPKW775,,Scarborough (ME),43.609806,-70.366167,,0.01,,5532,293,132,,,,,,20010924,,, +1610,USA,en,WPVS949,,Auburn (ME),43.997778,-70.308056,,0.01,,5502,293,132,,,,,,20011252,,, +1610,USA,en,WPVS949,,Bowdoinham (ME),44.073056,-70.041667,,0.01,,5480,293,132,,,,,,20011249,,, +1610,USA,en,WPVS949,,Lewiston (ME),44.073056,-70.193497,,0.01,,5490,293,132,,,,,,20011251,,, +1610,USA,en,WPVS949,,Manmouth (ME),44.189444,-69.860147,,0.01,,5461,293,132,,,,,,20011248,,, +1610,USA,en,WQHY753,,Pittsburgh (NH),45.128,-71.226,,0.01,,5482,295,132,,,,,,20011307,,, +1610,USA,en,WNCF832,,Franconia (NH),44.210969,-71.693417,,0.01,,5574,294,133,,,,,,20010945,,, +1610,USA,en,WNCF832,,Lincoln (NH),44.048944,-71.68175,,0.01,,5585,294,133,,,,,,20010927,,, +1610,USA,en,WNUE384,,Concord (NH),43.2,-71.533333,,0.01,,5635,293,133,,,,,,20011044,,, +1610,USA,en,WPKW775,,Wells (ME),43.327647,-70.610975,,0.01,,5567,292,133,,,,,,20010899,,, +1610,USA,en,WPKW775,,York (ME),43.160083,-70.660056,,0.01,,5582,292,133,,,,,,20010897,,, +1610,USA,en,WPZS690,,Durham (NH),43.12675,-70.844306,,0.01,,5596,292,133,,,,,,20011136,,, +1610,USA,en,WQIX458,,Derry (NH),42.895,-71.2875,,0.01,,5640,292,133,,,,,,20011285,,, +1610,USA,en,WNSX853,,Falmouth (MA),41.5765,-70.610961,,0.01,,5691,291,134,,,,,,20011047,,, +1610,USA,en,WNUE384,,Nashua (NH),42.777306,-71.491722,,0.01,,5662,292,134,,,,,,20011045,,, +1610,USA,en,WPKW969,,Providence (RI),41.682333,-71.444306,,0.01,,5736,291,134,,,,,,20010920,,, +1610,USA,en,WQEA969,,Hyannis/89 Yarmouth Road (MA),41.661025,-70.278,,0.01,,5663,291,134,,,,,,20011258,,, +1610,USA,en,WNVV205,,Albany (NY),42.595083,-73.794319,,0.01,,5819,294,135,,,,,,20011059,,, +1610,USA,en,WNVV205,,Albany (NY),42.660983,-73.827656,,0.01,,5817,294,135,,,,,,20011043,,, +1610,USA,en,WNVV205,,Albany (NY),42.698417,-73.845667,,0.01,,5815,294,135,,,,,,20011036,,, +1610,USA,en,WNVV205,,Schenectady (NY),42.744806,-73.927653,,0.01,,5817,294,135,,,,,,20011037,,, +1610,USA,en,WPFI377,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010824,,, +1610,USA,en,WPFM233,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010848,,, +1610,USA,en,WPLT709,,Greenport/500 Beach Road (NY),41.109278,-72.360978,,0.01,,5836,291,135,,,,,,20010855,,, +1610,USA,en,WPQH451,,Rocky Hill/1107 Cromwell Ave (CT),41.644322,-72.679528,,0.01,,5817,292,135,,,,,,20011297,,, +1610,USA,en,WPUK798,,Castleton (NY),42.493514,-73.671111,,0.01,,5819,293,135,,,,,,20011210,,, +1610,USA,en,WQHG625,,Albany (NY),42.632611,-73.77775,,0.01,,5816,294,135,,,,,,20011263,,, +1610,USA,en,WQHG625,,Schenectady (NY),42.760964,-73.932806,,0.01,,5816,294,135,,,,,,20011262,,, +1610,USA,en,WQHG625,,Selkirk (NY),42.54435,-73.7805,,0.01,,5822,294,135,,,,,,20011264,,, +1610,USA,en,WNVV205,,Kingston (NY),41.946194,-74.02875,,0.01,,5881,293,136,,,,,,20011041,,, +1610,USA,en,WNZV592,,White Plains (NY),41.033333,-73.766667,,0.01,,5931,292,136,,,,,,20011012,,, +1610,USA,en,WPMK888,,Newburgh (NY),41.51175,-74.077664,,0.01,,5915,293,136,,,,,,20010977,,, +1610,USA,en,WPML750,,Trumbull (CT),41.244311,-73.163167,,0.01,,5877,292,136,,,,,,20010860,,, +1610,USA,en,WQDD427,,Cooperstown/68 Linden Ave (NY),42.693572,-74.943547,,0.01,,5884,294,136,,,,,,20011111,,, +1610,USA,en,WQIX462,,Bethel (NY),41.710978,-74.879944,,0.01,,5951,293,136,,,,,,20011288,,, +1610,USA,en,WPAS758,,Cranbury (NJ),40.32765,-74.494328,,0.01,,6028,292,137,,,,,,20011001,,, +1610,USA,en,WPAS758,,Elizabeth (NJ),40.6665,-74.17875,,0.01,,5983,292,137,,,,,,20011000,,, +1610,USA,en,WPAS759,,Woodbridge (NJ),40.55,-74.283333,,0.01,,5999,292,137,,,,,,20011023,,, +1610,USA,en,WPBG740,,Harrisburg (PA),41.444311,-75.616306,,0.01,,6017,294,137,,,,,,20011032,,, +1610,USA,en,WPFP986,,Jamesburg (NJ),40.350111,-74.477083,,0.01,,6026,292,137,,,,,,20010842,,, +1610,USA,en,WPFQ441,,Woodbridge (NJ),40.543167,-74.294331,,0.01,,6000,292,137,,,,,,20010845,,, +1610,USA,en,WPIG908,,Randolph (NJ),40.859833,-74.597111,,0.01,,5996,292,137,,,,,,20010794,,, +1610,USA,en,WPIJ669,,Union Beach (NJ),40.444322,-74.161,,0.01,,5999,292,137,,,,,,20010814,,, +1610,USA,en,WPLU399,,Wall Township (NJ),40.177656,-74.110994,,0.01,,6015,292,137,,,,,,20010869,,, +1610,USA,en,WPNT550,,Watchung/57 Mountain Blvd (NJ),40.644322,-74.461,,0.01,,6003,292,137,,,,,,20010888,,, +1610,USA,en,WPQJ968,,Neshanic (NJ),40.510992,-74.644333,,0.01,,6024,292,137,,,,,,20011313,,, +1610,USA,en,WPRT265,,Harrisburg (PA),41.310556,-75.759167,,0.01,,6036,294,137,,,,,,20011138,,, +1610,USA,en,WPRT265,,Harrisburg (PA),41.312222,-75.545556,,0.01,,6022,293,137,,,,,,20011137,,, +1610,USA,en,WPRT265,,Harrisburg (PA),41.408056,-75.504167,,0.01,,6012,294,137,,,,,,20011143,,, +1610,USA,en,WPRT265,,Harrisburg (PA),41.482778,-75.694444,,0.01,,6019,294,137,,,,,,20011112,,, +1610,USA,en,WPSH270,,Peapack/160 Main Street (NJ),40.716778,-74.659333,,0.01,,6010,292,137,,,,,,20011099,,, +1610,USA,en,WPSQ379,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011078,,, +1610,USA,en,WPUN933,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011140,,, +1610,USA,en,WPVY987,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011310,,, +1610,USA,en,WPWC517,,Rochester (NY),43.198333,-77.548333,,0.01,,6008,296,137,,,,,,20011091,,, +1610,USA,en,WPWC517,,Webster (NY),43.220833,-77.399167,,0.01,,5997,296,137,,,,,,20011152,,, +1610,USA,en,WPZN807,,Henrietta (NY),43.060958,-77.650111,,0.01,,6024,296,137,,,,,,20011235,,, +1610,USA,en,WPZN807,,LeRoy (NY),43.032056,-77.964694,,0.01,,6046,296,137,,,,,,20011225,,, +1610,USA,en,WPZN807,,Victor (NY),43.032056,-77.444339,,0.01,,6014,296,137,,,,,,20011223,,, +1610,USA,en,WQDC328,,Oceanport/175 Oceanport Ave (NJ),40.305556,-74.015833,,0.01,,6000,292,137,,,,,,20011131,,, +1610,USA,en,WQFI219,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011338,,, +1610,MEX,es,XEUACH-AM R Chapingo,,Chapingo (mex),19.495731,-98.893428,,5,,9302,294,138,,,,,,34900022,,, +1610,USA,en,WPAN997,,Blasdell (NY),42.794308,-78.827628,,0.01,,6116,297,138,,,,,,20010998,,, +1610,USA,en,WPAN997,,Bowmansville (NY),42.947833,-78.710958,,0.01,,6097,297,138,,,,,,20011008,,, +1610,USA,en,WPAN997,,Buffalo (NY),42.876444,-78.796972,,0.01,,6108,297,138,,,,,,20011006,,, +1610,USA,en,WPAN997,,Buffalo (NY),42.895611,-78.910958,,0.01,,6113,297,138,,,,,,20011004,,, +1610,USA,en,WPAN997,,Niagra (NY),43.061722,-78.994308,,0.01,,6106,297,138,,,,,,20011003,,, +1610,USA,en,WPAN997,,Tonawanda (NY),42.9943,-78.911972,,0.01,,6106,297,138,,,,,,20011015,,, +1610,USA,en,WPAS758,,Moorestown (NJ),39.980389,-74.594339,,0.01,,6060,292,138,,,,,,20011002,,, +1610,USA,en,WPFP978,,Bordentown (NJ),40.126778,-74.711,,0.01,,6057,292,138,,,,,,20010853,,, +1610,USA,en,WPHD215,,Cherry Hill (NJ),39.933333,-75.033333,,0.01,,6092,292,138,,,,,,20010793,,, +1610,USA,en,WPIR381,,Pleasantville (NJ),39.394325,-74.510972,,0.01,,6099,291,138,,,,,,20010813,,, +1610,USA,en,WPQY335,,Lancaster (NY),42.960969,-78.599472,,0.01,,6090,297,138,,,,,,20011301,,, +1610,USA,en,WPRS936,,Harrisburg (PA),41.146667,-75.964444,,0.01,,6061,294,138,,,,,,20011141,,, +1610,USA,en,WQHI499,,Jonestown (PA),40.427683,-76.527631,,0.01,,6149,293,138,,,,,,20011274,,, +1610,USA,en,WQHY657,,Williamsville (NY),42.961019,-78.760975,,0.01,,6099,297,138,,,,,,20011306,,, +1610,USA,en,KNNI499,,Towson (MD),39.411778,-76.611028,,0.01,,6231,292,139,,,,,,20010992,,, +1610,USA,en,KNNS365,,Linthicum (MD),39.210989,-76.644367,,0.01,,6248,292,139,,,,,,20010988,,, +1610,USA,en,WNHC787,,Mackinaw City (MI),45.848611,-84.727642,,0.01,,6238,303,139,,,,,,20010937,,, +1610,USA,en,WNQA283,,Salisbury (MD),38.37765,-75.594342,,0.01,,6244,291,139,,,,,,20010954,,, +1610,USA,en,WNQA286,,Severna Park (MD),39.014556,-76.408861,,0.01,,6248,292,139,,,,,,20010961,,, +1610,USA,en,WNQA288,,Denton (MD),38.842611,-75.798,,0.01,,6222,291,139,,,,,,20010949,,, +1610,USA,en,WNQA289,,Queenstown (MD),38.982333,-76.160222,,0.01,,6235,292,139,,,,,,20010948,,, +1610,USA,en,WNQA290,,Easton (MD),38.797056,-76.0605,,0.01,,6242,291,139,,,,,,20010947,,, +1610,USA,en,WNVP742,,Baltimore (MD),39.497056,-76.677694,,0.01,,6228,293,139,,,,,,20011039,,, +1610,USA,en,WNVY509,,Bradshaw (MD),39.427056,-76.394364,,0.01,,6216,292,139,,,,,,20011067,,, +1610,USA,en,WPCT627,,Baltimore (MD),39.313722,-76.544367,,0.01,,6234,292,139,,,,,,20011024,,, +1610,USA,en,WPCT627,,Baltimore (MD),39.347333,-76.746083,,0.01,,6244,292,139,,,,,,20011016,,, +1610,USA,en,WPDX549,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011017,,, +1610,USA,en,WPEA856,,Harrisburg (PA),40.244361,-76.977675,,0.01,,6191,293,139,,,,,,20010785,,, +1610,USA,en,WPEA856,,Harrisburg (PA),40.278944,-76.827686,,0.01,,6179,293,139,,,,,,20010849,,, +1610,USA,en,WPEA856,,Harrisburg (PA),40.36175,-76.749694,,0.01,,6168,293,139,,,,,,20010836,,, +1610,USA,en,WPEI224,,Hanover (MD),39.194317,-76.675528,,0.01,,6251,292,139,,,,,,20010838,,, +1610,USA,en,WPEP712,,Elkton (MD),39.644322,-75.811022,,0.01,,6163,292,139,,,,,,20010834,,, +1610,USA,en,WPEW742,,Reisterstown (MD),39.477656,-76.844367,,0.01,,6240,293,139,,,,,,20010829,,, +1610,USA,en,WPFJ882,,Ocean City (MD),38.394322,-75.111008,,0.01,,6212,291,139,,,,,,20010823,,, +1610,USA,en,WPHW256,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010807,,, +1610,USA,en,WPJR508,,Havre de Grace (MD),39.577658,-76.144353,,0.01,,6189,292,139,,,,,,20010801,,, +1610,USA,en,WPUN696,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011103,,, +1610,USA,en,WPUN745,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011081,,, +1610,USA,en,WPUN745,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011104,,, +1610,USA,en,WPUP271,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011124,,, +1610,USA,en,WPUP271,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011356,,, +1610,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011108,,, +1610,USA,en,WPYI899,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011172,,, +1610,USA,en,WQBU641,,Tionesta/105 Bridge St. (PA),41.494,-79.459167,,0.01,,6251,296,139,,,,,,20011101,,, +1610,USA,en,WQHI497,,Etters (PA),40.161003,-76.827686,,0.01,,6188,293,139,,,,,,20011265,,, +1610,USA,en,WQHI497,,Mechanicsburg (PA),40.177306,-76.994356,,0.01,,6197,293,139,,,,,,20011277,,, +1610,USA,en,WQHI497,,Shippensburg (PA),40.015806,-77.533278,,0.01,,6243,293,139,,,,,,20011269,,, +1610,USA,en,WQHI499,,Carlisle (PA),40.161003,-77.310975,,0.01,,6218,293,139,,,,,,20011270,,, +1610,USA,en,WQHI499,,Carlisle (PA),40.244325,-77.127833,,0.01,,6201,293,139,,,,,,20011271,,, +1610,USA,en,WQHI499,,Dauphin (PA),40.396139,-77.011033,,0.01,,6182,294,139,,,,,,20011272,,, +1610,USA,en,WQHI499,,Grantville (PA),40.377689,-76.681972,,0.01,,6163,293,139,,,,,,20011273,,, +1610,USA,en,WQHI499,,Middletown (PA),40.21375,-76.711,,0.01,,6177,293,139,,,,,,20011275,,, +1610,USA,en,WQIN410,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011312,,, +1610,USA,en,WQIN410,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011314,,, +1610,ALS,en,WQLE259,,Prudhoe Bay/PBOC (AK),70.247508,-148.396856,,0.01,,6260,350,140,,,,,,20016227,,, +1610,USA,en,WNQA284,,Cumberland (MD),39.660981,-78.748083,,0.01,,6346,294,140,,,,,,20010944,,, +1610,USA,en,WNQA285,,Piney Grove (MD),39.700083,-78.380278,,0.01,,6320,294,140,,,,,,20010952,,, +1610,USA,en,WNQA287,,Myersville (MD),39.544317,-77.605278,,0.01,,6283,293,140,,,,,,20010950,,, +1610,USA,en,WNSL337,,Hancock (MD),39.115111,-77.410206,,0.01,,6304,293,140,,,,,,20011050,,, +1610,USA,en,WNSL338,,Williamsport (MD),39.410944,-77.543611,,0.01,,6290,293,140,,,,,,20011049,,, +1610,USA,en,WNVY506,,Dorsey (MD),39.195944,-76.764417,,0.01,,6257,292,140,,,,,,20011068,,, +1610,USA,en,WPED444,,Cambridge (MD),38.560986,-75.994389,,0.01,,6256,291,140,,,,,,20010852,,, +1610,USA,en,WPFK879,,Cranberry (PA),40.716444,-80.110967,,0.01,,6350,296,140,,,,,,20010850,,, +1610,USA,en,WPGK505,,Fairfax/4400 University Drive (VA),38.832056,-77.31275,,0.01,,6319,292,140,,,,,,20010819,,, +1610,USA,en,WPGS990,,Bowie (MD),38.960389,-76.694364,,0.01,,6270,292,140,,,,,,20010809,,, +1610,USA,en,WPGV481,,Old Stanton (PA),40.226472,-79.593361,,0.01,,6355,295,140,,,,,,20010795,,, +1610,USA,en,WPIG897,,Gambrills (MD),39.0665,-76.649972,,0.01,,6259,292,140,,,,,,20010816,,, +1610,USA,en,WPIY489,,Erie (PA),41.942833,-80.475917,,0.01,,6280,297,140,,,,,,20010806,,, +1610,USA,en,WPKT865,,Union Township (PA),41.5943,-80.176444,,0.01,,6288,297,140,,,,,,20010893,,, +1610,USA,en,WPLS727,,Port Huron (MI),42.99975,-82.427139,,0.01,,6318,299,140,,,,,,20010881,,, +1610,USA,en,WPMT969,,Arlington (VA),38.883333,-77.083333,,0.01,,6301,292,140,,,,,,20010857,,, +1610,USA,en,WPMU747,,Arlington (VA),38.883333,-77.083333,,0.01,,6301,292,140,,,,,,20010879,,, +1610,USA,en,WPPZ626,,Churchhill (PA),40.444308,-79.827,,0.01,,6353,295,140,,,,,,20010884,,, +1610,USA,en,WPXC773,,Hollidaysburg (PA),40.433333,-78.383333,,0.01,,6265,294,140,,,,,,20011162,,, +1610,USA,en,WPXX843,,Newburg/Gov. Nice Memorial Bridge (MD),38.363111,-76.982556,,0.01,,6334,292,140,,,,,,20011190,,, +1610,USA,en,WQHI497,,Chambersburg (PA),39.82765,-77.710961,,0.01,,6268,293,140,,,,,,20011267,,, +1610,USA,en,WQHI497,,Chambersburg (PA),39.928722,-77.644344,,0.01,,6257,293,140,,,,,,20011257,,, +1610,USA,en,WQIV322,,Ludington (MI),45.962167,-86.459889,,0.01,,6328,304,140,,,,,,20011282,,, +1610,USA,en,KNNV404,,Madison Heights (MI),42.510961,-83.127675,,0.01,,6396,299,141,,,,,,20010984,,, +1610,USA,en,KNNY474,,Warrensville Heights (OH),41.444303,-81.497611,,0.01,,6380,297,141,,,,,,20010873,,, +1610,USA,en,WNXM360,,Elyria/621 Midway Blvd (OH),41.399778,-82.242111,,0.01,,6428,298,141,,,,,,20011069,,, +1610,USA,en,WNYU723,,Harrisonburg (VA),38.444319,-78.866694,,0.01,,6447,293,141,,,,,,20011055,,, +1610,USA,en,WNZD692,,Akron (OH),41.079222,-81.52765,,0.01,,6409,297,141,,,,,,20011054,,, +1610,USA,en,WPDF247,,Richmond (VA),37.55,-77.466667,,0.01,,6427,291,141,,,,,,20011021,,, +1610,USA,en,WPFS415,,Washington (PA),40.182861,-80.228111,,0.01,,6398,295,141,,,,,,20010839,,, +1610,USA,en,WPGV481,,N Belle Vernon (PA),40.144314,-79.846167,,0.01,,6377,295,141,,,,,,20010796,,, +1610,USA,en,WPHE813,,Kirby (PA),39.797306,-80.077556,,0.01,,6418,295,141,,,,,,20010791,,, +1610,USA,en,WPJY811,,Salem/1200 E 6th St. (OH),40.910975,-80.845361,,0.01,,6380,296,141,,,,,,20010917,,, +1610,USA,en,WPKS940,,Middleburg Heights (OH),41.360972,-81.827661,,0.01,,6406,297,141,,,,,,20010894,,, +1610,USA,en,WPLQ318,,Cleveland (OH),41.480333,-81.663194,,0.01,,6387,297,141,,,,,,20010910,,, +1610,USA,en,WPLX293,,Richmond (VA),37.55,-77.466667,,0.01,,6427,291,141,,,,,,20010868,,, +1610,USA,en,WPPZ626,,Enlow (PA),40.477636,-80.227639,,0.01,,6376,296,141,,,,,,20010885,,, +1610,USA,en,WPPZ626,,Millvale (PA),40.478028,-79.976856,,0.01,,6360,295,141,,,,,,20010882,,, +1610,USA,en,WPPZ626,,Pittsburgh (PA),40.447444,-80.165444,,0.01,,6374,296,141,,,,,,20010883,,, +1610,USA,en,WPQB866,,Mount Pleasant/200 N Main St. (MI),43.610964,-84.776417,,0.01,,6410,301,141,,,,,,20010889,,, +1610,USA,en,WPRF876,,Streetsboro (OH),41.260967,-81.377653,,0.01,,6386,297,141,,,,,,20011346,,, +1610,USA,en,WPSK541,,Tallmadge (OH),41.097778,-81.421389,,0.01,,6401,297,141,,,,,,20011105,,, +1610,USA,en,WPWF986,,Ross Township (PA),40.507222,-80.043531,,0.01,,6362,295,141,,,,,,20011107,,, +1610,USA,en,WPWY441,,Wooster/130 Oldman Road (OH),40.844353,-81.944306,,0.01,,6453,297,141,,,,,,20011234,,, +1610,USA,en,WPXM377,,New Market/8895 Collins Drive (VA),38.661944,-78.670278,,0.01,,6417,293,141,,,,,,20011188,,, +1610,USA,en,WPYD802,,Clinton Township (MI),42.596111,-82.928611,,0.01,,6378,299,141,,,,,,20011158,,, +1610,USA,en,WPYF269,,Detroit/2660 West Fort Steeet (MI),42.326881,-83.075556,,0.01,,6407,299,141,,,,,,20011159,,, +1610,USA,en,WPYF538,,Wickliffe (OH),41.588889,-81.479167,,0.01,,6367,297,141,,,,,,20011160,,, +1610,USA,en,WQCF652,,Hermitage/2511 Highland Road (PA),40.241667,-80.463889,,0.01,,6408,296,141,,,,,,20011109,,, +1610,USA,en,WQEE251,,Rochester Hills/1000 Rochester Hills Rd (MI),42.661139,-83.161025,,0.01,,6387,299,141,,,,,,20011343,,, +1610,USA,en,WQFG874,,Ontonagon (MI),46.813056,-89.633056,,0.01,,6440,307,141,,,,,,20011320,,, +1610,USA,en,WQHK788,,Goochland (VA),37.611028,-77.710983,,0.01,,6438,292,141,,,,,,20011247,,, +1610,USA,en,WQHK788,,Goochland (VA),37.677644,-77.683083,,0.01,,6431,292,141,,,,,,20011276,,, +1610,USA,en,WQHK788,,Goochland (VA),37.695222,-77.894339,,0.01,,6443,292,141,,,,,,20011266,,, +1610,USA,en,WQHK788,,Goochland (VA),37.708889,-77.960278,,0.01,,6446,292,141,,,,,,20011238,,, +1610,USA,en,WQHK788,,Goochland (VA),37.844333,-77.99375,,0.01,,6438,292,141,,,,,,20011239,,, +1610,USA,en,WQHK788,,Goochland/Elementary School (VA),37.694292,-77.794778,,0.01,,6437,292,141,,,,,,20011245,,, +1610,USA,en,WQHK789,,Goochland (VA),37.744347,-78.056111,,0.01,,6449,292,141,,,,,,20011240,,, +1610,USA,en,WNMJ728,,Toledo/1189 W Central Ave (OH),41.676167,-83.577689,,0.01,,6487,299,142,,,,,,20010935,,, +1610,USA,en,WPKI666,,Grand Rapids/5500 44th St SE (MI),42.894292,-85.529194,,0.01,,6509,301,142,,,,,,20010903,,, +1610,USA,en,WPMI903,,Oak Harbor (OH),41.627633,-83.194342,,0.01,,6468,298,142,,,,,,20010871,,, +1610,USA,en,WQBV479,,Speed (NC),35.976881,-77.444306,,0.01,,6547,290,142,,,,,,20011077,,, +1610,USA,en,WQBV479,,Whitakers (NC),36.077697,-77.666611,,0.01,,6554,290,142,,,,,,20011089,,, +1610,USA,en,WQCB655,,Battle Creek (MI),42.276856,-85.198333,,0.01,,6537,300,142,,,,,,20011085,,, +1610,USA,en,WQCB655,,Battle Creek (MI),42.338889,-85.277778,,0.01,,6537,300,142,,,,,,20011088,,, +1610,USA,en,WQCB655,,Battle Creek/20 North Division St. (MI),42.327625,-85.178889,,0.01,,6532,300,142,,,,,,20011084,,, +1610,USA,en,WQDC941,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20011121,,, +1610,USA,en,WQJE902,,Blackstone (VA),37.079417,-77.998917,,0.01,,6497,291,142,,,,,,20011291,,, +1610,USA,en,WNBR326,,Morrisville (NC),35.882361,-78.660556,,0.01,,6632,291,143,,,,,,20010953,,, +1610,USA,en,WNJW446,,Chapel Hill/South Road (NC),35.910139,-79.043889,,0.01,,6655,291,143,,,,,,20010930,,, +1610,USA,en,WNXY474,,Dublin/6555 Shier Rings Road (OH),40.094167,-83.176814,,0.01,,6586,297,143,,,,,,20011057,,, +1610,USA,en,WPDM638,,Fort Wayne (IN),40.9795,-85.194367,,0.01,,6638,299,143,,,,,,20011019,,, +1610,USA,en,WPHE255,,Durham (NC),36.010997,-78.923056,,0.01,,6639,291,143,,,,,,20010799,,, +1610,USA,en,WPJN440,,Covington (VA),37.811222,-80.194306,,0.01,,6579,293,143,,,,,,20010802,,, +1610,USA,en,WPMD631,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010854,,, +1610,USA,en,WPNY994,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20011371,,, +1610,USA,en,WPPV364,,Columbus/200 Georgesville Rd (OH),39.950056,-83.111014,,0.01,,6593,297,143,,,,,,20011321,,, +1610,USA,en,WPSK550,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20011102,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),42.958667,-87.933333,,0.01,,6644,302,143,,,,,,20011203,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),43.022222,-87.926906,,0.01,,6639,302,143,,,,,,20011205,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),43.030306,-87.994294,,0.01,,6642,302,143,,,,,,20011198,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),43.110989,-88.056667,,0.01,,6639,303,143,,,,,,20011197,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),43.192111,-88.127672,,0.01,,6637,303,143,,,,,,20011196,,, +1610,USA,en,WPTM738,,Troy (OH),40.046444,-84.227686,,0.01,,6653,298,143,,,,,,20011218,,, +1610,USA,en,WPZK577,,Brookfield (WI),43.026,-88.127653,,0.01,,6650,303,143,,,,,,20011217,,, +1610,USA,en,WPZK577,,Grafton (WI),43.309,-87.927669,,0.01,,6616,303,143,,,,,,20011192,,, +1610,USA,en,WPZK577,,Milwaukee (WI),43.144356,-87.911722,,0.01,,6628,302,143,,,,,,20011195,,, +1610,USA,en,WPZK577,,New Berlin (WI),42.958667,-88.080667,,0.01,,6652,302,143,,,,,,20011219,,, +1610,USA,en,WPZK577,,Thiensville (WI),43.227653,-87.927639,,0.01,,6623,303,143,,,,,,20011226,,, +1610,USA,en,WQBV479,,Conetoe (NC),35.827669,-77.460997,,0.01,,6560,290,143,,,,,,20011076,,, +1610,USA,en,WQBV479,,Pinetops (NC),35.788333,-77.631278,,0.01,,6574,290,143,,,,,,20011075,,, +1610,USA,en,WQBV479,,Rocky Mount (NC),35.910978,-77.744308,,0.01,,6572,290,143,,,,,,20011074,,, +1610,USA,en,WQBV479,,Tarboro (NC),35.911556,-77.594367,,0.01,,6562,290,143,,,,,,20011073,,, +1610,USA,en,WQFG868,,New Bern (NC),35.116667,-77.05,,0.01,,6589,289,143,,,,,,20011330,,, +1610,USA,en,WQFU301,,Pine Knoll Shores/314 Salter Path Road (NC),34.695333,-76.824444,,0.01,,6607,288,143,,,,,,20011373,,, +1610,USA,en,KMH441,,Northfield (IL),42.094297,-87.777636,,0.01,,6703,302,144,,,,,,20010976,,, +1610,USA,en,KNIG425,,Hillside (IL),41.877631,-87.910972,,0.01,,6728,301,144,,,,,,20010971,,, +1610,USA,en,KNIG426,,Addison (IL),41.960861,-88.028389,,0.01,,6728,302,144,,,,,,20010996,,, +1610,USA,en,KNNU879,,Deerfield (WI),42.998611,-89.198722,,0.01,,6713,303,144,,,,,,20010985,,, +1610,USA,en,WNHX776,,Chicago (IL),41.810958,-87.630889,,0.01,,6717,301,144,,,,,,20010932,,, +1610,USA,en,WNVK825,,Hammond (WI),44.943306,-92.444344,,0.01,,6741,307,144,,,,,,20011051,,, +1610,USA,en,WNZG592,,Madison (WI),43.066667,-89.4,,0.01,,6720,303,144,,,,,,20011035,,, +1610,USA,en,WPED201,,Greensboro (NC),36.045417,-79.777631,,0.01,,6691,292,144,,,,,,20010840,,, +1610,USA,en,WPFP929,,Naperville (IL),41.750028,-88.125056,,0.01,,6750,301,144,,,,,,20010846,,, +1610,USA,en,WPFP929,,Naperville (IL),41.780583,-88.133389,,0.01,,6748,302,144,,,,,,20010847,,, +1610,USA,en,WPFP929,,Naperville (IL),41.79725,-88.147833,,0.01,,6748,302,144,,,,,,20010844,,, +1610,USA,en,WPGG384,,Wytheville (VA),36.960983,-81.094308,,0.01,,6702,293,144,,,,,,20010837,,, +1610,USA,en,WPKX383,,Lexington (NC),35.742361,-80.362278,,0.01,,6752,292,144,,,,,,20010919,,, +1610,USA,en,WPPG958,,Carolina Beach (NC),34.044333,-77.911025,,0.01,,6729,289,144,,,,,,20011333,,, +1610,USA,en,WPSK564,,West Alexandria (OH),39.744167,-84.527222,,0.01,,6695,298,144,,,,,,20011110,,, +1610,USA,en,WPTJ444,,Waukesha (WI),43.05,-88.293572,,0.01,,6657,303,144,,,,,,20011230,,, +1610,USA,en,WPVW207,,Kettering (OH),39.693583,-84.147139,,0.01,,6676,297,144,,,,,,20011339,,, +1610,USA,en,WPZK577,,Kenosha (WI),42.589167,-87.960214,,0.01,,6674,302,144,,,,,,20011221,,, +1610,USA,en,WQDX479,,Pine City/12551 Voyageur Lane (MN),45.8225,-93.0075,,0.01,,6701,308,144,,,,,,20011216,,, +1610,USA,en,WQEL334,,Surf City/102 Juniper Trail (NC),34.461006,-77.565278,,0.01,,6674,289,144,,,,,,20011344,,, +1610,USA,en,WZM835,,Hebron/Cincinnati-KY Airport (OH),39.077636,-84.661019,,0.01,,6755,297,144,,,,,,20011295,,, +1610,USA,en,KNIJ419,,Nashville (IN),39.149222,-86.228333,,0.01,,6845,298,145,,,,,,20010995,,, +1610,USA,en,KNNM248,,Ottawa (IL),41.34975,-88.793417,,0.01,,6821,302,145,,,,,,20010991,,, +1610,USA,en,KNNU862,,Florence (SC),34.194339,-79.644303,,0.01,,6829,290,145,,,,,,20010997,,, +1610,USA,en,WNMQ215,,Saint Paul (MN),44.982472,-93.262167,,0.01,,6782,307,145,,,,,,20010958,,, +1610,USA,en,WNVK825,,Woodbury (WI),44.947472,-92.911019,,0.01,,6766,307,145,,,,,,20011040,,, +1610,USA,en,WPBX286,,Saint Paul (MN),44.95,-93.1,,0.01,,6776,307,145,,,,,,20011031,,, +1610,USA,en,WPCD785,,Bloomington/500 W Simpson Chapel Rd (IN),39.282,-86.523611,,0.01,,6852,299,145,,,,,,20011029,,, +1610,USA,en,WPCE615,,Utica/Starved Rock State Park (IL),41.316694,-88.997306,,0.01,,6835,302,145,,,,,,20011027,,, +1610,USA,en,WPFZ723,,Richmond/130 Carr Lane (KY),37.798694,-84.327692,,0.01,,6836,296,145,,,,,,20010815,,, +1610,USA,en,WPKX383,,Kanapolis (NC),35.497083,-80.566167,,0.01,,6784,292,145,,,,,,20010918,,, +1610,USA,en,WPKX437,,Big Stone Gap (VA),36.860978,-82.761008,,0.01,,6814,294,145,,,,,,20010912,,, +1610,USA,en,WPLU260,,New Whiteland (IN),39.560967,-86.106944,,0.01,,6804,298,145,,,,,,20010891,,, +1610,USA,en,WPMG253,,Moorhead (MN),46.8777,-96.727306,,0.01,,6813,311,145,,,,,,20010862,,, +1610,USA,en,WPPC978,,Indianapolis/1004 W Vermont St. (IN),39.775056,-86.173056,,0.01,,6791,299,145,,,,,,20011396,,, +1610,USA,en,WPPH325,,Indianapolis (IN),39.775056,-86.173056,,0.01,,6791,299,145,,,,,,20011326,,, +1610,USA,en,WPPH326,,Indianapolis (IN),39.775056,-86.173056,,0.01,,6791,299,145,,,,,,20011325,,, +1610,USA,en,WPTZ502,,Westfield (IN),40.05975,-86.128028,,0.01,,6766,299,145,,,,,,20011176,,, +1610,USA,en,WQBT682,,Winchester (KY),38.010986,-84.22765,,0.01,,6813,296,145,,,,,,20011080,,, +1610,USA,en,WQCV448,,Aynor/1800 Highway 501 North (SC),34.016667,-79.226897,,0.01,,6816,290,145,,,,,,20011114,,, +1610,USA,en,WQDL429,,Owatonna/3900 West Frontage Road (MN),44.130111,-93.261,,0.01,,6851,306,145,,,,,,20011126,,, +1610,USA,en,WQGT919,,Northfield (MN),44.461014,-93.164278,,0.01,,6819,307,145,,,,,,20011375,,, +1610,USA,en,WPAB672,,Corbin (KY),36.910639,-84.133,,0.01,,6895,295,146,,,,,,20011010,,, +1610,USA,en,WPBC251,,Princeton (IL),41.377631,-89.477644,,0.01,,6858,302,146,,,,,,20011007,,, +1610,USA,en,WPCD785,,Bloomington (IN),39.177833,-86.51,,0.01,,6859,298,146,,,,,,20011030,,, +1610,USA,en,WPCD785,,Bloomington/100 W Dillman Road (IN),39.094222,-86.548611,,0.01,,6868,298,146,,,,,,20011028,,, +1610,USA,en,WPCI801,,Louisville (KY),38.25,-85.766667,,0.01,,6888,297,146,,,,,,20011026,,, +1610,USA,en,WPJT281,,Le Claire/900 Eagle Ridge Road (IA),41.594297,-90.377658,,0.01,,6893,303,146,,,,,,20010841,,, +1610,USA,en,WPNQ589,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010863,,, +1610,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010886,,, +1610,USA,en,WPQA407,,Peoria/101 Lorentz St. (IL),40.727633,-89.560978,,0.01,,6915,302,146,,,,,,20010880,,, +1610,USA,en,WPTZ502,,Underwood (IN),38.594344,-85.779722,,0.01,,6862,298,146,,,,,,20011175,,, +1610,USA,en,WPUN647,,Terre Haute (IL),39.446944,-87.446111,,0.01,,6894,299,146,,,,,,20011093,,, +1610,USA,en,WPZW904,,Clyde (NC),35.544325,-82.927658,,0.01,,6929,293,146,,,,,,20011224,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.131389,-85.644367,,0.01,,6890,297,146,,,,,,20011397,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.146389,-85.808056,,0.01,,6899,297,146,,,,,,20011395,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.24435,-85.525917,,0.01,,6874,297,146,,,,,,20011394,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.249861,-85.778306,,0.01,,6889,297,146,,,,,,20011393,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.264667,-85.677678,,0.01,,6882,297,146,,,,,,20011398,,, +1610,USA,en,WQFX538,,Clyde (NC),35.544317,-82.911833,,0.01,,6928,293,146,,,,,,20011370,,, +1610,USA,en,WNKX409,,Ames (IA),42.094367,-93.566889,,0.01,,7033,305,147,,,,,,20010951,,, +1610,USA,en,WPAA521,,Charleston (SC),32.844336,-79.963417,,0.01,,6957,289,147,,,,,,20011011,,, +1610,USA,en,WPQZ702,,Athens (IL),39.960972,-89.677658,,0.01,,6984,301,147,,,,,,20011359,,, +1610,USA,en,WPQZ702,,Petersburg (IL),39.965056,-89.844322,,0.01,,6994,301,147,,,,,,20011360,,, +1610,USA,en,WPUA399,,Folly Beach/21 Center Street (SC),32.660972,-79.944358,,0.01,,6971,289,147,,,,,,20011157,,, +1610,USA,en,WPUN647,,Springfield (IL),39.8,-89.65,,0.01,,6996,301,147,,,,,,20011161,,, +1610,USA,en,WPVB565,,Beaufort (SC),32.363778,-80.877678,,0.01,,7055,289,147,,,,,,20011318,,, +1610,USA,en,WPVB565,,Beaufort/Lady's Island Fire Department (SC),32.410983,-80.644364,,0.01,,7036,289,147,,,,,,20011135,,, +1610,USA,en,WQDL503,,Bismarck (ND),46.831667,-100.793514,,0.01,,7024,313,147,,,,,,20011127,,, +1610,USA,en,WQIV246,,Ellendale (ND),46.01675,-98.527675,,0.01,,6977,311,147,,,,,,20011280,,, +1610,USA,en,WPMP254,,Nashville (TN),36.144306,-86.676831,,0.01,,7114,296,148,,,,,,20010859,,, +1610,USA,en,WPNY753,,Tullahoma/201 W Grundy St. (TN),35.36175,-86.213056,,0.01,,7149,295,148,,,,,,20011381,,, +1610,USA,en,WPQX600,,Watkinsville (GA),33.866667,-83.416667,,0.01,,7095,292,148,,,,,,20011305,,, +1610,USA,en,WPQX600,,Watkinsville/1291 Greensboro Hwy (GA),33.860986,-83.399611,,0.01,,7095,292,148,,,,,,20011309,,, +1610,USA,en,WPTZ519,,Brentwood/13 Robert E Lee Way (TN),35.989444,-86.8225,,0.01,,7135,296,148,,,,,,20011178,,, +1610,USA,en,WPWA750,,Marion (IL),37.728333,-88.975833,,0.01,,7124,299,148,,,,,,20011255,,, +1610,USA,en,WPWA784,,Culbertson (MT),48.146833,-104.511006,,0.01,,7094,316,148,,,,,,20011368,,, +1610,USA,en,WPZK220,,Calvert City/1315 Fifth Avenue (KY),37.026839,-88.344292,,0.01,,7143,298,148,,,,,,20011170,,, +1610,USA,en,WQBJ215,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011092,,, +1610,ALS,en,WPHC769,,Anchorage/3211 Providence Dr (AK),61.191944,-149.81525,,0.01,,7241,348,149,,,,,,20012313,,, +1610,ARG,es,R Maranata AM,,Puerto Iguaz (mn),-25.6,-54.566667,,1,,10468,232,149,,0000-2400,1234567,,,51921,,, +1610,PRU,,R Carabamba,,Julcan (jun),-11.733333,-75.416667,,1,,10486,256,149,,,,15,,2197,,, +1610,PRU,,R Haquira,,Haquira (apu),-14.216667,-72.183333,,1,,10493,252,149,,,,4,,2198,,, +1610,PRU,,R Inka,,Puno (pun),-15.844444,-70.025,,1,,10498,250,149,,,,,,37000111,,, +1610,USA,en,WNWU238,,Paducah/4810 Blandville Road (KY),37.060969,-88.658944,,0.01,,7159,298,149,,,,,,20011066,,, +1610,USA,en,WPIX910,,Jefferson City (MO),38.583333,-92.166667,,0.01,,7242,302,149,,,,,,20010808,,, +1610,USA,en,WPKL577,,Mount Pleasant/108 Public Square (TN),35.544308,-87.2075,,0.01,,7195,296,149,,,,,,20010896,,, +1610,USA,en,WPKL577,,Spring Hill (TN),35.731722,-86.953611,,0.01,,7164,296,149,,,,,,20010907,,, +1610,USA,en,WPKW668,,Perry (GA),32.443472,-83.761014,,0.01,,7233,291,149,,,,,,20010915,,, +1610,USA,en,WPTK859,,Forsyth (GA),33.033111,-83.944319,,0.01,,7197,292,149,,,,,,20011220,,, +1610,USA,en,WPWA784,,Wibaux (MT),47,-104.216667,,0.01,,7178,315,149,,,,,,20011365,,, +1610,USA,en,WPWV584,,Pierre (SD),44.366667,-100.35,,0.01,,7209,311,149,,,,,,20011199,,, +1610,ALS,en,WPTI714,,Portage (AK),60.844167,-148.982222,,0.01,,7266,347,150,,,,,,20012315,,, +1610,ARG,,R Exitos,,Ituzaingo (cn),-27.566667,-56.666667,,1,,10766,233,150,,,,,,51920,,, +1610,USA,en,WPAC848,,Saint Augustine (FL),29.8777,-81.294308,,0.01,,7285,288,150,,,,,,20011009,,, +1610,USA,en,WPKX395,,Bonner springs (KS),39.097222,-94.881083,,0.01,,7355,304,150,,,,,,20010913,,, +1610,USA,en,WPLY698,,Bonner springs (KS),39.097222,-94.881083,,0.01,,7355,304,150,,,,,,20010870,,, +1610,USA,en,WPUQ404,,Hoover (AL),33.383333,-86.807222,,0.01,,7348,294,150,,,,,,20011361,,, +1610,USA,en,WPUQ404,,Hoover (AL),33.4,-86.816667,,0.01,,7347,294,150,,,,,,20011384,,, +1610,USA,en,WPWA756,,Blue Springs (MO),39.044306,-94.341667,,0.01,,7329,303,150,,,,,,20011382,,, +1610,USA,en,WPWA756,,Liberty (MO),39.226822,-94.475639,,0.01,,7321,304,150,,,,,,20011374,,, +1610,USA,en,WQBX883,,Leeds (AL),33.542833,-86.610972,,0.01,,7322,294,150,,,,,,20011070,,, +1610,USA,en,WQEY818,,Palm Coast/4510 Belle Terre Parkway (FL),29.5305,-81.227631,,0.01,,7309,288,150,,,,,,20011327,,, +1610,USA,en,WQGU299,,Florence (AL),34.827686,-87.659222,,0.01,,7282,296,150,,,,,,20011376,,, +1610,USA,en,WQI284,,Kansas City (MO),39.312222,-94.711033,,0.01,,7328,304,150,,,,,,20011319,,, +1610,USA,en,WNDX581,,Memphis (TN),35.044308,-89.994314,,0.01,,7406,298,151,,,,,,20010941,,, +1610,USA,en,WNDX581,,Memphis (TN),35.060361,-89.99675,,0.01,,7405,298,151,,,,,,20010940,,, +1610,USA,en,WNDX581,,Memphis (TN),35.077642,-89.960981,,0.01,,7401,298,151,,,,,,20010939,,, +1610,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010956,,, +1610,USA,en,WPGU770,,Hardin (MT),45.74525,-107.544308,,0.01,,7446,316,151,,,,,,20010797,,, +1610,USA,en,WPIX911,,Branson (MO),36.643111,-92.227672,,0.01,,7407,300,151,,,,,,20010817,,, +1610,USA,en,WPKX395,,East Topeka (KS),39.028611,-95.6277,,0.01,,7403,304,151,,,,,,20010925,,, +1610,USA,en,WPKX395,,West Lawrence (KS),38.989167,-95.261031,,0.01,,7386,304,151,,,,,,20010914,,, +1610,USA,en,WPLY698,,East Topeka (KS),39.028611,-95.6277,,0.01,,7403,304,151,,,,,,20010866,,, +1610,USA,en,WPLY698,,West Lawrence (KS),38.989167,-95.261031,,0.01,,7386,304,151,,,,,,20010865,,, +1610,USA,en,WPQD502,,Ocala (FL),29.19525,-82.179806,,0.01,,7399,288,151,,,,,,20010878,,, +1610,USA,en,WPQH630,,Kearney (NE),40.676897,-99.042583,,0.01,,7453,307,151,,,,,,20011296,,, +1610,USA,en,WPRF526,,Melbourne Beach (FL),28.061417,-80.560611,,0.01,,7387,286,151,,,,,,20011358,,, +1610,USA,en,WPWU365,,Custer (SD),43.827686,-103.638333,,0.01,,7423,312,151,,,,,,20011194,,, +1610,USA,en,WQBQ322,,Deltona/1685 Providence Blvd (FL),28.906667,-81.225833,,0.01,,7360,287,151,,,,,,20011100,,, +1610,USA,en,WQGS506,,Micanopy (FL),29.559667,-82.330528,,0.01,,7378,288,151,,,,,,20011363,,, +1610,ARG,,R Guayviy,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,996,,52659,,, +1610,ARG,es,AM Fortaleza,,Ezeiza/Calle Independencia 646 (ba),-34.85,-58.533333,,1,,11535,230,152,,,,,,33000001,,, +1610,PRU,,OAU60 R El Sabor,,Arequipa (are),-16.4,-71.55,,0.5,,10645,251,152,,,,32,,2277,,, +1610,PRU,es,OAU6O R Flor de los Andes,,Jos Luis Bustamente y Rivero (are),-16.433333,-71.516667,,0.5,,10646,251,152,,,,144,,37000116,,, +1610,USA,en,WPDA943,,Sunrise (FL),26.15,-80.330833,,0.01,,7530,284,152,,,,,,20011022,,, +1610,USA,en,WPDA943,,Sunrise (FL),26.176881,-80.291667,,0.01,,7525,284,152,,,,,,20011033,,, +1610,USA,en,WPED445,,Emporia (KS),38.413611,-96.243547,,0.01,,7490,304,152,,,,,,20010826,,, +1610,USA,en,WPKJ773,,Bartow (FL),27.9,-81.85,,0.01,,7484,287,152,,,,,,20010900,,, +1610,USA,en,WPKJ773,,Lakeland/4225 Ewell Road (FL),27.960961,-82.044308,,0.01,,7492,287,152,,,,,,20010901,,, +1610,USA,en,WPKN330,,Rogers/3101 W Oak St (AR),36.33175,-94.166306,,0.01,,7546,301,152,,,,,,20010895,,, +1610,USA,en,WPKX395,,Admire (KS),38.660189,-96.030556,,0.01,,7457,304,152,,,,,,20010916,,, +1610,USA,en,WPLY698,,Admire (KS),38.660189,-96.030556,,0.01,,7457,304,152,,,,,,20010867,,, +1610,USA,en,WPLY701,,Tarpon Springs (FL),28.142778,-82.744722,,0.01,,7523,288,152,,,,,,20010864,,, +1610,USA,en,WPMU718,,Conway/1105 Prairie St. (AR),35.094311,-92.444339,,0.01,,7549,299,152,,,,,,20010856,,, +1610,USA,en,WPQG483,,Cassoday (KS),38.060958,-96.644297,,0.01,,7543,304,152,,,,,,20010978,,, +1610,USA,en,WPZK221,,Fort Lauderdale/730 North Federal Highway (FL),26.126814,-80.143497,,0.01,,7519,284,152,,,,,,20011171,,, +1610,USA,en,WQFG712,,Fredonia (KS),37.5443,-95.812833,,0.01,,7539,303,152,,,,,,20011340,,, +1610,USA,en,WQFG985,,Ulm/2 Millegan Road (MT),47.432528,-111.510972,,0.01,,7478,320,152,,,,,,20011332,,, +1610,USA,en,WYZ235,,Tampa/Int.Airport (FL),27.976694,-82.532306,,0.01,,7523,287,152,,,,,,20011294,,, +1610,USA,en,KNNY473,,Key Largo (FL),25.211222,-80.427639,,0.01,,7615,284,153,,,,,,20010981,,, +1610,USA,en,WPHN567,,Dover (ID),48.261011,-116.643806,,0.01,,7621,323,153,,,,,,20010792,,, +1610,USA,en,WPJL233,,Newton (KS),38.025,-97.344292,,0.01,,7585,305,153,,,,,,20010805,,, +1610,USA,en,WPQG483,,El Dorado (KS),37.827628,-96.910958,,0.01,,7578,304,153,,,,,,20010876,,, +1610,USA,en,WPQG483,,Wellington (KS),37.277633,-97.344303,,0.01,,7649,304,153,,,,,,20010877,,, +1610,USA,en,WPQG483,,Wichita (KS),37.675861,-97.228389,,0.01,,7608,304,153,,,,,,20010875,,, +1610,USA,en,WPTR459,,Little Rock (AR),34.744364,-92.277692,,0.01,,7569,299,153,,,,,,20011164,,, +1610,USA,en,WPTR459,,Mabevale (AR),34.677625,-92.394317,,0.01,,7581,299,153,,,,,,20011165,,, +1610,USA,en,WPUW403,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20011250,,, +1610,USA,en,WPWA784,,Clark Fork (MT),48.093333,-116.093333,,0.01,,7614,323,153,,,,,,20011385,,, +1610,USA,en,WPWA784,,Three Forks (MT),45.911667,-111.498611,,0.01,,7614,319,153,,,,,,20011386,,, +1610,USA,en,WPWA784,,Troy (MT),48.4725,-115.911017,,0.01,,7571,323,153,,,,,,20011369,,, +1610,USA,en,WQAL914,,Helena (MT),46.6,-112.033333,,0.01,,7576,319,153,,,,,,20011206,,, +1610,USA,en,WQAW405,,Miami/Int.Airport (FL),25.797528,-80.293361,,0.01,,7557,284,153,,,,,,20011211,,, +1610,USA,en,WQBN524,,Pensacola (FL),30.566694,-87.383556,,0.01,,7618,293,153,,,,,,20011097,,, +1610,USA,en,WQGH480,,McIntosh/Police Dept. (AL),31.277667,-88.043556,,0.01,,7600,294,153,,,,,,20011372,,, +1610,USA,en,WQGU312,,Cape Coral (FL),26.596556,-81.981639,,0.01,,7602,286,153,,,,,,20011378,,, +1610,USA,en,WQGU312,,Cape Coral (FL),26.677697,-82.009083,,0.01,,7597,286,153,,,,,,20011377,,, +1610,USA,en,WQHN733,,Torrington (WY),42.0777,-104.194322,,0.01,,7604,312,153,,,,,,20011243,,, +1610,USA,en,WQHN733,,Wheatland (WY),42.044361,-104.96575,,0.01,,7646,312,153,,,,,,20011244,,, +1610,USA,en,WQHN733,,Worland (WY),44.027644,-107.931722,,0.01,,7617,315,153,,,,,,20011256,,, +1610,USA,en,WQHS744,,Casper (WY),42.877658,-106.344083,,0.01,,7641,314,153,,,,,,20011237,,, +1610,USA,en,WQHS744,,Cody (WY),44.512028,-109.014639,,0.01,,7625,316,153,,,,,,20011268,,, +1610,USA,en,WQHS744,,Douglas (WY),42.761583,-105.411022,,0.01,,7605,313,153,,,,,,20011300,,, +1610,USA,en,WQIQ627,,Clearwater (MT),47.011028,-113.377678,,0.01,,7598,320,153,,,,,,20011317,,, +1610,USA,en,WQJE903,,Evaro (MT),47.076831,-114.070833,,0.01,,7622,321,153,,,,,,20011292,,, +1610,USA,en,WNHL839,,Spokane (WA),47.564056,-117.627689,,0.01,,7726,323,154,,,,,,20010934,,, +1610,USA,en,WNHL839,,Spokane (WA),47.711008,-117.063806,,0.01,,7689,323,154,,,,,,20010926,,, +1610,USA,en,WNMV556,,Vicksburg (MS),32.342639,-90.860983,,0.01,,7685,296,154,,,,,,20010957,,, +1610,USA,en,WPHF829,,Spokane (WA),47.631556,-117.527444,,0.01,,7716,323,154,,,,,,20010790,,, +1610,USA,en,WPJZ253,,Laramie (WY),41.281917,-105.526881,,0.01,,7741,312,154,,,,,,20010906,,, +1610,USA,en,WPKI981,,Dodge City/500 W Trail St. (KS),37.7943,-100.044333,,0.01,,7755,306,154,,,,,,20010902,,, +1610,USA,en,WPLP689,,Cheyenne (WY),41.133333,-104.816667,,0.01,,7718,311,154,,,,,,20010911,,, +1610,USA,en,WQBA735,,Buford (WY),41.127658,-105.310986,,0.01,,7744,312,154,,,,,,20011212,,, +1610,USA,en,WQCL720,,Jet (OK),36.742667,-98.132333,,0.01,,7739,304,154,,,,,,20011130,,, +1610,USA,en,WQFQ782,,Dubois (WY),43.548167,-109.677633,,0.01,,7743,316,154,,,,,,20011388,,, +1610,USA,en,WQHS744,,Alcova (WY),42.494028,-107.144353,,0.01,,7715,314,154,,,,,,20011303,,, +1610,USA,en,WQHS744,,Dubois (WY),43.694317,-109.962111,,0.01,,7743,316,154,,,,,,20011302,,, +1610,USA,en,WQHS744,,Riverton (WY),43.011,-108.381944,,0.01,,7729,315,154,,,,,,20011304,,, +1610,USA,en,WNWU499,,Oklahoma City (OK),35.466667,-97.516667,,0.01,,7814,303,155,,,,,,20011065,,, +1610,USA,en,WPKC467,,Denver (CO),39.733333,-104.983333,,0.01,,7850,311,155,,,,,,20010905,,, +1610,USA,en,WPPZ664,,Loveland/2539 N Custer Drive (CO),40.427692,-105.094364,,0.01,,7795,311,155,,,,,,20010872,,, +1610,USA,en,WPRW858,,Scenic (WA),47.746111,-121.088056,,0.01,,7846,326,155,,,,,,20011087,,, +1610,USA,en,WPTC509,,Rawlins/301 East Airport Road (WY),41.792278,-107.211025,,0.01,,7781,313,155,,,,,,20011208,,, +1610,USA,en,WPTC509,,Walcott (WY),41.742639,-106.829583,,0.01,,7766,313,155,,,,,,20011207,,, +1610,USA,en,WPUL478,,Leavenworth/90 Mill Street (WA),47.590833,-120.671389,,0.01,,7845,325,155,,,,,,20011213,,, +1610,USA,en,WPVC279,,Pomeroy (WA),46.474167,-117.612222,,0.01,,7827,323,155,,,,,,20011287,,, +1610,USA,en,WPVC282,,Clarkston (WA),46.426897,-117.070278,,0.01,,7809,322,155,,,,,,20011289,,, +1610,USA,en,WQFQ782,,Moran Junction (WY),43.841944,-110.511017,,0.01,,7756,317,155,,,,,,20011387,,, +1610,USA,en,WQHN733,,Lander (WY),42.729167,-108.645889,,0.01,,7767,315,155,,,,,,20011246,,, +1610,ARG,,R Buenas Nuevas,,Laboulaye (cb),-34.116667,-63.366667,,0.5,,11729,234,156,,,,,,51922,,, +1610,USA,en,KNEF687,,Cle Elum (WA),47.194322,-120.92765,,0.01,,7893,325,156,,,,,,20010970,,, +1610,USA,en,KNEF687,,Ellensburg (WA),47.010994,-120.594311,,0.01,,7897,325,156,,,,,,20010972,,, +1610,USA,en,KNEF687,,Hyak (WA),47.425389,-121.414528,,0.01,,7890,326,156,,,,,,20010979,,, +1610,USA,en,KNEF687,,Northbend (WA),47.480111,-121.794322,,0.01,,7899,326,156,,,,,,20010962,,, +1610,USA,en,KNNV605,,Idaho Falls (ID),43.527681,-112.059417,,0.01,,7856,318,156,,,,,,20010982,,, +1610,USA,en,KNNV605,,Pocatello (ID),42.861014,-112.427697,,0.01,,7934,317,156,,,,,,20010983,,, +1610,USA,en,WNHC788,,Monroe (WA),47.8665,-121.981806,,0.01,,7869,326,156,,,,,,20010936,,, +1610,USA,en,WNVQ843,,Port Angeles (WA),48.114806,-123.432694,,0.01,,7900,327,156,,,,,,20011038,,, +1610,USA,en,WPEA526,,Othello (WA),46.827658,-119.138056,,0.01,,7856,324,156,,,,,,20010874,,, +1610,USA,en,WPKL360,,Woodinville (WA),47.760986,-122.164,,0.01,,7886,326,156,,,,,,20010890,,, +1610,USA,en,WPKV296,,Zillah/320 Cutler Way (WA),46.411528,-120.277633,,0.01,,7941,324,156,,,,,,20010892,,, +1610,USA,en,WPLR917,,Baton Rouge (LA),30.512417,-91.159,,0.01,,7858,295,156,,,,,,20010909,,, +1610,USA,en,WPQH924,,Ramah (LA),30.411014,-91.510992,,0.01,,7889,295,156,,,,,,20011286,,, +1610,USA,en,WPQH925,,East Iberville (LA),30.209917,-91.130667,,0.01,,7882,295,156,,,,,,20011281,,, +1610,USA,en,WPSH253,,Pendleton (OR),45.663333,-118.776667,,0.01,,7952,323,156,,,,,,20011072,,, +1610,USA,en,WPTJ537,,Cripple Creek (CO),38.75,-105.195,,0.01,,7948,310,156,,,,,,20011229,,, +1610,USA,en,WPUI731,,Pendleton (OR),45.660444,-118.782361,,0.01,,7952,323,156,,,,,,20011227,,, +1610,USA,en,WPUJ642,,Kingston (WA),47.811028,-122.577689,,0.01,,7897,326,156,,,,,,20011209,,, +1610,USA,en,WPVC272,,Dayton (WA),46.311667,-117.992778,,0.01,,7858,323,156,,,,,,20011308,,, +1610,USA,en,WPWZ971,,Roslyn (WA),47.246972,-121.194328,,0.01,,7898,325,156,,,,,,20011233,,, +1610,USA,en,WPXA477,,North Bend (WA),47.396417,-121.497583,,0.01,,7896,326,156,,,,,,20011232,,, +1610,USA,en,WPXG660,,Baton Rouge (LA),30.45,-91.15,,0.01,,7863,295,156,,,,,,20011155,,, +1610,USA,en,WPYR637,,George (WA),47.082917,-119.860889,,0.01,,7861,324,156,,,,,,20011166,,, +1610,USA,en,WQAG362,,Richland (WA),46.260389,-119.427639,,0.01,,7922,324,156,,,,,,20011200,,, +1610,USA,en,WQBJ389,,Rock Springs (WY),41.561006,-109.311028,,0.01,,7905,315,156,,,,,,20011095,,, +1610,USA,en,WQBJ389,,Rock Springs (WY),41.593667,-109.194361,,0.01,,7896,315,156,,,,,,20011096,,, +1610,USA,en,WQBX491,,Davis (OK),34.4277,-97.143444,,0.01,,7882,302,156,,,,,,20011079,,, +1610,USA,en,WQFW846,,La Grande (OR),45.332556,-118.064222,,0.01,,7953,322,156,,,,,,20011367,,, +1610,USA,en,WQIY296,,Pueblo (CO),38.310556,-104.577778,,0.01,,7955,309,156,,,,,,20011278,,, +1610,USA,en,KNAX787,,The Dalles (OR),45.610986,-121.181472,,0.01,,8054,324,157,,,,,,20010975,,, +1610,USA,en,KNFG751,,Toutle (WA),46.327656,-122.744322,,0.01,,8046,326,157,,,,,,20010969,,, +1610,USA,en,WPHF897,,South Bend (WA),46.678722,-123.760722,,0.01,,8051,327,157,,,,,,20010787,,, +1610,USA,en,WPHF897,,Tumwater (WA),47.000083,-122.910972,,0.01,,7988,326,157,,,,,,20010788,,, +1610,USA,en,WPSH253,,Boardman (OR),45.833,-119.766667,,0.01,,7976,324,157,,,,,,20011071,,, +1610,USA,en,WPUI731,,Boardman (OR),45.833,-119.776872,,0.01,,7976,324,157,,,,,,20011215,,, +1610,USA,en,WPUL479,,Maryhill (WA),45.696417,-120.827656,,0.01,,8032,324,157,,,,,,20011133,,, +1610,USA,en,WPVW617,,DuPont (WA),47.094294,-122.643444,,0.01,,7968,326,157,,,,,,20011259,,, +1610,USA,en,WQBJ389,,Evanston (WY),41.259139,-110.994356,,0.01,,8013,315,157,,,,,,20011094,,, +1610,USA,en,WQEL572,,LaPush (WA),47.913056,-124.643547,,0.01,,7964,328,157,,,,3,,20011341,,, +1610,USA,en,WQEL572,,Westport (WA),46.904167,-124.110189,,0.01,,8042,327,157,,,,,,20011353,,, +1610,USA,en,WQHF993,,Corsicana (TX),32.03,-96.471667,,0.01,,8050,300,157,,,,,,20011261,,, +1610,USA,en,WQIH846,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20011299,,, +1610,USA,en,WNZF322,,Baytown/10500 Pinehurst Dr (TX),29.794353,-94.911014,,0.01,,8150,297,158,,,,,,20011025,,, +1610,USA,en,WNZF322,,Baytown/201 E Wye Drive (TX),29.761022,-94.961028,,0.01,,8155,297,158,,,,,,20011053,,, +1610,USA,en,WPAX543,,Hammond/Mooring Basin (OR),46.210986,-123.960994,,0.01,,8104,327,158,,,,,,20011005,,, +1610,USA,en,WPMC553,,Raton (CO),36.992528,-104.474444,,0.01,,8066,309,158,,,,,,20010803,,, +1610,USA,en,WPMZ421,,Amarillo/5715 Canyon Drive (TX),35.160969,-101.879361,,0.01,,8087,306,158,,,,,,20010861,,, +1610,USA,en,WPWK548,,Forest Grove (OR),45.660172,-123.275278,,0.01,,8131,326,158,,,,,,20011098,,, +1610,USA,en,WQCA312,,Gresham/1333 NW Eastman Parkway (OR),45.511025,-122.444294,,0.01,,8113,325,158,,,,,,20011083,,, +1610,USA,en,WQCI718,,Beaverton/4755 SW Griffith Drive (OR),45.494361,-122.797389,,0.01,,8128,325,158,,,,,,20011134,,, +1610,USA,en,WQCY923,,Madras (OR),44.666667,-121.127683,,0.01,,8142,324,158,,,,,,20011119,,, +1610,USA,en,WQEL572,,Ilwaco/Fort Canby Road (WA),46.2775,-124.040833,,0.01,,8100,327,158,,,,,,20011354,,, +1610,PRG,,R.Colegio Tecnico Municipal,,emby (cet),-25.366667,-57.6,,0.1,,10613,235,159,,1000-2000,12345..,,,51741,,, +1610,USA,en,WNZF322,,Baytown/7210 Bayway Drive (TX),29.777686,-95.031583,,0.01,,8158,297,159,,,,,,20010999,,, +1610,USA,en,WPTS344,,Brookshire (TX),29.777778,-95.976831,,0.01,,8215,298,159,,,,,,20011185,,, +1610,USA,en,WPTS344,,Galveston (TX),29.293547,-94.864167,,0.01,,8190,297,159,,,,,,20011193,,, +1610,USA,en,WPTS344,,Houston (TX),29.482778,-95.410147,,0.01,,8207,297,159,,,,,,20011181,,, +1610,USA,en,WPTS344,,Houston (TX),29.561111,-95.689444,,0.01,,8217,298,159,,,,,,20011180,,, +1610,USA,en,WPWK548,,Tillamook (OR),45.493333,-123.6125,,0.01,,8160,326,159,,,,,,20011090,,, +1610,USA,en,WPXH924,,Clute/206 Stratton Ridge Road (DC),29.060983,-95.360967,,0.01,,8240,297,159,,,,,,20011179,,, +1610,USA,en,WPXH924,,Freeport (DC),28.925972,-95.359028,,0.01,,8252,297,159,,,,,,20011177,,, +1610,USA,en,WPXH924,,Freeport/2301 Brazosport Blvd (DC),28.99,-95.410989,,0.01,,8250,297,159,,,,,,20011154,,, +1610,USA,en,WPXH924,,Lake Jackson (DC),29.060986,-95.46,,0.01,,8246,297,159,,,,,,20011183,,, +1610,USA,en,WPXH924,,Oyster Creek (DC),29.010222,-95.331778,,0.01,,8243,297,159,,,,,,20011128,,, +1610,USA,en,WPXH924,,Surfside/2213 Blue Water Highway (DC),28.976278,-95.261031,,0.01,,8242,297,159,,,,,,20011174,,, +1610,USA,en,WQCY923,,Prineville/498 SE Lynn Blvd (OR),44.293806,-120.842444,,0.01,,8166,324,159,,,,,,20011118,,, +1610,USA,en,WQCY923,,Redmond/3893 SW Airport Way (OR),44.244322,-121.180583,,0.01,,8185,324,159,,,,,,20011117,,, +1610,USA,en,WQDR701,,Manti (UT),39.277664,-111.63025,,0.01,,8225,315,159,,,,,,20011129,,, +1610,USA,en,WQEL382,,Depoe Bay (OR),44.81,-124.06,,0.01,,8243,326,159,,,,,,20011347,,, +1610,USA,en,WQEL382,,Garibaldi (OR),45.559,-123.927669,,0.01,,8165,326,159,,,,,,20011345,,, +1610,USA,en,WQEL629,,Tucumcari (NM),35.176906,-103.680667,,0.01,,8185,307,159,,,,,,20011331,,, +1610,USA,en,WQFT995,,Lubbock/115 N Indiana Avenue (TX),33.599167,-101.888056,,0.01,,8225,305,159,,,,,,20011364,,, +1610,USA,en,WQGW426,,Fairview (UT),39.630611,-111.444331,,0.01,,8184,315,159,,,,,,20011379,,, +1610,USA,en,WQGW426,,Huntington (UT),39.344317,-110.980639,,0.01,,8187,314,159,,,,,,20011380,,, +1610,USA,en,WNGV539,,Austin/360 Manor Road (TX),30.294344,-97.710239,,0.01,,8274,300,160,,,,,,20010938,,, +1610,USA,en,WNLA427,,Reedsport (OR),43.694833,-124.032611,,0.01,,8351,325,160,,,,,,20010933,,, +1610,USA,en,WNQU737,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010989,,, +1610,USA,en,WPEZ840,,Austin/Mansfield Dam Hwy 620 (TX),30.39435,-97.905556,,0.01,,8277,300,160,,,,,,20010835,,, +1610,USA,en,WPEZ840,,Buchanan Dam (TX),30.761008,-98.427625,,0.01,,8276,300,160,,,,,,20010818,,, +1610,USA,en,WPEZ840,,Marble Falls/Wirtz Power Plant (TX),30.561014,-98.344297,,0.01,,8288,300,160,,,,,,20010828,,, +1610,USA,en,WPTI468,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20011204,,, +1610,USA,en,WPXK767,,Carlin (NV),40.725694,-116.0825,,0.01,,8300,318,160,,,,,,20011186,,, +1610,USA,en,WPXK767,,Dunphy (NV),40.710967,-116.514972,,0.01,,8321,319,160,,,,,,20011187,,, +1610,USA,en,WPXK767,,LaMoille (NV),40.798667,-115.714111,,0.01,,8276,318,160,,,,,,20011173,,, +1610,USA,en,WQEL382,,Newport (OR),44.625,-124.0575,,0.01,,8261,326,160,,,,,,20011348,,, +1610,USA,en,WQEL629,,Santa Rosa (NM),34.945167,-104.710972,,0.01,,8262,307,160,,,,,,20011357,,, +1610,USA,en,WQFH234,,Florence (OR),44.010214,-124.122778,,0.01,,8323,326,160,,,,,,20011335,,, +1610,USA,en,WQFJ525,,Los Alamos (NM),35.881111,-106.310972,,0.01,,8263,309,160,,,,,,20011366,,, +1610,USA,en,WQFJ525,,White Rock/301 Meadow Lane (NM),35.827028,-106.197806,,0.01,,8262,309,160,,,,,,20011329,,, +1610,USA,en,KNDX476,,San Antonio (TX),29.544356,-98.577633,,0.01,,8391,300,161,,,,,,20010974,,, +1610,USA,en,KNNH639,,Ashland (OR),42.210994,-122.694297,,0.01,,8442,324,161,,,,,,20010993,,, +1610,USA,en,WPGU506,,Midland (TX),31.977656,-102.094328,,0.01,,8381,304,161,,,,,,20010798,,, +1610,USA,en,WQCP583,,Rockport/489 Ivy Lane (TX),28.025,-97.094444,,0.01,,8436,298,161,,,,,,20011139,,, +1610,USA,en,WQEL382,,Charleston (OR),43.344722,-124.323333,,0.01,,8396,325,161,,,,,,20011362,,, +1610,USA,en,WQEL382,,Winchester Bay (OR),43.680833,-124.1775,,0.01,,8358,325,161,,,,,,20011349,,, +1610,USA,en,WQFH234,,Bandon/USCG Station Coquille River (OR),43.127636,-124.427642,,0.01,,8421,325,161,,,,,,20011337,,, +1610,USA,en,KNEU564,,Floriston (CA),39.39575,-120.027683,,0.01,,8601,320,162,,,,,,20010967,,, +1610,USA,en,KNEU564,,Kings Beach (CA),39.238333,-120.031611,,0.01,,8616,320,162,,,,,,20010987,,, +1610,USA,en,KNEU564,,Soda Springs (CA),39.327675,-120.444347,,0.01,,8626,321,162,,,,,,20010965,,, +1610,USA,en,KNEU564,,Soda Springs (CA),39.342972,-120.344347,,0.01,,8620,321,162,,,,,,20010966,,, +1610,USA,en,KNEU564,,Tahoe City (CA),39.16325,-120.149917,,0.01,,8629,320,162,,,,,,20010964,,, +1610,USA,en,KNEU564,,Truckee/10152 Keiser Ave (CA),39.331028,-120.194342,,0.01,,8614,320,162,,,,,,20010968,,, +1610,USA,en,KNNU877,,Freer/402 S Main St. (TX),27.883361,-98.613917,,0.01,,8540,299,162,,,,,,20010986,,, +1610,USA,en,WNJR464,,Hornbrook (CA),41.992639,-122.611139,,0.01,,8459,323,162,,,,,,20010931,,, +1610,USA,en,WNQS653,,Alta (CA),39.261006,-120.732722,,0.01,,8644,321,162,,,,,,20010946,,, +1610,USA,en,WNQS653,,Baxter (CA),39.2135,-120.777444,,0.01,,8651,321,162,,,,,,20010942,,, +1610,USA,en,WNQS653,,Soda Springs (CA),39.309056,-120.544083,,0.01,,8632,321,162,,,,,,20011014,,, +1610,USA,en,WPDG260,,Pecos (TX),31.382361,-103.511,,0.01,,8514,304,162,,,,,,20011020,,, +1610,USA,en,WPFK506,,Burney (CA),40.944339,-121.611031,,0.01,,8520,322,162,,,,,,20010820,,, +1610,USA,en,WPFK506,,Mount Shasta (CA),41.344306,-122.345556,,0.01,,8511,323,162,,,,,,20010821,,, +1610,USA,en,WPFK506,,Red Bluff (CA),40.180722,-122.226389,,0.01,,8619,322,162,,,,,,20010843,,, +1610,USA,en,WPFK506,,Redding (CA),40.594861,-122.361389,,0.01,,8585,323,162,,,,,,20010825,,, +1610,USA,en,WPFK506,,Yreka (CA),41.694328,-122.644292,,0.01,,8490,323,162,,,,,,20010822,,, +1610,USA,en,WPFK508,,Chilcoot (CA),39.727681,-120.044344,,0.01,,8570,321,162,,,,,,20010851,,, +1610,USA,en,WPFK508,,Susanville (CA),40.377669,-120.578833,,0.01,,8530,321,162,,,,,,20010827,,, +1610,USA,en,WPHF858,,Fort Stockton (TX),30.911,-102.915167,,0.01,,8522,304,162,,,,,,20010789,,, +1610,USA,en,WPIS369,,South Lake Tahoe (CA),38.861008,-120.027681,,0.01,,8652,320,162,,,,,,20010811,,, +1610,USA,en,WPIS369,,South Lake Tahoe/1160 Rufus Allen Blvd (CA),38.94435,-119.977683,,0.01,,8642,320,162,,,,,,20010812,,, +1610,USA,en,WPJM982,,Reno (NV),39.511017,-119.777681,,0.01,,8579,320,162,,,,,,20010804,,, +1610,USA,en,WPMQ285,,Laredo (TX),27.598917,-99.495861,,0.01,,8617,299,162,,,,,,20010858,,, +1610,USA,en,WPPD491,,Eureka/1650 Albee Street (CA),40.792639,-124.175861,,0.01,,8639,324,162,,,,,,20011399,,, +1610,USA,en,WPPY836,,Carson City (NV),39.166667,-119.766667,,0.01,,8612,320,162,,,,,,20011352,,, +1610,USA,en,WPUH752,,Arcata (CA),40.910994,-124.094303,,0.01,,8625,324,162,,,,,,20011222,,, +1610,USA,en,WPVP711,,Gasquet (CA),41.977653,-123.748417,,0.01,,8507,324,162,,,,,,20011311,,, +1610,USA,en,WPWI606,,Keddie (CA),40.044336,-120.994353,,0.01,,8580,321,162,,,,,,20011106,,, +1610,USA,en,WPXX642,,Eagar (AZ),34.111006,-109.415639,,0.01,,8587,310,162,,,,,,20011189,,, +1610,USA,en,WPXX879,,Adin (CA),41.182944,-120.961025,,0.01,,8469,322,162,,,,,,20011191,,, +1610,USA,en,WPXX879,,Quincy (CA),39.943481,-120.909944,,0.01,,8586,321,162,,,,,,20011163,,, +1610,USA,en,WPXX879,,Weaverville (CA),40.744328,-122.947806,,0.01,,8594,323,162,,,,,,20011184,,, +1610,USA,en,WPXX879,,Weed (CA),41.427683,-122.395222,,0.01,,8505,323,162,,,,,,20011182,,, +1610,USA,en,WQCT745,,El Paso (TX),31.810992,-106.264,,0.01,,8628,307,162,,,,,,20011142,,, +1610,USA,en,WQCT746,,El Paso (TX),31.747167,-106.344353,,0.01,,8638,307,162,,,,,,20011148,,, +1610,USA,en,WQCT746,,El Paso (TX),31.766194,-106.510981,,0.01,,8646,307,162,,,,,,20011146,,, +1610,USA,en,WQCT746,,El Paso (TX),31.778472,-106.427658,,0.01,,8640,307,162,,,,,,20011147,,, +1610,USA,en,WQCT746,,El Paso (TX),31.823611,-106.561006,,0.01,,8643,307,162,,,,,,20011145,,, +1610,USA,en,WQCT746,,El Paso (TX),31.908389,-106.582333,,0.01,,8637,307,162,,,,,,20011144,,, +1610,USA,en,WQCT746,,El Paso (TX),31.982556,-106.5943,,0.01,,8631,307,162,,,,,,20011132,,, +1610,USA,en,WQCT748,,El Paso (TX),31.544306,-106.143278,,0.01,,8646,306,162,,,,,,20011151,,, +1610,USA,en,WQCT748,,El Paso (TX),31.644325,-106.227642,,0.01,,8641,306,162,,,,,,20011150,,, +1610,USA,en,WQCT748,,El Paso (TX),31.692417,-106.277681,,0.01,,8640,307,162,,,,,,20011149,,, +1610,USA,en,WQCT748,,El Paso (TX),31.860961,-106.444314,,0.01,,8634,307,162,,,,,,20011113,,, +1610,USA,en,WQCT748,,El Paso (TX),31.931194,-106.427667,,0.01,,8626,307,162,,,,,,20011120,,, +1610,USA,en,WQCT748,,El Paso (TX),31.9943,-106.360969,,0.01,,8617,307,162,,,,,,20011122,,, +1610,USA,en,WQDF361,,Winslow (AZ),35.108333,-111.033333,,0.01,,8579,312,162,,,,,,20011123,,, +1610,USA,en,WQEL382,,Harbor (OR),42.061389,-124.276856,,0.01,,8519,325,162,,,,,,20011351,,, +1610,USA,en,WQFH234,,Gold Beach/USCG Rouge River Station (OR),42.426667,-124.427642,,0.01,,8490,325,162,,,,,,20011336,,, +1610,USA,en,WQFQ817,,Corning (CA),39.944806,-122.19775,,0.01,,8641,322,162,,,,,,20011391,,, +1610,USA,en,WQIX460,,Yreka (CA),41.794311,-122.594328,,0.01,,8478,323,162,,,,,,20011298,,, +1610,USA,en,KNEC996,,Sacramento (CA),38.583333,-121.5,,0.01,,8743,321,163,,,,,,20010973,,, +1610,USA,en,KNIP553,,Los Altos Hills (CA),37.361889,-122.127472,,0.01,,8888,321,163,,,,,,20010994,,, +1610,USA,en,KNNN869,,Willits (CA),39.411003,-123.360164,,0.01,,8741,323,163,,,,,,20010990,,, +1610,USA,en,KNNN870,,Clearlake (CA),38.929611,-122.627694,,0.01,,8757,322,163,,,,,,20010980,,, +1610,USA,en,WNHN752,,Monterey/351 Madison St. (CA),36.611028,-121.897167,,0.01,,8951,320,163,,,,,,20010943,,, +1610,USA,en,WNKB689,,Gilroy (CA),37.011022,-121.562444,,0.01,,8898,320,163,,,,,,20010929,,, +1610,USA,en,WNMM758,,Van Horn (TX),31.044333,-105.846361,,0.01,,8675,306,163,,,,,,20010960,,, +1610,USA,en,WNMQ214,,Newark/37440 Filbert St (CA),37.359667,-122.044361,,0.01,,8885,321,163,,,,9730,,51944,,, +1610,USA,en,WNSV220,,San Leandro/14200 Chapman Road (CA),37.711014,-122.144364,,0.01,,8855,321,163,,,,,,20011048,,, +1610,USA,en,WNUU667,,Morgan Hill/17555 Peak Ave (CA),37.127692,-121.662167,,0.01,,8891,320,163,,,,,,20011034,,, +1610,USA,en,WNUW920,,San Ramon/One Annabel Lane (CA),37.777681,-121.977697,,0.01,,8841,321,163,,,,,,20011042,,, +1610,USA,en,WNXK966,,Buttonwillow (CA),35.427692,-119.427656,,0.01,,8955,318,163,,,,,,20011052,,, +1610,USA,en,WNXK966,,Greenfield (CA),35.208861,-119.009556,,0.01,,8957,318,163,,,,,,20011063,,, +1610,USA,en,WNXK966,,Lost Hills (CA),35.616361,-119.660992,,0.01,,8947,318,163,,,,,,20011060,,, +1610,USA,en,WNXK966,,McFarland (CA),35.6455,-119.227653,,0.01,,8925,318,163,,,,,,20011064,,, +1610,USA,en,WNXY470,,San Francisco/Int. Airport (CA),37.618,-122.388028,,0.01,,8874,321,163,,,,42,,51945,,, +1610,USA,en,WNYD243,,Tehachapi (CA),35.111033,-118.345917,,0.01,,8935,317,163,,,,,,20011056,,, +1610,USA,en,WNZV591,,Berkeley/2100 Martin Luther King Way (CA),37.877686,-122.277647,,0.01,,8845,321,163,,,,,,20011013,,, +1610,USA,en,WPDU922,,Springville (CA),36.213,-118.694311,,0.01,,8846,318,163,,,,,,20011018,,, +1610,USA,en,WPIS369,,South Lake Tahoe (CA),38.81075,-120.126028,,0.01,,8661,320,163,,,,,,20010810,,, +1610,USA,en,WPIW546,,Mojave/7021 Oak Creek Rd (CA),35.049972,-118.260978,,0.01,,8937,317,163,,,,,,20010800,,, +1610,USA,en,WPKL489,,Globe/1360 N Broad St. (AZ),33.416444,-110.794319,,0.01,,8723,311,163,,,,,,20010898,,, +1610,USA,en,WPKX394,,San Anselmo/150 Butterfield Road (CA),37.99435,-122.576361,,0.01,,8846,321,163,,,,,,20010908,,, +1610,USA,en,WPPY737,,Benicia/257 Essex Way (CA),38.077694,-122.161361,,0.01,,8820,321,163,,,,,,20011350,,, +1610,USA,en,WPSE479,,Needles/800 San Clemente St. (CA),34.824444,-114.611028,,0.01,,8784,314,163,,,,,,20011086,,, +1610,USA,en,WPSG912,,Mountain Pass (CA),35.477694,-115.543333,,0.01,,8768,315,163,,,,,,20011082,,, +1610,USA,en,WPTJ432,,Fort Bragg (CA),39.427672,-123.810967,,0.01,,8758,323,163,,,,,,20011201,,, +1610,USA,en,WPTR243,,Saratoga/19700 Allendale Ave (CA),37.276814,-122.026822,,0.01,,8892,321,163,,,,,,20011168,,, +1610,USA,en,WPVQ733,,Merced (CA),37.294356,-120.461014,,0.01,,8822,320,163,,,,,,20011279,,, +1610,USA,en,WPVQ742,,Jamestown (CA),37.911008,-120.477417,,0.01,,8763,320,163,,,,,,20011253,,, +1610,USA,en,WPXB744,,Pine Grove (CA),38.411017,-120.649917,,0.01,,8723,320,163,,,,,,20011231,,, +1610,USA,en,WPXB746,,Angels Camp/98 S Main St. (CA),38.079361,-120.561014,,0.01,,8751,320,163,,,,,,20011228,,, +1610,USA,en,WPXB970,,Lee Vining (CA),37.960983,-119.127628,,0.01,,8699,319,163,,,,,,20011167,,, +1610,USA,en,WPYC654,,Coleville/774 Eastside Road (CA),38.539444,-119.456944,,0.01,,8658,320,163,,,,,,20011156,,, +1610,USA,en,WPZH433,,Phoenix (AZ),33.810972,-112.146806,,0.01,,8756,312,163,,,,,,20011169,,, +1610,USA,en,WQCY276,,Kingman (AZ),35.183333,-114.05,,0.01,,8723,314,163,,,,,,20011115,,, +1610,USA,en,WQCY276,,Kingman (AZ),35.183333,-114.05,,0.01,,8723,314,163,,,,,,20011116,,, +1610,USA,en,WQDL670,,Flagstaff/12941 E Delgado St. (AZ),34.561667,-112.258333,,0.01,,8692,312,163,,,,,,20011260,,, +1610,USA,en,WQEL573,,Phoenix (AZ),34.25,-111.666667,,0.01,,8691,312,163,,,,,,20011355,,, +1610,USA,en,WQEV751,,Crowley Lake (CA),37.577694,-118.761003,,0.01,,8719,319,163,,,,,,20011323,,, +1610,USA,en,WQEV891,,Markleeville (CA),38.616667,-119.8,,0.01,,8666,320,163,,,,,,20011324,,, +1610,USA,en,WQFH233,,Oildale (CA),35.4425,-119.031667,,0.01,,8935,318,163,,,,,,20011334,,, +1610,USA,en,WQFQ815,,Lodi (CA),38.116806,-121.39825,,0.01,,8784,321,163,,,,,,20011389,,, +1610,USA,en,WQFQ815,,Markleeville (CA),38.775333,-119.927669,,0.01,,8656,320,163,,,,,,20011392,,, +1610,USA,en,WQFQ815,,Martell (CA),38.376083,-120.810967,,0.01,,8733,320,163,,,,,,20011383,,, +1610,USA,en,WQFQ815,,Stockton (CA),37.944297,-121.260964,,0.01,,8794,321,163,,,,,,20011390,,, +1610,USA,en,WQHK867,,Lake Havasu City (AZ),34.478222,-114.327683,,0.01,,8803,314,163,,,,,,20011241,,, +1610,USA,en,WQHK911,,Kirkwood (CA),38.710239,-120.071111,,0.01,,8669,320,163,,,,,,20011242,,, +1610,USA,en,WXK790,,Phoenix/3400 E Sky Harbor Blvd (AZ),33.444303,-112.011,,0.01,,8783,312,163,,,,,,20011293,,, +1610,USA,en,WNDQ665,,Descanso (CA),32.848389,-116.580306,,0.01,,9067,315,164,,,,,,20010963,,, +1610,USA,en,WNKI578,,Idyllwild (CA),33.746972,-116.715028,,0.01,,8988,315,164,,,,,,20010928,,, +1610,USA,en,WNPF405,,San Diego/2125 Park Blvd (CA),32.700056,-117.146972,,0.01,,9108,315,164,,,,,,20010955,,, +1610,USA,en,WNUB568,,Chula Vista/391 Oxford St. (CA),32.610967,-117.063361,,0.01,,9113,315,164,,,,,,20011046,,, +1610,USA,en,WNXK966,,Old River (CA),35.209139,-119.162333,,0.01,,8964,318,164,,,,,,20011062,,, +1610,USA,en,WPEA446,,Lancaster (CA),34.541667,-118.15925,,0.01,,8981,317,164,,,,,,20011061,,, +1610,USA,en,WPET708,,Arleta (CA),34.245556,-118.427647,,0.01,,9022,317,164,,,,,,20010832,,, +1610,USA,en,WPET708,,Canyon Country (CA),34.392222,-118.477647,,0.01,,9010,317,164,,,,,,20010831,,, +1610,USA,en,WPET708,,Lebec (CA),34.794694,-118.860975,,0.01,,8989,317,164,,,,,,20010830,,, +1610,USA,en,WPET708,,Santa Clarita (CA),34.410556,-118.57675,,0.01,,9013,317,164,,,,,,20010833,,, +1610,USA,en,WPHJ962,,Los Angelese (CA),34.028611,-118.447028,,0.01,,9044,317,164,,,,,,20010786,,, +1610,USA,en,WPKF567,,Borrego Springs/1550 Rango Way (CA),33.227628,-116.340556,,0.01,,9019,315,164,,,,,,20010904,,, +1610,USA,en,WPNT814,,Frazier Park (CA),34.861028,-119.177653,,0.01,,8998,317,164,,,,,,20010887,,, +1610,USA,en,WPVQ736,,Grapevine (CA),34.963028,-118.944322,,0.01,,8977,317,164,,,,,,20011254,,, +1610,USA,en,WPYR591,,Goleta (CA),34.421944,-119.860189,,0.01,,9071,318,164,,,,,,20011153,,, +1610,USA,en,WQED842,,Los Angeles (CA),34.077639,-118.477692,,0.01,,9040,317,164,,,,,,20011342,,, +1610,USA,en,WQEU877,,Calabasas (CA),34.149556,-118.69725,,0.01,,9044,317,164,,,,,,20011322,,, +1610,USA,en,WQFE310,,Santa Paula (CA),34.366667,-119.065278,,0.01,,9040,317,164,,,,,,20011328,,, +1610,USA,en,WQIP267,,San Luis Obispo (CA),35.302861,-120.661,,0.01,,9023,319,164,,,,,,20011315,,, +1610,USA,en,WQIQ379,,Temecula (CA),33.496833,-117.127647,,0.01,,9032,315,164,,,,,,20011316,,, +1610,USA,en,WQIW679,,Wrightwood/County Transportation Yard (CA),34.361003,-117.629806,,0.01,,8973,316,164,,,,,,20011283,,, +1610,USA,en,WQIX414,,Oakview (CA),34.414917,-119.281861,,0.01,,9045,317,164,,,,,,20011284,,, +1610,USA,en,WQJA925,,Camarillo (CA),34.1625,-119.041111,,0.01,,9058,317,164,,,,,,20011290,,, +1610,ARG,,R Luz del Mundo,,Rafael Calzada (ba),-34.8,-58.366667,,0.05,,11522,230,165,,,,,,51919,,, +1610,HWA,,WPZH37,,Honolulu Oahu (HI),21.3,-157.85,,0.01,,11710,345,173,,,,,,51481,,, +1610,HWA,en,WQAG957,,Honolulu/1801 Kalakaua Avenue (HI),21.290444,-157.835583,,0.01,,11711,345,173,,,,999,,51482,,, +1611,GRC,el,R Anatolia,,Kilkis (cmc-kil),41,22.866667,,1,,1756,128,75,,,,,,3400065,,, +1611,AUS,it,8RF Rete Italia,,Darwin (NT),-12.466667,130.833333,,0.4,,13412,69,162,,,,,,37700103,,, +1611,AUS,,6GS,,Wagin (WA),-33.333333,117.083333,,0.4,,14226,98,165,,0000-2400,1234567,,,51517,,, +1611,AUS,,Gold MX,,Albany (WA),-35.016667,117.816667,,0.4,,14403,99,165,,0000-2400,1234567,9881,,51483,,, +1611,AUS,en,6UCB Vision R Network,,Margaret River/1719 Bussell Highway (WA),-33.8825,115.084444,,0.4,,14133,100,165,,0000-2400,1234567,9903,,51503,,, +1611,AUS,it,Rete Italia,,Esperance/Pattersons Road (WA),-33.791944,121.856667,,0.4,,14585,95,166,,0000-2400,1234567,,,51495,,, +1611,AUS,,4KZ,,Karumba (QLD),-17.483333,140.833333,,0.3,,14491,63,167,,0000-2400,1234567,,,51501,,, +1611,AUS,en,Hot Country,,Emerald (QLD),-23.45,148.166667,,0.4,,15474,60,169,,0000-2400,1234567,,,51494,,, +1611,AUS,,Hot Country,,Roma/201 Miscamble Street (QLD),-26.563889,148.813056,,0.4,,15791,62,170,,0000-2400,1234567,,,51509,,, +1611,AUS,,Hot Country,,Saint George/Thuraggi Road (QLD),-28.039444,148.611944,,0.4,,15908,64,170,,0000-2400,1234567,,,51510,,, +1611,AUS,,Hot Country,,Goondiwindi/Boundary Road (QLD),-28.525,150.303889,,0.4,,16054,63,171,,0000-2400,1234567,,,51496,,, +1611,AUS,,3UCB Vision R Network,,Melbourne/Hoppers Crossing (VIC),-37.816667,144.966667,,0.4,,16451,80,172,,0000-2400,1234567,,,51504,,, +1611,AUS,it,2RF Rete Italia,,Griffith/44-46 Altin Street (NSW),-34.290556,146.091667,,0.4,,16263,74,172,,0000-2400,1234567,,,51498,,, +1611,AUS,en,Traffic 1611,,St.Marys/Elizabeth Dr (NSW),-33.869756,150.727822,,0.4,,16529,69,173,,0000-2400,1234567,969,,51511,,, +1611,AUS,it,Rete Italia,,Devonport/19 Lillico Road (Quioba) (TAS),-41.181389,146.2875,,0.4,,16770,84,173,,0000-2400,1234567,,,51492,,, +1611,AUS,it,7RF Rete Italia,,Launceston (TAS),-41.45,147.166667,,0.4,,16847,84,174,,,,,,37700037,,, +1611,AUS,en,4KIK,,Croydon (QLD),-18.216667,142.233333,,0.05,,14643,62,175,,,,,,37700038,,, +1611,AUS,,3?? Old Gold,,Mildura/6 Byrne Court (VIC),-34.199083,142.172306,,0.1,,15996,78,177,,0000-2400,1234567,,,51505,,, +1611,AUS,,Willetton State Senior High School,,Willetton (WA),-32.060556,115.877778,,0.005,,14047,97,183,,,,,,37700002,,, +1611,AUS,en,Francis Greenway High School R.,,Newcastle/Lawson Avenue (NSW),-32.797778,151.661111,,0.001,,16501,66,198,,,,,,37700001,,, +1612,EGY,,SUQ Ismailia R,4,Ismailia (ism),30.470311,32.36675,,1,,3205,129,89,,????-????,1234567,,,19900505,,, +1613,BEN,,TYA Cotonou R,4,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900256,,, +1614,EGY,,SUH Al-Iskandariya R,4,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,????-????,1234567,,,19900500,,, +1614,KRE,,Chonyon Chobyong Durulwihan Pangsong,,unknown,40.45,127.5,,1,,8261,43,140,,1400-2000,1234567,,,51519,,, +1615,BEN,,TYA Cotonou R,4,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900257,,, +1615.5,GRC,,SVH Iraklion Kritis R,4,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,????-????,1234567,-1615.5,,19900603,,, +1616,DNK,,OZNRH,,Hillerd (hvs),55.938889,12.291667,,0.13,,573,40,72,,1200-1400,.....6.,,,2100010,,, +1616,DNK,,OZNRH,,Hillerd (hvs),55.938889,12.291667,,0.13,,573,40,72,,2000-2300,1234567,,,2100010,,, +1618.5,EGY,,SUK Al-Qusair R,4,Al-Qusayr=Quseir (bar),26.110889,34.280083,,1,,3714,130,94,,????-????,1234567,-1618.5,,19900506,,, +1620,GRC,el,R Ouranio Toxo,,Larissa (the-lar),39.633333,22.416667,,1,,1852,132,76,,,,,,3400006,,, +1620,USA,en,WDND,,South Bend (IN),41.636111,-86.285833,,1,,6651,300,124,,,,87,,41662,,, +1620,CUB,es,R Rebelde,,Guanabacoa/CTOM2 (ch),23.121261,-82.315258,,5,,7916,284,129,,,,9906,,31600027,,, +1620,USA,en,KOZN,,Bellevue (NE),41.189167,-96.005278,,1,,7244,306,129,,,,3,,39124,,, +1620,USA,en,WPTK490,,Syracuse/Collamer (NY),43.098056,-76.0475,,0.05,,5923,295,129,,,,,,20000072,,, +1620,VIR,en,WDHP,,Frederiksted (stc),17.724444,-64.884167,,1,,7191,267,129,,,,989,,41159,,, +1620,DOM,es,HISR R Taina/R Planeta,,San Pedro de Macors (pms),18.45,-69.3,,1,,7430,271,131,,,,,,52257,,, +1620,USA,en,WNRP,,Gulf Breeze (FL),30.436667,-87.220278,,1,,7618,292,133,,,,9955,,42503,,, +1620,CUB,es,R Rebelde,,Guantnamo/CTOM3 (gu),20.110272,-75.218842,,1,,7693,276,134,,,,,,31600023,,, +1620,USA,en,WPRI268,,Lancaster/185 Kaleva Rd (MA),42.528139,-71.694314,,0.01,,5692,292,134,,,,,,20011542,,, +1620,USA,en,WQHF306,,Plymouth/159 Camelot Road (MA),41.93,-70.646667,,0.01,,5668,291,134,,,,,,20011437,,, +1620,USA,en,WQII343,,Brockton (MA),42.096583,-71.065194,,0.01,,5683,291,134,,,,,,20011432,,, +1620,CUB,es,CMNL R Bayamo,,Bayamo (gr),20.346253,-76.597683,,1,,7767,278,135,,,,983,,31600131,,, +1620,CUB,es,R Rebelde,,Santa Clara (vc),22.416667,-79.916667,,1,,7815,281,135,,,,,,31600070,,, +1620,USA,en,WPBX388,,Windsor/360 Bloomfield Ave (CT),41.860983,-72.662583,,0.01,,5801,292,135,,,,,,20011485,,, +1620,USA,en,WQHF734,,Little Falls (NY),43.027653,-74.82765,,0.01,,5853,295,135,,,,,,20011418,,, +1620,USA,en,KYIZ,,Renton (WA),47.441111,-122.202778,,1,,7918,326,136,,,,9901,,39850,,, +1620,USA,en,WPTK490,,Liverpool (NY),43.109722,-76.266111,,0.01,,5936,296,136,,,,,,20011541,,, +1620,USA,en,WPTK490,,Syracuse (NY),43.095278,-76.166389,,0.01,,5931,295,136,,,,,,20011555,,, +1620,USA,en,WPTK490,,Syracuse (NY),43.098056,-76.0475,,0.01,,5923,295,136,,,,,,20011540,,, +1620,USA,en,WPTQ900,,Liverpool (NY),43.109722,-76.266111,,0.01,,5936,296,136,,,,,,20011536,,, +1620,USA,en,WPTQ900,,Syracuse (NY),43.095278,-76.166389,,0.01,,5931,295,136,,,,,,20011552,,, +1620,USA,en,WPTQ900,,Syracuse (NY),43.098056,-76.0475,,0.01,,5923,295,136,,,,,,20011505,,, +1620,USA,en,WPVT612,,Hudson-On-Hastings/Hillside Ave (NY),40.994331,-73.875917,,0.01,,5940,292,136,,,,,,20011405,,, +1620,USA,en,WPXX927,,Malverne (NY),40.666667,-73.670833,,0.01,,5951,292,136,,,,,,20011460,,, +1620,USA,en,WQDJ505,,La Fayette (NY),42.911003,-76.111778,,0.01,,5941,295,136,,,,,,20011423,,, +1620,USA,en,WQHF734,,Herkimer (NY),43.016472,-74.992444,,0.01,,5864,295,136,,,,,,20011443,,, +1620,USA,en,WNWN396,,North Arlington/214 Ridge Road (NJ),40.794322,-74.130972,,0.01,,5971,292,137,,,,,,20011521,,, +1620,USA,en,WNZE748,,Roosevelt Island (NY),40.764278,-73.947361,,0.01,,5962,292,137,,,,,,20011497,,, +1620,USA,en,WPUN933,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011499,,, +1620,USA,en,WPUU352,,Wilkes-Barre (PA),41.233333,-75.858333,,0.01,,6048,294,137,,,,,,20011492,,, +1620,USA,en,WPWS698,,Edison/745 New Durham Road (NJ),40.539167,-74.381333,,0.01,,6006,292,137,,,,,,20011403,,, +1620,USA,en,WPYD365,,Long Branch/Annex Building (NJ),40.310239,-73.993333,,0.01,,5998,292,137,,,,,,20011458,,, +1620,USA,en,WPYS541,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011456,,, +1620,USA,en,WQAL487,,Manasquan/Stockton Lake Park (NJ),40.127669,-74.033333,,0.01,,6014,291,137,,,,,,20011472,,, +1620,USA,en,WQBQ314,,Basking Ridge (NJ),40.666667,-74.580833,,0.01,,6009,292,137,,,,,,20011473,,, +1620,USA,en,WQFW997,,New Providence (NJ),40.6975,-74.4105,,0.01,,5996,292,137,,,,,,20011415,,, +1620,USA,en,WQFX368,,Waterloo (NY),42.965556,-76.849194,,0.01,,5982,296,137,,,,,,20011414,,, +1620,USA,en,WQFX821,,Geneva (NY),42.960969,-76.979167,,0.01,,5990,296,137,,,,,,20011413,,, +1620,USA,en,WQIQ629,,Leonardo (NJ),40.409833,-74.061014,,0.01,,5995,292,137,,,,,,20011431,,, +1620,USA,en,WPJP633,,Niagara Falls/1022 Main St. (NY),43.098389,-79.060969,,0.01,,6108,297,138,,,,,,20011498,,, +1620,USA,en,WPTU717,,Ocean City/835 Central Avenue (NJ),39.2785,-74.577692,,0.01,,6112,291,138,,,,,,20011515,,, +1620,USA,en,WQCQ524,,Cinnaminson/900 Manor Road (NJ),39.997333,-74.995444,,0.01,,6085,292,138,,,,,,20011416,,, +1620,USA,en,WQCT657,,Amhearst (NY),42.997667,-78.782528,,0.01,,6098,297,138,,,,,,20011424,,, +1620,USA,en,WQEA211,,Mount Holly (NJ),39.85,-74.633333,,0.01,,6073,292,138,,,,,,20011422,,, +1620,USA,,WTAW,,College Station (TX),30.620833,-96.254444,,1,,8159,299,139,,,,9989,,43106,,, +1620,USA,en,WPXI241,,Middletown/513 Airport Drive (PA),40.197222,-76.763889,,0.01,,6181,293,139,,,,,,20011481,,, +1620,USA,en,WQCQ947,,Arbutus (MD),39.261019,-76.711025,,0.01,,6248,292,139,,,,,,20011453,,, +1620,USA,en,WQHP749,,Baltimore (MD),39.312639,-76.544297,,0.01,,6234,292,139,,,,,,20011445,,, +1620,USA,en,WQHP749,,Rosedale (MD),39.360967,-76.483167,,0.01,,6226,292,139,,,,,,20011434,,, +1620,USA,en,WQHP749,,White Marsh (MD),39.409944,-76.413944,,0.01,,6218,292,139,,,,,,20011433,,, +1620,USA,en,WPMT969,,Aldie (VA),38.977653,-77.6225,,0.01,,6327,293,140,,,,,,20011534,,, +1620,USA,en,WPMT969,,Aquia Harbor (VA),38.514556,-77.363861,,0.01,,6346,292,140,,,,,,20011533,,, +1620,USA,en,WPMT969,,Arlington (VA),38.883333,-77.083333,,0.01,,6301,292,140,,,,,,20011549,,, +1620,USA,en,WPMT969,,Garrisonville (VA),38.4625,-77.406944,,0.01,,6353,292,140,,,,,,20011551,,, +1620,USA,en,WPMU747,,Alexandria (VA),38.796333,-77.061003,,0.01,,6306,292,140,,,,,,20011502,,, +1620,USA,en,WPMU747,,Arlington (VA),38.883333,-77.083333,,0.01,,6301,292,140,,,,,,20011538,,, +1620,USA,en,WPMU747,,Franconia (VA),38.796167,-77.139167,,0.01,,6311,292,140,,,,,,20011501,,, +1620,USA,en,WPMU747,,Lorton (VA),38.679333,-77.227689,,0.01,,6325,292,140,,,,,,20011556,,, +1620,USA,en,WPQK609,,Harrisburg (PA),40.398667,-79.577639,,0.01,,6341,295,140,,,,,,20011509,,, +1620,USA,en,WPSG992,,Cranberry (PA),40.693531,-80.096389,,0.01,,6351,296,140,,,,,,20011487,,, +1620,USA,en,WPXI292,,Port Huron (MI),42.983333,-82.483333,,0.01,,6322,299,140,,,,,,20011462,,, +1620,USA,en,WPYM226,,Saegertown/Park and Ride (PA),41.716333,-80.200028,,0.01,,6280,297,140,,,,,,20011457,,, +1620,USA,en,WQAV955,,Annapolis (MD),38.994319,-76.563583,,0.01,,6259,292,140,,,,,,20011478,,, +1620,USA,en,WPMD582,,Kent/217 E Summit Street (OH),41.15,-81.355833,,0.01,,6393,297,141,,,,,,20011523,,, +1620,USA,en,WPMD582,,Kent/319 S Water St. (OH),41.160969,-81.360992,,0.01,,6393,297,141,,,,,,20011484,,, +1620,USA,en,WPMT969,,Leesburg (VA),38.110992,-77.545806,,0.01,,6389,292,141,,,,,,20011537,,, +1620,USA,en,WPMT969,,Markham (VA),38.910989,-78.010214,,0.01,,6357,293,141,,,,,,20011553,,, +1620,USA,en,WPMT969,,Purcellville (VA),38.14875,-77.692222,,0.01,,6395,292,141,,,,,,20011535,,, +1620,USA,en,WPMU382,,Pittsburgh (PA),40.444306,-80.012833,,0.01,,6365,295,141,,,,,,20011529,,, +1620,USA,en,WPQE514,,Ashland (VA),37.759028,-77.459417,,0.01,,6410,291,141,,,,,,20011554,,, +1620,USA,en,WPQE514,,Bottoms Bridge (VA),37.514028,-77.194367,,0.01,,6412,291,141,,,,,,20011503,,, +1620,USA,en,WPQE514,,Chester (VA),37.360994,-77.377694,,0.01,,6436,291,141,,,,,,20011539,,, +1620,USA,en,WPQE514,,Oilville (VA),37.712083,-77.781389,,0.01,,6434,292,141,,,,,,20011530,,, +1620,USA,en,WPRV887,,Manteo/410 Ananias Dare St. (NC),35.909333,-75.677675,,0.01,,6439,289,141,,,,,,20011490,,, +1620,USA,en,WQBQ687,,Wayne/35200 Forest Avenue (MI),42.2775,-83.393522,,0.01,,6430,299,141,,,,,,20011482,,, +1620,USA,en,WPJM404,,Churchville (VA),38.226528,-79.162806,,0.01,,6482,293,142,,,,,,20011495,,, +1620,USA,en,WPJM404,,Mint Spring (VA),38.044331,-79.126417,,0.01,,6494,293,142,,,,,,20011504,,, +1620,USA,en,WPJM404,,Staunton/1250 Richmond Rd (VA),38.127667,-79.048083,,0.01,,6482,293,142,,,,,,20011493,,, +1620,USA,en,WPJM404,,Waynesboro (VA),38.047361,-78.910964,,0.01,,6480,293,142,,,,,,20011483,,, +1620,USA,en,WPJM404,,Weyers Cave (VA),38.278194,-78.944294,,0.01,,6464,293,142,,,,,,20011491,,, +1620,USA,en,WPKM208,,Roanoke Rapids (NC),36.544333,-77.57775,,0.01,,6512,291,142,,,,,,20011544,,, +1620,USA,en,WPQE514,,Carson (VA),37.064306,-77.377697,,0.01,,6459,291,142,,,,,,20011543,,, +1620,USA,en,WPSF938,,Surf City/100 Deer Run Road (NC),36.448611,-77.576889,,0.01,,6519,290,142,,,,,,20011489,,, +1620,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20011455,,, +1620,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20011474,,, +1620,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20011480,,, +1620,ARG,es,LU9 Universo FM/LRI309 AM 1620,,Mar del Plata (ba),-38,-57.55,,10,,11772,227,143,,,,988,,51923,,, +1620,USA,,KSMH,,Auburn (West Sacramento) (CA),38.588056,-121.468056,,1,,8741,321,143,,,,9988,,39388,,, +1620,USA,en,WPKS942,,Milwaukee (WI),43.033333,-87.9,,0.01,,6636,302,143,,,,,,20011547,,, +1620,USA,en,WPSK550,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20011514,,, +1620,USA,en,WPZQ722,,Christiansburg (VA),37.096944,-80.475556,,0.01,,6652,293,143,,,,,,20011463,,, +1620,USA,en,WPZQ722,,Christiansburg (VA),37.174444,-80.310147,,0.01,,6636,293,143,,,,,,20011452,,, +1620,USA,en,WPZQ722,,Roanoke (VA),37.499444,-79.748611,,0.01,,6575,293,143,,,,,,20011449,,, +1620,USA,en,WPZQ722,,Salem (VA),37.293889,-80.094444,,0.01,,6613,293,143,,,,,,20011451,,, +1620,USA,en,WPZQ722,,Salem (VA),37.361667,-79.958333,,0.01,,6599,293,143,,,,,,20011450,,, +1620,USA,en,WNGE271,,Dayton (OH),39.777633,-84.211019,,0.01,,6673,297,144,,,,,,20011402,,, +1620,USA,en,WNWZ910,,Bensenville/100 N Church Road (IL),41.960967,-87.9495,,0.01,,6723,302,144,,,,,,20011520,,, +1620,USA,en,WNYB218,,Glen Ellyn/30 S Lambert St. (IL),41.850028,-88.076444,,0.01,,6740,302,144,,,,,,20011516,,, +1620,USA,en,WPKM208,,Dobson (NC),36.482083,-80.760967,,0.01,,6719,293,144,,,,,,20011557,,, +1620,USA,en,WPZK948,,Chicago/2059 South Canal St. (IL),41.854167,-87.643572,,0.01,,6714,301,144,,,,,,20011446,,, +1620,USA,en,WPZQ722,,Pulaski (VA),36.993481,-80.821944,,0.01,,6682,293,144,,,,,,20011454,,, +1620,USA,en,WQBR256,,Fox Lake (IL),42.448333,-88.111667,,0.01,,6694,302,144,,,,,,20011468,,, +1620,USA,en,WQBR256,,Grays Lake (IL),42.379361,-88.063528,,0.01,,6697,302,144,,,,,,20011467,,, +1620,USA,en,WQBR256,,Lake Zurich (IL),42.194294,-88.110967,,0.01,,6714,302,144,,,,,,20011466,,, +1620,USA,en,WQBR256,,Libertyville (IL),42.310833,-87.905,,0.01,,6693,302,144,,,,,,20011470,,, +1620,USA,en,WQBR256,,Lincolnshire (IL),42.199722,-87.888889,,0.01,,6701,302,144,,,,,,20011469,,, +1620,USA,en,WQBR256,,Lindenhurst (IL),42.465,-87.964167,,0.01,,6684,302,144,,,,,,20011471,,, +1620,J,ja,Traffic Information,,Tokyo (kan-tok),35.683333,139.75,,1,,9254,37,145,,,,,,51542,,, +1620,USA,en,WPTN887,,Sparta (KY),38.710972,-84.912972,,0.01,,6800,297,145,,,,,,20011532,,, +1620,USA,en,WQHK635,,Lawrenceburg (KY),38.02765,-84.910997,,0.01,,6854,297,145,,,,,,20011442,,, +1620,USA,en,WQHP685,,Kingsport (TN),36.461022,-82.527681,,0.01,,6831,294,145,,,,,,20011436,,, +1620,USA,en,WPNS435,,Anchorage/11318 Ridge Road (KY),38.265361,-85.543583,,0.01,,6874,297,146,,,,,,20011524,,, +1620,USA,en,WQAQ377,,Lancaster/206 West Arch Street (SC),34.727625,-80.777656,,0.01,,6859,291,146,,,,,,20011479,,, +1620,USA,en,WQBJ215,,Knoxville (TN),36.013778,-83.86175,,0.01,,6950,294,146,,,,,,20011475,,, +1620,USA,en,WQHP685,,Caryville (TN),36.245972,-84.177833,,0.01,,6951,295,146,,,,,,20011439,,, +1620,USA,en,WQHP685,,Dandridge (TN),36.044314,-83.444331,,0.01,,6922,294,146,,,,,,20011427,,, +1620,USA,en,WQHP685,,Williamsburg (TN),36.627633,-84.110972,,0.01,,6917,295,146,,,,,,20011438,,, +1620,USA,en,WPWH450,,Bismarck (ND),46.8,-100.783333,,0.01,,7026,313,147,,,,,,20011404,,, +1620,USA,en,WPZW904,,Sylva (NC),35.366667,-83.233333,,0.01,,6963,293,147,,,,,,20011447,,, +1620,USA,en,WQBJ215,,Knoxville (TN),35.910778,-84.127656,,0.01,,6975,294,147,,,,,,20011477,,, +1620,USA,en,WQBJ215,,Knoxville (TN),35.97765,-83.978778,,0.01,,6960,294,147,,,,,,20011476,,, +1620,USA,en,WQCL656,,Estherville (IA),43.383333,-94.683333,,0.01,,6989,307,147,,,,,,20011444,,, +1620,USA,en,WQHP685,,Harriman (TN),35.893917,-84.545278,,0.01,,7002,295,147,,,,,,20011441,,, +1620,USA,en,WQHP685,,Harriman (TN),35.894528,-84.545278,,0.01,,7002,295,147,,,,,,20011440,,, +1620,USA,en,WPED202,,Cleveland (TN),35.258944,-84.832806,,0.01,,7072,294,148,,,,,,20011548,,, +1620,USA,en,WPED202,,Riceville (TN),35.344367,-84.761011,,0.01,,7060,294,148,,,,,,20011545,,, +1620,USA,en,WPSQ852,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011527,,, +1620,USA,en,WPWA751,,Carbondale/200 South Illinois Avenue (IL),37.725639,-89.227683,,0.01,,7139,299,148,,,,,,20011406,,, +1620,USA,en,WPWK972,,Snellville (GA),33.860972,-83.995611,,0.01,,7132,293,148,,,,,,20011401,,, +1620,USA,en,WPWK972,,Stone Mountain (GA),33.827681,-84.160986,,0.01,,7146,293,148,,,,,,20011400,,, +1620,USA,en,WQBJ215,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011464,,, +1620,USA,en,WQIQ778,,Snellville (GA),33.860972,-83.995611,,0.01,,7132,293,148,,,,,,20011428,,, +1620,USA,en,WQIQ778,,Stone Mountain (GA),33.827681,-84.160986,,0.01,,7146,293,148,,,,,,20011429,,, +1620,USA,en,WPYC491,,Rome/5 Government Plaza (GA),34.2575,-85.176881,,0.01,,7174,294,149,,,,,,20011459,,, +1620,USA,en,WQCI868,,Fort Pierre/20439 Marina Loop Road (SD),44.444319,-100.397833,,0.01,,7205,311,149,,,,,,20011425,,, +1620,USA,en,WPZS817,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20011448,,, +1620,ARG,,R Italia,,Villa Martelli (ba),-34.6,-58.45,,1,,11508,230,152,,,,3,,2069,,, +1620,ARG,es,R Sentir,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000017,,, +1620,USA,en,WPKT270,,Miami (FL),25.766667,-80.2,,0.01,,7553,284,152,,,,,,20011546,,, +1620,USA,en,WQCA305,,Hialeah Gardens (FL),25.894317,-80.360989,,0.01,,7553,284,152,,,,,,20011465,,, +1620,USA,en,WQFL341,,Plantation/1050 W Sunrise Blvd (FL),26.145861,-80.297056,,0.01,,7528,284,152,,,,,,20011419,,, +1620,USA,en,WQFL341,,Plantation/550 NW 65th Avenue (FL),26.128611,-80.244344,,0.01,,7526,284,152,,,,,,20011420,,, +1620,USA,en,WQFL416,,Delray Beach/501 W Atlantic Ave (FL),26.4625,-80.079167,,0.01,,7487,284,152,,,,,,20011409,,, +1620,USA,en,WQFQ236,,Hallandale Beach/215 NW 6th Ave (FL),25.994306,-80.160972,,0.01,,7532,284,152,,,,,,20011417,,, +1620,USA,en,WQIQ635,,Wellington (FL),26.623333,-80.231667,,0.01,,7484,285,152,,,,,,20011430,,, +1620,USA,en,WQFW220,,Coral Gables (FL),25.711014,-80.259889,,0.01,,7562,284,153,,,,,,20011426,,, +1620,ARG,,Cadena Vida,,,-38.5,-63,,1,,12098,231,154,,,,6,,2267,,, +1620,USA,en,WPQH923,,Plaquemine (LA),30.277417,-91.260986,,0.01,,7884,295,156,,,,,,20011500,,, +1620,USA,en,WPMV714,,Lewisville/188 N Valley Parkway (TX),33.060983,-97.005,,0.01,,7992,301,157,,,,,,20011496,,, +1620,USA,en,WPSH203,,Houston/11602 Aerospace Drive (TX),29.611022,-95.178,,0.01,,8182,297,159,,,,,,20011525,,, +1620,USA,en,WPMV720,,Lakeway (TX),30.361014,-97.999722,,0.01,,8285,300,160,,,,,,20011488,,, +1620,USA,en,WPXK227,,South Padre Island (TX),26.094356,-97.163806,,0.01,,8610,297,162,,,,,,20011461,,, +1620,USA,en,WNZA955,,Pebble Beach (CA),36.594364,-121.944353,,0.01,,8955,320,163,,,,,,20011512,,, +1620,USA,en,WNZA955,,Pebble Beach/Forest Lake Reservoir (CA),36.593139,-121.943361,,0.01,,8955,320,163,,,,,,20011508,,, +1620,USA,en,WPFE596,,Milpitas (CA),37.449667,-121.909944,,0.01,,8870,321,163,,,,27,,51946,,, +1620,USA,en,WPTV287,,Big Bear/477 Summit Blvd. (CA),34.244028,-116.894356,,0.01,,8949,316,163,,,,,,20011517,,, +1620,USA,en,WQEL573,,Phoenix (AZ),34.25,-111.666667,,0.01,,8691,312,163,,,,,,20011421,,, +1620,AUS,,R Two,,Perth/Mundaring (WA),-31.933333,115.833333,,0.4,,14034,97,164,,0000-2400,1234567,955,,51536,,, +1620,B,,ZZ,b,Petrobras XIV Platform (SC),-26.770833,-46.791667,,0.025,,10180,226,164,,,,,,85898,,, +1620,J,,Traffic Information,,Nationwide,34.5,134,,0.01,,9124,41,164,,0000-2400,1234567,,,51541,,, +1620,USA,en,KNNN868,,Diamond Bar (CA),33.999778,-117.844353,,0.01,,9018,316,164,,,,,,20011407,,, +1620,USA,en,KNNN868,,Santa Ana (CA),33.725583,-117.8443,,0.01,,9044,316,164,,,,,,20011408,,, +1620,USA,en,WNSB415,,San Ysidro (CA),32.577683,-117.066361,,0.01,,9116,315,164,,,,,,20011531,,, +1620,USA,en,WNZF285,,Fullerton (CA),33.881139,-117.909222,,0.01,,9032,316,164,,,,,,20011506,,, +1620,USA,en,WPGG527,,Lakewood (CA),33.842528,-118.127633,,0.01,,9046,316,164,,,,,,20011507,,, +1620,USA,en,WPGR283,,Chatsworth (CA),34.277222,-118.610978,,0.01,,9027,317,164,,,,,,20011513,,, +1620,USA,en,WPGR283,,Duarte (CA),34.143531,-117.965611,,0.01,,9010,316,164,,,,,,20011511,,, +1620,USA,en,WPGR283,,Los Angeles (CA),34.033056,-118.360975,,0.01,,9039,316,164,,,,,,20011510,,, +1620,USA,en,WPIH303,,Burbank (CA),34.193572,-118.345083,,0.01,,9023,317,164,,,,,,20011494,,, +1620,USA,en,WPKE794,,Torrance/20500 Madrona Ave (CA),33.845028,-118.34425,,0.01,,9056,316,164,,,,,,20011528,,, +1620,USA,en,WPMR237,,Morro Bay/170 Atascadero Rd (CA),35.379694,-120.859333,,0.01,,9024,319,164,,,,,,20011550,,, +1620,USA,en,WPMW407,,San Juan Capistrano (CA),33.527631,-117.666444,,0.01,,9054,316,164,,,,,,20011486,,, +1620,USA,en,WPQY890,,Oceano/928 Pacific Blvd (CA),35.112194,-120.626278,,0.01,,9040,319,164,,,,,,20011522,,, +1620,USA,en,WPTD929,,Agoura Hills (CA),34.111111,-118.804722,,0.01,,9052,317,164,,,,,,20011519,,, +1620,USA,en,WPTD929,,Malibu (CA),34.014167,-118.8125,,0.01,,9062,317,164,,,,,,20011518,,, +1620,USA,en,WQGT276,,Fillmore/711 Sespe Place (CA),34.333333,-118.926881,,0.01,,9037,317,164,,,,,,20011412,,, +1620,USA,en,WQHB985,,Ventura (CA),34.259889,-119.222778,,0.01,,9058,317,164,,,,,,20011410,,, +1620,USA,en,WQHB985,,Ventura (CA),34.2655,-119.292222,,0.01,,9060,317,164,,,,,,20011411,,, +1620,USA,en,WQHB985,,Ventura (CA),34.327675,-119.156944,,0.01,,9048,317,164,,,,,,20011435,,, +1620,AUS,,4KZ,,Taylors Beach (QLD),-18.624167,146.326111,,0.5,,14924,58,166,,,,,,37700035,,, +1620,AUS,it,Rete Italia,,Rockhampton (QLD),-23.583333,150.85,,1,,15643,57,166,,,,,,37700033,,, +1620,AUS,it,Rete Italia,,Townsville (QLD),-19.25,146.8,,0.4,,15009,58,167,,,,,,37700034,,, +1620,AUS,it,Rete Italia,,Gladstone/2-38 Lord Street (QLD),-23.843611,151.246667,,0.4,,15690,57,170,,0000-2400,1234567,,,51528,,, +1620,AUS,it,Rete Italia,,Sunshine Coast (Caloundra) (QLD),-26.8,153.133333,,0.4,,16068,57,171,,0000-2400,1234567,,,51537,,, +1620,AUS,it,Rete Italia,,Toowoomba (QLD),-27.6,151.916667,,0.4,,16069,60,171,,0000-2400,1234567,8,,51539,,, +1620,AUS,,3GB R Two,,Melbourne/Bayswater (VIC),-37.816667,144.966667,,0.4,,16451,80,172,,0000-2400,1234567,987,,51531,,, +1620,AUS,ar,2MORO Sawt el Ghad,,Sydney/Homebush Bay (NSW),-33.839586,151.062786,,0.4,,16548,68,173,,0000-2400,1234567,997,,51538,,, +1621.5,NOR,,LGT Tjme R,2,Tjme (ve),59.116667,10.4,,1,,818,16,65,,????-????,1234567,-1621.5,,19901152,,, +1621.5,NOR,,LGP Bod R,2,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,????-????,1234567,-1621.5,,19901140,,, +1621.5,NOR,,National Norwegian Channel,2,-,68.5,11.05,,1,,1839,6,75,,????-????,1234567,-1621.5,,19901156,,, +1621.5,NOR,,LGV Vard R,2,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,????-????,1234567,-1621.5,,19901154,,, +1621.5,NOR,,LGS Bod R,2,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,????-????,1234567,-1621.5,,19901148,,, +1624.5,DNK,,OXZ Lyngby R,2,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,????-????,1234567,-1624.5,,19900488,,, +1624.5,DNK,,OXZ Lyngby R,2,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,????-????,1234567,-1624.5,,2100006,,, +1624.5,FRO,,OXJ Trshavn R,2,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,????-????,1234567,-1624.5,,19900537,,, +1625,GRC,el,R Nikolas Dynamitis,,Tyrnavos (the-lar),39.733333,22.283333,,1,,1836,132,75,,,,,,3400018,,, +1626,GRC,el,R Delta Dimitris,,unknown,38.4,24.65,,1,,2077,130,78,,,,,,3400008,,, +1627.5,HOL,,Den Helder SAR,2,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,-1627.5,,19900637,,, +1629,J,,Traffic Information,,Nationwide,34.5,134,,0.01,,9124,41,164,,0000-2400,1234567,,,51561,,, +1629,J,ja,Michino-Eki R,,Shirakawa (chu-gif),35.583333,137.183333,,0.01,,9157,38,164,,0000-2400,1234567,,,51563,,, +1629,AUS,it,Rete Italia,,Albany/Ulster Road (WA),-34.995833,117.906667,,0.4,,14407,99,166,,0000-2400,1234567,97,,51544,,, +1629,J,ja,Suzuka Information R,,Suzuka (kns-mie),34.883333,136.583333,,0.005,,9200,39,167,,,,,,51564,,, +1629,AUS,it,Rete Italia,,Mackay/Cremorne (113 Palm Street) (QLD),-21.135556,149.19,,0.4,,15322,57,169,,0000-2400,1234567,,,51555,,, +1629,AUS,it,Rete Italia,,Adelaide/523 South Rd (SA),-34.863333,138.568056,,0.4,,15803,82,170,,0000-2400,1234567,1,,51543,,, +1629,J,,Parking Information,,Numazu (chu-shi),35.1,138.866667,,0.003,,9276,37,170,,,,,,51562,,, +1629,AUS,en,Hot Country,,Dalby (QLD),-27.15,151.3,,0.4,,15992,60,171,,0000-2400,1234567,9567,,51552,,, +1629,AUS,it,Rete Italia,,Compton (Mt Gambier) (SA),-37.781111,140.698889,,0.4,,16160,84,171,,0000-2400,1234567,,,51551,,, +1629,AUS,en,Traffic 1611,,Dubbo (Brocklehurst) (NSW),-32.266667,148.666667,,0.4,,16268,69,172,,0000-2400,1234567,,,51553,,, +1629,AUS,en,Vision R Network,,Bathurst (NSW),-33.366667,149.533333,,0.4,,16413,69,172,,0000-2400,1234567,,,51546,,, +1629,AUS,it,Rete Italia,,Shepparton/Central Avenue (VIC),-36.369444,145.495,,0.4,,16381,78,172,,0000-2400,1234567,35,,51559,,, +1629,AUS,it,Rete Italia,,Canberra/Murrumbateman (ACT),-35.216667,149.116667,,0.4,,16532,72,173,,0000-2400,1234567,,,51550,,, +1629,AUS,,Newcastle Hospital R,,Newcastle/St Josephs Home (NSW),-32.859444,151.701389,,0.1,,16508,66,178,,0000-2400,1234567,,,51557,,, +1630,GRC,el,R Asteras,,Kilkis (cmc-kil),41,22.866667,,1,,1756,128,75,,,,,,3400007,,, +1630,CAN,,CHYW,,Ottawa (ON),45.320833,-75.665833,,0.099,,5741,297,124,,,,9908,,20100026,,, +1630,USA,en,KCJJ,s,Iowa City (IA),41.600833,-91.501111,,1,,6957,303,127,,,,70,,38162,,, +1630,USA,en,WRDW,,Augusta (GA),33.516667,-82.01,,1,,7035,291,127,,,,13,,31733,,, +1630,USA,,WQEU865,,Toledo/I-280 (OH),41.688333,-83.517778,,0.1,,6483,299,132,,,,,,20000075,,, +1630,USA,en,WPKL358,,Johnston (RI),41.843522,-71.565556,,0.01,,5732,292,134,,,,,,20011620,,, +1630,USA,en,WPKL358,,Providence (RI),41.944325,-71.462278,,0.01,,5719,292,134,,,,,,20011622,,, +1630,USA,en,WPKL358,,Warwick (RI),41.67765,-71.498389,,0.01,,5740,291,134,,,,,,20011621,,, +1630,USA,en,WPQB669,,North Kingston (RI),41.582833,-71.510969,,0.01,,5748,291,134,,,,,,20011665,,, +1630,USA,en,WPQB669,,Providence (RI),41.810992,-71.410969,,0.01,,5725,291,134,,,,,,20011687,,, +1630,USA,en,WPQB669,,Providence (RI),41.816667,-71.416667,,0.01,,5725,291,134,,,,,,20011694,,, +1630,USA,en,WPTJ441,,South Kingston (RI),41.494167,-71.456111,,0.01,,5751,291,134,,,,,,20011585,,, +1630,USA,en,WQAM781,,Natick/22 East Central Ave (MA),42.294308,-71.3445,,0.01,,5686,292,134,,,,,,20011560,,, +1630,USA,en,WQCP849,,Newport (RI),41.511,-71.315361,,0.01,,5740,291,134,,,,,,20011647,,, +1630,USA,en,WQFL674,,Tiverton (RI),41.644339,-71.211031,,0.01,,5724,291,134,,,,,,20011642,,, +1630,USA,en,WQHJ540,,Sharon/215 South Main Street (MA),42.114167,-71.186944,,0.01,,5689,292,134,,,,,,20011584,,, +1630,USA,es,KRND,,Cheyenne/Fox Farm (WY),41.122778,-104.801944,,1,,7718,311,134,,,,991,,38764,,, +1630,USA,en,WPQB669,,Westerly (RI),41.477692,-71.811025,,0.01,,5774,291,135,,,,,,20011702,,, +1630,USA,en,WPTJ441,,Richmond (RI),41.510197,-71.705556,,0.01,,5765,291,135,,,,,,20011631,,, +1630,USA,en,WPWL406,,Narragansett (RI),41.394319,-71.494328,,0.01,,5760,291,135,,,,,,20011666,,, +1630,USA,en,WPYY798,,West Hartford/567 Fern Street (CT),41.766278,-72.761003,,0.01,,5814,292,135,,,,,,20011705,,, +1630,USA,en,WQFI351,,Manchester/75 Center Street (CT),41.775667,-72.527647,,0.01,,5798,292,135,,,,,,20011595,,, +1630,USA,en,KNNV688,,Stony Brook (NY),40.910989,-73.127653,,0.01,,5899,292,136,,,,,,20011661,,, +1630,USA,en,WPMI899,,Hempstead (NY),40.747611,-73.594333,,0.01,,5940,292,136,,,,,,20011575,,, +1630,USA,en,WQAW502,,White Plains/198 Central Avenue (NY),41.0375,-73.779167,,0.01,,5931,292,136,,,,,,20011563,,, +1630,USA,en,WQGF721,,Shinnecock Hills (NY),40.894367,-72.494339,,0.01,,5860,291,136,,,,,,20011606,,, +1630,USA,,KKGM,,Fort Worth (TX),32.81,-97.123333,,1,,8021,301,137,,,,9993,,38718,,, +1630,USA,en,KNAA585,,Jamaica (NJ),40.659,-73.778194,,0.01,,5959,292,137,,,,,,20011689,,, +1630,USA,en,WPMQ427,,Palmer Heights (PA),40.6815,-75.294336,,0.01,,6053,293,137,,,,,,20011568,,, +1630,USA,en,WPQJ970,,North Plainfield/252 Steiner Pl (NJ),40.627656,-74.431806,,0.01,,6002,292,137,,,,,,20011676,,, +1630,USA,en,WPUS415,,Rumson/51 Center St. (NJ),40.371389,-73.996667,,0.01,,5994,292,137,,,,,,20011664,,, +1630,USA,en,WPXA217,,Fort Lee/320 Main Street (NJ),40.860214,-73.973333,,0.01,,5956,292,137,,,,,,20011686,,, +1630,USA,en,WPYJ708,,Clifton (NJ),40.877653,-74.16125,,0.01,,5967,292,137,,,,,,20011692,,, +1630,USA,en,WQCT720,,Staten Island (NY),40.531944,-74.223611,,0.01,,5996,292,137,,,,,,20011592,,, +1630,USA,en,WQCT720,,Staten Island (NY),40.611031,-74.077,,0.01,,5981,292,137,,,,,,20011643,,, +1630,USA,en,WQCT720,,Staten Island (NY),40.613056,-74.153611,,0.01,,5986,292,137,,,,,,20011617,,, +1630,USA,en,WQCV630,,Newark (NJ),40.733333,-74.166667,,0.01,,5978,292,137,,,,,,20011594,,, +1630,USA,en,WQFG844,,Point Pleasant Beach (NJ),40.093539,-74.049167,,0.01,,6017,291,137,,,,,,20011600,,, +1630,USA,en,WQFI274,,Bedminster (NJ),40.643,-74.644336,,0.01,,6015,292,137,,,,,,20011593,,, +1630,USA,en,WQFU348,,Staten Island (NY),40.531944,-74.223611,,0.01,,5996,292,137,,,,,,20011649,,, +1630,USA,en,WQFU348,,Staten Island (NY),40.613056,-74.153611,,0.01,,5986,292,137,,,,,,20011632,,, +1630,USA,en,WQFU348,,Staten Island/I-278 at Hyland Blvd (NY),40.611031,-74.077,,0.01,,5981,292,137,,,,,,20011634,,, +1630,USA,en,WPCD802,,Philadelphia/Int.Airport (PA),39.876778,-75.249639,,0.01,,6110,292,138,,,,,,20011672,,, +1630,USA,en,WPMQ427,,Allentown (PA),40.626831,-75.510983,,0.01,,6071,293,138,,,,,,20011570,,, +1630,USA,en,WPMQ427,,Center Valley (PA),40.560986,-75.429361,,0.01,,6070,293,138,,,,,,20011567,,, +1630,USA,en,WPMQ427,,Fogelsville (PA),40.580639,-75.626306,,0.01,,6081,293,138,,,,,,20011588,,, +1630,USA,en,WPVN712,,Bethlehem (PA),40.649917,-75.410528,,0.01,,6062,293,138,,,,,,20011660,,, +1630,USA,en,WPVT502,,Avalon/3088 Dune Drive (NJ),39.095833,-74.724722,,0.01,,6135,291,138,,,,,,20011678,,, +1630,USA,en,WNQA283,,Salisbury (MD),38.37765,-75.594342,,0.01,,6244,291,139,,,,,,20011711,,, +1630,USA,en,WNQA286,,Severna Park (MD),39.014556,-76.408861,,0.01,,6248,292,139,,,,,,20011704,,, +1630,USA,en,WNQA288,,Denton (MD),38.842611,-75.798,,0.01,,6222,291,139,,,,,,20011708,,, +1630,USA,en,WNQA289,,Queenstown (MD),38.982333,-76.160222,,0.01,,6235,292,139,,,,,,20011709,,, +1630,USA,en,WNQA290,,Easton (MD),38.797056,-76.0605,,0.01,,6242,291,139,,,,,,20011673,,, +1630,USA,en,WNVP742,,Baltimore (MD),39.497056,-76.677694,,0.01,,6228,293,139,,,,,,20011659,,, +1630,USA,en,WNVY509,,Bradshaw (MD),39.427056,-76.394364,,0.01,,6216,292,139,,,,,,20011681,,, +1630,USA,en,WPCT627,,Baltimore (MD),39.313722,-76.544367,,0.01,,6234,292,139,,,,,,20011710,,, +1630,USA,en,WPCT627,,Baltimore (MD),39.347333,-76.746083,,0.01,,6244,292,139,,,,,,20011693,,, +1630,USA,en,WPEP712,,Elkton (MD),39.644322,-75.811022,,0.01,,6163,292,139,,,,,,20011558,,, +1630,USA,en,WPEW742,,Reisterstown (MD),39.477656,-76.844367,,0.01,,6240,293,139,,,,,,20011574,,, +1630,USA,en,WPFJ882,,Ocean City (MD),38.394322,-75.111008,,0.01,,6212,291,139,,,,,,20011590,,, +1630,USA,en,WPMQ427,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011569,,, +1630,USA,en,WPMQ427,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011571,,, +1630,USA,en,WQHB708,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011562,,, +1630,USA,en,WQIW678,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011688,,, +1630,USA,en,KNIC273,,Rockville (MD),39.110389,-77.194361,,0.01,,6290,292,140,,,,,,20011698,,, +1630,USA,en,WNQI569,,Berwyn (MD),39.061778,-76.927694,,0.01,,6277,292,140,,,,,,20011671,,, +1630,USA,en,WNSL337,,Hancock (MD),39.115111,-77.410206,,0.01,,6304,293,140,,,,,,20011690,,, +1630,USA,en,WNVY507,,Rockville (MD),39.016222,-77.127694,,0.01,,6293,292,140,,,,,,20011683,,, +1630,USA,en,WNVY508,,Largo (MD),38.92765,-76.861028,,0.01,,6283,292,140,,,,,,20011669,,, +1630,USA,en,WNVY510,,Frederick (MD),39.410989,-77.433583,,0.01,,6283,293,140,,,,,,20011667,,, +1630,USA,en,WPEW741,,Cooksville (MD),39.327653,-76.978861,,0.01,,6260,293,140,,,,,,20011589,,, +1630,USA,en,WPGS990,,Bowie (MD),38.960389,-76.694364,,0.01,,6270,292,140,,,,,,20011638,,, +1630,USA,en,WPHG707,,Oxon Hill (MD),38.810983,-76.998861,,0.01,,6301,292,140,,,,,,20011573,,, +1630,USA,en,WPIG897,,Gambrills (MD),39.0665,-76.649972,,0.01,,6259,292,140,,,,,,20011628,,, +1630,USA,en,WPMI334,,Williamsport (MD),39.410944,-77.543611,,0.01,,6290,293,140,,,,,,20011625,,, +1630,USA,en,WPMI335,,Piney Grove (MD),39.700083,-78.380278,,0.01,,6320,294,140,,,,,,20011635,,, +1630,USA,en,WPMI336,,Cumberland (MD),39.660981,-78.748083,,0.01,,6346,294,140,,,,,,20011636,,, +1630,USA,en,WPMI340,,Dorsey (MD),39.195944,-76.764417,,0.01,,6257,292,140,,,,,,20011637,,, +1630,USA,en,WPMI342,,Myersville (MD),39.544317,-77.605278,,0.01,,6283,293,140,,,,,,20011639,,, +1630,USA,en,WPPU761,,Altoona (PA),40.444806,-78.444294,,0.01,,6268,294,140,,,,,,20011618,,, +1630,USA,en,WPPU761,,Johnstown (PA),40.2805,-78.848333,,0.01,,6305,295,140,,,,,,20011616,,, +1630,USA,en,WQHK899,,Annandale (VA),38.844292,-77.244294,,0.01,,6314,292,140,,,,,,20011701,,, +1630,USA,en,WQHK899,,City of Alexandria (VA),38.844317,-77.113917,,0.01,,6305,292,140,,,,,,20011703,,, +1630,USA,en,WQHK899,,Manassas (VA),38.8095,-77.527636,,0.01,,6334,292,140,,,,,,20011706,,, +1630,USA,en,WQHK899,,Springfield (VA),38.762889,-77.177675,,0.01,,6316,292,140,,,,,,20011696,,, +1630,USA,en,WQHK899,,Sterling (VA),39.029333,-77.394333,,0.01,,6309,293,140,,,,,,20011700,,, +1630,USA,en,WQHK899,,Woodbridge (VA),38.616444,-77.293083,,0.01,,6334,292,140,,,,,,20011695,,, +1630,USA,en,WPQF661,,Glenfield (PA),40.527639,-80.131444,,0.01,,6366,296,141,,,,,,20011670,,, +1630,USA,en,WPQF661,,Wexford (PA),40.627689,-80.096361,,0.01,,6356,296,141,,,,,,20011712,,, +1630,USA,en,WPQG491,,Amwell township (PA),40.182583,-80.229222,,0.01,,6398,295,141,,,,,,20011572,,, +1630,USA,en,WPZV583,,Beachwood/Family Aquatic Center (OH),41.494328,-81.511003,,0.01,,6377,297,141,,,,,,20011576,,, +1630,USA,en,WQHF578,,Chesterfield (VA),37.277644,-77.465639,,0.01,,6448,291,141,,,,,,20011579,,, +1630,USA,en,WQHJ332,,Chesterfield (VA),37.276944,-77.566667,,0.01,,6454,291,141,,,,,,20011582,,, +1630,USA,en,WQHJ332,,Chesterfield (VA),37.327636,-77.394356,,0.01,,6439,291,141,,,,,,20011583,,, +1630,USA,en,WQHJ332,,Chesterfield (VA),37.531167,-77.646583,,0.01,,6440,291,141,,,,,,20011580,,, +1630,USA,en,WQHJ332,,Chesterfield/Central Library (VA),37.38225,-77.513889,,0.01,,6443,291,141,,,,,,20011581,,, +1630,USA,en,WQHJ332,,Chesterfield/Fire Station 16 SR 604 (VA),37.450167,-77.646583,,0.01,,6446,291,141,,,,,,20011566,,, +1630,USA,en,WQEU865,,Toledo (OH),41.533278,-83.625694,,0.01,,6501,299,142,,,,,,20011614,,, +1630,USA,en,WQEU865,,Toledo (OH),41.694322,-83.694667,,0.01,,6493,299,142,,,,,,20011613,,, +1630,USA,en,WQEU865,,Toledo (OH),41.694356,-83.527683,,0.01,,6483,299,142,,,,,,20011624,,, +1630,USA,en,WQHJ332,,Chesterfield/Grange Hall Elemen.School (VA),37.388056,-77.7665,,0.01,,6458,291,142,,,,,,20011578,,, +1630,USA,en,WPRS255,,Raleigh (NC),35.810994,-78.726856,,0.01,,6642,291,143,,,,,,20011596,,, +1630,USA,en,WPYF783,,Grove City/6220 Young Road (OH),39.844353,-83.097778,,0.01,,6600,297,143,,,,,,20011697,,, +1630,USA,en,WQIZ337,,Springfield (OH),39.877389,-83.965306,,0.01,,6650,297,143,,,,,,20011662,,, +1630,MEX,es,XEUT-AM R Universidad,,Tijuana (bcn),32.533936,-116.968333,,1,,9115,315,144,,1400-0600,1234567,9932,,44930,,, +1630,USA,en,WPGE863,,Mokena/9430 Hickory Creek Dr (IL),41.54975,-87.8445,,0.01,,6750,301,144,,,,,,20011565,,, +1630,USA,en,WPGE863,,Naperville (IL),41.778083,-88.210972,,0.01,,6753,302,144,,,,,,20011651,,, +1630,USA,en,WPGE863,,Northfield (IL),42.160958,-87.844308,,0.01,,6701,302,144,,,,,,20011559,,, +1630,USA,en,WPGE863,,Roselle/2000 S Springinsguth Rd (IL),41.994297,-88.113139,,0.01,,6730,302,144,,,,,,20011564,,, +1630,USA,en,WPGE863,,University Park (IL),41.460964,-87.727642,,0.01,,6750,301,144,,,,,,20011640,,, +1630,USA,en,WPNK720,,High Point (NC),35.933194,-79.993639,,0.01,,6713,292,144,,,,,,20011668,,, +1630,USA,en,WQHF736,,Chicago (IL),41.793,-87.761019,,0.01,,6726,301,144,,,,,,20011577,,, +1630,USA,en,WQHF741,,Chicago (IL),41.977692,-87.894336,,0.01,,6719,302,144,,,,,,20011587,,, +1630,USA,en,WQIZ337,,Clayton (OH),39.860989,-84.326806,,0.01,,6674,298,144,,,,,,20011674,,, +1630,USA,en,WQIQ626,,Arden (NC),35.482222,-82.558889,,0.01,,6911,293,146,,,,,,20011685,,, +1630,USA,en,WNVZ342,,Charleston (SC),32.744336,-79.994317,,0.01,,6968,289,147,,,,,,20011684,,, +1630,USA,en,WPVB565,,Beaufort (SC),32.460989,-80.733111,,0.01,,7038,289,147,,,,,,20011611,,, +1630,USA,en,WPWK972,,Atlanta (GA),33.75,-84.383333,,0.01,,7166,293,149,,,,,,20011679,,, +1630,ARG,es,LRM991 R Amrica,,San Jos (er),-32.202053,-58.209686,,1,,11276,231,151,,,,829,,33000024,,, +1630,USA,en,WPKJ773,,Davenport/101 Adventure Cresent (FL),28.227631,-81.644917,,0.01,,7444,287,151,,,,,,20011623,,, +1630,USA,en,WPWL619,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20011677,,, +1630,ARG,,AM Restauracin,,Hurlingham (ba),-34.6,-58.633333,,1,,11518,230,152,,,,986,,51630,,, +1630,ARG,,R Diagonal 1630,,La Plata (ba),-34.916667,-57.95,,1,,11511,229,152,,,,979,,51924,,, +1630,ARG,es,Super Sport AM,,Temperley (ba),-34.783333,-58.4,,1,,11522,230,152,,,,6,,33000025,,, +1630,USA,en,KNEM463,,Branson (MO),36.660972,-93.294083,,0.01,,7468,301,152,,,,,,20011663,,, +1630,USA,en,WPLP691,,West Palm Beach (FL),26.694308,-80.0795,,0.01,,7468,285,152,,,,,,20011598,,, +1630,USA,en,WPYM991,,Hialeah/4200 West 8th Ave (FL),25.859444,-80.310156,,0.01,,7553,284,152,,,,,,20011699,,, +1630,USA,en,WQFL350,,Hollywood (FL),26.011556,-80.194322,,0.01,,7532,284,152,,,,,,20011650,,, +1630,USA,en,WQFL350,,Hollywood (FL),26.014556,-80.127675,,0.01,,7528,284,152,,,,,,20011658,,, +1630,USA,en,WQFL350,,Hollywood (FL),26.044353,-80.227333,,0.01,,7532,284,152,,,,,,20011648,,, +1630,USA,en,WQHF575,,Wilton Manors (FL),26.155833,-80.14,,0.01,,7517,284,152,,,,,,20011561,,, +1630,USA,en,WQES975,,Daphne/29750 Larry Dee Cawyer Dr (AL),30.658333,-87.911778,,0.01,,7643,293,153,,,,,,20011610,,, +1630,USA,en,WQES975,,Mobile/51 Water Street (AL),30.694339,-88.044339,,0.01,,7649,293,153,,,,,,20011612,,, +1630,USA,en,WQFS424,,Bay Minette (AL),30.947417,-87.860972,,0.01,,7616,293,153,,,,,,20011656,,, +1630,USA,en,WQFS424,,Creola (AL),30.894347,-88.025889,,0.01,,7631,293,153,,,,,,20011653,,, +1630,USA,en,WQFS424,,Loxley (AL),30.64525,-87.711008,,0.01,,7632,293,153,,,,,,20011657,,, +1630,USA,en,WQFS424,,Mobile (AL),30.727639,-88.163333,,0.01,,7653,293,153,,,,,,20011654,,, +1630,USA,en,WQFS424,,Theodore (AL),30.577681,-88.182167,,0.01,,7667,293,154,,,,,,20011655,,, +1630,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20011691,,, +1630,USA,en,WQFL242,,Mt. Vernon/18839 Cedardale Rd (WA),48.371667,-122.3325,,0.01,,7834,327,155,,,,,,20011645,,, +1630,USA,en,WQHG816,,Blaine (WA),48.974889,-122.722806,,0.01,,7791,327,155,,,,,,20000099,,, +1630,USA,en,WQHG816,,Blaine (WA),48.977675,-122.727631,,0.01,,7791,327,155,,,,,,20011586,,, +1630,USA,en,WPLR917,,Baton Rouge (LA),30.44575,-91.243722,,0.01,,7869,295,156,,,,,,20011615,,, +1630,USA,en,WQBV569,,Union Gap (WA),46.559972,-120.477656,,0.01,,7935,325,156,,,,,,20011627,,, +1630,USA,en,WQFX391,,Sequim/71 Carlsborg Rd.-Fire Station (WA),48.080472,-123.177647,,0.01,,7894,327,156,,,,,,20011630,,, +1630,USA,en,WQFX391,,Sequim/Battelle Corp.Headquarters (WA),48.077,-123.046306,,0.01,,7889,327,156,,,,,,20011641,,, +1630,USA,en,WQFX391,,Sequim/Police Headquarters (WA),48.077778,-123.116278,,0.01,,7892,327,156,,,,,,20011629,,, +1630,USA,en,WPPH957,,Seabrook/1400 Cook Road (TX),29.564944,-95.027681,,0.01,,8176,297,159,,,,,,20011619,,, +1630,USA,en,WPQH631,,Galena Park/304 Stewart St. (TX),29.74435,-95.244356,,0.01,,8174,298,159,,,,,,20011707,,, +1630,USA,en,WQEA455,,Paradise/11300 Hwy 70 (CA),39.727644,-121.515861,,0.01,,8633,322,162,,,,,,20011608,,, +1630,USA,en,WQEL573,,Phoenix (AZ),34.25,-111.666667,,0.01,,8691,312,163,,,,,,20011609,,, +1630,USA,en,WPLX517,,Los Angeles (CA),34.076839,-118.446472,,0.01,,9039,317,164,,,,,,20011652,,, +1630,USA,en,WPPZ918,,Los Angeles (CA),34.045833,-118.277644,,0.01,,9034,316,164,,,,,,20011680,,, +1630,USA,en,WPPZ918,,Los Angeles (CA),34.045833,-118.376111,,0.01,,9039,316,164,,,,,,20011675,,, +1630,USA,en,WQGJ267,,Redondo Beach/801 N. Prospect Ave (CA),33.860972,-118.393514,,0.01,,9057,316,164,,,,,,20011633,,, +1630,USA,en,WQIX897,,Calabasas/Water Tank (CA),34.145556,-118.676831,,0.01,,9043,317,164,,,,,,20011682,,, +1632,PNG,,OKT,b,Ok Tedi Mine (wes),-5.395833,141.291667,,0.025,,13385,55,174,,,,0,L1020 U1020 ,85900,,, +1635,NOR,,LGV Vard R,u,Hammerfest (fi),70.716944,23.800044,,1,,2247,17,79,,1203-1218,1234567,,,6300001,,, +1635,NOR,,LGV Vard R,u,Hammerfest (fi),70.716944,23.800044,,1,,2247,17,79,,2303-2318,1234567,,,6300001,,, +1636.4,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-1636.4,,19900066,,, +1638,PHL,,DWGI-AM,,Manila/Quiapo (ncr),14.600278,120.985278,,0.6,,10315,62,150,,,,,,33300016,,, +1638,AUS,ar,2ME R,,Darwin/5 Nemarluk Drive (NT),-12.424444,130.853611,,0.4,,13410,69,162,,,,,,37700003,,, +1638,AUS,en,CRI Easy FM,,Brisbane/Long Pocket (QLD),-27.515156,152.997664,,0.4,,16124,58,171,,0000-2400,1234567,35,,51567,,, +1638,AUS,ar,2ME R,,Melbourne/South Morang (VIC),-37.644608,145.089078,,0.4,,16447,80,172,,0000-2400,1234567,993,,51568,,, +1638,AUS,en,The Goanna,,Armidale (NSW),-30.5,151.666667,,0.4,,16307,63,172,,0000-2400,1234567,995,,51566,,, +1638,AUS,ar,2ME R Arabic,,Sydney/Bicentennial Park (NSW),-33.847789,151.081294,,0.4,,16550,68,173,,0000-2400,1234567,994,,51569,,, +1638,AUS,en,The Goanna,,Hobart/Mount Stuart (TAS),-42.8725,147.301667,,0.4,,16946,86,174,,,,,,37700004,,, +1640,USA,en,WKSH,,Sussex (WI),43.077222,-88.192222,,1,,6650,303,124,,,,0,,42069,,, +1640,DOM,es,R Juventus Don Bosco,,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,,,991,,2196,,, +1640,USA,,KDIA,,Vallejo (D) (CA),37.895556,-122.324167,,10,,8845,321,133,,,,3,,38262,,, +1640,USA,,KDIA,,Vallejo (N) (CA),38.134167,-122.425556,,10,,8826,321,133,,,,,,20016083,,, +1640,USA,en,WQFH340,,York (ME),43.144311,-70.711944,,0.01,,5587,292,133,,,,,,20011723,,, +1640,USA,en,WQIZ298,,Bedford (MA),42.494367,-71.282889,,0.01,,5668,292,134,,,,,,20011776,,, +1640,USA,en,WTNI,,Biloxi (Gulfport) (MS),30.474167,-88.856389,,1,,7718,294,134,,,,12,,32081,,, +1640,USA,en,KZLS,,Enid (OK),36.115278,-97.756389,,1,,7772,303,135,,,,9955,,38417,,, +1640,USA,en,WQFL236,,Schenectady (NY),42.794339,-73.87765,,0.01,,5810,294,135,,,,,,20011737,,, +1640,USA,en,WPLT248,,New York (NY),40.82765,-73.809861,,0.01,,5948,292,136,,,,,,20011853,,, +1640,USA,en,WPLT248,,New York (NY),40.844319,-73.877664,,0.01,,5951,292,136,,,,,,20011806,,, +1640,USA,en,WPLT248,,New York (NY),40.847333,-73.932083,,0.01,,5955,292,136,,,,,,20011868,,, +1640,USA,en,WPLT248,,New York (NY),40.860944,-73.827917,,0.01,,5947,292,136,,,,,,20011782,,, +1640,USA,en,WPLT248,,New York (NY),40.879833,-73.910994,,0.01,,5951,292,136,,,,,,20011845,,, +1640,USA,en,WPXF203,,East Meadow (NY),40.689722,-73.577678,,0.01,,5944,292,136,,,,,,20011807,,, +1640,USA,en,WPXF203,,Elmont (NY),40.694311,-73.727653,,0.01,,5953,292,136,,,,,,20011830,,, +1640,USA,en,WPXF203,,Farmingdale (NY),40.711022,-73.447778,,0.01,,5934,292,136,,,,,,20011838,,, +1640,USA,en,WQBN316,,Nyack/Memorial Park (NY),41.094294,-73.927675,,0.01,,5936,292,136,,,,,,20011812,,, +1640,USA,en,WQBN316,,Sloatsburg (NY),41.160969,-74.1943,,0.01,,5948,292,136,,,,,,20011808,,, +1640,USA,en,WQBN316,,Sparkill/Joe Clark Memorial Park (NY),41.030111,-73.926083,,0.01,,5941,292,136,,,,,,20011811,,, +1640,USA,en,WQBN316,,Suffern (NY),41.121389,-74.144322,,0.01,,5948,292,136,,,,,,20011809,,, +1640,USA,en,WQBN316,,Tomkins Cove/25 Buckberg Road (NY),41.261008,-73.994308,,0.01,,5928,292,136,,,,,,20011796,,, +1640,USA,en,WQBN316,,West Nyack/Germonds Park (NY),41.114639,-73.993572,,0.01,,5939,292,136,,,,,,20011810,,, +1640,USA,en,WQBN317,,Haverstraw/50 West Broad Street (NY),41.197361,-73.965778,,0.01,,5931,292,136,,,,,,20011813,,, +1640,USA,en,WQBN317,,Pomona/Fire Training Center (NY),41.177647,-74.044303,,0.01,,5938,292,136,,,,,,20011814,,, +1640,USA,en,WPLT248,,New York (NY),40.810986,-73.916528,,0.01,,5956,292,137,,,,,,20011860,,, +1640,USA,en,WPMG676,,Monmouth Beach/14 Willow Ave (NJ),40.330667,-73.977361,,0.01,,5995,292,137,,,,,,20011865,,, +1640,USA,en,WPNX700,,Lake Harmony (PA),41.077647,-75.711014,,0.01,,6050,293,137,,,,,,20011834,,, +1640,USA,en,WPRS936,,Harrisburg (PA),41.421389,-75.610231,,0.01,,6018,294,137,,,,,,20011714,,, +1640,USA,en,WPSH236,,Middlesex (NJ),40.580556,-74.510147,,0.01,,6011,292,137,,,,,,20011873,,, +1640,USA,en,WPSQ379,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011828,,, +1640,USA,en,WPVY987,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011738,,, +1640,USA,en,WPWE235,,Clarkes Summit (PA),41.493506,-75.681389,,0.01,,6017,294,137,,,,,,20011843,,, +1640,USA,en,WPWE235,,Scranton (PA),41.383056,-75.7275,,0.01,,6028,294,137,,,,,,20011855,,, +1640,USA,en,WPWE235,,Wilkes-Barre (PA),41.199444,-75.791944,,0.01,,6046,293,137,,,,,,20011841,,, +1640,USA,en,WPWE235,,Wilkes-Barre (PA),41.281111,-75.776856,,0.01,,6039,294,137,,,,,,20011858,,, +1640,USA,en,WPWK636,,Roselle/725 Chesnut Street (NJ),40.660189,-74.261333,,0.01,,5989,292,137,,,,,,20011874,,, +1640,USA,en,WPYS541,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011821,,, +1640,USA,en,WQBR758,,Spring Lake/515 Monmouth Ave (NJ),40.146833,-74.044361,,0.01,,6013,291,137,,,,,,20011870,,, +1640,USA,en,WQBX398,,Paterson (NJ),40.911008,-74.147639,,0.01,,5964,292,137,,,,,,20011848,,, +1640,USA,,KDZR,i,Lake Oswego (OR),45.453889,-122.546389,,1,,8122,325,138,,,,988,,38306,,, +1640,USA,en,WNRW290,,Franklin Township (PA),40.844311,-75.677681,,0.01,,6065,293,138,,,,,,20011722,,, +1640,USA,en,WNRW290,,Washington Township (PA),40.73175,-75.62825,,0.01,,6070,293,138,,,,,,20011721,,, +1640,USA,en,WPKX724,,Calico Corner (PA),40.133167,-75.977686,,0.01,,6137,293,138,,,,,,20011794,,, +1640,USA,en,WPKX724,,Hatboro (PA),40.163167,-75.127669,,0.01,,6081,292,138,,,,,,20011771,,, +1640,USA,en,WPKX724,,Kulpsville (PA),40.249556,-75.344339,,0.01,,6088,292,138,,,,,,20011770,,, +1640,USA,en,WPKX724,,Lionville (PA),40.07765,-75.677686,,0.01,,6122,292,138,,,,,,20011787,,, +1640,USA,en,WPKX724,,Norristown (PA),40.109,-75.294336,,0.01,,6095,292,138,,,,,,20011754,,, +1640,USA,en,WPKX724,,Valley Forge (PA),40.082889,-75.444347,,0.01,,6107,292,138,,,,,,20011785,,, +1640,USA,en,WPNX700,,Conshohocken (PA),40.064833,-75.327681,,0.01,,6101,292,138,,,,,,20011859,,, +1640,USA,en,WPNX700,,Festerville Trevose (PA),40.133167,-74.977669,,0.01,,6073,292,138,,,,,,20011826,,, +1640,USA,en,WPNX700,,Morgantown (PA),40.162306,-75.882722,,0.01,,6128,293,138,,,,,,20011820,,, +1640,USA,en,WPRR689,,Greene Township (PA),41.061028,-77.2975,,0.01,,6150,294,138,,,,,,20011769,,, +1640,USA,en,WPRR689,,Greene Township (PA),41.062861,-77.2155,,0.01,,6145,294,138,,,,,,20011779,,, +1640,USA,en,WPRT265,,Harrisburg (PA),41.043333,-76.023056,,0.01,,6072,293,138,,,,,,20011713,,, +1640,USA,en,WPVN442,,Brigantine (NJ),39.396667,-74.38,,0.01,,6090,291,138,,,,,,20011743,,, +1640,USA,en,WPWD996,,Bristol (PA),40.121667,-74.860197,,0.01,,6067,292,138,,,,,,20011727,,, +1640,USA,en,WPWD996,,Fort Washington (PA),40.143497,-75.196389,,0.01,,6087,292,138,,,,,,20011742,,, +1640,USA,en,WPWD996,,Quakertown (PA),40.443547,-75.4225,,0.01,,6079,293,138,,,,,,20011780,,, +1640,USA,en,WPWD996,,Reamstown (PA),40.214722,-76.081667,,0.01,,6137,293,138,,,,,,20011730,,, +1640,USA,en,WPWE235,,Allentown (PA),40.593333,-75.576881,,0.01,,6077,293,138,,,,,,20011872,,, +1640,USA,en,WQBV596,,Mount Laurel Twp. (NJ),39.977633,-74.911833,,0.01,,6081,292,138,,,,,,20011850,,, +1640,USA,en,WQCQ727,,Mount Laurel Twp. (NJ),39.977633,-74.911833,,0.01,,6081,292,138,,,,,,20011715,,, +1640,USA,en,WQFF632,,Brooklawn (NJ),39.878528,-75.127675,,0.01,,6102,292,138,,,,,,20011739,,, +1640,USA,en,WQFL338,,Wilmington (DE),39.760967,-75.564611,,0.01,,6138,292,138,,,,,,20011733,,, +1640,USA,en,WQFL338,,Wilmington/Concord Pike (DE),39.7777,-75.5443,,0.01,,6136,292,138,,,,,,20011720,,, +1640,USA,en,WQFL338,,Wilmington/Public Works Department (DE),39.727689,-75.544356,,0.01,,6140,292,138,,,,,,20011725,,, +1640,USA,en,WQGS571,,North Wildwood (NJ),39.011022,-74.796611,,0.01,,6146,291,138,,,,,,20011864,,, +1640,USA,en,WQGW857,,Plymouth Meeting (PA),40.108333,-75.293564,,0.01,,6095,292,138,,,,,,20011839,,, +1640,USA,en,WQGW857,,Wayne (PA),40.082778,-75.440833,,0.01,,6106,292,138,,,,,,20011803,,, +1640,USA,en,WQGW857,,West Conshohocken (PA),40.077675,-75.327661,,0.01,,6100,292,138,,,,,,20011800,,, +1640,USA,es,KBJA,,Sandy (UT),40.713056,-111.931389,,1,,8108,316,138,,,,999,,38042,,, +1640,USA,en,WPNX499,,Carlisle (PA),40.229528,-77.161028,,0.01,,6204,293,139,,,,,,20011827,,, +1640,USA,en,WPNX700,,New Cumberland (PA),40.210639,-76.88275,,0.01,,6188,293,139,,,,,,20011819,,, +1640,USA,en,WPRR689,,Marion Township (PA),41.059694,-77.4315,,0.01,,6159,294,139,,,,,,20011786,,, +1640,USA,en,WPRR689,,Porter Township (PA),41.030778,-77.526806,,0.01,,6167,294,139,,,,,,20011784,,, +1640,USA,en,WPRR689,,Springs Township (PA),40.961022,-77.761,,0.01,,6186,294,139,,,,,,20011756,,, +1640,USA,en,WPRR689,,Woodland (PA),41.027639,-78.361,,0.01,,6219,295,139,,,,,,20011777,,, +1640,USA,en,WPUV623,,Clearfield (PA),40.981,-78.144342,,0.01,,6209,295,139,,,,,,20011734,,, +1640,USA,en,WPUV623,,Clearfield (PA),41.044367,-78.398528,,0.01,,6220,295,139,,,,,,20011718,,, +1640,USA,en,WPUV623,,Clearfield (PA),41.098722,-78.525639,,0.01,,6224,295,139,,,,,,20011729,,, +1640,USA,en,WPUV623,,Clearfield (PA),41.144944,-78.794339,,0.01,,6237,295,139,,,,,,20011732,,, +1640,USA,en,WPUV623,,Dubois (PA),41.127633,-78.694339,,0.01,,6232,295,139,,,,,,20011740,,, +1640,USA,en,WPUV623,,Lock Haven (PA),41.027669,-77.949194,,0.01,,6193,295,139,,,,,,20011741,,, +1640,USA,en,WPVQ775,,McKinney (PA),40.153611,-77.613056,,0.01,,6238,294,139,,,,,,20011781,,, +1640,USA,en,WPVQ775,,Willow Hill (PA),40.094722,-77.813889,,0.01,,6255,294,139,,,,,,20011744,,, +1640,USA,en,WPVQ775,,Winding Heights (PA),40.1975,-76.976111,,0.01,,6195,293,139,,,,,,20011778,,, +1640,USA,en,WPWD996,,Highspire (PA),40.216667,-76.786944,,0.01,,6181,293,139,,,,,,20011731,,, +1640,USA,en,WPWD996,,Mastersonville (PA),40.231667,-76.443556,,0.01,,6159,293,139,,,,,,20011728,,, +1640,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011842,,, +1640,USA,en,WPYI899,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011823,,, +1640,USA,en,WQEY257,,Reynoldsville (PA),41.161011,-78.912472,,0.01,,6243,295,139,,,,,,20011749,,, +1640,USA,en,WQEY258,,Brookville (PA),41.143497,-78.982417,,0.01,,6248,295,139,,,,,,20011748,,, +1640,USA,en,WQEY258,,Brookville (PA),41.166917,-79.046278,,0.01,,6251,295,139,,,,,,20011746,,, +1640,USA,en,WQEY258,,Brookville (PA),41.177644,-79.09775,,0.01,,6253,295,139,,,,,,20011783,,, +1640,USA,en,WPED444,,Cambridge (MD),38.560986,-75.994389,,0.01,,6256,291,140,,,,,,20011857,,, +1640,USA,en,WPLS956,,Adelphi (MD),39.02765,-76.961028,,0.01,,6282,292,140,,,,,,20011735,,, +1640,USA,en,WPLS956,,College Park (MD),38.992611,-76.944367,,0.01,,6283,292,140,,,,,,20011719,,, +1640,USA,en,WPNX499,,Bedford (PA),40.060978,-78.510961,,0.01,,6301,294,140,,,,,,20011833,,, +1640,USA,en,WPNX499,,Breezewood (PA),39.994314,-78.260147,,0.01,,6290,294,140,,,,,,20011829,,, +1640,USA,en,WPNX499,,Monroeville (PA),40.444303,-79.760969,,0.01,,6349,295,140,,,,,,20011837,,, +1640,USA,en,WPNX499,,Zelienople (PA),40.679222,-80.110969,,0.01,,6353,296,140,,,,,,20011836,,, +1640,USA,en,WPVQ775,,Donegal (PA),40.108611,-79.381389,,0.01,,6351,295,140,,,,,,20011755,,, +1640,USA,en,WPVQ775,,Fort Littleton (PA),40.060172,-77.960833,,0.01,,6267,294,140,,,,,,20011745,,, +1640,USA,en,WPVQ775,,Somerset (PA),40.026889,-79.081667,,0.01,,6339,294,140,,,,,,20011768,,, +1640,USA,en,WPWE236,,Gibsonia (PA),40.611111,-79.946667,,0.01,,6348,296,140,,,,,,20011869,,, +1640,USA,en,WPWE236,,Indianola (PA),40.541944,-79.825,,0.01,,6346,295,140,,,,,,20011844,,, +1640,USA,en,WPWE236,,Irwin (PA),40.312778,-79.679444,,0.01,,6354,295,140,,,,,,20011852,,, +1640,USA,en,WPXC773,,Hollidaysburg (PA),40.433333,-78.383333,,0.01,,6265,294,140,,,,,,20011797,,, +1640,USA,en,WPYM226,,Erie (PA),42.031778,-80.294331,,0.01,,6262,297,140,,,,,,20011822,,, +1640,USA,en,WQEY257,,Emlenton (PA),41.177658,-79.744364,,0.01,,6293,296,140,,,,,,20011750,,, +1640,USA,en,WQEY257,,Emlenton (PA),41.183,-79.677642,,0.01,,6288,296,140,,,,,,20011751,,, +1640,USA,en,WQEY257,,Knox (PA),41.194361,-79.5443,,0.01,,6279,296,140,,,,,,20011752,,, +1640,USA,en,WQEY257,,Shippenville (PA),41.194111,-79.425889,,0.01,,6272,296,140,,,,,,20011753,,, +1640,USA,en,WQEY258,,Clarion (PA),41.17625,-79.347333,,0.01,,6268,296,140,,,,,,20011790,,, +1640,USA,en,WQEY258,,Corsica (PA),41.183583,-79.244417,,0.01,,6261,296,140,,,,,,20011791,,, +1640,USA,en,WQEY258,,Corsica (PA),41.194319,-79.197306,,0.01,,6258,296,140,,,,,,20011792,,, +1640,USA,en,WPMQ789,,Akron (OH),41.083333,-81.516667,,0.01,,6408,297,141,,,,,,20011824,,, +1640,USA,en,WPNX499,,New Stanton (PA),40.227647,-79.610961,,0.01,,6356,295,141,,,,,,20011798,,, +1640,USA,en,WPUN649,,Garfield Heights (OH),41.416667,-81.6,,0.01,,6388,297,141,,,,,,20011875,,, +1640,USA,en,WPWE236,,Homewood (PA),40.814722,-80.345972,,0.01,,6357,296,141,,,,,,20011846,,, +1640,USA,en,WPWE236,,New Castle (PA),40.837778,-80.373611,,0.01,,6357,296,141,,,,,,20011847,,, +1640,USA,en,WPWE236,,Petersburg (PA),40.904167,-80.493889,,0.01,,6359,296,141,,,,,,20011849,,, +1640,USA,en,WQEL350,,Middleburg Heights/13213 Pearl Road (OH),41.316667,-81.84435,,0.01,,6410,297,141,,,,,,20011831,,, +1640,USA,en,WQGH532,,Mayfield (OH),41.540833,-81.440278,,0.01,,6369,297,141,,,,,,20011867,,, +1640,USA,en,WQIY899,,Romulus (MI),42.232472,-83.361031,,0.01,,6432,299,141,,,,,,20011724,,, +1640,USA,en,WPSK550,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20011805,,, +1640,USA,en,WQFQ810,,Columbus (OH),39.997778,-82.894294,,0.01,,6576,297,143,,,,,,20011861,,, +1640,USA,en,WPSF938,,Hampstead (NC),34.389167,-77.6875,,0.01,,6687,289,144,,,,,,20011856,,, +1640,USA,en,WPXX639,,Benson (NC),35.3925,-78.526881,,0.01,,6662,290,144,,,,,,20011840,,, +1640,USA,en,WQHG634,,Greensboro/724 Stirling St (NC),36.064222,-79.811361,,0.01,,6691,292,144,,,,,,20011818,,, +1640,USA,en,WPKM208,,Rowland (NC),34.495722,-79.244294,,0.01,,6779,290,145,,,,,,20011757,,, +1640,USA,en,WPSL489,,North Wilkesboro (NC),36.166667,-81.15,,0.01,,6768,293,145,,,,,,20011817,,, +1640,USA,en,WPNZ651,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20011862,,, +1640,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20011801,,, +1640,USA,en,WPVB565,,Beaufort (SC),32.433333,-80.666667,,0.01,,7036,289,147,,,,,,20011758,,, +1640,USA,en,WQBS681,,Beaufort (SC),32.396444,-80.765361,,0.01,,7045,289,147,,,,,,20011863,,, +1640,USA,en,WQBS681,,Gardens Corner (SC),32.610967,-80.76025,,0.01,,7028,290,147,,,,,,20011871,,, +1640,USA,en,WPVB565,,Okatie (SC),32.2943,-80.944311,,0.01,,7065,289,148,,,,,,20011759,,, +1640,USA,en,WPVV612,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011716,,, +1640,ARG,,R Boanerges,,Posadas (mn),-27.366667,-55.866667,,1,,10704,232,149,,,,,,51926,,, +1640,PRU,es,R Kalikanto,,Chamaca (cus),-14.3,-71.85,,1,,10478,252,149,,,,13,,37000052,,, +1640,USA,en,WPKU228,,Saint Cloud (FL),28.096694,-81.277642,,0.01,,7431,287,151,,,,,,20011762,,, +1640,USA,en,WPRF555,,Fort Pierce (FL),27.411694,-80.398944,,0.01,,7430,285,151,,,,,,20011766,,, +1640,USA,en,WPRF555,,Orlando (FL),28.4775,-81.446472,,0.01,,7410,287,151,,,,,,20011767,,, +1640,USA,en,WPRF555,,Stuart (FL),27.160889,-80.310967,,0.01,,7445,285,151,,,,,,20011765,,, +1640,USA,en,WPRF555,,Wildwood (FL),28.837222,-82.045639,,0.01,,7419,288,151,,,,,,20011832,,, +1640,USA,en,WPSG968,,Tallahassee (FL),30.444306,-84.310972,,0.01,,7433,290,151,,,,,,20011854,,, +1640,USA,en,WPWL619,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20011816,,, +1640,USA,en,WPXY389,,Nevada/Fire Department (MO),37.844297,-94.358917,,0.01,,7430,302,151,,,,,,20011825,,, +1640,USA,en,WQCC789,,Nevada (MO),37.844297,-94.358917,,0.01,,7430,302,151,,,,,,20011804,,, +1640,USA,en,WQDC927,,Casselberry (FL),28.6725,-81.343572,,0.01,,7387,287,151,,,,,,20011795,,, +1640,USA,en,WQEY603,,Orlando (FL),28.446,-81.38,,0.01,,7408,287,151,,,,,,20011788,,, +1640,USA,en,WQEY603,,Sanford (FL),28.661006,-81.232,,0.01,,7381,287,151,,,,,,20011789,,, +1640,ARG,,Hosanna AM 1640,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,987,,33000008,,, +1640,USA,en,WPKU228,,Lake Worth (FL),26.644303,-80.177642,,0.01,,7479,285,152,,,,,,20011761,,, +1640,USA,en,WPRF555,,Deerfield (FL),26.310981,-80.177639,,0.01,,7506,284,152,,,,,,20011764,,, +1640,USA,en,WPRF555,,Miramar (FL),25.977647,-80.244306,,0.01,,7539,284,152,,,,,,20011760,,, +1640,USA,en,WPUR527,,Bartow (FL),27.9,-81.85,,0.01,,7484,287,152,,,,,,20011736,,, +1640,USA,en,WQDM970,,Sunrise/Sawgrass Expressway (FL),26.176611,-80.30975,,0.01,,7526,284,152,,,,,,20011747,,, +1640,USA,en,WPKU228,,Sweetwater (FL),25.760111,-80.382833,,0.01,,7566,284,153,,,,,,20011763,,, +1640,USA,en,WPSH372,,Fort Myers Beach (FL),26.448056,-81.9425,,0.01,,7611,286,153,,,,,,20011866,,, +1640,USA,en,WQHY745,,Tukwila (WA),47.476839,-122.262778,,0.01,,7917,326,156,,,,,,20011799,,, +1640,USA,en,WPAM217,,Channelview/8280 Sheldon Road (TX),29.844353,-95.116056,,0.01,,8158,297,159,,,,,,20011835,,, +1640,USA,en,WPUJ590,,Temple/3620 Range Road (TX),31.130528,-97.34825,,0.01,,8180,300,159,,,,,,20011815,,, +1640,USA,en,WPUJ590,,Temple/Lyon Park (TX),31.061944,-97.411019,,0.01,,8189,300,159,,,,,,20011851,,, +1640,USA,en,WQDH211,,Austin/Bergstrom Int.Airport (TX),30.194319,-97.677661,,0.01,,8281,300,160,,,,,,20011793,,, +1640,USA,en,WQCY276,,Kingman (AZ),35.183333,-114.05,,0.01,,8723,314,163,,,,,,20011773,,, +1640,USA,en,WQCY276,,Kingman (AZ),35.183333,-114.05,,0.01,,8723,314,163,,,,,,20011775,,, +1640,USA,en,WPKA209,,Irvine (CA),33.660189,-117.829861,,0.01,,9050,316,164,,,,,,20011772,,, +1640,USA,en,WPKA209,,Irvine (CA),33.676139,-117.764194,,0.01,,9045,316,164,,,,,,20011717,,, +1640,USA,en,WPKA209,,Irvine (CA),33.725972,-117.745556,,0.01,,9039,316,164,,,,,,20011774,,, +1640,USA,en,WQIY892,,Murrieta (CA),33.555,-117.2125,,0.01,,9030,315,164,,,,,,20011726,,, +1641,FRO,,OXJ Trshavn R,u,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,0020-0040,1234567,,,2700001,,, +1641,FRO,,OXJ Trshavn R,u,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,0520-0540,1234567,,,2700001,,, +1642.5,HOL,,Den Helder SAR,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,-1642.5,,19900638,,, +1644,CNR,,Arrecife R,u,Montaa de Hara (LPM-LA),29.124022,-13.519211,,1,,3038,220,87,,0703-0718,1234567,,,1500001,,, +1644,CNR,,Arrecife R,u,Montaa de Hara (LPM-LA),29.124022,-13.519211,,1,,3038,220,87,,1233-1248,1234567,,,1500001,,, +1644,CNR,,Arrecife R,u,Montaa de Hara (LPM-LA),29.124022,-13.519211,,1,,3038,220,87,,1903-1918,1234567,,,1500001,,, +1644,QAT,,IS,b,Halul Island (kwr),25.675,52.408333,,0.025,,4827,109,121,,,,,,85902,,, +1645,B,,MLZ,b,Platform Merluza (SP),-25.270833,-45.291667,,0.025,,9961,225,163,,,,,L405 U386 4.8s,85903,,, +1647,AUS,,Vision R Network,,Mackay (QLD),-21.116667,149.216667,,1,,15322,57,165,,,,,,37700032,,, +1649.5,J,ja,Bisan Martis,u,Aonoyama (shi-kag),34.303278,133.820944,,0.01,,9135,41,164,,:00-:15,1234567,-1649.5,,31400025,,, +1649.5,J,ja,Bisan Martis,u,Aonoyama (shi-kag),34.303278,133.820944,,0.01,,9135,41,164,,:30-:45,1234567,-1649.5,,31400025,,, +1649.5,J,ja,Kanmon Martis,u,Matsubara (kyu-fuk),33.897208,130.918894,,0.01,,9040,44,164,,:00-:15,1234567,-1649.5,,31400019,,, +1649.5,J,ja,Kanmon Martis,u,Matsubara (kyu-fuk),33.897208,130.918894,,0.01,,9040,44,164,,:30-:45,1234567,-1649.5,,31400019,,, +1649.5,J,ja,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,:15-:30,1234567,-1649.5,,31400020,,, +1649.5,J,ja,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,:45-:00,1234567,-1649.5,,31400020,,, +1649.5,J,ja,Osaka Martis,u,Matsuhosaki (kns-hyo),34.608458,135.003164,,0.01,,9158,40,164,,:15-:30,1234567,-1649.5,,31400027,,, +1649.5,J,ja,Osaka Martis,u,Matsuhosaki (kns-hyo),34.608458,135.003164,,0.01,,9158,40,164,,:45-:00,1234567,-1649.5,,31400027,,, +1650,F,fr,CROSS Gris-Nez,u,Cap Gris-Nez (62),50.867778,1.5825,,1,,362,249,61,,0550-0605,1234567,,,2500004,,, +1650,F,fr,CROSS Gris-Nez,u,Cap Gris-Nez (62),50.867778,1.5825,,1,,362,249,61,,1755-1805,1234567,,,2500004,,, +1650,F,fr,CROSS Jobourg,u,Jobourg (50),49.684083,-1.907144,,1,,642,248,63,,0815-0825,1234567,,,2500025,,, +1650,F,fr,CROSS Jobourg,u,Jobourg (50),49.684083,-1.907144,,1,,642,248,63,,2015-2025,1234567,,,2500025,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0000-0015,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0600-0615,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0635-0645,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0715-0730,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1835-1845,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1915-1930,1234567,,,2500008,,, +1650,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,????-????,1234567,,,2500003,,, +1650,EST,,Kuressaare Piirivalve MRSCC,u,Kuressaare (Saa),58.25,22.5,,1,,1224,50,69,,????-????,1234567,,,19900513,,, +1650,EST,,ESP Prnu R,u,Prnu (Pae),58.375,24.516667,,1,,1336,52,70,,????-????,1234567,,,19900516,,, +1650,EST,,Kardla Piirivalve MRSCC,u,Kardla (Hii),59,22.75,,1,,1276,47,70,,????-????,1234567,,,19900512,,, +1650,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,0433-0443,1234567,,,2400002,,, +1650,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,1333-1343,1234567,,,2400002,,, +1650,EST,,Narva-Jesuu Piirivalve MRSCC,u,Narva-Jesuu (Ida),59.458333,28.038889,,1,,1569,50,73,,????-????,1234567,,,19900514,,, +1650,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,????-????,1234567,,,4000013,,, +1650,GRC,el,R Thessalos,,Larissa (the-lar),39.633333,22.416667,,1,,1852,132,76,,,,,,3400009,,, +1650,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400059,,, +1650,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900835,,, +1650,BEN,,TYA Cotonou R,u,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900258,,, +1650,TGO,,5VA Lom R,u,Lom (mar),6.139522,1.27935,,1,,5133,187,108,,????-????,1234567,,,19901403,,, +1650,CAN,xx,CJRS,,Montral (QC),45.4875,-73.668611,,1,,5608,296,113,,,,0,,20100001,,, +1650,CAN,xx,CINA,,Mississauga (ON),43.625556,-79.631111,,0.68,,6103,298,120,,,,997,,20100006,,, +1650,USA,en,WHKT,,Portsmouth (VA),36.802778,-76.282778,,1,,6409,290,121,,,,10,,30560,,, +1650,USA,en,KCNZ,,Cedar Falls (IA),42.413056,-92.4375,,1,,6944,305,126,,,,103,,38188,,, +1650,USA,en,KYHN,,Fort Smith (AR),35.274722,-94.459722,,1,,7653,301,134,,,,,,39710,,, +1650,USA,en,WQBQ732,,East Boston (MA),42.37765,-71.028944,,0.01,,5661,292,134,,,,,,20011955,,, +1650,USA,es,KBJD,,Denver (CO),39.798889,-104.97,,1,,7844,311,135,,,,28,,38043,,, +1650,USA,en,WQFQ235,,Harvey Cedars (NJ),39.6925,-74.142833,,0.01,,6053,291,137,,,,,,20011892,,, +1650,USA,en,WQFQ235,,Harvey Cedars/1 West Salem Ave (NJ),39.6925,-74.142778,,0.01,,6053,291,137,,,,,,20011877,,, +1650,MEX,es,XEAZR-AM ZER R 1650,,Mxico D.F. (dif),19.433333,-99.133333,,5,,9322,294,138,,,,990,,34900029,,, +1650,USA,en,WQEA211,,Mount Holly (NJ),39.85,-74.633333,,0.01,,6073,292,138,,,,,,20011916,,, +1650,USA,en,WPMG694,,Chardon (OH),41.616667,-81.15,,0.01,,6345,297,140,,,,,,20011894,,, +1650,USA,en,WQAJ522,,Washington (DC),38.83,-77.026831,,0.01,,6301,292,140,,,,,,20011948,,, +1650,USA,en,WQAJ522,,Washington (DC),38.875,-76.974722,,0.01,,6294,292,140,,,,,,20011952,,, +1650,USA,en,WQAJ522,,Washington (DC),38.910206,-77.056111,,0.01,,6297,292,140,,,,,,20011947,,, +1650,USA,en,WQAJ522,,Washington (DC),38.956111,-77.010181,,0.01,,6290,292,140,,,,,,20011949,,, +1650,USA,en,WQAJ522,,Washington (DC),38.960206,-77.074167,,0.01,,6294,292,140,,,,,,20011954,,, +1650,USA,en,WQAJ522,,Washington/1403 W Street NE (DC),38.926864,-76.993547,,0.01,,6292,292,140,,,,,,20011950,,, +1650,USA,en,WQEL336,,Fairfax/3730 Old Lee Highway (VA),38.860164,-77.299167,,0.01,,6316,292,140,,,,,,20011957,,, +1650,USA,en,WQEL336,,Fairfax/4081 University Drive (VA),38.843556,-77.311022,,0.01,,6318,292,140,,,,,,20011958,,, +1650,USA,en,WPME348,,Chardon/13281 Ravenna Rd (OH),41.510972,-81.192889,,0.01,,6356,297,141,,,,,,20011900,,, +1650,USA,en,WPMU972,,Bridgeville (PA),40.360972,-80.127636,,0.01,,6378,295,141,,,,,,20011913,,, +1650,USA,en,WPWK899,,Riverview/14100 Civic Park Place (MI),42.177,-83.194,,0.01,,6426,299,141,,,,,,20011932,,, +1650,USA,en,WQGD298,,Cuyahoga Falls/Wyoga Lake Rd. (MI),41.1645,-81.494358,,0.01,,6401,297,141,,,,,,20011898,,, +1650,USA,en,WQGH391,,Farmington Hills (MI),42.493506,-83.358333,,0.01,,6412,299,141,,,,,,20011896,,, +1650,USA,en,WQHC395,,Marysville (OH),40.243539,-83.366667,,0.01,,6585,297,143,,,,,,20011908,,, +1650,USA,en,WQII422,,Columbus (OH),40.213333,-83.005,,0.01,,6566,297,143,,,,,,20011910,,, +1650,USA,es,KSVE,,El Paso (TX),31.753611,-106.416111,,0.85,,8642,307,143,,,,,,38039,,, +1650,USA,en,WPXZ497,,Evanston/2020 Asbury Ave (IL),42.060997,-87.694314,,0.01,,6701,301,144,,,,,,20011956,,, +1650,USA,en,WPZZ656,,Aurora/500 N Ohio St. (IL),41.765722,-88.2935,,0.01,,6759,302,145,,,,,,20011929,,, +1650,USA,en,WQFD910,,Kankakee (IL),41.305833,-87.981389,,0.01,,6777,301,145,,,,,,20011893,,, +1650,USA,en,WQEX428,,Shelbyville (KY),38.216667,-85.216667,,0.01,,6858,297,146,,,,,,20011911,,, +1650,USA,en,WQBR594,,Algood/191 Loftis Dr (TN),36.216111,-85.444311,,0.01,,7032,295,147,,,,,,20011940,,, +1650,USA,en,WQBR594,,Baxter/404 Elm St. (TN),36.160975,-85.64435,,0.01,,7049,296,147,,,,,,20011942,,, +1650,USA,en,WQBR594,,Cookeville/511 E Veterans Dr (TN),36.14,-85.5,,0.01,,7042,295,147,,,,,,20011943,,, +1650,USA,ko,KFOX,,Torrance (CA),34.019444,-118.344722,,0.49,,9040,316,147,,,,9999,,38421,,, +1650,USA,en,WQBR594,,Silver Point (TN),36.092889,-85.743514,,0.01,,7060,296,148,,,,,,20011931,,, +1650,USA,en,WQFS212,,Athens (GA),33.956667,-83.370833,,0.01,,7085,292,148,,,,,,20011906,,, +1650,USA,en,WQID284,,Heflin (AL),33.644722,-85.439167,,0.01,,7241,293,149,,,,,,20011905,,, +1650,USA,en,WQII416,,Guntersville (AL),34.35,-86.3,,0.01,,7237,295,149,,,,,,20011901,,, +1650,USA,en,WQIM209,,Alexander City (AL),32.95,-85.95,,0.01,,7330,293,150,,,,,,20011895,,, +1650,USA,en,WQDN417,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20011927,,, +1650,USA,en,WQDW634,,Melbourne/701 S Babcock St. (FL),28.095,-80.620833,,0.01,,7388,286,151,,,,,,20011928,,, +1650,USA,en,WQEL638,,Orlando (FL),28.444319,-81.361006,,0.01,,7407,287,151,,,,,,20011888,,, +1650,USA,en,WQEL638,,Orlando (FL),28.527669,-81.376333,,0.01,,7401,287,151,,,,,,20011883,,, +1650,USA,en,WQEL638,,Orlando (FL),28.593547,-81.430333,,0.01,,7400,287,151,,,,,,20011886,,, +1650,USA,en,WQEL638,,Orlando/110 N Andes Ave (FL),28.541667,-81.325,,0.01,,7397,287,151,,,,,,20011876,,, +1650,ARG,,R Fortaleza,,Ezeiza (ba),-34.85,-58.533333,,1,,11535,230,152,,,,,,51927,,, +1650,ARG,es,LRI227 Antares AM,,Pilar (ba),-34.467572,-58.973217,,1,,11524,230,152,,,,,,33000005,,, +1650,ARG,es,R El Mensajero,,Rafael Castillo (ba),-34.716667,-58.616667,,1,,11528,230,152,,,,,,33000092,,, +1650,ARG,es,R Guarani,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,989,,33000076,,, +1650,USA,en,WPQJ971,,Boca Raton (FL),26.36175,-80.082833,,0.01,,7496,284,152,,,,,,20011903,,, +1650,USA,en,WPZQ420,,Aventura/3401 NE 213th Street (FL),25.973333,-80.143489,,0.01,,7532,284,152,,,,,,20011935,,, +1650,USA,en,WQBV776,,Miami (FL),25.794333,-80.264667,,0.01,,7555,284,152,,,,,,20011921,,, +1650,USA,en,WQBV776,,Miami (FL),25.794356,-80.210972,,0.01,,7552,284,152,,,,,,20011917,,, +1650,USA,en,WQFF542,,Lauderhill/1980 NW 56th Ave (FL),26.160214,-80.221667,,0.01,,7522,284,152,,,,,,20011914,,, +1650,USA,en,WQFM352,,Greenacres (FL),26.632278,-80.145611,,0.01,,7478,285,152,,,,,,20011879,,, +1650,ARG,es,R Regional AM,,Laboulaye (cb),-34.116667,-63.4,,1,,11731,234,153,,,,,,33000075,,, +1650,USA,en,WPWL619,,Pensacola (FL),30.461,-87.227697,,0.01,,7617,292,153,,,,,,20011924,,, +1650,USA,en,WQBV776,,Miami (FL),25.782167,-80.325,,0.01,,7560,284,153,,,,,,20011923,,, +1650,USA,en,WQBV776,,Miami (FL),25.793489,-80.411,,0.01,,7565,284,153,,,,,,20011919,,, +1650,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20011933,,, +1650,USA,en,WQHM720,,San Juan County (WA),48.57,-122.97,,0.01,,7839,327,155,,,,,,20011880,,, +1650,USA,en,WQHM720,,Skagit County (WA),48.48,-121.78,,0.01,,7803,326,155,,,,,,20011887,,, +1650,USA,en,WQHM720,,Snohomish County (WA),48.04,-121.71,,0.01,,7842,326,155,,,,,,20011882,,, +1650,USA,en,WQHM720,,Whatcom County (WA),48.83,-121.9,,0.01,,7774,327,155,,,,,,20011904,,, +1650,USA,en,WPLR917,,Baton Rouge (LA),30.394342,-91.065111,,0.01,,7862,295,156,,,,,,20011897,,, +1650,USA,en,WPUJ289,,Kent/220 4th Avenue South (WA),47.380222,-122.244344,,0.01,,7926,326,156,,,,,,20011941,,, +1650,USA,en,WPXL907,,Tacoma (WA),47.244317,-122.394325,,0.01,,7944,326,156,,,,,,20011953,,, +1650,USA,en,WQBM442,,Tacoma (WA),47.244317,-122.394325,,0.01,,7944,326,156,,,,,,20011951,,, +1650,USA,en,WQHF574,,Snoqualmie/3484 Jacobia Street (WA),47.516,-121.876,,0.01,,7899,326,156,,,,,,20011909,,, +1650,USA,en,WQHK903,,Redmond/8450 161st Ave NE (WA),47.6775,-122.126111,,0.01,,7893,326,156,,,,,,20011885,,, +1650,USA,en,WQHK904,,Vashon (WA),47.426856,-122.463889,,0.01,,7930,326,156,,,,,,20011890,,, +1650,USA,en,WQHK904,,Vashon (WA),47.486944,-122.476897,,0.01,,7924,326,156,,,,,,20011891,,, +1650,USA,en,WQHM720,,Island County (WA),48.15,-122.58,,0.01,,7865,327,156,,,,,,20011881,,, +1650,USA,en,WQHM720,,King County (WA),47.47,-121.84,,0.01,,7902,326,156,,,,,,20011884,,, +1650,USA,en,WQHM720,,Pierce County (WA),47.05,-122.11,,0.01,,7952,326,156,,,,,,20011889,,, +1650,USA,en,WQIY272,,North Bend (WA),47.494303,-121.777639,,0.01,,7897,326,156,,,,,,20011899,,, +1650,USA,en,WQDG717,,Keller/133 S Elm St. (TX),32.933167,-97.260164,,0.01,,8018,301,157,,,,,,20011922,,, +1650,USA,en,WPZQ660,,Astoria (OR),46.194303,-123.860978,,0.01,,8101,326,158,,,,,,20011946,,, +1650,USA,en,WPZQ660,,Saeside (OR),45.944331,-123.927669,,0.01,,8128,326,158,,,,,,20011936,,, +1650,USA,en,WPMZ659,,Friendswood/1600 Whitaker Drive (TX),29.496611,-95.211019,,0.01,,8194,297,159,,,,,,20011912,,, +1650,USA,en,WPZQ660,,Grande Ronde (OR),45.061944,-123.577664,,0.01,,8200,326,159,,,,,,20011945,,, +1650,USA,en,WPZQ660,,Lincoln City (OR),45.02765,-123.977658,,0.01,,8219,326,159,,,,,,20011944,,, +1650,USA,en,WPZQ660,,Tillamook (OR),45.461022,-123.83025,,0.01,,8171,326,159,,,,,,20011938,,, +1650,USA,en,WPZS256,,Corvallis (OR),44.561017,-123.264639,,0.01,,8237,325,159,,,,,,20011930,,, +1650,USA,en,WQDK405,,Salem (OR),44.963861,-123.0325,,0.01,,8189,325,159,,,,,,20011925,,, +1650,USA,en,WQET299,,Jefferson (OR),44.744322,-123.061025,,0.01,,8211,325,159,,,,,,20011878,,, +1650,USA,en,WQHQ959,,Bryan (TX),30.677633,-96.375722,,0.01,,8161,299,159,,,,,,20011902,,, +1650,USA,en,WPNY210,,Cedar Park/600 N Bell Blvd (TX),30.527681,-97.860147,,0.01,,8263,300,160,,,,,,20011907,,, +1650,USA,en,WPZQ660,,Florence (OR),43.979667,-124.110983,,0.01,,8326,325,160,,,,,,20011926,,, +1650,USA,en,WPZS256,,Newport (OR),44.644311,-124.045833,,0.01,,8259,326,160,,,,,,20011939,,, +1650,USA,en,WPZS256,,Reedsport (OR),43.710967,-124.110975,,0.01,,8352,325,160,,,,,,20011937,,, +1650,USA,en,WPZS256,,Veneta (OR),44.061011,-123.347806,,0.01,,8288,325,160,,,,,,20011915,,, +1650,USA,en,WPZS256,,Bandon (OR),43.127653,-124.398639,,0.01,,8420,325,161,,,,,,20011920,,, +1650,USA,en,WPZS256,,Coos Bay (OR),43.29575,-124.216056,,0.01,,8397,325,161,,,,,,20011918,,, +1650,USA,en,WPTK527,,Auburn (CA),38.923889,-121.060964,,0.01,,8691,321,163,,,,,,20011934,,, +1650,USA,en,KBXZ,,Flagstaff (AZ),35.2,-111.616667,,0.001,,8600,312,172,,,,,,20012534,,, +1653,POR,,Olho Pescas R,u,Olho (agv),37.033333,-7.833333,,1,,2013,219,77,,????-????,1234567,,,19901304,,, +1656,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,????-????,1234567,,,4000011,,, +1656,E,,EAC Chipiona R,u,Chipiona (AND-CA),36.673678,-6.406417,,1,,1989,215,77,,0733-0748,1234567,,,2200023,,, +1656,E,,EAC Chipiona R,u,Chipiona (AND-CA),36.673678,-6.406417,,1,,1989,215,77,,1233-1248,1234567,,,2200023,,, +1656,E,,EAC Chipiona R,u,Chipiona (AND-CA),36.673678,-6.406417,,1,,1989,215,77,,1933-1948,1234567,,,2200023,,, +1656,ERI,,ETC Assab R,u,Assab=Aseb (dkb),13.016667,42.741667,,1,,5417,130,111,,????-????,1234567,,,19900510,,, +1656,AUS,ar,2ME R,,Perth/Holmes Street (WA),-32.101111,115.964444,,0.4,,14056,97,164,,,,,,37700005,,, +1656,AUS,el,Rythmos 1656,,Melbourne (VIC),-37.816667,144.966667,,1,,16451,80,168,,,,,,37700160,,, +1656,AUS,zh,VAC-Voice of Australian Chinese,,Brisbane/Sunnybank Hills (QLD),-27.610883,153.053889,,0.4,,16136,58,171,,,,9952,,37700028,,, +1656,AUS,el,2MM Greek R,,Sydney/Kareela (NSW),-34.011944,151.084167,,0.4,,16563,68,173,,,,997,,37700006,,, +1656,AUS,,The Axe,,Broken Hill/622 Beryl St (NSW),-31.933333,141.483333,,0.05,,15774,76,179,,,,,,37700031,,, +1656,AUS,,VJS577,,Adelaide/Willunga (SA),-35.266111,138.553056,,0.0005,,15832,83,199,,,,,,37700007,,, +1657.5,HOL,,Den Helder SAR,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,-1657.5,,19900639,,, +1659,ISL,,TFT Hornafjrur R,u,Hornafjrur (au),64.252778,-15.205556,,1,,1834,326,75,,????-????,1234567,,,19900824,,, +1659,NOR,,LGP Bod R,u,Andenes (no),69.316667,16.122222,,1,,1979,11,77,,0623-0638,1234567,,,6300004,,, +1659,NOR,,LGP Bod R,u,Andenes (no),69.316667,16.122222,,1,,1979,11,77,,1203-1218,1234567,,,6300004,,, +1659,NOR,,LGP Bod R,u,Andenes (no),69.316667,16.122222,,1,,1979,11,77,,2303-2318,1234567,,,6300004,,, +1660,GRC,el,R Aquarius,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400053,,, +1660,USA,,WWRU,,Jersey City/Carlstadt (N) (NJ),40.820278,-74.069167,,10,,5965,292,107,,,,24,,20016215,,, +1660,USA,ko,WWRU,,Jersey City/Carlstadt (D) (NJ),40.820278,-74.067778,,10,,5965,292,107,,,,24,,32312,,, +1660,USA,en,WQLR,,Kalamazoo (MI),42.236389,-85.576944,,1,,6563,300,123,,,,9980,,42793,,, +1660,USA,en,KQWB,,West Fargo (ND),46.975833,-96.583889,,1,,6798,311,125,,,,9935,,39211,,, +1660,USA,en,WBCN,,Charlotte (NC),35.248889,-80.862222,,1,,6823,292,125,,,,0,,41412,,, +1660,PTR,es,WGIT,,Canvanas (PR),18.385833,-65.921111,,1,,7205,268,129,,0000-2400,1234567,998,,30428,,, +1660,USA,en,KUDL,,Kansa City (KS),39.038056,-94.615556,,1,,7345,303,130,,,,0,,39831,,, +1660,USA,en,WCNZ,,Marco Island (FL),25.991667,-81.625,,1,,7629,285,133,,,,21,,41052,,, +1660,USA,en,KRZI,,Waco (TX),31.518333,-97.088056,,1,,8131,300,138,,,,,,39321,,, +1660,USA,es,KXOL,,Brigham City (UT),41.315,-112.078611,,1,,8060,316,138,,,,2,,39812,,, +1660,USA,en,WQEY864,,Lakewood (OH),41.477678,-81.814722,,0.01,,6396,297,141,,,,,,20011962,,, +1660,USA,es,KTIQ,,Merced (CA),37.278056,-120.626389,,1,,8831,320,143,,,,83,,39490,,, +1660,USA,en,WPVW207,,Kettering (OH),39.693583,-84.147139,,0.01,,6676,297,144,,,,,,20011980,,, +1660,USA,en,WQBW823,,Lisle/4905 Yackley Ave (IL),41.794167,-88.09,,0.01,,6745,302,144,,,,,,20011976,,, +1660,USA,en,WQFE239,,Palatine (IL),42.120278,-88.048889,,0.01,,6717,302,144,,,,,,20011963,,, +1660,USA,en,WQIQ672,,Skokie (IL),42.044314,-87.746806,,0.01,,6705,301,144,,,,,,20011965,,, +1660,USA,en,WQEY238,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011974,,, +1660,USA,en,WQDN417,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20011979,,, +1660,USA,en,WQEN596,,Orlando (FL),28.533333,-81.383333,,0.01,,7401,287,151,,,,,,20011964,,, +1660,USA,en,WQEX384,,Marion (TN),35.161028,-90.09625,,0.01,,7403,298,151,,,,,,20011983,,, +1660,USA,en,WQEX384,,Memphis (TN),35.161008,-90.027669,,0.01,,7398,298,151,,,,,,20011985,,, +1660,USA,en,WQEX384,,Memphis (TN),35.177675,-89.844303,,0.01,,7386,298,151,,,,,,20011988,,, +1660,USA,en,WQEX384,,Memphis (TN),35.177683,-89.911019,,0.01,,7390,298,151,,,,,,20011987,,, +1660,USA,en,WQEX384,,Memphis (TN),35.194356,-89.961006,,0.01,,7392,298,151,,,,,,20011986,,, +1660,USA,en,WQEX384,,West Memphis (TN),35.177642,-90.18175,,0.01,,7406,298,151,,,,,,20011984,,, +1660,USA,en,WQEX385,,Memphis (TN),35.027647,-90.010992,,0.01,,7408,298,151,,,,,,20011969,,, +1660,USA,en,WQEX385,,Memphis (TN),35.076028,-89.994294,,0.01,,7403,298,151,,,,,,20011975,,, +1660,USA,en,WQEX385,,Memphis (TN),35.110333,-90.029639,,0.01,,7403,298,151,,,,,,20011977,,, +1660,USA,en,WQEX385,,Memphis (TN),35.110989,-90.076472,,0.01,,7406,298,151,,,,,,20011981,,, +1660,USA,en,WQEX385,,Memphis (TN),35.147722,-89.944139,,0.01,,7394,298,151,,,,,,20011982,,, +1660,USA,en,WQEX385,,Memphis (TN),35.194194,-89.793083,,0.01,,7381,298,151,,,,,,20011989,,, +1660,USA,en,WQEY238,,Memphis (TN),35.027833,-89.776583,,0.01,,7394,297,151,,,,,,20011973,,, +1660,USA,en,WQEY238,,Memphis (TN),35.060972,-89.830917,,0.01,,7395,297,151,,,,,,20011972,,, +1660,USA,en,WQEY238,,Memphis (TN),35.080139,-89.929417,,0.01,,7399,298,151,,,,,,20011970,,, +1660,USA,en,WQEY238,,Memphis (TN),35.110994,-89.877686,,0.01,,7393,298,151,,,,,,20011971,,, +1660,ARG,es,R Revivir AM,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,7,,33000006,,, +1660,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20011967,,, +1660,USA,en,WQEB205,,Eugene (OR),43.9925,-122.994389,,0.01,,8281,325,160,,,,,,20011959,,, +1660,USA,en,WQEB206,,Eugene (OR),44.061022,-122.944306,,0.01,,8273,325,160,,,,,,20011978,,, +1660,USA,en,WQEQ530,,Eugene (OR),44.094339,-123.076694,,0.01,,8275,325,160,,,,,,20011968,,, +1660,USA,en,WD2XFY,,Durham (NC),35.919444,-78.846111,,0.0001,,6641,291,163,,,,,,20011966,,, +1660,USA,en,WPTV288,,Mission (TX),26.206944,-98.344317,,0.01,,8671,297,163,,,,,,20011961,,, +1660,USA,en,WPJP551,,San Diego/111 W Harbor Drive (CA),32.707778,-117.164167,,0.01,,9108,315,164,,,,,,20011960,,, +1660.4,TUN,,3VZ Zarzis R,u,Zarzis (med),33.5,11.116667,,1,,2104,168,78,,????-????,1234567,-1660.4,,19901428,,, +1662,BUL,,LZL Burgas R,u,Burgas (bur),42.5,27.472222,,1,,1903,116,76,,????-????,1234567,,,19900277,,, +1662.5,G,,GUC SAR Guernsey,u,St Peter Port/Trinity House (GUE),49.461111,-2.536111,,1,,694,248,64,,????-????,1234567,-1662.5,,19900568,,, +1663,ERI,,ETC Assab R,u,Assab=Aseb (dkb),13.016667,42.741667,,1,,5417,130,111,,????-????,1234567,,,19900511,,, +1663.5,MDR,,Faial R,u,Faial (md),32.783333,-16.85,,1,,2849,230,85,,????-????,1234567,-1663.5,,19900224,,, +1663.5,AZR,,CUG So Miguel R,u,So Miguel (smg),37.766667,-25.5,,1,,2939,250,86,,????-????,1234567,-1663.5,,19900231,,, +1663.5,J,ja,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,:15-:30,1234567,-1663.5,,31400017,,, +1663.5,J,ja,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,:45-:00,1234567,-1663.5,,31400017,,, +1663.5,J,ja,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,:00-:15,1234567,-1663.5,,31400018,,, +1663.5,J,ja,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,:30-:45,1234567,-1663.5,,31400018,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,0233-0248,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,0633-0648,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,1033-1048,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,1433-1448,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,1833-1848,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,2233-2248,1234567,,,6300005,,, +1665,BUL,,LZW Varna R,u,Varna/Bolyartsi (vrn),43.068056,27.786111,,1,,1881,114,76,,????-????,1234567,,,19900280,,, +1665,GRL,,Ittoqqotoormiit R,u,Ittoqqotoormiit (sms-itt),70.484528,-21.952292,,1,,2493,335,82,,????-????,1234567,,,3500017,,, +1665,J,,Nagoya Harbour Radar,u,Nagoya (chu-aic),35.166667,136.916667,,0.05,,9187,39,157,,,,,,19900900,,, +1665,AUS,el,2MM Greek R,,Sydney/Marrickville (NSW),-33.915778,151.1635,,0.4,,16561,68,173,,0000-2400,1234567,9974,,51573,,, +1667,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,????-????,1234567,,,4000017,,, +1669,J,ja,Weather Info,h,Yagishiri (hok),44.440556,141.325,,0.05,,8444,31,154,,,,,,51601,,, +1669,J,ja,Weather Info,h,Shakotan (hok),43.370472,140.467628,,0.05,,8519,32,155,,,,,,51593,,, +1669,J,ja,Weather Info,h,Erimo (hok),41.926025,143.243144,,0.05,,8763,31,156,,,,,,51578,,, +1669,J,ja,Weather Info,h,Hegura (chu-ish),37.85,136.916667,,0.05,,8924,38,156,,,,,,51581,,, +1669,J,ja,Weather Info,h,Kamitsushima (kyu-nag),34.662,129.479889,,0.05,,8898,44,156,,,,,,51584,,, +1669,J,ja,Weather Info,h,Nyudosaki (toh-aki),40.004944,139.701361,,0.05,,8824,35,156,,,,,,51591,,, +1669,J,ja,Weather Info,h,Shiriyazaki (toh-aom),41.429444,141.462222,,0.05,,8749,33,156,,,,,,51595,,, +1669,J,ja,Weather Info,h,Tappikaitei (toh-aom),41.259444,140.342389,,0.05,,8724,34,156,,,,,,51597,,, +1669,J,ja,Weather Info,h,Ashizuri (shi-koc),32.723333,133.004722,,0.05,,9250,43,157,,,,,,51574,,, +1669,J,ja,Weather Info,h,Awashima (shi-kag),34.272222,133.633333,,0.05,,9129,42,157,,,,,,51575,,, +1669,J,ja,Weather Info,h,Echizenmisaki (chu-fuk),35.982222,135.961111,,0.05,,9066,39,157,,,,,,51577,,, +1669,J,ja,Weather Info,h,Hagimishima (chg-yam),34.76,131.147778,,0.05,,8968,43,157,,,,,,51580,,, +1669,J,ja,Weather Info,h,Kinkasan (toh-miy),38.277419,141.582989,,0.05,,9068,34,157,,,,,,51585,,, +1669,J,ja,Weather Info,h,Meshima (kyu-nag),31.983333,128.35,,0.05,,9097,47,157,,,,,,51587,,, +1669,J,ja,Weather Info,h,Takohana (chg-shi),35.602583,133.090111,,0.05,,8976,41,157,,,,,,51596,,, +1669,J,ja,Weather Info,h,Todogasaki (toh-iwa),39.546661,142.071072,,0.05,,8959,33,157,,,,,,51598,,, +1669,J,ja,Weather Info,h,Wakamiya Shima (kyu-nag),33.868811,129.686456,,0.05,,8984,45,157,,,,,,51600,,, +1669,J,ja,Weather Info,h,Daio (kns-mie),34.285833,136.890833,,0.05,,9272,39,158,,,,,,51576,,, +1669,J,ja,Weather Info,h,Hachijojima (kan-tok),33.079444,139.853611,,0.05,,9517,38,158,,,,,,51579,,, +1669,J,ja,Weather Info,h,Inubo (kan-chi),35.707347,140.8681,,0.05,,9297,36,158,,,,,,51582,,, +1669,J,ja,Weather Info,h,Iro (chu-shi),34.603611,138.843056,,0.05,,9324,38,158,,,,,,51583,,, +1669,J,ja,Weather Info,h,Muroto (shi-koc),33.251556,134.177083,,0.05,,9253,42,158,,,,,,51589,,, +1669,J,ja,Weather Info,h,Nojima (kan-chi),34.902711,139.888817,,0.05,,9337,37,158,,,,,,51590,,, +1669,J,ja,Weather Info,h,Shionomisaki (kns-wak),33.442889,135.784056,,0.05,,9306,40,158,,,,,,51594,,, +1669,J,ja,Weather Info,h,Toi (kyu-miy),31.362028,131.335778,,0.05,,9302,45,158,,,,,,51599,,, +1669,J,ja,Weather Info,h,Miyakojima (kyu-oki),24.766667,125.283333,,0.05,,9617,53,159,,,,,,51588,,, +1670,CAN,fr,CJEU,,Gatineau (QC),45.507778,-75.695,,1,,5730,298,114,,,,3,,20100004,,, +1670,USA,en,WOZN,,Madison (WI),43.025278,-89.396111,,1,,6723,303,124,,,,13,,32023,,, +1670,USA,en,WPLA,,Dry Branch (GA),32.804444,-83.604444,,1,,7194,292,129,,,,135,,31327,,, +1670,USA,es,KHPY,,Moreno Valley (CA),34.011667,-117.184167,,9,,8985,316,134,,,,9996,,38557,,, +1670,USA,,WQDG293,,Old Saybrook (CT),41.316667,-72.383333,,0.01,,5822,292,135,,,,,,20000029,,, +1670,USA,,WQDG293,,Waterford (CT),41.35,-72.15,,0.01,,5805,291,135,,,,,,20000030,,, +1670,USA,en,WNQN649,,East Hartford (CT),41.777675,-72.594333,,0.01,,5802,292,135,,,,,,20012076,,, +1670,USA,en,WPML750,,Branford (CT),41.295,-72.761944,,0.01,,5848,292,135,,,,,,20012012,,, +1670,USA,en,WQDG293,,Madison (CT),41.290833,-72.572222,,0.01,,5836,292,135,,,,,,20000027,,, +1670,USA,en,WQDG293,,North Haven/311 State St (CT),41.377697,-72.882778,,0.01,,5850,292,135,,,,,,20012064,,, +1670,USA,en,WQDG293,,Old Saybrook/660 Middlesex Turnpike (CT),41.320833,-72.376389,,0.01,,5822,292,135,,,,,,20012054,,, +1670,USA,en,WQDG293,,Waterford (CT),41.372222,-72.130556,,0.01,,5802,291,135,,,,,,20012053,,, +1670,USA,en,WQEA416,,Southington (CT),41.612778,-72.899556,,0.01,,5834,292,135,,,,,,20012090,,, +1670,USA,en,WQEA416,,Waterbury (CT),41.548583,-73.062028,,0.01,,5849,292,135,,,,,,20012086,,, +1670,USA,en,WPML750,,Fairfield (CT),41.146194,-73.260992,,0.01,,5890,292,136,,,,,,20012009,,, +1670,USA,en,WPML750,,Stamford (CT),41.060981,-73.512611,,0.01,,5912,292,136,,,,,,20012008,,, +1670,USA,en,WPML750,,Stratford (CT),41.17765,-73.160989,,0.01,,5882,292,136,,,,,,20012007,,, +1670,USA,en,WPML750,,West Haven (CT),41.277861,-72.964278,,0.01,,5862,292,136,,,,,,20012011,,, +1670,USA,en,WQFQ235,,Harvey Cedars (NJ),39.6925,-74.142833,,0.01,,6053,291,137,,,,,,20012035,,, +1670,USA,en,WQFJ980,,Tonawanda/130 N Syracuse St. (NY),43.010969,-78.866,,0.01,,6102,297,138,,,,,,20012082,,, +1670,USA,en,WQFV859,,Tuckerton/111 N. Green St.-Police Dept. (NJ),39.604167,-74.339167,,0.01,,6072,291,138,,,,,,20011997,,, +1670,USA,en,WPUP271,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20012062,,, +1670,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20012052,,, +1670,USA,en,WQFG978,,Burke (VA),38.777658,-77.277658,,0.01,,6321,292,140,,,,,,20012036,,, +1670,USA,en,WQFG978,,Fairfax (VA),38.845361,-77.315083,,0.01,,6318,292,140,,,,,,20012040,,, +1670,USA,en,WQFG978,,Franconia (VA),38.777683,-77.111389,,0.01,,6310,292,140,,,,,,20012033,,, +1670,USA,en,WQFG978,,Reston (VA),38.962111,-77.360997,,0.01,,6312,292,140,,,,,,20012042,,, +1670,USA,en,WQHS749,,Alexandria (VA),38.731278,-77.110992,,0.01,,6314,292,140,,,,,,20012039,,, +1670,USA,en,WQHS749,,Annandale (VA),38.828306,-77.194303,,0.01,,6312,292,140,,,,,,20012067,,, +1670,USA,en,WQHS749,,Great Falls (VA),38.998167,-77.294303,,0.01,,6305,292,140,,,,,,20012091,,, +1670,USA,en,WQHS749,,Lorton (VA),38.698278,-77.213361,,0.01,,6323,292,140,,,,,,20012072,,, +1670,USA,en,WQIC880,,Centreville (VA),38.844344,-77.444322,,0.01,,6326,292,140,,,,,,20012057,,, +1670,USA,en,WQIC880,,Chantilly (VA),38.894333,-77.410981,,0.01,,6320,292,140,,,,,,20012034,,, +1670,USA,en,WQIC880,,Falls Church (VA),38.910981,-77.211014,,0.01,,6306,292,140,,,,,,20012047,,, +1670,USA,en,WQIY393,,Gaithersburg (MD),39.127683,-77.177028,,0.01,,6288,292,140,,,,,,20012063,,, +1670,USA,en,WQIY393,,Laurel (MD),39.071667,-76.907222,,0.01,,6275,292,140,,,,,,20012038,,, +1670,USA,en,WQIY393,,Olney (MD),39.126839,-77.075,,0.01,,6282,292,140,,,,,,20012055,,, +1670,USA,en,WQIY393,,Silver Spring (MD),39.088056,-76.999722,,0.01,,6280,292,140,,,,,,20012037,,, +1670,USA,en,WQJB782,,Gaithersburg (MD),39.127683,-77.177028,,0.01,,6288,292,140,,,,,,20012093,,, +1670,USA,en,WQJB782,,Laurel (MD),39.071667,-76.907222,,0.01,,6275,292,140,,,,,,20012073,,, +1670,USA,en,WQJB782,,Olney (MD),39.126839,-77.075,,0.01,,6282,292,140,,,,,,20012071,,, +1670,USA,en,WQJB782,,Silver Spring (MD),39.088056,-76.999722,,0.01,,6280,292,140,,,,,,20012081,,, +1670,USA,en,WPZV580,,Wyandotte/3575 11th Street (MI),42.196667,-83.165833,,0.01,,6423,299,141,,,,,,20012065,,, +1670,USA,en,WPZY431,,Livonia/14190 Farmington Road (MI),42.393506,-83.3725,,0.01,,6420,299,141,,,,,,20012014,,, +1670,USA,en,WQDC928,,Pepper Pike/28000 Shaker Blvd (OH),41.477528,-81.481111,,0.01,,6376,297,141,,,,,,20012061,,, +1670,USA,en,WQGH347,,Troy/City Hall (MI),42.5635,-83.161022,,0.01,,6394,299,141,,,,,,20012023,,, +1670,USA,en,WQHF983,,Chesterfield (VA),37.360278,-77.538056,,0.01,,6446,291,141,,,,,,20012010,,, +1670,USA,en,WQIH716,,Etna/2 Pine Street (PA),40.5,-79.945,,0.01,,6356,295,141,,,,,,20012068,,, +1670,USA,en,KNRO,,Redding (CA),40.558611,-122.33,,1,,8587,323,142,,,,9952,,39013,,, +1670,USA,en,WQCQ541,,Chicago (IL),41.715,-87.640833,,0.01,,6725,301,144,,,,,,20012092,,, +1670,USA,en,WQCQ541,,Chicago (IL),41.774167,-87.626667,,0.01,,6719,301,144,,,,,,20012088,,, +1670,USA,en,WQCQ541,,Chicago (IL),41.866667,-87.644444,,0.01,,6713,301,144,,,,,,20012074,,, +1670,USA,en,WQGT211,,St. John (IN),41.45,-87.477633,,0.01,,6736,301,144,,,,,,20012016,,, +1670,MEX,es,XEANAH-AM,,Huixquilucan (mex),19.366667,-99.35,,1,,9342,294,145,,,,,,34900006,,, +1670,USA,en,WPVB565,,Bluffton (SC),32.244356,-80.977633,,0.01,,7071,289,148,,,,,,20012079,,, +1670,USA,en,WQFA538,,Des Moines (IA),41.598333,-93.776111,,0.01,,7086,305,148,,,,,,20012056,,, +1670,USA,en,WQFA538,,Des Moines (IA),41.627833,-93.576167,,0.01,,7072,305,148,,,,,,20012049,,, +1670,USA,en,WPWV584,,Pierre (SD),44.366667,-100.35,,0.01,,7209,311,149,,,,,,20012046,,, +1670,USA,en,WPZH604,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20012026,,, +1670,ARG,es,R Gratitud,,Glew (ba),-34.884167,-58.365,,1,,11530,230,152,,,,,,33000084,,, +1670,ARG,es,R Rubi,,Rafael Castillo (ba),-34.716667,-58.616667,,1,,11528,230,152,,,,7,,33000086,,, +1670,USA,en,WPMN326,,Fort Lauderdale (FL),26.077644,-80.160972,,0.01,,7525,284,152,,,,,,20012013,,, +1670,USA,en,WPTK330,,Boynton Beach/551 NW 14th St. (FL),26.541111,-80.071667,,0.01,,7480,285,152,,,,,,20012018,,, +1670,USA,en,WQBV751,,Miami Beach/2800 N. Meridian Ave (FL),25.803889,-80.143514,,0.01,,7546,284,152,,,,,,20012002,,, +1670,USA,en,WQFL543,,Coral Springs/3800 NW 85th Ave (FL),26.2775,-80.240833,,0.01,,7513,284,152,,,,,,20012070,,, +1670,USA,en,WQFL554,,North Miami Beach (FL),25.93,-80.191667,,0.01,,7539,284,152,,,,,,20012075,,, +1670,USA,en,WQFU302,,Pembroke Pines (FL),26.011033,-80.327681,,0.01,,7541,284,152,,,,,,20012003,,, +1670,USA,en,WQFU302,,Pembroke Pines (FL),26.029194,-80.413222,,0.01,,7545,284,152,,,,,,20012001,,, +1670,USA,en,WQFW850,,Palm Beach Gardens (FL),26.830389,-80.110206,,0.01,,7459,285,152,,,,,,20011990,,, +1670,USA,en,WQCR876,,Laramie (WY),41.313889,-105.559722,,0.01,,7740,312,154,,,,,,20012089,,, +1670,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20012027,,, +1670,USA,en,WPLR917,,Baton Rouge (LA),30.444347,-91.027656,,0.01,,7856,295,156,,,,,,20012087,,, +1670,USA,en,WQBX491,,Ardmore (OK),34.36225,-97.194361,,0.01,,7891,302,156,,,,,,20011992,,, +1670,USA,en,WPIW244,,Farmers Branch (TX),32.944319,-96.879444,,0.01,,7995,301,157,,,,,,20012004,,, +1670,USA,en,WPMG537,,Midlothian/235 N 8th St. (TX),32.494325,-96.995,,0.01,,8040,301,157,,,,,,20012022,,, +1670,USA,en,WPPG486,,Watauga/7101 Whitley Road (TX),32.877667,-97.260964,,0.01,,8023,301,157,,,,,,20012044,,, +1670,USA,en,WQDL980,,Murphy/206 N Murphy Ave (TX),33.0145,-96.609167,,0.01,,7973,301,157,,,,,,20012066,,, +1670,USA,en,WQDG929,,Camas/1129 SE Polk St. (WA),45.579167,-122.39,,0.01,,8104,325,158,,,,,,20012048,,, +1670,USA,en,WQDG929,,Camas/4321 NW Parker St. (WA),45.608333,-122.460197,,0.01,,8104,325,158,,,,,,20012045,,, +1670,USA,en,WQGT206,,Cleburne (TX),32.3625,-97.409167,,0.01,,8076,301,158,,,,,,20012017,,, +1670,USA,en,WQHQ316,,Kurten (TX),30.794303,-96.264694,,0.01,,8144,299,158,,,,,,20012080,,, +1670,USA,en,WPEZ840,,Eagle Lake/Prairie Plant (TX),29.610994,-96.378861,,0.01,,8254,298,159,,,,,,20012032,,, +1670,USA,en,WPEZ840,,La Grange (TX),29.927683,-96.761025,,0.01,,8250,299,159,,,,,,20012019,,, +1670,USA,en,WQFW866,,Katy/Community Fire Station (TX),29.704167,-95.744331,,0.01,,8208,298,159,,,,,,20011996,,, +1670,USA,en,WQFW866,,Missouri City (TX),29.543497,-95.526856,,0.01,,8209,298,159,,,,,,20011994,,, +1670,USA,en,WQFW866,,Needville/Brazos Bend State Park (TX),29.377636,-95.596778,,0.01,,8227,298,159,,,,,,20011991,,, +1670,USA,en,WQFW866,,Sugarland/Fire Station (TX),29.627658,-95.637778,,0.01,,8208,298,159,,,,,,20011995,,, +1670,USA,en,WQFW866,,Thompsons/Parish Power Plant (TX),29.479722,-95.643547,,0.01,,8221,298,159,,,,,,20011993,,, +1670,USA,en,WQFW867,,Beasley/Volunteer Fire Department (TX),29.496639,-95.916722,,0.01,,8236,298,159,,,,,,20012030,,, +1670,USA,en,WQFW867,,Fulshear (TX),29.695,-95.910164,,0.01,,8219,298,159,,,,,,20012028,,, +1670,USA,en,WQFW867,,Needville/9110 Long Street (TX),29.395833,-95.840833,,0.01,,8240,298,159,,,,,,20012020,,, +1670,USA,en,WQFW867,,Orchard/Volunteer Fire Department (TX),29.610986,-95.977678,,0.01,,8230,298,159,,,,,,20012029,,, +1670,USA,en,WQFW867,,Rosenburg/5320 Reading Rd.-Fire Station (TX),29.561025,-95.777664,,0.01,,8222,298,159,,,,,,20012031,,, +1670,USA,en,WQHQ316,,Milligan (TX),30.477697,-96.214639,,0.01,,8169,299,159,,,,,,20012078,,, +1670,USA,en,WQIQ632,,Tucumcari (NM),35.160983,-103.728056,,0.01,,8189,307,159,,,,,,20012041,,, +1670,USA,en,WPEZ840,,Bastrop/Sim Gideon Power Plant (TX),30.149111,-97.271667,,0.01,,8261,299,160,,,,,,20012006,,, +1670,USA,en,WPTZ515,,Lago Vista (TX),30.460194,-97.994297,,0.01,,8276,300,160,,,,,,20012077,,, +1670,USA,en,WQBV749,,Smithville/Rail Yard (TX),30.005556,-97.161389,,0.01,,8267,299,160,,,,,,20012000,,, +1670,USA,en,WQBV749,,Webberville (TX),30.23,-97.516667,,0.01,,8268,299,160,,,,,,20011999,,, +1670,USA,en,WQIV256,,Wharton (TX),29.327639,-96.110172,,0.01,,8263,298,160,,,,,,20012060,,, +1670,USA,en,WQGD297,,Devine (TX),29.093547,-98.961167,,0.01,,8454,300,161,,,,,,20012025,,, +1670,USA,en,KNIG427,,Camino (CA),38.749056,-120.61575,,0.01,,8689,320,163,,,,,,20012051,,, +1670,USA,en,KNIG427,,Placerville/3065 Blairs Lane (CA),38.731028,-120.783278,,0.01,,8698,321,163,,,,,,20012050,,, +1670,USA,en,WPIN401,,Dixon (CA),38.494347,-121.811028,,0.01,,8765,321,163,,,,,,20011998,,, +1670,USA,en,WPMW520,,Menlo Park/701 Laurel St. (CA),37.454111,-122.179417,,0.01,,8881,321,163,,,,,,20012005,,, +1670,USA,en,WPRI265,,Sacramento (CA),38.509639,-121.460222,,0.01,,8748,321,163,,,,,,20012069,,, +1670,USA,en,WPRI265,,Sacramento (CA),38.564917,-121.344353,,0.01,,8738,321,163,,,,,,20012015,,, +1670,USA,en,WPRI265,,Sacramento (CA),38.627683,-121.5155,,0.01,,8739,321,163,,,,,,20012083,,, +1670,USA,en,WPRI265,,Sacramento (CA),38.699333,-121.316889,,0.01,,8724,321,163,,,,,,20012085,,, +1670,USA,en,WPSH292,,Woodland (CA),38.677681,-121.644364,,0.01,,8740,321,163,,,,,,20012021,,, +1670,USA,en,WPWG225,,Colfax (CA),39.111003,-120.949389,,0.01,,8668,321,163,,,,,,20012043,,, +1670,USA,en,WPWG225,,Gold Run (CA),39.180444,-120.861017,,0.01,,8658,321,163,,,,,,20012059,,, +1670,USA,en,WQFI529,,Sacramento (CA),38.583333,-121.5,,0.01,,8743,321,163,,,,,,20012084,,, +1670,USA,en,WQGH344,,Cupertino/City Hall (CA),37.327653,-122.028694,,0.01,,8887,321,163,,,,18,,20012024,,, +1670,USA,en,WTNR210,,Menlo Park (CA),37.45,-122.183333,,0.01,,8882,321,163,,,,9801,,51947,,, +1670.5,J,ja,Kushiro Harbor Radar,h,Kushiro (hok),42.983333,144.416667,,0.05,,8698,30,156,,,,-1670.5,,51586,,, +1671,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,0750-0930,1234567,,,2500018,,, +1672.4,TUN,,3VS Sfax R,u,Sfax (sfa),34.733333,10.766667,,1,,1963,168,77,,????-????,1234567,-1672.4,,19901421,,, +1674,S,,SDJ Stockholm R,u,Stavsns (st),59.288889,18.686111,,1,,1105,39,68,,1550-1607,1234567,,,6800004,,, +1674,S,,SDJ Stockholm R,u,Stavsns (st),59.288889,18.686111,,1,,1105,39,68,,2220-2237,1234567,,,6800004,,, +1674,GHA,,9GX Tema R,u,Tema (gac),5.633333,-0.002778,,1,,5201,189,109,,????-????,1234567,,,19900590,,, +1674,PHL,tl,DZBF-AM Radyo Marikina,,Marikina City/Engineering Center (ncr),14.640556,121.102778,,1,,10318,62,148,,2213-1130,1234567,993,,51605,,, +1674,AUS,en,Vision R Network,,Logan (QLD),-27.633333,153.116667,,1,,16142,58,167,,,,396,,37700102,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0033-0048,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0433-0448,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0833-0848,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1233-1248,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1633-1648,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,2033-2048,1234567,,,4100010,,, +1677,E,,EAS Cabo de Peas R,u,Cabo de Peas (AST-O),43.6555,-5.848517,,1,,1308,229,70,,0703-0718,1234567,,,2200020,,, +1677,E,,EAS Cabo de Peas R,u,Cabo de Peas (AST-O),43.6555,-5.848517,,1,,1308,229,70,,1303-1318,1234567,,,2200020,,, +1677,E,,EAS Cabo de Peas R,u,Cabo de Peas (AST-O),43.6555,-5.848517,,1,,1308,229,70,,1903-1918,1234567,,,2200020,,, +1677,E,,EAS Cabo de Peas R,u,Cabo de Peas (AST-O),43.6555,-5.848517,,1,,1308,229,70,,2003-2008,1234567,,,2200020,,, +1680,I,,IPN Venezia R,u,Venezia (ve),45.439722,12.3125,,1,,858,147,66,,????-????,1234567,,,19900678,,, +1680,NOR,,LGL Flor R,u,Flor (sf),61.597625,4.998556,,1,,1058,356,68,,1215-1230,1234567,,,6300006,,, +1680,NOR,,LGL Flor R,u,Flor (sf),61.597625,4.998556,,1,,1058,356,68,,2315-2330,1234567,,,6300006,,, +1680,POR,,Matosinhos Pescas R,u,Matosinhos (prt),41.183333,-8.7,,1,,1669,229,74,,????-????,1234567,,,19901302,,, +1680,POR,,Setbal Pescas R,u,Setbal (set),38.516667,-8.869444,,1,,1918,224,76,,????-????,1234567,,,19901307,,, +1680,AFG,,R Helmand,,Lashkar Ga (hel),31.583333,64.333333,,0.1,,5146,93,118,,1230-1500,1234567,,,46821,,, +1680,USA,es,WTTM,,Lindenwold (NJ),39.887778,-75.001389,,1,,6093,292,118,,0000-2400,1234567,9961,,43226,,, +1680,USA,en,WPRR,,Ada (MI),42.935833,-85.457222,,0.68,,6502,301,124,,,,18,,41211,,, +1680,DOM,,HISV R Senda,,San Pedro de Macors (pms),18.466667,-69.283333,,1,,7428,271,131,,,,998,,21100001,,, +1680,USA,en,WOKB,,Winter Garden (FL),28.568889,-81.518889,,1,,7407,287,131,,0000-2400,1234567,0,,20000022,,, +1680,USA,en,KRJO,,Monroe (LA),32.456667,-92.018333,,1,,7746,297,134,,0000-2400,1234567,997,,39251,,, +1680,USA,es,KNTS,,Seattle (WA),47.655556,-122.518056,,1,,7910,326,136,,0000-2400,1234567,3,,39470,,, +1680,USA,en,WPUS416,,Secaucus (NJ),40.777778,-74.063889,,0.01,,5968,292,137,,,,,,20012094,,, +1680,USA,en,WPMQ427,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20012095,,, +1680,USA,en,WQBU642,,Falls Church/300 Park Avenue (VA),38.894353,-77.172222,,0.01,,6305,292,140,,,,,,20012139,,, +1680,USA,en,WQCX404,,Westlake (OH),41.461389,-81.927633,,0.01,,6404,297,141,,,,,,20012157,,, +1680,USA,en,WQCX405,,Virginia Beach/1632 Deere Court (VA),36.661006,-76.010997,,0.01,,6402,290,141,,,,,,20012138,,, +1680,USA,en,WQCX405,,Virginia Beach/4722 Jericho Drive (VA),36.861,-76.144297,,0.01,,6395,290,141,,,,,,20012156,,, +1680,USA,en,WQCX405,,Virginia Beach/Juvenal Detention Center (VA),36.761025,-76.063972,,0.01,,6398,290,141,,,,,,20012136,,, +1680,USA,en,WQCX405,,Virginia Beach/Seatack Park (VA),36.845917,-75.994333,,0.01,,6387,290,141,,,,,,20012140,,, +1680,USA,en,WPNY994,,Garner (NC),35.599611,-78.577222,,0.01,,6649,290,143,,,,,,20012164,,, +1680,USA,en,WPNY994,,Manson (NC),36.429861,-78.296389,,0.01,,6566,291,143,,,,,,20012144,,, +1680,USA,en,WPNY994,,Mebane (NC),36.077639,-79.210961,,0.01,,6652,291,143,,,,,,20012160,,, +1680,USA,en,WPNY994,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20012150,,, +1680,USA,es,KGED,,Fresno (CA),36.660278,-119.683611,,1,,8848,319,143,,0000-2400,1234567,100,,37988,,, +1680,USA,en,WPPD925,,Fayetteville (NC),34.944342,-78.927631,,0.01,,6723,290,144,,,,,,20012159,,, +1680,USA,en,WPPD925,,Fayetteville (NC),35.009611,-78.826139,,0.01,,6712,290,144,,,,,,20012153,,, +1680,USA,en,WPPD925,,Fayetteville (NC),35.094333,-78.794297,,0.01,,6703,290,144,,,,,,20012134,,, +1680,USA,en,WPPD925,,Fayetteville (NC),35.159056,-78.714472,,0.01,,6693,290,144,,,,,,20012154,,, +1680,USA,en,WQFQ244,,Downers Grove (IL),41.816667,-88.016667,,0.01,,6739,301,144,,,,,,20012142,,, +1680,USA,en,WPNQ589,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20012113,,, +1680,USA,en,WPNZ651,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20012165,,, +1680,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20012114,,, +1680,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20012116,,, +1680,USA,en,WQHC967,,Oakdale (IA),41.710983,-91.609,,0.01,,6954,304,146,,,,,,20012168,,, +1680,USA,en,WQHC968,,Davenport (IA),41.599306,-90.627653,,0.01,,6907,303,146,,,,,,20012167,,, +1680,USA,en,WQHC968,,Silvis (IA),41.510972,-90.411,,0.01,,6902,303,146,,,,,,20012170,,, +1680,USA,en,WQEY408,,Antioch (TN),36.07575,-86.693972,,0.01,,7120,296,148,,,,,,20012191,,, +1680,USA,en,WQEY408,,Hermitage (TN),36.177672,-86.610958,,0.01,,7107,296,148,,,,,,20012192,,, +1680,USA,en,WQEY408,,Nashville (TN),36.143361,-86.698139,,0.01,,7115,296,148,,,,,,20012188,,, +1680,USA,en,WQEY408,,Nashville (TN),36.145944,-86.879583,,0.01,,7126,296,148,,,,,,20012185,,, +1680,USA,en,WQEY408,,Nashville (TN),36.148639,-86.780722,,0.01,,7120,296,148,,,,,,20012186,,, +1680,USA,en,WQEY408,,Nashville (TN),36.226722,-86.861389,,0.01,,7118,296,148,,,,,,20012184,,, +1680,USA,en,WQEY409,,Goodlettsville (TN),36.29,-86.7277,,0.01,,7105,296,148,,,,,,20012179,,, +1680,USA,en,WQEY409,,Goodlettsville (TN),36.331972,-86.709278,,0.01,,7100,296,148,,,,,,20012187,,, +1680,USA,en,WQEY409,,Hendersonville (TN),36.330944,-86.627636,,0.01,,7095,296,148,,,,,,20012177,,, +1680,USA,en,WQEY409,,Nashville (TN),36.227625,-86.692528,,0.01,,7108,296,148,,,,,,20012135,,, +1680,USA,en,WQEY409,,Nashville (TN),36.227689,-86.777672,,0.01,,7113,296,148,,,,,,20012190,,, +1680,USA,en,WQEY409,,Whites Creek (TN),36.293861,-86.810889,,0.01,,7110,296,148,,,,,,20012158,,, +1680,USA,en,WQEY599,,Nashville (TN),36.065694,-86.777681,,0.01,,7126,296,148,,,,,,20012147,,, +1680,USA,en,WQEY599,,Nashville (TN),36.080583,-86.961006,,0.01,,7136,296,148,,,,,,20012146,,, +1680,USA,en,WQEY599,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20012145,,, +1680,USA,en,WQBN524,,Jacksonville (FL),30.683583,-81.666861,,0.01,,7243,289,149,,,,,,20012174,,, +1680,USA,en,WPTR460,,Blytheville (AR),35.972222,-89.875,,0.01,,7322,298,150,,,,,,20012124,,, +1680,USA,en,WQBN524,,Jennings (FL),30.600194,-83.133528,,0.01,,7344,290,150,,,,,,20012173,,, +1680,USA,en,WPTR460,,Jericho (AR),35.245278,-90.226856,,0.01,,7403,298,151,,,,,,20012126,,, +1680,USA,en,WPTR460,,West Memphis (AR),35.170833,-90.210214,,0.01,,7409,298,151,,,,,,20012103,,, +1680,ARG,es,R Jetro,,Lans Oeste (ba),-34.716667,-58.4,,1,,11516,230,152,,,,,,51928,,, +1680,USA,en,WPSK543,,Meto (AR),34.798333,-91.993611,,0.01,,7547,299,152,,,,,,20012178,,, +1680,USA,en,WPSK543,,Screeton (AR),34.808333,-91.676814,,0.01,,7527,299,152,,,,,,20012175,,, +1680,USA,en,WPTR459,,Carlisle (AR),34.797389,-91.749722,,0.01,,7532,299,152,,,,,,20012127,,, +1680,USA,en,WPTR459,,Hazen (AR),34.816778,-91.576667,,0.01,,7520,298,152,,,,,,20012118,,, +1680,USA,en,WPTR460,,Meto (AR),34.791667,-92.063333,,0.01,,7552,299,152,,,,,,20012131,,, +1680,USA,en,WPUV867,,Weston/600 Indian Trace (FL),26.111025,-80.394111,,0.01,,7537,284,152,,,,,,20012098,,, +1680,USA,en,WQCF602,,Miami/Hadley Park (FL),25.820278,-80.226847,,0.01,,7551,284,152,,,,,,20012152,,, +1680,USA,en,WQCU480,,Council Grove (KS),38.663111,-96.494331,,0.01,,7483,304,152,,,,,,20012143,,, +1680,USA,en,WQCU481,,Cottonwood Falls (KS),38.377636,-96.544331,,0.01,,7510,304,152,,,,,,20012182,,, +1680,USA,en,WQCW625,,Cassoday (KS),38.0325,-96.644364,,0.01,,7545,304,152,,,,,,20012141,,, +1680,USA,en,WQCY420,,Wellington/14001 Pierson Road (FL),26.644356,-80.27765,,0.01,,7485,285,152,,,,,,20012149,,, +1680,USA,en,WQEI665,,Oakland Park/2100 NW 39th St. (FL),26.173333,-80.171667,,0.01,,7517,284,152,,,,,,20012166,,, +1680,USA,en,WPTR460,,Alexander (AR),34.629722,-92.475,,0.01,,7590,299,153,,,,,,20012128,,, +1680,USA,en,WPTR460,,Maumelle (AR),34.878889,-92.373333,,0.01,,7563,299,153,,,,,,20012129,,, +1680,USA,en,WPTR461,,Fort Smith (AR),35.496944,-94.1625,,0.01,,7617,301,153,,,,,,20012112,,, +1680,USA,en,WPUY239,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20012097,,, +1680,USA,en,WQBV597,,Sanibel (FL),26.461006,-82.142944,,0.01,,7623,286,153,,,,,,20012161,,, +1680,USA,en,WQBV597,,Sanibel/1500 Causeway Road (FL),26.460978,-82.044319,,0.01,,7617,286,153,,,,,,20012162,,, +1680,USA,en,WQCF602,,Miami/4101 NW 7th St. (FL),25.778333,-80.263,,0.01,,7556,284,153,,,,,,20012151,,, +1680,USA,en,WQCF602,,Miami/Shenandoah Park (FL),25.755,-80.229167,,0.01,,7556,284,153,,,,,,20012148,,, +1680,USA,en,WPTR461,,Texarkana (AR),33.508333,-93.947778,,0.01,,7773,299,155,,,,,,20012115,,, +1680,USA,en,WQIW791,,Chalmette (LA),29.95,-89.966667,,0.01,,7832,294,155,,,,,,20012099,,, +1680,USA,en,WQIW791,,Chalmette (LA),29.960989,-89.977628,,0.01,,7832,294,155,,,,,,20012120,,, +1680,USA,en,WQIW791,,Saint Bernard (LA),29.860989,-89.778278,,0.01,,7828,294,155,,,,,,20012132,,, +1680,USA,en,WQIW791,,Violet/Canal (LA),29.900028,-89.896083,,0.01,,7832,294,155,,,,,,20012119,,, +1680,USA,en,WPLR660,,Dallas Fort Worth (TX),32.877664,-97.013889,,0.01,,8008,301,157,,,,,,20012163,,, +1680,USA,en,WQEB401,,Dallas (TX),32.793522,-96.805556,,0.01,,8003,301,157,,,,,,20012180,,, +1680,USA,en,WQHF993,,Corsicana (TX),32.03,-96.471667,,0.01,,8050,300,157,,,,,,20012096,,, +1680,USA,en,WQO7,,Dallas Airport (TX),32.898056,-97.039167,,0.01,,8008,301,157,,,,,,20000033,,, +1680,USA,en,WQFG871,,Clearfield/497 S Main St. (UT),41.111014,-112.027658,,0.01,,8076,316,158,,,,,,20012137,,, +1680,USA,en,WPTR871,,Houston (TX),29.680556,-95.376889,,0.01,,8188,298,159,,,,,,20012108,,, +1680,USA,en,WPTR871,,Houston (TX),29.682778,-95.459167,,0.01,,8192,298,159,,,,,,20012107,,, +1680,USA,en,WPTR871,,Houston (TX),29.7075,-95.276897,,0.01,,8179,298,159,,,,,,20012109,,, +1680,USA,en,WPTR871,,Houston (TX),29.778611,-95.443522,,0.01,,8183,298,159,,,,,,20012106,,, +1680,USA,en,WPTR871,,Houston (TX),29.803889,-95.293572,,0.01,,8172,298,159,,,,,,20012110,,, +1680,USA,en,WPTR871,,Houston (TX),29.814444,-95.3775,,0.01,,8176,298,159,,,,,,20012111,,, +1680,USA,en,WPTS344,,Houston (TX),29.689722,-95.031111,,0.01,,8166,297,159,,,,,,20012104,,, +1680,USA,en,WPTS344,,Houston (TX),29.79,-95.060164,,0.01,,8159,297,159,,,,,,20012105,,, +1680,USA,en,WQEL390,,Richmond (TX),29.583333,-95.766667,,0.01,,8220,298,159,,,,,,20012172,,, +1680,USA,en,WQCL730,,Austin (TX),30.276831,-97.743514,,0.01,,8278,300,160,,,,,,20012183,,, +1680,USA,en,WQEL629,,Santa Rosa (NM),34.945167,-104.644342,,0.01,,8258,307,160,,,,,,20012176,,, +1680,USA,en,WQGD297,,San Antonio (TX),29.494317,-98.24435,,0.01,,8376,299,161,,,,,,20012181,,, +1680,USA,en,WPPD481,,Pescadero/1000 Pescadero Road (CA),37.243833,-122.40025,,0.01,,8911,321,163,,,,,,20012155,,, +1680,USA,en,WPUJ472,,Foster City/1030 East Hillsdale Ave (CA),37.560278,-122.271389,,0.01,,8875,321,163,,,,9989,,51948,,, +1680,USA,en,WPPZ918,,Carson (CA),33.8375,-118.2875,,0.01,,9054,316,164,,,,,,20012121,,, +1680,USA,en,WPPZ918,,Los Angeles (CA),34.016667,-118.174167,,0.01,,9032,316,164,,,,,,20012122,,, +1680,USA,en,WPPZ918,,Los Angeles (CA),34.030833,-118.432167,,0.01,,9043,317,164,,,,,,20012125,,, +1680,USA,en,WPPZ918,,Los Angeles (CA),34.045833,-118.376111,,0.01,,9039,316,164,,,,,,20012100,,, +1680,USA,en,WPPZ918,,San Fernando (CA),34.288333,-118.408333,,0.01,,9017,317,164,,,,,,20012123,,, +1680,USA,en,WPPZ918,,Woodland Hills (CA),34.176906,-118.610239,,0.01,,9037,317,164,,,,,,20012133,,, +1680,USA,en,WPSZ634,,Glendale/131 North Isabel St. (CA),34.147833,-118.247833,,0.01,,9023,316,164,,,,,,20012171,,, +1680,USA,en,WQGR425,,Santa Monica (CA),34.029167,-118.482222,,0.01,,9045,317,164,,,,,,20012189,,, +1680,USA,en,WQHK800,,Montecito (CA),34.44,-119.631667,,0.01,,9059,318,164,,,,,,20012117,,, +1680,USA,en,WE2XFZ,,Chilocco (OK),36.937222,-97.071389,,0.0001,,7663,304,174,,,,,,20012102,,, +1680,USA,en,WE2XFZ,,Flying Horse/Felix Canyon Road (NM),33.002222,-105.048333,,0.0001,,8454,306,181,,,,,,20012169,,, +1680,USA,en,WD2XUM,,El Centro NAF (CA),32.89,-115.787222,,0.0001,,9024,314,184,,,,,,20012101,,, +1683,AUS,el,R Club AM,,Sydney/Lakemba (27 Leslie St) (NSW),-33.931389,151.088056,,0.4,,16557,68,173,,0000-2400,1234567,2238,,51609,,, +1683.5,MDR,,Faial R,u,Faial (md),32.783333,-16.85,,1,,2849,230,85,,????-????,1234567,-1683.5,,19900225,,, +1686,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,????-????,1234567,,,19900528,,, +1687.4,TUN,,3VB Bizerte R,u,Bizerte (biz),37.266675,9.883333,,1,,1673,169,74,,????-????,1234567,-1687.4,,19901415,,, +1689,POR,,Peniche Pescas R,u,Peniche (lei),39.363889,-9.4,,1,,1866,227,76,,????-????,1234567,,,19901305,,, +1689,CNR,,EAL Las Palmas R,u,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,0803-0818,1234567,,,1500002,,, +1689,CNR,,EAL Las Palmas R,u,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,1233-1248,1234567,,,1500002,,, +1689,CNR,,EAL Las Palmas R,u,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,1903-1918,1234567,,,1500002,,, +1690,GRC,el,Samurai R,,Kalamata (pel-mes),37.033333,22.116667,,1,,2078,138,78,,,,,,3400010,,, +1690,CAN,en,CJLO,,Montral (QC),45.447608,-73.658375,,1,,5610,296,113,,0000-2400,1234567,1,,20100005,,, +1690,CAN,xx,CHTO,,Toronto/Scarborough (ON),43.712778,-79.315,,1,,6078,298,118,,0000-2400,1234567,0,,20100003,,, +1690,USA,en,WPTX,,Lexington Park (MD),38.282778,-76.560833,,1,,6313,291,120,,0000-2400,1234567,992,,31654,,, +1690,USA,en,WVON,,Berwyn (IL),41.737222,-87.701111,,1,,6727,301,124,,0000-2400,1234567,0,,42876,,, +1690,USA,en,WMLB,,Avondale Estates (GA),33.811667,-84.360278,,1,,7159,293,129,,0000-2400,1234567,43,,43351,,, +1690,VIR,,WIGT,,Charlotte Amalie (sto),18.315833,-64.883889,,0.92,,7140,267,129,,,,,,20016308,,, +1690,USA,en,KDDZ,,Arvada (CO),39.655833,-105.074167,,1,,7862,311,136,,0000-2400,1234567,3,,38248,,, +1690,USA,en,WPKF714,,New York City/2300 Southern Blvd (NY),40.860986,-73.877661,,0.01,,5950,292,136,,,,,,20012205,,, +1690,USA,en,WPYB598,,Freeport/76 Church Street (NY),40.660972,-73.582778,,0.01,,5946,292,136,,,,,,20012219,,, +1690,USA,en,WPZN819,,Oradell/355 Kinderkamack Rd (NJ),40.960969,-74.032333,,0.01,,5953,292,136,,,,,,20012231,,, +1690,USA,en,WPTI908,,Queens (NY),40.665278,-73.806389,,0.01,,5960,292,137,,,,,,20012239,,, +1690,USA,en,WPXA218,,Bellville/228 Chestnut St. (NJ),40.827669,-74.161025,,0.01,,5971,292,137,,,,,,20012199,,, +1690,USA,en,WQEL577,,Westfield/425 E Broad St. (NJ),40.655,-74.345833,,0.01,,5995,292,137,,,,,,20012215,,, +1690,USA,en,WQFG689,,Secaucus (NJ),40.793522,-74.058333,,0.01,,5967,292,137,,,,,,20012193,,, +1690,USA,en,WQFG689,,West Bergen (NJ),40.712222,-74.089444,,0.01,,5974,292,137,,,,,,20012206,,, +1690,USA,en,WPZC633,,Warren/29900 Civic Center Blvd (MI),42.513333,-83.024444,,0.01,,6390,299,141,,,,,,20012228,,, +1690,USA,en,WQCN317,,Wheeling (WV),40.06325,-80.593639,,0.01,,6430,295,141,,,,,,20012242,,, +1690,USA,en,WQCN317,,Wheeling/North Park Landfill (WV),40.094358,-80.711556,,0.01,,6435,296,141,,,,,,20012238,,, +1690,USA,en,WQEQ301,,Dearborn Heights/25637 Michigan Ave (MI),42.296667,-83.294303,,0.01,,6423,299,141,,,,,,20012210,,, +1690,USA,en,WQFI879,,Garfield Heights (OH),41.414694,-81.614889,,0.01,,6389,297,141,,,,,,20012197,,, +1690,USA,en,WPMD631,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20012227,,, +1690,USA,en,WQAC662,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20012220,,, +1690,USA,xx,KFSG,,Roseville (CA),38.747778,-121.4925,,1,,8727,321,143,,0000-2400,1234567,9965,,38432,,, +1690,USA,en,WPSL489,,North Wilkesboro (NC),36.166667,-81.15,,0.01,,6768,293,145,,,,,,20012225,,, +1690,USA,en,WPVB565,,Bluffton (SC),32.244311,-80.810917,,0.01,,7061,289,148,,,,,,20012213,,, +1690,USA,en,WPYP221,,Gadsden/501 Reservoir Road (AL),34.027689,-85.994889,,0.01,,7244,294,149,,,,,,20012222,,, +1690,USA,en,WQHY820,,Independence (MO),39.044356,-94.344342,,0.01,,7329,303,150,,,,,,20012196,,, +1690,USA,en,WQHY820,,Kansas City/1351 Summit Street (MO),39.076194,-94.593194,,0.01,,7341,303,150,,,,,,20012200,,, +1690,USA,en,WQHY820,,Kansas City/1701 NE Parvin Road (MO),39.165583,-94.561017,,0.01,,7331,304,150,,,,,,20012198,,, +1690,USA,en,WQHY820,,Pleasant Valley/8900 Liberty Drive (MO),39.227683,-94.477633,,0.01,,7321,304,150,,,,,,20012202,,, +1690,USA,en,WPZH604,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20012230,,, +1690,USA,en,WQGC573,,Montgomery (AL),32.311014,-86.344353,,0.01,,7407,293,151,,,,,,20012233,,, +1690,USA,en,WQGC573,,Montgomery (AL),32.364167,-86.213667,,0.01,,7395,293,151,,,,,,20012234,,, +1690,USA,en,WQGC573,,Prattville (AL),32.482472,-86.410961,,0.01,,7397,293,151,,,,,,20012232,,, +1690,USA,en,WQGC573,,Prattville (AL),32.577658,-86.46475,,0.01,,7393,293,151,,,,,,20012221,,, +1690,ARG,,R Apocalipsis II,,San Justo (ba),-34.666667,-58.55,,1,,11520,230,152,,,,969,,51929,,, +1690,USA,en,WPUA224,,Little Rock (AR),34.792778,-92.058333,,0.01,,7551,299,152,,,,,,20012241,,, +1690,USA,en,WQFX549,,Lake Worth/1020 Lucerne Ave.-Fire Station (FL),26.626814,-80.061,,0.01,,7472,285,152,,,,,,20012224,,, +1690,USA,en,WQGC573,,Greenville (AL),31.883278,-86.610967,,0.01,,7460,293,152,,,,,,20012229,,, +1690,USA,en,WPUA224,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20012240,,, +1690,USA,en,WPUA224,,Little Rock (AR),34.796389,-92.310206,,0.01,,7566,299,153,,,,,,20012237,,, +1690,USA,en,WPUY239,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20012208,,, +1690,USA,en,WPWL619,,East Milton (FL),30.564444,-87.038056,,0.01,,7596,292,153,,,,,,20012204,,, +1690,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20012235,,, +1690,USA,en,WQDD428,,Lake Charles (LA),30.233333,-93.216667,,0.01,,8009,296,157,,,,,,20012207,,, +1690,USA,en,WQIQ734,,Farmington (UT),40.961694,-111.928861,,0.01,,8085,316,158,,,,,,20012217,,, +1690,USA,en,WQEL390,,Richmond (TX),29.583333,-95.766667,,0.01,,8220,298,159,,,,,,20012214,,, +1690,USA,en,WQHK802,,College Station (TX),30.5575,-96.256111,,0.01,,8165,299,159,,,,,,20012226,,, +1690,USA,en,WQHK802,,College Station (TX),30.615556,-96.3125,,0.01,,8163,299,159,,,,,,20012218,,, +1690,USA,en,WQIH892,,Pasadena (TX),29.582778,-95.057222,,0.01,,8177,297,159,,,,,,20012203,,, +1690,USA,en,WQIH892,,Pasadena (TX),29.671944,-95.163333,,0.01,,8175,297,159,,,,,,20012194,,, +1690,USA,en,WQCL730,,Austin (TX),30.276831,-97.743514,,0.01,,8278,300,160,,,,,,20012236,,, +1690,USA,en,WPQZ230,,Los Angeles (CA),34.11,-118.24925,,0.01,,9026,316,164,,,,,,20012216,,, +1690,USA,en,WPUA825,,San Diego/2980 Pacific Highway (CA),32.737222,-117.176389,,0.01,,9106,315,164,,,,,,20012195,,, +1690,USA,en,WPUJ467,,Bell Gardens/6662 Loveland Street (CA),33.977694,-118.145056,,0.01,,9034,316,164,,,,,,20012201,,, +1690,USA,en,WPYR619,,Long Beach/1250 Bellflower Blvd (CA),33.783333,-118.126906,,0.01,,9052,316,164,,,,,,20012223,,, +1690,USA,en,WQIZ328,,La Habra (CA),33.906667,-117.962222,,0.01,,9032,316,164,,,,,,20012209,,, +1690,USA,en,WQJC283,,Palm Springs (CA),33.827664,-116.510861,,0.01,,8970,315,164,,,,,,20012211,,, +1690,USA,en,WQO808,,Culver City/9690 Jefferson Blvd (CA),34.016389,-118.394308,,0.01,,9042,316,164,,,,,,20012212,,, +1692,NOR,,LGQ Rogaland R,u,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,1215-1230,1234567,,,6300007,,, +1692,NOR,,LGQ Rogaland R,u,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,2315-2330,1234567,,,6300007,,, +1692,BEN,,TYA Cotonou R,u,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900259,,, +1692,AUS,,Vision R Network,,Nanango/Drayton Street (QLD),-26.658056,151.962222,,0.4,,15987,59,171,,,,119,,37700008,,, +1695,NOR,,LGV Vard R,u,Berlevg (fi),70.872292,29.080389,,1,,2375,20,81,,1203-1218,1234567,,,6300008,,, +1695,NOR,,LGV Vard R,u,Berlevg (fi),70.872292,29.080389,,1,,2375,20,81,,2303-2318,1234567,,,6300008,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0003-0018,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0403-0418,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0550-0605,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0733-0748,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0803-0818,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1203-1218,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1333-1348,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1503-1518,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1603-1618,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1750-1815,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,2003-2013,1234567,,,2500005,,, +1696.4,TUN,,3VM Mahdia R,u,Mahdia (mah),35.5,11.066667,,1,,1883,167,76,,????-????,1234567,-1696.4,,19901419,,, +1698,E,,EAR La Corua R,u,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,0703-0718,1234567,,,2200021,,, +1698,E,,EAR La Corua R,u,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,1303-1318,1234567,,,2200021,,, +1698,E,,EAR La Corua R,u,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,1903-1918,1234567,,,2200021,,, +1698,GRC,,Aspropyrgos Attikis Coastguard JRCC,u,Aspropyrgos (att-wst),38.066667,23.583333,,1,,2052,133,78,,????-????,1234567,,,19900600,,, +1698,GRC,,SXE2 Piraeus Coastguard,u,Piraeus (att-pir),37.966667,23.633333,,1,,2064,133,78,,????-????,1234567,,,19900604,,, +1699.4,TUN,,3VS Sfax R,u,Sfax (sfa),34.733333,10.766667,,1,,1963,168,77,,????-????,1234567,-1699.4,,19901422,,, +1700,USA,en,KKLF,,Richardson (D) (TX),33.423056,-96.6625,,10,,7941,301,126,,1300-0100,1234567,,,20012536,,, +1700,USA,en,KBGG,,Des Moines (IA),41.591667,-93.528611,,1,,7072,305,128,,0000-2400,1234567,19,,38027,,, +1700,USA,en,WEUP,,Huntsville (AL),34.758889,-86.643056,,1,,7225,295,129,,0000-2400,1234567,9934,,41337,,, +1700,DOM,es,R Eternidad,,Santo Domingo (sdo),18.475,-69.833333,,1,,7465,271,132,,0001-2359,1234567,987,,21100002,,, +1700,USA,ht,WJCC,,Miami Springs (FL),25.900556,-80.363889,,1,,7553,284,133,,0000-2400,1234567,14,,30759,,, +1700,MEX,en,XEPE-AM ESPN 1700,,Tijuana (bcn),32.538317,-116.988561,,10,,9116,315,134,,0000-2400,1234567,7,,51950,,, +1700,USA,en,WPSK539,,Boston (MA),42.366667,-71.066667,,0.01,,5664,292,134,,0000-2400,1234567,,,20012271,,, +1700,USA,en,WQCP342,,White Plains/240 Airport Road (NY),41.077633,-73.711025,,0.01,,5924,292,136,,,,,,20012301,,, +1700,USA,en,KKLF,,Richardson (N) (TX),33.121389,-96.581944,,1,,7962,301,137,,0100-1300,1234567,3,,39457,,, +1700,USA,en,KNAA585,,Jamaica (NY),40.683333,-73.8,,0.01,,5958,292,137,,0000-2400,1234567,,,20000031,,, +1700,USA,en,WPSH468,,Manville (NJ),40.5455,-74.594353,,0.01,,6019,292,137,,,,,,20012272,,, +1700,USA,en,WPSK807,,Clark (NJ),40.625,-74.314167,,0.01,,5995,292,137,,,,,,20012268,,, +1700,USA,en,WPUV838,,Lyndhurst/367 Valley Brook Avenue (NJ),40.8125,-74.124722,,0.01,,5969,292,137,,,,,,20012296,,, +1700,USA,en,WQBY208,,Red Bank (NJ),40.348333,-74.055278,,0.01,,5999,292,137,,,,,,20012278,,, +1700,USA,en,WQCV630,,Newark (NJ),40.733333,-74.166667,,0.01,,5978,292,137,,,,,,20012276,,, +1700,USA,en,KNAA585,,Jamaica (NJ),40.661472,-76.763583,,0.01,,6147,294,138,,,,,,20012312,,, +1700,USA,en,WPIC749,,Philadelphia (PA),39.960986,-75.144339,,0.01,,6097,292,138,,,,,,20012307,,, +1700,USA,en,WPWX202,,Eagleswood (NJ),39.644339,-74.294306,,0.01,,6066,291,138,,,,,,20012280,,, +1700,USA,en,WQEA211,,Mount Holly (NJ),39.85,-74.633333,,0.01,,6073,292,138,,,,,,20012264,,, +1700,USA,en,WQEL632,,Cape May (NJ),38.944294,-74.914972,,0.01,,6158,291,139,,,,,,20012266,,, +1700,USA,en,WQGU295,,Harrisburg (PA),40.291667,-76.893547,,0.01,,6182,293,139,,,,,,20012289,,, +1700,USA,en,WPPZ755,,Westland/450 S Venoy Road (MI),43.310964,-83.365222,,0.01,,6350,300,140,,,,,,20012310,,, +1700,USA,en,WQCR505,,Clarksville (MD),39.211,-76.944339,,0.01,,6267,292,140,,,,,,20012292,,, +1700,USA,en,WQCR563,,Arlington (VA),38.879056,-77.127628,,0.01,,6304,292,140,,,,,,20012299,,, +1700,USA,en,WQFI512,,Columbia (MD),39.278528,-76.927664,,0.01,,6261,292,140,,,,,,20012286,,, +1700,B,,CRJ,b,Carajs (PA),-6.111489,-50.003306,,1,,8373,239,141,,0000-2400,1234567,957,L774 U700 9.0s,ID+4 gap,85907,, +1700,USA,en,WPTC520,,Sterling Heights (MI),42.591111,-83.011111,,0.01,,6383,299,141,,,,,,20012273,,, +1700,USA,en,WPUA590,,Trenton/24525 Meridian Road (MI),42.1285,-83.161025,,0.01,,6428,299,141,,,,,,20012290,,, +1700,USA,en,WPWI622,,Southfield (MI),42.480556,-83.233333,,0.01,,6405,299,141,,,,,,20012309,,, +1700,USA,en,WPZK932,,Brunswick/3637 Center Road (OH),41.238333,-81.816167,,0.01,,6415,297,141,,,,,,20012300,,, +1700,USA,en,WPZK932,,Brunswick/505 Substation Road (OH),41.260278,-81.859722,,0.01,,6416,297,141,,,,,,20012283,,, +1700,USA,en,WQCL647,,Newport News (VA),37.006944,-76.429167,,0.01,,6402,290,141,,,,,,20012281,,, +1700,USA,en,WQCL647,,Newport News (VA),37.020833,-76.445833,,0.01,,6402,290,141,,,,,,20012279,,, +1700,USA,en,WQCL647,,Newport News (VA),37.071944,-76.493889,,0.01,,6401,290,141,,,,,,20012293,,, +1700,USA,en,WQCL647,,Newport News (VA),37.164444,-76.560222,,0.01,,6399,290,141,,,,,,20012284,,, +1700,USA,en,WQGR416,,Ashland (VA),37.627656,-77.299944,,0.01,,6410,291,141,,,,,,20012295,,, +1700,USA,en,WQGR416,,Ashland (VA),37.666028,-77.382333,,0.01,,6412,291,141,,,,,,20012311,,, +1700,USA,en,WQGR416,,Ashland (VA),37.814194,-77.6785,,0.01,,6420,292,141,,,,,,20012249,,, +1700,USA,en,WQGR416,,Ashland (VA),37.850111,-77.464806,,0.01,,6404,292,141,,,,,,20012254,,, +1700,USA,en,WQGR416,,Ashland (VA),37.944356,-77.660978,,0.01,,6409,292,141,,,,,,20012252,,, +1700,USA,en,WQGR416,,Ashland/Taylor Complex Hwy 54 (VA),37.760967,-77.433361,,0.01,,6408,291,141,,,,,,20012267,,, +1700,USA,en,WQGT209,,Ashland (VA),37.777861,-77.542917,,0.01,,6414,292,141,,,,,,20012270,,, +1700,USA,en,WQHW374,,Mayfield Heights (OH),41.527644,-81.458972,,0.01,,6371,297,141,,,,,,20012291,,, +1700,USA,en,KVNS,,Brownsville (Villa Nueva) (TX),25.949167,-97.554167,,0.88,,8646,297,143,,0000-2400,1234567,7,,28156,,, +1700,CAN,en,AIR Algonquin,,Ottawa/Algonquin College (ON),45.346944,-75.757944,,0.001,,5745,297,144,,,,,,20109299,,, +1700,USA,en,WPMI800,,Sturtevant/14116 Washington Ave (WI),42.726972,-87.958972,,0.01,,6664,302,144,,,,,,20012263,,, +1700,USA,en,WQIZ337,,Miamisburg (OH),39.62775,-84.229111,,0.01,,6686,297,144,,,,,,20012244,,, +1700,USA,en,WQIZ337,,Vandalia (OH),39.892222,-84.194353,,0.01,,6663,298,144,,,,,,20012255,,, +1700,USA,,WQKH253,,Lexington (KY),37.983333,-84.483333,,0.01,,6831,296,145,,,,738,,20016305,,, +1700,USA,en,WQEX428,,Shelbyville (KY),38.233333,-85.333333,,0.01,,6863,297,146,,,,,,20012253,,, +1700,USA,en,WQFG448,,Orlando/One Airport Blvd (FL),28.431389,-81.308056,,0.01,,7405,287,151,,,,,,20012294,,, +1700,ARG,,R City,,Almirante Brown (ba),-34.783333,-58.4,,1,,11522,230,152,,,,,,33000007,,, +1700,ARG,es,Fantstico FM 91.9,,Tigre (ba),-34.429339,-58.581717,,1,,11500,230,152,,,,992,,33000013,,, +1700,ARG,es,R Juventud,,Florencio Varela (ba),-34.789058,-58.281394,,1,,11517,230,152,,,,,,33000048,,, +1700,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20012250,,, +1700,USA,en,WPUY239,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20012265,,, +1700,USA,en,WPWW707,,Bozeman (MT),45.683333,-111.033333,,0.01,,7614,318,153,,,,,,20012277,,, +1700,USA,en,WC2XUV,,Albany (NY),42.672222,-73.735833,,0.0001,,5810,294,155,,,,,,20012256,,, +1700,USA,en,WNKG901,,Mandeville (LA),30.2,-90.122222,,0.01,,7820,294,155,,,,,,20012247,,, +1700,USA,en,WNKG901,,Mandeville (LA),30.365667,-90.094167,,0.01,,7805,294,155,,,,,,20012243,,, +1700,USA,en,WNKG901,,Mandeville (LA),30.409333,-90.094336,,0.01,,7801,294,155,,,,,,20012248,,, +1700,USA,en,WNKG901,,Metairie (LA),30.027656,-90.160986,,0.01,,7837,294,155,,,,,,20012246,,, +1700,USA,en,WQHR733,,Issaquah (WA),47.561008,-122.048333,,0.01,,7901,326,156,,,,,,20012287,,, +1700,USA,en,WQIH568,,Auburn/1305 C St SW (WA),47.297583,-122.232861,,0.01,,7933,326,156,,,,,,20012282,,, +1700,USA,en,WC2XUV,,Ewing Township (NJ),40.2675,-74.785833,,0.0001,,6051,292,157,,,,,,20012269,,, +1700,USA,en,WPHF897,,Lake Quinalt (WA),47.460983,-123.897111,,0.01,,7980,327,157,,,,,,20012305,,, +1700,USA,en,WQDD428,,Lake Charles (LA),30.233333,-93.216667,,0.01,,8009,296,157,,,,,,20012303,,, +1700,USA,en,WQBA734,,Ashland/455 Siskiyou Blvd (OR),42.193333,-122.7075,,0.01,,8444,324,161,,,,,,20012260,,, +1700,USA,en,WC2XUV,,Lansing (MI),42.732222,-84.555556,,0.0001,,6464,300,162,,,,,,20012258,,, +1700,USA,en,WPXY385,,Truckee/Northstar Drive (CA),39.286944,-120.106389,,0.01,,8615,320,162,,,,,,20012302,,, +1700,USA,en,WC2XUV,,Raleigh-Durham Airport (NC),35.866667,-78.783333,,0.0001,,6642,291,163,,,,,,20012261,,, +1700,USA,en,WPT201,,Moffett Field (CA),37.415278,-122.048333,,0.01,,8880,321,163,,,,9943,,51949,,, +1700,USA,en,WPTZ516,,Oakland/Int. Airport (CA),37.726167,-122.202833,,0.01,,8856,321,163,,,,9919,,52597,,, +1700,USA,en,WE2XEH,,Charlotte (NC),36.101667,-80.829444,,0.0001,,6753,292,164,,,,,,20012251,,, +1700,USA,en,WNCM749,,Burbank (CA),34.166667,-118.348972,,0.01,,9026,317,164,,,,,,20012297,,, +1700,USA,en,WPDP334,,San Diego (CA),32.7943,-117.127625,,0.01,,9098,315,164,,,,,,20012285,,, +1700,USA,en,WPET709,,Los Angeles (CA),33.930556,-118.377644,,0.01,,9050,316,164,,,,,,20012298,,, +1700,USA,en,WPIG463,,Anaheim (CA),33.847528,-117.891722,,0.01,,9035,316,164,,,,,,20012304,,, +1700,USA,en,WPMD956,,Norwalk (CA),33.894292,-118.095333,,0.01,,9040,316,164,,,,9628,,20012308,,, +1700,USA,en,WQBU640,,Carmel Highlands/73 Fern Canyon Road (CA),36.510997,-121.944344,,0.01,,8963,320,164,,,,,,20012306,,, +1700,USA,en,WC2XUV,,Tallahassee (FL),30.383333,-84.366667,,0.0001,,7441,290,171,,,,,,20012262,,, +1700,HWA,en,WC2XUV,,Honolulu (HI),21.306667,-157.858611,,0.01,,11710,345,173,,,,,,20012317,,, +1700,USA,en,WC2XUV,,Denver (CO),39.694167,-104.9875,,0.0001,,7854,311,175,,0000-2400,1234567,,,20012275,,, +1700,USA,en,WC2XUV,,Austin (TX),30.3,-97.7,,0.0001,,8273,300,180,,0000-2400,1234567,,,20012274,,, +1700,USA,en,WC2XUV,,Sacramento (CA),38.516667,-121.5,,0.0001,,8749,321,183,,0000-2400,1234567,,,20012259,,, +1700,USA,en,WD2XZO,,San Diego (CA),32.822778,-117.142778,,0.0001,,9096,315,184,,0000-2400,1234567,,,20012245,,, +1701,POR,,Portimo Pescas R,u,Portimo (agv),37.133333,-8.533333,,1,,2034,221,77,,????-????,1234567,,,19901306,,, +1701,AUS,hi,R Brisvaani,,Brisbane/Seventeen Mile Rocks (QLD),-27.54,152.956667,,0.4,,16124,58,171,,0000-2400,1234567,66,,51612,,, +1701,AUS,ar,VMV503 Islamic Voice R,,Melbourne/223-224 Union Road (VIC),-37.639722,144.940556,,0.4,,16437,80,172,,,,19,,37700009,,, +1701,AUS,,Voice of Charity,,Sydney/Silverwater (NSW),-33.830742,151.045433,,0.4,,16546,68,173,,,,62,,37700011,,, +1702,J,ja,Weather Info,u,unknown,34.5,134,,1,,9124,41,144,,1430-1440,1234567,,,31400044,,, +1704,DNK,,OXZ Lyngby R,u,Skamlebk (vsj),55.837222,11.421111,,1,,528,36,62,,0533-0553,1234567,,,2100001,,, +1704,DNK,,OXZ Lyngby R,u,Skamlebk (vsj),55.837222,11.421111,,1,,528,36,62,,1743-1803,1234567,,,2100001,,, +1704,DNK,,OXZ Lyngby R,u,Skamlebk (vsj),55.837222,11.421111,,1,,528,36,62,,2133-2153,1234567,,,2100001,,, +1704,E,,EAC Tarifa R,u,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,0733-0748,1234567,,,2200024,,, +1704,E,,EAC Tarifa R,u,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,1233-1248,1234567,,,2200024,,, +1704,E,,EAC Tarifa R,u,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,1933-1948,1234567,,,2200024,,, +1704,BEN,,TYA Cotonou R,u,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900260,,, +1707,E,,Cabo Matxitxako R,u,Cabo Matxitxako (PVA-BI),43.454039,-2.75275,,1,,1179,219,69,,0703-0718,1234567,,,2200019,,, +1707,E,,Cabo Matxitxako R,u,Cabo Matxitxako (PVA-BI),43.454039,-2.75275,,1,,1179,219,69,,1303-1318,1234567,,,2200019,,, +1707,E,,Cabo Matxitxako R,u,Cabo Matxitxako (PVA-BI),43.454039,-2.75275,,1,,1179,219,69,,1903-1918,1234567,,,2200019,,, +1710,S,,SDJ Stockholm R,u,Grimeton (ha),57.103056,12.385556,,1,,675,32,64,,0800-0815,1234567,,,6800003,,, +1710,S,,SDJ Stockholm R,u,Grimeton (ha),57.103056,12.385556,,1,,675,32,64,,1600-1615,1234567,,,6800003,,, +1710,NOR,,LGP Bod R,u,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,1203-1218,1234567,,,6300009,,, +1710,NOR,,LGP Bod R,u,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,2303-2318,1234567,,,6300009,,, +1710,USA,ht,R Soleil International,,Brockton (MA),42.083333,-71.016667,,1,,5681,291,114,,,,,,20012400,,, +1710,USA,ht,R Top Inter,,Boston (MA),42.366667,-71.066667,,1,,5664,292,114,,,,15,,52547,,, +1710,USA,en,W807,,Glasford (IL),40.569444,-89.811111,,0.1,,6943,302,136,,,,,,20016304,,, +1710,USA,es,R Celestial,,Bronx/3138 Webster Ave (NY),40.872222,-73.87525,,0.01,,5949,292,136,,,,29,,20012363,,, +1710,USA,,WQFG689,,Jersey City/OEM intersection Summit / Laidlaw (NJ),40.740333,-74.057667,,0.01,,5970,292,137,,,,,,20016188,,, +1710,USA,,WQFG689,,Kearny/Davis Avenue (NJ),40.752167,-74.150667,,0.01,,5975,292,137,,,,,,20016189,,, +1710,USA,,WQFG689,,Lincroft/Hackensack Avenue (NJ),40.7225,-74.1115,,0.01,,5975,292,137,,,,,,20016187,,, +1710,USA,,WQFG689,,Secaucus/Meadowview County Hospital (NJ),40.785,-74.058333,,0.01,,5967,292,137,,,,,,20016191,,, +1710,USA,,WQFG689,,West Bergen/College & Culver Streets (NJ),40.712222,-74.089444,,0.01,,5974,292,137,,,,,,20016190,,, +1710,ARG,es,AM 1710,,Buenos Aires (df),-34.583333,-58.666667,,1,,11518,230,152,,,,,,52495,,, +1713,ISL,,TFV Vestmannaeyjar R,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,0550-0610,1234567,,,19900841,,, +1713,ISL,,TFV Vestmannaeyjar R,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,0800-0815,1234567,,,19900841,,, +1713,ISL,,TFV Vestmannaeyjar R,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,1750-1810,1234567,,,19900841,,, +1713,ISL,,TFV Vestmannaeyjar R,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,2000-2015,1234567,,,19900841,,, +1713,NOR,,LGV Vard R,u,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,0803-0818,1234567,,,6300003,,, +1713,NOR,,LGV Vard R,u,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,1203-1218,1234567,,,6300003,,, +1713,NOR,,LGV Vard R,u,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,2303-2318,1234567,,,6300003,,, +1715,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900203,,, +1715,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901254,,, +1716,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,????-????,1234567,,,19900664,,, +1720,GRC,el,R 1 Arta,,Arta (epi-art),39.15,20.983333,,1,,1826,136,75,,,,,,3400054,,, +1720,AFG,,OKN,b,Kandahar (kan),31.479167,65.875,,0.025,,5259,92,126,,,,5,L1719 U1721 8.1s,ID+4 gap,85908,, +1720.4,MNE,,Bar R,u,Bar (BR),42.086111,19.075,,1,,1466,134,72,,0850-0900,1234567,-1720.4,,19901102,,, +1720.4,MNE,,Bar R,u,Bar (BR),42.086111,19.075,,1,,1466,134,72,,1420-1430,1234567,-1720.4,,19901102,,, +1720.4,MNE,,Bar R,u,Bar (BR),42.086111,19.075,,1,,1466,134,72,,2050-2100,1234567,-1720.4,,19901102,,, +1722,HOL,,PBF3 Koninklijke Marine,u,Rotterdam/Marine (zho),51.891667,4.422222,,1,,138,261,54,,????-????,1234567,,,19900651,,, +1722,NOR,,LJB Bod R,u,Bjrnya/Herwighamna (sp),74.504028,18.996944,,1,,2555,9,83,,0000-0015,1234567,,,6300015,,, +1725,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900204,,, +1725,PNG,,GA,b,Goroka (ehd),-6.0625,145.375,,0.025,,13672,51,175,,,,992,L1030 U1008 6.5s,85909,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0333-0348,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0503-0518,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0533-0548,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0733-0748,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1133-1148,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1533-1548,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1703-1718,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1733-1748,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1933-1948,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,2333-2348,1234567,,,19900067,,, +1728,NOR,,LGN Rogaland R,u,Bergen (ho),60.356944,4.95,,1,,921,355,66,,1215-1230,1234567,,,6300010,,, +1728,NOR,,LGN Rogaland R,u,Bergen (ho),60.356944,4.95,,1,,921,355,66,,2315-2330,1234567,,,6300010,,, +1728.5,J,,JFC,u,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,-1728.5,,19900891,,, +1730,B,,FRA,b,Juiz de Fora (MG),-21.770833,-43.375,,0.2,,9526,225,152,,,,,7.0s,85910,,, +1731,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,1203-1218,1234567,,,6300011,,, +1731,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,2303-2318,1234567,,,6300011,,, +1734,DNK,,OXZ Lyngby R,u,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,1743-1803,1234567,,,2100003,,, +1734,DNK,,OXZ Lyngby R,u,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,2133-2153,1234567,,,2100003,,, +1734,GRC,,Aspropyrgos Attikis Coastguard JRCC,u,Aspropyrgos (att-wst),38.066667,23.583333,,1,,2052,133,78,,????-????,1234567,,,19900601,,, +1734,B,,XPC,b,Chapeco (SC),-27.145833,-52.625,,0.025,,10511,230,165,,,,,,85911,,, +1735,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901255,,, +1737,I,,Trapani R,u,Trapani (tp),38.016667,12.483333,,1,,1637,161,73,,????-????,1234567,,,19900676,,, +1737,PNG,,KUT,b,Kutubu / Kumul Platform (gul),-8.0625,144.541667,,0.05,,13821,53,173,,,,5,L372 U374 5.45s,ID+2 gap,85913,, +1739,NOR,,LJN Ny-lesund R,u,Ny-lesund (sp),78.918425,11.892033,,1,,2989,2,87,,????-????,1234567,,,6300012,,, +1740,POR,,Aveiro Pescas R,u,Aveiro (avo),40.633333,-8.65,,1,,1715,228,74,,????-????,1234567,,,19901296,,, +1741.4,TUN,,3VL Klibia R,u,Klibia (nab),36.85,11.1,,1,,1736,166,74,,????-????,1234567,-1741.4,,19901417,,, +1743,G,en,Stornoway Coastguard,u,Butt of Lewis (SC-WIL),58.515139,-6.261478,,1,,1069,317,68,,0710-0725,1234567,,,2800022,,, +1743,G,en,Stornoway Coastguard,u,Butt of Lewis (SC-WIL),58.515139,-6.261478,,1,,1069,317,68,,1910-1925,1234567,,,2800022,,, +1743,TUN,,3VW La Goulette Port R,u,La Goulette (tun),36.816667,10.3,,1,,1728,168,74,,0405-0420,1234567,,,19901418,,, +1743,TUN,,3VW La Goulette Port R,u,La Goulette (tun),36.816667,10.3,,1,,1728,168,74,,1905-1920,1234567,,,19901418,,, +1743,NOR,,LMJ Bod R,u,Srlaguna (jm),70.969444,-8.541667,,1,,2227,346,79,,1203-1218,1234567,,,6300013,,, +1743,NOR,,LMJ Bod R,u,Srlaguna (jm),70.969444,-8.541667,,1,,2227,346,79,,2303-2318,1234567,,,6300013,,, +1743,MRC,,CND3 Safi R,u,Safi (dka),32.3,-9.233333,,1,,2540,216,82,,0000-0015,1234567,,,19901118,,, +1743,MRC,,CND3 Safi R,u,Safi (dka),32.3,-9.233333,,1,,2540,216,82,,0915-0930,1234567,,,19901118,,, +1743,MRC,,CND3 Safi R,u,Safi (dka),32.3,-9.233333,,1,,2540,216,82,,1635-1650,1234567,,,19901118,,, +1746,IRL,,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,????-????,1234567,,,19900802,,, +1750,NOR,,LMR Hopen Metro R,u,Hopen (sp),76.583333,25.166667,,1,,2835,10,85,,????-????,1234567,,,19901142,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,0233-0248,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,0633-0648,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,1033-1048,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,1433-1448,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,1833-1848,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,2233-2248,1234567,,,4100011,,, +1755,E,,EAO Palma R,u,Palma (BAL-ML),39.366667,2.791667,,1,,1444,193,71,,0750-0805,1234567,,,2200026,,, +1755,E,,EAO Palma R,u,Palma (BAL-ML),39.366667,2.791667,,1,,1444,193,71,,1303-1318,1234567,,,2200026,,, +1755,E,,EAO Palma R,u,Palma (BAL-ML),39.366667,2.791667,,1,,1444,193,71,,1950-2005,1234567,,,2200026,,, +1755,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901256,,, +1757,NOR,,Jan Mayen Metro R,u,Jan Mayen (jm),70.983333,-8.466667,,1,,2227,346,79,,????-????,1234567,,,19901143,,, +1757,NOR,,LJB Bod R,u,Bjrnya/Herwighamna (sp),74.504028,18.996944,,1,,2555,9,83,,1005-1015,1234567,,,6300021,,, +1757,NOR,,LJB Bod R,u,Bjrnya/Herwighamna (sp),74.504028,18.996944,,1,,2555,9,83,,2205-2215,1234567,,,6300021,,, +1758,DNK,,OXZ Lyngby R,u,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,0600-0615,1234567,,,2100002,,, +1758,DNK,,OXZ Lyngby R,u,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,1743-1803,1234567,,,2100002,,, +1758,FRO,,OXJ Trshavn R,u,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,????-????,1234567,,,2700002,,, +1761,ISL,,TFM Neskaupstaur R,u,Neskaupstaur (au),65.140278,-13.738889,,1,,1843,329,75,,0550-0610,1234567,,,19900832,,, +1761,ISL,,TFM Neskaupstaur R,u,Neskaupstaur (au),65.140278,-13.738889,,1,,1843,329,75,,1750-1810,1234567,,,19900832,,, +1764,E,,EAF Finisterre R,u,Cabo Finisterre (GAL-C),42.882361,-9.271944,,1,,1556,235,73,,0703-0718,1234567,,,2200022,,, +1764,E,,EAF Finisterre R,u,Cabo Finisterre (GAL-C),42.882361,-9.271944,,1,,1556,235,73,,1303-1318,1234567,,,2200022,,, +1764,E,,EAF Finisterre R,u,Cabo Finisterre (GAL-C),42.882361,-9.271944,,1,,1556,235,73,,1903-1918,1234567,,,2200022,,, +1764,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,????-????,1234567,,,19900666,,, +1767,DNK,,OXZ Lyngby R,u,Bovbjerg (mjy),56.529964,8.166625,,1,,504,12,62,,1743-1803,1234567,,,2100004,,, +1767,G,,Milford Haven Coastguard,u,Milford Haven (WA-PEM),51.716667,-5.033333,,1,,785,271,65,,????-????,1234567,,,19900560,,, +1767,E,,EAO Cabo de Gata R,u,Cabo de Gata (AND-AL),36.721583,-2.192983,,1,,1839,205,75,,0750-0805,1234567,,,2200025,,, +1767,E,,EAO Cabo de Gata R,u,Cabo de Gata (AND-AL),36.721583,-2.192983,,1,,1839,205,75,,1303-1318,1234567,,,2200025,,, +1767,E,,EAO Cabo de Gata R,u,Cabo de Gata (AND-AL),36.721583,-2.192983,,1,,1839,205,75,,1950-2005,1234567,,,2200025,,, +1768.4,TUN,,3VT Tunis R,u,Tunis (tun),36.8,10.183333,,1,,1728,169,74,,????-????,1234567,-1768.4,,19901426,,, +1770,G,en,Shetland Coastguard,u,Collafirth (SC-SHE),60.391944,-1.27,,1,,1034,336,67,,0710-0725,1234567,,,2800021,,, +1770,G,en,Shetland Coastguard,u,Collafirth (SC-SHE),60.391944,-1.27,,1,,1034,336,67,,1910-1925,1234567,,,2800021,,, +1770,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900836,,, +1771,TUN,,3VM Mahdia R,u,Mahdia (mah),35.5,11.066667,,1,,1883,167,76,,????-????,1234567,,,19901420,,, +1772,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,????-????,1234567,,,19900661,,, +1773,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,????-????,1234567,,,19900665,,, +1775,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900205,,, +1775,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901257,,, +1779,S,,SDJ Stockholm R,u,Bjurklubb (vb),64.461639,21.591833,,1,,1626,27,73,,0733-0748,1234567,,,6800001,,, +1779,S,,SDJ Stockholm R,u,Bjurklubb (vb),64.461639,21.591833,,1,,1626,27,73,,1533-1548,1234567,,,6800001,,, +1780.4,TUN,,3VK Tabarka R,u,Tabarka (jen),36.95,8.75,,1,,1696,173,74,,????-????,1234567,-1780.4,,19901423,,, +1782,NOR,,LGL Flor R,u,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,1215-1230,1234567,,,6300014,,, +1782,NOR,,LGL Flor R,u,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,1830-1845,1234567,,,6300014,,, +1782,NOR,,LGL Flor R,u,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,2315-2330,1234567,,,6300014,,, +1782,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,????-????,1234567,,,19900667,,, +1785,NOR,,LGZ Rogaland R,u,Farsund/Haugviga (st),58.068778,6.743244,,1,,663,2,64,,1215-1230,1234567,,,6300002,,, +1785,NOR,,LGZ Rogaland R,u,Farsund/Haugviga (st),58.068778,6.743244,,1,,663,2,64,,1830-1845,1234567,,,6300002,,, +1785,NOR,,LGZ Rogaland R,u,Farsund/Haugviga (st),58.068778,6.743244,,1,,663,2,64,,2315-2330,1234567,,,6300002,,, +1792,NOR,,LFO rlandet R,u,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,????-????,1234567,,,19901146,,, +1792,ALG,,7TA Alger R,u,Algiers (16),36.766667,3.05,,1,,1726,190,74,,????-????,1234567,,,19900012,,, +1797,S,,SDJ Stockholm R,u,Gislvshammar (sn),55.488917,14.314222,,1,,640,51,63,,0800-0815,1234567,,,6800002,,, +1797,S,,SDJ Stockholm R,u,Gislvshammar (sn),55.488917,14.314222,,1,,640,51,63,,1600-1615,1234567,,,6800002,,, +1813,BEN,,TYA Cotonou R Metro,u,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900261,,, +1813,GUI,,3XC Conakry R,u,Conakry (cnk),9.508333,-13.711111,,1,,5075,208,108,,????-????,1234567,,,19900629,,, +1813,DJI,,J2A Djibouti R,u,Djibouti (djb),11.608333,43.15,,1,,5576,130,113,,????-????,1234567,,,19900477,,, +1815,BLR,,EW1OZ,b,Minsk,53.883333,27.45,,0.025,,1416,74,87,,,,,,55001,,, +1836.2,S,,SK2AU,b,Skelleftea,64.683333,20.95,,0.0004,,1626,25,107,,,,-1836.2,LW A1 ?,55002,,, +1837,I,,IW3FZQ,b,Monselice (pd),45.216667,11.783333,,0.008,,862,151,87,,,,,Dipole TEST,55003,,, +1840,CZE,,OK0EK,b,Kromeriz,49.266667,17.366667,,0.004,,833,108,89,,,,,Vertical Omni A1 T NonOp,55004,,, +1848,I,,Trapani R,u,Trapani (tp),38.016667,12.483333,,1,,1637,161,73,,????-????,1234567,,,19900677,,, +1850,TUR,,Canakkale R,u,Canakkale,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901434,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,0135-0145,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,0333-0348,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,0735-0745,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,0833-0848,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,1233-1248,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,1335-1345,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,1633-1648,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,1935-1945,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,2033-2048,1234567,,,4000014,,, +1853,CZE,,OK0EV,b,near Prague,49.883333,14.366667,,0.0001,,609,111,103,,,,,25m Vert Omni A1 PT,55005,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,0133-0148,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,0433-0448,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,0733-0748,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,0933-0948,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,1333-1348,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,1733-1748,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,1933-1948,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,2133-2148,1234567,,,4000026,,, +1856,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,,,19900068,,, +1862,I,,Marina Militare,u,Palermo (pa),38.116667,13.366667,,1,,1647,158,73,,????-????,1234567,,,19900670,,, +1862,ISL,,TFT Hornafjrur R,u,Hornafjrur (au),64.252778,-15.205556,,1,,1834,326,75,,????-????,1234567,,,19900825,,, +1862,ISL,,safjrur Landhelgisgsla,u,safjrur (vf),66.068056,-23.123611,,1,,2253,325,80,,????-????,1234567,,,19900828,,, +1869,G,,Yarmouth Coastguard,u,Yarmouth (EN-IOW),50.705556,-1.5,,1,,570,257,63,,????-????,1234567,,,19900569,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,0135-0145,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,0333-0348,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,0735-0745,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,0833-0848,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,1233-1248,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,1335-1345,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,1633-1648,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,1935-1945,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,2033-2048,1234567,,,4000012,,, +1876,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900837,,, +1880,G,,Holyhead Coastguard,u,Holyhead (WA-GWY),53.3,-4.633333,,1,,755,284,65,,????-????,1234567,,,19900555,,, +1880,KOR,,Jeju Port Service,u,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,,,19900951,,, +1881,MTN,,5TA Nouadhibou R,u,Nouadhibou (dnd),20.908333,-17.040278,,1,,4014,219,97,,????-????,1234567,,,19901127,,, +1881.4,KOR,,Pohang PTMS,u,Pohang (gsb),36.033333,129.366667,,1,,8763,44,143,,????-????,1234567,-1881.4,,19900985,,, +1883,G,en,Belfast Coastguard,u,Tiree (SC-AGB),56.503722,-6.964222,,1,,993,305,67,,0210-0225,1234567,,,2800023,,, +1883,G,en,Belfast Coastguard,u,Tiree (SC-AGB),56.503722,-6.964222,,1,,993,305,67,,0810-0825,1234567,,,2800023,,, +1883,G,en,Belfast Coastguard,u,Tiree (SC-AGB),56.503722,-6.964222,,1,,993,305,67,,1410-1425,1234567,,,2800023,,, +1883,G,en,Belfast Coastguard,u,Tiree (SC-AGB),56.503722,-6.964222,,1,,993,305,67,,2010-2035,1234567,,,2800023,,, +1883,ISL,,Siglufjrur Landhelgisgsla,u,Fjallabygg (ne),66.152778,-18.911111,,1,,2098,328,78,,????-????,1234567,,,19900821,,, +1883,ISL,,TFX Siglufjrur R,u,Fjallabygg (ne),66.152778,-18.911111,,1,,2098,328,78,,2010-2020,1234567,,,4200018,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,0144-0204,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,0544-0604,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,0744-0804,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,0944-1004,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,1344-1404,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,1733-1748,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,1844-1904,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,1944-2044,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,2344-0004,1234567,,,4000022,,, +1890,HOL,,Den Helder SAR,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,,,19900640,,, +1890,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,0940-0950,1234567,,,3800013,,, +1890,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,2140-2150,1234567,,,3800013,,, +1890,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900838,,, +1904,GRC,,SXE2 Piraeus Coastguard,u,Piraeus (att-pir),37.966667,23.633333,,1,,2064,133,78,,????-????,1234567,,,19900605,,, +1911,ALG,,Annaba R,u,Annaba (23),36.9,7.766667,,1,,1695,176,74,,????-????,1234567,,,19900015,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,0000-0015,1234567,,,19901124,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,0915-0930,1234567,,,19901124,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,1018-1033,1234567,,,19901124,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,1635-1650,1234567,,,19901124,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,1748-1803,1234567,,,19901124,,, +1911,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,0000-0015,1234567,,,19901109,,, +1911,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,0935-0950,1234567,,,19901109,,, +1911,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,1048-1103,1234567,,,19901109,,, +1911,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,1615-1643,1234567,,,19901109,,, +1918,ISR,,4XT Tel Aviv R,u,Tel Aviv (tav),32.066667,34.766667,,1,,3193,123,89,,????-????,1234567,,,19900855,,, +1919,OCE,,Maihi Atoll Sail Mail,p,Manihi Atoll (igm),-14.459444,-146.058333,,1,,15169,320,164,,????-????,1234567,,,19901274,,, +1925,G,,Humber Coastguard,u,Flamborough Head (EN-EYK),54.116681,-0.077861,,1,,487,300,62,,????-????,1234567,,,19900556,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0133-0148,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0333-0348,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0733-0748,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0833-0848,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1233-1248,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1333-1348,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1633-1648,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1933-1948,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,2033-2048,1234567,,,4000018,,, +1981,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901258,,, +1982,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901259,,, +1983,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901260,,, +1984,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901261,,, +1985,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901262,,, +1986,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901263,,, +1987,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901264,,, +1988,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901265,,, +1989,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901266,,, +2003.5,IND,,VWB Mumbai R,u,Mumbai=Bombay (MH),19.083239,72.834033,,1,,6744,96,124,,????-????,1234567,-2003.5,,19900687,,, +2003.5,IND,,VWT Tuticorin R,u,Tuticorin (TN),8.783333,78.133333,,1,,7994,99,137,,????-????,1234567,-2003.5,,19900698,,, +2008,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900206,,, +2008,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700138,,, +2009,KOR,,HLU Ulleung R,u,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900992,,, +2012,CKH,,ZKJ Penrhyn R,u,Penrhyn (pen),-8.958336,-157.925289,,1,,15010,338,164,,????-????,1234567,,,19900400,,, +2012,NZL,,Auckland Harbour R,u,Auckland/Harbour (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901161,,, +2012,NZL,,Manukau Harbour R,u,Manukau (AUK),-37,174.866667,,1,,18107,33,174,,????-????,1234567,,,19901193,,, +2012,NZL,,New Plymouth Harbour R,u,New Plymouth/Harbour (TKI),-39.059722,174.045833,,1,,18279,38,174,,????-????,1234567,,,19901201,,, +2012,NZL,,Onehunga Harbour R,u,Onehunga/Harbour,-36.916667,174.783333,,1,,18096,33,174,,????-????,1234567,,,19901205,,, +2012,NZL,,Gisborne Harbour R,u,Gisborne/Harbour (GIS),-38.65,178,,1,,18383,27,175,,????-????,1234567,,,19901170,,, +2012,NZL,,Lyttleton Harbour R,u,Lyttelton (CAN),-43.583333,172.7,,1,,18624,52,175,,????-????,1234567,,,19901187,,, +2012,NZL,,Wanganui Harbour R,u,Wanganui (MWT),-39.933333,175.05,,1,,18406,37,175,,????-????,1234567,,,19901237,,, +2012,NZL,,Wellington Harbour R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901241,,, +2012,NZL,,Westport Harbour R,u,Westport (WTC),-41.75,171.566667,,1,,18409,50,175,,????-????,1234567,,,19901248,,, +2012,NZL,,Taiaroa Head Signal Station,u,Taiaroa Head (OTA),-45.773722,170.728514,,1,,18675,65,176,,????-????,1234567,,,19901219,,, +2017.5,J,en,Bisan Martis,u,Aonoyama (shi-kag),34.303278,133.820944,,0.01,,9135,41,164,,:15-:30,1234567,-2017.5,,31400026,,, +2017.5,J,en,Bisan Martis,u,Aonoyama (shi-kag),34.303278,133.820944,,0.01,,9135,41,164,,:45-:00,1234567,-2017.5,,31400026,,, +2017.5,J,en,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,:00-:15,1234567,-2017.5,,31400023,,, +2017.5,J,en,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,:30-:45,1234567,-2017.5,,31400023,,, +2017.5,J,en,Kanmon Martis,u,Matsubara (kyu-fuk),33.897208,130.918894,,0.01,,9040,44,164,,:15-:30,1234567,-2017.5,,31400021,,, +2017.5,J,en,Kanmon Martis,u,Matsubara (kyu-fuk),33.897208,130.918894,,0.01,,9040,44,164,,:45-:00,1234567,-2017.5,,31400021,,, +2017.5,J,en,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,:00-:15,1234567,-2017.5,,31400022,,, +2017.5,J,en,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,:30-:45,1234567,-2017.5,,31400022,,, +2017.5,J,en,Osaka Martis,u,Matsuhosaki (kns-hyo),34.608458,135.003164,,0.01,,9158,40,164,,:00-:15,1234567,-2017.5,,31400028,,, +2017.5,J,en,Osaka Martis,u,Matsuhosaki (kns-hyo),34.608458,135.003164,,0.01,,9158,40,164,,:30-:45,1234567,-2017.5,,31400028,,, +2017.5,J,en,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,:15-:30,1234567,-2017.5,,31400024,,, +2017.5,J,en,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,:45-:00,1234567,-2017.5,,31400024,,, +2025,ATA,,Ship Tactical/Conference,u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900102,,, +2032,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900207,,, +2032,AUS,,VMR250 Ballina Coastguard,u,Ballina (NSW),-28.87,153.575,,1,,16279,59,168,,????-????,1234567,,,19900126,,, +2032,AUS,,VZX Penta Comstat Firefly R,u,Firefly (NSW),-32.083333,152.25,,1,,16477,64,168,,????-????,1234567,,,19900152,,, +2037.5,IND,,VWP Port Blair R,u,Port Blair (AN),11.666667,92.75,,1,,8738,86,143,,????-????,1234567,-2037.5,,19900691,,, +2042.5,IND,,VWZ Ratnagiri R,u,Ratnagiri (MH),16.983333,73.3,,1,,6955,98,127,,????-????,1234567,-2042.5,,19900695,,, +2042.5,IND,,VWM Chennai R,u,Chennai=Madras (TN),13.082778,80.287222,,1,,7765,95,135,,????-????,1234567,-2042.5,,19900680,,, +2044,KOR,,HLY Yeosu R,u,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19900997,,, +2045,NZL,,Houhora R,u,Houhora,-34.783333,173.1,,1,,17817,34,173,,????-????,1234567,,,19901180,,, +2045,NZL,,Kerikeri R,u,Kerikeri (NTL),-35.216667,173.966667,,1,,17893,33,173,,????-????,1234567,,,19901184,,, +2045,NZL,,Onerahi R,u,Onerahi (NTL),-35.766667,174.366667,,1,,17964,32,173,,????-????,1234567,,,19901206,,, +2045,NZL,,Waitangi Fisherman's R,u,Waitangi (NTL),-35.25,174.083333,,1,,17901,32,173,,????-????,1234567,,,19901234,,, +2045,NZL,,Great Barrier Island R,u,Great Barrier Island,-36.166667,175.416667,,1,,18042,30,174,,????-????,1234567,,,19901173,,, +2045,NZL,,Little Barrier Island R,u,Little Barrier Island,-36.2,175.083333,,1,,18034,31,174,,????-????,1234567,,,19901186,,, +2045,NZL,,New Plymouth Harbour R,u,New Plymouth/Harbour (TKI),-39.059722,174.045833,,1,,18279,38,174,,????-????,1234567,,,19901202,,, +2045,NZL,,Taranaki Harbour R,u,Taranaki (TKI),-39.059722,174.030556,,1,,18279,38,174,,????-????,1234567,,,19901223,,, +2045,NZL,,Tauranga Harbour R,u,Tauranga (BOP),-37.683333,176.166667,,1,,18224,30,174,,????-????,1234567,,,19901227,,, +2045,NZL,,Whakatane Coastguard R,u,Whakatane (BOP),-37.983333,177,,1,,18282,29,174,,????-????,1234567,,,19901251,,, +2045,NZL,,Bluff Fisherman's R,u,Bluff,-46.6,168.333333,,1,,18575,72,175,,????-????,1234567,,,19901166,,, +2045,NZL,,Gisborne Harbour R,u,Gisborne/Harbour (GIS),-38.65,178,,1,,18383,27,175,,????-????,1234567,,,19901171,,, +2045,NZL,,Greymouth Fisherman's R,u,Greymouth,-42.466667,171.2,,1,,18451,53,175,,????-????,1234567,,,19901176,,, +2045,NZL,,Half Moon Bay R,u,Half Moon Bay,-46.9,168.133333,,1,,18579,73,175,,????-????,1234567,,,19901177,,, +2045,NZL,,Hokitika Coastguard R,u,Hokitika,-42.716667,170.966667,,1,,18458,54,175,,????-????,1234567,,,19901179,,, +2045,NZL,,Lyttleton Harbour R,u,Lyttelton (CAN),-43.583333,172.7,,1,,18624,52,175,,????-????,1234567,,,19901188,,, +2045,NZL,,Marlborough Marine R,u,Picton/Marine (MBH),-41.2875,174.005556,,1,,18489,43,175,,????-????,1234567,,,19901195,,, +2045,NZL,,Napier Association R,u,Napier (HKB),-39.483333,176.916667,,1,,18433,31,175,,????-????,1234567,,,19901196,,, +2045,NZL,,Napier Harbour R,u,Napier/Harbour (HKB),-39.478889,176.918056,,1,,18433,31,175,,????-????,1234567,,,19901199,,, +2045,NZL,,Nelson Marine R,u,Nelson/Marine (NSN),-41.283333,173.283333,,1,,18454,45,175,,????-????,1234567,,,19901200,,, +2045,NZL,,Preservation Inlet R,u,Preservation Inlet (STL),-46.155556,166.612222,,1,,18436,73,175,,????-????,1234567,,,19901212,,, +2045,NZL,,Riverton Fisherman's R,u,Riverton (STL),-46.35,168.016667,,1,,18539,72,175,,????-????,1234567,,,19901214,,, +2045,NZL,,Sumner Life Boat Institute,u,Sumner (CAN),-43.570833,172.775,,1,,18627,52,175,,????-????,1234567,,,19901215,,, +2045,NZL,,Timaru Fisherman's R,u,Timaru (CAN),-44.4,171.25,,1,,18607,58,175,,????-????,1234567,,,19901231,,, +2045,NZL,,Wanganui Harbour R,u,Wanganui (MWT),-39.933333,175.05,,1,,18406,37,175,,????-????,1234567,,,19901238,,, +2045,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901242,,, +2045,NZL,,Westport Harbour R,u,Westport (WTC),-41.75,171.566667,,1,,18409,50,175,,????-????,1234567,,,19901249,,, +2045,NZL,,Port Chalmers R,u,Port Chalmers (OTA),-45.815833,170.627222,,1,,18671,65,176,,????-????,1234567,,,19901211,,, +2045,NZL,,Taiaroa Head Signal Station,u,Taiaroa Head (OTA),-45.773722,170.728514,,1,,18675,65,176,,????-????,1234567,,,19901220,,, +2045,NZL,,Kaingaroa Fisherman's R,u,Chatham Islands/Kaingaroa,-44,-176.583333,,1,,19086,15,177,,????-????,1234567,,,19901167,,, +2045,NZL,,Pitt Island Fisherman's R,u,Pitt Island,-44.244444,-176.233333,,1,,19119,14,177,,????-????,1234567,,,19901210,,, +2046,CLM,,HKB Barranquilla R,u,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900406,,, +2046,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900860,,, +2048,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,,,,,19900861,,, +2049,CLM,,HKC Buenaventura R,u,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900412,,, +2049,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,,,,,19900862,,, +2050,KOR,,HLC Incheon R,c,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900960,,, +2050,KOR,,HLK Gangneung R,c,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900968,,, +2050,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900943,,, +2053,CLM,,HKB Barranquilla R,u,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900407,,, +2053,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900863,,, +2054,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0340-0608,1234567,,,19900025,,, +2054,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0950-1208,1234567,,,19900025,,, +2054,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1540-1808,1234567,,,19900025,,, +2054,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,2150-0028,1234567,,,19900025,,, +2054,CAN,,VAJ Prince Rupert Coastguard,u,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,0105-0125,1234567,,,20109236,,, +2054,CAN,,VAJ Prince Rupert Coastguard,u,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,0705-0725,1234567,,,20109236,,, +2054,CAN,,VAJ Prince Rupert Coastguard,u,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,1305-1325,1234567,,,20109236,,, +2054,CAN,,VAJ Prince Rupert Coastguard,u,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,1905-1925,1234567,,,20109236,,, +2054,CAN,,VOH498 Prince Rupert Coastguard,u,Hunter Point (BC),53.258611,-132.714722,,1,,7698,335,134,,0105-0125,1234567,,,20109237,,, +2054,CAN,,VOH498 Prince Rupert Coastguard,u,Hunter Point (BC),53.258611,-132.714722,,1,,7698,335,134,,0705-0725,1234567,,,20109237,,, +2054,CAN,,VOH498 Prince Rupert Coastguard,u,Hunter Point (BC),53.258611,-132.714722,,1,,7698,335,134,,1305-1325,1234567,,,20109237,,, +2054,CAN,,VOH498 Prince Rupert Coastguard,u,Hunter Point (BC),53.258611,-132.714722,,1,,7698,335,134,,1905-1925,1234567,,,20109237,,, +2054,CAN,,VAC Comox R,u,Comox (BC),49.683333,-124.933333,,1,,7802,329,135,,????-????,1234567,,,19900282,,, +2054,CAN,,XLK835 Tofino Coastguard,u,Amphitrite Point (BC),48.924833,-125.541806,,1,,7898,329,136,,0050-0110,1234567,,,20109235,,, +2054,CAN,,XLK835 Tofino Coastguard,u,Amphitrite Point (BC),48.924833,-125.541806,,1,,7898,329,136,,0650-0710,1234567,,,20109235,,, +2054,CAN,,XLK835 Tofino Coastguard,u,Amphitrite Point (BC),48.924833,-125.541806,,1,,7898,329,136,,1250-1310,1234567,,,20109235,,, +2054,CAN,,XLK835 Tofino Coastguard,u,Amphitrite Point (BC),48.924833,-125.541806,,1,,7898,329,136,,1850-1910,1234567,,,20109235,,, +2055,TWN,,XSX Keelung R,u,Keelung=Chi-Lung (KLS),25.133333,121.733333,,1,,9386,55,145,,????-????,1234567,,,19901450,,, +2056,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1000-2300,1234567,,,37700022,,, +2056,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900864,,, +2060,HKG,,VRX Hong Kong R,u,Cape d'Aguillar (sou),22.209444,114.256111,,1,,9215,63,144,,????-????,1234567,,,19900636,,, +2064,F,,FUB Marine Nationale,4,Brest (29),48.4,-4.483333,,1,,876,246,66,,????-????,1234567,,,19900522,,, +2065,ARG,,Prefectura Naval Buenos Aires,u,Buenos Aires/Prefectura Naval (df),-34.583333,-58.666667,,1,,11518,230,152,,????-????,1234567,,,19900039,,, +2065,ARG,,Prefectura Naval Mar del Plata,u,Mar del Plata/Prefectura Naval (ba),-38,-57.55,,1,,11772,227,153,,????-????,1234567,,,19900047,,, +2065,ARG,,Prefectura Naval Comodoro Rivadavia,u,Comodoro Rivadavia/Prefectura Naval (ch),-45.866667,-67.5,,1,,12966,228,157,,????-????,1234567,,,19900042,,, +2065,ARG,,Prefectura Naval Ushuaia,u,Ushuaia/Prefectura Naval (tf),-54.8,-68.3,,1,,13729,222,159,,????-????,1234567,,,19900061,,, +2065,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900865,,, +2068,NZL,,Half Moon Bay R,u,Half Moon Bay,-46.9,168.133333,,1,,18579,73,175,,????-????,1234567,,,19901178,,, +2068,NZL,,Inter-Ship Communications,u,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901267,,, +2072,IND,,Mumbai Naval Metro,c,Mumbai/Naval Metro (MH),18.983333,72.833333,,1,,6752,96,125,,????-????,1234567,,,19900686,,, +2079,ARG,es,LPW Baha Blanca R,u,Baha Blanca (ba),-38.716667,-62.283333,,1,,12079,230,154,,????-????,1234567,,,19900035,,, +2079,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900866,,, +2080,TON,,A3A Nuku'alofa R,u,Nuku'alofa (ttp),-21.141667,-175.177778,,1,,16569,3,169,,????-????,1234567,,,19901410,,, +2082.5,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,-2082.5,,19900867,,, +2085,IND,,VWN Cochin R,u,Cochin (KL),9.966667,76.233333,,1,,7762,100,135,,????-????,1234567,,,19900682,,, +2086,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,19900239,,, +2086,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,19900233,,, +2086,USA,,Mississippi River System,u,-,37,-119.3,,1,,8798,319,143,,????-????,1234567,,,19901572,,, +2086,B,,PPC Itaja R,u,Itaja (SC),-26.85,-48.636111,,1,,10279,227,148,,????-????,1234567,,,19900235,,, +2086,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,19900237,,, +2086,ARG,,General Pacheco R,u,Buenos Aires/General Pacheco (df),-34.440556,-58.62,,1,,11503,230,152,,????-????,1234567,,,19900044,,, +2089,NZL,,Onerahi Sports R,u,Onerahi (NTL),-35.766667,174.366667,,1,,17964,32,173,,????-????,1234567,,,19901209,,, +2089,NZL,,Tutukaka Coastguard R,u,Tutukaka (NTL),-35.6,174.533333,,1,,17953,32,173,,????-????,1234567,,,19901233,,, +2089,NZL,,Whangaroa Coastguard R,u,Whangaroa (NTL),-35.045556,173.746111,,1,,17868,33,173,,????-????,1234567,,,19901252,,, +2089,NZL,,Taranaki Harbour R,u,Taranaki (TKI),-39.059722,174.030556,,1,,18279,38,174,,????-????,1234567,,,19901224,,, +2089,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901243,,, +2089.5,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,-2089.5,,19900240,,, +2089.5,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,-2089.5,,19900234,,, +2090.9,ARG,,LPZ Trelew R,u,Trelew (ch),-43.25,-65.3,,1,,12632,229,156,,????-????,1234567,-2090.9,,19900059,,, +2091,KOR,,HLC Incheon R,c,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900961,,, +2091,KOR,,HLK Gangneung R,c,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900969,,, +2091,KOR,,HLM Mokpo R,c,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900978,,, +2091,KOR,,HLN Gunsan R,c,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900973,,, +2091,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900944,,, +2091,KOR,,HLU Ulleung R,c,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900993,,, +2091,KOR,,HLY Yeosu R,c,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19900998,,, +2096,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,????-????,1234567,,,2500019,,, +2096.5,B,,PPC Itaja R,u,Itaja (SC),-26.85,-48.636111,,1,,10279,227,148,,????-????,1234567,-2096.5,,19900236,,, +2096.5,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,-2096.5,,19900238,,, +2096.5,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,-2096.5,,19900868,,, +2097,IND,,VWV Vishakhapatnam R,u,Vishakhapatnam (AP),17.7,83.3,,1,,7575,89,133,,????-????,1234567,,,19900700,,, +2097,IND,,VWY Paradip R,u,Paradip (OR),20.316667,86.616667,,1,,7579,85,133,,????-????,1234567,,,19900689,,, +2099,UKR,,UHZ Kherson R,u,Kherson (KE),46.633333,32.6,,1,,1979,97,77,,????-????,1234567,,,19901462,,, +2103.5,ARG,,LPG Rio Gallegos R,u,Ro Gallegos (sc),-51.633333,-69.216667,,1,,13522,225,159,,????-????,1234567,-2103.5,,19900056,,, +2104,NZL,,Waitangi Fisherman's R,u,Waitangi (NTL),-35.25,174.083333,,1,,17901,32,173,,????-????,1234567,,,19901235,,, +2104,NZL,,Kaingaroa Fisherman's R,u,Chatham Islands/Kaingaroa,-44,-176.583333,,1,,19086,15,177,,????-????,1234567,,,19901168,,, +2110,KOR,,Donghae MRCC,u,Donghae (gan),37.55,129.1,,1,,8607,43,142,,????-????,1234567,,,19900987,,, +2110,KOR,,Incheon MRCC,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900958,,, +2110,KOR,,Busan MRCC,u,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900945,,, +2110,KOR,,Jeju MRCC,u,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,,,19900952,,, +2110,KOR,,Mokpo MRCC,u,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900979,,, +2111,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,????-????,1234567,,,19900536,,, +2112,AUS,,Limited Coastal Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900209,,, +2112,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,37700124,,, +2112,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,19900150,,, +2112,AUS,,VMR488 Bundaberg Marine Rescue,u,Burnett Heads (QLD),-24.760833,152.401478,,0.4,,15840,56,170,,????-????,1234567,,,37700158,,, +2112,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700139,,, +2112,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700148,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0000-0010,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0035-0040,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0335-0340,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0635-0640,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0805-0815,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0935-0940,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1235-1240,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1305-1315,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1535-1540,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1805-1815,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1835-1840,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,2135-2140,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,2305-2315,1234567,,,3500008,,, +2120,VEN,,YVG La Guaira R,u,La Guaira (vgs),10.6,-66.933333,,1,,7944,263,136,,????-????,1234567,,,19901616,,, +2122.9,USA,,WHX Annapolis R,p,Annapolis (MD),38.983333,-76.5,,1,,6256,292,120,,????-????,1234567,-2122.9,,19901496,,, +2126.4,USA,,WHX Annapolis R,p,Annapolis (MD),38.983333,-76.5,,1,,6256,292,120,,????-????,1234567,-2126.4,,19901497,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0000-0010,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0035-0040,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0335-0340,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0635-0640,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0805-0815,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0935-0940,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1235-1240,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1305-1315,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1535-1540,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1805-1815,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1835-1840,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,2135-2140,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,2305-2315,1234567,,,3500011,,, +2129,NZL,,Kerikeri R,u,Kerikeri (NTL),-35.216667,173.966667,,1,,17893,33,173,,????-????,1234567,,,19901185,,, +2129,NZL,,Onerahi R,u,Onerahi (NTL),-35.766667,174.366667,,1,,17964,32,173,,????-????,1234567,,,19901207,,, +2129,NZL,,Auckland Coastguard R,u,Auckland (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901159,,, +2129,NZL,,Auckland Harbour R,u,Auckland/Harbour (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901162,,, +2129,NZL,,Manukau Coastguard R,u,Manukau (AUK),-37,174.866667,,1,,18107,33,174,,????-????,1234567,,,19901194,,, +2129,NZL,,Sumner Life Boat Institute,u,Sumner (CAN),-43.570833,172.775,,1,,18627,52,175,,????-????,1234567,,,19901216,,, +2129,NZL,,Wellington Coastguard R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901244,,, +2129,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901245,,, +2129,NZL,,Banks Peninsula Cruising Club,u,Akaroa (CAN),-43.809722,172.961667,,1,,18657,53,176,,????-????,1234567,,,19901268,,, +2129,NZL,,Taiaroa Head Signal Station,u,Taiaroa Head (OTA),-45.773722,170.728514,,1,,18675,65,176,,????-????,1234567,,,19901221,,, +2135,UAE,,Port Zayed R,u,Abu Dhabi/Port Zayed (abd),24.522222,54.377778,,1,,5053,108,108,,????-????,1234567,,,19901454,,, +2142,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900869,,, +2150,J,,Nagasaki R,u,Nagasaki (kyu-nag),32.75,129.866667,,1,,9099,45,144,,????-????,1234567,,,19900898,,, +2161,CAN,,VCT Tors Cove R,u,Tors Cove (NL),47.216667,-52.85,,1,,4179,287,99,,????-????,1234567,,,19900307,,, +2162,PTC,,Pitcairn R,u,Pitcairn,-25.068333,-130.105556,,1,,15296,293,164,,????-????,1234567,,,19901320,,, +2162,NZL,,Auckland Harbour R,u,Auckland/Harbour (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901163,,, +2162,NZL,,New Plymouth Harbour R,u,New Plymouth/Harbour (TKI),-39.059722,174.045833,,1,,18279,38,174,,????-????,1234567,,,19901203,,, +2162,NZL,,Tauranga Harbour R,u,Tauranga (BOP),-37.683333,176.166667,,1,,18224,30,174,,????-????,1234567,,,19901228,,, +2162,NZL,,Gisborne Harbour R,u,Gisborne/Harbour (GIS),-38.65,178,,1,,18383,27,175,,????-????,1234567,,,19901172,,, +2162,NZL,,Harbour Authority Working Frequency,u,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901269,,, +2162,NZL,,Lyttleton Harbour R,u,Lyttelton (CAN),-43.583333,172.7,,1,,18624,52,175,,????-????,1234567,,,19901189,,, +2162,NZL,,Timaru Harbour R,u,Timaru (CAN),-44.4,171.25,,1,,18607,58,175,,????-????,1234567,,,19901232,,, +2162,NZL,,Wanganui Harbour R,u,Wanganui (MWT),-39.933333,175.05,,1,,18406,37,175,,????-????,1234567,,,19901239,,, +2162,NZL,,Westport Harbour R,u,Westport (WTC),-41.75,171.566667,,1,,18409,50,175,,????-????,1234567,,,19901250,,, +2162,NZL,,Taiaroa Head Signal Station,u,Taiaroa Head (OTA),-45.773722,170.728514,,1,,18675,65,176,,????-????,1234567,,,19901222,,, +2164,AUS,,Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900211,,, +2167,SLM,,H4H Honiara R,u,Honiara (cth),-9.427778,159.958333,,1,,14700,36,163,,????-????,1234567,,,19901383,,, +2168,VUT,,YJM Port Vila R,u,Port Vila (sef),-17.758333,168.305556,,1,,15880,29,166,,????-????,1234567,,,19901621,,, +2170.5,BEL,,OST Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,-2170.5,,19900250,,, +2170.5,NOR,,Common Norwegian Channel,2,-,68.5,11.05,,1,,1839,6,75,,????-????,1234567,-2170.5,,19901157,,, +2170.5,ARS,,HZH Jeddah R,4,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-2170.5,,19900069,,, +2170.5,KEN,,5ZF Mombasa R,u,Mombasa (coa),-4.066667,39.672222,,1,,6989,142,127,,????-????,1234567,-2170.5,,19900935,,, +2174.5,POL,,SPS Witowo R,4,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,????-????,1234567,-2174.5,,19901290,,, +2174.5,LVA,,Riga Rescue R,4,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,-2174.5,,19901044,,, +2174.5,TUR,,Izmir Turk Radyo,4,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,????-????,1234567,-2174.5,,19901440,,, +2174.5,TUR,,Samsun Turk Radyo,4,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,????-????,1234567,-2174.5,,19901443,,, +2174.5,TUR,,Antalya Turk Radyo,4,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,????-????,1234567,-2174.5,,19901429,,, +2174.5,ARS,,HZH Jeddah R,4,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-2174.5,,19900070,,, +2174.5,BEN,,TYA Cotonou R,4,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,-2174.5,,19900262,,, +2174.5,KOR,,DSK51,4,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,-2174.5,,19900962,,, +2174.5,KOR,,Donghae R,4,Donghae (gan),37.55,129.1,,1,,8607,43,142,,????-????,1234567,-2174.5,,19900988,,, +2174.5,KOR,,HLE Jeju R,4,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,-2174.5,,19900953,,, +2174.5,KOR,,HLM Mokpo R,4,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,-2174.5,,19900980,,, +2174.5,KOR,,HLP Busan R,4,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,-2174.5,,19900946,,, +2174.5,J,,JNT Nagoya Coastguard R,4,Nagoya (chu-aic),35.166667,136.916667,,1,,9187,39,144,,????-????,1234567,-2174.5,,19900901,,, +2174.5,J,,Shiogama Coastguard R,4,Shiogama (toh-miy),38.316667,141.033333,,1,,9043,34,144,,????-????,1234567,-2174.5,,19900920,,, +2174.5,EQA,,Puerto Ayora R,4,Puerto Ayora (gal),-0.741667,-90.313889,,1,,10531,275,149,,????-????,1234567,-2174.5,,19900508,,, +2174.5,NZL,,ZLM Taupo Maritime R,2,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,????-????,1234567,-2174.5,,19901225,,, +2177,BEL,,OST Oostende R,2,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,,,19900251,,, +2177,DNK,,OXZ Lyngby R,2,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,????-????,1234567,,,19900489,,, +2177,DNK,,OXZ Lyngby R,2,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,????-????,1234567,,,2100007,,, +2177,NOR,,LGQ Rogaland R,2,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,????-????,1234567,,,19901147,,, +2177,NOR,,LGT Tjme R,2,Tjme (ve),59.116667,10.4,,1,,818,16,65,,????-????,1234567,,,19901153,,, +2177,NOR,,LGN Rogaland R,2,Bergen (ho),60.356944,4.95,,1,,921,355,66,,????-????,1234567,,,19901138,,, +2177,NOR,,LFO rlandet R,2,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,????-????,1234567,,,19901145,,, +2177,FRO,,OXJ Trshavn R,2,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,????-????,1234567,,,19900539,,, +2177,NOR,,LGP Bod R,2,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,????-????,1234567,,,19901141,,, +2177,ISL,,TFM Neskaupstaur R,2,Neskaupstaur (au),65.140278,-13.738889,,1,,1843,329,75,,????-????,1234567,,,19900833,,, +2177,ISL,,TFT Hornafjrur R,2,Hornafjrur (au),64.252778,-15.205556,,1,,1834,326,75,,????-????,1234567,,,19900826,,, +2177,NOR,,Common Norwegian Channel,2,-,68.5,11.05,,1,,1839,6,75,,????-????,1234567,,,19901158,,, +2177,ISL,,-,2,-,64.775,-18.9,,1,,2012,324,77,,????-????,1234567,,,19900845,,, +2177,ISL,,Vestmannaeyjar Landhelgisgsla,2,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,????-????,1234567,,,19900842,,, +2177,GRC,,Aspropyrgos Attikis Coastguard JRCC,2,Aspropyrgos (att-wst),38.066667,23.583333,,1,,2052,133,78,,????-????,1234567,,,19900602,,, +2177,ISL,,Siglufjrur Landhelgisgsla,2,Fjallabygg (ne),66.152778,-18.911111,,1,,2098,328,78,,????-????,1234567,,,19900822,,, +2177,ISL,,TFA Reykjavk R,2,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900839,,, +2177,ISL,,safjrur Landhelgisgsla,2,safjrur (vf),66.068056,-23.123611,,1,,2253,325,80,,????-????,1234567,,,19900829,,, +2177,NOR,,LGV Vard R,2,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,????-????,1234567,,,19901155,,, +2177,NOR,,LGS Bod R,2,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,????-????,1234567,,,19901150,,, +2177,J,,Otaru Coastguard R,2,Otaru (hok),43.183333,141,,1,,8557,32,142,,????-????,1234567,,,19900911,,, +2177,J,,Kushiro Coastguard R,2,Kushiro (hok),42.983333,144.366667,,1,,8696,30,143,,????-????,1234567,,,19900887,,, +2177,J,,Hiroshima Coastguard R,2,Hiroshima (chg-hir),34.4,132.45,,1,,9063,42,144,,????-????,1234567,,,19900877,,, +2177,J,,JGD Kobe Coastguard R,2,Kobe (kns-hyo),34.683333,135.166667,,1,,9158,40,144,,????-????,1234567,,,19900884,,, +2177,J,,JNT Nagoya Coastguard R,2,Nagoya (chu-aic),35.166667,136.916667,,1,,9187,39,144,,????-????,1234567,,,19900902,,, +2177,J,,Maizuru Coastguard R,2,Maizuru (kns-kyo),35.45,135.333333,,1,,9091,40,144,,????-????,1234567,,,19900889,,, +2177,J,,Moji Coastguard R,2,Moji (kyu-fuk),33.95,130.966667,,1,,9037,44,144,,????-????,1234567,,,19900896,,, +2177,J,,Niigata Coastguard R,2,Niigata (chu-nii),37.916667,139.05,,1,,9005,36,144,,????-????,1234567,,,19900908,,, +2177,J,,Sasebo R,2,Sasebo (kyu-nag),33.166667,129.716667,,1,,9052,45,144,,????-????,1234567,,,19900917,,, +2177,J,,Shiogama Coastguard R,2,Shiogama (toh-miy),38.316667,141.033333,,1,,9043,34,144,,????-????,1234567,,,19900921,,, +2177,J,,Yokohama Coastguard R,2,Yokohama (kan-kgw),35.433333,139.633333,,1,,9274,37,145,,????-????,1234567,,,19900923,,, +2177,J,,Ishigaki Coastguard R,2,Ishigaki (kyu-oki),24.333333,124.15,,1,,9595,54,146,,????-????,1234567,,,19900879,,, +2177,J,,JNB Naha Coastguard R,2,Naha (kyu-oki),26.2,127.666667,,1,,9609,50,146,,????-????,1234567,,,19900904,,, +2177,CHL,,CBV Valparaso Playa Ancha R,2,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,19900373,,, +2182,IRL,en,Shanwick SAR,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,????-????,1234567,,,4100034,,, +2182,HRV,,Rijeka MRCC,u,Rijeka (ri),45.322222,14.447222,,1,,957,139,67,,????-????,1234567,,,19900654,,, +2182,RUS,,UIW Kaliningrad R,u,Kaliningrad (KA),54.716667,20.5,,1,,976,67,67,,????-????,1234567,,,19901338,,, +2182,F,,CROSS Jobourg,u,Jobourg (50),49.684083,-1.907144,,0.25,,642,248,69,,????-????,1234567,,,2500024,,, +2182,LVA,,Riga Rescue R,u,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,,,5200002,,, +2182,FIN,,Rescue Centre Helsinki MRSC,u,Helsinki,60.183333,24.933333,,1,,1448,44,71,,????-????,1234567,,,19900531,,, +2182,FIN,,Rescue Centre Vaasa MRSC,u,Vaasa,63.1,21.616667,,1,,1513,30,72,,????-????,1234567,,,19900532,,, +2182,ALB,,ZAV3 Aulona-Vlor R,u,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900002,,, +2182,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,,,6600010,,, +2182,MRC,,MRSC Al Hocema,u,Al Hocema,35.233333,-3.933333,,1,,2048,208,77,,????-????,1234567,,,19901112,,, +2182,MRC,,MRSC Tanger,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,????-????,1234567,,,19901122,,, +2182,MRC,,MRCC Rabat,u,Rabat (rsz),34.016667,-6.833333,,1,,2273,213,80,,????-????,1234567,,,19901117,,, +2182,RUS,,UDK2 Murmansk Metro,u,Murmansk (MU),68.966667,33.083333,,1,,2335,27,80,,????-????,1234567,,,19901354,,, +2182,MRC,,MRSC Agadir,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,????-????,1234567,,,19901110,,, +2182,EGY,,SUH Al-Iskandariya R,u,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,????-????,1234567,,,19900501,,, +2182,AOE,,MRSC Dakhla,u,Dakhla (odl),23.683333,-15.955556,,1,,3688,220,94,,????-????,1234567,,,32000001,,, +2182,IRN,,EQL Bandar Anzali R,u,Bandar Anzali (gln),37.477778,49.466667,,1,,3697,99,94,,????-????,1234567,,,19900807,,, +2182,IRN,,Amirabad R,u,Amirabad/Port (mzd),36.852778,53.358333,,1,,4005,96,97,,????-????,1234567,,,19900804,,, +2182,IRN,,EQN Bandar-e Imam Khomeini R,u,Bandar-e Imam Khomeini (kuz),30.440278,49.088889,,1,,4214,108,99,,????-????,1234567,,,19900811,,, +2182,CPV,,D4A So Vicente R,u,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900433,,, +2182,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,11700003,,, +2182,VCT,,St Vincent & the Grenadines Coastguard,u,Trinidad (san),13.157278,-61.245639,,1,,7337,260,130,,????-????,1234567,,,19901613,,, +2182,GUF,,CROSS AG MRSC Cayenne,u,Cayenne (973),4.941667,-52.3,,1,,7484,247,132,,????-????,1234567,,,19900627,,, +2182,MLD,,Male GMDSS Operation Centre,u,Male/GMDSS (mle),4.179444,73.506389,,1,,8094,106,138,,????-????,1234567,,,19901098,,, +2182,NMB,,V5L Walvis Bay R,u,Walvis Bay (ego),-23.054278,14.625278,,1,,8396,172,141,,????-????,1234567,,,19901137,,, +2182,CHN,,XSN Ningbo R,u,Ningbo,29.883333,121.55,,1,,8939,53,143,,????-????,1234567,,,19900388,,, +2182,MOZ,,C9L2 Maputo R MRCC,u,Maputo (mpc),-25.955556,32.544444,,1,,9046,156,144,,????-????,1234567,,,19901105,,, +2182,MAU,,3BM Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,????-????,1234567,,,19901050,,, +2182,URG,,CWC34 Punta del Este Prefectura R,u,Punta del Este (ma),-34.966667,-54.95,,1,,11362,227,151,,????-????,1234567,,,19901491,,, +2182,URG,,La Paloma Prefectura R,u,La Paloma/Prefectura (ro),-34.666667,-54.166667,,1,,11295,227,151,,????-????,1234567,,,19901485,,, +2182,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,????-????,1234567,,,19901482,,, +2182,URG,,Montevideo Armanda,u,Montevideo/Armanda (mo),-34.85,-56.166667,,1,,11413,228,152,,????-????,1234567,,,19901486,,, +2182,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,????-????,1234567,,,19901489,,, +2182,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800010,,, +2182,PNG,,P2M Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,????-????,1234567,,,19901286,,, +2182,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.4,,14915,58,167,,????-????,1234567,,,37700128,,, +2182,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,37700125,,, +2182,AUS,,VMR488 Bundaberg Marine Rescue,u,Burnett Heads (QLD),-24.760833,152.401478,,0.4,,15840,56,170,,????-????,1234567,,,37700159,,, +2182,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700132,,, +2182,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700151,,, +2182,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.4,,16726,74,173,,????-????,1234567,,,37700141,,, +2182,AUS,,VMR251 Kingscliff Coastguard,u,Kingscliff/Faulks Park (NSW),-28.257656,153.583189,,0.1,,16225,58,178,,????-????,1234567,,,37700121,,, +2182,AUS,,VMR225 Coastal Patrol Sydney,u,Sydney/Terrey Hills (NSW),-33.69265,151.222661,,0.1,,16546,68,179,,????-????,1234567,,,37700146,,, +2182,IW,,Calling & Distress,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900870,,, +2183.4,KOR,,Pohang PTMS,u,Pohang (gsb),36.033333,129.366667,,1,,8763,44,143,,????-????,1234567,-2183.4,,19900986,,, +2187.5,DNK,,OXZ Lyngby R,2,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,????-????,1234567,-2187.5,,2100008,,, +2187.5,DNK,,OXZ Lyngby R,2,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,????-????,1234567,-2187.5,,2100009,,, +2187.5,LVA,,Riga Rescue R,2,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,-2187.5,,5200003,,, +2187.5,ROU,,YQI Constanţa R,r,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-2187.5,,6600009,,, +2187.5,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,-2187.5,,35400111,,, +2187.5,CHL,,CBV Valparaso Playa Ancha R,2,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0000-2400,1234567,-2187.5,,36800011,,, +2187.5,IW,,GMDSS,,GMDSS,,,-,,,?,?,400,,????-????,1234567,-2187.5,,19900858,,, +2189.5,ISL,,-,2,-,64.775,-18.9,,1,,2012,324,77,,????-????,1234567,-2189.5,,19900846,,, +2189.5,J,,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,????-????,1234567,-2189.5,,19900925,,, +2189.5,J,,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,????-????,1234567,-2189.5,,19900886,,, +2189.5,J,,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,????-????,1234567,-2189.5,,19900926,,, +2191,TWN,,XSX Keelung R,u,Keelung=Chi-Lung (KLS),25.133333,121.733333,,1,,9386,55,145,,????-????,1234567,,,19901451,,, +2192,COD,,9PA Banana R,u,Banana,-6.002778,12.4,,1,,6487,173,122,,????-????,1234567,,,19900419,,, +2197,LBY,,5AT Tarabulus=Tripoli R,u,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901021,,, +2197.5,NCL,,FJP Nouma R,u,Nouma (sud),-22.315389,166.473231,,1,,16289,35,168,,????-????,1234567,-2197.5,,19901133,,, +2198,CUB,,Nueva Gerona R,u,Nueva Gerona (ij),21.883333,-82.8,,1,,8053,283,138,,????-????,1234567,,,19900446,,, +2200,KWT,,9KK Kuwait R,u,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901011,,, +2201,NRU,,C2N Nauru R,u,Nauru,-0.533333,166.911111,,1,,13998,24,160,,????-????,1234567,,,19901132,,, +2201,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0800-2100,1234567,,,37700016,,, +2201,AUS,,Iluka/Yamba Coastguard,u,Iluka (NSW),-29.416667,153.359722,,1,,16315,60,168,,????-????,1234567,,,19900158,,, +2201,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,19900148,,, +2201,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700140,,, +2201.1,G,,GYA Royal Navy,r,London (EN-GTL),51.5,-0.116667,,1,,454,264,62,,????-????,1234567,-2201.1,,19900558,,, +2202,AUS,,Iluka/Yamba Coastguard,u,Iluka (NSW),-29.416667,153.359722,,1,,16315,60,168,,????-????,1234567,,,19900159,,, +2203,G,,GYA Royal Navy,r,London (EN-GTL),51.5,-0.116667,,1,,454,264,62,,????-????,1234567,,,19900559,,, +2203,G,,MGJ Royal Navy Faslane,r,Faslane/Royal Navy Base (SC-AGB),56.056067,-4.814572,,1,,852,305,66,,????-????,1234567,,,19900553,,, +2203.3,CHN,,Chiwan R,u,Chiwan,22.466667,113.883333,,1,,9169,63,144,,????-????,1234567,-2203.3,,19900376,,, +2204,HOL,,PBB Koninklijke Marine,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,,,19900645,,, +2207,CKH,,ZKR Rarotonga R,u,Rarotonga (rtg),-21.208333,-159.775,,1,,16379,336,168,,????-????,1234567,,,19900401,,, +2207,NIU,,ZKN Niue R,u,Niue,-19.066667,-169.922222,,1,,16327,354,168,,????-????,1234567,,,19901136,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0003-0013,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0133-0143,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0533-0543,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0803-0813,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1333-1343,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1733-1743,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2003-2013,1234567,,,32500026,,, +2210,S,,Fiskeri vervakning,u,-,62,17.6,,1,,1287,27,70,,????-????,1234567,,,19901377,,, +2210,TUN,,3VB Bizerte R,u,Bizerte (biz),37.266675,9.883333,,1,,1673,169,74,,????-????,1234567,,,19901416,,, +2212,TRD,,Chaguaramas Sail Mail,p,Chaguaramas,10.681944,-61.645833,,1,,7580,259,133,,????-????,1234567,,,19901412,,, +2217,KIR,,T3C Tarawa R,u,Tarawa Atoll/Takaronga,1.361111,173.155561,,1,,13941,16,160,,????-????,1234567,,,19900940,,, +2221,I,,Marina Militare,u,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,,,19900671,,, +2225,GRL,,OYG Mestersvig R,u,Mestersvig (neg),72.233333,-23.933333,,1,,2673,338,84,,????-????,1234567,,,19900615,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0000-0010,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0035-0040,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0335-0340,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0635-0640,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0805-0815,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0935-0940,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1235-1240,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1305-1315,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1535-1540,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1805-1815,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1835-1840,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,2135-2140,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,2305-2315,1234567,,,3500009,,, +2226,G,en,Humber Coastguard,u,Flamborough Head (EN-EYK),54.116681,-0.077861,,1,,487,300,62,,0650-0705,1234567,,,2800017,,, +2226,G,en,Humber Coastguard,u,Flamborough Head (EN-EYK),54.116681,-0.077861,,1,,487,300,62,,1850-1905,1234567,,,2800017,,, +2226,G,en,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,0033-0036,1234567,,,2800020,,, +2226,G,en,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,0630-0645,1234567,,,2800020,,, +2226,G,en,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,1830-1845,1234567,,,2800020,,, +2226,G,en,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,2130-2145,1234567,,,2800020,,, +2226,G,en,Falmouth Coastguard,u,Lizard Point (EN-CNW),49.960444,-5.202028,,1,,845,258,65,,0610-0625,1234567,,,2800018,,, +2226,G,en,Falmouth Coastguard,u,Lizard Point (EN-CNW),49.960444,-5.202028,,1,,845,258,65,,1810-1825,1234567,,,2800018,,, +2226,G,,Shetland Coastguard,u,Collafirth (SC-SHE),60.391944,-1.27,,1,,1034,336,67,,????-????,1234567,,,19900552,,, +2226,G,,Stornoway Coastguard,u,Butt of Lewis (SC-WIL),58.515139,-6.261478,,1,,1069,317,68,,????-????,1234567,,,19900550,,, +2230,DNK,,OVF Kongelige Danske Marine,u,Stevns (sjl),55.322222,12.445833,,1,,534,46,62,,????-????,1234567,,,19900490,,, +2230,DNK,,OVK Kongelige Danske Marine,u,Aarhus (arh),56.15,10.216667,,1,,513,27,62,,????-????,1234567,,,19900479,,, +2230,DNK,,OVG Kongelige Danske Marine,u,Frederikshavn (njy),57.445833,10.55,,1,,650,22,63,,????-????,1234567,,,19900482,,, +2250,J,,JFC,u,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,19900892,,, +2256,BEL,,OST Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,,,19900252,,, +2264,UKR,,Sevastopol' R 3,u,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901474,,, +2264,RUS,,UGN Nikolayevsk-na-Amure R,u,Nikolayevsk-na-Amure (KH),53.133333,140.733333,,1,,7566,28,133,,????-????,1234567,,,19901359,,, +2264,RUS,,UDC Korsakov R,u,Korsakov (SL),46.633333,142.783333,,1,,8276,29,140,,????-????,1234567,,,19901344,,, +2265,GRL,,OYG Mestersvig R,u,Mestersvig (neg),72.233333,-23.933333,,1,,2673,338,84,,????-????,1234567,,,19900616,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0000-0010,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0035-0040,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0335-0340,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0635-0640,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0805-0815,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0935-0940,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1235-1240,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1305-1315,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1535-1540,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1805-1815,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1835-1840,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,2135-2140,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,2305-2315,1234567,,,3500012,,, +2266,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901308,,, +2270,MEX,,XFS Tampico R,u,Tampico (tam),22.277778,-97.8,,1,,8986,295,144,,????-????,1234567,,,19901092,,, +2282,ALB,,ZAC Shengjin R,u,Shngjin (lzh),41.816667,19.6,,1,,1516,134,72,,????-????,1234567,,,19900006,,, +2282,ALB,,ZAD Durres R,u,Durres (dur),41.316667,19.433333,,1,,1553,135,73,,????-????,1234567,,,19900003,,, +2282,ALB,,ZAV Vlor R,u,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900010,,, +2282,ALB,,ZAS Sarand R,u,Sarand (vre),39.883333,20,,1,,1712,137,74,,????-????,1234567,,,19900004,,, +2282,AUS,,Ship Stations in Pleasure Vessels,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900213,,, +2284,KOR,,HLC Incheon R,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900963,,, +2284,KOR,,HLC Incheon R,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900964,,, +2284,KOR,,HLC Incheon R,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900965,,, +2284,AUS,,Rhiannon Game Fishing Club,u,Botany Bay (NSW),-33.966667,151.166667,,1,,16565,68,169,,????-????,1234567,,,19900129,,, +2291,I,,Marina Militare,u,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,,,19900672,,, +2295,IND,,Vishakhapatnam Naval Metro,c,Vishakhapatnam/Naval Metro (AP),17.691667,83.291667,,1,,7575,89,133,,????-????,1234567,,,19900701,,, +2296,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901034,,, +2297,DNK,,RCC Karup,u,Karup (mjy),56.308333,9.169444,,1,,500,20,62,,????-????,1234567,,,19900485,,, +2299,KOR,,HLE Jeju R,u,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,,,19900954,,, +2301,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901035,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0000-0010,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0035-0040,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0335-0340,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0635-0640,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0805-0815,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0935-0940,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1235-1240,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1305-1315,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1535-1540,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1805-1815,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1835-1840,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,2135-2140,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,2305-2315,1234567,,,3500004,,, +2309,ALS,,WSX78 Kodiak R,u,Kodiak (AK),57.783333,-152.4,,1,,7645,348,133,,????-????,1234567,,,19900026,,, +2310,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,????-????,1234567,,,19901460,,, +2310,GEO,,Georgia MRCC,u,-,42.6,43.5,,1,,2949,96,86,,????-????,1234567,,,19900588,,, +2310,GEO,,Poti R,u,Poti,42.15,41.683333,,1,,2854,99,86,,????-????,1234567,,,19900585,,, +2311,IRL,,Arklow Shipping Company,u,Arklow (WW),52.791667,-6.143056,,1,,853,280,66,,????-????,1234567,,,19900801,,, +2311,ISL,,TFM Neskaupstaur R,u,Neskaupstaur (au),65.140278,-13.738889,,1,,1843,329,75,,????-????,1234567,,,19900834,,, +2311,ISL,,TFT Hornafjrur R,u,Hornafjrur (au),64.252778,-15.205556,,1,,1834,326,75,,????-????,1234567,,,19900827,,, +2311,ISL,,Vestmannaeyjar Landhelgisgsla,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,????-????,1234567,,,19900843,,, +2311,ISL,,Siglufjrur Landhelgisgsla,u,Fjallabygg (ne),66.152778,-18.911111,,1,,2098,328,78,,????-????,1234567,,,19900823,,, +2311,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900840,,, +2311,ISL,,safjrur Landhelgisgsla,u,safjrur (vf),66.068056,-23.123611,,1,,2253,325,80,,????-????,1234567,,,19900830,,, +2312,ALS,,WSX77 Cordova R,u,Cordova (AK),60.55,-145.75,,1,,7245,345,129,,????-????,1234567,,,19900021,,, +2312,ALS,,WDU29 Sitka R,u,Sitka (AK),57.051389,-135.358333,,1,,7387,338,131,,????-????,1234567,,,19900029,,, +2312,ALS,,WSX74 Cold Bay R,u,Cold Bay (AK),55.183333,-162.716667,,1,,8043,354,137,,????-????,1234567,,,19900019,,, +2320,LBY,,5AT Tarabulus=Tripoli R,u,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901022,,, +2320,MEX,,XFS Tampico R,u,Tampico (tam),22.277778,-97.8,,1,,8986,295,144,,????-????,1234567,,,19901093,,, +2325,RUS,,Arkhangelsk MRSC,u,Archangelsk (AR),64.566667,40.533333,,1,,2380,41,81,,????-????,1234567,,,19901331,,, +2325,AUS,en,VL8T ABC Darwin,,Tennant Creek (NT),-19.669722,134.2625,,50,,14272,71,144,,0830-2130,1234567,9999,,37700015,,, +2332,FIN,,Finnish Ice Breakers,u,-,65.375,25.75,,1,,1833,29,75,,????-????,1234567,,,19900533,,, +2334.4,KOR,,HLM Mokpo R,u,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,-2334.4,,19900981,,, +2335,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901309,,, +2338,FIN,,Finnish Ice Breakers,u,-,65.375,25.75,,1,,1833,29,75,,????-????,1234567,,,19900534,,, +2340,CHL,es,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1230-1300,1234567,,,36800025,,, +2341,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901036,,, +2341,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901310,,, +2341,CPV,,D4D Praia R,u,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900426,,, +2347,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901311,,, +2350,KRE,ko,KCBS Chosun Jungang Pangsong,,Sariwon (hwb),38.4867,125.451094,,5,ND,8346,45,133,,2000-1800,1234567,,,50015957,,, +2350,J,,JFC,c,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,19900893,,, +2352.5,PAK,,ASK Karachi R,u,Karachi (shd),24.851944,67.0425,,1,,5868,97,116,,????-????,1234567,-2352.5,,19901284,,, +2353,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901312,,, +2357.5,DNK,,OUA32 Kongelige Danske Marine,c,Aarhus (arh),56.15,10.216667,,1,,513,27,62,,????-????,1234567,-2357.5,,19900480,,, +2358.4,KOR,,HLM Mokpo R,u,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,-2358.4,,19900982,,, +2368,G,,Royal Navy Cape Wrath,u,Cape Wrath (SC-HIL),58.6255,-4.998889,,1,,1020,320,67,,????-????,1234567,,,19900551,,, +2368.5,AUS,el,R Symban,,Leppington (NSW),-33.961667,150.803333,,1,,16542,69,169,,0100-1900,1234567,47,,37700010,,, +2368.5,AUS,xx,RLMS,,Leppington (NSW),-33.961667,150.803333,,1,,16542,69,169,,1900-0100,1234567,47,,37700010,,, +2376,BEL,,OST Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,,,19900253,,, +2379.9,B,pt,ZYG852 Rdio Educadora,,Limeira/Praa Dr. Milton Silveira (SP),-22.560444,-47.419556,,0.25,,9804,228,152,,2000-1030,1234567,-2379.9,,40000008,,, +2388,G,,Guardian Oilfield Services,u,-,55.55,-2.65,,1,,706,306,64,,????-????,1234567,,,19900575,,, +2390,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900871,,, +2390.1,MEX,es,XEJN-OC R Huayacocotla,,Huayacocotla (vcz),20.566667,-98.45,,0.8,,9178,294,145,,1200-1500,1234567,-2390.1,,40000010,,, +2390.1,MEX,es,XEJN-OC R Huayacocotla,,Huayacocotla (vcz),20.566667,-98.45,,0.8,,9178,294,145,,2100-0200,1234567,-2390.1,,40000010,,, +2394,ALG,,Annaba R,u,Annaba (23),36.9,7.766667,,1,,1695,176,74,,????-????,1234567,,,19900016,,, +2394.5,J,,Nagasaki R,u,Nagasaki (kyu-nag),32.75,129.866667,,1,,9099,45,144,,????-????,1234567,-2394.5,,19900899,,, +2395,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900872,,, +2397,ALS,,WSX77 Cordova R,u,Cordova (AK),60.55,-145.75,,1,,7245,345,129,,????-????,1234567,,,19900022,,, +2397,ALS,,WGG56 Ketchikan R,u,Ketchikan (AK),55.35,-131.65,,1,,7459,336,132,,????-????,1234567,,,19900024,,, +2400,ALB,,ZAC Shengjin R,u,Shngjin (lzh),41.816667,19.6,,1,,1516,134,72,,????-????,1234567,,,19900007,,, +2400,ALB,,ZAV Vlor R,u,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900011,,, +2400,ALB,,ZAS Sarand R,u,Sarand (vre),39.883333,20,,1,,1712,137,74,,????-????,1234567,,,19900005,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0000-0010,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0035-0040,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0335-0340,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0635-0640,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0805-0815,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0935-0940,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1235-1240,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1305-1315,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1535-1540,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1805-1815,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1835-1840,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,2135-2140,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,2305-2315,1234567,,,3500010,,, +2400,ALS,,WGG55 Nome R,u,Nome (AK),64.5,-165.4,,1,,7029,356,127,,????-????,1234567,,,19900028,,, +2400,ALS,,WAB976 Juneau R,u,Juneau (AK),58.3,-134.416667,,1,,7237,339,129,,????-????,1234567,,,19900023,,, +2400,RUS,,UBY Magadan R,u,Magadan (MA),59.566667,150.8,,1,,7193,19,129,,????-????,1234567,,,19901347,,, +2401,LTU,,Lietuvos Kariuomenė,u,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901037,,, +2401,ATA,,LSB Centro Meteorologico Base Marambio,f,Base Marambio [ARG] (aar),-64.24,-56.625278,,1,,14026,209,160,,????-????,1234567,,,19900078,,, +2410,B,pt,ZYF202 Rdio Transamaznica,,Senador Guiomard (AC),-10.5,-67.616667,,1,,9865,251,147,,,,,,36902878,,, +2417.5,J,,Otaru Coastguard R,4,Otaru (hok),43.183333,141,,1,,8557,32,142,,????-????,1234567,-2417.5,,19900912,,, +2417.5,J,,Kushiro Coastguard R,4,Kushiro (hok),42.983333,144.366667,,1,,8696,30,143,,????-????,1234567,-2417.5,,19900888,,, +2417.5,J,,Hiroshima Coastguard R,4,Hiroshima (chg-hir),34.4,132.45,,1,,9063,42,144,,????-????,1234567,-2417.5,,19900878,,, +2417.5,J,,JGD Kobe Coastguard R,4,Kobe (kns-hyo),34.683333,135.166667,,1,,9158,40,144,,????-????,1234567,-2417.5,,19900885,,, +2417.5,J,,JNT Nagoya Coastguard R,4,Nagoya (chu-aic),35.166667,136.916667,,1,,9187,39,144,,????-????,1234567,-2417.5,,19900903,,, +2417.5,J,,Maizuru Coastguard R,4,Maizuru (kns-kyo),35.45,135.333333,,1,,9091,40,144,,????-????,1234567,-2417.5,,19900890,,, +2417.5,J,,Moji Coastguard R,4,Moji (kyu-fuk),33.95,130.966667,,1,,9037,44,144,,????-????,1234567,-2417.5,,19900897,,, +2417.5,J,,Niigata Coastguard R,4,Niigata (chu-nii),37.916667,139.05,,1,,9005,36,144,,????-????,1234567,-2417.5,,19900909,,, +2417.5,J,,Sasebo Coastguard R,4,Sasebo (kyu-nag),33.166667,129.716667,,1,,9052,45,144,,????-????,1234567,-2417.5,,19900918,,, +2417.5,J,,Shiogama Coastguard R,4,Shiogama (toh-miy),38.316667,141.033333,,1,,9043,34,144,,????-????,1234567,-2417.5,,19900922,,, +2417.5,J,,JNJ Kagoshima Coastguard,4,Kagoshima (kyu-kag),31.302222,130.536944,,1,,9269,45,145,,????-????,1234567,-2417.5,,19900881,,, +2417.5,J,,Ishigaki Coastguard R,4,Ishigaki (kyu-oki),24.333333,124.15,,1,,9595,54,146,,????-????,1234567,-2417.5,,19900880,,, +2417.5,J,,JNB Naha Coastguard R,4,Naha (kyu-oki),26.2,127.666667,,1,,9609,50,146,,????-????,1234567,-2417.5,,19900905,,, +2418,LBY,,5AT Tarabulus=Tripoli R,u,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901023,,, +2430,MKD,,Makedonsko R 1/R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1,,1637,128,73,,????-????,1234567,,,5600001,,, +2431,MEX,,XFY Guaymas R,u,Guaymas,27.933333,-110.9,,1,,9236,308,144,,????-????,1234567,,,19901080,,, +2431,MEX,,XFQ Salina Cruz R,u,Salina Cruz (oax),16.166667,-95.2,,1,,9363,289,145,,????-????,1234567,,,19901089,,, +2431,MEX,,XFK La Paz R,u,La Paz (bcs),24.166667,-110.3,,1,,9553,305,146,,????-????,1234567,,,19901083,,, +2433,KOR,,HLK Gangneung R,u,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900970,,, +2434.4,KOR,,HLP Busan R,u,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,-2434.4,,19900947,,, +2434.4,KOR,,HLY Yeosu R,u,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,-2434.4,,19900999,,, +2436,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900215,,, +2436,AUS,,VMR250 Ballina Coastguard,u,Ballina (NSW),-28.87,153.575,,1,,16279,59,168,,????-????,1234567,,,37700099,,, +2436.52,GIB,,GYU Royal Navy,r,Gibraltar (gib),36.148611,-5.3625,,1,,2002,212,77,,????-????,1234567,-2436.52,,19900591,,, +2436.92,GIB,,GYU Royal Navy,r,Gibraltar (gib),36.148611,-5.3625,,1,,2002,212,77,,????-????,1234567,-2436.92,,19900592,,, +2439,CPV,,D4A So Vicente R,u,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900434,,, +2439,CPV,,D4D Praia R,u,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900427,,, +2440,NZL,,Sumner Life Boat Institute,u,Sumner (CAN),-43.570833,172.775,,1,,18627,52,175,,????-????,1234567,,,19901217,,, +2442,USA,,WDR Miami R,u,Miami (FL),25.766667,-80.2,,1,,7553,284,133,,????-????,1234567,,,19901535,,, +2444,NZL,,Houhora Marine R,u,Houhora/Marine,-34.783333,173.1,,1,,17817,34,173,,????-????,1234567,,,19901182,,, +2444,NZL,,Great Barrier Island R,u,Great Barrier Island,-36.166667,175.416667,,1,,18042,30,174,,????-????,1234567,,,19901174,,, +2444,NZL,,Leigh Association R,u,Leigh,-36.283333,174.816667,,1,,18033,32,174,,????-????,1234567,,,19901270,,, +2444,NZL,,Napier Association R,u,Napier (HKB),-39.483333,176.916667,,1,,18433,31,175,,????-????,1234567,,,19901197,,, +2444,NZL,,Preservation Inlet R,u,Preservation Inlet (STL),-46.155556,166.612222,,1,,18436,73,175,,????-????,1234567,,,19901213,,, +2444,NZL,,Te Anau Fiordland Fisherman's R,u,Te Anau (STL),-45.416667,167.716667,,1,,18462,69,175,,????-????,1234567,,,19901229,,, +2444,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901246,,, +2450,USA,,WOU Boston R,u,Boston (MA),42.366667,-71.066667,,1,,5664,292,114,,????-????,1234567,,,19901501,,, +2450,USA,,KQP Galveston R,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,????-????,1234567,,,19901519,,, +2450,USA,,Kneeland/Eureka R,u,Kneeland/Eureka (CA),40.8,-124.166667,,1,,8638,324,143,,????-????,1234567,,,19901531,,, +2456,NZL,,Inter-Ship Communications,u,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901271,,, +2457.5,PAK,,AQP2 Pakistan Navy,c,Karachi/Pakistan Navy (shd),24.8,66.972222,,1,,5868,97,116,,????-????,1234567,-2457.5,,19901285,,, +2461.5,IRL,,Irish Defence Forces,4,-,53.45,-8.5,,1,,1012,284,67,,????-????,1234567,-2461.5,,19900803,,, +2463,I,,Marina Militare,r,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,,,19900673,,, +2464,UKR,,UWD9 Yalta Port Control,u,Yalta (KR),44.495556,34.172222,,1,,2204,102,79,,????-????,1234567,,,19901480,,, +2464,GEO,,UFF Sukhumi R,u,Sukhumi=Aqwa (abk),42.983333,40.972222,,1,,2754,98,85,,????-????,1234567,,,19900587,,, +2466,USA,,WFA Tampa R,u,Tampa (FL),27.95,-82.466667,,1,,7520,287,132,,????-????,1234567,,,19901569,,, +2466,USA,,KOU San Pedro R,u,San Pedro (TX),27.783333,-97.683333,,1,,8493,298,142,,????-????,1234567,,,19901559,,, +2467,I,,Marina Militare,r,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,,,19900674,,, +2470,MEX,,XFY Guaymas R,u,Guaymas,27.933333,-110.9,,1,,9236,308,144,,????-????,1234567,,,19901081,,, +2470,MEX,,XFL Mazatln R,u,Mazatln (sin),23.216667,-106.416667,,1,,9420,302,145,,????-????,1234567,,,19901086,,, +2474,HOL,,PBC32 Koninklijke Marine,r,Goeree-Overflakkee (zho),51.822222,4.038889,,1,,166,260,59,,????-????,1234567,,,19900649,,, +2480,NZL,,Bay of Islands Maritime R,u,Russell (NTL),-35.261111,174.125,,1,,17904,32,173,,????-????,1234567,,,19901165,,, +2480,NZL,,Far North Marine R,u,Mangonui (NTL),-34.983333,173.533333,,1,,17854,33,173,,????-????,1234567,,,19901191,,, +2480,NZL,,Houhora R,u,Houhora,-34.783333,173.1,,1,,17817,34,173,,????-????,1234567,,,19901181,,, +2480,NZL,,Mangonui R,u,Mangonui (NTL),-34.983333,173.533333,,1,,17854,33,173,,????-????,1234567,,,19901192,,, +2480,NZL,,Onerahi R,u,Onerahi (NTL),-35.766667,174.366667,,1,,17964,32,173,,????-????,1234567,,,19901208,,, +2480,NZL,,Waitangi Fisherman's R,u,Waitangi (NTL),-35.25,174.083333,,1,,17901,32,173,,????-????,1234567,,,19901236,,, +2480,NZL,,Whangaroa Coastguard R,u,Whangaroa (NTL),-35.045556,173.746111,,1,,17868,33,173,,????-????,1234567,,,19901253,,, +2480,NZL,,Great Barrier Island R,u,Great Barrier Island,-36.166667,175.416667,,1,,18042,30,174,,????-????,1234567,,,19901175,,, +2480,NZL,,NZ Steel Mining Ltd Offshore Terminal,u,Taharoa (WKO),-38.173611,174.706944,,1,,18219,35,174,,????-????,1234567,,,19901218,,, +2480,NZL,,New Plymouth Harbour R,u,New Plymouth/Harbour (TKI),-39.059722,174.045833,,1,,18279,38,174,,????-????,1234567,,,19901204,,, +2480,NZL,,Napier Association R,u,Napier (HKB),-39.483333,176.916667,,1,,18433,31,175,,????-????,1234567,,,19901198,,, +2480,NZL,,Te Anau Fiordland Fisherman's R,u,Te Anau (STL),-45.416667,167.716667,,1,,18462,69,175,,????-????,1234567,,,19901230,,, +2480,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901247,,, +2480,NZL,,Kaingaroa Fisherman's R,u,Chatham Islands/Kaingaroa,-44,-176.583333,,1,,19086,15,177,,????-????,1234567,,,19901169,,, +2484,BEL,,OST Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,,,19900254,,, +2485,AUS,en,VL8K ABC Darwin,,Katherine (NT),-14.395,132.179444,,50,,13671,69,142,,0830-2130,1234567,4,,40000016,,, +2490,USA,,WDR Miami R,u,Miami (FL),25.766667,-80.2,,1,,7553,284,133,,????-????,1234567,,,19901536,,, +2500,CHN,,BPM,,Lintong/Pucheng (SA),34.947778,109.552389,,10,,7813,58,125,,0759-0930,1234567,,,36200215,,, +2500,USA,en,WWV,,Fort Collins (CO),40.682,-105.042028,,10,,7769,311,125,,0000-2400,1234567,,,20000084,,, +2500,HWA,en,WWVH,,Kekaha (HI),21.989139,-159.764556,,5,,11667,347,146,,0000-2400,1234567,,,20000089,,, +2506,USA,,WOU Boston R,u,Boston (MA),42.366667,-71.066667,,1,,5664,292,114,,????-????,1234567,,,19901502,,, +2506,VIR,,WAH Saint Thomas R,u,Saint Thomas (sto),18.35,-64.872222,,1,,7137,267,128,,????-????,1234567,,,19901619,,, +2506,USA,,Delcambre Marine Operator,u,Delcambre (LA),29.95,-91.983333,,1,,7957,295,137,,????-????,1234567,,,19901515,,, +2506,USA,,Kneeland/Eureka R,u,Kneeland/Eureka (CA),40.8,-124.166667,,1,,8638,324,143,,????-????,1234567,,,19901532,,, +2506,USA,,Point Reyes R,u,Point Reyes (CA),38.10375,-122.935944,,1,,8851,322,143,,????-????,1234567,,,19901551,,, +2506,GUM,,Public Correspondence Guam,u,Guam (GU),13.433333,144.733333,,1,,11702,42,153,,????-????,1234567,,,19900632,,, +2506,AMS,,St. Paul & Amsterdam R,u,Base Martin de Vivis,-37.798694,77.570003,,1,,12130,128,154,,????-????,1234567,,,19900034,,, +2507,KOR,,HLN Gunsan R,u,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900974,,, +2510,CAN,,VCT Tors Cove R,u,Tors Cove (NL),47.216667,-52.85,,1,,4179,287,99,,????-????,1234567,,,19900308,,, +2512,ALS,,KCI95 Cold Bay Metro,u,Cold Bay (AK),55.183333,-162.716667,,1,,8043,354,137,,????-????,1234567,,,19900020,,, +2513,LBY,,5AB Benghazi R,u,Benghazi (bga),32.116667,20.066667,,1,,2483,148,82,,????-????,1234567,,,19901017,,, +2513,ATA,,HF Frequency Pool S-098 (SOAR),u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900103,,, +2514,CAN,,VAW Iqaluit Coastguard,u,Killinek (NU),60.427403,-64.838361,,1,,4269,311,100,,1340-1400,9999999,,,20109244,,, +2514,CAN,,VAW Iqaluit Coastguard,u,Killinek (NU),60.427403,-64.838361,,1,,4269,311,100,,1705-1725,9999999,,,20109244,,, +2514,CAN,,VAW Iqaluit Coastguard,u,Killinek (NU),60.427403,-64.838361,,1,,4269,311,100,,2235-2255,9999999,,,20109244,,, +2514,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,0110-0130,9999999,,,20109240,,, +2514,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,1320-1340,9999999,,,20109240,,, +2514,USA,,Fort Lauderdale R,u,Fort Lauderdale (FL),26.116667,-80.15,,1,,7521,284,132,,????-????,1234567,,,19901516,,, +2514,USA,,WDR Miami R,u,Miami (FL),25.766667,-80.2,,1,,7553,284,133,,????-????,1234567,,,19901537,,, +2516,G,,GYA Royal Navy,r,-,55.55,-2.65,,1,,706,306,64,,????-????,1234567,,,19900576,,, +2517,DNK,,OVG Kongelige Danske Marine,u,Frederikshavn (njy),57.445833,10.55,,1,,650,22,63,,????-????,1234567,,,19900483,,, +2520,J,,JFC,u,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,19900894,,, +2522,USA,,WOX New York R,u,New York (NY),40.716667,-74,,1,,5968,292,117,,????-????,1234567,,,19901544,,, +2522,BAH,,C6N Nassau R,u,Nassau (npr),25.05,-77.333333,,1,,7422,281,131,,????-????,1234567,,,19900246,,, +2522,CUB,,Santa Cruz del Sur R,u,Santa Cruz del Sur,20.716667,-78,,1,,7830,279,135,,????-????,1234567,,,19900449,,, +2522,USA,,KOU San Pedro R,u,San Pedro (TX),27.783333,-97.683333,,1,,8493,298,142,,????-????,1234567,,,19901560,,, +2524,AUS,,Exmouth Sea Rescue,u,Exmouth (WA),-21.933333,114.133333,,1,,13112,90,157,,????-????,1234567,,,19900151,,, +2524,AUS,,Buccaneer Rescue Club,u,Derby (WA),-17.311111,123.638889,,1,,13366,79,158,,????-????,1234567,,,19900142,,, +2524,AUS,,Carnarvon Sea Rescue,u,Carnarvon (WA),-24.866667,113.633333,,1,,13320,93,158,,????-????,1234567,,,19900135,,, +2524,AUS,,Coral Bay Sea Rescue,u,Coral Bay (NT),-11.183333,132.05,,1,,13374,67,158,,????-????,1234567,,,19900139,,, +2524,AUS,,Geraldton Sea Rescue,u,Geraldton (WA),-28.766667,114.6,,1,,13701,95,159,,????-????,1234567,,,19900155,,, +2524,AUS,,Kalbarri Sea Rescue,u,Kalbarri (WA),-27.666667,114.166667,,1,,13584,95,159,,????-????,1234567,,,19900163,,, +2524,AUS,,Fremantle Sea Rescue Group,u,Fremantle (WA),-32.05,115.766667,,1,,14038,97,160,,????-????,1234567,,,19900154,,, +2524,AUS,,Jurien Bay Sea Rescue,u,Jurien Bay (WA),-30.305556,115.041667,,1,,13853,96,160,,????-????,1234567,,,19900162,,, +2524,AUS,,Lancelin Sea Rescue,u,Lancelin (WA),-31.016667,115.333333,,1,,13929,97,160,,????-????,1234567,,,19900166,,, +2524,AUS,,Mandurah Water Rescue,u,Mandurah (WA),-32.55,115.7,,1,,14073,98,160,,????-????,1234567,,,19900172,,, +2524,AUS,,Seisia Coastguard,u,Seisia (QLD),-10.85,142.369444,,1,,13966,57,160,,????-????,1234567,,,19900186,,, +2524,AUS,,Torres Strait Coastguard,u,Torres Strait (QLD),-10.577778,142.219444,,1,,13932,57,160,,????-????,1234567,,,19900195,,, +2524,AUS,,Augusta Sea Rescue,u,Augusta (WA),-34.316667,115.166667,,1,,14171,100,161,,????-????,1234567,,,19900125,,, +2524,AUS,,Windy Harbour Sea Rescue,u,Windy Harbour (WA),-34.833333,116.033333,,1,,14269,100,161,,????-????,1234567,,,19900200,,, +2524,AUS,,Cooktown Coastguard,u,Cooktown (QLD),-15.466667,145.25,,1,,14567,57,162,,????-????,1234567,,,19900138,,, +2524,AUS,,Esperance Sea Rescue,u,Esperance (WA),-33.866667,121.9,,1,,14593,95,162,,????-????,1234567,,,19900147,,, +2524,AUS,,Cairns Coastguard,u,Cairns (QLD),-16.928333,145.779444,,1,,14734,58,163,,????-????,1234567,,,19900132,,, +2524,AUS,,Townsville Coastguard,u,Townsville (QLD),-19.25,146.8,,1,,15009,58,164,,????-????,1234567,,,19900196,,, +2524,AUS,,VZX Penta Comstat Firefly R,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900217,,, +2524,AUS,,Rockhampton Coastguard,u,Rockhampton (QLD),-23.383333,150.5,,1,,15604,58,165,,????-????,1234567,,,19900183,,, +2524,AUS,,Thirsty Sound Coastguard,u,Thirsty Sound (QLD),-22.133333,150.041667,,1,,15463,57,165,,????-????,1234567,,,19900193,,, +2524,AUS,,Yeppoon Coastguard,u,Yeppoon (QLD),-23.133333,150.741667,,1,,15595,57,165,,????-????,1234567,,,19900202,,, +2524,AUS,,Hervey Bay Marine Rescue,u,Hervey Bay (QLD),-25,153,,1,,15896,56,166,,????-????,1234567,,,19900156,,, +2524,AUS,,Sandy Straits Coastguard,u,Sandy Straits (QLD),-25.25,152.816667,,1,,15908,56,166,,????-????,1234567,,,19900185,,, +2524,AUS,,VMR471 Keppel Sands Coastguard,u,Keppel Sands (QLD),-23.3375,150.797222,,1,,15617,57,166,,????-????,1234567,,,19900164,,, +2524,AUS,,Redcliffe Coastguard,u,Redcliffe (QLD),-27.233056,153.1175,,1,,16106,58,167,,????-????,1234567,,,19900181,,, +2524,AUS,,Redland Bay Coastguard,u,Redland Bay (QLD),-27.616667,153.316667,,1,,16152,58,167,,????-????,1234567,,,19900182,,, +2524,AUS,,Southport Coastguard,u,Southport (QLD),-27.966667,153.4,,1,,16188,58,167,,????-????,1234567,,,19900187,,, +2524,AUS,,Tin Can Bay Coastguard,u,Tin Can Bay (QLD),-25.916667,153,,1,,15980,57,167,,????-????,1234567,,,19900194,,, +2524,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.4,,14915,58,167,,????-????,1234567,,,19900161,,, +2524,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,19900197,,, +2524,AUS,,Iluka/Yamba Coastguard,u,Iluka (NSW),-29.416667,153.359722,,1,,16315,60,168,,????-????,1234567,,,19900160,,, +2524,AUS,,Melbourne Coastguard,u,Melbourne (VIC),-37.816667,144.966667,,1,,16451,80,168,,????-????,1234567,,,19900174,,, +2524,AUS,,Queenscliff Coastguard,u,Queenscliff (VIC),-38.266667,144.65,,1,,16462,81,168,,????-????,1234567,,,19900180,,, +2524,AUS,,VMR250 Ballina Coastguard,u,Ballina (NSW),-28.87,153.575,,1,,16279,59,168,,????-????,1234567,,,19900127,,, +2524,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,19900149,,, +2524,AUS,,Westernport Coastguard,u,Westernport (VIC),-38.366667,145.333333,,1,,16515,81,168,,????-????,1234567,,,19900198,,, +2524,AUS,,Yamba Coastal Patrol,u,Yamba (NSW),-29.433333,153.366667,,1,,16317,60,168,,????-????,1234567,,,19900201,,, +2524,AUS,,Bermagui Coastguard,u,Bermagui (NSW),-36.416667,150.05,,1,,16685,73,169,,????-????,1234567,,,19900128,,, +2524,AUS,,Coast R Devonport,u,Devonport (TAS),-41.166667,146.35,,1,,16774,84,169,,????-????,1234567,,,19900143,,, +2524,AUS,,Cottage Point Coastguard,u,Cottage Point (NSW),-33.616667,151.2,,1,,16539,68,169,,????-????,1234567,,,19900140,,, +2524,AUS,,Loch Sport Coastguard,u,Loch Sport (VIC),-38.038889,147.591667,,1,,16643,78,169,,????-????,1234567,,,19900167,,, +2524,AUS,,Mersey R Devonport,u,Devonport (TAS),-41.166667,146.35,,1,,16774,84,169,,????-????,1234567,,,19900144,,, +2524,AUS,,Port Stephens Coastguard,u,Port Stephens (NSW),-32.683333,152.075,,1,,16517,65,169,,????-????,1234567,,,19900179,,, +2524,AUS,,Swansea Coastguard,u,Swansea (NSW),-33.083333,151.616667,,1,,16521,67,169,,????-????,1234567,,,19900188,,, +2524,AUS,,Sydney Coastguard,u,Sydney (NSW),-33.883333,151.216667,,1,,16561,68,169,,????-????,1234567,,,19900189,,, +2524,AUS,,Sydney Coastguard,u,Sydney (NSW),-33.883333,151.216667,,1,,16561,68,169,,????-????,1234567,,,19900190,,, +2524,AUS,,Coast R Hobart,u,Hobart (TAS),-42.916667,147.333333,,1,,16951,86,170,,????-????,1234567,,,19900157,,, +2524,AUS,,VMR488 Bundaberg Marine Rescue,u,Burnett Heads (QLD),-24.760833,152.401478,,0.4,,15840,56,170,,????-????,1234567,,,19900131,,, +2524,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,19900130,,, +2524,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,19900176,,, +2524,AUS,,VMR251 Kingscliff Coastguard,u,Kingscliff/Faulks Park (NSW),-28.257656,153.583189,,0.4,,16225,58,172,,????-????,1234567,,,19900165,,, +2524,AUS,,VMR225 Coastal Patrol Sydney,u,Sydney/Terrey Hills (NSW),-33.69265,151.222661,,0.4,,16546,68,173,,????-????,1234567,,,19900192,,, +2524,AUS,,Eden Marine Rescue RVCP,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.06,,16726,74,181,,????-????,1234567,,,19900146,,, +2524,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.06,,16726,74,181,,????-????,1234567,,,19900145,,, +2525,UKR,,Sevastopol' R 3,u,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901475,,, +2525,RUS,,Naryan-Mar R,u,Naryan-Mar (NE),67.65,53.05,,1,,3013,37,87,,????-????,1234567,,,19901357,,, +2525,RUS,,UCT2 Beringovskiy R,c,Beringovskiy,63.05,179.316667,,1,,7195,4,129,,????-????,1234567,,,19901335,,, +2526,CTI,,Abidjan R,u,Abidjan,5.333333,-4.022222,,1,,5289,194,110,,????-????,1234567,,,19900436,,, +2527,JMC,,Jamaican Defence Emergency Force,u,-,18,-77.25,,1,,8010,276,137,,????-????,1234567,,,19900929,,, +2530,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,????-????,1234567,,,19900304,,, +2530,PTR,,NMR USCG San Juan,u,Isabela (PR),18.464444,-67.066667,,1,,7277,269,130,,????-????,1234567,,,19901322,,, +2530,USA,,KQP Galveston R,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,????-????,1234567,,,19901520,,, +2530,HWA,,KBP Honolulu Metro,u,Honolulu (HI),21.305556,-157.877778,,1,,11710,345,153,,????-????,1234567,,,19900656,,, +2538,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,????-????,1234567,,,19900300,,, +2538,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,????-????,1234567,,,19900285,,, +2538,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,????-????,1234567,,,19900290,,, +2538,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,????-????,1234567,,,19900292,,, +2538,CAN,,VAR9 Saint John Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,????-????,1234567,,,19900298,,, +2538,USA,,Point Harbor R,u,Point Harbor (NC),36.083333,-75.8,,1,,6433,289,121,,????-????,1234567,,,19901549,,, +2538,USA,,Corpus Christi R,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,????-????,1234567,,,19901512,,, +2540,RUS,,RKLM Archangelsk R,c,Archangelsk (AR),64.566667,40.533333,,1,,2380,41,81,,????-????,1234567,,,19901332,,, +2545,MAF,,CROSS AG Saint-Martin,u,Saint-Martin (978),18.077778,-63.05,,1,,7036,265,127,,????-????,1234567,,,19900001,,, +2545,GLP,,CROSS AG Guadeloupe,u,Pointe--Pitre (971),16.225,-61.530556,,1,,7091,263,128,,????-????,1234567,,,19900584,,, +2545,MRT,,CROSS AG Martinique,u,Fort-de-France (972),14.603611,-61.078889,,1,,7200,261,129,,0000-0015,1234567,,,19901125,,, +2545,MRT,,CROSS AG Martinique,u,Fort-de-France (972),14.603611,-61.078889,,1,,7200,261,129,,1215-1230,1234567,,,19901125,,, +2545,MRT,,CROSS AG Martinique,u,Fort-de-France (972),14.603611,-61.078889,,1,,7200,261,129,,2133-2148,1234567,,,19901125,,, +2550,USA,,WFA Tampa R,u,Tampa (FL),27.95,-82.466667,,1,,7520,287,132,,????-????,1234567,,,19901570,,, +2555,GUY,,8RB Demerara R,u,Georgetown (dem),6.816667,-58.158333,,1,,7692,254,134,,????-????,1234567,,,19900634,,, +2555,RUS,,UGH2 Yuzhno-Sakhalinsk R,c,Yuzhno-Sakhalinsk (SL),46.966667,142.733333,,1,,8241,29,139,,????-????,1234567,,,19901373,,, +2556,USA,,KOU San Pedro R,u,San Pedro (TX),27.783333,-97.683333,,1,,8493,298,142,,????-????,1234567,,,19901561,,, +2558,CAN,,VFC Inuvik Coastguard,u,Cambridge Bay (NU),69.114722,-105.0195,,1,,5438,334,111,,0235-0255,1234567,,,20109250,,, +2558,CAN,,VFC Inuvik Coastguard,u,Cambridge Bay (NU),69.114722,-105.0195,,1,,5438,334,111,,1435-1455,1234567,,,20109250,,, +2558,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,0235-0255,1234567,,,20109249,,, +2558,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,1435-1455,1234567,,,20109249,,, +2558,USA,,Bodkin Point R,u,Bodkin Point (MD),39.143056,-76.455556,,1,,6241,292,119,,????-????,1234567,,,19901500,,, +2558,BAH,,C6N2 Nassau R,u,Nassau (npr),25.05,-77.333333,,1,,7422,281,131,,????-????,1234567,,,19900247,,, +2558,GUY,,8RB Demerara R,u,Georgetown (dem),6.816667,-58.158333,,1,,7692,254,134,,????-????,1234567,,,19900635,,, +2560,MEX,,XFL Mazatln R,u,Mazatln (sin),23.216667,-106.416667,,1,,9420,302,145,,????-????,1234567,,,19901087,,, +2560,MEX,,XFQ Salina Cruz R,u,Salina Cruz (oax),16.166667,-95.2,,1,,9363,289,145,,????-????,1234567,,,19901090,,, +2560,MEX,,XFK La Paz R,u,La Paz (bcs),24.166667,-110.3,,1,,9553,305,146,,????-????,1234567,,,19901084,,, +2566,USA,,WOU Boston R,u,Boston (MA),42.366667,-71.066667,,1,,5664,292,114,,????-????,1234567,,,19901503,,, +2566,USA,,Charleston R,u,Charleston (SC),32.866667,-80.016667,,1,,6959,289,127,,????-????,1234567,,,19901508,,, +2566,USA,,Jacksonville R,u,Jacksonville (FL),30.333333,-81.65,,1,,7271,288,130,,????-????,1234567,,,19901530,,, +2566,USA,,Coos Bay R,u,Coos Bay (OR),43.366667,-124.216667,,1,,8390,325,141,,????-????,1234567,,,19901511,,, +2569,CUB,,Arroyos de Mantua R,u,Arroyos de Mantua,22.35,-84.383333,,1,,8118,285,138,,????-????,1234567,,,19900437,,, +2570,ATA,,Antarctic RATT,,-,-70,0,,1,,13588,183,159,,????-????,1234567,,,19900119,,, +2575,MOZ,,C9L2 Maputo R MRCC,u,Maputo (mpc),-25.955556,32.544444,,1,,9046,156,144,,????-????,1234567,,,19901106,,, +2578,CHN,,XSA2 Nanjing R,u,Nanjing (JS),32.066667,118.783333,,1,,8589,53,142,,????-????,1234567,,,19900386,,, +2579,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,????-????,1234567,,,19900663,,, +2579,MDG,,5RO Mahajanga R,u,Mahajanga (mhj),-15.716667,46.316667,,1,,8465,140,142,,????-????,1234567,,,19901057,,, +2579,MDG,,5RT Toliara R,u,Toliara=Tular (tlr),-23.35,43.666667,,1,,9138,146,144,,????-????,1234567,,,19901070,,, +2579,MDG,,Manakara-Sud R,u,Manakara-Sud (fsa),-22.133333,48.016667,,1,,9190,142,144,,????-????,1234567,,,19901059,,, +2582,POR,,CUL Lisbao R,u,Lisbao (lis),38.7,-9.173611,,1,,1916,225,76,,????-????,1234567,,,19901298,,, +2582,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,1340-1400,9999999,,,20109242,,, +2582,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,1705-1725,9999999,,,20109242,,, +2582,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,2235-2255,9999999,,,20109242,,, +2582,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,????-????,1234567,,,19900301,,, +2582,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,1240-1300,9999999,,,20109238,,, +2582,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,1705-1725,9999999,,,20109238,,, +2582,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,2310-2330,9999999,,,20109238,,, +2582,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,????-????,1234567,,,19900286,,, +2582,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,????-????,1234567,,,19900302,,, +2582,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,????-????,1234567,,,19900291,,, +2582,CAN,,VCJ Stephenville Coastguard,u,Stephenville (NL),48.55,-58.566667,,1,,4473,292,102,,????-????,1234567,,,19900303,,, +2582,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,????-????,1234567,,,19900293,,, +2582,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,????-????,1234567,,,19900305,,, +2582,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,????-????,1234567,,,19900296,,, +2582,CAN,,VCF Mont-Joli Coastguard,u,Mont-Joli (QC),48.591667,-68.194444,,1,,5070,297,108,,????-????,1234567,,,19900289,,, +2582,CAN,,VAR9 Saint John Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,????-????,1234567,,,19900284,,, +2582,CAN,,VBA4 Churchill Coastguard,u,Churchill (MB),58.761667,-93.944167,,1,,5767,320,115,,0040-0100,1234567,,,20109245,,, +2582,CAN,,VBA4 Churchill Coastguard,u,Churchill (MB),58.761667,-93.944167,,1,,5767,320,115,,1410-1430,1234567,,,20109245,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,0035-0050,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,0435-0450,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,0835-0850,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,1235-1250,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,1635-1650,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,2035-2050,1234567,,,36000001,,, +2582,CAN,,VBA Thunder Bay Coastguard,u,Thunder Bay (ON),48.563514,-88.656311,,1,,6253,308,120,,????-????,1234567,,,19900306,,, +2582,BRB,,Barbados Coastguard,u,Spring Garden (smi),13.127778,-59.633333,,1,,7231,259,129,,????-????,1234567,,,19900273,,, +2582,BAH,,C6X2 Marsh Harbour R,u,Marsh Harbour (Great Abaco) (cab),26.55,-77.05,,1,,7279,282,130,,????-????,1234567,,,19900244,,, +2583,KOR,,HLE Jeju R,c,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,,,19900955,,, +2583,KOR,,HLM Mokpo R,c,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900983,,, +2583,KOR,,HLN Gunsan R,c,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900975,,, +2583,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900948,,, +2583,KOR,,HLU Ulleung R,c,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900994,,, +2583,KOR,,HLY Yeosu R,c,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19901000,,, +2585,VIR,,WAH Saint Thomas R,u,Saint Thomas (sto),18.35,-64.872222,,1,,7137,267,128,,????-????,1234567,,,19901620,,, +2586,DNK,,OXZ Lyngby R,u,Rnne (hvs),55.106944,14.708333,,1,,640,55,63,,1743-1803,1234567,,,2100005,,, +2586,ALG,,Oran R,u,Oran (31),35.683333,-0.65,,1,,1910,200,76,,????-????,1234567,,,19900017,,, +2586,MRC,,CNP Casablanca R,u,Casablanca (gcb),33.6,-7.633333,,1,,2346,214,80,,????-????,1234567,,,19901114,,, +2586,CNR,,Arrecife R,u,Montaa de Hara (LPM-LA),29.124022,-13.519211,,1,,3038,220,87,,????-????,1234567,,,19900416,,, +2586,GUI,,3XC5 Conakry R,u,Conakry (cnk),9.508333,-13.711111,,1,,5075,208,108,,????-????,1234567,,,19900630,,, +2586,TGO,,5VA Lom R,u,Lom (mar),6.139522,1.27935,,1,,5133,187,108,,????-????,1234567,,,19901404,,, +2586,DJI,,J2A Djibouti R,u,Djibouti (djb),11.608333,43.15,,1,,5576,130,113,,????-????,1234567,,,19900478,,, +2587,TCA,,Turks & Caicos R,u,Grand Turk (gtu),21.505556,-71.133333,,1,,7298,274,130,,????-????,1234567,,,19901398,,, +2587,JMC,,Jamaican Defence Emergency Force,u,-,18,-77.25,,1,,8010,276,137,,????-????,1234567,,,19900930,,, +2590,JOR,,Aqaba R,u,Aqaba (aqb),29.530556,35,,1,,3434,126,91,,????-????,1234567,,,19900932,,, +2590,USA,,WOX New York R,u,New York (NY),40.716667,-74,,1,,5968,292,117,,????-????,1234567,,,19901545,,, +2590,TCA,,Turks & Caicos R,u,Grand Turk (gtu),21.505556,-71.133333,,1,,7298,274,130,,????-????,1234567,,,19901399,,, +2590.6,HOL,,PBC Koninklijke Marine,r,Goeree-Overflakkee (zho),51.822222,4.038889,,1,,166,260,59,,????-????,1234567,-2590.6,,19900650,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,0133-0148,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,0333-0348,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,0733-0748,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,0833-0848,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,1233-1248,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,1333-1348,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,1633-1648,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,1933-1948,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,2033-2048,1234567,,,4000023,,, +2593,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,????-????,1234567,,,19901111,,, +2595,YEM,,7OA Aden R,u,Aden (adn),12.766111,45.052861,,1,,5565,127,113,,????-????,1234567,,,19901624,,, +2595,KEN,,5ZF Mombasa R,u,Mombasa (coa),-4.066667,39.672222,,1,,6989,142,127,,????-????,1234567,,,19900936,,, +2595,SEY,,Seychelles R,u,Victoria (mhe),-4.629778,55.464856,,1,,7815,127,135,,????-????,1234567,,,19901380,,, +2596,G,,United Kingdom Coastguard,u,-,55.55,-2.65,,1,,706,306,64,,????-????,1234567,,,19900578,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,0107-0130,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,0907-0930,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,1237-1300,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,1337-1400,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,1907-1930,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,1937-2000,1234567,,,20109227,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,0137-0200,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,1007-1030,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,1107-1130,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,1437-1500,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,2037-2100,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,2307-2330,1234567,,,20109230,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,0007-0030,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,0837-0900,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,1307-1330,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,1637-1700,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,2007-2030,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,2207-2230,1234567,,,20109226,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,0137-0200,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,1007-1030,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,1107-1130,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,1437-1500,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,2037-2100,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,2307-2330,1234567,,,20109229,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,0048-0110,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,0737-0800,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,1137-1200,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,1607-1630,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,1807-1830,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,2137-2200,1234567,,,20109225,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,0207-0230,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,0807-0830,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,1207-1230,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,1507-1530,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,1837-1900,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,2107-2130,1234567,,,20109224,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,0437-0500,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,0837-0900,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,0937-1000,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,1407-1430,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,1737-1800,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,2317-2330,1234567,,,20109228,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0437-0457,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0847-0907,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0937-0957,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1407-1427,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1737-1757,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,2317-2337,1234567,,,19900297,,, +2598,USA,,New Orleans Metro,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,????-????,1234567,,,19901542,,, +2598,USA,,KOU San Pedro R,u,San Pedro (TX),27.783333,-97.683333,,1,,8493,298,142,,????-????,1234567,,,19901562,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,0133-0148,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,0333-0348,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,0733-0748,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,0833-0848,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,1233-1248,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,1333-1348,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,1633-1648,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,1933-1948,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,2033-2048,1234567,,,4000029,,, +2600,CHN,,Longkou R,u,Longkou (SD),37.65,120.333333,,1,,8167,49,139,,????-????,1234567,,,19900385,,, +2600,CHN,,XSM Xiamen R,u,Xiamen=Amoy (FJ),24.6,118.116667,,1,,9228,58,144,,????-????,1234567,,,19900394,,, +2600,REU,,La Runion R,u,La Runion (974),-20.927778,55.288889,,1,,9399,135,145,,????-????,1234567,,,19901326,,, +2601,CPV,,D4A So Vicente R,u,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900435,,, +2601,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,????-????,1234567,,,19901323,,, +2601,AGL,,D3E Luanda R,u,Luanda (lua),-8.772889,13.329511,,1,,6802,172,125,,????-????,1234567,,,19900000,,, +2601,MOZ,,C9C2 Beira R Metro,u,Beira (sfl),-19.85,34.833333,,1,,8463,153,142,,????-????,1234567,,,19901104,,, +2604,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,19901276,,, +2605,RUS,,UIK Vladivostok R,u,Vladivostok (PM),43.133333,131.9,,1,,8204,38,139,,????-????,1234567,,,19901370,,, +2605,CHN,,XSH Dongfang R,u,Dongfang (HA),19.116667,108.633333,,1,,9141,69,144,,????-????,1234567,,,19900380,,, +2605,CHN,,XSI Sanya R,u,Sanya (HA),18.232222,109.495833,,1,,9274,69,145,,????-????,1234567,,,19900390,,, +2607,BHR,,A9M Bahrain R,u,Hamala (shm),26.156944,50.473889,,1,,4662,111,104,,????-????,1234567,,,19900269,,, +2607,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,19901277,,, +2608.3,ARS,,HZH Jeddah R,4,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-2608.3,,19900071,,, +2608.5,F,,FUO Marine Nationale,r,Toulon (83),43.108333,5.933333,,1,,1002,182,67,,????-????,1234567,-2608.5,,19900527,,, +2610,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,????-????,1234567,,,19900519,,, +2610,MDR,,CUB Madeira R,u,Funchal (md),32.641944,-16.9175,,1,,2865,230,86,,????-????,1234567,,,19901077,,, +2616,FSM,,KUP69 Yap R,u,Yap (yap),9.516667,138.119444,,1,,11766,50,153,,????-????,1234567,,,19900547,,, +2616,PLW,,KUP68 Koror R,u,Koror (kor),7.345833,134.488889,,1,,11781,54,153,,????-????,1234567,,,23200005,,, +2616,FSM,,KUP67 Truk R,u,Truk (chu),7.416667,151.783333,,1,,12624,38,156,,????-????,1234567,,,19900545,,, +2616,FSM,,KUP66 Pohnpei R,u,Pohnpei (pnp),6.983333,158.202778,,1,,12919,32,157,,????-????,1234567,,,19900543,,, +2616,MHL,,KUP65 Majuro R,u,Majuro,7.084722,171.366944,,1,,13279,17,158,,????-????,1234567,,,22700001,,, +2618.5,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,2000-0600,1234567,-2618.5,,19900561,,, +2620,RUS,,UCW4 Sankt-Peterburg R,u,Sankt-Peterburg (SP),59.9,30.266667,,1,,1704,50,74,,????-????,1234567,,,19901364,,, +2620,CHN,,XSQ Guangzhou R,u,Guangzhou (GD),23.15,113.483333,,1,,9084,63,144,,????-????,1234567,,,19900383,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0030-0045,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0230-0245,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0700-0715,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,1845-1900,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,2100-2115,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,2200-2215,1234567,,,37500001,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,0133-0148,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,0433-0448,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,0733-0748,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,0933-0948,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,1333-1348,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,1733-1748,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,1933-1948,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,2133-2148,1234567,,,4000021,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,0730-0745,1234567,,,3400019,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,0903-0918,1234567,,,3400019,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,1533-1548,1234567,,,3400019,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,2133-2148,1234567,,,3400019,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,2333-2348,1234567,,,3400019,,, +2625,MLT,,Malta RCC,u,Malta (mt),35.878889,14.498889,,1,,1914,157,76,,????-????,1234567,,,19901099,,, +2627,CHN,,XSU Yantai R,u,Yantai (SD),37.533333,121.4,,1,,8232,48,139,,????-????,1234567,,,19900396,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,0133-0148,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,0333-0348,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,0733-0748,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,0833-0848,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,1233-1248,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,1333-1348,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,1633-1648,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,1933-1948,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,2033-2048,1234567,,,4000032,,, +2628,ISL,,Vestmannaeyjar Landhelgisgsla,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,????-????,1234567,,,19900844,,, +2628,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0900-0945,1234567,,,19900137,,, +2628,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1015-1715,1234567,,,19900137,,, +2628,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1800-1845,1234567,,,19900137,,, +2629,TUR,,Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,????-????,1234567,,,19901441,,, +2629,TUR,,Iskendern R,u,Iskendern,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901435,,, +2630,RUS,,Arkhangelsk MRSC,u,Archangelsk (AR),64.566667,40.533333,,1,,2380,41,81,,????-????,1234567,,,19901333,,, +2630,NIG,,5OZ Port Harcourt R,u,Port Harcourt (riv),4.769444,7.055556,,1,,5264,179,110,,????-????,1234567,,,19901135,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,0133-0148,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,0333-0348,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,0733-0748,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,0833-0848,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,1233-1248,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,1333-1348,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,1633-1648,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,1933-1948,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,2033-2048,1234567,,,4000030,,, +2635,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,????-????,1234567,,,19901123,,, +2635,MRC,,CND3 Safi R,u,Safi (dka),32.3,-9.233333,,1,,2540,216,82,,????-????,1234567,,,19901119,,, +2638,IRN,,Bahregan Marine,u,Bahregan/Marine (bus),29.833333,50.266667,,1,,4340,107,100,,????-????,1234567,,,19900808,,, +2638,IRN,,Sorush Terminal,u,Soroush/Terminal (bus),29.270833,50.284722,,1,,4388,108,101,,????-????,1234567,,,19900818,,, +2638,IRN,,Lavan Marine,u,Lavan/Marine (hrg),26.797222,53.386111,,1,,4796,107,105,,????-????,1234567,,,19900816,,, +2638,IRN,,Sirri Marine,u,Sirri/Marine (hrg),25.895,54.55,,1,,4947,107,106,,????-????,1234567,,,19900817,,, +2638,UAE,,Port Zayed R,u,Abu Dhabi/Port Zayed (abd),24.522222,54.377778,,1,,5053,108,108,,????-????,1234567,,,19901455,,, +2638,BAH,,ZFP61 Freeport Harbour Control,u,Freeport,26.533333,-78.7,,1,,7390,284,131,,????-????,1234567,,,19900242,,, +2638,DOM,,HIA Santo Domingo Piloto R,u,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,????-????,1234567,,,19900494,,, +2638,VEN,,Venezuelan Marinas,u,-,6.5,-66.5,,1,,8275,260,140,,????-????,1234567,,,19901617,,, +2638,PRU,,OBF4 Mollendo R,u,Mollendo (are),-17.016667,-72.016667,,1,,10730,251,149,,????-????,1234567,,,19901315,,, +2638,ARG,,Prefectura Naval Recalada Rio de Plata,u,Recalada Rio de Plata/Prefectura Naval,-38.5,-63,,1,,12098,231,154,,????-????,1234567,,,19900050,,, +2638,OCE,,Papeete Port R,u,Papeete (idv),-17.536111,-149.576389,,1,,15634,322,166,,????-????,1234567,,,19901275,,, +2638,NZL,,Lyttelton Harbour R,u,Lyttelton (CAN),-43.583333,172.7,,1,,18624,52,175,,????-????,1234567,,,19901190,,, +2638,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900873,,, +2639.4,KOR,,Donghae MRCC,u,Donghae (gan),37.55,129.1,,1,,8607,43,142,,????-????,1234567,-2639.4,,19900989,,, +2639.4,KOR,,Incheon MRCC,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,-2639.4,,19900959,,, +2639.4,KOR,,Busan MRCC,u,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,-2639.4,,19900949,,, +2639.4,KOR,,Jeju MRCC,u,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,-2639.4,,19900956,,, +2639.4,KOR,,Mokpo MRCC,u,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,-2639.4,,19900984,,, +2641,LBN,,ODR Beirut R,u,Beirut=Bayrut (bei),33.9,35.472222,,1,,3075,120,88,,????-????,1234567,,,19901014,,, +2642,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0133-0158,1234567,,,4000019,,, +2642,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1933-1958,1234567,,,4000019,,, +2642,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,,,19900598,,, +2643,BHR,,A9M Bahrain R,4,Hamala (shm),26.156944,50.473889,,1,,4662,111,104,,????-????,1234567,,,19900272,,, +2648,ATA,,Antarctic Broadcast,u,-,-70,0,,1,,13588,183,159,,????-????,1234567,,,19900120,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,0303-0318,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,0703-0718,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,1103-1118,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,1503-1518,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,1903-1918,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,2303-2318,1234567,,,4300004,,, +2649,ISR,,4XA Eilat R,u,Eilat (hdm),29.566667,34.95,,1,,3428,126,91,,????-????,1234567,,,19900847,,, +2650,PNR,,HPPM2 Pedro Miguel Sail Mail,p,Pedro Miguel (pnm),9.017222,-79.610556,,1,,8946,272,144,,????-????,1234567,,,19901289,,, +2652,MTN,,5TA Nouadhibou R,u,Nouadhibou (dnd),20.908333,-17.040278,,1,,4014,219,97,,????-????,1234567,,,19901128,,, +2652,MDG,,5RN Nosy B R,u,Nosy B (ats),-13.333333,48.25,,1,,8311,138,140,,????-????,1234567,,,19901063,,, +2652,MDG,,Morondava R,u,Morondava (tlr),-20.283333,44.283333,,1,,8847,144,143,,????-????,1234567,,,19901061,,, +2652,MDG,,Mananjary R,u,Mananjary (fsa),-21.216667,48.333333,,1,,9110,141,144,,????-????,1234567,,,19901060,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,0133-0148,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,0433-0448,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,0733-0748,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,0933-0948,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,1333-1348,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,1733-1748,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,1933-1948,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,2103-2123,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,2133-2148,1234567,,,4000020,,, +2656,ISR,,4XA Eilat R,u,Eilat (hdm),29.566667,34.95,,1,,3428,126,91,,????-????,1234567,,,19900848,,, +2656,BHR,,A9M Bahrain R,u,Hamala (shm),26.156944,50.473889,,1,,4662,111,104,,????-????,1234567,,,19900270,,, +2656.4,USA,,KZN508 Rock Hill Sail Mail,p,Rock Hill (SC),34.933333,-81.025,,1,,6858,292,126,,????-????,1234567,-2656.4,,19901552,,, +2657,POR,,CTA Centro de Comunicaes,u,Marinha Grande (lei),39.75,-8.933333,,1,,1808,227,75,,????-????,1234567,,,19901301,,, +2657,POR,,CTV Monsanto R,u,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,0905-0920,1234567,,,6500002,,, +2657,POR,,CTV Monsanto R,u,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,2105-2120,1234567,,,6500002,,, +2657,MDR,,CTQ Centro de Comunicaes,u,-,32.85,-16.75,,1,,2837,230,85,,????-????,1234567,,,19901078,,, +2657,MDR,,CTQ Porto Santo R Naval,u,Porto Santo (pst),33.066278,-16.355417,,1,,2797,230,85,,????-????,1234567,,,19901074,,, +2657,AZR,,Marinha Ponta Delgada,u,Ponta Delgada (smg),37.733333,-25.666667,,1,,2952,250,87,,????-????,1234567,,,19900228,,, +2657,AZR,,CTH Marinha Horta,u,Horta (fai),38.529872,-28.628922,,1,,3086,255,88,,????-????,1234567,,,700012,,, +2657,AZR,,Flores R Naval,,Flores/Naval (flo),39.378333,-31.170833,,1,,3194,259,89,,????-????,1234567,,,700011,,, +2662,SYR,,YKO Tartus R,u,Tartus (tat),34.883333,35.883333,,1,,3017,118,87,,????-????,1234567,,,19901396,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,0133-0148,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,0333-0348,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,0733-0748,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,0833-0848,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,1233-1248,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,1333-1348,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,1633-1648,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,1933-1948,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,2033-2043,1234567,,,4000028,,, +2663,MRC,,CNP Casablanca R,u,Casablanca (gcb),33.6,-7.633333,,1,,2346,214,80,,????-????,1234567,,,19901115,,, +2663,MYT,,FJN Dzaoudzi R,u,Dzaoudzi (976),-12.782222,45.233889,,1,,8120,140,138,,????-????,1234567,,,19901130,,, +2663,MDG,,Antalaha R,u,Antalaha (ats),-14.883333,50.283333,,1,,8561,137,142,,????-????,1234567,,,19901051,,, +2665,MEX,,XFK La Paz R,u,La Paz (bcs),24.166667,-110.3,,1,,9553,305,146,,????-????,1234567,,,19901085,,, +2670,G,,Falmouth Coastguard,u,Lizard Point (EN-CNW),49.960444,-5.202028,,1,,845,258,65,,????-????,1234567,,,19900557,,, +2670,LVA,,UNI Ventspils R,u,Ventspils (Ven),57.390278,21.533333,,1,,1131,53,68,,????-????,1234567,,,19901046,,, +2670,TUN,,3VT Tunis R,u,Tunis (tun),36.8,10.183333,,1,,1728,169,74,,????-????,1234567,,,19901427,,, +2670,TUR,,Turk R,u,-,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901448,,, +2670,USA,en,USCG Southwest Harbor,u,Southwest Harbor (ME),44.283333,-68.333333,,1,,5358,292,111,,1135-1150,1234567,,,19901566,,, +2670,USA,en,USCG Southwest Harbor,u,Southwest Harbor (ME),44.283333,-68.333333,,1,,5358,292,111,,2335-2350,1234567,,,19901566,,, +2670,USA,en,NMF2 USCG SE New England,u,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,0440-0455,1234567,,,19901571,,, +2670,USA,en,NMF2 USCG SE New England,u,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,1640-1655,1234567,,,19901571,,, +2670,USA,en,NMF7 USGC Boston,u,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,1035-1050,1234567,,,19901504,,, +2670,USA,en,NMF7 USGC Boston,u,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,2235-2250,1234567,,,19901504,,, +2670,USA,,USCG New Haven Long Island,u,New Haven (NY),41.316667,-72.916667,,1,,5856,292,116,,????-????,1234567,,,19901541,,, +2670,USA,en,NMY42 USCG Moriches,u,Moriches (NY),40.8,-72.816667,,1,,5887,291,116,,0010-0025,1234567,,,19901540,,, +2670,USA,en,NMY42 USCG Moriches,u,Moriches (NY),40.8,-72.816667,,1,,5887,291,116,,1210-1225,1234567,,,19901540,,, +2670,USA,,USCG New York,u,New York (NY),40.716667,-74,,1,,5968,292,117,,????-????,1234567,,,19901546,,, +2670,USA,en,USCG Atlantic City,u,Atlantic City (NJ),39.366667,-74.416667,,1,,6095,291,118,,1103-1118,1234567,,,19901499,,, +2670,USA,en,USCG Atlantic City,u,Atlantic City (NJ),39.366667,-74.416667,,1,,6095,291,118,,2303-2318,1234567,,,19901499,,, +2670,USA,,NMK2 USCG Cape May,u,Cape May (NJ),38.933333,-74.9,,1,,6158,291,119,,????-????,1234567,,,19901507,,, +2670,USA,,NMN70 USCG Chincoteague,u,Chincoteague (VA),37.933333,-75.383333,,1,,6264,290,120,,????-????,1234567,,,19901510,,, +2670,USA,en,NMN13 USCG Cape Hatteras,u,Cape Hatteras (NC),35.238889,-75.533333,,1,,6481,288,122,,0133-0148,1234567,,,19901506,,, +2670,USA,en,NMN13 USCG Cape Hatteras,u,Cape Hatteras (NC),35.238889,-75.533333,,1,,6481,288,122,,1303-1318,1234567,,,19901506,,, +2670,USA,en,NMN37 USCG Fort Macon,u,Fort Macon (NC),34.695833,-76.681,,1,,6598,288,123,,0103-0118,1234567,,,19901517,,, +2670,USA,en,NMN37 USCG Fort Macon,u,Fort Macon (NC),34.695833,-76.681,,1,,6598,288,123,,1233-1248,1234567,,,19901517,,, +2670,USA,en,NMB USCG Charleston,u,Charleston (SC),32.866667,-80.016667,,1,,6959,289,127,,0420-0435,1234567,,,19901509,,, +2670,USA,en,NMB USCG Charleston,u,Charleston (SC),32.866667,-80.016667,,1,,6959,289,127,,1620-1635,1234567,,,19901509,,, +2670,PTR,,NMR USCG San Juan,u,Isabela (PR),18.464444,-67.066667,,1,,7277,269,130,,0305-0320,1234567,,,19901321,,, +2670,PTR,,NMR USCG San Juan,u,Isabela (PR),18.464444,-67.066667,,1,,7277,269,130,,1505-1520,1234567,,,19901321,,, +2670,USA,en,NMV USCG Mayport,u,Mayport (FL),30.4,-81.433333,,1,,7251,288,130,,0620-0635,1234567,,,19901534,,, +2670,USA,en,NMV USCG Mayport,u,Mayport (FL),30.4,-81.433333,,1,,7251,288,130,,1820-1835,1234567,,,19901534,,, +2670,USA,en,NME USCG St. Petersburg,u,St. Petersburg (FL),27.757222,-82.630556,,1,,7547,287,132,,0320-0335,1234567,,,19901567,,, +2670,USA,en,NME USCG St. Petersburg,u,St. Petersburg (FL),27.757222,-82.630556,,1,,7547,287,132,,1420-1435,1234567,,,19901567,,, +2670,ALS,,NOJ USCG Kodiak,u,Kodiak/Buskin River (AK),57.778028,-152.530111,,1,,7647,348,133,,????-????,1234567,,,19900027,,, +2670,USA,en,NMA USCG Miami,u,Miami (FL),25.623944,-80.386389,,1,,7577,284,133,,0350-0405,1234567,,,19901538,,, +2670,USA,en,NMA USCG Miami,u,Miami (FL),25.623944,-80.386389,,1,,7577,284,133,,1550-1605,1234567,,,19901538,,, +2670,USA,en,USCG Mobile,u,Mobile (AL),30.7,-88.05,,1,,7649,293,133,,1020-1035,1234567,,,19901539,,, +2670,USA,en,USCG Mobile,u,Mobile (AL),30.7,-88.05,,1,,7649,293,133,,1220-1235,1234567,,,19901539,,, +2670,USA,en,USCG Mobile,u,Mobile (AL),30.7,-88.05,,1,,7649,293,133,,1620-1635,1234567,,,19901539,,, +2670,USA,en,USCG Mobile,u,Mobile (AL),30.7,-88.05,,1,,7649,293,133,,2220-2235,1234567,,,19901539,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,0550-0605,1234567,,,19901543,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,1035-1050,1234567,,,19901543,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,1235-1250,1234567,,,19901543,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,1635-1650,1234567,,,19901543,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,2235-2250,1234567,,,19901543,,, +2670,USA,en,NOW USCG Port Angeles,u,Port Angeles (WA),48.139958,-123.402344,,1,,7896,327,136,,0615-0630,1234567,,,19901550,,, +2670,USA,en,NOW USCG Port Angeles,u,Port Angeles (WA),48.139958,-123.402344,,1,,7896,327,136,,0815-1830,1234567,,,19901550,,, +2670,USA,en,NMW USCG Columbia River,u,Astoria (OR),46.203989,-123.955639,,1,,8104,327,138,,0533-0548,1234567,,,19901498,,, +2670,USA,en,NMW USCG Columbia River,u,Astoria (OR),46.203989,-123.955639,,1,,8104,327,138,,1733-1748,1234567,,,19901498,,, +2670,USA,en,USCG Galveston,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,1050-1105,1234567,,,19901521,,, +2670,USA,en,USCG Galveston,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,1250-1305,1234567,,,19901521,,, +2670,USA,en,USCG Galveston,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,1650-1705,1234567,,,19901521,,, +2670,USA,en,USCG Galveston,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,2250-2305,1234567,,,19901521,,, +2670,USA,en,USCG North Bend,u,North Bend (OR),43.433333,-124.266667,,1,,8385,325,141,,0603-0618,1234567,,,19901547,,, +2670,USA,en,USCG North Bend,u,North Bend (OR),43.433333,-124.266667,,1,,8385,325,141,,1803-1818,1234567,,,19901547,,, +2670,USA,en,NOY8 USCG Corpus Christi,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,1040-1055,1234567,,,19901513,,, +2670,USA,en,NOY8 USCG Corpus Christi,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,1240-1255,1234567,,,19901513,,, +2670,USA,en,NOY8 USCG Corpus Christi,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,1640-1655,1234567,,,19901513,,, +2670,USA,en,NOY8 USCG Corpus Christi,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,2240-2255,1234567,,,19901513,,, +2670,USA,,NMC6 USCG Humboldt,u,Humboldt Bay (CA),40.741111,-124.213333,,1,,8646,324,143,,????-????,1234567,,,19901529,,, +2670,USA,en,NMC17 USCG San Francisco,u,San Francisco (CA),37.766667,-122.416667,,1,,8861,321,143,,0203-0218,1234567,,,19901556,,, +2670,USA,en,NMC17 USCG San Francisco,u,San Francisco (CA),37.766667,-122.416667,,1,,8861,321,143,,1403-1418,1234567,,,19901556,,, +2670,USA,,NMQ USCG,u,Cambria (CA),35.522722,-121.064106,,1,,9020,319,144,,????-????,1234567,,,19901533,,, +2670,TWN,,XSX Keelung R,u,Keelung=Chi-Lung (KLS),25.133333,121.733333,,1,,9386,55,145,,????-????,1234567,,,19901452,,, +2670,GUM,,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,????-????,1234567,,,20012512,,, +2670,HWA,,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,1,,11701,345,153,,????-????,1234567,,,19900657,,, +2676,AUS,,Royal Volunteer Coastal Patrol,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900219,,, +2676,AUS,,Royal Volunteer Coastal Patrol,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900220,,, +2676,AUS,,Royal Volunteer Coastal Patrol,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900221,,, +2677,F,fr,CROSS Gris-Nez,u,Cap Gris-Nez (62),50.867778,1.5825,,1,,362,249,61,,0733-0748,1234567,,,2500006,,, +2677,F,fr,CROSS Gris-Nez,u,Cap Gris-Nez (62),50.867778,1.5825,,1,,362,249,61,,1933-1948,1234567,,,2500006,,, +2677,F,,CROSS A tel,u,tel/Chteau de la Garenne (56),47.661683,-3.201911,,1,,847,238,65,,????-????,1234567,,,19900526,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0000-0015,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0635-0645,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0715-0730,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1835-1845,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1915-1930,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,2003-2013,1234567,,,2500009,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0550-0605,1234567,,,2500007,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0733-0748,1234567,,,2500007,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1333-1348,1234567,,,2500007,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1503-1518,1234567,,,2500007,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1750-1815,1234567,,,2500007,,, +2677.4,AUS,,VMR225 Coastal Patrol Sydney,u,Sydney/Terrey Hills (NSW),-33.69265,151.222661,,0.4,,16546,68,173,,????-????,1234567,-2677.4,,37700147,,, +2677.4,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.1,,16726,74,179,,????-????,1234567,-2677.4,,37700143,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,0133-0148,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,0303-0318,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,0733-0748,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,0803-0818,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,1203-1218,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,1333-1348,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,1603-1618,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,1933-1948,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,2003-2018,1234567,,,4000024,,, +2680,ISR,,4XZ Israeli Navy,c,Haifa/Israeli Navy (haf),32.816667,34.983333,,1,,3140,122,88,,????-????,1234567,,,19900852,,, +2680,STP,,S9M So Tom R,u,So Tom (sao),0.345833,6.7375,,1,,5756,180,115,,????-????,1234567,,,19901388,,, +2680,THA,,Songkhla R,u,Songkhla (sgk),7.191667,100.607222,,1,,9662,82,146,,????-????,1234567,,,19901407,,, +2686,THA,,HSA6 Bangkok R,u,Bangkok (bmp),13.75,100.516667,,1,,9081,78,144,,????-????,1234567,,,19901405,,, +2686.4,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.15,,11709,345,161,,????-????,1234567,-2686.4,,19900658,,, +2689,F,,FUE Marine Nationale,r,Brest (29),48.4,-4.483333,,1,,876,246,66,,????-????,1234567,,,19900523,,, +2690,INS,,Ulee-Lheue R,u,Ulee-Lheue (AC),5.583333,95.333333,,1,,9444,87,145,,????-????,1234567,,,19900797,,, +2690,INS,,Pangkal Balam R,u,Pangkal Balam (BB-pan),-2.091667,106.15,,1,,10855,84,150,,????-????,1234567,,,19900760,,, +2690,INS,,PKX Jakarta R,u,Jakarta (JK),-6.166667,106.833333,,1,,11259,86,151,,????-????,1234567,,,19900733,,, +2690,INS,,Panjang R,u,Panjang,-5.483333,105.3,,1,,11095,86,151,,????-????,1234567,,,19900759,,, +2690,INS,,Siau R,u,Siau,0.183333,115.516667,,1,,11281,75,151,,????-????,1234567,,,19900780,,, +2690,INS,,PKD33 Bawean R,u,Bawean (JI),-5.841667,112.644444,,1,,11625,81,152,,????-????,1234567,,,19900709,,, +2690,INS,,PKM9 Donggala R,u,Donggala (ST-don),-0.683333,119.75,,1,,11635,72,152,,????-????,1234567,,,19900725,,, +2690,INS,,PKN Balikpapan R,u,Balikpapan (KI-bal),-1.283333,116.833333,,1,,11499,74,152,,????-????,1234567,,,19900704,,, +2690,INS,,PKZ2 Cirebon R,u,Cirebon (JB-cir),-6.733333,108.566667,,1,,11427,85,152,,????-????,1234567,,,19900722,,, +2690,INS,,Pulang Pisau R,u,Pulang Pisau,-2.766667,114.233333,,1,,11459,77,152,,????-????,1234567,,,19900768,,, +2690,INS,,Tahuna R,u,Tahuna (SA-san),3.616667,125.483333,,1,,11605,64,152,,????-????,1234567,,,19900786,,, +2690,INS,,Masalembo R,u,Masalembo,-5.566667,114.416667,,1,,11720,79,153,,????-????,1234567,,,19900750,,, +2690,INS,,Meneng R,u,Ketapang (JI-ban),-8.125833,114.39775,,1,,11944,81,153,,????-????,1234567,,,19900753,,, +2690,INS,,PKD36 Kalianget R,u,Kalianget (JI),-7.05,113.933333,,1,,11818,80,153,,????-????,1234567,,,19900737,,, +2690,INS,,PKD51 Gresik R,u,Gresik (JI-gre),-7.15,112.65,,1,,11740,81,153,,????-????,1234567,,,19900729,,, +2690,INS,,PKM5 Luwuk R,u,Luwuk (ST-bgg),-0.95,122.783333,,1,,11855,69,153,,????-????,1234567,,,19900746,,, +2690,INS,,PKM8 Gorontalo R,u,Gorontalo (GO-grt),0.533333,123.066667,,1,,11737,68,153,,????-????,1234567,,,19900728,,, +2690,INS,,Panarukan R,u,Panarukan,-7.7,113.933333,,1,,11875,81,153,,????-????,1234567,,,19900756,,, +2690,INS,,Poso R,u,Poso (ST-pos),-1.4,120.75,,1,,11765,71,153,,????-????,1234567,,,19900766,,, +2690,INS,,Probolinggo R,u,Probolinggo (JI-pro),-7.75,113.216667,,1,,11831,81,153,,????-????,1234567,,,19900767,,, +2690,INS,,PKD3 Lembar R,u,Lembar,-8.75,116.066667,,1,,12111,80,154,,????-????,1234567,,,19900744,,, +2690,INS,,PKD30 Celukan Bawang R,u,Celukan Bawang (BA),-8.2,114.833333,,1,,11980,80,154,,????-????,1234567,,,19900719,,, +2690,INS,,PKD34 Bima R,u,Bima (NB-bim),-8.466667,118.716667,,1,,12264,77,154,,????-????,1234567,,,19900715,,, +2690,INS,,PKD5 Benoa R,u,Benoa (BA-den),-8.766667,115.216667,,1,,12056,80,154,,????-????,1234567,,,19900713,,, +2690,INS,,Padang Bai R,u,Padang Bai (BA),-8.533333,115.505556,,1,,12055,80,154,,????-????,1234567,,,19900757,,, +2690,INS,,Maumere R,u,Maumere (NT-sik),-8.616667,122.233333,,1,,12510,74,155,,????-????,1234567,,,19900751,,, +2690,INS,,PKD20 Ende R,u,Ende (NT-end),-8.833333,121.65,,1,,12491,75,155,,????-????,1234567,,,19900727,,, +2690,INS,,PKD50 Larantuka R,u,Larantuka (NT),-8.35,122.983333,,1,,12535,74,155,,????-????,1234567,,,19900743,,, +2690,INS,,PKE Ambon R,u,Ambon (MA-amb),-3.716667,128.2,,1,,12450,66,155,,????-????,1234567,,,19900702,,, +2690,INS,,Waingapu R,u,Waingapu (NT),-9.65,120.266667,,1,,12471,77,155,,????-????,1234567,,,19900798,,, +2690,INS,,PKD35 Kalabahi R,u,Kalabahi (NT),-8.216667,124.516667,,1,,12623,72,156,,????-????,1234567,,,19900736,,, +2690,INS,,PKD52 Atapupu R,u,Atapupu (NT-bel),-9,124.85,,1,,12715,72,156,,????-????,1234567,,,19900703,,, +2690,INS,,PKK Kupang R,u,Kupang (NT-kpg),-10.166667,123.583333,,1,,12737,74,156,,????-????,1234567,,,19900741,,, +2690,INS,,PKY2 Biak R,u,Biak (PA-bia),-1.166667,136.1,,1,,12686,57,156,,????-????,1234567,,,19900714,,, +2690,INS,,PKY25 Kaimana R,u,Kaimana (PB-kai),-3.665278,133.761111,,1,,12785,61,156,,????-????,1234567,,,19900738,,, +2690,INS,,PKY33 Bintuni R,u,Bintuni (PB-tlb),-2.116667,133.533333,,1,,12626,60,156,,????-????,1234567,,,19900716,,, +2690,INS,,Tual R,u,Tual,-5.666667,132.75,,1,,12911,63,157,,????-????,1234567,,,19900796,,, +2691,G,,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,????-????,1234567,,,19900549,,, +2691,ALG,,7TA Alger R,u,Algiers (16),36.766667,3.05,,1,,1726,190,74,,????-????,1234567,,,19900013,,, +2693,POR,,CUL Lisbao R,u,Lisbao (lis),38.7,-9.173611,,1,,1916,225,76,,????-????,1234567,,,19901299,,, +2693,TUR,,Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,????-????,1234567,,,19901444,,, +2693,TUR,,Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,????-????,1234567,,,19901430,,, +2694,CUB,,Nuevitas R,u,Nuevitas (cm),21.55,-77.266667,,1,,7710,279,134,,????-????,1234567,,,19900448,,, +2695,UKR,,URL8 Sevastopol' Metro,u,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901476,,, +2700,CYP,,5BA Cyprus R,u,Nicosia (kyp-nic),35.047778,33.283056,,1,,2849,121,85,,0733-0748,1234567,,,19900452,,, +2700,CYP,,5BA Cyprus R,u,Nicosia (kyp-nic),35.047778,33.283056,,1,,2849,121,85,,1533-1548,1234567,,,19900452,,, +2700.4,KOR,,HLP Busan R,u,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,-2700.4,,19900950,,, +2701.4,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.15,,11709,345,161,,????-????,1234567,-2701.4,,19900659,,, +2703,RUS,,Posyet R,c,Posyet,42.65,130.8,,1,,8202,39,139,,????-????,1234567,,,19901363,,, +2705,COG,,TNA Pointe-Noire R,u,Pointe-Noire,-4.794444,11.836111,,1,,6348,174,120,,????-????,1234567,,,19900421,,, +2710,MEX,,XFY Guaymas R,u,Guaymas,27.933333,-110.9,,1,,9236,308,144,,????-????,1234567,,,19901082,,, +2712,MDG,,5RL Antsiranana R,u,Antsiranana (ats),-12.266667,49.283333,,1,,8252,136,140,,????-????,1234567,,,19901053,,, +2712,MDG,,Maintirano R,u,Maintirano (mhj),-18.066667,44.016667,,1,,8609,144,142,,????-????,1234567,,,19901058,,, +2712,MDG,,5RD Tlanaro R,u,Tlanaro=Fort-Dauphin (tln),-25.033333,47,,1,,9442,144,145,,????-????,1234567,,,19901067,,, +2713.4,USA,,San Luis Obispo Sail Mail,p,San Luis Obispo (CA),35.283333,-120.666667,,1,,9025,319,144,,????-????,1234567,-2713.4,,19901557,,, +2716,MHL,,Range Command Centre,u,Kwajalein/Missile Range,9.394447,167.483336,,1,,12941,21,157,,????-????,1234567,,,19901095,,, +2716,ATA,,NGD McMurdo Station Port Control,u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900104,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,0133-0148,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,0303-0318,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,0733-0748,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,0803-0818,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,1203-1218,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,1333-1348,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,1603-1618,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,1933-1948,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,2003-2018,1234567,,,4000027,,, +2719,ALG,,Oran R,u,Oran (31),35.683333,-0.65,,1,,1910,200,76,,????-????,1234567,,,19900018,,, +2719,THA,,Songkhla R,u,Songkhla (sgk),7.191667,100.607222,,1,,9662,82,146,,????-????,1234567,,,19901408,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,0133-0143,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,0533-0543,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,0733-0743,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,0933-0943,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,1033-1043,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,1333-1343,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,1733-1743,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,1933-1943,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,2133-2143,1234567,,,6400030,,, +2720,RUS,,UBR3 Vanino R,u,Vanino (KH),49.083333,140.25,,1,,7947,30,136,,????-????,1234567,,,19901368,,, +2720,RUS,,UBC7 Uglegorsk R,u,Uglegorsk (SL),49.083333,142.033333,,1,,8007,29,137,,????-????,1234567,,,19901367,,, +2720,RUS,,UDB4 Poronaysk R,u,Poronaysk,49.216667,143.116667,,1,,8029,28,137,,????-????,1234567,,,19901362,,, +2720,ATA,,VLV,u,Mawson Station [AUS] (aat),-67.602222,62.875003,,1,,14110,157,161,,????-????,1234567,,,19900098,,, +2720,ATA,,VLZ,u,Davis Station [AUS] (aat),-68.577392,77.982811,,1,,14632,152,162,,????-????,1234567,,,19900091,,, +2720,ATA,,VNJ,u,Casey Station [AUS] (aat),-66.282494,110.526439,,1,,15736,141,166,,????-????,1234567,,,19900087,,, +2720,AUS,,VJM,u,Macquarie Island (TAS),-54.49655,158.941783,,1,,18183,109,174,,????-????,1234567,,,19900168,,, +2720.8,USA,,Corpus Christi Texas Sail Mail,p,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,????-????,1234567,-2720.8,,19901514,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0133-0148,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0333-0348,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0733-0748,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0833-0848,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1233-1248,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1333-1348,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1633-1648,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1933-1948,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,2033-2048,1234567,,,4000016,,, +2722.1,URG,,CWC34 Punta del Este Prefectura R,u,Punta del Este (ma),-34.966667,-54.95,,1,,11362,227,151,,????-????,1234567,-2722.1,,19901492,,, +2722.1,URG,,La Paloma R,u,La Paloma (ro),-34.666667,-54.166667,,1,,11295,227,151,,????-????,1234567,-2722.1,,19901484,,, +2722.1,URG,,Ro Branco R,u,Ro Branco (cl),-32.566667,-53.416667,,1,,11061,228,151,,????-????,1234567,-2722.1,,19901493,,, +2722.1,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,????-????,1234567,-2722.1,,19901483,,, +2722.1,URG,,Montevideo Trouville Metro,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,????-????,1234567,-2722.1,,19901488,,, +2722.1,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,0833-0848,1234567,-2722.1,,19901487,,, +2722.1,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,1603-1618,1234567,-2722.1,,19901487,,, +2722.1,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,2203-2218,1234567,-2722.1,,19901487,,, +2722.1,URG,,Nueva Palmira R,u,Nueva Palmira (co),-33.883333,-58.416667,,1,,11441,230,152,,????-????,1234567,-2722.1,,19901490,,, +2723,BRB,,Barbados Coastguard,u,Spring Garden (smi),13.127778,-59.633333,,1,,7231,259,129,,????-????,1234567,,,19900274,,, +2724,ISL,,TFZ safjrur R,u,safjrur (vf),66.068056,-23.123611,,1,,2253,325,80,,????-????,1234567,,,19900831,,, +2724,FSM,,KUP69 Yap R,u,Yap (yap),9.516667,138.119444,,1,,11766,50,153,,????-????,1234567,,,19900548,,, +2724,PLW,,KUP68 Koror R,u,Koror (kor),7.345833,134.488889,,1,,11781,54,153,,????-????,1234567,,,23200006,,, +2724,FSM,,KUP67 Truk R,u,Truk (chu),7.416667,151.783333,,1,,12624,38,156,,????-????,1234567,,,19900546,,, +2724,FSM,,KUP66 Pohnpei R,u,Pohnpei (pnp),6.983333,158.202778,,1,,12919,32,157,,????-????,1234567,,,19900544,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,0033-0048,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,0730-0745,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,0903-0918,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,1533-1548,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,1635-1650,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,2133-2148,1234567,,,3400020,,, +2730,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900082,,, +2733,S,,SDJ Stockholm R,u,Hrnsand (vn),62.616667,18.05,,1,,1356,26,71,,0733-0748,1234567,,,6800005,,, +2733,S,,SDJ Stockholm R,u,Hrnsand (vn),62.616667,18.05,,1,,1356,26,71,,0833-0848,1234567,,,6800005,,, +2733,S,,SDJ Stockholm R,u,Hrnsand (vn),62.616667,18.05,,1,,1356,26,71,,1533-1548,1234567,,,6800005,,, +2733,S,,SDJ Stockholm R,u,Hrnsand (vn),62.616667,18.05,,1,,1356,26,71,,2033-2048,1234567,,,6800005,,, +2735,TCA,,Turks & Caicos R,u,Grand Turk (gtu),21.505556,-71.133333,,1,,7298,274,130,,????-????,1234567,,,19901400,,, +2735,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1250-1300,1234567,,,33400001,,, +2735,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1850-1900,1234567,,,33400001,,, +2738,TCA,,Turks & Caicos R,u,Grand Turk (gtu),21.505556,-71.133333,,1,,7298,274,130,,????-????,1234567,,,19901401,,, +2738,BAH,,ZFP61 Freeport Harbour Control,u,Freeport,26.533333,-78.7,,1,,7390,284,131,,????-????,1234567,,,19900243,,, +2738,BAH,,Air Sea Rescue,u,-,23.5,-76,,1,,7461,279,132,,????-????,1234567,,,19900249,,, +2738,DOM,,HIA Santo Domingo Piloto R,u,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,????-????,1234567,,,19900495,,, +2738,HTI,,Port-au-Prince R,u,Port-au-Prince (oue),18.558333,-72.35,,1,,7629,273,133,,????-????,1234567,,,19900655,,, +2738,JMC,,Kingston Coastguard R,u,Kingston (kgs),17.934722,-76.843056,,1,,7988,276,137,,????-????,1234567,,,19900928,,, +2738,VEN,,Venezuelan Marinas,u,-,6.5,-66.5,,1,,8275,260,140,,????-????,1234567,,,19901618,,, +2738,PRU,,OBY2 Paita R,u,Paita (piu),-5.083333,-81.116667,,1,,10285,265,148,,????-????,1234567,,,19901316,,, +2738,CHL,,CBA2,u,Arica (TA),-18.483333,-70.333333,,1,,10752,248,149,,????-????,1234567,,,19900316,,, +2738,PRU,,OBC3 Callao R,u,Callao (lim),-12.066667,-77.15,,1,,10630,258,149,,????-????,1234567,,,19901314,,, +2738,CHL,,CBA3,u,Iquique (TA),-20.216667,-70.166667,,1,,10896,247,150,,????-????,1234567,,,19900336,,, +2738,CHL,,CBA Antofagasta R,u,Antofagasta (AN),-23.65,-70.4,,1,,11214,245,151,,????-????,1234567,,,19900315,,, +2738,CHL,,CBA21 Tocopilla R,u,Tocopilla (AN),-22.083333,-70.2,,1,,11063,246,151,,????-????,1234567,,,19900369,,, +2738,CHL,,CBA22 Mejillones R,u,Mejillones (AN),-23.1,-70.45,,1,,11168,246,151,,????-????,1234567,,,19900349,,, +2738,CHL,,CBA23 Chaaral R,u,Chaaral,-26.35,-70.616667,,1,,11465,244,152,,????-????,1234567,,,19900327,,, +2738,CHL,,CBA27 Taltal R,u,Taltal (AN),-25.4,-70.483333,,1,,11373,244,152,,????-????,1234567,,,19900368,,, +2738,CHL,,CBA5,u,Caldera (AT),-27.066667,-70.833333,,1,,11541,243,152,,????-????,1234567,,,19900324,,, +2738,CHL,,CBA24 Huasco R,u,Huasco (AT),-28.466667,-71.216667,,1,,11686,243,153,,????-????,1234567,,,19900335,,, +2738,CHL,,CBA4 Coquimbo R,u,Coquimbo (CO),-29.95,-71.35,,1,,11823,242,153,,????-????,1234567,,,19900329,,, +2738,CHL,,CBA26 Los Vilos R,u,Los Vilos,-31.916667,-71.516667,,1,,12004,241,154,,????-????,1234567,,,19900346,,, +2738,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1235-1250,1234567,,,19900374,,, +2738,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2335-2350,1234567,,,19900374,,, +2738,CHL,,CBV22,u,San Antonio (VS),-33.6,-71.616667,,1,,12154,240,154,,????-????,1234567,,,19900363,,, +2738,CHL,,CBT Talcahuano R,u,Talcahuano (BI),-36.715056,-73.108,,1,,12506,239,155,,0045-0100,1234567,,,19900367,,, +2738,CHL,,CBT Talcahuano R,u,Talcahuano (BI),-36.715056,-73.108,,1,,12506,239,155,,1245-1300,1234567,,,19900367,,, +2738,CHL,,CBT2 Faro Cabo Carranza R,u,Cabo Carranza,-35.560625,-72.617458,,1,,12380,239,155,,????-????,1234567,,,19900320,,, +2738,CHL,,CBT21 Constitucin R,u,Constitucin (ML),-35.333333,-72.416667,,1,,12349,239,155,,????-????,1234567,,,19900328,,, +2738,CHL,,CBT24 Coronel R,u,Coronel (BI),-37.016667,-73.133333,,1,,12533,238,155,,????-????,1234567,,,19900330,,, +2738,CHL,,CBF Juan Fernndez R,u,Juan Fernndez,-33.66475,-78.932167,,1,,12601,245,156,,????-????,1234567,,,19900343,,, +2738,CHL,,CBT25 Lebu R,u,Lebu (BI),-37.616667,-73.65,,1,,12614,238,156,,????-????,1234567,,,19900344,,, +2738,CHL,,CBT4,u,Valdivia (LL),-39.8,-73.233333,,1,,12771,236,156,,????-????,1234567,,,19900371,,, +2738,CHL,,Faro Isla Mocha,u,Isla Mocha (BI),-38.333333,-73.941667,,1,,12690,238,156,,????-????,1234567,,,19900340,,, +2738,CHL,,CBP Puerto Montt R,u,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,1130-1145,1234567,,,19900355,,, +2738,CHL,,CBP Puerto Montt R,u,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,2325-2340,1234567,,,19900355,,, +2738,CHL,,CBP21,u,Castro (LL),-42.466667,-73.8,,1,,13023,235,157,,????-????,1234567,,,19900325,,, +2738,CHL,,CBP23 Ancud R,u,Ancud (LL),-41.866667,-73.816667,,1,,12975,235,157,,????-????,1234567,,,19900314,,, +2738,CHL,,CBP23 Quelln R,u,Quelln (LL),-43.116667,-73.608333,,1,,13065,234,157,,????-????,1234567,,,19900361,,, +2738,CHL,,CBP24 Chaiten R,u,Chaiten,-42.9,-72.666667,,1,,12995,234,157,,????-????,1234567,,,19900326,,, +2738,CHL,,CBP29 Melinka R,u,Melinka,-43.883333,-73.766667,,1,,13136,234,157,,????-????,1234567,,,19900350,,, +2738,CHL,,CBP30 Puerto Cisnes R,u,Puerto Cisnes (AI),-44.747222,-72.697222,,1,,13148,232,157,,????-????,1234567,,,19900353,,, +2738,CHL,,CBP4 Faro Isla Guafo R,u,Isla Guafo,-43.566611,-74.827319,,1,,13169,235,157,,????-????,1234567,,,19900337,,, +2738,CHL,,CBP70 Faro Punta Corona R,u,Punta Corona,-41.784,-73.879833,,1,,12971,235,157,,????-????,1234567,,,19900358,,, +2738,CHL,,Baker R,u,Baker,-47.8,-73.55,,1,,13437,230,158,,????-????,1234567,,,19900319,,, +2738,CHL,,CBM2 Faro Cabo Raper R,u,Cabo Raper,-46.803333,-75.637917,,1,,13470,232,158,,????-????,1234567,,,19900323,,, +2738,CHL,,CBM31 Tortel R,u,Tortel,-47.833333,-73.566667,,1,,13441,230,158,,????-????,1234567,,,19900370,,, +2738,CHL,,CBP3,u,Puerto Aysn (AI),-45.4,-72.7,,1,,13201,232,158,,????-????,1234567,,,19900352,,, +2738,CHL,,CBP31 Puerto Aguirre R,u,Puerto Aguirre,-45.166667,-73.533333,,1,,13227,232,158,,????-????,1234567,,,19900351,,, +2738,CHL,,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,0035-0050,1234567,,,19900348,,, +2738,CHL,,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1235-1250,1234567,,,19900348,,, +2738,CHL,,CBM21 Puerto Edn R,u,Puerto Edn,-49.133333,-74.433333,,1,,13588,230,159,,????-????,1234567,,,19900354,,, +2738,CHL,,CBM22 Puerto Natales R,u,Puerto Natales (MA),-51.733333,-72.516667,,1,,13692,227,159,,????-????,1234567,,,19900356,,, +2738,CHL,,CBM5 Punta Delgada R,u,Punta Delgada,-52.455722,-69.545972,,1,,13603,224,159,,????-????,1234567,,,19900359,,, +2738,CHL,,CBM71 Faro Punta Dngeness R,u,Punta Dngeness,-52.394722,-68.431111,,1,,13546,224,159,,????-????,1234567,,,19900332,,, +2738,CHL,,CBM72 Faro Espiritu Santo R,u,Faro Espiritu Santo,-52.658875,-68.606594,,1,,13575,224,159,,????-????,1234567,,,19900333,,, +2738,CHL,,CBN Cabo de Hornos R,u,Cabo de Hornos,-55.972778,-67.270556,,1,,13775,220,159,,????-????,1234567,,,19900321,,, +2738,CHL,,CBN Wollaston R,u,Isla Wollaston (MA),-55.7,-67.436111,,1,,13761,221,159,,????-????,1234567,,,19900375,,, +2738,CHL,,CBS San Pedro R,u,San Pedro,-47.7,-74.883333,,1,,13500,231,159,,????-????,1234567,,,19900365,,, +2738,CHL,,CBW,u,Puerto Williams (MA),-54.933333,-67.616667,,1,,13709,221,159,,????-????,1234567,,,19900357,,, +2738,ATA,,CBZ20 Baha Fildes R,u,Baha Fildes [CHL] (ssi),-62.210167,-58.935028,,1,,13939,211,160,,0150-0205,1234567,,,19900076,,, +2738,ATA,,CBZ20 Baha Fildes R,u,Baha Fildes [CHL] (ssi),-62.210167,-58.935028,,1,,13939,211,160,,1350-1405,1234567,,,19900076,,, +2738,ATA,,CCZ Base Arturo Prat R,u,Base Naval Capitn Arturo Prat [CHL] (tca),-62.478872,-59.663722,,1,,13987,211,160,,????-????,1234567,,,22400001,,, +2738,CHL,,CBM3 Faro Isotes Evangelistas,u,Faro Islote Evangelistas,-52.386111,-75.097778,,1,,13870,227,160,,????-????,1234567,,,19900341,,, +2738,CHL,,CBM30 Diego Ramrez R,u,Diego Ramrez,-56.516667,-68.700278,,1,,13881,221,160,,????-????,1234567,,,19900331,,, +2738,CHL,,CBM4 Faro Fairway R,u,Faro Islote Fairway,-52.731667,-73.781111,,1,,13830,226,160,,????-????,1234567,,,19900334,,, +2738,CHL,,CBX Bahia Felix R,u,Baha Felix,-52.958611,-74.072778,,1,,13862,226,160,,????-????,1234567,,,19900318,,, +2738,ATA,,CBZ21 Baha Paraso R,u,Baha Paraso [ARG] (aar),-64.824061,-62.8571,,1,,14282,211,161,,????-????,1234567,,,19900077,,, +2738,PAQ,,CBV3 Hanga Roa R,u,Hanga Roa (vlp),-27.151389,-109.438333,,1,,14095,272,161,,????-????,1234567,,,19901318,,, +2738,PAQ,,CBY Isla de Pascua R,u,Hanga Roa (vlp),-27.151389,-109.438333,,1,,14095,272,161,,????-????,1234567,,,19901319,,, +2738,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,,,,,19900874,,, +2740,SDN,,Port Sudan R,u,Bur Sudan=Port Sudan (rs),19.608333,37.236111,,1,,4491,132,102,,????-????,1234567,,,19901379,,, +2742,MDR,,Faial R,u,Faial (md),32.783333,-16.85,,1,,2849,230,85,,????-????,1234567,,,19900226,,, +2742,AZR,,CUG So Miguel R,u,So Miguel (smg),37.766667,-25.5,,1,,2939,250,86,,????-????,1234567,,,19900232,,, +2745,MEX,,XFQ Salina Cruz R,u,Salina Cruz (oax),16.166667,-95.2,,1,,9363,289,145,,????-????,1234567,,,19901091,,, +2746,THA,,HSA7 Bangkok R,u,Bangkok (bmp),13.75,100.516667,,1,,9081,78,144,,????-????,1234567,,,19901406,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,0733-0753,1234567,,,6600002,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,1033-1053,1234567,,,6600002,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,1333-1353,1234567,,,6600002,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,1633-1653,1234567,,,6600002,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,1933-1953,1234567,,,6600002,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,0040-0100,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,0740-0800,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,1440-1500,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,1510-1530,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,2110-2130,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,2140-2200,1234567,,,20109232,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0437-0457,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0847-0907,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0937-0957,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1407-1427,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1737-1757,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,2317-2337,1234567,,,20109273,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,0633-0653,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,1118-1138,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,1218-1238,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,1735-1755,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,1818-1838,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,2333-2353,1234567,,,20109231,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,0110-0130,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,0810-0830,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,1310-1330,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,1540-1600,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,1910-1930,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,2010-2030,1234567,,,20109233,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,0140-0200,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1040-1100,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1240-1300,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1640-1700,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1940-2000,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,2040-2100,1234567,,,20109234,,, +2750,BUL,,LZL Burgas R,u,Burgas (bur),42.5,27.472222,,1,,1903,116,76,,????-????,1234567,,,19900278,,, +2750,JOR,,Aqaba R,u,Aqaba (aqb),29.530556,35,,1,,3434,126,91,,????-????,1234567,,,19900933,,, +2750,KWT,,9KK Kuwait R,u,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901012,,, +2752,GMB,,C5G Banjul R,u,Banjul (bjl),13.45,-16.575,,1,,4762,214,105,,????-????,1234567,,,19900593,,, +2752.9,HOL,,PFC Koninklijke Marine,u,-,52.35,5.125,,1,,91,287,37,,????-????,1234567,-2752.9,,19900653,,, +2755,GMB,,C5G Banjul R,u,Banjul (bjl),13.45,-16.575,,1,,4762,214,105,,????-????,1234567,,,19900594,,, +2755,ASC,,ZBI Ascension Island R,u,Georgetown,-7.925,-14.412222,,1,,6964,203,127,,????-????,1234567,,,19900075,,, +2756,MEX,,XFS Tampico R,u,Tampico (tam),22.277778,-97.8,,1,,8986,295,144,,????-????,1234567,,,19901094,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,0133-0148,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,0333-0348,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,0733-0748,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,0833-0848,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,1233-1248,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,1333-1348,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,1633-1648,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,1933-1948,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,2033-2048,1234567,,,4000025,,, +2759,USA,,San Diego Sail Mail,p,San Diego (CA),32.716667,-117.15,,1,,9107,315,144,,????-????,1234567,,,19901554,,, +2760,TUR,,TAR Zonguldak Turk R,u,Zonguldak (kdz-zon),41.45,31.758333,,1,,2247,112,79,,????-????,1234567,,,19901447,,, +2760,CAN,,VCT Tors Cove R,u,Tors Cove (NL),47.216667,-52.85,,1,,4179,287,99,,????-????,1234567,,,19900309,,, +2760,CUB,,Baracoa R,u,Baracoa (gu),20.35,-74.5,,1,,7624,276,133,,????-????,1234567,,,19900438,,, +2760,CUB,,Santa Cruz del Sur R,u,Santa Cruz del Sur,20.716667,-78,,1,,7830,279,135,,????-????,1234567,,,19900450,,, +2760,CUB,,CLT La Habana R,u,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,0205-0220,1234567,,,19900444,,, +2760,CUB,,CLT La Habana R,u,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,0605-0620,1234567,,,19900444,,, +2760,CUB,,CLT La Habana R,u,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,1405-1420,1234567,,,19900444,,, +2760,CUB,,CLT La Habana R,u,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,1805-1820,1234567,,,19900444,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,0234-0254,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,0634-0654,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,0820-0840,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,1034-1054,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,1434-1454,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,1720-1740,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,1834-1854,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,2234-2254,1234567,,,800001,,, +2765,KWT,,9KK Kuwait R,u,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901013,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,0433-0448,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,0503-0518,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,0833-0848,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,1003-1018,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,1233-1248,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,1603-1618,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,1633-1648,1234567,,,19901324,,, +2768,AUS,,Royal Australian Navy Darwin,u,Darwin (NT),-12.466667,130.833333,,1,,13412,69,158,,????-????,1234567,,,19900141,,, +2768,AUS,,Royal Australian Navy Freemantle,u,Fremantle (WA),-32.05,115.766667,,1,,14038,97,160,,????-????,1234567,,,19900153,,, +2768,AUS,,Royal Australian Navy,u,Cairns (QLD),-16.916667,145.766667,,1,,14732,58,163,,????-????,1234567,,,19900133,,, +2768,AUS,,Royal Australian Navy Nowra,u,Nowra (NSW),-34.883333,150.6,,1,,16602,70,169,,????-????,1234567,,,19900177,,, +2768,AUS,,Royal Australian Navy,u,Canberra (ACT),-35.283333,149.216667,,1,,16544,72,169,,????-????,1234567,,,19900134,,, +2768,AUS,,Royal Australian Navy,u,Sydney (NSW),-33.883333,151.216667,,1,,16561,68,169,,????-????,1234567,,,19900191,,, +2768.5,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0000-0015,1234567,-2768.5,,31200006,,, +2768.5,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1400-1415,1234567,-2768.5,,31200006,,, +2768.5,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1900-1915,1234567,-2768.5,,31200006,,, +2773,ATA,,Scott Base (NZL),u,Scott Base [NZL] (rdp),-77.849283,166.763469,,1,,17045,171,170,,????-????,1234567,,,19900118,,, +2775,ALG,,7TA Alger R,u,Algiers (16),36.766667,3.05,,1,,1726,190,74,,????-????,1234567,,,19900014,,, +2780,POR,,CUL Lisbao R,u,Lisbao (lis),38.7,-9.173611,,1,,1916,225,76,,????-????,1234567,,,19901300,,, +2780,STP,,S9M So Tom R,u,So Tom (sao),0.345833,6.7375,,1,,5756,180,115,,????-????,1234567,,,19901389,,, +2780,CUB,,Isabela de Sagua R,u,Isabela de Sagua,22.933333,-80.016667,,1,,7779,282,135,,????-????,1234567,,,19900445,,, +2782,S,,Kustbevakningen,u,-,62,17.6,,1,,1287,27,70,,????-????,1234567,,,19901378,,, +2782,USA,,Mississippi River System,u,-,37,-119.3,,1,,8798,319,143,,????-????,1234567,,,19901610,,, +2783,CUB,,CLC Cienfuegos R,u,Cienfuegos (cf),22.15,-80.433333,,1,,7873,282,136,,????-????,1234567,,,19900442,,, +2783,CHN,,XSJ Zhanjiang R,u,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,????-????,1234567,,,19900399,,, +2787,F,,FUE Marine Nationale,r,Brest (29),48.4,-4.483333,,1,,876,246,66,,????-????,1234567,,,19900524,,, +2789,S,,SAA Stockholm R,u,Karlskrona (bl),56.166667,15.583333,,1,,748,49,64,,????-????,1234567,,,19901376,,, +2789,F,,FUE Marine Nationale,r,Brest (29),48.4,-4.483333,,1,,876,246,66,,????-????,1234567,,,19900525,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,0133-0148,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,0333-0348,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,0733-0748,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,0833-0848,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,1233-1248,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,1333-1348,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,1633-1648,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,1933-1948,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,2033-2048,1234567,,,4000031,,, +2790,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900083,,, +2792,AUS,,Challis Venture Storage Terminal,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900222,,, +2794,CUB,,Baracoa R,u,Baracoa (gu),20.35,-74.5,,1,,7624,276,133,,????-????,1234567,,,19900439,,, +2794.4,USA,,Friday Harbour Sail Mail,p,Friday Harbor (WA),48.533333,-123.016667,,1,,7844,327,135,,????-????,1234567,-2794.4,,19901518,,, +2795,EST,,ESA Tallinn R,4,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,????-????,1234567,,,19900520,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,0730-0745,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,0903-0918,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,1533-1548,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,1733-1800,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,2133-2148,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,2333-2358,1234567,,,3400021,,, +2800,GEO,,Georgia MRCC,u,-,42.6,43.5,,1,,2949,96,86,,????-????,1234567,,,19900589,,, +2800,ISR,,4XZ Israeli Navy,c,Haifa/Israeli Navy (haf),32.816667,34.983333,,1,,3140,122,88,,????-????,1234567,,,19900853,,, +2800.4,USA,,San Luis Obispo Sail Mail,p,San Luis Obispo (CA),35.283333,-120.666667,,1,,9025,319,144,,????-????,1234567,-2800.4,,19901558,,, +2805,UKR,,UTT Odesa R,u,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,????-????,1234567,,,19901470,,, +2805,UKR,,Mariupol' R,u,Mariupol' (DO),47.1,37.55,,1,,2293,92,80,,????-????,1234567,,,19901465,,, +2805,RUS,,UWT Taganrog R,u,Taganrog (RO),47.216667,38.916667,,1,,2381,90,81,,????-????,1234567,,,19901366,,, +2805,GUI,,3XC6 Conakry R,u,Conakry (cnk),9.508333,-13.711111,,1,,5075,208,108,,????-????,1234567,,,19900631,,, +2805,MEX,,XFL Mazatln R,u,Mazatln (sin),23.216667,-106.416667,,1,,9420,302,145,,????-????,1234567,,,19901088,,, +2806,I,,IGJ41 Marina Militare,r,Augusta (sr),37.216667,15.216667,,1,,1793,154,75,,????-????,1234567,,,19900662,,, +2807.8,USA,,South Daytona Florida Sail Mail,p,South Daytona (FL),29.166667,-81,,1,,7324,287,130,,????-????,1234567,-2807.8,,19901565,,, +2813,JOR,,Aqaba R,u,Aqaba (aqb),29.530556,35,,1,,3434,126,91,,????-????,1234567,,,19900934,,, +2813.3,G,,MTI Royal Navy Plymouth,r,Plymouth (EN-DVN),50.4,-4.133333,,1,,757,260,65,,????-????,1234567,-2813.3,,19900563,,, +2813.3,G,,MTI Royal Navy Plymouth,u,Plymouth (EN-DVN),50.4,-4.133333,,1,,757,260,65,,????-????,1234567,-2813.3,,19900564,,, +2813.9,G,,MTI Royal Navy Plymouth,r,Plymouth (EN-DVN),50.4,-4.133333,,1,,757,260,65,,????-????,1234567,-2813.9,,19900565,,, +2813.9,G,,MTI Royal Navy Plymouth,u,Plymouth (EN-DVN),50.4,-4.133333,,1,,757,260,65,,????-????,1234567,-2813.9,,19900566,,, +2815,B,,Terminal de Petrleo Tramanda,u,Tramanda (RS),-29.966667,-50.133333,,1,,10651,227,149,,????-????,1234567,,,19900241,,, +2816,LBY,,5AB Benghazi R,u,Benghazi (bga),32.116667,20.066667,,1,,2483,148,82,,????-????,1234567,,,19901018,,, +2816,MHL,,KUP65 Majuro R,u,Majuro,7.084722,171.366944,,1,,13279,17,158,,????-????,1234567,,,19901096,,, +2817.5,LTU,,Klaipėda R,2,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,-2817.5,,19901026,,, +2818,SUR,,PZN Paramaribo R,u,Paramaribo (pmb),5.866667,-55.166667,,1,,7583,250,133,,????-????,1234567,,,19901391,,, +2820,CNR,,EAL Las Palmas R,u,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,????-????,1234567,,,19900417,,, +2820,CHN,,XSK4 Haimen R,u,Haimen,23.2,116.616667,,1,,9267,60,145,,????-????,1234567,,,19900384,,, +2822,BAH,,C6N2 Nassau R,u,Nassau (npr),25.05,-77.333333,,1,,7422,281,131,,????-????,1234567,,,19900248,,, +2824,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,????-????,1234567,,,3800014,,, +2824,EGY,,Abu Tig Marina Sail Mail,p,El Gouna/Abu Tig Marina (bar),27.409722,33.675,,1,,3560,130,93,,????-????,1234567,,,19900499,,, +2824,AUS,,VZX Penta Comstat Firefly R,p,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900223,,, +2828.5,CHL,,CEV773 Los Lagos Sail Mail,p,Los Lagos,-39.85,-72.833333,,1,,12753,236,156,,????-????,1234567,-2828.5,,19900345,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,0033-0048,1234567,,,3400022,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,0730-0745,1234567,,,3400022,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,0903-0918,1234567,,,3400022,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,1533-1548,1234567,,,3400022,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,2133-2148,1234567,,,3400022,,, +2830,ATA,,HF Frequency Pool S-098 (SOAR),u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900105,,, +2841,E,,EBA Madrid Naval,c,Madrid (MAD-M),40.4,-3.683333,,1,,1513,215,72,,????-????,1234567,,,19900496,,, +2843,MDR,,CUB Madeira R,u,Funchal (md),32.641944,-16.9175,,1,,2865,230,86,,????-????,1234567,,,19901079,,, +2845,HOL,,PBB Koninklijke Marine,r,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,,,19900646,,, +2850,KRE,ko,KCBS Chosun Jungang Pangsong,,Pyongyang (pyo),39.153611,125.751389,,50,ND,8299,45,123,,2000-1800,1234567,,,50013416,,, +2857.5,DNK,,OUA32 Kongelige Danske Marine,c,-,56.3,11.6,,1,,575,34,63,,????-????,1234567,-2857.5,,19900492,,, +2863,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:10-:14,1234567,,,31400001,,, +2863,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:40-:44,1234567,,,31400001,,, +2863,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:15-:18,1234567,,,33800002,,, +2863,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:45-:48,1234567,,,33800002,,, +2863,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:25-:39,1234567,,,20000093,,, +2863,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:55-:09,1234567,,,20000093,,, +2869,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:00-:04,1234567,,,6700025,,, +2869,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:30-:34,1234567,,,6700025,,, +2869,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:15-:19,1234567,,,6700033,,, +2869,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:45-:49,1234567,,,6700033,,, +2869,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:05-:09,1234567,,,6700029,,, +2869,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:35-:39,1234567,,,6700029,,, +2869,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:20-:24,1234567,,,6700018,,, +2869,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:50-:54,1234567,,,6700018,,, +2869,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:10-:14,1234567,,,6700021,,, +2869,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:40-:44,1234567,,,6700021,,, +2869,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012424,,, +2869,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,0400-1800,1234567,,,20012447,,, +2872,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,2000-0900,1234567,,,4100019,,, +2872,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,2100-1000,1234567,,,4200005,,, +2872,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109254,,, +2872,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200024,,, +2878,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700097,,, +2878,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100001,,, +2878,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500002,,, +2881,ARG,es,Ezeiza Volmet,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,:15-:25,1234567,,,33000042,,, +2887,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2030-0830,1234567,,,20012408,,, +2887,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400004,,, +2887,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902900,,, +2899,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,2000-0900,1234567,,,4100016,,, +2899,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,2100-1000,1234567,,,4200002,,, +2899,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109255,,, +2899,INS,id,RPDT2 Ngada,,Bajawa (NT-nga),-8.783333,120.983333,,0.5,,12442,76,158,,1000-1355,1234567,,,35400021,,, +2905,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500003,,, +2905,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700098,,, +2909,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100011,,, +2910,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400005,,, +2922,ISR,,4XZ Israeli Navy,c,Tel Aviv/Israeli Navy (tav),32.066667,34.766667,,1,,3193,123,89,,????-????,1234567,,,19900857,,, +2932,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,0800-2000,1234567,,,20012445,,, +2941,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:05-:09,1234567,,,6700013,,, +2941,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:35-:39,1234567,,,6700013,,, +2941,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:25-:29,1234567,,,6700037,,, +2941,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:55-:59,1234567,,,6700037,,, +2944,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100010,,, +2944,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500020,,, +2960,INS,id,RPDT 2 Manggarai,,Ruteng (NT-man),-8.666667,120.45,,0.3,,12397,76,160,,0900-1400,1234567,,,40000022,,, +2960,INS,id,RPDT 2 Manggarai,,Ruteng (NT-man),-8.666667,120.45,,0.3,,12397,76,160,,2130-2300,1234567,,,40000022,,, +2962,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,0000-0800,1234567,,,700005,,, +2962,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2030-0830,1234567,,,20012391,,, +2965,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,1515-0120,1234567,,,31500006,,, +2965,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:16-:19,1234567,,,31500006,,, +2965,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:46-:49,1234567,,,31500006,,, +2965,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:25-:29,1234567,,,32200003,,, +2965,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:55-:59,1234567,,,32200003,,, +2965,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,1305-0240,1234567,,,32200006,,, +2965,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:05-:09,1234567,,,32200006,,, +2965,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:35-:39,1234567,,,32200006,,, +2965,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1210-2245,1234567,,,32900003,,, +2965,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:10-:15,1234567,,,32900003,,, +2965,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:40-:45,1234567,,,32900003,,, +2971,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0100-0800,1234567,,,4100026,,, +2971,NOR,en,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,1600-0800,1234567,,,6300017,,, +2971,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,2100-1000,1234567,,,4200006,,, +2971,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109267,,, +2983,NOR,,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,,,,,6300022,,, +2983,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500008,,, +2986,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900003,,, +2992,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900011,,, +2998,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,1000-2200,1234567,,,20012444,,, +2998,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012497,,, +3000,ATA,,DGPS Corrections,,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900106,,, +3007,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,????-????,1234567,,,32500037,,, +3011,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901038,,, +3016,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,2000-0900,1234567,,,4100017,,, +3016,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,2100-0800,1234567,,,700004,,, +3016,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109266,,, +3016,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2030-0830,1234567,,,20012388,,, +3016,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300010,,, +3023,HOL,,Den Helder SAR,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,,,19900647,,, +3023,IRL,en,Shanwick SAR,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,????-????,1234567,,,4100035,,, +3023,G,,United Kingdom Coastguard,u,-,55.55,-2.65,,1,,706,306,64,,????-????,1234567,,,19900582,,, +3023,NOR,,Bod SAR,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,????-????,1234567,,,6300026,,, +3023,MLA,,9MG25 Pinang R,u,Pulau Pinang (ppn),5.419444,100.341667,,1,,9800,84,146,,????-????,1234567,,,19901097,,, +3023,URG,,CWM30,u,-,-32.5,-55.71,,1,,11172,229,151,,????-????,1234567,,,19901495,,, +3023,FJI,,Nadi SAR,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,????-????,1234567,,,22500011,,, +3023,ATA,,VLV,u,Mawson Station [AUS] (aat),-67.602222,62.875003,,1,,14110,157,161,,????-????,1234567,,,19900099,,, +3023,ATA,,VNJ,u,Casey Station [AUS] (aat),-66.282494,110.526439,,1,,15736,141,166,,????-????,1234567,,,19900088,,, +3023,AUS,,VJM,u,Macquarie Island (TAS),-54.49655,158.941783,,1,,18183,109,174,,????-????,1234567,,,19900169,,, +3024,DNK,,RCC Karup,u,Karup (mjy),56.308333,9.169444,,1,,500,20,62,,????-????,1234567,,,19900486,,, +3025.6,KRE,ko,Chonyon Chobyong Durulwihan Pangsong,,Pyongyang (pyo),39.046706,125.694311,,15,,8306,45,128,,0830-1030,1234567,-3025.6,,40000023,,, +3025.6,KRE,ko,Chonyon Chobyong Durulwihan Pangsong,,Pyongyang (pyo),39.046706,125.694311,,15,,8306,45,128,,2030-2330,1234567,-3025.6,,40000023,,, +3031,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901039,,, +3046,RUS,,Krasnoyarsk Aero,u,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700107,,, +3054,DNK,,RCC Karup,u,Karup (mjy),56.308333,9.169444,,1,,500,20,62,,????-????,1234567,,,19900487,,, +3102,ATA,,NGD McMurdo Station Air to Ship,u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900107,,, +3107,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900875,,, +3111,LVA,,Latvijas Krasta Apsardzes,u,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,,,19901047,,, +3116,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:00-:04,1234567,,,6700042,,, +3116,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:30-:34,1234567,,,6700042,,, +3116,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:25-:29,1234567,,,6700058,,, +3116,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:55-:59,1234567,,,6700058,,, +3116,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:10-:14,1234567,,,6700046,,, +3116,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:40-:44,1234567,,,6700046,,, +3116,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:20-:24,1234567,,,6700054,,, +3116,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:50-:54,1234567,,,6700054,,, +3116,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:15-:19,1234567,,,6700050,,, +3116,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:45-:49,1234567,,,6700050,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0000-0010,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0035-0040,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0335-0340,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0635-0640,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0805-0815,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0935-0940,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1235-1240,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1305-1315,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1535-1540,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1805-1815,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1835-1840,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,2135-2140,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,2305-2315,1234567,,,3500005,,, +3128,HOL,,PBV Koninklijke Marine,r,Valkenburg (lim),50.866667,5.833333,,1,,144,196,56,,????-????,1234567,,,19900652,,, +3160,UKR,,Sevastopol' R 3,u,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901477,,, +3160,RUS,,UGH2 Yuzhno-Sakhalinsk R,c,Yuzhno-Sakhalinsk (SL),46.966667,142.733333,,1,,8241,29,139,,????-????,1234567,,,19901374,,, +3160,RUS,,RSSZ/UNB4,c,Korsakov (SL),46.633333,142.783333,,1,,8276,29,140,,????-????,1234567,,,19901346,,, +3162,SHN,,ZHH Saint Helena R,u,Jamestown (shl),-15.919444,-5.716667,,1,,7655,193,134,,????-????,1234567,,,19901382,,, +3164,USA,,Seawave Communications,p,Burrillville (RI),41.916667,-71.716667,,1,,5737,292,114,,????-????,1234567,,,19901505,,, +3165,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1250-1300,1234567,,,33400002,,, +3165,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1850-1900,1234567,,,33400002,,, +3165,RUS,,UFL Vladivostok R,r,Vladivostok (PM),43.133333,131.9,,1,,8204,38,139,,????-????,1234567,,,19901371,,, +3172.5,I,,Roma Metro,r,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,-3172.5,,19900675,,, +3172.6,PRU,,R Municipal Marcawana,,Panao (huc),-9.9,-75.95,,1,,10360,258,148,,0900-1300,1234567,-3172.6,,40000024,,, +3175,GRL,,OZW Qaanaaq R,u,Qaanaaq=Thule (qaa-qaq),77.468697,-69.209778,,1,,4063,339,98,,????-????,1234567,,,3500015,,, +3175,ATA,,VLV,u,Mawson Station [AUS] (aat),-67.602222,62.875003,,1,,14110,157,161,,????-????,1234567,,,19900100,,, +3175,ATA,,VLZ,u,Davis Station [AUS] (aat),-68.577392,77.982811,,1,,14632,152,162,,????-????,1234567,,,19900092,,, +3175,ATA,,VNJ,u,Casey Station [AUS] (aat),-66.282494,110.526439,,1,,15736,141,166,,????-????,1234567,,,19900089,,, +3175,AUS,,VJM,u,Macquarie Island (TAS),-54.49655,158.941783,,1,,18183,109,174,,????-????,1234567,,,19900170,,, +3180,INS,,Sabang R,u,Sabang (AC-sab),5.9,95.316667,,1,,9416,87,145,,????-????,1234567,,,19900771,,, +3180,INS,,PKB29 Gunungsitoli R,u,Gunungsitoli (SU-nia),1.283333,97.616667,,1,,9977,88,147,,????-????,1234567,,,19900730,,, +3180,INS,,PKB30 Lahewa R,u,Lahewa (SU),1.4,97.183333,,1,,9937,89,147,,????-????,1234567,,,19900742,,, +3180,INS,,Sibolga R,u,Sibolga (SU-sib),1.75,98.8,,1,,10017,87,147,,????-????,1234567,,,19900782,,, +3180,INS,,Teluk Dalam R,u,Teluk Dalam (SU),0.566667,97.816667,,1,,10054,89,147,,????-????,1234567,,,19900792,,, +3180,INS,,PKP38 Batu Ampar R,u,Batu Ampar (KR-bat),1.166667,104.025,,1,,10424,83,148,,????-????,1234567,,,19900708,,, +3180,INS,,Pulau Sambu R,u,Pulau Sambu (KR-bat),1.141667,103.922222,,1,,10419,83,148,,????-????,1234567,,,19900762,,, +3180,INS,,Selat Panjang R,u,Selat Panjang,1,102.716667,,1,,10350,84,148,,????-????,1234567,,,19900776,,, +3180,INS,,Tanjung Balai Karimum R,u,Tanjung Balai Karimum (KR-kar),0.994444,103.413889,,1,,10398,84,148,,????-????,1234567,,,19900799,,, +3180,INS,,Tanjung Uban R,u,Tanjung Uban (KR-tjp),1.066667,104.216667,,1,,10446,83,148,,????-????,1234567,,,19900800,,, +3180,INS,,Dabo Singkep R,u,Dabo Singkep (KR-lin),-0.575,104.441667,,1,,10606,84,149,,????-????,1234567,,,19900724,,, +3180,INS,,PKC3 Jambi R,u,Jambi (JA-jam),-1.6,103.616667,,1,,10640,85,149,,????-????,1234567,,,19900734,,, +3180,INS,,PKC53 Bengkulu R,u,Bengkulu (BE-bku),-3.8,102.266667,,1,,10741,88,149,,????-????,1234567,,,19900711,,, +3180,INS,,Rengat R,u,Rengat,-0.4,102.55,,1,,10462,85,149,,????-????,1234567,,,19900769,,, +3180,INS,,Tanjung Pinang R,u,Tanjung Pinang (KR-tjp),0.916667,104.45,,1,,10475,83,149,,????-????,1234567,,,19900787,,, +3180,INS,,Tembilahan R,u,Tembilahan,-0.316667,103.15,,1,,10495,85,149,,????-????,1234567,,,19900793,,, +3180,INS,,Pontianak R,u,Pontianak (KB-ptk),-0.033333,109.333333,,1,,10888,80,150,,????-????,1234567,,,19900765,,, +3180,INS,,PKZ34 Cigading R,u,Cilegon (BT-cil),-6.016667,106.041667,,1,,11192,86,151,,????-????,1234567,,,19900720,,, +3180,INS,,Sampit R,u,Sampit (KT),-2.533333,112.95,,1,,11353,78,151,,????-????,1234567,,,19900774,,, +3180,INS,,Sunda Kelapa R,u,Sunda Kelapa,-6.116667,106.8,,1,,11253,86,151,,????-????,1234567,,,19900784,,, +3180,INS,,Tarakan R,u,Tarakan (KU-tar),3.3,117.633333,,1,,11138,71,151,,????-????,1234567,,,19900788,,, +3180,INS,,Teluk Bayur R,u,Teluk Bayur,2.15,117.4,,1,,11227,72,151,,????-????,1234567,,,19900791,,, +3180,INS,,PKG Banjarmasin R,u,Banjarmasin (KS-kbm),-3.333333,114.583333,,1,,11533,78,152,,????-????,1234567,,,19900707,,, +3180,INS,,PKR3 Cilacap R,u,Cilacap (JT-cil),-7.733333,109,,1,,11544,85,152,,????-????,1234567,,,19900721,,, +3180,INS,,PKZ2 Cirebon R,u,Cirebon (JB-cir),-6.733333,108.566667,,1,,11427,85,152,,????-????,1234567,,,19900723,,, +3180,INS,,Samarinda R,u,Samarinda (KI-sam),-0.5,117.15,,1,,11449,74,152,,????-????,1234567,,,19900773,,, +3180,INS,,Semarang R,u,Semarang (JT-kse),-6.966667,110.416667,,1,,11573,83,152,,????-????,1234567,,,19900778,,, +3180,INS,,Tegal R,u,Tegal (JT-kte),-6.866667,109.133333,,1,,11477,84,152,,????-????,1234567,,,19900789,,, +3180,INS,,Toli-Toli R,u,Toli-Toli (ST-tol),1.05,120.816667,,1,,11547,70,152,,????-????,1234567,,,19900795,,, +3180,INS,,Manado R,u,Manado (SA-man),1.5,124.85,,1,,11761,66,153,,????-????,1234567,,,19900752,,, +3180,INS,,Meneng R,u,Ketapang (JI-ban),-8.125833,114.39775,,1,,11944,81,153,,????-????,1234567,,,19900754,,, +3180,INS,,Parigi R,u,Parigi (ST),-0.816667,120.183333,,1,,11675,71,153,,????-????,1234567,,,19900761,,, +3180,INS,,PKF25 Banabungi R,u,Banabungi (SN-waj),-5.504167,122.519444,,1,,12250,72,154,,????-????,1234567,,,19900705,,, +3180,INS,,PKF3 Kendari R,u,Kendari (SG-ken),-3.95,122.5,,1,,12108,71,154,,????-????,1234567,,,19900739,,, +3180,INS,,Ternate R,u,Ternate (MU-ter),0.8,127.4,,1,,11983,64,154,,????-????,1234567,,,19900794,,, +3180,INS,,Manokwari R,u,Manokwari (PB-man),-0.866667,134.083333,,1,,12541,59,155,,????-????,1234567,,,19900748,,, +3180,INS,,Sorong R,u,Sorong (PB-srg),-0.883333,131.25,,1,,12374,62,155,,????-????,1234567,,,19900775,,, +3180,INS,,Serui R,u,Serui (PA-yap),-1.883333,136.233333,,1,,12762,58,156,,????-????,1234567,,,19900779,,, +3180,INS,,Merauke R,u,Merauke (PA-mer),-8.461111,140.333333,,1,,13623,58,159,,????-????,1234567,,,19900749,,, +3185,USA,en,Overcomer Ministry,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,,0000-1200,1234567,,,20016302,,, +3185,USA,,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,1,,7115,295,128,NAm,0000-1300,1234567,,,50022258,,, +3185,USA,,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,1,,7115,295,128,NAm,2245-1300,1234567,,,50022258,,, +3190,UKR,,Mariupol' R,c,Mariupol' (DO),47.1,37.55,,1,,2293,92,80,,????-????,1234567,,,19901466,,, +3192,RUS,,RMP CIS Baltic Fleet,c,Kaliningrad (KA),54.716667,20.5,,1,,976,67,67,,????-????,1234567,,,19901339,,, +3192,NZL,,Royal New Zealand Navy,u,Auckland (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901160,,, +3192,NZL,,Royal New Zealand Navy,u,Irirangi,-39.533333,175.666667,,1,,18391,35,175,,????-????,1234567,,,19901183,,, +3195,USA,,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,0200-0500,1234567,,,50017601,,, +3195,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900084,,, +3200,SWZ,Nda,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,,1645-1700,1234567,,,50010798,,, +3200,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,,0400-0430,12345..,,,50010798,,, +3200,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0400-0430,1234567,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,9,1745-2000,12345..,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0255-0325,......7,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,1745-2045,1234567,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,9,9062,157,127,,1700-2030,.....67,,,50010798,,, +3200,SWZ,nd,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0255-0310,.....6.,,,50010798,,, +3200,SWZ,nd,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0255-0325,12345..,,,50010798,,, +3200,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,25,233,9062,157,130,,0400-0500,.....67,,,50010798,,, +3200,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,25,233,9062,157,130,SAf,0430-0500,.....67,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,25,233,9062,157,130,SAf,0430-0500,12345..,,,50010798,,, +3202,IRN,,EQM Bushehr R,u,Bushehr (bus),28.962225,50.822794,,1,,4448,108,101,,????-????,1234567,,,19900813,,, +3205,PNG,,NBC Kundu-R Sandaun,,Vanimo (san),-2.666667,141.333333,,10,,13124,53,147,,0700-1300,1234567,97,,40000026,,, +3205,PNG,,NBC Kundu-R Sandaun,,Vanimo (san),-2.666667,141.333333,,10,,13124,53,147,,1900-2200,1234567,97,,40000026,,, +3208,ATA,,HF Frequency Pool S-098 (SOAR),u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900108,,, +3210,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901027,,, +3210,RUS,,UDJ Mezen R,u,Mezen,65.85,44.233333,,1,,2588,39,83,,????-????,1234567,,,19901351,,, +3210,AUS,en,Vintage FM,,Razorback (NSW),-33.466667,138.95,,0.25,,15724,80,172,,,,,,37700162,,, +3215,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901028,,, +3215,USA,,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,2100-0100,1234567,,,50011355,,, +3215,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,46,7122,296,108,NAm,0200-1100,1234567,,,50009581,,, +3215,USA,en,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,0030-0100,1234567,,,50011355,,, +3215,USA,en,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,0100-0200,1234567,,,50011355,,, +3215,MDG,mg,Adventist World R,,Talata-Volonondry (tan),-18.751667,47.614444,,50,20,8830,141,126,EAf,0230-0330,1234567,,,50010137,,, +3216,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901040,,, +3220,KRE,ko,KCBS Chosun Jungang Pangsong,,Hamhung (han),39.9,127.583333,,5,ND,8316,43,133,,2000-1800,1234567,86,,50015961,,, +3220,PNG,,NBC R Morobe,,Lae/Bubia (mrb),-6.675872,146.907383,,10,25,13813,50,150,,0700-1300,1234567,,,40000033,,, +3220,PNG,,NBC R Morobe,,Lae/Bubia (mrb),-6.675872,146.907383,,10,25,13813,50,150,,1900-2200,1234567,,,40000033,,, +3222,UKR,,RCV Black Sea Fleet HQ,c,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901478,,, +3230,DNK,,OVF Kongelige Danske Marine,u,Stevns (sjl),55.322222,12.445833,,1,,534,46,62,,????-????,1234567,,,19900491,,, +3230,DNK,,OVK Kongelige Danske Marine,u,Aarhus (arh),56.15,10.216667,,1,,513,27,62,,????-????,1234567,,,19900481,,, +3230,DNK,,OVG Kongelige Danske Marine,u,Frederikshavn (njy),57.445833,10.55,,1,,650,22,63,,????-????,1234567,,,19900484,,, +3230,EST,,ESP Prnu R,u,Prnu (Pae),58.375,24.516667,,1,,1336,52,70,,????-????,1234567,,,19900517,,, +3232,INS,id,RRI Pro-1,,Bukittinggi (SB-buk),-0.416667,100.466667,,2.5,,10321,87,144,,1030-1700,1234567,,,40000038,,, +3232,INS,id,RRI Pro-1,,Bukittinggi (SB-buk),-0.416667,100.466667,,2.5,,10321,87,144,,2200-0300,1234567,,,40000038,,, +3234.9,PRU,,OAW3A R Luz y Sonido,,Hunuco (huc),-9.916667,-76.183333,,1,,10377,258,148,,0900-0300,123456,-3234.9,,40000039,,, +3235,PNG,,NBC R West New Britain,,Kimbe (wnb),-5.555017,150.160428,,10,,13867,46,150,,0700-1300,1234567,,,40000040,,, +3235,PNG,,NBC R West New Britain,,Kimbe (wnb),-5.555017,150.160428,,10,,13867,46,150,,1900-2200,1234567,,,40000040,,, +3240,SWZ,NDA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,ZWE,0325-0340,1234567,,,50010799,,, +3240,SWZ,sn,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,ZWE,0255-0325,1234567,,,50010799,,, +3241,CHN,,BDF2,f,Shanghai (SH),31.216667,121.45,,1,,8811,52,143,,????-????,1234567,,,19900392,,, +3247,ATA,,Ship Tactical,u,-,-70,0,,1,,13588,183,159,,????-????,1234567,,,19900121,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0945-1000,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1045-1100,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1145-1200,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1245-1300,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1345-1400,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1445-1500,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1545-1600,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1645-1700,1234567,-3247.4,,19901164,,, +3250,GRL,,OZW Qaanaaq R,u,Qaanaaq=Thule (qaa-qaq),77.468697,-69.209778,,1,,4063,339,98,,????-????,1234567,,,3500016,,, +3250,KRE,de,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,1600-1700,1234567,,,50007357,,, +3250,KRE,en,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,0400-0500,1234567,,,50007357,,, +3250,KRE,en,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,0600-0700,1234567,,,50007357,,, +3250,KRE,ja,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,J,0700-1300,1234567,,,50007357,,, +3250,KRE,ja,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,J,2100-2400,1234567,,,50007357,,, +3250,KRE,ko,KCBS Pyongyang Pangsong,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,1800-2000,1234567,,,50007357,,, +3250,KRE,ko,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,0300-0400,1234567,,,50007357,,, +3250,KRE,ko,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,ND,8299,45,120,,1300-1400,1234567,,,50007357,,, +3250,KRE,ko,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,ND,8299,45,120,,2000-2100,1234567,,,50007357,,, +3250,KRE,ru,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,1400-1600,1234567,,,50007357,,, +3250,KRE,ru,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,1700-1800,1234567,,,50007357,,, +3250,KRE,zh,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,0500-0600,1234567,,,50007357,,, +3250.01,HND,es,HRCP R Luz y Vida,,San Lus Pajon (bar),15.083333,-88.383333,,1,,9011,283,144,,1100-1600,1234567,1,,40000044,,, +3251.1,CAN,,VFF Iqaluit Coastguard,f,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,2100-2330,9999999,-3251.1,,19900288,,, +3251.1,CAN,,VFR Resolute Coastguard,f,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,0010-0900,9999999,-3251.1,,19900295,,, +3255,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,SAf,0500-0600,1234567,,,50009582,,, +3255,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,SAf,1600-2000,1234567,,,50009582,,, +3260,PNG,,NBC R Madang,,Madang (ehd),-5.218889,145.806111,,10,,13613,50,149,,0700-1400,1234567,995,,40000048,,, +3260,PNG,,NBC R Madang,,Madang (ehd),-5.218889,145.806111,,10,,13613,50,149,,1900-2200,1234567,995,,40000048,,, +3260,EQA,es,La Voz del Carrizal,,Calceta (man),-0.85,-80.166667,,0.3,,9849,267,152,,1130-0400,1234567,,,32600004,,, +3264.4,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,1900-2400,1234567,-3264.4,,6800018,,, +3275,PNG,,NBC R.Southern Highlands,,Mendi (shd),-6.166667,143.666667,,10,,13590,53,149,,0700-1300,1234567,992,,40000053,,, +3275,PNG,,NBC R.Southern Highlands,,Mendi (shd),-6.166667,143.666667,,10,,13590,53,149,,1900-2200,1234567,992,,40000053,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0000-0010,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0035-0040,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0335-0340,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0635-0640,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0805-0815,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0935-0940,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1235-1240,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1305-1315,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1535-1540,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1805-1815,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1835-1840,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,2135-2140,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,2305-2315,1234567,,,3500007,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0000-0010,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0035-0040,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0335-0340,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0635-0640,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0805-0815,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0935-0940,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1235-1240,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1305-1315,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1535-1540,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1805-1815,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1835-1840,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,2135-2140,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,2305-2315,1234567,,,3500006,,, +3280,UZB,,Toshkent 2,f,Toshkent (tkt),41.316667,69.25,,1,,4779,79,105,,????-????,1234567,,,19901611,,, +3280,EQA,es,HCVN7 La Voz del Napo,,Tena (nap),-1,-77.8,,2.5,,9701,265,142,,0700-1230,1234567,9,,40000054,,, +3280,EQA,es,HCVN7 La Voz del Napo,,Tena (nap),-1,-77.8,,2.5,,9701,265,142,,2200-0500,1234567,9,,40000054,,, +3280,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900085,,, +3280.5,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,????-????,1234567,-3280.5,,19900562,,, +3282,CLM,,HKC Buenaventura R,u,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900413,,, +3287.7,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,10,,8843,141,133,,0300-0500,1234567,-3287.7,,40000057,,, +3287.7,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,10,,8843,141,133,,1500-1900,1234567,-3287.7,,40000057,,, +3287.7,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,10,,8843,141,133,,1900-2100,1.....7,-3287.7,,40000057,,, +3290,GUY,en,BBC WS,,Vreed en Hoop (dem),6.766583,-58.231539,,5,,7701,254,127,GUY,0400-0800,1234567,,,50010138,,, +3290,GUY,en,NCN Voice of Guyana/BBC WS,,Vreed en Hoop (dem),6.766583,-58.231539,,5,,7701,254,127,,2200-0400,1234567,99,,40000060,,, +3290,EQA,es,R Centro Ambato,,Ambato (tun),-1.25,-78.616667,,0.5,,9778,265,149,,0800-0400,1234567,,,32600005,,, +3290,PNG,,NBC Karai National R,,Port Moresby/Waigani (ncd),-9.429167,147.183611,,10,25,14096,51,151,,0700-1300,1234567,998,,40000059,,, +3290,PNG,,NBC Karai National R,,Port Moresby/Waigani (ncd),-9.429167,147.183611,,10,25,14096,51,151,,1900-2200,1234567,998,,40000059,,, +3291,ISR,he,GalGalatz,u,unknown,31.5,34.75,,1,,3243,124,89,,,,,,4300014,,, +3303,CHN,zh,Zhoushan Maritime Meteo,u,Putuoshanzhen (ZJ),29.980556,122.386111,,1,,8975,52,144,,0000-0005,1234567,,,36201273,,, +3303,CHN,zh,Zhoushan Maritime Meteo,u,Putuoshanzhen (ZJ),29.980556,122.386111,,1,,8975,52,144,,0300-0305,1234567,,,36201273,,, +3303,CHN,zh,Zhoushan Maritime Meteo,u,Putuoshanzhen (ZJ),29.980556,122.386111,,1,,8975,52,144,,1100-1105,1234567,,,36201273,,, +3305,PNG,,NBC R Western,,Daru (wes),-9.066667,143.2,,10,,13844,55,150,,0700-1300,1234567,97,,40000062,,, +3305,PNG,,NBC R Western,,Daru (wes),-9.066667,143.2,,10,,13844,55,150,,1900-2200,1234567,97,,40000062,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,0233-0243,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,0633-0643,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,1033-1043,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,1433-1443,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,1833-1843,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,2233-2243,1234567,,,2400003,,, +3310,EST,,Tallinn-Kopli MRSCC,u,Tallinn/Kopli (Har),59.463889,24.656944,,1,,1396,47,71,,????-????,1234567,,,19900521,,, +3310,UKR,,UTT Odesa R,u,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,0000-0100,1234567,,,8100014,,, +3310,BOL,qu,R Mosoj Chaski,,Cochabamba (cbb),-17.366667,-66.166667,,10,,10390,246,138,,0830-1300,1234567,97,,40000064,,, +3310,BOL,qu,R Mosoj Chaski,,Cochabamba (cbb),-17.366667,-66.166667,,10,,10390,246,138,,2100-0130,1234567,97,,40000064,,, +3315,PNG,,NBC Karai-R Manus,,Lorengau (mns),-2.028056,147.279444,,10,,13373,47,148,,0700-1300,1234567,997,,40000065,,, +3315,PNG,,NBC Karai-R Manus,,Lorengau (mns),-2.028056,147.279444,,10,,13373,47,148,,1900-2200,1234567,997,,40000065,,, +3317,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,????-????,1234567,,,2500020,,, +3319,ATA,,Ship Tactical,u,-,-70,0,,1,,13588,183,159,,????-????,1234567,,,19900122,,, +3319.7,KRE,ko,KCBS Pyongyang Pangsong,,Pyongyang (pyo),39.046706,125.694311,,50,,8306,45,123,,2100-1900,1234567,-3319.7,,40000066,,, +3320,AFS,af,SABC R Sonder Grense,,Meyerton (SABC) (GT),-26.600933,28.140833,,100,275,9005,160,124,,1700-0500,1234567,996,,40000067,,, +3325,B,pt,ZYG867 Rdio Mundial,,Guarulhos (SP),-23.433333,-46.416667,,2.5,,9838,227,142,,0600-2359,1234567,,,40000071,,, +3325,INS,id,RRI Pro-1,,Palangkaraya (KT-kpr),-2.189517,113.896383,,10,,11385,77,142,,0800-1700,1234567,999,,40000069,,, +3325,INS,id,RRI Pro-1,,Palangkaraya (KT-kpr),-2.189517,113.896383,,10,,11385,77,142,,2000-2155,9999999,999,,40000069,,, +3325,INS,id,RRI Pro-1,,Palangkaraya (KT-kpr),-2.189517,113.896383,,10,,11385,77,142,,2155-0200,1234567,999,,40000069,,, +3325,PNG,,NBC R Bougainville,,Kubu (Buka Island) (bgv),-5.402778,154.680556,,5,,14062,41,153,,0730-1200,1234567,0,,40000070,,, +3325,PNG,,NBC R Bougainville,,Kubu (Buka Island) (bgv),-5.402778,154.680556,,5,,14062,41,153,,1955-2200,1234567,0,,40000070,,, +3330,CAN,,CHU,,Ottawa (ON),45.295556,-75.757222,,3,,5749,297,110,,0000-2400,1234567,,,20100015,,, +3330,PRU,es,OAX3Q Ondas del Huallaga,,Hunuco/Moras Pampas (huc),-9.916667,-76.183333,,5,,10377,258,141,,0930-0500,1234567,5,,40000072,,, +3331,COM,,Moroni Metro,u,Moroni,-11.7,43.255556,,1,,7924,142,136,,????-????,1234567,,,19900422,,, +3335,PNG,,NBC R East Sepik,,Wewak (ese),-3.583333,143.666667,,10,,13340,51,148,,0700-1300,1234567,970,,40000073,,, +3335,PNG,,NBC R East Sepik,,Wewak (ese),-3.583333,143.666667,,10,,13340,51,148,,1900-2200,1234567,970,,40000073,,, +3340,HND,es,HRMI LV de Misiones Internacionales,,Comayagela (gra),15.2,-83.85,,1,,8697,280,143,,1200-0500,1234567,98,,40000074,,, +3345,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,0300-0400,12345..,,,50003895,,, +3345,INS,id,RRI Pro-1,,Ternate (MU-ter),0.764761,127.368739,,10,,11985,64,144,,0750-1515,1234567,873,,40000075,,, +3345,INS,id,RRI Pro-1,,Ternate (MU-ter),0.764761,127.368739,,10,,11985,64,144,,1800-0030,1234567,873,,40000075,,, +3345,PNG,,NBC R Northern,,Popondetta (nor),-8.75,148.25,,10,25,14086,50,151,,0700-1305,1234567,32,,40000077,,, +3345,PNG,,NBC R Northern,,Popondetta (nor),-8.75,148.25,,10,25,14086,50,151,,1950-2200,1234567,32,,40000077,,, +3355,B,pt,Rdio Educadora 6 de Agosto,,Xapur (AC),-10.6625,-68.488889,,2,,9936,252,144,,0930-0250,1234567,87,,40000046,,, +3355,PRU,es,OAW4Y R JPJ,,Puente Piedra/Cerro Tinaja (lim),-11.932778,-77.100111,,1,,10615,258,149,,0950-0410,1234567,,,37000053,,, +3360,CHN,zh,Maoming Maritime Meteo,u,Maoming (GD),21.498333,111.000278,,1,,9079,66,144,,0940-0945,1234567,,,36201272,,, +3365,B,pt,ZYG855 Rdio Cultura Araraquara,,Araraquara (SP),-21.819444,-48.206889,,1,,9773,229,146,,0700-0300,1234567,89,,40000084,,, +3365,PNG,,NBC R Milne Bay,,Alotau (mba),-10.3,150.466667,,10,,14352,48,151,,0730-1200,1234567,984,,40000083,,, +3365,PNG,,NBC R Milne Bay,,Alotau (mba),-10.3,150.466667,,10,,14352,48,151,,1900-2200,1234567,984,,40000083,,, +3375.1,B,pt,ZYF276 Rdio Municipal,,So Gabriel da Cachoeira (AM),-0.126678,-67.087708,,5,,8902,257,136,,0900-1300,1234567,-3375.1,,40000089,,, +3375.1,B,pt,ZYF276 Rdio Municipal,,So Gabriel da Cachoeira (AM),-0.126678,-67.087708,,5,,8902,257,136,,2100-0100,1234567,-3375.1,,40000089,,, +3375.3,PRU,es,OAW6B R San Antonio,,San Antonio de Padua de Callalli (are),-2.366667,-78.133333,,1,,9843,264,146,,1000-1400,1234567,-3375.3,,40000090,,, +3375.3,PRU,es,OAW6B R San Antonio,,San Antonio de Padua de Callalli (are),-2.366667,-78.133333,,1,,9843,264,146,,2200-0200,1234567,-3375.3,,40000090,,, +3380,EQA,es,Centro R Imbabura,,Ibarra/Los Ceibos (imb),0.35,-78.116667,,1,,9603,266,146,,1100-0100,1234567,,,32600006,,, +3381,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901041,,, +3385,PNG,,NBC R East New Britain,,Rabaul (enb),-4.211667,152.115833,,10,25,13825,43,150,,0700-1406,1234567,995,,40000093,,, +3385,PNG,,NBC R East New Britain,,Rabaul (enb),-4.211667,152.115833,,10,25,13825,43,150,,1900-2200,1234567,995,,40000093,,, +3390,G,,MGJ Royal Navy Faslane,r,Faslane/Royal Navy Base (SC-AGB),56.056067,-4.814572,,1,,852,305,66,,????-????,1234567,,,19900554,,, +3390,CAF,,R ICDI,,Boali (mpk),4.8,18.116667,,1,,5370,164,111,,1500-2105,1234567,,,9300001,,, +3407,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:05-:09,1234567,,,4500001,,, +3407,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:35-:39,1234567,,,4500001,,, +3407,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:20-:24,1234567,,,34500001,,, +3407,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:50-:54,1234567,,,34500001,,, +3407,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:10-:19,1234567,,,4500005,,, +3407,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:40-:49,1234567,,,4500005,,, +3411,LVA,,Latvijas Krasta Apsardzes,u,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,,,19901048,,, +3413,IRL,en,EIP Shannon Volmet,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100005,,, +3413,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012425,,, +3413,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012446,,, +3418,ATA,,VLV,u,Mawson Station [AUS] (aat),-67.602222,62.875003,,1,,14110,157,161,,????-????,1234567,,,19900101,,, +3418,ATA,,VLZ,u,Davis Station [AUS] (aat),-68.577392,77.982811,,1,,14632,152,162,,????-????,1234567,,,19900093,,, +3418,ATA,,VNJ,u,Casey Station [AUS] (aat),-66.282494,110.526439,,1,,15736,141,166,,????-????,1234567,,,19900090,,, +3418,AUS,,VJM,u,Macquarie Island (TAS),-54.49655,158.941783,,1,,18183,109,174,,????-????,1234567,,,19900171,,, +3425,FJI,,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500008,,, +3452,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500005,,, +3452,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000003,,, +3452,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012426,,, +3455,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016230,,, +3455,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902907,,, +3455,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012442,,, +3455,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012498,,, +3458,CHN,en,Beijing Volmet,u,Beijing/Airport (BJ),40.087778,116.605556,,1,,7757,50,135,,0915-1700,1234567,,,36200225,,, +3458,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:00-:14,1234567,,,36200221,,, +3458,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:30-:44,1234567,,,36200221,,, +3467,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300005,,, +3467,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400003,,, +3467,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600012,,, +3467,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300003,,, +3467,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500006,,, +3467,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200033,,, +3467,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500001,,, +3467,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012443,,, +3467,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500009,,, +3467,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500003,,, +3467,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700075,,, +3467,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700080,,, +3467,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500003,,, +3467,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500032,,, +3470,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200029,,, +3470,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900006,,, +3470,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700085,,, +3476,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0100-0800,1234567,,,4100027,,, +3476,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109268,,, +3476,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200013,,, +3476,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500008,,, +3476,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500003,,, +3479,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500021,,, +3480,KRE,ko,Korean Nat. Democratic Front,,Wonsan (kan),39.15,127.416667,,15,,8379,43,129,,0757-1403,1234567,,,31700004,,, +3480,KRE,ko,Korean Nat. Democratic Front,,Wonsan (kan),39.15,127.416667,,15,,8379,43,129,,2157-0403,1234567,,,31700004,,, +3485,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:20-:29,1234567,,,20100017,,, +3485,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:50-:59,1234567,,,20100017,,, +3485,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:00-:19,1234567,,,20000080,,, +3485,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:30-:49,1234567,,,20000080,,, +3490,SYR,,YKM7 Latakia R,u,Latakia (lat),35.508333,35.766667,,1,,2958,117,87,,????-????,1234567,,,19901394,,, +3494,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,2200-0500,1234567,,,6800048,,, +3494,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012410,,, +3494,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012490,,, +3494,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012427,,, +3494,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012476,,, +3494,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900020,,, +3494,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012503,,, +3535,JMC,,Jamaican Defence Emergency Force,u,-,18,-77.25,,1,,8010,276,137,,????-????,1234567,,,19900931,,, +3560,KRE,ar,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1500-1600,1234567,,,50017226,,, +3560,KRE,ar,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1700-1800,1234567,,,50017226,,, +3560,KRE,en,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0400-0500,1234567,,,50017226,,, +3560,KRE,en,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1000-1100,1234567,,,50017226,,, +3560,KRE,en,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1600-1700,1234567,,,50017226,,, +3560,KRE,en,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1900-2000,1234567,,,50017226,,, +3560,KRE,es,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0300-0400,1234567,,,50017226,,, +3560,KRE,es,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0500-0600,1234567,,,50017226,,, +3560,KRE,fr,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0600-0700,1234567,,,50017226,,, +3560,KRE,fr,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1100-1200,1234567,,,50017226,,, +3560,KRE,fr,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1400-1500,1234567,,,50017226,,, +3560,KRE,fr,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1800-1900,1234567,,,50017226,,, +3560,KRE,ko,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,,8231,44,128,FE,1200-1300,1234567,,,50017226,,, +3560,KRE,ko,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0900-1000,1234567,,,50017226,,, +3560,KRE,ko,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,2000-2100,1234567,,,50017226,,, +3560,KRE,ko,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,2300-2400,1234567,,,50017226,,, +3560,KRE,ru,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0700-0900,1234567,,,50017226,,, +3560,KRE,zh,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1300-1400,1234567,,,50017226,,, +3560,KRE,zh,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,2100-2300,1234567,,,50017226,,, +3577,I,,IZ3DVW,b,Monselice (pd),45.216667,11.783333,,0.0011,,862,151,95,,,,,Inv V A1 24,55006,,, +3577.5,UKR,,UW5KW,b,Zdolbuniv,50.516667,26.866667,,0.0007,,1428,89,103,,,,-3577.5,?,55007,,, +3579,D,,DKWCY Aurora Beacon,c,Scheggerott (shs),54.668453,9.823456,,0.03,,363,37,76,,0520-0700,1234567,,,2000021,,, +3579,D,,DKWCY Aurora Beacon,c,Scheggerott (shs),54.668453,9.823456,,0.03,,363,37,76,,1400-1700,1234567,,,2000021,,, +3579.8,S,,SM2IUF,b,Kalix,65.85,23.116667,,0.0001,,1790,25,115,,,,-3579.8,15-07UT,55009,,, +3585,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,1200-2400,1234567,,,34600009,,, +3594.5,CZE,,OK0EU,b,Panska Ves,50.516667,14.533333,,0.001,,591,104,93,,,,-3594.5,Mag Loop N-S A1 24qq,55010,,, +3600,CZE,,OK0EN,b,near Kladno,50.1,14.033333,,0.00015,,577,110,101,,,,,Corner Dip 90/270A1 24,55011,,, +3605,RUS,,UFO Kholmsk R,c,Kholmsk (SL),47.023556,142.045056,,1,,8212,30,139,,????-????,1234567,,,19901342,,, +3622.5,J,,JMH,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0000-2400,1234567,-3622.5,,31400035,,, +3623,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900876,,, +3624,SYR,,YKM7 Latakia R,u,Latakia (lat),35.508333,35.766667,,1,,2958,117,87,,????-????,1234567,,,19901395,,, +3628,YEM,,7OA Aden R,u,Aden (adn),12.766111,45.052861,,1,,5565,127,113,,????-????,1234567,,,19901625,,, +3632.5,IND,,Port Blair Harbour R,u,Port Blair/Harbour (AN),11.666667,92.75,,1,,8738,86,143,,????-????,1234567,-3632.5,,19900692,,, +3636,TUR,,Bandirma Turk Radyo,c,Bandirma,40.361111,27.988889,,1,,2098,120,78,,????-????,1234567,,,19901432,,, +3641,TWN,,BMB Taipei R,u,Taipei (TP),25.033333,121.533333,,1,,9384,56,145,,????-????,1234567,,,19901453,,, +3645,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,????-????,1234567,,,19901151,,, +3648,TUR,,Iskendern R,u,Iskendern,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901436,,, +3651.4,GRC,,SXA32 Navy Piraeus,c,Piraeus (att-pir),37.966667,23.633333,,1,,2064,133,78,,????-????,1234567,-3651.4,,19900606,,, +3651.4,GRC,,SXA34 Navy Spata Attikis,c,Spata-Loutsa (att-est),37.966667,23.916667,,1,,2078,132,78,,????-????,1234567,-3651.4,,19900608,,, +3656,ISR,,4XA Eilat R,u,Eilat (hdm),29.566667,34.95,,1,,3428,126,91,,????-????,1234567,,,19900849,,, +3670,RUS,,RRR34 Moskva 1 R,u,Moskva (MV),55.75,37.616667,,1,,2064,66,78,,????-????,1234567,,,19901352,,, +3673,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,0940-0950,1234567,,,3800009,,, +3673,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,2140-2150,1234567,,,3800009,,, +3673,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,????-????,1234567,,,19901325,,, +3678,GRC,,SXH32 Souda Bay R,r,Souda (krt-kha),35.488889,24.070833,,1,,2316,136,80,,????-????,1234567,,,19900607,,, +3678.3,POR,,CTP Marinha Portuguesa,r,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,-3678.3,,19901313,,, +3681,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901042,,, +3690,UZB,,Toshkent 1 Metro,f,Toshkent (tkt),41.316667,69.25,,1,,4779,79,105,,????-????,1234567,,,19901612,,, +3694,AUS,,VK6SH,b,E.Carrington WA (WA),-32.016667,115.95,,0.003,,14048,97,186,,,,,Horiz Loop A1 10-22UTC,55012,,, +3705.5,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.1,,16726,74,179,,????-????,1234567,-3705.5,,37700144,,, +3712,GRC,,SXA33 Spata Naval,u,Spata-Loutsa (att-est),37.966667,23.916667,,1,,2078,132,78,,????-????,1234567,,,19900609,,, +3717.5,AUS,,VJG539 Capricorn Helios Rescue,u,Rockhampton (QLD),-23.383333,150.5,,1,,15604,58,165,,????-????,1234567,-3717.5,,19900184,,, +3722,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,????-????,1234567,,,2500021,,, +3730,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901033,,, +3730,RUS,,Magadan-6 Ice Operations,u,Magadan (MA),59.566667,150.8,,1,,7193,19,129,,????-????,1234567,,,19901348,,, +3730,RUS,,UCT2 Beringovskiy R,c,Beringovskiy,63.05,179.316667,,1,,7195,4,129,,????-????,1234567,,,19901336,,, +3735,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900086,,, +3737,TRC,,ZOE Tristan da Cunha R,c,Tristan da Cunha,-37.067306,-12.312222,,1,,10081,195,147,,????-????,1234567,,,19901411,,, +3740,BUL,,LZW Varna R,u,Varna/Bolyartsi (vrn),43.068056,27.786111,,1,,1881,114,76,,0703-0713,1234567,,,1300001,,, +3740,BUL,,LZW Varna R,u,Varna/Bolyartsi (vrn),43.068056,27.786111,,1,,1881,114,76,,1903-1913,1234567,,,1300001,,, +3740,RUS,,UDK2 Murmansk Metro,c,Murmansk (MU),68.966667,33.083333,,1,,2335,27,80,,????-????,1234567,,,19901355,,, +3740,RUS,,UDK2 Murmansk Metro,r,Murmansk (MU),68.966667,33.083333,,1,,2335,27,80,,????-????,1234567,,,19901356,,, +3742,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,19901278,,, +3745,BHR,,A9M Bahrain R,u,Hamala (shm),26.156944,50.473889,,1,,4662,111,104,,????-????,1234567,,,19900271,,, +3745,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,19901279,,, +3750,GMB,,C5G Banjul R,u,Banjul (bjl),13.45,-16.575,,1,,4762,214,105,,????-????,1234567,,,19900595,,, +3763,GMB,,C5G Banjul R,u,Banjul (bjl),13.45,-16.575,,1,,4762,214,105,,????-????,1234567,,,19900596,,, +3764,BUL,,LZL Burgas R,u,Burgas (bur),42.5,27.472222,,1,,1903,116,76,,????-????,1234567,,,19900279,,, +3764.4,HOL,,PBB Koninklijke Marine,r,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,-3764.4,,19900648,,, +3765,ISR,,4XT Tel Aviv R,u,Tel Aviv (tav),32.066667,34.766667,,1,,3193,123,89,,????-????,1234567,,,19900856,,, +3765,ISR,,4XA Eilat R,u,Eilat (hdm),29.566667,34.95,,1,,3428,126,91,,????-????,1234567,,,19900850,,, +3782,POR,,CTP Marinha Portuguesa,r,Oeiras (lis),38.677778,-9.325,,1,,1925,225,76,,????-????,1234567,,,19901303,,, +3810,EQA,,HD2IOA,l,Guayaquil/Base Naval Sur (gua),-2.268889,-79.906667,,1,,9955,266,147,,0000-1200,1234567,,,32600002,,, +3821,LVA,,Latvijas Krasta Apsardzes,u,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,,,19901049,,, +3855,D,,DDH3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,0430-1235,1234567,,,19900459,,, +3855,D,,DDH3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,1520-1630,1234567,,,19900459,,, +3855,D,,DDH3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,1800-1952,1234567,,,19900459,,, +3855,D,,DDH3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,2100-2211,1234567,,,19900459,,, +3875,UAE,,Zirku Marine Terminal,u,Zirku/Marine Terminal (abd),24.88,53.085,,1,,4939,109,106,,????-????,1234567,,,19901456,,, +3882,ISR,,4XZ Israeli Navy,c,Haifa/Israeli Navy (haf),32.816667,34.983333,,1,,3140,122,88,,????-????,1234567,,,19900854,,, +3890,UKR,,UWS3 Kyiv R,c,Kyiv (KY),50.469444,30.538889,,1,,1680,87,74,,????-????,1234567,,,19901463,,, +3900,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,0210-0700,1.34567,6,,40000612,,, +3900,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,0900-1440,1234567,6,,40000612,,, +3900,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,2130-0210,1234567,6,,40000612,,, +3905,PNG,,NBC R New Ireland,,Kavieng (nir),-2.583333,150.816667,,10,,13600,43,149,,0700-1300,1234567,960,,40000615,,, +3905,PNG,,NBC R New Ireland,,Kavieng (nir),-2.583333,150.816667,,10,,13600,43,149,,1900-2200,1234567,960,,40000615,,, +3912,KOR,ko,Voice of the People,,Goyang (gye),37.594611,126.844722,,50,,8496,45,125,,0500-2300,1234567,0,,34600001,,, +3915,PNG,,R Fly,,Kiunga (wes),-6.116667,141.3,,1,,13455,55,158,,0000-2400,1234567,,,36100001,,, +3925,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,25,064 244,9294,36,131,,2155-1200,.....6.,,,40000621,,, +3925,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,25,064 244,9294,36,131,,2225-1330,12345..,,,40000621,,, +3925,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,25,064 244,9294,36,131,,2225-1415,......7,,,40000621,,, +3925,J,ja,NSB R Nikkei,,Sapporo/Nemuro (JOZ4) (hok),43.288611,145.563611,,10,,8705,29,133,,0800-1200,.....67,,,40000622,,, +3925,J,ja,NSB R Nikkei,,Sapporo/Nemuro (JOZ4) (hok),43.288611,145.563611,,10,,8705,29,133,,0800-1330,1234...,,,40000622,,, +3925,J,ja,NSB R Nikkei,,Sapporo/Nemuro (JOZ4) (hok),43.288611,145.563611,,10,,8705,29,133,,0800-1415,....5..,,,40000622,,, +3925,J,ja,NSB R Nikkei,,Sapporo/Nemuro (JOZ4) (hok),43.288611,145.563611,,10,,8705,29,133,,2225-2300,1234567,,,40000622,,, +3930,TKM,fa,Voice of Kurdistan,,unknown,39,59.5,,1,,4274,88,100,ME,0300-0330,1234567,,,50021892,,, +3930,TKM,ku,Voice of Kurdistan,,unknown,39,59.5,,1,,4274,88,100,ME,0200-0300,1234567,,,50021892,,, +3945,IND,en,AIR North,,Gorakhpur (UP),26.875,83.464722,,50,,6822,82,108,,0245-0300,1234567,,,40000629,,, +3945,IND,hi,AIR North,,Gorakhpur (UP),26.875,83.464722,,50,,6822,82,108,,0230-0245,1234567,,,40000629,,, +3945,IND,ne,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,NPL,0130-0230,1234567,,,50009585,,, +3945,IND,ne,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,NPL,1330-1430,1234567,,,50009585,,, +3945,IND,ur,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,PAK,1430-1735,1234567,,,50009585,,, +3945,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,10,,9294,36,135,,0000-0800,12345..,,,40000630,,, +3945,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,10,,9294,36,135,,2300-0900,.....67,,,40000630,,, +3945,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,10,,9294,36,135,,2300-2400,1234567,,,40000630,,, +3945,VUT,bi,R Vanuatu,,Port Vila/Enten Lagoon (SW) (sef),-17.756694,168.362028,,1,,15881,29,166,,1830-1230,1234567,80,,40000628,,, +3950,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1205-1800,1234567,,,40000631,,, +3950,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0300,1234567,,,40000631,,, +3955,G,de,KBS World R,,Woofferton (EN-SHP),52.313333,-2.722778,,250,114,622,276,39,WEu,2000-2100,1234567,0,,50019824,,, +3955,G,fr,KBS World R,,Woofferton (EN-SHP),52.313333,-2.722778,,250,114,622,276,39,WEu,2100-2200,1234567,0,,50019824,,, +3955,G,en,BBC WS,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,SEu,0500-0600,1234567,,,50019823,,, +3955,G,en,BBC WS,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,SEu,0600-0700,1234567,,,50019823,,, +3955,G,de,R Taiwan Int.,,Woofferton (EN-SHP),52.313333,-2.722778,,1,,622,276,63,Eu,1900-2000,1234567,,,50023658,,, +3959,KRE,ko,KCBS Chosun Jungang Pangsong,,Kanggye (cha),40.966667,126.583333,,5,ND,8171,43,132,,2000-1800,1234567,,,50017333,,, +3960,LBR,,Star R,,Monrovia (mos),6.25,-10.7,,2.5,,5335,203,106,,0500-0900,1234567,,,4700001,,, +3960,LBR,,Star R,,Monrovia (mos),6.25,-10.7,,2.5,,5335,203,106,,1800-2100,1234567,,,4700001,,, +3962,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,,,,,50017458,,, +3965,F,en,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,345,660,211,37,Eu,1800-1900,1234567,0,,50003914,,, +3965,F,de,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,250,50,660,211,40,Eu,2100-2200,1234567,0,,50003914,,, +3965,F,es,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,250,210,660,211,40,Eu,2000-2100,1234567,0,,50003914,,, +3965,F,fr,R France Int.,D,Issoudun (36),46.947222,1.894444,,1,210,660,211,64,Eu,2200-1800,1234567,,,50003911,,, +3965,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,1,,3912,100,96,EEu,1650-1750,1234567,,,50022436,,, +3965,IRN,ur,IRIB WS,,Zahedan (sib),29.475,60.864444,,1,,5075,98,108,SAs,0120-0220,1234567,,,50022437,,, +3967,INS,id,RRI Pro-1,,Palu (ST-kot),-0.854511,119.88635,,10,,11660,72,143,,0900-1600,1234567,,,40000634,,, +3967,INS,id,RRI Pro-1,,Palu (ST-kot),-0.854511,119.88635,,10,,11660,72,143,,2100-2400,1234567,,,40000634,,, +3970,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,1,,8299,45,140,KOR,0400-0600,1234567,,,50019566,,, +3970,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,1,,8299,45,140,KOR,1200-1400,1234567,,,50019566,,, +3970,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,1,,8299,45,140,KOR,2200-2400,1234567,,,50019566,,, +3971,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,1,,3595,109,93,,,,,,50019828,,, +3975,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,1,,1205,156,69,SEu,1940-2000,1234567,,,50022438,,, +3975,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,1,,1205,156,69,CEu,2140-2200,1234567,,,50022438,,, +3975,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,1,,1205,156,69,SEu,0630-0700,1234567,,,50022438,,, +3975,PAK,,Azad Kashmir R,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,0045-0425,1234567,,,31500027,,, +3975,PAK,,Azad Kashmir R,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,0900-1600,1234567,,,31500027,,, +3975,PAK,,Azad Kashmir R,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,1615-1700,1234567,,,31500027,,, +3975,PAK,en,PBC/NBS Rawalpindi III,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,1600-1615,1234567,,,31500027,,, +3975,PAK,en,PBC/NBS Rawalpindi III,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,1700-1710,1234567,,,31500027,,, +3976,INS,id,RRI Pro-1,,Pontianak (KB-ptk),0.041111,109.333611,,50,,10882,80,133,,1000-1700,1234567,54,,40000641,,, +3980,SOM,so,R Hage,,Gaalkacyo (mud),6.783333,47.433333,,1.3,,6272,129,119,,0300-0500,1234567,,,9500003,,, +3980,SOM,so,R Hage,,Gaalkacyo (mud),6.783333,47.433333,,1.3,,6272,129,119,,0900-1000,1234567,,,9500003,,, +3985,D,de,R 700,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,2200-1600,1234567,18,,2000061,,, +3985,D,de,Polskie R,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,1700-1730,1234567,,,50022440,,, +3985,D,de,Polskie R,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,2030-2100,1234567,,,50022440,,, +3985,D,de,R Prague,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,1630-1700,1234567,,,50022439,,, +3985,D,de,R Prague,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,2000-2030,1234567,,,50022439,,, +3985,D,de,R Slovakia Int.,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,1600-1630,1234567,,,50022441,,, +3985,D,de,R Slovakia Int.,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,1930-2000,1234567,,,50022441,,, +3985,D,de,R Ukraine Int.,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,2100-2200,1234567,,,50022442,,, +3985,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0900-1430,1234567,,,40000644,,, +3985,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,1430-1500,1234567,,,40000644,,, +3985,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,1500-1605,1234567,,,40000644,,, +3985,KOR,ko,Echo of Hope,,Hwaseong (gye),37.211944,126.776111,,1,,8529,45,142,KRE,0555-2400,1234567,,,50014058,,, +3990,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1500-1600,9999999,0,,40000645,,, +3990,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1155-1500,9999999,0,,40000645,,, +3990,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1600-1800,9999999,0,,40000645,,, +3990,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0300,9999999,0,,40000645,,, +3990,CHN,,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,0600-1300,1234567,,,40000646,,, +3990,CHN,bo,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,1300-1400,1234567,,,40000646,,, +3990,CHN,bo,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,2220-0600,1234567,,,40000646,,, +3990,CHN,zh,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,1400-1430,1234567,,,40000646,,, +3990,J,,Japanese Navy,c,-,34.5,134,,1,,9124,41,144,,????-????,1234567,,,19900927,,, +3995,D,,Ichtys R,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,,0800-0900,1234567,16,,50016430,,, +3995,D,,Ichtys R,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,,2130-2230,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,0430-1700,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,2030-2100,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,2100-2200,.....67,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,2200-2330,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,,0430-0900,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,,1000-1700,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,,2030-2330,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,CEu,1730-2000,1234567,16,,50016430,,, +3995,D,en,Life FM,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,,2230-2400,1234567,16,,50016430,,, +3995,D,nds,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,CEu,1700-1730,1234567,16,,50016430,,, +3995,D,nds,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,CEu,2000-2030,1234567,16,,50016430,,, +3995,D,ru,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,0400-0430,123.567,16,,50016430,,, +3995,D,ru,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,,0400-0430,1234567,16,,50016430,,, +3995,D,uk,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,0400-0430,...4...,16,,50016430,,, +3995,D,de,R ZP30,,Weenermoor (nds),53.2,7.325,,1,,136,27,53,CEu,2100-2200,12345..,,,50022259,,, +3995,D,en,Life FM Cork,,Weenermoor (nds),53.2,7.325,,1,,136,27,53,CEu,2330-0400,1234567,,,50019568,,, +3995,PAK,en,VoJammu-Kashmir Freedom,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,1,,5607,84,113,SAs,0300-0415,1234567,,,50020339,,, +3995,PAK,en,VoJammu-Kashmir Freedom,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,1,,5607,84,113,SAs,1300-1415,1234567,,,50020339,,, +3995,INS,id,RRI Pro-1,,Kendari/Lepo-Lepo (SG-ken),-4.017953,122.504528,,5,,12115,71,147,,0900-1550,1234567,23,,40000650,,, +3995,INS,id,RRI Pro-1,,Kendari/Lepo-Lepo (SG-ken),-4.017953,122.504528,,5,,12115,71,147,,2030-0015,1234567,23,,40000650,,, +4005,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,1,,3912,100,96,EEu,1920-2020,1234567,,,50022443,,, +4010,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,0000-1630,1234567,986,,40000652,,, +4010,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,1630-1700,12345.7,986,,40000652,,, +4010,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,1700-1730,12345..,986,,40000652,,, +4010,KGZ,ru,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,1630-1700,.....6.,986,,40000652,,, +4010,KGZ,ru,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,1700-1730,.....67,986,,40000652,,, +4014,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0430-0600,1234567,,,20300027,,, +4014,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,1600-1730,1234567,,,20300027,,, +4014,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,2230-2300,1234567,,,20300027,,, +4016.5,USA,,KKL24,p,Vashon (WA),47.370808,-122.48775,,3,,7936,326,132,,????-????,1234567,-4016.5,,20016160,,, +4026,G,en,Laser Hot Hits,,unknown (EN-SOM),51.333333,-2.5,,1,,619,266,63,,,,,,2800035,,, +4043.5,ROU,,YQI43 Constanţa R,p,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-4043.5,,6600011,,, +4055,GTM,es,TGAV R Verdad,,Chiquimula (cqm),14.747667,-89.514761,,1,,9115,284,144,,1000-0705,1234567,995,,40000656,,, +4074,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902768,,, +4074,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902814,,, +4074,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902849,,, +4077,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902769,,, +4086,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902816,,, +4086,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902850,,, +4110,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902818,,, +4119,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,????-????,1234567,,,2500023,,, +4125,ALS,en,KCB53,u,Barrow (AK),71.258333,-156.583333,,1,,6231,353,119,,0400-0415,1234567,,,20016126,,, +4125,ALS,en,KCB53,u,Barrow (AK),71.258333,-156.583333,,1,,6231,353,119,,1530-1545,1234567,,,20016126,,, +4125,ALS,en,KCI94,u,Nome (AK),64.505556,-165.416667,,1,,7029,356,127,,0630-0645,1234567,,,20016131,,, +4125,ALS,en,KCI94,u,Nome (AK),64.505556,-165.416667,,1,,7029,356,127,,2030-2045,1234567,,,20016131,,, +4125,ALS,en,KDG91,u,Yakutat (AK),59.516667,-139.677778,,1,,7235,342,129,,0430-0445,1234567,,,20016125,,, +4125,ALS,en,KDG91,u,Yakutat (AK),59.516667,-139.677778,,1,,7235,342,129,,1415-1430,1234567,,,20016125,,, +4125,ALS,en,KDG58,u,Annette Island (AK),55.126389,-131.577778,,1,,7479,335,132,,0040-0055,1234567,,,20016127,,, +4125,ALS,en,KDG58,u,Annette Island (AK),55.126389,-131.577778,,1,,7479,335,132,,1600-1615,1234567,,,20016127,,, +4125,ALS,en,KCI98,u,King Salmon (AK),58.691667,-156.656944,,1,,7600,351,133,,0130-0145,1234567,,,20016130,,, +4125,ALS,en,KCI98,u,King Salmon (AK),58.691667,-156.656944,,1,,7600,351,133,,1830-1845,1234567,,,20016130,,, +4125,ALS,en,KWL38,u,Kodiak (AK),57.783333,-152.4,,1,,7645,348,133,,0400-0415,1234567,,,20016128,,, +4125,ALS,en,KWL38,u,Kodiak (AK),57.783333,-152.4,,1,,7645,348,133,,1700-1715,1234567,,,20016128,,, +4125,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1250-1300,1234567,,,33400003,,, +4125,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1850-1900,1234567,,,33400003,,, +4125,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902782,,, +4125,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902765,,, +4125,ALS,en,KCI95,u,Cold Bay (AK),55.183333,-162.716667,,1,,8043,354,137,,0530-0545,1234567,,,20016129,,, +4125,ALS,en,KCI95,u,Cold Bay (AK),55.183333,-162.716667,,1,,8043,354,137,,1930-1945,1234567,,,20016129,,, +4125,CHL,,CBV Valparaso Playa Ancha R,c,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0000-2400,1234567,,,36800012,,, +4125,AUS,,VMR471 Keppel Sands Coastguard,u,Keppel Sands (QLD),-23.3375,150.797222,,1,,15617,57,166,,????-????,1234567,,,37700095,,, +4125,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.4,,14915,58,167,,????-????,1234567,,,37700129,,, +4125,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,37700126,,, +4125,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,37700091,,, +4125,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700100,,, +4125,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700152,,, +4125,AUS,,VMR251 Kingscliff Coastguard,u,Kingscliff/Faulks Park (NSW),-28.257656,153.583189,,0.1,,16225,58,178,,????-????,1234567,,,37700122,,, +4134,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,37700092,,, +4134,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700136,,, +4146,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,0833-0848,1234567,,,31200002,,, +4146,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,1603-1618,1234567,,,31200002,,, +4146,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,2203-2218,1234567,,,31200002,,, +4146,CHL,,CBP Puerto Montt R,u,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,1130-1145,1234567,,,36800023,,, +4146,CHL,,CBP Puerto Montt R,u,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,2325-2340,1234567,,,36800023,,, +4146,CHL,,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,0035-0050,1234567,,,36800021,,, +4146,CHL,,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1235-1250,1234567,,,36800021,,, +4146,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700150,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0003-0013,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0133-0143,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0533-0543,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0803-0813,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1333-1343,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1733-1743,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2003-2013,1234567,,,32500027,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,0233-0245,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,0633-0645,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,1033-1045,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,1433-1445,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,1833-1845,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,2233-2245,1234567,,,8100012,,, +4149,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2300-1000,1234567,,,37700023,,, +4207.5,GRC,,Olympia R,2,Agia Paraskevi (wgr-ili),37.603056,21.486389,,1,,1995,138,77,,,,-4207.5,,3400069,,, +4207.5,TUR,,Istanbul R,2,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,,,-4207.5,,8000026,,, +4207.5,EGY,,Al-Iskandariya R,2,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,,,-4207.5,,2300015,,, +4207.5,USA,,COMMSTA Boston,2,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,,,-4207.5,,20016318,,, +4207.5,USA,,COMMSTA Portsmouth,2,Portsmouth (USCG COMMSTA) (VA),36.833333,-76.3,,1,,6407,290,121,,,,-4207.5,,20016319,,, +4207.5,USA,,KHT,u,Cedar Rapids (IA),42.034722,-91.643611,,1,,6930,304,126,,,,-4207.5,,20016311,,, +4207.5,USA,,COMMSTA Miami,2,Miami (USCG COMMSTA) (FL),25.619444,-80.386389,,1,,7578,284,133,,,,-4207.5,,20016320,,, +4207.5,USA,,COMMSTA New Orleans,2,Belle Chasse (USCG) (LA),29.881389,-89.942778,,1,,7836,294,135,,,,-4207.5,,20016321,,, +4207.5,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,-4207.5,,35400112,,, +4207.5,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,-4207.5,,36800013,,, +4209.5,TUR,tr,Istanbul Turk Radyo,b,Istanbul/TAH (mam-ist),41.066667,28.95,,0.025,,2101,117,94,,,,-4209.5,Navtex 02:00 +4h UTC slots M,N,O,86169, +4212,VTN,,R Lai Chu 1,,Lai Chu (lic),22.066667,103.166667,,0.5,,8532,71,145,,0400-0600,1234567,,,33200005,,, +4212,VTN,,R Lai Chu 1,,Lai Chu (lic),22.066667,103.166667,,0.5,,8532,71,145,,1000-1400,1234567,,,33200005,,, +4212,VTN,,R Lai Chu 1,,Lai Chu (lic),22.066667,103.166667,,0.5,,8532,71,145,,2200-2400,1234567,,,33200005,,, +4213,NOR,,LGV24 Vard R,p,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,????-????,1234567,,,6300036,,, +4217,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,????-????,1234567,,,37700114,,, +4218,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,,,34700009,,, +4220,CHN,bo,CNR 11,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0800-0900,1.34567,,,40000632,,, +4220,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0600-0800,1.34567,,,40000632,,, +4220,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0900-1600,1234567,,,40000632,,, +4220,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,2255-0600,1234567,,,40000632,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1115-1145,1234567,,,36800007,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1630-1700,1234567,,,36800007,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1915-1945,1234567,,,36800007,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2200-2245,1234567,,,36800007,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2310-2340,1234567,,,36800007,,, +4233,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0400-0500,1234567,,,11700008,,, +4233,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1500-1700,1234567,,,11700008,,, +4235,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0230-0506,1234567,,,20016153,,, +4235,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0745-1041,1234567,,,20016153,,, +4242.5,D,,DAO24 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,-4242.5,,2000049,,, +4250.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0000-2400,1234567,-4250.5,,7300005,,, +4259,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800019,,, +4261,AFS,,ZRK6961 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300031,,, +4266,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0600-0730,1234567,,,36902810,,, +4266,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1845-1930,1234567,,,36902810,,, +4266,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1945-2115,1234567,,,36902810,,, +4298,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0340-0608,1234567,,,20016141,,, +4298,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0950-1208,1234567,,,20016141,,, +4298,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1540-1808,1234567,,,20016141,,, +4298,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,2150-0028,1234567,,,20016141,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0330-0400,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0515-0545,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0930-1000,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1115-1145,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1530-1600,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1715-1745,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2130-2200,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2315-2345,1234567,,,20012367,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0145-0300,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0430-0450,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0540-0800,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,1100-1200,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,1335-1530,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,1645-2000,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,2215-2245,1234567,,,31400038,,, +4317.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0000-0305,1234567,-4317.9,,20016149,,, +4317.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0600-0855,1234567,-4317.9,,20016149,,, +4317.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1200-1505,1234567,-4317.9,,20016149,,, +4317.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1800-2105,1234567,-4317.9,,20016149,,, +4319,BIO,en,AFN,u,Diego Garcia (SW) (dga),-7.4302,72.441114,,1,,9078,114,144,,1400-0200,1234567,,,12200002,,, +4321,B,,PPO Olinda Rdio,c,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0430-0440,1234567,,,36902783,,, +4321,B,,PPO Olinda Rdio,c,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1630-1640,1234567,,,36902783,,, +4321,B,,PPL Belm Rdio,c,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1000-1030,1234567,,,36902763,,, +4321,B,,PPL Belm Rdio,c,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,2200-2230,1234567,,,36902763,,, +4321,B,,PPJ Juno Rdio,c,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,0000-0030,1234567,,,36902845,,, +4321,B,,PPJ Juno Rdio,c,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1200-1230,1234567,,,36902845,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,0350-0420,1234567,,,36800020,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1550-1635,1234567,,,36800020,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1730-1800,1234567,,,36800020,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,2005-2035,1234567,,,36800020,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,2240-2325,1234567,,,36800020,,, +4346,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0140-0415,1234567,,,20016144,,, +4346,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0655-1015,1234567,,,20016144,,, +4346,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1120-1230,1234567,,,20016144,,, +4346,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1400-1615,1234567,,,20016144,,, +4347,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800020,,, +4351,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,2335-2400,1234567,,,36700001,,, +4357,NOR,,LGZ24 Rogaland R,p,Farsund/Haugviga (st),58.068778,6.743244,,1,,663,2,64,,????-????,1234567,,,6300038,,, +4357,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,1203-1218,1234567,,,6300016,,, +4357,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,2303-2318,1234567,,,6300016,,, +4357,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1235-1250,1234567,,,36800016,,, +4357,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2335-2350,1234567,,,36800016,,, +4357.4,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-4357.4,,31200007,,, +4357.4,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-4357.4,,31200007,,, +4357.4,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-4357.4,,31200007,,, +4363,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,0720-0740,1234567,,,5300001,,, +4363,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1203-1223,1234567,,,5300001,,, +4363,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1720-1740,1234567,,,5300001,,, +4363,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,1340-1400,9999999,,,20109243,,, +4363,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,1705-1725,9999999,,,20109243,,, +4363,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,2235-2255,9999999,,,20109243,,, +4363,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,1240-1300,9999999,,,20109239,,, +4363,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,1705-1725,9999999,,,20109239,,, +4363,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,2310-2330,9999999,,,20109239,,, +4363,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,0110-0130,9999999,,,20109252,,, +4363,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,1320-1340,9999999,,,20109252,,, +4363,CAN,,VFC Inuvik Coastguard,u,Cambridge Bay (NU),69.114722,-105.0195,,1,,5438,334,111,,0235-0255,1234567,,,20109251,,, +4363,CAN,,VFC Inuvik Coastguard,u,Cambridge Bay (NU),69.114722,-105.0195,,1,,5438,334,111,,1435-1455,1234567,,,20109251,,, +4363,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,0115-0135,9999999,,,20109247,,, +4363,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,1315-1335,9999999,,,20109247,,, +4366,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901032,,, +4366,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1500-0300,1234567,,,11700004,,, +4366,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902767,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0103-0118,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0603-0618,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1003-1018,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1203-1218,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1503-1518,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,2103-2118,1234567,,,36902813,,, +4366,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902848,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0000-0015,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0400-0415,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0500-0515,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0600-0615,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1300-1315,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1600-1615,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1700-1715,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1800-1815,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,2200-2215,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,2300-2315,1234567,,,20012380,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0103-0118,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0603-0618,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1003-1018,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1203-1218,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1503-1518,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,2103-2118,1234567,,,36902785,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,0103-0118,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,0603-0618,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1003-1018,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1203-1218,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1503-1518,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,2103-2118,1234567,,,36902766,,, +4372,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0003-0018,1234567,,,22500001,,, +4372,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0403-0418,1234567,,,22500001,,, +4372,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0803-0818,1234567,,,22500001,,, +4372,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,2003-2018,1234567,,,22500001,,, +4375,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1015-1030,1234567,,,20300007,,, +4375,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1333-1348,1234567,,,20300007,,, +4375,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1815-1830,1234567,,,20300007,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0000-0010,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0035-0040,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0335-0340,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0635-0640,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0805-0815,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0935-0940,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1235-1240,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1305-1315,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1535-1540,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1805-1815,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1835-1840,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,2135-2140,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,2305-2315,1234567,,,3500003,,, +4381,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902815,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,0103-0118,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,0603-0618,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1003-1018,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1203-1218,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1503-1518,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,2103-2118,1234567,,,36902847,,, +4396,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016233,,, +4399,NOR,,LGL24 Flor R,p,Flor (sf),61.597625,4.998556,,1,,1058,356,68,,????-????,1234567,,,6300034,,, +4401,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000064,,, +4402,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902817,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,0115-0130,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,0433-0448,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,0730-0745,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,1233-1248,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,1315-1330,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,1603-1618,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,1930-1945,1234567,,,20800001,,, +4405,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1000-1015,1234567,,,8000024,,, +4405,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1800-1815,1234567,,,8000024,,, +4407,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,0000-0015,1234567,,,36100003,,, +4407,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,0603-0618,1234567,,,36100003,,, +4407,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,2203-2218,1234567,,,36100003,,, +4411,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,0730-0750,1234567,,,2500022,,, +4416,CAN,,VCO Sydney Coastguard,f,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1121-1741,1234567,,,20109296,,, +4417,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1500-0300,1234567,,,11700005,,, +4420,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901031,,, +4426,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0330-0400,1234567,,,20000101,,, +4426,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0515-0545,1234567,,,20000101,,, +4426,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0930-1000,1234567,,,20000101,,, +4426,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0430-0505,1234567,,,20012373,,, +4426,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1030-1105,1234567,,,20012373,,, +4426,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2100-0800,1234567,,,37700017,,, +4426,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700133,,, +4450,KRE,ko,KCBS Pyongyang Pangsong/AINDF,,Kujang (pyb),40.079167,126.109444,,15,,8231,44,128,,,,992,,40000677,,, +4450,KOR,ko,Voice of the People,,Goyang (gye),37.594611,126.844722,,1,,8496,45,142,,0500-2300,1234567,,,34600007,,, +4481,GRC,,SVJ4,f,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,0845-1100,1234567,,,3400038,,, +4483,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,37700093,,, +4483,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700153,,, +4483,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.1,,14915,58,173,,????-????,1234567,,,37700130,,, +4483,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.1,,16726,74,179,,????-????,1234567,,,37700142,,, +4485.9,PRU,es,R Frecuencia VH,,Celendn (caj),-6.883333,-78.15,,0.5,,10242,261,151,,2300-0300,1234567,-4485.9,,40000680,,, +4500,CHN,mn,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1600-1700,1234567,,,40000682,,, +4500,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0000-0330,1234567,,,40000682,,, +4500,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1230-1600,1234567,,,40000682,,, +4500,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1700-1800,1234567,,,40000682,,, +4523,PRU,es,R Superior,,Bambamarca (caj),-6.683333,-78.533333,,1,,10250,262,148,,0000-2400,1234567,,,37000039,,, +4557,KRE,ko,KCBS Pyongyang Pangsong/AINDF,,Haeju (hwn),38.032389,125.708556,,50,,8401,45,124,,0800-0400,1234567,,,40000687,,, +4583,D,,DDK2 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0000-2400,1234567,,,19900458,,, +4605,INS,id,RRI Pro-1,,Serui (PA-yap),-1.883333,136.233333,,1,,12762,58,156,,0000-0500,1234567,,,40000689,,, +4605,INS,id,RRI Pro-1,,Serui (PA-yap),-1.883333,136.233333,,1,,12762,58,156,,0845-1400,1234567,,,40000689,,, +4605,INS,id,RRI Pro-1,,Serui (PA-yap),-1.883333,136.233333,,1,,12762,58,156,,2000-2315,1234567,,,40000689,,, +4610,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,0000-2400,1234567,,,2800046,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0040-0140,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0305-0550,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0700-0740,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0905-1030,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1300-1340,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1505-1740,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1900-1940,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,2050-2230,1234567,,,21800036,,, +4620,PRU,es,R Espacial,,Otuzco (lal),-7.9,-78.566667,,0.5,,10359,261,151,,0900-0200,1234567,,,40000692,,, +4620,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,37700127,,, +4620,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700154,,, +4625,RUS,,MDZhB,x,unknown (PS),58.666667,28.166667,,10,,1546,53,62,,0000-2400,1234567,,,6700135,,, +4645,EST,en,Tallinn Volmet,u,Tallinn/Airport (Har),59.407222,24.798333,,0.8,,1400,47,72,,0000-2400,1234567,,,2400001,,, +4654.9,PRU,es,R Centinela del Norte,,Cortegana (ama),-6.416667,-78.35,,1,,10214,262,148,,0000-0200,1234567,-4654.9,,40000097,,, +4660,IND,,AIR North,,Leh (JK),34.124744,77.588978,,7,,5854,80,107,,0130-0415,1234567,997,,40000120,,, +4660,IND,,AIR North,,Leh (JK),34.124744,77.588978,,7,,5854,80,107,,1130-1631,1234567,997,,40000120,,, +4660,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500010,,, +4663,UZB,en,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:10-:15,1234567,,,34500006,,, +4663,UZB,en,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:40-:45,1234567,,,34500006,,, +4666,NOR,,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,,,,,6300023,,, +4666,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012448,,, +4666,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012499,,, +4669,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500022,,, +4675,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0100-0800,1234567,,,4100028,,, +4675,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1100-1800,1234567,,,4100028,,, +4675,NOR,en,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,0000-2400,1234567,,,6300018,,, +4675,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200007,,, +4675,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109269,,, +4675,ARG,es,Resistencia Volmet,u,Resistencia (cc),-27.463333,-59.07,,1,,10888,235,150,,:20-:29,1234567,,,33000047,,, +4675,ARG,,Comodoro Rivadavia Volmet,u,Comodoro Rivadavia (ch),-45.791944,-67.481944,,1,,12959,228,157,,0930-2340,1234567,,,33000045,,, +4675,ARG,es,Comodoro Rivadavia Volmet,u,Comodoro Rivadavia (ch),-45.791944,-67.481944,,1,,12959,228,157,,:30-:40,1234567,,,33000045,,, +4679,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700099,,, +4681,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300011,,, +4687,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900010,,, +4699.8,BOL,es,CP114 R San Miguel,,Riberalta (ebn),-10.996722,-66.066944,,1.5,,9810,249,145,,1100-0300,1234567,32,,40000222,,, +4700,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0300-0700,1234567,,,8400003,,, +4700,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0930-1100,1234567,,,8400003,,, +4700,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1400-1800,1234567,,,8400003,,, +4712,RUS,,Magadan Aero,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,,,,,6700133,,, +4716.7,BOL,,R Yura,,Yura (pts),-20.116667,-66.166667,,1,,10638,244,149,,1000-0200,1234567,71,,40000103,,, +4739.7,VTN,vi,Sơn La R,,Sơn La (sla),21.333333,103.9,,1,,8643,71,143,,0300-0500,1234567,68,,40000107,,, +4739.7,VTN,vi,Sơn La R,,Sơn La (sla),21.333333,103.9,,1,,8643,71,143,,1150-1400,1234567,68,,40000107,,, +4739.7,VTN,vi,Sơn La R,,Sơn La (sla),21.333333,103.9,,1,,8643,71,143,,2200-0030,1234567,68,,40000107,,, +4747,PRU,es,OAZ5B R Huanta 2000,,Huanta/Tirapampa (aya),-12.9,-74.216667,,0.5,,10509,255,152,,0930-1300,1234567,8,,40000117,,, +4747,PRU,es,OAZ5B R Huanta 2000,,Huanta/Tirapampa (aya),-12.9,-74.216667,,0.5,,10509,255,152,,2000-0100,1234567,8,,40000117,,, +4750,BGD,bn,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,0600-1705,1234567,10,,50003926,,, +4750,BGD,en,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,1235-1245,1......,10,,50003926,,, +4750,BGD,en,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,1252-1255,1234567,10,,50003926,,, +4750,BGD,en,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,1430-1445,1234567,10,,50003926,,, +4750,BGD,en,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,1530-1545,1234567,10,,50003926,,, +4750,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0900-1600,1234567,989,,40000111,,, +4750,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,2150-0200,1234567,989,,40000111,,, +4750,UGA,,Dunamis Shortwave,,Mukono (mkn),0.361111,32.75,,1,,6256,148,120,,1500-1900,1234567,994,,40000109,,, +4750,INS,id,RRI Pro-1,,Makassar (SN-mak),-5.271139,119.425139,,20,,12026,75,141,,0745-1355,1234567,949,,40000115,,, +4750,INS,id,RRI Pro-1,,Makassar (SN-mak),-5.271139,119.425139,,20,,12026,75,141,,2030-2130,1234567,949,,40000115,,, +4753.5,B,pt,ZYF904 Rdio Imaculada Conceio,,Campo Grande (MS),-20.422078,-54.614178,,10,,9986,235,137,,0700-0300,1234567,-4753.5,,40000116,,, +4755,FSM,,V6MP The Cross R,,Pohnpei/Ninseitamw (pnp),6.965833,158.204722,,1,,12921,32,157,,1900-1100,1234567,50,,39900002,,, +4760,LBR,,R ELWA,,Monrovia (ELWA) (mos),6.242222,-10.6975,,1,,5336,203,110,,0530-1000,1234567,,,4700002,,, +4760,LBR,,R ELWA,,Monrovia (ELWA) (mos),6.242222,-10.6975,,1,,5336,203,110,,1700-2200,1234567,,,4700002,,, +4760,IND,,AIR South,,Port Blair (AN),11.614167,92.750833,,8.5,,8742,86,134,,1030-1701,1234567,10,,40000121,,, +4760,IND,,AIR South,,Port Blair (AN),11.614167,92.750833,,8.5,,8742,86,134,,2355-0300,1234567,10,,40000121,,, +4760,SWZ,SGA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1545-1615,......7,995,,50022444,,, +4760,SWZ,SGA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1600-1630,.....6.,995,,50022444,,, +4760,SWZ,SGA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1630-1645,.23.56.,995,,50022444,,, +4760,SWZ,TSH,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1600-1630,12345..,995,,50022444,,, +4760,SWZ,TSH,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1615-1645,......7,995,,50022444,,, +4760,SWZ,TSH,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1645-1700,......7,995,,50022444,,, +4760,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1630-1645,1..4...,995,,50022444,,, +4765,TJK,tg,Tojikiston R 1,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,,2300-2000,1234567,53,,34200001,,, +4765,CUB,es,R Progreso,,Bauta/Corralillo (ch),22.951111,-82.546111,,50,,7945,284,120,,0130-0504,1234567,,,31600137,,, +4765,B,pt,ZYG363 Rdio Rural,,Santarm (PA),-2.446831,-54.731744,,10,,8316,245,130,,0800-0300,1234567,,,40000125,,, +4765,B,pt,ZYF200 Rdio Integrao,,Cruzeiro do Sul (AC),-7.618944,-72.655667,,5,45,9939,257,140,,,,,,40000126,,, +4775,IND,,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,,7707,76,117,,0030-0215,1234567,21,,40000129,,, +4775,IND,,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,,7707,76,117,,1030-1700,1234567,21,,40000129,,, +4775,SWZ,LO,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,MOZ,0342-0357,1234567,992,,50010802,,, +4775,SWZ,Lom,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,,0342-0400,1234567,992,,50010802,,, +4775,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,,0400-0430,12345..,992,,50010802,,, +4775,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,,0400-0500,.....67,992,,50010802,,, +4775,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,SAf,0400-0430,1234567,992,,50010802,,, +4775,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0430-0500,.....67,992,,50010802,,, +4775,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,SAf,0500-0800,1234567,992,,50010802,,, +4775,B,pt,ZYG207 Rdifusora de Congonhas,,Congonhas (MG),-20.508761,-43.86235,,1,,9426,226,145,,0900-2400,1234567,,,40000130,,, +4775,PRU,es,OCX4E R Tarma,,Tarma/Cerro Penitencia (jun),-11.408856,-75.691639,,1,,10475,257,149,,1000-1300,1234567,95,,40000131,,, +4775,PRU,es,OCX4E R Tarma,,Tarma/Cerro Penitencia (jun),-11.408856,-75.691639,,1,,10475,257,149,,2200-0600,1234567,95,,40000131,,, +4779.7,GTM,es,TGLT R Cultural Coatn,,Coatn (huh),15.75,-91.583333,,1,,9164,286,144,,1100-1500,1234567,-4779.7,,40000133,,, +4779.7,GTM,es,TGLT R Cultural Coatn,,Coatn (huh),15.75,-91.583333,,1,,9164,286,144,,2200-0230,1234567,-4779.7,,40000133,,, +4780,DJI,,RTD R Nationale,,Arta (art),11.519444,42.846944,,50,,5568,131,96,,0300-2100,1234567,9993,,40000134,,, +4781.6,EQA,,HCLE7 R Oriental,,Tena (nap),-1,-77.8,,5,,9701,265,139,,1000-1400,1234567,66,,40000136,,, +4781.6,EQA,,HCLE7 R Oriental,,Tena (nap),-1,-77.8,,5,,9701,265,139,,2200-0200,1234567,66,,40000136,,, +4785,B,pt,ZYG790 Rdio Caiar,,Porto Velho (RO),-8.75,-63.916667,,10,45,9470,249,135,,0900-1400,1234567,,,40000141,,, +4785,B,pt,ZYG790 Rdio Caiar,,Porto Velho (RO),-8.75,-63.916667,,10,45,9470,249,135,,1900-0300,1234567,,,40000141,,, +4790,PRU,es,OAX8J R Atlntida,,Iquitos (lor),-3.85,-73.216667,,1,,9642,259,146,,0900-0500,1234567,,,40000147,,, +4790,PRU,es,OAW1D R Visin,,Chiclayo (lam),-6.783333,-79.866667,,1,,10349,263,148,,0555-0245,1234567,925,,40000148,,, +4790,INS,id,RRI Pro-1,,Fak-Fak (PB-fak),-2.952375,132.350944,,1,,12634,62,156,,0700-1455,1234567,5,,40000145,,, +4790,INS,id,RRI Pro-1,,Fak-Fak (PB-fak),-2.952375,132.350944,,1,,12634,62,156,,2000-2230,1234567,5,,40000145,,, +4800,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0600-0900,1.34567,10,,40000155,,, +4800,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0900-1805,1234567,10,,40000155,,, +4800,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,2025-0600,1234567,10,,40000155,,, +4800,IND,hi,AIR South,,Hyderabad (AP),17.3375,78.561389,,50,,7282,93,113,,0020-0215,1234567,25,,40000156,,, +4800,IND,hi,AIR South,,Hyderabad (AP),17.3375,78.561389,,50,,7282,93,113,,1130-1745,1234567,25,,40000156,,, +4800,MEX,es,XERTA-OC R.Transcontinental de Amrica,,Mxico D.F/Cuauhtmoc (dif),19.441472,-99.151622,,5,,9323,294,138,,0000-2400,1234567,,,40000159,,, +4805,B,pt,ZYF273 Rdifusora do Amaznas,,Manaus (AM),-3.137447,-59.980817,,10,90,8709,249,133,,0930-1330,1234567,,,40000157,,, +4805,B,pt,ZYF273 Rdifusora do Amaznas,,Manaus (AM),-3.137447,-59.980817,,10,90,8709,249,133,,1500-1800,1234567,,,40000157,,, +4805,B,pt,ZYF273 Rdifusora do Amaznas,,Manaus (AM),-3.137447,-59.980817,,10,90,8709,249,133,,2000-0100,1234567,,,40000157,,, +4805,PRU,es,OAW5D R Rasuwilca,,Faldas del Cerro la Picota (aya),-13.122222,-74.225,,1,,10530,255,149,,1000-0200,1234567,,,37000041,,, +4810,ARM,ar,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1900-1930,1234567,,,400001,,, +4810,ARM,asy,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1530-1600,1234567,,,400001,,, +4810,ARM,az,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,,1400-1415,12345..,,,400001,,, +4810,ARM,az,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1345-1400,1234567,,,400001,,, +4810,ARM,fa,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1430-1500,1234567,,,400001,,, +4810,ARM,ku,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1315-1345,1234567,,,400001,,, +4810,ARM,ku,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1600-1630,1234567,,,400001,,, +4810,ARM,tr,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,,1400-1415,.....67,,,400001,,, +4810,ARM,tr,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1415-1430,1234567,,,400001,,, +4810,ARM,yz,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1500-1530,1234567,,,400001,,, +4810,IND,en,AIR West,,Bhopal (MP),23.253889,77.480833,,50,,6711,90,107,,1530-1545,1234567,9979,,40000158,,, +4810,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,,6711,90,107,,0025-0215,1234567,9979,,40000158,,, +4810,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,,6711,90,107,,1130-1530,1234567,9979,,40000158,,, +4810,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,,6711,90,107,,1545-1745,1234567,9979,,40000158,,, +4810,PRU,es,OAW9A R Logos,,Chazuta (sam),-6.573111,-76.1343,,1,,10079,260,147,,0900-1100,1234567,,,37000115,,, +4810,PRU,es,OAW9A R Logos,,Chazuta (sam),-6.573111,-76.1343,,1,,10079,260,147,,2330-0310,1234567,,,37000115,,, +4814.9,EQA,,HCAX3 R El Buen Pastor,,Saraguro/Loma de Carbocillo (loj),-3.548056,-79.177778,,1,,10018,264,147,,1000-1500,1234567,-4814.9,,40000160,,, +4814.9,EQA,,HCAX3 R El Buen Pastor,,Saraguro/Loma de Carbocillo (loj),-3.548056,-79.177778,,1,,10018,264,147,,2200-0300,1234567,-4814.9,,40000160,,, +4815,B,pt,ZYG640 Rdio Difusora Londrina,,Londrina/Gleba Ribeiro Cafezal (PR),-23.338056,-51.221111,,10,,10076,231,137,,0755-0355,1234567,0,,40000162,,, +4820,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,0000-1630,1234567,,,40000150,,, +4820,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,1630-1700,12345.7,,,40000150,,, +4820,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,1700-1730,12345..,,,40000150,,, +4820,KGZ,ru,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,1630-1700,.....6.,,,40000150,,, +4820,KGZ,ru,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,1700-1730,.....67,,,40000150,,, +4820,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0030,1234567,4,,40000164,,, +4820,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1030-1100,1234567,4,,40000164,,, +4820,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0030-0600,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0600-1000,12.4567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1030,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1100-1800,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2000-2230,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,4,,40000164,,, +4820,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,,7521,82,115,,0025-0215,1234567,9936,,40000165,,, +4820,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,,7521,82,115,,1130-1843,1234567,9936,,40000165,,, +4824.5,PRU,es,OAX8R La Voz de la Selva,,Iquitos/Moronacocha (lor),-3.733333,-73.266667,,10,,9635,260,136,,0950-0300,0.234567,48,,40000166,,, +4824.5,PRU,es,OAX8R La Voz de la Selva,,Iquitos/Moronacocha (lor),-3.733333,-73.266667,,10,,9635,260,136,,1000-1700,1......,48,,40000166,,, +4825,B,pt,ZYG364 R.Educadora de Bragana,,Bragana (PA),-1.063333,-46.773333,,10,,7707,239,124,,0830-0300,1234567,,,40000169,,, +4825,B,pt,ZYG868 Rdio Cano Nova,,Cachoeira Paulista/Santa Cruz (SP),-22.64425,-45.077111,,10,,9695,226,136,,0000-2400,1234567,935,,40000168,,, +4826.7,PRU,es,OAX7T R Sicuani,,Sicuani (cus),-14.35,-71.216667,,0.7,,10442,252,150,,0930-0400,1234567,-4826.7,,40000170,,, +4828,ZWE,,Voice of Zimbabwe,,Gweru (mdl),-19.520444,29.937,,100,,8285,157,120,,0530-0700,1234567,,,20400001,,, +4828,ZWE,,Voice of Zimbabwe,,Gweru (mdl),-19.520444,29.937,,100,,8285,157,120,,1530-1900,1234567,,,20400001,,, +4830,MNG,mn,Mongoliin R 1,,Altaii=Altay (gvi),46.3225,96.256944,,12,,6129,57,108,,0655-1500,1234567,,,40000173,,, +4830,MNG,mn,Mongoliin R 1,,Altaii=Altay (gvi),46.3225,96.256944,,12,,6129,57,108,,2200-0500,1234567,,,40000173,,, +4830,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1300-1430,1234567,,,36201276,,, +4830,CHN,hk,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1430-1500,1234567,,,36201276,,, +4831,RUS,,Intermodulation 4831 + 1089 = 5920 kHz,,Armavir/Tblisskaya/Krasnodar (KD),45.473056,40.103056,,1,,2550,93,82,,2000-2200,1234567,,,6700139,,, +4835,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629444,,10,,7129,78,118,,0100-0415,1234567,,,40000177,,, +4835,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629444,,10,,7129,78,118,,1030-1600,1234567,,,40000177,,, +4835,AUS,en,VL8A ABC Alice Springs,,Alice Springs (NT),-23.814167,133.846944,,50,,14602,75,145,,0000-2400,1234567,3,,40000178,,, +4835,PRU,es,OAX7Q Ondas del Sur Oriente,,Quillabamba (cus),-12.816667,-72.683333,,1,,10401,254,148,,0955-0235,1234567,,,40000308,,, +4840,IND,,AIR West,,Mumbai=Bombay (MH),19.182778,72.807778,,50,,6734,96,107,,1230-1730,1234567,2,,40000182,,, +4840,IND,,AIR West,,Mumbai=Bombay (MH),19.182778,72.807778,,50,,6734,96,107,,2350-0400,1234567,2,,40000182,,, +4840,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,40,7122,296,108,NAm,0100-1300,1234567,,,50009589,,, +4845,B,pt,ZYF278 Rdio Cultura (Amazonas),,Manaus (AM),-3.121725,-60.04205,,5,,8712,249,136,,0800-0200,1234567,237,,40000186,,, +4845,B,pt,ZYG869 Rdio Meteorologia Paulista,,Ibitinga/Fazenda Vista Alegre (SP),-21.773,-48.835639,,1,,9801,230,146,,0800-0200,1234567,,,40000185,,, +4850,CHN,kk,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1400-1500,1234567,,,40000668,,, +4850,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1155-1400,1234567,,,40000668,,, +4850,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1500-1800,1234567,,,40000668,,, +4850,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,2330-0300,1234567,,,40000668,,, +4850,IND,,AIR Northeast,,Kohima (NL),25.719722,94.039444,,50,,7625,75,116,,0000-0415,1234567,,,40000188,,, +4850,IND,,AIR Northeast,,Kohima (NL),25.719722,94.039444,,50,,7625,75,116,,1000-1600,1234567,,,40000188,,, +4850,PRU,es,OAW5E R Gnesis,,Huanta (aya),-12.9,-74.216667,,1,,10509,255,149,,1000-1200,1234567,,,37000038,,, +4850,PRU,es,OAW5E R Gnesis,,Huanta (aya),-12.9,-74.216667,,1,,10509,255,149,,2230-0130,1234567,,,37000038,,, +4855,PRU,es,OAZ7A R La Hora,,Cusco/Cerro Osqollo (cus),-13.519,-72.010139,,2,,10420,253,145,,1000-1500,1234567,47,,40000190,,, +4855,PRU,es,OAZ7A R La Hora,,Cusco/Cerro Osqollo (cus),-13.519,-72.010139,,2,,10420,253,145,,1700-0100,1234567,47,,40000190,,, +4860,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,,,184,,50017460,,, +4860,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,,6062,83,101,,0025-0200,1234567,,,40000264,,, +4860,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,,6062,83,101,,1235-1730,1234567,,,40000264,,, +4860,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,,6062,83,101,,1730-1741,.....67,,,40000264,,, +4865,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,,,66,,50014061,,, +4865,B,pt,ZYG366 R.Missoes da Amaznia,,bidos (PA),-1.916667,-55.516667,,5,,8316,246,133,,0900-0200,1234567,,,40000196,,, +4865,B,pt,ZYF203 Rdio Verdes Florestas,,Cruzeiro do Sul (AC),-7.618139,-72.698875,,5,90,9941,257,140,,1000-1400,1234567,0,,40000195,,, +4865,B,pt,ZYF203 Rdio Verdes Florestas,,Cruzeiro do Sul (AC),-7.618139,-72.698875,,5,90,9941,257,140,,2300-0300,1234567,0,,40000195,,, +4865,B,pt,ZYG641 Rdio Alvorada AM,,Londrina/Estrada da Cegonha (PR),-23.404444,-51.155556,,5,,10079,231,140,,0000-2400,1234567,16,,40000194,,, +4870,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,1,,3595,109,93,,,,,,50019832,,, +4870,IND,ne,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,ND,6248,85,100,NPL,1330-1430,1234567,,,50014472,,, +4870,IND,ks,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,1,,6248,85,119,SAs,0230-0310,1234567,,,50014292,,, +4870,IND,ks,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,1,,6248,85,119,SAs,1430-1510,1234567,,,50014292,,, +4870,IND,xnr,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,1,,6248,85,119,SAs,0310-0330,1234567,,,50014292,,, +4870,IND,xnr,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,1,,6248,85,119,SAs,1510-1530,1234567,,,50014292,,, +4870,EQA,,HCVB7 La Voz del Upano,,Macas (mor),-2.366667,-78.133333,,5,,9843,264,140,,1000-0800,1234567,,,40000199,,, +4870,INS,id,RRI Pro-1,,Wamena (PA-jyw),-4.103183,138.927456,,0.3,,13128,56,163,,0800-1405,1234567,93,,40000198,,, +4870,INS,id,RRI Pro-1,,Wamena (PA-jyw),-4.103183,138.927456,,0.3,,13128,56,163,,2000-0100,1234567,93,,40000198,,, +4874.6,INS,id,RRI Pro-1,,Sorong (PB-srg),-1,131.333333,,10,,12390,62,145,,0800-1300,1234567,-4874.6,,40000200,,, +4874.6,INS,id,RRI Pro-1,,Sorong (PB-srg),-1,131.333333,,10,,12390,62,145,,2000-0100,1234567,-4874.6,,40000200,,, +4875,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,1,,3595,109,93,,,,,,50019833,,, +4876,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,1,,3595,109,93,,,,,,50019834,,, +4876,B,pt,ZYG810 Rdio Roraima AM,,Boa Vista (RR),2.816667,-60.666667,,10,,8215,253,129,,0800-0405,1234567,41,,40000202,,, +4880,IND,hi,AIR North,,Lucknow (UP),26.881667,81.043333,,50,,6657,84,107,,0025-0430,1234567,,,40000204,,, +4880,IND,hi,AIR North,,Lucknow (UP),26.881667,81.043333,,50,,6657,84,107,,1215-1740,1234567,,,40000204,,, +4880,AFS,en,SW R Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,,1700-1900,1234567,2,,20300002,,, +4885,B,pt,ZYG362 Rdio Clube do Par,,Belm/Ananindeua (PA),-1.404444,-48.413556,,5,,7836,240,128,,0000-2400,1234567,2,,40000206,,, +4885,B,pt,ZYF692 Rdio Maria,,Anpolis (GO),-16.256944,-49.018889,,1,,9282,233,145,,0000-2400,1234567,,,40000208,,, +4886.6,PRU,es,R Virgen del Carmen,,Huancavelica (huv),-12.75,-75.05,,1.5,,10551,255,147,,1100-2330,1234567,-4886.6,,40000209,,, +4890.1,PRU,es,R Macedonia,,Arequipa (are),-16.416667,-71.533333,,1,,10646,251,149,,0600-0430,1234567,-4890.1,,40000212,,, +4895,MNG,mn,Mongoliin R 1,,Mrn=Murun (kgl),49.621667,100.172778,,50,,6104,52,101,,0655-1500,1234567,,,40000216,,, +4895,MNG,mn,Mongoliin R 1,,Mrn=Murun (kgl),49.621667,100.172778,,50,,6104,52,101,,2300-0500,1234567,,,40000216,,, +4895,IND,,AIR East,,Kurseong (WB),26.864722,88.258333,,20,,7145,79,115,,0055-0405,1234567,1,,40000214,,, +4895,IND,,AIR East,,Kurseong (WB),26.864722,88.258333,,20,,7145,79,115,,1130-1700,1234567,1,,40000214,,, +4895,IND,,AIR East,,Kurseong (WB),26.864722,88.258333,,20,,7145,79,115,,1700-1740,1.....7,1,,40000214,,, +4895,AFS,,Zimbabwe Community R.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,,1755-1855,1234567,45,,20300006,,, +4895,B,pt,ZYR200 Rdio IPB-Novo Tempo,,Campo Grande (MS),-20.561267,-54.636069,,5,,10000,235,140,,0000-2400,1234567,91,,40000217,,, +4895,AFS,en,Amateur R Today,,Meyerton (SW) (GT),-26.585833,28.138889,,1,,9003,160,144,SAf,1630-1730,1......,,,50022445,,, +4905,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2300-2400,1234567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0000-0700,1234567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0800-0950,1.34567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0950-1600,1234567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1700-1805,1234567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2050-2230,1234567,1,,40000221,,, +4905,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0700-0800,1.34567,1,,40000221,,, +4905,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1600-1700,1234567,1,,40000221,,, +4905,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2230-2300,1234567,1,,40000221,,, +4905,B,pt,ZYG683 Rdio Relgio Federal,,Rio de Janeiro/So Gonalo (RJ),-22.780389,-42.993667,,5,,9607,225,139,,0730-0200,1234567,,,40000219,,, +4909.3,EQA,es,R Chaskis del Norte,,Otavalo (imb),0.216667,-78.25,,0.5,,9624,266,149,,1000-0530,1234567,-4909.3,,40000224,,, +4910,IND,,AIR North,,Jaipur (RJ),26.91,75.748611,,50,,6294,88,103,,0025-0415,1234567,,,40000226,,, +4910,IND,,AIR North,,Jaipur (RJ),26.91,75.748611,,50,,6294,88,103,,1130-1740,1234567,,,40000226,,, +4910,ZMB,en,CVC Christian Voice,,Lusaka/Makeni Ranch (lsk),-15.538578,28.002717,,100,ND,7806,158,115,,0200-0515,1234567,,,50019194,,, +4910,ZMB,en,CVC Christian Voice,,Lusaka/Makeni Ranch (lsk),-15.538578,28.002717,,100,ND,7806,158,115,,1600-2200,1234567,,,50019194,,, +4910,AUS,en,VL8T ABC Darwin,,Tennant Creek (NT),-19.669722,134.2625,,50,,14272,71,144,,2130-0830,1234567,,,40000227,,, +4915,B,pt,ZYF360 Rdio Difusora Amap,,Macap (AP),0.011181,-51.064406,,10,,7862,243,126,,0000-2400,1234567,97,,40000230,,, +4915,B,pt,ZYF691 Rdio Daqui,,Goinia/Fazenda Botafogo (GO),-16.659167,-49.227222,,10,,9332,233,135,,0900-0400,1234567,962,,40000231,,, +4919,EQA,es,HCQR1 R Quito,,Quito (pic),-0.233333,-78.5,,5,,9681,266,139,,2200-1300,1234567,,,40000232,,, +4920,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2300-2400,1234567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0000-0700,1234567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0800-0950,12.4567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0950-1600,1234567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1700-1805,1234567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2050-2230,1234567,,,40000234,,, +4920,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0700-0800,12.4567,,,40000234,,, +4920,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1600-1700,1234567,,,40000234,,, +4920,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2230-2300,1234567,,,40000234,,, +4920,IND,hi,AIR South,,Chennai=Madras (TN),13.135556,80.125278,,50,,7749,95,118,,0015-0245,1234567,,,40000235,,, +4920,IND,hi,AIR South,,Chennai=Madras (TN),13.135556,80.125278,,50,,7749,95,118,,1200-1740,1234567,,,40000235,,, +4925,B,pt,ZYF271 Rdio Educao Rural,,Tef (AM),-3.351389,-64.711667,,5,,9034,253,137,,1030-0300,1234567,22,,40000237,,, +4925,INS,id,RRI Pro-1,,Jambi (JA-jam),-1.633333,103.566667,,10,,10639,85,139,,0900-1600,1234567,,,40000236,,, +4925,INS,id,RRI Pro-1,,Jambi (JA-jam),-1.633333,103.566667,,10,,10639,85,139,,1900-2200,1234567,,,40000236,,, +4925,INS,id,RRI Pro-1,,Jambi (JA-jam),-1.633333,103.566667,,10,,10639,85,139,,2200-0205,1234567,,,40000236,,, +4930,BOT,ZWE,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,ZWE,1700-1800,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1720-1740,....567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1730-1800,1234...,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1830-1930,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1930-2000,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,2000-2100,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,0300-0600,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,1400-1700,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,1800-1830,.....67,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,1800-1830,12345..,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,1830-2100,1234567,1,,50003933,,, +4930,BOT,nd,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1740-1800,....567,1,,50003933,,, +4930,BOT,sn,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1700-1720,....567,1,,50003933,,, +4930,BOT,sn,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1700-1730,1234...,1,,50003933,,, +4935,B,pt,ZYF641 Rdio Capixaba,,Vitria (ES),-20.390944,-40.368822,,1,,9246,223,145,,0000-2400,1234567,237,,40000242,,, +4940,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,,1900-1930,1234567,0,,50003934,,, +4940,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,,1930-2000,1234567,0,,50003934,,, +4940,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,,2000-2030,1234567,0,,50003934,,, +4940,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,2030-2100,.....67,0,,50003934,,, +4940,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,2030-2100,12345..,0,,50003934,,, +4940,IND,,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,,7430,77,114,,0000-0415,1234567,5,,40000246,,, +4940,IND,,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,,7430,77,114,,0415-0450,......7,5,,40000246,,, +4940,IND,,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,,7430,77,114,,1115-1700,12345.7,5,,40000246,,, +4940,IND,,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,,7430,77,114,,1700-1741,.....6.,5,,40000246,,, +4940,CHN,en,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1500-1530,.....6.,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0000-0400,1234567,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0400-0950,12.4567,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0950-1500,1234567,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1500-1530,12345.7,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1530-1600,1234567,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,2225-2400,1234567,73,,36200264,,, +4940,PRU,es,OAW5A R San Antonio,,Villa Atalaya (uca),-10.716667,-73.766667,,1,,10287,256,148,,1000-1300,1234567,97,,40000247,,, +4940,PRU,es,OAW5A R San Antonio,,Villa Atalaya (uca),-10.716667,-73.766667,,1,,10287,256,148,,2200-0200,1234567,97,,40000247,,, +4949.75,AGL,pt,RNA Canal A,,Mulenvos/Baixo (lua),-8.854444,13.316667,,10,,6811,172,115,,0000-2400,1234567,752,,40000250,,, +4950,IND,,AIR North/AIR R Kashmir,,Srinagar (JK),34.03,74.905833,,50,,5680,82,97,,0000-0120,1......,986,,40000252,,, +4950,IND,,AIR North/AIR R Kashmir,,Srinagar (JK),34.03,74.905833,,50,,5680,82,97,,0120-0215,1234567,986,,40000252,,, +4950,IND,,AIR North/AIR R Kashmir,,Srinagar (JK),34.03,74.905833,,50,,5680,82,97,,1120-1743,1234567,986,,40000252,,, +4950,PRU,es,OBX7I R Madre de Dios,,Puerto Maldonado/San Jacinto (mdd),-12.616667,-69.183333,,5,,10156,251,141,,1000-0150,1234567,762,,40000253,,, +4955,PRU,es,OAX5S R Cultural Amauta,,Huanta/Pasaje Amauta (aya),-12.923889,-74.247778,,5,,10514,255,142,,0930-1400,1234567,0,,40000255,,, +4955,PRU,es,OAX5S R Cultural Amauta,,Huanta/Pasaje Amauta (aya),-12.923889,-74.247778,,5,,10514,255,142,,2100-0150,1234567,0,,40000255,,, +4960,TJK,AFG,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,180,4943,82,86,AFG,1200-1400,1234567,,,50020264,,, +4960,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,180,4943,82,86,ME,1400-1900,1234567,,,50020264,,, +4960,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,0400-0500,1234567,994,,50003936,,, +4960,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,0530-0630,12345..,994,,50003936,,, +4960,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,0500-0530,1234567,994,,50003936,,, +4960,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,0700-0730,1234567,994,,50003936,,, +4965,B,pt,ZYF275 Rdio Alvorada,,Parintins (AM),-2.638878,-56.725622,,5,,8458,247,135,,2200-0200,1234567,,,40000265,,, +4965,PRU,es,OAZ7B R Santa Mnica,,Cerro Osccollopata (cus),-14.066667,-71.833333,,1,,10457,252,149,,0800-0400,1234567,,,40000266,,, +4970,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440389,91.807667,,50,,7500,77,115,,0025-0400,1234567,,,40000269,,, +4970,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440389,91.807667,,50,,7500,77,115,,1056-1630,1234567,,,40000269,,, +4974.8,PRU,es,OAZ4X Pacfico R,,Lima/El Agustino (lim),-12.038833,-76.98175,,5,,10617,257,142,,1030-1400,1234567,75,,40000270,,, +4974.8,PRU,es,OAZ4X Pacfico R,,Lima/El Agustino (lim),-12.038833,-76.98175,,5,,10617,257,142,,2300-0100,1234567,75,,40000270,,, +4974.9,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/FJTS102 (FJ),26.023333,119.276667,,10,,9165,57,134,,0930-1030,1234567,-4974.9,,40000271,,, +4974.9,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/FJTS102 (FJ),26.023333,119.276667,,10,,9165,57,134,,2250-2320,1234567,-4974.9,,40000271,,, +4975,B,pt,ZYG865 Rdio Iguatemi,,So Paulo (SP),-23.514294,-46.595589,,1,,9855,227,147,,0000-2400,1234567,997,,40000273,,, +4976,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,0215-0345,.23456.,965,,40000274,,, +4976,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,0345-0600,1234567,965,,40000274,,, +4976,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,1300-1400,12345..,965,,40000274,,, +4976,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,1400-2105,.....67,965,,40000274,,, +4980,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1500-1600,1234567,,,40000275,,, +4980,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1130-1500,1234567,,,40000275,,, +4980,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1600-1800,1234567,,,40000275,,, +4980,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0300,1234567,,,40000275,,, +4985,B,pt,ZYF690 Rdio Brasil Central,,Goinia/Fazenda Bananal (GO),-16.588014,-49.216389,,10,,9325,233,135,,0000-2400,1234567,11,,40000277,,, +4985,PRU,es,OAW4G R Manantial,,Huancayo (jun),-12.133333,-75.266667,,1,,10511,256,149,,0000-2400,1234567,38,,37000043,,, +4990,IND,,AIR Northeast,,Itanagar (AR),27.0775,93.590556,,50,,7482,75,115,,0020-0400,1234567,,,40000280,,, +4990,IND,,AIR Northeast,,Itanagar (AR),27.0775,93.590556,,50,,7482,75,115,,1000-1630,1234567,,,40000280,,, +4990,CHN,zh,Hunan RGD,,Xiangtan (HN),27.849444,112.950556,,10,,8633,60,133,,2100-1700,1234567,979,,40000279,,, +4990,SUR,xx,R Apintie,,Paramaribo (pmb),5.866667,-55.233333,,0.5,180,7587,250,136,,0600-0300,1234567,98,,40000282,,, +4996,RUS,,RWM,,Elektrougli (MO),55.737778,38.153889,,5,,2098,66,71,,0000-2400,1234567,,,6700070,,, +4998,E,es,EBC,,San Fernando/ROA (AND-CA),36.464222,-6.206111,,10,,2002,215,67,,1030-1055,12345..,,,2200017,,, +5000,I,,IBF,,Torino/Torre Bert (to),45.043711,7.703583,,0.1,,791,173,75,,0000-2400,1234567,,,4000041,,, +5000,CHN,,BPM,,Lintong/Pucheng (SA),34.947778,109.552389,,10,,7813,58,125,,0000-2400,1234567,,,36200216,,, +5000,USA,en,WWV,,Fort Collins (CO),40.678361,-105.04025,,10,,7770,311,125,,0000-2400,1234567,,,20000085,,, +5000,KOR,,HLA,,Daejon=Daejeon (daj),36.387611,127.366681,,2,,8634,45,139,,0100-0800,12345..,,,34600005,,, +5000,HWA,en,WWVH,,Kekaha (HI),21.986333,-159.762444,,10,,11667,347,143,,0000-2400,1234567,,,20000090,,, +5000,EQA,,HD2IOA,l,Guayaquil/Base Naval Sur (gua),-2.268889,-79.906667,,1,,9955,266,147,,1200-1300,1234567,,,32600008,,, +5005,GNE,,R.Nacional Guinea Ecuatorial,,Bata/Nsueeman (bat),1.825833,9.779167,,100,,5600,176,93,,0530-2213,1234567,2,,40000287,,, +5005.7,PRU,es,R LTC,,Juliaca/Cerro 3 de Mayo (pun),-15.5,-70.083333,,1,,10471,250,149,,0900-0200,1234567,-5005.7,,40000289,,, +5006,J,,JG2XA HFD R,,Tokyo/UEC Chofu (kan-tok),35.657194,139.544444,,0.2,,9248,37,151,,0000-2400,1234567,,,31400015,,, +5010,IND,,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,,7942,100,119,,0020-0215,1234567,7,,40000291,,, +5010,IND,,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,,7942,100,119,,1130-1740,1234567,7,,40000291,,, +5010,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,1,,7449,61,131,FE,2200-2400,1234567,,,50023659,,, +5010,DOM,es,R Pueblo,,Santo Domingo (sdo),18.516667,-69.866667,,1,,7464,271,132,,1100-0430,1234567,,,21100003,,, +5010,IND,ml,FEBA R,,Thiruvananthapuram (KL),8.456111,76.936944,,1,,7942,100,136,SAs,1130-1200,1234567,,,50010149,,, +5010,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,1,,9444,57,145,FE,2200-2400,1234567,,,50023660,,, +5014.7,PRU,es,OBZ4B R Altura,,Cerro de Pasco (pas),-10.716667,-76.25,,5,,10452,258,142,,0950-0350,1234567,-5014.7,,40000292,,, +5015,TKM,,TR1 Watan R,,Aşgabat/Karatamak (asb),37.859444,58.367222,,50,,4275,91,83,,0100-2100,1234567,,,40000293,,, +5015,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,100,,8843,141,123,,0230-2100,12345..,902,,40000290,,, +5015,B,pt,ZYF903 Rdio Cultura de Cuiab,,Cuiab (MT),-15.618667,-56.097756,,1,90,9621,239,146,,0000-2400,1234567,95,,36902752,,, +5020,SLM,en,SIBC R Hapi Isles,,Honiara/Henderson Field (cth),-9.435556,160.06,,10,,14705,36,153,,1856-1200,1234567,87,,40000297,,, +5024.9,PRU,es,OAX7Q R Quillabamba,,Quillabamba (cus),-12.816667,-72.683333,,5,,10401,254,141,,0700-0300,1234567,91,,40000765,,, +5025,CUB,es,R Rebelde,,Bauta/Corralillo (ch),22.951111,-82.546111,,100,,7945,284,117,,0000-2400,1234567,3,,40000768,,, +5025,AUS,en,VL8K ABC Darwin,,Katherine (NT),-14.395,132.179444,,50,,13671,69,142,,2130-0830,1234567,987,,40000767,,, +5030,MLA,ms,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,,10817,78,140,ND,2200-1000,1234567,,,50013434,,, +5030,MLA,ms,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,1000-1600,1234567,,,50013434,,, +5030,PRU,es,OAZ2A R.Virgen de la Alta Gracia,,Huamachuco (lal),-7.8,-78.066667,,3,,10317,261,143,,1000-1400,1234567,,,37000045,,, +5030,PRU,es,OAZ2A R.Virgen de la Alta Gracia,,Huamachuco (lal),-7.8,-78.066667,,3,,10317,261,143,,2030-0400,1234567,,,37000045,,, +5035,CAF,fr,R Centrafrique,,Bangui (bgf),4.323611,18.520833,,1,,5430,164,111,,1630-1940,1234567,2,,9300003,,, +5035,B,pt,ZYG853 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,10,,9721,226,136,,0830-0400,123456,5,,40000776,,, +5035,B,pt,ZYG853 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,10,,9721,226,136,,0900-0300,......7,5,,40000776,,, +5035,B,pt,ZYF272 Rdio Educao Rural,,Coar (AM),-4.09425,-63.137389,,5,,8999,251,137,,1000-0045,1234567,,,36902882,,, +5039.3,PRU,es,OCY4Y R Libertad,,Junn (jun),-12.183333,-75.166667,,1,,10509,256,149,,1000-1330,1234567,18,,37000047,,, +5039.3,PRU,es,OCY4Y R Libertad,,Junn (jun),-12.183333,-75.166667,,1,,10509,256,149,,2230-0205,1234567,18,,37000047,,, +5039.9,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/FJTS102 (FJ),26.023333,119.276667,,10,140,9165,57,134,,0925-1035,1234567,-5039.9,,40000777,,, +5039.9,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/FJTS102 (FJ),26.023333,119.276667,,10,140,9165,57,134,,2235-2325,1234567,-5039.9,,40000777,,, +5040,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0500-0600,1234567,,,50015977,,, +5040,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,CAm,2300-2400,1234567,,,50015977,,, +5040,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0100-0400,1234567,,,50015977,,, +5040,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0400-0500,1234567,,,50015977,,, +5040,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,CAm,0100-0500,1234567,,,50015977,,, +5040,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,Car,2100-2300,1234567,,,50015977,,, +5040,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,CAm,0030-0100,1234567,,,50015977,,, +5040,CUB,ht,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,CAm,0000-0030,1234567,,,50015977,,, +5040,IND,,AIR East,,Jeypore (OR),18.921389,82.561667,,10,,7421,89,121,,0025-0435,1234567,11,,40000778,,, +5040,IND,,AIR East,,Jeypore (OR),18.921389,82.561667,,10,,7421,89,121,,0435-0445,1......,11,,40000778,,, +5040,IND,,AIR East,,Jeypore (OR),18.921389,82.561667,,10,,7421,89,121,,1130-1741,1234567,11,,40000778,,, +5050,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705833,,10,,7702,78,124,,0025-0400,1234567,,,40000784,,, +5050,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705833,,10,,7702,78,124,,1130-1630,1234567,,,40000784,,, +5050,USA,en,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,1,,7115,295,128,NAm,2200-0500,1234567,,,50023661,,, +5050,CHN,,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2240-2300,1234567,,,40000783,,, +5050,CHN,ct,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1000-1100,1234567,,,40000783,,, +5050,CHN,th,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1100-1130,12345..,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,0000-0100,12345..,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1100-1130,.....67,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1130-1330,1234567,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1500-1600,1234567,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2300-2400,....56.,,,40000783,,, +5050,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,0000-0100,.....67,,,40000783,,, +5050,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1330-1500,1234567,,,40000783,,, +5050,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2300-2400,1234..7,,,40000783,,, +5059.2,PRU,es,La Voz de las Huarinjas,,Huancabamba (piu),-5.283333,-79.466667,,0.25,,10190,264,154,,1000-0215,1234567,-5059.2,,40000579,,, +5060,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1200-1800,1234567,986,,40000305,,, +5060,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0300,1234567,986,,40000305,,, +5066.4,COD,fr,R.Candip/Voix du Peuple,,Bunia (ksi),2,30.333333,,1,,5998,150,117,,0400-0900,1234567,-5066.4,,40000306,,, +5066.4,COD,fr,R.Candip/Voix du Peuple,,Bunia (ksi),2,30.333333,,1,,5998,150,117,,1300-1905,1234567,-5066.4,,40000306,,, +5066.5,OCE,,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,-5066.5,,37500008,,, +5070,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,1,,7122,296,128,NAm,2300-0100,1234567,,,50022446,,, +5080,PAK,fa,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,ND,5607,84,93,,1445-1545,1234567,,,50019836,,, +5080,PAK,ps,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,ND,5607,84,93,,1345-1445,1234567,,,50019836,,, +5085,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,NAm,0000-0100,1234567,,,50017763,,, +5085,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,NAm,0100-1300,1234567,,,50017763,,, +5085,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,NAm,1300-1500,9999999,,,50017763,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0015-0215,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0245-0330,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0400-0500,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0600-0945,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1015-1715,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1800-1845,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1915-2045,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2215-2400,1234567,,,37700104,,, +5110,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,0000-0300,....567,,,50015981,,, +5110,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0000-0400,1234567,,,50015981,,, +5110,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0000-2400,1234567,,,50015981,,, +5110,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0400-1100,.23456.,,,50015981,,, +5130,KGZ,AFG,R Sedaye Zindagi,,Krasnaya Rechka (cuy),42.882222,74.991667,,1,,5055,73,108,AFG,1630-1900,1234567,965,,50019572,,, +5195,D,,DRA5 aurora beacon,c,Scheggerott (shs),54.668453,9.823456,,0.03,,363,37,76,,0000-2400,1234567,9970,,2000022,,, +5258.6,CZE,,OK1IF,b,Liberec JO70MS,49.6,15.5,,0.005,,696,110,87,,,,-5258.6,?,55014,,, +5289.5,DNK,,OV1BCN,b,Vinstrup,55.35,11.533333,,0.03,,493,41,77,,,,-5289.5,Fold.Dip usb+cw+MT63 24,55015,,, +5290,G,,GB3RAL,b,near Didcot (EN-OXF),51.55,-1.283333,,0.01,,532,266,82,,,,,Inv. Vee A1+psk zzz,55016,,, +5290,G,,GB3WES,b,Cumbria (EN-CUM),54.55,-2.616667,,0.01,,657,298,84,,,,,Inv. Vee A1+psk zzz,55017,,, +5290,G,,GB3ORK,b,Orkney (SC-ORK),59.016667,-3.2,,0.01,,975,326,87,,,,,Inv. Vee A1+psk zzz,55018,,, +5315,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800021,,, +5323.6,PRU,es,La Voz del Anta,,Acobamba (huv),-12.866667,-74.566667,,1,,10530,255,149,,????-1200,1234567,-5323.6,,40000446,,, +5323.6,PRU,es,La Voz del Anta,,Acobamba (huv),-12.866667,-74.566667,,1,,10530,255,149,,????-2350,1234567,-5323.6,,40000446,,, +5384.3,PRU,es,R Huarmaca,,Huarmaca (piu),-5.6,-79.583333,,0.3,,10226,263,153,,1100-0100,1234567,-5384.3,,40000321,,, +5398.5,GRC,,SZ1SV,b,,37.966667,23.7,,0.03,,2067,133,93,,,,-5398.5,psk31 H+0+15+30+45,55019,,, +5415,ARG,es,R Continental/La Red,l,Buenos Aires (df),-34.633333,-58.466667,,5,,11512,230,145,,,,,,40000322,,, +5433,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800022,,, +5450,G,en,MVU RAF Volmet,u,St Eval (EN-CNW),50.478167,-4.999583,,10,,813,262,55,,0000-2400,1234567,,,2800010,,, +5451,URG,,Carrasco Volmet,u,Carrasco (mo),-34.824722,-56.019444,,1,,11403,228,152,,1015-2025,1234567,,,31200013,,, +5451,URG,es,Carrasco Volmet,u,Carrasco (mo),-34.824722,-56.019444,,1,,11403,228,152,,:15-:24,1234567,,,31200013,,, +5460.2,PRU,es,R Emisora Bolvar,,Bolvar (lal),-16.3,-77.433333,,0.5,,11020,255,153,,1000-0310,1234567,90,,40000326,,, +5475,ARG,es,Salta Volmet,u,Salta (sa),-24.833333,-65.45,,1,,11018,241,150,,:15-:24,1234567,,,33000041,,, +5475,ARG,es,Crdoba Volmet,u,Crdoba (cb),-31.309444,-64.216944,,1,,11526,236,152,,:25-:34,1234567,,,33000039,,, +5485.6,PRU,es,R Frecuencia Popular,,Olmos (lam),-5.983333,-79.75,,0.5,,10271,263,151,,1000-0200,1234567,-5485.6,,37000034,,, +5486.7,PRU,es,R Reina de la Selva,,Chachapoyas (ama),-6.216667,-77.9,,0.06,,10166,262,160,,1000-0130,1234567,-5486.7,,40000328,,, +5493,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100002,,, +5493,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500004,,, +5505,IRL,en,EIP Shannon Volmet,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100006,,, +5517,LBY,,Tripoli Aero,u,Tarabulus=Tripoli (tbl),32.905864,13.290006,,1,,2206,163,79,,,,,,4800005,,, +5517,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300006,,, +5517,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400004,,, +5517,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600006,,, +5517,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300002,,, +5517,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500004,,, +5517,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500002,,, +5520,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012409,,, +5520,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902908,,, +5526,GUF,,Cayenne Aero,u,Cayenne (973),4.824111,-52.361667,,1,,7499,247,132,,,,,,32300001,,, +5526,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400006,,, +5526,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500023,,, +5526,ARG,,Ezeiza Aero,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,,,,,33000063,,, +5541,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800049,,, +5544,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900004,,, +5547,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012429,,, +5547,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012468,,, +5550,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012385,,, +5550,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902901,,, +5550,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100012,,, +5553,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902869,,, +5565,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000008,,, +5565,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100003,,, +5565,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300015,,, +5574,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012428,,, +5574,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012467,,, +5580.3,BOL,es,R San Jos,,San Jos de Chiquitos (scz),-17.844444,-60.738889,,0.25,,10102,241,153,,1030-0200,1234567,28,,40000332,,, +5587.1,CLM,es,R Juventud,,Pasto (nar),1.216667,-77.283333,,1,,9470,266,145,,????-0200,1234567,-5587.1,,35902899,,, +5589,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500004,,, +5589,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100013,,, +5597,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,0330-0430,1234567,,,33200006,,, +5597,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,0945-1100,1234567,,,33200006,,, +5597,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,1145-1400,1234567,,,33200006,,, +5597,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,2200-2300,1234567,,,33200006,,, +5598,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100012,,, +5598,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,0000-2400,1234567,,,700001,,, +5598,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109256,,, +5598,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2000-1700,1234567,,,20012389,,, +5601,ARG,es,Ezeiza Volmet,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,:15-:25,1234567,,,33000043,,, +5602,PRU,es,R San Francisco,,San Francisco (cus),-12.6,-73.816667,,1,,10457,255,149,,2230-0200,1234567,,,37000048,,, +5616,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100018,,, +5616,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200001,,, +5616,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0000-2400,1234567,,,20109257,,, +5622,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700100,,, +5628,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012483,,, +5628,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012458,,, +5634,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200014,,, +5634,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500009,,, +5634,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300016,,, +5643,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012449,,, +5643,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500004,,, +5643,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700076,,, +5643,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700081,,, +5643,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500004,,, +5643,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500033,,, +5649,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100020,,, +5649,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200008,,, +5649,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0000-2400,1234567,,,20109265,,, +5652,ALG,,Alger Aero,u,Algiers (16),36.7,3.2,,1,,1732,190,74,,,,,,200012,,, +5652,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012450,,, +5652,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012500,,, +5655,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900011,,, +5658,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300010,,, +5658,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900012,,, +5658,DJI,,Djibouti Aero,u,Djibouti (djb),11.535556,43.156667,,1,,5583,130,113,,,,,,8800003,,, +5658,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600016,,, +5658,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500010,,, +5658,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200030,,, +5658,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500003,,, +5661,MLT,,Malta Aero,u,Benghisa (mt),35.815694,14.528403,,1,,1922,157,76,,,,,,5800001,,, +5667,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012459,,, +5668,URG,es,Emisora Chan FM,,Tacuaremb (ta),-31.733333,-55.983333,,1,,11116,230,151,,0900-1440,1234567,,,31200001,,, +5668,URG,es,Emisora Chan FM,,Tacuaremb (ta),-31.733333,-55.983333,,1,,11116,230,151,,2300-0200,1234567,,,31200001,,, +5670,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0300-0700,1234567,,,8400005,,, +5670,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200031,,, +5670,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200028,,, +5673,CHN,en,Beijing Volmet,u,Beijing/Airport (BJ),40.087778,116.605556,,1,,7757,50,135,,0915-1700,1234567,,,36200226,,, +5673,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:00-:14,1234567,,,36200222,,, +5673,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:30-:44,1234567,,,36200222,,, +5680,IRL,en,Shanwick SAR,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,????-????,1234567,,,4100036,,, +5680,NOR,,Bod SAR,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,????-????,1234567,,,6300027,,, +5680,FJI,,Nadi SAR,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500012,,, +5680,OCE,,Tahiti SAR,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500012,,, +5691,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:00-:04,1234567,,,6700043,,, +5691,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:30-:34,1234567,,,6700043,,, +5691,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:25-:29,1234567,,,6700059,,, +5691,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:55-:59,1234567,,,6700059,,, +5691,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:10-:14,1234567,,,6700047,,, +5691,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:40-:44,1234567,,,6700047,,, +5691,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:20-:24,1234567,,,6700055,,, +5691,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:50-:54,1234567,,,6700055,,, +5691,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:15-:19,1234567,,,6700051,,, +5691,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:45-:49,1234567,,,6700051,,, +5696,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,????-????,1234567,,,20000103,,, +5720,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200019,,, +5745,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,ENA,0230-0300,......7,,,50021790,,, +5745,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,ENA,0930-1000,......7,,,50021790,,, +5755,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1100-1715,1234567,,,37700108,,, +5755,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1845,1234567,,,37700108,,, +5755,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1915-2045,1234567,,,37700108,,, +5765,GUM,en,AFN,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,0900-2100,1234567,,,20000016,,, +5770,MYA,my,Myanmar Defence Forces BC,,Taunggyi/Kalaw (shn),20.636944,96.591667,,10,,8224,77,129,,0030-0430,1234567,18,,40000341,,, +5770,MYA,my,Myanmar Defence Forces BC,,Taunggyi/Kalaw (shn),20.636944,96.591667,,10,,8224,77,129,,0630-0930,1234567,18,,40000341,,, +5770,MYA,my,Myanmar Defence Forces BC,,Taunggyi/Kalaw (shn),20.636944,96.591667,,10,,8224,77,129,,1130-1530,1234567,18,,40000341,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0000-0015,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0100-0115,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0200-0215,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0300-0315,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0400-0415,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0900-0915,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1000-1015,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1100-1115,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1200-1215,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1300-1315,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1400-1415,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1500-1515,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1600-1615,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2100-2115,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2200-2215,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2300-2315,1234567,,,32500042,,, +5810,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,0000-0500,1234567,,,50000077,,, +5820,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2230-2400,1234567,,,50022447,,, +5820,AFS,en,RT R Worldwide,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,1930-2000,1234567,,,50011864,,, +5825,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023662,,, +5830,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,1730-1930,1234567,,,50022450,,, +5830,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,50,7067,296,108,NAm,0000-0100,1234567,,,50019574,,, +5830,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,50,7067,296,108,NAm,0100-1400,1234567,,,50019574,,, +5830,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,50,7067,296,108,NAm,1400-1500,9999999,,,50019574,,, +5830,USA,en,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,50,7067,296,108,,0000-1400,1234567,,,50019574,,, +5830,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023663,,, +5830,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2300-2400,1234567,,,50023664,,, +5833,D,,DAO24 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,,,2000058,,, +5836,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,,,20016135,,, +5845,THA,bn,BBC WS,d,Nakhon Sawan (nsn),15.810278,100.064167,,100,290,8872,77,123,SAs,1330-1400,1234567,,,50016519,,, +5845,THA,en,BBC WS,d,Nakhon Sawan (nsn),15.810278,100.064167,,100,290,8872,77,123,SAs,1400-1800,1234567,,,50016519,,, +5850,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,0000-0300,1234567,,,50022452,,, +5850,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,1930-2400,1234567,,,50022452,,, +5855,MRA,ko,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1900,1234567,,,50022453,,, +5857.5,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,0000-2400,1234567,-5857.5,,34600011,,, +5860,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,0000-0300,1234567,,,50022454,,, +5860,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,58,4199,110,75,IRN,0300-0330,1234567,,,50003981,,, +5860,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,,8219,99,115,IRN,2230-2400,1234567,,,50003982,,, +5860,CHN,zh,Jingling zhi Sheng,,Nanjing (JS),32.033333,118.733333,,50,161,8589,54,125,,1430-1605,1234567,,,40000349,,, +5865,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,0400-0500,1234567,,,50022455,,, +5865,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0500-0600,1234567,,,50022455,,, +5865,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0600-0700,1234567,,,50022455,,, +5865,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0605-0700,1234567,,,50022455,,, +5865,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0600-0605,1234567,,,50022455,,, +5865,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1800-2100,1234567,,,50023665,,, +5865,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1800-2100,1234567,,,50022457,,, +5875,G,ar,BBC WS,d,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,EAf,0300-0400,1234567,,,50009601,,, +5875,G,en,BBC WS,d,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,SEu,0700-0800,1234567,,,50009601,,, +5875,G,en,BBC WS,d,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,SEu,0800-0900,1234567,,,50009601,,, +5875,BUL,de,KBS World R,D,Sofia/Kostinbrod (sof),42.808889,23.186944,,1,,1624,123,73,Eu,1900-2000,1234567,,,50022458,,, +5875,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,CAf,0500-0600,1234567,,,50020343,,, +5875,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023666,,, +5875,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,325,8872,77,119,SAs,1630-1700,1234567,,,50009602,,, +5875,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,325,8872,77,119,FE,1200-1500,1234567,,,50009602,,, +5875,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,AFG,1700-1730,1234567,,,50009602,,, +5875,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,AFG,1800-1900,1234567,,,50009602,,, +5875,THA,my,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,325,8872,77,119,SEA,0000-0030,1234567,,,50009602,,, +5875,THA,ps,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,AFG,1730-1800,1234567,,,50009602,,, +5875,THA,km,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,144,8917,74,120,SEA,1115-1130,1234567,,,50014480,,, +5875,THA,lo,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,30,8917,74,120,SEA,1130-1145,1234567,,,50014480,,, +5875,THA,my,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,284,8917,74,120,SEA,1145-1200,1234567,,,50014480,,, +5875,THA,vi,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,144,8917,74,120,SEA,1100-1115,1234567,,,50014480,,, +5875,PHL,ko,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1900-2100,1234567,,,50022459,,, +5875,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023667,,, +5885,CVA,ar,VoA Darfur,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0300-0330,1234567,,,50022462,,, +5885,BUL,de,KBS World R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,1900-2000,1234567,,,50022461,,, +5885,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,46,4199,110,75,,1000-1100,1234567,,,50021643,,, +5885,KWT,km,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,78,4199,110,75,,2230-2330,1234567,,,50020345,,, +5885,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,0330-0830,1234567,,,50022463,,, +5885,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023668,,, +5885,CLN,km,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,2230-2330,1234567,,,50022464,,, +5885,THA,ru,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2000-2100,1234567,,,50022465,,, +5885,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023669,,, +5890,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1800-1900,1234567,,,50022466,,, +5890,UZB,en,BBC WS,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0000-0100,1234567,,,50023670,,, +5890,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,,0000-0100,.23456.,,,50004001,,, +5890,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,,2330-2400,12345..,,,50004001,,, +5890,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,,0200-1200,1234567,,,50009605,,, +5890,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,NAm,0300-1300,1234567,,,50009605,,, +5890,MRA,ko,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1200-1500,1234567,,,50022467,,, +5895,NOR,en,R Romania Int.,D,Kvitsy (ro),59.066667,5.4375,,65,220,776,356,47,,1800-1830,1234567,,,50019202,,, +5895,BUL,en,Brother Stair,d,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,1600-1800,1234567,,,50023672,,, +5895,BUL,en,Brother Stair,d,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,2000-2200,1234567,,,50023672,,, +5895,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0000-2400,9999999,,,6800045,,, +5895,NOR,no,LKB/LLE-3 Bergen Kringkaster,u,Erdal (ho),60.448778,5.216944,,0.05,,930,356,79,,0500-0800,.23....,,,6300043,,, +5895,NOR,no,LKB/LLE-3 Bergen Kringkaster,u,Erdal (ho),60.448778,5.216944,,0.05,,930,356,79,,0730-1000,.....6.,,,6300043,,, +5895,NOR,no,LKB/LLE-3 Bergen Kringkaster,u,Erdal (ho),60.448778,5.216944,,0.05,,930,356,79,,1400-1600,...4...,,,6300043,,, +5895,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023671,,, +5895,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023673,,, +5900,BUL,de,RTR2 Powerstation,,Sofia/Kostinbrod (sof),42.808889,23.186944,,50,306,1624,123,56,,1800-2000,9999999,,,800006,,, +5900,RUS,en,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,FE,1500-1800,1234567,,,50022468,,, +5900,RUS,mn,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,MNG,1300-1400,123456,,,50022469,,, +5900,RUS,zh,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,FE,1000-1300,1234567,,,50022469,,, +5905,UZB,bn,FEBA R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0000-0030,1234567,,,50022471,,, +5905,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,1200-1400,1234567,,,50004011,,, +5905,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,ND,5347,76,91,CAs,0100-0200,1234567,,,50004011,,, +5905,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,0,0400-0530,1234567,,,50017882,,, +5905,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,EAf,0300-0400,1234567,,,50017882,,, +5905,ASC,pt,Deutsche Welle,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,100,6960,203,103,SAf,0530-0600,1234567,,,50020350,,, +5905,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023674,,, +5905,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,2300-2400,1234567,,,50022470,,, +5905,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023675,,, +5910,F,es,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,290,660,211,37,CAm,0400-0430,1234567,,,50020351,,, +5910,AUT,pl,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,30,849,119,46,300,0544-0600,12345..,,,50020353,,, +5910,AUT,pl,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,30,849,119,46,Eu,0644-0659,12345..,,,50020353,,, +5910,LTU,ru,NHK R Japan,,Kaunas/Sitkūnai (Kau),55.043611,23.807778,,100,,1191,67,49,Eu,0430-0500,1234567,,,50022474,,, +5910,ROU,,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,240,1660,112,54,,1430-1500,1234567,,,50017886,,, +5910,ROU,,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,240,1660,112,54,,1830-1900,1234567,,,50017886,,, +5910,ROU,,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,240,1660,112,54,270,1630-1700,1234567,,,50017886,,, +5910,ROU,it,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1600-1630,1234567,,,50017886,,, +5910,ROU,it,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1800-1830,1234567,,,50017886,,, +5910,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,240,1660,112,54,ENA,0100-0300,1234567,,,50017886,,, +5910,ROU,sr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1530-1600,1234567,,,50017886,,, +5910,ROU,sr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1730-1800,1234567,,,50017886,,, +5910,ROU,sr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1930-2000,1234567,,,50017886,,, +5910,ROU,uk,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,30,1660,112,54,,1500-1530,1234567,,,50017886,,, +5910,ROU,uk,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,30,1660,112,54,,1700-1730,1234567,,,50017886,,, +5910,ROU,uk,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,30,1660,112,54,,1900-1930,1234567,,,50017886,,, +5910,UAE,fa,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,AFG,1800-1900,1234567,,,50022473,,, +5910,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1700-1730,1234567,,,50022472,,, +5910,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1730-1800,1234567,,,50022472,,, +5910,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1500-1600,1234567,,,50004018,,, +5910,RUS,vi,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,SEA,1200-1300,1234567,,,50022475,,, +5910,J,K,M,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1600-1700,.2.....,,,50022262,, +5910,J,en,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,....5..,,,50022262,,, +5910,J,en,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1600-1700,....5..,,,50022262,,, +5910,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,.....67,,,50022262,,, +5910,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,1.34...,,,50022262,,, +5910,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1600-1700,.....67,,,50022262,,, +5910,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1600-1700,1.34...,,,50022262,,, +5910,J,zh,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,.2.....,,,50022262,,, +5910,CLM,es,HJDH Alcaravn R,,Lomalinda (ant),7.15,-74.583333,,5,,8766,267,136,,2300-1200,1234567,92,,40000353,,, +5915,IRN,zh,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,FE,2320-0020,1234567,,,50022479,,, +5915,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,2300-2400,1234567,,,50004027,,, +5915,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,209,5347,76,91,SAs,1600-1700,1234567,,,50004027,,, +5915,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,0200-0300,1234567,,,50004027,,, +5915,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1200-1300,1234567,,,50004025,,, +5915,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1400-1500,1234567,,,50004025,,, +5915,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,1000-1200,1234567,,,50004025,,, +5915,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1300-1400,1234567,,,50004025,,, +5915,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1500-1600,1234567,,,50004025,,, +5915,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,2200-2300,1234567,,,50022476,,, +5915,ZMB,,ZNBC R 1,,Lusaka (lsk),-15.494444,28.243889,,100,,7807,158,115,,0240-2200,1234567,,,11200001,,, +5915,ZMB,en,CVC Christian Voice,,Lusaka/Makeni Ranch (lsk),-15.538578,28.002717,,100,ND,7806,158,115,,0515-1600,1234567,,,50019205,,, +5915,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,2200-2300,1234567,,,50022477,,, +5915,MYA,my,Myanmar R-Minorities,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,356,8233,77,122,,0800-1430,1234567,0,,22100001,,, +5915,MYA,my,Myanmar R-Minorities,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,356,8233,77,122,,2330-0530,1234567,0,,22100001,,, +5920,IRN,ku,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1320-1620,1234567,,,50022481,,, +5920,IRN,ru,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,EEu,1650-1750,1234567,,,50022480,,, +5920,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,2300-2400,.....67,,,50015987,,, +5920,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,173,0900-1100,12345..,,,50015987,,, +5920,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,0800-0900,.....6.,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,0330-0400,12345..,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,0430-0800,12345..,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1200-1300,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,25,0000-0200,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,CAm,0300-0430,1.....1,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0430-0530,1.....1,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0530-0700,12345.7,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0700-0800,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0800-0900,.....67,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0900-1000,.....6.,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,1000-1100,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0000-0100,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0100-0130,1.....1,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0130-0200,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0200-0300,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,SAm,2300-2400,12345.7,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,315,7046,290,108,,0500-1200,1234567,,,50015987,,, +5921.3,PRU,es,OAX6A R Bethel,,Arequipa (are),-16.416667,-71.533333,,1,,10646,251,149,,0000-2400,1234567,-5921.3,,40000364,,, +5925,D,fa,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,AFG,0100-0130,1234567,,,50022486,,, +5925,D,ps,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,AFG,0030-0100,1234567,,,50022486,,, +5925,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0600-0700,1234567,,,50022483,,, +5925,ALG,fr,R Algrie Int.,,Bchar (8),31.566667,-2.35,,100,,2393,201,61,CAf,0400-0600,1234567,,,50022482,,, +5925,KWT,ru,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,EEu,2000-2100,1234567,,,50022485,,, +5925,IRN,sq,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1820-1920,1234567,,,50022484,,, +5925,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2055-1705,1234567,,,40000356,,, +5925,VTN,vi,VOV2,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,2155-1700,1234567,,,40000357,,, +5930,D,be,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1700-1800,1234567,,,50022488,,, +5930,G,vi,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,Eu,2130-2230,1234567,,,50022489,,, +5935,IRN,sq,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,2020-2120,1234567,,,50022490,,, +5935,UAE,KUN,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1800-1830,......7,,,50023677,,, +5935,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1800-1830,1234567,,,50023676,,, +5935,UAE,ti,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1800-1815,1234...,,,50023677,,, +5935,UAE,tig,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1800-1830,.....6.,,,50023677,,, +5935,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,85,7122,296,108,NAm,0100-1300,1234567,,,50009612,,, +5935,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0030,1234567,,,40000360,,, +5935,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1030-1100,1234567,,,40000360,,, +5935,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0030-0600,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0600-1000,12.4567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1030,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1100-1800,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2000-2230,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,,,40000360,,, +5939.3,PRU,es,OBX6I R Meloda,,Arequipa (are),-16.416667,-71.533333,,1,,10646,251,149,,0900-0500,1234567,-5939.3,,40000361,,, +5940,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,2000-2015,1234567,,,50022493,,, +5940,AUT,fa,BBC WS,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,AFG,0130-0200,1234567,,,50022491,,, +5940,AUT,ps,BBC WS,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,AFG,0100-0130,1234567,,,50022491,,, +5940,ROU,it,R Romania Int.,d,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1900-1930,1234567,,,50022496,,, +5940,ROU,rup,R Romania Int.,d,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEE,1930-2000,1234567,,,50022496,,, +5940,ROU,en,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,WEu,1800-1900,1234567,,,50022497,,, +5940,ROU,ru,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,EEu,1600-1700,1234567,,,50022497,,, +5940,IRN,hy,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Cau,1620-1720,1234567,,,50022494,,, +5940,IRN,ur,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1520-1620,1234567,,,50022495,,, +5940,UAE,fa,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,AFG,0230-0315,1234567,,,50023678,,, +5940,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,1500-1900,1234567,,,50014042,,, +5940,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,0030-0100,1234567,,,50022492,,, +5940,B,pt,Rdio Paz no Vale (Voz Missionria),,Cambori (SC),-27.025,-48.653014,,10,,10296,227,138,,2100-0800,1234567,82,,36902746,,, +5940,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,334,16373,78,148,SEA,1300-1700,1234567,,,50017057,,, +5945,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,ME,1800-1900,1234567,,,50022499,,, +5945,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,220,7797,50,115,,1000-1805,1234567,,,40000363,,, +5945,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,220,7797,50,115,,2025-0100,1234567,,,40000363,,, +5950,F,fr,KBS World R,,Issoudun (36),46.947222,1.894444,,250,182,660,211,40,WAf,2000-2100,1234567,,,50014503,,, +5950,D,LUR,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,0400-0430,1....67,,,50022500,,, +5950,IRN,bs,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,60,4724,102,77,Eu,2120-2220,1234567,,,50019580,,, +5950,IRN,tg,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,60,4724,102,77,CAs,0050-0220,1234567,,,50019580,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,0300-0530,1234567,0,,50014043,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,0530-0900,.....67,0,,50014043,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,0930-1030,12345..,0,,50014043,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,1100-1500,.....67,0,,50014043,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,1500-1900,1234567,0,,50014043,,, +5950,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,100,,18351,32,155,Oc,1300-1550,1234567,,,50022501,,, +5952.5,BOL,es,CP60 R Po XII,,Llallagua/Campamento Siglo XX (pts),-18.366667,-66.616667,,1,,10508,246,149,,0830-0230,1234567,441,,40000368,,, +5955,AUT,en,Voice of Vietnam,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WEu,1800-1830,1234567,,,50022506,,, +5955,AUT,fr,Voice of Vietnam,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,SEu,1930-2000,1234567,,,50022506,,, +5955,AUT,vi,Voice of Vietnam,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,Eu,1830-1930,1234567,,,50022506,,, +5955,ROU,it,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1700-1730,1234567,,,50022504,,, +5955,ROU,sr,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1630-1700,1234567,,,50022504,,, +5955,ROU,uk,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,UKR,1600-1630,1234567,,,50022504,,, +5955,UAE,my,R Australia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,85,5075,109,81,SEA,2300-2330,1234567,,,50017627,,, +5955,RUS,en,Voice of Russia,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,SAs,1600-1800,1234567,,,50022505,,, +5955,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1355-1600,1234567,,,8400004,,, +5955,ERI,ti,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0300-0700,1234567,,,8400004,,, +5955,ERI,ti,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0930-1100,1234567,,,8400004,,, +5955,ERI,ti,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1600-1800,1234567,,,8400004,,, +5955,RUS,,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1245-1530,1234567,,,50022503,,, +5955,RUS,BB,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1315-1330,....5..,,,50022503,,, +5955,RUS,BH,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1500-1515,.....67,,,50022503,,, +5955,RUS,BON,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,......7,,,50022503,,, +5955,RUS,BUN,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1345-1415,.....6.,,,50022503,,, +5955,RUS,CD,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1445-1500,.....67,,,50022503,,, +5955,RUS,DD,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1515-1530,..34...,,,50022503,,, +5955,RUS,GA,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,.....6.,,,50022503,,, +5955,RUS,GM,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1500-1515,123....,,,50022503,,, +5955,RUS,HAR,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,....5..,,,50022503,,, +5955,RUS,HO,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1300-1315,.....6.,,,50022503,,, +5955,RUS,KHR,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1400-1415,......7,,,50022503,,, +5955,RUS,KUI,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1245-1300,.....6.,,,50022503,,, +5955,RUS,KUM,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1300-1315,......7,,,50022503,,, +5955,RUS,MCH,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1515-1530,12.....,,,50022503,,, +5955,RUS,MEW,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1315-1330,..34...,,,50022503,,, +5955,RUS,MUN,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1415-1430,.23....,,,50022503,,, +5955,RUS,NG,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1430-1445,.....67,,,50022503,,, +5955,RUS,VV,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1500-1515,...45..,,,50022503,,, +5955,RUS,bn,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1315-1330,.....6.,,,50022503,,, +5955,RUS,bo,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,...4...,,,50022503,,, +5955,RUS,kru,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1345-1400,......7,,,50022503,,, +5955,RUS,kru,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1415-1430,...456.,,,50022503,,, +5955,RUS,ks,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,..3....,,,50022503,,, +5955,RUS,mag,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1415-1430,1.....1,,,50022503,,, +5955,RUS,mai,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,12.....,,,50022503,,, +5955,RUS,mai,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1345-1415,12345..,,,50022503,,, +5955,RUS,mwr,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1315-1330,12....7,,,50022503,,, +5955,RUS,sat,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1245-1300,......7,,,50022503,,, +5955,RUS,sd,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1430-1500,12345..,,,50022503,,, +5955,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,FE,1100-1600,1234567,,,50004080,,, +5955,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1000-1100,1234567,,,50022502,,, +5955,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,015 063,7773,50,115,,2100-2300,1234567,,,36201070,,, +5955,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,015 063,7773,50,115,,2300-0100,1234567,,,36201070,,, +5955,CTR,es,R Republica,,Gupiles (ELCOR) (lmn),10.216667,-83.766667,,100,,9125,276,124,,,,28,,8200003,,, +5955,PHL,km,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,,1330-1430,1234567,,,50021647,,, +5955,B,pt,ZYE962 Rdio Gazeta,,So Paulo/Estrada de Riveira (SP),-23.707156,-46.742239,,10,305,9881,227,137,,0230-2200,1234567,,,40000371,,, +5960,D,ru,Christl.Wissenschaft,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-2000,.....6.,,,50022507,,, +5960,F,ja,NHK R Japan,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAm,0200-0400,1234567,,,50022508,,, +5960,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,310,1609,135,51,WEu,2000-2200,1234567,,,50004095,,, +5960,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,500,150,2469,114,55,ENA,2300-2400,1234567,3,,50000240,,, +5960,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,100,ND,4236,111,79,ME,0150-0900,1234567,,,50015992,,, +5960,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1100,12.4.67,,,40000372,,, +5960,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1100-1800,1234567,,,40000372,,, +5960,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,2300-0800,1234567,,,40000372,,, +5965,TUR,az,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Cau,1630-1730,1234567,,,50022512,,, +5965,IRN,ja,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,J,2050-2150,1234567,,,50022510,,, +5965,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,ME,2200-2300,1234567,,,50022509,,, +5965,CHN,ko,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,1100-1500,1234567,,,50004105,,, +5965,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,55,7797,50,108,Sib,1500-1600,1234567,,,50004104,,, +5965,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,FE,0900-1100,1234567,,,50004104,,, +5965,MLA,ms,RTM R Klasik,,Kajang (slg),3.011111,101.784444,,100,,10109,84,127,,0000-2400,1234567,90,,40000375,,, +5965,B,pt,ZYE857 Rdio Transmundial,,Santa Maria/Vila Palmas (RS),-29.738333,-53.555278,,7.5,,10803,229,141,,0700-0100,1234567,,,40000376,,, +5969.6,CHN,,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,0950-1300,1234567,-5969.6,,40000379,,, +5969.6,CHN,bo,CNR 11,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,1300-1400,1234567,-5969.6,,40000379,,, +5969.6,CHN,bo,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,0420-0620,1234567,-5969.6,,40000379,,, +5969.6,CHN,bo,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,2220-0100,1234567,-5969.6,,40000379,,, +5969.6,CHN,zh,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,1400-1430,1234567,-5969.6,,40000379,,, +5970,D,fa,Voice of America,,Biblis (hes),49.687222,8.490278,,100,105,306,151,40,,0130-0230,1234567,,,50021648,,, +5970,AUT,pa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,PAK,0230-0300,1234567,,,50022515,,, +5970,AUT,ur,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,PAK,0200-0230,1234567,,,50022515,,, +5970,ALB,de,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,330,1609,135,51,WEu,1600-1800,1234567,1,,50004115,,, +5970,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,310,1609,135,51,SEu,1800-2000,1234567,1,,50004115,,, +5970,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,Eu,2300-2400,.....67,,,50022513,,, +5970,TUR,fr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,WEu,2030-2130,1234567,,,50022514,,, +5970,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,SAs,0000-0100,1234567,,,50009620,,, +5970,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,SAs,0100-0200,1234567,,,50009620,,, +5970,B,pt,ZYE523 Rdio Itatiaia,,Belo Horizonte (MG),-20.005822,-43.969178,,10,,9382,227,135,,0800-0300,1234567,,,40000380,,, +5975,D,ady,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,0340-0400,1234567,,,50022521,,, +5975,D,av,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,0300-0320,1234567,,,50022521,,, +5975,D,ce,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,0320-0340,1234567,,,50022521,,, +5975,G,ha,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,WAf,0530-0600,1234567,,,50022516,,, +5975,F,bg,Adventist World R,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SEE,0400-0430,1234567,,,50022520,,, +5975,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ENA,0200-0300,1234567,,,50022519,,, +5975,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1400-1500,1234567,,,50022517,,, +5975,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1500-1600,1234567,,,50022517,,, +5975,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,63,7773,50,115,,2200-2300,1234567,,,36201071,,, +5975,CHN,zh,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,63,7773,50,115,,2155-2200,1234567,,,36201071,,, +5975,VTN,vi,VOV1,,H Nội/Me Tri (hno),20.999028,105.782444,,50,,8793,70,126,ND,2145-1700,1234567,,,50015993,,, +5980,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0430-0445,1234567,,,50022525,,, +5980,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0445-0450,12345..,,,50022525,,, +5980,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1700-2200,1234567,,,50022527,,, +5980,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0600-0900,.....6.,,,50004137,,, +5980,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0600-0900,9999999,,,50004137,,, +5980,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,1500-1900,.....6.,,,50004137,,, +5980,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,1500-1900,9999999,,,50004137,,, +5980,UAE,ur,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0130-0200,1234567,,,50022524,,, +5980,RUS,ja,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,J,1200-1400,1234567,,,50022526,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,0900-1000,0.234567,,,50004143,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,0900-1300,1234567,,,50004143,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,1000-1300,1234567,,,50004143,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,,0900-1200,1234567,,,50004143,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,CUB,0700-0900,0.234567,,,50004143,,, +5980,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023679,,, +5980,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1500-1600,1234567,,,50022522,,, +5980,CLN,bo,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,FE,0000-0100,1234567,,,50022528,,, +5980,PRU,,OBX4M R Chaski,,Urubamba/Cerro Sacro (cus),-13.358917,-72.112,,5,,10412,253,141,,1000-1500,1234567,,,37000117,,, +5980,PRU,,OBX4M R Chaski,,Urubamba/Cerro Sacro (cus),-13.358917,-72.112,,5,,10412,253,141,,2200-0100,1234567,,,37000117,,, +5985,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,IRN,0230-0330,1234567,,,50022531,,, +5985,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,NAf,0500-0700,1234567,,,50022529,,, +5985,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,SAf,2000-2100,1234567,,,50004146,,, +5985,CHN,pt,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,SAf,1900-2000,1234567,,,50004146,,, +5985,CHN,sw,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,EAf,1600-1800,1234567,,,50004146,,, +5985,USA,es,WYFR Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,181,7461,286,112,,0000-0200,1234567,,,50020267,,, +5985,USA,zh,R Taiwan Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,355,7461,286,112,,0300-0400,1234567,,,50014516,,, +5985,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,2200-2300,1234567,,,50022530,,, +5985,MYA,my,Padauk Myay R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,2300-0130,1234567,0,,22100010,,, +5985.8,MYA,en,Myanmar R,,Yangon/Yay Kuu (ygn),16.863194,96.161778,,25,176 356,8519,80,128,,1530-1635,1234567,83,,40000388,,, +5985.8,MYA,my,Myanmar R,,Yangon/Yay Kuu (ygn),16.863194,96.161778,,25,176 356,8519,80,128,,0930-1530,1234567,83,,40000388,,, +5990,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1800-2100,1234567,,,50022533,,, +5990,IRN,ur,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,SAs,0120-0220,1234567,,,50022532,,, +5990,IND,sd,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,334,6235,85,95,PAK,0100-0200,1234567,,,50015994,,, +5990,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1200-1300,1234567,,,50004153,,, +5990,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1400-1500,1234567,,,50004153,,, +5990,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,0000-0100,1234567,,,50004153,,, +5990,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,2300-2400,1234567,,,50004153,,, +5990,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1300-1400,1234567,,,50004153,,, +5990,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1500-1600,1234567,,,50004153,,, +5990,CHN,bo,CNR 11,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0830-0900,1.34567,,,36201088,,, +5990,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0900-1600,1234567,,,36201088,,, +5990,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,2250-0200,1234567,,,36201088,,, +5990,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,CAm,2300-2400,1234567,,,50004154,,, +5990,CUB,es,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Car,0000-0100,1234567,,,50004154,,, +5995,D,en,PCJ R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,1330-1430,......7,,,50023680,,, +5995,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ME,1700-1800,1234567,,,50022534,,, +5995,KWT,ady,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,Cau,0340-0400,1234567,,,50022266,,, +5995,KWT,av,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,Cau,0300-0320,1234567,,,50022266,,, +5995,KWT,ce,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,Cau,0320-0340,1234567,,,50022266,,, +5995,MLI,,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,0600-0800,1234567,1,,40000393,,, +5995,MLI,,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,1800-2400,1234567,1,,40000393,,, +5995,SWZ,CW,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,5,9062,157,124,MWI,0400-0445,.....67,,,50010808,,, +5995,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,1400-1800,1234567,,,50015995,,, +5995,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,0800-0900,1234567,,,50015996,,, +5995,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,1000-1100,.....67,,,50015996,,, +5995,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,1100-1200,1234567,,,50015996,,, +5995,AUS,tpi,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,0900-1000,1234567,,,50015996,,, +5995,AUS,tpi,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,1000-1100,12345..,,,50015996,,, +5995,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,5,10,15065,58,157,WOc,1200-1400,1234567,,,50015996,,, +5999.8,B,pt,ZYE852 Rdio Guaba,,Porto Alegre/Ilha da Pintada (RS),-30.02375,-51.255433,,10,307,10713,227,139,,0000-2400,1234567,-5999.8,,40000397,,, +6000,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,EAf,1600-1800,1234567,,,50023681,,, +6000,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,CAs,0100-0300,1234567,,,50022536,,, +6000,RUS,es,Voice of Russia,D,Taldom/Severnyj Radiotsentr 3 (MO),56.745833,37.621111,,1,,2064,63,78,SEu,2000-2100,1234567,,,50022535,,, +6000,RUS,pt,Voice of Russia,D,Taldom/Severnyj Radiotsentr 3 (MO),56.745833,37.621111,,1,,2064,63,78,SEu,2100-2200,1234567,,,50022535,,, +6000,IND,,AIR North,,Leh (JK),34.124744,77.588978,,10,130,5854,80,106,,0630-0700,......7,,,40000400,,, +6000,IND,,AIR North,,Leh (JK),34.124744,77.588978,,10,130,5854,80,106,,0700-0930,1234567,,,40000400,,, +6000,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,2100-2400,1234567,,,40000509,,, +6000,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0830-0900,1.34567,0,,40000678,,, +6000,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0900-1805,1234567,0,,40000678,,, +6000,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,2025-0100,1234567,0,,40000678,,, +6000,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,WNA,0500-0700,1234567,,,50015997,,, +6000,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,ENA,0100-0500,1234567,,,50015997,,, +6000,CUB,eo,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,WNA,0700-0730,......7,,,50015997,,, +6000,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Am,1100-1300,1234567,,,50015997,,, +6000,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,ENA,2300-2400,12345..,,,50015997,,, +6003,KOR,ko,Echo of Hope,,Hwaseong (gye),37.211944,126.776111,,100,,8529,45,122,KRE,0555-2400,1234567,,,50014065,,, +6005,D,de,Polskie R,,Kall/Auf der Heide (nrw),50.478056,6.523194,,100,,182,177,39,CEu,1700-1730,1234567,,,50023683,,, +6005,D,de,R Gloria,,Kall/Auf der Heide (nrw),50.478056,6.523194,,100,,182,177,39,Eu,1000-1100,......9,,,50020377,,, +6005,D,de,R Prague,,Kall/Auf der Heide (nrw),50.478056,6.523194,,100,,182,177,39,CEu,1630-1700,1234567,,,50023682,,, +6005,D,de,R Slovakia Int.,,Kall/Auf der Heide (nrw),50.478056,6.523194,,100,,182,177,39,CEu,1600-1630,1234567,,,50023684,,, +6005,D,de,BR R Belarus,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,Eu,0700-0900,1234567,,,50016527,,, +6005,D,de,Missionswerk Freundesdienst,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,1000-1015,1234567,,,2000028,,, +6005,D,de,Missionswerk Freundesdienst,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,1630-1645,123456,,,2000028,,, +6005,D,de,R 700,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,0800-1000,123456,,,2000028,,, +6005,D,de,R 700,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,1015-1630,1234567,,,2000028,,, +6005,D,de,R Gloria International,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,0900-1000,......7,,,2000028,,, +6005,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0000-0100,1234567,,,50022537,,, +6005,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,1400-1600,1234567,,,50022537,,, +6005,YEM,ar,Yemen R,,Aden/Al-Hiswah (adn),12.825,44.905667,,100,,5551,128,93,ME,2000-2200,1234567,,,50023685,,, +6005,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0500-0700,1234567,,,50009625,,, +6010,ROU,de,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,1900-2000,1234567,,,50022543,,, +6010,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SEu,2000-2100,1234567,,,50022543,,, +6010,IRN,es,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAm,0020-0320,1234567,,,50022542,,, +6010,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,2300-2400,1234567,,,50022544,,, +6010,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,SEu,1800-1900,1234567,,,50022540,,, +6010,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023686,,, +6010,CHN,vi,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,SEA,1600-1700,1234567,,,50017948,,, +6010,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1030-1400,1234567,,,40000407,,, +6010,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1430-1605,1234567,,,40000407,,, +6010,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2155-2400,1234567,,,40000407,,, +6010,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1400-1430,1234567,,,40000407,,, +6010,B,pt,ZYE521 Rdio Inconfidncia,,Belo Horizonte/Contagem (MG),-19.900733,-44.052794,,25,122,9376,227,131,,0000-2400,1234567,88,,40000412,,, +6010,CLM,es,La Voz de tu Conciencia,,Puerto Lleras (met),3,-74,,5,,9090,264,137,,0000-2400,1234567,225,,40000413,,, +6010,MEX,es,XEOI-OC R Mil,,Mxico D.F/Iztacalco (dif),19.379722,-98.959444,,0.25,,9316,294,151,,0000-2400,1234567,96,,40000411,,, +6015,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,2300-2400,1234567,,,50022545,,, +6015,CHN,kk,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1400-1500,1234567,798,,40000416,,, +6015,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1150-1400,1234567,798,,40000416,,, +6015,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1500-1800,1234567,798,,40000416,,, +6015,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,2330-0300,1234567,798,,40000416,,, +6015,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Dole (zbw),-6.101981,39.257778,,50,,7182,143,112,,0300-0600,1234567,,,40000415,,, +6015,KOR,ko,KBS Hanminjok Bangsong 1,,Hwaseong (gye),37.211944,126.776111,,100,ND,8529,45,122,FE,0350-2400,1234567,,,50013449,,, +6020,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,300,305,1609,135,48,NAm,0000-0200,1234567,,,50004204,,, +6020,ALB,zh,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,300,305,1609,135,48,NAm,0200-0400,1234567,,,50004204,,, +6020,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WNA,0400-0500,1234567,,,50022548,,, +6020,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0300,1234567,,,50022546,,, +6020,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,Af,0530-0630,12345..,,,50022551,,, +6020,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,0500-0530,1234567,,,50022551,,, +6020,RUS,zh,R Vaticana,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,125,6080,48,98,,1230-1300,12345.7,,,50017956,,, +6020,RUS,zh,R Vaticana,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,125,6080,48,98,,1230-1315,.....6.,,,50017956,,, +6020,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,169,6062,83,101,,0215-0410,1234567,,,40000417,,, +6020,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,169,6062,83,101,,0410-1000,......7,,,40000417,,, +6020,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,169,6062,83,101,,0700-0930,123456,,,40000417,,, +6020,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,169,6062,83,101,,1130-1230,1234567,,,40000417,,, +6020,CHN,bg,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,SEE,1830-1900,1234567,,,50009378,,, +6020,CHN,es,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,SEu,2100-2300,1234567,,,50009378,,, +6020,CHN,pl,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,Eu,2000-2100,1234567,,,50009378,,, +6020,CHN,sq,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,SEE,1900-2000,1234567,,,50009378,,, +6020,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023687,,, +6020,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1700-1800,1234567,,,50023687,,, +6020,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1900-2100,1234567,,,50023687,,, +6020,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1600,1234567,,,50022549,,, +6020,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1700-1800,1234567,,,50022549,,, +6020,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1900-2100,1234567,,,50022549,,, +6020,VTN,vi,VOV4,,Bun M Thuột (dkk),12.644278,108.02055,,20,,9675,73,133,,2145-1700,1234567,95,,40000418,,, +6020.3,PRU,es,OAX4Q R Victoria,,Lima (lim),-12.040278,-77.07,,3,,10623,257,144,,2145-1300,1234567,-6020.3,,40000420,,, +6025,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,1600-1700,1234567,,,50022552,,, +6025,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2300-2400,1234567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0000-0700,1234567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0800-0950,1.34567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0950-1600,1234567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1700-1805,1234567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2050-2230,1234567,,,40000317,,, +6025,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0700-0800,1.34567,,,40000317,,, +6025,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1600-1700,1234567,,,40000317,,, +6025,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2230-2300,1234567,,,40000317,,, +6025,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,1500-1600,1234567,,,50022553,,, +6025,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1425-1455,1234567,,,50017963,,, +6025,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1525-1555,.....67,,,50017963,,, +6025,SWZ,nd,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,,1455-1510,1234567,,,50017963,,, +6025,SWZ,nd,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1525-1555,12345..,,,50017963,,, +6025,SWZ,sn,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,,1510-1525,1234567,,,50017963,,, +6025,SWZ,sn,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1455-1525,1234567,,,50017963,,, +6025,SWZ,sn,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1555-1625,1234567,,,50017963,,, +6025,BOL,ay,Red Patria Nueva,,La Paz (lpz),-16.5,-68.116667,,100,,10435,248,128,,,,,,36500033,,, +6025,DOM,es,HIAJ R Amanecer,,Santo Domingo (sdo),18.5,-69.95,,1,,7471,271,132,,0330-0700,.......,9,,40000426,,, +6025,DOM,es,HIAJ R Amanecer,,Santo Domingo (sdo),18.5,-69.95,,1,,7471,271,132,,1000-0330,1234567,9,,40000426,,, +6030,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1800-1900,1234567,,,50022557,,, +6030,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-2000,......7,,,50022554,,, +6030,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1930-1945,.....6.,,,50022554,,, +6030,D,ru,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-1915,....5..,,,50022554,,, +6030,D,ru,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-1930,.2.....,,,50022554,,, +6030,D,uk,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-1915,...4...,,,50022554,,, +6030,ROU,en,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,2130-2200,1234567,,,50022556,,, +6030,ROU,fr,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,2100-2130,1234567,,,50022556,,, +6030,ROU,sr,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,2030-2100,1234567,,,50022555,,, +6030,ROU,uk,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,UKR,2000-2030,1234567,,,50022555,,, +6030,ETH,om,R Oromia,,Addis Abeba (Oromia) (aab),9.033333,38.7,,100,,5611,137,93,EAf,0325-0600,1234567,,,50013667,,, +6030,ETH,om,R Oromia,,Addis Abeba (Oromia) (aab),9.033333,38.7,,100,,5611,137,93,EAf,0900-1100,1234567,,,50013667,,, +6030,ETH,om,R Oromia,,Addis Abeba (Oromia) (aab),9.033333,38.7,,100,,5611,137,93,EAf,1530-1900,1234567,,,50013667,,, +6030,IND,en,AIR Uttaranchal,,Delhi/Khampur (DL),28.8225,77.1275,,100,102,6235,85,99,,0245-0300,1234567,,,40000431,,, +6030,IND,hi,AIR Uttaranchal,,Delhi/Khampur (DL),28.8225,77.1275,,100,102,6235,85,99,,0200-0245,1234567,,,40000431,,, +6030,IND,hi,AIR Uttaranchal,,Delhi/Khampur (DL),28.8225,77.1275,,100,102,6235,85,99,,1215-1430,1234567,,,40000431,,, +6030,IND,pa,AIR Uttaranchal,,Delhi/Khampur (DL),28.8225,77.1275,,100,102,6235,85,99,,0300-0310,1234567,,,40000431,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,0900-1000,0.234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,1000-1200,1234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,,0300-1200,0.234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,CUB,0000-0300,1234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,CUB,0300-0900,0.234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,CUB,0900-1200,1234567,,,50004231,,, +6030,CAF,,R ICDI,,Boali (mpk),4.8,18.116667,,1,,5370,164,111,,0530-1600,1234567,,,9300002,,, +6030,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023688,,, +6030,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0600-0900,1.34567,,,40000430,,, +6030,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0900-1805,1234567,,,40000430,,, +6030,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,2025-0600,1234567,,,40000430,,, +6030,MYA,,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,2330-0130,1234567,,,22100051,,, +6030,MYA,en,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,0130-0200,1234567,,,22100051,,, +6030,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,325,9364,56,125,FE,1300-1400,1234567,,,50020268,,, +6030,CAN,en,CFVP,,Calgary (AB),50.900622,-113.876161,,0.1,,7266,323,140,,0000-2400,1234567,,,40000433,,, +6035,ASC,ha,Voice of America,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0500-0530,1234567,,,50014525,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,,7186,77,109,,0900-0940,...4...,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,,7186,77,109,,0900-1000,123.567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0300-0400,1234567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0400-0500,1234567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0600-0700,1234567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0900-1000,1234567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,1000-1100,1234567,40,,40000436,,, +6035,BTN,dz,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,,7186,77,109,,1600-2400,1234567,40,,40000436,,, +6035,BTN,dz,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0000-0300,1234567,40,,40000436,,, +6035,BTN,dz,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0700-0800,1234567,40,,40000436,,, +6035,BTN,dz,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,1100-1500,1234567,40,,40000436,,, +6035,BTN,en,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0500-0600,1234567,40,,40000436,,, +6035,BTN,en,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0800-0900,1234567,40,,40000436,,, +6035,BTN,en,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,1500-1600,1234567,40,,40000436,,, +6035,BOT,ha,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,0,2030-2100,12345..,,,50019223,,, +6035,CHN,vi,Voice of Shangri-La,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1030-1100,1234567,,,40000437,,, +6035,CHN,vi,Voice of Shangri-La,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1130-1200,1234567,,,40000437,,, +6035,CHN,vi,Voice of Shangri-La,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1230-1300,1234567,,,40000437,,, +6035,CHN,vi,Voice of Shangri-La,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,2230-0130,1234567,,,40000437,,, +6035,CHN,zh,CNR 1,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1000-1030,1234567,,,40000437,,, +6035,CHN,zh,CNR 1,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1100-1130,1234567,,,40000437,,, +6035,CHN,zh,CNR 1,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1200-1230,1234567,,,40000437,,, +6035,CHN,zh,Shangri-La zhi Sheng,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,0945-1000,1234567,,,40000437,,, +6035,CHN,zh,Shangri-La zhi Sheng,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1300-1415,1234567,,,40000437,,, +6035,MYA,my,Myanmar R-National,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,1000-1430,1234567,,,22100007,,, +6035,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,FE,1700-1900,1234567,,,50022558,,, +6035,CLM,es,HJOY La Voz del Guaviare,,San Jos del Guaviare (guv),2.566667,-72.633333,,3,,9036,263,139,,0800-0230,1234567,99,,40000435,,, +6040,ROU,it,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1500-1530,1234567,,,50022560,,, +6040,ROU,rup,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEE,1530-1600,1234567,,,50022560,,, +6040,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1920-2020,1234567,,,50019588,,, +6040,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,1600-1800,1234567,,,50022559,,, +6040,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,2030-2100,123456,,,50022561,,, +6040,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,INS,1400-1500,1234567,,,50004241,,, +6040,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,0300-0400,1234567,,,40000743,,, +6040,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,1400-1500,1234567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,0400-0600,1234567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,0600-0950,1.34567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,0950-1400,1234567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,1500-1605,1234567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,2150-0300,1234567,,,40000743,,, +6040,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,180,7773,50,114,,2055-0030,1234567,,,40000440,,, +6045,D,en,European Music R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,0900-1000,9999999,,,50022563,,, +6045,D,en,R Iceman,,Nauen (brb),52.647778,12.908611,,100,275,445,80,42,Eu,1000-1100,......9,,,50021908,,, +6045,D,en,Shortwave Rock,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,1000-1100,......7,,,50022267,,, +6045,D,en,XVRB R,,Nauen (brb),52.647778,12.908611,,100,275,445,80,42,Eu,1000-1100,......7,,,50021907,,, +6045,G,ko,KBS World R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,Eu,0700-0800,1234567,,,50022564,,, +6045,AUT,fr,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,NAf,0430-0500,1234567,,,50022565,,, +6045,IND,ur,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,334,6248,85,100,PAK,1430-1930,1234567,1,,50016002,,, +6045,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1400,1234567,,,50023689,,, +6045,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1200-1400,1234567,,,50022566,,, +6045,ZWE,,ZBC R 2,,Gweru (mdl),-19.520444,29.937,,50,,8285,157,123,,0000-2400,1234567,,,40000442,,, +6045,MEX,es,XEXQ-OC R Universidad,,San Luis Potos (slp),22.153161,-100.977889,,0.25,,9192,297,150,,1300-0500,1234567,,,40000444,,, +6045.2,URG,es,CXA61 R Sarand,l,Montevideo/Av. Luis Batlle Berres (mo),-34.845278,-56.257778,,0.3,,11417,228,157,,0000-2400,1234567,-6045.2,,40000445,,, +6047.2,PRU,es,OCY4H R Santa Rosa,,Lima/San Miguel (lim),-12.074444,-77.083889,,3,,10627,257,144,,1800-1230,1234567,-6047.2,,37000015,,, +6050,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,WEu,1930-2030,1234567,,,50022567,,, +6050,TUR,fr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,WAf,2030-2130,1234567,,,50022567,,, +6050,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,300,,4236,111,75,ME,1600-2100,1234567,0,,50017980,,, +6050,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0030,1234567,15,,40000448,,, +6050,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1030-1100,1234567,15,,40000448,,, +6050,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0030-0600,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0600-1000,12.4567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1030,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1100-1800,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2000-2230,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,15,,40000448,,, +6050,MLA,,RTM Asyik FM,,Kajang (slg),3.011111,101.784444,,50,,10109,84,130,,0500-1500,1234567,2,,32800009,,, +6050,MLA,,RTM Salam FM,,Kajang (slg),3.011111,101.784444,,50,,10109,84,130,,1500-2400,1234567,2,,32800009,,, +6050,EQA,CHA,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,SAm,2130-2200,12345..,,,50020381,,, +6050,EQA,COF,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,SAm,0000-0030,1234567,,,50020381,,, +6050,EQA,SUA,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,SAm,2330-2400,12345..,,,50020381,,, +6050,EQA,WAO,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0100-0130,.23456.,,,50020381,,, +6050,EQA,Wao,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,0100-0130,12345..,,,50020381,,, +6050,EQA,en,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0330-0345,.23456.,,,50020381,,, +6050,EQA,en,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0330-0345,1234567,,,50020381,,, +6050,EQA,en,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2345-2400,.....6.,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0130-0300,.23456.,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0300-0330,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0330-0345,1.....1,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0345-0500,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,1100-1130,12345..,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,1130-1500,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2130-2200,.....67,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2200-2330,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2330-2345,.....67,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2330-2400,.....67,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2345-2400,......7,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,1100-1500,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,2130-2200,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,2130-2400,.....67,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,2200-2330,12345..,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,SAm,1900-2130,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0130-0300,12345..,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,1900-2200,1234567,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0030-0100,.23456.,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0030-0300,1.....1,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0825-1100,1234567,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,1100-1130,.....67,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,0830-1100,12345..,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0030-0100,12345..,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0030-0300,.....67,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0300-0500,1234567,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0830-1130,.....67,,,50020381,,, +6055,D,de,Evang.Missionsgemeinden,,Nauen (brb),52.647778,12.908611,,130,222,445,80,40,Eu,1130-1200,.....67,,,50021909,,, +6055,D,de,Missionshaus Arche,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,1200-1215,......7,,,50022569,,, +6055,G,fr,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,NAf,0600-0630,1234567,,,50022568,,, +6055,E,en,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,290,1547,213,49,NAm,0000-0100,1234567,,,50009629,,, +6055,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,290,1547,213,49,NAm,2300-2400,1234567,,,50009629,,, +6055,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,240,1609,135,51,WAf,1800-2000,1234567,0,,50004272,,, +6055,RRW,,R Rwanda,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,,0255-0600,123456,32,,40000451,,, +6055,RRW,,R Rwanda,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,,0600-0900,......7,32,,40000451,,, +6055,RRW,,R Rwanda,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,,0900-2100,1234567,32,,40000451,,, +6055,RRW,,R Rwanda,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,,1600-2100,123456,32,,40000451,,, +6055,RRW,rw,IBRA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,RRW,1305-1320,.2.....,,,50020382,,, +6055,RRW,rw,IBRA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,RRW,1845-1900,......7,,,50020382,,, +6055,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1400-1500,1234567,,,50004273,,, +6055,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,2025-1500,1234567,,,40000453,,, +6060,KWT,tk,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,CAs,1400-1600,1234567,,,50022572,,, +6060,IRN,ar,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,NAf,1620-0220,1234567,,,50022571,,, +6060,CHN,tl,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,PHL,1130-1200,1234567,,,50022570,,, +6060,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,ENA,0500-0700,1234567,,,50016007,,, +6060,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,ENA,0000-0200,1234567,,,50016007,,, +6060,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,ENA,0200-0500,1234567,,,50016007,,, +6060,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,ENA,0000-0500,1234567,,,50016007,,, +6060,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1600-1700,1234567,,,50004288,,, +6060,CHN,zh,Sichuan RGD Xinwen Guangbo,,Chengdu/SCTS520 (SC),30.906111,104.123056,,50,,7834,64,118,,0930-1515,1234567,,,40000457,,, +6060,CHN,zh,Sichuan RGD Xinwen Guangbo,,Chengdu/SCTS520 (SC),30.906111,104.123056,,50,,7834,64,118,,2125-0135,1234567,,,40000457,,, +6060,THA,ko,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,38,8917,74,120,,1900-2100,1234567,,,50020384,,, +6060,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,1300-1500,12345..,,,50004286,,, +6060,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,SAm,0900-1000,12345..,,,50004286,,, +6060,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,SAm,2200-2400,12345..,,,50004286,,, +6060,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,ND,11502,230,132,,2300-2400,12345..,,,50004286,,, +6060,ARG,ja,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,ND,11502,230,132,FE,1100-1200,12345..,,,50004286,,, +6060,ARG,pt,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,1200-1300,12345..,,,50004286,,, +6060,ARG,zh,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,ND,11502,230,132,FE,1000-1100,12345..,,,50004286,,, +6060,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,30,,11502,230,137,,0000-0230,......7,,,40000458,,, +6060,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,30,,11502,230,137,,0000-0300,1......,,,40000458,,, +6060,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,30,,11502,230,137,,1800-2400,......7,,,40000458,,, +6060,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,30,,11502,230,137,,2000-2400,.....6.,,,40000458,,, +6060,B,pt,ZYE727 Super Rdio Deus Amor,,Curitiba/Corpo de Bombeiros (PR),-25.449444,-49.125,,10,330,10169,228,138,,0000-2400,1234567,94,,36902742,,, +6060,PRU,,OAD4A Aroma Caf R,,Pichanaki/Cerro El Mirador (jun),-10.945833,-74.880556,,1,,10381,256,148,,1130-2200,1234567,99,,37000064,,, +6065,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0000-2400,9999999,,,6800007,,, +6065,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,0220-0320,1234567,,,50022574,,, +6065,CHN,ps,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,AFG,0200-0230,1234567,,,50022573,,, +6065,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,220,7773,50,114,,1430-1500,1234567,,,40000462,,, +6065,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,220,7773,50,114,,1200-1430,1234567,,,40000462,,, +6065,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,220,7773,50,114,,1500-1605,1234567,,,40000462,,, +6065,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,220,7773,50,114,,2100-2330,1234567,,,40000462,,, +6065,IND,hi,AIR Northeast,,Kohima (NL),25.719722,94.039444,,50,15,7625,75,116,,0430-0510,1234567,,,40000463,,, +6065,IND,hi,AIR Northeast,,Kohima (NL),25.719722,94.039444,,50,15,7625,75,116,,0700-0900,1234567,,,40000463,,, +6070,D,en,R Channel 292,,Rohrbach (bay),48.609756,11.576836,,0.6,,534,135,65,,0000-2400,1234567,996,,2000020,,, +6070,IRN,uz,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1450-1550,1234567,,,50022576,,, +6070,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,1700-1900,1234567,,,50022575,,, +6070,KRE,ja,KCBS Voice of Korea,,Kanggye (cha),40.966667,126.583333,,250,109,8171,43,115,J,0900-1300,1234567,8,,50016010,,, +6070,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Car,0100-0400,1234567,,,50023690,,, +6070,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Car,0400-0500,1234567,,,50023690,,, +6070,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Car,2300-0100,1234567,,,50023690,,, +6070,CAN,en,CFRX-SW,,Toronto/Oakville (ON),43.506544,-79.633028,,1,,6112,298,118,,0000-2400,1234567,961,,40000466,,, +6074,URG,es,CXA3 La Voz de Artigas,,Artigas (ar),-30.4,-56.466667,,1,,11017,231,150,,,,,,31200005,,, +6075,D,be,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,0400-0500,1234567,,,50022579,,, +6075,CVA,Aud,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SEu,0915-1000,..3....,,,50022577,,, +6075,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Eu,1940-2000,1234567,,,50022577,,, +6075,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,NAf,2140-2200,1234567,,,50022577,,, +6075,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Eu,0630-0700,1234567,,,50022577,,, +6075,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50004307,,, +6075,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1600,1234567,,,50004307,,, +6075,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1800,1234567,,,50023691,,, +6075,RUS,VN,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,SEA,1200-1300,1234567,,,50021795,,, +6075,RUS,en,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,SEA,0900-1200,1234567,,,50021795,,, +6075,RUS,mn,Voice of Russia,,Tavrichanka (PM),43.333111,131.894028,,100,270,8184,38,119,,1300-1400,123456,,,50021650,,, +6075,RUS,zh,Voice of Russia,,Tavrichanka (PM),43.333111,131.894028,,100,270,8184,38,119,,1000-1300,1234567,,,50021650,,, +6075,J,id,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,2130-2200,1234567,,,50022578,,, +6075,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,CHN,1400-1800,1234567,,,50000488,,, +6080,CVA,en,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAf,0300-0400,1234567,,,50022582,,, +6080,BLR,be,BR Pershy Kanal,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,127,1438,73,50,,1430-1700,.....67,,,40000468,,, +6080,BLR,be,BR Pershy Kanal,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,127,1438,73,50,,1700-2205,1234567,,,40000468,,, +6080,BLR,be,BR Radyjo Stalitsa,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,127,1438,73,50,,1430-1700,12345..,,,40000468,,, +6080,IRN,fr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1820-1920,1234567,,,50022581,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,,0300-0600,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,,1730-1830,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,1400-1530,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,1800-2000,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,CAf,2000-2200,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,EAf,1700-1800,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,SAf,0400-0600,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,WAf,0600-0700,1234567,,,50004324,,, +6080,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,236,6812,67,105,,1200-1805,1234567,,,40000469,,, +6080,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,236,6812,67,105,,2025-0100,1234567,,,40000469,,, +6080,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,Sib,1100-1200,1234567,,,50022580,,, +6080,CHN,mn,CNR 8,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,1200-1300,1234567,,,40000318,,, +6080,CHN,mn,Hulun Buir RGD,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,0600-0955,1.34567,,,40000318,,, +6080,CHN,mn,Hulun Buir RGD,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,0955-1200,1234567,,,40000318,,, +6080,CHN,mn,Hulun Buir RGD,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,1300-1500,1234567,,,40000318,,, +6080,CHN,mn,Hulun Buir RGD,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,2150-0600,1234567,,,40000318,,, +6080,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,Af,1530-1700,1234567,,,50020389,,, +6080,B,pt,ZYE441 Rdio Daqui,,Goinia/Fazenda Botafogo (GO),-16.659167,-49.227222,,5,,9332,233,138,,0800-0300,1234567,98,,40000471,,, +6080,B,pt,ZYE726 Rdio Novas de Paz,,Curitiba/Campo Largo (PR),-25.432389,-49.393128,,10,,10181,228,138,,0700-0100,1234567,,,40000470,,, +6080,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,1000-1100,.....67,,,50016012,,, +6080,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,1100-1300,1234567,,,50016012,,, +6080,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,1730-2030,1234567,,,50016012,,, +6080,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,0900-1000,1234567,,,50016012,,, +6080,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,1000-1100,12345..,,,50016012,,, +6085,IRN,tr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0420-0550,1234567,,,50022583,,, +6085,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629444,,10,180,7129,78,118,,0415-1030,1234567,,,40000477,,, +6089.9,CHL,es,CE609 R Esperanza,,Temuco (AR),-38.723056,-72.635,,10,,12648,237,146,,0000-2400,1234567,-6089.9,,40000480,,, +6090,ROU,rup,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEE,1730-1800,1234567,,,50022585,,, +6090,ROU,uk,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,UKR,1800-1830,1234567,,,50022585,,, +6090,NIG,ha,FRCN Kaduna,,Kaduna (kdn),10.555556,7.449444,,250,,4622,178,79,,0430-2305,1234567,855,,40000479,,, +6090,ETH,om,R Amhra,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,,0255-0600,1234567,,,9600011,,, +6090,ETH,om,R Amhra,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,,0900-1100,1234567,,,9600011,,, +6090,ETH,om,R Amhra,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,,1400-1900,1234567,,,9600011,,, +6090,CHN,en,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,1430-1500,1234567,,,40000482,,, +6090,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,1000-1430,1234567,,,40000482,,, +6090,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,1500-1605,1234567,,,40000482,,, +6090,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,2055-0300,1234567,,,40000482,,, +6090,AIA,en,Caribbean Beacon,,The Valley (SW) (tvy),18.219522,-63.019178,,100,320,7022,265,107,NAm,2200-1000,1234567,,,50014044,,, +6090,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,EAf,1600-1700,1234567,,,50022584,,, +6090,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1700-1800,1234567,,,50004333,,, +6090,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1130-1200,1234567,,,50004338,,, +6090,J,ru,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,330,9208,36,120,FE,1100-1130,1234567,,,50004338,,, +6090,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,0900-0930,1234567,,,50004338,,, +6090,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1200-1230,1234567,,,50004338,,, +6090,B,pt,ZYE956 Rdio Bandeirantes,,So Paulo/Jardim Santa Emilia (SP),-23.645956,-46.601278,,10,,9868,227,137,,0000-2400,1234567,,,40000483,,, +6095,D,en,KBC R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,WEu,0900-1600,.....67,,,50022268,,, +6095,D,nl,Transportr,,Nauen (brb),52.647778,12.908611,,100,230,445,80,42,Eu,0900-1100,12345..,,,50021911,,, +6095,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NAf,1500-1600,1234567,,,50004344,,, +6095,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,ENA,1300-1330,......7,,,50021796,,, +6095,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1900-2200,1234567,,,50023692,,, +6095,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,290,8663,46,119,CHN,1230-1330,1234567,,,50015824,,, +6095,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,290,8663,46,119,CHN,1130-1230,1234567,,,50015824,,, +6095,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1900-2200,1234567,,,50022587,,, +6100,D,bg,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SEE,1600-1630,1234567,,,50022590,,, +6100,BIH,de,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,Eu,2100-2130,12345.7,997,,50016014,,, +6100,BIH,en,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,WEu,2200-2230,1234567,997,,50016014,,, +6100,BIH,en,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,Eu,1930-2000,1234567,997,,50016014,,, +6100,BIH,es,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,Eu,2000-2030,1234567,997,,50016014,,, +6100,BIH,fr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,WEu,2130-2200,1234567,997,,50016014,,, +6100,BIH,it,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,Eu,1830-1900,1234567,997,,50016014,,, +6100,BIH,ru,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,Eu,1900-1930,1234567,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,WEu,2100-2130,.....6.,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,WEu,2230-2300,....5..,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,,1930-2000,12345.7,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,,1930-2030,.....6.,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,Eu,2030-2100,1234567,997,,50016014,,, +6100,IRN,ur,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,0120-0220,1234567,,,50022589,,, +6100,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,AFG,1600-1700,1234567,,,50022588,,, +6100,CHN,mn,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,90,5727,65,94,MNG,1100-1200,1234567,,,50016539,,, +6100,CHN,mn,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,90,5727,65,94,MNG,1300-1400,1234567,,,50016539,,, +6100,IND,hi,AIR Vividh Bharati,D,Delhi/Khampur (DL),28.822222,77.127778,,100,134,6235,85,99,SAs,0900-1200,1234567,,,50010197,,, +6100,IND,ks,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,100,134,6248,85,100,SAs,0730-0810,1234567,,,50014120,,, +6100,IND,xnr,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,100,134,6248,85,100,SAs,0810-0830,1234567,,,50014120,,, +6100,CHN,ar,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,NAf,2000-2200,1234567,,,50004358,,, +6100,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,Eu,1700-1800,1234567,,,50004354,,, +6100,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,Eu,1800-1900,1234567,,,50004354,,, +6100,CHN,es,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SAm,2200-2300,1234567,,,50004354,,, +6100,CHN,mn,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,,1300-1400,1234567,,,50004354,,, +6100,CHN,pt,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SAm,0000-0100,1234567,,,50004354,,, +6100,CHN,pt,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SAm,2300-2400,1234567,,,50004354,,, +6100,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,EEu,1900-2000,1234567,,,50004354,,, +6100,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,55,7797,50,108,Sib,1200-1300,1234567,,,50004354,,, +6100,KRE,ko,KCBS Pyongyang Pangsong,,Kanggye (cha),40.966667,126.583333,,250,ND,8171,43,115,,1300-1800,1234567,,,50013455,,, +6100,KRE,ko,KCBS Pyongyang Pangsong,,Kanggye (cha),40.966667,126.583333,,250,ND,8171,43,115,,2000-0835,1234567,,,50013455,,, +6100,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Am,0500-0700,1234567,,,50020395,,, +6100,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Car,2300-0400,1234567,,,50020395,,, +6100,CHN,si,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,,8246,70,118,CLN,2330-0030,1234567,,,50004355,,, +6100,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,2200-2300,1234567,,,50004355,,, +6104.8,B,pt,ZYE728 Rdio Cultura Filadlfia,,Foz do Iguau/Rua Sumar (PR),-25.5175,-54.508333,,7.5,,10458,232,140,,0830-0010,1234567,-6104.8,,40000492,,, +6105,D,be,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,0400-0500,1234567,,,50022270,,, +6105,D,en,Trans World R,,Nauen (brb),52.647778,12.908611,,100,285,445,80,42,Eu,0800-0820,1234567,,,50020397,,, +6105,D,en,Trans World R,,Nauen (brb),52.647778,12.908611,,100,285,445,80,42,Eu,0820-0850,12345..,,,50020397,,, +6105,D,hu,Trans World R,,Nauen (brb),52.647778,12.908611,,100,285,445,80,42,Eu,0930-1000,1234567,,,50020397,,, +6105,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50023693,,, +6105,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2400,1234567,,,50023693,,, +6105,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,EEu,1500-1600,1234567,,,50022591,,, +6105,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,267,9444,57,125,FE,1200-1230,1234567,,,50000548,,, +6105,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,267,9444,57,125,FE,1230-1300,1234567,,,50000548,,, +6105,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,FE,1000-1100,1234567,,,50000548,,, +6105,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,FE,2200-2400,1234567,,,50000548,,, +6105,BOL,es,CP92 R Panamricana,,La Paz (lpz),-16.5,-68.166667,,7.5,,10438,248,140,,1000-0300,1234567,,,40000496,,, +6105,MEX,es,XEMH-OC Candela FM,,Mrida (yuc),20.966667,-89.5,,0.25,,8573,288,148,,0000-1100,1234567,75,,34900001,,, +6105,MEX,ma,XEMQ-OC R Yol Iik,,Mrida (yuc),20.966667,-89.5,,0.25,,8573,288,148,,1100-0000,1234567,75,,34900001,,, +6110,IRN,zh,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,FE,2320-0020,1234567,,,50022592,,, +6110,IND,hi,AIR North,,Srinagar (JK),34.03,74.905833,,50,200,5680,82,97,,0225-0510,1234567,,,40000498,,, +6110,IND,hi,AIR North,,Srinagar (JK),34.03,74.905833,,50,200,5680,82,97,,0510-0600,......7,,,40000498,,, +6110,IND,hi,AIR North,,Srinagar (JK),34.03,74.905833,,50,200,5680,82,97,,0600-1115,1234567,,,40000498,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0300-0530,1234567,,,50004383,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0530-0800,.....67,,,50004383,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0900-1100,1234567,,,50004383,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,1200-1400,.....67,,,50004383,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,1500-2102,1234567,,,50004383,,, +6110,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,1900-2000,1234567,,,50004381,,, +6110,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,2300-2400,1234567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,0000-0700,1234567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,0800-0950,1.34567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,0950-1600,1234567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,1700-1805,1234567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,2050-2230,1234567,,,40000497,,, +6110,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,0700-0800,1.34567,,,40000497,,, +6110,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,1600-1700,1234567,,,40000497,,, +6110,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,2230-2300,1234567,,,40000497,,, +6115,LTU,ru,NHK R Japan,,Kaunas/Sitkūnai (Kau),55.043611,23.807778,,100,,1191,67,49,Eu,0430-0500,1234567,,,50022596,,, +6115,RUS,ur,Trans World R,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,SAs,1500-1530,1234567,,,50022595,,, +6115,RUS,zh,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,FE,1100-1400,1234567,,,50022597,,, +6115,COG,fr,RTC National,,Brazzaville/M'Pila (bzv),-4.266667,15.283333,,100,,6325,169,100,,0555-0830,1234567,,,40000503,,, +6115,COG,fr,RTC National,,Brazzaville/M'Pila (bzv),-4.266667,15.283333,,100,,6325,169,100,,1700-1830,1234567,,,40000503,,, +6115,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,,7122,296,108,NAm,2100-0200,1234567,,,50022599,,, +6115,CHN,fr,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SEu,2030-2230,1234567,,,50022594,,, +6115,RUS,en,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,FE,1400-1500,1234567,,,50022598,,, +6115,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,350,10171,62,124,,2100-2300,1234567,,,50004395,,, +6115,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,350,10171,62,124,FE,2100-2257,1234567,,,50004395,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0000-0400,1234567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0400-1000,12.4567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1000-1025,1234567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1055-1430,1234567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1500-1600,1234567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,2230-2300,1234567,,,40000504,,, +6115,CHN,hk,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1430-1500,1234567,,,40000504,,, +6115,CHN,zh,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1025-1055,1234567,,,40000504,,, +6115,CHN,zh,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,2300-2400,1234567,,,40000504,,, +6115,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,230,9294,36,128,,0000-0800,12345..,,,40000505,,, +6115,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,230,9294,36,128,,2300-2400,1234567,,,40000505,,, +6115,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,50,9294,36,128,,0000-0900,.....67,,,40000505,,, +6115,PRU,es,R Unin-La Rompe,,Lima/Lomas de Villa (lim),-12.216694,-76.978094,,10,,10632,257,139,,0200-1700,1234567,97,,40000501,,, +6120,D,be,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1500-1700,1234567,,,50022602,,, +6120,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,1700-2200,1234567,,,50022601,,, +6120,ROU,ru,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,EEu,0530-0600,1234567,,,50022600,,, +6120,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1500-1600,1234567,,,40000506,,, +6120,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1200-1500,1234567,,,40000506,,, +6120,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1600-1800,1234567,,,40000506,,, +6120,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,2300-0300,1234567,,,40000506,,, +6120,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,315,7939,284,112,,2300-0500,1234567,,,50016016,,, +6120,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,SAf,0500-0800,1234567,,,50010812,,, +6120,B,pt,ZYE969 Super Rdio Deus Amor,,So Paulo/Rua Hilia Amaznica (SP),-23.606111,-46.538611,,10,320,9861,227,137,,1100-0900,1234567,,,36902754,,, +6125,E,en,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,242,1547,213,49,Eu,2200-2300,.....67,,,50009639,,, +6125,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,242,1547,213,49,,2300-0500,1234567,,,50009639,,, +6125,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,242,1547,213,49,LAm,2300-0600,1234567,,,50009639,,, +6125,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,1000-1805,1234567,,,36201056,,, +6125,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,2025-2300,1234567,,,36201056,,, +6125,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,1000-1805,1234567,,,40000792,,, +6125,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,2025-0100,1234567,,,40000792,,, +6125.2,URG,es,CXA4 RNU,,Santiago Vzquez (mo),-34.806944,-56.361944,,0.25,,11419,228,158,,0000-2400,1234567,-6125.2,,40000793,,, +6130,RUS,fr,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,1800-1900,1234567,,,50022603,,, +6130,RUS,it,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,1700-1800,1234567,,,50022603,,, +6130,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2300-2400,1234567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0000-0700,1234567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0800-0950,1.34567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0950-1600,1234567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1700-1805,1234567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2050-2230,1234567,,,40000795,,, +6130,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0700-0800,1.34567,,,40000795,,, +6130,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1600-1700,1234567,,,40000795,,, +6130,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2230-2300,1234567,,,40000795,,, +6130,SWZ,CKW,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1820-1835,1234567,,,50010813,,, +6130,SWZ,FT,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,....5..,,,50010813,,, +6130,SWZ,KK,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1850-1905,.2345.7,,,50010813,,, +6130,SWZ,KWA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,......7,,,50010813,,, +6130,SWZ,LUC,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,..3....,,,50010813,,, +6130,SWZ,LUN,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,.....6.,,,50010813,,, +6130,SWZ,LUV,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1850-1905,1......,,,50010813,,, +6130,SWZ,LUV,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,...4...,,,50010813,,, +6130,SWZ,kmb,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1950-2005,1234567,,,50010813,,, +6130,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1850-1905,.....6.,,,50010813,,, +6130,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,12.....,,,50010813,,, +6130,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1920-1950,1234567,,,50010813,,, +6130,SWZ,umb,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1750-1820,12345..,,,50010813,,, +6130,SWZ,umb,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1835-1850,1234567,,,50010813,,, +6130,LAO,en,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,1415-1430,12.....,,,40000796,,, +6130,LAO,fr,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,1415-1430,..34...,,,40000796,,, +6130,LAO,hm,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,0600-0700,1234567,,,40000796,,, +6130,LAO,hm,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,2200-2230,1234567,,,40000796,,, +6130,LAO,km,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,0700-0800,1234567,,,40000796,,, +6130,LAO,km,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,2230-2300,1234567,,,40000796,,, +6130,LAO,lo,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,0900-1415,1234...,,,40000796,,, +6130,LAO,lo,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,0900-1600,....567,,,40000796,,, +6130,LAO,lo,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,1430-1600,1234...,,,40000796,,, +6130,LAO,lo,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,2300-0600,1234567,,,40000796,,, +6135,G,ru,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EEu,2000-2030,1234567,,,50022605,,, +6135,IRN,it,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1920-1950,1234567,,,50022604,,, +6135,YEM,ar,Yemen R,,Aden/Al-Hiswah (adn),12.825,44.905667,,100,,5551,128,93,ME,0500-0800,1234567,,,50023695,,, +6135,YEM,ar,Yemen R,,Aden/Al-Hiswah (adn),12.825,44.905667,,100,,5551,128,93,ME,1300-1500,1234567,,,50023695,,, +6135,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,70,6960,203,103,CAf,0430-0500,1234567,,,50009641,,, +6135,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,0530-0600,1234567,,,50009641,,, +6135,CHN,hr,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,Eu,2100-2200,1234567,,,50010207,,, +6135,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1500-1600,1234567,,,50023694,,, +6135,TWN,zh,R Taiwan Int.,,Huwei (SW) (YL),23.726389,120.417222,,100,310,9441,57,125,,1000-1500,1234567,,,50021654,,, +6135,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,30,,8843,141,128,,0500-1506,1234567,20,,40000799,,, +6135,B,pt,ZYE954 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,25,,9721,226,132,,0700-0215,1234567,72,,40000798,,, +6135,BOL,es,CP32 R Santa Cruz,,Santa Cruz (scz),-17.75,-63.233333,,10,,10244,243,138,,0500-1200,1234567,84,,40000797,,, +6135,BOL,es,CP32 R Santa Cruz,,Santa Cruz (scz),-17.75,-63.233333,,10,,10244,243,138,,2100-0110,1234567,84,,40000797,,, +6139.8,CLM,es,HJQE R Lider,,Bogot D. C. (bdc),4.633333,-74.083333,,1,,8952,265,144,,0000-2400,1234567,-6139.8,,40000803,,, +6140,D,az,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,Cau,1830-1900,1234567,,,50022608,,, +6140,F,,European Music R,,Issoudun (36),46.947222,1.894444,,100,50,660,211,44,,1000-1100,......7,,,50014563,,, +6140,F,,MV Baltic R,,Issoudun (36),46.947222,1.894444,,100,80,660,211,44,,1000-1100,......7,,,50014562,,, +6140,F,,R Gloria,,Issoudun (36),46.947222,1.894444,,100,80,660,211,44,,1000-1100,......7,,,50017606,,, +6140,IRN,bs,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,320,4724,102,77,Eu,1720-1820,1234567,,,50020409,,, +6140,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,173,5347,76,91,SAs,1700-1800,1234567,,,50004438,,, +6140,RUS,ru,R Vaticana,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,Sib,1330-1400,1234567,,,50022606,,, +6140,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,1600-1700,1234567,,,40000804,,, +6140,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,2200-2300,1234567,,,50004437,,, +6140,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,2300-2400,1234567,,,50004437,,, +6140,J,en,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,....5..,,,50023696,,, +6140,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,.....67,,,50023696,,, +6140,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,1.34...,,,50023696,,, +6140,J,zh,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,.2.....,,,50023696,,, +6140,SNG,en,R Australia,,Kranji (nw),1.423056,103.7325,,100,13,10381,83,128,SEA,1100-1300,1234567,,,50007761,,, +6140,SOM,,R Puntland,,Garowe (nug),8.401389,48.472222,,0.05,,6172,126,132,,1900-0300,1234567,,,9500012,,, +6145,F,pl,China R Int.,,Issoudun (36),46.947222,1.894444,,500,60,660,211,37,Eu,2000-2100,1234567,0,,50004450,,, +6145,F,hu,China R Int.,,Issoudun (36),46.947222,1.894444,,250,85,660,211,40,Eu,2130-2200,1234567,0,,50004450,,, +6145,F,sq,China R Int.,,Issoudun (36),46.947222,1.894444,,250,105,660,211,40,SEE,2100-2130,1234567,0,,50004450,,, +6145,AUT,fa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,IRN,0330-0400,1234567,,,50022613,,, +6145,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ENA,0100-0200,1234567,,,50022612,,, +6145,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,0500-0600,1234567,,,50022612,,, +6145,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0250-0320,1234567,,,50022611,,, +6145,CHN,ro,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,1900-2000,1234567,,,50022610,,, +6145,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1800,1234567,,,50023697,,, +6145,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0200-0600,1234567,,,40000567,,, +6145,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0600-0800,1.34567,,,40000567,,, +6145,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0800-0900,1234567,,,40000567,,, +6145,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,2300-2400,1234567,,,50022609,,, +6145,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,1500-1700,1234567,,,36201090,,, +6145,CHN,zh,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,1700-1705,1234567,,,36201090,,, +6145,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,267,9434,57,125,CHN,1400-1800,1234567,,,50011334,,, +6150,CYP,de,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,0600-0700,..3....,,,40000508,,, +6150,CYP,de,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,1210-1215,1234567,,,40000508,,, +6150,CYP,de,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,1630-1700,......7,,,40000508,,, +6150,CYP,tu,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,0000-1210,12.456.,,,40000508,,, +6150,CYP,tu,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,1215-2400,12.456.,,,40000508,,, +6150,CHN,zh,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,Eu,1730-1830,1234567,,,50022614,,, +6150,IND,hi,AIR Northeast,,Itanagar (AR),27.0775,93.590556,,50,30,7482,75,115,,0700-0900,1234567,,,40000510,,, +6150,B,pt,ZYE959 Rdio Record,,So Paulo/Avenida Guarapiranga (SP),-23.683889,-46.743056,,10,,9878,227,137,,0700-0230,1234567,,,40000512,,, +6150,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1000-1100,.....67,,,50020413,,, +6150,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1100-1400,1234567,,,50020413,,, +6150,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,0900-1000,1234567,,,50020413,,, +6150,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1000-1100,12345..,,,50020413,,, +6155,F,en,R France Int.,,Issoudun (36),46.947222,1.894444,,250,345,660,211,40,,1800-1900,1234567,,,50021655,,, +6155,AUT,de,R Austria Int.,,Moosbrunn (nie),48.006667,16.461944,,300,220,849,119,41,Eu,0600-0715,1234567,,,50004468,,, +6155,AUT,de,R Austria Int.,,Moosbrunn (nie),48.006667,16.461944,,300,ND,849,119,41,,0600-0710,.....67,,,50004468,,, +6155,AUT,de,R Austria Int.,,Moosbrunn (nie),48.006667,16.461944,,300,ND,849,119,41,,0600-0715,12345..,,,50004468,,, +6155,BLR,de,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1800-2000,1234567,,,50022616,,, +6155,BLR,en,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2000-2200,1234567,,,50022616,,, +6155,BLR,es,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2000-2020,1....67,,,50022616,,, +6155,BLR,fr,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1940-2000,1..4.67,,,50022616,,, +6155,BLR,pl,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1705-1800,1234567,,,50022616,,, +6155,BLR,ru,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2200-2300,1234567,,,50022616,,, +6155,IRN,kk,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0120-0220,1234567,,,50022620,,, +6155,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1620-1720,1234567,,,50022620,,, +6155,IND,ur,All India R GOS,,Aligarh (UP),27.997222,78.097222,,500,325,6367,85,94,PAK,0015-0430,1234567,,,50016549,,, +6155,IND,ur,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,60,7561,97,106,PAK,1430-1930,1234567,,,50016021,,, +6155,IND,ur,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,60,7561,97,106,PAK,1557-1930,1234567,,,50016021,,, +6155,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,0,7773,50,115,,1430-1500,1234567,,,40000514,,, +6155,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,EEu,2000-2100,1234567,,,50022617,,, +6155,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,0,7773,50,115,,1000-1430,1234567,,,40000514,,, +6155,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,0,7773,50,115,,1500-1605,1234567,,,40000514,,, +6155,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,0,7773,50,115,,2100-0100,1234567,,,40000514,,, +6155,CHN,en,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1600-1700,1234567,,,50022618,,, +6155,CHN,en,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1700-1800,1234567,,,50022618,,, +6155,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,,8663,46,123,FE,0800-0900,1234567,,,50004476,,, +6155,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0300-0400,12345..,,,50022615,,, +6155,MDG,mg,Adventist World R,,Talata-Volonondry (tan),-18.751667,47.614444,,50,20,8830,141,126,EAf,1430-1530,1234567,,,50017162,,, +6160,CAN,en,CKZN,,Saint John's/Mount Pearl (NL),47.569417,-52.814333,,1,320,4158,287,99,,0800-0405,1234567,855,,40000518,,, +6160,CHN,de,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,WEu,1800-2000,1234567,,,50022621,,, +6160,THA,my,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SEA,2330-0030,1234567,,,50022622,,, +6160,B,pt,ZYE245 Rdio Rio Mar,,Manaus (AM),-3.122039,-60.042167,,10,,8712,249,133,,0000-2400,1234567,6,,36902761,,, +6160,CAN,en,CKZU,,Vancouver/Steveston (BC),49.139094,-123.195672,,1,325,7792,328,135,,1300-0805,1234567,982,,20100013,,, +6165,IRN,es,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SEu,2020-2120,1234567,,,50022625,,, +6165,TCD,fr,RNT-R.Nationale Tchadienne,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,65,4515,167,82,,0427-0730,1234567,958,,40000521,,, +6165,TCD,fr,RNT-R.Nationale Tchadienne,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,65,4515,167,82,,0730-1000,.....67,958,,40000521,,, +6165,TCD,fr,RNT-R.Nationale Tchadienne,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,65,4515,167,82,,1000-2230,1234567,958,,40000521,,, +6165,TCD,fr,RNT-R.Nationale Tchadienne,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,65,4515,167,82,,2230-2300,.....6.,958,,40000521,,, +6165,TCD,fr,United Nations R,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,,4515,167,82,CAf,1905-1920,.....6.,,,50017771,,, +6165,UZB,fa,BBC WS,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,IRN,0230-0330,1234567,,,50022624,,, +6165,CHN,fa,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,IRN,1500-1530,1234567,,,50004482,,, +6165,CHN,ps,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,AFG,1530-1600,1234567,,,50004482,,, +6165,CHN,tr,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1600-1700,1234567,,,50004482,,, +6165,OMA,hi,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,SAs,0100-0130,1234567,,,50022623,,, +6165,OMA,ur,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,SAs,0130-0200,1234567,,,50022623,,, +6165,IND,bal,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,65,6235,85,95,PAK,1500-1600,1234567,,,50016024,,, +6165,IND,sd,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,65,6235,85,95,PAK,1230-1500,1234567,,,50016024,,, +6165,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,288,7797,50,108,IRN,1700-1800,1234567,,,50004481,,, +6165,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0900-1605,1234567,,,40000523,,, +6165,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2155-0105,1234567,,,40000523,,, +6165,ZMB,en,ZNBC R 2,,Lusaka (lsk),-15.494444,28.243889,,100,,7807,158,115,,0245-2210,1234567,,,40000522,,, +6165,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CNA,0100-0500,1234567,,,50019436,,, +6165,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CNA,0500-0700,1234567,,,50019436,,, +6165,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,340,7939,284,116,,0100-0700,1234567,,,50019436,,, +6165,MYA,,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,1130-1205,1234567,,,22100052,,, +6165,MYA,en,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,1430-1500,1234567,,,22100052,,, +6165,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,1030-1130,1234567,,,22100052,,, +6165,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,1205-1430,1234567,,,22100052,,, +6165,MYA,ci,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,2330-0030,1234567,997,,22100011,,, +6165,MYA,kc,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0030-0130,1234567,997,,22100011,,, +6165,VTN,do,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,0000-0030,1234567,,,40000524,,, +6165,VTN,do,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,1330-1400,1234567,,,40000524,,, +6165,VTN,do,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,2230-2300,1234567,,,40000524,,, +6165,VTN,hm,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,1300-1330,1234567,,,40000524,,, +6165,VTN,hm,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,2200-2230,1234567,,,40000524,,, +6165,VTN,hm,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,2300-2400,1234567,,,40000524,,, +6165,VTN,vi,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,1400-1600,1234567,,,40000524,,, +6170,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1900-2000,1234567,,,50022627,,, +6170,FIN,fi,R Hami,,Ryskl (kh),60.749444,24.120556,,2.5,,1444,41,67,,0500-2100,9999999,,,2600006,,, +6170,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,EEu,1750-1850,1234567,,,50022626,,, +6170,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SAs,0030-0100,1234567,,,50022628,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0000-0600,.....6.,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0000-0600,9999999,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0900-1500,.....6.,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0900-1500,9999999,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,1900-2200,.....6.,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,1900-2200,9999999,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,2200-2400,....5..,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,2200-2400,9999999,,,50004490,,, +6170,KRE,de,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1600-1700,1234567,,,50018049,,, +6170,KRE,de,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1800-2000,1234567,,,50018049,,, +6170,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1000-1100,1234567,,,50018049,,, +6170,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1100-1200,1234567,,,50018049,,, +6170,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1200-1300,1234567,,,50018049,,, +6170,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2000-2100,1234567,,,50018049,,, +6170,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1400-1600,1234567,,,50018049,,, +6170,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1700-1800,1234567,,,50018049,,, +6170,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,SEA,1300-1400,1234567,,,50018049,,, +6170,PHL,tl,DZRM-AM Radyo Magasin,,Quezon City (ncr),14.633333,120.95,,0.5,155,10310,62,151,,0000-0400,1234567,,,33300006,,, +6170,PHL,tl,DZRM-AM Radyo Magasin,,Quezon City (ncr),14.633333,120.95,,0.5,155,10310,62,151,,0800-1400,1234567,,,33300006,,, +6173.9,PRU,es,OAX7C R Tawantinsuyo,,Cusco/Cerro Osqollo (cus),-13.533333,-71.95,,5,,10417,253,141,,1000-0300,1234567,90,,40000527,,, +6175,G,en,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ENA,0100-0130,1234567,,,50022632,,, +6175,G,en,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ENA,0230-0300,1234567,,,50022632,,, +6175,G,vi,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ENA,0130-0230,1234567,,,50022632,,, +6175,ALB,es,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,280,1609,135,51,NAf,2300-2400,1234567,,,50004494,,, +6175,ALB,pt,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,280,1609,135,51,NAf,2200-2300,1234567,,,50004494,,, +6175,IRN,tr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1550-1720,1234567,,,50022631,,, +6175,IRN,uz,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0220-0250,1234567,,,50022631,,, +6175,UAE,de,Voice of Vietnam,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,WEu,2030-2130,1234567,,,50022633,,, +6175,UAE,ur,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,1500-1600,1234567,,,50022630,,, +6175,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50022629,,, +6175,USA,VN,Voice of Vietnam,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,260,7046,290,104,CAm,0430-0530,1234567,,,50018059,,, +6175,USA,en,Voice of Vietnam,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0330-0400,1234567,,,50018059,,, +6175,USA,es,Voice of Vietnam,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0300-0330,1234567,,,50018059,,, +6175,USA,es,Voice of Vietnam,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0400-0430,1234567,,,50018059,,, +6175,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0900-1805,1234567,0,,40000529,,, +6175,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,2025-2400,1234567,0,,40000529,,, +6180,ROU,sr,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1830-1900,1234567,,,50022636,,, +6180,UAE,so,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1700-1730,1234567,,,50023699,,, +6180,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0000-0100,1234567,,,50004504,,, +6180,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,1500-1600,1234567,,,50022634,,, +6180,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1500,1234567,,,50023698,,, +6180,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1400-1500,1234567,,,36201072,,, +6180,CHN,mn,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1300-1400,1234567,,,36201072,,, +6180,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1200-1300,1234567,,,36201072,,, +6180,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2000-2400,1234567,,,36201072,,, +6180,B,pt,ZYE365 Rdio Nacional da Amaznia,,Braslia/Rodeador (DF),-15.603333,-48.130556,,250,344,9171,232,120,,0200-0550,......7,,,40000535,,, +6180,B,pt,ZYE365 Rdio Nacional da Amaznia,,Braslia/Rodeador (DF),-15.603333,-48.130556,,250,344,9171,232,120,,0550-0200,1234567,,,40000535,,, +6180,AFS,pt,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,1900-1933,1234567,,,50022635,,, +6180,TWN,en,R Taiwan Int.,,Huwei (SW) (YL),23.726389,120.417222,,100,,9441,57,125,CHN,1600-1700,1234567,,,50022272,,, +6180,TWN,zh,R Taiwan Int.,,Huwei (SW) (YL),23.726389,120.417222,,100,,9441,57,125,CHN,1000-1500,1234567,,,50022272,,, +6185,CVA,be,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,BLR,1800-1820,1234567,,,50022640,,, +6185,CVA,hy,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Cau,0310-0330,1234567,,,50022640,,, +6185,CVA,hy,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Cau,1650-1710,1234567,,,50022640,,, +6185,CVA,ru,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EEu,1710-1740,1234567,,,50022640,,, +6185,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,UKR,1740-1800,1234567,,,50022640,,, +6185,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,193,1609,135,51,NAf,2000-2200,1234567,,,50004513,,, +6185,TUR,it,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1500-1530,1234567,,,50022641,,, +6185,CHN,mn,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,MNG,2300-2400,1234567,,,50022639,,, +6185,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1000-1100,1234567,,,50019241,,, +6185,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1100-1200,1234567,,,50019241,,, +6185,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1200-1300,1234567,,,50019241,,, +6185,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,,1300-1400,1234567,,,50019241,,, +6185,CHN,zh,Zhongguo Huayun GD,,Fuzhou (FJ),26.066667,119.3,,15,,9163,57,133,,0400-1000,123.567,,,40000533,,, +6185,CHN,zh,Zhongguo Huayun GD,,Fuzhou (FJ),26.066667,119.3,,15,,9163,57,133,,1000-0400,1234567,,,40000533,,, +6185,MEX,es,XEPPM-OC R Educacin,,Mxico D.F/Ejrcito de Oriente (dif),19.364244,-99.028567,,10,,9322,294,135,,0000-1200,1234567,,,40000534,,, +6190,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,100,,384,64,41,CEu,0700-1300,9999999,,,50019439,,, +6190,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,100,,384,64,41,CEu,0900-1200,..3..6.,,,50019439,,, +6190,CHN,kg,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,1200-1230,1234567,990,,40000541,,, +6190,CHN,mn,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,1600-1700,1234567,990,,40000541,,, +6190,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,1230-1600,1234567,990,,40000541,,, +6190,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,1700-1800,1234567,990,,40000541,,, +6190,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,2300-0330,1234567,990,,40000541,,, +6190,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,2055-2400,1234567,,,40000540,,, +6190,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,315,7424,348,111,FE,1600-1800,1234567,,,50018066,,, +6190,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1230-1300,1234567,,,50004525,,, +6190,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1330-1400,1234567,,,50004525,,, +6190,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1430-1500,1234567,,,50004525,,, +6190,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1300-1330,1234567,,,50004525,,, +6190,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1400-1430,1234567,,,50004525,,, +6190,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1530-1600,1234567,,,50004525,,, +6190,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,,0500-0600,1234567,,,50009653,,, +6190,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,0,0600-0800,1234567,,,50009653,,, +6190,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,SAf,0500-0800,1234567,,,50009653,,, +6190,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,SAf,1600-2000,1234567,,,50009653,,, +6192.2,PRU,es,R Cusco,,Cusco (cus),-13.533333,-71.95,,1,,10417,253,148,,0800-1230,1234567,84,,40000543,,, +6192.2,PRU,es,R Cusco,,Cusco (cus),-13.533333,-71.95,,1,,10417,253,148,,2130-0200,1234567,84,,40000543,,, +6195,D,TAH,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,1930-2000,1234567,,,50022643,,, +6195,D,ar,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,1900-1930,1234567,,,50022643,,, +6195,D,fr,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,2000-2030,1234567,,,50022643,,, +6195,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,335,5617,106,89,ME,1700-1900,1234567,,,50009657,,, +6195,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,ME,0300-0400,1234567,,,50009657,,, +6195,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,ME,1500-1700,1234567,,,50009657,,, +6195,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0130-0200,1234567,,,50009657,,, +6195,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0230-0300,1234567,,,50009657,,, +6195,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0100-0130,1234567,,,50009657,,, +6195,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0200-0230,1234567,,,50009657,,, +6195,USA,es,NHK R Japan,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,SAm,0400-0430,1234567,,,50017471,,, +6195,USA,es,NHK R Japan,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,SAm,0930-1000,1234567,,,50017471,,, +6195,USA,pt,NHK R Japan,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,SAm,0900-0930,1234567,,,50017471,,, +6195,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,130,,10381,83,127,INS,0000-0100,1234567,,,50009654,,, +6195,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,130,,10381,83,127,SEA,1100-1500,1234567,,,50009654,,, +6200,IRN,tg,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,1550-1720,1234567,,,50022644,,, +6200,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2300-2400,1234567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0000-0700,1234567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0800-0950,1.34567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0950-1600,1234567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1700-1805,1234567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2050-2230,1234567,,,40000546,,, +6200,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0700-0800,1.34567,,,40000546,,, +6200,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1600-1700,1234567,,,40000546,,, +6200,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2230-2300,1234567,,,40000546,,, +6205,IRN,de,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1720-1820,1234567,,,50022645,,, +6206,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700137,,, +6210,GRC,,Voice of Greece,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,,1800-2400,1234567,,,3400043,,, +6210,COD,fr,R Kahuzi,,Bukavu (skv),-2.486111,28.858611,,0.8,,6427,153,122,,0530-0700,1234567,98,,8600001,,, +6210,COD,fr,R Kahuzi,,Bukavu (skv),-2.486111,28.858611,,0.8,,6427,153,122,,1630-2010,1234567,98,,8600001,,, +6210,COD,sw,R Kahuzi,,Bukavu (skv),-2.486111,28.858611,,0.8,,6427,153,122,,1100-1200,.234.67,98,,8600001,,, +6214.1,ARG,es,R Baluarte,,Puerto Iguaz (mn),-25.65,-54.583333,,0.8,,10474,232,150,,0000-2400,1234567,-6214.1,,40000550,,, +6215,AUS,,Cairns Coastguard,u,Cairns (QLD),-16.928333,145.779444,,1,,14734,58,163,,????-????,1234567,,,37700098,,, +6215,AUS,,VMR471 Keppel Sands Coastguard,u,Keppel Sands (QLD),-23.3375,150.797222,,1,,15617,57,166,,????-????,1234567,,,37700096,,, +6215,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.4,,14915,58,167,,????-????,1234567,,,37700131,,, +6215,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,37700094,,, +6215,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700135,,, +6215,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700149,,, +6215,AUS,,VMR251 Kingscliff Coastguard,u,Kingscliff/Faulks Park (NSW),-28.257656,153.583189,,0.1,,16225,58,178,,????-????,1234567,,,37700123,,, +6218.6,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,0235-0255,9999999,-6218.6,,20109246,,, +6218.6,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,1435-1455,9999999,-6218.6,,20109246,,, +6218.6,CAN,,XNR88 Inuvik Coastguard,u,Hay River (NT),60.841,-115.770028,,1,,6450,331,122,,0115-0135,9999999,-6218.6,,20109248,,, +6218.6,CAN,,XNR88 Inuvik Coastguard,u,Hay River (NT),60.841,-115.770028,,1,,6450,331,122,,1315-1335,9999999,-6218.6,,20109248,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0003-0013,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0133-0143,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0303-0313,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0533-0543,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0803-0813,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0903-0913,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1333-1343,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1503-1513,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1733-1743,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2003-2013,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2103-2113,1234567,,,32500028,,, +6225,TJK,my,Dem.Voice of Burma,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,SEA,1430-1530,1234567,,,50022646,,, +6230,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1000-2300,1234567,,,37700024,,, +6236,JMC,,Kingston Coastguard R,u,Kingston (kgs),17.934722,-76.843056,,1,,7988,276,137,,????-????,1234567,,,35700001,,, +6240,TWN,zh,Xi Wang zhi Sheng SOH,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,310,9434,57,125,FE,1300-1400,1234567,,,50019896,,, +6250,GNE,,R.Nacional Guinea Ecuatorial,,Malabo/Semu (bin),3.75,8.8,,10,,5382,177,101,,0530-2300,1234567,,,40000554,,, +6250,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,KOR,0400-0600,1234567,,,50019605,,, +6250,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,KOR,1200-1400,1234567,,,50019605,,, +6250,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,KOR,2200-2400,1234567,,,50019605,,, +6250,KOR,ko,Echo of Hope,,Hwaseong (gye),37.211944,126.776111,,100,,8529,45,122,KRE,0555-2400,1234567,,,50023700,,, +6255,CNR,,Horizon FM / Atlantis FM,,Tenerife Norte (STC-TF),28.45,-16.333333,,0.075,,3233,224,101,,,,,,1500020,,, +6260,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,153,4779,79,85,SAs,0000-0400,1234567,,,50016029,,, +6260,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,153,4779,79,85,SAs,1400-2000,1234567,,,50016029,,, +6275,TJK,ko,R Free North Korea,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,KRE,1530-1630,1234567,,,50023701,,, +6280,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,,9364,56,120,FE,2200-2300,....56.,,,50009661,,, +6280,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,,9364,56,120,FE,2300-2400,....56.,,,50009661,,, +6280,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,2200-2400,....56.,,,50009661,,, +6290,EGY,ar,ERTU Al-Barnameg al-Aam,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,,1900-0700,1234567,,,2300003,,, +6300,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,20,,2986,209,74,,0700-0900,1234567,182,,200009,,, +6300,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,20,,2986,209,74,,0900-1000,.....6.,182,,200009,,, +6300,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,20,,2986,209,74,,1700-2300,1234567,182,,200009,,, +6300,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,20,,2986,209,74,,2300-2330,1234567,182,,200009,,, +6312,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,,,35400113,,, +6312,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800014,,, +6317,VTN,vi,Điện Bin R,,Điện Bin Phu (dbn),22.033333,103.166667,,1,,8535,71,142,,0400-0600,1234567,,,40000559,,, +6317,VTN,vi,Điện Bin R,,Điện Bin Phu (dbn),22.033333,103.166667,,1,,8535,71,142,,1200-1330,1234567,,,40000559,,, +6317,VTN,vi,Điện Bin R,,Điện Bin Phu (dbn),22.033333,103.166667,,1,,8535,71,142,,2200-0030,1234567,,,40000559,,, +6324,AUS,,VZG420 Townsville R,u,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,0700-0800,1234567,,,37700113,,, +6329,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,,,34700015,,, +6335,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,1600-1700,1234567,,,10500021,,, +6335,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,1800-1900,1234567,,,10500021,,, +6335,IRQ,ku,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,1700-1800,1234567,,,10500021,,, +6340.5,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0230-0506,1234567,-6340.5,,20016154,,, +6340.5,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0745-1041,1234567,-6340.5,,20016154,,, +6340.5,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1400-1600,1234567,-6340.5,,20016154,,, +6340.5,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1720-2241,1234567,-6340.5,,20016154,,, +6348,KOR,ko,Echo of Hope,,Hwaseong (gye),37.211944,126.776111,,100,,8529,45,122,KRE,0555-2400,1234567,,,50014072,,, +6352,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-1200,1234567,,,6800023,,, +6352.5,USA,,WHL26 Saint Augustine R,p,Saint Augustine (FL),29.750833,-81.28,,1,,7294,288,130,,????-????,1234567,-6352.5,,20016176,,, +6368.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0000-2400,1234567,-6368.5,,7300006,,, +6396,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800004,,, +6400,KRE,ko,KCBS Pyongyang Pangsong,,Kanggye (cha),40.966667,126.583333,,50,ND,8171,43,122,,2100-1800,1234567,,,50013466,,, +6434,D,,DAO36 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,,,2000056,,, +6435.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0000-2400,1234567,-6435.5,,7300002,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,0700-0715,1234567,-6445.5,,6700136,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,0800-0815,1234567,-6445.5,,6700136,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,1400-1500,1234567,-6445.5,,6700136,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,1850-1900,1234567,-6445.5,,6700136,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,2000-2015,1234567,-6445.5,,6700136,,, +6448,B,,PPR Rio Rdio,r,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0600-0730,1234567,,,36902807,,, +6448,B,,PPR Rio Rdio,r,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1845-1930,1234567,,,36902807,,, +6475,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901030,,, +6478,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800024,,, +6487,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000065,,, +6493.5,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,-6493.5,,19901029,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0330-0400,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0515-0545,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0930-1000,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1115-1145,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1530-1600,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2130-2200,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2315-2345,1234567,,,20000100,,, +6501,ALS,en,NOJ USCG Kodiak,u,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0203-0238,1234567,,,20012377,,, +6501,ALS,en,NOJ USCG Kodiak,u,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1645-1720,1234567,,,20012377,,, +6501,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,0600-0635,1234567,,,20012370,,, +6501,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,1200-1235,1234567,,,20012370,,, +6501,GUM,en,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,0930-1005,1234567,,,20012378,,, +6501,GUM,en,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,1530-1605,1234567,,,20012378,,, +6504,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,????-????,1234567,,,22500014,,, +6507,GRC,,SVO Olympia R,u,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,????-????,1234567,,,3400002,,, +6507,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0800-2100,1234567,,,37700018,,, +6507,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700134,,, +6513,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,0110-0130,9999999,,,20109241,,, +6513,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,1320-1340,9999999,,,20109241,,, +6515.7,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,0000-0015,1234567,-6515.7,,36100004,,, +6515.7,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,0603-0618,1234567,-6515.7,,36100004,,, +6515.7,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,2203-2218,1234567,-6515.7,,36100004,,, +6518.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-6518.8,,31200008,,, +6518.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-6518.8,,31200008,,, +6518.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-6518.8,,31200008,,, +6519,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016231,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0000-0010,1234567,,,3500018,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0805-0815,1234567,,,3500018,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1305-1315,1234567,,,3500018,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1805-1815,1234567,,,3500018,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,2305-2315,1234567,,,3500018,,, +6532,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012451,,, +6535,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500006,,, +6535,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000001,,, +6535,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300026,,, +6535,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900012,,, +6536.1,PRU,es,La Voz del Rondero/Super Sensacin,,Huancabamba (piu),-5.283333,-79.466667,,0.8,,10190,264,149,,1200-0230,1234567,-6536.1,,40000571,,, +6544,NOR,,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,,,,,6300024,,, +6547,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902870,,, +6556,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900007,,, +6556,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700086,,, +6559,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300017,,, +6577,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012407,,, +6577,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400007,,, +6577,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902902,,, +6577,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100018,,, +6583,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200023,,, +6586,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012416,,, +6586,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100004,,, +6586,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902909,,, +6586,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500005,,, +6589,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100014,,, +6592,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500012,,, +6596,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700101,,, +6600,KOR,ko,Voice of the People,,Goyang (gye),37.594611,126.844722,,50,,8496,45,125,,0500-2300,1234567,987,,34600002,,, +6604,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:20-:29,1234567,,,20100018,,, +6604,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:50-:59,1234567,,,20100018,,, +6604,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:00-:19,1234567,,,20000081,,, +6604,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:30-:49,1234567,,,20000081,,, +6617,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:05-:09,1234567,,,6700014,,, +6617,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:35-:39,1234567,,,6700014,,, +6617,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:25-:29,1234567,,,6700038,,, +6617,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:55-:59,1234567,,,6700038,,, +6622,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100029,,, +6622,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1130-0730,1234567,,,20109270,,, +6628,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,2300-1900,1234567,,,700006,,, +6628,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2100-1300,1234567,,,20012392,,, +6628,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500011,,, +6637,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500038,,, +6640,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012411,,, +6640,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012491,,, +6640,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012437,,, +6640,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012477,,, +6640,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900021,,, +6640,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012504,,, +6649,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100019,,, +6649,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500024,,, +6655,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012484,,, +6655,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200021,,, +6655,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012460,,, +6661,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016241,,, +6661,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200032,,, +6664,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,0330-0430,1234567,,,33200008,,, +6664,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,0945-1100,1234567,,,33200008,,, +6664,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,1145-1400,1234567,,,33200008,,, +6664,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,2200-2300,1234567,,,33200008,,, +6673,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500007,,, +6673,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000004,,, +6673,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012430,,, +6676,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:16-:19,1234567,,,31500007,,, +6676,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:46-:49,1234567,,,31500007,,, +6676,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:25-:29,1234567,,,32200004,,, +6676,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:55-:59,1234567,,,32200004,,, +6676,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:05-:09,1234567,,,32200007,,, +6676,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:35-:39,1234567,,,32200007,,, +6676,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:10-:15,1234567,,,32900004,,, +6676,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:40-:45,1234567,,,32900004,,, +6676,SNG,en,Singapore Volmet,u,Singapore/Yio Chu Kang (ne),1.380139,103.854722,,1,,10394,83,148,,:20-:24,1234567,,,33100002,,, +6676,SNG,en,Singapore Volmet,u,Singapore/Yio Chu Kang (ne),1.380139,103.854722,,1,,10394,83,148,,:50-:54,1234567,,,33100002,,, +6676,AUS,en,Australian Volmet,u,Ningi/Telstra (QLD),-27.066111,153.055556,,6,,16087,58,159,,:00-:04,1234567,,,37700029,,, +6676,AUS,en,Australian Volmet,u,Ningi/Telstra (QLD),-27.066111,153.055556,,6,,16087,58,159,,:30-:34,1234567,,,37700029,,, +6678,URG,es,R Info Ideas,,Jos Pedro Varela (la),-33.45,-54.533333,,0.025,,11200,228,167,,,,3,,31200015,,, +6679,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:10-:14,1234567,,,31400002,,, +6679,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:40-:44,1234567,,,31400002,,, +6679,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:15-:18,1234567,,,33800003,,, +6679,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:45-:48,1234567,,,33800003,,, +6679,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:25-:39,1234567,,,20000094,,, +6679,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:55-:09,1234567,,,20000094,,, +6679,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:20-:24,1234567,,,32500016,,, +6679,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:50-:54,1234567,,,32500016,,, +6693,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:00-:04,1234567,,,6700026,,, +6693,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:30-:34,1234567,,,6700026,,, +6693,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:15-:19,1234567,,,6700034,,, +6693,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:45-:49,1234567,,,6700034,,, +6693,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:05-:09,1234567,,,6700030,,, +6693,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:35-:39,1234567,,,6700030,,, +6693,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:20-:24,1234567,,,6700017,,, +6693,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:50-:54,1234567,,,6700017,,, +6693,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:10-:14,1234567,,,6700022,,, +6693,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:40-:44,1234567,,,6700022,,, +6704,RUS,,Krasnoyarsk Aero,u,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700108,,, +6712,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200020,,, +6730,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:05-:09,1234567,,,4500002,,, +6730,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:35-:39,1234567,,,4500002,,, +6730,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:20-:24,1234567,,,34500002,,, +6730,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:50-:54,1234567,,,34500002,,, +6730,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:10-:19,1234567,,,4500006,,, +6730,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:40-:49,1234567,,,4500006,,, +6750,CHN,zh,Shangdong Shidao Maritime R.,u,Shidao (SD),36.883333,122.416667,,1,,8343,48,140,,0020-0025,1234567,,,36201091,,, +6750,CHN,zh,Shangdong Shidao Maritime R.,u,Shidao (SD),36.883333,122.416667,,1,,8343,48,140,,0920-0925,1234567,,,36201091,,, +6754,CAN,en,CHR Trenton Volmet,u,Trenton/Point Petre (ON),43.844444,-77.146667,,1,,5937,297,116,,2310-1100,1234567,,,20100022,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0000-0200,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0300-0500,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0600-0800,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0900-1100,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1200-1400,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1500-1700,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1800-2000,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,2100-2300,1234567,1,,32900001,,, +6801,OCE,,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500009,,, +6915,SOM,so,R Hage,,Gaalkacyo (mud),6.783333,47.433333,,1.3,,6272,129,119,,0300-0400,1234567,,,9500002,,, +6915,SOM,so,R Hage,,Gaalkacyo (mud),6.783333,47.433333,,1.3,,6272,129,119,,0900-1000,1234567,,,9500002,,, +6915.1,CAN,,VCO Sydney Coastguard,f,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,2200-2331,1234567,-6915.1,,20109297,,, +6936.3,PRU,es,R Andina,,Huancayo (jun),-12.083333,-75.2,,2.5,,10502,256,145,,0930-1400,1234567,-6936.3,,40000285,,, +6936.3,PRU,es,R Andina,,Huancayo (jun),-12.083333,-75.2,,2.5,,10502,256,145,,1900-0300,1234567,-6936.3,,40000285,,, +6970,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,,9364,56,125,FE,2000-1700,1234567,,,50019898,,, +6970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1800,1234567,,,50020272,,, +7023,AFS,,ZS6SRL,b,Johannesburg (GT),-26.1,27.866667,,0.0004,,8944,161,177,,,,,IRREG,55020,,, +7023,AFS,,ZS4BFN,b,Bloemfontein (FS),-29.1,26.283333,,0.0004,,9236,163,178,,,,,IRREG,55022,,, +7023,AFS,,ZS6YI,b,Johannesburg (GT),-26.683333,27.95,,0.0004,,9009,161,178,,,,,IRREG,55021,,, +7023,AFS,,ZS1AFU,b,Simonstown (NC),-32.433333,20.616667,,0.0004,,9502,168,179,,,,,IRREG,55023,,, +7023,AFS,,ZS1HMO,b,Somerset West (WC),-34.433333,19.283333,,0.0004,,9704,169,180,,,,,IRREG,55025,,, +7023,AFS,,ZS2LAW,b,Grahamstown (EC),-33.3,26.533333,,0.0004,,9697,163,180,,,,,IRREG,55024,,, +7025,AFS,,ZS1AGI,b,George Airport (WC),-33.966667,22.366667,,0.0002,,9697,167,183,,,,,1/2 Dipole E-W A1 QRT?,55026,,, +7028,CZE,,OK1IF,b,Liberec JO70MS,49.6,15.5,,0.00025,,696,110,100,,,,,?,55027,,, +7030,B,,PY5ZW,b,Medianeira (PR),-25.3,-54.116667,,0.025,,10416,232,164,,,,,A1 ?,55028,,, +7032,B,,PU2NJL,b,Guarulhos (SP),-23.466667,-46.533333,,0.025,,9847,227,162,,,,,?,55029,,, +7033,B,,PY2LL,b,Guarulhos (SP),-19.683333,-51.2,,0.004,,9727,233,170,,,,,A1 ?,55030,,, +7034,B,,PT9BCN,b,Campo Grande (MS),-20.433333,-54.533333,,0.012,,9982,235,166,,,,,A1 24?,55031,,, +7035,B,,PS8RF,b,Teresina (PI),-5.1,-42.783333,,0.025,,7868,233,152,,,,,A1 ?,55033,,, +7035,CAN,,VA3NDO,b,Toronto ON (ON),43.716667,-79.366667,,0.0001,,6081,298,158,,,,,?,55032,,, +7038.5,CZE,,OK0EU,b,Panska Ves,50.516667,14.533333,,0.001,,591,104,93,,,,-7038.5,Mag Loop N-S A1 24,55034,,, +7039.5,CZE,,OK0EPB,b,Prague,49.516667,15.033333,,0.01,,670,112,84,,,,-7039.5,Dipole A1 day,55035,,, +7039.6,I,,IZ3DVW,b,Monselice (pd),45.216667,11.783333,,0.0005,,862,151,99,,,,-7039.6,Inv V A1 24,55036,,, +7047.5,INS,,YD0MWK,b,Bekasi (JB-kbk),-6.3,107.033333,,0.005,,11285,85,174,,,,-7047.5,Inv Vee@15m A1 Planned,55037,,, +7082.65,CLM,,HK3QQ,b,Bogota,4.716667,-74.033333,,0.01,,8942,265,163,,,,-7082.65,Dipole A1 PT,55038,,, +7120,SOM,,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,1930-2000,1234567,,,9500001,,, +7120,SOM,ar,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,1900-1915,1234567,,,9500001,,, +7120,SOM,en,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,1915-1930,1234567,,,9500001,,, +7120,SOM,so,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,0900-1200,1234567,,,9500001,,, +7120,SOM,so,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,1500-1900,1234567,,,9500001,,, +7160,CAF,,R ICDI,,Boali (mpk),4.8,18.116667,,1,,5370,164,111,,0500-0800,12345..,,,9300004,,, +7160,CAF,,R ICDI,,Boali (mpk),4.8,18.116667,,1,,5370,164,111,,1600-2000,12345..,,,9300004,,, +7195,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,0600-1300,1234567,,,40000738,,, +7200,AFG,en,R Afghanistan FS,,Kabul/Yakatut (kab),34.539861,69.211778,,250,,5255,86,86,,1530-1600,1234567,,,50016434,,, +7200,AFG,ur,R Afghanistan FS,,Kabul/Yakatut (kab),34.539861,69.211778,,250,,5255,86,86,,1600-1630,1234567,,,50016434,,, +7200,ETH,am,ERTA Ethiopia National R,,Geja Dera (aab),8.761111,38.6625,,100,,5636,137,93,EAf,0300-2100,1234567,,,50004568,,, +7200,ETH,en,ERTA Ethiopia National R,,Geja Dera (aab),8.761111,38.6625,,100,,5636,137,93,EAf,1200-1300,12345..,,,50004568,,, +7200,MYA,my,Myanmar R-National,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0030-0300,1234567,,,22100004,,, +7200,MYA,my,Myanmar R,,Yangon/Yay Kuu (ygn),16.863194,96.161778,,50,,8519,80,125,,0930-1255,1234567,,,22100009,,, +7200,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,,9364,56,125,FE,2200-2300,1234567,,,50021916,,, +7205,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,WAf,2000-2200,1234567,,,50017234,,, +7205,TUR,de,Voice of Turkey,,Emirler,39.401389,32.855833,,500,105,2469,114,55,Eu,1830-1930,1234567,,,50008171,,, +7205,SDN,ar,SRTC Sudan Nat. R,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,0215-0430,1234567,,,40000741,,, +7205,SDN,ar,SRTC Sudan Nat. R,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,1500-1600,1234567,,,40000741,,, +7205,SDN,ar,SRTC Sudan Nat. R,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,1900-2100,1234567,,,40000741,,, +7205,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0355-0700,1234567,,,40000593,,, +7205,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0930-1100,1234567,,,40000593,,, +7205,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1400-2000,1234567,,,40000593,,, +7205,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1200-1300,1234567,,,50022647,,, +7205,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1500-1600,1234567,,,40000739,,, +7205,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1230-1500,1234567,,,40000739,,, +7205,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1600-1800,1234567,,,40000739,,, +7205,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0230,1234567,,,40000739,,, +7205,BGD,,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,0400-2000,1234567,,,36300007,,, +7205,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,252,7808,59,108,SAf,2100-2200,1234567,,,50004579,,, +7205,CHN,mn,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,MNG,2300-2400,1234567,,,50004579,,, +7205,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,Eu,1700-1800,1234567,,,50004577,,, +7205,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,95,7797,50,113,FE,1300-1400,1234567,,,50004577,,, +7205,RUS,VN,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,SEA,1200-1300,1234567,,,50022648,,, +7205,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,329,8917,74,120,,1900-2000,1234567,,,50021659,,, +7205,AFS,en,Amateur R Today,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,SAf,0800-0900,......7,,,50004576,,, +7205,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,332,10223,62,124,,2200-2300,1234567,,,50021658,,, +7210,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,280,1609,135,51,NAf,0500-0700,1234567,,,50004586,,, +7210,ALB,es,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,280,1609,135,51,SEu,2200-2400,1234567,,,50004586,,, +7210,ROU,ru,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,EEu,0530-0600,1234567,,,50022651,,, +7210,CHN,eo,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,FE,1100-1200,1234567,,,50022649,,, +7210,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,1800-1900,1234567,,,50022649,,, +7210,RUS,ko,R Free Asia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,250,125,6080,48,94,FE,1500-1700,1234567,,,50000815,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0300-0530,1234567,,,50004590,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0530-0800,.....67,,,50004590,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0900-1100,1234567,,,50004590,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,1200-1400,.....67,,,50004590,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,1500-2102,1234567,,,50004590,,, +7210,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1400-1500,1234567,,,50022650,,, +7210,CHN,ko,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,2200-2300,1234567,,,50022650,,, +7210,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,180,7521,82,115,,0230-0401,12345..,,,40000744,,, +7210,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,180,7521,82,115,,0230-0501,.....67,,,40000744,,, +7210,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,180,7521,82,115,,0730-1000,12345..,,,40000744,,, +7210,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,180,7521,82,115,,0730-1030,.....67,,,40000744,,, +7210,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,1900-2000,1234567,,,50016036,,, +7210,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,1800-1900,1234567,,,50016036,,, +7210,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,2000-2100,1234567,,,50016036,,, +7210,CHN,,Yunnan RGD Shaoshu Minzu,,Kunming/Lantau (YN),25.066667,102.683333,,20,,8242,69,126,,0630-0830,1234567,,,40000583,,, +7210,CHN,,Yunnan RGD Shaoshu Minzu,,Kunming/Lantau (YN),25.066667,102.683333,,20,,8242,69,126,,1055-1500,1234567,,,40000583,,, +7210,CHN,,Yunnan RGD Shaoshu Minzu,,Kunming/Lantau (YN),25.066667,102.683333,,20,,8242,69,126,,2255-0300,1234567,,,40000583,,, +7210,VTN,vi,VOV1,,Bun M Thuột (dkk),12.644278,108.02055,,20,,9675,73,133,ND,2145-1700,1234567,,,50016037,,, +7215,D,BAG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,12.....,,,50022654,,, +7215,D,BH,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,1......,,,50022654,,, +7215,D,BUN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,....56.,,,50022654,,, +7215,D,GA,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,......7,,,50022654,,, +7215,D,KHR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,..3....,,,50022654,,, +7215,D,KHT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,....5..,,,50022654,,, +7215,D,KIN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0100-0115,.....67,,,50022654,,, +7215,D,KKN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,.2.....,,,50022654,,, +7215,D,KTW,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,..3....,,,50022654,,, +7215,D,MEW,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0045-0100,12.....,,,50022654,,, +7215,D,VAD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,...4...,,,50022654,,, +7215,D,VV,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,...4...,,,50022654,,, +7215,D,hi,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,.....67,,,50022654,,, +7215,D,mag,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0045-0100,..3....,,,50022654,,, +7215,D,mwr,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0100-0115,12.....,,,50022654,,, +7215,D,pa,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0100-0115,...45..,,,50022654,,, +7215,D,sd,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0100-0115,..3....,,,50022654,,, +7215,D,xnr,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0045-0100,...4567,,,50022654,,, +7215,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,NAf,2000-2200,1234567,,,50022653,,, +7215,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,Sib,1000-1100,1234567,,,50004598,,, +7215,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,CAs,1200-1300,1234567,,,50004598,,, +7215,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,INS,1300-1400,1234567,,,50004598,,, +7215,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,1500-1600,1234567,,,50004596,,, +7215,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,EEu,1600-1700,1234567,,,50022652,,, +7215,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,2025-2400,1234567,,,36201089,,, +7215,CHN,zh,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,Eu,1900-2000,1234567,,,50022652,,, +7215,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,1300-1400,1234567,,,50016562,,, +7215.1,NOR,,UKE Senderen,,Trondheim (st),63.6,10.383333,,1,,1298,9,70,,????-????,1234567,-7215.1,,40000748,,, +7220,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,0800-0830,......7,,,50022657,,, +7220,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,0800-0845,.....6.,,,50022657,,, +7220,ALB,bg,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,SEE,1100-1200,1234567,,,50004606,,, +7220,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,EGY,0500-0600,1234567,,,50004606,,, +7220,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,2300-2400,1234567,,,50022659,,, +7220,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,0500-0600,1234567,,,50022659,,, +7220,IRN,ar,IRIB Voice of Palestine,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0320-0420,1234567,,,50022658,,, +7220,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,EAf,1700-1800,1234567,,,50022656,,, +7220,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0000-0600,1234567,,,36201057,,, +7220,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0600-0900,12.4567,,,36201057,,, +7220,CHN,vi,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,2300-2400,1234567,,,50004610,,, +7220,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,1500-1600,1234567,,,50004607,,, +7220,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0400-0500,1234567,,,50016039,,, +7220,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0600-0700,1234567,,,50016039,,, +7220,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0900-1000,1234567,,,50016039,,, +7220,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0500-0600,1234567,,,50016039,,, +7220,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0800-0900,1234567,,,50016039,,, +7220,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,1100-1200,1234567,,,50016039,,, +7220,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,FE,1400-1500,1234567,,,50022655,,, +7220,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,ME,2200-2300,1234567,,,50022655,,, +7220,VTN,VN,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1500-1600,1234567,5,,50004620,,, +7220,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1600-1630,1234567,5,,50004620,,, +7220,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,2030-2100,1234567,5,,50004620,,, +7220,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1630-1700,1234567,5,,50004620,,, +7220,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,2100-2130,1234567,5,,50004620,,, +7220,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,Sib,1130-1200,1234567,5,,50004620,,, +7220,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,Sib,1230-1300,1234567,5,,50004620,,, +7220,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1100-1130,1234567,5,,50004620,,, +7220,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1200-1230,1234567,5,,50004620,,, +7220,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1300-1330,1234567,5,,50004620,,, +7220,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,2200-2230,1234567,5,,50004620,,, +7225,CHN,hi,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,SAs,1500-1600,1234567,,,50004622,,, +7225,CHN,hr,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,Eu,2100-2200,1234567,,,50010222,,, +7225,CHN,,Sichuan RGD,,Chengdu (SC),30.616667,104.1,,15,,7857,65,124,,0930-1515,1234567,,,40000752,,, +7225,CHN,,Sichuan RGD,,Chengdu (SC),30.616667,104.1,,15,,7857,65,124,,1515-1700,1234567,,,40000752,,, +7225,CHN,,Sichuan RGD,,Chengdu (SC),30.616667,104.1,,15,,7857,65,124,,2125-0135,1234567,,,40000752,,, +7225,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,1900-2100,1234567,,,50022660,,, +7230,ALB,tr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,ME,1500-1600,1234567,,,50022661,,, +7230,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,320,4724,102,77,Cau,1620-1720,1234567,,,50019613,,, +7230,BFA,,RTB-R.Nationale du Burkina,,Ouagadougou (kad),12.434444,-1.551944,,50,,4469,192,85,,0800-1700,1234567,,,40000753,,, +7230,CHN,ky,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0330-0530,1234567,,,40000756,,, +7230,CHN,mn,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0700-0800,1234567,,,40000756,,, +7230,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0000-0330,1234567,,,40000756,,, +7230,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0530-0700,1234567,,,40000756,,, +7230,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0800-1030,1.34567,,,40000756,,, +7230,IND,hi,AIR East,,Kurseong (WB),26.864722,88.258333,,50,150,7145,79,112,,0620-1030,1234567,,,40000757,,, +7230,CHN,zh,CNR 1,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0600-0900,1.34567,,,40000755,,, +7230,CHN,zh,CNR 1,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0900-1805,1234567,,,40000755,,, +7230,CHN,zh,CNR 1,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,2025-0600,1234567,,,40000755,,, +7230,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,0400-0700,12345..,,,50004628,,, +7235,G,ff,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,WAf,1900-2000,1234567,,,50022664,,, +7235,G,ru,KBS World R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,Eu,1800-1900,1234567,,,50022662,,, +7235,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SEu,2000-2100,1234567,,,50022663,,, +7235,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1600-1700,1234567,,,50004633,,, +7235,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1500-1600,1234567,,,50004633,,, +7235,ETH,aa,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1300-1400,1234567,,,50007765,,, +7235,ETH,ar,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1400-1500,1234567,,,50007765,,, +7235,ETH,en,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1600-1700,1234567,,,50007765,,, +7235,ETH,fr,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1700-1800,1234567,,,50007765,,, +7235,ETH,so,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,0700-0800,1234567,,,50007765,,, +7235,ETH,so,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1200-1300,1234567,,,50007765,,, +7235,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,,2300-2400,1234567,,,50016044,,, +7235,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,2100-2300,1234567,,,50016044,,, +7235,PHL,ko,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1200-1400,1234567,,,50022666,,, +7235,MRA,ko,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50022665,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,,10817,78,140,ND,2200-2400,1234567,,,50013472,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,0000-0100,1234567,,,50013472,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,0100-0400,1234567,,,50013472,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,0400-0600,1234567,,,50013472,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,0900-1600,1234567,,,50013472,,, +7236.5,ETH,KUN,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,1.3.5..,-7236.5,,50022274,,, +7236.5,ETH,aa,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,.2.4.6.,-7236.5,,50022274,,, +7236.5,ETH,ar,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1500-1530,1.3.5.7,-7236.5,,50022274,,, +7236.5,ETH,ti,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1500-1530,.2.4.6.,-7236.5,,50022274,,, +7236.5,ETH,ti,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,......7,-7236.5,,50022274,,, +7236.5,ETH,ti,V.o.Peace and Democracy,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,0400-0500,1.3.5..,-7236.5,,50022275,,, +7236.5,ETH,ti,V.o.Peace and Democracy,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,1800-1830,1.3.5..,-7236.5,,50022275,,, +7236.5,ETH,ti,Voice of Eritrea,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,0400-0430,.2.4.6.,-7236.5,,50022276,,, +7236.5,ETH,ti,Voice of Eritrea,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,1800-1830,.2.4.6.,-7236.5,,50022276,,, +7240,D,BNT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,......7,,,50022667,,, +7240,D,BOR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0000-0015,12.....,,,50022667,,, +7240,D,CKM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0015-0030,12.....,,,50022667,,, +7240,D,GNG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,.23....,,,50022667,,, +7240,D,HO,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0015-0030,....5..,,,50022667,,, +7240,D,KRB,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2345-2400,....56.,,,50022667,,, +7240,D,LBO,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,....56.,,,50022667,,, +7240,D,LNG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,1......,,,50022667,,, +7240,D,MIS,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0000-0015,....567,,,50022667,,, +7240,D,SHP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,...4...,,,50022667,,, +7240,D,as,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0015-0030,.....67,,,50022667,,, +7240,D,kru,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0000-0015,..34...,,,50022667,,, +7240,D,my,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SEA,2345-2400,.234...,,,50022667,,, +7240,D,sat,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0015-0030,..34...,,,50022667,,, +7240,D,zh,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SEA,2345-2400,1.....1,,,50022667,,, +7240,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,0400-0500,1234567,,,50022668,,, +7240,ARS,fa,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,IRN,1500-1800,1234567,,,50023702,,, +7240,IND,hi,AIR West,,Mumbai=Bombay (MH),19.182778,72.807778,,50,90,6734,96,107,,0530-1035,1234567,,,40000763,,, +7240,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0000-0030,1234567,,,40000762,,, +7240,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1030-1100,1234567,,,40000762,,, +7240,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2230-2300,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0030-0300,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0900-1000,12.4567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1000-1030,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1100-1800,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2000-2230,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2300-2400,1234567,,,40000762,,, +7240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,40,16373,78,148,Oc,1500-1700,1234567,,,50016047,,, +7245,TUR,bg,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1200-1230,1234567,,,50022669,,, +7245,MTN,ar,R Mauritanie,,Nouakchott (nkc),18.139444,-15.999722,,100,,4254,216,80,,0620-1800,1234567,,,40000813,,, +7245,MTN,ar,R Mauritanie,,Nouakchott (nkc),18.139444,-15.999722,,100,,4254,216,80,,1815-0100,1234567,,,40000813,,, +7245,MTN,fr,R Mauritanie,,Nouakchott (nkc),18.139444,-15.999722,,100,,4254,216,80,,1800-1815,1234567,,,40000813,,, +7245,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NAf,2000-2100,1234567,,,50004652,,, +7245,TJK,ar,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1200-1300,1234567,,,34200003,,, +7245,TJK,en,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1300-1400,1234567,,,34200003,,, +7245,TJK,fa,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,0400-0600,1234567,,,34200003,,, +7245,TJK,fa,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,0600-0800,1234567,,,34200003,,, +7245,TJK,fa,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1600-1800,1234567,,,34200003,,, +7245,TJK,hi,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1100-1200,1234567,,,34200003,,, +7245,TJK,ru,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,0800-1000,1234567,,,34200003,,, +7245,TJK,tg,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,0200-0400,1234567,,,34200003,,, +7245,TJK,tg,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1400-1600,1234567,,,34200003,,, +7245,TJK,uz,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1000-1100,1234567,,,34200003,,, +7245,CHN,eo,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,Eu,1700-1800,1234567,,,50004653,,, +7245,CHN,ru,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,150,317,7712,60,112,EEu,1900-2000,1234567,,,50010227,,, +7245,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,1430-1500,1234567,,,40000812,,, +7245,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,0855-1430,1234567,,,40000812,,, +7245,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,1500-1605,1234567,,,40000812,,, +7245,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,2100-0100,1234567,,,40000812,,, +7250,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,4,1205,156,45,,0950-1030,......7,,,50004660,,, +7250,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,326,1205,156,45,,0645-0715,123456,,,50004660,,, +7250,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,4,1205,156,45,,0530-0600,123456,,,50004660,,, +7250,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,4,1205,156,45,Eu,0830-0915,......7,,,50004660,,, +7250,CVA,ro,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,4,1205,156,45,EEu,0710-0830,......7,,,50004660,,, +7250,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,330,1205,156,49,,0730-0830,......7,,,50004660,,, +7250,KWT,fa,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,,4236,111,72,ME,0800-1000,1234567,,,50016051,,, +7250,IRN,ps,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,0220-0320,1234567,,,50022671,,, +7250,CHN,es,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEu,2200-2400,1234567,,,50004659,,, +7250,CHN,hu,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,2130-2200,1234567,,,50004659,,, +7250,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SAs,0100-0200,1234567,,,50004659,,, +7250,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1200-1300,1234567,,,50022670,,, +7250,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,1615-1730,1234567,,,50016050,,, +7250,IND,ml,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,1730-1830,1234567,,,50016050,,, +7250,BGD,,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,Eu,1900-1915,1234567,,,36300005,,, +7250,BGD,ar,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,ME,1600-1630,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,0400-1230,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1300-1315,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1345-1400,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1430-1515,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1545-1600,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1630-1745,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1900-2000,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,Eu,1915-2000,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,ME,1630-1730,1234567,,,36300005,,, +7250,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1230-1300,1234567,,,36300005,,, +7250,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1745-1900,1234567,,,36300005,,, +7250,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,Eu,1745-1815,1234567,,,36300005,,, +7250,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,Eu,1815-1900,1234567,,,36300005,,, +7250,BGD,hi,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1515-1545,1234567,,,36300005,,, +7250,BGD,ne,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,SAs,1315-1345,1234567,,,36300005,,, +7250,BGD,ur,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1400-1430,1234567,,,36300005,,, +7250,IND,en,AIR North,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,,1135-1140,1234567,,,50011067,,, +7250,IND,hi,AIR North,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,,1130-1135,1234567,,,50011067,,, +7250,IND,ne,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,NPL,0700-0800,1234567,,,50016049,,, +7250,IND,ur,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,PAK,0830-1130,1234567,,,50016049,,, +7250,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50022672,,, +7255,BLR,de,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,1900-2040,1234567,,,50021662,,, +7255,BLR,en,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,2100-2300,1234567,,,50021662,,, +7255,BLR,es,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,2100-2120,......7,,,50021662,,, +7255,BLR,fr,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,2040-2100,1234567,,,50021662,,, +7255,BLR,pl,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,1805-1900,1234567,,,50021662,,, +7255,BLR,ru,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,2300-2400,1234567,,,50021662,,, +7255,KWT,bo,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0000-0100,1234567,,,50022677,,, +7255,KWT,bo,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1400-1500,1234567,,,50022677,,, +7255,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,1900-2000,1234567,,,50016053,,, +7255,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,2100-2200,1234567,,,50016053,,, +7255,NIG,fr,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,2000-2100,1234567,,,50016053,,, +7255,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,WAf,0730-0800,1234567,,,50016053,,, +7255,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,2200-2300,1234567,,,50016053,,, +7255,NIG,,Voice of Nigeria,,Abuja/Lugbe (fct),8.967333,7.363472,,100,,4798,179,85,,0000-2400,9999999,,,6200006,,, +7255,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1600-1800,1234567,,,50022674,,, +7255,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,95,7797,50,108,FE,1500-1600,1234567,,,50004667,,, +7255,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,,,40000707,,, +7255,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0200,1234567,,,40000707,,, +7255,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1600,1234567,,,40000707,,, +7255,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1700-1805,1234567,,,40000707,,, +7255,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2050-2230,1234567,,,40000707,,, +7255,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1600-1700,1234567,,,40000707,,, +7255,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,,,40000707,,, +7255,CHN,ru,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,150,317,7712,60,112,EEu,2000-2100,1234567,,,50010231,,, +7255,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023703,,, +7255,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023703,,, +7255,CHN,tr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1900-2000,1234567,,,50004668,,, +7255,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,EEu,1800-1900,1234567,,,50022673,,, +7255,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,FE,1300-1400,1234567,,,50022673,,, +7255,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,2055-0100,1234567,,,36201058,,, +7255,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,Sib,1000-1100,1234567,,,50022675,,, +7255,BOT,,R Botswana,,Sebele (se),-24.567778,25.957778,,50,330,8736,162,126,,0300-2200,1234567,,,40000814,,, +7260,IRN,az,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0320-0520,1234567,,,50022679,,, +7260,CHN,pt,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEu,2200-2300,1234567,,,50004679,,, +7260,CHN,si,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,173,5347,76,91,SAs,2330-0030,1234567,,,50004678,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0300-0800,1234567,,,40000724,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1100,1.3.567,,,40000724,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1100-1205,1234567,,,40000724,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1205-1800,1234567,,,40000724,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,2300-0300,1234567,,,40000724,,, +7260,MNG,mn,Mongoliin R 2,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,50,,6615,50,106,,0655-1500,1234567,,,40000816,,, +7260,MNG,mn,Mongoliin R 2,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,50,,6615,50,106,,2200-0500,1234567,,,40000816,,, +7260,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1100-1300,1234567,,,50022678,,, +7260,PHL,km,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,2200-2230,1234567,,,50022680,,, +7260,VUT,bi,R Vanuatu,,Port Vila/Enten Lagoon (SW) (sef),-17.756694,168.362028,,1,,15881,29,166,,1830-1230,1234567,9524,,40000815,,, +7265,D,en,European Music R,,Ghren (mev),53.535556,11.611111,,100,,384,64,41,Eu,0800-0900,9999999,,,50022681,,, +7265,E,ar,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,170,1547,213,47,WAf,1900-2100,12345..,,,50018114,,, +7265,E,ar,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,170,1547,213,47,WAf,2000-2200,.....67,,,50018114,,, +7265,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,170,1547,213,47,WAf,2200-2300,1234567,,,50018114,,, +7265,D,D,E,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0600-0900,..3..6.,,,50017141,, +7265,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0700-1600,9999999,,,50017141,,, +7265,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0800-0900,..3..6.,,,50017141,,, +7265,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1200-1400,..3..6.,,,50017141,,, +7265,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1300-1600,9999999,,,50017141,,, +7265,D,en,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0700-0800,..3..6.,,,50017141,,, +7265,D,en,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1200-1600,..3..6.,,,50017141,,, +7265,D,en,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1500-1600,..3..6.,,,50017141,,, +7265,D,es,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0600-0700,..3..6.,,,50017141,,, +7265,D,es,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1400-1500,..3..6.,,,50017141,,, +7265,CHN,eo,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,,1930-2030,1234567,,,50004689,,, +7265,CHN,bg,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEE,1830-1900,1234567,,,50004690,,, +7265,CHN,eo,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1930-2030,1234567,,,50004690,,, +7265,CHN,hi,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,SAs,1300-1400,1234567,,,50004690,,, +7265,CHN,it,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEu,2030-2130,1234567,,,50004690,,, +7265,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,EEu,1600-1800,1234567,,,50004690,,, +7265,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,1500-1600,1234567,,,50004689,,, +7265,CHN,si,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,CLN,1400-1500,1234567,,,50004689,,, +7265,CHN,en,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,1430-1500,1234567,,,36201059,,, +7265,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,1230-1430,1234567,,,36201059,,, +7265,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,1500-1605,1234567,,,36201059,,, +7267.1,PAK,,Azad Kashmir R,,Rawalpindi (pjb),33.610278,72.976667,,100,68,5581,84,93,,0900-1215,1234567,-7267.1,,40000818,,, +7270,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,0300-0400,1234567,,,40000820,,, +7270,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,1400-1500,1234567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,0400-0600,1234567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,0600-0950,1.34567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,0950-1400,1234567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,1500-1605,1234567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,2150-0300,1234567,,,40000820,,, +7270,IND,en,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,1000-1100,1234567,,,50016054,,, +7270,IND,hi,AIR FM Gold,,Chennai=Madras (TN),13.1375,80.125,,100,,7749,95,115,SAs,0130-0430,1234567,,,50011364,,, +7270,IND,si,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,0045-0115,1234567,,,50016054,,, +7270,IND,si,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,1300-1500,1234567,,,50016054,,, +7270,IND,ta,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,0000-0045,1234567,,,50016054,,, +7270,IND,ta,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,1115-1215,1234567,,,50016054,,, +7270,TWN,zh,Voice of China,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,1400-1500,1234567,,,50014076,,, +7270,TWN,zh,Voice of China,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2300-2400,1234567,,,50014076,,, +7270,TWN,zh,Voice of China,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,325,9375,56,125,,1400-1500,1234567,,,50017076,,, +7270,TWN,zh,Voice of China,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,325,9375,56,125,,2300-2400,1234567,,,50017076,,, +7270,MLA,,RTM Wai FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,0700-1000,1234567,,,40000821,,, +7270,MLA,,RTM Wai FM/Limbang FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,2200-0100,1234567,,,40000821,,, +7270,MLA,bd,RTM Wai FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,0100-0400,1234567,,,40000821,,, +7270,MLA,ib,RTM Limbang FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,1315-1400,1..4...,,,40000821,,, +7270,MLA,ib,RTM Wai FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,1000-1315,1234567,,,40000821,,, +7270,MLA,ib,RTM Wai FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,1315-1400,.23.567,,,40000821,,, +7270,MLA,ib,RTM Wai FM/Limbang FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,1400-1600,1234567,,,40000821,,, +7270,MLA,lm,RTM Limbang FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,0400-0700,1234567,,,40000821,,, +7275,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,50,1547,213,49,Eu,1700-2300,.....67,,,50009674,,, +7275,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,340,1955,168,50,,0355-0630,1234567,,,50016055,,, +7275,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,340,1955,168,50,Eu,0502-0602,1234567,,,50016055,,, +7275,NIG,en,FRCN Abuja,,Abuja/Gwagwalada (fct),8.929061,7.072856,,100,,4802,179,85,,0530-1200,1234567,,,6200003,,, +7275,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,WAf,1730-1830,1234567,,,50022682,,, +7275,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0330-0400,1234567,,,50022684,,, +7275,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0330-0430,.....67,,,50022684,,, +7275,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0400-0430,.....67,,,50022684,,, +7275,STP,ar,VoA Darfur,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0300-0330,1234567,,,50022683,,, +7275,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0600-0700,1234567,,,40000826,,, +7275,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0300-0600,1234567,,,40000826,,, +7275,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0700-0800,1234567,,,40000826,,, +7275,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0800-1100,1.34567,,,40000826,,, +7275,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1100-1200,1234567,,,40000826,,, +7275,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,1100-1805,1234567,,,40000825,,, +7275,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,2025-0030,1234567,,,40000825,,, +7275,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,305,8663,46,119,Eu,1800-1900,1234567,,,50004705,,, +7275,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,0800-0900,1234567,,,50004705,,, +7275,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,305,8663,46,119,Eu,1600-1800,1234567,,,50004705,,, +7275,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,0900-1100,1234567,,,50004705,,, +7275,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,1200-1300,1234567,,,50004705,,, +7275,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,275,8663,46,119,CHN,2200-2300,1234567,,,50004705,,, +7275,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,1300-1400,1234567,,,50004705,,, +7280,IND,hi,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,130,7430,77,114,,0530-0600,......7,,,40000830,,, +7280,IND,hi,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,130,7430,77,114,,0600-0930,1234567,,,40000830,,, +7280,IND,hi,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,130,7430,77,114,,0945-1130,1234567,,,40000830,,, +7280,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,1100-1300,1234567,,,50009676,,, +7280,VTN,VN,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1700-1800,1234567,,,50004713,,, +7280,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1600-1630,1234567,,,50004713,,, +7280,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1800-1830,1234567,,,50004713,,, +7280,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1900-1930,1234567,,,50004713,,, +7280,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2030-2100,1234567,,,50004713,,, +7280,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1830-1900,1234567,,,50004713,,, +7280,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1930-2000,1234567,,,50004713,,, +7280,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2100-2130,1234567,,,50004713,,, +7280,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1630-1700,1234567,,,50004713,,, +7280,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2000-2030,1234567,,,50004713,,, +7280,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,288,11578,41,128,,1430-1500,1234567,,,50020451,,, +7285,G,ar,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EAf,0400-0500,1234567,,,50022687,,, +7285,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,310,1609,135,51,WEu,2000-2200,1234567,,,50004714,,, +7285,ALB,ro,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,EEu,0900-1000,1234567,,,50004714,,, +7285,ARM,ur,BBC WS,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,SAs,0130-0200,1234567,,,50022686,,, +7285,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1720-2020,1234567,,,50022689,,, +7285,RUS,,Trans World R,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,AFG,1600-1630,1234567,,,50023704,,, +7285,UAE,ar,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0300-0400,1234567,,,50022688,,, +7285,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1600,1234567,,,50004716,,, +7285,CHN,mn,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,MNG,1300-1400,1234567,,,50004715,,, +7285,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEu,1800-1900,1234567,,,50022685,,, +7285,AFS,af,SABC R Sonder Grense,,Meyerton (SABC) (GT),-26.600933,28.140833,,100,275,9005,160,124,,0500-0800,1234567,,,40000735,,, +7285,VTN,VN,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,0000-0100,1234567,,,50004723,,, +7285,VTN,en,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1100-1130,1234567,,,50004723,,, +7285,VTN,en,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1500-1530,1234567,,,50004723,,, +7285,VTN,fr,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1200-1230,1234567,,,50004723,,, +7285,VTN,fr,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1300-1330,1234567,,,50004723,,, +7285,VTN,km,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1030-1100,1234567,,,50004723,,, +7285,VTN,km,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1230-1300,1234567,,,50004723,,, +7285,VTN,km,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,2230-2300,1234567,,,50004723,,, +7285,VTN,lo,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1330-1430,1234567,,,50004723,,, +7285,VTN,lo,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,2300-2400,1234567,,,50004723,,, +7285,VTN,th,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1130-1200,1234567,,,50004723,,, +7285,VTN,th,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1430-1500,1234567,,,50004723,,, +7285,VTN,th,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1530-1600,1234567,,,50004723,,, +7285,VTN,th,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,2200-2230,1234567,,,50004723,,, +7289.9,INS,id,RRI Pro-1,,Nabire (PA-nab),-3.366667,135.483333,,1,,12859,59,156,,0600-0820,1234567,-7289.9,,40000832,,, +7289.9,INS,id,RRI Pro-1,,Nabire (PA-nab),-3.366667,135.483333,,1,,12859,59,156,,2100-2400,1234567,-7289.9,,40000832,,, +7290,MDA,de,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,309,1731,99,47,,2115-2130,12345..,,,50018129,,, +7290,MDA,en,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,309,1731,99,47,,2100-2115,12345..,,,50018129,,, +7290,MDA,en,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,309,1731,99,47,,2145-2200,12345..,,,50018129,,, +7290,MDA,fr,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,309,1731,99,47,,2130-2145,12345..,,,50018129,,, +7290,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,1900-2000,....5..,,,50019911,,, +7290,ROU,en,Brother Stair,,Săftica (SW) (IF),44.637778,26.074403,,100,290,1666,112,54,,2000-2100,1234567,,,50019256,,, +7290,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,100,290,1666,112,54,,1900-2000,.....67,,,50019911,,, +7290,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,Eu,1900-2000,....567,,,50021920,,, +7290,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0200-0300,1234567,,,50022691,,, +7290,CHN,ko,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,2100-2200,1234567,,,50004726,,, +7290,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,FE,1000-1200,1234567,,,50022690,,, +7290,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,1100-1805,1234567,,,40000833,,, +7290,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,2025-0130,1234567,,,40000833,,, +7290,IND,hi,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,160,7942,100,119,,0230-0430,1234567,,,40000834,,, +7290,IND,hi,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,160,7942,100,119,,0430-1030,.....67,,,40000834,,, +7290,IND,hi,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,160,7942,100,119,,0630-1000,12345..,,,40000834,,, +7295,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,162,660,211,37,CAf,0505-0600,1234567,,,50016056,,, +7295,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,CAf,0500-0600,1234567,,,50016056,,, +7295,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,162,660,211,37,CAf,0500-0505,1234567,,,50016056,,, +7295,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,0600-0630,1234567,,,50022693,,, +7295,MLI,ha,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,,4565,202,83,WAf,0800-0900,1234567,,,50004732,,, +7295,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,,4565,202,83,WAf,2300-2400,1234567,,,50004732,,, +7295,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,,1900-2000,1234567,,,50016569,,, +7295,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NAf,1900-2100,1234567,,,50016569,,, +7295,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,,2000-2100,1234567,,,50021663,,, +7295,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,247,5761,65,98,,0330-0530,1234567,,,40000704,,, +7295,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,247,5761,65,98,,1030-1230,12.4.67,,,40000704,,, +7295,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,247,5761,65,98,,1100-1230,..3.5..,,,40000704,,, +7295,CHN,fa,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,IRN,1800-1900,1234567,,,50022692,,, +7295,IND,hi,AIR Northeast,,Aizawl (MZ),23.734167,92.705833,,10,36,7702,78,124,,0700-1000,1234567,,,40000837,,, +7295,MLA,en,RTM Traxx FM,,Kajang (slg),3.011111,101.784444,,100,,10109,84,127,,0000-2400,1234567,27,,40000838,,, +7300,G,ar,HCJB Global,,Woofferton (EN-SHP),52.313333,-2.722778,,250,170,622,276,39,NAf,2100-2145,1234567,,,50020457,,, +7300,D,be,Trans World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1500-1528,1......,,,50022698,,, +7300,D,ru,Trans World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1500-1528,0.234567,,,50022698,,, +7300,AUT,pl,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,Eu,0644-0659,12345..,,,50022697,,, +7300,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0250-0320,1234567,,,50022696,,, +7300,IRN,uz,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0220-0250,1234567,,,50022696,,, +7300,CHN,ar,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,ME,1600-1800,1234567,,,50022694,,, +7300,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1300-1400,1234567,,,50022694,,, +7300,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50022694,,, +7300,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,SAs,1400-1500,1234567,,,50022695,,, +7300,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,2300-2400,1234567,,,50022695,,, +7300,SWZ,yao,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,MOZ,1705-1735,1234567,,,50019621,,, +7305,F,cs,China R Int.,,Issoudun (36),46.947222,1.894444,,250,65,660,211,40,Eu,1930-2000,1234567,,,50004751,,, +7305,F,ro,China R Int.,,Issoudun (36),46.947222,1.894444,,250,85,660,211,40,EEu,1900-1930,1234567,,,50004751,,, +7305,G,fr,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,NAf,1800-1830,1234567,,,50022702,,, +7305,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WNA,0400-0500,1234567,,,50022704,,, +7305,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EEu,1750-1850,1234567,,,50022703,,, +7305,USA,es,R Vaticana,,Greenville (NC),35.466667,-77.199167,,250,184,6571,289,99,,0320-0400,1234567,,,50018143,,, +7305,USA,es,R Vaticana,,Greenville (NC),35.466667,-77.199167,,250,184,6571,289,99,Car,0200-0245,1234567,,,50018143,,, +7305,USA,es,R Vaticana,,Greenville (NC),35.466667,-77.199167,,250,184,6571,289,99,Car,1130-1200,1234567,,,50018143,,, +7305,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0600-0630,1234567,,,50009680,,, +7305,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,CAf,0430-0500,1234567,,,50009680,,, +7305,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,55,6960,203,103,WAf,0530-0600,1234567,,,50009680,,, +7305,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,0800-0900,1.34567,,,40000839,,, +7305,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,0900-1805,1234567,,,40000839,,, +7305,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,2025-2200,1234567,,,40000839,,, +7305,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SAf,2000-2100,1234567,,,50022700,,, +7305,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,FE,2200-2300,1234567,,,50022699,,, +7305,MDG,pt,Deutsche Welle,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,SAf,1930-2000,1234567,,,50022701,,, +7310,G,,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,300,180,622,276,39,,2130-2200,12345..,,,50020462,,, +7310,D,de,R 700,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,0600-1600,1234567,,,2000066,,, +7310,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ENA,2130-2200,1234567,,,50022709,,, +7310,IRN,tr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1550-1720,1234567,,,50022708,,, +7310,CHN,it,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,2030-2130,1234567,,,50022706,,, +7310,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1157-1800,1234567,,,40000841,,, +7310,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0305,1234567,,,40000841,,, +7310,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023705,,, +7310,CLN,ug,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,FE,1600-1700,1234567,,,50022710,,, +7310,TWN,zh,R France Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,2200-2300,1234567,,,50017844,,, +7310,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,1300-1400,1234567,,,50009682,,, +7310,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,2300-2400,1234567,,,50009682,,, +7315,D,az,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,Cau,1830-1900,1234567,,,50022716,,, +7315,F,ti,Adventist World R,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,0300-0330,1234567,,,50022715,,, +7315,ROU,es,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,135,1587,104,48,VEN,0000-0100,1234567,,,50018155,,, +7315,CVA,ar,R Dabanga,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0430-0430,1234567,,,50022713,,, +7315,CVA,ar,R Tamazuj,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0400-0430,1234567,,,50022714,,, +7315,CHN,eo,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SAm,2200-2300,1234567,,,50004767,,, +7315,CHN,sq,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SEE,1900-2000,1234567,,,50004767,,, +7315,UAE,ur,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0200-0230,1234567,,,50022712,,, +7315,CHN,sr,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,2000-2030,1234567,,,50022711,,, +7315,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,0300-0500,.....6.,,,50016060,,, +7315,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,0530-0800,.....6.,,,50016060,,, +7315,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,1000-1100,......7,,,50016060,,, +7315,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,152,0100-0200,0.234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,0800-0930,......7,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,25,2300-2400,12345..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,CAm,0900-1000,12345..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0100-0200,1.....1,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1100-1200,1234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,2300-2400,1234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0200-0300,1234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0300-0400,.2345..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0430-0500,....5..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0500-0530,.2345..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0530-0900,1234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,,2345-2400,......7,,,50016060,,, +7315,CHN,en,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,1430-1500,1234567,,,36201060,,, +7315,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0855-1430,1234567,,,36201060,,, +7315,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,1500-1605,1234567,,,36201060,,, +7315,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,2055-0100,1234567,,,36201060,,, +7315,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1730-1830,1234567,,,50004766,,, +7315,IND,hi,AIR Northeast,,Shillong/Mawjrong (ML),25.440389,91.807667,,50,76,7500,77,115,,0655-0930,1234567,,,40000711,,, +7315,SWZ,LO,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,5,9062,157,127,MOZ,1510-1555,1234567,,,50010826,,, +7315,SWZ,MKU,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,5,9062,157,127,MOZ,1455-1510,1234567,,,50010826,,, +7315,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,5,9062,157,127,MOZ,1425-1455,1234567,,,50010826,,, +7320,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0600-0900,9999999,,,6800009,,, +7320,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,1100-1600,9999999,,,6800009,,, +7320,IRN,bn,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,1420-1520,1234567,,,50022719,,, +7320,CHN,sw,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,EAf,1600-1700,1234567,,,50022718,,, +7320,CHN,bg,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,Eu,2030-2100,1234567,,,50022717,,, +7325,G,bm,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,WAf,2130-2200,12345..,,,50022729,,, +7325,G,fr,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,NAf,0600-0630,1234567,,,50022722,,, +7325,G,fr,R Taiwan Int.,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,Af,1900-2000,1234567,,,50023707,,, +7325,AUT,ar,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,0300-0315,1234567,,,50022725,,, +7325,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ENA,0100-0200,1234567,,,50022728,,, +7325,IRN,zh,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,FE,2320-0020,1234567,,,50022726,,, +7325,IRN,en,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1920-2020,1234567,,,50022727,,, +7325,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SAs,1600-1700,1234567,,,50004787,,, +7325,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SAs,1700-1800,1234567,,,50004787,,, +7325,UAE,hi,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0100-0130,1234567,,,50022723,,, +7325,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,0300-0500,1234567,,,50022720,,, +7325,IND,hi,AIR North,,Jaipur (RJ),26.91,75.748611,,50,90,6294,88,103,,0630-0930,1234567,,,40000705,,, +7325,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,SAf,0500-0600,1234567,,,50022721,,, +7325,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,0630-0700,1234567,,,50022721,,, +7325,CHN,cs,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,WEu,1900-1930,1234567,,,50004784,,, +7325,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,1500-1600,1234567,,,50004784,,, +7325,CHN,fa,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,IRN,1800-1900,1234567,,,50004784,,, +7325,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,73,7808,59,108,FE,1300-1400,1234567,,,50004788,,, +7325,CHN,sr,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,317,7808,59,108,Eu,2100-2130,1234567,,,50004788,,, +7325,CHN,tl,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,PHL,1430-1500,1234567,,,50004788,,, +7325,CHN,tr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1600-1700,1234567,,,50004786,,, +7325,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,,1000-1400,1234567,,,50004785,,, +7325,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,1000-1300,1234567,,,50004785,,, +7325,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,2200-2300,1234567,,,50004786,,, +7325,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,2300-2400,1234567,,,50004786,,, +7325,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,0030-0100,1234567,,,50022724,,, +7325,TWN,zh,R France Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,FE,0930-1030,1234567,,,50023706,,, +7330,F,de,R Joystick,,Issoudun (36),46.947222,1.894444,,100,60,660,211,44,Eu,1100-1200,......7,,,50021921,,, +7330,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAm,0200-0300,1234567,,,50022730,,, +7330,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,1400-1500,1234567,,,50004799,,, +7330,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50022731,,, +7330,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50022731,,, +7335,G,Tac,HCJB Global,,Woofferton (EN-SHP),52.313333,-2.722778,,250,170,622,276,39,,2100-2115,1234567,,,50020260,,, +7335,G,ar,HCJB Global,,Woofferton (EN-SHP),52.313333,-2.722778,,250,170,622,276,39,,2115-2145,1234567,,,50020260,,, +7335,CVA,hy,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,86,1205,156,45,Cau,0310-0330,1234567,,,50004806,,, +7335,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,265,1955,168,50,,0600-0810,1234567,,,50016062,,, +7335,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,265,1955,168,50,NAf,0702-0802,1234567,,,50016062,,, +7335,ROU,de,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,Eu,1300-1400,1234567,,,50022734,,, +7335,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,0000-0030,.....67,,,50018171,,, +7335,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0000-0030,.23456.,,,50018171,,, +7335,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0000-0030,1.....1,,,50018171,,, +7335,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0030-0100,1234567,,,50018171,,, +7335,CHN,zh,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,Eu,2000-2100,1234567,,,50009395,,, +7335,CHN,en,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1430-1500,1234567,,,40000843,,, +7335,CHN,hr,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,Eu,1700-1800,1234567,,,50022732,,, +7335,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1000-1430,1234567,,,40000843,,, +7335,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1500-1605,1234567,,,40000843,,, +7335,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2100-0030,1234567,,,40000843,,, +7335,IND,hi,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,160,7707,76,117,,0225-0400,1234567,,,40000722,,, +7335,IND,hi,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,160,7707,76,117,,0400-0430,......7,,,40000722,,, +7335,IND,hi,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,160,7707,76,117,,0600-0630,......7,,,40000722,,, +7335,CHN,pt,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,SEu,1900-2000,1234567,,,50022733,,, +7340,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2100-2300,1234567,,,50022735,,, +7340,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ENA,0100-0300,1234567,,,50022737,,, +7340,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1420-1520,1234567,,,50022736,,, +7340,CHN,it,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SEu,1800-1900,1234567,,,50004811,,, +7340,CHN,kk,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0500-0600,1234567,,,40000844,,, +7340,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0300-0500,1234567,,,40000844,,, +7340,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0600-0800,1234567,,,40000844,,, +7340,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1100,1.3.567,,,40000844,,, +7340,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1100-1200,1234567,,,40000844,,, +7340,IND,,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,,1130-1140,1234567,,,50016063,,, +7340,IND,bal,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,PAK,1500-1600,1234567,,,50016063,,, +7340,IND,sd,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,PAK,1230-1500,1234567,,,50016063,,, +7340,IND,ur,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,PAK,0015-0430,1234567,,,50016063,,, +7340,IND,ur,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,PAK,0830-1130,1234567,,,50016063,,, +7345,ALB,sr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,Eu,1200-1300,1234567,,,50004818,,, +7345,ROU,es,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,CAm,0300-0400,1234567,,,50022739,,, +7345,ROU,de,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,0700-0730,1234567,,,50022740,,, +7345,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,0630-0700,1234567,,,50022740,,, +7345,IRN,ps,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,SAs,1620-1720,1234567,,,50022738,,, +7345,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0800-0900,1.34567,,,40000846,,, +7345,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0900-1805,1234567,,,40000846,,, +7345,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,2025-2400,1234567,,,40000846,,, +7345,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,1230-1330,1234567,,,22100048,,, +7345,MYA,gk,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,1130-1230,1234567,,,22100048,,, +7345,MYA,kh,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,1030-1130,1234567,,,22100048,,, +7350,D,ha,Hamada R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,WAf,0530-0600,1234567,,,50023708,,, +7350,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,285,1587,104,48,SEu,1800-1900,1234567,,,50012240,,, +7350,IRN,ku,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0420-0520,1234567,,,50019629,,, +7350,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,0000-0200,1234567,,,50004826,,, +7350,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,2300-2400,1234567,,,50004826,,, +7350,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SEu,1600-1800,1234567,,,50004826,,, +7350,CHN,ps,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,AFG,0200-0230,1234567,,,50004826,,, +7350,IRN,uz,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,1450-1550,1234567,,,50022742,,, +7350,CHN,fr,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,SEu,2030-2230,1234567,,,50016575,,, +7350,CHN,fr,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,WAf,1830-2030,1234567,,,50016575,,, +7350,UAE,hi,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0230-0300,1234567,,,50022741,,, +7350,CHN,fr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,,1830-2030,1234567,,,50021665,,, +7350,CHN,bo,CNR 11,,Baoji (SA),34.65,106.966667,,100,255,7688,60,114,,0900-1400,1234567,,,40000848,,, +7350,CHN,bo,CNR 11,,Baoji (SA),34.65,106.966667,,100,255,7688,60,114,,1430-1605,1234567,,,40000848,,, +7350,CHN,en,CNR 11,,Baoji (SA),34.65,106.966667,,100,255,7688,60,114,,1400-1430,1234567,,,40000848,,, +7355,AUT,en,BBC WS,D,Moosbrunn (nie),48.006667,16.461944,,1,,849,119,65,SEu,0700-0900,1234567,,,50022743,,, +7355,TWN,zh,R Free Asia,,Tainan/Annan (TNS),23.044167,120.168611,,100,335,9489,58,125,,1800-2200,1234567,,,40001200,,, +7360,D,fa,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,104,316,151,40,,0130-0230,1234567,,,50021666,,, +7360,CVA,am,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0400-0415,1234567,,,50022746,,, +7360,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,CAf,0500-0530,1234567,,,50022746,,, +7360,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,CAf,0430-0500,1234567,,,50022746,,, +7360,CVA,hy,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Cau,1650-1710,1234567,,,50022746,,, +7360,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,WAf,0530-0600,1234567,,,50022746,,, +7360,CVA,ru,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EEu,1710-1740,1234567,,,50022746,,, +7360,CVA,so,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0345-0400,......7,,,50022746,,, +7360,CVA,ti,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0415-0430,1234567,,,50022746,,, +7360,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,UKR,1740-1800,1234567,,,50022746,,, +7360,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,SEu,1800-2000,1234567,,,50022744,,, +7360,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,0600-0630,1234567,,,50022748,,, +7360,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0600-1600,9999999,,,6800010,,, +7360,IRN,az,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,Cau,1420-1650,1234567,,,50022747,,, +7360,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50022745,,, +7360,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2155-2400,1234567,,,40000849,,, +7360,CHN,VN,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,1600-1700,1234567,,,50004842,,, +7360,CHN,lo,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,1230-1330,1234567,,,50004842,,, +7360,CHN,lo,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,1430-1530,1234567,,,50004842,,, +7360,CHN,th,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,1130-1230,1234567,,,50004842,,, +7360,CHN,th,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,1330-1430,1234567,,,50004842,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,0430-1700,1234567,,,50022284,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,1730-2000,1234567,,,50022284,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2030-2100,1234567,,,50022284,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2100-2200,.....67,,,50022284,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2200-2330,1234567,,,50022284,,, +7365,D,de,R ZP30,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2100-2200,12345..,,,50022286,,, +7365,D,en,Life FM Cork,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2330-0400,1234567,,,50022285,,, +7365,D,nds,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,1700-1730,1234567,,,50022284,,, +7365,D,nds,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2000-2030,1234567,,,50022284,,, +7365,D,ru,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,0400-0430,123.567,,,50022284,,, +7365,D,uk,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,0400-0430,...4...,,,50022284,,, +7365,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1815-1830,......7,,,50022750,,, +7365,D,fa,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1800-1830,....5..,,,50022750,,, +7365,D,fa,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1800-1900,...4...,,,50022750,,, +7365,D,fa,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1830-1900,.2....7,,,50022750,,, +7365,D,,HCJB Global,,Weenermoor (nds),53.2,7.325,,0.01,,136,27,73,,,,,,2000067,,, +7365,IRN,ja,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,J,2050-2150,1234567,,,50022751,,, +7365,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,0300-0400,1234567,,,50004856,,, +7365,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,183,6571,289,99,CUB,0000-0300,1234567,,,50004856,,, +7365,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1700,1234567,,,50023709,,, +7365,CHN,pt,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SAf,1900-2000,1234567,,,50022749,,, +7365,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,1000-1805,1234567,,,40000699,,, +7365,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,,9375,56,120,FE,1500-1700,1234567,,,50004855,,, +7365,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,325,9375,56,120,,1500-1700,....56.,,,50004855,,, +7365,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,325,9375,56,120,,1500-1705,1234..7,,,50004855,,, +7365,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,FE,2200-2300,1234..7,,,50007768,,, +7365,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,FE,2300-2400,1234567,,,50007768,,, +7370,ROU,fr,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,2100-2130,1234567,,,50022753,,, +7370,ROU,ro,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ME,1700-1800,1234567,,,50022753,,, +7370,IRN,tg,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0050-0220,1234567,,,50022752,,, +7370,IND,sd,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,282,6248,85,100,PAK,0100-0200,1234567,,,50016070,,, +7370,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1430-1500,1234567,,,36201061,,, +7370,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1100-1430,1234567,,,36201061,,, +7370,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1500-1605,1234567,,,36201061,,, +7370,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,,1100-1200,1234567,,,50021667,,, +7375,D,en,KBC R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAm,0000-0200,......7,,,50022287,,, +7375,D,en,KBC R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAm,0000-0200,1234567,,,50022287,,, +7375,IRN,bn,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1620-1650,1234567,,,50022754,,, +7375,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,1030-1605,1234567,,,36201062,,, +7375,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,2100-2400,1234567,,,36201062,,, +7380,ALB,de,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,330,1609,135,51,WEu,1600-1800,1234567,,,50004868,,, +7380,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,2130-2200,1234567,,,50022757,,, +7380,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0220-0520,1234567,,,50022755,,, +7380,IRN,kk,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1520-1620,1234567,,,50022755,,, +7380,IRN,fr,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1820-1920,1234567,,,50022756,,, +7380,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023710,,, +7380,IND,hi,AIR South,,Chennai=Madras (TN),13.135556,80.125278,,50,,7749,95,118,,0300-0930,1234567,,,40000725,,, +7380,IND,hi,AIR South,,Chennai=Madras (TN),13.135556,80.125278,,50,,7749,95,118,,0930-1030,......7,,,40000725,,, +7380,TWN,vi,R France Int.,,Tainan/Annan (TNS),23.044167,120.168611,,100,250,9489,58,125,SEA,1400-1500,1234567,,,50015835,,, +7380,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,FE,1500-1600,.....67,,,50013315,,, +7380,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,FE,1500-1600,12345..,,,50013315,,, +7385,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,WAf,1800-2000,1234567,,,50022758,,, +7385,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,WNA,2300-1400,1234567,,,50016071,,, +7385,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2300-2400,1234567,,,40000856,,, +7385,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0000-0200,1234567,,,40000856,,, +7385,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0950-1600,1234567,,,40000856,,, +7385,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1700-1805,1234567,,,40000856,,, +7385,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2050-2230,1234567,,,40000856,,, +7385,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1600-1700,1234567,,,40000856,,, +7385,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2230-2300,1234567,,,40000856,,, +7385,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1700,1234567,,,50023711,,, +7385,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,352,9444,57,125,,1000-1700,....56.,,,50001148,,, +7385,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,352,9444,57,125,,1000-1705,1234..7,,,50001148,,, +7385,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,352,9444,57,125,FE,1000-1700,1234567,,,50001148,,, +7390,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,0500-0600,1234567,,,50022760,,, +7390,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,0400-0500,1234567,,,50022760,,, +7390,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0600-0700,1234567,,,50022760,,, +7390,ALB,sq,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,0730-1000,1234567,,,50004885,,, +7390,CHN,sr,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,317,7808,59,108,Eu,2000-2030,1234567,,,50004888,,, +7390,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1500,1234567,,,50023712,,, +7390,CHN,hu,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,314,8886,55,116,Eu,2030-2100,1234567,,,50004887,,, +7390,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1300-1500,1234567,,,50022761,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0315-0400,1234567,,,40000701,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0400-0415,.....6.,,,40000701,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0400-0500,......7,,,40000701,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0700-0930,1234567,,,40000701,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0930-1000,......7,,,40000701,,, +7395,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ENA,0200-0300,1234567,,,50022764,,, +7395,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,J,2300-2400,1234567,,,50022765,,, +7395,CHN,de,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,WEu,1800-2000,1234567,,,50004894,,, +7395,CHN,hi,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,SAs,1600-1700,1234567,,,50016580,,, +7395,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,,2100-2400,1234567,,,36201063,,, +7395,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,1200-1300,1234567,,,50022762,,, +7395,MDG,sw,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,250,320,8830,141,119,EAf,0315-0400,1234567,,,50004899,,, +7395,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,2200-2230,1234567,,,50022763,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0000-0005,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0020-0025,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0050-0605,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0620-0625,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0700-0755,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0800-0805,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0820-0825,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0840-0845,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0900-0905,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1000-1005,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1020-1025,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1040-1045,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1100-1105,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1120-1125,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1200-1205,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1220-1225,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1240-1245,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1300-1320,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1400-1405,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1420-1425,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1440-1445,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1500-1505,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1520-1525,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1700-1705,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1720-1740,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,2000-2005,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,2300-2340,1234567,-7396.8,,32900026,,, +7400,AUT,en,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,300,849,119,46,Eu,0800-0820,1234567,,,50014664,,, +7400,AUT,en,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,300,849,119,46,Eu,0820-0850,12345..,,,50014664,,, +7400,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SEu,1700-1800,1234567,,,50022769,,, +7400,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,50,306,1624,123,56,,2000-2300,1234567,,,50021668,,, +7400,IRN,tr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0420-0550,1234567,,,50022768,,, +7400,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,FE,1400-1500,1234567,,,50004906,,, +7400,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,1100-1200,1234567,,,50022766,,, +7400,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,1000-1100,1234567,,,50022766,,, +7400,CHN,sw,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,EAf,1700-1800,1234567,,,50022767,,, +7400,RUS,hi,Voice of Russia,D,Irkutsk/Angarsk (IR),52.425833,103.669167,,1,,6080,48,118,SAs,1300-1400,1234567,,,50022770,,, +7400,RUS,ur,Voice of Russia,D,Irkutsk/Angarsk (IR),52.425833,103.669167,,1,,6080,48,118,SAs,1400-1500,1234567,,,50022770,,, +7405,ROU,de,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,WEu,1900-2000,1234567,,,50022773,,, +7405,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,SAs,1500-1600,1234567,,,50022772,,, +7405,CHN,pl,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,2000-2100,1234567,,,50022772,,, +7405,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,NAf,2200-2300,1234567,,,50022772,,, +7405,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,2200-2400,1234567,,,50004917,,, +7405,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,183,6571,289,99,CUB,0400-0700,0.234567,,,50004917,,, +7405,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,CUB,1200-1400,1234567,,,50004917,,, +7405,CHN,pt,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,252,7808,59,108,SAf,1900-2000,1234567,,,50004913,,, +7405,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,0000-0100,1234567,,,50004910,,, +7405,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,2300-2400,1234567,,,50004910,,, +7405,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,Eu,1800-1900,1234567,,,50022771,,, +7405,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SAf,2100-2200,1234567,,,50022771,,, +7405,THA,bn,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SAs,1600-1700,1234567,,,50022774,,, +7405.5,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.1,,16726,74,179,,????-????,1234567,-7405.5,,37700145,,, +7410,MDA,fa,BBC WS,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,0230-0330,1234567,,,50022780,,, +7410,UZB,en,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0140-0200,1234567,,,50022779,,, +7410,UZB,hi,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0040-0100,1234567,,,50022779,,, +7410,UZB,ml,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0120-0140,1234567,,,50022779,,, +7410,UZB,ta,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0100-0120,1234567,,,50022779,,, +7410,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,1700-1800,1234567,,,50004923,,, +7410,CHN,ru,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,100,,7712,60,114,EEu,1700-1800,1234567,,,50022776,,, +7410,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,FE,1200-1300,1234567,,,50022775,,, +7410,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0900-1705,1234567,,,36201073,,, +7410,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SEA,1400-1500,1234567,,,50022777,,, +7410,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,FE,1400-1500,1234567,,,50022778,,, +7410,CHN,tl,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,PHL,1130-1200,1234567,,,50022778,,, +7410,PHL,km,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,SEA,1200-1300,1234567,,,50019939,,, +7410,PHL,km,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,,1200-1300,1234567,,,50004932,,, +7410,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0700-0900,1234567,,,50017060,,, +7415,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAs,2300-2400,1234567,,,50004933,,, +7415,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,2000-2200,1234567,,,50004933,,, +7415,CHN,cs,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1900-2000,1234567,,,50004934,,, +7415,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,,0000-0200,1234567,,,50004933,,, +7415,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1900,1234567,,,50023713,,, +7415,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2055-2400,1234567,,,40000881,,, +7415,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1600-1900,1234567,,,50022782,,, +7420,IRN,es,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAm,0020-0220,1234567,,,50022784,,, +7420,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,WAf,1600-1700,1234567,,,50022783,,, +7420,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1215-1330,1234567,,,50023714,,, +7420,IND,hi,AIR South,,Hyderabad (AP),17.3375,78.561389,,50,125,7282,93,113,,0225-0930,1234567,,,40000718,,, +7420,IND,hi,AIR South,,Hyderabad (AP),17.3375,78.561389,,50,125,7282,93,113,,0930-1030,......7,,,40000718,,, +7420,CHN,zh,CNR 1,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,2230-2300,1234567,,,40000728,,, +7420,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,0600-0950,1.34567,,,40000728,,, +7420,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,0950-1605,1234567,,,40000728,,, +7420,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,2150-2230,1234567,,,40000728,,, +7420,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,2300-0600,1234567,,,40000728,,, +7420,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1700-1800,1234567,,,50004943,,, +7425,ALB,en,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,NAm,0230-0300,0.234567,,,50022785,,, +7425,IRN,ha,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,WAf,1820-1920,1234567,,,50022789,,, +7425,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,CAs,2200-2300,1234..7,,,50022791,,, +7425,IRN,de,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1720-1820,1234567,,,50022790,,, +7425,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EEu,1920-2020,1234567,,,50022790,,, +7425,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0000-0100,1234567,,,50022788,,, +7425,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1700-1800,1234567,,,50022788,,, +7425,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,Af,0400-0500,1234567,,,50020502,,, +7425,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,SAf,0500-0530,1234567,,,50020502,,, +7425,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,SAf,0530-0600,1234567,,,50020502,,, +7425,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,0,1500-1600,1234567,,,50020502,,, +7425,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,EAf,0300-0400,1234567,,,50020502,,, +7425,CHN,en,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,1430-1500,1234567,,,36201064,,, +7425,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,1100-1430,1234567,,,36201064,,, +7425,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,1500-1605,1234567,,,36201064,,, +7425,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,INS,2300-2400,1234567,,,50022787,,, +7425,CHN,sr,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,Eu,2100-2130,1234567,,,50022786,,, +7430,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,300,1587,104,48,SEu,2000-2100,1234567,,,50018228,,, +7430,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,300,1587,104,48,SEu,1900-2000,1234567,,,50018228,,, +7430,IRN,kk,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0120-0220,1234567,,,50022792,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0225-0447,1234567,,,40000733,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0447-0530,......7,,,40000733,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0630-0700,123456,,,40000733,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0700-0930,1234567,,,40000733,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0930-1030,......7,,,40000733,,, +7430,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,255,8886,55,116,SAf,2200-2300,1234567,,,50004961,,, +7430,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0900-1000,1234567,,,50004961,,, +7433.5,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,0000-2400,1234567,-7433.5,,34600012,,, +7435,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,55,316,151,40,EEu,0300-0700,1234567,,,50020510,,, +7435,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,0030-0100,1234567,,,50022796,,, +7435,IRN,tg,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1550-1720,1234567,,,50019641,,, +7435,TJK,zh,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,95,4943,82,83,,2000-2200,1234567,,,50021669,,, +7435,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1220-1320,1234567,,,50022797,,, +7435,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,59,7797,50,108,FE,1100-1200,1234567,,,50004968,,, +7435,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,1400-1500,1234567,,,50018230,,, +7435,CHN,ps,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,IRN,1500-1600,1234567,,,50018230,,, +7435,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,FE,1400-1500,1234567,,,50022794,,, +7435,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,,8886,55,116,SAf,1600-1800,1234567,,,50004969,,, +7435,CHN,it,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,314,8886,55,116,SEu,1800-1900,1234567,,,50004969,,, +7435,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1200-1400,1234567,,,50022795,,, +7435,VTN,vi,VOV1,,Sơn Ty (hno),21.2,105.366667,,100,97,8749,70,123,Oc,2145-1700,1234567,5,,50016080,,, +7435,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,304,11578,41,128,,1900-2000,1234567,,,50020509,,, +7440,IND,hi,AIR North,,Lucknow (UP),26.881667,81.043333,,50,72,6657,84,107,,0430-0700,......7,,,40000694,,, +7440,IND,hi,AIR North,,Lucknow (UP),26.881667,81.043333,,50,72,6657,84,107,,0700-1000,1234567,,,40000694,,, +7440,CHN,hu,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,317,7808,59,108,Eu,1900-1930,1234567,,,50010275,,, +7440,CHN,ja,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,FE,2200-2300,1234567,,,50004979,,, +7440,CHN,ro,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,317,7808,59,108,EEu,1930-2000,1234567,,,50010275,,, +7440,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,Eu,2000-2100,1234567,,,50004979,,, +7440,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023715,,, +7440,CHN,hu,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,314,8886,55,116,,1900-1930,1234567,,,50021670,,, +7440,CHN,sr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,Eu,2100-2130,1234567,,,50022798,,, +7440,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,,1200-1300,1234567,,,50014680,,, +7440,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1100-1200,1234567,,,50014680,,, +7440,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2200-2300,1234567,,,50022800,,, +7445,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,0130-0200,1234567,,,50022802,,, +7445,G,ps,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,0100-0130,1234567,,,50022802,,, +7445,MDA,fa,BBC WS,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,0330-0430,1234567,,,50022803,,, +7445,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,78,4199,110,75,,0000-0030,1234567,,,50020515,,, +7445,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1730-1830,1234567,,,50004988,,, +7445,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0230-0300,1234567,,,50020514,,, +7445,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0200-0230,1234567,,,50020514,,, +7445,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0300-0330,1234567,,,50020514,,, +7445,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1500,1234567,,,50022801,,, +7445,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1500,1234567,,,50023716,,, +7445,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1400-1700,1234567,,,36201074,,, +7445,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1300-1400,1234567,,,36201074,,, +7445,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,2300-2400,1234567,,,36201074,,, +7445,TWN,en,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,1100-1200,1234567,,,50011336,,, +7445,TWN,en,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,SEA,1100-1200,1234567,,,50019453,,, +7445,TWN,th,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,1500-1600,1234567,,,50011336,,, +7445,TWN,th,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,2200-2400,1234567,,,50011336,,, +7445,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,1200-1500,1234567,,,50011336,,, +7445,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,1300-1500,1234567,,,50011336,,, +7450,GRC,,ERA Makedonias 102 FM,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,323,2024,132,57,,1700-2250,1234567,,,40000860,,, +7450,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1700-0300,1234567,,,50022804,,, +7450,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1700-2358,1234567,,,50022804,,, +7450,IRN,es,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SEu,2020-2120,1234567,,,50022805,,, +7450,IRN,it,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1920-1950,1234567,,,50022805,,, +7450,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0030,1234567,,,40000730,,, +7450,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1030-1100,1234567,,,40000730,,, +7450,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0030-0300,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0900-1000,12.4567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1030,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1100-1800,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2000-2230,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,,,40000730,,, +7455,THA,ps,VoA Deewa R,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,1300-1900,1234567,,,50023717,,, +7460,MDA,fa,R Payam e-Doost,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,0230-0315,1234567,,,50014078,,, +7460,MNG,ko,R Free Asia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,100,128,6615,50,103,FE,2100-2200,1234567,,,50007771,,, +7460,CLN,ur,Voice of America,,Iranawila (put),7.507211,79.805381,,250,340,8219,99,115,,0100-0200,1234567,,,50014686,,, +7460,CLN,ru,R Liberty,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,CAs,1900-2000,1234567,,,50023718,,, +7460,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2230-2300,1234567,,,50022807,,, +7460,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,2300-2400,1234567,,,50005001,,, +7465,F,ru,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1700-1800,1234567,,,50023719,,, +7465,ALB,de,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,2031-2100,123456,,,50005002,,, +7465,ALB,en,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,2100-2130,123456,,,50005002,,, +7465,ALB,fr,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,1830-1900,123456,,,50005002,,, +7465,ALB,sq,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,NAm,0000-0100,1234567,,,50005002,,, +7465,PAK,,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,ND,5607,84,93,,0530-0615,1234567,,,50020276,,, +7465,PAK,Bal,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,ND,5607,84,93,,0445-0530,1234567,,,50020276,,, +7465,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,183,6571,289,99,Car,0130-0200,.23456.,,,50005006,,, +7465,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0500-0700,12345..,,,50018248,,, +7465,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0700-1000,1234567,,,50018248,,, +7465,AFS,fr,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,MDG,1800-1830,1234567,,,50022809,,, +7465,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,,1500-1600,1234567,,,50021672,,, +7465,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,250,340,10381,83,124,SAs,1400-1700,1234567,,,50014687,,, +7465,MRA,ko,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,250,329,11578,41,128,,1800-1900,1234567,,,50021671,,, +7465,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,,1345-1500,1234567,,,50014687,,, +7470,TJK,ko,Open R North Korea,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,KRE,2000-2100,1234567,,,50023721,,, +7470,MNG,bo,R Free Asia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,100,230,6615,50,103,FE,1100-1400,1234567,,,50001289,,, +7470,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1400,1234567,,,50023720,,, +7470,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2400,1234567,,,50023720,,, +7470,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,ME,1900-2000,1234567,,,50022810,,, +7475,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,NAm,0000-0800,1234567,,,50022811,,, +7475,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,NAm,2300-0800,1234567,,,50022811,,, +7475,CLN,tg,R Liberty,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,CAs,1600-1700,1234567,,,50022813,,, +7475,THA,tg,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,CAs,1400-1600,1234567,,,50021924,,, +7475,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50022812,,, +7480,MDA,fa,R Payam e-Doost,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,1800-1845,1234567,,,50014079,,, +7480,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023722,,, +7480,CLN,ku,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,ME,1700-1800,1234567,,,50022815,,, +7480,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,2200-2300,1234..7,,,50022816,,, +7480,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,2300-2400,1234567,,,50022816,,, +7485,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0400-2000,9999999,,,6800011,,, +7485,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,1600-1630,1234567,,,50022817,,, +7485,THA,my,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SEA,1430-1515,12345..,,,50022817,,, +7485,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SAs,1630-1700,1234567,,,50021925,,, +7485,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SEA,1345-1430,1234567,,,50021925,,, +7490,ALB,it,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,1800-1830,123456,,,50022818,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,0100-0400,1234...,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,0200-0300,....5..,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,1900-0400,1234567,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0000-0200,1234567,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0200-0500,123456,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0500-1100,1234567,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1900-0500,1234567,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,2000-2100,.2.....,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,2100-2200,12345..,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,2200-2400,12345.7,,,50016587,,, +7490,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,85,7122,296,108,NAm,1300-1600,1234567,,,50009712,,, +7495,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,,2100-2200,1234567,,,50017776,,, +7495,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,,2200-2300,1234567,,,50017776,,, +7495,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,WAf,2100-2300,1234567,,,50017776,,, +7495,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,,2300-2300,1234567,,,50017776,,, +7495,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1300-1400,1234567,,,50023724,,, +7495,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023723,,, +7495,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2000-2200,1234567,,,50023723,,, +7495,THA,ps,VoA Deewa R,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,1400-1900,1234567,,,50023725,,, +7495,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0000-0100,1234567,,,50022823,,, +7495,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2000-2200,1234567,,,50022820,,, +7505,ARM,en,BBC WS,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,SAs,0200-0300,1234567,,,50023726,,, +7505,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,2300-2400,1234567,,,50021673,,, +7505,TJK,bo,R Free Asia,,Orzu (SW) (ktl),37.520833,68.8,,250,110,5010,83,83,,2200-2300,1234567,,,50021674,,, +7505,UZB,,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1315-1615,1234567,,,50022825,,, +7505,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1430-1445,1234567,,,50022825,,, +7505,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1445-1515,123456,,,50022825,,, +7505,UZB,pa,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1445-1515,......7,,,50022825,,, +7505,UZB,pa,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1515-1545,1234567,,,50022825,,, +7505,UZB,pa,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1545-1615,12345..,,,50022825,,, +7505,UZB,ps,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,AFG,1545-1615,.....6.,,,50022825,,, +7505,USA,en,WRNO,,New Orleans (WRNO) (LA),29.836806,-90.115994,,50,20,7851,294,119,,2200-1600,1234567,,,50020278,,, +7505,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,AFG,1800-1900,1234567,,,50022824,,, +7506,USA,en,WRNO,,New Orleans (WRNO) (LA),29.836806,-90.115994,,100,,7851,294,116,NAm,0100-0400,1234567,,,50022826,,, +7508,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0430-0830,1234567,,,20300028,,, +7508,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0915-1130,1234567,,,20300028,,, +7508,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,1530-1730,1234567,,,20300028,,, +7508,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,2230-2300,1234567,,,20300028,,, +7510,ARM,SLT,FEBA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1730-1800,1234567,,,50023728,,, +7510,ARM,my,Dem.Voice of Burma,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,SEA,2330-0030,1234567,,,50023727,,, +7510,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50022829,,, +7515,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,58,4199,110,75,,2200-2300,1234..7,,,50021675,,, +7515,UZB,ko,Voice of Martyrs,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,KRE,1600-1730,1234567,,,50023729,,, +7520,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0300-0400,1234567,,,50018268,,, +7520,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0400-0500,12345.7,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0445-0500,......7,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,1000-1200,1234567,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0300-0330,.....6.,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,1000-1100,123456,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,1100-1200,1234567,,,50018268,,, +7520,USA,ru,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0330-0400,.....6.,,,50018268,,, +7520,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,,0000-0200,1234567,,,50020279,,, +7520,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,NAm,0000-0300,1234567,,,50020279,,, +7520,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,FE,1200-1300,1234567,,,50022831,,, +7520,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SAs,1400-1500,12345..,,,50022831,,, +7520,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SAs,1500-1600,1234567,,,50022831,,, +7520,THA,fa,R Farda,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,IRN,1730-2230,1234567,,,50022830,,, +7520,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1300-1400,.....67,,,50022832,,, +7525,CLN,my,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,0000-0030,1234567,,,50023730,,, +7525,CLN,my,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,2330-2400,1234567,,,50023730,,, +7530,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023731,,, +7530,TWN,Hmo,Suab Xaa Moo Zoo (Voice of Hope),,Taipei TAI (Pali) (TP),25.083333,121.45,,100,250,9375,56,125,,2230-2300,1234567,,,50014702,,, +7530,TWN,hmn,Suab Xaa Moo Zoo,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,SEA,2230-2300,1234567,,,50014081,,, +7530,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1400-1500,1234567,,,50022834,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0015-0215,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0245-0330,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0500,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0945,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1015-1715,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1845,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1915-2045,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2215-2400,1234567,,,37700109,,, +7540,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023733,,, +7540,TJK,zh,R Free Asia,,Orzu (SW) (ktl),37.520833,68.8,,250,71,5010,83,83,,2300-2400,1234567,,,50017748,,, +7540,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023732,,, +7545,XUU,,Trans World R,,XUU,,,-,,,?,?,400,FE,0030-0045,1234567,,,50023734,,, +7545,XUU,,Trans World R,,XUU,,,-,,,?,?,400,FE,0045-0115,.....6.,,,50023734,,, +7545,XUU,bho,Trans World R,,XUU,,,-,,,?,?,400,FE,0045-0115,12345..,,,50023734,,, +7545,XUU,dz,Trans World R,,XUU,,,-,,,?,?,400,FE,0115-0130,123...7,,,50023734,,, +7545,XUU,hi,Trans World R,,XUU,,,-,,,?,?,400,FE,0045-0115,......7,,,50023734,,, +7545,XUU,ne,Trans World R,,XUU,,,-,,,?,?,400,FE,0115-0130,...4...,,,50023734,,, +7550,MDA,fa,R Ranginkaman,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,1700-1730,1...5..,,,50023735,,, +7550,KWT,uz,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,CAs,1600-1700,1234567,,,50022839,,, +7550,UZB,en,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1530-1600,1234567,,,50022837,,, +7550,UZB,hi,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1430-1450,1234567,,,50022837,,, +7550,UZB,ml,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1510-1530,1234567,,,50022837,,, +7550,UZB,ta,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1450-1510,1234567,,,50022837,,, +7550,IND,hi,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,500,120,6235,85,92,,1945-2045,1234567,,,50016087,,, +7550,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,312,6235,85,95,,2045-2230,1234567,,,50016087,,, +7550,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,280,7561,97,106,Eu,1745-1945,1234567,,,50014001,,, +7550,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,320,7561,97,106,Eu,2045-2230,1234567,,,50014001,,, +7550,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,320,7561,97,106,Eu,1945-2045,1234567,,,50014001,,, +7555,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023737,,, +7555,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,0500-1200,1234567,,,50010287,,, +7555,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,0500-1300,1234567,,,50010287,,, +7555,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023736,,, +7555,USA,en,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,335,8617,307,125,ENA,0200-0230,9999999,,,50016088,,, +7555,USA,es,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,335,8617,307,125,WNA,0100-0200,9999999,,,50016088,,, +7555,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50022840,,, +7560,UZB,hi,BBC WS,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1400-1430,1234567,,,50022842,,, +7560,CHN,,Firedrake Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,,0000-2400,1234567,,,36201086,,, +7560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023738,,, +7560,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0100-0130,1234567,,,50022844,,, +7560,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0200-0230,1234567,,,50022844,,, +7560,CLN,ps,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0030-0100,1234567,,,50022844,,, +7560,CLN,ps,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0130-0200,1234567,,,50022844,,, +7560,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,1330-1400,1234567,,,50022843,,, +7560,THA,bo,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1600-1700,1234567,,,50022845,,, +7565,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023740,,, +7565,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023739,,, +7570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023741,,, +7570,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,ENA,0200-0600,1234567,,,50023742,,, +7570,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1300-1400,1234567,,,50018277,,, +7570,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1500-1600,1234567,,,50018277,,, +7570,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1800-1900,1234567,,,50018277,,, +7570,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2100-2200,1234567,,,50018277,,, +7570,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1900-2000,1234567,,,50018277,,, +7570,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2200-2300,1234567,,,50018277,,, +7570,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1400-1500,1234567,,,50018277,,, +7570,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1600-1700,1234567,,,50018277,,, +7570,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2000-2100,1234567,,,50018277,,, +7570,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1700-1800,1234567,,,50018277,,, +7570,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2300-2400,1234567,,,50018277,,, +7570,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1600-1700,1234567,,,50022847,,, +7575,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023744,,, +7575,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023743,,, +7580,KRE,ja,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,109,8231,44,116,J,0700-1300,1234567,,,50018279,,, +7580,KRE,ja,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,109,8231,44,116,J,2100-2400,1234567,,,50018279,,, +7580,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,1600-2300,1234567,,,50022848,,, +7585,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023746,,, +7585,TJK,hi,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,137,4943,82,86,,1300-1400,1234567,,,50021679,,, +7585,TJK,hi,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,137,4943,82,86,,1500-1600,1234567,,,50021679,,, +7585,TJK,ur,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,137,4943,82,86,,1400-1500,1234567,,,50021679,,, +7585,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023745,,, +7590,UZB,ko,North Korea Reform R.,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,KRE,1400-1600,1234567,,,50023747,,, +7595,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023749,,, +7595,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023748,,, +7600,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,1400-1430,1234567,,,50009718,,, +7600,THA,si,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,CLN,1630-1700,1234567,,,50009718,,, +7600,THA,ta,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,CLN,1545-1615,1234567,,,50009718,,, +7600,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,1500-1545,1234567,,,50009718,,, +7600,EQA,,HD2IOA,l,Guayaquil/Base Naval Sur (gua),-2.268889,-79.906667,,1,,9955,266,147,,1300-2400,1234567,,,32600007,,, +7646,D,,DDH7 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0000-2400,1234567,,,2000043,,, +7710,CAN,,VFF Iqaluit Coastguard,f,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,0010-0900,9999999,,,20109294,,, +7710,CAN,,VFR Resolute Coastguard,f,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,2100-2330,9999999,,,20109295,,, +7795,J,,JMH2,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0000-2400,1234567,,,31400036,,, +7850,CAN,,CHU,u,Ottawa (ON),45.295556,-75.757222,,10,,5749,297,105,,0000-2400,1234567,,,20100014,,, +7880,D,,DDK3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,0430-1235,1234567,,,2000047,,, +7880,D,,DDK3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,1520-1630,1234567,,,2000047,,, +7880,D,,DDK3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,1800-1952,1234567,,,2000047,,, +7880,D,,DDK3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,2100-2211,1234567,,,2000047,,, +7906,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,0005-0015,1234567,,,33200023,,, +7906,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,1205-1215,1234567,,,33200023,,, +7906,VTN,,XVM Mng Ci R,u,Mng Ci (qnh),21.525556,107.967778,,1,,8886,68,143,,0120-0130,1234567,,,33200027,,, +7906,VTN,,XVM Mng Ci R,u,Mng Ci (qnh),21.525556,107.967778,,1,,8886,68,143,,1320-1330,1234567,,,33200027,,, +7906,VTN,,XVQ Hn Gai R,u,Hn Gai (Hạ Long) (qnh),20.95,107.083333,,1,,8881,69,143,,1105-1115,1234567,,,33200019,,, +7906,VTN,,XVQ Hn Gai R,u,Hn Gai (Hạ Long) (qnh),20.95,107.083333,,1,,8881,69,143,,2305-2315,1234567,,,33200019,,, +7906,VTN,,XVB Bến Thủy (Vinh) R,u,Bến Thủy (Vinh) (nan),18.65,105.7,,1,,8994,71,144,,0050-0100,1234567,,,33200026,,, +7906,VTN,,XVB Bến Thủy (Vinh) R,u,Bến Thủy (Vinh) (nan),18.65,105.7,,1,,8994,71,144,,1250-1300,1234567,,,33200026,,, +7906,VTN,,XVD Huế R,u,Huế (tth),16.466667,107.6,,1,,9309,71,145,,1050-1100,1234567,,,33200018,,, +7906,VTN,,XVD Huế R,u,Huế (tth),16.466667,107.6,,1,,9309,71,145,,2250-2300,1234567,,,33200018,,, +7906,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,0035-0045,1234567,,,33200025,,, +7906,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,1235-1245,1234567,,,33200025,,, +7906,VTN,,XVA C Mau R,u,C Mau (cmu),9.183333,105.15,,1,,9792,77,146,,1135-1145,1234567,,,33200021,,, +7906,VTN,,XVA C Mau R,u,C Mau (cmu),9.183333,105.15,,1,,9792,77,146,,2335-2345,1234567,,,33200021,,, +7906,VTN,,XVI Quy Nhơn R,u,Quy Nhơn (bdh),13.783333,109.227778,,1,,9652,72,146,,1035-1045,1234567,,,33200017,,, +7906,VTN,,XVI Quy Nhơn R,u,Quy Nhơn (bdh),13.783333,109.227778,,1,,9652,72,146,,2235-2245,1234567,,,33200017,,, +7906,VTN,,XVK Kin Giang R,u,Rạch Gi (kgg),9.993889,105.097222,,1,,9717,77,146,,1020-1030,1234567,,,33200016,,, +7906,VTN,,XVK Kin Giang R,u,Rạch Gi (kgg),9.993889,105.097222,,1,,9717,77,146,,2220-2230,1234567,,,33200016,,, +7906,VTN,,XVN Nha Trang R,u,Nha Trang (kho),12.25,109.183333,,1,,9786,72,146,,1150-1200,1234567,,,33200022,,, +7906,VTN,,XVN Nha Trang R,u,Nha Trang (kho),12.25,109.183333,,1,,9786,72,146,,2350-2400,1234567,,,33200022,,, +7906,VTN,,XVN Ninh Thuận R,u,Phan Rang (nth),11.566667,108.983333,,1,,9834,73,146,,0135-0145,1234567,,,33200028,,, +7906,VTN,,XVN Ninh Thuận R,u,Phan Rang (nth),11.566667,108.983333,,1,,9834,73,146,,1335-1345,1234567,,,33200028,,, +7906,VTN,,XVP Phan Thiết R,u,Phan Thiết (bun),10.917656,108.10615,,1,,9834,74,146,,0150-0200,1234567,,,33200029,,, +7906,VTN,,XVP Phan Thiết R,u,Phan Thiết (bun),10.917656,108.10615,,1,,9834,74,146,,1350-1400,1234567,,,33200029,,, +7906,VTN,,XVR Vũng Tu R,u,Vũng Tu (bvt),10.406111,107.145278,,1,,9816,75,146,,0020-0030,1234567,,,33200024,,, +7906,VTN,,XVR Vũng Tu R,u,Vũng Tu (bvt),10.406111,107.145278,,1,,9816,75,146,,1220-1230,1234567,,,33200024,,, +7906,VTN,,XVS Hồ Ch Minh R,u,Hồ Ch Minh (hcm),10.703311,106.729136,,1,,9762,75,146,,0105-0115,1234567,,,33200010,,, +7906,VTN,,XVS Hồ Ch Minh R,u,Hồ Ch Minh (hcm),10.703311,106.729136,,1,,9762,75,146,,1305-1315,1234567,,,33200010,,, +7906,VTN,,XVU Cần Thơ R,u,Cần Thơ (cnt),10.033333,105.783333,,1,,9759,76,146,,0205-0215,1234567,,,33200030,,, +7906,VTN,,XVU Cần Thơ R,u,Cần Thơ (cnt),10.033333,105.783333,,1,,9759,76,146,,1405-1415,1234567,,,33200030,,, +7906,VTN,,XVY Ph Yn R,u,Bi Mn (pyn),12.894956,109.454906,,1,,9746,72,146,,1120-1130,1234567,,,33200020,,, +7906,VTN,,XVY Ph Yn R,u,Bi Mn (pyn),12.894956,109.454906,,1,,9746,72,146,,2320-2330,1234567,,,33200020,,, +7906,VTN,en,XVS Hồ Ch Minh R,u,Hồ Ch Minh (hcm),10.703311,106.729136,,1,,9762,75,146,,0910-0920,1234567,,,33200010,,, +7957.4,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,-7957.4,,20016136,,, +8006,J,,JG2XA HFD R,,Tokyo/UEC Chofu (kan-tok),35.657194,139.544444,,0.2,,9248,37,151,,0000-2400,1234567,,,31400016,,, +8040,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,0000-2400,1234567,,,2800048,,, +8070,BOL,,La Paz Volmet,u,La Paz (lpz),-16.506722,-68.166833,,1,,10439,248,148,,1015-2325,1234567,,,36500031,,, +8070,BOL,es,La Paz Volmet,u,La Paz (lpz),-16.506722,-68.166833,,1,,10439,248,148,,:15-:25,1234567,,,36500031,,, +8098,ARG,es,R.Rivadavia/R.Continental/R.Diez,l,Buenos Aires (df),-34.633333,-58.466667,,5,,11512,230,145,,0000-2400,1234567,,,40000887,,, +8105,GRC,,SVJ4,f,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,0845-1100,1234567,,,3400039,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0000-0015,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0030-0045,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0100-0115,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0130-0145,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0200-0215,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0230-0245,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0300-0315,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0330-0345,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0415,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0430-0445,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0500-0515,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0530-0545,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0615,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0630-0645,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0700-0715,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0730-0745,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0800-0815,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0830-0845,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0900-0915,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0930-0945,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1000-1015,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1030-1045,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1100-1115,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1130-1145,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1200-1215,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1230-1245,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1300-1315,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1330-1345,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1400-1415,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1430-1445,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1500-1515,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1530-1545,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1600-1615,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1630-1645,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1700-1715,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1730-1745,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1815,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1830-1845,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1900-1915,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1930-1945,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2000-2015,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2030-2045,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2100-2115,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2130-2145,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2200-2215,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2230-2245,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2300-2315,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2330-2345,1234567,,,37700025,,, +8138.5,ROU,,YQI43 Constanţa R,p,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-8138.5,,6600012,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0040-0140,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0305-0550,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0700-0740,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0905-1030,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1300-1340,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1505-1740,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1900-1940,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,2050-2230,1234567,,,21800037,,, +8176,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,:00-:15,1234567,,,37700019,,, +8183.5,USA,,KKL28,p,Vashon (WA),47.370808,-122.48775,,3,,7936,326,132,,????-????,1234567,-8183.5,,20016161,,, +8249,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902787,,, +8249,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902772,,, +8249,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902820,,, +8250,AFS,,ZRK6962 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300032,,, +8255,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902789,,, +8255,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902770,,, +8258,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902775,,, +8258,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902822,,, +8264,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902791,,, +8264,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902852,,, +8276,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902824,,, +8276,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902854,,, +8282,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902826,,, +8291,E,,Madrid R,u,Pozuelo del Rey (MAD-M),40.363389,-3.285028,,1,,1501,213,72,,????-????,1234567,,,2200035,,, +8291,AUS,,VMR471 Keppel Sands Coastguard,u,Keppel Sands (QLD),-23.3375,150.797222,,1,,15617,57,166,,????-????,1234567,,,37700097,,, +8291,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700155,,, +8291.1,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-8291.1,,31200009,,, +8291.1,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-8291.1,,31200009,,, +8291.1,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-8291.1,,31200009,,, +8294,B,,PPO Olinda Rdio,f,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0745-0830,1234567,,,36902875,,, +8294,B,,PPO Olinda Rdio,f,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1745-1830,1234567,,,36902875,,, +8294,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,0000-0010,1234567,,,33200009,,, +8294,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,0710-0720,1234567,,,33200009,,, +8294,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,1910-1920,1234567,,,33200009,,, +8294,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,2100-2110,1234567,,,33200009,,, +8294,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,0000-0015,1234567,,,33200007,,, +8294,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,0740-0755,1234567,,,33200007,,, +8294,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,1940-1955,1234567,,,33200007,,, +8297,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0333-0343,1234567,,,32500029,,, +8297,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1003-1013,1234567,,,32500029,,, +8297,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1533-1543,1234567,,,32500029,,, +8297,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2203-2213,1234567,,,32500029,,, +8300,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0500-0530,1234567,,,50023750,,, +8300,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0600-0630,1234567,,,50023750,,, +8300,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,1200-1240,1234567,,,50023750,,, +8300,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,1300-1330,1234567,,,50023750,,, +8325,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,,,6800025,,, +8414.5,E,,Madrid R,2,Pozuelo del Rey (MAD-M),40.363389,-3.285028,,1,,1501,213,72,,????-????,1234567,-8414.5,,2200037,,, +8414.5,J,,Tokyo Coast Guard R,2,Tokyo (kan-tok),35.683333,139.75,,1,,9254,37,145,,,,-8414.5,,31400127,,, +8414.5,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,-8414.5,,35400114,,, +8414.5,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,-8414.5,,36800015,,, +8418,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,????-????,1234567,,,37700116,,, +8419.5,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,-8419.5,,34700012,,, +8431,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,,,34700013,,, +8435,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,,,34700014,,, +8445,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0500-0700,1234567,,,11700009,,, +8445,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1300-1500,1234567,,,11700009,,, +8446.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0600-2200,1234567,-8446.5,,7300004,,, +8447,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800005,,, +8450,JMC,,Kingston Coastguard R,u,Kingston (kgs),17.934722,-76.843056,,1,,7988,276,137,,????-????,1234567,,,35700002,,, +8457.8,CAN,,VFA Inuvik Coastguard,f,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,0200-0230,1234567,-8457.8,,20109298,,, +8457.8,CAN,,VFA Inuvik Coastguard,f,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,1630-1700,1234567,-8457.8,,20109298,,, +8459,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0340-0608,1234567,,,20016142,,, +8459,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0950-1208,1234567,,,20016142,,, +8459,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1540-1808,1234567,,,20016142,,, +8459,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,2150-0028,1234567,,,20016142,,, +8462,B,,PPO Olinda Rdio,c,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0430-0440,1234567,,,36902784,,, +8462,B,,PPO Olinda Rdio,c,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1630-1640,1234567,,,36902784,,, +8462,B,,PPL Belm Rdio,c,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1000-1030,1234567,,,36902764,,, +8462,B,,PPL Belm Rdio,c,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,2200-2230,1234567,,,36902764,,, +8462,B,,PPJ Juno Rdio,c,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,0000-0030,1234567,,,36902846,,, +8462,B,,PPJ Juno Rdio,c,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1200-1230,1234567,,,36902846,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,0145-0300,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,0430-0450,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,0540-0800,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,1100-1200,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,1335-1530,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,1645-2000,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,2215-2245,1234567,-8467.5,,31400039,,, +8474,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800006,,, +8484.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0200-2200,1234567,-8484.5,,7300007,,, +8486,CHN,,XSF28,p,Weihai (SD),37.516667,122.1,,1,,8269,48,140,,????-????,1234567,,,36201264,,, +8489,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,,,6800026,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0330-0400,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0515-0545,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0930-1000,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1115-1145,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1530-1600,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1715-1745,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2130-2200,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2315-2345,1234567,,,20012368,,, +8503.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0000-0305,1234567,-8503.9,,20016150,,, +8503.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0600-0855,1234567,-8503.9,,20016150,,, +8503.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1200-1505,1234567,-8503.9,,20016150,,, +8503.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1800-2105,1234567,-8503.9,,20016150,,, +8517,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800007,,, +8541,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000002,,, +8580,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0230-0330,1234567,,,36902809,,, +8580,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1945-2115,1234567,,,36902809,,, +8591,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800027,,, +8602,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800028,,, +8616,J,,JFC,f,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,31400048,,, +8637,D,,DAO38 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,,,2000054,,, +8638.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0200-2200,1234567,-8638.5,,7300008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1115-1145,1234567,,,36800008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1630-1700,1234567,,,36800008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1915-1945,1234567,,,36800008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2200-2245,1234567,,,36800008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2310-2340,1234567,,,36800008,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0140-0415,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0655-1015,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1120-1230,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1400-1615,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1840-2215,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2320-2400,1234567,,,20016145,,, +8687.5,USA,,WHL28 Saint Augustine R,p,Saint Augustine (FL),29.750833,-81.28,,1,,7294,288,130,,????-????,1234567,-8687.5,,20016177,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,0350-0420,1234567,,,36800022,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1550-1635,1234567,,,36800022,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1730-1800,1234567,,,36800022,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,2005-2035,1234567,,,36800022,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,2240-2325,1234567,,,36800022,,, +8710,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,0035-0105,1234567,,,36700002,,, +8710,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,0135-0225,1234567,,,36700002,,, +8716,PHL,,DZO28 Manila R,p,Lucena City (qzn),13.947222,121.619444,,1,,10413,62,148,,????-????,1234567,,,33300025,,, +8722,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,,,19900599,,, +8728,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,0720-0740,1234567,,,5300002,,, +8728,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1203-1223,1234567,,,5300002,,, +8728,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1720-1740,1234567,,,5300002,,, +8728,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1830-1840,1234567,,,5300002,,, +8734,GRC,,SVO Olympia R,u,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,????-????,1234567,,,3400003,,, +8740,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1010-1030,1234567,,,20300008,,, +8740,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1333-1348,1234567,,,20300008,,, +8740,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1810-1830,1234567,,,20300008,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0000-0200,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0300-0500,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0600-0800,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0900-1100,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1200-1400,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1500-1700,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1800-2000,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,2100-2300,1234567,,,32900002,,, +8743,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,0530-0545,1234567,,,34700010,,, +8743,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,0600-0615,1234567,,,34700010,,, +8743,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,1330-1345,1234567,,,34700010,,, +8746,NOR,,LGL28 Flor R,p,Flor (sf),61.597625,4.998556,,1,,1058,356,68,,????-????,1234567,,,6300035,,, +8746,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0003-0018,1234567,,,22500002,,, +8746,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0403-0418,1234567,,,22500002,,, +8746,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0803-0818,1234567,,,22500002,,, +8746,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,2003-2018,1234567,,,22500002,,, +8749,HKG,,VRX Hong Kong R,u,Cape d'Aguillar (sou),22.209444,114.256111,,1,,9215,63,144,,????-????,1234567,,,33800006,,, +8752,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000003,,, +8756.1,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,-8756.1,,3300001,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0330-0400,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0515-0545,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0930-1000,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1115-1145,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1530-1600,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1715-1745,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2130-2200,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2315-2345,1234567,,,20000102,,, +8764,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0430-0505,1234567,,,20012374,,, +8764,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1030-1105,1234567,,,20012374,,, +8764,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1630-1705,1234567,,,20012374,,, +8764,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2230-2305,1234567,,,20012374,,, +8764,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,0005-0040,1234567,,,20012371,,, +8764,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,0600-0635,1234567,,,20012371,,, +8764,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,1200-1235,1234567,,,20012371,,, +8764,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,1800-1835,1234567,,,20012371,,, +8767,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800006,,, +8773,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902786,,, +8773,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902771,,, +8773,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902819,,, +8779,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0300-1500,1234567,,,11700006,,, +8779,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902788,,, +8779,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902773,,, +8782,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902774,,, +8782,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902821,,, +8788,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0300-1500,1234567,,,11700007,,, +8788,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016232,,, +8788,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902790,,, +8788,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902851,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,0000-0015,1234567,,,36200265,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,0300-0315,1234567,,,36200265,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,0600-0615,1234567,,,36200265,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,0900-0915,1234567,,,36200265,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,1400-1415,1234567,,,36200265,,, +8800,NOR,,LGB28,p,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,????-????,1234567,,,6300033,,, +8800,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902823,,, +8800,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902853,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0030-0045,1234567,-8805.7,,37500002,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0230-0245,1234567,-8805.7,,37500002,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0640-0655,1234567,-8805.7,,37500002,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,1845-1900,1234567,-8805.7,,37500002,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,2100-2115,1234567,-8805.7,,37500002,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0000-0015,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0400-0415,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0500-0515,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0600-0615,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1300-1315,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1600-1615,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1700-1715,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1800-1815,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,2200-2215,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,2300-2315,1234567,,,20012381,,, +8806,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902825,,, +8812,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1000-1015,1234567,,,8000023,,, +8812,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1800-1815,1234567,,,8000023,,, +8819,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:05-:09,1234567,,,4500003,,, +8819,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:35-:39,1234567,,,4500003,,, +8819,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:20-:24,1234567,,,34500003,,, +8819,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:50-:54,1234567,,,34500003,,, +8819,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:10-:19,1234567,,,4500007,,, +8819,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:40-:49,1234567,,,4500007,,, +8825,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,2300-1900,1234567,,,700007,,, +8825,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,0000-2400,1234567,,,20012393,,, +8825,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900013,,, +8828,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:10-:14,1234567,,,31400003,,, +8828,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:40-:44,1234567,,,31400003,,, +8828,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:15-:18,1234567,,,33800004,,, +8828,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:45-:48,1234567,,,33800004,,, +8828,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:25-:39,1234567,,,20000095,,, +8828,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:55-:09,1234567,,,20000095,,, +8828,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:20-:24,1234567,,,32500017,,, +8828,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:50-:54,1234567,,,32500017,,, +8831,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100030,,, +8831,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0830-2230,1234567,,,20109272,,, +8834,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300012,,, +8837,RUS,,Magadan Aero,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,,,,,6700134,,, +8840,NOR,,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,,,,,6300025,,, +8843,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012431,,, +8843,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012471,,, +8846,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012417,,, +8846,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902910,,, +8846,FJI,,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500009,,, +8849,CHN,en,Beijing Volmet,u,Beijing/Airport (BJ),40.087778,116.605556,,1,,7757,50,135,,0015-0900,1234567,,,36200227,,, +8849,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:00-:14,1234567,,,36200223,,, +8849,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:30-:44,1234567,,,36200223,,, +8855,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400008,,, +8855,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500025,,, +8855,ARG,,Ezeiza Aero,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,,,,,33000062,,, +8861,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500008,,, +8861,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000002,,, +8861,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:00-:04,1234567,,,6700044,,, +8861,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:30-:34,1234567,,,6700044,,, +8861,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:25-:29,1234567,,,6700060,,, +8861,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:55-:59,1234567,,,6700060,,, +8861,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:10-:14,1234567,,,6700048,,, +8861,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:40-:44,1234567,,,6700048,,, +8861,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:20-:24,1234567,,,6700056,,, +8861,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:50-:54,1234567,,,6700056,,, +8861,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200022,,, +8861,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:15-:19,1234567,,,6700052,,, +8861,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:45-:49,1234567,,,6700052,,, +8861,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300018,,, +8864,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0900-2200,1234567,,,4100021,,, +8864,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200003,,, +8864,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0830-2230,1234567,,,20109258,,, +8867,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012470,,, +8867,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500005,,, +8867,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700077,,, +8867,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700083,,, +8867,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500005,,, +8867,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500034,,, +8873,URG,,Carrasco Volmet,u,Carrasco (mo),-34.824722,-56.019444,,1,,11403,228,152,,1015-2025,1234567,,,31200014,,, +8873,URG,es,Carrasco Volmet,u,Carrasco (mo),-34.824722,-56.019444,,1,,11403,228,152,,:15-:24,1234567,,,31200014,,, +8879,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0900-2200,1234567,,,4100015,,, +8879,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200009,,, +8879,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0830-2230,1234567,,,20109259,,, +8879,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012386,,, +8879,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,5,,6741,96,117,,,,,,32200015,,, +8879,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500010,,, +8879,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500006,,, +8879,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300019,,, +8885,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900005,,, +8886,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700102,,, +8888,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:00-:04,1234567,,,6700027,,, +8888,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:30-:34,1234567,,,6700027,,, +8888,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:15-:19,1234567,,,6700035,,, +8888,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:45-:49,1234567,,,6700035,,, +8888,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:05-:09,1234567,,,6700031,,, +8888,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:35-:39,1234567,,,6700031,,, +8888,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:20-:24,1234567,,,6700019,,, +8888,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:50-:54,1234567,,,6700019,,, +8888,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:10-:14,1234567,,,6700023,,, +8888,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:40-:44,1234567,,,6700023,,, +8888,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100005,,, +8891,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100031,,, +8891,NOR,en,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,0000-2400,1234567,,,6300019,,, +8891,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200010,,, +8891,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0000-2400,1234567,,,20109260,,, +8894,ALG,,Alger Aero,u,Algiers (16),36.7,3.2,,1,,1732,190,74,,,,,,200013,,, +8903,CME,,Yaound Aero,u,Yaound (cen),3.836111,11.52,,1,,5389,173,111,,,,,,1400002,,, +8903,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100006,,, +8903,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012452,,, +8903,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012501,,, +8906,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0900-2200,1234567,,,4100013,,, +8906,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,0000-2400,1234567,,,700002,,, +8906,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0830-2230,1234567,,,20109271,,, +8906,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,0000-2400,1234567,,,20012390,,, +8909,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200035,,, +8912,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016242,,, +8915,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012485,,, +8915,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012461,,, +8918,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900013,,, +8918,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012418,,, +8918,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400009,,, +8918,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902903,,, +8918,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100020,,, +8930,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800050,,, +8933,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012412,,, +8933,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012492,,, +8933,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012438,,, +8933,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012478,,, +8933,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012505,,, +8938,ARG,,Comodoro Rivadavia Volmet,u,Comodoro Rivadavia (ch),-45.791944,-67.481944,,1,,12959,228,157,,0930-2340,1234567,,,33000046,,, +8938,ARG,es,Comodoro Rivadavia Volmet,u,Comodoro Rivadavia (ch),-45.791944,-67.481944,,1,,12959,228,157,,:30-:40,1234567,,,33000046,,, +8939,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:05-:09,1234567,,,6700015,,, +8939,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:35-:39,1234567,,,6700015,,, +8939,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:25-:29,1234567,,,6700039,,, +8939,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:55-:59,1234567,,,6700039,,, +8939,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,2000-0400,1234567,,,36902867,,, +8942,IRL,,Shanwick Aero,h,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,,,,,4100054,,, +8942,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900019,,, +8948,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500017,,, +8951,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012462,,, +8952,ARG,es,Crdoba Volmet,u,Crdoba (cb),-31.309444,-64.216944,,1,,11526,236,152,,:25-:34,1234567,,,33000040,,, +8957,IRL,en,EIP Shannon Volmet,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100007,,, +8957,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500012,,, +8977,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200021,,, +8984,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100023,,, +9110,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0230-0506,1234567,,,20016155,,, +9110,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0745-1041,1234567,,,20016155,,, +9110,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1400-1600,1234567,,,20016155,,, +9110,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1720-2241,1234567,,,20016155,,, +9116,OCE,,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500010,,, +9134,BHR,,Maritime Forces,u,Al-Manamah (mnh),26.233333,50.533333,,2.5,,4659,111,100,,0300-1400,1234567,,,10900001,,, +9165,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,0000-2400,1234567,,,34600013,,, +9200,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022293,,, +9250,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,EAf,1700-2300,1234567,,,50022851,,, +9265,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,2100-0200,1..4...,,,50016092,,, +9265,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,2100-0300,.23.567,,,50016092,,, +9265,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,CAm,1100-1300,1234567,,,50016092,,, +9265,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,CAm,2200-0500,1234567,,,50016092,,, +9280,EGY,tr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,5,3024,131,63,ME,1700-1900,1234567,,,50016093,,, +9300,TJK,ko,R Free Chosun,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,KRE,1300-1400,1234567,,,50023751,,, +9315,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023752,,, +9315,THA,bo,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1400-1500,1234567,,,50022853,,, +9317,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50023753,,, +9320,CLN,am,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1800-1900,1234567,,,50022854,,, +9320,CLN,om,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1730-1800,12345..,,,50022854,,, +9320,CLN,ti,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1900-1930,12345..,,,50022854,,, +9323,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50023754,,, +9325,CLN,lo,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1100-1200,1234567,,,50022855,,, +9325,THA,my,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SEA,0130-0230,1234567,,,50022856,,, +9325,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,2330-0030,1234567,,,50018288,,, +9325,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,,2300-0030,1234567,,,50018288,,, +9330,SYR,de,R Damascus,,Adra (dim),33.543889,36.566667,,500,312,3171,119,62,340,1800-1900,1234567,,,50020280,,, +9330,SYR,en,R Damascus,,Adra (dim),33.543889,36.566667,,500,98,3171,119,62,,2100-2200,1234567,,,50020280,,, +9330,SYR,es,R Damascus,,Adra (dim),33.543889,36.566667,,500,250,3171,119,62,278,2200-2300,1234567,,,50020280,,, +9330,SYR,fr,R Damascus,,Adra (dim),33.543889,36.566667,,500,340,3171,119,62,,1900-2000,1234567,,,50020280,,, +9330,SYR,ru,R Damascus,,Adra (dim),33.543889,36.566667,,500,155,3171,119,62,360,1700-1800,1234567,,,50020280,,, +9330,SYR,tr,R Damascus,,Adra (dim),33.543889,36.566667,,500,155,3171,119,62,360,1600-1700,1234567,,,50020280,,, +9330,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,0000-2400,1234567,,,50016100,,, +9330,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1200-0600,1234567,,,50016100,,, +9335,CLN,en,PCJ R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,FE,1330-1430,......7,,,50023755,,, +9340,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0400-2000,9999999,,,6800012,,, +9345,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,,1400-1600,1234567,,,50020282,,, +9345,PHL,zh,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,330,10183,62,128,FE,1400-1600,1234567,,,50013328,,, +9350,TJK,,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,60,4943,82,83,,0100-0200,1234567,,,50014721,,, +9350,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,Eu,1700-1900,1234567,,,50023757,,, +9350,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,85,7122,296,108,NAm,2100-2300,1234567,,,50009721,,, +9350,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1400,1234567,,,50023756,,, +9355,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1700-2200,1234567,,,50023758,,, +9355,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,1430-1630,1234567,,,50001426,,, +9355,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,330,10223,62,124,,1300-1500,1234567,,,50001426,,, +9355,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,300,11575,40,132,FE,1700-2200,1234567,,,50001425,,, +9360,MRA,ru,R Liberty,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1200-1400,1234567,,,50022860,,, +9365,PHL,MIE,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,SEA,2300-2330,1234567,,,50020539,,, +9370,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0100-0400,1234567,,,50023759,,, +9370,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1330-1900,1234567,,,50023759,,, +9370,TJK,,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,60,4943,82,83,,1600-1700,1234567,,,50021680,,, +9370,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,125,4943,82,83,,1500-1600,1234567,,,50021680,,, +9370,USA,en,The Overcomer Ministry,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,,1200-2400,1234567,,,20016303,,, +9370,USA,en,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,1300-2400,1234567,,,50022864,,, +9370,CLN,ps,R Liberty,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,1300-1330,1234567,,,50022861,,, +9370,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,1200-1300,1234567,,,50022863,,, +9385,MRA,ko,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2100-2200,1234567,,,50022866,,, +9390,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,IRN,1530-1900,1234567,,,50022868,,, +9390,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,1900-2100,1234567,,,50022867,,, +9390,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,1905-2100,1234567,,,50022867,,, +9390,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,1900-1905,1234567,,,50022867,,, +9390,UZB,bn,FEBA R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0000-0030,1234567,,,50014726,,, +9390,UZB,bn,FEBA R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,SAs,1500-1530,1234567,,,50014726,,, +9390,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,132,8917,74,120,Oc,1230-1300,1234567,,,50019968,,, +9390,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,Oc,1400-1430,1234567,,,50019968,,, +9390,THA,ja,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,J,1300-1315,1234567,,,50019968,,, +9390,THA,ms,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,MLA,1200-1215,1234567,,,50019968,,, +9390,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,FE,1330-1400,1234567,,,50019968,,, +9390,THA,zh,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,FE,1315-1330,1234567,,,50019968,,, +9390,THA,ko,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1900-2100,1234567,,,50022869,,, +9395,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,2100-2158,1234567,,,50022870,,, +9395,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,2105-2158,1234567,,,50022870,,, +9395,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,2100-2105,1234567,,,50022870,,, +9395,ARM,en,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,,3205,98,62,CAm,2200-2400,1234567,,,50022871,,, +9395,ARM,es,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,,3205,98,62,CAm,0000-0500,1234567,,,50022871,,, +9400,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,1800-2200,9999999,,,50022873,,, +9400,ARM,fa,FEBA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,1500-1530,1234567,,,50023760,,, +9400,ARM,ps,FEBA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,1530-1600,1234567,,,50023760,,, +9400,PHL,zh,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,330,10183,62,128,FE,0900-1400,1234567,,,50005154,,, +9405,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,,0000-0030,1234567,,,50005155,,, +9405,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,,2230-2400,1234567,,,50005155,,, +9405,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,FE,2230-0030,1234567,,,50005155,,, +9410,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,250,91,660,211,40,,1530-1545,......7,,,50019286,,, +9410,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,1700-1730,1234567,,,50022875,,, +9410,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,300,1660,112,54,,1200-1300,1234567,,,50021683,,, +9410,TUR,es,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,SAm,0200-0300,1234567,,,50022876,,, +9410,TUR,ru,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,EEu,1400-1500,1234567,,,50022876,,, +9410,EGY,de,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,Eu,1900-2000,1234567,,,50022874,,, +9410,EGY,fr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,Eu,2000-2115,1234567,,,50022874,,, +9410,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,0100-0200,1234567,,,50005159,,, +9410,CHN,pt,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SAm,2200-2300,1234567,,,50005159,,, +9410,UAE,ps,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,60,5075,109,84,AFG,1730-1800,1234567,,,50020550,,, +9410,OMA,KNK,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,EAf,1830-1900,12345..,,,50009728,,, +9410,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,ME,0400-0500,1234567,,,50009728,,, +9410,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,SAs,1300-1400,1234567,,,50009728,,, +9410,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,SAs,1400-1500,1234567,,,50009728,,, +9410,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,0600-0800,1234567,,,50022295,,, +9410,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0955-2200,1234567,,,40000896,,, +9410,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,290,8872,77,119,SAs,0000-0100,1234567,,,50011642,,, +9410,AFS,so,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,32,9003,160,120,EAf,1800-1830,1234567,,,50020548,,, +9410,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,250,315,10381,83,124,SAs,1500-1700,1234567,,,50020549,,, +9410,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,0400-0600,1234567,,,21800024,,, +9410,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,0800-1000,1234567,,,21800024,,, +9410,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,1100-1300,1234567,,,21800024,,, +9410,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,2300-0100,1234567,,,21800024,,, +9415,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,0800-1000,1234567,,,50022878,,, +9415,CHN,vi,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SEA,2300-2400,1234567,,,50022877,,, +9420,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,0000-1000,1234567,,,50022880,,, +9420,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1700-1000,1234567,,,50022880,,, +9420,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,2300-1000,1234567,,,50022880,,, +9420,IRN,sq,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1820-1920,1234567,,,50022881,,, +9420,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50022879,,, +9420,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1100-1805,1234567,,,40000898,,, +9425,UAE,ar,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,255,5075,109,84,,0300-0400,1234567,,,50020552,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1430-1435,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1530-1535,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1630-1635,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1730-1735,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1830-1835,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1935-1940,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2030-2035,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2135-2140,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2230-2235,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1320-1430,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1435-1530,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1535-1630,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1635-1730,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1735-1830,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1835-1935,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1940-2030,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2035-2135,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2140-2230,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2235-0040,1234567,98,,40000899,,, +9425,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,0000-0100,1234567,,,50022882,,, +9425,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,PHL,2300-2400,1234567,,,50022882,,, +9425,KRE,de,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,,1800-2000,1234567,,,50016097,,, +9425,KRE,de,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1600-1700,1234567,,,50016097,,, +9425,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,,2000-2100,1234567,,,50016097,,, +9425,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1400-1600,1234567,,,50016097,,, +9425,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1700-1800,1234567,,,50016097,,, +9430,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,0200-0530,1234567,,,50022884,,, +9430,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1400-1500,1234567,,,50022883,,, +9430,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,FE,0900-1600,1234567,,,50005186,,, +9435,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1700-1800,1234567,,,50022887,,, +9435,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ENA,2130-2200,1234567,,,50022886,,, +9435,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,1500-1700,1234567,,,50005195,,, +9435,CHN,pt,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAm,0000-0100,1234567,,,50005195,,, +9435,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,2300-2400,1234567,,,50022885,,, +9435,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1000-1100,1234567,,,50016101,,, +9435,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1300-1400,1234567,,,50016101,,, +9435,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1500-1600,1234567,,,50016101,,, +9435,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1100-1200,1234567,,,50016101,,, +9435,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1400-1500,1234567,,,50016101,,, +9435,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1600-1700,1234567,,,50016101,,, +9435,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1200-1300,1234567,,,50016101,,, +9435,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1700-1800,1234567,,,50016101,,, +9435,CLN,az,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,Cau,1830-1900,1234567,,,50022888,,, +9435,CLN,km,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,2200-2230,1234567,,,50022888,,, +9435,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0000-0100,1234567,,,50005194,,, +9440,ARM,fa,Deutsche Welle,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,1330-1400,1234567,,,50022890,,, +9440,ARM,ps,Deutsche Welle,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,1400-1430,1234567,,,50022890,,, +9440,ARM,ur,Deutsche Welle,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,SAs,1430-1500,1234567,,,50022890,,, +9440,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,55,6960,203,103,WAf,0630-0700,1234567,,,50009732,,, +9440,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,,1900-2000,1234567,,,50005200,,, +9440,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,,2000-2100,1234567,,,50005200,,, +9440,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1900-2100,1234567,,,50005200,,, +9440,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1000-1100,1234567,,,50022889,,, +9440,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,63,7773,50,115,FE,0400-0500,1234567,,,36201075,,, +9440,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,0900-1000,1234567,,,50022889,,, +9440,CHN,km,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1200-1300,1234567,,,50005200,,, +9440,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1100-1200,1234567,,,50005200,,, +9440,CHN,eo,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1300-1400,1234567,,,50005201,,, +9445,IRN,id,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SEA,2220-2320,1234567,,,50022891,,, +9445,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,WAf,1745-1945,1234567,,,50016445,,, +9445,IND,hi,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,ME,1615-1730,1234567,,,50016445,,, +9445,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,1500-1530,1234567,,,50022892,,, +9445,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,325,7561,97,106,Eu,2045-2230,1234567,,,50016113,,, +9445,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0400-0500,1234567,,,50016102,,, +9445,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0600-0700,1234567,,,50016102,,, +9445,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0900-1000,1234567,,,50016102,,, +9445,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,2300-2400,1234567,,,50016102,,, +9445,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0500-0600,1234567,,,50016102,,, +9445,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0800-0900,1234567,,,50016102,,, +9445,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,1100-1200,1234567,,,50016102,,, +9445,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,2100-2300,1234567,,,50016102,,, +9450,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0500-0515,....5..,,,50022894,,, +9450,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0500-0530,...4...,,,50022894,,, +9450,ROU,de,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,WEu,0700-0730,1234567,,,50022896,,, +9450,CHN,ha,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NIG,1730-1830,1234567,,,50005217,,, +9450,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAs,1300-1400,1234567,,,50005217,,, +9450,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,209,5347,76,91,SAs,0300-0400,1234567,,,50005217,,, +9450,CHN,eo,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,FE,1100-1200,1234567,,,50022893,,, +9450,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,1400-1600,1234567,,,50022895,,, +9450,TWN,zh,R Taiwan Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,,9364,56,125,FE,2200-2400,1234567,,,50023761,,, +9450,TWN,zh,Xi Wang zhi Sheng SOH,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,FE,1400-1500,1234567,,,50011339,,, +9450,TWN,zh,Xi Wang zhi Sheng SOH,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,FE,1500-1600,1234567,,,50011339,,, +9450,TWN,zh,Xi Wang zhi Sheng SOH,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,335,9434,57,125,FE,1400-1600,1234567,,,50011339,,, +9455,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-2200,1234567,,,50023762,,, +9455,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0100-0200,1234567,,,40000902,,, +9455,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1955-0100,1234567,,,40000902,,, +9455,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1500-1600,1234567,,,50005225,,, +9455,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,300,11575,40,132,FE,1600-2200,1234567,,,50001538,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0015-0030,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0115-0130,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0215-0230,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0315-0330,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0415-0430,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0915-0930,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1015-1030,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1115-1130,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1215-1230,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1315-1330,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1415-1430,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1515-1530,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1615-1630,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2115-2130,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2215-2230,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2315-2330,1234567,,,32500043,,, +9460,D,en,Brother Stair,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,WEu,1400-1600,12345..,,,50022901,,, +9460,AUT,en,Brother Stair,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WEu,1400-1600,.....67,,,50022900,,, +9460,ALB,ro,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,EEu,0900-1000,1234567,,,50022897,,, +9460,TUR,ug,Voice of Turkey,,Emirler,39.401389,32.855833,,500,310,2469,114,55,CHN,0300-0400,1234567,,,50014748,,, +9460,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,SAs,1400-1500,1234567,,,50017370,,, +9460,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,,0900-1100,1234567,,,50017370,,, +9460,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,CLN,1200-1300,1234567,,,50005232,,, +9460,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,CAf,0600-0700,1234567,,,50022898,,, +9460,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,0000-0100,1234567,,,50005231,,, +9460,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,0100-0200,1234567,,,50005231,,, +9460,MYA,gb,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.013539,96.549528,,50,,8104,76,121,,0530-0630,1234567,,,22100049,,, +9460,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.013539,96.549528,,50,,8104,76,121,,0430-0530,1234567,,,22100049,,, +9460,CHN,en,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1600-1800,1234567,,,50018339,,, +9460,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,0900-1100,1234567,,,50018339,,, +9460,THA,my,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SEA,0200-0230,1234567,,,50022899,,, +9465,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAs,1800-1900,1234567,,,50022902,,, +9465,MDA,en,Voice of Russia,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,296,1731,99,47,,2200-2400,1234567,,,50020565,,, +9465,MDA,es,Voice of Russia,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,296,1731,99,47,,0000-0100,1234567,,,50020565,,, +9465,PHL,ru,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,Sib,1500-1600,1234567,,,50022903,,, +9465,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,SEA,1330-1400,1234567,,,50022903,,, +9470,AUT,en,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,1915-1930,......7,,,50022905,,, +9470,CHN,kk,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0500-0600,1234567,,,40000903,,, +9470,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0300-0500,1234567,,,40000903,,, +9470,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0600-0800,1234567,,,40000903,,, +9470,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1100,1.3.567,,,40000903,,, +9470,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1100-1150,1234567,,,40000903,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1430-1435,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1530-1535,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1630-1635,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1730-1735,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1830-1835,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1935-1940,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2030-2035,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2135-2140,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2230-2235,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1320-1430,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1435-1530,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1535-1630,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1635-1730,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1735-1830,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1835-1935,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1940-2030,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2035-2135,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2140-2230,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2235-0043,1234567,,,40000904,,, +9470,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,Af,0400-0500,1234567,,,50014751,,, +9470,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,ND,0500-0600,1234567,,,50014751,,, +9470,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0500-0530,1234567,,,50014751,,, +9470,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0530-0600,1234567,,,50014751,,, +9470,CHN,mn,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,MNG,0000-0100,1234567,,,50005242,,, +9470,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,2025-2400,1234567,,,40001031,,, +9475,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,,7067,296,108,NAm,1400-2400,1234567,,,50022906,,, +9475,SWZ,sw,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,5,9062,157,124,,1700-1745,1234567,,,50010849,,, +9475,SWZ,sw,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,5,9062,157,124,,1745-1815,.....67,,,50010849,,, +9475,SWZ,sw,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,5,9062,157,124,EAf,1700-1815,1234567,,,50010849,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1000-1100,.....67,,,50016115,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,1430-1700,1234567,,,50016115,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,1700-1900,1234567,,,50016115,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,EAs,1100-1900,1234567,,,50016115,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,0700-0900,1234567,,,50016115,,, +9475,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,0900-1000,1234567,,,50016115,,, +9475,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1000-1100,12345..,,,50016115,,, +9480,D,en,European Music R,,Ghren (mev),53.535556,11.611111,,100,,384,64,41,Eu,0900-1000,9999999,,,50021951,,, +9480,KWT,ug,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50022908,,, +9480,TJK,es,Voice of Russia,,Orzu (SW) (ktl),37.520833,68.8,,500,267,5010,83,80,,0200-0500,1234567,,,50020285,,, +9480,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,Af,0530-0630,12345..,,,50022910,,, +9480,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,2000-2030,1234567,,,50022910,,, +9480,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023763,,, +9480,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0900-1400,1234567,,,40000906,,, +9480,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1430-1605,1234567,,,40000906,,, +9480,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2155-0100,1234567,,,40000906,,, +9480,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1400-1430,1234567,,,40000906,,, +9480,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,0530-0630,12345..,,,50022909,,, +9480,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,2100-2130,12345..,,,50022909,,, +9480,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,WAf,2030-2100,.....67,,,50022909,,, +9485,D,am,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1800-1900,1234567,,,50022911,,, +9485,D,om,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1730-1800,12345..,,,50022911,,, +9485,D,ti,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1900-1930,12345..,,,50022911,,, +9490,D,en,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,108,316,151,40,,1900-2000,1234567,,,50021688,,, +9490,F,es,R Republica,,Issoudun (36),46.947222,1.894444,,250,275,660,211,40,CUB,0100-0300,1234567,,,50020576,,, +9490,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ME,1930-2000,1234567,,,50022912,,, +9490,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,1500-1600,1234567,,,50020575,,, +9490,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,2100-2200,123...7,,,50018352,,, +9490,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0200-0700,1234567,,,40000909,,, +9490,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0800-0957,1.34567,,,40000909,,, +9490,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0700-0800,1.34567,,,40000909,,, +9490,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1300-1500,1234567,,,50005266,,, +9490,PHL,bn,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,1600-1700,1234567,,,50022914,,, +9490,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,2230-2300,1234567,,,50022914,,, +9490,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,2300-2400,1234567,,,50022914,,, +9495,TUR,es,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,SEu,1730-1830,1234567,,,50022916,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,1300-1900,12345..,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,152,1300-1400,.....67,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1300-1400,12345..,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1400-1600,1234567,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1600-2000,12345..,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,2000-2100,1234567,,,50016117,,, +9495,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023764,,, +9495,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Car,1100-1300,1234567,,,50023765,,, +9495,USA,es,Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Car,2300-2400,1234567,,,50023766,,, +9495,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1500-1600,1234567,,,50022917,,, +9500,IRN,ar,IRIB Voice of Palestine,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,0320-0420,1234567,,,50022918,,, +9500,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,153,4779,79,85,SAs,1100-1400,1234567,,,50019297,,, +9500,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,,5629,115,93,Eu,0000-0200,1234567,,,50022919,,, +9500,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0600-0900,1.34567,,,40000911,,, +9500,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0900-1805,1234567,,,40000911,,, +9500,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,2025-0600,1234567,,,40000911,,, +9500,SWZ,ar,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,EAf,1800-1900,1234567,79,,50010850,,, +9500,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,EAf,0500-0800,1234567,79,,50010850,,, +9500,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,1700-2030,1234567,,,50016118,,, +9500,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,355,16373,78,148,WOc,2030-2200,1234567,,,50016118,,, +9504.8,PRU,es,R Tacna,,Tacna (tac),-18,-70.216667,,0.5,,10702,249,152,,1000-0005,1234567,-9504.8,,40000912,,, +9505,SDN,ar,Saut Afrikya,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,0400-0700,1234567,,,40000914,,, +9505,SDN,ar,Saut Afrikya,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,1600-1900,1234567,,,40000914,,, +9505,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,ME,1500-1800,1234567,,,50022920,,, +9505,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,2000-2300,123...7,,,50018363,,, +9505,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,2300-2400,1234567,,,50018363,,, +9505,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,2000-2100,12345.7,,,50018363,,, +9505,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,2100-2300,1234567,,,50018363,,, +9505,CHN,en,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0532-0557,......7,,,40000915,,, +9505,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0200-0400,1234567,,,40000915,,, +9505,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0400-0532,......7,,,40000915,,, +9505,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0400-0945,12.456.,,,40000915,,, +9505,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0557-0945,......7,,,40000915,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,0900-0930,.....6.,,,50014769,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,0900-1000,.....6.,,,50014769,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,0930-1000,.....6.,,,50014769,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,0930-1300,......7,,,50014769,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,1030-1100,......7,,,50014769,,, +9510,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,Eu,0900-1000,.....6.,,,50021954,,, +9510,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,Eu,1030-1300,......7,,,50021954,,, +9510,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0250-0320,1234567,,,50022922,,, +9510,CHN,mn,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0700-0800,1234567,,,36200220,,, +9510,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0530-0700,1234567,,,36200220,,, +9510,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1030,1.3.567,,,36200220,,, +9510,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,0030-0100,1234567,,,50011236,,, +9510,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,0130-0200,1234567,,,50011236,,, +9510,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,1400-1430,1234567,,,50011236,,, +9510,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,0000-0030,1234567,,,50022921,,, +9515,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1900-2000,1234567,,,50023767,,, +9515,IRN,sw,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,EAf,1720-1820,1234567,,,50022925,,, +9515,IRN,ru,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,CAs,1420-1520,1234567,,,50022924,,, +9515,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1100-1200,1234567,,,50022923,,, +9515,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,1430-1500,1234567,,,40000917,,, +9515,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,1000-1430,1234567,,,40000917,,, +9515,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,1500-1605,1234567,,,40000917,,, +9515,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2100-2400,1234567,,,40000917,,, +9515,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,285,8663,46,119,Eu,1600-1700,1234567,,,50005296,,, +9515,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,285,8663,46,119,Eu,1700-1900,1234567,,,50005296,,, +9515,B,pt,ZYE726 R Marumby,,Curitiba/Campo Largo (PR),-25.432389,-49.393128,,10,310,10181,228,138,,0700-0100,1234567,,,40000918,,, +9520,D,ru,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,0300-0400,1234567,,,50022929,,, +9520,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2100-2200,1234567,,,50022927,,, +9520,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2100-2300,1234567,,,50022927,,, +9520,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2205-2300,1234567,,,50022927,,, +9520,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2200-2205,1234567,,,50022927,,, +9520,KWT,ru,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,EEu,0400-0600,1234567,,,50022928,,, +9520,CHN,zh,CNR 1,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,2230-2300,1234567,,,40000919,,, +9520,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0600-0950,1.34567,,,40000919,,, +9520,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0950-1605,1234567,,,40000919,,, +9520,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,2150-2230,1234567,,,40000919,,, +9520,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,2300-0600,1234567,,,40000919,,, +9520,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,1330-1400,1234567,,,50005302,,, +9520,PHL,ta,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1400-1430,1234567,,,50005302,,, +9520,PHL,ta,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,1400-1427,1234567,,,50005302,,, +9522,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0700-0730,1234567,,,50023768,,, +9522,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0800-0830,1234567,,,50023768,,, +9525,ROU,es,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,310,1587,104,48,VEN,0000-0100,1234567,,,50005309,,, +9525,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,310,1660,112,49,,0000-0200,1234567,,,50021689,,, +9525,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1500-1600,1234567,,,50022930,,, +9525,INS,ar,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,290,11281,86,127,ME,1600-1700,1234567,889,,50016120,,, +9525,INS,de,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,Eu,1800-1900,1234567,889,,50016120,,, +9525,INS,en,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,135,11281,86,127,30,1000-1100,1234567,889,,50016120,,, +9525,INS,en,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,135,11281,86,127,FE,0950-1100,1234567,889,,50016120,,, +9525,INS,en,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,Eu,1900-2000,1234567,889,,50016120,,, +9525,INS,en,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,FE,1300-1400,1234567,889,,50016120,,, +9525,INS,es,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,Eu,1700-1800,1234567,889,,50016120,,, +9525,INS,fr,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,Eu,2000-2100,1234567,889,,50016120,,, +9525,INS,id,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,10,11281,86,127,30,1400-1500,1234567,889,,50016120,,, +9525,INS,id,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,10,11281,86,127,FE,1400-1503,1234567,889,,50016120,,, +9525,INS,ja,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,135,11281,86,127,Eu,2100-2200,9999999,889,,50016120,,, +9525,INS,ja,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,FE,1200-1300,1234567,889,,50016120,,, +9525,INS,zh,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,10,11281,86,127,FE,1100-1200,1234567,889,,50016120,,, +9525,INS,zh,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,135,11281,86,127,FE,1503-1505,9999999,889,,50016120,,, +9525,INS,zh,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,,1500-1600,1234567,889,,50016120,,, +9530,TUR,fa,Voice of Turkey,,Emirler,39.401389,32.855833,,500,95,2469,114,55,IRN,1600-1700,1234567,,,50008005,,, +9530,UAE,am,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0330-0345,1...5.7,,,50022933,,, +9530,UAE,om,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0330-0345,.2.....,,,50022933,,, +9530,UAE,sid,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0330-0345,..34...,,,50022933,,, +9530,ASC,PU,HCJB Global,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,2145-2215,12.4567,,,50022932,,, +9530,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1500,1234567,,,50023769,,, +9530,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0000-0500,1234567,,,40000920,,, +9530,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0530-0600,1234567,,,40000920,,, +9530,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0900,12.4567,,,40000920,,, +9530,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0500-0530,1234567,,,40000920,,, +9530,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1000-1400,1234567,,,50022934,,, +9530,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1400-1500,1234567,,,50022934,,, +9530,B,pt,ZYE857 Rdio Transmundial,,Santa Maria/Vila Palmas (RS),-29.738333,-53.555278,,10,60,10803,229,140,,0700-0100,1234567,92,,40000922,,, +9534.8,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.011111,41.031667,,5,,2756,98,78,,0500-0911,123456,-9534.8,,40000923,,, +9535,F,ru,China R Int.,,Issoudun (36),46.947222,1.894444,,500,55,660,211,37,CAs,1800-1900,1234567,,,50005319,,, +9535,D,ar,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,1900-2000,1234567,,,50022936,,, +9535,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,272,1547,213,49,CAm,2300-0600,1234567,,,50009745,,, +9535,CHN,pt,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,150,255,7712,60,112,EAf,1900-2000,1234567,,,50010332,,, +9535,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,PHL,2300-2400,1234567,,,50005318,,, +9535,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,FE,1500-1600,1234567,,,50005318,,, +9535,THA,de,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,2000-2015,1234567,,,50022935,,, +9535,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,2030-2045,1234567,,,50022935,,, +9535,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,2045-2115,1234567,,,50022935,,, +9540,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1600-1700,1234567,,,50022939,,, +9540,UZB,hi,FEBA R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1430-1500,1234567,,,50022938,,, +9540,RRW,om,FEBA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,EAf,1700-1730,1234567,,,50023770,,, +9540,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,142,7797,50,108,Oc,1100-1200,1234567,,,50005327,,, +9540,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,,1200-1300,1234567,,,50005328,,, +9540,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,1200-1400,1234567,,,50005328,,, +9540,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,1100-1300,1234567,,,50016446,,, +9540,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,1300-1500,1234567,,,50016446,,, +9540,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,340,7939,284,116,CAm,1100-1500,1234567,,,50016446,,, +9540,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,2200-2230,1234567,,,50020607,,, +9540,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1530-1600,1234567,,,50020607,,, +9540,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,2230-2250,1234567,,,50020607,,, +9540,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,325,9364,56,125,FE,0900-1100,.....67,,,50011203,,, +9545,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023771,,, +9545,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023771,,, +9545,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0000-0100,1234567,,,50022941,,, +9545,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,FE,2200-2300,1234567,,,50005341,,, +9545,PHL,MON,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,SEA,2300-2330,1234567,,,50022940,,, +9545,SLM,en,SIBC R Hapi Isles,,Honiara/Henderson Field (cth),-9.435556,160.06,,10,,14705,36,153,,0800-1900,1234567,0,,40000926,,, +9545,SLM,en,SIBC R Hapi Isles,,Honiara/Henderson Field (cth),-9.435556,160.06,,10,,14705,36,153,,2000-2400,1234567,0,,40000926,,, +9550,RRW,ar,FEBA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,ME,1800-1927,1234567,,,50023772,,, +9550,CHN,vi,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SEA,1100-1600,1234567,,,50005343,,, +9550,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,340,7939,284,116,ENA,1100-1300,1234567,,,50017037,,, +9550,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,0000-0100,1234567,,,50005344,,, +9550,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,0100-0200,1234567,,,50005344,,, +9550,BOT,KNK,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,0330-0400,1234567,,,50022943,,, +9550,BOT,KNK,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,0330-0430,.....67,,,50022943,,, +9550,BOT,KNK,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,0400-0430,.....67,,,50022943,,, +9550,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1600-1630,1234567,,,50005347,,, +9550,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,2030-2100,1234567,,,50005347,,, +9550,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1630-1700,1234567,,,50005347,,, +9550,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,2100-2130,1234567,,,50005347,,, +9550,VTN,vi,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1500-1600,1234567,,,50005347,,, +9550,B,pt,ZYE854 Rdio Boa Vontade,,Porto Alegre/Esteio (RS),-29.867167,-51.10375,,10,,10690,227,139,,0000-2400,1234567,,,36902759,,, +9555,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,140,1609,135,51,EGY,1600-1800,1234567,,,50005350,,, +9555,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,1800-2300,1234567,,,50023773,,, +9555,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,2300-2400,1234567,,,50022944,,, +9555,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,303,11578,41,128,,1700-1900,1234567,,,50020614,,, +9560,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAs,0140-0200,1234567,,,50022945,,, +9560,CVA,hi,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAs,0040-0100,1234567,,,50022945,,, +9560,CVA,ml,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAs,0120-0140,1234567,,,50022945,,, +9560,CVA,ta,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAs,0100-0120,1234567,,,50022945,,, +9560,CHN,hu,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1900-1930,1234567,,,50005356,,, +9560,UAE,hi,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0230-0300,1234567,,,50022946,,, +9560,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,313,5607,84,89,,1700-1900,1234567,,,50019983,,, +9560,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,1500-1600,1234567,,,50005355,,, +9560,ETH,aa,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1300-1400,1234567,5,,50005359,,, +9560,ETH,ar,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1400-1500,1234567,5,,50005359,,, +9560,ETH,en,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1600-1700,1234567,5,,50005359,,, +9560,ETH,fr,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1700-1800,1234567,5,,50005359,,, +9560,ETH,so,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,0700-0800,1234567,5,,50005359,,, +9560,ETH,so,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1200-1300,1234567,5,,50005359,,, +9560,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0600-0700,1234567,,,40000931,,, +9560,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0300-0600,1234567,,,40000931,,, +9560,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0700-0800,1234567,,,40000931,,, +9560,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0800-1100,1.3.567,,,40000931,,, +9560,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1100-1200,1234567,,,40000931,,, +9560,RUS,zh,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,FE,1000-1400,1234567,,,50023774,,, +9560,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,FE,2200-2230,1234567,,,50005360,,, +9560,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,2230-2250,1234567,,,50005360,,, +9565,ALB,tr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,ME,1500-1600,1234567,,,50005365,,, +9565,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,CUB,2000-2400,1234567,,,50009753,,, +9565,TWN,vi,R France Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,250,9364,56,125,SEA,1500-1600,1234567,,,50015844,,, +9565,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,2100-2200,1234567,,,50022948,,, +9565,B,pt,ZYE727 Super Rdio Deus Amor,,Curitiba/Corpo de Bombeiros (PR),-25.449444,-49.125,,15,45,10169,228,136,,0000-2400,1234567,5,,40000936,,, +9566.5,ETH,KUN,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,1.3.5..,-9566.5,,50022301,,, +9566.5,ETH,aa,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,.2.4.6.,-9566.5,,50022301,,, +9566.5,ETH,ar,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1500-1530,1.3.5.7,-9566.5,,50022301,,, +9566.5,ETH,ti,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1500-1530,.2.4.6.,-9566.5,,50022301,,, +9566.5,ETH,ti,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,......7,-9566.5,,50022301,,, +9566.5,ETH,ti,V.o.Peace and Democracy,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,0400-0500,1.3.5..,-9566.5,,50022302,,, +9566.5,ETH,ti,V.o.Peace and Democracy,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,1800-1830,1.3.5..,-9566.5,,50022302,,, +9566.5,ETH,ti,Voice of Eritrea,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,0400-0430,.2.4.6.,-9566.5,,50022303,,, +9566.5,ETH,ti,Voice of Eritrea,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,1800-1830,.2.4.6.,-9566.5,,50022303,,, +9570,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,300,305,1609,135,48,NAm,0000-0200,1234567,,,50005374,,, +9570,ALB,zh,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,300,305,1609,135,48,NAm,0200-0400,1234567,,,50005374,,, +9570,CVA,uz,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,CAs,1500-1530,1234567,,,50022950,,, +9570,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,170,1547,213,49,CAf,2000-2100,12345..,,,50009754,,, +9570,IRN,ha,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,305,4724,102,77,WAf,1820-1920,1234567,,,50020622,,, +9570,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1100-1200,1234567,,,50022949,,, +9570,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1500,1234567,,,50022949,,, +9570,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,0300-0600,1234567,,,40000938,,, +9570,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,0600-0855,12.4567,,,40000938,,, +9570,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,0855-1000,1234567,,,40000938,,, +9570,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,,1700-1800,1234567,,,50005375,,, +9570,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,SAf,1600-1800,1234567,,,50005375,,, +9570,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,10,7939,284,112,ENA,1300-1400,1234567,,,50005377,,, +9570,CUB,zh,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,10,7939,284,112,ENA,1200-1300,1234567,,,50005377,,, +9570,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,234,8246,70,118,,1600-1700,1234567,,,50021690,,, +9570,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,0800-0900,1234567,,,50005379,,, +9570,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,1300-1400,1234567,,,50005379,,, +9570,KOR,id,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,1200-1300,1234567,,,50005379,,, +9570,KOR,id,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,1400-1500,1234567,,,50005379,,, +9570,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,0900-1100,1234567,,,50005379,,, +9575,MRC,,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,,0000-2400,1234567,,,5900006,,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0900-0930,1234567,,,5900006,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0933-1000,1234567,,,5900006,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1003-1030,1234567,,,5900006,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1538-1630,1234567,,,5900006,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1633-1700,1234567,,,5900006,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0100-0530,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0555-0615,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0617-0620,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0645-0715,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0720-0726,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0745-0747,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0755-0812,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1000-1003,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1033-1100,.....67,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1103-1130,.....67,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1200-1230,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1400-1403,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1410-1415,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1500-1503,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1700-1703,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1800-1813,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1855-1930,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1945-2100,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2103-2215,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2215-2300,12345..,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2316-0005,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0530-0555,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0615-0617,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0620-0645,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0715-0720,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0726-0745,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0747-0755,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0812-0900,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0930-0933,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1030-1033,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1033-1100,12345..,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1100-1103,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1103-1130,12345..,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1130-1200,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1230-1400,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1403-1410,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1415-1500,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1503-1538,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1630-1633,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1703-1800,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1813-1855,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1930-1945,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2100-2103,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2215-2300,.....67,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2300-2316,1234567,,,5900006,,, +9575,IND,bo,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,102,7561,97,106,Tib,1215-1330,1234567,,,50016449,,, +9575,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1215-1330,1234567,,,50023775,,, +9575,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,FE,1530-1600,1234567,,,50022951,,, +9580,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jeddah (mkh),21.383333,39.416667,,100,,4435,128,81,ME,0300-0600,1234567,,,50023776,,, +9580,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jeddah (mkh),21.383333,39.416667,,100,,4435,128,81,ME,1700-2200,1234567,,,50023776,,, +9580,UZB,en,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0140-0200,123456,,,50021691,,, +9580,UZB,en,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0140-0200,1234567,,,50021691,,, +9580,UZB,hi,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0040-0100,1234567,,,50021691,,, +9580,UZB,ml,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0120-0140,1234567,,,50021691,,, +9580,UZB,ta,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0100-0120,1234567,,,50021691,,, +9580,UZB,ur,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,163,4779,79,85,,0025-0040,1..4...,,,50021691,,, +9580,IRN,ps,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,SAs,1220-1320,1234567,,,50022953,,, +9580,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0200-0700,1234567,,,40000939,,, +9580,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0800-0957,1.34567,,,40000939,,, +9580,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0700-0800,1.34567,,,40000939,,, +9580,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,10,7939,284,112,ENA,0100-0200,1234567,,,50005391,,, +9580,CUB,zh,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,10,7939,284,112,ENA,0200-0300,1234567,,,50005391,,, +9580,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,SAm,0200-0300,1234567,,,50005394,,, +9580,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,J,0100-0200,1234567,,,50005394,,, +9580,SNG,en,R Australia,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1600-1630,1234567,,,50022952,,, +9580,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,1000-1500,1234567,,,50016127,,, +9580,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,1700-2100,1234567,,,50016127,,, +9580,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,80,16373,78,148,SOc,0800-1000,1234567,,,50016127,,, +9581,PHL,tl,DZFM-AM Radyo Ng Bayan,,Marulas (ncr),14.679167,120.976667,,0.5,,10307,62,151,,0000-0930,1234567,,,33300008,,, +9585,D,ru,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,1700-1800,1234567,,,50022957,,, +9585,CHN,hu,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,Eu,2030-2100,1234567,,,50005397,,, +9585,CHN,sr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,Eu,2000-2030,1234567,,,50005397,,, +9585,IRN,ja,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,J,1320-1420,1234567,,,50022955,,, +9585,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023777,,, +9585,SWZ,fr,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,64,9062,157,124,,1455-1525,.....6.,,,50012497,,, +9585,SWZ,fr,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,64,9062,157,124,MDG,1455-1525,.....67,,,50012497,,, +9585,SWZ,mg,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,64,9062,157,124,,1455-1525,12345.7,,,50012497,,, +9585,SWZ,mg,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,64,9062,157,124,MDG,1455-1525,12345..,,,50012497,,, +9585,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2300-2400,1234567,,,50022956,,, +9585,B,pt,ZYE969 Super Rdio Deus Amor,,So Paulo/Rua Hilia Amaznica (SP),-23.606389,-46.538333,,10,,9861,227,137,,0000-2400,1234567,,,36902755,,, +9590,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1800-1900,1234567,,,50022960,,, +9590,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1800-2000,1234567,,,50022960,,, +9590,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,170,1547,213,47,WAf,1900-2000,.....6.,,,50018405,,, +9590,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,140,1609,135,51,ME,0500-0700,1234567,,,50005408,,, +9590,IRN,bs,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,2120-2220,1234567,,,50022959,,, +9590,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAm,0100-0300,1234567,,,50005410,,, +9590,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SAm,2300-0100,1234567,,,50005410,,, +9590,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,1500-1600,1234567,,,50005410,,, +9590,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,EEu,1200-1300,1234567,,,50022958,,, +9590,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1100-1200,1234567,,,50005409,,, +9590,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0130-0230,1234567,,,22100050,,, +9590,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0430-0630,1234567,,,22100050,,, +9590,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0630-0730,1234567,,,22100050,,, +9590,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0730-0830,1234567,,,22100050,,, +9590,MYA,po,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0230-0330,1234567,,,22100050,,, +9590,MYA,sh,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0830-0930,1234567,,,22100050,,, +9595,IND,ru,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,ND,6235,85,95,,1615-1715,1234567,,,50016132,,, +9595,IND,ur,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,334,6235,85,95,PAK,0015-0430,1234567,,,50016132,,, +9595,IND,ur,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,250,334,6248,85,96,,0015-0430,1234567,,,50016131,,, +9595,IND,en,AIR Home News,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,,1135-1140,1234567,,,50010984,,, +9595,IND,hi,AIR Home News,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,,1130-1135,1234567,,,50010984,,, +9595,IND,ne,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,NPL,0700-0800,1234567,,,50016131,,, +9595,IND,pa,AIR Home News,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,,0810-0820,1234567,,,50010984,,, +9595,IND,ur,AIR Home News,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,,0820-0830,1234567,,,50010984,,, +9595,IND,ur,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,PAK,0830-1130,1234567,,,50016131,,, +9595,RRW,ti,FEBA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,EAf,1730-1800,1234567,,,50023778,,, +9595,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,1900-2300,12345..,,,50018409,,, +9595,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,2100-2200,12345..,,,50018409,,, +9595,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,ENA,2300-2400,.....6.,,,50018409,,, +9595,IND,ru,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,325,7561,97,106,EEu,1615-1715,1234567,,,50016619,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,1200-1230,123456,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,1230-1330,12345..,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,1330-1345,.23.5..,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,1345-1400,...45..,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,2155-2225,....56.,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,2225-1200,1234567,,,40000942,,, +9600,ROU,en,R Romania Int.,D,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,1,,1587,104,73,WEu,0630-0700,1234567,,,50022964,,, +9600,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,2000-2200,1234567,,,50005426,,, +9600,CHN,fa,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,ME,1500-1530,1234567,,,50005426,,, +9600,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0300-0800,1234567,,,40001017,,, +9600,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0800-1100,1.3.567,,,40001017,,, +9600,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1100-1157,1234567,,,40001017,,, +9600,CHN,bn,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,150,255,7712,60,112,SAs,1300-1400,1234567,,,50010351,,, +9600,CUB,es,R Rebelde,,Bauta/Corralillo (ch),22.951111,-82.546111,,100,,7945,284,117,,1100-1400,1234567,,,40000945,,, +9600,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1200-1300,1234567,,,50005425,,, +9600,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,AFG,1600-1700,1234567,,,50022962,,, +9600,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1400-1500,1234567,,,50022963,,, +9600,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,0100-0200,1234567,,,50022963,,, +9600,PHL,vi,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,SEA,2315-2400,1234567,,,50005428,,, +9600,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,FE,2200-2230,1234567,,,50005428,,, +9600,MEX,es,XEYU-OC R UNAM,,Mxico D.F/Ticomn (dif),19.510833,-99.113889,,1,,9314,294,145,,0000-2400,1234567,,,34900003,,, +9605,E,en,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,168,1547,213,47,WAf,1900-2000,12345..,,,50018414,,, +9605,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,110,1547,213,47,ME,2000-2100,12345..,,,50018414,,, +9605,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,167,7046,290,104,260,0100-0200,1......,,,50014372,,, +9605,USA,es,KBS World R,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,167,7046,290,104,SAm,0100-0200,1234567,,,50020636,,, +9605,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023779,,, +9605,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1800-2000,1234567,,,50022966,,, +9605,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,304,11578,41,128,,1500-1600,1234567,,,50020637,,, +9605,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1400-1500,1234567,,,50022967,,, +9610,D,it,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,180,445,80,42,Eu,1000-1100,......7,,,50018422,,, +9610,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,500,290,2469,114,55,As,2130-2230,1234567,,,50008424,,, +9610,TUR,it,Voice of Turkey,,Emirler,39.401389,32.855833,,500,290,2469,114,55,,1400-1430,1234567,,,50008424,,, +9610,IRN,ku,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,0420-0520,1234567,,,50022969,,, +9610,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0200-0300,1234567,,,50022968,,, +9610,CHN,hr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1700-1800,1234567,,,50022968,,, +9610,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1500,1234567,,,50022968,,, +9610,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,286,7773,50,115,,0400-0500,1234567,,,40000948,,, +9610,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,286,7773,50,115,,0300-0400,1234567,,,40000948,,, +9610,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1500-1600,1234567,,,50005441,,, +9610,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,0000-0100,1234567,,,50005441,,, +9610,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,0100-0200,1234567,,,50005441,,, +9615,CHN,de,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,WEu,1800-2000,1234567,,,50022970,,, +9615,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,59,7046,290,104,,0515-0530,.....6.,,,50018426,,, +9615,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,59,7046,290,104,,0600-0700,.....67,,,50018426,,, +9615,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,85,7046,290,104,,0500-0600,.....67,,,50018426,,, +9615,ALS,en,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1000-1100,1234567,,,50018423,,, +9615,ALS,en,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1200-1300,1234567,,,50018423,,, +9615,ALS,zh,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1100-1200,1234567,,,50018423,,, +9615,ALS,zh,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1400-1500,1234567,,,50018423,,, +9615,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,286,7773,50,115,,1200-1300,1234567,,,36201076,,, +9615,B,pt,ZYE959 Rdio Cultura Brasil,,So Paulo (SP),-23.512461,-46.562467,,7.5,20,9853,227,138,,0800-0300,1234567,,,36902741,,, +9620,D,ja,NHK R Japan,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0200-0400,1234567,,,50022972,,, +9620,G,fr,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,CAf,2100-2130,12345..,,,50023780,,, +9620,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,SAm,2300-0500,1234567,,,50009767,,, +9620,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,J,2300-2400,1234567,,,50022973,,, +9620,TUR,fr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,EAf,1830-1930,1234567,,,50022974,,, +9620,IRN,bn,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1420-1520,1234567,,,50022971,,, +9620,CHN,ha,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NIG,1630-1730,1234567,,,50005456,,, +9620,CHN,ps,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,AFG,1500-1600,1234567,,,50005456,,, +9620,STP,bm,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,2130-2200,12345..,,,50022975,,, +9620,IND,ar,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,1730-1945,1234567,,,50008433,,, +9620,IND,bal,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,PAK,1500-1600,1234567,,,50008433,,, +9620,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,1615-1730,1234567,,,50008433,,, +9620,IND,fr,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,WAf,1945-2030,1234567,,,50008433,,, +9620,IND,sd,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,PAK,1230-1500,1234567,,,50008433,,, +9620,IND,sd,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,PAK,0100-0200,1234567,,,50008433,,, +9620,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,162,7773,50,113,,0900-1605,1234567,,,40000893,,, +9620,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,162,7773,50,113,,2155-0105,1234567,,,40000893,,, +9620,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,0105-0600,1234567,,,40000951,,, +9620,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,0600-0900,12.4567,,,40000951,,, +9625,RUS,de,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,0900-1200,1234567,,,50022976,,, +9625,RUS,en,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,0800-1400,1234567,,,50022976,,, +9625,RUS,ru,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,0800-0900,1234567,,,50022976,,, +9625,RUS,ru,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,1200-1400,1234567,,,50022976,,, +9625,J,en,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,175,9208,36,120,Oc,1000-1030,1234567,,,50005463,,, +9625,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,175,9208,36,120,Oc,2000-2100,1234567,,,50005463,,, +9625,TWN,vi,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,300,250,9489,58,121,SEA,1400-1500,1234567,,,50013340,,, +9625,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,0700-1200,12345..,,,50005462,,, +9625,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,1500-1600,12345..,,,50005462,,, +9625,AFS,loz,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,1300-1400,12345..,,,50005462,,, +9625,AFS,ny,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,1200-1300,12345..,,,50005462,,, +9625,AFS,pt,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,1400-1500,12345..,,,50005462,,, +9625,PLW,id,NHK R Japan,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,SEA,1115-1200,1234567,,,50020644,,, +9630,AUT,ha,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,NIG,0500-0530,1234567,,,50022977,,, +9630,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,236,6812,67,105,,0900-1200,1234567,,,40000954,,, +9630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1400-1700,1234567,,,36200378,,, +9630,CHN,mn,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1300-1400,1234567,,,36200378,,, +9630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0100-0600,1234567,,,36200378,,, +9630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0600-0900,12.4567,,,36200378,,, +9630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0900-1300,1234567,,,36200378,,, +9630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1700-1705,1234567,,,36200378,,, +9630,B,pt,ZYE954 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,10,60,9721,226,136,,0700-0200,1234567,817,,40000955,,, +9635,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,CAf,1930-1945,1234567,,,50022978,,, +9635,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EAf,1800-1930,1234567,,,50022978,,, +9635,MLI,bm,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,0800-1700,1234567,,,5700001,,, +9635,MLI,bm,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,1710-1800,1234567,,,5700001,,, +9635,MLI,fr,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,1700-1710,1234567,,,5700001,,, +9635,IND,sd,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,312,6367,85,97,PAK,0100-0200,1234567,,,50016628,,, +9635,IND,sd,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,320,7561,97,106,,0100-0200,1234567,,,50014831,,, +9635,VTN,vi,VOV1,,Sơn Ty (hno),21.2,105.366667,,100,145,8749,70,123,,2145-1600,1234567,8,,50013582,,, +9635,VTN,vi,VOV1,,Sơn Ty (hno),21.2,105.366667,,100,145,8749,70,123,Oc,2145-1700,1234567,8,,50013582,,, +9635,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,325,9364,56,125,FE,2200-2300,1234567,,,50009769,,, +9640,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,SEu,2100-2300,1234567,,,50005481,,, +9640,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0400-0500,1234.67,,,50018435,,, +9640,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,230,7939,284,116,,2300-2400,12345..,,,50018433,,, +9640,KOR,vi,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,225,8663,46,119,SEA,1500-1600,1234567,,,50005483,,, +9640,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,1400-1500,1234567,,,50005483,,, +9640,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,1600-1700,1234567,,,50005483,,, +9640,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,1300-1400,.....67,,,50022979,,, +9645,D,ar,VoA Darfur,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1800-1830,1234567,,,50022981,,, +9645,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,326,1205,156,45,,0950-1030,......7,,,50005490,,, +9645,CVA,Ang,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,114,1205,156,45,SEu,1100-1130,......7,,,50005490,,, +9645,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,114,1205,156,45,CEu,0745-0805,123456,,,50005490,,, +9645,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,114,1205,156,45,ME,0500-0530,1234567,,,50005490,,, +9645,CVA,ro,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,114,1205,156,45,EEu,0710-0830,......7,,,50005490,,, +9645,UAE,ug,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,0100-0200,1234567,,,50022982,,, +9645,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1200-1300,1234567,,,50005487,,, +9645,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1100-1200,1234567,,,50005487,,, +9645,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0200,1234567,,,50023781,,, +9645,CHN,fr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,WAf,1830-2030,1234567,,,50005488,,, +9645,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1400-1700,1234567,,,36200379,,, +9645,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1300-1400,1234567,,,36200379,,, +9645,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0100-0600,1234567,,,40000957,,, +9645,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0600-0830,1.34567,,,40000957,,, +9645,THA,bo,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0000-0100,1234567,,,50022983,,, +9645,PHL,kac,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,2330-2400,1234567,,,50005491,,, +9645,PHL,kac,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,2330-2357,1234567,,,50005491,,, +9645,B,pt,ZYE957 Rdio Bandeirantes,,So Paulo/Jardim Santa Emilia (SP),-23.645956,-46.601278,,7.5,30,9868,227,138,,0000-2400,1234567,37,,40000958,,, +9650,ROU,es,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,CAm,0300-0400,1234567,,,50022986,,, +9650,ROU,fr,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,0600-0630,1234567,,,50022986,,, +9650,TUR,es,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,CAm,0200-0300,1234567,,,50022987,,, +9650,KRE,ja,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,109,8231,44,116,J,0700-1300,1234567,,,50016137,,, +9650,KRE,ja,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,109,8231,44,116,J,2100-2400,1234567,,,50016137,,, +9650,CHN,en,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1500-1600,1234567,,,50022984,,, +9650,AFS,af,SABC R Sonder Grense,,Meyerton (SABC) (GT),-26.600933,28.140833,,100,275,9005,160,124,,0800-1700,1234567,,,40000959,,, +9650,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1630-1700,1234567,,,50022985,,, +9650,GUM,ru,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,Sib,1330-1400,1234567,,,50022988,,, +9655,D,ku,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,ME,1700-1800,1234567,,,50022993,,, +9655,ROU,ar,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,280,1587,104,48,ME,1500-1600,1234567,,,50005504,,, +9655,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,280,1587,104,48,SEu,1600-1700,1234567,,,50005504,,, +9655,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,500,72,2469,114,55,Eu,0400-0500,1234567,,,50007953,,, +9655,EGY,it,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,315,3170,130,65,,1800-1900,1234567,,,50019539,,, +9655,EGY,it,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,Eu,1800-1900,1234567,,,50022990,,, +9655,IRN,sq,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,2020-2120,1234567,,,50022992,,, +9655,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1300-1400,1234567,,,50022989,,, +9655,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1200-1300,1234567,,,50022989,,, +9655,OMA,hi,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,SAs,1600-1630,1234567,,,50022991,,, +9655,ALS,en,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,,7424,348,111,FE,1500-1600,1234567,,,50023782,,, +9655,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,,7424,348,111,FE,0800-0900,1234567,,,50023782,,, +9655,ALS,zh,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,,7424,348,111,FE,0900-1000,1234567,,,50023782,,, +9655,CHN,tr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1900-2000,1234567,,,50005500,,, +9655,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,200,8246,70,113,,0600-0800,1234567,,,50005500,,, +9655,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,2355-0100,1234567,,,40000961,,, +9655,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,0200-0300,1234567,,,50005500,,, +9655,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1400-1500,1234567,,,50005500,,, +9660,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1400,1234567,,,50023783,,, +9660,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-0300,1234567,,,50023783,,, +9660,MDG,en,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0300-0330,1234567,,,50022994,,, +9660,MDG,sw,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0330-0345,......7,,,50022994,,, +9660,MDG,sw,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0330-0400,123456,,,50022994,,, +9660,TWN,th,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,1400-1600,1234567,,,50022309,,, +9660,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,267,9444,57,125,FE,1000-1400,1234567,,,50001852,,, +9660,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,267,9444,57,125,FE,2300-0300,1234567,,,50001852,,, +9660,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,,2100-0800,1234567,,,50017379,,, +9660,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,0000-0800,1234567,,,50017379,,, +9660,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,2100-2400,1234567,,,50017379,,, +9665,E,en,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,50,1547,213,49,Eu,1900-2000,12345..,,,50009777,,, +9665,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,50,1547,213,49,Eu,1800-1900,12345..,,,50009777,,, +9665,TUR,ar,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,1500-1600,1234567,,,50022997,,, +9665,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023784,,, +9665,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2155-0005,1234567,,,36201068,,, +9665,KRE,ko,KCBS Chosun Jungang Pangsong,,Kanggye (cha),40.966667,126.583333,,50,ND,8171,43,122,,2000-1800,1234567,,,50016141,,, +9665,CHN,si,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,CLN,1400-1500,1234567,,,50022995,,, +9665,AFS,sw,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0430-0500,1234567,,,50022996,,, +9665,B,pt,ZYE890 Voz Missionria,,Florianpolis/Rua Ângelo La Porta (SC),-27.587692,-48.539111,,10,30,10345,227,138,,1100-0600,1234567,75,,40000965,,, +9670,D,bo,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1400-1500,1234567,,,50023001,,, +9670,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0300,1234567,,,50023785,,, +9670,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023785,,, +9670,CHN,ha,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,NIG,1630-1730,1234567,,,50022998,,, +9670,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,1900-2200,1234567,,,50023000,,, +9670,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,2330-2400,1234567,,,50005528,,, +9670,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,2300-2357,1234567,,,50005528,,, +9675,CVA,so,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0330-0400,1234567,,,50023002,,, +9675,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,ND,4552,116,76,,0300-1500,1234567,,,50017088,,, +9675,ARS,tr,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,ME,1800-2100,1234567,,,50023786,,, +9675,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0600-0900,1.34567,,,40000968,,, +9675,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0900-1000,1234567,,,40000968,,, +9675,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,2300-0600,1234567,,,40000968,,, +9675,CHN,lo,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1430-1530,1234567,,,50005533,,, +9675,B,pt,ZYE971 Rdio Cano Nova,,Cachoeira Paulista/Santa Cruz (SP),-22.644656,-45.076983,,10,20,9695,226,136,,0000-2400,1234567,882,,40000970,,, +9675,PRU,es,OAZ4X Pacfico R,,Lima/El Agustino (lim),-12.038833,-76.98175,,5,,10617,257,142,,0000-2400,1234567,80,,37000049,,, +9677,AZE,az,Ictimai R,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,0800-1200,1234567,6,,50022310,,, +9677,AZE,az,Ictimai R,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,1300-1600,1234567,6,,50022310,,, +9677,AZE,az,Voice of Justice,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,0600-0634,..3..6.,6,,50020003,,, +9677,AZE,az,Voice of Justice,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,1400-1434,.2..5..,6,,50020003,,, +9677,AZE,az,Voice of Talyshistan,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,0900-1000,1234567,6,,50020668,,, +9677,AZE,az,Voice of Talyshistan,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,1200-1300,1234567,6,,50020668,,, +9677,AZE,az,Voice of Talyshistan,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,1500-1600,1234567,6,,50020668,,, +9680,CVA,fr,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Af,2100-2130,12345..,,,50023004,,, +9680,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,,0900-1000,1234567,,,50018460,,, +9680,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,,1100-1200,1234567,,,50018460,,, +9680,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,,1500-1600,1234567,,,50018460,,, +9680,ALS,zh,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1300-1400,1234567,,,50018460,,, +9680,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1700,1234567,,,50023787,,, +9680,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,,9375,56,120,FE,1100-1700,1234567,,,50005542,,, +9680,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,352,9375,56,120,,1100-1700,....56.,,,50005542,,, +9680,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,352,9375,56,120,,1100-1705,1234..7,,,50005542,,, +9680,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1200-1400,1234567,,,50023003,,, +9680,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1400-1600,1234567,,,50023003,,, +9680,INS,en,RRI Pro-4,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,75,11281,86,127,,0800-0820,..3.5..,6,,40000972,,, +9680,INS,id,RRI Pro-4,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,75,11281,86,127,,2200-1500,1234567,6,,40000972,,, +9685,D,en,PanAmerican Broadcasting,,Nauen (brb),52.647778,12.908611,,250,155,445,80,38,NAf,1930-2000,......7,,,50018465,,, +9685,EGY,ru,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,5,3024,131,63,EEu,1900-2000,1234567,,,50020671,,, +9685,CHN,pt,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,SAm,2200-2300,1234567,,,50005550,,, +9685,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,EEu,1200-1300,1234567,,,50005551,,, +9685,CHN,VN,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,1300-1400,1234567,,,50005552,,, +9685,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023788,,, +9685,CHN,ha,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,NIG,1730-1830,1234567,,,50005549,,, +9685,CHN,vi,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,100,,7712,60,114,SEA,1400-1500,1234567,,,50023005,,, +9685,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0055-0615,1234567,,,36201069,,, +9685,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,300,9375,56,125,FE,2300-2400,1234567,,,50005556,,, +9690,D,ku,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,ME,0500-0600,1234567,,,50023009,,, +9690,AUT,ha,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,90,849,119,41,NIG,1900-1930,1234567,,,50020674,,, +9690,E,en,China R Int.,,Noblejas (CAM-TO),39.9575,-3.430556,,350,290,1547,213,47,CAm,0300-0400,1234567,,,50005561,,, +9690,E,zh,China R Int.,,Noblejas (CAM-TO),39.9575,-3.430556,,350,290,1547,213,47,CAm,0200-0300,1234567,,,50005561,,, +9690,E,SEF,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,290,1547,213,49,NAm,0415-0445,.2.....,,,50009782,,, +9690,LTU,bo,R Free Asia,,Kaunas/Sitkūnai (Kau),55.043611,23.807778,,100,,1191,67,49,FE,1000-1100,1234567,,,50023007,,, +9690,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,37,1660,112,49,SEu,1700-1800,1234567,,,50005569,,, +9690,RUS,,GTRK Tatarstan-Na Volne Tatarstana,,Samara/Zhygulevsk (SA),53.274167,50.230278,,250,58,2910,70,62,,0610-0700,1234567,,,50021694,,, +9690,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,0900-1500,1234567,,,50016147,,, +9690,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,WAf,2000-2030,1234567,,,50016147,,, +9690,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,WAf,2000-2100,1234567,,,50016147,,, +9690,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,WAf,2030-2130,1234567,,,50016147,,, +9690,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,0800-0900,1234567,,,50016147,,, +9690,NIG,ig,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,1700-1730,1234567,,,50016147,,, +9690,NIG,sw,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,1600-1630,1234567,,,50016147,,, +9690,NIG,yo,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,1630-1700,1234567,,,50016147,,, +9690,UAE,ug,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,0100-0200,1234567,,,50023008,,, +9690,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,1330-1500,1234567,,,50016146,,, +9690,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,58,7561,97,106,SEA,2245-0045,1234567,,,50016146,,, +9690,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023789,,, +9690,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50023789,,, +9690,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,CAm,2200-0200,1234567,,,50023790,,, +9690,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,WNA,1100-1500,1234567,,,50023790,,, +9690,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1100-1200,1234567,,,36201077,,, +9690,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1500-1600,1234567,,,50005560,,, +9690,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,0200-0300,1234567,,,50014853,,, +9690,KOR,vi,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,0100-0200,1234567,,,50014853,,, +9690,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,304,11578,41,128,,1800-1900,1234567,,,50020675,,, +9695,UZB,ru,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,Sib,1330-1400,1234567,,,50023013,,, +9695,UAE,ur,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0300-0330,1234567,,,50023015,,, +9695,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,IRN,0330-0430,1234567,,,50023014,,, +9695,CHN,bg,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,310,8886,55,116,SEE,1830-1900,1234567,,,50005575,,, +9695,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,,8886,55,116,FE,2300-2400,1234567,,,50005575,,, +9695,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,ME,1730-1830,1234567,,,50023012,,, +9695,PHL,lo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,SEA,1230-1300,1234567,,,50020681,,, +9695,B,pt,ZYE245 Rdio Rio Mar,,Manaus (AM),-3.121725,-60.04205,,7.5,70,8712,249,134,,0800-2315,1234567,37,,40000976,,, +9700,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,1900-2200,9999999,,,50022311,,, +9700,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,CEu,0500-0700,1234567,,,50023018,,, +9700,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,0500-0900,1234567,,,50023017,,, +9700,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,2200-0100,1234567,,,50023017,,, +9700,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,FE,0915-0945,1234567,,,50023017,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,0500-0600,123456,4,,50005591,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,0600-0700,1234567,4,,50005591,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,0700-1800,9999999,4,,50005591,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,1800-2200,1234567,4,,50005591,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,2200-2300,123456,4,,50005591,,, +9705,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1500-1600,1234567,,,50023020,,, +9705,ETH,am,ERTA Ethiopia National R,,Geja Dera (aab),8.761111,38.6625,,100,,5636,137,93,EAf,0300-2100,1234567,,,50005588,,, +9705,ETH,en,ERTA Ethiopia National R,,Geja Dera (aab),8.761111,38.6625,,100,,5636,137,93,EAf,1200-1300,12345..,,,50005588,,, +9705,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0330-0530,1234567,0,,36200213,,, +9705,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1030-1100,1.3.567,0,,36200213,,, +9705,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1100-1230,1234567,0,,36200213,,, +9705,IND,en,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,2245-0045,1234567,,,50016150,,, +9705,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1400-1500,1234567,,,50023021,,, +9710,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,NAm,0320-0420,1234567,,,50023022,,, +9710,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SAm,0100-0300,1234567,,,50005594,,, +9710,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,315,7939,284,112,Car,2100-2300,1234567,,,50016152,,, +9710,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,1100-1805,1234567,,,40000981,,, +9710,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,2025-2330,1234567,,,40000981,,, +9710,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,1800-2000,1234567,,,50016151,,, +9710,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,0700-0900,1234567,,,50016151,,, +9710,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,1000-1100,.....67,,,50016151,,, +9710,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,0900-1000,1234567,,,50016151,,, +9710,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,1000-1100,12345..,,,50016151,,, +9715,AUT,en,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,1800-1815,....5..,,,50023023,,, +9715,AUT,en,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,1800-1830,...4...,,,50023023,,, +9715,AUT,en,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,1800-2000,.....67,,,50023023,,, +9715,CVA,uz,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,CAs,1500-1530,1234567,,,50023025,,, +9715,IRN,ur,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,295,4724,102,77,SAs,1250-1420,1234567,,,50019685,,, +9715,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,ND,4552,116,83,ME,0300-1000,1234567,,,50017632,,, +9715,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,267,11578,41,128,,1400-1500,1234567,,,50020688,,, +9720,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,NAm,0200-0330,1234567,,,50022312,,, +9720,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,NAm,0045-0200,1234567,,,50022312,,, +9720,CHN,bg,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEE,2030-2100,1234567,,,50005602,,, +9720,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1500-1600,1234567,,,50005602,,, +9720,CHN,zh,CNR 2,,Baoji (SA),34.65,106.966667,,150,,7688,60,112,,0000-0600,1234567,,,40000984,,, +9720,CHN,zh,CNR 2,,Baoji (SA),34.65,106.966667,,150,,7688,60,112,,0600-0900,12.4567,,,40000984,,, +9720,CHN,zh,CNR 2,,Baoji (SA),34.65,106.966667,,150,,7688,60,112,,0900-1000,1234567,,,40000984,,, +9720,CHN,tl,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,PHL,1200-1230,1234567,,,50023026,,, +9720,CLN,hi,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,350,8200,97,119,SAs,1115-1130,1234567,,,50016162,,, +9720,CLN,hi,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,350,8200,97,119,SAs,1145-1200,1234567,,,50016162,,, +9720,CLN,ko,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,FE,1700-1900,1234567,,,50023027,,, +9720,CLN,ml,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,350,8200,97,119,SAs,1130-1145,1234567,,,50016162,,, +9720,CLN,ta,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,350,8200,97,119,SAs,1200-1215,1234567,,,50016162,,, +9720,PHL,my,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,2330-2400,1234567,2,,50005605,,, +9720,PHL,my,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,2330-2357,1234567,2,,50005605,,, +9720,PHL,tl,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,350,10171,62,124,280,2300-2330,1234567,2,,50005605,,, +9720,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,345,11707,42,133,CHN,2100-2200,1234567,,,50005607,,, +9720.9,PRU,es,OCX4C R Victoria,,Lima (lim),-12.047222,-77.088889,,1,,10625,257,149,,2145-1200,1234567,-9720.9,,40000985,,, +9725,ROU,zh,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,FE,1400-1430,1234567,,,50023028,,, +9725,UAE,ug,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,1600-1700,1234567,,,50023029,,, +9725,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023791,,, +9725,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0200-0230,1234567,,,50023792,,, +9725,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0300-0330,1234567,,,50023792,,, +9730,F,es,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAm,0200-0300,1234567,,,50023793,,, +9730,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0300-0700,1234567,3,,8400002,,, +9730,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0930-1100,1234567,3,,8400002,,, +9730,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1400-1800,1234567,3,,8400002,,, +9730,CHN,pt,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,1900-2000,1234567,,,50005616,,, +9730,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1500-1600,1234567,,,50005616,,, +9730,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,173,5347,76,91,SAs,1400-1500,1234567,,,50005616,,, +9730,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,1300-1400,1234567,,,50005614,,, +9730,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2155-0105,1234567,,,36201275,,, +9730,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0400-0500,1234567,,,50016155,,, +9730,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0600-0700,1234567,,,50016155,,, +9730,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0500-0600,1234567,,,50016155,,, +9730,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1200-1300,1234567,,,50005615,,, +9730,MYA,en,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0230-0330,1234567,,,22100008,,, +9730,MYA,en,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0700-0730,1234567,,,22100008,,, +9730,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0130-0230,1234567,,,22100008,,, +9730,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0330-0700,1234567,,,22100008,,, +9730,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0730-1000,1234567,,,22100008,,, +9730,VTN,VN,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1700-1800,1234567,,,50005621,,, +9730,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1600-1630,1234567,,,50005621,,, +9730,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1800-1830,1234567,,,50005621,,, +9730,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1900-1930,1234567,,,50005621,,, +9730,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2030-2100,1234567,,,50005621,,, +9730,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1830-1900,1234567,,,50005621,,, +9730,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1930-2000,1234567,,,50005621,,, +9730,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2100-2130,1234567,,,50005621,,, +9730,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1630-1700,1234567,,,50005621,,, +9730,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2000-2030,1234567,,,50005621,,, +9730,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0000-0030,1234567,,,50021695,,, +9730,MYA,my,Myanmar R-Educational,,Yangon/Yay Kuu (ygn),16.863194,96.161778,,50,356,8519,80,125,,0730-1000,1234567,84,,40000988,,, +9735,TWN,id,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,,9489,58,121,INS,1400-1500,1234567,,,50013345,,, +9735,TWN,ja,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,45,9489,58,121,J,1100-1200,1234567,,,50013345,,, +9735,TWN,ja,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,45,9489,58,121,J,1300-1400,1234567,,,50013345,,, +9735,TWN,id,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,INS,1200-1300,1234567,,,50021697,,, +9735,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,INS,1000-1030,1234567,,,50021697,,, +9735,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,INS,1030-1100,1234567,,,50021697,,, +9740,IRN,bn,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1620-1650,1234567,,,50023031,,, +9740,IRN,fa,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0250-0620,1234567,,,50023031,,, +9740,IRN,kk,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,1520-1620,1234567,,,50023032,,, +9740,KOR,es,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,Eu,1800-1900,1234567,,,50016455,,, +9740,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,290,8663,46,119,ME,1600-1800,1234567,,,50016455,,, +9740,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,0900-1200,1234567,,,50023033,,, +9740,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,1200-1400,1234567,,,50023033,,, +9740,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,130,13,10381,83,127,INS,0000-0200,1234567,,,50009792,,, +9740,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,130,13,10381,83,127,SEA,1100-1500,1234567,,,50009792,,, +9745,EGY,tr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,ME,1700-1900,1234567,,,50023034,,, +9745,BHR,ar,R Bahrain,,Abu Hayan (ajn),26.029444,50.616667,,100,,4682,111,84,ME,0000-2400,1234567,,,50007782,,, +9745,CHN,eo,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1930-2030,1234567,,,50005630,,, +9745,TWN,zh,Han Sheng GD Kuanghua zhi Sheng,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,250,300,9359,56,121,FE,0745-0005,1234567,,,50001982,,, +9750,ARM,es,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,258,3205,98,62,SAm,0000-0400,1234567,,,50019309,,, +9750,ARM,pt,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,258,3205,98,62,SAm,2200-2400,1234567,,,50019309,,, +9750,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,300,286,4236,111,75,NAf,1100-1600,1234567,,,50016161,,, +9750,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0300-0400,1234567,,,40000993,,, +9750,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,1400-1500,1234567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0400-0600,1234567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0600-0950,1.34567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0950-1400,1234567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,1500-1605,1234567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,2150-0300,1234567,,,40000993,,, +9750,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,0700-1700,1234567,,,50005634,,, +9755,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,ME,1940-2000,1234567,,,50023035,,, +9755,CVA,am,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1800-1900,1234567,,,50023038,,, +9755,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,ME,2140-2200,1234567,,,50023035,,, +9755,CVA,ti,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1900-1930,12345..,,,50023038,,, +9755,IRN,he,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0420-0450,1234567,,,50019688,,, +9755,CHN,en,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1430-1500,1234567,,,40000995,,, +9755,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1000-1430,1234567,,,40000995,,, +9755,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1500-1605,1234567,,,40000995,,, +9755,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2100-0200,1234567,,,40000995,,, +9755,BOT,om,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1730-1800,12345..,,,50023037,,, +9755,AFS,pt,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,AGL,1700-1730,1234567,,,50023036,,, +9760,D,tg,R Liberty,,Biblis (hes),49.687222,8.490278,,100,85,306,151,40,,1500-1600,1234567,,,50018495,,, +9760,D,ku,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0500-0600,1234567,,,50023040,,, +9760,G,en,KBS World R,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,105,622,276,43,WEu,1100-1130,.....6.,,,50005646,,, +9760,G,en,NHK R Japan,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,105,622,276,43,Eu,1100-1130,....5..,,,50010391,,, +9760,G,ru,NHK R Japan,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,105,622,276,43,Eu,1130-1200,....5..,,,50010391,,, +9760,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,Oc,1200-1300,1234567,,,50005643,,, +9760,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1600-1700,1234567,,,50023039,,, +9760,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,230,9294,36,128,,0000-0900,.....67,,,40000997,,, +9760,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,230,9294,36,128,,2300-2400,1234567,,,40000997,,, +9760,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,50,9294,36,128,,0000-0800,12345..,,,40000997,,, +9765,D,ha,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,WAf,2030-2100,12345..,,,50023794,,, +9765,ARM,es,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,258,3205,98,62,SAm,0400-0500,1234567,,,50018501,,, +9765,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,1300-1500,1234567,,,50005655,,, +9765,CHN,fa,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,IRN,1500-1530,1234567,,,50023042,,, +9765,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,0000-0100,1234567,,,50005654,,, +9765,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,2300-2400,1234567,,,50005654,,, +9765,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,100,,18351,32,155,Oc,0800-1100,1234567,,,50023043,,, +9765,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,100,,18351,32,155,SOc,1551-1850,1234567,,,50023043,,, +9770,D,ps,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,AFG,1630-1730,1234567,,,50023047,,, +9770,F,en,NHK R Japan,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAf,0500-0530,1234567,,,50023044,,, +9770,AUT,dyu,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WAf,2000-2030,1234567,,,50023045,,, +9770,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1900-2000,1234567,,,50005659,,, +9770,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,1530-1630,1234567,,,50023046,,, +9770,KOR,vi,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,1030-1130,1234567,,,50005664,,, +9770,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,1130-1230,1234567,,,50005664,,, +9774,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,0400-0600,1234567,,,50002027,,, +9774,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,0800-1000,1234567,,,50002027,,, +9774,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,1100-1300,1234567,,,50002027,,, +9774,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,2300-0100,1234567,,,50002027,,, +9775,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0330-0430,.....67,,,50023049,,, +9775,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1430-1500,1234567,,,40001000,,, +9775,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0855-1430,1234567,,,40001000,,, +9775,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1500-1605,1234567,,,40001000,,, +9775,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,2100-0200,1234567,,,40001000,,, +9775,XUU,ko,R Free Chosun,,XUU,,,-,,,?,?,400,,1400-1600,1234567,,,50023795,,, +9780,E,es,RNE R Exterior,D,Noblejas (CAM-TO),39.9575,-3.430556,,350,50,1547,213,47,Eu,0500-0900,1234567,,,50009799,,, +9780,CVA,ar,VoA Darfur,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1900-1930,1234567,,,50023051,,, +9780,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,1800-1900,1234567,,,50023050,,, +9780,YEM,ar,Yemen R,,Sana'a (san),15.381111,44.196667,,100,,5267,127,90,ME,1300-1500,1234567,,,50023797,,, +9780,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023796,,, +9780,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,250,340,8219,99,115,,1800-1900,1234567,,,50021699,,, +9780,TWN,ja,Furusato no Kaze,,Tainan/Annan (TNS),23.044167,120.168611,,100,,9489,58,125,KRE,1600-1630,1234567,,,50019474,,, +9781,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0200-0600,1234567,,,40001003,,, +9781,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0600-0900,1.34567,,,40001003,,, +9785,TUR,kk,Voice of Turkey,,Emirler,39.401389,32.855833,,500,310,2469,114,55,CAs,1430-1500,1234567,,,50007955,,, +9785,CHN,th,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,191,7808,59,113,,1130-1230,1234567,,,50009447,,, +9785,CHN,th,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,191,7808,59,113,,1330-1430,1234567,,,50009447,,, +9785,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,63,7773,50,115,,1000-1100,1234567,,,36201078,,, +9785,CHN,lo,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1230-1330,1234567,,,50005683,,, +9785,CHN,th,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1130-1230,1234567,,,50005683,,, +9785,CHN,th,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1330-1430,1234567,,,50005683,,, +9785,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,SAs,1500-1600,1234567,,,50023052,,, +9785,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023053,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,CAf,0500-0600,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,EAf,0400-0500,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,WAf,0700-0800,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,WAf,2000-2100,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,WAf,2100-2200,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,155,660,211,37,CAf,1900-2000,1234567,,,50005691,,, +9790,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,52,1660,112,49,SAm,2200-2300,1234567,,,50019695,,, +9790,RUS,ru,Voice of Russia,,Moskva (one of ku,L,se,t) (MV),55.75,37.3,,100,,2044,66,57,CAs,0200-0400,1234567,,,50023056 +9790,RUS,ru,Voice of Russia,,Moskva (one of ku,L,se,t) (MV),55.75,37.3,,100,,2044,66,57,CAs,1700-1900,1234567,,,50023056 +9790,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023798,,, +9790,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,305,7939,284,112,WNA,0300-0400,1234567,,,50005688,,, +9790,CUB,zh,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,305,7939,284,112,WNA,0400-0500,1234567,,,50005688,,, +9790,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,FE,0030-0100,1234567,,,50020027,,, +9790,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1600-1630,1234567,,,50023055,,, +9790,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1630-1700,......7,,,50023055,,, +9790,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1500-1600,1234567,,,50023057,,, +9795,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,1400-1500,1234567,,,50023058,,, +9795,PHL,MON,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,2300-2330,1234567,,,50005704,,, +9795,PHL,lo,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,2330-2400,1234567,,,50005704,,, +9795,PHL,mkh,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,0000-0015,1234567,,,50005704,,, +9795,PHL,vi,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1100-1200,1234567,,,50005704,,, +9795,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023060,,, +9800,F,ff,LWF Sauti Linjilia,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1830-1900,1234567,,,50023061,,, +9800,IRN,hi,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1420-1520,1234567,,,50020728,,, +9800,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,SAm,2300-0100,1234567,,,50005709,,, +9800,IRN,hi,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,0150-0250,1234567,,,50023063,,, +9800,UAE,sw,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0300-0400,1234567,,,50023062,,, +9800,RRW,am,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1600-1700,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,295,0500-0600,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,0405-0500,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,0500-0530,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,2000-2100,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,2100-2200,1234567,,,50005711,,, +9800,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,1200-1300,1234567,,,50005711,,, +9800,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,1700-1800,1234567,,,50005711,,, +9800,RRW,pt,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,SAf,0530-0600,1234567,,,50005711,,, +9800,RRW,pt,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,SAf,1930-2000,1234567,,,50005711,,, +9800,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,265,6406,152,97,EAf,1500-1600,1234567,,,50005711,,, +9800,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,150,180,6406,152,99,EAf,1000-1100,1234567,,,50005711,,, +9800,PHL,ko,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1200-1500,1234567,,,50023064,,, +9800,PHL,ko,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1900-2100,1234567,,,50023064,,, +9805,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,CAf,0600-0630,1234567,,,50005718,,, +9805,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,EEu,1900-2000,1234567,,,50005718,,, +9805,KOR,id,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,225,8663,46,119,INS,1600-1700,1234567,,,50005719,,, +9805,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,0900-1100,1234567,,,50005719,,, +9805,KOR,ko,KBS FM 1,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,FE,0500-0630,1234567,,,50020029,,, +9805,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,225,8663,46,119,INS,2300-2400,1234567,,,50005719,,, +9805,KOR,id,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,INS,2200-2300,1234567,,,50005719,,, +9810,ROU,de,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,307,1660,112,49,Eu,1300-1400,1234567,,,50018532,,, +9810,ROU,ru,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,292,1660,112,49,EEu,1600-1700,1234567,,,50018532,,, +9810,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,NAf,0220-0520,1234567,,,50023066,,, +9810,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1400-1500,1234567,,,50023065,,, +9810,IND,ne,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,65,6235,85,95,NPL,0130-0230,1234567,,,50019475,,, +9810,IND,ta,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,1115-1215,1234567,,,50014205,,, +9810,IND,te,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,1215-1245,1234567,,,50014205,,, +9810,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,0100-0600,1234567,,,40001008,,, +9810,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,0600-0900,12.4567,,,40001008,,, +9810,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,0900-1230,1234567,,,40001008,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0100-0400,1234567,,,50016458,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0400-0500,1234567,,,50016458,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,2100-2300,1234567,,,50016458,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,2300-0100,1234567,,,50016458,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,340,7939,284,116,CAm,2100-0500,1234567,,,50016458,,, +9810,CLN,kar,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SEA,0030-0100,1234567,,,50023067,,, +9810,CLN,my,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SEA,0000-0030,1234567,,,50023067,,, +9810,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,1300-1805,1234567,,,36201065,,, +9810,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,2025-2300,1234567,,,36201065,,, +9810,SNG,ps,BBC WS,,Kranji (nw),1.423056,103.7325,,250,340,10381,83,124,AFG,1500-1600,1234567,,,50020738,,, +9815,D,ar,VoA Darfur,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1900-1930,1234567,,,50023068,,, +9815,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,2030-2100,......7,,,50023070,,, +9815,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,2100-2130,12345..,,,50023070,,, +9815,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,2030-2100,.....6.,,,50023070,,, +9815,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,EAf,2000-2030,1234567,,,50005735,,, +9815,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023069,,, +9820,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,0500-0700,1234567,,,50023073,,, +9820,ARM,ps,BBC WS,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,0300-0330,1234567,,,50023071,,, +9820,UAE,am,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1630-1700,...456.,,,50023799,,, +9820,UAE,ti,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1630-1700,123...7,,,50023799,,, +9820,IND,si,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,100,,6235,85,99,CLN,1300-1500,1234567,,,50021986,,, +9820,CHN,en,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,1430-1500,1234567,,,40001012,,, +9820,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,0800-0900,12.4567,,,40001012,,, +9820,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,1100-1430,1234567,,,40001012,,, +9820,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,1500-1605,1234567,,,40001012,,, +9820,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,2100-0100,1234567,,,40001012,,, +9820,CHN,,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2240-2300,1234567,,,40001013,,, +9820,CHN,ct,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1000-1100,1234567,,,40001013,,, +9820,CHN,th,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1100-1130,12345..,,,40001013,,, +9820,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,0000-0100,12345..,,,40001013,,, +9820,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1100-1130,.....67,,,40001013,,, +9820,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1130-1330,1234567,,,40001013,,, +9820,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2300-2400,1234..7,,,40001013,,, +9820,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,0000-0100,.....67,,,40001013,,, +9820,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1330-1500,1234567,,,40001013,,, +9820,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2300-2400,....56.,,,40001013,,, +9820,B,pt,ZYE952 Rdio Aparecida,,So Paulo (SP),-23.501944,-46.691944,,10,,9858,227,137,,0000-2400,1234567,59,,36902762,,, +9825,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0200-0300,1234567,,,50005741,,, +9825,STP,pt,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,,1700-1800,1234567,,,50021701,,, +9825,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1500,1234567,,,50023800,,, +9825,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023800,,, +9825,PHL,en,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,ME,1730-1930,1234567,,,50023074,,, +9825,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1400-1500,1234567,,,50023077,,, +9825,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2300-2400,1234567,,,50023075,,, +9825,MRA,zh,Voice of America,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1100-1400,1234567,,,50023076,,, +9830,AUT,en,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WAf,2100-2130,1234567,,,50023079,,, +9830,AUT,fa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,IRN,1630-1700,1234567,,,50023079,,, +9830,AUT,fr,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WAf,2030-2100,1234567,,,50023079,,, +9830,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,ME,0430-0500,.....67,,,50023080,,, +9830,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,ME,0500-0600,1234567,,,50023080,,, +9830,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0730-0900,1.34567,,,40001016,,, +9830,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0900-1805,1234567,,,40001016,,, +9830,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,2025-0200,1234567,,,40001016,,, +9835,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,2200-2300,1234567,,,50023082,,, +9835,D,de,HCJB Global,,Nauen (brb),52.647778,12.908611,,100,240,445,80,42,SAm,2300-2330,1234567,,,50019696,,, +9835,IND,ta,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,174,6248,85,100,CLN,0000-0045,1234567,,,50016173,,, +9835,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023801,,, +9835,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,85,9208,36,120,SAm,1700-1800,1234567,,,50005758,,, +9835,MLA,ms,RTM Sarawak FM,,Kajang (slg),3.011111,101.784444,,100,93,10109,84,127,,0000-2400,1234567,,,50013506,,, +9840,D,be,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1500-1700,1234567,,,50023084,,, +9840,D,be,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,75,316,151,40,EEu,1700-1800,1234567,,,50020760,,, +9840,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1400-1500,1234567,,,50023084,,, +9840,G,ru,R Liberty,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EEu,1800-1900,1234567,,,50023085,,, +9840,TUR,ka,Voice of Turkey,,Emirler,39.401389,32.855833,,500,310,2469,114,55,Cau,1100-1200,1234567,,,50008563,,, +9840,UAE,ar,KBS World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,NAf,2000-2100,1234567,,,50023083,,, +9840,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,,1300-1400,.....67,,,50016174,,, +9840,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,,1400-2200,1234567,,,50016174,,, +9840,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,ENA,1300-2100,1234567,,,50016174,,, +9840,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,ENA,2100-2200,12345.7,,,50016174,,, +9840,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Af,0400-0800,1234567,,,50023802,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1000-1030,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1230-1300,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1500-1530,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,2330-2400,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1130-1200,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1330-1400,1234567,,,50005767,,, +9840,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1030-1100,1234567,,,50005767,,, +9840,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1300-1330,1234567,,,50005767,,, +9840,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1430-1500,1234567,,,50005767,,, +9840,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,2300-2330,1234567,,,50005767,,, +9840,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1100-1130,1234567,,,50005767,,, +9840,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1200-1230,1234567,,,50005767,,, +9840,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1400-1430,1234567,,,50005767,,, +9840,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,2200-2230,1234567,,,50005767,,, +9840,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,2230-2300,1234567,,,50005767,,, +9845,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,1030-1805,1234567,,,40001019,,, +9845,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,2025-0100,1234567,,,40001019,,, +9845,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SAs,0100-0200,1234567,,,50023803,,, +9845,BOT,ar,VoA Darfur,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,0300-0330,1234567,,,50023086,,, +9845,MRA,zh,Voice of America,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,310,11575,40,132,,1400-1500,1234567,,,50020762,,, +9850,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,55,1205,156,45,,0610-0745,......7,,,50008570,,, +9850,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,55,1205,156,45,UKR,0715-0915,......7,,,50008570,,, +9850,AUT,be,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,EEu,1500-1528,1......,,,50023089,,, +9850,AUT,ru,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,EEu,1500-1528,0.234567,,,50023089,,, +9850,ARM,ar,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1900-2000,1234567,,,50023088,,, +9850,IRN,bs,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1720-1820,1234567,,,50023087,,, +9850,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,76,5762,180,95,,1900-1930,1234567,,,50020768,,, +9850,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0230-0600,1234567,,,40000556,,, +9850,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0600-0830,1.34567,,,40000556,,, +9850,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,CNA,1100-1300,1234567,,,50016459,,, +9850,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1000-1100,1234567,,,50018555,,, +9850,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1100-1200,1234567,,,50018555,,, +9850,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1200-1300,1234567,,,50018555,,, +9850,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,SEA,1300-1400,1234567,,,50018555,,, +9850,AFS,en,Voice of America,,Meyerton (SW) (GT),-26.585833,28.138889,,250,335,9003,160,120,,1800-1830,1234567,,,50021703,,, +9850,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,,1830-1900,1234567,,,50021702,,, +9850,VTN,do,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,0400-0500,1234567,,,40001020,,, +9850,VTN,hm,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,0500-0530,1234567,,,40001020,,, +9855,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,110,3170,130,65,AUS,2000-2200,1234567,,,2300014,,, +9855,UAE,en,R Australia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,90,5075,109,81,SEA,2200-2400,1234567,,,50011310,,, +9855,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1200-1400,1234567,,,50005781,,, +9855,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,,0300-0430,1234567,,,50021704,,, +9855,PHL,vi,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,SEA,1100-1200,1234567,,,50023091,,, +9855,SNG,si,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,CLN,1630-1700,1234567,,,50023090,,, +9855,SNG,ta,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,CLN,1545-1615,1234567,,,50023090,,, +9860,F,am,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1800-1900,1234567,,,50023095,,, +9860,F,om,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,12345..,,,50023095,,, +9860,CHN,eo,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,SAm,2200-2300,1234567,,,50005792,,, +9860,UAE,ti,Voice of America,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1900-1930,12345..,,,50023094,,, +9860,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,1100-1805,1234567,,,40001022,,, +9860,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,PHL,0000-0100,1234567,,,50023092,,, +9860,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,PHL,0100-0200,1234567,,,50023092,,, +9860,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,SAf,0600-0800,1234567,,,50020773,,, +9860,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1600-1800,1234567,,,50023093,,, +9865,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,ME,2000-2100,1234567,,,50005798,,, +9870,G,ha,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,WAf,0629-0700,1234567,,,50023097,,, +9870,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,0300-0400,1234567,,,50023099,,, +9870,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1420-1720,1234567,,,50020782,,, +9870,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,1800-2300,1234567,,,50023804,,, +9870,IND,hi,AIR Vividh Bharati,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,35,7561,97,106,,0025-0435,1234567,,,40001044,,, +9870,IND,hi,AIR Vividh Bharati,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,35,7561,97,106,,0900-1200,1234567,,,40001044,,, +9870,IND,hi,AIR Vividh Bharati,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,35,7561,97,106,,1245-1740,1234567,,,40001044,,, +9870,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,CAf,0600-0629,1234567,,,50023096,,, +9870,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,1300-1600,1234567,,,50005806,,, +9870,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,CAs,1300-1400,1234567,,,50005806,,, +9870,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,Oc,0800-1100,1234567,,,50023098,,, +9870,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,WOc,1100-1200,1234567,,,50023098,,, +9875,LTU,bo,R Free Asia,,Kaunas/Sitkūnai (Kau),55.043611,23.807778,,100,,1191,67,49,FE,2300-2400,1234567,,,50023101,,, +9875,TJK,bo,R Free Asia,,Orzu (SW) (ktl),37.520833,68.8,,250,110,5010,83,83,,2300-2400,1234567,,,50021705,,, +9875,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1600-1700,1234567,,,50023100,,, +9875,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023805,,, +9875,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1900-2000,1234567,,,50016186,,, +9875,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1800-1900,1234567,,,50016186,,, +9875,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,FE,2300-2400,1234567,,,50016186,,, +9875,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,2000-2100,1234567,,,50016186,,, +9875,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,FE,0700-0900,1234567,,,50016186,,, +9875,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,FE,2100-2300,1234567,,,50016186,,, +9875,VTN,vi,VOV2,,H Nội/Me Tri (hno),20.999028,105.782444,,50,,8793,70,126,,0145-1000,1234567,,,40001027,,, +9875,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,303,11578,41,128,,1800-2000,1234567,,,50020784,,, +9880,ROU,ro,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,Eu,1300-1400,1234567,,,50023105,,, +9880,UAE,bn,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,1400-1500,.2....7,,,50023103,,, +9880,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1100,1234567,,,50023806,,, +9880,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,FE,0800-0900,1234567,,,50005815,,, +9880,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,Sib,1000-1100,1234567,,,50005815,,, +9880,CHN,my,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1100-1200,1234567,,,50005816,,, +9880,CHN,my,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1300-1400,1234567,,,50005816,,, +9880,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1800-1900,1234567,,,50023104,,, +9880,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0900-1100,1234567,,,50023106,,, +9880,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023807,,, +9880,GUM,ko,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,330,11707,42,133,FE,1200-1300,1234567,,,50008598,,, +9885,EGY,ru,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,5,3024,131,63,EEu,1900-2000,1234567,,,50018573,,, +9885,ARS,tg,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,CAs,1700-1800,1234567,,,50023808,,, +9885,ARS,tk,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,CAs,1500-1600,1234567,,,50023808,,, +9885,ARS,uz,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,CAs,1600-1700,1234567,,,50023808,,, +9885,TJK,bo,R Free Asia,,Orzu (SW) (ktl),37.520833,68.8,,250,110,5010,83,83,,0100-0300,1234567,,,50021707,,, +9885,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,Af,0600-0700,1234567,,,50005826,,, +9885,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,,2030-2100,.....67,,,50005826,,, +9890,UAE,en,R Australia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,INS,2200-2330,1234567,,,50023107,,, +9890,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1057-1805,1234567,,,40001030,,, +9890,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2355-0157,1234567,,,40001030,,, +9890,KRE,ar,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1500-1600,1234567,,,50016189,,, +9890,KRE,ar,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1700-1800,1234567,,,50016189,,, +9890,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1600-1700,1234567,,,50016189,,, +9890,GUM,ko,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,FE,2100-2200,1234567,,,50023108,,, +9895,UAE,fr,R Taiwan Int.,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,315,5075,109,84,Eu,1900-2000,1234567,,,50019322,,, +9895,RUS,tt,GTRK Tatarstan-Na Volne Tatarstana,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,CAs,0610-0700,1234567,,,50023110,,, +9895,IRN,ar,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,ME,0220-0520,1234567,,,50023109,,, +9895,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,260,7046,290,104,CAm,0030-0100,1......,,,50020043,,, +9895,USA,es,R Nederland,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0100-0130,.23456.,,,50018578,,, +9900,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,Eu,2115-2245,1234567,,,50023111,,, +9900,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1230-1330,1234567,,,50023113,,, +9900,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1130-1230,1234567,,,50023113,,, +9900,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,1500-1600,1234567,,,50023810,,, +9900,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1345-1430,1234567,,,50023112,,, +9900,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023809,,, +9905,EGY,ar,ERTU Al-Barnameg al-Aam,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,NAm,0200-0700,1234567,,,50018583,,, +9910,TJK,ko,Open R North Korea,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,KRE,1230-1430,1234567,,,50023811,,, +9910,IND,en,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,250,312,6248,85,96,,1530-1545,1234567,,,50010992,,, +9910,IND,en,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,1530-1545,1234567,,,50009824,,, +9910,IND,en,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,325,6367,85,97,Oc,2045-2230,1234567,,,50009824,,, +9910,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,0300-0345,1234567,,,50009824,,, +9910,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,1315-1415,1234567,,,50009824,,, +9910,IND,hi,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,,2245-2400,1234567,,,50009824,,, +9910,IND,hi,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,2300-2400,1234567,,,50009824,,, +9910,IND,ps,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,0215-0300,1234567,,,50009824,,, +9910,IND,ps,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,1415-1530,1234567,,,50009824,,, +9910,IND,ta,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,0000-0045,1234567,,,50009824,,, +9910,IND,fa,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,100,,6235,85,99,AFG,0300-0345,1234567,,,50023812,,, +9910,IND,ps,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,100,,6235,85,99,AFG,0215-0300,1234567,,,50023812,,, +9910,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1130-1145,......7,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,,1100-1230,12345.7,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1100-1130,123456,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1100-1145,123456,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1130-1230,1234567,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1145-1230,1234567,,,50005847,,, +9915,G,en,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,250,180,622,276,39,WAf,1800-2100,1234567,,,50020802,,, +9915,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,,2100-2200,1234567,,,50009826,,, +9915,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,2100-2200,12345..,,,50009826,,, +9915,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023813,,, +9915,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023115,,, +9920,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0200-0300,1234567,,,50023815,,, +9920,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50023814,,, +9920,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,1500-1600,1234567,,,50023116,,, +9920,PHL,BHN,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1230-1300,1.3.5..,,,50020045,,, +9920,PHL,BRU,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,...4.6.,,,50020045,,, +9920,PHL,BT,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,....5..,,,50020045,,, +9920,PHL,CHR,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1230-1300,.2....7,,,50020045,,, +9920,PHL,CRU,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1230-1300,...4.6.,,,50020045,,, +9920,PHL,Chr,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,,1230-1330,.2....7,,,50020045,,, +9920,PHL,EC,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,......7,,,50020045,,, +9920,PHL,JR,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1200-1230,...456.,,,50020045,,, +9920,PHL,RAD,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1200-1230,123...7,,,50020045,,, +9920,PHL,ROG,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,1.3....,,,50020045,,, +9920,PHL,SED,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,.2.....,,,50020045,,, +9920,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023117,,, +9925,BUL,en,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ME,1930-2015,......7,,,50023118,,, +9930,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0400-2000,9999999,,,6800013,,, +9930,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0200-0300,1234567,,,50023817,,, +9930,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,NAm,1400-2400,1234567,,,50020046,,, +9930,USA,en,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,,2000-2400,1234567,,,50020046,,, +9930,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50023816,,, +9930,PLW,VN,Que Me R,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,VTN,1200-1230,....5..,,,50017494,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,0800-0900,12345.7,,,50023818,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,0900-1000,1234567,,,50023818,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,1000-1200,......7,,,50023818,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,1200-1400,.....67,,,50023818,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,345,1200-1230,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,345,1200-1230,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0800-0815,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0800-0830,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0815-0830,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0830-0845,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0830-0900,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0845-0900,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0900-0915,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0900-0915,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0900-1000,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0915-0930,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0915-0930,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-0945,....5..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-0945,..3....,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-0945,1..4...,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-1000,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-1000,.2.....,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0945-1000,..3....,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0945-1000,1..45..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1230-1245,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1230-1245,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1245-1300,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1245-1300,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1300-1315,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1300-1315,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1315-1330,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1315-1330,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1330-1345,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1330-1345,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1345-1400,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1345-1400,.....6.,,,50009829,,, +9930,PLW,ja,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,0800-0900,.....6.,,,50023818,,, +9930,PLW,ja,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0800-0900,.....6.,,,50009829,,, +9930,PLW,vi,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,345,1200-1230,....5..,,,50009829,,, +9935,GRC,,ERA Makedonias 102 FM,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,250,285,2024,132,53,,1100-1650,1234567,,,40001037,,, +9935,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1700-2400,1234567,,,50023819,,, +9935,MRA,VN,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023820,,, +9940,MDA,A,E,R Miraya,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,EAf,0300-0600,1234567,,,50023120,, +9940,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0400-2000,9999999,,,6800014,,, +9940,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0200-0300,1234567,,,50023822,,, +9940,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50023821,,, +9940,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023821,,, +9940,CLN,my,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,57,8219,99,115,,1630-1730,1234567,,,50021708,,, +9940,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,1800-1900,1234567,,,50023121,,, +9940,SWZ,fr,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,101,9062,157,124,CAf,1935-1950,1234567,,,50014988,,, +9940,SWZ,fr,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,343,9062,157,124,CAf,1950-2005,.....6.,,,50014988,,, +9940,SWZ,ln,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,343,9062,157,124,CAf,1905-1935,1234567,,,50014988,,, +9940,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,278,11578,41,128,FE,1500-1600,1234567,,,50018591,,, +9940,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,278,11578,41,128,SEA,1630-1730,1234567,,,50018591,,, +9940,PHL,ug,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,CHN,1430-1500,1234567,,,50023119,,, +9940,GUM,HUI,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,FE,1330-1400,.....67,,,50020808,,, +9940,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,FE,1330-1400,12345..,,,50020808,,, +9950,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0200-0300,1234567,,,50023824,,, +9950,IND,hi,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1615-1730,1234567,,,50007853,,, +9950,IND,sw,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1515-1615,1234567,,,50007853,,, +9950,IND,en,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,50,312,6235,85,102,Eu,1745-1945,1234567,,,50007853,,, +9950,IND,en,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,50,312,6235,85,102,Eu,2045-2230,1234567,,,50007853,,, +9950,IND,hi,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,50,312,6235,85,102,Eu,1945-2045,1234567,,,50007853,,, +9950,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50023823,,, +9950,TWN,ja,Furusato no Kaze,,unknown location in Taiwan,24,121,,100,,9449,57,125,KRE,1330-1400,1234567,,,50019480,,, +9950,TWN,ko,Nippon no Kaze,,unknown location in Taiwan,24,121,,100,,9449,57,125,KRE,1300-1330,1234567,,,50019482,,, +9950,MRA,VN,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023825,,, +9955,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023826,,, +9955,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Car,0600-1100,1234567,,,50023831,,, +9955,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,NAm,1500-2200,1234567,,,50023831,,, +9955,USA,en,Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0300-0400,1234567,,,50023832,,, +9955,USA,en,Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,2300-2400,1234567,,,50023832,,, +9955,USA,en,PCJ R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0200-0300,.....6.,,,50023830,,, +9955,USA,en,R Prague,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,1305-1330,123456,,,50023828,,, +9955,USA,en,R Slovakia Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0130-0200,.23456.,,,50023829,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0000-0300,1234567,,,50023833,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0400-0600,1234567,,,50023833,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,1100-1400,1234567,,,50023833,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,2200-2300,1234567,,,50023833,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,NAm,1400-1500,1234567,,,50023833,,, +9955,USA,es,R Prague,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0500-0530,1234567,,,50023828,,, +9955,USA,es,R Prague,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,1100-1130,12345..,,,50023828,,, +9955,USA,es,R Slovakia Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0530-0600,1234567,,,50023829,,, +9955,USA,es,R Slovakia Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,1130-1200,123456,,,50023829,,, +9955,USA,es,R Vaticana,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0200-0230,.2345..,,,50023827,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0100-0130,..3....,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0130-0200,.23456.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0200-0230,.2345..,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0200-0230,1......,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0200-0300,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0230-0300,....5..,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0400-0430,...4...,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0400-1100,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0415-0445,....5..,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0430-0500,...4...,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0500-1200,123456,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1300-1400,1234567,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1400-1430,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1430-1500,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1430-1500,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1430-1500,...4...,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1500-1600,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1500-2400,12345..,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1530-1600,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1600-1630,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1600-2000,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1700-2200,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2100-2130,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2100-2130,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2130-2230,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2230-2300,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2330-2400,.....6.,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0000-0100,.23456.,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0300-0330,1234567,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0330-0400,1234567,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0400-0500,..3....,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1130-1200,......7,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1200-1230,.2.....,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1200-1230,1.3..6.,,,50016184,,, +9955,TWN,ru,Family R,,Huwei (SW) (YL),23.726389,120.417222,,250,325,9441,57,121,,1500-1700,1234567,,,40001004,,, +9955,TWN,zh,R France Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,352,9489,58,121,FE,2300-2400,1234567,,,50015865,,, +9955,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1600,1234567,,,50023123,,, +9960,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023834,,, +9960,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023835,,, +9960,PLW,ja,Furusato no Kaze,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,KRE,1430-1500,1234567,,,50020810,,, +9960,PLW,km,Khmer Post R,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,SEA,1200-1300,1234567,,,50014093,,, +9965,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,200,325,3024,131,64,ENA,0030-0430,1234567,,,50017280,,, +9965,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,200,325,3024,131,64,ENA,2300-0030,1234567,,,50017280,,, +9965,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,325,3170,130,65,,0030-0430,1234567,,,50017611,,, +9965,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,325,3170,130,65,,2300-0030,1234567,,,50017611,,, +9965,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,1800-1900,1234567,,,50023836,,, +9965,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,1900-2000,1234567,,,50023124,,, +9965,THA,ps,VoA Deewa R,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,1600-1800,1234567,,,50023837,,, +9965,PLW,en,R Australia,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,FE,1300-1430,1234567,,,50005873,,, +9965,PLW,ko,Nippon no Kaze,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,KRE,1530-1600,1234567,,,50019487,,, +9970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,1900-1800,1234567,,,50017282,,, +9970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017282,,, +9975,KWT,ps,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1630-1730,1234567,,,50023128,,, +9975,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,186,4779,79,85,SAs,0100-0400,1234567,,,50016185,,, +9975,USA,en,KVOH Voice of Hope,,Rancho Simi (KVOH) (CA),34.256389,-118.641667,,100,,9031,317,124,CAm,0200-0400,1234567,,,50023127,,, +9975,USA,en,KVOH Voice of Hope,,Rancho Simi (KVOH) (CA),34.256389,-118.641667,,100,,9031,317,124,CAm,0300-0500,1.....1,,,50023127,,, +9975,USA,en,KVOH Voice of Hope,,Rancho Simi (KVOH) (CA),34.256389,-118.641667,,100,,9031,317,124,CAm,0400-0500,1234567,,,50023127,,, +9975,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023838,,, +9975,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,320,11715,42,133,FE,1215-1245,12.45..,,,50005876,,, +9975,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,320,11715,42,133,FE,1330-1345,123456,,,50005876,,, +9975,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,320,11715,42,133,FE,1345-1445,1234567,,,50005876,,, +9975,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,320,11715,42,133,FE,1445-1500,12345..,,,50005876,,, +9975,PLW,ko,Nippon no Kaze,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,KRE,1500-1530,1234567,,,50019489,,, +9980,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,,1200-2400,1234567,,,50009832,,, +9980,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,NAm,1300-0100,1234567,,,50009832,,, +9982.5,HWA,,KVM70,f,Maili/Tower Drive (HI),21.429611,-158.160833,,4,,11701,345,147,,0519-1556,1234567,-9982.5,,20016157,,, +9985,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023839,,, +9985,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023840,,, +9990,BUL,fa,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,IRN,1630-1830,1234567,,,50023842,,, +9990,EGY,ha,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,NIG,1800-2100,1234567,,,50023129,,, +9990,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,0830-1300,1234567,,,50023130,,, +9990,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023841,,, +9990,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,1300-1430,1234567,,,50023131,,, +9990,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1600,1234567,,,50023843,,, +9996,RUS,,RWM,,Elektrougli (MO),55.737778,38.153889,,8,,2098,66,69,,0000-2400,1234567,,,6700071,,, +10000,I,it,Assoc. Amici di Italcable,,Corsanico-Bargecchia (lu),43.913333,10.295556,,0.09,,956,161,77,,0000-2400,1234567,993,,4000055,,, +10000,CHN,,BPM,,Lintong/Pucheng (SA),34.947778,109.552389,,10,,7813,58,125,,0000-2400,1234567,0,,36200217,,, +10000,USA,en,WWV,,Fort Collins (CO),40.679944,-105.040306,,10,,7770,311,125,,0000-2400,1234567,0,,20000086,,, +10000,HWA,en,WWVH,,Kekaha (HI),21.988389,-159.76425,,10,,11667,347,143,,0000-2400,1234567,0,,20000091,,, +10000,ARG,es,LOL1,,Buenos Aires/Observatorio Naval (df),-34.622778,-58.354722,,5,,11505,230,145,,1400-1500,12345..,,,33000012,,, +10000,B,pt,PPE Observatrio Nacional,,Rio de Janeiro/So Cristvo (RJ),-22.895717,-43.223944,,1,,9629,225,146,,0000-2400,1234567,,,36902744,,, +10018,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300007,,, +10018,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900016,,, +10018,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400005,,, +10018,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600013,,, +10018,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300004,,, +10018,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500007,,, +10018,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200034,,, +10018,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500004,,, +10024,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500026,,, +10048,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012486,,, +10048,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012463,,, +10051,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:20-:29,1234567,,,20100019,,, +10051,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:50-:59,1234567,,,20100019,,, +10051,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:00-:19,1234567,,,20000082,,, +10051,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:30-:49,1234567,,,20000082,,, +10057,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012433,,, +10063,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100015,,, +10066,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200036,,, +10066,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900014,,, +10069,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902871,,, +10072,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500039,,, +10075,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900006,,, +10084,MLT,,Malta Aero,u,Benghisa (mt),35.815694,14.528403,,1,,1922,157,76,,,,,,5800002,,, +10087,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700103,,, +10090,UZB,en,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:10-:15,1234567,,,34500005,,, +10090,UZB,en,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:40-:45,1234567,,,34500005,,, +10096,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400010,,, +10096,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500027,,, +10100.8,D,,DDK9 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,0000-2400,1234567,-10100.8,,2000044,,, +10123,PNR,,HP1AVS,b,Cerro Jefe,9.133333,-79.366667,,0.0025,,8920,272,169,,,,,Slope Dip Omni A1 24,55039,,, +10129.5,USA,,W0ERE,b,Highlandsville (MO),36.966667,-93.366667,,0.025,,7446,301,147,,,,-10129.5,RV E-W A1 INT #MO,55040,,, +10130,CZE,,OK1IF,b,Liberec JO70MS,49.6,15.5,,0.0005,,696,110,97,,,,,A1 ?,55041,,, +10132,CAN,,VE3TO,b,near Ottawa (ON),45.266667,-75.616667,,0.005,,5742,297,137,,,,,1/4 Vert Omni A1 QRT,55042,,, +10133,S,,SK6RUD,b,Oxaback,57.35,12.866667,,0.0005,,714,33,97,,,,,1/4 GP Omni A1 24,55043,,, +10134,CZE,,OK0EF,b,near Kladno,50.1,14.116667,,0.0005,,582,110,96,,,,,1/2 Vert Omni A1 24,55044,,, +10137.2,I,,IK3NWX,b,Nr Monselice (pd),45.216667,11.783333,,0.0042,,862,151,89,,,,-10137.2,Rot. Dip. E-W A1 24,55045,,, +10139,I,,IZ0NHW,b,Nea Smirni (fr),41.466667,13.783333,,0.0002,,1308,152,107,,,,,?,55046,,, +10139.6,B,,PY3PSI,b,Porto Alegre (RS),-30.016667,-51.116667,,0.0016,,10705,227,177,,,,-10139.6,Hor. Dip N-S A1 IRREG,55047,,, +10139.7,GRC,,SV8GXC,b,,37.933333,23.7,,8.00E-05,,2070,133,119,,,,-10139.7,?,55048,,, +10140.07,I,,IQ2DP,b,San Donate (mi),45.383333,9.283333,,0.0004,,777,163,99,,,,-10140.07,Vertical Omni 24,55049,,, +10140.6,D,,DL5KZ,b,Nmbrecht (nrw),50.85,7.533333,,0.0001,,160,151,98,,,,-10140.6,Dipole A1 ?,55050,,, +10142.51,I,,IK1HGI,b,Trecate (no),45.433333,8.7,,0.0001,,761,166,104,,,,-10142.51,Dipole QRSS3 24,55051,,, +10144,D,,DKWCY Aurora Beacon,c,Scheggerott (shs),54.668453,9.823456,,0.03,,363,37,76,,0000-2400,1234567,,,2000023,,, +10149.7,I,,IZ8BZX,b,Torre del Greco (na),40.766667,14.366667,,0.0001,,1399,151,111,,,,-10149.7,whip Omni QRSS EXP,55053,,, +10150,I,,IZ5ILH,b,Firenze (fi),43.766667,11.283333,,0.002,,996,157,94,,,,,?,55054,,, +10213,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,,,6800029,,, +10325,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,,,20016137,,, +10353,PRU,,R Willkamayu,,Cusco (cus),-13.533333,-71.95,,0.02,,10417,253,165,,,,,,40001045,,, +10360,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800030,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0015-0215,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0245-0330,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0500,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0945,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1015-1715,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1845,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1915-2045,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2215-2400,1234567,,,37700110,,, +10746,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800031,,, +10960,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017847,,, +10960,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-2400,1234567,,,50017847,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0000-0215,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0245-0330,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0345-0530,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0600-0945,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1015-1715,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1800-1845,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1915-2045,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2215-2400,1234567,,,37700105,,, +11039,D,,DDH9 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,0000-2400,1234567,,,2000045,,, +11086.5,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,0600-2000,1234567,-11086.5,,2800049,,, +11090,HWA,,KVM70,f,Maili/Tower Drive (HI),21.429611,-158.160833,,4,,11701,345,147,,0519-1556,1234567,,,20016158,,, +11090,HWA,,KVM70,f,Maili/Tower Drive (HI),21.429611,-158.160833,,4,,11701,345,147,,1719-0356,1234567,,,20016158,,, +11187,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200022,,, +11230,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017848,,, +11230,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1600,1234567,,,50017848,,, +11253,G,en,MVU RAF Volmet,u,St Eval (EN-CNW),50.478167,-4.999583,,10,,813,262,55,,,,,,2800011,,, +11279,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100032,,, +11279,NOR,en,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,0800-2000,1234567,,,6300020,,, +11279,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200011,,, +11279,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1030-1830,1234567,,,20109310,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0005-0009,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0035-0039,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0105-0109,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0135-0139,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0205-0209,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0235-0239,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0305-0309,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0335-0339,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0405-0409,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0435-0439,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0505-0509,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0535-0539,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0605-0609,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0635-0639,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0705-0709,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0735-0739,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0805-0809,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0835-0839,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0905-0909,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0935-0939,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1005-1009,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1035-1039,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1105-1109,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1135-1139,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1205-1209,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1235-1239,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1305-1309,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1335-1339,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1405-1409,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1435-1439,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1505-1509,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1535-1539,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1605-1609,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1635-1639,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1705-1709,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1735-1739,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1805-1809,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1835-1839,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1905-1909,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1935-1939,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2005-2009,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2035-2039,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2105-2109,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2135-2139,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2205-2209,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2235-2239,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2305-2309,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2335-2339,1234567,,,4500004,,, +11279,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:20-:24,1234567,,,34500004,,, +11279,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:50-:54,1234567,,,34500004,,, +11279,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:10-:19,1234567,,,4500008,,, +11279,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:40-:49,1234567,,,4500008,,, +11282,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012432,,, +11282,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012472,,, +11285,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200027,,, +11291,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500009,,, +11291,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000005,,, +11297,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:05-:09,1234567,,,6700016,,, +11297,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:35-:39,1234567,,,6700016,,, +11297,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:25-:29,1234567,,,6700040,,, +11297,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:55-:59,1234567,,,6700040,,, +11300,LBY,,Tripoli Aero,u,Tarabulus=Tripoli (tbl),32.905864,13.290006,,1,,2206,163,79,,,,,,4800004,,, +11300,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300004,,, +11300,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400006,,, +11300,YEM,,Sana'a Aero,u,Sana'a (san),15.475,44.213889,,1,,5259,126,110,,,,,,12000002,,, +11300,DJI,,Djibouti Aero,u,Djibouti (djb),11.535556,43.156667,,1,,5583,130,113,,,,,,8800002,,, +11300,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600007,,, +11300,UGA,,Entebbe Aero,u,Entebbe/Kigungu (wak),0.031111,32.434722,,1,,6280,148,120,,,,,,8500002,,, +11300,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300001,,, +11300,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500005,,, +11300,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500005,,, +11300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017039,,, +11300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1600,1234567,,,50017039,,, +11309,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,0900-1900,1234567,,,700008,,, +11309,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-0600,1234567,,,20012387,,, +11312,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900007,,, +11318,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:00-:04,1234567,,,6700028,,, +11318,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:30-:34,1234567,,,6700028,,, +11318,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:15-:19,1234567,,,6700036,,, +11318,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:45-:49,1234567,,,6700036,,, +11318,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:05-:09,1234567,,,6700032,,, +11318,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:35-:39,1234567,,,6700032,,, +11318,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:20-:24,1234567,,,6700020,,, +11318,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:50-:54,1234567,,,6700020,,, +11318,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:10-:14,1234567,,,6700024,,, +11318,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:40-:44,1234567,,,6700024,,, +11318,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500013,,, +11330,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012420,,, +11330,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902911,,, +11330,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012469,,, +11336,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100022,,, +11336,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1030-1830,1234567,,,20109261,,, +11339,FJI,,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500010,,, +11342,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012413,,, +11342,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012493,,, +11342,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012439,,, +11342,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012479,,, +11342,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900022,,, +11342,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012506,,, +11345,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800046,,, +11348,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500019,,, +11360,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500028,,, +11366,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,2000-0400,1234567,,,36902868,,, +11369,ARG,es,Ezeiza Volmet,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,:15-:25,1234567,,,33000044,,, +11384,IRL,,Shanwick Aero,h,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,,,,,4100055,,, +11384,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012453,,, +11384,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012502,,, +11387,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016240,,, +11387,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:16-:19,1234567,,,31500008,,, +11387,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:46-:49,1234567,,,31500008,,, +11387,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:25-:29,1234567,,,32200005,,, +11387,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:55-:59,1234567,,,32200005,,, +11387,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:05-:09,1234567,,,32200008,,, +11387,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:35-:39,1234567,,,32200008,,, +11387,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:10-:15,1234567,,,32900005,,, +11387,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:40-:45,1234567,,,32900005,,, +11387,SNG,en,Singapore Volmet,u,Singapore/Yio Chu Kang (ne),1.380139,103.854722,,1,,10394,83,148,,:20-:24,1234567,,,33100003,,, +11387,SNG,en,Singapore Volmet,u,Singapore/Yio Chu Kang (ne),1.380139,103.854722,,1,,10394,83,148,,:50-:54,1234567,,,33100003,,, +11387,AUS,en,Australian Volmet,u,Ningi/Telstra (QLD),-27.066111,153.055556,,6,,16087,58,159,,:00-:04,1234567,,,37700030,,, +11387,AUS,en,Australian Volmet,u,Ningi/Telstra (QLD),-27.066111,153.055556,,6,,16087,58,159,,:30-:34,1234567,,,37700030,,, +11390,RUS,,Magadan Aero,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,,,,,6700132,,, +11396,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012419,,, +11396,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902904,,, +11396,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100021,,, +11396,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900008,,, +11396,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700087,,, +11430,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022325,,, +11435,CUB,es,HMO1 Spy Numbers Station,,unknown,22,-79,,100,,7789,281,115,,,,,,31600139,,, +11500,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50009836,,, +11510,F,ku,Denge Kurdistana,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,ME,1600-2000,1234567,,,50023844,,, +11510,MDA,ku,Denge Kurdistana,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,ME,0400-1600,1234567,,,50023132,,, +11510,MDA,ku,Denge Kurdistana,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,ME,1600-2000,1234567,,,50023132,,, +11517,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50023845,,, +11520,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1100-1200,1234567,,,50023847,,, +11520,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023847,,, +11520,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,335,7317,294,106,SEA,0900-1200,1234567,,,50010451,,, +11520,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,335,7317,294,106,SEA,0900-1300,1234567,,,50010451,,, +11520,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,85,7317,294,106,WAf,0000-0900,1234567,,,50010451,,, +11520,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023846,,, +11520,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023846,,, +11520,TWN,id,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,180,9434,57,125,INS,1000-1100,1234567,,,50013357,,, +11523,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50023848,,, +11530,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,ENA,0030-0430,1234567,,,50023133,,, +11530,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,ENA,2300-0030,1234567,,,50023133,,, +11530,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023851,,, +11530,TJK,en,Voice of Russia,,Orzu (SW) (ktl),37.520833,68.8,,500,155,5010,83,80,,1000-1300,1234567,,,50021709,,, +11530,TJK,en,Voice of Russia,,Orzu (SW) (ktl),37.520833,68.8,,500,155,5010,83,80,,1400-1500,1234567,,,50021709,,, +11530,TJK,hi,Voice of Russia,,Orzu (SW) (ktl),37.520833,68.8,,500,155,5010,83,80,,1300-1400,1234567,,,50021709,,, +11530,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,ME,1330-1530,1234567,,,50023850,,, +11530,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023849,,, +11540,EGY,ar,ERTU Sawt al-Arab,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,160,3170,130,69,EAf,1900-0030,1234567,,,50016191,,, +11540,KWT,VN,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023853,,, +11540,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1100-1200,1234567,,,50023853,,, +11540,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023853,,, +11540,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023853,,, +11540,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023852,,, +11540,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023852,,, +11540,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023852,,, +11540,CLN,vi,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1400-1500,1234567,,,50023854,,, +11545,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023855,,, +11545,CLN,vi,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1400-1500,1234567,,,50023856,,, +11545,MRA,ug,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023857,,, +11550,UZB,ta,Voice of Tigers,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,163,4779,79,85,,1530-1630,.....6.,,,50020296,,, +11550,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,1200-1800,1234567,,,50010455,,, +11550,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,1300-1800,1234567,,,50010455,,, +11550,TWN,zh,Taiwan Ch Yuyeh Kuangpo Tientai,,Tainan/Annan (TNS),23.044167,120.168611,,100,205,9489,58,125,INS,0900-1000,..3....,,,50007614,,, +11550,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,295,11578,41,128,FE,2200-2300,1234567,,,50020056,,, +11555,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023858,,, +11555,CLN,vi,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1400-1500,1234567,,,50023859,,, +11560,BUL,ti,Dimtse R Erena,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ERI,1700-1730,1234567,,,50023861,,, +11560,MDA,,Dimtse R Yerena,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,160,1731,99,54,,1700-1730,1234567,,,50019711,,, +11560,BUL,,IRRS Milano, Miraya FM,,Sofia/Kostinbrod (sof),42.808889,23.186944,,50,195,1624,123,56,,0300-0600,1234567,,,50021710,, +11560,EGY,de,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,315,3170,130,65,,1900-2000,1234567,,,50017613,,, +11560,EGY,fr,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,315,3170,130,65,,2000-2115,1234567,,,50017613,,, +11560,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1100-1200,1234567,,,50023862,,, +11560,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023862,,, +11560,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023862,,, +11560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023860,,, +11560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023860,,, +11560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023860,,, +11560,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,1530-1630,1234567,,,50023136,,, +11565,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0830-0900,1......,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0800-0815,12345..,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0815-0830,12345..,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0830-0900,.2345..,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0900-0930,......7,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0930-1030,......7,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,1030-1100,......7,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,Oc,0800-0900,12345..,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,Oc,0900-1100,......7,,,50016194,,, +11565,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,SAm,0000-0600,1234567,,,50023863,,, +11565,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,SAm,2330-2400,.....6.,,,50023864,,, +11565,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023137,,, +11570,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023867,,, +11570,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023867,,, +11570,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023867,,, +11570,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,Eu,1700-1900,1234567,,,50023866,,, +11570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023865,,, +11570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023865,,, +11570,CLN,VN,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1400-1500,1234567,,,50023868,,, +11570,TWN,Hmo,Suab Xaa Moo Zoo (Voice of Hope),,Taipei TAI (Pali) (TP),25.083333,121.45,,100,250,9375,56,125,,1130-1200,1234567,,,50015008,,, +11570,TWN,hmn,Suab Xaa Moo Zoo,,unknown location in Taiwan,24,121,,100,,9449,57,125,SEA,1130-1200,1234567,,,50016678,,, +11570,TWN,my,Family R,,Huwei (SW) (YL),23.726389,120.417222,,100,265,9441,57,125,,1200-1300,1234567,,,40001055,,, +11580,PAK,en,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,118,5607,84,89,Eu,1100-1104,1234567,,,50020823,,, +11580,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,118,5607,84,89,Eu,0830-1100,1234567,,,50020823,,, +11580,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,118,5607,84,89,ME,0500-0700,1234567,,,50020823,,, +11580,IND,en,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,WAf,1745-1945,1234567,,,50015009,,, +11580,IND,ru,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,,6248,85,100,EEu,1615-1715,1234567,,,50022326,,, +11580,IND,ru,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,,6248,85,100,EEu,1615-1715,9999999,,,50022326,,, +11580,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022327,,, +11580,GUM,VN,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,278,11715,42,133,SEA,1245-1330,1234567,,,50008641,,, +11580,GUM,VN,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,SEA,1330-1345,.....6.,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,FE,1415-1430,12345.7,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,FE,1430-1500,12345..,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,335,11715,42,133,,1345-1415,.....6.,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,335,11715,42,133,,1345-1430,......7,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,335,11715,42,133,,1345-1500,12345..,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,335,11715,42,133,FE,1345-1415,1234567,,,50008641,,, +11580,GUM,vi,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,278,11715,42,133,,1245-1330,12345.7,,,50008641,,, +11580,GUM,vi,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,278,11715,42,133,,1245-1345,.....6.,,,50008641,,, +11580,GUM,yi,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,308,11715,42,133,FE,1200-1215,1234567,,,50008641,,, +11585,MRA,ko,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1700,1234567,,,50023138,,, +11585,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023138,,, +11590,D,ps,VoA Deewa R,,Lampertheim (hes),49.602222,8.539444,,100,92,316,151,40,,1400-1500,1234567,,,50020828,,, +11590,KWT,VN,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023139,,, +11590,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023139,,, +11590,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1400,1234567,,,50023139,,, +11590,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023139,,, +11590,UZB,hi,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,163,4779,79,85,,0130-0200,1234567,,,50020827,,, +11590,UZB,hi,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,163,4779,79,85,SAs,0100-0130,1234567,,,50020827,,, +11590,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023869,,, +11590,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023869,,, +11590,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,250,340,8219,99,115,,1300-1400,1234567,,,50020829,,, +11590,THA,ps,VoA Deewa R,,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,1500-1600,1234567,,,50020830,,, +11595,D,fa,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,AFG,1500-1530,1234567,,,50023870,,, +11595,D,ps,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,AFG,1430-1500,1234567,,,50023870,,, +11595,CLN,,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,25,8219,99,115,,1600-1700,1234567,,,50020832,,, +11595,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,,2200-2300,1234567,,,50021711,,, +11600,LBY,ar,R Libya FS,,Sabratah (zaw),32.599167,12.343056,,500,180,2222,165,52,Af,1500-2010,1234567,,,50013510,,, +11600,IRN,ja,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,J,1320-1420,1234567,,,50023140,,, +11600,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1100-1200,1234567,,,50023872,,, +11600,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,SEA,0045-0215,1234567,,,50023141,,, +11600,PAK,zh,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,FE,1200-1300,1234567,,,50023141,,, +11600,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023871,,, +11600,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023142,,, +11605,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023144,,, +11605,TWN,ja,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,45,9489,58,121,J,0800-0900,1234567,,,50007791,,, +11605,TWN,ja,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,45,9489,58,121,J,2200-2300,1234567,,,50007791,,, +11605,TWN,zh,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,205,9489,58,121,SEA,1500-1530,1234567,,,50007791,,, +11605,TWN,zh,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,300,205,9489,58,121,SEA,1530-1600,1234567,,,50007791,,, +11605,AFS,fr,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,340,9003,160,124,CAf,0500-0600,1234567,,,50005930,,, +11605,AFS,fr,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,340,9003,160,124,CAf,0600-0700,1234567,,,50005930,,, +11610,BUL,ar,Sunrise R Sharooqa,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ERI,1600-1657,123....,,,50023873,,, +11610,EGY,uz,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,CAs,1500-1600,1234567,,,50023145,,, +11610,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,AUS,2000-2200,1234567,,,50023146,,, +11610,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1400-1500,1234567,,,50005936,,, +11610,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0600-0900,12.4567,,,40001056,,, +11610,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0900-1100,1234567,,,40001056,,, +11610,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,2300-0600,1234567,,,40001056,,, +11610,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1300-1400,1234567,,,50005935,,, +11610,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1400-1500,1234567,,,50005935,,, +11610,AFS,so,IBRA R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,35,9003,160,124,EAf,1730-1800,1234567,,,50020297,,, +11615,CVA,ar,VoA Darfur,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,146,1205,156,45,EAf,1800-1830,1234567,,,50019328,,, +11615,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023875,,, +11615,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023874,,, +11615,MRA,ug,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023876,,, +11620,ROU,ar,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ME,1500-1600,1234567,,,50023148,,, +11620,IRN,fa,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1150-1450,1234567,,,50023147,,, +11620,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,102,6235,85,95,SEA,1330-1500,1234567,,,50009842,,, +11620,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,334,6235,85,95,Oc,2045-2230,1234567,,,50009842,,, +11620,IND,gu,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,334,6235,85,95,EAf,1515-1600,1234567,,,50009842,,, +11620,IND,ur,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,65,6235,85,95,PAK,0830-1130,1234567,,,50009842,,, +11620,IND,en,AIR Home News,,Delhi/Khampur (DL),28.822222,77.127778,,125,245,6235,85,98,,1135-1140,1234567,,,50011028,,, +11620,IND,hi,AIR Home News,,Delhi/Khampur (DL),28.822222,77.127778,,125,65,6235,85,98,,1130-1135,1234567,,,50011028,,, +11620,IND,gu,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,335,7561,97,106,EAf,1515-1600,1234567,,,50009841,,, +11620,IND,ur,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,PAK,0015-0430,1234567,,,50009841,,, +11620,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,Oc,1100-1200,1234567,,,50005945,,, +11620,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,250,120,7561,97,109,Oc,2045-2230,1234567,,,50009841,,, +11620,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0055-0615,1234567,,,40001057,,, +11620,AFS,pt,Voice of America,,Meyerton (SW) (GT),-26.585833,28.138889,,100,330,9003,160,124,,1630-1700,....5..,,,50021712,,, +11625,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,WAf,1940-2000,1234567,,,50005952,,, +11625,CVA,am,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0400-0415,1234567,,,50005952,,, +11625,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0300-0330,1234567,,,50005952,,, +11625,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,WAf,0630-0700,1234567,,,50005952,,, +11625,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,184,1205,156,45,CAf,1730-1800,1234567,,,50005952,,, +11625,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,184,1205,156,45,WAf,2000-2030,1234567,,,50005952,,, +11625,CVA,es,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,CNR,1900-1930,.....6.,,,50005952,,, +11625,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,WAf,0600-0630,1234567,,,50005952,,, +11625,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,184,1205,156,45,WAf,2030-2100,1234567,,,50005952,,, +11625,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,238,1205,156,45,AGL,0530-0600,1234567,,,50005952,,, +11625,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,238,1205,156,45,WAf,1800-1830,1234567,,,50005952,,, +11625,CVA,sw,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0330-0345,......7,,,50005952,,, +11625,CVA,sw,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0330-0400,123456,,,50005952,,, +11625,CVA,ti,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0415-0430,1234567,,,50005952,,, +11625,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,2200-2300,.....67,,,50018613,,, +11625,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023877,,, +11625,MDG,en,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,184,8830,141,119,,0500-0530,1234567,,,50008658,,, +11625,MDG,so,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,350,8830,141,119,EAf,0345-0400,......7,,,50008658,,, +11630,KWT,ar,R Kuwait Holy Quran,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,100,,4236,111,79,CAf,0930-1600,1234567,,,50023879,,, +11630,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023878,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0200-0300,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0500-0600,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0900-1000,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1400-1500,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1500-1700,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1700-1705,1234567,,,40001059,,, +11630,CHN,mn,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0700-0800,1.34567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0300-0500,1234567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0600-0700,1.34567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0800-0900,1.34567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1000-1400,1234567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1955-2400,1234567,,,40001059,,, +11630,MRA,ug,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023880,,, +11635,RUS,de,Voice of Russia,D,Taldom/Severnyj Radiotsentr 3 (MO),56.745833,37.621111,,1,,2064,63,78,Eu,0900-1000,1234567,,,50023149,,, +11635,RUS,en,Voice of Russia,D,Taldom/Severnyj Radiotsentr 3 (MO),56.745833,37.621111,,1,,2064,63,78,Eu,0600-1000,1234567,,,50023149,,, +11635,UAE,so,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,215,5075,109,84,,1630-1700,12345..,,,50019714,,, +11635,UAE,so,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,215,5075,109,84,EAf,1630-1645,......7,,,50019714,,, +11635,UAE,so,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,215,5075,109,84,EAf,1630-1700,123456,,,50019714,,, +11635,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1400,1234567,,,50023881,,, +11635,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2400,1234567,,,50023881,,, +11635,CUB,es,HMO1 Spy Numbers Station,,unknown,22,-79,,100,,7789,281,115,,,,,,31600138,,, +11635,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1900-2000,1234567,,,50016190,,, +11635,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1800-1900,1234567,,,50016190,,, +11635,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,FE,2300-2400,1234567,,,50016190,,, +11635,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,2000-2100,1234567,,,50016190,,, +11635,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,FE,2100-2300,1234567,,,50016190,,, +11635,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1200-1400,1234567,,,50023150,,, +11635,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,SEA,2200-2400,1234567,,,50007793,,, +11640,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1500-1600,1234567,,,50023152,,, +11640,MLI,ar,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,EAf,1830-1930,1234567,,,50005962,,, +11640,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,,2000-2130,1234567,,,50005962,,, +11640,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,2000-2100,1234567,,,50005962,,, +11640,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,2100-2130,1234567,,,50005962,,, +11640,MLI,ha,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,CAf,1800-1830,1234567,,,50005962,,, +11640,MLI,pt,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,SAf,1930-2000,1234567,,,50005962,,, +11640,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0300-0400,1234567,,,50005966,,, +11640,CHN,vi,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,INS,1200-1300,1234567,,,50005967,,, +11640,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0100-0200,1234567,,,50005967,,, +11640,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0400-0600,1234567,,,50023882,,, +11640,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1400,1234567,,,50023882,,, +11640,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023882,,, +11640,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,Sib,1000-1100,1234567,,,50023151,,, +11640,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0700-0800,1234567,,,50005964,,, +11640,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0800-0900,1234567,,,50005964,,, +11640,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,0200-0300,1234567,,,50005965,,, +11640,CHN,vi,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0500-0600,1234567,,,50005965,,, +11640,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,,9444,57,125,FE,0400-0600,1234567,,,50013363,,, +11640,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,,0400-0600,.....6.,,,50013363,,, +11640,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,FE,1000-1400,1234567,,,50013363,,, +11645,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,0400-1000,1234567,,,50023154,,, +11645,IND,en,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,FE,2245-0045,1234567,,,50008666,,, +11645,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1100,1234567,,,50023883,,, +11645,KRE,ar,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1500-1600,1234567,,,50016192,,, +11645,KRE,ar,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1700-1800,1234567,,,50016192,,, +11645,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1600-1700,1234567,,,50016192,,, +11645,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0900-1100,1234567,,,50023155,,, +11650,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,50,90,1624,123,56,,1800-2100,1234567,,,50020068,,, +11650,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,SAs,1100-1300,1234567,,,50005979,,, +11650,CHN,eo,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1300-1400,1234567,,,50005977,,, +11650,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,SEA,1400-1500,1234567,,,50005978,,, +11650,CHN,vi,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0400-0500,1234567,,,50005978,,, +11650,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,1600-1900,1234567,,,50023156,,, +11650,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,2000-2200,1234567,,,50016202,,, +11655,TWN,VN,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,100,205,9489,58,125,SEA,2330-0030,1234567,,,50013366,,, +11660,ROU,ar,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,NAf,0730-0800,1234567,,,50023157,,, +11660,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023884,,, +11660,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0100-0600,1234567,,,40000720,,, +11660,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0600-0900,12.4567,,,40000720,,, +11660,MRA,ug,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023885,,, +11660,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,1430-1730,1234567,,,50016205,,, +11660,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,EAs,1530-1730,1234567,,,50016205,,, +11660,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,65,16373,78,148,Oc,1900-2100,1234567,,,50016205,,, +11660,AUS,zh,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,1300-1430,1234567,,,50016205,,, +11660,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,,2000-2200,1234567,,,37700052,,, +11665,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1400-1500,1234567,,,50016686,,, +11665,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,145,7808,59,108,,1400-1500,1234567,,,50021715,,, +11665,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,2100-2300,1234567,,,50023158,,, +11665,MLA,ms,RTM Wai FM,,Kajang (slg),3.011111,101.784444,,100,93,10109,84,127,,0000-2400,1234567,,,50013511,,, +11670,IND,ar,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,0430-0530,1234567,,,50018627,,, +11670,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,0400-0430,1234567,,,50018627,,, +11670,IND,ur,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,,0530-0600,1234567,,,50018627,,, +11670,IND,ur,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,0530-0600,9999999,,,50018627,,, +11670,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,280,7561,97,106,Eu,2045-2230,1234567,,,50008682,,, +11670,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,325,7561,97,106,Eu,1745-1945,1234567,,,50008682,,, +11670,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,325,7561,97,106,Eu,1945-2045,1234567,,,50008682,,, +11670,IND,th,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,90,7561,97,106,SEA,1115-1200,1234567,,,50008682,,, +11670,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,SAm,0200-0500,1234567,,,50017040,,, +11670,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,SAm,0000-0200,1234567,,,50017040,,, +11670,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,220,7773,50,115,,0600-0900,12.4567,,,40001068,,, +11670,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,220,7773,50,115,,0900-1200,1234567,,,40001068,,, +11670,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,220,7773,50,115,,2330-0600,1234567,,,40001068,,, +11675,IRN,ur,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1250-1420,1234567,,,50023160,,, +11675,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EEu,1420-1520,1234567,,,50023161,,, +11675,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,25,325,18351,32,161,SOc,0651-0800,1234567,,,50002415,,, +11675,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,25,325,18351,32,161,SOc,1751-1850,1234567,,,50002415,,, +11675,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,25,325,18351,32,161,SOc,1751-1950,1234567,,,50002415,,, +11680,E,pt,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,SAm,2100-2200,12345..,,,50018631,,, +11680,TUR,AFG,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,AFG,1600-1730,1234567,,,50023162,,, +11680,KRE,ko,KCBS Chosun Jungang Pangsong,,Kanggye (cha),40.966667,126.583333,,50,ND,8171,43,122,,2000-1800,1234567,,,50016209,,, +11680,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1200-1300,1234567,,,50006009,,, +11685,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0000-0500,1234567,,,40001071,,, +11685,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0530-0600,1234567,,,40001071,,, +11685,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0900,12.4567,,,40001071,,, +11685,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0500-0530,1234567,,,40001071,,, +11685,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1345-1430,1234567,,,50023163,,, +11685,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1430-1515,12345..,,,50023163,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,0000-0800,.....6.,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,0000-0800,9999999,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1400-1700,.....6.,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1400-1700,9999999,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1900-2200,.....6.,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1900-2200,9999999,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,2300-2400,....5..,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,2300-2400,9999999,,,50006023,,, +11690,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,1200-1300,1234567,,,50006019,,, +11690,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Car,1100-1300,1234567,,,50016211,,, +11690,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Car,1300-1500,1234567,,,50016211,,, +11690,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,315,7939,284,112,,1500-1800,......7,,,50016211,,, +11690,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,315,7939,284,112,Car,1100-1500,1234567,,,50016211,,, +11690,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,SOc,0651-0800,1234567,,,50023886,,, +11695,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,75,5075,109,81,FE,0100-0300,1234567,,,50006035,,, +11695,UZB,en,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1400-1430,1234567,,,50023164,,, +11695,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0300,1234567,,,50023887,,, +11695,CLN,uz,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,CAs,1500-1530,1234567,,,50023888,,, +11695,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,305,11578,41,128,,1700-1800,1234567,,,50020879,,, +11695,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,CAs,0030-0100,1234567,,,50023165,,, +11695,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,INS,2030-2200,1234567,,,50016212,,, +11700,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,,0600-0700,1234567,,,50006039,,, +11700,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,204,660,211,37,WAf,0700-0800,1234567,,,50006039,,, +11700,F,ar,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,ME,1700-1715,1234567,,,50023169,,, +11700,F,ar,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,ME,1715-1745,123.5..,,,50023169,,, +11700,F,ar,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,ME,1745-1800,1.3.5..,,,50023169,,, +11700,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0300-0400,1234567,,,50023168,,, +11700,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,INS,1030-1130,1234567,,,50023167,,, +11700,CHN,ms,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,INS,1230-1330,1234567,,,50023167,,, +11700,SWZ,HAD,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1645-1700,....56.,,,50023170,,, +11700,SWZ,KAM,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1630-1645,....56.,,,50023170,,, +11700,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1630-1645,12.....,,,50023170,,, +11700,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1700-1715,......7,,,50023170,,, +11700,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1700-1730,123456,,,50023170,,, +11700,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1730-1800,.....6.,,,50023170,,, +11700,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1630-1700,..34...,,,50023170,,, +11700,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1645-1700,12....7,,,50023170,,, +11700,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1715-1745,......7,,,50023170,,, +11700,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1730-1800,12345..,,,50023170,,, +11700,AUS,C-H,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,1130-1145,..3.5..,,,50023166,,, +11700,AUS,RWG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,1145-1200,1234567,,,50023166,,, +11700,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,1130-1145,1....67,,,50023166,,, +11700,AUS,my,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,1130-1145,.2.4...,,,50023166,,, +11705,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,,0100-0200,1234567,,,50006046,,, +11710,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAs,0400-0500,1234567,,,50023173,,, +11710,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,CAs,0300-0400,1234567,,,50023172,,, +11710,IND,ar,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,102,6235,85,95,ME,1730-1945,1234567,,,50010481,,, +11710,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,SEA,2245-0045,1234567,,,50010481,,, +11710,IND,fa,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,1615-1730,1234567,,,50010481,,, +11710,IND,fr,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,WAf,1945-2030,1234567,,,50010481,,, +11710,IND,my,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,102,6235,85,95,SEA,1215-1315,1234567,,,50010481,,, +11710,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,1000-1805,1234567,,,40001075,,, +11710,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,2025-0130,1234567,,,40001075,,, +11710,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1300-1400,1234567,,,50016215,,, +11710,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1500-1600,1234567,,,50016215,,, +11710,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1400-1500,1234567,,,50016215,,, +11710,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1600-1700,1234567,,,50016215,,, +11710,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1700-1800,1234567,,,50016215,,, +11710,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,330,9208,36,120,FE,0700-0800,1234567,,,50020888,,, +11710,J,ru,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,330,9208,36,120,FE,0530-0600,1234567,,,50020888,,, +11710,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,0600-0800,1234567,,,50023171,,, +11710,ARG,en,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0200-0300,.23456.,779,,50006048,,, +11710,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,2200-2400,12345..,779,,50006048,,, +11710,ARG,fr,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0300-0400,.23456.,779,,50006048,,, +11710,ARG,ja,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0100-0200,.23456.,779,,50006048,,, +11710,ARG,pt,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0000-0100,.23456.,779,,50006048,,, +11710,ARG,zh,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0400-0500,.23456.,779,,50006048,,, +11715,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,55,1205,156,45,ME,0500-0530,1234567,,,50006057,,, +11715,IND,ne,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,124,6235,85,95,NPL,0130-0230,1234567,,,50009853,,, +11715,USA,en,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,350,8617,307,125,WNA,1400-1500,1234567,,,50016217,,, +11715,USA,en,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,70,8617,307,125,ENA,1300-1400,1234567,,,50016217,,, +11715,USA,es,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,150,8617,307,125,CAm,1500-1600,1234567,,,50016217,,, +11720,BUL,ti,V.o.Forum of Eritreans,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,EAf,1700-1800,.2.4.67,,,50023889,,, +11720,BUL,ti,Voice of Asena,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,EAf,1700-1800,1.3.5..,,,50023890,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,0800-1400,.....6.,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,0800-1400,9999999,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1700-1900,.....6.,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1700-1900,9999999,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,2200-2300,....5..,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,2200-2300,9999999,,,50006066,,, +11720,IRN,ur,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1250-1420,1234567,,,50023175,,, +11720,CHN,vi,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,100,,7712,60,114,SEA,1200-1300,1234567,,,50023174,,, +11720,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1100-1200,1234567,,,36201079,,, +11720,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0600-0900,1.34567,,,40001080,,, +11720,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0900-1100,1234567,,,40001080,,, +11720,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,2330-0600,1234567,,,40001080,,, +11720,VTN,VN,VOV1,,Sơn Ty (hno),21.2,105.366667,,100,187,8749,70,123,Oc,2250-1700,1234567,,,50013812,,, +11725,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,240,1609,135,51,NAf,1600-1800,1234567,,,50006071,,, +11725,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1900-0200,1234567,,,50023176,,, +11725,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,50,325,18351,32,158,SOc,1851-2150,1234567,,,50006074,,, +11725,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,50,35,18351,32,158,SOc,0500-0800,1234567,,,50006074,,, +11730,F,fr,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,WAf,0530-0600,1234567,,,50008715,,, +11730,BLR,be,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,1200-1500,1234567,,,1200005,,, +11730,BLR,de,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,1900-2040,1234567,,,1200005,,, +11730,BLR,en,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,2100-2300,1234567,,,1200005,,, +11730,BLR,es,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,2100-2120,......7,,,1200005,,, +11730,BLR,fr,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,2040-2100,1234567,,,1200005,,, +11730,BLR,pl,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,1700-1900,1234567,,,1200005,,, +11730,BLR,ru,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,1500-1700,1234567,,,1200005,,, +11730,BLR,ru,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,2300-2400,1234567,,,1200005,,, +11730,BLR,be,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1100-1400,1234567,,,50020892,,, +11730,BLR,de,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1800-2000,1234567,,,50020892,,, +11730,BLR,en,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2000-2200,1234567,,,50020892,,, +11730,BLR,es,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2000-2020,1....67,,,50020892,,, +11730,BLR,fr,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1940-2000,1..4.67,,,50020892,,, +11730,BLR,pl,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1600-1800,1234567,,,50020892,,, +11730,BLR,ru,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1400-1600,1234567,,,50020892,,, +11730,BLR,ru,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2200-2300,1234567,,,50020892,,, +11730,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,500,95,2469,114,55,SAs,1730-1830,1234567,,,50015078,,, +11730,UZB,fa,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,236,4779,79,85,IRN,0400-0430,1234567,,,50008714,,, +11730,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,WNA,0000-0600,1234567,,,50023891,,, +11730,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,WNA,2200-2400,1234567,,,50023891,,, +11730,USA,es,WYFR Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,285,7461,286,112,,0100-0200,1234567,,,50019718,,, +11730,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,0230-0330,1234567,,,50006078,,, +11730,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1100-1200,1234567,,,50023177,,, +11730,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1400-1500,1234567,,,50023177,,, +11735,TZA,en,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Dole (zbw),-6.101981,39.257778,,50,,7182,143,112,,1800-1810,1234.6.,,,40001083,,, +11735,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Dole (zbw),-6.101981,39.257778,,50,,7182,143,112,,1500-1800,1234567,,,40001083,,, +11735,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Dole (zbw),-6.101981,39.257778,,50,,7182,143,112,,1810-2045,1234567,,,40001083,,, +11735,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0400-0500,1234567,,,50016221,,, +11735,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0300-0400,1234567,,,50016221,,, +11735,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0500-0600,1234567,,,50016221,,, +11735,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0600-0700,1234567,,,50016221,,, +11735,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,FE,0700-0900,1234567,,,50016221,,, +11735,B,pt,ZYE857 Rdio Transmundial,,Santa Maria/Vila Palmas (RS),-29.738333,-53.555278,,50,60,10803,229,133,,0700-2000,1234567,,,40001084,,, +11740,CVA,Ang,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,58,1205,156,45,WEu,1100-1130,......7,,,50006094,,, +11740,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,58,1205,156,45,NAf,0745-0805,123456,,,50006094,,, +11740,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,58,1205,156,45,,0610-0745,......7,,,50006094,,, +11740,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,58,1205,156,45,UKR,0715-0915,......7,,,50006094,,, +11740,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,310,1205,156,49,58,0950-1030,......7,,,50006094,,, +11740,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,145,1205,156,49,228,0645-0705,......7,,,50006094,,, +11740,IRN,fa,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,CAs,0250-0620,1234567,,,50023178,,, +11740,IRN,hi,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,0150-0250,1234567,,,50023179,,, +11740,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,100,,6367,85,101,AFG,0300-0345,1234567,,,50022013,,, +11740,IND,ps,All India R GOS,,Aligarh (UP),27.997222,78.097222,,100,,6367,85,101,AFG,0215-0300,1234567,,,50022013,,, +11740,IND,en,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,Oc,2045-2230,1234567,,,50016223,,, +11740,IND,fa,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,AFG,1315-1415,1234567,,,50016223,,, +11740,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,2300-2400,1234567,,,50016223,,, +11740,IND,ps,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,AFG,1415-1530,1234567,,,50016223,,, +11740,IND,si,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,CLN,0045-0115,1234567,,,50016223,,, +11740,IND,ta,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,0000-0045,1234567,,,50016223,,, +11740,CHN,en,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1430-1500,1234567,,,40001088,,, +11740,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1100-1430,1234567,,,40001088,,, +11740,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1500-1605,1234567,,,40001088,,, +11740,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2100-0100,1234567,,,40001088,,, +11740,AFS,so,IBRA R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1730-1800,1234567,,,50023180,,, +11740,SNG,VN,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,1,10381,83,124,SEA,1100-1130,1234567,,,50006097,,, +11740,SNG,en,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,1,10381,83,124,SEA,1200-1230,1234567,,,50006097,,, +11740,SNG,my,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,330,10381,83,124,SEA,1030-1100,1234567,,,50006097,,, +11740,SNG,my,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,330,10381,83,124,SEA,1430-1500,1234567,,,50006097,,, +11740,SNG,th,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,1,10381,83,124,SEA,1130-1200,1234567,,,50006097,,, +11740,SNG,th,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,1,10381,83,124,SEA,1230-1300,1234567,,,50006097,,, +11740,SNG,VN,NHK R Japan,,Kranji (nw),1.423056,103.7325,,100,1,10381,83,128,SEA,1300-1330,1234567,,,50006097,,, +11750,D,bo,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1600,...45..,,,50023185,,, +11750,D,en,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1600,123..67,,,50023185,,, +11750,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,EGY,0600-0700,1234567,,,50023181,,, +11750,UAE,hi,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,1600-1630,1234567,,,50023183,,, +11750,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,1500-1530,1234567,,,50023187,,, +11750,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,CAm,1300-1500,1234567,,,50016465,,, +11750,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,0600-0800,1.34567,,,40001090,,, +11750,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,2200-0600,1234567,,,40001090,,, +11750,CLN,si,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,ME,1630-1830,1234567,,,50022014,,, +11750,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,0330-0400,1234567,,,50023186,,, +11750,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,0900-1000,1234567,,,50023182,,, +11750,AFS,ig,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,NIG,1930-2000,1234567,,,50023184,,, +11750,PHL,te,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,1430-1457,1234567,,,50015092,,, +11750,PHL,LAH,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1400-1430,1234567,,,50015091,,, +11750,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1200-1300,1234567,,,50023188,,, +11750,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,1300-1400,.....67,,,50023188,,, +11750,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SEA,0000-0200,1234567,,,50009859,,, +11750,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,50,120,13569,74,142,,0730-0830,1234567,,,50016225,,, +11755,E,ru,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,68,1547,213,47,Eu,1700-1730,12345..,,,50018663,,, +11755,AFS,fr,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,2000-2030,1234567,,,50023189,,, +11755,AFS,yo,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,NIG,2030-2100,1234567,,,50023189,,, +11760,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,CAm,2330-0045,1234567,,,50023190,,, +11760,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,CAm,0045-0200,1234567,,,50023190,,, +11760,IRN,bn,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1420-1520,1234567,,,50020912,,, +11760,IRN,ar,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,ME,1020-1120,1234567,,,50023191,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Am,0000-0200,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Am,0200-0500,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Am,1100-1300,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Am,1300-1500,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,Am,0000-0500,1234567,,,50016226,,, +11760,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1200-1400,1234567,,,50006114,,, +11760,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0000-0600,1234567,,,40001091,,, +11760,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0600-0900,1.34567,,,40001091,,, +11760,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0900-1200,1234567,,,40001091,,, +11760,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,CAm,1900-2000,1234567,,,50016226,,, +11760,CUB,eo,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,20,7939,284,116,Am,1500-1530,......7,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,,2300-0400,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,Am,1100-1500,1234567,,,50016226,,, +11760,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,CAm,2000-2030,1234567,,,50016226,,, +11760,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,,9364,56,120,FE,1300-1400,1234567,,,50009864,,, +11760,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,,9364,56,120,FE,1400-1500,1234567,,,50009864,,, +11760,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,,1300-1500,1234567,,,50009864,,, +11760,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,0900-1100,.....67,,,50009864,,, +11760,SWZ,Had,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1645-1700,....56.,,,50020913,,, +11760,SWZ,Kam,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1630-1645,....56.,,,50020913,,, +11760,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1630-1645,12.....,,,50020913,,, +11760,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1700-1715,......7,,,50020913,,, +11760,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1700-1730,123456,,,50020913,,, +11760,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1730-1800,.....6.,,,50020913,,, +11760,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,0500-0800,1234567,,,50020913,,, +11760,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1630-1700,..34...,,,50020913,,, +11760,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1645-1700,12....7,,,50020913,,, +11760,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1715-1745,......7,,,50020913,,, +11760,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1730-1800,12345..,,,50020913,,, +11760,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,304,11578,41,128,,2300-2400,1234567,,,50020914,,, +11765,TWN,VN,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,100,205,9489,58,125,SEA,1200-1300,1234567,,,50007744,,, +11765,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,325,9364,56,125,FE,1600-1700,1234567,,,50009867,,, +11765,MRA,km,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,250,270,11578,41,128,,2200-2230,1234567,,,50021716,,, +11765,B,pt,ZYE727 Super Rdio Deus Amor,,Curitiba/Corpo de Bombeiros (PR),-25.449444,-49.125,,10,20,10169,228,138,,0900-0200,1234567,91,,40001093,,, +11770,IRN,en,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,NAm,0320-0420,1234567,,,50023194,,, +11770,NIG,ar,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,100,,5068,184,88,NAf,2100-2200,1234567,,,50019721,,, +11770,NIG,sw,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,100,,5068,184,88,WAf,1600-1630,1234567,,,50019721,,, +11770,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,ME,0600-0700,1234567,,,50006126,,, +11770,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0300-0800,1234567,,,40001094,,, +11770,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0800-1100,1.34567,,,40001094,,, +11770,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1100-1200,1234567,,,40001094,,, +11770,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1200-1800,1234567,,,40001094,,, +11770,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0700-0800,1234567,,,50012782,,, +11770,CHN,vi,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,0000-0100,1234567,,,50006125,,, +11770,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,0100-0200,1234567,,,50023193,,, +11770,AFS,mas,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1730-1800,1234567,,,50023195,,, +11770,AFS,sw,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1700-1730,1234567,,,50023195,,, +11775,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1900-2000,1234567,,,50023196,,, +11775,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1900-2100,1234567,,,50023196,,, +11775,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2005-2100,1234567,,,50023196,,, +11775,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2000-2005,1234567,,,50023196,,, +11775,IND,bo,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,25,7123,98,104,Tib,1215-1330,1234567,,,50016228,,, +11775,IND,ne,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,25,7123,98,104,NPL,1330-1430,1234567,,,50016228,,, +11775,AIA,en,Caribbean Beacon,,The Valley (SW) (tvy),18.219522,-63.019178,,100,320,7022,265,107,NAm,1000-2200,1234567,,,50014049,,, +11775,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1215-1330,1234567,,,50023892,,, +11775,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023892,,, +11775,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2300-2400,1234567,,,50023197,,, +11780,D,tk,R Liberty,,Biblis (hes),49.687222,8.490278,,100,88,306,151,40,,1500-1600,1234567,,,50020930,,, +11780,D,uz,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,75,316,151,40,CAs,1600-1700,1234567,,,50020929,,, +11780,E,Sef,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,248,1547,213,49,,0115-0145,.2.....,,,50018674,,, +11780,KWT,uz,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,CAs,1500-1530,1234567,,,50023200,,, +11780,IRN,he,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,0420-0450,1234567,,,50023198,,, +11780,CHN,my,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,ME,1400-1500,1234567,,,50006138,,, +11780,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0500-0600,1234567,,,36200212,,, +11780,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0900-1000,1234567,,,36200212,,, +11780,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0600-0700,1.34567,,,36200212,,, +11780,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0700-0900,1.34567,,,36200212,,, +11780,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0000-0100,1234567,,,50006139,,, +11780,B,pt,ZYE365 Rdio Nacional da Amaznia,,Braslia/Rodeador (DF),-15.603333,-48.130556,,250,345,9171,232,120,,2300-0800,1234567,55,,40001097,,, +11780,CHN,my,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1300-1400,1234567,,,50006140,,, +11780,AFS,en,NHK R Japan,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,1800-1830,1234567,,,50023199,,, +11780,SNG,my,R Australia,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SEA,0100-0130,1234567,,,50008749,,, +11785,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,310,1609,135,51,WEu,0700-0900,1234567,,,50006146,,, +11785,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAs,0200-0400,1234567,,,50006147,,, +11785,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,1400-1500,1234567,,,50006147,,, +11785,UAE,sw,IBRA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1730-1800,1234567,,,50023202,,, +11785,CHN,vi,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,100,,7712,60,114,SEA,1100-1200,1234567,,,50023201,,, +11790,D,fa,R Farda,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1500-1630,1234567,,,50023205,,, +11790,F,en,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,12345..,,,50023206,,, +11790,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WAf,0600-0630,1234567,,,50023203,,, +11790,RUS,tt,GTRK Tatarstan-Na Volne Tatarstana,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,Sib,0410-0500,1234567,,,50023204,,, +11790,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,239,5347,76,91,ME,1200-1400,1234567,,,50010499,,, +11790,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,0000-0100,1234567,,,50006152,,, +11790,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,2300-2400,1234567,,,50006152,,, +11790,AFS,sw,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,EAf,0530-0600,1234567,,,50006154,,, +11795,ROU,ru,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,CAs,1430-1500,1234567,,,50023207,,, +11795,TUR,fa,Voice of Turkey,,Emirler,39.401389,32.855833,,500,95,2469,114,55,IRN,0930-1100,1234567,,,50002591,,, +11795,KWT,my,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,1400-1430,1234567,,,50023208,,, +11795,UAE,,R Okapi,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,230,5075,109,84,,1600-1700,1234567,,,50018680,,, +11795,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,173,5347,76,91,SAs,1100-1200,1234567,,,50006157,,, +11795,KOR,es,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,SAm,1100-1200,1234567,,,50018681,,, +11795,MRA,my,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1330-1400,1234567,,,50023210,,, +11795,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,1230-1330,1234567,,,50023209,,, +11800,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,Cau,1700-1800,1234567,,,50023213,,, +11800,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,0300-0400,1234567,,,50023212,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,0,2000-2200,1234567,,,50014269,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,2000-2100,1234567,,,50014269,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,2100-2200,1234567,,,50014269,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,EAf,1900-1930,1234567,,,50014269,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,EAf,1930-2000,1234567,,,50014269,,, +11800,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1000-1100,1234567,,,50014269,,, +11800,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1500-1600,1234567,,,50014269,,, +11800,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0700-0730,1234567,,,50009875,,, +11800,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,0030-0600,1234567,,,40001101,,, +11800,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,0600-0900,12.4567,,,40001101,,, +11800,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,0900-1030,1234567,,,40001101,,, +11800,AFS,en,NHK R Japan,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,1800-1830,1234567,,,50023211,,, +11805,TUR,zh,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,FE,1200-1300,1234567,,,50023215,,, +11805,CLN,ur,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,IND,1600-1630,1234567,,,50023216,,, +11805,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,INS,1330-1430,1234567,,,50023214,,, +11805,MRA,VN,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-0030,1234567,,,50023218,,, +11805,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1630-1700,1.3.5..,,,50023217,,, +11805,GUM,sd,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,PAK,1630-1700,.2.4.67,,,50023217,,, +11805,B,pt,ZYE770 Super Rdio Deus Amor,,Rio de Janeiro/Sitio Boa Vista (RJ),-22.778611,-43.015833,,10,45,9607,225,136,,0000-2400,1234567,8,,40001102,,, +11810,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,60,4724,102,77,SAs,0720-0820,1234567,,,50022018,,, +11810,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,,1800-2200,1234567,,,50009879,,, +11810,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,CAf,1800-2100,1234567,,,50009879,,, +11810,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,CAf,2100-2200,12345..,,,50009879,,, +11810,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0100-0300,1234567,,,36201080,,, +11810,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0000-0100,1234567,,,36201080,,, +11810,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,305,8663,46,119,Eu,2200-2300,1234567,,,50006174,,, +11810,KOR,es,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,SAm,0100-0200,1234567,,,50006174,,, +11810,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,J,0200-0300,1234567,,,50006174,,, +11810,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,SAm,0300-0400,1234567,,,50006174,,, +11815,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1400-1700,1234567,,,50023219,,, +11815,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,15,7773,50,115,,0300-0400,1234567,,,40001104,,, +11815,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,SEA,0900-1500,1234567,,,50006176,,, +11815,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,SEA,1500-1700,1234567,,,50006176,,, +11815,B,pt,ZYE440 Rdio Brasil Central,,Goinia/Fazenda Bananal (GO),-16.588014,-49.216389,,7.5,0,9325,233,136,,0700-0400,1234567,987,,40001105,,, +11820,D,ku,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,ME,1700-1800,1234567,,,50023220,,, +11820,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,320,4552,116,76,Eu,1800-2300,1234567,,,50016232,,, +11820,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,0000-0100,1234567,,,50006179,,, +11825,G,fa,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,1500-1530,1234567,,,50023893,,, +11825,G,ps,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,1430-1500,1234567,,,50023893,,, +11825,ROU,zh,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,FE,1400-1430,1234567,,,50023222,,, +11825,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,EEu,0450-0520,1234567,,,50020961,,, +11825,KWT,fa,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1530-1630,1234567,,,50023224,,, +11825,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0920-0950,1234567,,,50023221,,, +11825,PHL,KHA,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1300-1330,1234567,,,50008778,,, +11825,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1100-1200,1234567,,,50023223,,, +11825,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1230,1234..7,,,50023223,,, +11825,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1300,....56.,,,50023223,,, +11825,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1230-1300,1234..7,,,50023223,,, +11830,IRN,id,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SEA,2220-2320,1234567,,,50023226,,, +11830,IRN,sw,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EAf,1720-1820,1234567,,,50023226,,, +11830,RUS,en,Voice of Russia,,Petropavlovsk/Yelizovo (SW) (KM),53.190833,158.41,,250,64,8020,17,113,,2200-2300,1234567,,,50020300,,, +11830,CHN,tl,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,PHL,1430-1500,1234567,,,50023225,,, +11830,AFS,en,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1830-1900,1234567,,,50023227,,, +11830,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,349,10223,62,124,,0000-0100,1234567,,,50021717,,, +11830,B,pt,ZYE441 Rdio Daqui,,Goinia/Fazenda Botafogo (GO),-16.659167,-49.227222,,10,15,9332,233,135,,0800-2000,1234567,,,40001109,,, +11835,TUR,az,Voice of Turkey,,Emirler,39.401389,32.855833,,500,310,2469,114,55,Cau,0800-0900,1234567,,,50010512,,, +11835,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,0000-0600,1234567,,,40001110,,, +11835,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,0600-0900,12.4567,,,40001110,,, +11835,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,0900-1100,1234567,,,40001110,,, +11840,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1400-1800,1234567,,,50023228,,, +11840,IND,hi,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,0315-0415,1234567,,,50010514,,, +11840,IND,zh,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,FE,1145-1315,1234567,,,50010514,,, +11840,IND,zh,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,250,65,6248,85,96,,1145-1315,1234567,,,50016234,,, +11840,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,,0315-0415,1234567,,,50016235,,, +11840,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1145-1315,1234567,,,50023894,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,,2100-2300,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CHL,0100-0400,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CHL,0400-0500,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CHL,2300-0100,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CHL,2300-0500,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,,2100-0500,1234567,,,31600136,,, +11840,CLN,fr,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,Af,2030-2100,.....67,,,50023230,,, +11840,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,2000-2030,1234567,,,50023229,,, +11840,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1900-2000,1234567,,,50023229,,, +11840,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,165,11715,42,133,,1000-1018,123456,,,50006195,,, +11840,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,165,11715,42,133,Oc,1000-1019,12345..,,,50006195,,, +11840,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,165,11715,42,133,Oc,1000-1030,.....6.,,,50006195,,, +11840,AUS,en,R Australia,,Shepparton (SW) (VIC),-36.325,145.416944,,100,70,16373,78,148,,2200-2400,1234567,,,37700054,,, +11845,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,0100-0600,1234567,,,36201066,,, +11845,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,0600-0800,12.4567,,,36201066,,, +11845,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0000-0100,1234567,,,50023231,,, +11845,AFS,so,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,30,9003,160,124,EAf,1800-1830,1234567,,,50020976,,, +11850,D,ku,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,ME,1400-1500,1234567,,,50023233,,, +11850,IND,ne,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,50,102,6248,85,103,NPL,0700-0800,1234567,,,50016238,,, +11850,MDG,fr,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,250,305,8830,141,119,WAf,2030-2100,1234567,,,50015163,,, +11850,PHL,VN,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1300-1327,1234567,,,50006209,,, +11850,PHL,km,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1000-1030,1234567,,,50006209,,, +11850,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1030-1130,1234567,,,50006209,,, +11850,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1300-1330,1234567,,,50006209,,, +11850,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1030-1127,1234567,,,50006209,,, +11850,MRA,km,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,2230-2330,1234567,,,50023232,,, +11855,ALB,zh,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,Eu,0700-0900,1234567,,,50023234,,, +11855,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jeddah (mkh),21.383333,39.416667,,100,,4435,128,81,ME,0600-1700,1234567,,,50023895,,, +11855,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1000,1234567,,,50023896,,, +11855,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0900-1000,1234567,,,50023237,,, +11855,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0000-0027,1234567,,,50013588,,, +11855,PHL,ta,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0030-0100,1234567,,,50013588,,, +11855,PHL,ta,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0030-0057,1234567,,,50013588,,, +11855,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1230,1234..7,,,50023236,,, +11855,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1300,....56.,,,50023236,,, +11855,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1230-1300,1234..7,,,50023236,,, +11855,B,pt,ZYE954 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,1,30,9721,226,146,,0700-0200,1234567,9,,36902748,,, +11860,D,kab,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,1730-1800,1234567,,,50023241,,, +11860,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1300-1330,1234567,,,50023238,,, +11860,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1400-1430,1234567,,,50023238,,, +11860,F,wo,Adventist World R,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1900-1930,1234567,,,50023242,,, +11860,AUT,ar,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,LBY,1830-1900,1234567,,,50023240,,, +11860,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,CAf,1800-1830,1234567,,,50023239,,, +11860,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0300-0600,1234567,,,40001116,,, +11860,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0600-0900,1.34567,,,40001116,,, +11860,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,0130-0230,1234567,,,50006221,,, +11860,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,ENA,1100-1300,1234567,,,50017042,,, +11860,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,ENA,1300-1500,1234567,,,50017042,,, +11860,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,ENA,1100-1500,1234567,,,50017042,,, +11860,CLN,ko,CMI Voice of Wilderness,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,KRE,1300-1400,1234567,,,50023897,,, +11860,CLN,ko,CMI Voice of Wilderness,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,KRE,1400-1430,......7,,,50023897,,, +11860,BOT,ha,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,WAf,2030-2100,12345..,,,50023243,,, +11860,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2200-2300,1234..7,,,50023244,,, +11860,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2300-2400,1234567,,,50023244,,, +11865,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,1500-1600,1234567,,,50023246,,, +11865,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023898,,, +11870,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1600-1700,1234567,,,50023247,,, +11870,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,2200-2300,1234567,,,50023248,,, +11870,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAs,0200-0300,1234567,,,50006235,,, +11870,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,155,7317,294,106,SAm,0000-1000,1234567,,,50002685,,, +11870,PHL,bn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,1400-1427,1234567,,,50006237,,, +11870,PHL,hi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,1330-1400,1234567,,,50006237,,, +11870,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SEA,1430-1457,1234567,,,50006237,,, +11870,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,305,11578,41,128,,1600-1700,1234567,,,50020989,,, +11875,F,fr,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,,1900-2000,1234567,,,50019502,,, +11875,D,,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1630-1730,1234567,,,50023252,,, +11875,UAE,KNK,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1830-1900,12345..,,,50023251,,, +11875,RRW,aa,FEBA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,EAf,1600-1627,1234567,,,50023899,,, +11875,CHN,mn,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,MNG,0000-0100,1234567,,,50006243,,, +11875,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,SEA,1100-1200,1234567,,,50006244,,, +11875,TWN,zh,R France Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,352,9489,58,121,FE,0930-1030,1234567,,,50015889,,, +11875,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,0700-0800,1234567,,,50018723,,, +11875,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,2300-2400,1234567,,,50023253,,, +11875,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1230-1300,1234567,,,50023249,,, +11875,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1300-1315,.....6.,,,50023249,,, +11880,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0500-0900,1234567,,,50023255,,, +11880,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Af,2200-2300,1234567,,,50019733,,, +11880,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Af,2100-2130,1234567,,,50019733,,, +11880,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Af,2130-2200,1234567,,,50019733,,, +11880,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,50,16373,78,148,Oc,1530-2000,1234567,,,50016240,,, +11885,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,20,5762,180,95,WAf,2030-2100,12345..,,,50018728,,, +11885,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0600-0700,1234567,,,40001123,,, +11885,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0300-0600,1234567,,,40001123,,, +11885,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0700-0800,1234567,,,40001123,,, +11885,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0800-1100,1.34567,,,40001123,,, +11885,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1100-1800,1234567,,,40001123,,, +11885,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0000-0200,1234567,,,50006257,,, +11885,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2400,1234567,,,50023900,,, +11885,USA,en,PCJ R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,NAm,1330-1430,......7,,,50023901,,, +11890,G,ru,R Liberty,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EEu,1500-1700,1234567,,,50023258,,, +11890,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,200,325,3024,131,64,Eu,2115-2245,1234567,,,50021844,,, +11890,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,315,3170,130,65,,2115-2245,1234567,,,50017615,,, +11890,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,1930-2000,1234567,,,50023256,,, +11890,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,2000-2030,....5..,,,50023256,,, +11890,PHL,vi,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,SEA,1315-1400,1234567,,,50021006,,, +11890,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,,1230-1300,12345.7,,,50021006,,, +11890,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,,1230-1315,.....6.,,,50021006,,, +11890,PHL,en,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,ME,1730-1930,1234567,,,50023257,,, +11895,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,80,1547,213,49,,0500-0700,1234567,,,50018732,,, +11895,RRW,fa,BBC WS,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,IRN,0230-0330,1234567,,,50023259,,, +11895,RRW,fa,BBC WS,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,IRN,0330-0430,1234567,,,50023259,,, +11895,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,,0900-1000,1234567,,,50021720,,, +11895,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,FE,1100-1200,1234567,,,50023260,,, +11895,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,FE,1100-1300,1234567,,,50023260,,, +11895,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,FE,1200-1300,1234567,,,50023260,,, +11895,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SAs,0100-0200,1234567,,,50023261,,, +11895,TWN,ko,Family R,,Huwei (SW) (YL),23.726389,120.417222,,100,2,9441,57,125,,0800-0900,1234567,,,21800029,,, +11900,D,ady,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,1540-1600,1234567,,,50023264,,, +11900,D,av,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,1500-1520,1234567,,,50023264,,, +11900,D,ce,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,1520-1540,1234567,,,50023264,,, +11900,UAE,ur,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,1400-1445,1234567,,,50023263,,, +11900,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,WAf,2200-2300,1234567,,,50023265,,, +11900,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,95,7797,50,113,FE,0000-0100,1234567,,,50006281,,, +11900,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,Oc,1300-1400,1234567,,,50023262,,, +11900,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,SOc,1551-1750,1234567,,,50023902,,, +11905,F,en,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,12345..,,,50023267,,, +11905,EGY,ar,ERTU Al-Barnameg al-Aam,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,ENA,0200-0700,1234567,,,50023266,,, +11905,KWT,am,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,185,4199,110,75,EAf,1800-1900,1234567,,,50017186,,, +11905,KWT,om,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,185,4199,110,75,EAf,1730-1800,12345..,,,50017186,,, +11905,KWT,ti,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,185,4199,110,75,EAf,1900-1930,12345..,,,50017186,,, +11905,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0100-0900,1234567,,,40001125,,, +11905,CLN,en,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,35,350,8200,97,124,SAs,0200-0330,1234567,,,50016243,,, +11905,CLN,hi,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,35,350,8200,97,124,SAs,0115-0200,1234567,,,50016243,,, +11905,CLN,hi,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,35,350,8200,97,124,SAs,0115-0330,1234567,,,50016243,,, +11910,AUT,ur,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,PAK,1600-1630,1234567,,,50023268,,, +11910,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,300,140,1660,112,49,,0800-0815,..3....,,,50011706,,, +11910,CHN,es,RNE R Exterior,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,165,7797,50,108,PHL,1200-1400,1234567,,,50016474,,, +11910,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,1900-2000,1234567,,,50016244,,, +11910,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,1800-1900,1234567,,,50016244,,, +11910,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,2000-2100,1234567,,,50016244,,, +11910,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1900-0100,1234567,,,50006295,,, +11915,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,1700-1720,123456,,,50023269,,, +11915,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,1720-1735,..3....,,,50023269,,, +11915,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,295,4552,116,76,NAf,1800-2300,1234567,,,50016245,,, +11915,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,114,5762,180,95,Af,1100-1130,.....6.,,,50017807,,, +11915,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023903,,, +11915,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0030-0600,1234567,,,40001127,,, +11915,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0900,12.4567,,,40001127,,, +11915,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0900-1000,1234567,,,40001127,,, +11915,TWN,id,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,205,9489,58,121,INS,1000-1100,1234567,,,50007801,,, +11915,TWN,zh,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,225,9489,58,121,SEA,1200-1230,1234567,,,50007801,,, +11915,TWN,zh,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,225,9489,58,121,SEA,1230-1300,1234567,,,50007801,,, +11915,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,INS,1100-1200,1234567,,,50021721,,, +11915,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,SEA,1300-1400,1234567,,,50021721,,, +11915,B,pt,ZYE851 Rdio Novo Tempo,,Porto Alegre/BR-116 (RS),-29.997361,-51.287333,,7.5,350,10712,227,141,,0700-0300,1234567,,,40001129,,, +11920,D,pt,HCJB Global,,Nauen (brb),52.647778,12.908611,,100,240,445,80,42,SAm,2300-0045,1234567,,,50018739,,, +11920,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,240,1609,135,51,WAf,1400-1600,1234567,,,50006302,,, +11920,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023904,,, +11920,MRA,uz,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,250,305,11578,41,128,,1500-1530,1234567,,,50021020,,, +11920,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1600-1700,1234567,,,50023270,,, +11925,D,om,Voice of America,,Nauen (brb),52.647778,12.908611,,250,140,445,80,38,,1730-1800,12345..,,,50021023,,, +11925,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Cau,0700-1000,1234567,,,50023274,,, +11925,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0250-0320,1234567,,,50019736,,, +11925,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023905,,, +11925,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1000-1805,1234567,,,40001132,,, +11925,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2025-0200,1234567,,,40001132,,, +11925,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0500-0600,.....6.,,,50023272,,, +11925,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0530-0600,......7,,,50023272,,, +11925,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0000-0100,1234567,,,50023275,,, +11925,PLW,en,NHK R Japan,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,SEA,1400-1430,1234567,,,50023273,,, +11925,PLW,id,NHK R Japan,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,SEA,1315-1400,1234567,,,50023273,,, +11925,B,pt,ZYE956 Rdio Bandeirantes,,So Paulo/Jardim Santa Emilia (SP),-23.645956,-46.601278,,10,202,9868,227,137,,0000-2400,1234567,22,,40001133,,, +11930,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,270,4552,116,76,WAf,1800-2300,1234567,,,50016247,,, +11930,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,1300-2200,1234567,,,50016248,,, +11935,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1500-1530,1234567,,,50023277,,, +11935,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1500-1600,1234567,,,50023277,,, +11935,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,115,1205,156,49,ME,1630-1700,1234567,,,50015213,,, +11935,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,115,1205,156,49,ME,1715-1730,1234567,,,50015213,,, +11935,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,115,1205,156,49,ME,1700-1715,1234567,,,50015213,,, +11935,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,310,4552,116,76,ME,0900-1200,1234567,,,50016249,,, +11935,IND,en,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,250,6734,96,104,EAf,1745-1945,1234567,,,50016250,,, +11935,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0055-0615,1234567,,,40001135,,, +11935,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,2300-2400,1234567,,,50023276,,, +11935,PHL,hmn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1200-1230,1234567,,,50006321,,, +11935,PHL,hmn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1200-1227,1234567,,,50006321,,, +11935,PHL,kar,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0000-0030,1234567,,,50006321,,, +11935,PHL,kar,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,0000-0027,1234567,,,50006321,,, +11935,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1300-1500,1234567,,,50023279,,, +11940,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,242,1547,213,49,LAm,1900-2300,.....67,,,50018749,,, +11940,MDG,ar,R Dabanga,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0430-0430,1234567,,,50023280,,, +11940,MDG,ar,R Tamazuj,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0400-0430,1234567,,,50023281,,, +11945,F,ja,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,155,660,211,37,SAf,1700-1900,1234567,,,50006333,,, +11945,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023907,,, +11945,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023906,,, +11945,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1700,1234567,,,50023906,,, +11945,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,SEA,0100-0200,1234567,,,50006329,,, +11945,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,,10171,62,124,355,1000-1200,1234567,,,50015222,,, +11945,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,,10171,62,124,FE,1000-1157,1234567,,,50015222,,, +11945,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,100,16373,78,148,SOc,0600-1000,1234567,,,50016251,,, +11945,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,1100-1300,1234567,,,50016251,,, +11950,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,100,290,7116,74,108,,0300-0600,1234567,,,40001141,,, +11950,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,100,290,7116,74,108,,0600-0900,1.34567,,,40001141,,, +11955,F,ru,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,55,660,211,37,,1700-1800,1234567,,,50021722,,, +11955,AUT,tr,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,190,849,119,41,ME,1500-1530,1234567,,,50008857,,, +11955,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1800-1900,1234567,,,50023282,,, +11955,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1700-1800,1234567,,,50023283,,, +11955,TUR,ar,Voice of Turkey,,Emirler,39.401389,32.855833,,250,150,2469,114,58,ME,1000-1100,1234567,,,50008856,,, +11955,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,250,150,2469,114,58,,0600-1200,1234567,,,50008856,,, +11955,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,1330-1430,1234567,,,50006337,,, +11955,CHN,ms,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,1230-1330,1234567,,,50006337,,, +11955,CHN,tl,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,122,8246,70,120,PHL,1130-1230,1234567,,,50006337,,, +11955,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,INS,0000-0200,1234567,,,50023284,,, +11960,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0000-0600,1234567,,,40001146,,, +11960,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0600-0900,1.34567,,,40001146,,, +11965,G,si,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,CLN,1630-1700,1234567,,,50023286,,, +11965,G,ta,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,CLN,1545-1615,1234567,,,50023286,,, +11965,TUR,tk,Voice of Turkey,,Emirler,39.401389,32.855833,,500,20,2469,114,55,CAs,1300-1330,1234567,,,50008865,,, +11965,RUS,,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0030-0045,1234567,,,50023908,,, +11965,RUS,bho,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0045-0115,12345..,,,50023908,,, +11965,RUS,dz,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0115-0130,123...7,,,50023908,,, +11965,RUS,hi,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0045-0115,......7,,,50023908,,, +11965,RUS,ne,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0045-0115,.....6.,,,50023908,,, +11965,PHL,km,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,276,10223,62,124,SEA,1330-1430,1234567,,,50012892,,, +11965,PHL,lo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,SEA,1230-1300,1234567,,,50012892,,, +11965,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,276,10223,62,124,SEA,1200-1230,1234567,,,50012892,,, +11965,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,276,10223,62,124,SEA,1430-1530,1234567,,,50012892,,, +11970,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,EAf,0400-0600,1234567,,,50023288,,, +11970,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,0300-0330,1234567,,,50023289,,, +11970,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2000-1700,1234567,,,50023909,,, +11970,THA,my,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SEA,0200-0230,1234567,,,50023290,,, +11970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50016478,,, +11975,F,ar,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,160,660,211,37,NAf,0600-0630,1234567,,,50010547,,, +11975,D,tg,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,CAs,1400-1700,1234567,,,50023293,,, +11975,D,ar,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,0700-0800,1234567,,,50023292,,, +11975,MLI,fr,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,WAf,2130-2230,1234567,,,50006358,,, +11975,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,,2230-2400,1234567,,,50006358,,, +11975,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,NAf,2230-2300,1234567,,,50006358,,, +11975,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,NAf,2300-2400,1234567,,,50006358,,, +11975,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,1800-1830,1234567,,,50023291,,, +11975,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,0000-0100,1234567,,,50006359,,, +11975,THA,ur,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0100-0200,1234567,,,50021056,,, +11980,UKR,uk,R Dniprovska Hvylya,,Zaporizhzhia (ZP),47.833333,35.133333,,0.3,ND,2094,92,83,,0700-0900,.....67,,,50016254,,, +11980,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1100-1200,1234567,,,50023294,,, +11980,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,,1300-1400,1234567,,,50021723,,, +11980,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0700,1234567,,,50023910,,, +11980,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,,1200-1300,1234567,,,50006364,,, +11980,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,SEA,1200-1400,1234567,,,50006364,,, +11980,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0100-0200,1234567,,,50006364,,, +11980,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0900-1100,1234567,,,50006364,,, +11980,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0300-0700,..3....,,,50023296,,, +11985,TUR,ur,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,SAs,1300-1400,1234567,,,50023298,,, +11985,ARM,en,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1800-1900,1234567,,,50023297,,, +11985,ARM,en,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1500-1600,1234567,,,50023297,,, +11985,ARM,fr,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1600-1800,1234567,,,50023297,,, +11985,IND,si,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,174,6235,85,95,CLN,0045-0115,1234567,,,50016257,,, +11985,IND,ta,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,174,6235,85,95,CLN,0000-0045,1234567,,,50016257,,, +11985,TWN,ru,R Taiwan Int.,,Huwei (SW) (YL),23.726389,120.417222,,100,2,9441,57,125,FE,1100-1200,1234567,,,50013376,,, +11990,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023912,,, +11990,RUS,zh,Voice of America,,Novosibirsk City (NS),54.922222,82.8575,,250,120,4807,55,81,,1300-1500,1234567,,,50021725,,, +11990,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023911,,, +11990,CHN,vi,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,1100-1200,1234567,,,50023299,,, +11990,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,0000-0100,1234567,,,50006376,,, +11990,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,2300-2400,1234567,,,50006376,,, +11990,MRA,zh,Voice of America,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,310,11575,40,132,,1100-1300,1234567,,,50021724,,, +11995,F,es,R France Int.,,Issoudun (36),46.947222,1.894444,,500,232,660,211,37,SAm,0200-0300,1234567,,,50006380,,, +11995,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,232,660,211,37,CAf,1800-1900,1234567,,,50006380,,, +11995,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,232,660,211,37,WAf,1900-2000,1234567,,,50006380,,, +11995,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,232,660,211,37,WAf,2000-2100,1234567,,,50006380,,, +11995,D,ka,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,108,316,151,40,,1700-1800,1234567,,,50021067,,, +11995,D,ku,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,ME,0500-0600,1234567,,,50023304,,, +11995,D,ku,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,ME,1400-1500,1234567,,,50021067,,, +11995,F,ru,Evang.Missionsgemeinden,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1500-1530,.....6.,,,50023301,,, +11995,ARM,ur,BBC WS,,Gavar (SW) (grk),40.413611,45.192222,,300,100,3205,98,64,SAs,0300-0330,1234567,,,50021063,,, +11995,MDG,so,BBC WS,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0400-0430,1234567,,,50022344,,, +11995,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,IRN,1600-1700,1234567,,,50023302,,, +11995,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,250,315,10381,83,124,SAs,0100-0130,1234567,,,50009923,,, +11995,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,250,340,10381,83,124,SEA,0200-0230,1234567,,,50009923,,, +11995,MRA,ko,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2100-2200,1234567,,,50023303,,, +11995,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,CHN,1000-1100,1234567,,,50021066,,, +12000,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,235,6571,289,99,,0000-0100,.23456.,,,50008883,,, +12000,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,235,6571,289,99,,2330-2400,12345..,,,50008883,,, +12000,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,Sib,1130-1200,1234567,,,50007619,,, +12000,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,Sib,1230-1300,1234567,,,50007619,,, +12000,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1100-1130,1234567,,,50007619,,, +12000,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1200-1230,1234567,,,50007619,,, +12000,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1300-1330,1234567,,,50007619,,, +12000,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,2200-2230,1234567,,,50007619,,, +12000,PRG,es,R Licemil,, Guaz (asu),-25.256389,-57.545,,0.025,,10600,235,165,,1820-1900,1234567,,,33900001,,, +12000,PRG,es,R Licemil,, Guaz (asu),-25.256389,-57.545,,0.025,,10600,235,165,,1920-2050,1234567,,,33900001,,, +12005,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,IRN,1530-1700,1234567,,,50023305,,, +12005,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,0730-1530,1234567,,,50022345,,, +12005,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0100-0400,1234567,,,50023913,,, +12005,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SAs,0030-0100,1234567,,,50023914,,, +12005,SNG,my,R Australia,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SEA,0000-0030,1234567,,,50019353,,, +12015,IRN,hi,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1420-1520,1234567,,,50023310,,, +12015,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1200-1300,1234567,,,50023307,,, +12015,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,ME,1300-1400,1234567,,,50023308,,, +12015,RUS,en,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,FE,0700-0900,1234567,,,50023311,,, +12015,MNG,en,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,1530-1600,1234567,,,50016261,,, +12015,MNG,ja,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,1500-1530,1234567,,,50016261,,, +12015,MNG,mn,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,178,6615,50,99,As,1400-1430,1234567,,,50016261,,, +12015,MNG,zh,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,178,6615,50,99,As,1430-1500,1234567,,,50016261,,, +12015,ASC,ja,NHK R Japan,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,245,6960,203,103,SAm,0800-1000,1234567,,,50021075,,, +12015,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1300-1400,1234567,,,50016260,,, +12015,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1500-1600,1234567,,,50016260,,, +12015,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1800-1900,1234567,,,50016260,,, +12015,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2100-2200,1234567,,,50016260,,, +12015,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1900-2000,1234567,,,50016260,,, +12015,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2200-2300,1234567,,,50016260,,, +12015,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1400-1500,1234567,,,50016260,,, +12015,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1600-1700,1234567,,,50016260,,, +12015,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2000-2100,1234567,,,50016260,,, +12015,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1700-1800,1234567,,,50016260,,, +12015,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2300-2400,1234567,,,50016260,,, +12015,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,0530-0600,1234567,,,50023312,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1000-1030,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1230-1300,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1500-1530,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,2330-2400,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1130-1200,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1330-1400,1234567,2,,50006412,,, +12020,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1030-1100,1234567,2,,50006412,,, +12020,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1300-1330,1234567,2,,50006412,,, +12020,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1430-1500,1234567,2,,50006412,,, +12020,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,2300-2330,1234567,2,,50006412,,, +12020,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,FE,2200-2230,1234567,2,,50006412,,, +12020,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1100-1130,1234567,2,,50006412,,, +12020,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1200-1230,1234567,2,,50006412,,, +12020,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1400-1430,1234567,2,,50006412,,, +12020,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,2230-2300,1234567,2,,50006412,,, +12020,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,1700-1900,1234567,,,50023314,,, +12025,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,0800-1000,1234567,,,50023316,,, +12025,D,tk,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,CAs,1400-1600,1234567,,,50023316,,, +12025,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0100-0400,1234567,,,50023915,,, +12025,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,1615-1730,1234567,,,50008901,,, +12025,IND,ml,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,1730-1830,1234567,,,50008901,,, +12025,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,0030-0100,1234567,,,50023315,,, +12025,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,0000-0030,1234567,,,50023315,,, +12030,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,110,1547,213,49,ME,1900-2000,......7,,,50018793,,, +12035,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1330-1430,1234567,,,50023323,,, +12035,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,ME,0400-0500,1234567,,,50023319,,, +12035,RRW,en,BBC WS,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,ME,0300-0400,1234567,,,50023318,,, +12035,RUS,en,Voice of Russia,D,Irkutsk/Angarsk (IR),52.425833,103.669167,,1,,6080,48,118,SAs,1000-1200,1234567,,,50023322,,, +12035,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,1400-1500,.2....7,,,50023320,,, +12035,GUM,kar,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,1500-1530,1234567,,,50023324,,, +12035,GUM,mr,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1530-1600,1234567,,,50023324,,, +12040,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,1830-1900,12345..,,,50023325,,, +12045,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ME,1700-1800,1234567,,,50023327,,, +12045,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023916,,, +12045,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023916,,, +12045,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0000-0600,1234567,,,40001151,,, +12045,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0600-0900,1.34567,,,40001151,,, +12045,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0900-1100,1234567,,,40001151,,, +12045,SNG,ja,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,315,10381,83,124,SAs,1500-1700,1234567,,,50006436,,, +12045,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1100-1200,1234567,,,50023329,,, +12045,MRA,zh,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023328,,, +12050,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,155,7317,294,106,SAm,1000-1700,1234567,,,50010569,,, +12050,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,1800-2400,1234567,,,50010569,,, +12050,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1400,1234567,,,50023917,,, +12050,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1200-1400,1234567,,,50023331,,, +12055,RUS,ru,Voice of Russia,,Moskva (one of ku,L,se,t) (MV),55.75,37.3,,100,,2044,66,57,CAs,1200-1600,1234567,,,50023332 +12055,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0200-0300,1234567,,,40001154,,, +12055,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0500-0600,1234567,,,40001154,,, +12055,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0900-1000,1234567,,,40001154,,, +12055,CHN,mn,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0700-0800,1.34567,,,40001154,,, +12055,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0300-0500,1234567,,,40001154,,, +12055,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0600-0700,1.34567,,,40001154,,, +12055,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0800-0900,1.34567,,,40001154,,, +12055,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1000-1200,1234567,,,40001154,,, +12055,PHL,LAH,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,0015-0045,1234567,,,50006442,,, +12055,PHL,PAL,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,2330-2345,1234567,,,50006442,,, +12055,PHL,TL,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,2345-0015,1234567,,,50006442,,, +12055,PHL,WA,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,0045-0100,1234567,,,50006442,,, +12060,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1700-1800,1234567,,,50023333,,, +12065,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1330-1400,1234567,,,50023334,,, +12065,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1400-1430,1234567,,,50023334,,, +12065,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1430-1500,......7,,,50023334,,, +12065,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,Oc,1000-1530,1234567,,,50021091,,, +12070,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ME,1800-1930,1234567,,,50023918,,, +12070,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,0700-0730,1234567,,,50023335,,, +12070,RRW,am,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,30,6406,152,97,EAf,1600-1700,1234567,,,50012939,,, +12070,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,EAf,1900-1930,1234567,,,50012939,,, +12070,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,EAf,2000-2100,1234567,,,50012939,,, +12070,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,SAf,0500-0530,1234567,,,50012939,,, +12070,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,Af,2100-2200,1234567,,,50012939,,, +12070,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,WAf,0630-0700,1234567,,,50012939,,, +12070,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,WAf,1300-1400,1234567,,,50012939,,, +12070,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,1800-1900,1234567,,,50012939,,, +12070,RRW,pt,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,SAf,0530-0600,1234567,,,50012939,,, +12070,RRW,pt,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,SAf,1930-2000,1234567,,,50012939,,, +12070,CHN,tl,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,145,7808,59,108,PHL,1130-1200,1234567,,,50006449,,, +12070,PHL,zh,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,330,10183,62,128,FE,2300-0100,1234567,,,50006453,,, +12075,KWT,ur,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1400-1500,1234567,,,50021094,,, +12075,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,250,49,8219,99,115,,1200-1300,1234567,,,50021095,,, +12075,SNG,ur,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1500-1600,1234567,,,50022350,,, +12080,CVA,KNK,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1600-1630,.....6.,,,50023340,,, +12080,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,SAm,0045-0200,1234567,,,50023336,,, +12080,STP,ZWE,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,ZWE,1700-1800,1234567,,,50023339,,, +12080,STP,ZWE,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,ZWE,1800-1900,12345..,,,50023339,,, +12080,STP,ar,VoA Darfur,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,1900-1930,1234567,,,50023337,,, +12080,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0200-0600,1234567,,,40001158,,, +12080,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0900,12.4567,,,40001158,,, +12080,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0900-1000,1234567,,,40001158,,, +12080,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1630-1700,12345..,,,50023338,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,0300-0315,.....67,,,50016273,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,0315-0900,1234567,,,50016273,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,1000-1100,.....67,,,50016273,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,2000-0300,1234567,,,50016273,,, +12080,AUS,fr,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,0300-0315,12345..,,,50016273,,, +12080,AUS,tpi,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,0900-1000,1234567,,,50016273,,, +12080,AUS,tpi,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,1000-1100,12345..,,,50016273,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,5,80,15065,58,157,Oc,1100-1200,1234567,,,50016273,,, +12085,MNG,en,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,178,6615,50,99,As,0900-0930,1234567,,,50016274,,, +12085,MNG,ja,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,1030-1100,1234567,,,50016274,,, +12085,MNG,mn,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,0930-1000,1234567,,,50016274,,, +12085,MNG,zh,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,1000-1030,1234567,,,50016274,,, +12085,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,,16373,78,148,Oc,1100-1730,1234567,,,50022351,,, +12095,RUS,tt,GTRK Tatarstan-Na Volne Tatarstana,,Armavir/Tblisskaya/Krasnodar (KD),45.473056,40.103056,,100,,2550,93,63,EEu,0810-0900,1234567,,,50023342,,, +12095,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,335,5617,106,89,SAs,0200-0300,1234567,,,50016770,,, +12095,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,,2100-2200,1234567,,,50009938,,, +12095,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,CAf,0700-0800,1234567,,,50009938,,, +12095,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,2000-2100,1234567,,,50009938,,, +12095,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,2100-2200,12345..,,,50009938,,, +12095,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,280,7819,127,111,EAf,0400-0600,1234567,,,50013862,,, +12095,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,280,7819,127,111,EAf,1500-2000,1234567,,,50013862,,, +12095,AFS,Krw,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,,0500-0600,1234567,,,50009936,,, +12095,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,328,9003,160,120,CAf,0600-0700,1234567,,,50009936,,, +12095,PHL,ACH,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1230-1245,123.567,,,50006473,,, +12095,PHL,HMB,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,2300-2330,.....67,,,50006473,,, +12095,PHL,HMB,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1100-1130,.....67,,,50006473,,, +12095,PHL,HMQ,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,SEA,1300-1330,1234567,,,50006473,,, +12095,PHL,HMW,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,2300-2330,12345..,,,50006473,,, +12095,PHL,HMW,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1100-1130,12345..,,,50006473,,, +12095,PHL,MIE,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1200-1230,1234567,,,50006473,,, +12095,PHL,MIE,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1230-1300,...4...,,,50006473,,, +12095,PHL,TL,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1030-1100,1234567,,,50006473,,, +12095,PHL,lo,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1130-1200,1234567,,,50006473,,, +12095,PHL,mkh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,SEA,1330-1400,1234567,,,50006473,,, +12095,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1400-1500,.2....7,,,50023341,,, +12095,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,0000-0200,1234567,,,50023341,,, +12105,USA,ar,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,1500-2100,12..567,,,50013863,,, +12105,USA,ar,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,1400-2000,12..567,,,50013863,,, +12105,USA,ar,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,1400-2000,1234567,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,0000-0300,123..67,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,0000-0200,1234567,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,0100-0300,123..67,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,2300-2400,12..567,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,2300-2400,1234567,,,50013863,,, +12105,USA,fr,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,2100-2400,12..567,,,50013863,,, +12105,USA,fr,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,2000-2300,12..567,,,50013863,,, +12105,USA,fr,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,2000-2300,1234567,,,50013863,,, +12105,USA,pt,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,0300-0500,123..67,,,50013863,,, +12105,USA,pt,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,0200-0400,123..67,,,50013863,,, +12105,USA,ru,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,1400-1500,12..567,,,50013863,,, +12105,USA,ru,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,1300-1400,12..567,,,50013863,,, +12105,USA,ru,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,1300-1400,1234567,,,50013863,,, +12105,USA,yo,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,0200-0400,1234567,,,50013863,,, +12105,MDG,,,,Talata-Volonondry (tan),-18.751667,47.614444,,250,265,8830,141,119,,,,,,50021727,,, +12105,MRA,my,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1230-1430,1234567,,,50023344,,, +12105,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,FE,1115-1145,12345..,,,50023343,,, +12105,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,FE,1115-1145,123456,,,50023343,,, +12105,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,FE,1145-1200,.....6.,,,50023343,,, +12105,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,FE,1145-1200,123456,,,50023343,,, +12115,F,en,Disco Palace,D,Issoudun (36),46.947222,1.894444,,1,,660,211,64,SAs,1530-1630,1234567,,,50023345,,, +12115,CLN,my,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,57,8219,99,115,SEA,0030-0130,1234567,,,50012947,,, +12120,PHL,AK,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1215-1230,1234567,,,50006481,,, +12120,PHL,Akh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,,1215-1245,1234567,,,50006481,,, +12120,PHL,C-D,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1245-1300,1234567,,,50006481,,, +12120,PHL,LIS,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1300-1330,1234567,,,50006481,,, +12120,PHL,NAG,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1230-1245,1234567,,,50006481,,, +12120,PHL,RWG,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1200-1215,1234567,,,50006481,,, +12120,PHL,my,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1330-1400,1234567,,,50006481,,, +12125,ARM,GUR,IBRA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1600-1630,123....,,,50021107,,, +12125,ARM,am,IBRA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1600-1630,...4567,,,50021107,,, +12125,ARM,am,IBRA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1600-1700,1234567,,,50021107,,, +12125,ARM,am,IBRA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1630-1700,1234567,,,50021107,,, +12125,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,1500-1600,1234567,,,50023919,,, +12130,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023921,,, +12130,KWT,ps,R Mashaal,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,PAK,0400-0600,1234567,,,50023922,,, +12130,KWT,ps,R Mashaal,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,PAK,0700-0900,1234567,,,50023922,,, +12130,KWT,ps,R Mashaal,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,PAK,0900-1300,1234567,,,50023922,,, +12130,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023920,,, +12130,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,0600-0700,1234567,,,50023923,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0300-0330,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0430-0530,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0630-0730,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0830-0930,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1030-1130,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1230-1330,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1400-1430,1234567,,,50023348,,, +12140,KWT,fa,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1500-1630,1234567,,,50023349,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0230-0300,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0330-0430,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0530-0630,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0730-0830,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0930-1030,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1130-1230,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1330-1400,1234567,,,50023348,,, +12140,KWT,ps,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1430-1500,1234567,,,50023349,,, +12140,KWT,ps,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1630-1730,1234567,,,50023349,,, +12140,CLN,,Voice of Tigers,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,,1530-1630,1234567,,,34700027,,, +12140,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0200-0230,1234567,,,50023924,,, +12140,CLN,ps,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0130-0200,1234567,,,50023924,,, +12140,VTN,vi,VOV2,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,1400-1450,1234567,,,33200012,,, +12150,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,250,315,8219,99,115,,1500-1600,1234567,,,50006488,,, +12150,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,FE,1200-1300,1234567,,,50021855,,, +12150,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,FE,1300-1400,.....67,,,50021855,,, +12150,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,SAs,1400-1500,12345..,,,50021855,,, +12150,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,SAs,1500-1600,1234567,,,50021855,,, +12155,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023926,,, +12155,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023925,,, +12160,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,85,7122,296,108,NAm,1600-2100,1234567,,,50009943,,, +12166.5,OCE,,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,-12166.5,,37500011,,, +12190,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022355,,, +12230,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50014326,,, +12254,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902777,,, +12256,AFS,,ZRK6963 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300033,,, +12257,G,en,WR International,,unknown,55.55,-2.65,,0.05,,706,306,77,,0700-1130,......7,,,2800053,,, +12260,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902793,,, +12269,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902828,,, +12284,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902795,,, +12284,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902830,,, +12290,E,,Madrid R,u,Pozuelo del Rey (MAD-M),40.363389,-3.285028,,1,,1501,213,72,,????-????,1234567,,,2200036,,, +12290,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902797,,, +12290,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902779,,, +12290,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700156,,, +12311,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902781,,, +12311,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902856,,, +12320,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902858,,, +12320,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017413,,, +12356,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0303-0313,1234567,,,32500030,,, +12356,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0903-0913,1234567,,,32500030,,, +12356,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1503-1513,1234567,,,32500030,,, +12356,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2103-2113,1234567,,,32500030,,, +12362,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,:00-:15,1234567,,,37700026,,, +12362,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,:30-:45,1234567,,,37700026,,, +12365,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,:00-:15,1234567,,,37700020,,, +12370,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017646,,, +12388.5,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,-12388.5,,6800032,,, +12408,CHN,,XSF23,p,Weihai (SD),37.516667,122.1,,1,,8269,48,140,,????-????,1234567,,,36201265,,, +12412.5,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0340-0608,1234567,-12412.5,,20016143,,, +12412.5,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0950-1208,1234567,-12412.5,,20016143,,, +12412.5,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1540-1808,1234567,-12412.5,,20016143,,, +12412.5,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,2150-0028,1234567,-12412.5,,20016143,,, +12500,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50016778,,, +12539,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,,,6800033,,, +12577,E,,Madrid R,2,Pozuelo del Rey (MAD-M),40.363389,-3.285028,,1,,1501,213,72,,????-????,1234567,,,2200038,,, +12577,TUR,,Istanbul R,2,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,,,,,8000027,,, +12577,USA,,COMMSTA Portsmouth,2,Portsmouth (USCG COMMSTA) (VA),36.833333,-76.3,,1,,6407,290,121,,,,,,20016313,,, +12577,USA,,KHT,u,Cedar Rapids (IA),42.034722,-91.643611,,1,,6930,304,126,,,,,,20016309,,, +12577,USA,,COMMSTA Miami,2,Miami (USCG COMMSTA) (FL),25.619444,-80.386389,,1,,7578,284,133,,,,,,20016314,,, +12577,CHN,,Shanghai R,2,Shanghai (SH),31.108889,121.544167,,1,,8826,52,143,,,,,,36201338,,, +12577,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,,,35400115,,, +12577,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800017,,, +12577,AUS,,Charleville / Wiluna R,2,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,,,,,37700161,,, +12617,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800034,,, +12621.5,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,0000-1200,1234567,-12621.5,,37700118,,, +12641,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800035,,, +12665,B,,PWZ33 Rio Meteo,f,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0745-0910,1234567,,,36902811,,, +12665,B,,PWZ33 Rio Meteo,f,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1630-1755,1234567,,,36902811,,, +12673,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000066,,, +12675.5,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0700-0900,1234567,-12675.5,,11700010,,, +12675.5,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1100-1300,1234567,-12675.5,,11700010,,, +12685,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000067,,, +12687,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0200-2200,1234567,,,7300009,,, +12691,REU,,FUX,,Sainte-Suzanne (974),-20.910172,55.58455,,100,,9412,135,125,,0000-2400,1234567,,,11800005,,, +12709,B,,PPR Rio Rdio,r,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0600-0730,1234567,,,36902806,,, +12709,B,,PPR Rio Rdio,r,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1845-1930,1234567,,,36902806,,, +12721,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800008,,, +12732,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800009,,, +12736,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000068,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0145-0300,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0430-0450,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0540-0800,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1100-1200,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1335-1530,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1645-2000,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,2215-2245,1234567,-12745.5,,31400040,,, +12750,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1400-1600,1234567,,,20016156,,, +12750,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1720-2241,1234567,,,20016156,,, +12750,JMC,,Kingston Coastguard R,u,Kingston (kgs),17.934722,-76.843056,,1,,7988,276,137,,????-????,1234567,,,35700003,,, +12759,BIO,en,AFN,u,Diego Garcia (SW) (dga),-7.4302,72.441114,,1,,9078,114,144,,0200-1400,1234567,,,12200001,,, +12762,D,,DAO23 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,,,2000053,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0140-0415,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0655-1015,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1120-1230,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1400-1615,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1840-2215,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2320-2400,1234567,,,20016146,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0330-0400,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0515-0545,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0930-1000,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1115-1145,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1530-1600,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1715-1745,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2130-2200,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2315-2345,1234567,,,20012365,,, +12789.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0000-0305,1234567,-12789.9,,20016151,,, +12789.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0600-0855,1234567,-12789.9,,20016151,,, +12789.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1200-1505,1234567,-12789.9,,20016151,,, +12789.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1800-2105,1234567,-12789.9,,20016151,,, +12800,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017414,,, +12800,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-2400,1234567,,,50017414,,, +12815,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000004,,, +12818,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800036,,, +12832.5,J,,JFC,c,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,-12832.5,,31400049,,, +12851,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800037,,, +12870,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017618,,, +12892.5,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,-12892.5,,5800010,,, +12910,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022356,,, +12924,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000069,,, +12927.3,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,0530-0545,1234567,-12927.3,,34700011,,, +12927.3,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,1330-1345,1234567,-12927.3,,34700011,,, +12980,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50016780,,, +13002,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,1200-1900,1234567,,,7300010,,, +13019,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,1200-1900,1234567,,,7300011,,, +13025.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,1200-1900,1234567,-13025.5,,7300012,,, +13034.9,USA,,WHL23 Saint Augustine R,p,Saint Augustine (FL),29.750833,-81.28,,1,,7294,288,130,,????-????,1234567,-13034.9,,20016178,,, +13074,J,,JFC,f,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,31400050,,, +13078.5,PHL,,DZO23 Manila R,p,Lucena City (qzn),13.947222,121.619444,,1,,10413,62,148,,????-????,1234567,-13078.5,,33300026,,, +13080,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,????-????,1234567,,,22500013,,, +13089,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000005,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1115-1145,1234567,,,20012364,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1530-1600,1234567,,,20012364,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1715-1745,1234567,,,20012364,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2130-2200,1234567,,,20012364,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2315-2345,1234567,,,20012364,,, +13089,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0430-0505,1234567,,,20012375,,, +13089,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1030-1105,1234567,,,20012375,,, +13089,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1630-1705,1234567,,,20012375,,, +13089,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2230-2305,1234567,,,20012375,,, +13089,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,0005-0040,1234567,,,20012372,,, +13089,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,1800-1835,1234567,,,20012372,,, +13089,GUM,en,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,0330-0405,1234567,,,20012379,,, +13089,GUM,en,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,2130-2205,1234567,,,20012379,,, +13101,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902776,,, +13107,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,,,3300002,,, +13107,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902792,,, +13110,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016234,,, +13116,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902827,,, +13121,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000070,,, +13128,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1000-1015,1234567,,,8000022,,, +13128,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1800-1815,1234567,,,8000022,,, +13128.7,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-13128.7,,31200010,,, +13128.7,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-13128.7,,31200010,,, +13128.7,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-13128.7,,31200010,,, +13130,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50009950,,, +13131,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902794,,, +13131,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902829,,, +13137,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902796,,, +13137,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902778,,, +13146,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,0720-0740,1234567,,,5300003,,, +13146,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1203-1223,1234567,,,5300003,,, +13146,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1720-1740,1234567,,,5300003,,, +13146,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1015-1030,1234567,,,20300009,,, +13146,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1333-1348,1234567,,,20300009,,, +13146,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1815-1830,1234567,,,20300009,,, +13152,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016236,,, +13158,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000006,,, +13158,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902780,,, +13158,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902855,,, +13170,GRC,,SVO Olympia R,u,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,????-????,1234567,,,3400004,,, +13173,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902857,,, +13174.5,USA,,KKL23,p,Vashon (WA),47.370808,-122.48775,,0.15,,7936,326,145,,????-????,1234567,-13174.5,,20016162,,, +13261,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012456,,, +13261,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500006,,, +13261,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700078,,, +13261,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700082,,, +13261,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500006,,, +13261,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500035,,, +13264,IRL,en,EIP Shannon Volmet,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100008,,, +13264,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100022,,, +13267,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:00-:04,1234567,,,6700045,,, +13267,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:30-:34,1234567,,,6700045,,, +13267,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:25-:29,1234567,,,6700061,,, +13267,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:55-:59,1234567,,,6700061,,, +13267,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:10-:14,1234567,,,6700049,,, +13267,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:40-:44,1234567,,,6700049,,, +13267,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:20-:24,1234567,,,6700057,,, +13267,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:50-:54,1234567,,,6700057,,, +13267,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:15-:19,1234567,,,6700053,,, +13267,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:45-:49,1234567,,,6700053,,, +13270,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:20-:29,1234567,,,20100020,,, +13270,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:50-:59,1234567,,,20100020,,, +13270,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:00-:19,1234567,,,20000083,,, +13270,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:30-:49,1234567,,,20000083,,, +13270,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900015,,, +13270,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50016484,,, +13270,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-2400,1234567,,,50016484,,, +13273,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012464,,, +13276,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016244,,, +13276,USA,,San Francisco Aero,h,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20016252,,, +13282,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:10-:14,1234567,,,31400004,,, +13282,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:40-:44,1234567,,,31400004,,, +13282,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:15-:18,1234567,,,33800005,,, +13282,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:45-:48,1234567,,,33800005,,, +13282,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:25-:39,1234567,,,20000096,,, +13282,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:55-:09,1234567,,,20000096,,, +13282,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:20-:24,1234567,,,32500018,,, +13282,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:50-:54,1234567,,,32500018,,, +13285,CHN,en,Beijing Volmet,u,Beijing/Airport (BJ),40.087778,116.605556,,1,,7757,50,135,,0015-0900,1234567,,,36200228,,, +13285,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:00-:14,1234567,,,36200224,,, +13285,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:30-:44,1234567,,,36200224,,, +13288,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300008,,, +13288,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900014,,, +13288,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400007,,, +13288,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600014,,, +13288,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300005,,, +13288,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500008,,, +13288,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500006,,, +13288,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012435,,, +13288,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012466,,, +13291,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100023,,, +13291,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0900-2100,1234567,,,4200004,,, +13291,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1000-2000,1234567,,,20109263,,, +13294,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100007,,, +13297,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-2400,1234567,,,20016237,,, +13297,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400011,,, +13297,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902905,,, +13297,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500029,,, +13300,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012454,,, +13303,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500013,,, +13306,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100014,,, +13306,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0900-2100,1234567,,,4200012,,, +13306,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,1000-2100,1234567,,,700003,,, +13306,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1230-1830,1234567,,,20109262,,, +13306,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-2400,1234567,,,20012394,,, +13306,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,5,,6741,96,117,,,,,,32200016,,, +13306,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500011,,, +13312,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900015,,, +13315,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300020,,, +13315,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500014,,, +13318,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200026,,, +13318,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900009,,, +13318,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700088,,, +13321,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700104,,, +13321,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300013,,, +13330,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012414,,, +13333,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500041,,, +13339,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012487,,, +13339,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012465,,, +13342,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800047,,, +13348,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016238,,, +13348,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012494,,, +13348,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012440,,, +13348,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012480,,, +13348,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900023,,, +13348,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012507,,, +13350,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50014275,,, +13354,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,1100-1900,1234567,,,700009,,, +13354,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900008,,, +13354,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-0400,1234567,,,20012395,,, +13354,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012434,,, +13354,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012473,,, +13357,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500010,,, +13357,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000006,,, +13362,GUM,en,AFN,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,2000-0800,1234567,,,20000015,,, +13363.5,ARG,es,R.Continental/R.Rivadavia/FM Metro,l,Buenos Aires (df),-34.633333,-58.466667,,5,,11512,230,145,,0000-2400,1234567,-13363.5,,40001166,,, +13430,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017193,,, +13480,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020308,,, +13530,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017512,,, +13538,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0430-0830,1234567,,,20300029,,, +13538,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0915-1130,1234567,,,20300029,,, +13538,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,1530-1730,1234567,,,20300029,,, +13538,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,2230-2300,1234567,,,20300029,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0030-0045,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0130-0145,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0230-0245,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0330-0345,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0430-0445,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0930-0945,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1030-1045,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1130-1145,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1230-1245,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1330-1345,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1430-1445,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1530-1545,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1630-1645,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2130-2145,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2230-2245,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2330-2345,1234567,-13550.5,,32500044,,, +13570,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,100,5762,180,95,,1800-1830,1234567,,,50020122,,, +13570,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,EAf,1600-1700,1234567,,,50020122,,, +13570,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,,1830-1900,1234567,,,50020122,,, +13570,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,1130-1630,......7,,,50016277,,, +13570,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,1630-1800,.....67,,,50016277,,, +13570,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,1800-2100,1234567,,,50016277,,, +13570,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,CAm,1300-2200,1234567,,,50016277,,, +13570,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,,2330-2400,1234567,,,50021112,,, +13570,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,0000-1200,1234567,,,34600014,,, +13580,D,ps,R Mashaal,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,PAK,0500-0900,1234567,,,50023929,,, +13580,EGY,sq,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,Eu,1500-1600,1234567,,,50010578,,, +13580,EGY,sq,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,300,3170,130,65,,1500-1600,1234567,,,50016278,,, +13580,KWT,ps,R Mashaal,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,PAK,0900-1100,1234567,,,50023927,,, +13580,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,0000-0200,1234567,,,50006498,,, +13580,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1100-1200,1234567,,,50006499,,, +13580,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,0400-0500,1234567,,,50023928,,, +13580,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1300-1400,1234567,,,50023351,,, +13580,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1600-1800,1234567,,,50023351,,, +13580,CLN,ur,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0400-0500,1234567,,,50023351,,, +13590,F,ps,VoA Deewa R,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,AFG,1400-1500,1234567,,,50023932,,, +13590,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,0000-0100,1234567,,,50023353,,, +13590,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1300-1400,1234567,,,50023930,,, +13590,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,FE,0300-0500,1234567,,,50006506,,, +13590,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,1000-1200,1234567,,,50006506,,, +13590,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,1500-1600,1234567,,,50023931,,, +13600,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,EAf,0200-0300,1234567,,,11700013,,, +13600,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,EAf,0400-1000,1234567,,,11700013,,, +13600,OMA,en,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,,0400-0500,1234567,,,11700013,,, +13600,OMA,en,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,EAf,0300-0400,1234567,,,11700013,,, +13600,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,0100-0200,1234567,,,50006512,,, +13600,SNG,my,NHK R Japan,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1430-1500,1234567,,,50023356,,, +13600,SNG,vi,NHK R Japan,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1300-1330,1234567,,,50023356,,, +13605,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,58,7561,97,106,FE,1000-1100,1234567,,,50016280,,, +13605,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,EAf,1615-1730,1234567,,,50016280,,, +13605,IND,zh,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,58,7561,97,106,FE,1145-1315,1234567,,,50016280,,, +13605,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,250,58,7561,97,109,FE,2245-0045,1234567,,,50016280,,, +13605,IND,sw,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,250,280,7561,97,109,EAf,1515-1615,1234567,,,50016280,,, +13605,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1145-1315,1234567,,,50023933,,, +13610,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,0700-0800,1234567,,,50023357,,, +13610,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,0800-0900,1234567,,,50023357,,, +13610,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,0600-0900,1.34567,,,40000585,,, +13610,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,0900-1300,1234567,,,40000585,,, +13610,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,2300-0600,1234567,,,40000585,,, +13615,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,1430-1730,1234567,,,50023358,,, +13615,F,fa,R Farda,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,0500-0730,1234567,,,50023360,,, +13615,UZB,bn,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1300-1345,1234567,,,50023934,,, +13615,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,0300-0500,1234567,,,50023359,,, +13620,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,SAm,0045-0200,1234567,,,50016485,,, +13620,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,SAm,2330-0045,1234567,,,50023362,,, +13620,EGY,pt,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,SAm,2215-2330,1234567,,,50023362,,, +13620,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,NAf,1020-1120,1234567,,,50023363,,, +13620,IRN,fr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,WAf,1820-1920,1234567,,,50023363,,, +13620,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,Sib,0300-0500,1234567,,,50006522,,, +13620,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,Sib,0500-0700,1234567,,,50006522,,, +13625,TUR,uz,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,CAs,1130-1200,1234567,,,50023366,,, +13625,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1400-1500,1234567,,,50023365,,, +13630,D,ur,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1600,...4...,,,50023936,,, +13630,F,pt,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1630-1700,....5..,,,50023368,,, +13630,BUL,en,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,SAs,1515-1545,.....6.,,,50023935,,, +13630,BUL,ta,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,SAs,1515-1530,....5..,,,50023935,,, +13630,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,,2000-2130,1234567,,,50006532,,, +13630,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,2000-2100,1234567,,,50006532,,, +13630,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,2100-2130,1234567,,,50006532,,, +13630,MLI,fr,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,WAf,2130-2230,1234567,,,50006532,,, +13630,MLI,pt,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,1930-2000,1234567,,,50006532,,, +13630,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,153,4779,79,85,SAs,0400-1100,1234567,,,50016284,,, +13630,STP,pt,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,,1700-1730,1234567,,,50021732,,, +13630,BOT,pt,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,,1730-1800,1234567,,,50021731,,, +13630,BOT,pt,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,CAf,1700-1800,1234567,,,50021731,,, +13630,BOT,pt,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,CAf,1800-1830,12345..,,,50021731,,, +13630,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023367,,, +13630,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,50,16373,78,148,SOc,0500-0800,1234567,,,50016283,,, +13630,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,65,16373,78,148,SOc,2100-2300,1234567,,,50016283,,, +13635,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023937,,, +13640,IRN,en,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAf,1920-2020,1234567,,,50023369,,, +13640,UAE,en,NHK R Japan,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,WEu,0500-0530,1234567,,,50023370,,, +13640,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,209,5347,76,91,SAs,0400-0500,1234567,,,50006538,,, +13640,IND,ar,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,1730-1945,1234567,,,50016285,,, +13640,IND,fa,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,1615-1730,1234567,,,50016285,,, +13640,IND,fr,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,WAf,1945-2030,1234567,,,50016285,,, +13640,IND,gu,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,EAf,1515-1600,1234567,,,50016285,,, +13645,MLI,ha,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,WAf,1800-1830,1234567,,,50006544,,, +13645,MLI,sw,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,1700-1800,1234567,,,50006544,,, +13645,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1100-1200,1234567,,,50006545,,, +13645,IND,th,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,1115-1200,1234567,,,50016286,,, +13645,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0600-0800,1234567,,,50023371,,, +13645,CLN,uz,R Liberty,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,CAs,1400-1500,1234567,,,50023938,,, +13650,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,EAf,0400-0600,1234567,,,50023372,,, +13650,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,100,,4236,111,79,NAm,1700-2000,1234567,,,50023939,,, +13650,CUB,pt,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,135,7939,284,112,SAm,2300-2400,1234567,,,50006552,,, +13650,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0500-0600,1234567,,,50016290,,, +13650,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0400-0500,1234567,,,50016290,,, +13650,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0300-0400,1234567,,,50016290,,, +13650,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0600-0700,1234567,,,50016290,,, +13650,J,my,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,240,9208,36,120,SEA,2340-2400,1234567,,,50016289,,, +13650,J,th,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,240,9208,36,120,SEA,2300-2320,1234567,,,50016289,,, +13650,J,vi,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,240,9208,36,120,SEA,2320-2340,1234567,,,50016289,,, +13655,D,hi,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1600,1234567,,,50023374,,, +13655,D,pa,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1530,1234567,,,50023374,,, +13655,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,0000-0400,1234567,,,50006559,,, +13655,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,0400-0600,1234567,,,50006559,,, +13655,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,0600-0700,1234567,,,50006559,,, +13655,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023940,,, +13660,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,250,75,622,276,39,IRN,1600-1700,1234567,,,50021140,,, +13660,UAE,ar,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1700-2000,1234567,,,50023375,,, +13660,OMA,ar,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,45,5617,106,89,EAf,2000-2100,1234567,,,50021141,,, +13660,RRW,aa,Trans World R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,30,6406,152,97,EAf,1300-1315,...4567,,,50009962,,, +13660,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,500,30,8917,74,117,,2200-2300,1234567,,,50021734,,, +13660,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,0130-0200,1234567,,,50022358,,, +13665,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,WEu,1100-1300,1234567,,,50023376,,, +13665,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023941,,, +13670,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,240,1609,135,51,WAf,1400-1600,1234567,,,50006571,,, +13670,EGY,ur,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,SAs,1600-1800,1234567,,,50023377,,, +13670,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,1300-1400,1234567,,,50006572,,, +13670,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0600-0700,1234567,,,40001173,,, +13670,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0230-0600,1234567,,,40001173,,, +13670,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0700-0800,1234567,,,40001173,,, +13670,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0800-1100,1.3.567,,,40001173,,, +13670,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1100-1230,1234567,,,40001173,,, +13670,USA,bm,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,94,6571,289,99,WAf,2130-2200,12345..,,,50020130,,, +13675,TJK,zh,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,95,4943,82,83,,1500-1700,1234567,,,50021735,,, +13675,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023942,,, +13680,EGY,bs,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,Eu,1600-1700,1234567,,,50018863,,, +13680,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EEu,0450-0520,1234567,,,50023379,,, +13680,IRN,sw,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EAf,0350-0450,1234567,,,50023379,,, +13680,CHN,VN,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0000-0100,1234567,,,50023378,,, +13680,CUB,ar,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Eu,2030-2100,1234567,,,50020312,,, +13680,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Eu,2100-2300,1234567,,,50020312,,, +13680,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,,1500-1800,......7,,,50020312,,, +13680,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Eu,1930-2000,1234567,,,50020312,,, +13680,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Eu,2000-2030,1234567,,,50020312,,, +13680,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2130-0430,1234567,,,50022360,,, +13680,SNG,th,NHK R Japan,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1230-1300,1234567,,,50023380,,, +13685,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,CAf,0700-0730,1234567,,,50008977,,, +13685,TUR,ug,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,FE,1330-1430,1234567,,,50023381,,, +13685,MLI,ar,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,NAf,1830-1930,1234567,,,50006585,,, +13685,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,1400-1600,1234567,,,50006585,,, +13685,MLI,fr,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,WAf,1300-1400,1234567,,,50006585,,, +13690,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1430-1500,1234567,,,50023383,,, +13690,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1530-1630,1234567,,,50023383,,, +13690,IRN,bs,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0520-0620,1234567,,,50023384,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,135,660,211,37,WAf,1700-1800,1234567,,,50006589,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,,0600-0700,1234567,,,50006589,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,,1700-1900,1234567,,,50006589,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,WAf,0700-0800,1234567,,,50006589,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,204,660,211,37,WAf,0800-0900,1234567,,,50006589,,, +13695,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,120,7561,97,106,Oc,1000-1100,1234567,,,50014221,,, +13695,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,280,7561,97,106,EAf,1745-1945,1234567,,,50014221,,, +13695,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,0315-0415,1234567,,,50014221,,, +13695,IND,kn,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,0215-0300,1234567,,,50014221,,, +13695,IND,ta,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,1115-1215,1234567,,,50014221,,, +13695,IND,te,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,1215-1245,1234567,,,50014221,,, +13695,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,SAm,0000-0200,1234567,,,50023943,,, +13695,USA,es,Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,SAm,2300-2400,1234567,,,50023944,,, +13700,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2357-1057,1234567,,,40001175,,, +13710,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,295,4552,116,76,NAf,1500-1800,1234567,,,50016298,,, +13710,IRN,fa,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,CAs,0820-1420,1234567,,,50023386,,, +13710,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,1330-1500,1234567,,,50017421,,, +13715,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0200-0300,1234567,,,50023387,,, +13715,CLN,ar,VoA Darfur,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1800-1830,1234567,,,50023388,,, +13720,E,es,RNE R Exterior,D,Noblejas (CAM-TO),39.9575,-3.430556,,250,,1547,213,49,Eu,1100-1300,1234567,,,50009973,,, +13720,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0300-0400,1234567,,,50006605,,, +13720,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,1000-1200,1234567,,,50006606,,, +13725,F,fa,NHK R Japan,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1430-1500,1234567,,,50023390,,, +13725,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,FE,0000-0200,1234567,,,50023389,,, +13730,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAs,0400-0500,1234567,,,50023392,,, +13730,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,65,4724,102,77,SAs,0720-0820,1234567,,,50022045,,, +13730,MDG,sw,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,250,300,8830,141,119,EAf,1730-1800,1234567,,,50008996,,, +13730,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,Oc,0500-0650,1234567,,,50023391,,, +13735,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023946,,, +13735,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0300-0400,1234567,,,50023393,,, +13735,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,100,5762,180,95,Af,1100-1130,.....6.,,,50018886,,, +13735,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023945,,, +13735,MRA,VN,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1400-1500,1234567,,,50023395,,, +13735,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,1230-1400,1234567,,,50023394,,, +13740,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,WAf,1700-1800,1234567,,,50013014,,, +13740,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,WAf,1800-1900,1234567,,,50013014,,, +13740,D,ce,HCJB Global,,Nauen (brb),52.647778,12.908611,,100,95,445,80,42,,1600-1630,.....6.,,,50018887,,, +13740,D,ru,HCJB Global,,Nauen (brb),52.647778,12.908611,,100,95,445,80,42,,1530-1600,.....6.,,,50018887,,, +13740,AUT,ce,HCJB Global,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,Cau,1600-1630,.....6.,,,50023397,,, +13740,AUT,ru,HCJB Global,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,Cau,1530-1600,.....6.,,,50023397,,, +13740,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WAf,0600-0630,1234567,,,50023400,,, +13740,IRN,he,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,1150-1220,1234567,,,50023399,,, +13740,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0400-0500,1234567,,,50023396,,, +13740,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,305,7939,284,112,WNA,1400-1600,1234567,,,50006618,,, +13740,MRA,km,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,279,11578,41,128,,2230-2330,1234567,,,50021181,,, +13745,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,ENA,0000-0030,1234567,,,50023401,,, +13745,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,ENA,0200-0230,1234567,,,50023401,,, +13745,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,WNA,0030-0100,1234567,,,50023401,,, +13745,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,ENA,0230-0330,1234567,,,50023401,,, +13745,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,WNA,0100-0200,1234567,,,50023401,,, +13750,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,CAs,1500-1530,1234567,,,50021187,,, +13750,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,EEu,1500-1600,1234567,,,50021187,,, +13750,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0820-1420,1234567,,,50019754,,, +13750,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,168,6571,289,99,,1200-1300,1234567,,,50007805,,, +13750,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,0600-0800,1234567,,,50023402,,, +13755,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023948,,, +13755,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,1600-1630,.....6.,,,50023405,,, +13755,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023947,,, +13755,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1800-1830,1234567,,,50023404,,, +13755,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1700-1800,1234567,,,50023403,,, +13755,BOT,sw,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1630-1700,1234567,,,50023403,,, +13760,D,ru,Evang.Missionsgemeinden,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Sib,1100-1130,.....6.,,,50023406,,, +13760,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0400-0500,1234567,,,50016301,,, +13760,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0300-0400,1234567,,,50016301,,, +13760,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0500-0600,1234567,,,50016301,,, +13760,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0600-0700,1234567,,,50016301,,, +13760,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,0700-0900,1234567,,,50016301,,, +13765,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,135,1205,156,45,CAf,1940-2000,1234567,,,50006640,,, +13765,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,160,1205,156,45,SAf,1730-1800,1234567,,,50006640,,, +13765,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,210,1205,156,45,CAf,2000-2030,1234567,,,50006640,,, +13765,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,214,1205,156,45,CAf,0630-0700,1234567,,,50006640,,, +13765,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,135,1205,156,45,CAf,2030-2115,1234567,,,50006640,,, +13765,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,145,1205,156,45,EAf,1700-1730,1234567,,,50006640,,, +13765,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,214,1205,156,45,CAf,0600-0630,1234567,,,50006640,,, +13765,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,169,1205,156,45,AGL,1800-1830,1234567,,,50006640,,, +13765,CVA,es,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,238,1205,156,49,CAf,1900-1930,.....6.,,,50006640,,, +13765,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023950,,, +13765,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023949,,, +13765,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1100,1234567,,,50023949,,, +13765,MDG,am,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,295,8830,141,119,EAf,1630-1645,..34567,,,50015382,,, +13765,MDG,en,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,265,8830,141,119,SAf,0500-0530,1234567,,,50015382,,, +13765,MDG,fr,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,295,8830,141,119,CAf,0430-0500,1234567,,,50015382,,, +13765,MDG,pt,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,300,8830,141,119,SAf,0530-0600,1234567,,,50015382,,, +13765,MDG,so,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,350,8830,141,119,EAf,1615-1630,.....6.,,,50015382,,, +13765,MDG,sw,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,300,8830,141,119,EAf,1600-1615,.....6.,,,50015382,,, +13765,MDG,sw,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,300,8830,141,119,EAf,1600-1630,12345.7,,,50015382,,, +13765,MDG,ti,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,295,8830,141,119,EAf,1645-1700,..34567,,,50015382,,, +13765,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0900-1100,1234567,,,50023409,,, +13765,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023408,,, +13775,ARS,ur,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,SAs,1200-1500,1234567,,,50023951,,, +13775,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017851,,, +13780,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0520-0820,1234567,,,50023411,,, +13780,TJK,zh,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,95,4943,82,83,,1700-2000,1234567,,,50021737,,, +13780,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0900-1100,1234567,,,50023410,,, +13780,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,FE,0130-0230,1234567,,,50006647,,, +13780,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,FE,0230-0330,1234567,,,50006647,,, +13780,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CNA,2300-2400,12345..,,,50016304,,, +13780,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,WNA,1300-1500,1234567,,,50016304,,, +13785,IRN,en,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1520-1620,1234567,,,50023412,,, +13785,BOT,KNK,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1830-1900,12345..,,,50023414,,, +13785,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023413,,, +13790,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,1300-1400,1234567,,,50009016,,, +13790,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,1200-1300,1234567,,,50023415,,, +13795,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023953,,, +13795,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,2300-2400,1234567,,,50009018,,, +13795,IND,ta,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,0000-0045,1234567,,,50009018,,, +13795,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023952,,, +13799.1,ETH,,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,,1200-2000,1234567,-13799.1,,40001178,,, +13800,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,1100-1500,1234567,,,50023419,,, +13800,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0300-0400,1234567,,,50023416,,, +13800,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,0730-1100,1234567,,,50023420,,, +13800,MDG,ar,R Dabanga,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,1530-1630,1234567,,,50023417,,, +13800,MDG,ar,R Tamazuj,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,1500-1530,1234567,,,50023418,,, +13800,SOM,,R Puntland,,Garowe (nug),8.401389,48.472222,,0.05,,6172,126,132,,0300-1900,1234567,,,9500011,,, +13810,F,am,V.o.Oromo Liberation,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,..3....,,,50023421,,, +13810,F,en,Brother Stair,,Issoudun (36),46.947222,1.894444,,100,120,660,211,44,ME,1400-1600,1234567,,,50022051,,, +13810,F,om,V.o.Oromo Liberation,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1700-1730,..3....,,,50023421,,, +13810,F,om,V.o.Oromo Liberation,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1700-1800,......7,,,50023421,,, +13810,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023955,,, +13810,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,239,5347,76,91,ME,1200-1400,1234567,,,50015397,,, +13810,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023954,,, +13820,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,285,1587,104,48,,1200-1300,1234567,,,50021740,,, +13820,IRN,sq,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0620-0720,1234567,,,50023423,,, +13820,IRN,fa,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,CAs,0820-1420,9999999,,,50023422,,, +13820,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,1400-2000,1234567,,,50016306,,, +13820,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2200-1500,1234567,,,50017650,,, +13820,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017650,,, +13830,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023957,,, +13830,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,125,4943,82,83,,1100-1200,1234567,,,50021742,,, +13830,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,125,4943,82,83,,1200-1300,1234567,,,50021742,,, +13830,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,125,4943,82,83,,1300-1400,1234567,,,50021742,,, +13830,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,155,7317,294,106,SAm,1700-2400,1234567,,,50010624,,, +13830,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023956,,, +13830,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,WAf,0530-0630,12345..,,,50021217,,, +13835,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,0230-0430,1234567,,,50023424,,, +13840,ROU,ru,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,CAs,1430-1500,1234567,,,50023960,,, +13840,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023961,,, +13840,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023958,,, +13840,MDG,fr,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,250,295,8830,141,119,CAf,0530-0600,1234567,,,50006671,,, +13840,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,100,,18351,32,155,WOc,1100-1300,1234567,,,50023959,,, +13845,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,40,7122,296,108,NAm,1300-0100,1234567,,,50009986,,, +13850,EGY,ar,ERTU Al-Barnameg al-Aam,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,NAm,0200-0700,1234567,,,50021220,,, +13850,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SEA,0900-1100,1234567,,,50006674,,, +13850,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50011169,,, +13855,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,286,3024,131,63,CAm,2330-0045,1234567,,,50016495,,, +13855,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,286,3024,131,63,CAm,0045-0200,1234567,,,50016495,,, +13855,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,1300-1400,1234567,,,50023425,,, +13855,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,303,11578,41,128,FE,1400-1500,1234567,,,50020148,,, +13860,THA,fa,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0300-0330,1234567,,,50023962,,, +13860,THA,fa,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0200-0230,1234567,,,50023963,,, +13860,THA,ps,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0230-0300,1234567,,,50023962,,, +13860,THA,ps,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0330-0430,1234567,,,50023962,,, +13860,THA,ps,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0130-0200,1234567,,,50023963,,, +13865,OMA,uz,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1300-1330,1234567,,,50023427,,, +13865,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1330,1234567,,,50023964,,, +13870,UAE,ur,NHK R Japan,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,60,5075,109,84,SAs,1515-1600,1234567,,,50016496,,, +13882.5,D,,DDK6 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,0430-1235,1234567,-13882.5,,2000048,,, +13882.5,D,,DDK6 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,1520-1630,1234567,-13882.5,,2000048,,, +13882.5,D,,DDK6 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,1800-1952,1234567,-13882.5,,2000048,,, +13882.5,D,,DDK6 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,2100-2211,1234567,-13882.5,,2000048,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0040-0140,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0305-0550,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0700-0740,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0905-1030,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1300-1340,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1505-1740,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1900-1940,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,2050-2230,1234567,,,21800038,,, +13920,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50011173,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0015-0215,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0245-0330,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0400-0500,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0600-0945,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1015-1715,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1800-1845,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1915-2045,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2215-2400,1234567,,,37700106,,, +13930,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,,,20016138,,, +13970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50011591,,, +13988.5,J,,JMH4,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0000-2400,1234567,-13988.5,,31400037,,, +14020,I,,I2QIL,b,Brescia (bs),45.55,10.2,,0.025,,780,158,81,,,,,?,55055,,, +14062,RUS,,UA1AVA,b,St Petersburg,59.933333,30.366667,,0.0001,,1710,50,114,,,,,1/2 Dip A1 06-15UTC,55056,,, +14098,I,,IW3ICH,b,San Martino di Venezze (ro),45.133333,11.866667,,0.025,,873,151,82,,,,,?,55057,,, +14099,I,,IZ0HCC,b,Roma (rm),41.8,12.45,,0.025,,1234,156,85,,,,,?,55058,,, +14100,FIN,,OH2B,b,Lohja,60.516667,24.116667,,0.025,,1429,42,87,,,,,Vertical Omni A1 IBP cycle,55072,,, +14100,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP cycle,55073,,, +14100,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55071,,, +14100,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55060,, +14100,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 TNonOp,55066,,, +14100,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 TNonOp,55059,,, +14100,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55070,,, +14100,CLN,,4S7B,b,Colombo,6.716667,80.2,,0.025,,8315,99,156,,,,,Vertical Omni A1 IBP cycle,55068,,, +14100,VEN,,YV5B,b,Caracas/Calle Norte 6,6.5,-66.5,,0.025,,8275,260,156,,,,,Vertical Omni A1 TNonOp,55076,,, +14100,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55069,,, +14100,USA,,W6WX,b,Mt Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55061,,, +14100,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55067,,, +14100,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55065,,, +14100,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP cycle,55075,,, +14100,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55074,,, +14100,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55062,, +14100,AUS,,VK6RBP,b,Roleystone (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 TNonOp,55064,,, +14100,NZL,,ZL6B,b,near Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55063,,, +14101,I,,IN3UFW,b,near Mezzolombardo (tn),46.216667,11.116667,,0.025,,739,151,80,,,,,?,55078,,, +14101,ATA,,R1ANF,b,South Shetland (ssi),-62.466667,-58.95,,0.025,,13961,211,176,,,,,?,55077,,, +14103,I,,IV3VOU,b,Verzegnis (ud),46.383333,12.95,,0.025,,794,141,81,,,,,?,55079,,, +14161,I,,I1YRB,b,Torino/Torre Bert (to),45.05,7.7,,0.0002,,791,173,102,,,,,Vertical Omni QRSS3 24,55080,,, +14370,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50019373,,, +14467.3,D,,DDH8 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0000-2400,1234567,-14467.3,,2000046,,, +14670,CAN,,CHU,,Ottawa (ON),45.295556,-75.757222,,3,,5749,297,110,,0000-2400,1234567,,,20100016,,, +14700,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50014331,,, +14750,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50019374,,, +14800,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017198,,, +14870,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017426,,, +14900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022363,,, +14920,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50017815,,, +14950.7,CLM,es,Salem Streo,,Rioblanco (tol),3.533333,-75.683333,,0.5,,9158,266,147,,0000-2400,1234567,75,,35902914,,, +14980,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017656,,, +14996,RUS,,RWM,,Elektrougli (MO),55.737778,38.153889,,8,,2098,66,69,,0000-2400,1234567,,,6700072,,, +15000,I,,Assoc. Amici di Italcable,,Corsanico-Bargecchia (lu),43.913333,10.295556,,0.09,,956,161,77,,0000-2400,1234567,991,,4000056,,, +15000,CHN,,BPM,,Lintong/Pucheng (SA),34.947778,109.552389,,10,,7813,58,125,,0059-0830,1234567,0,,36200218,,, +15000,USA,en,WWV,,Fort Collins (CO),40.679167,-105.040139,,10,,7770,311,125,,0000-2400,1234567,0,,20000087,,, +15000,HWA,en,WWVH,,Kekaha (HI),21.987583,-159.763889,,10,,11667,347,143,,0000-2400,1234567,0,,20000092,,, +15006,E,es,EBC,,San Fernando/ROA (AND-CA),36.464222,-6.206111,,10,,2002,215,67,,1000-1025,12345..,,,2200018,,, +15025,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200024,,, +15030,IND,en,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,60,6367,85,97,FE,1000-1100,1234567,,,50018920,,, +15030,IND,en,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,,1000-1100,1234567,,,50019375,,, +15034,CAN,en,CHR Trenton Volmet,u,Trenton/Point Petre (ON),43.844444,-77.146667,,1,,5937,297,116,,1010-2400,1234567,2,,20100021,,, +15040,IND,my,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,100,132,6235,85,99,,1215-1315,1234567,,,50011001,,, +15040,IND,my,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,100,,7561,97,113,SEA,1215-1315,1234567,,,50023965,,, +15050,IND,si,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,250,174,6235,85,95,CLN,1300-1500,1234567,,,50009040,,, +15050,IND,ta,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,250,174,6235,85,95,CLN,1115-1215,1234567,,,50009040,,, +15070,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50021230,,, +15085,IRN,it,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0620-0720,1234567,,,50023428,,, +15090,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0700-0730,1234567,,,50021744,,, +15090,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1030-1130,1234567,,,50021744,,, +15090,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1230-1330,1234567,,,50021744,,, +15090,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1400-1430,1234567,,,50021744,,, +15090,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0730-0830,1234567,,,50021744,,, +15090,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0930-1030,1234567,,,50021744,,, +15090,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1130-1230,1234567,,,50021744,,, +15090,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1330-1400,1234567,,,50021744,,, +15090,THA,fa,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,304,8917,74,120,,0830-0930,1234567,,,50021745,,, +15100,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,313,5607,84,93,,0830-1104,1234567,,,50021235,,, +15100,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0500-0600,1234567,,,50016310,,, +15100,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0400-0500,1234567,,,50016310,,, +15100,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0300-0400,1234567,,,50016310,,, +15100,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0600-0700,1234567,,,50016310,,, +15105,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1800-1830,1234567,,,50009997,,, +15105,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1930-2000,1234567,,,50009997,,, +15105,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,2000-2030,....5..,,,50009997,,, +15105,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,100,,7515,79,112,SAs,1230-1300,1234567,,,50017657,,, +15105,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023966,,, +15105,SWZ,KiR,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,EAf,1557-1627,12345..,,,50016838,,, +15105,SWZ,Kir,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1600-1630,12345..,,,50016838,,, +15105,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50023967,,, +15110,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,0000-0100,1234567,,,50023429,,, +15110,RUS,,GTRK Tatarstan-Na Volne Tatarstana,,Samara/Zhygulevsk (SA),53.274167,50.230278,,250,58,2910,70,62,,0410-0500,1234567,,,50021746,,, +15110,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1200-1300,1234567,,,50006698,,, +15110,PHL,en,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SAs,1530-1600,1234567,,,50021241,,, +15110,PHL,en,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,,1530-1550,12345.7,,,50021241,,, +15110,PHL,en,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,,1530-1600,.....6.,,,50021241,,, +15110,PHL,hi,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,SAs,1430-1450,1234567,,,50021241,,, +15110,PHL,ml,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,SAs,1510-1530,1234567,,,50021241,,, +15110,PHL,ta,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,SAs,1450-1510,1234567,,,50021241,,, +15115,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,0130-0230,1234567,,,50023968,,, +15115,MRA,zh,Voice of America,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,300,11575,40,132,,1200-1300,1234567,,,50021747,,, +15120,ARS,bn,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,70,4552,116,76,,1200-1500,1234567,,,50021748,,, +15120,ARS,bn,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,SAs,1200-1500,1234567,,,50023969,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,Eu,0445-0700,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,,0500-0700,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,,1830-2000,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,Eu,0800-0900,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,Eu,1500-1600,1234567,,,50016313,,, +15120,NIG,fr,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,Eu,0700-0800,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,D,Abuja/Lugbe (fct),8.967333,7.363472,,100,,4798,179,85,Eu,1830-2000,1234567,,,6200004,,, +15120,IND,gu,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,EAf,0415-0430,1234567,,,50015428,,, +15120,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,EAf,0315-0415,1234567,,,50015428,,, +15120,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,EAf,0430-0530,1234567,,,50015428,,, +15120,IND,kn,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,0215-0300,1234567,,,50015428,,, +15120,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,322,7797,50,108,Sib,0300-0500,1234567,,,50006703,,, +15120,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,322,7797,50,108,Sib,0500-0700,1234567,,,50006703,,, +15120,CUB,es,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,SAm,0000-0100,1234567,,,50006704,,, +15120,CLN,lo,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,65,8219,99,115,,1100-1200,1234567,,,50013046,,, +15120,MRA,lo,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1100-1200,1234567,,,50023430,,, +15125,MLI,ar,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,EAf,1600-1700,1234567,,,50006708,,, +15125,MLI,sw,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,1700-1800,1234567,,,50006708,,, +15125,CTR,es,RNE R Exterior,,Caiari de Poroc (lmn),10.42,-83.72,,100,110,9104,277,124,,1200-2300,......7,,,50018925,,, +15125,CTR,es,RNE R Exterior,,Caiari de Poroc (lmn),10.42,-83.72,,100,110,9104,277,124,,1600-2300,.....6.,,,50018925,,, +15125,CTR,es,RNE R Exterior,,Caiari de Poroc (lmn),10.42,-83.72,,100,110,9104,277,124,,1800-2000,12345..,,,50018925,,, +15130,F,ja,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,152,660,211,37,Af,1900-2100,1234567,,,50021248,,, +15130,G,ku,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,300,102,622,276,39,,1400-1500,1234567,,,50021750,,, +15130,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1200-1600,1234567,,,50023431,,, +15130,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,95,7797,50,113,FE,0300-0600,1234567,,,50006711,,, +15130,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,0100-0200,1234567,,,50023970,,, +15135,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,0600-0800,1234567,,,50023432,,, +15135,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,0830-0930,1234567,,,50006715,,, +15135,CHN,ms,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,0930-1030,1234567,,,50006715,,, +15135,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,175,8246,70,120,INS,1030-1130,1234567,,,50006715,,, +15140,IRN,zh,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,FE,1150-1250,1234567,,,50023435,,, +15140,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0500-0600,1234567,,,50006718,,, +15140,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,Eu,1500-2200,1234567,,,11700012,,, +15140,OMA,en,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,Eu,1400-1500,1234567,,,11700012,,, +15140,IND,ru,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,EEu,1615-1715,1234567,,,50009058,,, +15140,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SAm,0200-0300,1234567,,,50023433,,, +15145,D,TAH,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,0830-0900,1234567,,,50023439,,, +15145,D,fr,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,0800-0830,1234567,,,50023439,,, +15145,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,ME,0600-0700,1234567,,,50023438,,, +15145,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,0700-0800,1234567,,,50006724,,, +15145,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SEA,0000-0200,1234567,,,50023437,,, +15145,CLN,km,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,73,8219,99,115,,1230-1330,1234567,,,50021257,,, +15145,MRA,km,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,226,11578,41,128,,1130-1230,1234567,,,50021751,,, +15150,D,BGL,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1545-1600,..345..,,,50023441,,, +15150,D,BUN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1545-1600,12.....,,,50023441,,, +15150,D,CHG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1545,12.....,,,50023441,,, +15150,D,KUM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1600-1615,....56.,,,50023441,,, +15150,D,KVI,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1545,.....6.,,,50023441,,, +15150,D,NG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1600-1615,..34...,,,50023441,,, +15150,D,awa,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1600-1615,12.....,,,50023441,,, +15150,D,dv,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1615-1630,...45..,,,50023441,,, +15150,D,fa,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,AFG,1545-1600,.....67,,,50023441,,, +15150,D,hi,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1615-1630,123..67,,,50023441,,, +15150,D,mai,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1545,..345..,,,50023441,,, +15150,D,ps,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1600-1615,......7,,,50023441,,, +15150,D,sd,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1545,......7,,,50023441,,, +15150,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SEu,1100-1200,1234567,,,50023442,,, +15150,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50023971,,, +15150,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,FE,0600-0700,1234567,,,50022066,,, +15150,GUM,K-W,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1430-1500,1234567,,,50021262,,, +15150,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1300-1330,1234567,,,50021262,,, +15150,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1330-1400,......7,,,50021262,,, +15150,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,2300-2330,1234567,,,50021262,,, +15150,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,2330-2400,......7,,,50021262,,, +15150,GUM,lo,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,2330-2400,...4.6.,,,50021262,,, +15150,GUM,th,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,2330-2400,123.5..,,,50021262,,, +15155,D,om,Adventist World R,,Nauen (brb),52.647778,12.908611,,250,140,445,80,38,EAf,1730-1800,1234567,,,50021264,,, +15155,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,0030-0100,1234567,,,50023443,,, +15160,D,kab,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,0800-0830,1234567,,,50023444,,, +15160,EGY,uz,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,50,3170,130,65,,1500-1600,1234567,,,50016316,,, +15160,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0100-0400,1234567,,,50006734,,, +15160,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0400-0500,1234567,,,50006734,,, +15160,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,305,8663,46,119,ME,0900-1000,1234567,,,50006737,,, +15160,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1030-1130,1234567,,,50006735,,, +15160,MRA,km,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,1230-1330,1234567,,,50022069,,, +15160,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,PHL,1200-1300,1234567,,,50023972,,, +15160,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,65,16373,78,148,SOc,0100-0500,1234567,,,50016315,,, +15165,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50023973,,, +15170,E,,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,340,1547,213,49,,1330-1355,12345..,,,50019380,,, +15170,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1300-1500,1234567,,,50023445,,, +15170,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,355,4552,116,76,ME,0300-0600,1234567,,,50016317,,, +15170,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0400-0500,1234567,,,50006742,,, +15170,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023974,,, +15170,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0500-0600,1234567,,,50006741,,, +15170,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0600-0700,1234567,,,50006741,,, +15170,AFS,fr,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,CAf,0600-0800,1234567,,,50006744,,, +15170,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,FE,0100-0200,1234567,,,50018946,,, +15170,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,2330-0030,1234567,,,50018946,,, +15175,IND,gu,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,205,7123,98,104,EAf,1515-1600,1234567,,,50009069,,, +15175,MRA,VN,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50023975,,, +15180,F,ru,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAs,1400-1500,1234567,,,50023977,,, +15180,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,315,7046,290,108,WNA,2200-2300,1234567,,,50017431,,, +15180,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023976,,, +15180,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0400-0500,1234567,,,50016318,,, +15180,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0300-0400,1234567,,,50016318,,, +15180,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0500-0600,1234567,,,50016318,,, +15180,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0600-0700,1234567,,,50016318,,, +15180,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50023978,,, +15185,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0700-1000,1234567,,,50023447,,, +15185,IND,gu,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,,0415-0430,1234567,,,50011002,,, +15185,IND,hi,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,,0315-0415,1234567,,,50011002,,, +15185,IND,hi,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,,0430-0530,1234567,,,50011002,,, +15185,IND,gu,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,205,7123,98,104,EAf,0415-0430,1234567,,,50018948,,, +15185,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,205,7123,98,104,EAf,0315-0415,1234567,,,50018948,,, +15185,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,205,7123,98,104,EAf,0430-0530,1234567,,,50018948,,, +15190,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,EAf,1500-1530,......7,,,50023979,,, +15190,ROU,sw,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,EAf,1530-1600,......7,,,50023979,,, +15190,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,SAs,1000-1100,1234567,,,50023448,,, +15190,GNE,en,R Africa,,Bata/Nsueeman (bat),1.825833,9.779167,,50,164,5600,176,96,,0530-0900,1234567,,,40001196,,, +15190,GNE,en,R Africa,,Bata/Nsueeman (bat),1.825833,9.779167,,50,164,5600,176,96,,1400-2130,1234567,,,40001196,,, +15190,USA,en,R Africa,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Af,2000-2300,1234567,,,50023980,,, +15190,PHL,,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,,1730-1930,12...67,,,33300029,,, +15190,PHL,,Radyo Magasin,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,,1730-1930,...4...,,,33300029,,, +15190,PHL,,Radyo ng Bayan,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,,1730-1930,..3.5..,,,33300029,,, +15190,PHL,en,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,250,283,10223,62,124,ME,1730-1930,1234567,,,33300029,,, +15190,B,pt,ZYE521 Rdio Inconfidncia,,Belo Horizonte/Contagem (MG),-19.900733,-44.052794,,25,122,9376,227,131,,0000-2400,1234567,5,,36902756,,, +15190,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50023981,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1400-1425,12..5..,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1400-1430,...4...,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1400-1435,..3...7,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SAs,1400-1423,12345.7,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SAs,1423-1430,..34..7,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SAs,1430-1435,..3...7,,,50021281,,, +15190,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1100-1200,1234567,,,50023449,,, +15190,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1230,1234..7,,,50023449,,, +15190,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1300,....56.,,,50023449,,, +15190,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1230-1300,1234..7,,,50023449,,, +15195,RUS,,GTRK Tatarstan-Na Volne Tatarstana,,Samara/Zhygulevsk (SA),53.274167,50.230278,,250,294,2910,70,62,,0810-0900,1234567,,,50021752,,, +15195,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,110,4943,82,83,,1200-1300,1234567,,,50021753,,, +15195,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,110,4943,82,83,,1300-1400,1234567,,,50021753,,, +15195,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,0100-0700,1234567,,,50006756,,, +15200,ROU,ar,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,NAf,0730-0800,1234567,,,50023450,,, +15200,TUR,ar,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,WAf,1500-1600,1234567,,,50023451,,, +15200,GUM,ban,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,248,11715,42,133,INS,0930-0945,......7,,,50006758,,, +15200,GUM,ban,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0930-0945,.....6.,,,50006758,,, +15200,GUM,ban,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0945-1000,......7,,,50006758,,, +15200,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,SEA,0850-0930,.2345..,,,50006758,,, +15200,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,SEA,0900-0930,1......,,,50006758,,, +15200,GUM,id,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,1000-1030,12345.7,,,50006758,,, +15200,GUM,id,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,1000-1030,1234567,,,50006758,,, +15200,GUM,jv,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,1000-1030,.....6.,,,50006758,,, +15200,GUM,mad,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0930-0945,123456,,,50006758,,, +15200,GUM,mad,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0930-1000,12345..,,,50006758,,, +15200,GUM,mad,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0945-1000,1234567,,,50006758,,, +15200,GUM,su,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,248,11715,42,133,INS,1030-1100,1234567,,,50006758,,, +15205,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,100,90,660,211,44,SAs,1400-1430,......7,,,50022073,,, +15205,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,100,90,660,211,44,SAs,1415-1430,123456,,,50022073,,, +15205,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,100,90,660,211,44,SAs,1430-1445,......7,,,50022073,,, +15205,EGY,fr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,WAf,2100-2300,1234567,,,50017529,,, +15205,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,320,4552,116,76,Eu,1600-1800,1234567,,,50016320,,, +15205,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,1200-1400,1234567,,,50023452,,, +15205,THA,ru,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0600-0700,1234567,,,50023453,,, +15205,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50023982,,, +15210,D,en,PanAmerican Broadcasting,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1900-2000,......7,,,50023455,,, +15210,EGY,fr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,,2030-2230,1234567,,,50016848,,, +15210,IND,ar,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,ME,0430-0530,1234567,,,50009083,,, +15210,IND,fa,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,ME,0400-0430,1234567,,,50009083,,, +15210,IND,ur,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,,0530-0600,1234567,,,50009083,,, +15210,IND,ur,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,0530-0600,9999999,,,50009083,,, +15210,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,Oc,0900-1100,1234567,,,50006767,,, +15215,UAE,bo,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,315,5075,109,81,Tib,1200-1230,1234567,,,50006771,,, +15215,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023983,,, +15215,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SEA,1400-1500,12345..,,,50023456,,, +15215,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SEA,1500-1600,1234567,,,50023456,,, +15215,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50023984,,, +15215,GUM,bn,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,BGD,1300-1330,1234567,,,50009086,,, +15215,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SAs,1600-1630,1234567,,,50009086,,, +15220,ROU,zh,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,FE,0500-0530,1234567,,,50023458,,, +15220,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SEu,0600-0800,1234567,,,50006772,,, +15220,CHN,hu,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,Eu,1000-1100,1234567,,,50006772,,, +15220,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0920-0950,1234567,,,50023457,,, +15225,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,110,3170,130,65,AUS,2000-2200,1234567,,,50021294,,, +15225,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,295,4552,116,76,,1500-1700,1234567,,,50016323,,, +15225,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,1450-1800,1234567,,,50023985,,, +15225,CHN,cs,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,Eu,1100-1200,1234567,,,50006779,,, +15225,USA,fr,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,Af,1830-2030,1234567,,,50023460,,, +15225,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023986,,, +15225,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,2030-2100,......7,,,50023459,,, +15225,BOT,ha,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,2030-2100,.....6.,,,50023459,,, +15225,PHL,kac,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1230-1300,1234567,,,50006780,,, +15225,PHL,kar,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1300-1327,1234567,,,50006780,,, +15225,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50023987,,, +15225,GUM,MEI,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1315-1345,.....6.,,,50018959,,, +15225,GUM,MEI,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1330-1345,......7,,,50018959,,, +15225,GUM,as,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1315-1345,12345..,,,50018959,,, +15225,GUM,as,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1315-1345,12345.7,,,50018959,,, +15225,GUM,sat,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1315-1330,......7,,,50018959,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1100-1300,1234567,,,50016325,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1300-1500,1234567,,,50016325,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,2300-0400,1234567,,,50016325,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,,0000-0500,1234567,,,50016325,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,1100-1500,1234567,,,50016325,,, +15230,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,2200-2230,1234567,,,50016325,,, +15230,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,2230-2300,1234567,,,50016325,,, +15230,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,,2300-2400,1234567,,,50016325,,, +15235,D,ADI,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,..34...,,,50023461,,, +15235,D,C-F,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,12.....,,,50023461,,, +15235,D,C-O,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,.....67,,,50023461,,, +15235,D,DEO,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,...45..,,,50023461,,, +15235,D,DIM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,.2.....,,,50023461,,, +15235,D,GAR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,.....67,,,50023461,,, +15235,D,KAU,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,..3....,,,50023461,,, +15235,D,KBO,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,12.....,,,50023461,,, +15235,D,KNY,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,...45..,,,50023461,,, +15235,D,KRB,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,...4...,,,50023461,,, +15235,D,LEP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1515,.23....,,,50023461,,, +15235,D,MGA,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,.....67,,,50023461,,, +15235,D,MIS,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,..345..,,,50023461,,, +15235,D,MUN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1515-1530,..34...,,,50023461,,, +15235,D,NAG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,....5..,,,50023461,,, +15235,D,NIS,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,..3....,,,50023461,,, +15235,D,NOC,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,12.....,,,50023461,,, +15235,D,NW,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,...45..,,,50023461,,, +15235,D,RGM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,..3....,,,50023461,,, +15235,D,RON,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,......7,,,50023461,,, +15235,D,SGT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,..3....,,,50023461,,, +15235,D,SHC,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,12.....,,,50023461,,, +15235,D,SHP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1515,1......,,,50023461,,, +15235,D,SUM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,.....67,,,50023461,,, +15235,D,TGK,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,....56.,,,50023461,,, +15235,D,THA,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1515-1530,.....67,,,50023461,,, +15235,D,TMG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1515-1530,12.....,,,50023461,,, +15235,D,bn,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1515-1530,....5..,,,50023461,,, +15235,D,dz,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,12.....,,,50023461,,, +15235,D,kha,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,.....67,,,50023461,,, +15235,D,mag,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1515,...45..,,,50023461,,, +15235,D,sat,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,1......,,,50023461,,, +15235,D,ur,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1515,.....67,,,50023461,,, +15235,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,,1700-1755,12345..,,,50006786,,, +15235,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,WAf,1700-1800,12345..,,,50006786,,, +15235,AFS,fr,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,,1600-1655,12345..,,,50006786,,, +15235,AFS,fr,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,WAf,1600-1700,12345..,,,50006786,,, +15235,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,,1000-1015,......7,,,50015474,,, +15235,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,,1000-1100,123456,,,50015474,,, +15235,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1000-1015,1234567,,,50015474,,, +15235,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1015-1100,123456,,,50015474,,, +15240,AUT,fr,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,CAf,1930-2000,1234567,,,50023462,,, +15240,IRN,he,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1150-1220,1234567,,,50021299,,, +15240,GUM,KBO,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1230-1245,12345..,,,50013074,,, +15240,GUM,KBO,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1245-1300,12345.7,,,50013074,,, +15240,GUM,sat,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1300-1315,1234567,,,50013074,,, +15240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0000-0300,1234567,,,50016326,,, +15240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0300-0315,.....67,,,50016326,,, +15240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0315-0900,1234567,,,50016326,,, +15240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,2200-2400,1234567,,,50016326,,, +15240,AUS,fr,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0300-0315,12345..,,,50016326,,, +15245,EGY,fa,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,70,3170,130,69,IRN,1330-1530,1234567,,,50018964,,, +15245,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0400-0600,1234567,,,50023988,,, +15245,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1300-1400,1234567,,,50016329,,, +15245,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1500-1600,1234567,,,50016329,,, +15245,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1800-1900,1234567,,,50016329,,, +15245,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,2100-2200,1234567,,,50016329,,, +15245,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1900-2000,1234567,,,50016329,,, +15245,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,2200-2300,1234567,,,50016329,,, +15245,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1400-1500,1234567,,,50016329,,, +15245,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1600-1700,1234567,,,50016329,,, +15245,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,2000-2100,1234567,,,50016329,,, +15245,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1700-1800,1234567,,,50016329,,, +15245,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,2300-2400,1234567,,,50016329,,, +15245,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,0700-0900,1234567,,,50016329,,, +15245,TWN,zh,R Taiwan Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,0400-0600,1234567,,,50009093,,, +15250,IRN,de,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0720-0820,1234567,,,50023464,,, +15250,ASC,fr,FEBA R,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,70,6960,203,103,CAf,1830-1845,1234567,,,50006801,,, +15250,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,122,8246,70,120,PHL,0900-1100,1234567,,,50006800,,, +15255,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1100-1200,1234567,,,50023465,,, +15255,ASC,bm,Voice of America,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,2130-2200,12345..,,,50021307,,, +15255,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,328,9003,160,120,,0600-0655,12345..,,,50006804,,, +15255,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,328,9003,160,120,WAf,0600-0700,12345..,,,50006804,,, +15255,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0130-0200,1234567,,,50007748,,, +15255,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,0130-0157,1234567,,,50007748,,, +15255,GUM,si,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CLN,1400-1430,1234567,,,50023466,,, +15260,G,ar,FEBA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,IRQ,0800-0830,1234567,,,50023989,,, +15260,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAs,1500-1600,......7,,,50023470,,, +15260,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,110,1587,104,48,SEu,1000-1100,......7,,,50006810,,, +15260,IRN,sw,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EAf,0350-0450,1234567,,,50023467,,, +15260,AFS,ff,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,WAf,1930-2000,1234567,,,50023469,,, +15260,GUM,jv,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,2200-2230,.2.4..7,,,50022378,,, +15260,GUM,su,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,2200-2230,1.3.56.,,,50022378,,, +15265,D,uz,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,CAs,1400-1500,1234567,,,50023471,,, +15265,STP,sw,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,1630-1700,1234567,,,50023472,,, +15265,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023990,,, +15265,TWN,zh,R Taiwan Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,250,225,9364,56,121,SEA,1300-1400,1234567,,,50007749,,, +15265,PHL,bn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,280,0030-0100,1234567,,,50013602,,, +15265,PHL,bn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,0030-0057,1234567,,,50013602,,, +15270,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0200-0600,1234567,,,40001201,,, +15270,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0600-0900,12.4567,,,40001201,,, +15270,TWN,vi,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,0900-1000,1234567,,,50007809,,, +15270,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,1000-1030,1234567,,,50007809,,, +15270,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,1030-1100,1234567,,,50007809,,, +15270,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,0130-0200,1234567,,,50023473,,, +15275,RRW,am,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1600-1700,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,0,1900-2000,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,CAf,2000-2100,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1900-1930,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1930-2000,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0600-0630,1234567,,,50006821,,, +15275,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,265,6406,152,97,Af,1200-1300,1234567,,,50006821,,, +15275,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0630-0700,1234567,,,50006821,,, +15275,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,310,6406,152,97,WAf,1300-1400,1234567,,,50006821,,, +15275,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1000-1100,1234567,,,50006821,,, +15275,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1500-1600,1234567,,,50006821,,, +15275,RRW,ur,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,30,6406,152,97,SAs,1430-1500,1234567,,,50006821,,, +15275,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,150,295,6406,152,99,Af,1700-1800,1234567,,,50006821,,, +15275,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,150,310,6406,152,99,WAf,1800-1900,1234567,,,50006821,,, +15280,PHL,hi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,300,0030-0100,1234567,,,50006824,,, +15280,PHL,hi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0030-0057,1234567,,,50006824,,, +15280,PHL,ur,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,,0100-0130,1234567,,,50006824,,, +15280,PHL,ur,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,0100-0127,1234567,,,50006824,,, +15285,D,AMD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,.....6.,,,50023474,,, +15285,D,BH,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,...4...,,,50023474,,, +15285,D,BHT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,.2.....,,,50023474,,, +15285,D,BNJ,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,.....67,,,50023474,,, +15285,D,BON,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,..3....,,,50023474,,, +15285,D,CD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,...4...,,,50023474,,, +15285,D,DES,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,..34...,,,50023474,,, +15285,D,GJ,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1230-1245,1......,,,50023474,,, +15285,D,GM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,..34...,,,50023474,,, +15285,D,HAR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,.....67,,,50023474,,, +15285,D,KHT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,1......,,,50023474,,, +15285,D,KKN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,....5..,,,50023474,,, +15285,D,KND,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,..3....,,,50023474,,, +15285,D,KOY,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1245-1300,.....67,,,50023474,,, +15285,D,KTW,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,....5..,,,50023474,,, +15285,D,KUI,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,12.....,,,50023474,,, +15285,D,KUP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,......7,,,50023474,,, +15285,D,LAD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1230-1245,.2.....,,,50023474,,, +15285,D,MCH,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,..3....,,,50023474,,, +15285,D,MEI,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,12.....,,,50023474,,, +15285,D,MLT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,...45..,,,50023474,,, +15285,D,NTK,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,......7,,,50023474,,, +15285,D,SMP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,12.....,,,50023474,,, +15285,D,SRA,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,12.....,,,50023474,,, +15285,D,VAD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,.2.....,,,50023474,,, +15285,D,VAR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,..3....,,,50023474,,, +15285,D,YER,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,.....6.,,,50023474,,, +15285,D,bho,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,.....67,,,50023474,,, +15285,D,bo,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,......7,,,50023474,,, +15285,D,gon,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,....5..,,,50023474,,, +15285,D,gu,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1245-1300,...45..,,,50023474,,, +15285,D,hi,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,.....67,,,50023474,,, +15285,D,hi,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,12345..,,,50023474,,, +15285,D,ks,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1230-1245,..34...,,,50023474,,, +15285,D,mr,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,...45..,,,50023474,,, +15285,D,ne,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1300-1315,1234567,,,50023474,,, +15285,D,or,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1230-1245,....567,,,50023474,,, +15285,D,pa,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1245-1300,123....,,,50023474,,, +15285,D,sat,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,1......,,,50023474,,, +15285,D,ur,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,....56.,,,50023474,,, +15285,EGY,am,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,160,3170,130,69,EAf,1730-1900,1234567,,,50016336,,, +15285,EGY,so,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,160,3170,130,69,EAf,1700-1730,1234567,,,50016336,,, +15285,ARS,sw,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,EAf,0400-0700,1234567,,,50023991,,, +15285,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,13,10381,83,128,,1000-1200,1234567,,,50010015,,, +15285,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,25,10381,83,128,FE,1100-1200,1234567,,,50010015,,, +15290,F,ja,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,WAf,0800-1000,1234567,,,50006831,,, +15290,AUT,pa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,90,849,119,41,SAs,1530-1600,1234567,,,50018977,,, +15290,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,250,3170,130,65,WAf,1900-2030,1234567,,,50016855,,, +15290,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,349,10223,62,124,FE,0030-0100,1234567,,,50018978,,, +15290,TWN,zh,Taiwan Ch Yuyeh Kuangpo Tientai,,Tainan/Annan (TNS),23.044167,120.168611,,100,205,9489,58,125,INS,0800-0900,..3....,,,50007750,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,CAf,0600-0700,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,CAf,1700-1800,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,CAf,1800-1900,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,WAf,0900-1000,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,WAf,1200-1300,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,CAf,0700-0800,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,CAf,1900-2000,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,NAf,0800-0900,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,204,660,211,37,WAf,1700-2000,1234567,,,50006837,,, +15300,ROU,ar,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,247,1660,112,49,NAf,1500-1600,1234567,,,50021322,,, +15300,IRN,fa,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0820-1150,1234567,,,50021321,,, +15310,IRN,es,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SEu,0520-0620,1234567,,,50023475,,, +15310,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,45,5617,106,89,AFG,0930-1030,1234567,,,50010018,,, +15310,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,45,5617,106,89,AFG,0830-0930,1234567,,,50010018,,, +15310,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,45,5617,106,89,AFG,1030-1130,1234567,,,50010018,,, +15310,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,290,8872,77,119,SAs,0100-0300,1234567,,,50010019,,, +15310,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,290,8872,77,119,SAs,1300-1400,1234567,,,50010019,,, +15310,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,290,8872,77,119,IRN,1500-1600,1234567,,,50010019,,, +15310,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,,1500-1700,1234567,,,50010019,,, +15310,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,1400-1500,1234567,,,50023476,,, +15315,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,WAf,1100-1600,1234567,,,50006841,,, +15315,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,CAf,0700-0730,1234567,,,50006841,,, +15320,CVA,tl,R Veritas Asia,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,130,1205,156,45,ME,1500-1553,1234567,,,50017658,,, +15320,TWN,en,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,0300-0400,1234567,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,0400-0430,1234567,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,0430-0500,1234567,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,0400-0430,1234.67,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,0400-0500,....5..,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,0430-0500,1234.67,,,50013400,,, +15320,PHL,mad,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,185,10292,62,128,INS,0800-0830,123....,,,50003376,,, +15320,PHL,sas,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,185,10292,62,128,INS,0800-0830,...4567,,,50003376,,, +15320,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,INS,2230-2300,1234567,,,50006846,,, +15320,GUM,id,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,INS,2200-2230,1234567,,,50006846,,, +15320,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,270,11707,42,133,,1300-1330,1234567,,,50006846,,, +15320,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,270,11707,42,133,CHN,2300-2400,1234567,,,50006846,,, +15325,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,270,9208,36,120,SAs,0200-1000,1234567,,,50006847,,, +15325,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,270,9208,36,120,SAs,1800-2000,1234567,,,50006847,,, +15325,B,pt,ZYE962 Rdio Gazeta,,So Paulo/Estrada de Riveira (SP),-23.707156,-46.742239,,1,350,9881,227,147,,0900-0300,1234567,,,40001208,,, +15330,CVA,ur,R Veritas Asia,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,70,1205,156,45,,1430-1500,1234567,,,50017659,,, +15330,CVA,ur,R Veritas Asia,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,70,1205,156,45,SAs,1430-1457,1234567,,,50017659,,, +15330,ROU,ar,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0730-0800,1234567,,,50023478,,, +15330,PHL,K-P,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,278,10292,62,128,SEA,1145-1200,1234567,,,50006849,,, +15330,PHL,Kar,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,278,10292,62,128,,1100-1115,1234567,,,50006849,,, +15330,PHL,MON,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,278,10292,62,128,SEA,1115-1145,1234567,,,50006849,,, +15335,D,am,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1630-1800,12...67,,,50018986,,, +15335,D,am,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1700-1800,...45..,,,50018986,,, +15335,D,am,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1730-1800,1.3....,,,50018986,,, +15335,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1830-1900,......7,,,50018986,,, +15335,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1830-1930,....5..,,,50018986,,, +15335,D,om,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1600-1630,1..45.7,,,50018986,,, +15335,D,so,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1800-1830,.2.4.67,,,50018986,,, +15335,D,ti,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1700-1730,1.3....,,,50018986,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,12345..,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,12345.7,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1800,......7,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1700-1730,.2.456.,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,.....6.,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1800-1830,....56.,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1830-1845,.....6.,,,50023479,,, +15335,F,om,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1600-1630,1..45.7,,,50023479,,, +15335,F,om,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,...4...,,,50023479,,, +15335,F,so,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,.2..5..,,,50023479,,, +15335,F,ti,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1700-1730,1.3....,,,50023479,,, +15335,F,ti,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1800-1830,.2.4...,,,50023479,,, +15335,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,EEu,0800-1000,1234567,,,50006852,,, +15335,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,13,10381,83,128,SEA,0000-0200,1234567,,,50010022,,, +15340,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,,1500-1800,......7,,,50017046,,, +15340,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,CNA,1300-1500,1234567,,,50017046,,, +15340,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0900-1100,1234567,,,50023480,,, +15340,CUB,ar,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,53,7939,284,116,,2030-2100,1234567,,,50017046,,, +15340,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,53,7939,284,116,,2200-2400,1234567,,,50017046,,, +15340,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,53,7939,284,116,,1930-2000,1234567,,,50017046,,, +15340,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,53,7939,284,116,,2000-2030,1234567,,,50017046,,, +15340,AUS,CHG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,.....67,,,50016342,,, +15340,AUS,HMA,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,..3....,,,50016342,,, +15340,AUS,bho,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,......7,,,50016342,,, +15340,AUS,bn,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1245-1300,1......,,,50016342,,, +15340,AUS,bn,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,1......,,,50016342,,, +15340,AUS,dz,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1300-1315,....5..,,,50016342,,, +15340,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,,1445-1530,12345.7,,,50016342,,, +15340,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,,1515-1530,.....6.,,,50016342,,, +15340,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1230-1245,12345.7,,,50016342,,, +15340,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1500-1530,1234567,,,50016342,,, +15340,AUS,gu,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,....5..,,,50016342,,, +15340,AUS,hi,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1245-1300,...45.7,,,50016342,,, +15340,AUS,hi,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1330-1400,1234567,,,50016342,,, +15340,AUS,hi,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1445-1500,12345..,,,50016342,,, +15340,AUS,kru,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1245-1300,..3....,,,50016342,,, +15340,AUS,kru,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,..3....,,,50016342,,, +15340,AUS,ml,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,...4...,,,50016342,,, +15340,AUS,mr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,....5..,,,50016342,,, +15340,AUS,mwr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1245-1300,.2.....,,,50016342,,, +15340,AUS,mwr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,.2.....,,,50016342,,, +15340,AUS,ne,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,,1445-1515,.....6.,,,50016342,,, +15340,AUS,ne,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1230-1300,.....6.,,,50016342,,, +15340,AUS,ne,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1300-1315,1234...,,,50016342,,, +15340,AUS,or,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1300-1315,.....6.,,,50016342,,, +15340,AUS,pa,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1300-1315,......7,,,50016342,,, +15340,AUS,pa,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1445-1500,......7,,,50016342,,, +15340,AUS,ta,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,12.....,,,50016342,,, +15340,AUS,te,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,...4...,,,50016342,,, +15340,AUS,ur,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,.....6.,,,50016342,,, +15340,AUS,ur,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1400-1430,1234567,,,50016342,,, +15340,AUS,ur,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1445-1500,.....6.,,,50016342,,, +15345,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,150,196,3024,131,66,EAf,1600-1800,1234567,,,50011497,,, +15345,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,150,195,3170,130,67,,1600-1800,1234567,,,50016345,,, +15345,ARG,de,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,1700-1800,12345..,,,50016344,,, +15345,ARG,de,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,2100-2200,12345..,,,50016344,,, +15345,ARG,en,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,1800-1900,12345..,,,50016344,,, +15345,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,0900-1000,12345..,,,50016344,,, +15345,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,1300-1500,12345..,,,50016344,,, +15345,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,2200-2400,12345..,,,50016344,,, +15345,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,,0900-1200,1234567,78,,40001213,,, +15345,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,,1800-0300,......7,78,,40001213,,, +15345,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,,2000-0300,.....6.,78,,40001213,,, +15345,ARG,fr,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,2000-2100,12345..,,,50016344,,, +15345,ARG,it,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,1900-2000,12345..,,,50016344,,, +15345,ARG,ja,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,348,11502,230,132,FE,1100-1200,12345..,,,50016344,,, +15345,ARG,pt,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,1200-1300,12345..,,,50016344,,, +15345,ARG,zh,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,348,11502,230,132,FE,1000-1100,12345..,,,50016344,,, +15350,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,0700-1400,1234567,,,50023481,,, +15350,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0500-1100,1234567,,,50006860,,, +15350,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0300-0400,1234567,,,50006860,,, +15350,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0400-0500,1234567,,,50006860,,, +15355,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,315,5629,115,93,EAf,0200-0300,1234567,,,11700018,,, +15355,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,315,5629,115,93,Eu,2200-0100,1234567,,,11700018,,, +15355,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,315,5629,115,93,Eu,2200-2400,1234567,,,11700018,,, +15355,OMA,en,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,315,5629,115,93,EAf,0300-0400,1234567,,,11700018,,, +15355,PHL,tl,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,,10171,62,124,FE,2300-2327,1234567,,,50021336,,, +15360,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,.....6.,,,50022383,,, +15360,TUR,tt,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,EEu,1100-1130,1234567,,,50023485,,, +15360,EGY,fa,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,AFG,1300-1400,1234567,,,50023482,,, +15360,IRN,zh,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,FE,1150-1250,1234567,,,50023484,,, +15360,AFS,sw,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1500-1600,1234567,,,50023483,,, +15360,SWZ,ur,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,43,9062,157,124,SAs,1400-1415,1234567,,,50010947,,, +15365,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,1......,,,50022386,,, +15370,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,..3....,,,50021345,,, +15370,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0800-0900,......7,,,50023486,,, +15370,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0100-0600,1234567,,,40001216,,, +15370,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0600-0900,1.34567,,,40001216,,, +15370,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0900-1100,1234567,,,40001216,,, +15370,CLN,en,Brother Stair,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,250,60,8200,97,115,,1300-1400,1234567,,,50020167,,, +15370,CUB,eo,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,2230-2300,......7,,,50016351,,, +15370,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,,1500-1800,......7,,,50016351,,, +15370,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,2230-2300,123456,,,50016351,,, +15370,CUB,ht,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,2300-2330,1234567,,,50016351,,, +15370,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,2330-2400,1234567,,,50016351,,, +15370,CUB,qu,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,,0000-0030,1234567,,,50016351,,, +15370,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,2200-2300,1234567,,,50023487,,, +15375,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,....5..,,,50022387,,, +15375,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,1100-1200,1234567,,,50023489,,, +15375,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1400,1234567,,,50023992,,, +15380,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,......7,,,50022388,,, +15380,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,EGY,0900-1000,......7,,,50023490,,, +15380,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,310,4552,116,76,ME,0600-0900,1234567,,,50016352,,, +15380,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,310,4552,116,76,ME,1200-1400,1234567,,,50016352,,, +15380,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,2300-1100,1234567,,,40001219,,, +15385,E,SEF,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,92,1547,213,49,ME,1425-1455,1......,,,50010029,,, +15385,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,1500-1700,123456,,,50010029,,, +15385,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,WAf,1900-2000,12345..,,,50010029,,, +15385,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,.2.....,,,50022389,,, +15385,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023993,,, +15385,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,332,10223,62,124,FE,0000-0100,1234567,,,50003418,,, +15385,USA,en,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,270,8617,307,125,,1800-1900,1234567,,,50016353,,, +15385,USA,es,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,100,8617,307,125,,1900-2000,1234567,,,50016353,,, +15390,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,...4...,,,50022391,,, +15390,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0000-1100,1234567,,,40001221,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1100-1115,......7,,,50019001,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1100-1130,.....6.,,,50019001,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1115-1130,......7,,,50019001,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1115-1130,....5..,,,50019001,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1130-1200,.....6.,,,50019001,,, +15390,CLN,ja,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1130-1145,......7,,,50019001,,, +15390,CLN,ja,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1145-1200,......7,,,50019001,,, +15390,CLN,zh,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1100-1115,.2345..,,,50019001,,, +15390,CLN,zh,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1100-1130,1......,,,50019001,,, +15390,GUM,kar,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SEA,1300-1330,1234567,,,50019002,,, +15390,GUM,my,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1200-1245,1234...,,,50019002,,, +15390,GUM,my,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1200-1300,....567,,,50019002,,, +15390,GUM,my,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SEA,1200-1245,1234567,,,50019002,,, +15390,GUM,my,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SEA,1245-1300,.....67,,,50019002,,, +15395,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1430-1500,1234567,,,50023491,,, +15395,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1530-1630,1234567,,,50023491,,, +15400,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,,1500-2100,1234567,,,50010032,,, +15400,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1700-2000,1234567,,,50010032,,, +15400,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,WAf,2100-2200,.....6.,,,50023492,,, +15400,AUS,C-H,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SEA,0100-0115,..3.5..,,,50016354,,, +15400,AUS,RWG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SEA,0030-0100,1234567,,,50016354,,, +15400,AUS,VN,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1100-1115,.2..5..,,,50016354,,, +15400,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1100-1115,1.34...,,,50016354,,, +15400,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SEA,0100-0115,1....67,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,,2345-2400,123456,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,INS,0000-0030,123456,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,INS,1215-1230,1234567,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,INS,1230-1300,123456,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,INS,2345-2400,1234567,,,50016354,,, +15400,AUS,ja,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1100-1125,.....67,,,50016354,,, +15400,AUS,ms,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,MLA,0000-0030,......7,,,50016354,,, +15400,AUS,ms,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,MLA,1230-1300,......7,,,50016354,,, +15400,AUS,my,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SEA,0100-0115,.2.4...,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1000-1030,.....67,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1000-1030,12345..,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1030-1100,1234567,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,,1000-1100,.....67,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,,1100-1130,12345..,,,50016354,,, +15410,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,IRN,1200-1400,1234567,,,50023493,,, +15410,G,fa,R Farda,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,IRN,1400-1600,1234567,,,50023494,,, +15410,IND,th,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,1115-1200,1234567,,,50016355,,, +15410,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,60,7561,97,106,FE,1000-1100,1234567,,,50015524,,, +15415,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0500-0600,1234567,,,36201081,,, +15415,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0900-1000,1234567,,,36201081,,, +15415,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0600-0700,12.4567,,,36201081,,, +15415,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0700-0900,1.34567,,,36201081,,, +15415,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,355,16373,78,148,WOc,2200-0700,1234567,,,50016356,,, +15420,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,1600-1700,.....6.,,,50016357,,, +15420,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1200-2300,1234567,,,50016357,,, +15420,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1400-1800,1234567,,,50016357,,, +15420,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1800-2200,1234567,,,50016357,,, +15420,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,270,7819,127,111,EAf,0400-0800,1234567,,,50010033,,, +15420,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,270,7819,127,111,EAf,1500-2000,1234567,,,50010033,,, +15420,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,270,7819,127,111,EAf,1400-1500,1234567,,,50010033,,, +15420,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,295,7819,127,111,,1300-1500,1234567,,,50010033,,, +15420,TWN,iba,R Free Sarawak,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,1100-1230,1234567,,,50022395,,, +15425,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0100-0200,1234567,,,50006904,,, +15425,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0200-0300,1234567,,,50006904,,, +15430,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,165,1587,104,48,IRN,0800-0900,......7,,,50016500,,, +15430,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0900-1000,......7,,,50023497,,, +15430,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0500-0700,1234567,,,50023496,,, +15430,CLN,MEI,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SAs,1230-1300,..3.5.7,,,50023498,,, +15430,CLN,MON,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SAs,1200-1230,1234567,,,50023498,,, +15430,CLN,bn,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SAs,1230-1300,12.4.6.,,,50023498,,, +15430,CHN,ta,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SAs,0300-0400,1234567,,,50023495,,, +15435,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,310,4552,116,76,,1500-1700,1234567,,,50016359,,, +15435,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,1500-1800,1234567,,,50023994,,, +15435,CHN,ps,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,0200-0230,1234567,,,50006908,,, +15435,PHL,C-O,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SAs,0100-0115,1234567,,,50006909,,, +15435,PHL,MEI,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SAs,0115-0130,1234567,,,50006909,,, +15435,PHL,TN,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,0045-0100,1234567,,,50006909,,, +15435,PHL,shn,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,0000-0045,1234567,,,50006909,,, +15440,AUT,ur,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,90,849,119,41,PAK,1400-1430,1234567,,,50006914,,, +15440,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Eu,2000-2200,1234567,,,50023995,,, +15440,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,Oc,0900-1000,1234567,,,50006911,,, +15440,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1000-1100,1234567,,,50006911,,, +15440,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1100-1200,1234567,,,50006911,,, +15445,D,ja,NHK R Japan,,Nauen (brb),52.647778,12.908611,,250,140,445,80,38,ME,1700-1900,1234567,,,50021367,,, +15445,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,EEu,0400-0600,1234567,,,50006916,,, +15445,TWN,vi,Adventist World R,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,250,9375,56,125,SEA,0100-0200,.....6.,,,50007753,,, +15450,EGY,aa,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,160,3170,130,65,EAf,1600-1700,1234567,,,50016360,,, +15450,IRN,id,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SEA,1220-1320,1234567,,,50023499,,, +15450,PHL,my,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1130-1200,1234567,,,50006920,,, +15450,PHL,my,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1130-1157,1234567,,,50006920,,, +15450,PHL,min,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,245,10292,62,128,INS,0930-1000,1234567,,,50006918,,, +15450,PHL,mn,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,330,10183,62,128,FE,0830-0900,1234567,,,50006919,,, +15455,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50023997,,, +15455,STP,ZWE,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,ZWE,1700-1800,1234567,,,50021373,,, +15455,STP,ZWE,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,ZWE,1800-1900,12345..,,,50021373,,, +15455,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1720-1740,....567,,,50021373,,, +15455,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1730-1800,1234...,,,50021373,,, +15455,STP,nd,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1740-1800,....567,,,50021373,,, +15455,STP,sn,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1700-1720,....567,,,50021373,,, +15455,STP,sn,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1700-1730,1234...,,,50021373,,, +15455,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50023996,,, +15460,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,1200-1300,1234567,,,50023501,,, +15460,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAf,1920-2020,1234567,,,50023500,,, +15460,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,100,5762,180,95,EAf,1600-1630,.....6.,,,50015541,,, +15460,STP,sw,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,112,5762,180,95,EAf,1630-1700,1234567,,,50015541,,, +15460,PHL,en,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0300-0320,123456,,,50003462,,, +15460,PHL,en,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0300-0330,......7,,,50003462,,, +15460,PHL,en,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0300-0330,1234567,,,50003462,,, +15460,PHL,hi,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0200-0220,1234567,,,50003462,,, +15460,PHL,ml,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0240-0300,1234567,,,50003462,,, +15460,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0000-0030,1234567,,,50021374,,, +15460,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0000-0027,1234567,,,50021374,,, +15460,PHL,ta,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0220-0240,1234567,,,50003462,,, +15465,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,209,5347,76,91,SAs,0500-0900,1234567,,,50006927,,, +15465,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1000,1234567,,,50023998,,, +15465,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,230,9434,57,125,SEA,0900-1000,.....67,,,50013401,,, +15465,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,230,9434,57,125,SEA,0900-1000,12345..,,,50013401,,, +15465,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,230,9434,57,125,SEA,1000-1100,1234567,,,50013401,,, +15470,D,en,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EAf,1600-1700,1234567,,,50023503,,, +15470,F,en,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAs,1400-1430,......7,,,50023502,,, +15470,F,en,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAs,1400-1500,.....6.,,,50023502,,, +15470,PHL,zh,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,358,10171,62,124,FE,1230-1300,1234567,,,50021377,,, +15470,PHL,zh,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,358,10171,62,124,FE,1300-1315,.....6.,,,50021377,,, +15470,MRA,vi,R Vaticana,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,1315-1400,1234567,,,50021376,,, +15470,MRA,vi,R Vaticana,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,2315-2400,1234567,,,50021376,,, +15470,MRA,zh,R Vaticana,,Saipan/Tinian (MP),15.045833,145.607222,,250,325,11578,41,128,FE,2200-2230,1234567,,,50021376,,, +15476,ATA,es,LRA36 R.Nacional Arcngel San Gabriel,,Base Esperanza [ARG] (aar),-63.398833,-56.997667,,10,,13969,210,150,,1200-1507,12345..,,,40001231,,, +15476,ATA,es,LRA36 R.Nacional Arcngel San Gabriel,,Base Esperanza [ARG] (aar),-63.398833,-56.997667,,10,,13969,210,150,,1800-2100,12345..,,,40001231,,, +15480,D,ug,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,FE,1300-1330,.....67,,,50023507,,, +15480,D,zh,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,FE,1300-1330,12345..,,,50023507,,, +15480,D,zh,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,FE,1330-1500,1234567,,,50023507,,, +15480,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,0700-1300,1234567,,,50023504,,, +15480,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,245,3170,130,65,SAm,2330-0045,1234567,,,50017073,,, +15480,EGY,pt,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,245,3170,130,65,SAm,2215-2330,1234567,,,50017073,,, +15480,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0100-0600,1234567,,,40001233,,, +15480,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0600-0900,1.34567,,,40001233,,, +15480,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0900-1300,1234567,,,40001233,,, +15480,MDG,ar,Adventist World R,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,ME,1900-2100,1234567,,,50023505,,, +15480,AFS,ar,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,ME,0400-0600,1234567,,,50023506,,, +15485,F,en,R France Int.,,Issoudun (36),46.947222,1.894444,,500,85,660,211,37,,1600-1700,1234567,,,50021759,,, +15485,F,en,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,85,660,211,37,SAs,1600-1700,1234567,,,50015546,,, +15490,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,0900-1200,1234567,,,50023999,,, +15490,IRN,sq,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,0620-0720,1234567,,,50023508,,, +15490,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,205,5075,109,84,EAf,0400-0430,1234567,,,50021760,,, +15490,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,EAf,0500-0600,.....6.,,,50021390,,, +15490,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,EAf,0530-0600,......7,,,50021390,,, +15490,AFS,Krw,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,,0500-0600,1234567,,,50021390,,, +15490,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,80,13569,74,139,Oc,0730-0830,1234567,,,50021388,,, +15495,PHL,zh,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,320,10171,62,124,,1230-1300,12345.7,,,50019020,,, +15495,PHL,zh,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,320,10171,62,124,,1230-1315,.....6.,,,50019020,,, +15495,GUM,id,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,1100-1130,1234567,,,50023509,,, +15495,GUM,jv,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,1130-1200,1.3.5..,,,50023509,,, +15495,GUM,su,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,1130-1200,.2.4.67,,,50023509,,, +15495,GUM,te,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1500-1530,1234567,,,50023509,,, +15500,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,2300-1000,1234567,,,40001235,,, +15500,CLN,am,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,EAf,0330-0400,1234567,,,50023510,,, +15500,CLN,om,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,EAf,0300-0330,1234567,,,50023510,,, +15500,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,1430-1500,.....6.,,,50021761,,, +15505,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,Af,2230-2300,1234567,,,50006938,,, +15505,BGD,hi,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,100,,7515,79,112,SAs,1515-1545,1234567,,,50017662,,, +15505,BGD,ur,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,100,,7515,79,112,SAs,1400-1430,1234567,,,50017662,,, +15510,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1330,1234567,,,50024000,,, +15510,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,305,8872,77,119,SAs,0100-0130,1234567,,,50010042,,, +15510,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,305,8872,77,119,SAs,0230-0300,1234567,,,50010042,,, +15510,THA,uz,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,305,8872,77,119,AFG,1300-1330,1234567,,,50010042,,, +15515,F,so,R Xoriyo,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1500-1530,.....6.,,,50024001,,, +15515,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,250,59,4236,111,75,,0500-1000,1234567,,,50016364,,, +15515,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,250,59,4236,111,75,FE,0500-0900,1234567,,,50016364,,, +15515,KWT,ur,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1400-1500,1234567,,,50021394,,, +15515,MDG,bo,Voice of Tibet,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,Tib,1400-1430,1234567,,,50024002,,, +15515,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,100,,15065,58,144,SOc,0300-0315,.....67,,,50017212,,, +15515,AUS,fr,R Australia,,Brandon (QLD),-19.511944,147.340556,,100,,15065,58,144,SOc,0300-0315,12345..,,,50017212,,, +15515,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,50,16373,78,148,SOc,2000-2300,1234567,,,50016363,,, +15515,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,,0300-0315,.....67,,,50016363,,, +15515,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,,0300-0600,1234567,,,50016363,,, +15515,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,0315-0600,1234567,,,50016363,,, +15515,AUS,fr,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,,0300-0315,12345..,,,50016363,,, +15520,EGY,ff,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,WAf,1845-2000,1234567,,,50023513,,, +15520,BGD,,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,0400-2000,1234567,,,36300006,,, +15520,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50024003,,, +15520,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1430,1234567,,,50024003,,, +15520,MDG,bo,Voice of Tibet,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,Tib,1400-1430,1234567,,,50024004,,, +15520,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0200-0300,1234567,,,50023514,,, +15525,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1520-1620,1234567,,,50023515,,, +15525,IRN,zh,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,FE,1150-1250,1234567,,,50023515,,, +15525,UAE,en,Eternal Good News,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,100,5075,109,84,SAs,1130-1145,....5..,,,50016366,,, +15525,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,SAs,0900-1100,1234567,,,50006951,,, +15525,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,FE,0800-0900,1234567,,,50006952,,, +15525,AUS,ja,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,,2230-2300,....56.,,,50006950,,, +15525,AUS,ja,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,FE,2230-2300,.....67,,,50006950,,, +15525,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,,2230-2300,1234..7,,,50006950,,, +15525,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,FE,2230-2300,12345..,,,50006950,,, +15525,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,FE,2300-2330,.....67,,,50006950,,, +15525,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,FE,2300-2330,12345..,,,50006950,,, +15530,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1330-1500,1234567,,,50023516,,, +15530,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1300-1330,1234567,,,50023516,,, +15530,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1400-1430,1234567,,,50023516,,, +15530,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,100,,7819,127,115,EAf,1100-1130,1234567,,,50023517,,, +15530,PHL,te,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0100-0130,1234567,,,50006954,,, +15530,PHL,te,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0100-0127,1234567,,,50006954,,, +15530,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,0130-0230,1234567,,,50006954,,, +15535,CVA,ar,R Dabanga,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1530-1630,1234567,,,50023518,,, +15535,CVA,ar,R Tamazuj,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1500-1530,1234567,,,50023519,,, +15535,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,WAf,1300-1600,1234567,,,50021400,,, +15537,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024005,,, +15540,KWT,en,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,310,4236,111,72,Eu,1800-2100,1234567,,,50016367,,, +15540,KWT,tl,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,84,4236,111,72,59,1000-1200,1234567,,,50016367,,, +15540,KWT,ur,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,300,100,4236,111,75,SAs,1600-1800,1234567,,,50016367,,, +15540,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,0100-0600,1234567,,,40001238,,, +15540,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,0600-0900,1.34567,,,40001238,,, +15540,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,0900-1100,1234567,,,40001238,,, +15542,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024006,,, +15543,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024007,,, +15545,EGY,ps,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,70,3170,130,65,AFG,1400-1600,1234567,,,50017214,,, +15547,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024008,,, +15548,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024009,,, +15550,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024011,,, +15550,IRN,es,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SEu,0520-0620,1234567,,,50019788,,, +15550,UAE,ar,R Dabanga,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,240,5075,109,81,EAf,0430-0430,1234567,,,50021402,,, +15550,UAE,ar,R Tamazuj,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,240,5075,109,81,EAf,0400-0430,1234567,,,50021403,,, +15550,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0800-0900,1234567,,,50023520,,, +15550,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024010,,, +15550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0000-0600,1234567,,,40001239,,, +15550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0600-0800,1.34567,,,40001239,,, +15550,USA,en,WJHR,,Milton (WJHR) (FL),30.650817,-87.089317,,50,5,7592,292,116,,1400-2200,1234567,,,50016370,,, +15550,USA,en,WJHR,,Milton (WJHR) (FL),30.650817,-87.089317,,50,5,7592,292,116,NAm,1400-2207,1234567,,,50016370,,, +15555,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,1200-1230,1234567,,,50019038,,, +15560,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024013,,, +15560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0600,1234567,,,50024012,,, +15560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024012,,, +15560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1430,1234567,,,50024012,,, +15560,THA,bo,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0400-0600,1234567,,,50023523,,, +15560,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0300-0400,1234567,,,50023522,,, +15560,PHL,jv,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,200,10292,62,128,INS,0100-0130,1234567,,,50010694,,, +15560,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50024014,,, +15562,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50022105,,, +15565,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,0800-1000,1234567,,,50023524,,, +15567,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024015,,, +15570,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024017,,, +15570,CVA,am,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1630-1645,1234567,,,50015571,,, +15570,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,CAf,1730-1800,1234567,,,50015571,,, +15570,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,150,1205,156,45,MOZ,1800-1830,1234567,,,50015571,,, +15570,CVA,so,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1615-1630,.....6.,,,50015571,,, +15570,CVA,sw,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1600-1615,.....6.,,,50015571,,, +15570,CVA,sw,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1600-1630,12345.7,,,50015571,,, +15570,CVA,ti,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1645-1700,1234567,,,50015571,,, +15570,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,168,1205,156,49,CAf,1700-1730,1234567,,,50015571,,, +15570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024016,,, +15570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1430,1234567,,,50024016,,, +15570,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0100-0500,1234567,,,40001241,,, +15570,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0530-0600,1234567,,,40001241,,, +15570,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0800,12.4567,,,40001241,,, +15570,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0500-0530,1234567,,,40001241,,, +15570,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50024018,,, +15572,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024019,,, +15573,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024020,,, +15575,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,NAm,1300-1400,1234567,,,50019044,,, +15575,KOR,es,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,NAm,0200-0300,1234567,,,50019044,,, +15575,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,NAm,1400-1500,1234567,,,50019044,,, +15580,CVA,en,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1700-1800,1234567,,,50023526,,, +15580,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,0630-0700,1234567,,,50006979,,, +15580,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,1600-1700,1234567,,,50006979,,, +15580,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,1800-1830,1234567,,,50006979,,, +15580,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,Af,0300-0500,1234567,,,50023525,,, +15580,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,EAf,2000-2100,1234567,,,50023525,,, +15580,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,250,,8219,99,115,EAf,1500-1600,1234567,,,50009185,,, +15580,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,250,263,8219,99,115,,0300-0500,1234567,,,50009185,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,,1800-1830,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,,1500-1800,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,Af,0500-0630,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,Af,1400-1500,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,Af,1830-1930,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,EAf,1930-2000,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,WAf,2100-2200,1234567,,,50006977,,, +15580,PHL,BUG,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,185,10292,62,128,INS,0930-1000,1234567,,,50009184,,, +15580,PHL,mak,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,185,10292,62,128,INS,0900-0930,1234567,,,50009184,,, +15580,PHL,sas,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,215,10292,62,128,INS,1030-1100,1234567,,,50009184,,, +15580,PHL,su,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,215,10292,62,128,INS,1000-1030,1234567,,,50009184,,, +15582,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024021,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,,0900-1055,1234567,,,50011048,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,,1500-1655,.....67,,,50011048,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,Eu,0900-1100,1234567,,,50011048,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,Eu,1500-1700,......7,,,50011048,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,Eu,1600-1700,.....6.,,,50011048,,, +15585,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,319,11578,41,128,,2300-2400,1234567,,,50021416,,, +15588,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024022,,, +15590,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,,1200-1300,1234567,,,50006984,,, +15590,USA,en,WRNO,,New Orleans (WRNO) (LA),29.836806,-90.115994,,50,20,7851,294,119,,1600-2200,1234567,,,50019396,,, +15590,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,0200-1200,1234567,,,50023527,,, +15590,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50024023,,, +15595,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,,0950-1030,......7,,,50006985,,, +15595,CVA,ASY,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0930-1050,......7,,,50006985,,, +15595,CVA,Ang,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,WEu,1100-1130,......7,,,50006985,,, +15595,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0745-0805,123456,,,50006985,,, +15595,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,1630-1700,1234567,,,50006985,,, +15595,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0730-0745,123456,,,50006985,,, +15595,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0715-0730,123456,,,50006985,,, +15595,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0700-0715,123456,,,50006985,,, +15595,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0630-0700,1234567,,,50006985,,, +15595,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,121,1205,156,49,,0630-0645,12345..,,,50006985,,, +15595,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,121,1205,156,49,,0600-0615,12345..,,,50006985,,, +15595,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,121,1205,156,49,,0530-0600,123456,,,50006985,,, +15595,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,121,1205,156,49,,0530-0610,......7,,,50006985,,, +15595,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,100,,7819,127,115,EAf,1130-1500,.....6.,,,50024024,,, +15600,PHL,C-M,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,0030-0045,1234567,,,50007679,,, +15600,PHL,kac,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,0045-0100,1234567,,,50007679,,, +15600,PHL,my,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,2330-0030,1234567,,,50007679,,, +15605,GUM,MZ,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SAs,1500-1530,1234567,,,50015578,,, +15605,GUM,hi,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SAs,1530-1600,1234567,,,50015578,,, +15605,GUM,shn,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1130-1200,1234567,,,50015578,,, +15610,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024026,,, +15610,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,170,3170,130,65,EAf,0400-0600,1234567,,,50016502,,, +15610,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,40,7317,294,106,ME,1200-2400,1234567,,,50010702,,, +15610,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,40,7317,294,106,ME,1300-2400,1234567,,,50010702,,, +15610,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024025,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0015-0215,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0245-0330,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0500,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0945,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1015-1715,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1845,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1915-2045,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2215-2400,1234567,,,37700111,,, +15620,D,ady,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,Cau,1540-1600,1234567,,,50023529,,, +15620,D,av,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,Cau,1500-1520,1234567,,,50023529,,, +15620,D,ce,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,Cau,1520-1540,1234567,,,50023529,,, +15620,F,so,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,1234567,,,50023533,,, +15620,CVA,so,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1730-1800,1234567,,,50023534,,, +15620,CHN,it,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,0600-0700,1234567,,,50023528,,, +15620,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,Af,1100-1130,.....6.,,,50023531,,, +15620,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,Af,2000-2030,1234567,,,50023531,,, +15620,USA,fr,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,EAf,1830-1900,1234567,,,50023532,,, +15620,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,0330-0400,1234567,,,50023530,,, +15620,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1700-1730,1234567,,,50023530,,, +15620,BOT,om,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,76,8490,160,122,,1730-1800,12345..,,,50013158,,, +15620,BOT,so,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,,1600-1630,.....67,,,50013158,,, +15620,BOT,so,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,EAf,1300-1400,1234567,,,50013158,,, +15620,BOT,so,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,EAf,1600-1630,1234567,,,50013158,,, +15620,PHL,jv,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,200,10292,62,128,INS,1400-1430,1234567,,,50009196,,, +15630,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,0400-1000,1234567,,,50023535,,, +15630,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1400-1800,1234567,,,50023535,,, +15630,IRN,ar,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,0820-1020,1234567,,,50023536,,, +15635,TJK,zh,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,95,4943,82,83,,0300-0700,1234567,,,50021763,,, +15635,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,349,10223,62,124,,0000-0100,1234567,,,50021764,,, +15640,UAE,fa,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,AFG,0830-0900,1234567,,,50007005,,, +15640,UAE,fa,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,AFG,1330-1400,1234567,,,50007005,,, +15640,UAE,ps,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,AFG,0800-0830,1234567,,,50007005,,, +15640,UAE,ps,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,AFG,1400-1430,1234567,,,50007005,,, +15640,UAE,ur,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,SAs,1430-1500,1234567,,,50007005,,, +15640,PHL,BAI,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,308,10292,62,128,CHN,1000-1030,1234567,,,50021426,,, +15640,PHL,tl,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,ME,0200-0330,1234567,,,50023537,,, +15640,GUM,ml,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1530-1600,1234567,,,50023538,,, +15650,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,IRN,0830-1200,1234567,,,50023540,,, +15650,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,As,1400-1850,1234567,,,50023539,,, +15650,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,0530-0830,1234567,,,50023541,,, +15660,GUM,as,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,SEA,1330-1400,..3...7,,,50013163,,, +15660,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SAs,1600-1630,1234567,,,50013163,,, +15660,GUM,hmn,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,SEA,1330-1400,...45..,,,50013163,,, +15660,GUM,ms,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,SEA,1330-1400,12...6.,,,50013163,,, +15660,GUM,my,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1430-1500,1234567,,,50013163,,, +15665,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,EEu,0400-0600,1234567,,,50007009,,, +15665,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,0800-1000,1234567,,,50023542,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,1400-2300,.....67,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,1200-1400,1234567,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Eu,1200-1300,1234567,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Eu,1300-1400,.....67,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,SAm,1400-1600,12345..,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,SAm,1600-2000,.....67,,,50019061,,, +15665,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0700,1234567,,,50024027,,, +15665,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,0300-0700,1234567,,,50023545,,, +15665,GUM,kn,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1530-1600,1234567,,,50023544,,, +15665,GUM,ta,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1500-1530,1234567,,,50023544,,, +15670,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,EEu,1930-2000,......7,,,50021875,,, +15670,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1200,1234567,,,50024028,,, +15670,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0100-0300,1234567,,,40001248,,, +15670,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0000-0100,1234567,,,40001248,,, +15670,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0900-1200,1234567,,,50023547,,, +15670,GUM,kac,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1300-1330,1234567,,,50021431,,, +15680,F,fa,R Mehr,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1630-1700,1...5..,,,50023548,,, +15680,TWN,fr,R France Int.,,Tainan/Annan (TNS),23.044167,120.168611,,100,352,9489,58,125,FE,1100-1130,1234567,,,50016377,,, +15680,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,1600-1630,.....6.,,,50019398,,, +15685,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,2200-2300,1234567,,,50023549,,, +15690,F,en,R France Int.,,Issoudun (36),46.947222,1.894444,,500,160,660,211,37,135,1700-1800,1234567,,,50021765,,, +15690,F,en,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,160,660,211,37,Af,1700-1800,1234567,,,50003570,,, +15690,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,85,306,151,40,IRN,1400-1530,1234567,,,50015605,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,,8219,99,115,IRN,0430-1400,1234567,,,50007019,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,315,8219,99,115,,0230-0300,1234567,,,50007019,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,315,8219,99,115,,0500-1000,1234567,,,50007019,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,316,8219,99,115,,0300-0500,1234567,,,50007019,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,316,8219,99,115,,1000-1100,1234567,,,50007019,,, +15690,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,250,310,8219,99,115,,0130-0230,1234567,,,50021766,,, +15690,CLN,lo,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,65,8219,99,115,,0000-0100,1234567,,,50021439,,, +15690,MRA,lo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,289,11578,41,128,SEA,0000-0100,1234567,,,50021876,,, +15700,PAK,zh,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,70,5607,84,89,,1200-1300,1234567,,,50020199,,, +15700,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,WAf,0600-0630,1234567,,,50019069,,, +15700,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,WAf,0630-0700,1234567,,,50019069,,, +15700,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1000-1100,1234567,,,50019069,,, +15700,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1500-1600,1234567,,,50019069,,, +15700,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,0030-0130,1234567,,,50013174,,, +15710,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024030,,, +15710,EGY,ha,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,NIG,1800-2100,1234567,,,50016382,,, +15710,EGY,id,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,91,3024,131,63,SEA,1230-1400,1234567,,,50016382,,, +15710,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024029,,, +15710,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0100-0900,1234567,,,40001253,,, +15715,BES,fr,Voice of America,,Bonaire (bnr),12.213333,-68.3225,,250,90,7899,266,112,,1100-1130,.....6.,,,50021767,,, +15720,MDG,hi,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,SAs,1430-1515,1234567,,,50023550,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,50,325,18351,32,158,Oc,2151-0500,1234567,,,50003581,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,50,35,18351,32,158,SOc,1851-2050,1234567,,,50003581,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,50,35,18351,32,158,SOc,1951-2050,1234567,,,50003581,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,50,35,18351,32,158,WOc,1100-1300,1234567,,,50003581,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,25,35,18351,32,161,,1851-2150,1234567,,,50003581,,, +15725,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024033,,, +15725,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,ME,1330-1530,1234567,,,50024032,,, +15725,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024031,,, +15730,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,70,5607,84,89,SEA,0045-0215,1234567,,,50021880,,, +15730,PAK,zh,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,70,5607,84,89,FE,1200-1300,1234567,,,50021880,,, +15735,EGY,ur,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,91,3024,131,63,PAK,1600-1800,1234567,,,50022136,,, +15735,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,282,5607,84,93,,0500-0700,1234567,,,50020201,,, +15735,CLN,ne,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,250,5,8200,97,115,SAs,1500-1530,1234567,,,50021768,,, +15750,BUL,fa,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,IRN,1600-1800,1234567,,,50023552,,, +15750,BUL,fa,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,IRN,1600-1800,9999999,,,50023552,,, +15755,UZB,,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1300-1430,1234567,,,50023553,,, +15755,UZB,GA,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1415-1430,12345..,,,50023553,,, +15755,UZB,awa,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1400-1415,.2.....,,,50023553,,, +15755,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1315-1330,.....67,,,50023553,,, +15755,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1330-1400,1234567,,,50023553,,, +15755,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1400-1415,1.34567,,,50023553,,, +15755,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1415-1430,.....67,,,50023553,,, +15755,UZB,xnr,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1315-1330,12345..,,,50023553,,, +15755,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,25,8872,77,119,FE,0000-0200,1234567,,,50011510,,, +15755,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,25,8872,77,119,AFG,0230-0300,1234567,,,50011510,,, +15755,THA,ps,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,25,8872,77,119,AFG,0200-0230,1234567,,,50011510,,, +15760,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,0400-0600,1234567,,,50024034,,, +15760,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,0600-1300,1234567,,,50024034,,, +15770,IND,ar,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,0430-0530,1234567,,,50019077,,, +15770,IND,fa,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,0400-0430,1234567,,,50019077,,, +15770,IND,ur,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,,0530-0600,1234567,,,50019077,,, +15770,IND,ur,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,0530-0600,9999999,,,50019077,,, +15770,IND,id,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,INS,0845-0945,1234567,,,50009229,,, +15770,IND,ta,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,1115-1215,1234567,,,50009229,,, +15770,IND,te,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,1215-1245,1234567,,,50009229,,, +15770,GUM,C-A,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,1400-1430,1234567,,,50023556,,, +15770,GUM,lo,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,1330-1400,...4.6.,,,50023556,,, +15770,GUM,th,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,1330-1400,123.5..,,,50023556,,, +15775,F,en,The Disco Palace,D,Issoudun (36),46.947222,1.894444,,100,79,660,211,44,,1530-1630,1234567,,,50021770,,, +15775,CVA,en,R Vaticana,D,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,1,,1205,156,69,SAs,1530-1600,1234567,,,50023557,,, +15790,EGY,fa,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,70,3170,130,69,IRN,1330-1530,1234567,,,50021463,,, +15790,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,EAf,1630-1700,12345..,,,50021464,,, +15790,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,EAf,1830-1900,12345..,,,50021464,,, +15795,IND,zh,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,35,7561,97,106,FE,1145-1315,1234567,,,50010060,,, +15795,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1145-1315,1234567,,,50024035,,, +15800,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,WAf,1300-1600,1234567,,,50023558,,, +15800,PAK,en,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,Eu,1100-1104,1234567,,,50023559,,, +15800,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,Eu,0830-1100,1234567,,,50023559,,, +15800,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,ME,0500-0700,1234567,,,50023559,,, +15800,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50010957,,, +15825,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,46,7122,296,108,NAm,1100-2100,1234567,,,50010063,,, +15870,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017758,,, +15896,D,de,biteXpress,D,Erlangen/Am Wolfsmantel (bay),49.546486,11.018706,,0.1,,431,130,71,,0000-2400,1234567,,,2000018,,, +15900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1400,1234567,,,50010064,,, +15900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50010064,,, +15940,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017124,,, +15940,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1400,1234567,,,50017124,,, +15970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50020323,,, +15970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1400,1234567,,,50020323,,, +16035,SNG,,9VF/252 Kyodo News,f,Jurong (sw),1.335556,103.686111,,10,,10386,83,138,,0740-1010,1234567,,,33100005,,, +16035,SNG,,9VF/252 Kyodo News,f,Jurong (sw),1.335556,103.686111,,10,,10386,83,138,,1415-1815,1234567,,,33100005,,, +16100,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50010066,,, +16100,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1900,1234567,,,50010066,,, +16135,HWA,,KVM70,f,Maili/Tower Drive (HI),21.429611,-158.160833,,4,,11701,345,147,,1719-0356,1234567,,,20016159,,, +16160,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50020324,,, +16160,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2200-1500,1234567,,,50020324,,, +16250,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017759,,, +16300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022415,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0045-0100,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0145-0200,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0245-0300,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0345-0400,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0445-0500,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2145-2200,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2245-2300,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2345-2400,1234567,-16340.1,,32500045,,, +16360,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50019403,,, +16370,AFS,,ZRK6964 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300034,,, +16375,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902799,,, +16390,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902832,,, +16396,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902834,,, +16420,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902801,,, +16420,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700157,,, +16450,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022416,,, +16504,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902836,,, +16528,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2300-1000,1234567,,,37700027,,, +16531,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0333-0343,1234567,,,32500031,,, +16531,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1003-1013,1234567,,,32500031,,, +16531,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1533-1543,1234567,,,32500031,,, +16531,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2203-2213,1234567,,,32500031,,, +16534,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,0835-0900,1234567,,,36700003,,, +16534,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,0935-1000,1234567,,,36700003,,, +16546,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2100-0800,1234567,,,37700021,,, +16600,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017448,,, +16750,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022417,,, +16804.5,TUR,,Istanbul R,2,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,,,-16804.5,,8000028,,, +16804.5,EGY,,Al-Iskandariya R,2,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,,,-16804.5,,2300016,,, +16804.5,USA,,COMMSTA Boston,2,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,,,-16804.5,,20016316,,, +16804.5,USA,,COMMSTA Portsmouth,2,Portsmouth (USCG COMMSTA) (VA),36.833333,-76.3,,1,,6407,290,121,,,,-16804.5,,20016315,,, +16804.5,USA,,KHT,u,Cedar Rapids (IA),42.034722,-91.643611,,1,,6930,304,126,,,,-16804.5,,20016310,,, +16804.5,USA,,COMMSTA New Orleans,2,Belle Chasse (USCG) (LA),29.881389,-89.942778,,1,,7836,294,135,,,,-16804.5,,20016317,,, +16804.5,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,-16804.5,,35400116,,, +16804.5,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,-16804.5,,36800018,,, +16804.5,AUS,,Charleville / Wiluna R,2,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,,,-16804.5,,37700163,,, +16811,CHL,,CBV Valparaso Playa Ancha R,r,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800019,,, +16850,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2200-1600,1234567,,,50020325,,, +16850,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020325,,, +16854,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0600-1800,1234567,,,6800038,,, +16868,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0600-1800,1234567,,,6800039,,, +16902.5,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,0000-1200,1234567,-16902.5,,37700119,,, +16913.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0600-1900,1234567,-16913.5,,7300013,,, +16920,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017125,,, +16920,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1800,1234567,,,50017125,,, +16939,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800011,,, +16945,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800012,,, +16970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50023560,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0145-0300,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0430-0450,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0540-0800,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1100-1200,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1335-1530,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1645-2000,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,2215-2245,1234567,,,31400041,,, +16974,B,,PPR Rio Rdio,,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0230-0330,1234567,,,36902808,,, +16974,B,,PPR Rio Rdio,,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0600-0730,1234567,,,36902808,,, +16974,B,,PPR Rio Rdio,,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1845-1930,1234567,,,36902808,,, +16974,B,,PPR Rio Rdio,,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1945-2115,1234567,,,36902808,,, +16978,B,,PWZ33 Rio Meteo,f,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0745-0910,1234567,,,36902812,,, +16978,B,,PWZ33 Rio Meteo,f,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1630-1755,1234567,,,36902812,,, +16980,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50010067,,, +16980,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-1500,1234567,,,50010067,,, +16988,CHN,,XSF27,p,Weihai (SD),37.516667,122.1,,1,,8269,48,140,,????-????,1234567,,,36201266,,, +17024,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0900-1500,1234567,,,6800040,,, +17046.5,D,,DAO37 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,-17046.5,,2000050,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0145-0300,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0430-0450,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0540-0800,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1100-1200,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1335-1530,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1645-2000,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,2215-2245,1234567,-17069.6,,31400042,,, +17080,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020207,,, +17138,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000007,,, +17146.4,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1200-1505,1234567,-17146.4,,20016152,,, +17146.4,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1800-2105,1234567,-17146.4,,20016152,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1115-1145,1234567,-17146.5,,36800009,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1630-1700,1234567,-17146.5,,36800009,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1915-1945,1234567,-17146.5,,36800009,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2200-2245,1234567,-17146.5,,36800009,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2310-2340,1234567,-17146.5,,36800009,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0140-0415,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0655-1015,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1120-1230,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1400-1615,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1840-2215,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2320-2400,1234567,-17151.2,,20016147,,, +17170,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50015636,,, +17198,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0900-1500,1234567,,,19901375,,, +17198.5,PHL,,DZO27 Manila R,p,Lucena City (qzn),13.947222,121.619444,,1,,10413,62,148,,????-????,1234567,-17198.5,,33300027,,, +17207.9,J,,JFC,c,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,-17207.9,,31400051,,, +17223.4,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0900-1100,1234567,-17223.4,,11700011,,, +17231,J,,JFC,f,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,31400052,,, +17242,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000008,,, +17250,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50014285,,, +17257,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902798,,, +17260,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1200-1210,1234567,,,5300004,,, +17260.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-17260.8,,31200011,,, +17260.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-17260.8,,31200011,,, +17260.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-17260.8,,31200011,,, +17272,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902831,,, +17276.3,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,-17276.3,,3300003,,, +17278,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902833,,, +17300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020209,,, +17302,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902800,,, +17311,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000009,,, +17314,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1715-1745,1234567,,,20012366,,, +17314,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1630-1705,1234567,,,20012376,,, +17314,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2230-2305,1234567,,,20012376,,, +17320,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000010,,, +17338.3,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,-17338.3,,3300004,,, +17362,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016235,,, +17370,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017325,,, +17386,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902835,,, +17430,SNG,,9VF/252 Kyodo News,f,Jurong (sw),1.335556,103.686111,,10,,10386,83,138,,0740-1010,1234567,,,33100006,,, +17430,SNG,,9VF/252 Kyodo News,f,Jurong (sw),1.335556,103.686111,,10,,10386,83,138,,1415-1815,1234567,,,33100006,,, +17450,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0100-1500,1234567,,,50013550,,, +17450,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50013550,,, +17480,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,SAs,1015-1215,1234567,,,50023561,,, +17485,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,EAf,1700-2300,1234567,,,50023563,,, +17485,CHN,ar,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,NAf,0500-0700,1234567,,,50023562,,, +17490,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,0700-1300,1234567,,,50007054,,, +17495,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,100,,5189,294,89,NAm,1200-2300,1234567,,,50023564,,, +17495,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SEA,0100-0200,1234567,,,50007055,,, +17495,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SEA,0200-0300,1234567,,,50007055,,, +17495,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,,0100-0300,1234567,,,50007055,,, +17495,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,0000-0100,1234567,,,50007055,,, +17500,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,NAf,1020-1620,1234567,,,50023565,,, +17505,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,269,5347,76,91,NAf,0500-0700,1234567,,,50007058,,, +17505,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,0400-0500,1234567,,,50007059,,, +17510,EGY,ar,ERTU Al-Barnameg al-Aam,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,250,3170,130,69,WAf,0700-1100,1234567,,,50016389,,, +17510,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,117,4943,82,83,,0600-0700,1234567,,,50021773,,, +17510,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,Oc,1000-1100,1234567,,,50010071,,, +17510,IND,id,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,INS,0845-0945,1234567,,,50010071,,, +17510,IND,ta,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,CLN,1115-1215,1234567,,,50010071,,, +17510,IND,ta,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,174,6248,85,100,,1115-1215,1234567,,,50021772,,, +17510,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,0300-0330,1234567,,,50010070,,, +17515,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024036,,, +17520,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0700-0800,1234567,,,50021487,,, +17520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,85,7046,290,104,,2200-2300,...456.,,,50019090,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,,1000-1100,......7,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,,1000-1100,123456,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,0000-0100,1234567,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,0100-0130,12345..,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,0100-0200,.....67,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,0130-0200,12345..,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,1000-1100,1234567,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,2300-2400,1234567,,,50021489,,, +17530,ROU,ar,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,NAf,1500-1600,1234567,,,50023566,,, +17530,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,1200-1300,1234567,,,50023566,,, +17530,BES,fr,Voice of America,,Bonaire (bnr),12.213333,-68.3225,,250,94,7899,266,112,,1930-2030,1234567,,,50021776,,, +17530,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,,1400-1500,1234567,,,50021774,,, +17535,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50024037,,, +17535,MRA,ug,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50024038,,, +17540,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EGY,0830-1000,....5..,,,50023567,,, +17540,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EGY,0900-0915,.....6.,,,50023567,,, +17540,IRN,fr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0620-0720,1234567,,,50023569,,, +17540,IRN,bs,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,260,4724,102,77,Eu,0520-0620,1234567,,,50021494,,, +17540,USA,pt,NHK R Japan,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,SAm,2130-2200,1234567,,,50021495,,, +17540,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,SAs,0300-0400,1234567,,,50007073,,, +17540,MDG,KNK,R Mara,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,1700-1800,1234567,,,50024039,,, +17540,GUM,ilo,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,PHL,1030-1100,....5.7,,,50023570,,, +17540,GUM,tl,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,PHL,1030-1100,1234.6.,,,50023570,,, +17550,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,100,,4236,111,79,NAm,2000-2400,1234567,,,50024040,,, +17550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,0100-0600,1234567,,,40001268,,, +17550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,0600-0900,1.34567,,,40001268,,, +17550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,0900-1030,1234567,,,40001268,,, +17560,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,270,4552,116,76,WAf,1600-1800,1234567,,,50016394,,, +17560,IRN,zh,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,FE,1150-1250,1234567,,,50023571,,, +17560,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,0800-1000,1234567,,,50007083,,, +17560,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,0100-0500,1234567,,,50023572,,, +17565,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50024041,,, +17565,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,163,7797,50,115,,0200-0600,1234567,,,40001269,,, +17565,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,163,7797,50,115,,0600-0730,1.34567,,,40001269,,, +17565,MRA,ug,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50024042,,, +17570,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,70,4552,116,76,SAs,0900-1200,1234567,,,50016396,,, +17570,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,0900-1000,1234567,,,50007087,,, +17570,CHN,cs,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1100-1200,1234567,,,50023573,,, +17570,CHN,hu,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1000-1100,1234567,,,50023573,,, +17570,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,1500-1600,......7,,,50019097,,, +17570,AFS,en,Amateur R Today,,Meyerton (SW) (GT),-26.585833,28.138889,,250,19,9003,160,120,,0800-0900,......7,,,50021501,,, +17575,F,so,Adventist World R,,Issoudun (36),46.947222,1.894444,,250,135,660,211,40,EAf,1630-1700,1234567,,,50022168,,, +17575,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50024043,,, +17575,MRA,ug,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50024044,,, +17580,D,fa,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,AFG,1400-1430,1234567,,,50023574,,, +17580,D,ps,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,AFG,1330-1400,1234567,,,50023574,,, +17580,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0000-0600,1234567,,,40001270,,, +17580,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0600-0900,1.34567,,,40001270,,, +17580,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0900-1000,1234567,,,40001270,,, +17580,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1100-1300,1234567,,,50017053,,, +17580,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1300-1500,1234567,,,50017053,,, +17580,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,1100-1500,1234567,,,50017053,,, +17585,EGY,ur,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,90,3170,130,65,,1600-1800,1234567,,,50016511,,, +17585,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50024045,,, +17585,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,SEA,0500-0900,1234567,,,50021506,,, +17585,MRA,ug,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50024046,,, +17590,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,224,1205,156,45,260,0950-1030,......7,,,50013201,,, +17590,CVA,LTO,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,72,1205,156,45,ME,0930-1050,......7,,,50013201,,, +17590,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,72,1205,156,45,ME,1300-1320,1234567,,,50013201,,, +17595,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,272,1547,213,49,LAm,1200-1500,1234567,,,50010081,,, +17595,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,272,1547,213,49,LAm,1500-1700,.....67,,,50010081,,, +17595,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,302,1547,213,49,,1300-1500,12345..,,,50010081,,, +17595,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,302,1547,213,49,248,1300-1700,.....67,,,50010081,,, +17595,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0100-0600,1234567,,,40001272,,, +17595,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0600-0630,1.34567,,,40001272,,, +17605,AUT,aa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,145,849,119,41,EAf,1430-1500,1234567,,,50007095,,, +17605,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0130-0600,1234567,,,40001273,,, +17605,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0600-0900,1.34567,,,40001273,,, +17605,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0900-1000,1234567,,,40001273,,, +17610,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,WAf,1800-2000,1234567,,,50023576,,, +17610,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,WAf,2000-2100,.....6.,,,50023576,,, +17615,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1600-1700,1234567,,,50024047,,, +17615,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,,4552,116,76,EAf,1400-1600,1234567,,,50016398,,, +17615,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,100,4552,116,76,SAs,0900-1200,1234567,,,50016398,,, +17615,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,190,4552,116,76,EAf,1300-1600,1234567,,,50016398,,, +17620,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,NAf,0800-0900,1234567,,,50007099,,, +17620,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,WAf,0800-1300,1234567,,,50007099,,, +17620,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,WAf,1200-1300,1234567,,,50007099,,, +17620,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,WAf,1700-1800,1234567,,,50007099,,, +17625,EGY,ff,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,200,245,3170,130,66,WAf,1845-2000,1234567,,,50017129,,, +17625,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,100,4552,116,76,INS,1200-1400,1234567,,,50016399,,, +17625,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,163,7773,50,113,,0000-0600,1234567,,,36201067,,, +17625,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,163,7773,50,113,,0600-0900,12.4567,,,36201067,,, +17625,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,163,7773,50,113,,0900-1000,1234567,,,36201067,,, +17630,F,so,R Xoriyo,,Issoudun (36),46.947222,1.894444,,500,130,660,211,37,EAf,1600-1630,.2...6.,,,50021886,,, +17630,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,Af,1400-1600,1234567,,,50007101,,, +17630,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,ME,1000-1100,1234567,,,50023577,,, +17640,RRW,ha,BBC WS,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,310,6406,152,97,WAf,1400-1430,1234567,,,50021523,,, +17640,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,114,6960,203,103,SAf,1600-1700,1234567,,,50021524,,, +17640,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,1200-1230,1234567,,,50021524,,, +17640,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,280,7819,127,111,EAf,0600-0800,1234567,,,50010086,,, +17640,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,0200-0500,1234567,,,50023578,,, +17650,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,0900-1000,1234567,,,50007112,,, +17650,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,SEu,1300-1400,1234567,,,50007112,,, +17650,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,0600-0900,1234567,,,50007112,,, +17650,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,1000-1300,1234567,,,50007112,,, +17650,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0450-0520,1234567,,,50023579,,, +17655,CVA,pt,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,WAf,1630-1700,....5..,,,50023583,,, +17655,USA,pt,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,WAf,1700-1800,1234567,,,50023582,,, +17655,BOT,pt,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,SAf,1800-1830,12345..,,,50023581,,, +17655,GUM,ru,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,FE,0300-0330,1234567,,,50023580,,, +17660,ARS,fr,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,270,4552,116,76,,1400-1600,1234567,,,50016401,,, +17660,ARS,fr,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,WAf,1400-1555,1234567,,,50024048,,, +17660,IRN,it,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,0620-0720,1234567,,,50023584,,, +17660,AFS,fr,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,250,342,9003,160,120,CAf,1200-1300,1234567,,,50007117,,, +17670,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0300-0330,1234567,,,50021779,,, +17670,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0430-0530,1234567,,,50021779,,, +17670,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0630-0700,1234567,,,50021779,,, +17670,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0230-0300,1234567,,,50021779,,, +17670,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0330-0430,1234567,,,50021779,,, +17670,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0530-0630,1234567,,,50021779,,, +17670,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,NAf,0700-0900,1234567,,,50023585,,, +17670,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1745-1945,1234567,,,50009274,,, +17670,IND,hi,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1615-1730,1234567,,,50009274,,, +17670,IND,sw,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1515-1615,1234567,,,50009274,,, +17670,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,0900-1000,1234567,,,50007122,,, +17670,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1000-1100,1234567,,,50007122,,, +17670,MDG,VN,Adventist World R,,Talata-Volonondry (tan),-18.751667,47.614444,,250,60,8830,141,119,SEA,1300-1400,1234567,,,50007125,,, +17675,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0600-0700,1234567,,,50023587,,, +17675,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024049,,, +17675,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,25,35,18351,32,161,Oc,2051-0500,1234567,,,50020329,,, +17680,UAE,so,R Ergo,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0830-0900,1234567,,,50024050,,, +17680,CHN,km,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,SEA,1030-1130,1234567,,,50007127,,, +17680,CHN,ms,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,175,8246,70,120,INS,0930-1030,1234567,,,50007127,,, +17680,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,1200-1230,1234567,,,50021537,,, +17680,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,1430-1530,1234567,,,50021537,,, +17690,F,en,Brother Stair,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,As,1200-1400,.....67,,,50023594,,, +17690,F,en,Brother Stair,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,As,1200-1400,1234567,,,50023594,,, +17690,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,80,4199,110,75,70,1230-1330,1234567,,,50021780,,, +17690,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,80,4199,110,75,70,1400-1430,1234567,,,50021780,,, +17690,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,80,4199,110,75,,0730-0830,1234567,,,50021780,,, +17690,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,80,4199,110,75,70,1330-1400,1234567,,,50021780,,, +17690,IRN,de,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,0720-0820,1234567,,,50023592,,, +17690,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0700,1234567,,,50024051,,, +17690,CLN,fa,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,332,8219,99,115,,0300-0330,1234567,,,50021781,,, +17690,CLN,fa,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,332,8219,99,115,,0430-0530,1234567,,,50021781,,, +17690,CLN,ps,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,332,8219,99,115,,0230-0300,1234567,,,50021781,,, +17690,CLN,ps,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,332,8219,99,115,,0330-0430,1234567,,,50021781,,, +17690,CLN,ps,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,340,8219,99,115,,1130-1230,1234567,,,50021781,,, +17690,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,100,,7819,127,115,EAf,1400-1500,12345.7,,,50023590,,, +17690,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,100,,7819,127,115,EAf,1400-1500,1234567,,,50023590,,, +17690,THA,fa,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0630-0730,1234567,,,50021782,,, +17690,THA,fa,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0830-0930,1234567,,,50021782,,, +17690,THA,fa,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,1030-1130,1234567,,,50021782,,, +17690,THA,ps,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0530-0630,1234567,,,50021782,,, +17690,THA,ps,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0930-1030,1234567,,,50021782,,, +17690,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,Oc,0900-1100,1234567,,,50023588,,, +17690,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,0300-0700,1234567,,,50023595,,, +17700,KWT,ha,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,WAf,0700-0730,1234567,,,50023599,,, +17700,BOT,ha,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,WAf,1500-1530,1234567,,,50023598,,, +17700,PHL,tl,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,ME,0200-0330,1234567,,,50023596,,, +17700,GUM,VN,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,2300-2330,1234567,,,50023597,,, +17700,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,2330-2400,.....67,,,50023597,,, +17700,GUM,vi,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,2330-2400,12345..,,,50023597,,, +17700,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,0100-0130,12345..,,,50023597,,, +17700,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,0100-0200,.....67,,,50023597,,, +17700,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,0130-0200,12345..,,,50023597,,, +17705,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,1200-1500,1234567,,,50024052,,, +17710,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,0600-0800,1234567,,,50007143,,, +17710,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,0400-0500,1234567,,,50007143,,, +17710,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,,8886,55,116,SEA,0600-0800,1234567,,,50007144,,, +17710,CHN,ru,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,310,8886,55,116,EEu,0300-0400,1234567,,,50007144,,, +17710,AFS,sw,Deutsche Welle,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1000-1100,1234567,,,50023600,,, +17715,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,,1500-1900,12345..,,,50010101,,, +17715,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,,1700-1900,.....67,,,50010101,,, +17715,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,SAm,1500-1700,12345..,,,50010101,,, +17715,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,SAm,1700-1900,1234567,,,50010101,,, +17715,IRN,id,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SEA,1220-1320,1234567,,,50023601,,, +17715,IND,gu,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,0415-0430,1234567,,,50009289,,, +17715,IND,hi,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,0315-0415,1234567,,,50009289,,, +17715,IND,hi,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,0430-0530,1234567,,,50009289,,, +17720,CHN,de,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,WEu,0600-0800,1234567,,,50007154,,, +17720,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,AFG,0930-1030,1234567,,,50023602,,, +17720,THA,ps,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,AFG,0830-0930,1234567,,,50023602,,, +17720,THA,ps,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,AFG,1030-1130,1234567,,,50023602,,, +17725,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,100,5762,180,95,,1400-1500,1234567,,,50019414,,, +17725,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,0400-0600,1234567,,,50023603,,, +17725,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,1000-1200,1234567,,,40001276,,, +17730,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,0600-0900,1234567,,,50024053,,, +17730,MNG,bo,R Free Asia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,230,6615,50,99,,0100-0200,1234567,,,50007815,,, +17730,MNG,km,R Free Asia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,230,6615,50,99,SEA,0100-0300,1234567,,,50007815,,, +17730,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0300,1234567,,,50024054,,, +17730,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1100-1300,1234567,,,50024055,,, +17730,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1300-1500,1234567,,,50024055,,, +17735,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,100,1955,168,50,,0200-0510,1234567,,,50016513,,, +17735,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,250,,1955,168,53,Eu,0402-0502,1234567,,,50016513,,, +17735,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,250,,1955,168,53,ME,1556-2010,1234567,,,50016513,,, +17735,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,250,100,1955,168,53,,1600-2010,1234567,,,50016513,,, +17735,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,175,8246,70,120,INS,0830-0930,1234567,,,50007162,,, +17735,MRA,km,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1230-1330,1234567,,,50023604,,, +17740,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,0600-0900,1234567,,,50024056,,, +17740,CHN,vi,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,0400-0600,1234567,,,50007167,,, +17740,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0600-0700,1234567,,,50007167,,, +17745,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,EGY,0900-1000,......7,,,50023605,,, +17745,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1130-1230,1234567,,,50024057,,, +17750,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0700-0800,1234567,,,50023606,,, +17750,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,,1500-1800,......7,,,50020332,,, +17750,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,0030-0405,1234567,,,50016412,,, +17750,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,0030-0400,1234567,,,50016412,,, +17750,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,0530-0700,1234567,,,50016412,,, +17750,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,2330-2400,1234567,,,50016412,,, +17750,AUS,id,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,0405-0530,1234567,,,50016412,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,,1500-2200,......7,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,,1700-1900,12345..,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,,1700-2200,.....6.,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,1500-1700,......7,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,1700-1900,1234567,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,1900-2200,.....67,,,50010103,,, +17755,TUR,de,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1230-1330,1234567,,,50023607,,, +17760,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,25,8872,77,119,SAs,0300-0330,1234567,,,50010104,,, +17760,AFS,en,Amateur R Today,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0800-0900,......7,,,50023608,,, +17760,AUS,C-H,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,0100-0115,..3.5..,,,50023609,,, +17760,AUS,CHG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,.....67,,,50023609,,, +17760,AUS,HMA,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,..3....,,,50023609,,, +17760,AUS,RWG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,0030-0100,1234567,,,50023609,,, +17760,AUS,bho,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,......7,,,50023609,,, +17760,AUS,bn,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,1......,,,50023609,,, +17760,AUS,bn,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,1......,,,50023609,,, +17760,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,0100-0115,1....67,,,50023609,,, +17760,AUS,gu,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,....5..,,,50023609,,, +17760,AUS,hi,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0145-0215,1234567,,,50023609,,, +17760,AUS,kru,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,..3....,,,50023609,,, +17760,AUS,kru,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,..3....,,,50023609,,, +17760,AUS,ml,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,...4...,,,50023609,,, +17760,AUS,mr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,....5..,,,50023609,,, +17760,AUS,mwr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,.2.....,,,50023609,,, +17760,AUS,mwr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,.2.....,,,50023609,,, +17760,AUS,my,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,0100-0115,.2.4...,,,50023609,,, +17760,AUS,ne,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,...456.,,,50023609,,, +17760,AUS,pa,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,......7,,,50023609,,, +17760,AUS,ta,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,12.....,,,50023609,,, +17760,AUS,te,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,...4...,,,50023609,,, +17760,AUS,ur,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,.....6.,,,50023609,,, +17765,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,EAf,1200-1300,1234567,,,50023610,,, +17770,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,100,100,1666,112,54,,1730-1800,.....6.,,,50019415,,, +17770,KWT,ru,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,EEu,0600-0700,1234567,,,50023613,,, +17770,THA,ru,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,250,308,8917,74,120,FE,0300-0600,1234567,,,50007194,,, +17770,THA,ru,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,250,308,8917,74,120,Sib,0800-1000,1234567,,,50007194,,, +17770,AFS,sw,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1500-1600,12345..,,,50023611,,, +17770,MRA,lo,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,0000-0100,1234567,,,50023612,,, +17775,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0900-1000,......7,,,50023614,,, +17775,USA,es,KVOH Voice of Hope,,Rancho Simi (KVOH) (CA),34.256389,-118.641667,,100,,9031,317,124,CAm,1400-2000,12345..,,,50024058,,, +17780,G,fr,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,250,170,622,276,39,NAf,1200-1230,1234567,,,50021562,,, +17780,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,67,1660,112,49,NAf,1000-1100,......7,,,50007202,,, +17780,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,AUS,0630-0700,1234567,,,50023618,,, +17780,UAE,fr,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,MDG,0430-0500,1234567,,,50023617,,, +17780,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1100-1130,1234567,,,50023617,,, +17780,OMA,uz,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1300-1330,1234567,,,50023616,,, +17780,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1700-1800,1234567,,,50013241,,, +17780,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,,1330-1600,.....6.,,,50013241,,, +17780,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1400-1430,1234567,,,50013241,,, +17780,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1430-1700,.....6.,,,50013241,,, +17780,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1330,1234567,,,50024059,,, +17780,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,0130-0230,1234567,,,50019136,,, +17790,OMA,ar,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,EAf,0500-0700,1234567,,,50010108,,, +17790,USA,en,R Africa,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Af,1400-2000,1234567,,,50024060,,, +17795,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,50,16373,78,148,Oc,2300-0300,1234567,,,50016415,,, +17800,UAE,am,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1600-1700,1234567,,,50023620,,, +17800,UAE,sw,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1500-1600,1234567,,,50023620,,, +17800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,,0600-0700,1234567,,,50007210,,, +17800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0600-0630,1234567,,,50007210,,, +17800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0630-0700,1234567,,,50007210,,, +17800,RRW,fa,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,AFG,0830-0900,1234567,,,50007210,,, +17800,RRW,fa,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,AFG,1330-1400,1234567,,,50007210,,, +17800,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,Af,1200-1300,1234567,,,50007210,,, +17800,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,1700-1800,1234567,,,50007210,,, +17800,RRW,ps,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,AFG,0800-0830,1234567,,,50007210,,, +17800,RRW,ps,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,AFG,1400-1430,1234567,,,50007210,,, +17800,RRW,ur,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,SAs,1430-1500,1234567,,,50007210,,, +17800,MDG,ha,Deutsche Welle,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,WAf,1800-1900,1234567,,,50023619,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0100-0130,......7,,,50021784,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0130-0200,......7,,,50021784,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0200-0300,......7,,,50021784,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0300-0400,......7,,,50021784,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0300-0400,12345..,,,50021784,,, +17805,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,0900-1200,1234567,,,50024061,,, +17810,D,bo,R Free Asia,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,FE,1000-1100,....5..,,,50023624,,, +17810,ROU,ar,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0730-0800,1234567,,,50023623,,, +17810,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,170,3170,130,65,,1530-1730,1234567,,,50016418,,, +17810,IRN,ha,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,WAf,0550-0650,1234567,,,50023622,,, +17810,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,....5..,,,50024062,,, +17810,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,SEA,0000-0500,1234567,,,50007218,,, +17815.2,B,pt,ZYE959 Rdio Cultura Brasil,,So Paulo (SP),-23.512461,-46.562467,,7.5,342,9853,227,138,,0800-0300,1234567,-17815.2,,40001281,,, +17820,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1100-1200,1234567,,,50023626,,, +17820,IRN,ar,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,NAf,0520-1020,1234567,,,50023625,,, +17820,PHL,tl,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,ME,0200-0330,1234567,,,50019417,,, +17830,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,90,3170,130,65,SAs,1015-1215,1234567,,,50021576,,, +17830,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,CAf,1700-1800,1234567,,,50010115,,, +17830,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,CAf,1600-1700,1234567,,,50010115,,, +17830,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,328,9003,160,120,CAf,0700-0800,1234567,,,50020334,,, +17835,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0030-0130,1234567,,,50023627,,, +17840,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1300-1500,1234567,,,50023630,,, +17840,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,170,3170,130,65,EAf,1600-1800,1234567,,,50021580,,, +17840,IRN,ar,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,ME,0520-1420,1234567,,,50023629,,, +17840,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,,1200-1230,1234567,,,50021785,,, +17840,PLW,en,R Australia,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,INS,0400-0500,1234567,,,50023628,,, +17850,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,CAf,1700-1800,1234567,,,50007242,,, +17850,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,160,660,211,37,CAf,0700-0800,1234567,,,50007242,,, +17850,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,155,0800-0900,1234567,,,50007242,,, +17850,CVA,fr,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Af,1100-1130,.....6.,,,50023633,,, +17850,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1700-1900,.....67,,,50023631,,, +17850,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1900-2200,1234567,,,50023631,,, +17850,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,2200-2300,.....67,,,50023631,,, +17850,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,IRN,0800-0900,......7,,,50023632,,, +17855,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,288,7797,50,108,CAs,0400-0600,1234567,,,50007245,,, +17860,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,67,1660,112,49,ME,0800-0900,......7,,,50019155,,, +17860,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,EEu,1600-1630,.....6.,,,50021891,,, +17860,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0600,1234567,,,50024063,,, +17860,PHL,ur,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,,0100-0130,1234567,,,50007250,,, +17860,PHL,ur,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,0100-0127,1234567,,,50007250,,, +17860,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0300-0600,1234567,,,50023635,,, +17865,IRN,fr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0620-0720,1234567,,,50023636,,, +17865,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,,0600-0800,1234567,,,50021786,,, +17870,BUL,so,R Xoriyo,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,EAf,1600-1630,1...5..,,,50023637,,, +17870,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1000-1100,......7,,,50023639,,, +17870,ROU,fr,R Romania Int.,d,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,NAf,1100-1200,1234567,,,50023640,,, +17870,ROU,zh,R Romania Int.,d,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,FE,0500-0530,1234567,,,50023640,,, +17870,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,90,3170,130,65,SEA,1215-1330,1234567,,,50016421,,, +17870,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1630-1700,12345..,,,50023638,,, +17870,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,250,315,10381,83,124,SAs,0230-0300,1234567,,,50021589,,, +17875,IND,id,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,132,7561,97,106,INS,0845-0945,1234567,,,50009347,,, +17880,MLI,ar,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,NAf,1600-1700,1234567,,,50007258,,, +17880,MLI,fr,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,WAf,1300-1400,1234567,,,50007258,,, +17880,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,1100-1300,1234567,,,50024064,,, +17880,AFS,fr,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,342,9003,160,120,CAf,0700-0729,1234567,,,50021594,,, +17880,AFS,fr,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,342,9003,160,120,CAf,0700-0730,1234567,,,50021594,,, +17880,THA,fa,R Farda,,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0830-1030,1234567,,,50021598,,, +17880,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,0000-0100,1234567,,,50007260,,, +17880,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,0100-0130,12345..,,,50007260,,, +17880,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,0100-0200,.....67,,,50007260,,, +17880,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,0130-0200,12345..,,,50007260,,, +17885,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,2000-2030,....5..,,,50010119,,, +17885,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,55,6960,203,103,,1930-2030,1234567,,,50010119,,, +17885,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,55,6960,203,103,WAf,1930-2000,1234567,,,50010119,,, +17890,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0130-0600,1234567,,,40001287,,, +17890,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0600-0900,1.34567,,,40001287,,, +17890,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0900-1200,1234567,,,40001287,,, +17895,CVA,en,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,WAf,1700-1800,1234567,,,50023643,,, +17895,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,295,4552,116,76,NAf,1200-1500,1234567,,,50016422,,, +17895,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,40,4552,116,76,CAs,0300-0800,1234567,,,50016422,,, +17895,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,1500-1600,1234567,,,50023642,,, +17895,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,65,7561,97,106,Oc,1000-1100,1234567,,,50010121,,, +17900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017455,,, +17900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-2400,1234567,,,50017455,,, +17901,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100016,,, +17904,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012455,,, +17904,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500007,,, +17904,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700079,,, +17904,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700084,,, +17904,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500007,,, +17904,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500036,,, +17907,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-2400,1234567,,,20012422,,, +17907,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200025,,, +17907,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902906,,, +17907,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900018,,, +17907,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700089,,, +17912,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700105,,, +17913,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902872,,, +17916,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800051,,, +17916,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500015,,, +17919,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016239,,, +17919,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902873,,, +17925,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012415,,, +17925,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012495,,, +17925,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012441,,, +17925,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012481,,, +17925,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900024,,, +17925,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012508,,, +17928,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500018,,, +17928,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900016,,, +17940,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500040,,, +17946,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100033,,, +17946,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0900-2100,1234567,,,4200013,,, +17946,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,1200-1800,1234567,,,700010,,, +17946,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1200-0200,1234567,,,20012396,,, +17946,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012488,,, +17946,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012475,,, +17952,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012421,,, +17955,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500011,,, +17955,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000007,,, +17955,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300021,,, +17961,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300009,,, +17961,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400008,,, +17961,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600015,,, +17961,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,5,,6741,96,117,,,,,,32200017,,, +17961,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300006,,, +17961,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500009,,, +17961,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100008,,, +17961,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500007,,, +17961,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500012,,, +17967,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900009,,, +17985,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200023,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0015-0215,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0245-0330,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0500,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0945,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1015-1100,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2215-2400,1234567,,,37700112,,, +18095.5,PNR,,HP1AVS,b,Cerro Jefe,9.133333,-79.366667,,0.0025,,8920,272,169,,,,-18095.5,Inv Vee A1 24,55081,,, +18098,S,,SM7ZFB,b,Loddekpinge,55.766667,12.95,,0.0001,,590,44,103,,,,,?,55082,,, +18100,I,,IK6BAK,b,Montefelcino (pu),43.716667,12.866667,,0.001,,1049,150,97,,,,,Inv Vee Omni A1 24,55083,,, +18100,MLT,,9H1LO,b,Hosta, Malta,35.883333,14.45,,0.0005,,1913,157,109,,,,,G5RV psk 24,55084,, +18101,CAN,,VE3RAT,b,Thornhill ONT (NT),43.466667,-79.45,,0.001,,6104,298,148,,,,,Vertical Omni A1 24,55085,,, +18102,I,,I1M,b,Bordighera (im),43.8,7.7,,0.01,,929,174,86,,,,,5/8 Vert Omni A1 24,55086,,, +18104.6,G,,Many WSPR beacons around,b,many,55.55,-2.65,,0.025,,706,306,80,,,,-18104.6,,55087,,, +18109.25,I,,IQ3VO,b,Verona (vr),45.466667,10.95,,0.005,,810,154,88,,,,-18109.25,GP Omni A1 24,55088,,, +18110,FIN,,OH2B,b,Lohja,60.516667,25.033333,,0.025,,1472,43,88,,,,,Vertical Omni A1 IBP Cycle,55102,,, +18110,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP Cycle,55103,,, +18110,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55101,,, +18110,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55090,, +18110,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 IBP cycle,55096,,, +18110,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 IBP cycle,55089,,, +18110,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55100,,, +18110,VEN,,YV5B,b,Caracas,10.433333,-66.866667,,0.025,,7954,263,153,,,,,Vertical Omni A1 IBP cycle,55106,,, +18110,CLN,,4S7B,b,Colombo,6.1,80.2,,0.025,,8369,99,157,,,,,Vertical Omni A1 IBP cycle,55098,,, +18110,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55099,,, +18110,USA,,W6WX,b,Mt Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55091,,, +18110,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55097,,, +18110,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55095,,, +18110,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP Cycle,55105,,, +18110,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55104,,, +18110,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55092,, +18110,AUS,,VK6RBP,b,28km SE of Perth (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 IBP cycle,55094,,, +18110,NZL,,ZL6B,b,near Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55093,,, +18112.4,I,,IQ0LT,b,Latina (lt),41.466667,12.866667,,0.025,,1280,155,86,,,,-18112.4,?,55107,,, +18140.1,MLT,,9H1LO,b,Malta,35.183333,14.533333,,0.002,,1989,158,104,,,,-18140.1,Horiz Dip psk31 OP?,55108,,, +18180,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020336,,, +18238,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0600-0830,1234567,,,20300030,,, +18238,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0915-1130,1234567,,,20300030,,, +18238,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,1530-1600,1234567,,,20300030,,, +18250,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017852,,, +18264,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,,,20016139,,, +18300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022432,,, +18370,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022433,,, +18430,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022434,,, +18519,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800013,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0040-0140,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0305-0550,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0700-0740,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0905-1030,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1300-1340,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1505-1740,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1900-1940,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,2050-2230,1234567,,,21800039,,, +18591,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800014,,, +18910,AUT,de,R Austria Int.,,Moosbrunn (nie),48.006667,16.461944,,100,255,849,119,46,,0900-0935,123456,,,50019532,,, +18970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50023644,,, +19000,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,65,16373,78,148,SOc,2300-0100,1234567,,,50017074,,, +19000,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,0100-0300,1234567,,,50017074,,, +19010,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0430-0530,1234567,,,50023645,,, +19010,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0630-0730,1234567,,,50023645,,, +19010,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0830-0930,1234567,,,50023645,,, +19010,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1030-1130,1234567,,,50023645,,, +19010,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0530-0630,1234567,,,50023645,,, +19010,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0730-0830,1234567,,,50023645,,, +19010,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0930-1030,1234567,,,50023645,,, +19706,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000071,,, +19708,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0600-1800,1234567,,,6800041,,, +19736.4,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0600-1800,1234567,-19736.4,,6800042,,, +19754,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000072,,, +19970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020238,,, +20000,USA,en,WWV,,Fort Collins (CO),40.681392,-105.04125,,10,,7769,311,125,,0000-2400,1234567,,,20000088,,, +20047.7,UKR,,D,b,Sevastopol' (KR),44.6,33.533333,,0.025,,2155,102,95,,,,-20047.7,HF single lett,86236,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0015-0215,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0245-0330,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0400-0500,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0600-0900,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1915-2045,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2215-2400,1234567,,,37700107,,, +21052.3,D,,DL5KZ,b,Nmbrecht (nrw),50.85,7.533333,,0.00025,,160,151,95,,,,-21052.3,3-el Yagi 180 A1 EXP 24,55109,,, +21145.7,I,,IZ3DVW,b,Nr Monselice (pd),45.216667,11.783333,,0.0026,,862,151,91,,,,-21145.7,Inv. V Dip A1 24,55110,,, +21149.5,I,,IW9HMQ,b,near Catania (ct),37.55,15.033333,,0.025,,1753,154,91,,,,-21149.5,wkend,55111,,, +21150,FIN,,OH2B,b,Lohja,60.516667,25.033333,,0.025,,1472,43,88,,,,,Vertical Omni A1 IBP cycle,55125,,, +21150,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP cycle,55126,,, +21150,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55124,,, +21150,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55113,, +21150,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 TNonOp,55119,,, +21150,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 TNonOp,55112,,, +21150,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55123,,, +21150,VEN,,YV5B,b,Caracas,10.433333,-66.866667,,0.025,,7954,263,153,,,,,Vertical Omni A1 TNonOp,55129,,, +21150,CLN,,4S7B,b,Colombo,6.1,80.2,,0.025,,8369,99,157,,,,,Vertical Omni A1 IBP cycle,55121,,, +21150,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55122,,, +21150,USA,,W6WX,b,Mount Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55114,,, +21150,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55120,,, +21150,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55118,,, +21150,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP cycle,55128,,, +21150,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55127,,, +21150,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55115,, +21150,AUS,,VK6RBP,b,28km SE of Perth (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 TNonOp,55117,,, +21150,NZL,,ZL6B,b,Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55116,,, +21151,I,,I1M,b,Bordighera (im),43.8,7.7,,0.01,,929,174,86,,,,,2 5/8 Vert Omni A1 24,55130,,, +21155.5,I,,IQ0LT,b,Latina (lt),41.466667,12.866667,,0.025,,1280,155,86,,,,-21155.5,?,55131,,, +21171,USA,,KA5FYI,b,Austin (TX),30.516667,-96.95,,0.0013,,8210,299,168,,,,,1/4 Vert Omni A1 INT,55132,,, +21241.5,I,,I1YRB,b,Torre Bert (to),45.05,7.7,,0.0002,,791,173,102,,,,-21241.5,Vertical Omni QRSS3 24,55133,,, +21265,MEX,,XE1FAS,b,Puebla (pue),19.05,-98.283333,,0.025,,9303,293,161,,,,,A1 ?,55134,,, +21393.8,B,,PY3PSI,b,Porto Alegre (RS),-30.016667,-51.116667,,0.004,,10705,227,173,,,,-21393.8,Dipole N-S A1 INT,55135,,, +21470,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,225,5075,109,84,,1300-1500,1234567,,,50021605,,, +21470,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,225,5075,109,84,EAf,1130-1400,.....6.,,,50021605,,, +21470,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,225,5075,109,84,EAf,1400-1500,1234567,,,50021605,,, +21470,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024065,,, +21470,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024066,,, +21480,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024067,,, +21480,MDG,en,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,130,45,8830,141,122,FE,1100-1130,.....6.,,,50022210,,, +21480,MDG,en,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,130,45,8830,141,122,FE,1115-1130,......7,,,50022210,,, +21480,MDG,ja,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,130,45,8830,141,122,FE,1130-1200,......7,,,50022210,,, +21480,MDG,zh,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,125,45,8830,141,122,FE,1100-1115,.234...,,,50022210,,, +21480,MDG,zh,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,125,45,8830,141,122,FE,1115-1130,1......,,,50022210,,, +21480,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024068,,, +21500,ROU,,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,97,1660,112,49,NAf,1000-1100,......7,,,50015778,,, +21505,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,1200-1500,1234567,,,50024069,,, +21510,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1020-1120,1234567,,,50023647,,, +21510,IRN,sw,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,EAf,0820-0920,1234567,,,50023647,,, +21520,IRN,ha,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,46,4724,102,77,WAf,1120-1150,1234567,,,50021614,,, +21530,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024070,,, +21530,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024071,,, +21540,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,Af,1100-1500,1234567,,,50023648,,, +21540,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,310,4236,111,72,,0950-1500,1234567,,,50016424,,, +21540,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,310,4236,111,72,Eu,0945-1745,1234567,,,50016424,,, +21540,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,310,4236,111,72,Eu,0950-1800,1234567,,,50016424,,, +21550,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024072,,, +21550,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024073,,, +21560,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,185,1205,156,45,,0950-1030,......7,,,50021619,,, +21560,CVA,Ang,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,185,1205,156,45,ME,1100-1130,......7,,,50021619,,, +21560,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,185,1205,156,45,CAf,1300-1320,1234567,,,50021619,,, +21560,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,113,1205,156,49,ME,1130-1200,....5..,,,50021619,,, +21560,MRA,zh,R Vaticana,,Saipan/Tinian (MP),15.045833,145.607222,,250,303,11578,41,128,FE,0400-0430,1234567,,,50021618,,, +21570,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,EAf,1200-1300,1234567,,,50023649,,, +21570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0600,1234567,,,50024074,,, +21570,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0300-0600,1234567,,,50022244,,, +21580,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,155,660,211,37,CAf,0800-0900,1234567,,,50007292,,, +21580,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,155,660,211,37,EAf,1200-1300,1234567,,,50007292,,, +21580,KWT,tl,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,84,4236,111,72,PHL,1000-1200,1234567,,,50021621,,, +21590,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024075,,, +21590,CLN,pt,Voice of America,,Iranawila (put),7.507211,79.805381,,250,251,8219,99,115,,1000-1030,.....67,,,50021789,,, +21590,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024076,,, +21595,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,313,11578,41,128,,0300-0400,1234567,,,50021624,,, +21600,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,AUS,0630-0700,1234567,,,50023651,,, +21600,IRN,ha,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,WAf,1120-1150,1234567,,,50023650,,, +21600,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0450-0520,1234567,,,50023650,,, +21600,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,59,7046,290,104,,1400-1500,1234567,,,50019180,,, +21600,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,59,7046,290,104,NAf,1400-1500,.....67,,,50019180,,, +21610,E,ar,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,110,1547,213,49,ME,1700-1900,1234567,,,50010128,,, +21610,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,110,1547,213,49,ME,1100-1700,1234567,,,50010128,,, +21615,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024077,,, +21615,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024078,,, +21630,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1300-1600,12345..,,,50023654,,, +21630,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1300-1600,1234567,,,50023654,,, +21630,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1600-1700,.....67,,,50023654,,, +21630,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,CAf,1200-1230,1234567,,,50010129,,, +21630,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1400-1430,1234567,,,50010129,,, +21630,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,WAf,1230-1500,.....6.,,,50010129,,, +21630,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,WAf,1400-1430,12345.7,,,50010129,,, +21630,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,WAf,1500-1600,.....67,9,,50016426,,, +21630,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,WAf,1600-1800,1234567,9,,50016426,,, +21630,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,85,7046,290,104,,1730-1745,......7,9,,50016426,,, +21630,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,85,7046,290,104,,2000-2200,...456.,9,,50016426,,, +21640,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1300-1600,.....67,,,50024079,,, +21640,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1600-1700,.....67,,,50024079,,, +21640,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1020-1120,1234567,,,50021627,,, +21640,IRN,sw,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EAf,0820-0920,1234567,,,50023655,,, +21645,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024080,,, +21645,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024081,,, +21670,ARS,id,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,100,4552,116,76,,0900-1200,1234567,,,50016427,,, +21670,ARS,id,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,INS,0900-1200,1234567,,,50024082,,, +21680,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,0600-0700,1234567,,,50023656,,, +21680,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024083,,, +21690,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,WAf,1200-1300,1234567,,,50013280,,, +21700,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0700,1234567,,,50024084,,, +21700,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,313,11578,41,128,FE,0300-0700,1234567,,,50022257,,, +21715,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,309,11578,41,128,,0600-0700,1234567,,,50021640,,, +21725,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,0500-0700,1234567,,,50016429,,, +21725,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,355,16373,78,148,WOc,0300-0500,1234567,,,50016429,,, +21740,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,2100-0100,1234567,,,50017135,,, +21780,UAE,ha,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,260,5075,109,84,WAf,0630-0700,1234567,,,50019189,,, +21780,UAE,ha,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,260,5075,109,84,WAf,1300-1400,1234567,,,50019189,,, +21780,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,Af,1200-1300,1234567,,,50014338,,, +21780,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,1800-1900,1234567,,,50014338,,, +21800,RUS,en,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,250,152,6080,48,94,Oc,0600-1000,1234567,,,50015812,,, +21925,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012489,,, +21925,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012474,,, +21926,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300022,,, +21934,USA,,San Francisco Aero,h,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20016253,,, +21940,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100017,,, +21946,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500016,,, +21949,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300014,,, +21949,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900017,,, +21956,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500014,,, +21964,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1200-2400,1234567,,,20012423,,, +21964,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012496,,, +21964,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012436,,, +21964,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012482,,, +21964,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900025,,, +21964,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012509,,, +21973,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500017,,, +21982,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900010,,, +21985,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012457,,, +21988,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500018,,, +21990,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700106,,, +21991,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902874,,, +21997,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500019,,, +22060,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902803,,, +22111,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902805,,, +22111,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902838,,, +22126,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902840,,, +22147,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902842,,, +22150,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902844,,, +22423.5,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,????-????,1234567,-22423.5,,37700120,,, +22456,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902802,,, +22469.4,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0800-1200,1234567,-22469.4,,6800043,,, +22498.5,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,-22498.5,,5800015,,, +22527,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1840-2215,1234567,,,20016148,,, +22527,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2320-2400,1234567,,,20016148,,, +22534.5,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0800-1200,1234567,-22534.5,,6800044,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0145-0300,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0430-0450,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0540-0800,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1100-1200,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1335-1530,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1645-2000,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,2215-2245,1234567,,,31400043,,, +22567.5,PHL,,DZO22 Manila R,p,Lucena City (qzn),13.947222,121.619444,,1,,10413,62,148,,????-????,1234567,-22567.5,,33300028,,, +22599,J,,JFC,c,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,31400053,,, +22636.3,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-22636.3,,31200012,,, +22636.3,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-22636.3,,31200012,,, +22636.3,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-22636.3,,31200012,,, +22752,AFS,,ZRK6965 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300035,,, +22768,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1200-1210,1234567,,,5300005,,, +22789,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000011,,, +22807,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902804,,, +22807,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902837,,, +22822,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902839,,, +22843,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902841,,, +22846,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902843,,, +23210,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0500-2200,1234567,,,6800052,,, +24912,S,,SK6RUD,b,Oxaback,57.8,12.866667,,0.0005,,754,30,97,,,,,GP Omni A1 24,55136,,, +24915,I,,IQ6FU,b,Fano (pu),43.85,13.033333,,0.005,,1041,149,90,,,,,Inv Vee Omni A1 24,55137,,, +24920,I,,IY4M,b,Bologna (bo),44.433333,11.366667,,0.025,,929,155,82,,,,,A1 H+30>H+60m,55138,,, +24929.5,MEX,,XE1FAS,b,Puebla (pue),19.05,-98.283333,,0.025,,9303,293,161,,,,-24929.5,A1 ?,55139,,, +24930,FIN,,OH2B,b,Lohja,60.516667,25.033333,,0.025,,1472,43,88,,,,,Vertical Omni A1 IBP cycle,55153,,, +24930,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP cycle,55154,,, +24930,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55152,,, +24930,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55141,, +24930,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 TNonOp,55147,,, +24930,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 TNonOp,55140,,, +24930,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55151,,, +24930,VEN,,YV5B,b,Caracas/Calle Norte 6,6.5,-66.5,,0.025,,8275,260,156,,,,,Vertical Omni A1 TNonOp,55157,,, +24930,CLN,,4S7B,b,Colombo,6.1,80.2,,0.025,,8369,99,157,,,,,Vertical Omni A1 IBP cycle,55149,,, +24930,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55150,,, +24930,USA,,W6WX,b,Mt Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55142,,, +24930,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55148,,, +24930,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55146,,, +24930,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP cycle,55156,,, +24930,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55155,,, +24930,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55143,, +24930,AUS,,VK6RBP,b,28km SE of Perth (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 TNonOp,55145,,, +24930,NZL,,ZL6B,b,near Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55144,,, +24931,ARS,,7Z1CQ,b,Jeddah (mkh),21.55,39.2,,0.005,,4408,128,124,,,,,Vert.Dip Omni A1 24 ?,55158,,, +24986,J,,JE7YNQ,b,Fukushima (toh-fuk),37.516667,141.033333,,0.005,,9123,35,167,,,,,Dipole A1 QRT?,55159,,, +24990,I,,I1YRB,b,Torre Bert (to),45.05,7.7,,0.0002,,791,173,102,,,,,Vertical Omni QRSS3 24,55160,,, +25000,FIN,,MIKES,,Espoo=Esbo (uu),60.189667,24.832639,,0.25,,1444,44,77,,0000-2400,1234567,,,2600002,,, +25705,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001302,,, +25760,FIN,fi,R Gramox,,Hmeenkyr (pi),61.641667,23.2,,0.02,,1463,37,89,,1000-1200,......7,,,2600007,,, +25760,FIN,fi,R Gramox,,Hmeenkyr (pi),61.641667,23.2,,0.02,,1463,37,89,NEu,0000-2400,1234567,,,2600007,,, +25765,F,,TDF,,Mendon (92),48.133333,-1.716667,,0.2,,728,236,71,,,,,,40001303,,, +25825,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001306,,, +25870,USA,en,KMP360 (WFLA),,Tampa (FL),27.892625,-82.511236,,0.065,,7528,287,144,,0000-2400,1234567,,,40001307,,, +25900,RUS,ru,R Zeleny Glazh,,Moskva (MV),55.830833,37.64,,0.4,,2065,66,82,,1200-1500,....5..,,,6700158,,, +25910,USA,,WJFP,,Fort Pierce (FL),27.45,-80.35,,0.06,,7423,285,143,,,,,,40001308,,, +25910,USA,,WQGY434 (WBAP),F,Dallas/Cedar Hill (TX),32.5775,-96.939167,,0.27,,8030,301,143,,,,,,20012404,,, +25915,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001310,,, +25950,USA,en,KPM556,,Portland (OR),45.488889,-122.694444,,0.1,,8125,325,148,,0000-2400,1234567,,,40001311,,, +25950,USA,,KOA,F,Denver (CO),39.628333,-104.911694,,0.05,,7856,310,149,,,,,,20012405,,, +25990,USA,,WQGY434 (KSCS),F,Dallas/Cedar Hill (TX),32.5775,-96.939167,,0.15,,8030,301,146,,,,,,20012403,,, +26000,G,,World R Network,d,Croydon (EN-GTL),51.409822,-0.085703,,1.7,,454,263,59,,0000-2400,1234567,,,40001313,,, +26000,I,it,R Maria,d,Andrate/Croce Serra (to),45.524444,7.891944,,0.25,,740,171,70,,0000-2400,1234567,,,4000033,,, +26000,D,,Campus R,,Dillberg (bay),49.45,11.066667,,0.08,,441,130,72,,,,,,40001312,,, +26010,I,it,R Maria,d,Andrate/Croce Serra (to),45.524444,7.891944,,0.25,,740,171,70,,0000-2400,1234567,,,4000034,,, +26012,D,,Campus R,,Nrnberg (bay),49.45,11.066667,,0.08,,441,130,72,,,,,,40001314,,, +26035,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001315,,, +26045,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001316,,, +26045,B,pt,ZYE959 Rdio Cultura,D,So Paulo (SP),-23.512461,-46.562467,,1,,9853,227,147,,0000-2400,1234567,,,36902880,,, +26050,GRC,el,Real FM 97,8,,Athnai (att-ath),38,23.75,,0.05,,2067,133,91,,,,,,3400066,, +26060,CVA,it,Raiway Tests,D,Citta del Vaticano (cva),41.901944,12.448889,,1,,1223,156,69,SEu,0000-2400,1234567,,,50014175,,, +26100,USA,,WLNK 107.9,,Charlotte (NC),35.25,-80.85,,0.05,,6822,292,138,,,,,,40001318,,, +26110,USA,en,KPK406 (WKRC/WLW),,Cincinnati (OH),39.833333,-84.716667,,0.05,,6699,298,137,,,,,,40001319,,, +26110,USA,en,KMK282 (KOVR),,Sacramento (CA),38.593333,-121.546389,,0.06,,8744,321,155,,,,,,20016228,,, +26190,USA,en,KSL,,Salt Lake City (UT),40.75,-111.883333,,0.05,,8102,316,151,,,,,,40001320,,, +26200,CAN,,CJAD,,Montral (QC),45.5,-73.566667,,0.001,,5601,296,143,,,,,,40001321,,, +26249.8,USA,,W4CJB,b,S.Rosa Beach (FL),30.716667,-86.116667,,0.025,,7525,292,148,,,,-26249.8,A1 ?,55392,,, +26250,USA,en,KPF231 (WTVN),,Columbus (OH),39.963889,-83.000278,,0.1,,6585,297,133,,,,,,40001322,,, +26350,USA,,KUSA,,Denver (CO),39.75,-105,,0.05,,7850,311,148,,,,,,40001323,,, +26400,USA,,KMGH,,Denver (CO),39.75,-105,,0.05,,7850,311,148,,,,,,40001324,,, +26430,USA,,WQGY434,,Dallas/Cedar Hill (TX),32.5775,-96.939167,,0.27,,8030,301,143,,,,,,20012515,,, +26450,USA,,WLW,,Cincinnati (OH),39.35,-84.316667,,0.075,,6713,297,135,,,,,,40001326,,, +26450,USA,,WVTV,,Tampa (FL),27.816667,-82.35,,0.05,,7524,287,145,,,,,,40001327,,, +26450,USA,,KMGH,,Denver (CO),39.75,-105,,0.05,,7850,311,148,,,,,,40001325,,, +26450,USA,,KTRK-TV,,Houston (TX),29.65,-95.266667,,0.05,,8184,297,152,,,,,,40001328,,, +26470,USA,,WJFP,,Fort Pierce (FL),27.45,-80.35,,0.05,,7423,285,144,,,,,,40001330,,, +27605,IRL,,Immaculate Conception of the BVM,,Newcastle West (LK),52.45,-9.066667,,0.01,,1052,278,87,,,,,,4100039,,, +27605,IRL,,St. Mary's Church,,Ballyheigue (KY),52.383333,-9.833333,,0.01,,1104,278,88,,,,,,4100037,,, +27611,IRL,,Church of Immaculate Conception,,Inagh (CE),52.883333,-9.183333,,0.01,,1057,281,88,,,,,,4100040,,, +27621,IRL,,Holy Trinity Abbey Church,,Adare (LK),52.566667,-8.8,,0.01,,1033,279,87,,,,,,4100038,,, +27621,IRL,,St. Cronan's Church,,Roscrea (TA),52.95,-7.8,,0.01,,964,281,87,,,,,,4100041,,, +27631,IRL,,unid,,County Cork (CO),51.966667,-8.583333,,0.01,,1024,275,87,,,,,,4100042,,, +27641,G,,unknown,,Angus (SC-ANG),56.65,-2.883333,,0.01,,784,314,85,,,,,,2800036,,, +27681,IRL,,St. Mary's Parish Church,,Lucan (D),53.366667,-6.433333,,0.01,,875,284,86,,,,,,4100043,,, +27771,IRL,,Ennis Cathedral SS Peter & Paul,,Ennis (CE),52.85,-8.983333,,0.01,,1044,281,87,,,,,,4100044,,, +27805,IRL,,unid,,County Cork (CO),51.966667,-8.583333,,0.01,,1024,275,87,,,,,,4100045,,, +27815,IRL,,St. Mary's Church,,Carrigtwohill (CO),51.9,-8.266667,,0.01,,1003,274,87,,,,,,4100046,,, +27831,IRL,,Church of Immaculate Conception,,Blarney (CO),51.933333,-8.566667,,0.01,,1023,275,87,,,,,,4100047,,, +27881,G,en,St. Luke's Church,,Dunmurry (NI-ANT),54.55,-6.016667,,0.01,,867,293,86,,,,,,2800037,,, +27911,IRL,,St. Colmcille Church,,Churchtown South (CO),51.825944,-8.079203,,0.01,,991,274,87,,,,,,4100048,,, +27951,IRL,,St. Conleth's Church,,Newbridge (KE),53.183333,-6.8,,0.01,,898,283,86,,,,,,4100049,,, +27981,IRL,,Church of Our Lady Crowned,,Upper Mayfield/Cork (CO),51.913419,-8.428186,,0.01,,1014,275,87,,,,,,4100050,,, +28110,F,,F5KCK,b,Sartrouville (78),48.933333,2.2,,0.025,,462,222,78,,,,,A1 ROBOT,55161,,, +28147.5,I,,IW0CPK,b,Roma (rm),41.883333,12.45,,0.001,,1225,156,99,,,,-28147.5,?,55162,,, +28152,I,,IW0DQJ,b,Rieti (ri),41.883333,13.7,,0.003,,1263,151,95,,,,,Dipole A1 ?,55163,,, +28161,CAN,,VE3SWS,b,Callander ON (ON),46.183333,-79.45,,0.025,,5907,300,132,,,,,A1 ?,55164,,, +28163,CAN,,VA3CBE,b,Kitchener ON (ON),43.466667,-80.45,,0.005,,6164,298,142,,,,,A1 ?,55165,,, +28166,MEX,,XE2o,b,Monterey NL,25.716667,-100.283333,,0.005,,8832,299,166,,,,,1/4 Vert Omni A1,55166,,, +28167.2,ARG,,LU3DBJ,b,Quilmes (ba),-34.716667,-58.283333,,0.003,,11510,230,177,,,,-28167.2,Vertical Omni A1 24,55167,,, +28170,CAN,,VA3XCD,b,Oshawa ON (ON),43.516667,-78.95,,0.005,,6070,298,141,,,,,OCF Dipole Omni A1 ?,55168,,, +28171,MEX,,XE1FAS,b,Puebla (pue),19.05,-98.283333,,0.012,,9303,293,164,,,,,Dipole A1 24,55169,,, +28172,CAN,,VE3KAH,b,Kah-She I. ON (ON),46.3,-79.366667,,0.025,,5893,300,132,,,,,A1 24,55170,,, +28173,I,,IZ1EPM,b,27 km NE of Torino (to),45.133333,7.866667,,0.02,,783,172,82,,,,,1/2 Vert Omni A1 24,55171,,, +28175,CAN,,VE3TEN,b,Ottawa ON (ON),45.516667,-74.95,,0.01,,5684,297,134,,,,,GP Omni A1 24,55172,,, +28176,B,,PY2RFF,b,So Pedro (SP),-22.516667,-47.95,,0.0015,,9827,229,175,,,,,1/4 Vert Omni A1 24,55173,,, +28176.9,PNR,,HP1RCP,b,Cerro Jefe,9.133333,-79.366667,,0.005,,8920,272,166,,,,-28176.9,Slope Dip A1 24,55174,,, +28178.4,I,,IG0GV,b,Sora (fr),41.716667,13.616667,,0.004,,1277,152,94,,,,-28178.4,Omni A1 24,55175,,, +28179,MEX,,XE2AT,b,Aguascalientes,21.85,-108.283333,,0.025,,9653,302,162,,,,,A1 24,55176,,, +28180.3,I,,I1M,b,Bordighera (im),43.8,7.7,,0.005,,929,174,89,,,,-28180.3,2x5/8 Vert Omni A1 30/60min,55177,,, +28182,CAN,,VY0SNO,b,Iqaluit NU (NU),63.516667,-68.95,,0.015,,4352,317,119,,,,,1/2 Hor DipNW/SE MCW 24,55178,,, +28182.4,GRC,,SV3AQR,b,Amalias,37.766667,21.366667,,0.004,,1974,138,101,,,,-28182.4,GP Omni A1 24,55179,,, +28183.2,MEX,,XE1RCS,b,Cerro Gordo,19.766667,-98.783333,,0.008,,9271,294,166,,,,-28183.2,AR10 Omni A1 24,55180,,, +28184,CAN,,VE2REA,b,Quebec QC (QC),46.8,-71.283333,,0.025,,5373,296,127,,,,,A1 24?,55181,,, +28185,CAN,,VA3SRC,b,Burlington ON (ON),43.3,-79.866667,,0.005,,6141,298,141,,,,,Dipole A1 PT,55183,,, +28185,B,,PU5ATX,b,Imbituba (SC),-28.466667,-48.95,,0.025,,10449,226,164,,,,,A1 ?,55182,,, +28187,AUS,,VK5KV,b,Woomera SA (SA),-31.183333,136.783333,,0.01,,15401,80,185,,,,,5/8 Vert Omni A1 24,55184,,, +28187.6,CAN,,VE7KC,b,Penticton BC (BC),49.466667,-119.616667,,0.025,,7627,326,149,,,,-28187.6,A1 24,55185,,, +28188,AUT,,OE3XAC,b,Kaiserkogel (nie),48.05,15.533333,,0.02,,791,121,82,,,,,7/8 GP@750mOmni A1 24,55186,,, +28188.1,J,,JE7YNQ,b,Fukushima (toh-fuk),37.516667,141.033333,,0.025,,9123,35,160,,,,-28188.1,?,55187,,, +28188.9,GRC,,SV5TEN,b,,36.433333,28.2,,0.005,,2441,127,104,,,,-28188.9,Vertical Omni 24,55188,,, +28189.5,ARG,,LU2DT,b,Mar del Plata (ba),-37.466667,-56.95,,0.005,,11693,227,176,,,,-28189.5,Vert. Dip. Omni A1/psk24,55189,,, +28190,ARG,,LU3HFA,b,Cordoba (cb),-31.35,-64.283333,,0.005,,11533,236,175,,,,,Vertical Omni A1 24,55190,,, +28190.5,CAN,,VA3ROR,b,Orillia ON (ON),44.683333,-79.616667,,0.005,,6025,299,140,,,,-28190.5,Whip Omni A1 24,55191,,, +28191.5,UAE,,A62ER,b,Sharjah,25.35,55.366667,,0.025,,5047,107,123,,,,-28191.5,A1 ?,55192,,, +28192,ARG,,LU8EML,b,Ensenada (ba),-31.85,-57.95,,0.025,,11230,231,167,,,,,A1 24,55194,,, +28192.9,CAN,,VE4ARM,b,Brandon MB (MB),49.933333,-99.366667,,0.005,,6698,314,147,,,,-28192.9,GP Omni A1 24,55193,,, +28193,ARG,,LU2ERC,b,Ensenada (ba),-34.85,-57.95,,0.01,,11505,230,172,,,,,Vertical Omni A1 24,55203,,, +28193.5,OMA,,A47RB,b,unknown,23.6,58.45,,0.01,,5397,105,131,,,,-28193.5,Vertical Omni A1 ?,55195,,, +28195.1,I,,IY4M,b,Bologna (bo),44.433333,11.366667,,0.02,,929,155,83,,,,-28195.1,5/8 GP Omni A1 H>H+30m,55196,,, +28196,CAN,,VA3ITA,b,Bramton ON (ON),43.933333,-79.783333,,0.025,,6090,298,134,,,,,A1 IRREG,55197,,, +28196.1,ARG,,LU4JJ,b,Concordia (er),-31.383333,-58.033333,,0.025,,11192,232,167,,,,-28196.1,A1 24,55198,,, +28196.7,ARG,,LU5FB,b,Rosario (sf),-32.933333,-60.7,,0.025,,11477,233,168,,,,-28196.7,A1 24,55199,,, +28197,I,,I0KNQ,b,Roma (rm),41.85,12.45,,0.002,,1228,156,96,,,,,A1 24,55202,,, +28197,CAN,,VE7MTY,b,Vancouver BC (BC),49.516667,-122.95,,0.005,,7747,328,157,,,,,Vertical Omni A1 24,55201,,, +28200,FIN,,OH2B,b,Lohja,60.516667,25.033333,,0.025,,1472,43,88,,,,,Vertical Omni A1 IBP cycle,55217,,, +28200,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP cycle,55218,,, +28200,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55216,,, +28200,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55205,, +28200,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 TNonOp,55211,,, +28200,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 TNonOp,55204,,, +28200,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55215,,, +28200,VEN,,YV5B,b,Caracas,10.433333,-66.866667,,0.025,,7954,263,153,,,,,Vertical Omni A1 TNonOp,55221,,, +28200,CLN,,4S7B,b,Colombo,6.1,80.2,,0.025,,8369,99,157,,,,,Vertical Omni A1 IBP cycle,55213,,, +28200,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55214,,, +28200,USA,,W6WX,b,Mt Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55206,,, +28200,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55212,,, +28200,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55210,,, +28200,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP cycle,55220,,, +28200,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55219,,, +28200,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55207,, +28200,AUS,,VK6RBP,b,28km SE of Perth (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 TNonOp,55209,,, +28200,NZL,,ZL6B,b,near Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55208,,, +28201,USA,,N0AMY,b,Colorado Springs (CO),38.85,-104.783333,,0.025,,7918,310,152,,,,,A1 24,55222,,, +28201.05,ARS,,7Z1CQ,b,Jeddah (mkh),21.55,39.2,,0.01,,4408,128,121,,,,-28201.05,A1 24,55223,,, +28201.3,B,,PU2SUT,b,So Paulo (SP),-23.933333,-46.366667,,0.02,,9884,227,164,,,,-28201.3,Dipole A1 ?,55224,,, +28202,USA,,WN2WNC,b,New Berlin (NY),42.6,-75.283333,,0.025,,5912,294,132,,,,,A1 ?,55225,,, +28202.5,POL,,SR4TEN,b,Suchacz-Zamek,54.266667,19.45,,0.003,,900,69,91,,,,-28202.5,A1 OP?,55227,,, +28202.5,USA,,KA3BWP,b,Stafford (VA),38.433333,-77.45,,0.025,,6358,292,137,,,,-28202.5,A1 24,55228,,, +28202.5,AFS,,ZS1J,b,Plettenberg Bay (WC),-34.766667,23.283333,,0.025,,9799,166,162,,,,-28202.5,A1 24,55226,,, +28202.7,S,,SK3GK,b,,60.633333,17.116667,,0.025,,1151,30,84,,,,-28202.7,A1 ?,55229,,, +28203,USA,,KB1QZY,b,Springfield (MA),42.1,-72.616667,,0.025,,5781,292,131,,,,,max2000 V Omni A1 24,55231,,, +28203,USA,,KG8CO,b,Clinton (MI),42.05,-83.95,,0.025,,6481,299,138,,,,,ertical Omni A1 24,55232,,, +28203,USA,,N6DXX,b,Sacramento (CA),38.516667,-121.533333,,0.025,,8751,321,159,,,,,A1 ?,55233,,, +28203,B,,PY2WFG,b,Ipisanga (SP),-22.766667,-45.533333,,0.025,,9729,227,162,,,,,A1 ?,55230,,, +28203.5,USA,,K6LLL,b,MissionViejo (CA),33.6,-117.616667,,0.025,,9045,316,160,,,,-28203.5,A1 24,55234,,, +28204,USA,,WA2NTK,b,Big Flats (NY),42.183333,-76.866667,,0.025,,6040,295,133,,,,,E-W A1 24,55235,,, +28204,ALS,,WL7N,b,Ward Cove (AK),55.433333,-131.116667,,0.025,,7435,335,147,,,,,A1 ?,55236,,, +28204,USA,,W6CF,b,San Francisco (CA),37.85,-122.283333,,0.025,,8847,321,159,,,,,A1 24,55237,,, +28205,D,,DL0IGI,b,Hohenpeissenberg (bay),47.8,11.033333,,0.025,,582,144,79,,,,,1/4 Vert Omni A1 24,55238,,, +28205.2,USA,,N3NIA,b,Nr Ridgway (PA),41.433333,-78.7,,0.004,,6209,295,143,,,,-28205.2,Dipole A1 24,55239,,, +28205.9,THA,,HS0BBD,b,Bangkok,13.516667,103.033333,,0.025,,9270,76,161,,,,-28205.9,?,55240,,, +28206.1,CAN,,VA3GRR,b,Brampton ON (ON),43.516667,-78.95,,0.0018,,6070,298,145,,,,-28206.1,1/2 Vert Omni A1 24,55241,,, +28206.3,USA,,K9EJ,b,Toledo (IL),39.266667,-88.283333,,0.002,,6958,300,153,,,,-28206.3,Vert @4m Omni A1 24,55242,,, +28206.5,PNR,,HP1RIS,b,Panama City,9.016667,-79.45,,0.003,,8936,272,169,,,,-28206.5,Vert Dip Omni A1 24,55243,,, +28207,BEL,,ON0RY,b,Binche,50.433333,4.2,,0.005,,242,220,82,,,,,Vertical Omni A1 24,55244,,, +28207.8,USA,,W4CND,b,Jemison (AL),33.016667,-86.616667,,0.002,,7366,294,158,,,,-28207.8,Vertical Omni A1 24,55245,,, +28208,USA,,AK2F,b,Randolph (NJ),40.8,-74.616667,,0.025,,6001,292,133,,,,,A1 share,55247,,, +28208,USA,,WN2A,b,Budd Lake (NJ),40.85,-74.783333,,0.025,,6008,293,133,,,,,A1 AK2F,55248,,, +28208,USA,,KE6TE,b,Elk Grove (CA),38.433333,-121.366667,,0.025,,8752,321,159,,,,,A1 OP?,55246,,, +28208.1,J,,JR0YAN,b,near Toyama,36.933333,136.783333,,0.025,,9008,38,160,,,,-28208.1,Hor.Loop A1 24+++,55249,,, +28208.2,I,,IZ3LCJ,b,Santa Lucia di Piave (tv),45.85,12.283333,,0.025,,817,146,81,,,,-28208.2,/4GP@15m Omni A1 24,55250,,, +28208.7,USA,,N8PVL,b,Livonia (MI),42.383333,-83.45,,0.025,,6425,299,137,,,,-28208.7,A1 ?,55251,,, +28209,HWA,,KH6AP,b,Kikei Maui (HI),20.766667,-156.45,,0.02,,11742,343,170,,,,,3/8 Vert Omni A1 24,55252,,, +28209.5,USA,,K9CW,b,Thomasboro (IL),40.216667,-88.116667,,0.002,,6872,300,153,,,,-28209.5,AR99@15' Omni A1 24,55253,,, +28210,MAU,,3B8MS,b,Quatre Bornes,-20.383333,57.616667,,0.007,,9460,133,167,,,,,1/2 Vert Omni A1 24,55254,,, +28210.4,USA,,NT4F,b,Wilmington (NC),34.183333,-77.95,,0.005,,6721,289,147,,,,-28210.4,A1 24,55255,,, +28211,D,,DB0FKS,b,near Frankfurt/M JN49IT (hes),50.8,8.7,,0.0002,,215,132,96,,,,,DV27 Vert Omni A1 OP?,55256,,, +28211,USA,,K5ARC,b,Galvez (LA),30.516667,-90.95,,0.02,,7845,295,152,,,,,Vertical Omni A1 24?,55257,,, +28211,CHL,,CE1TUW,b,Antofagasta,-33.3,-70.533333,,0.025,,12065,239,170,,,,,A1 ?,55258,,, +28211.1,NOR,,LA4TEN,b,near Hellvik,58.466667,5.866667,,0.25,,708,357,70,,,,-28211.1,Vertical Omni A1 24,55259,,, +28211.8,USA,,AC7GZ,b,Chandler (AZ),33.516667,-110.95,,0.025,,8722,311,159,,,,-28211.8,A1 ?,55260,,, +28212,ARS,,7Z1AL,b,Dammam (shy),26.433333,50.116667,,0.01,,4616,111,123,,,,,Vertical A1 24 ?,55261,,, +28212.5,USA,,KJ4QYB,b,RainbowCity (AL),33.6,-86.116667,,0.025,,7287,294,146,,,,-28212.5,A1 ?,55263,,, +28212.5,USA,,K0KP,b,Fredenberg (MN),46.933333,-92.2,,0.0005,,6570,308,156,,,,-28212.5,GP Omni A1 24,55262,,, +28212.6,ARG,,LU7DQP,b,Lans Oeste (ba),-34.7,-58.4,,0.025,,11515,230,168,,,,-28212.6,A1 24,55264,,, +28213.2,D,,DM0ING,b,Ingelheim (rlp),49.966667,8.033333,,0.01,,264,154,80,,,,-28213.2,GP Omni A1 24,55265,,, +28213.5,USA,,W3IK,b,Gray (TN),36.516667,-82.95,,0.025,,6853,294,142,,,,-28213.5,A1 24,55267,,, +28213.5,USA,,KE4KAA,b,Big Stone Gap (VA),36.883333,-82.783333,,0.005,,6814,294,148,,,,-28213.5,A1 24,55266,,, +28213.8,USA,,KF5KBZ,b,Austin (TX),30.05,-97.533333,,0.025,,8285,299,156,,,,-28213.8,A1 ?,55268,,, +28214,USA,,N4PAL,b,Longwood (FL),28.683333,-81.366667,,0.005,,7388,287,154,,,,,Vert@4.5m Omni A1 24?,55269,,, +28214.8,REU,,FR1GZ,b,Reunion I. (974),-20.883333,55.45,,0.025,,9402,135,161,,,,-28214.8,?,55270,,, +28215,G,,GB3RAL,b,near Didcot (EN-OXF),51.55,-1.283333,,0.025,,532,266,78,,,,,HorizDip Omni F1 24,55274,,, +28215,USA,,W4JPL,b,Liberty (NC),35.883333,-79.533333,,0.025,,6688,291,140,,,,,A1 24,55273,,, +28215,USA,,KA9SZX,b,Paxton (IL),40.133333,-88.2,,0.001,,6883,300,156,,,,,Antron99 Omni A1 24,55272,,, +28215,ARG,,LU5EGY,b,Buenos Aires (ba),-34.633333,-58.616667,,0.025,,11520,230,168,,,,,A1 24,55271,,, +28215.3,MEX,,XE3D,b,Merida (yuc),20.266667,-89.616667,,0.025,,8641,287,158,,,,-28215.3,A1 24,55275,,, +28215.5,USA,,KD5CKP,b,Olive Branch (MS),34.933333,-89.866667,,0.003,,7408,297,156,,,,-28215.5,Vertical Omni A1 24,55276,,, +28215.8,USA,,K6WKX,b,Santa Cruz (CA),36.966667,-122.033333,,0.01,,8922,321,163,,,,-28215.8,Horiz. Dip Omni A1 24,55277,,, +28216,USA,,K3FX,b,Neptune City (NJ),40.183333,-74.033333,,0.007,,6010,291,139,,,,,1/2 Vert Omni A1 24,55278,,, +28216,USA,,N7MA,b,Cataldo (ID),47.55,-116.45,,0.005,,7679,323,157,,,,,Vertical Omni A1 24,55279,,, +28217,USA,,WB0FTL,b,Alden (MN),43.633333,-93.533333,,0.005,,6906,306,149,,,,,AR10@25' Omni A1 24,55280,,, +28217,USA,,W6GY,b,Star (ID),43.633333,-116.533333,,0.025,,8047,320,153,,,,,A1 24,55281,,, +28217.5,USA,,WA1LAD,b,West Warwick (RI),41.683333,-71.533333,,0.0045,,5742,291,138,,,,-28217.5,J-Pole Omni A1 24,55282,,, +28218,I,,IQ1SP,b,Monte Verrugoli (sp),44.1,9.783333,,0.003,,925,163,91,,,,,1/2 Vert Omni A1 24,55283,,, +28218.3,USA,,AC0KC,b,Fort Lupton (CO),40.016667,-104.783333,,0.025,,7815,311,151,,,,-28218.3,A1 ?,55284,,, +28218.5,USA,,W5RDW,b,Murphy (TX),32.966667,-96.616667,,0.005,,7977,301,160,,,,-28218.5,AR10@25' Omni A1 24,55285,,, +28218.6,USA,,KA4RRU,b,Catlett (VA),38.55,-77.616667,,0.025,,6360,292,137,,,,-28218.6,A1 24,55286,,, +28218.8,USA,,KN8DMK,b,Amanda (OH),39.6,-82.783333,,0.003,,6600,296,148,,,,-28218.8,Slope Dip. NW/SE A1 ?,55287,,, +28219,I,,IW2DZX,b,SolbiateOlona (va),45.633333,8.866667,,0.0002,,742,165,101,,,,,1/2 Vert Omni ?,55288,,, +28219.6,B,,PY2UEP,b,Piraju (SP),-21.966667,-49.45,,0.025,,9852,230,162,,,,-28219.6,A1 ?,55289,,, +28219.9,USA,,KB9DJA,b,Mooresville (IN),39.6,-86.533333,,0.035,,6827,299,140,,,,-28219.9,GP Omni A1 24,55290,,, +28220,CYP,,5B4CY,b,Zygi,34.716667,33.283333,,0.026,,2877,122,102,,,,425,GP Omni F1 24,55291,,, +28220,USA,,W8VO,b,Sterling Hts (MI),42.85,-82.866667,,0.005,,6355,299,143,,,,,Vert@50' Omni A1 OP?,55292,,, +28220.4,USA,,WK4DS,b,Trenton (GA),34.85,-85.533333,,0.002,,7148,294,155,,,,-28220.4,Dipole NE-SW A1 24,55293,,, +28220.5,TUR,,YM7KK,b,Giresun,40.883333,38.7,,0.004,,2738,104,108,,,,560,A1 24,55294,,, +28221,DNK,,OZ7IGY,b,Jystrup,55.516667,11.866667,,0.016,,521,41,80,,,,,Halo Omni F1a 24,55295,,, +28221.5,USA,,KC0TKS,b,Sedalia (MO),38.683333,-93.283333,,0.005,,7298,302,153,,,,-28221.5,J-poleVert Omni A1 24,55296,,, +28222,F,,TP2CE,b,Strasbourg (67),48.6,7.783333,,0.025,,402,165,77,,,,,GP R-7000 Omni A1 24,55297,,, +28222,GRC,,SV2MCG/B,b,Litochoro (the),40.1,22.45,,0.025,,1812,131,91,,,,75,KN10FC,3400068,,, +28222,I,,IZ0KBA,b,Castel Madama (rm),41.966667,12.866667,,0.001,,1228,154,99,,,,,GP 350m aslOmni A1 24,55299,,, +28222,USA,,K6JCA,b,Carmel Valley (CA),36.516667,-120.95,,0.025,,8919,320,159,,,,,A1 24,55298,,, +28222.8,USA,,N4QDK,b,Sauratown Mt (NC),35.516667,-80.95,,0.003,,6807,292,150,,,,-28222.8,dipole A1 24,55300,,, +28223,UKR,,UR3OMP,b,,47.85,34.866667,,0.025,,2075,92,94,,,,,?,55302,,, +28223,MLT,,9H1LO,b,Sliema JM75GV,35.916667,14.5,,0.008,,1910,157,97,,,,,GP A1 ?,55303,,, +28223,USA,,WY5B,b,Biloxi (MS),30.433333,-88.866667,,0.025,,7722,294,150,,,,,A1 24,55301,,, +28223,PTR,,KP3FT,b,Ponce (PR),18.516667,-66.95,,0.004,,7264,269,154,,,,,Vertical Omni A1 24,55304,,, +28223.3,MEX,,XE3ACB,b,Hecelchakan,20.516667,-90.95,,0.025,,8706,288,159,,,,-28223.3,A1,55305,,, +28224,F,,F5SN,b,Dole (39),47.05,5.45,,0.005,,567,187,86,,,,,3-el Yagi 240 F3 ?,55307,,, +28224,USA,,WD0AKX,b,Albert Lea (MN),43.516667,-92.95,,0.005,,6883,306,149,,,,,Ve rtical OMNI A1 24,55306,,, +28224.2,INS,,YB9BWN,b,Denpasar, Bali,3.433333,102.45,,0.002,,10117,83,174,,,,-28224.2,Dipole EU/VK A1 24,55308,, +28224.7,HNG,,HA5BHA,b,near Budapest (Pes),47.6,18.866667,,0.005,,1022,114,90,,,,-28224.7,Omni 24,55309,,, +28224.8,USA,,KW7Y,b,Marysville (WA),48.133333,-122.45,,0.004,,7861,327,160,,,,-28224.8,Vertical Omni A1 24,55310,,, +28225,POR,,CS5BTEN,b,Cacem, Sintra,38.766667,-9.283333,,0.01,,1915,225,96,,,,,Vertical Omni A1 24,55311,, +28225,TUR,,YM7TEN,b,,41.05,39.45,,0.001,,2777,103,115,,,,,Vertical Omni A1 24,55312,,, +28225,USA,,K5GJR,b,CorpusChristi (TX),27.716667,-97.366667,,0.025,,8479,298,158,,,,,A1 24,55314,,, +28225,USA,,K6FRC,b,Angels Common (CA),37.633333,-121.45,,0.025,,8833,321,159,,,,,Vertical Omni A1 24,55313,,, +28225.1,I,,IT9EJW,b,Catania (ct),37.55,15.116667,,0.003,,1756,154,100,,,,-28225.1,24,55315,,, +28225.5,USA,,W2DLL,b,Nr Buffalo (NY),42.633333,-78.7,,0.008,,6120,297,139,,,,-28225.5,1/2 Vert. Omni A1 24,55316,,, +28225.6,USA,,WB0LYV,b,Beatrice (NE),40.516667,-96.95,,0.025,,7352,306,146,,,,-28225.6,A1,55317,,, +28225.7,I,,IW1EGO,b,near Orbassano (to),45.016667,7.533333,,0.025,,793,174,81,,,,-28225.7,A1 ?,55318,,, +28226,E,,ED1YCA,b,IN73AL (AST-O),43.466667,-5.95,,0.01,,1329,229,90,,,,,5/b V 3dBd Omni A1 24 A1 TEST,55319,,, +28226,B,,PU4CBX,b,Baro de Cocais (MG),-19.933333,-43.7,,0.025,,9362,226,161,,,,,A1 ?,55320,,, +28226.2,USA,,WA6HXW,b,WestnCovina (CA),34.05,-117.95,,0.025,,9018,316,160,,,,-28226.2,A1 irreg,55321,,, +28226.5,USA,,N7MSH,b,North Powder (OR),45.516667,-116.95,,0.025,,7889,322,152,,,,-28226.5,A1 24,55322,,, +28226.6,USA,,KC6WGN,b,Las Vegas (NV),36.133333,-115.033333,,0.01,,8682,315,163,,,,-28226.6,Omni A1 24,55323,,, +28226.7,USA,,KU4A,b,Lexngton (KY),38.05,-84.45,,0.025,,6824,296,141,,,,-28226.7,A1,55324,,, +28227.5,USA,,KC5MO,b,Austin (TX),30.216667,-97.866667,,0.002,,8290,300,167,,,,-28227.5,Dipole A1 24,55325,,, +28227.7,I,,IW3FZQ,b,Monselice (pd),45.216667,11.783333,,0.005,,862,151,89,,,,-28227.7,J-Pole@20m Omni A1 24,55326,,, +28228,NZL,,ZL3TEN,b,Rolliston,-43.466667,173.033333,,0.02,,18633,51,192,,,,,1/2 Vert Omni A1 24,55327,,, +28228.3,GTM,,TG9TEN,b,,14.516667,-90.95,,0.025,,9231,285,160,,,,-28228.3,A1,55328,,, +28229,NZL,,ZL2MHF,b,near Wellington,-41.133333,175.116667,,0.01,,18524,40,195,,,,,1/2 Vert Omni F1 24,55329,,, +28229.3,USA,,KA2LIM,b,Pine Valley (NY),42.633333,-76.866667,,0.025,,6007,295,133,,,,-28229.3,A1 ?,55330,,, +28230,I,,IQ8CZ,b,Catanzaro (cz),38.883333,16.616667,,0.01,,1668,148,94,,,,110,GP Omni A1 24,55331,,, +28230,FIN,,OH5SHF,b,Kouvola,60.883333,26.616667,,0.006,,1567,44,95,,,,,H Dipole 20/200 F1 24,55332,,, +28230,USA,,KQ4TG,b,Leland (NC),30.216667,-70.033333,,0.025,,6512,280,138,,,,,A1 24,55335,,, +28230,USA,,WA4ZKO,b,Dry Ridge (KY),38.633333,-84.7,,0.004,,6793,297,149,,,,,A99 Omni A1 24,55333,,, +28230,USA,,KI4AED,b,Ocoee (FL),28.55,-81.533333,,0.005,,7410,287,154,,,,,Antron 99 Omni A1 24,55334,,, +28230.5,PNR,,HP6RCP,b,Santiago,8.05,-80.95,,0.003,,9122,273,169,,,,-28230.5,AR99 Omni A1 24,55336,,, +28231,F,,F5ZEH,b,IN88VA (35),48.016667,-2.2,,0.0005,,764,237,98,,,,,1/2V,3-elY A1 24,55337,, +28231.6,GRC,,SV2AHT,b,Hortiatis,40.6,23.116667,,0.025,,1803,129,91,,,,-28231.6,A1 24,55338,,, +28231.8,USA,,WA4FC,b,Prince George (VA),37.133333,-77.366667,,0.005,,6453,291,144,,,,-28231.8,Ringo@200' Omni A1 24,55339,,, +28232,USA,,N1FSX,b,Simla (CO),39.1,-103.95,,0.005,,7852,310,158,,,,,Vertical Omni A1 24,55340,,, +28232.6,USA,,N9BPE,b,Tuscaloosa (IL),39.8,-88.283333,,0.002,,6915,300,153,,,,-28232.6,1/2Dip@20' Omni A1 24,55341,,, +28232.7,USA,,N2MH,b,West Orange (NJ),40.8,-74.283333,,0.025,,5980,292,133,,,,-28232.7,A1 24,55342,,, +28233,I,,I0KNQ,b,Genzano di Roma (rm),41.85,12.45,,0.002,,1228,156,96,,,,,Turnstile Omni A1 24,55344,,, +28233,USA,,N2UHC,b,St Paul (KS),37.516667,-95.2,,0.004,,7506,303,156,,,,,Vert Dip Omni A1 24,55343,,, +28234,USA,,K4DP,b,Covington (VA),37.716667,-79.95,,0.025,,6571,293,139,,,,,A1 IRREG,55345,,, +28234.3,USA,,W5BUB,b,Cedarville (AR),35.516667,-94.95,,0.025,,7661,301,150,,,,-28234.3,A1,55376,,, +28234.8,CAN,,VE1CBZ,b,KeswickRidge NB (NB),45.516667,-66.95,,0.002,,5189,293,136,,,,-28234.8,A99 Vert Omni A1 24,55346,,, +28235,PTR,,NP4LW,b,San Sebastian,18.35,-66.95,,0.015,,7278,269,148,,,,,Vertical A1 ?,55348,,, +28235,USA,,KI4AED,b,Ocoee (FL),28.55,-81.533333,,0.005,,7410,287,154,,,,,Antron 99 Omni A1 24,55347,,, +28235,USA,,KQ4FM,b,Southlake (TX),32.933333,-97.2,,0.005,,8014,301,160,,,,,GP A1 24,55349,,, +28235.1,USA,,KI4HOZ,b,Pickens (SC),33.516667,-82.033333,,0.025,,7036,291,143,,,,-28235.1,A1,55350,,, +28235.6,CAN,,VE3GOP,b,Mississauga ON (ON),43.133333,-79.45,,0.0002,,6129,297,155,,,,-28235.6,A99 Vert Omni A1 24,55351,,, +28236,USA,,W8YT,b,Martinsburg (WV),39.383333,-77.95,,0.005,,6317,293,143,,,,,Vertical Omni A1 24,55352,,, +28236.5,USA,,W0KIZ,b,Nr Denver (CO),39.516667,-104.95,,0.005,,7868,310,159,,,,-28236.5,Vertical Omni A1 24,55353,,, +28237.6,NOR,,LA5TEN,b,near Oslo,59.633333,10.783333,,0.015,,879,16,84,,,,-28237.6,1/2 Vert Omni A1 24,55354,,, +28237.8,USA,,K7ZSA,b,Alger (WA),48.6,-122.283333,,0.005,,7810,327,158,,,,-28237.8,Vertical Omni A1 24?,55355,,, +28238,USA,,KB2SEO,b,Eton (GA),34.8,-84.783333,,0.005,,7106,294,151,,,,,1/4 GP Omni A1 24,55356,,, +28239,B,,PP6AJM,b,Nossa Senhora do Socorro (SE),-10.85,-37.033333,,0.025,,8137,225,154,,,,,?,55358,,, +28239,CAN,,VA7PL,b,Kelowna/Crystal Mountain (BC),49.516667,-118.95,,0.005,,7596,325,156,,,,,GP Omni A1 24,55357,,, +28239.2,ALS,,AL7FS,b,Anchorage (AK),61.133333,-149.866667,,0.003,,7248,348,155,,,,-28239.2,1/2 Vert Omni A1 PT,55359,,, +28239.5,USA,,WA3HGT,b,Montoursville (PA),41.266667,-76.95,,0.025,,6113,294,134,,,,-28239.5,,55360,,, +28239.7,USA,,AB5WG,b,Bulverde (TX),32.516667,-96.95,,0.004,,8036,301,161,,,,-28239.7,Omni A1 24,55361,,, +28239.8,I,,IZ8RVA,b,Agropoli (sa),40.35,14.95,,0.025,,1461,150,88,,,,-28239.8,A1 ?,55363,,, +28239.8,USA,,N4LEM,b,Cocoa (FL),28.516667,-80.95,,0.05,,7374,287,144,,,,-28239.8,Vertical Omni A1 ?,55362,,, +28240,I,,I0KNQ,b,Roma (rm),41.85,12.45,,0.025,,1228,156,85,,,,,A1 24,55364,,, +28240,MEX,,XE3OAX,b,Ocotlan, OAX,17.016667,-96.7,,0.025,,9384,291,161,,,,,+ sev.spurii A1 24,55365,, +28240.11,USA,,WE6Z,b,Granite Bay (CA),38.766667,-121.2,,0.004,,8712,321,167,,,,-28240.11,Vertical Omni A1 24,55366,,, +28240.5,USA,,N2DWS,b,PortRepublic (NJ),39.516667,-74.45,,0.025,,6086,291,134,,,,-28240.5,A1 24,55367,,, +28240.6,ROU,,YO2X,b,Timisoara,45.766667,21.283333,,0.002,,1291,117,97,,,,-28240.6,GP Omni A1 09-15UT,55369,,, +28240.6,USA,,W4RKC,b,Winchester (VA),39.183333,-78.116667,,0.005,,6343,293,143,,,,-28240.6,A1 ?,55368,,, +28240.7,USA,,AJ8T,b,Sturgis (MI),41.766667,-85.366667,,0.025,,6587,300,139,,,,-28240.7,A1 24,55370,,, +28241.5,F,,F5ZUU,b,Malataverne (26),44.466667,4.7,,0.005,,859,189,89,,,,-28241.5,1/2 Vert Omni A1 24,55371,,, +28241.5,USA,,K5DZE,b,Erlanger (KY),38.766667,-84.616667,,0.005,,6777,297,148,,,,-28241.5,A1 24,55372,,, +28242,I,,IZ8DXB,b,Napoli (na),40.55,14.95,,0.006,,1441,150,94,,,,,A1 ?,55373,,, +28242.5,USA,,WD9CVP,b,Elgin (IL),42.016667,-88.283333,,0.025,,6738,302,140,,,,-28242.5,A1 24,55374,,, +28242.7,F,,F5ZWE,b,Foix (09),42.933333,1.616667,,0.015,,1081,201,86,,,,-28242.7,Vert Dip Omni A1 24,55375,,, +28244,USA,,WA6APQ,b,Long Beach (CA),33.516667,-116.95,,0.03,,9021,315,159,,,,,Vertical Omni A1 24,55377,,, +28244.8,I,,IT9DTV,b,Messina (me),38.133333,15.533333,,0.008,,1708,152,95,,,,-28244.8,GP Omni A1 24,55378,,, +28245,D,,DB0TEN,b,Bomlitz (nds),52.933333,9.616667,,0.002,,235,66,86,,,,,1/2 GP Omni A1 24,55380,,, +28245,USA,,N8RT,b,Blairsville (GA),34.516667,-82.95,,0.04,,7013,292,141,,,,,Ringo Omni A1 24,55379,,, +28245.6,GRC,,SV2AHT,b,,40.6,23.116667,,0.025,,1803,129,91,,,,-28245.6,?,55381,,, +28245.8,B,,PP6AJM,b,Nossa Senhora do Socorro (SE),-10.85,-37.033333,,0.01,,8137,225,158,,,,-28245.8,Dipole A1 24,55382,,, +28246,CAN,,VE9BEA,b,Crabbe Mntn NB (NB),46.516667,-66.95,,0.006,,5124,294,130,,,,,AR10@43' Omni A1 24,55383,,, +28246,USA,,KG2GL,b,Nutley (NJ),40.8,-74.283333,,0.005,,5980,292,140,,,,,R5Vert @40'Omni A1 INT,55384,,, +28246.2,USA,,KI4LEV,b,Clarksville (TN),36.516667,-86.95,,0.005,,7100,297,151,,,,-28246.2,A1 ?,55385,,, +28247.9,USA,,N1ME,b,Bangor (ME),44.766667,-68.7,,0.005,,5349,293,133,,,,-28247.9,A1 24,55386,,, +28248.5,USA,,K5DDJ,b,San Antonio (TX),29.516667,-98.95,,0.0005,,8416,300,174,,,,-28248.5,GP Omni A1 24,55387,,, +28249,USA,,KA3JOE,b,Bensalem (PA),49.05,-74.95,,0.025,,5445,301,127,,,,,A1 ?,55389,,, +28249,USA,,N7LT,b,Bozeman (MT),45.683333,-111.033333,,0.004,,7614,318,157,,,,,1/2 GP Omni A1 24,55388,,, +28249.1,MDA,,ER1TEN,b,Chisinau,47.05,28.7,,0.005,,1695,101,97,,,,-28249.1,Vertical Omni A1 ?,55390,,, +28249.5,B,,PY3PSI,b,Porto Alegre (RS),-30.016667,-51.116667,,0.0028,,10705,227,175,,,,-28249.5,GP Omni A1 IRREG,55391,,, +28249.9,USA,,W3ATV,b,Trevose (PA),40.516667,-74.95,,0.001,,6043,292,147,,,,-28249.9,Dipole A1 24,55393,,, +28250,USA,,K1GND,b,Johnston (RI),41.8,-71.533333,,0.025,,5734,291,130,,,,,A1,55394,,, +28250,USA,,WB4WOR,b,Greensboro (NC),36.8,-79.866667,,0.02,,6637,292,140,,,,,2/.02 Hor A1 SYNCH)n,55398,,, +28250,USA,,N4ESS,b,Zephyrhills (FL),28.266667,-82.2,,0.025,,7477,287,148,,,,,A1 SYNCH)n,55397,,, +28250,USA,,N4ES,b,Clearwater (FL),28.016667,-82.7,,0.02,,7530,287,149,,,,,2/.02 Horiz A1 SYNCH)n,55400,,, +28250,USA,,N4ES,b,Tampa (FL),28.016667,-82.366667,,0.02,,7508,287,149,,,,,2/.02 Horiz A1 SYNCH)n,55396,,, +28250,USA,,K0HTF,b,Des Moines (IA),41.6,-93.7,,0.003,,7081,305,153,,,,,Inv.V@10' A1 24?,55402,,, +28250,USA,,K7EK,b,Graham (WA),47.05,-122.366667,,0.025,,7962,326,153,,,,,1/2 Vert Omni A1 SYNCH)n,55399,,, +28250,USA,,K6FRC,b,SutterButtes (CA),37.633333,-121.45,,0.01,,8833,321,163,,,,,Vertical Omni A1 24,55401,,, +28250,USA,,K8NDB,b,Somerton (AZ),32.683333,-114.616667,,0.004,,8986,313,168,,,,,1/4 Vert Omni A1 24,55395,,, +28250.1,ZWE,,Z21ANB,b,Bulawayo,-20.466667,29.033333,,0.008,,8364,158,162,,,,-28250.1,GP Omni F1 TNonOp,55403,,, +28251,USA,,N5ZTW,b,Dripping Springs (TX),30.216667,-98.2,,0.025,,8310,300,156,,,,,A1 24?,55404,,, +28251.15,USA,,WA4GEH,b,Clayton (NC),35.933333,-78.366667,,0.025,,6610,291,139,,,,-28251.15,A1 24,55405,,, +28251.3,E,,ED4YAK,b,Coslada (MAD-M),40.433333,-3.533333,,0.005,,1503,214,95,,,,-28251.3,Vertical Omni A1 ?,55406,,, +28252,USA,,KX5TX,b,Whitney (TX),31.966667,-97.366667,,0.025,,8108,300,154,,,,,A1,55407,,, +28252.5,USA,,W6PC/4,b,Ocala (FL),29.133333,-82.2,,0.01,,7405,288,151,,,,-28252.5,Dipole Omni A1 24,55408,,, +28253,USA,,K8HWW,b,Warren (MI),42.55,-82.95,,0.003,,6383,299,146,,,,,A1 24?,55410,,, +28253,USA,,KG4YUV,b,Crandall (GA),34.933333,-84.783333,,0.007,,7095,294,149,,,,,A99 Vert Omni A1 24,55409,,, +28253.8,MEX,,XE1USG,b,Puebla (pue),19.05,-98.2,,0.025,,9298,293,161,,,,-28253.8,A1 ?,55411,,, +28254.3,USA,,N1FCU,b,Windham (ME),43.8,-70.45,,0.025,,5525,293,128,,,,-28254.3,A1 24?,55412,,, +28254.5,USA,,K4JEE,b,Louisville (KY),38.133333,-84.533333,,0.025,,6822,296,141,,,,-28254.5,A1 ?,55413,,, +28255,USA,,N0AR,b,St Paul (MN),33.933333,-84.45,,0.0005,,7155,293,161,,,,,1/2 Vert Omni A1 24?,55414,,, +28255.5,USA,,K8HWW,b,Sterling Heights (MI),42.55,-82.95,,0.025,,6383,299,137,,,,-28255.5,ical Omni A1 24,55415,,, +28256,AND,,C30P,b,Andorra (adr),42.516667,1.533333,,0.01,,1128,201,88,,,,,R5 Vert@2m Omni A1 24,55416,,, +28256.5,USA,,K9JHQ,b,O'Fallon (IL),38.516667,-89.95,,0.01,,7117,300,148,,,,-28256.5,Vertical Omni A1 24?,55418,,, +28256.5,AUS,,VK3RMH,b,25km NE of Melbourne (VIC),-37.683333,145.2,,0.02,,16457,80,185,,,,-28256.5,1/2 Vert Omni A1 24,55417,,, +28257,USA,,KB4UPI,b,Bessemer (AL),33.266667,-86.95,,0.025,,7366,294,147,,,,,A1 24,55419,,, +28257.5,USA,,N5WYN,b,Seven Points (TX),32.35,-96.2,,0.025,,8006,300,153,,,,-28257.5,A1,55420,,, +28257.8,USA,,WY5I,b,Port St Kucie (FL),27.216667,-80.366667,,0.005,,7444,285,154,,,,-28257.8,7db Coll. Omni A1 07-2200LT,55421,,, +28258,E,,EA7JNC,b,La Lnea de la Concepcin (AND-CA),36.183333,-5.283333,,0.025,,1996,212,93,,,,,UC,55422,,, +28258,USA,,NM5TW,b,Albuquerque (NM),35.133333,-106.533333,,0.005,,8343,309,163,,,,,Vert Dip Omni A1 24,55423,,, +28259,F,,F5ZVM,b,Valenciennes (59),50.016667,3.283333,,0.005,,319,224,83,,,,,3dbi Vert Omni A1 24,55427,,, +28259,USA,,AB8CL,b,Arcanum (OH),49.016667,-84.533333,,0.025,,5994,306,133,,,,,A1 ?,55425,,, +28259,USA,,K5TLL,b,Hattiesburg (MS),31.266667,-89.45,,0.025,,7689,295,150,,,,,A1 ?,55424,,, +28259,USA,,AA4AN,b,Brentwood (TN),35.933333,-86.866667,,0.004,,7142,296,152,,,,,Vertical Omni A1 24,55426,,, +28259.3,AUS,,VK5W1,b,Adelaide (SA),-34.716667,138.616667,,0.01,,15796,82,186,,,,-28259.3,GP Omni A1 24,55428,,, +28260,USA,,AD5KO,b,Mena (AR),34.766667,-94.2,,0.02,,7681,300,151,,,,,Vert@20' Omni A1 24,55429,,, +28260.8,USA,,NJ3T,b,Somerset (PA),39.966667,-79.033333,,0.025,,6340,294,136,,,,-28260.8,A1 24?,55430,,, +28260.8,USA,,W5TXR,b,Schertz (TX),29.633333,-98.2,,0.025,,8361,300,157,,,,-28260.8,A1 ?,55431,,, +28261,USA,,N7LF,b,Corbett (OR),45.35,-122.2,,0.025,,8119,325,154,,,,,A1 24,55432,,, +28261.5,USA,,N4VBV,b,Sumter (SC),33.933333,-80.366667,,0.005,,6896,290,149,,,,-28261.5,Attic Dip A1 24,55433,,, +28261.6,RUS,,RK3XWA,b,Kaluga,54.516667,36.283333,,0.025,,1987,70,93,,,,-28261.6,24,55434,,, +28261.8,AUS,,VK2RSY,b,Sydney (NSW),-33.683333,151.033333,,0.025,,16534,68,185,,,,-28261.8,1/2 Vert Omni A1 24,55435,,, +28262.3,USA,,K8TK,b,Clarklake (MI),42.1,-84.366667,,0.002,,6502,299,149,,,,-28262.3,GP@15' Omni A1 24,55436,,, +28262.5,USA,,WF4HAM,b,Altamonte (FL),25.633333,-81.366667,,0.006,,7642,285,156,,,,-28262.5,A99@40' Omni A1 INT,55437,,, +28262.5,B,,PT9BCN,b,Campo Grande (MS),-20.433333,-54.533333,,0.001,,9982,235,177,,,,-28262.5,Vertical Omni A1 24,55438,,, +28263,E,,EA4YBA,b,Cuenca (CAM-CU),40.1,-2.116667,,0.005,,1486,209,95,,,,,GP Omni A1 24,55440,,, +28263,AUS,,VK3RRU,b,Mildura (VIC),-34.183333,142.033333,,0.02,,15985,78,184,,,,,A1 ?,55439,,, +28263.5,USA,,W4JPL,b,Liberty (NC),35.933333,-79.616667,,0.004,,6689,291,148,,,,-28263.5,A1 24,55442,,, +28263.5,USA,,N5YEY,b,Kilgore (TX),32.383333,-94.783333,,0.025,,7919,299,152,,,,-28263.5,A1 24,55441,,, +28264,USA,,AB8Z,b,Parma (OH),41.383333,-81.7,,0.005,,6397,297,144,,,,,5/8 Vert Omni A1 24,55443,,, +28264,AUS,,VK6RWA,b,Carine WA (WA),-31.933333,115.866667,,0.02,,14036,97,177,,,,,5/8 Vert Omni A1 24,55444,,, +28264.5,USA,,W5ZA,b,Shreveport (LA),32.383333,-93.7,,0.003,,7854,298,161,,,,-28264.5,Vert Dip Omni A1 24,55446,,, +28264.5,USA,,K7NWS,b,Kent (WA),47.433333,-122.366667,,0.001,,7925,326,166,,,,-28264.5,GP Omni A1 24,55445,,, +28265,D,,DF0ANN,b,Moritzberg (bay),49.466667,11.283333,,0.025,,451,129,77,,,,,ipole E-W A1 24,55447,,, +28265,USA,,NC4SW,b,Zebulon (NC),35.516667,-78.95,,0.025,,6680,291,140,,,,,A1 24,55450,,, +28265,USA,,N7SCQ,b,Dixon (CA),38.433333,-121.783333,,0.025,,8770,321,159,,,,,A1 24,55451,,, +28265,B,,PT9BCN,b,Campo Grande (MS),-20.433333,-54.533333,,0.012,,9982,235,166,,,,,1/2 Dipole A1 ?,55448,,, +28265.4,USA,,KR4HO,b,Lake City (FL),30.266667,-82.616667,,0.001,,7339,289,160,,,,-28265.4,Vertical Omni A1 ?,55449,,, +28266.5,USA,,KA1EKS,b,Millinocket (ME),45.6,-68.783333,,0.004,,5298,294,134,,,,-28266.5,A99 GP Omni A1 24,55452,,, +28266.5,USA,,W5DJT,b,Pocola (OK),35.3,-94.45,,0.025,,7650,301,149,,,,-28266.5,A1 24,55453,,, +28266.6,USA,,WN5KNY,b,RadiumSprings (NM),32.633333,-107.033333,,0.025,,8596,308,158,,,,-28266.6,A1 24,55454,,, +28267,AUS,,VK7RAE,b,TAS (TAS),-41.183333,146.283333,,0.01,,16770,84,189,,,,,Vartical Omni A1 24,55455,,, +28267.5,USA,,W5EFR,b,Houston (TX),29.933333,-95.616667,,0.0028,,8180,298,164,,,,-28267.5,A1 TQRT,55456,,, +28267.6,FIN,,OH9TEN,b,Pirttikoski,66.35,27.2,,0.02,,1956,28,93,,,,-28267.6,1/2 GP Omni A1 24,55457,,, +28268,USA,,NM0R,b,St Genevieve (MO),37.883333,-90.283333,,0.025,,7189,300,145,,,,,A1,55459,,, +28268,USA,,KB0QZ,b,Centralia (MO),39.183333,-92.116667,,0.005,,7190,302,152,,,,,Vertical Omni A1 24,55458,,, +28268.3,AUS,,VK8VF,b,Darwin NT (NT),-12.35,130.866667,,0.025,,13404,69,174,,,,-28268.3,1/4 Vert Omni A1 24,55460,,, +28268.5,USA,,KG4GXS,b,CoralSprings (FL),26.266667,-80.283333,,0.003,,7517,284,157,,,,-28268.5,Dip@23' E-W A1 24,55461,,, +28268.6,USA,,K7ZS,b,Hillsboro (OR),45.516667,-122.95,,0.025,,8132,326,154,,,,-28268.6,A1 24,55462,,, +28268.9,USA,,AA1TT,b,Claremont (NH),43.516667,-72.95,,0.005,,5701,294,137,,,,-28268.9,A1 24,55463,,, +28269.5,USA,,W3HH,b,Nr Ocala (FL),29.05,-82.2,,0.006,,7412,288,153,,,,-28269.5,Hamstick Omni A1 24,55464,,, +28270,AUS,,VK4RTL,b,Townsville (QLD),-19.216667,146.783333,,0.005,,15005,58,186,,,,,Vertical Omni F1 24,55465,,, +28271,GRC,,SV2HQL,b,Katakali-Grevena KM09UV,38.4,24.65,,0.025,,2077,130,94,,,,,5/8 GP Omni A1 24,55466,,, +28271.7,USA,,W4TIY,b,Dallas (GA),33.933333,-84.783333,,0.004,,7176,293,153,,,,-28271.7,1/4over5/8 Omni A1 24,55468,,, +28271.9,USA,,AC0RR,b,Springfield (MO),37.183333,-93.283333,,0.025,,7423,301,147,,,,-28271.9,A1 ?,55469,,, +28272,B,,PY1RJ,b,So Gonalo (RJ),-22.8,-42.95,,0.004,,9606,225,170,,,,,A1 24,55470,,, +28272.3,USA,,N1KON,b,Centerville (IN),39.8,-85.033333,,0.005,,6721,298,147,,,,-28272.3,Vertical Omni A1 24,55467,,, +28272.5,USA,,K5BTV,b,Cumming (GA),34.516667,-84.95,,0.00025,,7139,294,164,,,,-28272.5,HF6V Vert Omni A1 24,55471,,, +28273,USA,,AC4DJ,b,Eustis (FL),28.85,-81.616667,,0.02,,7390,287,148,,,,,Ringo Omni A1 24,55473,,, +28273,B,,PY4MAB,b,Poos de Caldas (MG),-21.8,-46.533333,,0.002,,9685,228,173,,,,,Dipole A1 24,55472,,, +28274,USA,,WI4L,b,Dalton (GA),34.683333,-84.866667,,0.025,,7120,294,144,,,,,A1 24,55475,,, +28274,ARG,,LW1DZ,b,Escobar (ba),-34.3,-58.783333,,0.01,,11498,230,172,,,,,Loop A1 24,55474,,, +28274.7,USA,,N0UD,b,Halliday (ND),47.3,-102.45,,0.025,,7067,314,144,,,,-28274.7,A1 24,55476,,, +28275,USA,,KG4GVV,b,Summerville (SC),33.516667,-80.95,,0.025,,6967,290,143,,,,,Vertical Omni A1 24,55479,,, +28275,VIR,,NP2SH,b,St John (stj),18.35,-64.783333,,0.025,,7131,267,144,,,,,A1 ?,55478,,, +28275,B,,PY2EMG,b,Jacarel (SP),-23.3,-45.95,,0.025,,9802,227,162,,,,,A1 ?,55477,,, +28276,USA,,K4FUM,b,Stone Mntn (GA),33.85,-84.116667,,0.025,,7141,293,144,,,,,A1 SYNCHx,55481,,, +28276,USA,,K4UKB,b,Danville (KY),37.633333,-84.866667,,0.01,,6883,296,146,,,,,5/8 Vert Omni A1 SYNCHx,55480,,, +28276.5,MEX,,XE2YBG,b,Victoria Tamau.,23.516667,-98.95,,0.025,,8947,296,159,,,,-28276.5,A1 ?,55482,,, +28277,USA,,WD8AQS,b,Fremont (MI),43.466667,-85.95,,0.025,,6490,302,138,,,,,A1 24,55485,,, +28277,USA,,WI4L,b,Dalton (GA),34.766667,-84.95,,0.025,,7119,294,144,,,,,A1 24,55484,,, +28277,USA,,WB7RBN,b,Pasco (WA),46.266667,-119.283333,,0.025,,7915,324,152,,,,,A1 24,55483,,, +28277.3,USA,,KD4MZM,b,Sarasota (FL),27.266667,-82.533333,,0.003,,7582,287,158,,,,-28277.3,Ringo@15' Omni A1 24,55486,,, +28277.6,D,,DM0AAB,b,Kiel (shs),54.3,10.533333,,0.01,,367,47,81,,,,-28277.6,GP Omni F1 24,55487,,, +28278,USA,,WA4OTD,b,Carmel (IN),39.516667,-86.95,,0.005,,6858,299,149,,,,,Indoor Dip A1 24,55488,,, +28279,D,,DB0UM,b,Schwedt (brb),53.183333,14.2,,0.002,,539,74,89,,,,,SlopeDipV Omni A1 24,55489,,, +28280,USA,,KA3NXN,b,Charlottesville (VA),38.016667,-78.45,,0.025,,6453,292,138,,,,,A1 24,55490,,, +28280,USA,,K5AB,b,Goldthwaite (TX),30.3,-97.7,,0.02,,8273,300,157,,,,,5/8 GP@45' Omni A1 24,55491,,, +28280,USA,,N6SPP,b,Concord (CA),37.516667,-120.95,,0.01,,8822,320,163,,,,,Vert Dip Omni A1 24,55493,,, +28280,B,,PU5AAD,b,Nova Braslia (RS),-28.216667,-48.7,,0.01,,10413,226,168,,,,,A1 24,55492,,, +28280.5,USA,,WB6FYR,b,Quartz Hill (CA),34.633333,-118.2,,0.01,,8974,317,164,,,,-28280.5,5/8 Vert Omni A1 24,55494,,, +28281,USA,,W8EH,b,Middletown (OH),39.466667,-84.366667,,0.0075,,6707,297,145,,,,,Vert@40' Omni A1 24,55495,,, +28281.2,I,,IK6ZEW,b,Pescara (pe),42.433333,15.2,,0.025,,1262,145,86,,,,-28281.2,A1 24?,55496,,, +28281.5,USA,,W4HEW,b,Millegeville (GA),34.966667,-81.033333,,0.025,,6856,292,142,,,,-28281.5,A1 24,55497,,, +28282,NOR,,LA6TEN,b,Kirkenes,69.683333,29.95,,0.01,,2299,23,100,,,,,Omni A1 OP?,55498,,, +28282,MEX,,XE2ES,b,Mexicali,32.633333,-114.533333,,0.025,,8986,313,160,,,,,A1 24,55499,,, +28282.4,USA,,KD0GZJ,b,Loveland (CO),40.383333,-105.116667,,0.001,,7800,311,165,,,,-28282.4,Vertical A1 24,55500,,, +28282.6,CZE,,OK0EG,b,Hradec Kralove,50.183333,15.866667,,0.01,,693,104,84,,,,-28282.6,GP Omni F1 24,55501,,, +28282.8,USA,,W0ERE,b,Fordlan (MO),36.516667,-92.95,,0.005,,7460,301,155,,,,-28282.8,Vertical Omni A1 24 ?,55502,,, +28283,USA,,K7YSP,b,Gainsville (GA),34.3,-83.95,,0.025,,7094,293,144,,,,,A1 24,55503,,, +28283.6,USA,,KC9GNK,b,Madison (WI),43.516667,-88.95,,0.004,,6658,303,147,,,,-28283.6,Inv Vee A1 24,55504,,, +28283.8,USA,,W5OM,b,Arcata (CA),40.933333,-123.616667,,0.098,,8603,324,152,,,,-28283.8,3-el A1 24,55505,,, +28284,I,,IZ0CWW,b,near Cassino (fr),41.466667,13.783333,,0.003,,1308,152,95,,,,,A1 24,55507,,, +28284,USA,,K2XG,b,Monticello (KY),36.85,-84.866667,,0.005,,6945,296,149,,,,,V.Dip@25' Omni A1 24,55506,,, +28284.5,USA,,KB9NK,b,Hudsonville (MI),42.85,-85.866667,,0.025,,6532,301,138,,,,-28284.5,A1 24?,55510,,, +28284.8,USA,,WD8AQS,b,Fremont (MI),43.466667,-85.95,,0.005,,6490,302,145,,,,-28284.8,A1 24,55508,,, +28285,ATA,,VP8ADE,b,Adelaide Island (aat),-67.55,-68.116667,,0.01,,14658,210,182,,,,,1/4 Vert Omni A1 24,55509,,, +28285.8,USA,,W0ILO,b,Fargo (ND),46.516667,-96.95,,0.025,,6854,310,142,,,,-28285.8,A1,55512,,, +28285.8,USA,,WA4ROX,b,Largo (FL),27.516667,-82.95,,0.00075,,7588,287,164,,,,-28285.8,A1 24,55511,,, +28286,USA,,WI6J,b,Bakersfield (CA),35.383333,-119.2,,0.005,,8949,318,166,,,,,Vertical Omni A1 24,55513,,, +28286,USA,,N5AQM,b,Chandler (AZ),33.3,-111.95,,0.002,,8793,311,170,,,,,Vertical Omni A1 24,55514,,, +28286.7,USA,,K3XR,b,SinkingSpring (PA),40.516667,-76.95,,0.025,,6169,294,135,,,,-28286.7,A1 ?,55515,,, +28287,USA,,W6WTG,b,Bakersfield (CA),35.383333,-118.95,,0.025,,8937,318,159,,,,,A1 24,55516,,, +28287.3,USA,,W2SDX,b,Buffalo (NY),38.883333,-77.033333,,0.025,,6297,292,136,,,,-28287.3,A1,55517,,, +28288,USA,,K4LJP,b,W Palm Beach (FL),26.516667,-80.95,,0.005,,7540,285,155,,,,,AR99@30' Omni A1 24,55519,,, +28288,USA,,WA7LNW,b,Harmony Mesa (UT),37.516667,-112.95,,0.005,,8452,315,164,,,,,FWave LoopEU/PAC A1 24,55518,,, +28289,USA,,WJ5O,b,Nr Columbus (AL),32.183333,-84.866667,,0.002,,7325,292,157,,,,,Yagi NE A1 24,55520,,, +28289.5,USA,,N1KXR,b,Medway (MA),42.516667,-72.95,,0.005,,5772,293,138,,,,-28289.5,A1 24,55521,,, +28289.8,USA,,W0ERE,b,Highlandsville (MO),36.966667,-93.366667,,0.025,,7446,301,147,,,,-28289.8,ries VariesA1 24,55523,,, +28289.8,HKG,,VR2TEN,b,Hong Kong,22.5,114,,0.005,,9173,63,167,,,,-28289.8,1/4 GP Omni A1 24,55522,,, +28290,USA,,N6UN,b,San Diego (CA),32.516667,-116.95,,0.005,,9116,315,167,,,,,A1 24,55524,,, +28290.3,USA,,WB4WOR,b,Randleman (NC),36.8,-79.866667,,0.003,,6637,292,149,,,,-28290.3,Vertical Omni A1 24,55526,,, +28290.4,S,,SK5AE,b,Strangnas,59.433333,16.866667,,0.05,,1042,35,80,,,,-28290.4,GP Omni A1 24,55525,,, +28292,CAN,,VA3VA,b,Windsor ON (ON),42.516667,-82.95,,0.005,,6385,299,144,,,,,Horiz Dip A1 24,55527,,, +28292.5,S,,SK0CT,b,Sollentuna,59.433333,17.95,,0.01,,1085,37,88,,,,-28292.5,GP Omni A1 24,55529,,, +28292.5,USA,,KM4GS,b,KentuckyLake (KY),36.516667,-88.95,,0.0005,,7221,298,162,,,,-28292.5,Vertical Omni A1 24,55528,,, +28292.8,USA,,K7GFH,b,Damascus (OR),45.383333,-122.45,,0.003,,8126,325,163,,,,-28292.8,Attic Dip A1 24,55530,,, +28293.4,USA,,ND4Z,b,Gilbert (SC),34.016667,-81.2,,0.005,,6943,291,149,,,,-28293.4,5/8@40' Omni A1 24,55531,,, +28293.7,USA,,W4DJD,b,Woodbridge (VA),38.633333,-77.366667,,0.025,,6337,292,136,,,,-28293.7,A1 24,55532,,, +28294,S,,SM5HUA,b,Uppsala,60.016667,17.866667,,0.1,,1128,34,78,,,,,Vertical Omni ?,55534,,, +28294,USA,,KE4IAP,b,Woodbridge (VA),38.633333,-77.366667,,0.025,,6337,292,136,,,,,A1 24,55535,,, +28294,USA,,K7RON,b,Peoria (AZ),33.516667,-112.95,,0.025,,8824,312,159,,,,,A1 24,55533,,, +28294.8,USA,,NR8O,b,Fort Thomas (KY),40.016667,-85.116667,,0.025,,6709,298,140,,,,-28294.8,A1,55537,,, +28295,USA,,KD1ZX,b,CentralFalls (RI),41.883333,-71.366667,,0.004,,5717,291,138,,,,,Vert@10' Omni A1 24,55536,,, +28295,B,,PU5ATX,b,Imbituba (SC),-28.266667,-48.7,,0.025,,10418,226,164,,,,,Dipole A1 06-2350,55538,,, +28295.1,S,,SK2TEN,b,Kristineberg,68.1,20.45,,0.005,,1930,18,99,,,,-28295.1,Vertical Omni A1 24,55539,,, +28295.5,I,,IZ0CWW,b,Cervaro (fr),41.466667,13.783333,,0.003,,1308,152,95,,,,-28295.5,24,55541,,, +28295.5,USA,,K4IT,b,Flatwoods (KY),38.516667,-82.7,,0.0035,,6680,295,148,,,,-28295.5,Dipole A1 24,55540,,, +28295.8,USA,,W3APL,b,Laurel (MD),39.183333,-76.866667,,0.01,,6264,292,140,,,,-28295.8,Hor.Dipole NE/SW A1 24,55542,,, +28296,USA,,KA7BGR,b,CentralPoint (OR),42.516667,-122.95,,0.025,,8422,324,157,,,,,A1 24,55543,,, +28297.1,USA,,NS9RC,b,Winnetka (IL),42.1,-87.7,,0.008,,6698,302,145,,,,-28297.1,1/2 Vert Omni A1 24,55544,,, +28297.8,USA,,WA3BM,b,Valencia (PA),40.683333,-78.45,,0.025,,6250,295,135,,,,-28297.8,A1 24,55546,,, +28298,S,,SK7GH,b,Bor,57.216667,14.116667,,0.005,,753,38,87,,,,,A1 24,55545,,, +28298,USA,,K5TLL,b,Hattiesburg (MS),31.266667,-89.45,,0.005,,7689,295,157,,,,,Vertical Omni A1 24,55548,,, +28298,MHL,,V73TEN,b,Roi Namur I,9.383333,167.45,,0.025,,12941,21,173,,,,,Horiz OA50 Omni ?,55547,,, +28298.1,USA,,K7PO,b,Tenopah (AZ),32.516667,-112.95,,0.0005,,8917,312,176,,,,-28298.1,Vertical Omni A1 24,55550,,, +28298.15,USA,,WZ8D,b,Blachester (OH),39.6,-82.783333,,0.025,,6600,296,139,,,,-28298.15,A1 24,55549,,, +28298.5,USA,,K7FL,b,BattleGround (WA),45.766667,-122.45,,0.004,,8089,325,162,,,,-28298.5,Horiz Loop A1 24,55551,,, +28298.6,USA,,K4JDR,b,Raleigh (NC),35.516667,-78.95,,0.01,,6680,291,144,,,,-28298.6,Vertical Omni A1 24,55552,,, +28299,USA,,N1SCA,b,Palm Bay (FL),27.966667,-80.616667,,0.025,,7398,286,147,,,,,A1 24,55553,,, +28300,I,,IK6ZEW,b,Pescara (pe),42.433333,14.2,,0.0004,,1224,148,103,,,,,Vertical A1 ?,55555,,, +28300,USA,,KF4MS,b,Tallahassee (FL),30.516667,-84.2,,0.01,,7420,290,151,,,,,A99@25' Omni A1 24,55557,,, +28300,USA,,K6FRC,b,Sutters Mntn (CA),39.516667,-120.95,,0.025,,8629,321,158,,,,,A1 24,55554,,, +28300.1,I,,IW0HBY,b,Roma (rm),41.516667,12.283333,,0.01,,1259,157,90,,,,-28300.1,?,55556,,, +28301,HOL,,PI7ETE,b,Amersfoort,52.133333,5.366667,,0.0005,,71,272,62,,,,,Vertical Omni F1A 24,55558,,, +28315.1,D,,DJ1ER,b,near Traunstein (bay),47.85,12.616667,,0.025,,649,134,79,,,,-28315.1,?,55559,,, +28320.97,I,,IZ8HUJ,b,Pignola (pz),40.55,15.783333,,0.0004,,1470,147,106,,,,-28320.97,Windom ?,55560,,, +28321,I,,I1YRB,b,Torre Bert (to),45.05,7.7,,0.0002,,791,173,102,,,,,Vertical Omni QRSS3 24,55561,,, +28321.2,I,,IK3ERY,b,Vittorio Veneto (tv),45.966667,12.283333,,0.0001,,806,146,105,,,,-28321.2,Vertical OMNI QRSS3 24,55563,,, +28321.2,I,,IS0GOV,b,Cagliari (ca),39.216667,9.116667,,0.0003,,1449,171,107,,,,-28321.2,Vertical Omni QRSS3 24,55562,,, +28321.47,I,,IZ1GJH,b,Casarza Lig (ge),44.266667,9.45,,0.0001,,901,164,106,,,,-28321.47,Vertical Omni QRSS3 24,55564,,, +28321.65,I,,IN3KLQ,b,near Trento (tn),46.266667,11.45,,0.0003,,745,149,100,,,,-28321.65,Vertical Omni QRSS3 24,55565,,, +28321.7,I,,IW4EMG,b,Ferrara (fe),44.85,11.45,,0.0001,,888,153,106,,,,-28321.7,QRSS3 24,55566,,, +28321.7,I,,IZ1TAA,b,near La Spezia (sp),44.1,10.033333,,0.0001,,930,162,106,,,,-28321.7,Dipole NW QRSS3 24,55573,,, +28321.8,I,,I1SXT,b,near Chiavari (ge),44.3,9.283333,,0.025,,894,165,82,,,,-28321.8,?,55569,,, +28321.8,I,,I3GNQ,b,Tencarola (pd),45.383333,11.783333,,0.0004,,845,150,99,,,,-28321.8,GP Omni QRSS3 24,55567,,, +28321.85,I,,IK0IXI,b,Aprilia (lt),42.05,13.783333,,0.0001,,1249,151,109,,,,-28321.85,Dipole@30m NE/SW A1/F1 24,55568,,, +28321.86,I,,IZ8JFA,b,Cosenza (cs),39.3,16.2,,0.0003,,1611,148,108,,,,-28321.86,N/NE QRSS3 24,55570,,, +28321.94,I,,IW9BAJ,b,near Acireale (ct),37.6,15.116667,,0.001,,1750,154,104,,,,-28321.94,QRSS3 24,55571,,, +28321.95,I,,IW0HK,b,Civitavecchia (rm),42.133333,11.866667,,0.001,,1183,158,99,,,,-28321.95,Dipole Omni QRSS3 24,55572,,, +28322.01,I,,IW1QIF,b,Davagna-Genova (ge),44.466667,8.95,,0.0001,,870,167,106,,,,-28322.01,Long Wire QRSS3 24,55574,,, +28322.04,I,,IT9YAF,b,Canicatt (ag),37.35,13.866667,,0.0001,,1741,158,114,,,,-28322.04,Vertical Omni QRSS3 24,55575,,, +28322.05,I,,IK1HGI,b,Trecate (no),45.433333,8.7,,0.0001,,761,166,104,,,,-28322.05,Dipole NNW/SSE QRSS3 24,55576,,, +28322.08,I,,IS0GSR,b,near Cagliari (ca),39.55,8.7,,0.0001,,1408,172,111,,,,-28322.08,Dipole N-S QRSS3 24,55577,,, +28322.11,I,,IK8YTN,b,Salerno (sa),40.266667,14.95,,0.0001,,1470,150,112,,,,-28322.11,Inv V E-W QRSS3 24,55578,,, +28322.18,I,,IZ0HCC,b,Roma (rm),41.8,12.45,,0.0001,,1234,156,109,,,,-28322.18,Vertical Omni QRSS3 ?,55579,,, +28322.2,I,,IK8SUT,b,Salerno (sa),40.683333,14.783333,,0.0001,,1421,150,111,,,,-28322.2,Inv V E-W QRSS3 24,55580,,, +28322.2,I,,IW7DEC,b,near Bari (ba),41.216667,16.533333,,0.0001,,1434,144,111,,,,-28322.2,1/2 Vert Omni QRSS3 24,55581,,, +28322.32,I,,IW9FRA,b,Trapani (tp),38.016667,12.616667,,0.0001,,1640,160,113,,,,-28322.32,Dipole N-S QRSS3 24,55582,,, +28322.36,I,,IW3SGT,b,Trieste (ts),45.633333,13.783333,,0.025,,899,140,82,,,,-28322.36,QRSS3 24,55583,,, +28322.45,I,,IW4EMG,b,near Ferrara (fe),44.933333,11.45,,0.025,,880,153,82,,,,-28322.45,Vertical Omni QRSS3 ?,55584,,, +28322.6,F,,F1VJT,b,StGermain/Puoh JN16XX (58),46.966667,3.95,,0.0001,,599,198,103,,,,-28322.6,?,55585,,, +28322.62,I,,IK1BPL,b,Novara (no),45.433333,8.616667,,0.0001,,760,167,104,,,,-28322.62,GP NNW/SSE QRSS3 24,55586,,, +28322.63,I,,IK0VVE,b,near Latina (lt),41.55,12.866667,,0.0001,,1272,155,110,,,,-28322.63,Dipole NNW/SSE QRSS3 24,55587,,, +108999 0000-0001 XXX fmscan.org list end XXX XXX,,,,,,,,,,,,,,,,,,,,,, diff --git a/SDRSharper/bin/x64/Debug/frequencies.xml b/SDRSharper/bin/x64/Debug/frequencies.xml new file mode 100644 index 0000000..6200ea2 --- /dev/null +++ b/SDRSharper/bin/x64/Debug/frequencies.xml @@ -0,0 +1,33 @@ + + + + true + 484.8121 MHz NFM + Misc + 484812054 + NFM + 0 + 485436308 + 19600 + + + true + 484.8393 MHz NFM + Misc + 484839303 + NFM + 0 + 485436308 + 12000 + + + true + 484.8887 MHz NFM + Misc + 484888730 + NFM + 0 + 485436308 + 12000 + + \ No newline at end of file diff --git a/SDRSharper/bin/x64/Debug/settings.xml b/SDRSharper/bin/x64/Debug/settings.xml new file mode 100644 index 0000000..f5f39bc --- /dev/null +++ b/SDRSharper/bin/x64/Debug/settings.xml @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SDRSharper/bin/x64/Release/Debug_1.log b/SDRSharper/bin/x64/Release/Debug_1.log new file mode 100644 index 0000000..9f48d1c --- /dev/null +++ b/SDRSharper/bin/x64/Release/Debug_1.log @@ -0,0 +1,56 @@ +12:14:45.960 - Program start +12:14:45.967 - Threadpool initialized +12:14:45.968 - Explicitely enabled VisualStyles +12:14:45.969 - Start FormMain +12:14:46.830 - Settings loaded +12:14:47.943 - Component initialized +12:14:47.998 - Plugins initialized +12:14:48.114 - Audio input device [MME] Microsoft Sound Mapper - Input found. +12:14:48.114 - Audio input device [MME] CABLE Output (VB-Audio Virtual found. +12:14:48.114 - Audio input device [MME] Stereo Mix (Realtek High Defini found. +12:14:48.114 - Audio input device [MME] Microphone (Realtek High Defini found. +12:14:48.115 - Audio input device [MME] Microphone (JBL Flip 3 Hands-Fr found. +12:14:48.115 - Audio input device [WDS] Primary Sound Capture Driver found. +12:14:48.117 - Audio input device [WDS] CABLE Output (VB-Audio Virtual Cable) found. +12:14:48.117 - Audio input device [WDS] Stereo Mix (Realtek High Definition Audio) found. +12:14:48.117 - Audio input device [WDS] Microphone (Realtek High Definition Audio) found. +12:14:48.117 - Audio input device [WDS] Microphone (JBL Flip 3 Hands-Free) found. +12:14:48.117 - Audio input device [Windows WASAPI] Stereo Mix (Realtek High Definition Audio) found. +12:14:48.117 - Audio input device [Windows WASAPI] Microphone (Realtek High Definition Audio) found. +12:14:48.117 - Audio input device [Windows WASAPI] Microphone (JBL Flip 3 Hands-Free) found. +12:14:48.118 - Audio input device [Windows WASAPI] CABLE Output (VB-Audio Virtual Cable) found. +12:14:48.118 - Audio input device [Windows WDM-KS] Microphone (Realtek HD Audio Mic input) found. +12:14:48.118 - Audio input device [Windows WDM-KS] Stereo Mix (Realtek HD Audio Stereo input) found. +12:14:48.118 - Audio input device [Windows WDM-KS] Microphone (@System32\drivers\bthhfenum.sys,#2;%1 Hands-Free%0 +;(JBL Flip 3)) found. +12:14:48.118 - Audio input device [Windows WDM-KS] CABLE Output (VB-Audio Point) found. +12:14:48.120 - Audio output device [MME] Microsoft Sound Mapper - Output found. +12:14:48.120 - Audio output device [MME] Speakers (JBL Flip 3 Stereo) found. +12:14:48.121 - Audio output device [MME] Speakers / Headphones (Realtek found. +12:14:48.121 - Audio output device [MME] CABLE Input (VB-Audio Virtual C found. +12:14:48.121 - Audio output device [MME] Headset Earphone (JBL Flip 3 Ha found. +12:14:48.121 - Audio output device [WDS] Primary Sound Driver found. +12:14:48.121 - Audio output device [WDS] Speakers (JBL Flip 3 Stereo) found. +12:14:48.121 - Audio output device [WDS] Speakers / Headphones (Realtek High Definition Audio) found. +12:14:48.122 - Audio output device [WDS] CABLE Input (VB-Audio Virtual Cable) found. +12:14:48.122 - Audio output device [WDS] Headset Earphone (JBL Flip 3 Hands-Free) found. +12:14:48.122 - Audio output device [Windows WASAPI] Speakers / Headphones (Realtek High Definition Audio) found. +12:14:48.122 - Audio output device [Windows WASAPI] CABLE Input (VB-Audio Virtual Cable) found. +12:14:48.122 - Audio output device [Windows WASAPI] Headset Earphone (JBL Flip 3 Hands-Free) found. +12:14:48.122 - Audio output device [Windows WASAPI] Speakers (JBL Flip 3 Stereo) found. +12:14:48.122 - Audio output device [Windows WDM-KS] Speakers (Realtek HD Audio output) found. +12:14:48.122 - Audio output device [Windows WDM-KS] Headset Earphone (@System32\drivers\bthhfenum.sys,#2;%1 Hands-Free%0 +;(JBL Flip 3)) found. +12:14:48.123 - Audio output device [Windows WDM-KS] Speakers () found. +12:14:48.123 - Audio output device [Windows WDM-KS] Speakers (VB-Audio Point) found. +12:14:48.135 - VFO initialized. +12:14:48.198 - GUI initialized. +12:14:48.338 - Frequency list loaded. +12:14:48.340 - ExtIO controller ExtIO_RTL_x64.dll found. +12:14:48.341 - Plugins initialized. +12:14:48.342 - IQ source selected. +12:14:48.364 - GUI initialized +12:14:49.565 - IQ source selected. +12:14:49.691 - MainForm loaded +12:14:49.996 - MainForm shown +12:25:52.310 - Program exit diff --git a/SDRSharper/bin/x64/Release/Debug_5.log b/SDRSharper/bin/x64/Release/Debug_5.log new file mode 100644 index 0000000..3b61a63 --- /dev/null +++ b/SDRSharper/bin/x64/Release/Debug_5.log @@ -0,0 +1 @@ +12:14:48.343 - TuneThread started diff --git a/SDRSharper/bin/x64/Release/ExtIO_RTL_x32.dll b/SDRSharper/bin/x64/Release/ExtIO_RTL_x32.dll new file mode 100644 index 0000000..d393d85 Binary files /dev/null and b/SDRSharper/bin/x64/Release/ExtIO_RTL_x32.dll differ diff --git a/SDRSharper/bin/x64/Release/ExtIO_RTL_x64.dll b/SDRSharper/bin/x64/Release/ExtIO_RTL_x64.dll new file mode 100644 index 0000000..ae14fcf Binary files /dev/null and b/SDRSharper/bin/x64/Release/ExtIO_RTL_x64.dll differ diff --git a/SDRSharper/bin/x64/Release/Help.txt b/SDRSharper/bin/x64/Release/Help.txt new file mode 100644 index 0000000..57f1e09 --- /dev/null +++ b/SDRSharper/bin/x64/Release/Help.txt @@ -0,0 +1,232 @@ +Below some of the additional features added to the default SDRsharp radio (2-mar-2015) + +--------------------------------------------------------------------------------------- + +Note that the upmost 'spectrumanalyzer' display is the main display to be used for controlling the SDR. + +Use 'Span', 'Floor', 'Contr(ast)' and 'Intens(ity)' sliders to change upper and lower Spectrum analyser and Waterfall signal levels. + +Use the 'set' button or 'Right' mouse-button and select 'Do autoscaling' to automatically set lower signal level when 'Play' is active. + +Use the 'dBm / dBu / S-pts / %' list box to switch betweem signal level labeling. + +Use the 'Speed' slider to independently set the waterfall speed somewhere between 20 secs and 1.5 hours. + +After having clicked somewhere in the SpectrumAnalayzer display one can use Left and Rigth arrow keys to move frequency. +Use Page-up and Page-down to move/change centerfrequency according 'Cent-step' listbox entry. + +Use mouse scroll button on one of the top Cent/Freq digits to change (center)frequency. +Click on top of bottom of digit to increase/decrease digit value by one. +Or if one of the digits shows blue use up/down arrow. + + +Shortcut keys: + + to select VFO-A to VFO-C + + A select mode AM + S Select mode SAM + L select mode LSB + U select mode USB + D select mode DSB + N select mode nFM + W select mode wFM + + B 5 set BandWidth to 5 khz (do not type the white spaces) + G 50 (Enter> set audio level (Gain) to 50% + C 100 (Enter> set Center stepsize to 100 khz + Z 9 (Enter> Set Frequency stepsiZe to 9 khz + + Perform auto scaling + + 1350 Set frequency to 1350 Khz + 1350 K Set frequency to 1350 Khz + 1.2 M Set frequency to 1.2 Mhz + +When the Spectrum display is selected (has focus) (after having clicked somewhere in the Spectrum display) +One can use the below keys: + + Right/Left arrow increase/decrease active frequency with 'stepsize' amount. + Up/Down arrow increase/decrease active frequency with' stepsize' amount. + Page-Up/Page-Down increase/decrease Center frequency with 'center step' amount. + +Use the upmost buttons on the left 'FFT display' panel to enable/disable the RF Waterfall, IF baseband, AF audio +and/orAM envelope displays. + +Right click in IF baseband spectrum display to add or remove up to 4 notches, left click to enable/disable notch. +Use mouse wheel (or drag side of notch) to change notch width. +(as an alternative one can use the 'IF' button to toggle between normal RF-spectrum and IF-baseband mode) +One can also use the IF display to more precisely set/tune main receiving frequency ans/or passband width. + +Use the 'Lock' button to enable/disable frequency locking when (Vector)Scope display is active (XY mode, X=AM, Y=PM) + +To more precisely inspect AM audio levels on the 'Scope' panel, please disable the AGC function/button. +The 'RF gain' slider will automatically adjust itself to an appropriate level. +If needed manually adjust RF gain to get the display within range. +After a frequency change the AGC function is automatically re-enabled again to avoid audio overloads. + + +'Radio' panel: + + Vfo A to C Re-use stored setting when this Vfo was last used. + For instance to quickly switch between 3 bands of interrest. + +'Audio' panel: + + [1] to [4] buttons Enable/disable audio notch 1 to 4, visible when IF passband is enabled on FFT window. + Or ... drag the notches just as if you would drag/change the Vfo passband. + Click on notch to enable/disable a previously set notch. +'FFT diplay' panel: + + 'Waterfall' To enable/disable the RF spectrum WaterFall display. + 'show IF' To enable/disable the IF baseband spectrum display + 'Audio' To enable/disable the AF audio horizontal moving display. + 'Envelope' To enable/disable the AM envlope display. + + 'S-meter offset' to change S-meter readings when using an RTL-stick or other front-end. + 'Indep sideb.' To toggle between default and Perseus style bandwidth changing (using mouse). + 'Spect' button to select/change Spectrumanalyzer fill, gradient and/or line color. + The same holds for the 'W-fall', 'Audio' and 'Scope' buttons. + +'Scope' panel -> [...] button + + 'Vfo gain' Manually adjust gain when AGC is disabled or to change scope Y axis visibility. + + 5 lower sliders to change the behaviour slow/fast of the corresponding coloured audio level meter (bars). + 'Avg' slider change averaging level for locking on Vector scope display, default value is around 40 + 'Gain' slider change amplification for locking in Vector scope display, default value is around 9 + +'Advanced' panel + + 'Auto Scale' To enable/disable auto scaling after center-frequency change. + + 'Fast conv.' Toggle between Fast Convolve and default principles for the notch filters + 'FFT wind' Select the window type for the FFT Spectrumanalyser and Waterfall displays + 'VFO wind' Select the window type to use for the VFO band filter. + 'Bandwdt' Select filter bandwidth (same as BW combo to the right of freq-indicator) + 'Filter order' To set the filter quality for the VFO filter (default=400, higher values, more CPU). + To get deeper/sharper IF baseband notches, select a lower min-samplerate on Audio panel. + 'Latency' To experiment of you are experiencing audio drop-outs (default=100ms) + +Using a RTL based dongle one can also inspect the 'audio' spectrum for commercial stereo stations in the FM band. +To do this, enable the Audio display on the FFT display panel. Tune to a station in the FM band and set the 'min +sampling' on the 'Audio' panel to 96000 using the Sampling box on the 'Audio' panel. +Select wide-FM (wFM) as the audio mode on the 'Radio' panel to be sure the bandwidth (BW) is 180 kHz or more. +Disable 'Filter audio' and toggle 'FM stereo' for best results. + +*************************************************************************************************************************** + +If your audio contains drop-outs you can experiment with the below: + +- Select a lower FFT resolution (e.g. 4096) on 'FFT display' panel. +- Decrease the speed for the FFT waterfall and/or the Audiogram. +- Select 'Audiogram' instead of Envelope scope' by disabling lower right 'Scope' button. +- Select only 'SP + Waterfall' in the 'View' combo on the 'FFT display' panel. +- Decrease the overall size of your SDRSharper window on your computer monitor. +- Disable the 'Fast Conv.' button on the 'Advanced' panel. +- Try different 'min sampling' setting on the 'Audio' panel. + Depending on sound card selected some setting(s) might to better. + +*************************************************************************************************************************** + +Some more HINTS, TRICKS and suggestions: + +- For best audiogram waterfall display select 48000 for the 'min sampling' on the 'Audio' panel. + However this will degrade the visibility on the IF spectrum display. +- For best details on the IF display, select 16000 or 24000 for the 'min sampling' on the 'Audio' panel. +- This 'min (output) sampling' value will also affect audio quality and the bandwidth for the 'Raw' output, + so it's something to experiment with. +- For more pronounced IF baseband nothes (USB, LSB, CW) use lower 'min-sampling' values e.g. 8000 or 16000. +- When SAM demodulation is selected, use the 'AM pseud' button on the 'Audio' panel to switch between mono and + 'pseudo stereo'. (Left ear one sideband, right ear the other sideband). +- Use the 'Vfo gain' slider and/or timebase combo on the collapsible 'Scope panel on the left to 'manually adjust + the amplification for the Scope and Envelope diplays + +*************************************************************************************************************************** + +For HF below 30 Mhz, the first station in the Eibi stationlist data is listed on the top line in the SpectrumAnalyzer. +Click on this top-line to view all stations for the frequency. To get a longer list, increase the max on the last line. + +To get a new actual stationlist for your location: + +1) go to http://fmscan.org/perseus.php +2) Only once, set your location using 'Perseus location search' +3) select LW/MW/SW (0-30Mhz) +4) select CSV format +5) select 'comma' as the CSV separator +6) Click 'download userlist1.txt' +7) After some time a new page shows up, right click and use 'save as' to save the data on your local hard disk. +8) Copy the file to your SDRsharp runtime folder with the name 'eibi.csv' +9) Restart SDRsharp + +**************************************************************************************************************************** + +To enable 7-segment LED indicator style numbers for Center and Frequency indicators +Install the LCD font file into your fonts folder. +You can do this by double clicking the 'LCD-N___.tff' file. + + + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + RELEASE NOTES / CHANGE LOG +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +This modification was created to support ExtIO based SDR hardware on lower HF. +Which was (and maybe still is) not possible using the original SDRSharp app. + +Get SDRSharper_02g.zip and unpack/unzip files into a single destination folder. + +See also Help.txt file included in the Zip-file or click [?] button on bottom right of SDR. + +SDRSharper Requires Microsoft .Net framework 3.5 +http://www.microsoft.com/en-us/download/details.aspx?id=21 + +On most modern W7 and above systems already available. +Although on W10 you will have to download it again. + +SDRSharper supports most ExtIO enabled SDR hardware front ends. +See lowerr list on http://www.hdsdr.de/hardware.html +Place appropriate ExtIO*.dll file in your SDRSharper folder. + +Package already contains ExtIO dll's for Perseus and PapRadio SDR. +Furthermore the RTLSDR DVBT Dongle is supported. + + +To contact author: l_o_n_g_d_i_p_o_l_e_[at]_gmx.com (without the _ char's and @ for [at]) + +- use ExtIO_PappRadio.zip for pappradio ExtIO files. +- use ExtIO_PappRadio2.zip for pappradio v2 (usb) ExtIO files. +- use ExtIO_Perseus.zip for Perseus ExtIO files. +- use ExtIO_PMSDR_XP.zip for PMSDR ExtIO files running windows-XP. +- use ExtIO_PMSDR_W7.zip for PMSDR ExtIO files running windows-7. +- use ExtIO_SI570.zip for PMSDR, FiFiSDR or other SI570 based hardware. +- use Install_CFGSR_v2.6.msi to instaal full SI570 package including drivers. + +============================================================================================ +Release notes: +============================================================================================ + +mar 04, 2015 - version 0.2g + +- Added Synchronous AM demodulation. +- Both mono and 'pseudo stereo'. +- Removed trial period restrictions. +- Minor fixes. + +feb 15, 2015 - Version 0.2g + +- Bugfix on RTL-USB selection +- Synchronous AM (SAM) demodulation added +- Some other minor improvements + +oct 2014 - version 0.2e + +- Fixed crash when using soundcard based ExtIO hardware. +- Fixed display of spurs when playing sim.wav (http://www.sm5bsz.com/lir/sim1/sim1.htm) +- Bugfix when using a system with sound input disabled. +- Added separate IF baseband spectrum display. +- Enabled zooming and tuning for wide spectrum recordings. +- Adressed some (minor) performance issues. +- Removed center frequency indicator. + +(and probably introduced some new ones..., if so let me know). diff --git a/SDRSharper/bin/x64/Release/LCD-BOLD.TTF b/SDRSharper/bin/x64/Release/LCD-BOLD.TTF new file mode 100644 index 0000000..8e566af Binary files /dev/null and b/SDRSharper/bin/x64/Release/LCD-BOLD.TTF differ diff --git a/SDRSharper/bin/x64/Release/LCD-N___.TTF b/SDRSharper/bin/x64/Release/LCD-N___.TTF new file mode 100644 index 0000000..67c079c Binary files /dev/null and b/SDRSharper/bin/x64/Release/LCD-N___.TTF differ diff --git a/SDRSharper/bin/x64/Release/PortAudio_x32.dll b/SDRSharper/bin/x64/Release/PortAudio_x32.dll new file mode 100644 index 0000000..4588ded Binary files /dev/null and b/SDRSharper/bin/x64/Release/PortAudio_x32.dll differ diff --git a/SDRSharper/bin/x64/Release/PortAudio_x64.dll b/SDRSharper/bin/x64/Release/PortAudio_x64.dll new file mode 100644 index 0000000..b2b685c Binary files /dev/null and b/SDRSharper/bin/x64/Release/PortAudio_x64.dll differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.CollapsiblePanel.dll b/SDRSharper/bin/x64/Release/SDRSharp.CollapsiblePanel.dll new file mode 100644 index 0000000..2e9571b Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.CollapsiblePanel.dll differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.CollapsiblePanel.pdb b/SDRSharper/bin/x64/Release/SDRSharp.CollapsiblePanel.pdb new file mode 100644 index 0000000..ea2bfb5 Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.CollapsiblePanel.pdb differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.Common.dll b/SDRSharper/bin/x64/Release/SDRSharp.Common.dll new file mode 100644 index 0000000..6216ba2 Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.Common.dll differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.Common.pdb b/SDRSharper/bin/x64/Release/SDRSharp.Common.pdb new file mode 100644 index 0000000..1c681ed Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.Common.pdb differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.Controls.dll b/SDRSharper/bin/x64/Release/SDRSharp.Controls.dll new file mode 100644 index 0000000..b77f05f Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.Controls.dll differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.Controls.pdb b/SDRSharper/bin/x64/Release/SDRSharp.Controls.pdb new file mode 100644 index 0000000..d0c654e Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.Controls.pdb differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.FrequencyManager.dll b/SDRSharper/bin/x64/Release/SDRSharp.FrequencyManager.dll new file mode 100644 index 0000000..a197087 Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.FrequencyManager.dll differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.FrequencyManager.pdb b/SDRSharper/bin/x64/Release/SDRSharp.FrequencyManager.pdb new file mode 100644 index 0000000..d21feb1 Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.FrequencyManager.pdb differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.PanView.dll b/SDRSharper/bin/x64/Release/SDRSharp.PanView.dll new file mode 100644 index 0000000..e0d11cf Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.PanView.dll differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.PanView.pdb b/SDRSharper/bin/x64/Release/SDRSharp.PanView.pdb new file mode 100644 index 0000000..2a782fc Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.PanView.pdb differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.Radio.dll b/SDRSharper/bin/x64/Release/SDRSharp.Radio.dll new file mode 100644 index 0000000..2745fbf Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.Radio.dll differ diff --git a/SDRSharper/bin/x64/Release/SDRSharp.Radio.pdb b/SDRSharper/bin/x64/Release/SDRSharp.Radio.pdb new file mode 100644 index 0000000..0089f25 Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharp.Radio.pdb differ diff --git a/SDRSharper/bin/x64/Release/SDRSharperR.exe b/SDRSharper/bin/x64/Release/SDRSharperR.exe new file mode 100644 index 0000000..4c7b9aa Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharperR.exe differ diff --git a/SDRSharper/bin/x64/Release/SDRSharperR.exe.config b/SDRSharper/bin/x64/Release/SDRSharperR.exe.config new file mode 100644 index 0000000..eb0edc7 --- /dev/null +++ b/SDRSharper/bin/x64/Release/SDRSharperR.exe.config @@ -0,0 +1,86 @@ + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDRSharper/bin/x64/Release/SDRSharperR.pdb b/SDRSharper/bin/x64/Release/SDRSharperR.pdb new file mode 100644 index 0000000..20edf1f Binary files /dev/null and b/SDRSharper/bin/x64/Release/SDRSharperR.pdb differ diff --git a/SDRSharper/bin/x64/Release/Telerik.WinControls.Themes.VisualStudio2012Dark.dll b/SDRSharper/bin/x64/Release/Telerik.WinControls.Themes.VisualStudio2012Dark.dll new file mode 100644 index 0000000..29091ba Binary files /dev/null and b/SDRSharper/bin/x64/Release/Telerik.WinControls.Themes.VisualStudio2012Dark.dll differ diff --git a/SDRSharper/bin/x64/Release/Telerik.WinControls.UI.dll b/SDRSharper/bin/x64/Release/Telerik.WinControls.UI.dll new file mode 100644 index 0000000..2374fae Binary files /dev/null and b/SDRSharper/bin/x64/Release/Telerik.WinControls.UI.dll differ diff --git a/SDRSharper/bin/x64/Release/Telerik.WinControls.UI.xml b/SDRSharper/bin/x64/Release/Telerik.WinControls.UI.xml new file mode 100644 index 0000000..f290a17 --- /dev/null +++ b/SDRSharper/bin/x64/Release/Telerik.WinControls.UI.xml @@ -0,0 +1,59540 @@ + + + + Telerik.WinControls.UI + + + + + Gets the location and size of the accessible object + + + + + Gets the location and size of the accessible object + + + + + Gets a value for the Value property while in bound mode. + + Gets an object reference pointing to the value of the Value property in bound mode. + + + + Gets a value for the Value property in unbound mode. + + Returns an object reference pointing to the value of the Value property in unbound mode. + + + + This method is called when setting the Value property of a RadListDataItem when it is in unbound mode. + + The value to set the Value property to. + + + + This method is used to assign the DataBoundItem property of this RadListDataItem. + If a user attempts to set DataBoundItem while in bound mode, an exception should be thrown. + In unbound mode this property can be set to any value and will not affect the behavior of this RadListDataItem. + + A flag that indicates if the data bound item is being set from the data binding engine or by the user. + true means it is being set by the data binding engine. + The value that will be assigned to the DataBoundItem property. + + + + Gets a value indicating whether this data item is data bound. + + + + + Gets a value that represents the ListDataLayer associated with this data item and its parent RadListControl. + The ListDataLayer encapsulates the data operations provided by RadListControl which are sorting, filtering and currency synchronization. + + + + + Gets a value representing the owner RadListElement of this data item. + + + + + Gets a value representing the owner control of this data item. + + + + + Gets or sets the visual height of this item. + This property can be set only when AutoSizeItems of the parent RadListControl is true. + + + + + Gets the index of this data item in the Items collection of RadListControl. + + + + + Gets a value that will be used in the visual representation of this item. + + + + + Gets or sets a value for the property indicated by ValueMember if in bound mode, and private value in unbound mode. + Trying to explicitly set this property in bound mode will result in an InvalidOperationException. + + + + + Gets or sets a value that indicates if this item is selected. Setting this property will cause the selection events of the owner list control to fire if there is one. + + + + + Gets or sets whether this item responds to GUI events. + + + + + Gets or sets the text for this RadListDataItem instance. + + + + + Gets or sets a text value that is used for sorting. Creating a RadProperty during data binding is too slow, this is why + this property is used instead and its value can be used for sorting. + + + + + Gets or sets an image for this RadListDataItem instance. + + + + + Gets or sets the text-image relation for this RadListDataItem instance. + + + + + Gets or sets the image alignment for this RadListDataItem instance. + + + + + Gets or sets the text alignment for this RadListDataItem instance. + + + + + Gets or sets the text orientation for this RadListDataItem instance. + + + + + Gets or sets the font for this RadListDataItem instance. + + + + + Gets or sets the text color for this RadListDataItem instance. + + + + + Gets a value that indicates if this item is currently visible. + + + + + Gets a value that visually represents this data item. If the item is not visible, this property returns null. + The visual item returned should be used only to get information about a particular item. Since visual items + are shared between different data items, properties must not be set directly on the visual item in order + to avoid uncustomizable or unwanted behavior. For example if properties are set directly to the visual item + the themes may not work correctly. + + + + + Gets or sets the preferred size for the element which will present this item. + + + + + Gets the index of item in GridViewRowCollection. + + The index. + + + + Gets or sets a value that represents the raw data item that this RadListDataItem is associated with. + This property will be non null when the item is created via RadListControl's data binding and will contain the underlaying data item. Setting this property explicitly will have no effect in unbound mode and will throw an InvalidOperationException in bound mode. + + + + + Gets or sets a value that indicates if this item is selected. Setting this property will cause the selection events of the owner list control to fire if there is one. + + + + + Represents a auto-complete tokenized text box element + + + + + Represents an independent text box element + + + + + Represent a scrollable view element with scrollbars + + + + + + A light visual element supporting text, border, image, BackColor and ForeColor with different layout adjustments. + "http://www.telerik.com/help/winforms/tpf-primitives-lightvisualelement.html" + + + + + Base class for some RadItems, used in RadTreeView, RadPanelBar, RadCalendar, etc. Incorporates basic functionality for paiting gradient + background and borders the same way FillPrimitive and BorderPrimitive do. + + + + + Gets the border thicknes of a + + The element to check. + Determines whether to consider when the border is disabled. + The border thicknes. + + + + Toggles the text primitive when text related properties are change. + + The changed property. + + + + Called when animated image frame changes. + + + + + Gets the properties, which should mapped if set to a LightVisualElement instance. Used for testing purposes. + + + + + Gets or sets the text rendering hint. + + + + + Gets or sets the text rendering hint used when this element is disabled. + + + + + Gets or Sets value indicating whether the element should paint its text + + + + + Gets or Sets value indicating whether the element should paint its background + + + + + Gets or Sets value indicating whether the element should paint its border + + + + + Gets or Sets value indicating whether the element should paint its background image. + + + + + Gets or Sets value indicating whether the element should paint its image. + + + + + + Gets or sets the + Border style. The two possible values are SingleBorder and FourBorder. In the + single border case, all four sides share the same appearance although the entire + border may have gradient. In four border case, each of the four sides may differ in + appearance. For example, the left border may have different color, shadowcolor, and + width from the rest. When SingleBorder is chosen, you should use the general + properties such as width and color, and respectively, when the FourBorder style is + chosen you should use properties prefixed with the corresponding side, for example, + LeftColor, LeftWidth for the left side. + + + + + Defines the order in which border lines are drawn. This property is considered when the is FourBorders. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the top border . This property + has effect only if FourBorders style is used in BoxStyle property, + and affects only the top border. + + + + + Gets or sets a float value width of the right border. This + property has effect only if FourBorders style is used in BoxStyle + property, and affects only the right border. + + + + + Gets or sets a float value width. This property has effect only if + FourBorders style is used in BoxStyle property, and affects only the + bottom border. + + + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets a value indicating the TextImageRelation: ImageAboveText, + ImageBeforeText, Overlay, TextAboveImage, and TextBeforeImage. + + + + + Gets and sets the left border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the left border. + + + + + Gets and sets the top border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the top border. + + + + + Gets and sets the right border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the right border. + + + + + Gets and sets the bottom border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the bottom border. + + + + + Gets and sets the left shadow color. This option applies only if + fourBorders is chosen, and affects only the left border. + + + + + Gets and sets the top shadow color. This option applies only if + fourBorders is chosen, and affects only the top border. + + + + + Gets and sets the right shadow color. This option applies only if + fourBorders is chosen, and affects only the right border. + + + + + Gets and sets the bottom shadow color. This option applies only if + fourBorders is chosen, and affects only the bottom border. + + + + + Determines whether text will be clipped within the calculated text paint rectangle. + + + + + Gets or sets the transparent color for the image. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Gets or sets a value indicating whether image transparency is supported. + + + + + Determines whether character trimming will be automatically applied to the element if text cannot be fitted within the available space. + + + + + Determines whether ampersand character will be treated as mnemonic or not. + + + + + Gets or sets a value indicating whether text will be wrapped when exceeding the width of the element. + + + + + Determines whether keyboard focus cues are enabled for this element. + + + + + Determines whether trailing spaces will be included when text size is measured. + + + + + Gets the text structure used to render text + + + + + Creates the scroll bar element. + + + + + + Creates the view element. + + + + + + This method provides a chance to initialize the ViewElement object. + + The view element. + + + + Measures the view element. + + Size of the available. + + + + + Arranges the view element. + + The view element rect. + + + + Arranges the horizontal scroll bar. + + The view element rect. + The client rect. + + + + + Arranges the vertical scroll bar. + + The view element rect. + The hscroll bar rect. + The client rect. + + + + Gets the horizontal scroll bar. + + + The horizontal scroll bar. + + + + + Gets the vertical scroll bar. + + + The vertical scroll bar. + + + + + Gets or sets the view element. + + + The view element. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Creates an instance of + + + + + + Called when the context menu is opening. + + The menu. + + + + + Raises the event. + + The instance containing the event data. + + + + Clamps the offset to valid text position bounds + + The offset. + + + + + Determines whether the text can be inserted + + The text. + + true if this text can be inserted; otherwise, false. + + + + + Determines whether the current position is valid for the auto-complete operation + + + true if [is valid auto complete position]; otherwise, false. + + + + + Performs the auto-complete for concrete operation. + + The context. + + + + Performs the auto complete override. + + The context. + + + + Gets the text that is as filter condition in auto-completion + + The start position. + The end position. + + + + + Gets the auto-complete drop down location. + + + + + + Gets the lines of the text box element. + + + + + + Sets the lines of the text box element. + + The lines. + + + + Creates the caret of the text box element. + + + + + + Creates the auto-complete list element. + + + + + + Creates the auto-complete drop down. + + + + + + Gets the size of the auto-complete drop down. + + + + + + Shows the drop down. + + The location. + + + + Closes the auto-complete drop down. + + + + + Closes the drop down. + + The reason. + + + + Moves the current selection in the text box to the Clipboard. + + + + + + Copies the current selection in the text box to the Clipboard. + + + + + + Replaces the current selection in the text box with the contents of the Clipboard. + + + + + + Inserts the text at current position + + The text. + + + + + Deletes the selected text or character at the current position + + + + + + /// Deletes the selected text or character at the current position + + if set to true deletes next character. + + + + + Appends text to the current text of a text box. + + The text. + + + + Appends text to the current text of a text box and selects it + + The text. + if set to true selects the text. + + + + Selects a range of text in the text box. + + The start. + The length. + + + + Selects all text in the text box element. + + + + + Specifies that the value of the SelectionLength property is zero so that no characters are selected in the element. + + + + + + Scrolls the contents of the control to the current caret position. + + + + + Clears all text from the text box element. + + + + + Gets or sets the current text in the text box element. + + + + + Gets or sets the prompt text that is displayed when the text box contains no text. + + + The null text. + + + + + Gets or sets the color of the null text. + + + The color of the null text. + + + + + Gets or sets the lines of text in a text box element. + + + The lines. + + + + + Gets or sets a value indicating the currently selected text in the element. + + + The selected text. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box element. + + + The length of the max. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text box element types a TAB character in the element instead of moving the focus to the next element in the tab order. + + + true if [accepts tab]; otherwise, false. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline TextBox element creates a new line of text in the element or activates the default button for the form. + + + true if [accepts return]; otherwise, false. + + + + + Gets or sets a value indicating whether this is a multiline text box. + + + true if multiline; otherwise, false. + + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Indicates whether a multiline text box control automatically wraps words to the beginning of the next line when necessary. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets the length of text in the element. + + + The length of the text. + + + + + Gets or sets the caret position. + + + The index of the caret. + + + + + Gets or sets the starting point of text selected in the text box. + + + The selection start. + + + + + Gets or sets the number of characters selected in the text box. + + + The length of the selection. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets or sets whether the TextBox element modifies the case of characters as they are typed. + + + The character casing. + + + + + Gets the associated caret. + + + + + Represents the associated keyboard and mouse input handler. + + + The input handler. + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets a value indicating whether the caret is visible in read only mode. + + + true if the caret is visible; otherwise, false. + + + + + Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the element loses focus. + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the associated context menu. + + + The context menu. + + + + + Gets or sets the navigator of the text position. + + + The navigator. + + + + + Gets the auto-complete list element. + + + + + Gets the view element of the null text. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets the auto complete display member. + + + The auto complete display member. + + + + + Gets or sets a value specifying the source of complete items used for automatic completion. + + + The auto complete data source. + + + + + Gets a value specifiying the complete items used for automatic completion. + + + + + Gets or sets the size of the drop down max. + + + The size of the drop down max. + + + + + Gets or sets the size of the drop down min. + + + The size of the drop down min. + + + + + Gets or sets the max count of visible items in auto-complete drop down + + + The max drop down item count. + + + + + Gets a value indicating whether this auto-complete drop down is open. + + + true if the drop down is open; otherwise, false. + + + + + Gets or sets when the vertical scroll bar should appear in a multiline TextBox element. + + + The state of the vertical scroll bar. + + + + + Gets or sets when the horizontal scroll bar should appear in a multiline TextBox element. + + + The state of the horizontal scroll bar. + + + + + Gets a value indicating whether this text box can perform auto complete operation. + + + true if this instance can perform auto complete; otherwise, false. + + + + + Gets the auto complete drop down. + + + + + Gets the clear button. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when the context menu is opening. + + + + + Occurs when text selection is changing. + + + + + Occurs when text selection is changed. + + + + + Fired when the Input Method Editor starts the composition. + + + + + Fired when the Input Method Editor completes the composition. + + + + + Fired when the Input Method Editor has a result ready. For languages like Korean + this might happen before the composition has ended. + + + + + Initializes a new instance of the class. + + + + + Creates the tokenized item collection. + + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets or sets a property name which will be used to extract a value from the data items + + + + + Gets or sets the delimiter used to tokenize the text + + + The delimiter. + + + + + Gets the tokenized items. + + + + + Gets the auto complete view element. + + + + + Gets or sets the auto complete drop down location. + + + The auto complete popup location. + + + + + Occurs when text is validating as token + + + + + Represent a virtualize panel element provider + + The type of view element. + The type of virtualized item. + + + + + + + + + + Represents interface for virtualized element provider + + + + + + Gets the element. + + The data. + The context. + + + + + Caches the element. + + The element. + + + + + Shoulds the update. + + The element. + The data. + The context. + + + + + Determines whether the specified element is compatible with its data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Gets the size of the element. + + The data. + + + + + Gets the size of the element. + + The element. + + + + + Clears the cached elements. + + + + + Gets or sets the default size of the element. + + + The default size of the element. + + + + + Creates the element. + + The data. + The context. + + + + + Gets the element from cache. + + The data. + The context. + + + + + Gets the element from cache or creates it. + + The data. + The context. + + + + + Pre-initialize cached element. + + The element. + The context. + + + + Caches the element. + + The element. + + + + + Determine whether the element should be updated. + + The element. + The data. + The context. + + + + + Determines whether the specified element is compatible with concrete data. + + The element. + The data. + The context. + + true if the specified element is compatible; otherwise, false. + + + + + Gets the size of the element. + + The item. + + + + + Gets the size of the element. + + The element. + + + + + Clears the cache. + + + + + Gets or sets the default size of the element. + + + The default size of the element. + + + + + Gets the cached elements count. + + + The cached elements count. + + + + + Creates the element. + + The data. + The context. + + + + + Shoulds the update. + + The element. + The data. + The context. + + + + + Represents a traverser that enumerates collection. + + + + + + Represents traverser class that enumerates items. + + + + + + Moves the previous. + + + + + + Moves to end. + + + + + + Gets or sets the position. + + + The position. + + + + + Initializes a new instance of the class. + + The collection. + + + + Advances the enumerator to the next element of the collection. + + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Moves the previous. + + + + + + Moves to end. + + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Called when items are navigated. + + The current. + + + + + Moves the next core. + + + + + + Moves the previous core. + + + + + + Gets or sets the collection. + + + The collection. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets or sets the position. + + + The position. + + + + + Occurs when items are navigated. + + + + + Moves the next core. + + + + + + Gets or sets the font for this RadListDataItem instance. + + + + + Represents a virtaulizable element interface + + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance. + + + + + Determines whether element is compatible with the specified data. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the associated data. + + + The data. + + + + + Applies or resets alternating row color of the current visual item. + + + + + Gets or sets a value indicating whether this item has odd position. + + + + + Clears all Checked Items + + + + + Represents a auto-complete list element in . + + + + + Represents a auto-complete list element in . + + + + + This class is used to represent data in a list similar to the ListBox control provided by Microsoft. + + + + + Performs events subscription to internal objects. + The base implementation must always be called. + + + + + Performs events unsubscription from internal objects. + The base implementation must always be called. + + + + + This method creates an object that implements IVirtualizedElementProvider. Child elements are not yet created + in this method. + + A new instance of an implementation of IVirtualizedElementProvider. + + + + Creates an instance of ITraverser which traverses the child elements. + + + + + + Creates an instance of ItemScroller. Child elements are not yet created in this method. + + + + + + This method provides a chance to setup the ItemScroller. + + The item scroller on which properties will be set. + + + + This method provides a chance to setup the the VirtualizedStackContainer. + + The view element on which properties will be set. + + + + Measures the item. + + The item. + Size of the available. + + + + + Gets the desired size of the item. + + The item. + + + + + Called when auto size is changed. + + + + + Gets the Element with the specified item. + + + + + + Updates on measure. + + Size of the available. + + + + + Updates the items fit to size mode. + + + + + Gets or sets the items. + + + The items. + + + + + Gets the associated scroller. + + + The scroller. + + + + + Gets or sets a value indicating whether items fit to size. + + + true if [fit items to size]; otherwise, false. + + + + + Gets or sets the items orientation. + + + The orientation. + + + + + Gets or sets a value indicating whether items auto sizing. + + + true if [auto size items]; otherwise, false. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Creates a new instance of the RadListElement class. + + + + + Creates an instance of the data layer object responsibe for items management in bound or unbound mode. + + + + + + Creates an instance of the element provider object which is responsible for mapping logical and visual items and determining + when a visual item must be updated to reflect the state of its corresponding logical item. + + + + + + Creates an instance of the visual element responsible for displaying the visual items in a particular layout. + + + + + + Finds the first item in the RadList control that matches the specified string. + + The string to search for. + Determines whether the search is case sensitive or not. + The zero-based index of the first item found; returns null if no match is found. + + + + Raises the event. + + + An instance that contains the event data. + + + + + + Suspends notifications of changing groups. + This method is cumulative, that is, if SuspendGroupRefresh is called N times, ResumeGroupRefresh must also be called N times. + + + + + Resumes refreshing of groups. + + Indicates whether refreshing of groups should be performed. + + + + Refreshes the groups. + + + + + Scrolls to the active item if it is not null and if it is not fully visible. + + + + + Forces re-evaluation of the current data source (if any). + + + + + Suspends internal notifications and processing in order to improve performance. + This method is cumulative, that is, if BeginUpdate is called N times, EndUpdate must also be called N times. + + + + + Resumes the internal notifications and processing previously suspended by BeginUpdate. + + + + + Defers the refresh. + + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Clears the currently selected items and selects all items in the closed range [startIndex, endIndex]. + + The first index at which to start selecting items. + The index of one item past the last one to be selected. + + + + Scrolls to the provided item so that the item will appear at the top of the view if it is before the currently visible items + and at the bottom of the view if it is after the currently visible items. + + The item to scroll to. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the beginning of the items. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Creates a new item traverser and updates the current. + If group refresh is suspended this method has no effect. + + + + + This method returns true if the ActiveItem is fully visible. + + + + + Gets the index of the last visible item. + + + + + Gets the index of the first visible item. + + + + + Gets the index of the middle visible item. + + + + + Determines if the provided visual item intersects the view but is not contained in it. + + + + + If the object assigned to the DataSource property is of type Component, this callback will be invoked if + the data source is disposed which cause all data items to become disposed. + + + + + Handles changes in the data layer. + Nothing will done if we the RadListElement is in a BeginUpdate state. + + + + + Syncronizes the properties of all visual elements with their data items. + + + + + When the data layer changes the current position, this callback triggers the selection logic with the new position. + + + + + Fires the SelectedIndexChanged event. + + + + + Fires the SelectedIndexChanging event. + + + + + Fires the SelectedValueChanged event if SelectedValue has actually changed since many items can have the same value. + + + + + Fires the ItemDataBinding event. + + + + + Fires the ItemDataBound event. + + + + + Fires the CreatingVisualItem event. + + + + + Fires the SortStyleChanged event. + + + + + Fires the VisualItemFormattingeEvent with the provided visual item. + + + + + Performs scrolling logic depending on the delta from the mouse wheel. + + + + + Raises the ItemsChanged event with the provided arguments. + + The arguments that contain the data relevant to the items change. + + + + Raises the ItemsChanging event with the provided arguments. + + The arguments that contain the data relevant to the pending items change. + + + + Raises the DataItemPropertyChanged + + + + + + + Handles the mouse input by finding the RadElement involved with the mouse and sending the element and event information to the appropriate + subsystem of RadListElement. + + + + + Performs logical branching depending on the type of the routed event. + + + + + Performs logical branching of the selection logic depending on the notification reason. + + + + + Handles the keyboard input by delegating the information of the event to the appropriate RadListElement subsystem. + + + + + Finds an item with the text provided by an internal search buffer after the character argument is appended to the buffer. + The search buffer is reset after a user defined time since the last character was typed. By default this is 300 ms. + Users can set the KeyboardSearchResetInterval property to a custom interval. + + A character that will be appended to the search buffer. + + + + Handles the space key press depending on the SelectionMode and the state of the control key. + + + + + This method is the entry point for the selection logic if initiated by the keyboard. + + + + + Determines whether the selection logic should select the next or the previous item depending on the which arrow key is pressed. + + + + + This method is the entry point in RadListElements selection logic. + + + + + Performs logical branching of the MultiExtended selection logic depending on the parameters. + + + + + This method performs only logical branching of the selection logic depending on the input type parameter. + + + + + This method is for clarity. CodeMultiSimple is the same as MouseMultiSimple but does not change the current position of the data layer. + + + + + Toggles the Selected state of the item at the specified index and fires selection events depending on the second argument. + + The index of the item which will selected or deselected. + Indicates whether to change the current positio of the data layer and therefore fire selecton events. + + + + Handles the MultiSimple selection logic for adding items. + + + + + Handles the MultiSimple selection logic for removing items. + + + + + Selects the item at the specified index and clears all other selected items and updates the active item. + This method triggers selection events. + + The index of the item which will be selected. + + + + Selects all items in the range [startIndex, endIndex] and clears all other selected items. + This method triggers selection events. + + The beginning of the selection range. + The end of the selected range. + + + + This method sets the provided item as active and the previous one to inactive. There can be only active item at a time. + + The item to set to an active state. + The value to which the Active property of item will be set. + + + + Sets the SelectedItem and thus SelectedIndex to the logical item with the specified value. If there are many items with the same value the first item found will be selected. + This method triggers selection events. + + The value for which to find an item. + + + + Sets the the selected data item to the specified item. If the item is different than the current one the selection events will be fired. + This method triggers selection events. + + + + + + Sets the selected index to the specified value if it is different than the current value and fires the selection events. + This method triggers selection events. + + + + + + Determines if RadListElement is ready for data binding. This is true only when Items is empty or DataSource is different from null. + If RadListElement is not ready for binding an InvalidOperationException is thrown. + + + + + Determines if this list element is ready for unbound mode. + If it is not an invalid operation exception is thrown. + RadListElement is ready for unbound mode if it has not data source set. + + + + + Returns the value of the Value property of the RadListDataItem at the specified index. + + The index of the item from which to get the Value property. + + + + + Returns the index of the provided list data item. This index determines the items position in the data view. + + The index for which to return an index. + Returns the index of the provided item. + + + + Gets the text of the data item provided in the argument depending on the ItemTextComparisonMode property. + + The data item for which to get the Text value. + The text value of the provided data item. + + + + Determines whether the provided index is in the range [0, Items.Count) + + The index to validate. + Returns true if the index is inside [0, Items.Count) and false otherwise. + + + + Swaps two integers. + + + + + Disposes every item in the Items collection. + + + + + Converts the provided ListSortDirection to SortStyle. + + The ListSortDirection to be converted to SortStyle. + The converted SortStyle value. + + + + Sets the sort comparer. + + The comparer. + The direction. + + + + Sets the sort style to the specified value and fires the SortStyle changed event if the new value is different than the previous value. + + + + + + Sets the selection mode of this RadListElement to the provided value. + + The new selection mode. + + + + Gets property name by which items will be sorted when SortStyle is set. + If DisplayMember is an empty string, items will be sorted by their text, otherwise + they will be sorted according to the DisplayMember. + + Returns the property by which items will be sorted. + + + + Clamps the provided value parameter to be be in the closed range [min, max]. + + The left bound of the range. + The right bound of the range. + The value to be clamped to the range specified by the previous two parameters. + + + + This is a helper method which keeps track of the number of subscriptions to the CurrentPositionChanged event of the data layer. + + + + + This is a helper method which keeps track of the number of unsubscriptions from the CurrentPositionChanged event of the data layer. + + + + + This method is for testing purposes. It invokes the MultiExtended selection logic with the supplied parameters. + + The index to which the selection will span starting from SelectedIndex. + An enumeration indicating whether the input comes from the keyboard, the mouse or from code. + If this flag is true the selection logic will invoke MultiExtended as if the shift key was pressed. + If this flag is true the selection logic will invoke MultiExtended as if the control key was pressed. + + + + Returns the logical item associated with the top visible item if the layout is vertical and the left most item if the layout is horizontal. + + + + + + Gets a value indicating whether the oldSelectedIndex is reset to initial state. + The old selected index is in initial state only when the list control is newly + constructed and has not yet had any selected items, or when the data layer sends + a reset notification. This happens when the data source is changed. + + + + + Gets a value indicating whether the SelectedValue property is different after the selection last changed. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + Always false when kinetic scrolling is enabled. + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Gets or sets a value indidcating the alternating item color for odd items. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether kinetic scrolling is enabled. + + + + + Gets or sets the offset of the items when they are displayed in a collapsible group. + + + + + Gets or sets the offset of the items when they are displayed in a non-collapsible group. + + + + + Gets or sets a value that indicates if this RadListElement will stop firing the ItemsChanging and ItemsChanged events. + + + + + Gets or sets a value that indicates whether text case will be taken into account when sorting. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value of this property is 300 ms. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListElement is focused. + + + + + Gets or sets a value that determines whether the FindString() method searches via the text property + set by the user or by the text provided by the data binding logic, that is, by DisplayMember. + + + + + Gets or sets a Predicate that will be called for every data item in order to determine + if the item will be visible. + + + + + Gets or sets a filter expression that determines which items will be visible. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets an object that implements IComparer and sorts the items according to its logic. + + + + + Gets or sets the active item. This property is meaningful only when SelectionMode is MultiSimple or MultiExtended with the Control key pressed. + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + Gets or sets the SelectionMode which determines selection behavior of RadListElement. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + Setting this property throws an InvalidOperationException if Items is not empty and the data source is null. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets a string which will be used to get a description text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets a string which will be used to get a description text string for each visual item. This property can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the item height for the items. This property is disregarded when AutoSizeItems is set to true. + + + + + Gets or sets the sort style. It can be Ascending, Descending or None. Sorting is performed according to the property specified by DisplayMember. + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + Gets or sets the scrolling mode. + + + + + Gets a boolean value that indicates whether the is a filter currently set either with the Filter or FilterExpression properties. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + This event fires when the SelectedValue changes. This is will not always fire when the SelectedItem or SelectedIndex changes because the new item may have the same value. + + + + + This event fires when selected index changes. This always happens when the SelectedItem changes. + + + + + This event fires before SelectedIndexChanged and provides a means for cancelling the whole selection operation. + Someties this event will not fire since cancelling the change is not possible, for example when the DataSource is set to null. + + + + + This item fires for data item that is being created during data binding and fires before the ItemDataBound event. The event provides a means for changing the instance of the data item + to a custom data item. + + + + + This event fires after a data item has been created and bound. + + + + + This event fires while creating visual items. This happens on during initial layout and during resizing if the new size is larger and thus allowing more items to be visualized. + The event provides a means to create a custom visual item. + + + + + This event fires after the sorting style changes. + + + + + The visual item formatting fires whenever the state of a visible logical item changes and when scrolling. + + + + + This event fires whenever an item is added, removed, set or if the whole items collection was modified. + + + + + This event fires right before adding, removing or setting an item. This event will not fire if an item is added to a data source directly + because there is no way for RadListElement to be notified before the change. + + + + + This event fires whenever a RadProperty of a data item changes. This event is most often used to listen changes in Selected and Active properties of the data items. + + + + + This class is used to compare data items when sorting in ascending order. + + + + + This class is used to compare data items when sorting in descending order. + + + + + Raises the event. + + The action. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether the two text variables are equal + + The suggestion. + The pattern. + + true if the specified suggestion is matching; otherwise, false. + + + + + Determines whether the suggested text matches the pattern text + + The suggestion. + The pattern. + + true if [is exact suggestion] [the specified suggestion]; otherwise, false. + + + + + Suspends the event. + + + + + Resumes the event. + + + + + Performs text suggestion for concrete text pattern + + The pattern. + The start position. + The end position. + + + + Performs text suggestion for concrete text pattern + + The pattern. + The start position. + The end position. + if set to true [notify]. + + + + Performs text suggestion for concrete text pattern + + The pattern. + + + + Custom filtering predicated + + The item. + + + + + Custom filtering predicated. + + The item. + + + + + Sets the suggested text. + + The text. + The action. + + + + Gets the suggested text from + + The item. + if set to true [perform append]. + + + + + Gets the first fully visible item. + + + + + + Gets the last fully visible item. + + + + + + Gets the fully visible item. + + if set to true [first item]. + + + + + Gets the visual item at point. + + The location. + + + + + Finds by text + + The text. + + + + + Gets or sets the auto complete mode. + + + The auto complete mode. + + + + + Gets the suggested text. + + + + + Gets the text search criteria. + + + + + Gets a value indicating whether this text and suggested text are matched. + + + true if they are matched; otherwise, false. + + + + + Gets a value indicating whether the auto-complete mode is suggest mode. + + + true if the mode is suggest mode; otherwise, false. + + + + + Gets a value indicating whether the auto-complete mode is append mode. + + + true if the mode is append mode; otherwise, false. + + + + + Gets or sets the start position where the suggestion is performed + + + + + Gets or sets the end position where the suggestion is performed + + + + + Occurs when suggested text is changed + + + + + Represents a CheckedDropDown List. The RadCheckedDropDownList class is essentially a simple + wrapper for the RadDropDownListElement. The latter + may be included in other telerik controls. All UI and logic functionality is + implemented by the RadDropDownListElement class. + RadDropDownList act to transfer event to and from its + RadDropDownListElement instance. + + + + + Represents a combo box class. The RadDropDownList class is essentially a simple + wrapper for the RadDropDownListElement. The latter + may be included in other telerik controls. All UI and logic functionality is + implemented by the RadDropDownListElement class. + RadDropDownList act to transfer event to and from its + RadDropDownListElement instance. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the DropDownList box. + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Raises the event. + + + An instance that contains the event data. + + + + + + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from zero based index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Forces re-evaluation of the current data source (if any). + + + + + Displays the popup on the screen. + + + + + HIde the popup from the screen. + + + + + Call BeginUpdate at the begining of a block that makes many modifications in the GUI + + + + + + Call EndUpdate at the end of a block that makes many modifications in the GUI + + + + + + Defers the refresh. + + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + /// + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets that RadListDataItem Image will be displayd in Editor Element when DropDownStyle is set to DropDownStyleList + \ + + + + Gets a reference to the drop down form associated with this RadDropDownList. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + + Rotate items on double click in the edit box part + + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + + Gets or sets the sort style. It can be Ascending, Descending or None. Sorting is performed according to the property specified by DisplayMember. + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + + /// + Gets or sets the easing type of the animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + + + Gets or sets the height in pixels of the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + DefaultItems count in drop-down portion of the RadDropDownList. + + + + + Gets or sets the drop down maximum size. + + + + Represent the DropDownListElement element + + + + + Represent the List element + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Indicating whether the Popup part of the control + are displayed. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets an object that implements IComparer which is used when sorting items. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + Occurs when a key is pressed while the control has focus. + + 1 + + + + Occurs when a key is released while the control has focus. + + 1 + + + + Occurs when a key is pressed while the control has focus. + + + + + Fires when the popup-form is opened. + + + + + Fires when the popup-form is about to be opened. + + + + + Fires when the popup is about to be closed. + + + + + Fires when the popup is closed. + + + + + This event fires when the selected index property changes. + + + + + This event fires before SelectedIndex changes. This event allows the operation to be cancelled. + + + + + This event fires only if the SelectedValue has really changed. For example it will not fire if the previously selected item + has the same value as the newly selected item. + + + + + This event fires before a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event fires for every item provided by the data source. + This event allows a custom RadListDataItem to be provided by the user. + + + + + This event fires after a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event is fired for every item provided by the data source. + + + + + This event allows the user to create custom visual items. + It is fired initially for all the visible items and when the control is resized afterwards. + + + + + This event fires when the SortStyle property changes. + + + + + The VisualItemFormatting event fires whenever a property of a visible data item changes + and whenever a visual item is associated with a new data item. During scrolling for example. + + + + + This property is not applicable for RadCheckedDropDownList + + + + + This property is not applicable for RadCheckedDropDownList + + + + + Show or Hide the CheckAll item + + + + + Gets or sets a value indicating whether the hosted textbox is multiline. + + + true if multiline; otherwise, false. + + + + + This property is not applicable for RadCheckedDropDownList. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a value specifying the style of the DropDownList + This property is not applicable for RadCheckedDropDownList + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets a value indicating whether items checked state is synchronized with the text in the editable area. + + + + + Gets the associated auto complete text box element. + + + + + Occurs when text is validating as token + + + + + /// Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + TextBox Property + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Represents the base for all editor elements. Provides the default visual states such as IsFocused and Disabled. + + + + + This interface supports the editor infrastructure of the RadGridView. + + + + + Occurs when the editor is validating the value. + + + + + Occurs when the editor is finished validating the value. + + + + + Occurs when the editor value is being changed. Cancelable event. + + + + + Occurs when the value of the editor changes. + + + + + Occurs when internally the editor detects an error or when the Validating event fails. + + + + + Gets the VisualElement that must receive the focus, when the editor is invoked. + + + + + + Initializes the provider. + + + + + Initializes the provider. + + value to be pre-loaded inside the initialized editor. + + + + Initializes the provider. + + the owner + value to be pre-loaded inside the initialized editor. + + + + Occurs when internally the editor detects an error or when the Validating event fails. + + + + + Gets whether the editor is instantiated on demand or is always availabele. + Example: GridBooleanCellElement and GridViewBooleanColumn. + + + + + Closes the popup if it is open, or shows the popup if it is closed. + + + + + Closes the popup with a RadPopupCloseReason.CloseCalled reason. + + + + + Closes the popup with the provided reason for closing. + + the reason for the close operation as specified through RadPopupCloseReason enumeration. + + + + Displays the popup on the screen. + + + + + Used to initialize the size of the popup + when it is initially opened and the + element tree is loaded. + + + + + Performs the core popup display logic. + + The popup form that is about to be displayed. + + + + Gets the screen coordinated where the popup should be displayed. + + + + + + + Gets the display size for the popup. + + The popup which size should beretrieved. + True to perform explicit measure, false otherwise. + + + + + Applies any Min/Max size restrictions to the popup form. + + + + + + Syncronizes the theme of the editor itself with the popup that is about to be displayed. + + + + + + Determines whether the popup form may be displayed. + + + + + + Creates the popup instance. You have to override this method in order to provide a popup + that is specialized by its content. Example: In a combo box you have to override and provide a specialized class + that contains and handles the listbox element. + + The popup instance. + + + + Gets a valid instance of the popup, that is properly + initialized to work with the PopupEditorBaseElement. + + The popup instance. + + + + Gets the popup form + + + + + + + + + + + + + + + + + + + + + + + + + Main entry point for updating DropDownList + + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the ComboBox. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + AutoCompleteValueMember Property + + + + + AutoCompleteDataMember Property + + + + + Gets or sets the height in pixels of the drop-down portion of the ComboBox. + + + + + Popup Property + + + + + DefaultItemsCountInDropDown Property + + + + + The input element hosted in the popup form. In the case of + DropDownList the control is a ListElement. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + Selects all items if the SelectionMode allows it. + + Selecting all items is not a valid operation in the current selection mode. SelectionMode = + this.selectionMode.ToString() + . + + + + Defers the refresh. + + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default FindStringComparer uses the System.String.StartsWith() method. + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + main update entry point + + contains notification context + + + + This method is used internally! + + + + + Creates the auto complete append handler. + + + + + + Creates the auto complete suggest helper. + + + + + + Gets or sets a value indicating whether the SelectedIndex is synchronized with the text in the editable area. + + + + + Get or set the text in Editable area + + + + + Gets a value that indicates if the popup associated with this RadDropDownListElement is open. + + + + + Represent list of all AutoComplete Helpers + + + + + Gets or sets that RadListDataItem Image will be displayd in Editor Element when DropDownStyle is set to DropDownStyleList + + + + + Gets or sets a Predicate that will be called for every data item in order to determine + if the item will be visible. + + + + + Gets or sets a filter expression that determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + EditableElement Property + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a value specifying the style of the combo box. + + + + + + + + + + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + For information on this property please refer to the MSDN. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the item height for the items. + + + + + TextBox Property + + + + + ArrowButton Property + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + Rotate items on double click in the edit box part + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + AutoCompleteSuggest Property + + + + + AutoCompleteAppend Property + + + + + Get or sets the minimum width of the arrow button element. + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the drop down minimum width. + + + + + This property is not applicable for RadCheckedDropDownList + + + + + This property is not applicable for RadCheckedDropDownList + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets a value indicating whether items checked state is synchronized with the text in the editable area. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a value indicating whether the drop down list is read only. + + + true if the drop down list is read only; otherwise, false. + + + + + Indexes the of. + + The item. + + + + + Indexes the of. + + The text. + + + + + Determines whether [contains] [the specified text]. + + The text. + + true if [contains] [the specified text]; otherwise, false. + + + + + Displays a flat collection of labeled items with checkbox, each represented by a ListViewDataItem. + + + + + Displays a flat collection of labeled items, each represented by a ListViewDataItem. + + + + + Creates an instance of . + + + + + Executed on EndInit() method. + + The sender. + The event args. + + + + Suspend any item change notifications until is called. + + + + + Resumes the item change notifications. + + + + + Finds an item with the specified key. + + The key of the searched item. + + + + + Finds an item with the specified key. + + The key of the searched item. + Indicates if the search should check only visible items. + + + + + Selects a set of items. + + The items to select. + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Saves the changes. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Discards the changes. + + [true] if success, [false] otherwise + + + + Expands all the groups in the control. + + + + + Collapses all the groups in the control. + + + + + Checks the selected items. + + + + + Unchecks the selected items. + + + + + Checks all of the items. + + + + + Unchecks all of the items. + + + + + Fires when a group has been expanded. + + + + + Fires when a group is about to expand. Cancelable. + + + + + Occurs when the BindingContext has changed. + + + + + Occurs when the process of binding to a data source has finished + + + + + Occurs when a ListViewDataItem is about to be selected. Cancelable. + + + + + Occurs when the content of the SelectedItems collection has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the ViewType of RadListView is changed. + + + + + Occurs when the ViewType of RadListView is about to change. Cancelable. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user moves the mouse over a ListViewDataItem. + + + + + Occurs when the user hovers a ListViewDataItem. + + + + + Occurs when the mouse pointer enters a ListViewDataItem. + + + + + Occurs when the mouse pointer leaves a ListViewDataItem. + + + + + Occurs when the user clicks a ListViewDataItem. + + + + + Occurs when the user double-clicks a ListViewDataItem. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Occurs when a ListViewDataItem changes its state and needs to be formatted. + + + + + Occurs when a ListViewDataItem needs to be created. + + + + + Occurs when a BaseListViewVisualItem needs to be created; + + + + + Occurs when a DetailsView cell needs to be formatted. + + + + + Occurs when a data-bound item is being attached to a ListViewDataItem. + + + + + Occurs when the CurrentItem property is changed. + + + + + Occurs when the CurrentItem property is about to change. Cancelable. + + + + + Occurs when an editor is required. + + + + + Occurs when an edit operation is about to begin. Cancelable. + + + + + Occurs when an editor is initialized. + + + + + Occurs when a ListViewDataItem is edited. + + + + + Fires when a validation error occurs. + + + + + Occurs when an edit operation needs to be validated. + + + + + Occurs when the value of a ListViewDataItem is changed. + + + + + Occurs when the value of a ListViewDataItem is about to change. Cancelable. + + + + + Occurs when a needs to be created. + + + + + Occurs when a needs to be created. + + + + + Occurs when an item is about to be removed using the Delete key. Cancelable. + + + + + Occurs when an item is removed using the Delete key. + + + + + Gets or sets a value indicating whether column names which differ only in the casing are allowed. + + + + + Gets or sets the position of the checkboxes when ShowCheckBoxes is true. + + + + + Gets or sets the alignment of the checkboxes within the item when ShowCheckBoxes is true. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the last added item in the RadListView DataSource will be selected by the control. + + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets a value indicating whether the checkboxes should be in ThreeState mode. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + + + + + Gets or sets a value indicating whether grid lines should be shown in DetailsView. + + + + + Gets or sets a value indicating whether items can be selected with mouse dragging. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. Always false when lasso selection is enabled. + + + + + Gets or sets a value indicating whether items should react on mouse hover. + + + + + Gets or sets a value indicating whether the items should be sorted when clicking on header cells. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default item size. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets the space between the items. + + + + + Gets a collection of filter descriptors by which you can apply filter rules to the items. + + + + + Gets or sets the filter predicate used for filtering operation. + + The filter. + + + + Gets a value indicating whether the control is in bound mode. + + + + + Gets a collection containing the groups of the RadListView. + + + + + Gets or sets the value member. + + + + + Gets or sets the display member. + + + + + Gets or sets the checked member. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether custom grouping is enabled. + + + + + Gets a collection of SortDescriptor which are used to define sorting rules over the + ListViewDataItemCollection. + + + + + Gets a collection of GroupDescriptor which are used to define grouping rules over the + ListViewDataItemCollection. + + + + + Gets or sets the data source of a RadListView. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the selected item. + + + + + Gets or sets the index of the selected item. + + + + + Gets or sets the current item. + + + + + Gets or sets the current column in Details View. + + + + + Indicates whether there is an active editor. + + + + + Gets or sets a collection of ListViewDetailColumn object which represent the columns in DetailsView. + + + + + Gets or sets a collection of ListViewDataItem object which represent the items in RadListView. + + + + + Gets or sets a value indicating whether the column headers should be drawn. + + + + + Gets or sets a value indicating whether the items should be shown in groups. + + + + + Gets a collection containing the selected items. + + + + + Gets a collection containing the checked items. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating if the user can resize the columns. + + + + + Gets or sets value indicating if the user can reorder columns via drag and drop. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets value indicating whether multi selection is enabled. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets value indicating whether the user can remove items with the Delete key. + + + + + Gets the currently active editor. + + + + + Gets or sets the type of the view. + + + + + Gets the of the control. + + + + + Gets or sets the height of the header in Details View. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListView is focused. + + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + RadListView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadListView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + Returns a flag indicating whether the sizing element is at the bottom of the window. + If true, the size of the popup should increase. If false, the size should decrease. + + + + + + Gets or sets a boolean value that + determines whether the SizeGripItem + can resize the hosting control. + + + + + Base interface for providers. + + The type used to specialize the provider implementation. + + + + Gets IEnumerable<T> for items that match the conditions defined by the specified predicate. + + The Predicate<T> delegate that defines the conditions of the item to search for. + IEnumerable<T> for items that match the conditions defined by the specified predicate, if found; + + + + Inserts an item of type T. + + The item of type T to insert. + + + + Updates he first occurrence of a specific item in the data store. + + The item of type T to update. + Name of the property which value changed. + Null or an empty string if all properties should be updated. + + + + Removes the first occurrence of a specific item from the data store. + + The item of type T to delete. + + + + The ItemsChanged event is raised by the provider to inform all listeners that the items in the data store have changed. + + + + + The PositionChanged event is raised by the provider to inform all listeners that the current position in data items list has changed. + + + + + Gets or sets the current position in the list of data items. + + + + + Gets or sets a data store mapping to the provider. + + + + + Associates a source properties collection with the corresponding properties collection exposed by the scheduler events. + It is used in common by all RadScheduler data providers. + Contains a collection of SchedulerMapping objects, and is implemented by the + + + + + Searches for a SchedulerMapping instance that binds a property of an item from the data store to + a property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + Property name of an item in RadScheduler. + The first element that matches the property name, if found. + + + + Searches for a SchedulerMapping instance that binds a property of an item from the data store to + a property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + Property name of an item in the data store. + The first element that matches the property name, if found. + + + + Represents the method that will handle the type conversion between the values of corresponding properties. + + The value to be converted. + The converter applied. + The converted value. + + + + Contains information about a list change event. + + + + + + Initializes a new instance of the class. + + Type of the list change. + + + + Initializes a new instance of the class. + + Type of the list change. + The new item. + The new index. + + + + Initializes a new instance of the class. + + Type of the list change. + The changed item. + Name of the property. + + + + Initializes a new instance of the class. + + Type of the list change. + The new item. + The old item. + + + + Initializes a new instance of the class. + + Type of the list change. + The new items. + + + + Initializes a new instance of the class. + + Type of the list change. + The changed items. + Name of the property. + + + + Initializes a new instance of the class. + + Type of the list change. + The new items. + The old items. + + + + Gets the type of the list change. + + The type of the list change. + + + + Gets the new items. + + The new items. + + + + Gets the old items. + + The old items. + + + + Gets the name of the property. + + The name of the property. + + + + Represents the simple binding between the property of an item from the data store and + the property of an item from RadScheduler. The RadScheduler items are events, resources, etc. + + + + + Initializes a new instance of the SchedulerMapping class that simple-binds the + indicated property of an item from RadScheduler to the specified item from the data store. + + Property name of an item in RadScheduler. + Property name of an item in the data store. + + + + The callback that converts the given value object from the data store to the specified type of the RadScheduler corresponding item. + + + + + The callback that converts the given value object from a RadScheduler item to the specified type of the data store corresponding item. + + + + + Gets or sets the RadScheduler item property name that is mapped. + + + + + Gets or sets the data store item property name that is mapped. + + + + + Base class for all generic RadDock objects - such as Services, Settings, etc. + + + + + Forces object clean-up and resource release. + + + + + Performs the actual dispose logic. + + True to notify that managed resources should also be disposed. + + + + Disposes any managed resources associated with this object. + + + + + Disposes any unmanaged resources associated with this instance. + + + + + Raises the PropertyChanging notification. + + + True to indicate that the change is accepted, false otherwise. + + + + Raises the PropertyChanged event. + + + + + + Determines whether the property with the specified name needs serialization. + + + + + + + Notifies that the object is disposed. + + + + + + + + + + Represents the action button element + + + + + Represents a button element. The button element could be placed in each control's + Items collection. It encapsulates all the necessary logic related to the user + interaction and UI. The RadButton class is a simple + wrapper for the RadButtonElement class. The RadButton + acts to transfer events to and from its corresponding RadButtonElement instance. + The RadButtonElement which is essentially the RadButton control may be nested in + other telerik controls. + + + + + Represents a button item. + + + + Initializes a new instance of the RadButtonItem class. + + + + + Initializes a new instance of the RadButtonItem class and sets it's Text property to + the provided string. + + + + + + Initializes a new instance of the RadButtonItem class, sets it's Text and Image + properties to the provided string and Image. + + + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Specifies the options for display of image and text primitives in the element. + + + + + Gets a value indicating whether the button item is in the pressed state. + + + + + Determines if this button is the default button for the form it is on. + + + + + Determines whether the Image value of the current item is shared (reused by ither items). + This flag is true by default. If it is set to false, then the item itselft will dispose the Image upon its disposal. + + + + + Initializes a new instance of the RadButtonElement class. + + + + + + + + + + + + + + + + + Gets the FillPrimitive element that is reponsible for painting of the background of the control + + + + + Gets the BorderPrimitive element that is reponsible for painting of the border of the control + + + + + Gets the TextPrimitive element that is reponsible for painting of the border of the control + + + + + Gets a reference to the ImagePrimitive of the RadButtonElement. + + + + + Gets a reference to the FocusPrimitive of the RadButtonElement. + + + + + Gets a reference to the ImageAndTextLayoutPanel of the RadButtonElement. + + + + + Gets the large image that is displayed on a button element. + + + + + Gets the large image list index value of the image displayed on the button control. + + + + + Gets the large key accessor for the image in the ImageList. + + + + + Gets or sets the large image that is displayed on a button element. + + + + + Gets or sets the small image list index value of the image displayed on the button control. + + + + + Gets or sets the small key accessor for the image in the ImageList. + + + + + Specifies whether the button should use the original image list or the small image list. + + + + + Angle of rotation for the button image. + Unlike AngleTransform the property ImagePrimitiveAngleTransform rotates the image only. + AngleTransform rotates the whole button + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + Gets or sets a value indicating whether the border is shown. + + + + + This property is used internally! + + + + + Values used by RadDropDownButton, to determine the mouse position relative to the action or arrow button part. + + + + + This class represents the popup of the + control. + + + + + Represents a drop down menu used in radComboBox and radMenu. + + + + + Represents a base class for all popup-forms used throughout the suite. + + + + + An interface for all Popup-forms used in RadControls for WinForms. + + + + + Shows the IPopupControl at the specific location. + + An instance of the Rectangle struct + which represents a portion of the screen which the IPopupControl + is aligned to. + + + + Closes the IPopupControl. + + + + + Tries to close the . + + An instance of the class + containing information about the close request. + + + + This method determines whether the IPopupControl can be closed. + Used in the PopupManager class to prevent the IPopupControl from closing + in specific occasions. + + The reason why the IPopupControl is closed. + True if the IPopupControl can be closed, otherwise false. + + + + Executes when a key is pressed. + + An instance of the + struct which contains the key information. + A boolean value that determines whether the + IPopupControl processes the message. + + + + Callback for handling the WM_MOUSEWHEEL message. + + + + True if the message is processed, false otherwise. + + + + Gets a instance that represents + a collection of logical children of this IPopupControl. + The OwnerPopup property of these children would point + to this IPopupControl instance. + + + + + Gets the owner IPopupControl of this IPopupControl. + + + + + Gets the Bounds rectangle of the IPopupControl. + + + + + Gets the owner element of the IPopupControl. + + + + + Creates an instance of the RadPopupFormBase class. + + + + + Shows the popup based on the value + set to its Location property. + + + + + Shows the popup at the location passed + as a parameter. The location is in screen coordinates + + An instance of the struct that represents the location. + + + + Shows the control based on the screen rectangle + of a given control. + + The control which defines the location of the popup. + + + + Closes the popup. + + + + + Fires when the popup is opened. + + + + + Fires when the popup is about to open. + + A CancelEventArgs object that contains information about the event + + + + Fires when the popup is closed. + + A RadPopupClosedEventArgs instance + that contains information about what caused the popup to close. + + + + Fires when the popup is about to close. + + A RadPopupClosingEventArgs instance that + contains information about the event + + + + Updates the Aero effects support upon property change. + + + + + Updates the location of the popup based on the + alignment rectangle and the current alignment settings. + You can adjust the alignment settings by using the + VerticalPopupAlignment and HorizontalPopupAlignment properties. + + The alignment rectangle based on which the popup is positioned. + + + + Updates the location of the popup based on the last used + alignment rectangle and the current alignment settings. + You can adjust the alignment settings by using the + VerticalPopupAlignment and HorizontalPopupAlignment properties. + + + + + This method returns a point which defines the position of the popup. + By default, aligns the popup based on the + and the current alignment settings. You can adjust the alignment settings + by settin the HorizontalPopupAlignment and VerticalPopupAlignment properties. + + The alignment rectangle based on which + the popup is aligned. + An instance of the struct + that represents the calculated position of the popup. + + + + This method returns a point which defines the position of the popup. + By default, aligns the popup based on the + and the current alignment settings. You can adjust the alignment settings + by settin the HorizontalPopupAlignment and VerticalPopupAlignment properties. + + An instance of the class + that represents the screen where the popup is about to be positioned. + The alignment rectangle based on which + the popup is aligned. + An instance of the struct + that represents the calculated position of the popup. + + + + Gets the screen on which the popup will be displayed. + + The alignment rectangle for the popup. + An instance of the class that represents + the screen where the popup will be displayed. + + + + Gets an instance of the class + that represents the screen where the popup is displayed. + + + + + Gets a which represents the available bounds for the popup to show. + By default this method returns the bounds of the screen. + + An instance of the class that represents + the active screen where the popup is about to be shown. + An instance of the struct that represents the + available bounds for the popup based on the active screen. + + + + Calculates the horizontal position of the popup + according to the current + and . + + The screen in which the popup will be aligned. + The alignment rectangle of the popup. + The calculated location that will be corrected if needed. + An instance of the struct that represents the corrected location of the popup + + + + Calculates the vertical position of the popup + according to the current + and . + + The screen in which the popup will be aligned. + The alignment rectangle of the popup. + The calculated location that will be corrected if needed. + An integer that represents the corrected vertical location of the popup + + + + Calculates the horizontal popup location based on the . + This method uses the HorizontalPopupAlignment property setting. + + An instance of the struct + that represents the alignment rectangle. + Returns an integer that represents the X coordinate of the popup. + + + + Calculates the vertical popup location based on the . + This method uses the VerticalPopupAlignment property setting. + + An instance of the struct + that represents the alignment rectangle. + Returns an integer that represents the Y coordinate of the popup. + + + + Fires when a drop-down animation is about to begin. + + + + + This method is executed when the popup needs to receive manual horizontal alignment. + This can happen when there is no reasonable possibility for the + alignment routines to define a proper horizontal position for the popup. + In this way the developer is enabled to define a horizontal position + according to their preferences. + + The proposed alignment rectangle with screen coordinates.. + The proposed coordinates. + The proposed available space for the popup.. + An instance of the struct that represents the location of the popup. + + + + Checks whether the current alignment rectangle intersects with the popup's bounds + according to a given popup location. + + An instance of the struct that represents + the current alignment rectangle. + An instance of the struct that represents the proposed popup location. + An instance of the struct that represents the available bounds on the screen. + An instance of the struct that represents the result of the operation. + + + + This method is executed when the popup needs to receive manual vertical alignment. + This can happen when there is no reasonable possibility for the + alignment routines to define a proper vertical position for the popup. + In this way the developer is enabled to define a vertical position + according to their preferences. + + The proposed alignment rectangle with screen coordinates.. + The proposed coordinates. + The proposed available space for the popup.. + An instance of the struct that represents the location of the popup. + + + + Shows the popup. + + The alignment rectangle. + + + + Closes the popup. + + The info. + + + + Called when the popup is closing. + + The info. + + + + + Called when popup is closed. + + The info. + + + + Closes the IPopupControl. + + + + + + This method determines whether the IPopupControl can be closed. + Used in the PopupManager class to prevent the IPopupControl from closing + in specific occasions. + + The reason why the IPopupControl is closed. + + True if the IPopupControl can be closed, otherwise false. + + + + + Executes when a key is pressed. + + An instance of the + struct which contains the key information. + + A boolean value that determines whether the + IPopupControl processes the message. + + + + + Determines whether the MouseWheel event is handled by the popup. + + + + + + + + Raises the MouseWheel event. + + + + + + Gets or sets the direction of the drop-down + animation. + + + + + Gets or sets the easing type for the drop down animations. + + + + + Gets or sets the count of the frames of the drop down animation. + + + + + Gets or sets a bool value determining + whether popup animation is enabled. + + + + + Gets or sets a value determining what animation type to use when showing the popup. + + + + + Gets or sets the frame count + for the fade animation. + + + + + Gets or sets the time interval for each fade animation frame. + + + + + Gets or sets a float value that determines the opacity of the popup. + This property accepts values from 0.0 to 1.0. For example, + to make the popup semi-transparent, set the property to 0.5. + + + + + Gets or sets a boolean value which determines + whether the popup drops a shadow. + + + + + Enables the support for Windows Vista DWM effects. + + + + + Gets or sets a value indicating the type + of the fade animation. + + + + + Gets or sets a value from the enum + which defines how the size of the popup is fit to the currently active screen. + + + + + Gets or sets a value from the enum + which determines what part of the screen is considered when positioning the popup. + + + + + Gets or sets a value from the which defines how the popup will be positioned according to the + alignment rectangle when its location cannot be adjusted so that it meets all popup alignment and alignment correction mode requirements. + + + + + Defines how the popup will be horizontally aligned in case of lack of + screen space. + + + + + Defines how the popup will be vertically aligned in case of lack of + screen space. + + + + + Gets or sets a value that defines the vertical alignment + of the popup based on the alignment rectangle passed + in the ShowPopup method. + + + + + Gets or sets a value that defines the horizontal alignment + of the popup based on the alignment rectangle passed + in the ShowPopup method. + + + + + Gets the RadElement that owns this popup. + + + + + + + + + + Gets a instance that represents + a collection of logical children of this IPopupControl. + The OwnerPopup property of these children would point + to this IPopupControl instance. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + Fires when a fade animation has finished. The + event args contain information about the type of the animation. + + + + + Fires when the popup-form is about to be opened. + + + + + Fires when the popup-form is opened. + + + + + Fires when the popup is about to be closed. + + + + + Fires when the popup is closed. + + + + + Creates an instance of the PopupAnimationProperties class. + This class encapsulates a WindowAnimationEngine instance + and exposes its properties. + + The WindowAnimationEngine instance. + + + + Gets or sets the direction of the drop-down animation. + + + + + Gets or sets the count of the frames of the animation. + + + + + Gets or sets the easing type of the animation. + + + + + Gets an integer value representing the animation + step. + + + + + Gets the + instance associated with the AnimationProperties instance. + + + + + Gets a boolean value indicating whether the popup is visible. + + + + + Gets menu items collection + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Initializes a new instance of the RadDropDownMenu class + + + + + Creates an instance of the RadDropDownMenu class. + + An instance of the RadElement class + that represents the owner of this drop down menu + + + + Displays the RadDropDownMenu in its default position. + + + + + Displays the RadDropDownMenu relative to the specified screen location. + + The horizontal screen coordinate, in pixels. + The vertical screen coordinate, in pixels. + + + + Displays the RadDropDownMenu relative to the specified screen location. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + + + + Positions the ToolStripDropDown relative to the specified screen location and with the specified direction. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the RadDropDownMenu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + + + + Positions the RadDropDownMenu relative to the specified control location and with the specified direction. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the RadDropDownMenu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + + + + Positions the RadDropDownMenu relative to the specified RadItem location and with the specified direction. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the RadDropDownMenu relative to the specified RadItem location and + with specified direction and offset according to the owner. + + The RadItem that is the reference point for the RadDropDownMenu position. + Specifies the offset from the owner in pixels. + One of the RadDirection values. + + + + Gets the item that has been clicked. This property is valid when the drop-down is closed by an item click. + + + + + Gets or sets the popup element. + + + + + Indicates whether the DropDown contains one or two cloumns of items. + + + + + Gets or sets menu header column text + + + + + Gets or sets menu header column image + + + + + Represents a combo box element. + + + + + Initializes a new instance of the RadComboBoxElement class. + + + + + Gets the text of the specified item. + + + + + Raises the CaseSensitiveChanged event. + + + + + Raises the DropDownStyleChanged event. + + + + + Raises the SelectedIndexChanged event. + + + + + Raises the SelectedValueChanged event. + + + + + Raises the SortedChanged event. + + + + + Processes the Enter key + + An instance of + + + + Processes the Escape key + + An instance of + true if the event is processed, false otherwise + + + + Finds the first item in the combo box that starts with the specified string. + + The String to search for. + The first RadCOmboBoxItem found; returns null if no match is found. + + + + Finds the first item in the combo box that matches the specified string. + + The String to search for. + The first item found; returns null if no match is found. + + + + Finds the index of the item with the specified text. The passed argument + is compared with the DisplayMember value for each item in the items collection. + + The text of the item which index is to be acquired. + The index of the item if found, otherwise -1. + + + + Call BeginUpdate at the begining of a block that makes many modifications in the GUI + + + + + + Call BeginUpdate at the end of a block that makes many modifications in the GUI + + + + + + Call the GetItemHeight member function to retrieve the height of list items in a combo box. + + Specifies the item of the combo box whose height is to be retrieved. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the combo box. + + + + + LimitToList Property + + + + + Gets a value indicating whether a keyboard command has been issued. + + + + + Gets or set the value in Milliseconds indicating delay between last key press and filtering operation + + + + + Gets a value indicating whether the drop down is shown. + + + + + Gets the arrow button element. + + + + + Gets the fill element. + + + + + Gets the border element. + + + + + Specifies the mode for the automatic completion feature used in the ComboBox + and the TextBox controls. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + Rotate items on double click in the edit box part + + + + + Gets or sets a boolean value determining whether the user can scroll through the items + when the popup is closed by using the mouse wheel. + + + + + Gets or sets the height in pixels of the drop-down portion of the ComboBox. + + + + + Gets or sets a value specifying the style of the combo box. + + + + + Gets whether the text input control of the combo box is in editable mode. + + + + + Gets or sets the width of the of the drop-down portion of a combo box. + + + + + Gets or sets a value indicating whether the control should show or not partial items. + + + + + Gets a collection representing the items contained in this ComboBox. + + + + + Gets a value indicating whether the combo box is displaying its drop-down portion. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the ComboBox. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets the currently selected item. + + + + + Gets or sets the index specifying the currently selected item. + + + + + Gets or sets the text that is selected in the editable portion of the ComboBox. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Gets or sets a value indicating the sort style the of items in the combo box. + + + + Gets or sets the displayed text. + + + + Gets or sets a value indicating whether the ComboBox DropDown will be enabled when it shows. + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + Gets the TextBoxElement which is used in the ComboBox. + + + + + Gets or sets a value indicating whether RadScrollViewer uses UI virtualization. + + + + + Gets or sets the property to display. + + + + + Gets or sets the data source. + + + + + Gets or sets the IFormatProvider that provides custom formatting behavior. + + + + + Gets or sets the format-specifier characters that indicate how a value is to be displayed. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + + Gets or sets value specifying the currently selected item. + + + + + Gets or sets t he property to use as the actual value for the items. + + + + + Occurs when the CaseSensitive property has changed. + + + + + Occurs when the SelectedIndex property has changed. + + + + Fires when the selected value is changed. + + + + Occurs when the Sorted property has changed. + + + + + Represents a date time editor. + + + + + Abstract class that represents basic logic for editor + + + + + Sets the IsInBeginEditMode property. This method is used internally. + + The new value of the IsInBeginEditMode property + + + + Initializes the editor. Used internally in RadGridView. + + The owner of this editor. + The value of the editor. + + + + Starts the editing process. Used internally in RadGridView. + + + + + Finishes the editing process. Used internally in RadGridView. + + + + + + Validates the value currently entered in the editor. + + + + + + Begins the editor initialization process. + + + + + Finishes the editor initialization process. + + + + + Fires the event. + + A that contains the event data. + + + + Fires the event. + + + + + Fires the event. + + A that contains the event data. + + + + Fires the event. + + + + + Fires the event. + + + + + + Creates a new editor element. + + a if successful + + + + Gets a value indicating whether this is the active editor in grid. + + + + + Gets a value indicating whether the editor is initializing. + + + + + Gets a value indicating whether the editor is in BeginMode mode. + + + + + Gets the element that owns this editor. + + + + + Gets a value indicating whether the editor is in RightToLeft mode. + + + + + Gets the type of the editor value + + + + + Gets or sets the editor value. + + + + + Gets a value indicating whether the editor value is modified. + + + + + Gets the associated with this editor. + + + + + Fires when changing the value of the editor. + + + + + Fires when the editor value has been changed. + + + + + Fires when the editor is validating. + + + + + Fires when the editor has finished validating. + + + + + Fires when a validation error is occurred. + + + + + Initializes a new instance of the RadDateTimeEditor class. + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + Gets or sets the minimum date and time that can be selected in the editor. + + + + + Gets or sets the maximum date and time that can be selected in the editor. + + + + + Gets or sets the custom date/time format string. + + + + + Represents a date time editor element used in RadDateTimeEditor + + + + + Represents the RadDateTimePickerElement class + + + + + Represents the IsDropDownShown dependancy property + + + + + Represents RadDateTimePickerElement's constructor + + + + + Represents RadDateTimePickerElement's constructor + + + + + + Creates a new instance of + + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Gets the minimum date value allowed for the DateTimePicker control. + + + + + Gets the date as a string + + string value + + + + Resets the current value + + + + + Gets the current behavior of the control. By default it is showing a calendar in the drop down + + + + + + Sets the current value to behave as a null value + + + + + Raises the FormatChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the NullableValueChanged event + + + + + + Raises the PropertyChanged event + + + + + + Sets the behavior of the date picker + + + + + + Closes the popup if it is open, or shows the popup if it is closed. + + + + + Gets an instance of RadTextBoxElement + + + + Gets or sets a value indicating whether RadDateTimePicker is read-only. + + true if the RadDateTimePicker is read-only; otherwise, false. The default is + false. + 1 + + + + Indicates whether a spin box rather than a drop down calendar is displayed for editing the control's value + + + + + Gets or sets the CultureInfo supported by this RadCalendar object. + Describes the names of the culture, the writing system, and + the calendar used, as well as access to culture-specific objects that provide + methods for common operations, such as formatting dates and sorting strings. + + + The culture names follow the RFC 1766 standard in the format + "<languagecode2>-<country/regioncode2>", where <languagecode2> is + a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> + is an uppercase two-letter code derived from ISO 3166. For example, U.S. English is + "en-US". In cases where a two-letter language code is not available, the + three-letter code derived from ISO 639-2 is used; for example, the three-letter + code "div" is used for cultures that use the Dhivehi language. Some culture names + have suffixes that specify the script; for example, "-Cyrl" specifies the Cyrillic + script, "-Latn" specifies the Latin script. + The following predefined CultureInfo names and identifiers are + accepted and used by this class and other classes in the System.Globalization + namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Culture NameCulture IdentifierLanguage-Country/Region
"" (empty string)0x007Finvariant culture
af0x0036Afrikaans
af-ZA0x0436Afrikaans - South Africa
sq0x001CAlbanian
sq-AL0x041CAlbanian - Albania
ar0x0001Arabic
ar-DZ0x1401Arabic - Algeria
ar-BH0x3C01Arabic - Bahrain
ar-EG0x0C01Arabic - Egypt
ar-IQ0x0801Arabic - Iraq
ar-JO0x2C01Arabic - Jordan
ar-KW0x3401Arabic - Kuwait
ar-LB0x3001Arabic - Lebanon
ar-LY0x1001Arabic - Libya
ar-MA0x1801Arabic - Morocco
ar-OM0x2001Arabic - Oman
ar-QA0x4001Arabic - Qatar
ar-SA0x0401Arabic - Saudi Arabia
ar-SY0x2801Arabic - Syria
ar-TN0x1C01Arabic - Tunisia
ar-AE0x3801Arabic - United Arab Emirates
ar-YE0x2401Arabic - Yemen
hy0x002BArmenian
hy-AM0x042BArmenian - Armenia
az0x002CAzeri
az-AZ-Cyrl0x082CAzeri (Cyrillic) - Azerbaijan
az-AZ-Latn0x042CAzeri (Latin) - Azerbaijan
eu0x002DBasque
eu-ES0x042DBasque - Basque
be0x0023Belarusian
be-BY0x0423Belarusian - Belarus
bg0x0002Bulgarian
bg-BG0x0402Bulgarian - Bulgaria
ca0x0003Catalan
ca-ES0x0403Catalan - Catalan
zh-HK0x0C04Chinese - Hong Kong SAR
zh-MO0x1404Chinese - Macau SAR
zh-CN0x0804Chinese - China
zh-CHS0x0004Chinese (Simplified)
zh-SG0x1004Chinese - Singapore
zh-TW0x0404Chinese - Taiwan
zh-CHT0x7C04Chinese (Traditional)
hr0x001ACroatian
hr-HR0x041ACroatian - Croatia
cs0x0005Czech
cs-CZ0x0405Czech - Czech Republic
da0x0006Danish
da-DK0x0406Danish - Denmark
div0x0065Dhivehi
div-MV0x0465Dhivehi - Maldives
nl0x0013Dutch
nl-BE0x0813Dutch - Belgium
nl-NL0x0413Dutch - The Netherlands
en0x0009English
en-AU0x0C09English - Australia
en-BZ0x2809English - Belize
en-CA0x1009English - Canada
en-CB0x2409English - Caribbean
en-IE0x1809English - Ireland
en-JM0x2009English - Jamaica
en-NZ0x1409English - New Zealand
en-PH0x3409English - Philippines
en-ZA0x1C09English - South Africa
en-TT0x2C09English - Trinidad and Tobago
en-GB0x0809English - United Kingdom
en-US0x0409English - United States
en-ZW0x3009English - Zimbabwe
et0x0025Estonian
et-EE0x0425Estonian - Estonia
fo0x0038Faroese
fo-FO0x0438Faroese - Faroe Islands
fa0x0029Farsi
fa-IR0x0429Farsi - Iran
fi0x000BFinnish
fi-FI0x040BFinnish - Finland
fr0x000CFrench
fr-BE0x080CFrench - Belgium
fr-CA0x0C0CFrench - Canada
fr-FR0x040CFrench - France
fr-LU0x140CFrench - Luxembourg
fr-MC0x180CFrench - Monaco
fr-CH0x100CFrench - Switzerland
gl0x0056Galician
gl-ES0x0456Galician - Galician
ka0x0037Georgian
ka-GE0x0437Georgian - Georgia
de0x0007German
de-AT0x0C07German - Austria
de-DE0x0407German - Germany
de-LI0x1407German - Liechtenstein
de-LU0x1007German - Luxembourg
de-CH0x0807German - Switzerland
el0x0008Greek
el-GR0x0408Greek - Greece
gu0x0047Gujarati
gu-IN0x0447Gujarati - India
he0x000DHebrew
he-IL0x040DHebrew - Israel
hi0x0039Hindi
hi-IN0x0439Hindi - India
hu0x000EHungarian
hu-HU0x040EHungarian - Hungary
is0x000FIcelandic
is-IS0x040FIcelandic - Iceland
id0x0021Indonesian
id-ID0x0421Indonesian - Indonesia
it0x0010Italian
it-IT0x0410Italian - Italy
it-CH0x0810Italian - Switzerland
ja0x0011Japanese
ja-JP0x0411Japanese - Japan
kn0x004BKannada
kn-IN0x044BKannada - India
kk0x003FKazakh
kk-KZ0x043FKazakh - Kazakhstan
kok0x0057Konkani
kok-IN0x0457Konkani - India
ko0x0012Korean
ko-KR0x0412Korean - Korea
ky0x0040Kyrgyz
ky-KZ0x0440Kyrgyz - Kazakhstan
lv0x0026Latvian
lv-LV0x0426Latvian - Latvia
lt0x0027Lithuanian
lt-LT0x0427Lithuanian - Lithuania
mk0x002FMacedonian
mk-MK0x042FMacedonian - FYROM
ms0x003EMalay
ms-BN0x083EMalay - Brunei
ms-MY0x043EMalay - Malaysia
mr0x004EMarathi
mr-IN0x044EMarathi - India
mn0x0050Mongolian
mn-MN0x0450Mongolian - Mongolia
no0x0014Norwegian
nb-NO0x0414Norwegian (Bokmål) - Norway
nn-NO0x0814Norwegian (Nynorsk) - Norway
pl0x0015Polish
pl-PL0x0415Polish - Poland
pt0x0016Portuguese
pt-BR0x0416Portuguese - Brazil
pt-PT0x0816Portuguese - Portugal
pa0x0046Punjabi
pa-IN0x0446Punjabi - India
ro0x0018Romanian
ro-RO0x0418Romanian - Romania
ru0x0019Russian
ru-RU0x0419Russian - Russia
sa0x004FSanskrit
sa-IN0x044FSanskrit - India
sr-SP-Cyrl0x0C1ASerbian (Cyrillic) - Serbia
sr-SP-Latn0x081ASerbian (Latin) - Serbia
sk0x001BSlovak
sk-SK0x041BSlovak - Slovakia
sl0x0024Slovenian
sl-SI0x0424Slovenian - Slovenia
es0x000ASpanish
es-AR0x2C0ASpanish - Argentina
es-BO0x400ASpanish - Bolivia
es-CL0x340ASpanish - Chile
es-CO0x240ASpanish - Colombia
es-CR0x140ASpanish - Costa Rica
es-DO0x1C0ASpanish - Dominican Republic
es-EC0x300ASpanish - Ecuador
es-SV0x440ASpanish - El Salvador
es-GT0x100ASpanish - Guatemala
es-HN0x480ASpanish - Honduras
es-MX0x080ASpanish - Mexico
es-NI0x4C0ASpanish - Nicaragua
es-PA0x180ASpanish - Panama
es-PY0x3C0ASpanish - Paraguay
es-PE0x280ASpanish - Peru
es-PR0x500ASpanish - Puerto Rico
es-ES0x0C0ASpanish - Spain
es-UY0x380ASpanish - Uruguay
es-VE0x200ASpanish - Venezuela
sw0x0041Swahili
sw-KE0x0441Swahili - Kenya
sv0x001DSwedish
sv-FI0x081DSwedish - Finland
sv-SE0x041DSwedish - Sweden
syr0x005ASyriac
syr-SY0x045ASyriac - Syria
ta0x0049Tamil
ta-IN0x0449Tamil - India
tt0x0044Tatar
tt-RU0x0444Tatar - Russia
te0x004ATelugu
te-IN0x044ATelugu - India
th0x001EThai
th-TH0x041EThai - Thailand
tr0x001FTurkish
tr-TR0x041FTurkish - Turkey
uk0x0022Ukrainian
uk-UA0x0422Ukrainian - Ukraine
ur0x0020Urdu
ur-PK0x0420Urdu - Pakistan
uz0x0043Uzbek
uz-UZ-Cyrl0x0843Uzbek (Cyrillic) - Uzbekistan
uz-UZ-Latn0x0443Uzbek (Latin) - Uzbekistan
vi0x002AVietnamese
vi-VN0x042AVietnamese - Vietnam
+
+
+ + + Gets the default null date + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + When ShowCheckBox is true, determines that the user has selected a value + + + + + Gets or sets the custom date/time format string. + + + + + Gets or sets the format of the date and time displayed in the control. + + + + + Gets or sets the location of the drop down showing the calendar + + + + + Gets or sets the size of the calendar in the drop down + + + + + Indicates whether a check box is displayed in the control. When the check box is unchecked no value is selected + + + + + Gets or sets whether the current time is shown. + + + + + Set ot get which part of the datetime structure will be included when checking for NullValue. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the text that is displayed when the DateTimePicker contains a null + reference. + + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Gets the minimum date value allowed for the DateTimePicker control. + + + + + Gets or sets the minimum date and time that can be selected in the control. + + + + + Gets or sets the maximum date and time that can be selected in the control. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the value of the control has changed + + + + + Occurs when the value of the control has changed + + + + + Occurs when the format of the control has changed + + + + + Occurs when the value of the control is changing + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Occurs before the CheckBox's state changes. + + + + + Occurs when the CheckBox's state changes. + + + + + Occurs when the value of the checkbox in the editor is changed + + + + + Get nested RadCalendar in the popup part of the RadDateTimePicker + + + + + + Show or Hide the nested TimePicker element in the popup part of the RadDateTimePicker + + + + + + Represents a DropDownList editor. + + + + + Initializes a new instance of the RadDropDownListEditor class. + + + + + Gets or sets a value specifying the style of the DropDownList. + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, veritcal or a combination of them. + + + + + Represents a DropDownList editor element. + + + + + Represents a numeric up/down editor. + + + + + Gets or sets the minimum value that could be set in the editor. + + + + + Gets or sets the maximum value that could be set in the editor. + + + + + Gets or sets the value which is added to/subtracted from the current value of the editor. + + + + + Gets or sets the number of decimal places to display in the editor. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the editor. + + + + + Gets or sets the type of the value to use in the editor. + + + + + Represents a numeric up/down editor element. + + + + + Represents a numeric up/down element. The RadSpinEditor + class is a simple wrapper for the numeric up/down element class. The + RadSpinEdit acts to transfer events to and from its + corresponding numeric up/down element instance. The numeric up/down element which is + essentially the numeric up/down element control may be nested in + other telerik controls. + + + + + create child elements + + + + + Creates the button element for the increment button. + + A to be placed in the . + + + + Creates the button element for the decrement button. + + A to be placed in the . + + + + increase or decrease value in the numeric up/dowm with step value + + + + + + This method is used internally! + + the new flag state. + + + + This method is used internally! + + the new flag state. + + + + Gets or Sets represent the Value in the numeric up/down - this value can be NULL + + + + + Gets or set how to interpret the empty text in the editor portion of the control + if true the empty value will set NULL in NullableValue property + + + + + Gets reference to the SpinControl's Down Button + + + + + Gets reference to the SpinControl's Up Button + + + + + Gets or sets the number of decimal places to display in the RadSpinEdit + + + + + represent the default value in the numeric up/down + + + + + Gets or sets a value indicating whether the RadSpinEdit should display the value it contains in hexadecimal format. + + + + + Gets or sets a value indicating whether the user can use the UP ARROW and DOWN ARROW keys to select values. + + + + + Gets or sets a value indicating whether the text can be changed by the use of the up or down buttons only. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the RadSpinEdit + + + + + Gets contained in the spin editor. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + allow element to be stretched bertically + + + + + represent the decimal in the numeric up/down + + + + + Gets or sets the value which is added to/subtracted from the current value of the spin editor. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + Gets or sets whether RadSpinEditor will be used as a numeric textbox. + + + + + Gets or sets whether by right-mouse clicking the up/down button you set the max/min value respectively. + + + + + set or get the Max numeric value in the numeric up/dowm + + + + + Gets or sets a value indicating whether the border is shown. + + + + + Gets or sets a value indicating that value will revert to minimum value after reaching maximum and to maximum after reaching minimum. + + + + + Gets or sets a value indicating whether the user can change the value with mouse wheel. + + + true if [enable mouse wheel]; otherwise, false. + + + + + Occurs before the value of the SpinEdit is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Occurs when the user presses a key. + + + + + Initializes a new instance of the GridSpinEditorElement class. + + + + + Represents a text editor. + + + + + Gets or sets the null text for the editor. + + + + + Indicates if all charactes should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Represents a text editor. + + + + + Initializes a new instance of the RadTextBoxEditor class. + + + + + Gets or sets the null value for the editor. + + + + + Indicates if all charactes should be left alone or converted + to upper or lower case + + + + + The text could span more than a line when the value is true + + + + + Specifies the maximum length of characters which could be entered + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Gets or sets wheather the editor accepts tha tab key in multiline mode + + + + + Represents a text box editor element. + + + + + Represents a text box element. The RadTextBox + class is a simple wrapper for the RadTextBoxElement class. All UI and logic + functionality is implemented in the RadTextBoxElement class. + RadTextBox class acts to transfer events to and from + its corresponding RadTextBoxElement instance. The RadTextBoxElement may be nested + in other telerik controls. + + + + Initializes a new instance of the RadTextBoxElement class. + + + + Initializes a new instance of RadTextBoxElemenet + + + + + + Raises the MultilineChanged event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextChanging event. + + + + + Raises the TextChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Raises the ModifiedChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the AcceptsTabChanged event. + + + + + Gets an instance of the corresponding RadTextBoxItem + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + Gets or sets a value indicating whether the border is shown. + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Occurs when the value of the AcceptsTab property has changed. + + + + + Occurs when the value of the HideSelection property changes. + + + + + Occurs when the value of the Modified property has changed. + + + + + Occurs when the value of the Multiline property has changed. + + + + + Occurs when the ReadOnly property changes. + + + + + Occurs when the value of the TextAlign property has changed. + + + + + Occurs + when text is being changed. + + + + + Occurs + when text has changed. + + + + + Represents a TimePicker editor. + + + + + This class manages all opened popups per UI thread. + + + + + Adds a popup form to the popups of the PopupManager and + registers a message hook if the form provided is the first one. + + The popup to add. + + + + Removes the provided popup from the popups of the PopupManager and unregisters the message hook + if there are no more popups. + + The popup to remove. + + + + Attempts to close an implementation. + + The popup to close. + + + + Closes all popups managed by the PopupManager. + + Clarification why all popups need to be closed. + + + + Closes all popups from a leaf to the root. + + The reason why popups are closed. + The leaf popup from which to start closing the hierarchy. + + + + Checks if the PopupManager monitors the provided popup. + + The popup to check for. + + + + + This method begins to close all IPopupControl instances + starting from the end of the collection. If a IPopupControl + cannot be closed, the iteration stops and all popups previously added + to the collection will not be closed. + + + + + Gets the count of the IPopupControl instances + currently registered in the PopupManager. + + + + + The popup which was last activated. + + + + + Gets the only instance of the PopupManager class. Other instances can not be created. + + + + + Represents a calculator editor element used in calculator editors. + + + + + Encapsulates the UI representation and functionality of RadCalculatorDropDown. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + + + + Gets or sets the calculator value. + + + + + Gets or sets the editor content element. + + + + + Gets or sets the arrow button. + + + + + Gets or sets the popup. + + + + + Gets the content element. + + + + + Gets the memory element. + + + + + Gets or sets the default popup width. + + + + + Gets or sets the default popup height. + + + + + Gets or sets the minimum popup width. + + + + + Gets or sets the minimum popup height. + + + + + Gets RadCalculatorElement FillPrimitive + + + + + Gets the RadCalculatorElement BorderPrimitive + + + + + Gets or sets a value indicating whether RadCalculatorDropDownElement is read only. + + + true if RadCalculatorDropDownElement is read only; otherwise, false. + + + + + Fires when the value of the calculator is changing. + + + + + Fires when the value of the calculator is changing. + + + + + Fires after the color dialog is closed. + + The event arguments. + + + + Fires right after the editor value is changed. + + The event arguments. + + + + Fires right before the editor value is changed. + + The event arguments. + + + + Fires when the is clicked. + + The event arguments. + + + + Gets the value of the editor. + + + + + Gets the that shows the color in the editor. + + + + + Gets or set the that is displayed when the button is clicked. + + + + + Gets the that opens the . + + + + + Gets or sets a value indicating if the user is allowed to type in the text field. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Occurs after the editor has changed the value during the editing process. + + + + + Occurs when the dialog window is closed. + + + + + Represents a date time editor element used in date time editors. + + + + + Represents a class that handles append auto-complete mode in + + + + + Owner Property + + + + + LimitToList Property + + + + + Initializes a new instance of the class. + + The element. + + + + Sets the editable element text. + + Index of the item. + + + + Represents a DropDownList element used in drop down list editors. + + + + + Constructor + + There is no mask applied by default + + + + handles the key press + + + + + + Fires the ValueChanged event + + + + + + Fires the ValueChanging event + + + + + + Determines whether to add minus sign to the value. + + + + + + + Format the specified text using the specified mask + + The mask to use + The text to format + The formatted text string + There are four overloads for this method. + + + + Format the specified text using the specified mask and prompt + character. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The formatted text string. + + + + Format the specified text using the specified mask, prompt + character, and culture information. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The culture information to use. If null, + the current culture is used. + The formatted text string. + + + + Format the specified text using the specified mask, prompt + character, and culture information and return the result + values. + + The mask to use. + The text to format. + The prompt character to use for missing + characters. If a null character ('\x0') is specified, prompt + characters are omitted. + The culture information to use. If null, + the current culture is used. + The result of formatting the text. + The position related to the result + hint. + The formatted text string. + + + + Gets the text which is in the clipboard + + + + + + This is used to set or get the label text. + + When set, the text is formatted according to the current + masked text provider settings. If the mask is empty, the text is + set as-is. When retrieved, the text is returned in its formatted + state. Use to get the text without + the mask applied. + + + + Represent the RadMaskedEditBox ContextMenu + + + + Gets or sets a value that determines whether literals and prompt characters + are included in the formatted string. + One of the values. The + default is . + Property + set with a value that is not + valid. + + + + This returns a clone of the masked text provider currently being + used by the masked label control. + + + + + This returns the result hint for the last assignment to the + property. + + If the assigned text could not be properly formatted, + this will contain a hint as to why not. Positive values + indicate success. Negative values indicate failure. + + + + This returns the result hint position for the last assignment to + the property. + + If the assigned text could not be properly formatted, + this will contain the position of the first failure. + + + + This read-only property returns the unmasked copy of the text + + + + + This is used to set or get the culture information associated with + the masked label. + + This is thrown if the + culture value is null + + + + This is used to set or get the mask for the label text + + + + + This is used to set or get the prompt character for display + in the label text. + + The default is an underscore (_). + + + + This is used to set or get whether or not prompt characters are + also displayed in the label text. + + By default, prompt characters are not shown. + + + + Gets or sets the mask type. + + + + + Gets or sets the edited value + + + + + Gets or set a value indicating whether end users can set the value to NULL. + This can be achieved by pressing Ctrl + Del or Ctrl + 0 key combinations. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + Gets or sets the mask type. + + + + + Represents a numeric up/down element used by spin editors.. + + + + + Initializes a new instance of the RadSpinEditorElement class. + + + + + Represents a textbox editor element used in RadTextBoxEditor + + + + + Represent a continuous band in Linear Gauge + + + + Gets or sets a value indicating element visibility. + + Setting this property affects also the children of the element. Collapsed means the element and its children would not be painted and would not be + calculated in the layout. + This property has no effect in design-time on objects. + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + The RadLinearGauge control is designed to display a a single quantitative measure. + + + + + The RadLinearGauge control is designed to display a simple value within a definite range. + + + + XmlWriter to use by the built-in serializer + + + + Stores to a stream RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores to a file RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML reader, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + The ValueChanged event fires when the value is modified. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Specifies the gauge's value + + + + + Set or Get Gauge Orientation + + + + + Gets the serialization info for RadRadialGauge used by Save/Load loyout methods to persist grid settings to/from XML. + By default, or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + This portion of the bullet graph displays the primary data. + + + + + Presents a value which should be less visually dominant than the featured measure, but easy to see in relation to the featured measure. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Represents the scale labels. + + + + + Specifies the font size. Default value is 8. + + + + + Specifies the start value from which the labels are displayed. + + + + + Specifies the end value to which the labels are displayed. + + + + + Controls how far according to the gauge's arc the labels are rendered + + + + + Specifies the format of the label's value. + + + + + Controls how many labels will be displayed next ticks for the specified range. + + + + + Represent a continuous band in Linear Gauge + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + Present additional information for the RadLinearGauge. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Controls whether the specific ticks are circle or not. + + + + + Specifies the value offset of the needle according to the gauge's value. + + + + + Indicates whether the needle's value is bound to the gauge's Value. + + + + + Specifies the inner radius of the needle's start point. + + + + + Specifies the value with which the needle juts out from the center point. + + + + + Specifies the outer radius of the needle's start point. + + + + + Controls the needle width. + + + + + Specifies the needle's value. + + + + + Controls how long the needle will be rendered. + + + + + Present additional information for the RadLinearGauge, e.g. current value + + + + + Indicates whether the single label's text is bound to the gauge's Value. + + + + + Controls the label's location (x, y) according to the center point. LocationPercentage accepts values withing the range [(-1,-1), (1,1)]. + + + + + Specifies the label size. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Represents the scale ticks. + + + + + Specifies at which index the visible ticks range will start. + + + + + Specifies at which index the visible ticks range will end. + + + + + Controls how far according to the gauge's arc the ticks will be rendered. + + + + + Specifies the width of ticks. + + + + + Specifies the color for the ticks + + + + + Specifies the ticks back length towards the center point. + + + + + Controls the ticks length. + + + + + Specifies how many ticks will be displayed. + + + + + Represent main needle element. This element is container for all other elements in the Gauge + + + + + The ValueChanged event fires when the value is modified. + + + + + The OrientationChanged event fires when the orientation of the gauges is changed. + + + + + Specifies the gauge's value + + + + + Set or Get Gauge Orientation + + + + + Represent a continuous band spanning the entire sweep angle. + + + + + Controls the radius of the arc. + + + + + The width of the arc. + + + + + The start of the arc. + + + + + The end value of the arc. + + + + + Indicates whether the RangeStart property is bound to the gauge's Value. + + + + + Indicates whether the RangeEnd property is bound to the gauge's Value. + + + + + Specifies the start range offset of the arc according to the gauge's value. + + + + + Specifies the end range offset of the arc according to the gauge's value. + + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents the scale labels displayed next to the ticks. + + + + + Specifies the font size. Default value is 8. + + + + + Specifies the start value from which the labels are displayed. + + + + + Specifies the end value to which the labels are displayed. + + + + + Controls how far according to the gauge's arc the labels are rendered + + + + + Specifies the format of the label's value. + + + + + Controls how many labels will be displayed next ticks for the specified range. + + + + + Represent a scale indicator that points to a value. + + + + + Specifies the value offset of the needle according to the gauge's value. + + + + + Indicates whether the needle's value is bound to the gauge's Value. + + + + + Specifies the inner radius of the needle's start point. + + + + + Specifies the value with which the needle juts out from the center point. + + + + + Specifies the outer radius of the needle's start point. + + + + + Controls the needle width. + + + + + Specifies the needle's value. + + + + + Controls how long the needle will be rendered. + + + + + Present additional information for the RadRadialGauge, e.g. current value + + + + + Indicates whether the single label's text is bound to the gauge's Value. + + + + + Controls the label's location (x, y) according to the center point. LocationPercentage accepts values withing the range [(-1,-1), (1,1)]. + + + + + Specifies the label size. + + + + + Specifies the label format. By default, it is set to #,##0.#. + + + + + Represents the scale ticks. + + + + + Specifies at which index the visible ticks range will start. + + + + + Specifies at which index the visible ticks range will end. + + + + + Controls how far according to the gauge's arc the ticks will be rendered. + + + + + Controls whether the specific ticks are circle or not. + + + + + Specifies the width of ticks. + + + + + Specifies the color for the ticks + + + + + Specifies the ticks back length towards the center point. + + + + + Controls the ticks length. + + + + + Specifies how many ticks will be displayed. + + + + + The RadRadialGauge control is designed to display a value within a definite range + + + + XmlWriter to use by the built-in serializer + + + + Stores to a stream RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores to a file RadRadialGauge properties, sub-objects and their properties in XML format, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML reader, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + Loads RadRadialGauge properties, sub-objects and their properties from XML file, using the serialization information provided by the property + + + + + The ValueChanged event fires when the value is modified. + + + + + Controls the RadRadialGauge's offset in vertical direction. + + + + + Controls the RadRadialGauge's offset in horizontal direction. + + + + + Specifies the gauge's value + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Gets the serialization info for RadRadialGauge used by Save/Load loyout methods to persist grid settings to/from XML. + By default, or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Represent main needle element. This element is container for all other elements in the Gauge + + + + + The ValueChanged event fires when the value is modified. + + + + + Specifies the gauge's value + + + + + Specifies the gauge's end. + + + + + Specifies the gauge's start. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Determines the angle value starting from the StartAngle to draw an arc in clockwise direction. + + + + + Controls the RadRadialGauge's offset in vertical direction. + + + + + Controls the RadRadialGauge's offset in horizontal direction. + + + + + This class represents the custom editor + shown when the FadeAnimationType of the popup + is adjusted in the Visual Studio Designer. + + + + + Creates an instance of the FadeAnimationTypeEditorUI class. + This class represents the control used to set the + FadeAnimationType property while in the Visual Studio + Designer. + + The inital value of the property. + + + + Gets the result of the editor execution. + + + + + This class stores information about a close request sent to an . + The class stores the reason for the close request, information about the operation result, + and an instance to a context. + + + + + Creates an instance of the class. + The default value of the Closed property is true. + + A value from the enum + that determines the reason for the close request. + A request context. + + + + Defines whether the request is executed or not. + + + + + The reason for the close request. + + + + + The context associated with this the close request. + + + + + This class represents a base class for popup controls + used by editors like ComboBox, MultiColumnComboBox etc. + + + + + This class represents a pop-up form that exposes sizing-grip and + thus can be resized by the user. + + + + + Creates an instance of the RadSizablePopupControl class. + + The owner of the popup-form + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets the element that represents the sizing grip + of the popup. + + + + + Gets the DockLayoutPanel that holds the sizing grips. + + + + + Creates an instance of the RadEditorPopupControlBase class. + This class is used in all popup-powered controls. + + An instance of the RadItem class that + represents the owner of the popup. + + + + Gets or sets the header text of the drop-down menu. + + + + + Gets or sets the header image of the drop-down menu. + + + + + Gets an instance of the + class that represents layout panel that provides scrolling functionality. + + + + + Gets or sets the left column minimal width. + + + + + Gets or sets the right column minimal width. + + + + + This class represents the Telerik's Form control. + You can create RadForm controls by inheriting from this class. + + + + + Represents a RadFormControl. RadFormControlBase is an abstract class and is base class for + all telerik windows forms. + + + + + Determines whether the control and all its child elements should use the new layout system. + + + + + + Loads the element tree. While not loaded, no layout operations are allowed upon the tree. + By default, the tree will be loaded when the control is displayed for the first time. + + + + + Loads the element tree using the specified desired size. + + + + + + Notifies that the control is about to be visualized. + + + + + + In this override we reset the RootElement's BackColor property + since the DocumentDesigner class sets the BackColor of the + Form to Control when initializing and thus overrides the theme. + + + + + + Calls the base OnPaint implementation. This method + can be used by the form behavior to call the base + implementation in case it is needed. + + + + + Calls the base OnPaintBackground implementation. This method + can be used by the form behavior to call the base + implementation in case it is needed. + + + + + Processes a dialog box key. + + true if the keystroke was processed and consumed by the control; otherwise, false to allow further processing. + + + One of the values that represents the key to process. + + + + Updates which button is the default button. + + + + Determines whether the BackColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the specified RadProperty should be serialized. + + + + + + + Called to initialize the behavior of the form. + + + + + + Resets the behavior associated with the Form. This method is used internally. + + Determines whether the InitializeFormBehavior method + will be called after the p + + + + Processes a focus request from the specified element. + + The element that requested the focus. + True if focus is approved, false otherwise. + + + + Processes a capture request from the specified element. + + The element which requested the capture. + + True if the capture request is approved, otherwise false. + + + + Gets a value indicating if control themes by default define PropertySettings for the specified element. + If true is returned the ThemeResolutionService would not not set any theme to the element to avoid duplicatingthe style + settings of the element. + + + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disbaled for this control. + + + + + Gets a boolean value which determines + whether the control is loaded. + + + + + Gets or sets the FormBorderStyle of the Form. + + + + + Gets the behavior associated with this form if any. + + + + + Gets or sets a boolean value indicating whether the Form + customizes its NC area when under Vista with Composition enabled. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this speciffic control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + Gets or sets the Font of the control. This is actually the Font property of the root element. + + + + + Occurs when a RadItem instance iside the RadControl requires ToolTip text. + + + + + Occurs prior the ScreenTip of a RadItem instance inside the RadControl is displayed. + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Prevent the Form from getting the mouse capture when the capture is requested + by one of the system buttons. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + The text associated with this control. + + + + + Gets the RadFormElement instance that represents + the element hierarchy which builds the RadForm appearance. + + + + + Gets or sets the scaling mode of the form's icon. + + + + + Gets or sets a boolean value indicating whether the Form + customizes its NC area when under Vista with Composition enabled. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Enable or Disable the selection of the next or prev. part of the date with arrow keys + + + + + Gets or sets the date and time format used by + RadDateInput. + + + A string specifying the date format used by RadDateInput. The + default value is "d" (short date format). + + + + private void Page_Load(object sender, System.EventArgs e) + { + RadDateInput1.DateFormat = "M/d/yyyy"; //Short date pattern. The same as "d". + } + + + Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load + RadDateInput1.DateFormat = "M/d/yyyy" 'Short date pattern. The same as "d". + End Sub + + + + + + Gets or sets a value that indicates the end of the century that is used to interpret + the year value when a short year (single-digit or two-digit year) is entered in the input. + + + The year when the century ends. Default is 2029. + + + Having a value of 2029 indicates that a short year will be interpreted as a year between 1930 and 2029. + For example 55 will be interpreted as 1955 but 12 -- as 2012 + + + + + Gets a value that indicates the start of the century that is used to interpret + the year value when a short year (single-digit or two-digit year) is entered in the input. + + + The year when the century starts. Default is 2029. + + + Having a value of 2029 indicates that a short year will be interpreted as a year between 1930 and 2029. + For example 55 will be interpreted as 1955 but 12 -- as 2012 + + + + + Removes the assigned characters between the specified positions from the formatted + string. + + true if the character was successfully removed; otherwise, false. + + + The zero-based index of the first assigned character to remove. + + + The zero-based index of the last assigned character to remove. + + + + + Initializes a new instance of the NumericTextBoxProvider> + class using the specified mask and culture. + + + A that represents the input mask. + + + A that is used to set region-sensitive + separator characters. + + + + + + . + Replaces all ocurances of given parameters with string.Empty. + + + + + Gets the culture that determines the value of the localizable separators and + placeholders in the input mask. + + + A containing the culture information + associated with the input mask. + + + + + Gets the input mask. + + + A containing the full mask. + + + + + Raises the event. + + + An that contains event data. + + + + + Gets or sets the text insertion mode of the masked text box control. + + + An value that indicates the current insertion mode. The default is . + + + An invalid value was supplied when setting this property. + + + + + Occurs after the insert mode has changed. + + + + + Gets a value that specifies whether new user input overwrites existing input. + + true if will overwrite existing characters as the user enters new ones; false if will shift existing characters forward. The default is false. + + 1 + + + + Uses a mask to distinguish between proper and improper user input + + + + + Clears all text from the text box control and Value. + + + + + Clears information about the most recent operation from the undo buffer of the + text box. + + + + + selects the whole text + + + + + Fires the ValueChanging event + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the character used as the placeholder in a masked editor. + + + + + Gets or sets a mask expression. + + + + + Gets or sets the mask type. + + + + + Gets or sets the value associated to the mask edit box + + + + Gets or sets a value that determines whether literals and prompt characters + are included in the formatted string. + One of the values. The + default is . + Property + set with a value that is not + valid. + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + Gets or sets the horizontal alignment of the text. + + + + + Gets or sets + a value indicating whether the defined shortcuts are enabled. + + + + + Gets or sets + the starting point of text selected in the text box. + + + + + Gets or sets a value indicating whether the RadTextBox control has been modified + by the user since the control was created or since its contents were last set. + + + + + Gets or sets + a value indicating whether this is a multiline TextBox control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Gets or sets + a value indicating whether the contents of the TextBox control can be + changed. + + + + + Gets or sets + which scroll bars should appear in a multiline TextBox control. + + + + + Gets or sets a value indicating the currently selected text in the + control. + + + + + Gets or sets + the number of characters selected in the text box. + + + + + Gets or sets a value indicating whether the selected text remains highlighted + even when the RadTextBox has lost the focus. + + + + + Gets or sets + the lines of text in multiline configurations. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline RadTextBox + control creates a new line of text in the control or activates the default button for + the form. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text + box control types a TAB character in the control instead of moving the focus to the + next control in the tab order. + + + + + Gets or sets a value indicating whether the RadTextBox control modifies the + case of characters as they are typed. + + + + + Gets or sets the current culture associated to the RadMaskBox + + + + + Gets or set a value indicating whether end users can set the value to NULL. + This can be achieved by pressing Ctrl + Del or Ctrl + 0 key combinations. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + Occurs when the RadItem has focus and the user pressees a key down + + + + + Occurs when the RadItem has focus and the user pressees a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Represents an application drop down menu in Office 2007 style. + + + + + + Represents a drop down button. Essentially the RadDropDownButton class is a + simple wrapper for + RadDropDownButtonElement. + + You can set items that appear when the drop down button is pressed. Also you + can configure the visual appearance in numerous ways through themes. + + The RadDropDownButtonElement class + implements all UI and logic functionality. The RadDropDownButton acts to + transfer the events to and from its + RadDropDownButtonElementinstance. + + + + + Initializes a new instance of the RadDropDownButton class. + + + + Override this method to create custom main element. By default the main element is an instance of + RadDropDownButtonElement. + + Instance of the one-and-only child of the root element of RadDropDownButton. + + + + + + + + + + + + + + + + + + Gets or sets the text value that is displayed on the button. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the instance of RadDropDownButtonElement wrapped by this control. RadDropDownButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDropDownButton. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets a collection representing the right column items of RadApplicationMenu. + + + + + Gets a collection representing the button items of RadApplicationMenu. + + + + + Gets or sets the right column width + + + + + Gets or sets the whether RadApplicationMenu will have TwoColumnDropDownMenu. + + + + + Represents a rad dropdown button element. The + RadDropDownButton control is a simple wrapper + for the RadDropDownButtonElement. All UI and logic functionality is implemented in + RadDropDownButtonElement class. The + RadDropDownButton acts to transfer events to + and from its RadDropDownButtonElement instance. RadDropDownButtonElement can be + nested in other telerik controls. + + + + Initializes a new instance of the DropDownButtonElement class. + + + Determines whether the event is passed up in the control hierarchy. + + + + Shows the drop down menu at given location + + The upper left corner of the drop down in screen coordinates + + + Shows the drop down menu. + + + Hides the drop down menu. + + + + Raises the DropDownOpening event. + + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosed event. + + + + + Fires when the drop-down of the button is about to close. + + An instance of the + class that contains information about the event. + + + + Gets the drop down menu + + + + + Gets the arrow button + + + + + Gets the action button + + + + + Gets or sets the minimum size of the arrow button + + + + + Gets or sets a value indicating the position where the arrow button appears in drop-down button. + + + + + Gets or sets a value indicating the direction in which the dropdown item emerges from its parent container. + + + + + Gets or sets the expand arrow button + + + + + Gets a value indicating whether the drop down is shown + + + + + Gets the Items collection where you can add and remove items from the + DropDownButton. + + + + + Indicates whether the DropDown of the button should have two columns or one column. + + + + + Gets or sets a value indicating whether an arrow button is displayed on the drop-down buuton. + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Specifies the logical combination of image and text primitives in the element. + + + + + Gets a value indicating whether the button item is in the pressed state. + + + + + Gets the border element + + + + + Occurs when the drop-down is opening. + + + + + Occurs when the drop-down has opened. + + + + + Occurs when the drop-down window has closed. + + + + + Occurs when the drop-down window is about to close. + + + + + Gets or sets value indicating whether DropDownMenu will have the same class name as the owner control or its own. + True means that the same class name will be used as the control that opened the dropdown. + + + + + Gets or sets the whether RadApplicationMenu will have TwoColumnDropDownMenu. + + + + + Represents an application drop down menu in Office 2007 style. + + + + + Gets or sets the right column width + + + + + Gets a collection representing the right column items of RadApplicationMenu. + + + + + Gets a collection representing the button items of RadApplicationMenu. + + + + + Represents a context menu + + + + + Displays the context menu in its default position. + + + + + Displays the context menu relative to the specified screen location. + + The horizontal screen coordinate, in pixels. + The vertical screen coordinate, in pixels. + + + + Displays the context menu relative to the specified screen location. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified screen location and with the specified direction. + + The horizontal and vertical location of the screen's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the context menu relative to the specified control location. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified control location and with the specified direction. + + The control that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the reference control's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal coordinate relative to the control, in pixels. + The vertical coordinate relative to the control, in pixels. + + + + Positions the context menu relative to the specified RadItem location. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + + + + Positions the context menu relative to the specified RadItem location and with the specified direction. + + The RadItem that is the reference point for the RadDropDownMenu position. + The horizontal and vertical location of the RadItem's upper-left corner, in pixels. + One of the RadDirection values. + + + + Positions the context menu relative to the specified RadItem location and + with specified direction and offset according to the owner. + + The RadItem that is the reference point for the RadDropDownMenu position. + Specifies the offset from the owner in pixels. + One of the RadDirection values. + + + + Raises the DropDownOpening event. + + The event arguments + + + + Raises the DropDownClosing event. + + The event arguments + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosed event. + + + + + Occurs when the drop down is opening. + + + + + Occurs when the drop down is closing. + + + + + Occurs when the drop down is opened. + + + + + Occurs when the drop down is closed. + + + + + Gets menu items collection + + + + + Gets or sets control's preferred theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Gets menu drop down panel + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disabled for this control. + + + + + This class represents the drop-down menu + used in the + component. + + + + + Represents a base class for the RadMenuItem class. + + + + + Initializes a new instance of the RadMenuItemBase class. + + + + + Calls the ShowPopup method and displays the child items in a popup window. + + + + + Closes the RadMenuItemBase popup. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An instance of the class + that contains information about the event. + + + + Raises the event. + + An that contains the event data. + + + + Occurs after the menu item dropdown opens. + + + + + Occurs before the menu item dropdown opens. + + + + + Occurs after the menu item dropdown closes. + + + + + Occurs before the popup is creating. + + + + + Occurs before the popup is closed. + + + + + Gets a value indiciating that the popup containing this menu item's children is shown. + + + + + Gets or sets the direction of the popup which is opened by this menu item. + + + + + Gets a collection of the child items. + + + + + Gets or sets menu header column text + + + + + Gets or sets menu header column image + + + + + Returns the control that owns this item. This can be a RadMenu or RadDropDownMenu. + + + + + Gets a values indicating whether this item has child items to show. + + + + + Gets the drop down menu associated with this menu item + + + + + Gets a value indicating whether this item has child items. + + + + + Gets a value indicating whether this item is in the root items collection. + + + + + Gets or sets the parent menu item. + + + + + Gets the next child item in the parent item's Items collection. + + + + + Gets the previous child item in the parent item's Items collection. + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Provides a reference to the ButtonElement element in the menu item. + + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets the ImagePrimitive of this RadMenuHeaderItem. + + + + + Gets the FillPrimitive of this RadMenuHeaderItem. + + + + + Gets the BorderPrimitive of this RadMenuHeaderItem. + + + + + Gets the TextPrimitive of this RadMenuHeaderItem. + + + + + Represents a menu item which has a combobox placed inside. + + + + + Provides a reference to the hosted control in the menu item. + + + + + Creates an instance of the RadMenuItemPopup class. + This class represents the popup which is used to display menu + items in the RadMenu control. + + An instance of the RadItem class which represents the + owner of the popup. + + + + Defines the animation type used in popups + + + + + No animation is applied. + + + + + The control fades in upon showing. + + + + + The control uses easing animation. + + + + + Both easing and fade animation will be applied. + + + + + Defines the type of fade animation. + + + + + No fade animation is applied. + + + + + The control fades in upon showing. + + + + + The control fades out upon closing. + + + + + Defines the horizontal alignment of the popup + based on the alignment rectangle passed + in the ShowPopup method. + + + + + The left edge of the popup is aligned to the left edge of the alignment rectangle. + + + + + The left edge of the popup is aligned to the right edge of the alignment rectangle. + + + + + The right edge of the popup is aligned to the left edge of the alignment rectangle. + + + + + The right edge of the popup is aligned to the right edge of the alignment rectangle. + + + + + Defines the vertical alignment of the popup + based on the alignment rectangle passed + in the ShowPopup method. + + + + + The top edge of the popup is aligned to the top edge of the alignment rectangle. + + + + + The top edge of the popup is aligned to the bottom edge of the alignment rectangle. + + + + + The bottom edge of the popup is aligned to the top edge of the alignment rectangle. + + + + + The bottom edge of the popup is aligned to the bottom edge of the alignment rectangle. + + + + + Defines the popup alignment correction mode. + The values of this enumerator define how the popup alignment + is adjusted when the default aligning routine is not able + to properly position the popup due to lack of screen space. + + + + + No adjustments to the coordinates are applied. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen, whereby + the popup edge is aligned with an edge of the alignment rectangle. + + + + + The coordinates are adjusted with the needed amount so that + the popup remains visible in the current screen, whereby + the popup edge is aligned with an outer edge of the alignment rectangle. + The popup does not cross the alignment rectangle bounds. + + + + + This enum defines how the size of a is + fitted to the screen bounds. + + + + + The size of the popup is not fit to the bounds of the screen. + + + + + The width of the popup is fit to the available space on the screen. + + + + + The height of the popup is fit to the available space on the screen. + + + + + This eunm defines the possible screen space usage modes. + + + + + The whole screen is used when positioning the popup. + + + + + The working area of the screen is used when positioning the popup. + + + + + An enum that defines the possible overlap modes which are + used to position the popup when its location cannot be adjusted so + that it meets all alignment and alignment correction requirements. + + + + + The popup's bounds can overlap with the alignment rectangle. + + + + + The popup will be snapped to the first possible outer edge of the alignment rectangle so that it does not overlap it. + The order of the considered edges depends on the popup alignment settings. + + + + + The RadScrollablePanel control can be used as a container for different UI elements. + This control is powered by the Telerik Presentation Framework and supports + gradient backgrounds, shapes and theming. This control supports also theming + of the scrollbars. + + + + + This method inserts the scrollbars and the container + in the Controls collection of this control. + + + + + Calculates the non-client margin of the control + based on the radius of the round rect shape. + + An instance of the struct + which represents the left, top, right and bottom margin. + + + + This method initializes the scrollbars and the + container control. + + + + + Resizes the panel to fit its contents. + + + + + Gets or sets a value indicating whether the focused control inside the RadScrollablePanel + will be automatically scrolled into view when gaining focus. + + + + + Gets or sets the state of the vertical scroll bar which indicates + whether it will be always visible(), + always hidden() + or determined by the content() - default + + + + + Gets or sets the state of the horizontal scroll bar which indicates + whether it will be always visible(), + always hidden() + or determined by the content() - default + + + + + Gets the current client area margin + of the control. + + + + Gets the default size of the control. + The default System.Drawing.Size of the control. + The default Size of the control. + + + + Gets an instance of the + class which represents the main element of the control. + + + + + Gets the container panel that holds + all the components added to the panel. + + + + + Gets the vertical scrollbar of the control. + + + + + Gets the horizontal scrollbar of the control. + + + + + This property is not relevant for this class. + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + /// + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + + + + + + + + + + + + + + + + + + + + + ArrowButton Property + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + Represents an interface for printable objects. + + + + + Called when the printing begins. + + The that has initiated the printing. + The event args. + The number of pages. + + + + Called when the printing ends. + + The that has initiated the printing. + The event args. + [false] if cancel + + + + Prints the page with the specified number. + + The number of the current page. + The that has initiated the printing. + The event args. + [true] if there are more pages, [false] otherwise + + + + Gets a print settings dialog that is specific for the printable object. + + The that has initiated the printing. + The dialog. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the associated with the event. + + + + + Gets the graphics object which is used for painting. + + + + + Gets the bounds in which the element is being painted. + + + + + Represents an UI dialog for editing print settings. + + + + + Loads the settings when the dialog is shown. + + + + + Saves all settings from the dialog into the . + + + + + Creates the specific control for editing the settings of the printed control. + + The that will be displayed on the first page of this dialog + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the page view control of the dialog. + + The page view. + + + + Gets the shown in this dialog. + + + + + If [true] a Preview button is shown, otherwise an OK button is shown. + + + + + Defines a reusable object that sends output to a printer and manages the whole printing process, + when printing from an application. Can be associated with any object that implements the interface. + + + + + Prints the header part of the page. + + The printing arguments. + + + + Prints the footer part of the page. + + The printing arguments. + + + + Prints the watermark of the page. + + The printing arguments. + + + + Called when the associated printable object has changed. + + + + + Parses a given string for special words. + + The string. + The parsed string. + + + + Gets or sets the currently selected page. This page will be the first to be printed when the PrintRange + is set to Current or Selection. + + + + + Gets or sets the count of the selected pages. This indicates how many pages will be printed when the PrintRange + is set to Selection. + + + + + Gets or sets the font of the page header. + + + + + Gets or sets the font of the page footer. + + + + + [true] if the LeftHeader and RightHeader should be reversed on even pages, [false] otherwise. + + + + + [true] if the LeftFooter and RightFooter should be reversed on even pages, [false] otherwise. + + + + + Gets or sets the text that will be printed near the upper left corner of the page. + + + + + Gets or sets the text that will be printed near the upper right corner of the page. + + + + + Gets or sets the text that will be printed at the top center of the page. + + + + + Gets or sets the text that will be printed near the bottom left corner of the page. + + + + + Gets or sets the text that will be printed near the bottom right corner of the page. + + + + + Gets or sets the text that will be printed at the bottom center of the page. + + + + + Gets or sets the height of the header area. + + + + + Gets or sets the height of the header area. + + + + + Gets or sets the object, associated with this document. + + + + + Gets the number of the page being printed. + The value of this property changes during the printing process. + + + + + Gets the total page count. The value is populated when the printing process begins. + + + + + Indicates whether the printing process is running. + + + + + Draws the element using the object in the given rectangle. + + The graphics object used for the drawing. + The draw area. + + + + Draws the element using the object in the given rectangle. + + The graphics object used for the drawing. + The draw area. + + + + Gets or sets the padding arround the text. + + + + + Gets or sets a value indicating whether the text should be drawn. + + + + + Gets or sets the rotation angle of the element. + + + + + Gets or sets the scale factors of the element. + + + + + Gets or sets whether a fill should be drawn. + + + + + Gets or sets whether a border should be drawn. + + + + + Gets or sets whether the cell is right to left. + + + + + Gets or sets the fore color of the element. + + + + + Gets or sets the back color of the element. + + + + + Gets or sets the back color of the element. + + + + + Gets or sets the text alignment of the element. + + + + + Gets or sets the text to be drawn. + + + + + Gets or sets the font used for drawing the text. + + + + + Gets or sets the string trimming mode. + + + + + Gets or sets the string format flags. + + + + + Gets or sets the image of the element. + + + + + Gets or sets the image layout. + + + + + Gets or sets the image alignment + + + + + Represents a series of points that will define the shape of the element. + + + + + Gets or sets a value indicating whether html text will be interpreted or will be printed directly. + + + + + A control which is responsible for displaying print documents. + + + + + Gets or sets the border color for each page. + + + + + Gets or sets the inner border color for each page. + + + + + Gets or sets the current scroll position. + + + + + A dialog for previwing and setting before printing. + + + + + Scrolls the preview with a specified offset. + + The offset. + + + + Sets the zoom factor of the preview. + + The zoom factor. + + + + Localizes the strings in the dialog with strings from the current + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the that should be previewed. + + + + + Gets the RadMenu instance of the form. + + + + + Gets the RadCommandBar instance of the form. + + + + + Gets the that is shown by this dialog. + + + + + Gets the that is shown by this dialog. + + + + + Checks whether the watermark should be printed on the given page. + + The page to check. + True if the watermark should be printed, otherwise false. + + + + Gets a list of integer values for the string Pages. + + + + + Gets or sets a value indicating whether the watermark is printed on all pages. + + + + + Gets or sets a string which indicates on which pages the watermark should be printed. + + + + + Gets or sets the fore color of the text. + + + + + Gets or sets the text. + + + + + Gets or sets the font of the text. + + + + + Gets or sets a value indicating whether the watermark is drawn under or over the printed content. + + + + + Gets a value indicating whether there is a text to be printed. + + + + + Gets or sets the angle at which the text is rotated. + + + + + Gets or sets the text opacity. + + + + + Gets or sets the text horizontal offset. + + + + + Gets or sets the text vertical offset. + + + + + Gets a value indicating whether there is an image to be printed. + + + + + Gets or sets the path to the image. + + + + + Gets or sets the image opacity. + + + + + Gets or sets the image horizontal offset. + + + + + Gets or sets the image vertical offset. + + + + + Gets or sets a value indicating whether the image should tiled. + + + + + Represent a stack layout element + + + + + Arranges the items horizontally. + + The final size. + + + + Arranges the items horizontaly. + + The client rect. + The final size. + Width of the stretchable. + The spacing. + + + + Arranges the items vertically. + + The final size. + + + + Arranges the element. + + The element. + The client rect. + The final rect. + The final size. + + + + Aligns the rectangle according to orientation and element's alignment. + + The element. + The arrange rect. + + + + + Gets or sets the item orientation. + + + The orientation. + + + + + Gets or sets the element spacing between items. + + + The element spacing. + + + + + Gets or sets the right to left mode. + + + The right to left mode. + + + + + Gets or sets a value indicating whether to fit the available size. + + + true if fit the available size; otherwise, false. + + + + + Gets or sets a comparer to be used for defining the order of the child elements. + + + + + Right to left modes in + + + + + Represents a selectable option displayed on a or + in a drop down panel. + + + + + Initializes a new instance of the RadMenuItem class. + + + + + Initializes a new instance of the RadMenuItem class using the displayed + text. + + + + + + Initializes a new instance of the RadMenuItem class using the displayed text. + + + + + + + Raises the ToggleStateChanging event. + + + + + Raises the ToggleStateChanged event. + + + + + Determines whether the arrow is currently displayed for this item. + + + + + Occurs before the item's toggle state changes. + + + + + Occurs when the item's toggle state changes. + + + + + Gets or sets the text that appears as a HintText for a menu item. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + + Gets or sets if the arrow is shown when the menu item contains sub menu. + + + + + Gets or sets the font of the descrition text of the RadMenuItem. + + + + + Gets the visibility of description text element + + + + + Gets or sets the description text associated with this item. + + + + + Gets or sets a value indicating whether a menu item should toggle its CheckState on mouse click. + + + + + Gets the FillPrimitive of RadMenuItem responsible for the background appearance. + + + + + Gets the BorderPrimitive of RadMenuItem responsible for appearance of the border. + + + + Gets or sets a value indicating whether the menu item is checked. + + + + Gets or sets the index value of the image that is displayed on the item. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of a merged item within the current menu. + + + + + Gets or sets the visibility of the separator element between the text and the description text + + + + + Gets or sets the name of the control for use by accessibility client applications. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents event data for some of the progress bar event: + ValueChanged, + MinimumChanged, + MaximumChanged, + StepChanged, + StepWidthChanged, + DashChanged, + IntegralDashChanged, + SeparatorWidthChanged, + TextOrientationChanged, + TextAlignmentChanged, + ProgressOrientationChanged, + ShowProgressIndicatorsChanged and + SeparatorColorChanged. + + + + + Initializes a new instance of the ProgressBarEventArgs class using the sender + of the event. + + Represents the event sender. + + + + Gets or sets the event sender. + + event sender. + + + + Exposes the reason for a progress bar or waiting bar event. + + + + + Indicates that value1 or value2 has been changed. + + + + + Indicates that the Minimum property has been changed. + + + + + Indicates that the Maximum property has been changed. + + + + + Indicates that the Step has been changed. + + + + + Indicates that the Step width has been changed. + + + + + Indicates that the Dash property has been changed. + + + + + Indicates that the Hatch property has been changed. + + + + + Indicates that the IntegralDash property has been changed. + + + + + Indicates that the Text property has been changed. + + + + + Indicates that the SeparatorWidth property has been changed. + + + + + Indicates that the TextOrientatio property has been changed. + + + + + Indicates that the TextAlignment property has been changed. + + + + + Indicates that the ProgressOrientation property has been changed. + + + + + Indicates that the ProgressOrientation property has been changed. + + + + + Indicates that one of the separator colors property has been changed. + + + + + Indicates that the separators gradeient angle property has been changed. + + + + + Indicates that the separator color stop has changed + + + + + Indicates that the separator number of colors changed. + + + + + Initializes the fields. + + + + + Rrepresents a progress indicator used in + + + + + Represents a state manager for the progress bar progress indicators. + + + + + Creates the state manager. + + + + + + Represents a state manager for + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Virtual function that draws the primitive on the screen. + + The graphics object. + The angle. + The scale. + + + + Gets or sets the width of the separator. + + + The width of the separator. + + + + + Gets or sets the width of the step. + + + The width of the step. + + + + + Gets or sets the separator color1. + + + The separator color1. + + + + + Gets or sets the separator color2. + + + The separator color2. + + + + + Gets or sets the separator color3. + + + The separator color3. + + + + + Gets or sets the separator color4. + + + The separator color4. + + + + + Gets or sets the separator gradient angle. + + + The separator gradient angle. + + + + + Gets or sets the separator gradient percentage1. + + + The separator gradient percentage1. + + + + + Gets or sets the separator gradient percentage2. + + + The separator gradient percentage2. + + + + + Gets or sets the number of colors to be used. + + + The number of colors. + + + + + Gets or sets the flow direction of the progress indicator. + + + The progress orientation. + + + + + Gets or sets the sweep angle. + + + The sweep angle. + + + + + Gets or sets a value indicating whether this is dash. + + + true if dash; otherwise, false. + + + + + Gets or sets a value indicating whether this is hatch. + + + true if hatch; otherwise, false. + + + + + Initializes the fields. + + + + + Gets or sets whether this progress indicatior will automatically control its + opacity when close to or over the second progress indicator. + + + + + Gets or sets the minimum opacity level this progress indicator will go to + when over the second progress indicator when AutoOpacity property is set + to true. + + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + The RadRangeAttribute is an attribute which specifies the allowed range of values. + It can be applied to properties declarations only. + It is used by an editor when the propertyes is being edited. + + + + + Creates a new instance of the attribute withe the specific range. + + The minimum possible value in the range. + The maximum possible value in the range. + + + + Gets the minimum value of the specified range. + + + + + Gets the maximum value of the specified range. + + + + + The RadSortOrderAttribute is an attribute which specifies the sort order for properties inside . + It can be applied to properties declarations only. + + + + + Creates a new instance of the attribute with the specified value. + + The value defining the sort order. + + + + Gets the value of the attribute. + + + + + Defines an interface used to acces property information in RadPropertyGrid. + + + + + Gets the property name. + + + + + Gets the property display name + + + + + Gets or sets the property value. + + + + + Gets the property description. + + + + + Gets a value indicating whether the property is read only. + + + + + Gets the property category. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the property type. + + + + + Gets the associated with this property. + + + + + Gets the associated with this property. + + + + + Gets the associated with this property. + + + + + Gets the property name. + + + + + Gets the property display name + + + + + Gets or sets the property value. + + + + + Gets or sets the description associated with this property. + + + + + Gets the categoty of the property from its or returns "Other" if no category is specified. + + + + + Gets a value indicating whether the property is editable. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the property type. + + + + + Gets the property descriptor for this property. + + + + + Gets the UITypeEditor associated with this property + + + + + Gets the TypeConverter associated with this property + + + + + Gets the associated with this accessor. + + + + + Expands this instance. + + + + + Collapses this instance. + + + + + Gets the group item. + + The group item. + + + + Gets the expanded state of the group. + + + + + Expandes the item. + + + + + Collapses the item. + + + + + Ensures that this item is visible in the content of the RadPropertyGridElement. + + + + + Selects the grid tiem. + + + + + Allows PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Gets the parent property grid that the item is assigned to. + + + + + Gets or sets a value indicating whether this instance is visible. + + + true if this instance is visible; otherwise, false. + + + + + Gets or sets a value indicating whether this item is selected. + + + true if this item is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this item is expanded. + + + true if this item is expanded; otherwise, false. + + + + + Gets or sets a value indicating whether the item can respond to user interaction. + + The default value is true. + + + + Gets or sets the height of the item. + + The default value is 20. + + + + Gets or sets the image of the node. + + ImageIndex Property + ImageKey Property + + + + Gets or sets the left image list index value of the image displayed when the tree + node is not selected. + + Image Property + ImageKey Property + + + + Gets or sets the key + for the left image associated with this tree node when the node is not selected. + + Image Property + ImageIndex Property + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the description associated with this item. + + + + + Gets or sets the tool tip text associated with this item. + + + + Gets or sets the context menu associated to the item. + Returns an instance of RadDropDownMenu Class that + is associated with the item. The default value is null. + + This property could be used to associate a custom menu and replace the property grid's + default. If the context menu is invoked by right-clicking an item, the property grid's menu + will not be shown and the context menu assigned to this item will be shown instead. + + + + + Gets or sets the tag object that can be used to store user data, corresponding to the item. + + The tag. + + + + Gets a value indicating how deep in the hierarchy this propety is. + + + + + Gets the child items list associated with this item. + + + + + Gets a value indicating whether this item is expandable. + + + + + Gets the parent item for this item. + + + + + Gets the property name + + + + + Resets the property value to its default value. + + + + + Selects this item and puts the Property grid in edit mode. + + + + + Gets the child items for a given item. + + The parent item for which to get the child items. + The instance of the item. + The type of the property. + Collection of . + + + + Gets the default value of the current item. A return parameter determines if the operation succeeded. + + An object where the default value will be stored if there is such. + True if the item has a default value otherwise false. + + + + Determines if the item should update its child items based on the types of the old value and the new one. + + The old value of this item. + The new value of this item. + True if child items should be updated otherwise false. + + + + Converts a string into a password string. + + The input. + + + + + Gets the property name + + + + + Gets or sets the text that would be displayed for this property. + + + + + Gets or sets the description associated with this item. + + + + + Gets the category of the property from its or returns "Other" if no category is specified. + + + + + Gets a value indicating whether the property is read only. + + + + + Gets or sets the item value. + + The text. + + + + Gets the value of the property as a string using its . + + + + + Gets the original property value. + + + + + Gets a value indicating whether the property value is modified. + + + + + Gets a value indicating whether this is a complex property. + + + + + Gets or sets a value defining the sort order of the item when no other sorting is applied. + + + + + Gets a collection of the attributes applied to the property. + + + + + Gets the sub items of the current if it is composed of several subitems. + + + + + Gets or sets the parent of this item. + + + + + Gets or sets an error message to be displayed when property value validation fails. + + + + + Gets the UITypeEditor associated with this property + + + + + Gets the TypeConverter associated with this property + + + + + Gets the property type + + + + + Gets the property descriptor for this property. + + + + + Gets the item accessor for this property item. + + + + + Gets the items. + + + + + + Sets the current. + + The item. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets the property grid element. + + The tree view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Gets the text displayed for this group. + + + + + Gets the items collection of the group. + + + + + Gets a value indicating whether this item is expandable. + + + + + Gets the group created by the Group Factory + + + + + Gets the name of this group. + + + + + Represents a text box control editor in . + + + + + Gets the PropertyGridTableElement. + + + + + Gets the item tha is being processed. + + + + + Gets or sets the GroupKey. The GroupKey is a unique identifier for a group. + + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + PropertyGridSpreadExport is a powerful exporting API, allowing to export RadPropertyGrid to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The RadPropertyGrid to export. + + + + Initializes a new instance of the class. + + The RadPropertyGrid to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadPropertyGrid will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export child items grouped. + + + + + Gets or sets a value indicating whether to export item descriptions. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets the indent of child items. + + + + + Gets or sets a value indicating how children of collapsed items are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting item of RadPropertyGrid. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting item. + + + + + Defines the mode that uses to best fit its columns. + + + + + Maximizes the visibility of the strings in the Labels column. + + + + + Maximizes the visibility of the strings in the Values column. + + + + + Uses a mechanism that makes a maximum number of strings from both columns visibile. + + + + + Provides localization services for RadBrowseEditor. + + + + + Represents localization strings in RadBrowserEditor. + + + + + Specifies the navigation mode that will be used when user click on header element. + + + + + Exposes the top instance of CalendarView or its derived + types.v + Every CalendarView class handles the real calculation and + rendering of RadCalendar's calendric information. The + CalendarView has the + + CalendarViewCollection collection which contains all the sub views in case of multi view + setup. + + + + + Gets the parent calendar that the current view is assigned to. + + + + Gets or sets the selected cell. + + + + Gets the items collection of the element + + + + + Displays a collection of labeled items, each represented by a ListViewDataItem. + + + + + Shows the of CardTemplate and puts the selected item in customize mode. + + + + + Closes the and puts the selected item out of customize mode. + + + + + Gets the card view element. + + The card view element. + + + + Gets the RadLayoutControl used as a card template. + + + + + Gets or sets the default item size. + + + + + Gets or sets the space between the items. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Occurs when a new is created. + + + + + Occurs when a needs to be formatted. + + + + + Represents the main element of . + + + + + Represents the main element of . + + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Saves the changes. + + [true] if success, [false] otherwise + + + + Ends the current edit operations if such. Discards the changes. + + [true] if success, [false] otherwise + + + + Creates a view element corresponding to the current ViewType. + + The view element. + + + + Suspend any item change notifications until is called. + + + + + Resumes the item change notifications. + + + + + Finds an item with the specified key. + + The key of the searched item. + + + + + Finds an item with the specified key. + + The key of the searched item. + Indicates if the search should check only visible items. + + + + + Causes synchronization of the visual items with the logical ones. + + + + + Ensures that a given item is visible on the client area. + + The item to ensure visibility of. + + + + Ensures that a given item is visible on the client area. + + The item to ensure visibility of. + Indicates whether the view should be scrolled horizontally. + + + + Ensures that a given column is visible on the client area. + + The column to ensure visibility of. + + + + Selects a range of items. + + The items. + + + + Expands all the groups in the element. + + + + + Collapses all the groups in the element. + + + + + Checks all of the selected items. + + + + + Unchecks all of the selected items. + + + + + Checks all of the items. + + + + + Unchecks all of the items. + + + + + Updates the contents of the collection. + + + + + Scrolls the view with a given amount. + + The amount to scroll the view with. + + + + Fires when a group has been expanded. + + + + + Fires when a group is about to expand. Cancelable. + + + + + Occurs when a ListViewDataItem is about to be selected. Cancelable. + + + + + Occurs when the content of the SelectedItems collection has changed. + + + + + Occurs when the selected item has changed. + + + + + Occurs when the index of the selected item has changed. + + + + + Occurs when the ViewType of RadListView is changed. + + + + + Occurs when the ViewType of RadListView is about to change. Cancelable. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user presses a mouse button over a ListViewDataItem. + + + + + Occurs when the user moves the mouse over a ListViewDataItem. + + + + + Occurs when the user hovers a ListViewDataItem. + + + + + Occurs when the mouse pointer enters a ListViewDataItem. + + + + + Occurs when the mouse pointer leaves a ListViewDataItem. + + + + + Occurs when the user clicks a ListViewDataItem. + + + + + Occurs when the user double-clicks a ListViewDataItem. + + + + + Occurs when a ListViewDataItem is about to be checked. Cancelable. + + + + + Occurs when a ListViewDataItem is checked. + + + + + Occurs when a ListViewDataItem changes its state and needs to be formatted. + + + + + Occurs when a ListViewDataItem needs to be created. + + + + + Occurs when a BaseListViewVisualItem needs to be created; + + + + + Occurs when a DetailsView cell needs to be formatted. + + + + + Occurs when a data-bound item is being attached to a ListViewDataItem. + + + + + Occurs when the CurrentItem property is changed. + + + + + Occurs when the CurrentItem property is about to change. Cancelable. + + + + + Occurs when an editor is required. + + + + + Occurs when an edit operation is about to begin. Cancelable. + + + + + Occurs when an editor is initialized. + + + + + Occurs when a ListViewDataItem is edited. + + + + + Fires when a validation error occurs. + + + + + Occurs when an edit operation needs to be validated. + + + + + Occurs when the value of a ListViewDataItem is changed. + + + + + Occurs when the value of a ListViewDataItem is about to change. Cancelable. + + + + + Occurs when a needs to be created. + + + + + Occurs when a needs to be created. + + + + + Occurs when an item is about to be removed using the Delete key. Cancelable. + + + + + Occurs when an item is removed using the Delete key. + + + + + Gets or sets a value indicating whether column names which differ only in the casing are allowed. + + + + + Gets or sets a value indicating whether the last added item in the RadListView DataSource will be selected by the control. + + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets a value indicating whether the checkboxes should be in ThreeState mode. + + + + + Gets or sets a value indicating whether grid lines shoud be shown in DetailsView. + + + + + Gets or sets a value indicating whether items can be selected with mouse dragging. + + + + + Gets or sets a value indicating whether items should react on mouse hover. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. Always false when lasso selection is enabled. + + + + + Gets or sets a value indicating whether the items should be sorted when clicking on header cells. + + + + + Gets or sets a value indicating whether the column headers should be drawn. + + + + + Gets or sets a value indicating whether the items should be shown in groups. + + + + + Gets or sets value indicating whether checkboxes should be shown. + + + + + Gets or sets value indicating if the user can reorder columns via drag and drop. + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + Always false when using data source, grouping, filtering, sorting, kinetic scrolling or lasso selection. + + + + + Gets or sets value indicating if the user can resize the columns. + + + + + Gets or sets the current column in Details View. + + + + + Indicates whether there is an active editor. + + + + + Gets or sets the current item. + + + + + Gets or sets the index of the selected item. + + + + + Gets or sets the selected item. + + + + + Gets a collection containing the selected items. + + + + + Gets a collection containing the checked items. + + + + + Gets or sets value indicating whether multi selection is enabled. + + + + + Gets or sets value indicating whether editing is enabled. + + + + + Gets or sets value indicating whether the user can remove items with the Delete key. + + + + + Gets the currently active editor. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default group item size. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets the fill color of the lasso selection rectangle. + + + + + Gets or sets the border color of the lasso selection rectangle. + + + + + Gets or sets the space between the items. + + + + + Gets or sets a collection of ListViewDetailColumn object which represent the columns in DetailsView. + + + + + Gets a value indicating whether the control is in bound mode. + + + + + Gets a collection containing the groups of the RadListViewElement. + + + + + Gets or sets the value member. + + + + + Gets or sets the display member. + + + + + Gets or sets the checked member. + + + + + Gets the DataView collection. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether custom grouping is enabled. + + + + + Gets a collection of filter descriptors by which you can apply filter rules to the items. + + + + + Gets a collection of SortDescriptor which are used to define sorting rules over the + ListViewDataItemCollection. + + + + + Gets a collection of GroupDescriptor which are used to define grouping rules over the + ListViewDataItemCollection. + + + + + Gets the source of the items. + + + + + Gets or sets a collection of ListViewDataItem object which represent the items in RadListViewElement. + + + + + Gets the element that represents the active view. + + + + + Gets or sets the type of the view. + + + + + Gets or sets the data source of a RadListViewElement. + + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the height of the header in Details View. + + + + + Gets or sets the that is responsible for resizing the columns. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when BaseListViewElement is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets a value indicating whether the item's check state changes whenever the item is clicked. + + + + + Occurs when the BindingContext has changed. + + + + + Occurs when the process of binding to a data source has finished + + + + + Gets or sets the BindingContext. + + + + + Creates a view element for the current CardView. + + The view element. + + + + Shows the of CardTemplate and puts the selected item in customize mode. + + + + + Closes the and puts the selected item out of customize mode. + + + + + Begins an edit operation over the currently selected item. + + [true] if success, [false] otherwise + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Initializes the editor. + + The visual item. + The initializable. + The editor. + + + + Sets the selected item value. + + The instance containing the event data. + The new value. + + + + Gets the used as a card template. + + + + + Occurs when a new is created in + + + + + Occurs when a needs to be formatted. + + + + + Represents a base class for view elements. + + + + + Gets the at a specified location. + + The location. + The . + + + + Gets the at a specified location. + + The location. + The . + + + + Scrolls the view with a given amount. + + The amount to scroll with. + + + + Ensures that a given is visible on the client area. + + The to ensure visibility of. + + + + Ensures that a given is visible on the client area. + + The to ensure visibility of. + Indicates if the view should be scrolled horizontally. + + + + Clears the selection. + + + + + Toggles the CheckState of given item. + + The item whose CheckState will be toggled. + + + + Returns a value indicating whether the current view supports given orientation. + + The orientation. + [true] if the current view supports the orientation, [false] otherwise. + + + + Ensures that a given is visible by scrolling the view horizontally. + + The item to ensure visibility of. + + + + Ensures that a given is visible by scrolling the view vertically. + + The item to ensure visibility of. + + + + Ensures that a given is visible when it is below the last visible item in the view. + + The item to ensure visibility of. + + + + Called when the orientation of the view has changed. + + + + + Updates the horizontal scrollbar. + + + + + Updates the visibility of the horizontal scrollbar. + + + + + Processes the MouseUp event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the MouseMove event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the MouseDown event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the KeyDown event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Handles a press of the PageUp key. + + The event args. + + + + Handles a press of the PageDown key. + + The event args. + + + + Handles a press of the Delete key. + + The event args. + + + + Handles a press of the End key. + + The event args. + + + + Handles a press of the Home key. + + The event args. + + + + Handles a press of the Escape key. + + The event args. + + + + Handles a press of the F2 key. + + The event args. + + + + Handles a press of the Left key. + + The event args. + + + + Handles a press of the Right key. + + The event args. + + + + Handles a press of the Down key. + + The event args. + + + + Handles a press of the Up key. + + The event args. + + + + Handles a press of the Space key. + + The event args. + + + + Handles navigation upon key press. + + The character of the pressed key. + + + + This method traverses through the items in the control and fills a queue with these items that start with the . + + + + + + Gets the previous visible item of a given . + + The current item. + The previous item. + + + + Gets the next visible item of a given . + + The current item. + The next item. + + + + Processes the MouseWheel event. + + The event args. + true if the processing of the event should be stopped, false otherwise. + + + + Processes the selection of a specified item. + + The which is being processed. + The modifier keys which are pressed during selection. + [true] if the selection is triggered by mouse input, [false] otherwise. + + + + Selects all items that are whitin the lasso rectangle. + + + + + Selects all items that are whitin the specified rectangle. + + + + + Begins the lasso selection. + + + + + Ends the lasso selection. + + + + + Gets the drag hint location according to the specified item. + + The drop target item. + The mouse location in client coordinates. + The location of the drag hint. + + + + Indicates whether an item should be dropped after the given target according to the specified location. + + The drop target item. + The drop location. + [true] if a dropped item should be inserted after the target, [false] otherwise. + + + + Gets the size of the drag hint according to the speficied target. + + The drop target. + The size of the drag hint. + + + + Gets or sets the display state of the horizontal scrollbar. + + + + + Gets or sets the display state of the vertical scrollbar. + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where a column will be dropped after a drag operation. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets the orientation of the view element. + + + + + Gets the that owns the view. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets or sets a value indicating whether the full row should be selected. + + + + + Gets or sets the default item size. + + + + + Gets or sets the default group item size. + + + + + Gets or sets the fill color of the lasso selection rectangle. + + + + + Gets or sets the border color of the lasso selection rectangle. + + + + + Gets or sets the indent of the items when they are displayed in a group. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Updates the items layout. + + + + + Shows the customize dialog. + + + + + Closes the customize dialog. + + + + + Gets all child items. + + The items. + + + + + Gets the field names. + + + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + XmlWriter to use by the built-in serializer + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + The stream to write to. + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores CardTemplate's layout state in XML format, using the serialization + information provided by the property. + + The file to write to. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The XmlReader to read the XML from. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The stream to read from. + + + + Loads CardTemplate's layout state from XML file, using the serialization + information provided by the property. + + The file to read from. + + + + Gets the default serialization info for RadLayoutControl used by Save/Load layout methods to persist the layout to/from XML. + + The default serialization info. + + + + Initializes the items of the default context menu. + + + + + Gets the designer host. + + The list view element. + + + + + Gets a value indicating whether the owner is data bound or has any columns created. + + The list view element. + + + + + Synchronizes given CardViewContainerElement to the container of CardTemplate. + + The given container. + The visual item that owns the container. + + + + Updates item bounds and synchronizes properties. + + + + + + + + Handles the RadPropertyChanged event of the GroupItem control. + + The source of the event. + The instance containing the event data. + + + + Gets the item synchronization properties. + + The item synchronization properties. + + + + Gets the layout control used as a template for all displayed cards. + + + + + Gets or sets the context menu. + + + + + Gets the card view element. + + The card view element. + + + + Gets or sets the default item size. + + + + + Gets or sets a value indicating whether the items can have different height. + + + + + Gets or sets a value indicating whether the items can have different width. + + + + + Gets the serialization info for RadLayoutControl used by Save/Load layout methods to persist the layout to/from XML. + By default or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Updates the scrollbar metrics. + + + + + Gets the card items container. + + + + + Gets the horizontal . + + + + + Gets the vertical . + + + + + Represents the method that will handle the creating events of CardViewContainerElement items. + + The event sender, typically this is + Instance of containing the data related with this event + + + + Provides data for the CardViewItemCreating event. + + + + + Initializes a new instance of the CardViewItemCreatingEventArgs. + + The CardTemplate item. + The newly created item. + The visual item. + + + + Gets the from CardTemplate. + + + + + Gets or sets the created . + + + + + Gets the . + + + + + Represents the method that will handle the formatting events of CardViewContainerElement items. + + The event sender, typically this is + Instance of containing the data related with this event + + + + Provides data for the CardViewItemFormatting event. + + + + + Initializes a new instance of the CardViewItemFormattingEventArgs class. + + The + The + + + + Gets the . + + + + + Gets the . + + + + + Fires the VisualItemCreating event of . + + The visual item. + The view type of + The data item for which a visual item is being created + The new visual item. + + + + An element which hosts and provides the layout of items that inherit from the . + This element can be found at the root level of , as well as + in or . + + + + + A common interface for elements which host items. + + + + + Gets the the drag hint preview rectangle if an item were to be dragged at a given point. + + The dragged item. + The point in control coordinates. + The preview rectangle. + + + + Gets the the drag hint preview rectangle if an item were to be dragged at a given point. + + The dragged item. + The point in control coordinates. + The type of the dragged item. + The preview rectangle. + + + + Handles dropping an element over another at the specified position. + + The drop target element. + The dragged element. + The specified position. + + + + Rebuilds the layout of the container. + + + + + Rebuilds the layout of the container. + + If [true], forces a layout update. + + + + Updates the layout of the inner controls. + + + + + Updates the layout of the inner controls. + + If [true], goes into nested s recursively. + + + + Gets or sets the fill color of the drag preview rectangle. + + + + + Gets or sets the border color of the drag preview rectangle. + + + + + Gets the associated with this container. + + + + + The collection of items which this container hosts. + + + + + Represents an item which hosts other items that inherit from . + Has a header element and a which holds the items. + Can be expanded and collapsed. + + + + + A base class for all items which can be placed in + + + + + Gets the which owns this item. Can be either + or . + + The owner item. + + + + Gets a value indicating whether this item is currently hidden. + + + + + Gets or sets a value indicating whether this item can be deleted by the + end-user from the Customize dialog. + + + + + Called when the group is expanded or collapsed to do the necessary updates. + + + + + Gets or sets a value indicating whether the line in the header element should be shown. + + + + + Gets the header element of the group. + + + + + Gets or sets a value indicating whether the group is currently expanded. + + + + + Gets or sets the height of the header. + + + + + Gets the container element which hosts the items within the group. + + + + + Gets the items within the group. + + + + + This method is used internally! + + + + + This method is used internally! + + + + + + Gets or sets the name of field associated with this item. + + + + + Gets the field. + + + + + This method is used internally! + + + + + + Gets the rectangle in which the text part will be arranged. + + The client area of the item. + The arrange rectangle of the text part. + + + + Gets the rectangle in which the editor will be arranged. + + The client area of the item. + The arrange rectangle of the editor. + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the proportional size of the text part which will be used + when TextSizeMode is set to proportional. + + + + + Gets or sets the fixed size of the text part which will be used + when TextSizeMode is set to fixed. + + + + + Gets or sets the minimum size of the text part. + + + + + Gets or sets the maximum size of the text part. + + + + + Gets or sets the way in which the text part will be sized - proportionally or fixed-size. + + + + + Gets the editor label item. + + + + + Gets or sets the name of field associated with this item. + + + + + Gets the card field. + + + + + The dialog which is opened when is in edit mode. Provides interface + to access the hidden items, bring new items to the control, or preview and edit the existing item structure. + + + + + Called to update the Hidden Items group in the Items tab + + + + + Called to update the tree view in the Structure tab + + + + + Gets the text which should be displayed in an item in the Hidden Items group or the Structure tree view. + + The item to get the text for. + The text for the item. + + + + Gets the image which should be displayed in an item in the Hidden Items group or the Structure tree view. + + The item to get the image for. + The image for that item. + + + + Called to rearrange the items when the RightToLeft property of the dialog has changed. + + + + + Called when the drag drop service of the list view has started. + + + + + Called to handle dropping a dragged item from the list view on the Items tab. + + + + + Handles dropping a list view item over a . + + The dragged list view item. + The drop target item. + + + + Handles dropping a list view item over an empty container. + + The container. + The dragged item. + + + + Called to create a new when dropping an item from the New Items group. + + The dragged item. + The newly created item + + + + Handles the DragOver event of the list view's drag drop service. + + + + + Gets the drag context of a dragged item. + + The dragged item. + The type of the associated item. + + + + Handles the NodeRemoving event of the tree view on the structure tab. + + + + + Handles the Click event of the Save Layout button. + + + + + Handles the Click event of the Load Layout button. + + + + + Handles the NodeEdited event of the tree view on the Structure tab. + + + + + Handles the SelectedNodeChanged event of the tree view on the Structure tab. + + + + + Handles the MouseMove event of the tree view on the Structure tab. + + + + + Handles the MouseDown event of the tree view on the Structure tab. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Gets or sets the image of the element. + + + The image. + + + + + Gets the image primitive. + + + The image primitive. + + + + + This class represents the container which holds + all controls put in a + control. The scrolling support comes from this container. + + + + + Creates an instance of the + class. This constructor is used by the Visual Studio Designer. + + + + + Creates an instance of the + class. + + An instance of the + class which represents the owner of this container. + + + + Gets or sets a value indicating whether the focused control inside the RadScrollablePanel + will be automatically scrolled into view when gaining focus. + + + + + Initializes a new instance of the class. + + + + + Initializes the internal container which holds the controls. + + + + + Creates the child items. + + The parent. + + + + Creates the controls container which holds the controls. + + + + + + Creates the collapsible panel element. + + + + + + Creates a new instance of the control collection for the control. + + + A new instance of assigned to the control. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + An that contains the event data. + + + + Gets the default size of the control. + + The default of the control. + + + + Gets the controls container. + + + The controls container. + + + + + Gets the panel container which contains the controls of the RadCollapsiblePanel. + + + The panel container. + + + + + Gets the collapsible panel element. + + + The collapsible panel element. + + + + + Gets or sets the expand direction. + + + The expand direction. + + + + + Gets or sets a value indicating whether to use animation to expand or collapse the control. + + + true if the expand/collapse animations are enabled; otherwise, false. + + + + + Gets or sets the content sizing mode. + + + The content sizing mode. + + + + + Gets a or Sets value indicating whether the control is expanded. + + + true if the control is expanded; otherwise, false. + + + + + Gets a value indicating whether the control is currently animating. + + + true if the control is currently animating; otherwise, false. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + Gets or sets the header text. + + + The header text. + + + + + This value is set when the control is about to be collapsed and is used to restore the control's size when expanding. It should only be set by the control itself. + + + + + Gets or sets the animation interval. + + + The animation frames. + + + + + Gets or sets the animation frames. + + + The animation frames. + + + + + Gets or sets the easing type to be applied to the animation when expanding or collapsing + + + The animation easing type. + + + + + Gets or sets the type of the expand or collapse animation. + + + The type of the animation. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + Occurs after the control is expanded. + + + + + Occurs after the control is collapsed. + + + + + Occurs before the control is expanded. + + + + + Occurs before the control is collapsed. + + + + + Synchronizes its size, location and margin with the specified instance + + The element to synchronize with. + + + + Synchronizes its size with the specified instance + + The element to synchronize with. + + + + Synchronizes its location with the specified instance + + The element to synchronize with. + + + + Synchronizes its margin with the specified instance + + The element to synchronize with. + + + + Suspends the child controls layout. + + + + + Suspends the child controls layout where the controls are not docked. + + + + + Resumes the child controls layout. + + if set to true [perform layout]. + + + + Resumes the child controls layout. + + + + + Draws the control to a + + A new instance of + + + + Gets the container panel that holds + all the components added to the panel. + + + + + Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent. + + One of the values. The default is . + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usaage of the control. + + + + + Initializes a new instance of the class. + + The owner control. + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the header element. + + + + + + Creates the layout element. + + + + + + Raises the event. + + The instance containing the event data. + + + + Called when the button in the CollapsiblePanel's header is clicked. + + The sender. + The instance containing the event data. + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + + + + Expands the control. Will not have effect if the control is already expanded or is animating. + Can be canceled from the Expanding event. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + + + + Collapses the control. Will not have effect if the control is already collapsed or is animating. + Can be canceled from the Collapsing event. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + If the Control is expanded it will be collapsed and vice-versa. + + + + + If the Control is expanded it will be collapsed and vice-versa. + + if set to true ignores the IsExpanded property. + if set to true expands the control without animation. + + + + Creates the instance which will be used to animate the control. + Create it according to its value. + + + + + + Creates the instance which will be used to animate the control. + + if set to true expand animation will be created, otherwise collapse animation will be created. + + + + + Sets the control bounds after it is collapsed. + + + + + Creates the expand animation. + + + + + + Setups the reveal expand animation. + + The animation to be set up. + + + + Setups the slide expand animation. + + The animation to be set up. + + + + Creates the collapse animation. + + The new instance + + + + Setups the reveal collapse animation. + + The animation to be set up. + + + + Setups the slide collapse animation. + + The animation to be set up. + + + + Executes the collapse preparations. This method is invoked before the panel starts collapsing. + + If the current enumeration is not supported + + + + Executes the collapse finalizations. This method is invoked after the panel has collapsed. + + If the current enumeration is not supported + + + + Executes the expand preparations. This method is invoked before the panel starts expanded. + + If the current enumeration is not supported + + + + Executes the expand finalizations. This method is invoked after the panel has expanded. + + If the current enumeration is not supported + + + + Gets the object to be animated. This object is used by the current animation object. + + + If the current enumeration is not supported + + + + Gets the header element. + + + The header element. + + + + + Gets or sets the expand direction. + + + The expand direction. + + + + + Gets or Sets a value indicating whether the control is expanded. + + + true if the control is expanded; otherwise, false. + + + + + Gets or sets a value indicating whether to use animation to expand or collapse the control. + + + true if the expand/collapse animations are enabled; otherwise, false. + + + + + Gets or sets the content sizing mode. + + + The content sizing mode. + + + + + Gets or sets a value indicating whether the control is currently animating. + + + true if the control is currently animating; otherwise, false. + + + + + Gets or sets the animation interval. + + + The animation interval. + + + + + Gets or sets the animation frames. + + + The animation frames. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + Gets the layout element. + + + The layout element which is responsible for the position of the ControlsContainer + + + + + Gets or sets the header text. + + + The header text. + + + + + This value is set when the control is about to be collapsed and is used to restore the control's size when expanding. It should only be set by the control itself. + + + + + Gets or sets the easing type to be applied to the animations + + + The animation easing type. + + + + + Gets or sets the type of the expand or collapse animation. + + + The type of the animation. + + + + + Occurs when the control is expanded. + + + + + Occurs when the control is collapsed. + + + + + Occurs when the control is about to be expanded. Cancelable. + + + + + Occurs when the control is about to be collapsed. Cancelable. + + + + + Initializes member fields to their default values. + This method is called prior the CreateChildItems one and allows for initialization of members on which child elements depend. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the button element. + + + + + + Creates the text element. + + + + + + Creates the line element. + + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the expand collapse button element. + + + The expand collapse button element. + + + + + Gets the header text element. + + + The header text element. + + + + + Gets the header line element. + + + The header line element. + + + + + Gets or sets a value indicating whether to show a line primitive in the header. + + + true if a line in the header is visible; otherwise, false. + + + + + Gets or sets the horizontal header alignment. + + + The horizontal header alignment. + + + + + Gets or sets the vertical header alignment. + + + The vertical header alignment. + + + + + The content will be horizontally positioned in the center of its parent. + + + + + The content will be horizontally positioned to the center of its parent. + + + + + The content will be horizontally positioned to the left of its parent. + + + + + The content will stretched so all children have equal width. + + + + + The content will be vertically positioned in the center of its parent. + + + + + The content will be vertically positioned to the bottom of its parent. + + + + + The content will be vertically positioned to the top of its parent. + + + + + The content will stretched so all children have equal height. + + + + + Gets or sets the name of the descriptor. + + The name of the descriptor. + + + + Gets or sets the type of the descriptor. + + The type of the descriptor. + + + + Gets or sets a value indicating if this descriptor item is auto generated. + + The is auto generated. + + + + Gets or sets the default filter operator. + + The default filter operator. + + + + Gets or sets the default value. + + The default value. + + + + Gets the filter operators. + + The filter operators. + + + + Gets the filter operation context. + + The filter operation context. + + + + Gets or sets the data source that populates the items for the . + + + + + Gets or sets a string that specifies the property or database column from which to get values that correspond to the items in the . + + + + + Gets or sets a string that specifies the property or database column from which to retrieve strings for display in the items. + + + + + Specifies the mode for the automatic completion feature used in the . + + + + + Gets or sets a value specifying the style of the . + + + + + Gets or sets the editor's value. + + + + + Gets or sets a value indicating whether the node is selected. + + + + + Gets or sets a value indicating that this is the current node. + + + + + Gets or sets a value indicating whether the node is expanded. + + + + + Gets or sets a value indicating whether the control contains the focus. + + + + + Gets a value indicating whether the node is currently at root level. + + + + + Gets or sets the arbitrary height for this particular node. + Valid when the owning RadTreeViewElement's AllowArbitraryHeight property is set to true. + + + + + Gets a value indicating that this is the hot tracking node. + + + + + Gets a value indicating whether this node contains child nodes. + + + + + Synchronizes this instance. + + + + + Sets the control cursor. + + The cursor. + + + + Gets or sets the currently editing element. + + The editing element. + + + + Gets the drag element. + + The drag element. + + + + Gets the close button. + + The close button. + + + + Gets the data filter element. + + The data filter element. + + + + Initializes new instance of the RadTreeNode class. + + The text to be used as label text. + A boolean value indicating whether the node is expanded. + + + + Finds the specified match. + + The match. + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Initiates the editing of the tree node. + + + + + + Ends the edit. + + + + + + Cancels the edit. + + + + + + Collapses the tree node. + + + + + Collapses the and optionally collapses its children. + + if set to true [ignore children]. + + + + Ensures that the tree node is visible, expanding tree nodes and scrolling the tree view control as necessary. + + + + + Expands the tree node. + + + + + Expands all the child tree nodes. + + + + + Returns the number of child tree nodes. + + if set to true [include sub trees]. + + + + + Removes the current tree node from the tree view control. + + + + + Toggles the tree node to either the expanded or collapsed state. + + + + + Returns a that represents the tree node. + + + A that represents the tree node. + + + + + This method is used internally! + + + + + Execute the action for every RadTreeNode in the branch + + + + + + Creates a new object that is a copy of the current instance. + + + A new object that is a copy of this instance. + + + + + Allows PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Sets the IBindingList which holds the child nodes in Object Relational Binding mode + + + + + + Gets the last matches using Find method. + + Gets the last matches using Find method. + + + + Gets the style. + + The style. + + + + Gets a value indicating whether this instance has style. + + true if this instance has style; otherwise, false. + + + + Gets or sets a value indicating whether the node can respond to user interaction. + + The default value is true. + + + + Gets the root parent node for this RadTreeView. + + The default value is null. + + + + Gets the parent tree view that the tree node is assigned to. + + + + + Gets or sets a value indicating whether this is checked. + + true if checked; otherwise, false. + + + + Gets or sets the state of the check element. + + The state of the check. + + + + Gets or sets the type of the check element. + + The type of the check. + + + Gets or sets the context menu associated to the node. + + Returns an instance of RadDropDownMenu Class that + is associated with the node. The default value is null. + + + This property could be used to associate a custom menu and replace the treeview's + default. If the context menu is invoked by right-clicking a node, the treeview's menu + will not be shown and the context menu assigned to this node will be shown + instead. + + RadContextMenu Property (Telerik.WinControls.UI.RadTreeView) + + + + Gets or sets a value indicating whether this instance is visible. + + + true if this instance is visible; otherwise, false. + + + + + Gets the index. + + The index. + + + + Gets a value indicating whether this instance is editing. + + + true if this instance is editing; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is selected. + + + true if this instance is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is current. + + + true if this instance is current; otherwise, false. + + + + + Gets or sets the tree view element. + + The tree view element. + + + + Gets or sets a value indicating whether this instance is expanded. + + + true if this instance is expanded; otherwise, false. + + + + + Gets or sets the parent. + + The parent. + + + + Gets or sets the text. + + The text. + + + + Gets or sets the node value. + + The text. + + + + Gets the nodes. + + The nodes. + + + + Gets the level. + + The level. + + + + + Gets or sets the name of the RadTreeNode. + + A String that represents the name of the tree node. + + The Name of a TreeNode is also the node's key, when the node is part of a + TreeNodeCollection. If the node does not + have a name, Name returns an empty string (""). + + + + + Gets the first node. + + The first node. + + + + Gets the last node. + + The last node. + + + + Gets the next node. + + The next node. + + + + Gets the next visible node. + + The next visible node. + + + + Gets the prev node. + + The prev node. + + + + Gets the prev visible node. + + The prev visible node. + + + + Gets or sets the tag object that can be used to store user data, corresponding to the tree node. + + The tag. + + + + Gets or sets the text that appears when the mouse pointer hovers over a tree node. + + The default value is "". + + + + Gets the full path. + + The full path. + + + + Gets or sets the image of the node. + + ImageIndex Property + ImageKey Property + + + + Gets or sets the left image list index value of the image displayed when the tree + node is not selected. + + Image Property + ImageKey Property + + + + Gets or sets the key for the left image associated with this tree node. + + Image Property + ImageIndex Property + + + + Gets or sets the height of the tree node in the tree view control. + + The default value is 20. + + + + Gets or sets the measured desired width for this node. + + + + + Gets or sets the measured desired width for this node. + + + + + Gets or sets a value indicating whether [allow drop]. + + true if [allow drop]; otherwise, false. + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets a value if the node is root node + + + + + Gets the data-bound object that populated the node. + + + + + Gets or sets the font of the node text. + + The default value is null. + + + + Gets or sets the foreground color of the tree node. This color is applied to the text label. + + + + + Gets or sets the backcolor of the tree node. Color type represents an ARGB color. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, gel, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the tree node. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the border color of the tree node. + + + + + Gets or sets gradient angle for linear gradient. + + GradientStyle Property + GradientPercentage Property + GradientPercentage2 Property + NumberOfColors Property + The default value is 90.0. + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + GradientStyle Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + GradientStyle Property + GradientPercentage Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + The default value is + GradientStyles.Linear. + + GradientStyles Enumeration + GradientPercentage Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + + + + Gets or sets the number of used colors in the gradient effect. + + BackColor Property + BackColor2 Property + BackColor3 Property + BackColor4 Property + GradientStyle Property + The default value is 4. + + + + Gets or sets the text alignment. + + + The default value is ContentAlignment.MiddleLeft. + + + + + Gets the associated group node. + + The associated group node. + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the drop down button. + + The drop down button. + + + + Compares the specified x. + + The x. + The y. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Synchronizes this instance. + + + + + Gets the value of field, operator and value elements. + + + + + + Updates the descriptor value. + + The value. + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the criteria node. + + The criteria node. + + + + Gets the field element. + + The field element. + + + + Gets the operator element. + + The operator element. + + + + Gets the value element. + + The value element. + + + + Removes the current tree node from the tree view control. + + + + + Gets the formatted value. + + + + + Gets or sets the associated filter descriptor. + + The descriptor. + + + + Gets or sets the descriptor item. + + The descriptor item. + + + + Gets or sets the property name of associated filter descriptor. + + The name of the property. + + + + Gets or sets the filter operator of associated filter descriptor. + + The filter operator. + + + + Gets or sets the value of associated filter descriptor. + + The descriptor value. + + + + Gets the type of the value. + + The type of the value. + + + + Gets or sets the node value. + + The text. + + + + Creates a new tree node in the target RadTreeView using the information from the source tree. + + The source tree node. + A new instance of if successfull. + + + + Gets or sets a value indicating whether show drop hint should be shown. + + true if [show drop hint]; otherwise, false. + + + + Gets or sets a value indicating whether drag hint should be shown. + + true if [show drag hint]; otherwise, false. + + + + Determines whether this instance can start the specified context. + + The context. + + + + + Determines whether this instance [can drag over] the specified drop position. + + The drop position. + The target node element. + + + + + Cancels the preview drag drop. + + The instance containing the event data. + + + + + Gets the editor element. + + The editor. + + + + + Gets the editor. + + The editor. + + + + Gets or sets the type of the editor. + + The type of the editor. + + + + Creates the element. + + The data. + The context. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Synchronizes this instance. + + + + + Updates the descriptor value. + + The value. + + + + Gets the logical operator form text. + + The text. + + + + + Gets the logical operator of group node. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + + + + Gets the size of the editor. + + Size of the available. + The editor element. + + + + + Gets the group node. + + The group node. + + + + Gets the logical operator element. + + The logical operator element. + + + + Gets the text element. + + The text element. + + + + Gets the logical operator. + + The logical operator. + + + + Adds child descriptor. + + The descriptor to add. + + + + Removes child descriptor. + + The descriptor to remove. + + + + Removes the current tree node from the tree view control. + + + + + Gets or sets the associated composite descriptor. + + The composite descriptor. + + + + Gets or sets the logical operator of associated CompositeDescriptor. + + The logical operator. + + + + Gets or sets the associated add node. + + The associated add node. + + + + Gets or sets the full desired size calculated by the virtualized container + + + + + Gets the first found item, with property name equal to item descriptor name specified, case-sensitive. + + RadItem if found, null (Nothing in VB.NET) otherwise + + + + + Gets the operator. + For example: If the operator is LIKE and the value is '%s%' - returns Contains. + + The filter operator. + The value. + + + + + Gets the display value. Returns a value depending on filter operator. + + The filter operator. + The value. + + + + + Gets the display name from localization provider. + + The filter operator. + The value. + + + + + Gets the filter operations that are suitable for the given data type. + + Type of the data. + + + + + Gets the name. + + The name. + + + + Gets the operator. + + The operator. + + + + Updates the properties from current SourceControl. + + + + + Gets the field names. + + + + + + Applies the filter to the SourceControl. + + The expression. + Thrown if the SourceControl is not initialized. + Thrown if the SourceControl is not implementer of System.ComponentModel.IBindingListView, System.Data.DataTable or System.Data.DataView + + + + Gets the type of the field. + + Name of the field. + + + + + Gets the property descriptor. + + Name of the property. + + + + + Gets or sets the source control. + + The source control. + + + + Gets or sets the property descriptors. + + The property descriptors. + + + + Creates the provider. + + The source control. + + + + + Applies the filter expression to the DataFilter. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the data filter. + + The data filter. + + + + Gets or sets the data source of DataFilter. + + The data source. + + + + RadDataFilter localization strings. + + + + + Provides localization services for RadDataFilter. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + Displays a hierarchical collection of filter expressions. + + + + + Displays a hierarchical collection of labeled items, each represented by a RadTreeNode. + + + + + Sets the error. + + The text. + The RAD tree node. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The new node if the operation is successful. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The path separator. + The new node if the operation is successful. + + + + Gets a node by specifying a path to it. + + The path to the node. + The node if found. + + + + Gets a node by specifying a path to it. + + The path to the node. + The path separator. + The node if found. + + + + Gets a node with the specified name. + + The name of the node. + A node with the specified name. + + + + Gets a node with the specified name. + + The name of the node. + /// The node which the should be taken as a root. + A node with the specified name. + + + + Brings the into view. + + The node. + + + + Finds the specified match. + + The match. + + + + + Finds the specified match. + + The match. + The argument. + + + + + Finds the specified text. + + The text. + + + + + Execute the specified action for every RadTreeNode in the tree + + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Finds the nodes. + + The text. + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Begins the edit. + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Loads the XML. + + Name of the file. + The extra types that will be load + + + + Loads the XML. + + The stream. + The extra types that will be load + + + + Saves the XML. + + Name of the file. + The extra types that will be saved + + + + Saves the XML. + + The stream. + The extra types that will be saved + + + + Disables any update of the tree view. + + + + + Ends the update. + + + + + Defers the refresh. + + + + + + Collapses all the tree nodes. + + + + + Collapses all nodes in a given collection. + + The collection of nodes to be collapsed. + + + + Expands all the tree nodes. + + + + + Expands all nodes in a given collection. + + The collection of nodes to be expanded. + + + + Retrieves the tree node that is at the specified point. + + The System.Drawing.Point to evaluate and retrieve the node from. + The System.Windows.Forms.TreeNode at the specified point, in tree view (client) coordinates, or null if there is no node at that location. + + + + Retrieves the tree node at the point with the specified coordinates. + + The System.Drawing.Point.X position to evaluate and retrieve the node from. + The System.Drawing.Point.Y position to evaluate and retrieve the node from. + The System.Windows.Forms.TreeNode at the specified location, in tree view (client) coordinates, or null if there is no node at that location. + + + + Retrieves the number of tree nodes, optionally including those in all subtrees, assigned to the tree view control. + + The number of tree nodes, optionally including those in all subtrees, assigned to the tree view control. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Executes a command over an entire subtree starting with the specified nodes. + + The nodes form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The results from the batch execution. + + + + Executes a command over an entire subtree starting with the specified node. + + The node form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The first result from the batch execution. + + + + Executes a command over an entire subtree starting with the specified node. + + The node form which the execuition starts. + The level of nodes over which to execute the command. If -1 the entire subtree is traversed. + The command to execute. + Parameters to pass the command prior to execution. + The results from the batch execution. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a value indicating whether the TreeView load child Nodes collection in NodesNeeded event only when Parent nodes expanded. + + true if [lazy mode]; otherwise, false. + + + + Gets or sets the color of the drop hint. + + + The drop feedback is a visual cue that assists the user with information where to + drop during the drag and drop operation. + + ShowDropHint Property + + The default value is + + black. + + + + + Gets or sets a value indicating whether [show drop feedback]. + + true if [show drop feedback]; otherwise, false. + + + + Gets or sets a value indicating whether [show drop feedback]. + + true if [show drop feedback]; otherwise, false. + + + + Contains data binding settings for related data. + + + + Gets or sets the type of the expand animation enumeration. + AllowPlusMinusAnimation enumeration + PlusMinusAnimationStep Property + ExpandAnimation Enumeration + + The default value is ExpandAnimation.Opacity. + + + + Gets or sets the opacity animation step for expand/collapse animation. + + Returns a double value from double.Epsilon to 1 representing the opacity changing step with + which the plus minus buttons are animated. The default value is 0.025. + + + + + Gets or sets a value indicating whether animation of collapse/expand images is enabled. + + ShowExpanCollapse Property + PlusMinusAnimationStep Property + The default value is false. + + + + The default image index for nodes. + + The index of the image. + + + + The default image key for nodes. + + The image key. + + + + Gets or sets a value indicating whether drag and drop operation with treeview + nodes is enabled. + + AllowDragDropBetweenTreeViews Property + AllowDrop Property (Telerik.WinControls.UI.RadTreeNode) + The default value is false. + + + + Gets or sets a value indicating whether the user is allowed to select more than one tree node at time + + true if [multi select]; otherwise, false. + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets the associated with this control. + + + + The for this control, or null if there is no . The default is null. + + + + + Gets or sets the filter. + + The filter. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets a value indicating whether checkboxes are displayed beside the nodes. + + The default value is false. + + + + Gets or sets a value indicating whether the child nodes should be auto checked when RadTreeView is in tri state mode + + The default value is false. + + + + Gets or sets a value indicating whether the highlight spans the width of the tree + view. + + The default value is false. + + + + Gets or sets a value indicating whether [hide selection]. + + true if [hide selection]; otherwise, false. + + + + Gets or sets a value indicating whether [hot tracking]. + + true if [hot tracking]; otherwise, false. + + + + Gets or sets the indent. + + The indent. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets a value indicating whether nodes can have different height. + + The default value is false. + + + Gets or sets the spacing in pixels between nodes. + The default value is 0. + + + + Gets or sets a value indicating whether editing is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether adding new nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether removing nodes is allowed. + + true if [allow edit]; otherwise, false. + + + Gets a value indicating whether there is an open editor in the tree view. + + + Gets the active editor in the tree. + + The IValueEditor Interface if any. + + + + + Gets or sets the color of the line. + + The color of the line. + + + + Gets or sets the path separator. + + The path separator. + + + + Gets or sets the selected node. + + The selected node. + + + + Gets the checked nodes. + + The checked nodes. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets a value indicating whether expand/collapse (plus-minus) buttons are + shown next to nodes with children. + + The default value is true. + + + + Gets the top node. + + The top node. + + + + Gets the visible count. + + The visible count. + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the display member. + + The display member. + + + + Gets or sets the value member. + + The value member. + + + + Gets or sets the checked member. + + The checked member. + + + + Gets or sets the child member. + + The child member. + + + + Gets or sets the parent member. + + The parent member. + + + + Gets the collection of tree nodes that are assigned to the tree view control. + + A System.Windows.Forms.TreeNodeCollection that represents the tree nodes assigned to the tree view control. + + + + Gets the tree view element. + + The tree view element. + + + + Gets the Horizontal scroll bar. + + The Horizontal scroll bar. + + + + Gets the Vertical scroll bar. + + The Vertical scroll bar. + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Dot. + + + + + Gets or sets a value indicating whether tri state mode is enabled. + + The default value is false. + + + + Gets or sets a value indicating the default tree view toggle mode. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadTreeView is focused. + + The default value is false. + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + The default value is 300ms. + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + RadTreeView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadTreeView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs when the RadTreeView NodesNeeded event is handled and LazyMode property is true. + + + + + Occurs when the RadTreeView report the data error. + + + + + Occurs when the user begins dragging an item. + + + + + Occurs when TreeView required editor. + + + + + Occurs before the tree node label text is edited. + + + + + Occurs when initializing the active editor. + + + + + Occurs after the tree node label text is edited. + + + + + Occurs when the editor is changing the value during the editing process. + + + + + Occurs when the editor finished the value editing. + + + + + Occurs when the editor changed the value editing. + + + + + Occurs when editor validating fails. + + + + + Occurs when a drag is ending + + + + + Occurs when a drag has ended + + + + + Occurs when a drag is starting + + + + + Occurs when a drag has started + + + + + Occurs when drag feedback is needed for a node. + + + + + Occurs before a tree node is selected. + + + + + Occurs after the tree node is selected. + + For more information about handling events, see also SelectedNodeChanging. + + + + + + Occurs when selected nodes has been cleared. + + + + + Occurs when SelectedNodes collection has been changed. + + + + + Occurs when the user presses a mouse button over a RadTreeNode. + + + + + Occurs when the user releases a mouse button over a RadTreeNode. + + + + + Occurs when the user moves the mouse in the area of a RadTreeNode. + + + + + Occurs when the mouse enters the area of a RadTreeNode. + + + + + Occurs when the mouse leaves the area of a RadTreeNode. + + + + + Occurs when the mouse hovers over a RadTreeNode. + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when the value of the Checked property of a RadTreeNode is changing. + + + + + Occurs when the value of the Checked property of a RadTreeNode is changed. + + + + + Occurs before the value of the Expanded property of a tree node is changed. + + + + + Occurs after the value of the Expanded property of a tree node is changed. + + + + + Occurs when the Nodes collection requires to be populated in Load-On-Demand mode using LazyTreeNodeProvider. + + + + + Occurs when the node changes its state and needs to be formatted. + + + + + Occurs when a new node is going to be created. + + + + + Occurs when a new node element is going to be created. + + + + + Occurs when opening the context menu. + + + + + Occurs after a node is removed. + + + + + Occurs before a node is removed. + + + + + Occurs after a node is being added. + + + + + Occurs after a node is bound to a data item. + + + + + Occurs before a node is being added. + + + + + Gets or sets a value indicating whether single node expand is enabled. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Applies the filter to the DataSource. + + + + + Signals the object that initialization is complete. + + + + + Loads the XML with reader. + + The reader. + The extra types. + + + + Saves the XML with writer. + + The writer. + The extra types. + + + + Gets or sets the auto generate descriptor items. + + The auto generate descriptor items. + + + + A collection of descriptor items used to identify the property names and their corresponding types. + + + + + Gets or sets the data source that the is displaying filters for. + + + + + Gets the data filter element. + + The data filter element. + + + + Gets or sets the expression. + + The expression. + + + + Gets or sets a value indicating whether the name of fields in fields drop down should be sorted. + + + + + Gets the collection of tree nodes. + + + A System.Windows.Forms.TreeNodeCollection that represents the tree nodes assigned to the data filter control. + + + + + Gets or sets a value indicating whether drag and drop operation with RadDataFilter + nodes is enabled. + + AllowDragDropBetweenTreeViews Property + AllowDrop Property (Telerik.WinControls.UI.RadTreeNode) + The default value is false. + + + + Gets or sets a value indicating whether adding new nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether removing nodes is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether editing is allowed. + + true if [allow edit]; otherwise, false. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets the color of the line. + + The color of the line. + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Solid. + + + + + Gets or sets a value indicating the default tree view toggle mode. + + + + + Raises the event. + + The instance containing the event data. + + + + Sets the error. + + The text. + The RAD tree node. + The context where this error occured. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The new node if the operation is successful. + + + + Creates a new node and adds a node by path. The label of the new node will be the text after the last separator. + + Where the node should be added. + The path separator. + The new node if the operation is successful. + + + + Gets a node by specifying a path to it. + + The path to the node. + The node if found. + + + + Gets a node by specifying a path to it. + + The path to the node. + The path separator. + The node if found. + + + + Gets a node with the specified name. + + The name of the node. + A node with the specified name. + + + + Gets a node with the specified name. + + The name of the node. + /// The node which the should be taken as a root. + A node with the specified name. + + + + Puts the current node in edit mode. + + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Updates the visual items in the three view + + Indicated the update action + + + + Updates the visual items in the three view + + Indicated the update action + Array representing the nodes which should be updated + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Defers the refresh. + + + + + + Collapses all. + + + + + Expands all. + + + + + Gets an enumerator which enumerates all nodes in the tree. + + The enumerator. + + + + Gets an enumerator which enumerates all descendant nodes of a node. + + The enumerator. + + + + Gets the node at. + + The x. + The y. + + + + + Gets the node at. + + The pt. + + + + + Gets the node element at. + + The x. + The y. + + + + + Gets the node element at. + + The pt. + + + + + Gets the node count. + + if set to true [include sub trees]. + + + + + Finds the specified match. + + The match. + + + + + Finds the specified text. + + The text. + + + + + Finds the nodes. + + The match. + + + + + Finds the nodes. + + The match. + The argument. + + + + + Finds the nodes. + + The text. + + + + + Execute the specified action for every RadTreeNode in the tree + + + + + + Executes the specified command. + + The command. + The settings. + + + + + Executes the specified command include sub trees. + + if set to true [include sub trees]. + The command. + The settings. + + + + + Scrolls to. + + The delta. + + + + Ensures that the specified tree node is visible within the tree view element, scrolling the contents of the element if necessary. + + The node to scroll into view + + + + Ensures that the specified tree node is visible within the tree view element, scrolling the contents of the element if necessary. + This method expands parent items when necessary. + + The node to bring into view + + + + This method traverses through the visible nodes of RadTreeView and returns a node that matches the . + + + + + + + Occurs when [data error]. + + + + + Occurs when [binding context changed]. + + + + + Occurs when is formatting + + + + + Occurs when is created. + + + + + Occurs when is created. + + + + + Occurs after a node is bound to a data item. + + + + + Occurs when is mouse down. + + + + + Occurs when is mouse up. + + + + + Occurs when mouse is move over a . + + + + + Occurs when LazyMode is true and NodesNeeded event is handled + + + + + Occurs when mouse enters a + + + + + Occurs when mouse leaves a + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when is hovered. + + + + + Occurs when node's checked state is changing. + + + + + Occurs when node's checked state is changed. + + + + + Occurs when node is expanding. + + + + + Occurs when node has been expanded. + + + + + Occurs when the selected node is changing + + + + + Occurs when selected node has been changed. + + + + + Occurs when selected node has been cleared. + + + + + Occurs when SelectedNodes collection has been changed. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when node's value is changing. + + + + + Occurs when node's value has been changed. + + + + + Occurs when node's value is validating. + + + + + Occurs when validation error occurs by canceling the ValueValidating event. + + + + + Occurs when the user begins dragging an item. + + + + + Occurs when a drag is starting + + + + + Occurs when a drag has started + + + + + Occurs when a drag is ending + + + + + Occurs when a drag has ended + + + + + Occurs when drag feedback is needed for a node. + + + + + Occurs when nodes are needed in load on demand hierarchy + + + + + Occurs after a node is removed. + + + + + Occurs after a node is being added. + + + + + Gets or sets the default sort Comparer for RadTreeView. The default comparer compares the nodes according to their text. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether the TreeView load child Nodes collection in NodesNeeded event only when Parend nodes expanded. + + true if [lazy mode]; otherwise, false. + + + + Gets or sets a value indicating whether the child nodes should be auto checked when RadTreeView is in tri state mode + + The default value is false. + + + + Contains data binding settings for related data. + + + + Gets or sets the type of the expand animation enumeration. + AllowPlusMinusAnimation enumeration + PlusMinusAnimationStep Property + ExpandAnimation Enumeration + + + The default value is ExpandAnimation.Opacity. + + + + Gets or sets the opacity animation step for expand/collapse animation. + + Returns a double value from double.Epsilon to 1 representing the opacity changing step with + which the plus minus buttons are animated. The default value is 0.025. + + + + + Gets or sets a value indicating whether animation of collapse/expand images is enabled. + + ShowExpanCollapse Property + PlusMinusAnimationStep Property + The default value is false. + + + + The default image index for nodes. + + The index of the image. + + + + The default image key for nodes. + + The image key. + + + + + Gets or sets a value indicating whether [tri state mode]. + + true if [tri state mode]; otherwise, false. + + + + Gets or sets the toggle mode. + + The toggle mode. + + + + Gets or sets the drag drop service used when dragging nodes within RadTreeView or between different instances of RadTreeView. + + The drag drop service. + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where an item will be dropped after a drag operation. + + + + + Gets the last node. + + The last node. + + + + Gets or sets a value indicating whether [allow drag drop]. + + true if [allow drag drop]; otherwise, false. + + + + Gets or sets a value indicating whether [multi select]. + + true if [multi select]; otherwise, false. + + + + Gets or sets a value indicating whether [show expander]. + + true if [show expander]; otherwise, false. + + + + Gets the selected nodes. + + The selected nodes. + + + + Gets the checked nodes. + + The checked nodes. + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating whether [check boxes]. + + true if [check boxes]; otherwise, false. + + + + Gets or sets a value indicating whether [hide selection]. + + true if [hide selection]; otherwise, false. + + + + Gets or sets a value indicating whether [hot tracking]. + + true if [hot tracking]; otherwise, false. + + + + Gets or sets the height of the item. + + The height of the item. + + + + Gets or sets the active editor. + + The active editor. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets the default RadTreeNode edit mode. + + The edit mode. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets a value indicating whether there is an open editor in the tree view. + + + + + Gets or sets the selected node. + + The selected node. + + + + Gets or sets a value indicating whether [show lines]. + + true if [show lines]; otherwise, false. + + + + Gets or sets a value indicating whether [show root lines]. + + true if [show root lines]; otherwise, false. + + + + Gets or sets a value indicating whether [show node tool tips]. + + true if [show node tool tips]; otherwise, false. + + + + Gets the first visible tree node in the tree view. + + + + + Gets or sets the color of the lines connecting the nodes in the tree view. + + + + + Gets or sets the line style. + + TreeLineStyle enumeration + + A TreeLineStyle that represents the style used for + the lines between the nodes. The default is + TreeLineStyle.Dot. + + + + + Gets the number of tree nodes that are visible in the tree view + + + + + Gets or sets the path separator. + + The path separator. + + + + Gets or sets the tree node provider. + + The tree node provider. + + + + Gets or sets the binding context. + + The binding context. + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets the nodes. + + The nodes. + + + + Gets or sets the indent of nodes, applied to each tree level. + + + + + Gets or sets the filter. + + The filter. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the name of the list or table in the data source for which the is displaying data. + + + + + Gets or sets a property name which will be used to extract a value from the data items. The value of the property with + this name will be available via the Value property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to extract the checked state of the data items. The value of the property with + this name will be available via the Checked property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the text of the data items. The value of the property with + this name will be available via the Text property of every RadTreeNode. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets the expand image + + + + + Gets or sets the expand image + + + + + Gets or sets the hovered expand image + + + + + Gets or sets the hovered collapse image + + + + + Gets or sets a value indicating whether nodes can have different height. + + The default value is false. + + + + Gets or sets a value indicating whether to select the full row. + + The default value is false. + + + + Gets or sets the vertical spacing among nodes. + + + + + Gets or sets the alternating row color. + + + + + Gets or sets a value indicating whether to show rows with alternating row colors. + + + + + Gets the index of the first visible node. + + + + + Gets or sets a value indicating whether single node expand is enabled. + + + + + Gets or sets a property that controls the visibility of the horizontal scrollbar. + + + + + Gets or sets a property that controls the visibility of the vertical scrollbar. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether to scroll horizontally RadTreeView to ensure that the clicked node is visible. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Provides a callback so that the default filtering expression parser can be substituted. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadTreeViewElement is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Gets or sets the expand timer interval - this is the interval of time in milliseconds which will pass before a hovered node is being expanded during drag and drop operation. + + + The expand timer interval. + + + + + Builds the tree based on the collection of filter descriptors. + + + + + Applies the filter to the DataSource. + + + + + Adds child nodes, based on the given filter descriptor and its child descriptors. + + The filter. + The node, that will be the parent of created nodes. + + + + Removes the child node. + + The node to remove. + + + + Removes the child node. + + The parent node. + The child node. + + + + Clears the child nodes of given group node. + + The node. + + + + Validates if adding new node is allowed. + + + + + Gets the default name of field property. + + + + + Updates the value and operator of the descriptor. + + The descriptor. + + + + Gets the field names. + + + + + Gets the type of the editor. + + Type of the value. + + + + + Puts the current node in edit mode. + + + + + Ends the init. + + + + + Normalizes the expression. + + + + + Normalizes the child descriptor. + + The composite descriptor. + + + + Called when [editor required]. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The sender. + The instance containing the event data. + + + + Setups the drop down list. + + The criteria node. + The editor. + The display value. + + + + Gets the editor. + + Type of the editor. + + + + + Initializes the editor. + + Type of the value. + The editor. + + + + Gets the type of the field by given property name. + + Name of the property. + + + + Initializes the spin editor. + + The spin editor. + Type of the value. + + + + Saves the editor value. + + The node element. + The new value. + + + + Gets the designer host. + + + + + Updates the nodes collection by removing all the nodes that does not have corresponding property name in the Descriptors collection. + + + + + Gets or sets the provider. + + The provider. + + + + Gets or sets the data source that the is displaying filters for. + + + + + Gets or sets the expression. + + The expression. + + + + A collection of descriptor items used to identify the property names and their corresponding types. + + + + + Gets or sets the auto generate descriptor items. + + The auto generate descriptor items. + + + + Gets or sets a value indicating whether the name of fields in fields drop down should be sorted. + + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets or sets a value indicating whether [allow drag drop]. + + true if [allow drag drop]; otherwise, false. + + + + Gets or sets the default date editor format. + + The default date editor format. + + + + Gets or sets the default custom date editor format. + + The default custom date editor format. + + + + Represents a to be used in control. + + + + + Represents an item of which can have an associated control. + Responsible for arranging the associated control within the . + Can display a text in addition to the control. + + + + + Gets the rectangle in which the text part will be arranged. + + The client area of the item. + The arrange rectangle of the text part. + + + + Gets the rectangle in which the associated control will be arranged. + + The client area of the item. + The arrange rectangle of the control. + + + + Updates the bounds of the associated control. + + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the position of the text of the item. + + + + + Gets or sets the proportional size of the text part which will be used + when TextSizeMode is set to proportional. + + + + + Gets or sets the fixed size of the text part which will be used + when TextSizeMode is set to fixed. + + + + + Gets or sets the minimum size of the text part. + + + + + Gets or sets the maximum size of the text part. + + + + + Gets or sets the way in which the text part will be sized - proportionally or fixed-size. + + + + + Gets or sets the control associated with this item. + + + + + Gets the arrange rectangle of the validation text label. + + The client rectangle of the item. + The arrange rectangle of the validation label. + + + + Gets or sets the fixed size of the validation label. If set to 0, the text will be autosized. + + + + + Gets the validation label element. + + + + + An extension of the which adds data binding functionality. + When set with a DataSource, RadDataLayout automatically generates editors for each + of the fields in the datasource. Provides validation functionality and additional + interface for displaying validation messages. + + + + + Initializes a new instance of the class. + + + + + Initializes the and the ValidationPanel + + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Updates the validation panel visibility. + + + + + Gets the instance of which is the main element + in the hierarchy tree and encapsulates the actual functionality of RadDataLayout. + + + + + Gets or sets the DataSource. Setting the DataSource will auto-generate editors + for the fields in it. + + + + + Gets or sets the number of columns which will be used to arrange generated controls. + + Number Of Columns should be at least one + + + + Gets the validation panel. + + + + + Gets the inner . + + + + + Gets or sets a value indicating whether the validation panel should appear. + + + + + Gets or sets a value indicating the flow direction of generated editors when the ColumnCount property has value bigger than 1. + + + + + The ItemDefaultHeight property sets the height that generated items should have. + + + + + Gets the BindingManagerBase manager that is used to manage the current DataSource. + + + + + If [true], the labels will have a fixed size, best-fitted to the largest text in the column. + If [false], the labels will have their default proportional size. + + + + + Gets the current object. + + + + + Occurs when the value of editor is changed. + + + + + Occurs when the value of editor is about to change. + + + + + Occurs when editor is being initialized. This event is cancelable + + + + + Occurs when the editor is Initialized. + + + + + This event is firing when the item associated with a given field is about to be Initialized. This event is cancelable.. + + + + + Occurs the item is already Initialized. + + + + + Occurs when a binding object for an editor is about to be created. This event is cancelable. + + + + + Occurs when binding object is created. + + + + + Gets the margin around the client area of the control. + In the default case, this should be the border thickness. + + + + + The main element of control. Handles the logic of creating and arranging items + when the control is databound. + + + + + The error icon property + + + + + Initializes the fields. + + + + + Binds this instance. + + + + + Clears this instance. + + + + + Initializes the data entry. + + + + + Finds the required properties. + + + + + Arranges the controls. + + + + + Creates a control with the specified type for a given property. + + The property. + The suggested editor type. + A Control instance. + + + + Generates the controls run time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Generates the controls design time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Creates the binding. + + The control. + Name of the property. + The data member. + Binding. + + + + Arranges the labels. + + + + + Gets the suggested editor type for the specified property type. + + The property type. + The type of the suggested editor. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + The ItemDefaultHeight property sets the height that generated items should have. + + + + + Gets or sets the number of columns which will be used to arrange generated controls. + + Number Of Columns should be at least one + + + + Gets or sets a value indicating the flow direction of generated editors when the ColumnCount property has value bigger than 1. + + + + + If [true], the labels will have a fixed size, best-fitted to the largest text in the column. + If [false], the labels will have their default proportional size. + + + + + Gets or sets the data source. + + + + + Gets the current object. + + + + + Gets the manager. + + + + + Gets or sets the icon of the Error provider. + + The error icon. + + + + Represents a data entry. The RadDataEntry class is essentially a simple wrapper + for the RadScrollablePanelElement. All UI and + logic functionality is implemented in the + RadScrollablePanelElement class. The RadDataEntry acts + to transfer the events to and from its corresponding + RadScrollablePanelElement instance. The + RadScrollablePanelElement may be nested in other + telerik controls. + + + + + The validation panel + + + + + The show validation panel + + + + + Initializes a new instance of the class. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Creates the panel element. + + RadScrollablePanelElement. + + + + Creates the controls instance. + + Control.ControlCollection. + + + + Wires the events. + + + + + Unwires the events. + + + + + This method initializes the scrollbars and the + container control. + + + + + This method inserts the scrollbars and the container + in the Controls collection of this control. + + + + + Handles the ControlRemoved event of the ValidationPanel control. + + The source of the event. + The instance containing the event data. + + + + Handles the ControlAdded event of the ValidationPanel control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemValidated event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemValidating event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the BindingCreated event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the BindingCreating event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the EditorInitialized event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the EditorInitializing event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemInitializing event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the ItemInitialized event of the DataEntryElement control. + + The source of the event. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Updates the validation panel visibility. + + + + + Gets or sets whether the edit control is auto-sized + + true if [automatic size]; otherwise, false. + + + + Gets the default size of the control. + + The default System.Drawing.Size of the control. + The default Size of the control. + + + + Gets the instance of RadDataEntryElement wrapped by this control. RadDataEntryElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDataEntry. + + The data entry element. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets a value indicating whether the amount of columns that RadDataEntry will use to arrange generated controls. + + The number of columns. + + + + Gets or sets a value indicating whether the generated editors should fit their width to width of the RadDataEntry. + + true if [fit to parent width]; otherwise, false. + + + + Gets the validation panel. + + The validation panel. + + + + Gets or sets a value indicating whether [show validation panel]. + + true if [show validation panel]; otherwise, false. + + + + Gets or sets a value indicating whether generating flow of editors when the ColumnCount property has value bigger than 1. + + The flow direction. + + + + Gets or sets the between the generated items. + + The item space. + + + + The ItemDefaultSize property sets the size that generated items should have if FitToParentWidth property has value false. + When property the FitToParentWidth has value true the width of items are calculated according the width of the RadDataEntry + + The default size of the item. + + + + Gets the BindingManagerBase manager that is used for current DataSource. + + The manager. + + + + In RadDataEntry control there is logic that arranges the labels of the editors in one column according to the longest text. + This logic can be controlled by the AutoSizeLabels property. + + true if [resize labels]; otherwise, false. + + + + Gets the current object. + + The current object. + + + + Occurs when the value of editor is changed. + + + + + Occurs when the value of editor is about to change. + + + + + Occurs when editor is being initialized. This event is cancelable + + + + + Occurs when the editor is Initialized. + + + + + This event is firing when the panel that contains the label, editor and validation label is about to be Initialized. This event is cancelable.. + + + + + Occurs the item is already Initialized. + + + + + Occurs when a binding object for an editor is about to be created. This event is cancelable. + + + + + Occurs when binding object is created. + + + + + This class represents the main element of the + control. This element contains + a + and a . + + + + + Creates an instance of the RadPanelElement class. + + + + + Gets an instance of the + class which represents the text of the panel. + + + + + Gets an instance of the class + which represents the border of the panel. + + + + + Gets an instance of the + class which represents the fill of the panel. + + + + + Creates an instance of the + class. This constructor is used by the Visual Studio Designer. + + + + + Creates an instance of the class. + + An instance of the + class which represents the owner of this container. + + + + Class RadDataEntryElement. + + + + + The error icon property + + + + + Initializes the fields. + + + + + Binds this instance. + + + + + Clears this instance. + + + + + Initializes the data entry. + + + + + Finds the required properties. + + + + + Arranges the controls. + + + + + Creates the enum. + + The property. + Control. + + + + Creates the text box. + + The property. + Control. + + + + Creates the image. + + The property. + Control. + + + + Creates the color. + + The property. + Control. + + + + Creates the boolean. + + The property. + Control. + + + + Creates the date time. + + The property. + Control. + + + + Generates the controls run time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Generates the controls design time. + + The current column. + The pair. + Size of the property item control. + The property item control location. + + + + Setups the inner controls. + + The pair. + Size of the property item control. + The property item control location. + The property item container. + The label control. + The validation control. + The editor control. + + + + Arranges the labels. + + + + + Creates the binding. + + The control. + Name of the property. + The data member. + Binding. + + + + Converts the image to icon. + + The image. + Icon. + + + + Clears the borders. + + + + + Handles the Validated event of the control control. + + The source of the event. + The instance containing the event data. + + + + Handles the Validating event of the control control. + + The source of the event. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Handles the event. + + The sender. + The instance containing the event data. + + + + Gets or sets a value indicating whether the amount of columns that RadDataEntry will use to arrange generated controls. + + The number of columns. + Number Of Columns should be at least one + + + + Gets or sets a value indicating whether generating flow of editors when the ColumnCount property has value bigger than 1. + + The filling order. + + + + Gets or sets the between the generated items. + + The item space. + + + + Gets or sets a value indicating whether the generated editors should fit their width to width of the RadDataEntry. + + true if [fit to parent width]; otherwise, false. + + + + The ItemDefaultSize property sets the size that generated items should have if FitToParentWidth property has value false. When property the FitToParentWidth has value true the width of items are calculated according the width of the RadDataEntry + + The default size of the item. + + + + In RadDataEntry control there is logic that arranges the labels of the editors in one column according to the longest text. This logic can be controlled by the AutoSizeLabels property. + + true if [resize labels]; otherwise, false. + + + + Gets or sets the data source. + + The data source. + + + + Gets the current object. + + The current object. + + + + Gets the manager. + + The manager. + + + + Gets the type of the theme effective. + + The type of the theme effective. + + + + Gets the data entry control. + + The data entry control. + + + + Gets or sets the icon of the Error provider. + + The error icon. + + + + Class RadBindingNavigator. + + + + + Creates the element. + + An instance of . + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Propagete ThemeName to child bar's menu + + + + + Apllies the orientation to the control and its child elements. + + The orientation to apply + Indicates whether events should be fired + + + + Gets the binding navigator element. + + The binding navigator element. + + + + Gets or sets the binding source. + + The binding source. + + + + Gets or sets the count item format. + + The count item format. + + + + Gets or sets a value indicating whether the control will handle internally the creation of new items. + + true if [automatic handle add new]; otherwise, false. + + + + Gets the rows of the binding navigator. + + + + + Gets or sets which RadBindingNavigator borders are docked to its parent control and determines + how a control is resized with its parent. + + + One of the values. The default + is . + + + The value assigned is not one of the + values. + + 1 + + + + Gets the menu opened upon rightclick on the control. + + + + + Gets the width and height of a rectangle centered on the point the mouse button was pressed, within which a drag operation will not begin. + + + + + Gets or sets the orientation of the RadBindingNavigator - could be horizontal or vertical. + This property is controlled by the Dock property of the RadBindingNavigator control. + + + + + Occurs before the orientation is changed. + + + + + Occurs after the orientation is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs after a floating strip is docked. + + + + + Represents the RootElement of the RadBindingNavigator control. + + + + + Represents the main element of the RadCommandBar control. + Contains a collection of element. + + + + + Represents a base class for most of the elements. + + + + + Gets or sets the orientation of the element - colud be horizontal or vertical. + + + + + Gets or sets the name that is displayed in command bar dialogs and context menus. + + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is going to be floating. + True if the creating of a floating form should be canceled, False otherwise. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is made floating. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that is going to be docked. + True if the docking of a floating form should be canceled, False otherwise. + + + + Raises the event. + + The element that is responsible for firing the event - usually this is the strip that was docked. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Moves a specific to the upper . + + The element to move. + The that contains the element to move. + + + + Moves a specific to the lower . + + The element to move. + The that contains the element to move. + + + + Saves the visual state of the to a specified file. + + The name of the destination file. + + + + Saves the visual state of the to a specified stream. + + The destination stream. + + + + Saves the visual state of the to a specified XmlWriter. + + The XmlWriter to save the visual state data. + + + + Loads the visual state of the from a specified file. + + The name of the file containing the visual state data. + + + + Loads the visual state of the from a specified stream. + + The source stream. + + + + Loads the visual state of the from a specified XmlReader. + + The XmlReader to read the visual state data. + + + + Creates a floating form of a specified . + + The strip element of which the floating form should be created. + The that contains the strip element. + The initial location of the floating form. + + + + Creates an XmlDocument containing the current visual state data of the . + + The created document. + + + + Restores the visual state of the from the specified XmlDocument. + + The document containing the visual state data. + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs when a floating strip is docked. + + + + + Gets the object that provides information about strips owned by the . + + + + + Gets or sets the size in pixels when current strip is being Drag and Drop in next or previous row + + + + + Gets or sets the orientation of the . + + + + + Gets the rows of the . + + + + + Allows inheritors to provide custom load logic. + + + + + Maps the controls. + + + + + Adds the standard items. + + + + + Disposes the managed resources of this instance. + + + + + Creates the first top strip element child elements. + + + + + Creates the second bottom strip element child elements. + + + + + Attaches the events. + + + + + Unwires the buttons and text box events. + + + + + Raises the standard .NET PropertyChanged event. + + The instance containing the event data. + + + + Handles the Click event of the FirstButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the PreviousButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the NextButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the LastButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the KeyDown event of the currentNumberTextBox control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the DeleteButton control. + + The source of the event. + The instance containing the event data. + + + + Handles the Click event of the AddNewButton control. + + The source of the event. + The instance containing the event data. + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Binds this instance. + + + + + Updates the visibility. + + + + + Updates the text box. + + + + + Updates the label text. + + + + + Updates the add new button visibility. + + + + + Gets or sets the command bar row element. + + The command bar row element. + + + + Gets the first top strip element. + + The first top strip element. + + + + Gets or sets the first button. + + The first button. + + + + Gets or sets the previous button. + + The previous button. + + + + Gets or sets the current number text box. + + The current number text box. + + + + Gets or sets the page label. + + The page label. + + + + Gets or sets the next button. + + The next button. + + + + Gets or sets the last button. + + The last button. + + + + Gets or sets the second bottom strip element. + + The second bottom strip element. + + + + Gets or sets the add new button. + + The add new button. + + + + Gets or sets the delete button. + + The delete button. + + + + Gets or sets the binding source. + + The binding source. + + + + Gets the type of the theme effective. + + The type of the theme effective. + + + + Gets or sets the image of the button that navigates to the first item. + + The first item button image. + + + + Gets or sets the image of the button that navigates to the previous item. + + The previous item button image. + + + + Gets or sets the image of the button that navigates next item. + + The next item button image. + + + + Gets or sets the image of the button that navigates to the last item. + + The last item button image. + + + + Gets or sets the image of the button that adds new item. + + The add new button image. + + + + Gets or sets the image of the button that deletes the current item. + + The delete button image. + + + + Gets or sets the count item format. + + The count item format. + + + + Gets or sets a value indicating whether the control will handle internally the creation of new items. + + true if adding new items is handled by the binding navigator; otherwise, false. + + + + Enumerate the which part will be included when checking for NullValue. + + + + + Only Date + + + + + Only Time + + + + + Both + + + + + Represents an arrow button element. Each telerik control has a + corresponding tree of RadElements; the RadArrowButtonElement can be nested + in other telerik controls. + + + + Gets the default size of the + + + Gets or sets the + %arrow direction:Telerik.WinControls.Primitives.ArrowPrimitive.ArrowDirection%. + + + Gets the BorderPrimitive object. + + + Gets the FillPrimitive object. + + + Gets the ArrowPrimitive object. + + + + If set to true shows and OverflowPrimitive instead of an ArrowPrimitive. + + + + + This class represents the dialog form shown to the user when they drop + a RadRibbonBar control on a RadForm control in the Visual Studio designer. + + + + + Creates an instance of the RadFormDesignerRibbonDialog + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + This is a base class for a behavior that can be associated with a + RadFormControlBase instance. The behavior defines the behavior and appearance of the form. + + + + + Creates an instance of the RadFormBehaviorBase class. + This instance has no Form associated with it. + + + + + Creates an instance of the RadFormBehaviorBase class. + + + An implementation of the IComponentTreeHandler which + this behavior applies to + + + + Creates an instance of the RadFormBehavior class. + + + An implementation of the IComponentTreeHandler which + this behavior applies to + + + + + Occurs when a form is associated with the behavior. + + + + + Gets the RadElement instance that represents the root element + containing the hierarchy that builds the visual appearance of the form. + + + + + Determines whether the CreateChildItems call is + routed to the handler of the behavior. + Used by the RadFormControlBase class. + + + + + Gets the width of the form border + + + + + Gets the height of the caption that is drawn + by the behavior. + + + + + Gets the margin that describes the size and position + of the client area. + + + + + A class that represents a border for a Form which is built by images. + + + + + Gets a Padding object that represents + the left, top, right and bottom width of the border. + + + + + Gets or sets the left Image which represents the + transition between the image border and the + title bar element. + + + + + Gets or sets the right Image which represents the + transition between the image border and the + title bar element. + + + + + Gets or sets the texture for the left image border. + + + + + Gets or sets the texture for the bottom image border. + + + + + Gets or sets the texture for the right image border. + + + + + Gets or sets the image for the bottom left border corner. + + + + + Gets or sets the image for the bottom right border corner. + + + + + This class represents the root element of a RadFormControlBase Element Tree. + This class is needed because some extended region calculations are needed when the control + is a Form and shape is applied to it. + + + + + Creates an instance of the FormRootElement class. + + The RadFormControlBase which is owner of this root element + + + + A standard behavior for RadForm. + + + + + This class represents a base class for all behaviors that + modify the non-client area of the form and enable custom painting + in it. + + + + + Creates an instance of the ThemedFormBehavior class. + + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + A flag that determines whether the CreateChildItems + call is rerouted to the behavior. + + + + This method transforms screen coordinates + into local coordinates. + + The screen point to transform. + The transformed point. If the handle of the associated Form is + not created, the method returns the input. + + + + This method returns the maximum available height according + to the current position of the form in multi-monitor setup. + + + + + + Fires when the window state of the form is changed. Uses the SIZE_* values + to define the window states. + + The old window state of the form. + The new window state of the form + + + + Immediately refreshes the whole non-client area of the form + which this behavior is associated with. + + + + + Invalidates the specified bounds in the non-client area + of the form this behavior is associated with. + + + + + + This event is fired when the WM_GETMINMAXINFO message is sent to the form. + + Contains information about the position, maximum/minimum size of the form etc. + Can be modified to adjust the settings applied to the form. + + + + This event is fired when the WM_NCPAINT message is sent to the form. + + The NC Graphics. + + + + Paints an element on a specified graphics. + + The Graphics object to paint on. + The clipping rectangle. + The element to paint. + + + + Gets a bool value that determines whether the Form's window state is maximized. + + + + + Gets a bool value that determines whether the Form's window state is minimized. + + + + + Gets a boolean value that determines whether the Form's window state is normal. + + + + + Gets an integer value that determines the current Form state: + Possible values come from the SIZE_RESTORED, SIZE_MAXIMIZED, SIZE_MINIMIZED win32 constants. + + + + + Gets a boolean value showing whether a MDI child form is maximized. + + + + + Gets the MdiClient control of the Form. + Returns null if the Form is not MdiContainer. + + + + + Gets a boolean value determining whether there is a Menu in the Form. + + + + + Gets the maximized MDI child if any. + + + + + This rectangle represents the top sizing frame of a window. + + + + + This rectangle represents the topleft sizing corner of a window. + + + + + This rectangle represents the left sizing frame of a window. + + + + + This rectangle represents the bottomleft sizing corner of a window. + + + + + This rectangle represents the bottom sizing frame of a window. + + + + + This rectangle represents the bottomright sizing corner of a window. + + + + + This rectangle represents the right sizing frame of a window. + + + + + This rectangle represents the topright sizing corner of a window. + + + + + This rectangle represents the caption frame of a window. + + + + + This rectangle represents the left border frame of a window. + + + + + This rectangle represents the bottom border frame of a window. + + + + + This rectangle represents the right border frame of a window. + + + + + This rectangle represents the client rectangle of a window. + + + + + Gets the rectangle that contains the menu of the form. + + + + + Gets the rectangle that contains the system buttons of the form. + + + + + Gets the rectangle that contains the form's icon. + + + + + Gets the rectangle that contains the form's caption text. + + + + + Gets or sets a bool value indiciating + whether the behavior applies NC theming + to the form. + + + + + Gets the current form CreateParams settings. + + + + + Gets or sets the form associated with this behavior. + Used only in design-time. + IMPORTANT: This property can be assigned only one time. + An InvalidOperationException is thrown when the property + is assigned more than once. + + + + + Creates an instance of the RadFormBehavior class. + This instance has no Form associated with it. + + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + + + + Creates an instance of the RadFormBehavior class. + + An IComponentTreeHandler instance. + A flag that determines whether the CreateChildItems + call is rerouted to the behavior. + + + + Calculates the bounding rectangle of the vertical scrollbar. + + An instance of the Rectangle struct that represents + the position and the size of the vertical scrollbar + + + + Calculates the bounding rectangle of the horizontal scrollbar. + + An instance of the Rectangle struct that represents + the position and the size of the horizontal scrollbar. + + + + This method synchronizes the values of the standard vertical scrollbar + with the RadScrollBarElement in the Form's element hierarchy. + + + + + This method synchronizes the values of the standard horizontal scrollbar + with the RadScrollBarElement in the Form's element hierarchy. + + + + + Gets the Caption Height according to the Styles applied and + the current state of the form. + + A value representing the height of the caption. + + + + Gets a Padding object which represents the window NC margin according + to the currently set styles. + + The form NC margin. + + + + Calculates the client margin based on the current form and form element settings + + + + + + This method translates a point which is in client coordinates + to a point in NC coordinates. Used when the Form has captured the mouse + and NC mouse events have to be processed. + + A point in client coordinates. + The point in NC coordinates. + + + + Fires when a Form has been associated with the behavior. + + + + + This method adjusts the Element tree according + to the current AllowTheming property value. + If AllowTheming is true, the Element tree is painted, + otherwise not. + + + + + Changes the visibility of the separate items within the RadFormElement's element tree + according to the current Form state. + + The state of the Form as it comes from the WM_SIZE message + + + + This method adjusts the FormElement according to the styles currently applied to the Form. + For example, the MinimizeButton, MaximizeButton and CloseButton in the Title Bar are enabled/disabled + according to whether the corresponding window style is applied. + + + + + Gets the bounding rectangle of the sizing grip that appears + when both scrollbars are visible. + + + + + Gets the bounding rectangle of the horizontal scrollbar. + Returns an empty rectangle if the scrollbar is not visible. + + + + + Gets the bounding rectangle of the vertical scrollbar. + Returns an empty rectangle if the scrollbar is not visible. + + + + + Gets or sets a boolean value indicating + whether the behavior paints in the NC area of the + Form when OS is Vista or later and Composition is enabled. + + + + + Gets the Caption Height of the Form. + + + + + Gets the Border width of the Form. + + + + + Gets the margin that determines the position and size of the client + area of the Form. + + + + + A Delegate which is used for invoking the base implementation of WndProc of this form. + + + + + + This is the class that represents the element hierarchy which + is painted in the non-client area of a RadForm. + + + + + Gets or sets a boolean value to determine whether the form + should appear as active or inactive. + Using this property, you can override the default theme styles + which define different appearance of the form when in active/inactive state. + + + + + Gets the square element that appears at the end of the horizontal + scrollbar. + + + + + Gets the composed width of the border + built on the width of the line and image borders. + + + + + Gets the MdiControlStrip item that should appear + below the title bar when a MDI child is maximized. + + + + + Gets the BorderPrimitive of the RadFormElement. + + + + + Gets the FormImageBorderPrimitive of the RadFormElement. + + + + + Gets the RadFormTitleBarElement of the RadFormElement. + + + + + Gets the horizontal scrollbar element of the form element. + + + + + Gets the vertical scrollbar element of the form element. + + + + + Gets an instance of the + class that represents the fill of the MDI strip. + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + Gets the ImagePrimitive representing the Icon + of the currently maximized MDI child. + + + + + This class represents a Form that hosts a RadRibbonBar control and extends the behavior + of a standard form by providing Office 2007 form-like appearance. + + + + + Gets the RadRibbonBar control associated with this form. + + + + + Gets or sets a boolean value that determines + whether Vista Aero effects are enabled. + + + + + Creates an instance of the class. + + + + + Creates an instance of the class. + The implementation + which this behavior is associated with. + + + + + Creates an instance of the class. + + The associated implementation. + Determines whether the behavior + handles the CreateChildItems call. + + + + This method adjusts the form's element tree according to the composition state + of MS Windows. If Composition is enabled, the element tree is hidden and the glass + effects of the form are visible. + + + + + This method translates a point which is in client coordinates + to a point in NC coordinates. Used when the Form has captured the mouse + and NC mouse events have to be processed. + + A point in client coordinates. + The point in NC coordinates. + + + + Returns a zero for the caption height. + + + + + Gets an integer representing the top client margin of + the form when composition is enabled. + + + + + Gets a boolean value indicating whether composition effects + are enabled for the form. + + + + + Gets a value indicating whether composition effects are enabled for the Operating System. + + + + + Gets or sets value indicating whether the RadRibbonBar + is drawn over the Aero glass under Vista or later + versions of Windows. + + + + + This class serves as a dummy MenuStrip used by the RadRibbonFormBehavior + to prevent the default MDI caption from being painted when a MDI child is maximized + since the RadRibbonBar controls takes care to handle MDI children. + + + + + A class that represents the Border Primitive used in the new RadRibbonForm. + + + + + Gets or sets the color of the form's first broder. + + + + + Gets or sets the color of the form's second broder. + + + + + Gets or sets the color of the form's client area shadow. + + + + + This is the class that represents the element hierarchy which + is painted in the non-client area of a RadForm. + + + + + Gets the BorderPrimitive of the RadFormElement. + + + + + Represents a title bar element. All logic and UI functionality + is implemented in the RadFormTitleBarElement class. + You can use RadFormTitleBarElement events to substitute the title bar in a + borderless application. + + + + + Represents a title bar element. The RadTitleBar class is a simple + wrapper for the RadTitleBarElement class. The former acts to transfer events to and + from its corresponding RadTitleBarElement instance. All logic and UI functionality + is implemented in the RadTitleBarElement class. + You can use RadTitleBarElement events to substitute the title bar in a + borderless application. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Determines whether the parent form can be resized by dragging the title bar's edges. + + + + + Determines whether the parent form can be moved by dragging the title bar. + + + + + Fires when a close action is performed by the user (the close button is pressed + or the system menu is pressed twice). The system menu is not visible by default. + Use the Visual Style Builder to set which elements are visible and to change their + appearance. + + + + + Fires when a minimize action is performed by the user + + + + + Fires when a maximize/restore action is performed by the user (maximizes button + is pressed or the title bar is double clicked). + + + + + An Icon that represents the icon for the form. + + + + + Represents the default context menu for a . + + + + + Initializes a new instance of the class. + + The RadGanttView element. + + + + Raises the DropDownOpening event. + + The event arguments + + + + Called when the Add menu item is clicked. + + The menu item. + + + + Called when the Delete menu item is clicked. + + The menu item. + + + + Called when one of the Progress menu items is clicked. + + The menu item. + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Gets the add menu item. + + + The add menu item. + + + + + Gets the add child menu item. + + + The add child menu item. + + + + + Gets the add sibling menu item. + + + The add sibling menu item. + + + + + Gets the delete menu item. + + + The delete menu item. + + + + + Gets the progress menu item. + + + The progress menu item. + + + + + Gets or sets a value indicating whether progress menu items should be shown. + + + true if progress menu items should be shown; otherwise, false. + + + + + Gets or sets the step by which the progress values will increment. + + + The progress step. + + + + + Represents a menu item for the . + + + + + Initializes a new instance of the class. + + The command. + The text. + + + + Gets the command of this menu item. + + + The command. + + + + + Represents an abstract class containing the methods needed to be implemented so one can populate a + + + + + Initializes a new instance of the class. + + The gantt. + + + + Gets the items. + + + + + + Sets the current. + + The GanttView data item. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets the Gantt view. + + The Gantt view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Represents a class that describes the relations used to extract data from a data source to populate a . + + + + + Gets or sets the name of the relation. + + The name of the relation. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets the tasks data member. + + The data member. + + + + Gets or sets the links data member. + + The data member. + + + + Gets or sets the title member. + + The title member. + + + + Gets or sets the parent member. + + The parent member. + + + + Gets or sets the child member. + + The child member. + + + + Gets or sets the start member. + + The start member. + + + + Gets or sets the end member. + + The end member. + + + + Gets or sets the progress member. + + The progress member. + + + + Gets or sets the link start member. + + The link start member. + + + + Gets or sets the link end member. + + The link end member. + + + + Gets or sets the link type member. + + The link type member. + + + + Represents the converter used to convert the type of the links from/to the data source format to/from the enumeration. + + + + + Converts the given value to a instance. + + The value. + + + + + Converts a instance to another type; + + Type of the link. + + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Represents the data item uses to represent the data it is displaying. + + + + + Initializes a new instance of the class. + + + + + Sets a boolean property. + + Name of the property. + The property key. + The new value. + + + + + Notifies the that the expanded property of this item changed. + + The item. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Expands this item. + + + + + Performs an update with the specified update actions. + + The update actions. + + + + Updates the parent item. + + + + + Sets the data bound item for this data item. + + if set to true the method assumes the data is set through data binding. + The value. + DataBoundItem can not be set explicitly in bound mode. + + + + Called when the Start property of a child item changes. + + The child item which Start changed. + + + + Called when the End property of a child item changes. + + The child item which End changed. + + + + Called when the Progress property of a child item changes. + + The child item which Progress changed. + + + + Called when a child item is added. + + The child item that is added. + + + + Called when a child item is removed. + + The child item that is removed. + + + + Called when the collection that will hold this children of this item is being created. + + + + + + Called when a child Start or End changes. + + + + + Called when a child progress changes. + + + + + Gets or sets the title. + + + The title. + + + + + Gets or sets the start. + + + The start. + + + + + Gets or sets the end. + + + The end. + + + + + Gets or sets the progress. + + + The progress. + + + + + Gets or sets a value indicating whether this is visible. + + + true if visible; otherwise, false. + + + + + Gets or sets the tag. + + + The tag. + + + + + Gets the child items of this item. + + + The child items. + + + + + Gets or sets a value indicating whether this instance is current. + + + true if this instance is current; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is selected. + + + true if this instance is selected; otherwise, false. + + + + + Gets or sets a value indicating whether this instance is enabled. + + + true if this instance is enabled; otherwise, false. + + + + + Gets the hierarchy level of this task. + + The level. + + + + Gets the parent of this data item. + + The parent. + + + + Gets the index of this item in its parent items collection. + + The index. + + + + Gets or sets a value indicating whether this item is expanded. + + + true if this item is expanded; otherwise, false. + + + + + Gets the next item. + + The next item. + + + + Gets the prev visible item. + + The prev visible item. + + + + Gets or sets a value indicating whether the item is read only. + + + true if the item is read only; otherwise, false. + + + + + Gets or sets the context menu associated to the item. + + + Returns an instance of RadDropDownMenu Class that + is associated with the node. The default value is null. + + RadContextMenu Property (Telerik.WinControls.UI.RadTreeView) + + This property could be used to associate a custom menu and replace the ganttview's + default. If the context menu is invoked by right-clicking an item, the ganttview's menu + will not be shown and the context menu assigned to this item will be shown instead. + + + + + Gets a value indicating whether this data item is used in the RadGanttView. + + + + + Gets the data bound item. + + + The data bound item. + + + + + Gets or sets the value within the specified column of this item. + + + The value. + + The column. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The owner. + + + + Refreshes this instance. + + + + + Gets the gantt view data item enumerator. + + + + + + Gets the gantt view data item enumerator. + + The position. + + + + + Gets the gantt view data item enumerator. + + The item. + + + + + Updates this instance. + + + + + Updates the view. + + + + + Inserts the item at the specified index. + + The index. + The item. + + + + + Sets the item at the specified index. + + The index. + The item. + + + + Removes the item at the specified index. + + The index. + + + + Removes all the items. + + + + + Raises the NotifyCollectionChanged event. + + The item. + + + + Raises the NotifyCollectionChanging event. + + The item. + + + + Raises the event. + + The instance containing the event data. + + + + Syncs the version of this collection with the binding provider. + + + + + Resets the version of this collection. + + + + + Gets the owner. + + The owner. + + + + Gets the gantt view. + + The tree view. + + + + Gets a value indicating whether the collection needs a refresh. + + + true if a refresh is needed; otherwise, false. + + + + + Gets a value indicating whether this instance is empty. + + + true if this instance is empty; otherwise, false. + + + + + Initializes a new instance of the class. + + The owner. + + + + Determines the index of a specific item. + + The object to locate. + + The index of if found in the collection; otherwise, -1. + + + + + Inserts an item to the collection at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the collection. + + + + Adds the item to the collection. + + The object to add. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + + + Removes all items. + + + + + Determines whether the collection contains a specific value. + + The object to locate. + + true if is found; otherwise, false. + + + + + Copies all items to the given array. + + The array. + Index of the array. + + + + Removes the first occurrence of a specific object. + + The object to remove. + + true if was successfully removed; otherwise, false. + + + + + Returns an enumerator that iterates through the collection. + + + An IEnumerator that can be used to iterate through the collection. + + + + + Gets the gantt view data item enumerator. + + + + + + Gets the gantt view data item enumerator. + + The position. + + + + + Gets the gantt view data item enumerator. + + The item. + + + + + Updates this instance. + + + + + + Updates the view. + + + + + + Gets or sets the element at the specified index. + + The index. + + + + + Gets the number of elements contained in this collection. + + + The number of elements contained in this collection. + + + + + Gets a value indicating whether ththis collection is read-only. + + true if this collection is read-only; otherwise, false. + + + + + Gets a value indicating whether this instance is attached. + + + true if this instance is attached; otherwise, false. + + + + + Gets a value indicating whether this instance is empty. + + + true if this instance is empty; otherwise, false. + + + + + Represents a data item used by to store links. + + + + + Raises the event. + + The name of the property that changed. + + + + Raises the event. + + The instance containing the event data. + + + + Sets the data bound item for this link. + + if set to true the method assumes the value is set through data binding. + The value. + DataBoundItem can not be set explicitly in bound mode. + + + + Gets or sets the start item for this link. + + + The start item. + + + + + Gets or sets the end item for this link. + + + The end item. + + + + + Gets or sets the type of this link. + + + The type of the link. + + + + + Gets the data bound item of this link. + + + The data bound item. + + + + + Gets the points wehre this link will be drawn. + + + The lines. + + + + + Gets the that owns this link. + + + The gantt view element. + + + + + Occurs when a property value changes. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The gantt view element. + + + + Refreshes this instance. + + + + + Syncs the version of this instance with the binding provider. + + + + + Resets the version of this instance. + + + + + Inserts the item at the specified index. + + The index. + The item. + + + + + Sets the item at the specified index. + + The index. + The item. + + + + Removes the item at the specified index. + + The index. + + + + Removes all the items. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the that owns this collection. + + + The gantt view element. + + + + + Gets a value indicating whether this instance needs refresh. + + + true if a refresh is needed; otherwise, false. + + + + + Represents a column shown in . + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The name. + + + + Initializes a new instance of the class. + + The name. + The header text. + + + + Initializes a new instance of the class. + + The name. + The header text. + Name of the field. + + + + Fires the PropertyChanged event. + + Name of the property. + + + + Updates the width. + + + + + Gets or sets the name of the column. + + + The name. + + + + + Gets or sets a value indicating the type of the data this column is displaying. + + + + + Gets or sets the tag of the column. + + + The tag. + + + + + Gets or sets the header text of the column. + + + The header text. + + + + + Gets or sets the name of the field used to populate this column + + + The name of the field. + + + + + Gets or sets the format string. + + + The format string. + + + + + Gets or sets a value indicating whether this is visible. + + + true if visible; otherwise, false. + + + + + Gets or sets a value indicating whether this is current. + + + true if current; otherwise, false. + + + + + Gets the that is the owner of this column. + + + The owner. + + + + + Gets or sets the width of the column. + + + The width. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the accessor of the column. + + + The accessor. + + + + + Occurs when a property value changes. + + + + + Represents an observable collection of . + + + + + Initializes a new instance of the class. + + The owner. + + + + Adds a column with the specified name. + + The name. + + + + Adds a column with the the specified name and header text. + + The name. + The header text. + + + + Removes a column with the specified column name. + + Name of the column. + + + + Determines whether the collection contains a column with the specified column name. + + Name of the column. + + true if a column with the specified name is contained in the collection; otherwise, false. + + + + + Gets the index of the column with the specified name or -1 if the column is not found. + + Name of the column. + The index of the column if found otherwise returns -1. + + + + Adds the specified collection of columns to the collection. + + The columns. + + + + Adds the specified collection of columns to the collection. + + The columns. + + + + Renames the column with the specified name with the new name. + + The name. + The new name. + + + + Sets a unique name name to the column. + + The column. + + + + Gets a unique name for a column of the collection. + + A base name to use. + the unique name for the collection. + + + + Inserts the item. + + The index. + The column. + The approved action. + + + + Removes the item. + + The index. + + + + Clears the items. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the that owns this collection. + + + The owner. + + + + + Gets the with the specified column name. + + + The . + + Name of the column. + + + + + Defines the type of range the timeline of a will be displayed in. + + + + + Weeks view + + + + + Months view + + + + + Years view + + + + + Years view with half years for the sub items. + + + + + Years view with quarters for the sub items. + + + + + Days view + + + + + Days view with half hours for the sub items. + + + + + Days view with quarter hours for the sub items. + + + + + Hours view. + + + + + When this value is set the user is responsible for providing the items for the gantt timeline view. + + + + + Defines the type of the link a represents. + + + + + A finish to finish link. + + + + + A finish to start link. + + + + + A start to finish link. + + + + + A start to start link. + + + + + Defines when will enter edit mode. + + + + + Edit mode will begin on every click. + + + + + Edit mode will begin on second click. + + + + + Represents the event arguments for the CreateDataItem event of RadGanttView. + + + + + Gets or sets the data item. + + + The data item. + + + + + Represents the event arguments for the CreateLinkDataItem event of RadGanttView. + + + + + Gets or sets the link data item. + + + The link data item. + + + + + Represents the event arguments for an item event raised by RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Gets the item. + + + The item. + + + + + Represents the event arguments for the HeaderCellElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The cell element. + + + + Gets or sets the cell element. + + + The cell element. + + + + + Initializes a new instance of the class. + + The data item. + + + + Gets the data item. + + + + + Gets or sets the item element. + + + + + Represents the event arguments for a link event of RadGanttView. + + + + + Initializes a new instance of the class. + + The link. + + + + Gets the link. + + + The link. + + + + + Represents the event arguments of the ContextMenuOpening event of . + + + + + Represents the event arguments for a cancelable item event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Gets the item. + + + The item. + + + + + Initializes a new instance of the class. + + The item. + The menu. + + + + Gets or sets the menu. + + + The menu. + + + + + Represents the event arguments for the DataCellElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The cell element. + + + + Gets or sets the cell element. + + + The cell element. + + + + + Represents the event arguments for the EditorRequired event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + Type of the editor. + + + + Gets the current column of the item. + + + The column. + + + + + Gets or sets the editor that will be used for editing. + + + The editor. + + + + + Gets or sets the type of the editor. + + + The type of the editor. + + + + + Represents the event arguments for the ExpandedChanged event of RadGanttView. + + + + + Represents the event arguments for the ExpandedChanging event of RadGanttView. + + + + + Represents the event arguments for the GraphicalViewItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents the event arguments for the ItemAdded event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemAdding event of RadGanttView. + + + + + Initializes a new instance of the class. + + The data item. + + + + Represents the event arguments for the ItemChildIdNeeded event of . + + + + + Initializes a new instance of the class. + + The item. + + + + Gets or sets the child id that will be used to identify the item. + + + The child id. + + + + + Represents the event arguments for the ItemDataBound event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemDataError event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The error text. + The context. + + + + Gets the error text. + + + The error text. + + + + + Gets the context of the error. + + + The context. + + + + + Represents the event arguments for the ItemEdited event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The editor. + if set to true [commit]. + + + + Gets a value indicating whether the edit operation will be committed. + + + true if commit; otherwise, false. + + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the ItemEditing event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + The editor. + + + + Gets the column. + + + The column. + + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the EditorInitialized event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The editor. + + + + Gets the editor. + + + The editor. + + + + + Represents the event arguments for the ItemElementCreating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The view element. + + + + Gets the view element. + + + The view element. + + + + + Gets or sets the item element. + + + The item element. + + + + + Represents the event arguments of the ItemPaint event of . + + + + + Initializes a new instance of the class. + + The element. + The graphics. + + + + Gets the element which is painted. + + + The element. + + + + + Gets the graphics object used for drawing. + + + The graphics. + + + + + Represents the event arguments for the ItemRemoved event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the ItemValidated event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + + + + Gets the column. + + + The column. + + + + + Represents the event arguments for the ItemValidating event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The column. + The new value. + The old value. + + + + Gets the column. + + + The column. + + + + + Gets the new value. + + + The new value. + + + + + Gets the old value. + + + The old value. + + + + + Represents the event arguments for the LinkAdded event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the even arguments for the LinkAdding event of RadGanttView. + + + + + Represents the event arguments for a cancelable link event of RadGanttView. + + + + + Initializes a new instance of the class. + + The link. + + + + Gets the link. + + + The link. + + + + + Initializes a new instance of the class. + + The link data item. + + + + Represents the event arguments for the LinkDataBound event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the LinkDataError event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The error text. + The context. + + + + Gets the error text. + + + The error text. + + + + + Gets the context of the error. + + + The context. + + + + + Represents the event arguments for the LinkRemoved event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the SelectedItemChanged event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the SelectedItemChanging event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + + + + Represents the event arguments for the CellFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The cell element. + The column. + + + + Gets the column. + + + The column. + + + + + Gets the cell element. + + + The cell element. + + + + + Represents the event arguments for the ItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents the event arguments for the TimelineItemFormatting event of RadGanttView. + + + + + Initializes a new instance of the class. + + The item. + The item element. + + + + Gets the item. + + + The item. + + + + + Gets the item element. + + + The item element. + + + + + Localizes the strings in the control by using the current . + + + + + Loads the from the printed into the dialog + + The print settings. + + + + Loads the into the dialog. + + The print settings. + + + + Saves all settings form the dialog. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the settings edited in the dialog. + + + The print settings. + + + + + Displays a hierarchical collection of task items along with the relations between them. Each item is represented by a and each link is represented by a . + + + + + Creates the child items. + + The parent. + + + + Creates the . + + + + + + Determines whether the pressed key is input key. + + The key data. + + true if the pressed key is an input key; otherwise, false. + + + + + Disables all notifications in the RadGanttView + + + + + Ends the update. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Processes a dialog key. + + One of the values that represents the key to process. + + true if the key was processed by the control; otherwise, false. + + + + + Handles windows messages. + + The message. + + + + Hanles the windows message for showing the context menu. + + The m. + + + + Directly prints the to the default printer. + + + + + Directly prints the to the default printer or shows printer settings and then prints the . + + Indicates whether printer settings dialog should be shown. + + + + Directly prints the to the default printer or shows printer settings and then prints the . + + Indicates whether printer settings dialog should be shown. + As instance of used to control the print process. + + + + Shows a for editing the print settings. + + + + + Shows a for editing the print settings. + + As instance of used to control the print process. + + + + Called when the printing begins. + + The that has initiated the printing. + The event args. + + The number of pages that will be printed. + + + + + Called when the printing ends. + + The that has initiated the printing. + The event args. + + false if the printing was canceled + + + + + Prints the page with the specified number. + + The number of the current page. + The that has initiated the printing. + The event args. + + true if there are more pages, false otherwise + + + + + Gets a print settings dialog that is specific for the printable object. + + The that has initiated the printing. + + The dialog. + + + + + Draws the current page by slicing a portion of the big bitmap. + + The graphics object. + The printed page. + + + + Draws the grid portion of the gantt view and the graphical view to the big bitmap. + + The BMP. + + + + Draws the grid cells and graphical tasks to the bitmap. + + The graphics. + + + + Draws the links to the bitmap. + + The g. + + + + Draws the header and the timeline view items to bitmap. + + The BMP. + + + + Draws the timeline items to bitmap. + + The g. + + + + Draws the header cells to bitmap. + + The g. + + + + Prints a gantt view element to the graphics object. + + The g. + The context. + The rect. + The text. + The data item. + + + + Gets the shape of an element based on the print context and the provided rectangle. + + The context. + The rect. + + + + + Gets an initialized print element based on the provided context. + + The context. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item that will be printed. + The index of the item in a flat representation of the items hierarchy. + + + + + Gets the link lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the start to start lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the start to finish lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the finish to start lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the finish to finish lines for the given link. + + The link. + The index of the link start item in a flat representation of the items hierarchy. + The index of the link end item in a flat representation of the items hierarchy. + + + + Gets the gantt view element. + + + The gantt view element. + + + + + Gets the collection of links. + + + The links. + + + + + Gets the collection of task items. + + + The task items. + + + + + Gets the collection of columns shown in the . + + + The columns. + + + + + Gets or sets the ratio between the text view and the graphical view. + + + The ratio. + + + + + Gets or sets the height of the items. + + + The height of the item. + + + + + Gets or sets the height of the header row and the timeline container. + + + The height of the header. + + + + + Gets or sets the width of the splitter. + + + The width of the splitter. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets or sets a value indicating whether summary items are editable by the user or their value is auto-calculated from their sub items. + + + + + Gets or sets the gantt view behavior. + + + The gantt view behavior. + + + + + Gets or sets the drag drop service. + + + The drag drop service. + + + + + Gets or sets a link type converter that will be used to convert values coming from the data source to and vice versa. + + + The link type converter. + + + + + Gets or sets the selected item. + + The selected item. + + + + Gets or sets the current column. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the name of the list or table in the data source from which the will extract tasks data. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the title of the data items. + + + + + Gets or sets a property name which will be used to extract the start of the data items. + + + + + Gets or sets a property name which will be used to extract the end of the data items. + + + + + Gets or sets a property name which will be used to extract the Progress of the data items. + + + + + Gets or sets the name of the list or table in the data source from which the will extract links data. + + + + + Gets or sets a property name which will be used to extract links start item. + + + + + Gets or sets a property name which will be used to extract the links end item. + + + + + Gets or sets a property name which will be used to extract the link type of the data items. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether custom painting is enabled. + + + true if custom painting is enabled; otherwise, false. + + + + + Gets the default size of the control. + + + The default of the control. + + + + + Gets or sets the context menu associated with the control. + + + A that represents the context menu associated with the control. + + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets or sets a instance, which enables integration with other controls. + + + The data provider. + + + + + Gets or sets a instance, which hold the default print settings. + + + The print settings. + + + + + Gets or sets a value indicating whether the gantt view is read only. + + + true if the gantt view is read only; otherwise, false. + + + + + RadGanttView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadGanttView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs when an item needs an id for storing in data sources. + + + + + Occurs when an item is painted. Allows custom painting over the item. EnableCustomPainting must be set to true for this event to be fired. + + + + + Occurs when a context menu is about to be opened. + + + + + Occurs when a new data item is created. + + + + + Occurs when a new link data item is created. + + + + + Occurs before an is added to the Items collection. + + + + + Occurs before an is added to the Links collection. + + + + + Occurs when there is an error in the data layer of RadGanttView related to data operations with Item objects. + + + + + Occurs when there is an error in the data layer of RadGanttView related to data operations with Link objects. + + + + + Occurs when the selected item is about to be changed. + + + + + Occurs when selected item has been changed. + + + + + Occurs when an item is about to be expanded or collapsed. + + + + + Occurs after an item is expanded or collapsed. + + + + + Occurs when an item is data bound. + + + + + Occurs when a new item is added to the Items collection. + + + + + Occurs when an item removed from the Items collection. + + + + + Occurs when an item's property is changed. + + + + + Occurs when a link is data bound. + + + + + Occurs when a new link added to the Links collection. + + + + + Occurs when a link is removed from the Links collection. + + + + + Occurs when a new header cell element needs to be created. + + + + + Occurs when a new data cell element needs to be created. + + + + + Occurs when the content of a cell needs to be formatted for display. + + + + + Occurs when an item in the state changes and it needs to be formatted. + + + + + Occurs when the state of a timeline item changes and it needs to be formatted. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a link item in the changes and it needs to be formatted. + + + + + Occurs when an item element needs to be created. + + + + + Occurs when a timeline item element needs to be created. + + + + + Occurs when an element will be printed. Allows formatting of the element. + + + + + Occurs after an element is printed. Allows for custom painting over the element. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + + + + Creates the the . + + The gantt view. + + + + + Creates the . + + + + + + Creates the . + + The gantt view. + + + + + Performs an update according the specified update action. + + The update action. + + + + Performs an update according the specified update action. + + The update action. + The items. + + + + Updates the visual items in the gantt view + + Indicates the update action + Array representing the items which should be updated + + + + Updates the instance when an item expanded state changes. + + The item. + + + + + Updates the scrollers on add. + + The item. + + + + Updates the scrollers. + + The skip item. + The update action. + + + + Synchronizes all item elements. + + + + + Creates a new task. + + A new + + + + Creates a new link. + + A new + + + + Begins an update. + + + + + Ends an update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Processes the item for selection. + + The item. + + + + Processes the item as current. + + The item. + + + + + Ensures that the specified item is visible within the gantt view element, scrolling the contents of the element if necessary. + + The item to scroll into view + + + + Ensures the item is visible vertically. + + The item. + The item element. + + + + + Ensures the item visible vertically. + + The item. + + + + + Ensures that the specified item is visible within the gantt view element, scrolling the contents of the element if necessary. + This method expands parent items when necessary. + + The item to bring into view + + + + Clears the selection. + + + + + Puts the current item in edit mode. + + + + + + Commits any changes and ends the edit operation on the current item. + + + + + + Close the currently active editor and discard changes. + + + + + + Ends the editing of an item and commits or discards the changes. + + Determines if the changes are commited [true] or discarded [false]. + + + + + Gets the type of the editor to be used for editing the given item and column. + + The item. + The column. + + + + + Determines whether the given type is a numeric type. + + The type to check. + + true if the type is numeric; otherwise, false. + + + + + Gets an editor based on its type. + + Type of the editor. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Called when [selected item changed]. + + The item. + + + + Called when an item expanded is changing. + + The item. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Processes mouse down. + + The instance containing the event data. + + + + + Processes mouse move. + + The instance containing the event data. + + + + + Processes mouse up. + + The instance containing the event data. + + + + + Processes mouse click. + + The instance containing the event data. + + + + + Processes double click. + + The instance containing the event data. + + + + + Processes mouse enter. + + The instance containing the event data. + + + + + Processes mouse leave. + + The instance containing the event data. + + + + + Processes mouse wheel. + + The instance containing the event data. + + + + + Processes mouse hover. + + The instance containing the event data. + + + + + Processes key down. + + The instance containing the event data. + + + + + Processes key press. + + The instance containing the event data. + + + + + Processes key up. + + The instance containing the event data. + + + + + Gets or sets a value indicating whether summary items are editable by the user or their value is auto-calculated from their sub items. + + + + + Gets a value indicating whether the inks collection is populated. + + + true if this instance has links; otherwise, false. + + + + + Gets the collection of links. + + + The links. + + + + + Gets the collection of task items. + + + The task items. + + + + + Gets the . + + + The text view element. + + + + + Gets the . + + + The graphical view element. + + + + + Gets the . + + + The splitter element. + + + + + Gets the columns shown in the . + + + The columns. + + + + + Gets the root item for the gantt view hierarchye. + + + The root. + + + + + Gets or sets a value indicating whether custom painting is enabled. + + + true if custom painting is enabled; otherwise, false. + + + + + Gets or sets the ratio between the text view and the graphical view. + + + The ratio. + + + + + Gets or sets the minimum width of a column. + + + The minimum width of a column. + + + + + Gets or sets the height of the items. + + + The height of the item. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the height of the header row and the timeline container. + + + The height of the header. + + + + + Gets or sets the minimum length of the link. + + + The minimum length of the link. + + + + + Gets or sets the width of the splitter. + + + The width of the splitter. + + + + + Gets or sets the minimum width of a task when resizing it with the mouse. The size is in pixels and is for the current zoom. + + + The minimum width of the task. + + + + + Gets or sets a value indicating whether the gantt view is read only. + + + true if the gantt view is read only; otherwise, false. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets the active editor. + + + + + Gets or sets the begin edit mode. + + + The begin edit mode. + + + + + Gets or sets the drag drop service. + + + The drag drop service. + + + + + Gets or sets the gantt view behavior. + + + The gantt view behavior. + + + + + Gets the that is responsible for kinetic scrolling. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a link type converter that will be used to convert values coming from the data source to and vice versa. + + + The link type converter. + + + + + Gets or sets the selected item. + + The selected item. + + + + Gets or sets the current column. + + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets or sets the default sort Comparer for RadGanttView. The default comparer compares the items according to their start time. + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Gets or sets the data source that the is displaying data for. + + + + + Gets or sets the name of the list or table in the data source from which the will extract tasks data. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to define a relation of the data items. + + + + + Gets or sets a property name which will be used to extract the title of the data items. + + + + + Gets or sets a property name which will be used to extract the start of the data items. + + + + + Gets or sets a property name which will be used to extract the end of the data items. + + + + + Gets or sets a property name which will be used to extract the Progress of the data items. + + + + + Gets or sets the name of the list or table in the data source from which the will extract links data. + + + + + Gets or sets a property name which will be used to extract links start item. + + + + + Gets or sets a property name which will be used to extract the links end item. + + + + + Gets or sets a property name which will be used to extract the link type of the data items. + + + + + Gets the binding provider. + + + The binding provider. + + + + + Gets the data item provider. + + + The data item provider. + + + + + Gets or sets a value indicating whether to disable ensure item visible horizontal. + + + true if ensure item visible horizontal is disabled; otherwise, false. + + + + + Gets or a value indicating whether the control is in design mode. + + + + + Gets or sets a value indicating whether the default context menu may be shown. + + + true if the default context menu may be shown; otherwise, false. + + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets or sets the BindingContext for the object. + + + + + Occurs when an item needs an id for storing in data sources. + + + + + Occurs when an item is painted. Allows custom painting over the item. EnableCustomPainting must be set to true for this event to be fired. + + + + + Occurs when a context menu is about to be opened. + + + + + Occurs when the binding context is changed. + + + + + Occurs when a new data item is created. + + + + + Occurs when a new link data item is created. + + + + + Occurs before an is added to the Items collection. + + + + + Occurs before an is added to the Links collection. + + + + + Fired when there is an error in the data layer of RadGanttView related to data operations with Item objects. + + + + + Fired when there is an error in the data layer of RadGanttView related to data operations with Link objects. + + + + + Occurs when the selected item is about to be changed. + + + + + Occurs when selected item has been changed. + + + + + Occurs when an item is about to be expanded or collapsed. + + + + + Occurs after an item is expanded or collapsed. + + + + + Occurs when an item is data bound. + + + + + Occurs when a new item is added to the Items collection. + + + + + Occurs when an item removed from the Items collection. + + + + + Occurs when an item's property is changed. + + + + + Occurs when a link is data bound. + + + + + Occurs when a new link added to the Links collection. + + + + + Occurs when a link is removed from the Links collection. + + + + + Occurs when a new header cell element needs to be created. + + + + + Occurs when a new data cell element needs to be created. + + + + + Occurs when the content of a cell needs to be formatted for display. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a timeline item changes and it needs to be formatted. + + + + + Occurs when the state of an item in the changes and it needs to be formatted. + + + + + Occurs when the state of a link item in the changes and it needs to be formatted. + + + + + Occurs when an item element needs to be created. + + + + + Occurs when a timeline item element needs to be created. + + + + + Occurs when an editor is required to edit a cell the text view. + + + + + Occurs when an cell is about to be edited. + + + + + Occurs when an editor has been initialized. + + + + + Occurs when an item validating is edited and needs to be validated. + + + + + Occurs when an item is validated. + + + + + Occurs when an item has been edited. + + + + + Occurs when the root item is created. + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Represents a state manager used to define the states of an element for the theming mechanism. + + + + + Creates the specific states. + + + + + + Represents a traverser which can traverse the hierarchical data structure of the data displayed by a . + + + + + Initializes a new instance of the class. + + The owner. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + + + + Moves to the previous. + + + + + + Moves to the last item. + + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Advances the enumerator to the next element of the collection. + + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Moves to the specified item. + + The item. + + + + + Moves to the next item. + + true if the move was successful; otherwise false + + + + Moves to the previous item. + + true if the move was successfull; otherwise false + + + + Gets the last visible item in the given parent children. + + The parent. + + + + + Gets or sets a value indicating whether the traverser will go through an item's children no matter if it is expanded or not. + + + true if traversing all items; otherwise, false. + + + + + Occurs when the traverser moves. + + + + + Gets or sets the position. + + + The position. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Represents the method that will handle events in . + + + + + + + Represents the event arguments for the Traversing event of a + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + true if GanttViewRowInfo is processed otherwise, false. + + + + Gets the row. + + The row. + + + + Represents a class that is responsible for handling all the input for a + + + + + Initializes a new instance of the class. + + + + + Represents the base item element for the graphical and text view elements of + + + + + Represents the base visual item for all elements in + + + + + Initializes the class. + + + + + Attaches the specified data to the element. + + The data. + The context. + + + + Detaches this instance from the data it has been previously attached to. + + + + + Synchronizes this instance with its data item. + + + + + Determines whether the specified data is compatible with this element. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the data item of this element. + + + The data. + + + + + Gets or sets a value indicating whether this is selected. + + + true if selected; otherwise, false. + + + + + Gets or sets a value indicating whether this is current. + + + true if current; otherwise, false. + + + + + Represents the base view element for the and . + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Creates the element provider for the items of this view element. + + + + + + Gets the gantt view element that parents this instance. + + + The gantt view element. + + + + + Represents the class that handles the drag drop operations in . + + + + + Initializes a new instance of the class. + + The owner. + + + + Prepares the context for the drag drop operation. + + + + + + Notifies that a start request has occured. Cancelable. + + + + + + Handles the mouse move. + + The mouse pos. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Notifies that a stop request has occured. Cancelable. + + + + + + Notifies that a running operation has stopped. + Allows inheritors to perform some additional logic upon stop. + + + + + Location from where Drag is started + + + + + Gets or sets the owner. + + + The owner. + + + + + Represents the element used as a separator between the and . + + + + + Initializes the fields. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Represetns the element provider used by the virtualized view elements for creating visual item elements. + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates an element for the given data opbecj in the given context. + + The data. + The context. + + + + + Gets the size of the element based on the given data item. + + The item. + + + + + Called when a new item element is created. + + The item. + + + + + Represents the base item element for all items inside the . + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + The graphical view element. + + + + Creates the task element. + + + + + + Creates the left handle element. + + + + + + Creates the right handle element. + + + + + + Paints the children. + + The graphics. + The clip rectangle. + The angle. + The scale. + if set to true [use relative transformation]. + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance with its data item. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets the graphical view element. + + + The graphical view element. + + + + + Gets the task element. + + + The task element. + + + + + Gets the left link handle element. + + + The left link handle element. + + + + + Gets the right link handle element. + + + The right link handle element. + + + + + Represents a base class for all task elements in a . + + + + + Initializes the fields. + + + + + Initializes the class. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether the element may be dragged. + + + + + + + Determines whether this instance can be resized. + + + true if this instance can be resized; otherwise, false. + + + + + Gets or sets a value indicating whether the mouse is over the left area where resize could start. + + + true if this instance is mouse over start resize rectangle; otherwise, false. + + + + + Gets or sets a value indicating whether the mouse is over the right area where resize could start. + + + true if this instance is mouse over end resize rectangle; otherwise, false. + + + + + Represents the element which displays the graphical part of a . + + + + + Initializes the fields. + + + + + Creates the child elements. + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Disposes the managed resources. + + + + + Updates the timeline data items. + + + + + Builds the timeline elements. + + + + + Applies the scroll offset to the link lines. + + The lines. + + + + + Determines whether the given link should be drawn. + + The link. + The link lines. + + + + + Calculates the link lines for all links. + + + + + Calculates the link lines for all links connected to the given item. + + The item. + + + + Calculates the link lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Calculates the start to start lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Calculates the start to finish lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Calculates the finish to start lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Calculates the finish to finish lines for the given link and optional point when a new link is being created. + + The link. + The end point. + + + + Populates the flat tasks collection which is used for positioning links. + + + + + Returns a value indicating whether a line represented with two points intersects the given rectangle. + + The begin point of the line. + The end point of the line. + The rectangle. + + + + + Returns a value indicating whether two lines intersect. + + The begin point of the first line. + The end point of the first line + The begin point of the second line. + The end point of the second line. + + + + + Updates the specified update action. + + The update action. + + + + Updates the scrollers. + + The update action. + + + + Synchronizes the item elements. + + + + + Updates the inner state. + + + + + Updates the timeline zoom. + + + + + Updates the text view scroller when the scroll bar is moved. + + + + + Called when the OnePixelTime property is assigned a new value. + + Indicated whether the change results in a zoom-in or zoom-out. + + + + Returns a rectangle with zero width representing the coordinates where an object should be positioned or drawn for the given item and time. + + The item . + The datetime. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + if set to true the horizontal scroll bar offset is taken into account. + + + + + Returns a rectangle representing the coordinates where an object should be positioned or drawn for the given item and time frame. + + The item. + The start. + The end. + if set to true the horizontal scroll bar offset is taken into account. + if set to true the vertical scroll bar offset is taken into account. + if set to true the header header height is added to the y coordinate of the result. + + + + + Scrolls the graphical view to the given date. The date is placed in the middle of the view. + + The date to scroll to. + true if the scroll operation was successful otherwise false. + + + + Paints the children. + + The graphics. + The clip rectangle. + The angle. + The scale. + if set to true [use relative transformation]. + + + + Draws the link lines. + + The graphics. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Gets the horizontal scroll bar element. + + + The horizontal scroll bar element. + + + + + Gets or sets a value indicating whether to show the today indicator. + + + true if the today indicator is visible; otherwise, false. + + + + + Gets the today indicator element. + + + The today indicator element. + + + + + Gets or sets a value indicating whether to show the timeline today indicator. + + + true if the timeline today indicator is visible; otherwise, false. + + + + + Gets the timeline today indicator element. + + + The timeline today indicator element. + + + + + Gets the timeline scroller. + + + The timeline scroller. + + + + + Gets the timeline container. + + + The timeline container. + + + + + Gets the timeline items. + + + The timeline items. + + + + + Gets or sets the behavior which handles the perations related to the gantt view timeline items. + + + + + Gets or sets the timeline start date. + + + The timeline start. + + + + + Gets or sets the timeline end date. + + + The timeline end. + + + + + Gets or sets the type of the timeline range. + + + The timeline range. + + + + + Gets or sets a value indicating whether the TimeRange of the gantt view will be handled by the control. + + + + + Gets or sets how much time a single pixel represents. + + + The one pixel time. + + + + + Gets or sets the color of the links. + + + The color of the links. + + + + + Gets or sets the size of the links handles. + + + The size of the links handles. + + + + + Gets or sets the new link instance. This is not null when a new link is being created. + + + The new link. + + + + + Gets or sets a value indicating whether a new link is being created. + + + true if a new link is being created; otherwise, false. + + + + + Represents a milestone element in a + + + + + Initializes the fields. + + + + + Determines whether this instance can be resized. + + + true if this instance can be resized; otherwise, false. + + + + + Represents an element that displayes a milestone item in a + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates the task element. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Represents a summary element in a + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the progress indicator element. + + + + + + Gets the element used for indicating the progress of the summary element. + + + + + Gets the left edge element of the summary element. + + + + + Gets the right edge element of the summary element. + + + + + Gets the element thats between the two edges of the summary element. + + + + + Represents an element that displays a summary item in a + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates the task element. + + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Represents a task element in a . + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the progress indicator element. + + + + + + Gets the progress indicator element. + + + The progress indicator element. + + + + + + + + + + Represents an element that displayes a task item in a + + + + + Initializes the fields. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Represents an element that visualizes the progress of a summary. + + + + + Represents an element that visualizes the progress of a task. + + + + + Gets a list of s that will be shown in the timeline. + + + + + Returns a list of s for week range. + + + + + Returns a list of s for month range. + + + + + Returns a list of s for year range. + + + + + Returns a list of s for year range with half years for the sub-items. + + + + + Returns a list of s for year range with quarter years for the sub-items. + + + + + Returns a list of s for day range. + + + + + Returns a list of s for day range with half hours for the sub-items. + + + + + Returns a list of s for da range with quarter hours for the sub-items. + + + + + Returns a list of s for hour range. + + + + + Gets the week number for the given date using ISO8601 stadard. + + The date. + + + + + Gets the time line top element text. + + The item to get text for. + + + + + Gets the timeline lower element text for the specified index. + + The timeline item. + The index of the lower element. + + + + + Gets the number of cells and optionally a start index to be displayed for the given timeline data item and time range. + + The data item for which the cell info is calculated. + The time range for which the cell info is calculated. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Returns the number of cells and optionally a start index to be displayed for the given timeline data item. + + + + + Creates the element. + + + + + + Fills the RangesMinWidths property (dictionary) with the minimum width for each . These values are used when AutomaticTimelineTimeRange is se to true. + + + + + Gets a new time range based on the current state of the . If no change is needed returns the value of the input range. + + The current . + Indicates whether a zoom-in or a zoom-out operation is performed. + A value of the enumeration. If no change is needed returns the input range. + + + + Gets the gantt graphical view this behavior is associated with. + + + + + Gets or sets the format for the upper row items of the timeline. + + + The timeline upper item format. + + + + + Gets or sets the format for the lower row items of the timeline. + + + The timeline lower item format. + + + + + Gets a value which enlarges the timeline end so only whole cells would be displayed. + + + + + Gets a value which enlarges the timeline start so only whole cells would be displayed. + + + + + Gets a dictionary where the key is a time ranges and the value is the minimum width for a single item in the timeline view for that time range. + + + + + Gets or sets the number of cells to be added. + + + + + Gets or sets a value indicating the first cell index. The value is optional. + + + + + Represents an element displayed in the timeline of a + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + The element. + + + + Represents a virtualized stack container that shows the items in the timeline of a + + + + + + + + + + + + + Type of the ViewElement + + + + Updates the items' layout + + + + + Begins the measure. + + Size of the available. + + + + + Ends the measure. + + + + + + Determines whether the specified item is visible. + + The item. + + true if item is visible; otherwise, false. + + + + + Gets the element context. + + + + + + Removes the element. + + The position. + + + + Inserts the element. + + The position. + The element. + The data. + + + + Finds the compatible element. + + The position. + The data. + + + + + Updates the element at concrete position + + The position. + The data. + + + + + Gets or sets the associated element provider. + + + The element provider. + + + + + Gets or sets the associated data provider. + + + The data provider. + + + + + Gets a value indicating whether the data provider is empty. + + + true if data provider is empty; otherwise, false. + + + + + Measures the element core. + + The element. + Size of the available. + + + + + Arranges the element core. + + The element. + The final size. + The arrange rect. + + + + + Adds artificial offset on IsItemVisible when we want to use the method to hide the items + which are above the top edge of the control (we hide them to improve the virtualization performance). + The artificial offset will make the ArrangeOverride method start arranging items from + their actual position, as if the hidden items were there. + + The offset to add. + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the items orientation. + + + The orientation. + + + + + Gets or sets a value indicating whether the elements fit to size. + + + true if [fit elements to size]; otherwise, false. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the that is the owner of this container. + + + The owner. + + + + + Represents a data item for a timeline. + + + + + Initializes a new instance of the class. + + The start. + The end. + The range. + The one pixel time. + + + + Gets or sets the start date for the item. + + + The start. + + + + + Gets or sets the end date for the item. + + + The end. + + + + + Gets or sets the range. + + + The range. + + + + + Gets or sets how much time a single pixel represents. + + + The one pixel time. + + + + + Gets the width of this item. + + + The width. + + + + + Represents the provider that creates elements for the timeline of a . + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates a new element. + + The data. + The context. + + + + + Gets the size of the element for a given item. + + The item. + + + + + Called when a new item element is created. + + The item. + + + + + Gets the that is the owner of this provider. + + + The owner. + + + + + Represents the stack container in the lower half of a timeline item. + + + + + Represents an element that is used in a timeline. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Creates the timeline item top element. + + + + + + Creates the timeline item bottom stack element. + + + + + + Initializes a new instance of the class. + + The data. + The graphical view element. + + + + Calculates the items that will be displayed in the timeline. + + + + + Called when the displayed data is changed. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance with its data item. + + + + + Determines whether the specified data is compatible with this element. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Gets the graphical view element that parents this element. + + + The graphical view element. + + + + + Gets the top element. + + + The top element. + + + + + Gets the bottom stack element. + + + The bottom element. + + + + + Gets the data item for this element. + + + The data. + + + + + Represents the top portion of a . + + + + + Represents the bottom portion of a . + + + + + Represent item scroller + + + + + + Called when tool tip text is needed. + + The sender. + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Scrolls to item. + + The item. + + + + + Scrolls to item. + + The item. + if set to true scroll visibility is checked before processing scrolling. + + + + + Scrolls to begin. + + + + + + Scrolls to end. + + + + + + Scrolls to specified position. + + The position. + + + + + Scrolls down to specified position. + + The step. + + + + + Gets the height of the scroll. + + The item. + + + + + Scrolls up. + + The step. + + + + + Updates the on scroll. + + The instance containing the event data. + + + + + Updates the scroll range. + + + + + Updates the scroll value. + + + + + Updates the scroll range with concrete range. + + The width. + if set to true [update scroll value]. + + + + Updates the scroll step. + + + + + Sets the scroll bar visibility. + + + + + Shows scroller's tool tip + + + + + Determines the ToolTip text + + + Returns the ToolTip's text + + + + + Determines the traverser's current item index + + + The Index of the current item + + + + + Hides scroller's tooltip + + + + + When set to true, allows the scroller to scroll through the items + when the scrollbar is not visible. + + + + + Gets the max width of item. + + + The width of the max item. + + + + + Gets or sets the state of the scroll. + + + The state of the scroll. + + + + + Gets or sets the associated traverser. + + + The traverser. + + + + + Gets or sets the associated scrollbar. + + + The scrollbar. + + + + + Gets or sets the element provider. + + + The element provider. + + + + + Gets or sets the scroll mode. + + + The scroll mode. + + + + + Gets or sets the client size. + + + The size of the client. + + + + + Gets or sets the item height. + + + The height of the item. + + + + + Gets or sets the item spacing. + + + The item spacing. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Gets the position. + + + The position. + + + + + Gets or sets the tool tip. + + + The tool tip. + + + + + Gets or sets a value indicating whether scrolling is asynchronous. + + + true if [asynchronous scrolling]; otherwise, false. + + + + + Occurs when the scroller is updated. + + + + + Occurs when tool tip text is needed. + + + + + Updates the scroll range. + + + + + Represents the layout for the expander element of each row in a + + + + + Initializes a new instance of the class. + + The item element. + + + + Creates the self-referencing cell's elements. + + The cell element. + + + + Disposes all MANAGED resources - such as Bitmaps, GDI+ objects, etc. + + + + + Disposes the link elements. + + + + + Updates the associated instance of expander primitive + + + + + Updates the indent items + + + + + Binds the row properties. + + + + + Unbinds the row properties. + + + + + Gets the data item assiciated with the layout + + + + + Gets the item element assiciated with the layout + + + + + Gets the expander element assiciated with the layout + + + + + Gets the stack layout element. + + The stack layout element. + + + + Gets the cell element. + + The cell element. + + + + Gets the witdh of the hierarchy indent. + + + + + Gets a value that indicates the indents count + + + + + Gets a collection that contains all indents + + + + + Represents a stack element which holds the expander element, the indent element(s) and the cell. + + + + + Represents an element that is used for displaying indentation in a item element. + + + + + Initializes a new instance of the class. + + The item element. + + + + Gets the item element. + + + The item element. + + + + + Represents an item element of a text part. + + + + + Initializes the fields. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + Initializes a new instance of the class. + + The text view. + + + + Creates the column container. + + + + + + Creates the element provider. + + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance and all cells. + + + + + Disposes the self reference layout. + + + + + Synchronizes the properties. + + + + + Updates the info of each cell. + + + + + Gets the cell element for the given column. + + The column. + + + + + Gets or sets a value indicating whether this instance is expanded. + + + true if this instance is expanded; otherwise, false. + + + + + Gets the cell container. + + + The cell container. + + + + + Gets the self reference layout. + + + The self reference layout. + + + + + Gets the . + + + The text view. + + + + + Represents the element for a cell in a text part. + + + + + Initializes the fields. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + The owner. + The column. + + + + Disposes the managed resources. + + + + + Attaches the specified data. + + The data. + The context. + + + + Detaches this instance. + + + + + Synchronizes this instance. + + + + + Gets a value indicating whether the type specified is a numeric type. + + The type to check. + + + + + Determines whether the specified data is compatible. + + The data. + The context. + + true if the specified data is compatible; otherwise, false. + + + + + Updates the info. + + + + + Updates the core. + + + + + Updates the self reference layout. + + + + + Arranges the self reference panel. + + The final size. + The client rect. + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Gets the editor element. + + The editor. + + + + + Gets the column of this cell. + + + The data. + + + + + Gets the column. + + + The column. + + + + + Gets the owner of this cell. + + + The owner. + + + + + Gets the data item. + + + The data item. + + + + + Gets the self reference layout. + + + The self reference layout. + + + + + Gets the expander. + + + The expander. + + + + + Gets a value indicating whether this instance is first cell. + + + true if this instance is first cell; otherwise, false. + + + + + Gets a value indicating whether this instance is last cell. + + + true if this instance is last cell; otherwise, false. + + + + + Gets a value indicating whether this instance can update info. + + + true if this instance can update info; otherwise, false. + + + + + Gets a value indicating whether this instance is in edit mode. + + + true if this instance is in edit mode; otherwise, false. + + + + + Gets the editor. + + + The editor. + + + + + Privedes cell elements for the item elements of + + + + + Initializes a new instance of the class. + + The owner. + + + + Creates a new element for the given data and context. + + The data. + The context. + + + + + Gets the size of the element. + + The item. + + + + + Gets the owner. + + + The owner. + + + + + Represents a container in which columns can be displayed. + + + + + Initializes the fields. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets or sets the owner. + + + The owner. + + + + + Gets or sets a value indicating whether [scroll columns]. + + + true if [scroll columns]; otherwise, false. + + + + + Represetns a scroller for the columns. + + + + + Represents a traverser which can traverse the columns of a + + + + + Initializes a new instance of the class. + + The columns. + + + + Called when [items navigating]. + + The current. + + + + + Represents the element that displayes the grid part of a + + + + + Creates the child elements. + + + + + Initializes a new instance of the class. + + The gantt view. + + + + Gets the first visible column. + + The first visible column. If there are no visible columns returns null. + + + + Gets the last visible column. + + The first visible column. If there are no visible columns returns null. + + + + Columnses the collection changed. + + The instance containing the event data. + + + + Updates the specified update action. + + The update action. + + + + Synchronizes the item elements. + + + + + Gets the first visible column. + + + The first visible column. + + + + + Gets the last visible column. + + + The last visible column. + + + + + Gets the column container. + + + The column container. + + + + + Gets the column scroller. + + + The column scroller. + + + + + Gets the columns. + + + The columns. + + + + + Gets or sets the indent of the hierarchy rows. + + + The indent. + + + + + Represents a header cell element of a column in a + + + + + Initializes a new instance of the class. + + The owner. + The column. + + + + Synchronizes this instance. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Determines whether this instance [can be resized]. + + + true if this instance [can be resized]; otherwise, false. + + + + + Adds the editor. + + The editor. + + + + Removes the editor. + + The editor. + + + + Gets or sets a value indicating whether this instance is mouse over resize rectangle. + + + true if this instance is mouse over resize rectangle; otherwise, false. + + + + + Privedes header cell elements for the item elements of + + + + + Creates a new element for the given data and context. + + The data. + The context. + + + + + Gets the size of the element. + + The item. + + + + + Represents the expander item of a row in a . + + + + + Represents an expander that is drawn in expander cells + + + + + This event fires when the expanded state is changed. + + + + + Initializes a new instance of the class. + + + + + Paints the sign's fill + + The IGraphics to use for painting the sign's fill + Rectangle containing sign bounds + + + + Paint the sign's border + + The IGraphics to use for painting the sign's border + Rectangle containing sign bounds + + + + Paints the sign + + The IGraphics to use fo painting the sign + Rectangle containing sign bounds + + + + Gets or sets the padding sizes of the sign. + + + + + Gets or sets the width of the sign. + + + + + Gets or sets the border width of the sign. + + + + + Gets or sets the padding sizes of the border around the sign. + + + + + Gets or sets a value indicating that the sign's border must be drawn + + + + + Gets or sets a value indicating that the sign's fill must be drawn + + + + + Gets or sets the sign's border color + + + + + Gets or sets sign's back color + + + + + Gets or sets sign's second back color + + + + + Gets or sets sign's third back color + + + + + Gets or sets sign's fourth back color + + + + + Gets or sets the number of colors used for drawing sign's background + + + + + Gets or sets the gradient style of sign's background + + + + + Gets or sets the gradient angle of sign's background + + + + + Gets or sets the gradient percentage of sign's background + + + + + Gets or sets the second gradient percentage of sign's background + + + + + Gets or sets the sign's style + + + + + Gets or sets a value indicating that the sign must maintain square size + + + + + Gets or sets the sign's size + + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Gets or sets the sign image. + + + + + Gets or sets a value detemining the link lines that be rendered around the expander sign + + + + + Gets or sets a value determining the style of the link lines + + + + + Gets or sets a value determining the color of the link lines + + + + + Defines a lines that will be render around the primitive + + + + + Initializes a new instance of the class. + + The item element. + + + + Gets or sets a value indicating whether the sign is in expanded or collapsed state + + + + + Gets the item element. + + + The item element. + + + + + Represents a draggable, selectable, and resize-able item which displays a snapshot + of its associated . This item is used in + when the + is in customize mode. + + + + + Invalidates the preview of the associated item. + + + + + Gets or sets the overlay color which is displayed when the item is selected. + + + + + Gets or sets the border color which is displayed when the item is selected. + + + + + Gets the associated . + + + + + Gets the inner container of the current item. Such will exist if this item represents a + + + + + + Gets the inner item of the current item. Such will exist if this item represents a + . + + + + + Gets or sets a value indicating whether the item is currently selected. + + + + + An element which hosts . + The main element of . Also used + as a child in when the represented item + is . + + + + + A responsible for the drag operations in . + + + + + Represents a control which overlays the when the last is put in customize mode. + + + + + Updates the preview of the underlying items. + + + + + Updates the preview of the underlying items. + + If [true], child elements will be reinitialized, + if [false], only the snapshot of existing elements will be updated. + + + + Selects the specified item. + + The item to select. + + + + Selects the specified item. + + The item to select. + If [true], item will be added to the current selection, + otherwise only the specified item will be selected + + + + Gets the items from all levels in the control. + + An enumeration to the items. + + + + Gets all items which are descendants of the specified parent element. + + The parent element. + An enumeration to the items. + + + + Sets the bounds of the drag preview rectangle. + + The bounds. + + + + Finds the associated of the specified . + + The specified item. + The associated draggable item. + + + + Starts the with the specified item as a drag context. + + The item to drag. + + + + Gets the owning + + + + + Gets the main element of the control. + + + + + The responsible for the drag operations in the control. + + + + + Gets a collection of the selected items. + + + + + Provides access to the default icons and images used in . + + + + + The image displayed next to in the customize dialog. + + + + + The Customize context menu icon. + + + + + The image displayed next to an empty in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The icon of the LoadLayout button in the customize dialog. + + + + + The icon of the SaveLayout button in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + The image displayed next to the in the customize dialog. + + + + + Provides options for sizing the text part of the + + + + + Text will be sized proportionally to the whole size of the item. + + + + + Text will have a fixed size in pixels. + + + + + Provides options for arranging the text part of the + + + + + The text will appear above the control. + + + + + The text will appear below the control. + + + + + The text will appear on the left side of the control. + + + + + The text will appear on the right side of the control. + + + + + Represents a item which can display text. + + + + + Represents a item which displays a separator line. + Stands for visually separating logical groups of controls. + + + + + Gets or sets the thickness of the item. + + + + + Gets the current orientation of the item. The orientation is automatically + determined depending on the item's position. + + + + + Represents a item which displays a splitter line. + The splitter stands for visually separating logical groups of controls. In addition, + it allows the end user to resize the groups on both sides of it by dragging the splitter + with the mouse. + + + + + Gets or sets the image used by the splitter when in horizontal orientation. + + + + + Gets or sets the image used by the splitter when in vertical orientation. + + + + + A items which displays s + in a tabbed interface. + + + + + Gets the index at which a group should be inserted if dropped at the specified point. + + The specified point. + The index at which the group should be inserted. + + + + Gets the drag preview rectangle which is used when dropping over the tab items. + + The desired insert index + The bounds of the drag preview rectangle. + + + + Gets the main tab strip element. + + + + + Gets a collection of s which will be displayed + in the tabbed interface of this item. + + + + + Gets the of the selected . + + + + + Gets the selected . + + + + + A inheritor used to display the tab strip + inside s in . + + + + + Encapsulates the UI representation of a RadPageView instance. Different views will be described by different instances of this class. + + + + + Base element for all visual elements across RadPageView. + + + + + Adds padding and border size to the provided measured size. + + + + + + + Applies the Min/Max size constraints to the already measured size. + + + + + + + Gets the content orientation for this item. + + + + + Gets the content orientation for this item. + + + + + Gets or sets the padding that defines the offset of element's fill. + This does not affect element's layout logic such as size and location but has only appearance impact. + + + + + Gets or sets the padding that defines the offset of the border. + This does not affect element's layout logic such as size and location but has only appearance impact. + + + + + Gets an instance of the class that + represents the content area associated with the given item. By default, this method + returns the main content area of the control. + + + + + + + Gets the area, where the currently active page may be displayed. + + + + + Gets the rectangle where items reside. + + + + + + Displays the item list menu, using the provided element as menu's owner. + + + + + + Displays the item list menu, using the provided element as menu's owner and the specified horizontal and vertical alignment. + + + + + + + + + + + + + + Gets the item that contains the porvided point (in control's client coordinates). + + + + + + + Arranges the items and returns the available rectangle where the content area should be positioned. + + + + + + + Gets the default (automatic) item orientation, which may depend on some settings in inheritors such as RadPageViewStripElement. + + True to indicate that content orientation is to be retrieved, false to get orientation for border and fill. + + + + + Puts the current node in edit mode. + + + + + + Commits any changes and ends the edit operation on the current cell. + + + + + + Close the currently active editor and discard changes. + + + + + + Gets the RadElement instance that parents all the items. + + + + + Determines CloseButton will be displayed in each item, allowing that item to be closed. + + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where an item will be dropped after a drag operation. + + + + + Gets or sets the RadDragDropService instance which handles item drag requests. + + + + + Gets or sets the mode that controls item drag operation within the element. + + + + + Determines whether the currently selected item will be automatically scrolled into view. + + + + + Gets or sets the spacing between two items within the element. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Defines how each item's border and fill is oriented within this instance. + + + + + Gets the RadPageView instance that owns this element. May be null if element is hosted on another RadControl instance. + + + + + Gets the element which represents the content area of the tab view. + + + + + Gets the header element of the view. + + + + + Gets the footer element of the view. + + + + + Gets or sets the currently selected item in the view. + + + + + Gets or sets the mouse button that will be used to select items. Equals to MouseButtons.Left by default. + + + + + Gets all the items currently present within this element. + + + + + Gets or sets whether the pages will be wrapped around when performing selection using the arrow keys. + If the property is set to true, pressing the right arrow key when the last page is selected will result in selecting the first page. + + true if [wrapped around]; otherwise, false. + + + + Determines whether selecting an item will update the element's ContentArea. + + + + + Gets or sets the active editor. + + The active editor. + + + + Gets or sets a value indicating whether [allow edit]. + + true if [allow edit]; otherwise, false. + + + + Gets a value indicating whether there is an open editor in the tree view. + + + + + Gets the RadPageViewStripItem which stands for adding + new pages on click. + + + + + Gets or sets the item of the page which is opened for preview on the far side of the + regular items. + + + + + Determines if the PinButton will be displayed in each item, allowing that item to be pinned. + + + + + Gets or sets the visibility of the internal NewItem. + + + + + Determines whether strip scrolling will be animated. + + + + + Gets or sets the easing type of the strip scroll animation. + + + + + Gets the container that holds item layout and strip buttons panel. + + + + + Determines scroll buttons' visibility. + + + + + Determines the alignment of items within the strip layout. + + + + + Determines the fit mode to be applied when measuring child items. + + + + + Gets or sets the alignment of item strip within the view. + + + + + Selects the specified . + + The group item to select. + + + + Gets the currently selected . + + + + + An inheritor of used in . + Stands for displaying the tabs of s inside a . + Keeps track of its associated . + + + + + Indicates whether the item is pinned. Pinned items appear in from of the others. + + + + + Indicates whether the item is opened for preview. + + + + + Gets or sets the length of the associated + with this . By default, this property returns -1; + + + + + Determines whether the content of the current item is visible. This property is equivalent + to the IsSelected property, however its semantics can be changed in scenarios where multiple + content areas can be visible as in the . + + + + + Determines whether the current instance is internally created by the ViewElement and represents some built-in functionality. + + + + + Gets the RadPageViewItemButtonsPanel that contains all the buttons, associated with the item. + + + + + Gets or sets the alignment of item's associated buttons. + + + + + Gets or sets a boolean value that determines whether the item margin will be automatically + flipped according to the orientation of the items in the control. + + + + + Gets or sets the title of the item. Title is visualized in the Header area of the owning view element. + + + + + Gets or sets the description of the item. Description is visualized in the Footer area of the owning view element. + + + + + Gets or sets the RadElement instance that represents the content of this item. + The content is used when item is not bound to a RadPageViewPage instance. + + + + + Gets the size that is forced by the layout element for this item. It may differ from the DesiredSize one. + + + + + Gets the current size of the item. This may differ from Bounds.Size as it reflects internal changes within the item itself. + + + + + Determines whether the item is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Gets the RadPageViewPage instance associated with this item. + + + + + Gets the RadPageViewElement that owns this item. + + + + + Gets or sets a property which determines whether to consider the ItemBorderAndFillOrientation of RadPageViewElement. + + + + + The associated with this tab strip item. + + + + + Represents a visual element, which contains set of common buttons for a instance. + + + + + Gets or sets the size to be applied to each of the embedded buttons. + + + + + Gets or sets the spacing between each two buttons. + + + + + Gets the RadPageViewButtonElement instance which represents the CloseButton for the owning item. + + + + + Gets the RadPageViewPinButtonElement instance which represents the PinButton for the owning item. + + + + + Provides localization settings for . + + + + + String IDs for the localizable strings in . + + + + + Provides the resize functionality for . + + + + + Begins the resize operation given a starting point and resize orientation. + + The starting point. + The resize direction. + [true] if successful, [false] otherwise. + + + + Begins the resize operation given a . + + The splitter item. + [true] if successful, [false] otherwise. + + + + If the behavior is active, moves the resize position to the specified point. + + The point in coordinates relative to the owning . + + + + Ends the resize operation. + + + + + Gets the mouse cursor that should be displayed at the specified position. + + The point in coordinates relative to the owning . + The cursor. + + + + Indicates whether the behavior is currently active. + + + + + Provides the XML serialization functionality for . + + + + + A container control which keeps its child controls arranged in a consistent way and scales their layout as the control size changes. + Allows runtime customization and serializing the layout. + + + + + Initializes the items of the default context menu. + + + + + Puts the control in an initialization state where it will not update until EndUpdate is called. + + + + + Puts the control out of the initialization state caused by calling BeginUpdate and updates it. + + + + + Adds a control at a specified position next to a specified control. + + The control to add. + An existing control next to which the new control will be added. + The position at which the new control will be added. + + + + Adds a control at a specified position next to a specified item. + + The control to add. + An existing item next to which the new control will be added. + The position at which the new control will be added. + + + + Adds a control to the specified container. + + The control to add. + The container. + + + + Adds an item at a specified position next to a specified existing control. + + The item to add. + An existing control next to which the new control will be added. + The position at which the new control will be added. + + + + Adds an item at a specified position next to a specified existing item. + + The item to add. + An existing item next to which the new control will be added. + The position at which the new control will be added. + + + + Adds an item at the root level of the control and rebuilds the layout. + + The item to add. + + + + Adds an item to the specified container and rebuilds its layout. + + The item to add. + The container to add the item to. + + + + Removes the specified control from the RadLayoutControl. + + The control to remove. + + + + Removes the specified item from the RadLayoutControl. + + The item to remove. + + + + Resizes the specified item with a specified amount. Resize direction depends + on the position of item. + + The item to resize. + The amount to resize with. + + + + Resizes the specified control with a specified amount. Resize direction depends + on the position of item. + + The control to resize. + The amount to resize with. + + + + Hides an item from the RadLayoutPanel and places it in the HiddenItems collection. + + The item to hide. + + + + Hides a control from the RadLayoutPanel and places it in the HiddenItems collection. + + The control to hide. + + + + Shows the control which allows reordering + and resizing the items. + + + + + Hides the . + + + + + Shows the and puts the control in customize mode. + + + + + Gets the initial location of the . + + The location. + + + + Closes the and puts the control out of customize mode. + + + + + Finds the item associated with a given control. + + The control. + The control's associated item. + + + + Finds the item associated with a given control. + + The control. + [true] if the HiddenItems collection should be searched, + [false] otherwise. + The control's associated item. + + + + Gets the items from all levels which are nested in the control. + + An enumeration of the items. + + + + Gets the items from all levels which are nested in the control. + + + + + + + Updates the scrollbar metrics. + + + + + Updates the bounds of nested controls. + + + + + Gets the mouse cursor which should be shown at a given point. + + The point. + The cursor to be shown at that point. + + + + Gets the that should be activated at a given point. + + The point. + The resizing behavior at that point. + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + XmlWriter to use by the built-in serializer + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + The stream to write to. + + Writes the Xml content in the stream and leaves the stream open. + + + + + Stores RadLayoutControl's layout state in XML format, using the serialization + information provided by the property. + + The file to write to. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The file to read from. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The stream to read from. + + + + Loads RadLayoutControl's layout state from XML file, using the serialization + information provided by the property. + + The XmlReader to read the XML from. + + + + Called after load layout to ensure the visibility of the controls is the same + as the visibility of the items. + + + + + Gets the default serialization info for RadLayoutControl used by Save/Load loyout methods to persist the layout to/from XML. + + The default serialization info. + + + + Fired when the items of the control or the items of the inner containers + (such as groups and tabbed groups) have changed. + + + + + Gets or sets a value indicating whether the control should draw its border. + + + + + Gets or sets the Customize Dialog form which is shown via the context menu. + + + + + Gets or sets a value indicating whether resizing is enabled when the Customize Dialog is not shown. + + + + + Gets or sets a value indicating whether the end-user is allowed to hide and show existing items. + + + + + Gets or sets a value indicating whether the end-user is allowed show the Customize Dialog and modify the existing layout. + + + + + Gets or sets the context menu. + + + + + Gets the vertical . + + + + + Gets the horizontal . + + + + + Gets the main which hosts the items on the root level. + + + + + Gets a collection containing the items on the root level. + + + + + Gets a collection containing the hidden items. + + + + + Gets the control which appears when the Customize Dialog is shown. + + + + + Indicates whether the DragOverlay control is visible. + + + + + Indicates whether the user is currently resizing the items. + + + + + If the user is currently resizing, returns the active , otherwise returns null. + + + + + Gets the serialization info for RadLayoutControl used by Save/Load loyout methods to persist the layout to/from XML. + By default or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used. + + + + + Gets the margin around the client area of the control. + In the default case, this should be the border thickness. + + + + + Adds the control to the underlying collection without creating a for it. + + The control to add. + + + + Removes the control from the underlying collection without destroying its associated item. + + + + + + Finds the item associated with a given control. + + The control. + The associated item. + + + + This class represents data in a list layout similar to the ListBox control provided by Microsoft. + + + + + Initializes all event key objects and performs other static initialization. + + + + + Subscribes to the relevant events of the underlaying RadListElement. + + + + + Unsubscribes from the relevant events of the underlaying RadListElement. + + + + + + + + Forces re-evaluation of the current data source (if any). + + + + + Suspends internal notifications and processing in order to improve performance. + This method is cumulative, that is, if BeginUpdate is called N times, EndUpdate must also be called N times. + Calling BeginUpdate will cause the ItemsChanged event to stop firing until EndUpdate is called. + + + + + Resumes the internal notifications and processing previously suspended by BeginUpdate. + + + + + Defers the refresh. + + + + + + Selects all items if the SelectionMode allows it. + This method throws an InvalidOperationException if SelectionMode is One or None. + + + + + Clears the currently selected items and selects all items in the closed range [startIndex, endIndex]. + + The first index at which to start selecting items. + The index of one item past the last one to be selected. + + + + Scrolls to the provided item so that the item will appear at the top of the view if it is before the currently visible items + and at the bottom of the view if it is after the currently visible items. + + The item to scroll to. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the beginning of the items. + + The string with which every item will be compared. + The index of the found item or -1 if no item is found. + + + + Searches for an item related to the specified string. The relation is described by the object assigned to FindStringComparer property. + By default this relation is the System.String.StartsWith(). + This method starts searching from the specified index. If the algorithm reaches the end of the Items collection it wraps to the beginning + and continues until one before the provided index. + + The string with which every item will be compared. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but matches an item only if its text is exactly equal to the provided string. + + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index of the found item or -1 if no item is found. + + + + Searches for an item in the same manner as FindString() but does not start from the beginning when the end of the Items collection + is reached. + + The string that will be used to search for an item. + The index from which to start searching. + The index of the found item or -1 if no item is found. + + + + Raises the event. + + + An instance that contains the event data. + + + + + + Gets or sets value indicating if the user can reorder items via drag and drop. + + + + + Gets or sets a value indicating whether alternating item color is enabled. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Indicates whether the items should be displayed in groups. + + + + + Gets the collection of groups that items are grouped into + + + + + Gets or sets a value that indicates whether text case will be taken into account when sorting. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + + + + Gets or sets a value that determines whether the user can search for an item by typing characters when RadListControl is focused. + + + + + The ListElement responsible for the majority of the control logic. The RadListControl is a wrapper of the RadListElement. + + + + + Gets the Items collection. Items can not be modified in data bound mode, and a DataSource can not be assigned while there + are items in this collection. + + + + + Provides a read only interface to the selected items. In order to select an item, use its Selected property. + + + + + Gets or sets the SelectionMode of RadListControl. This property has a similar effect to the SelectionMode of the + standard Microsoft ListBox control. + + + + + Gets or sets the SelectedValue. A linear search is performed to find a data item that has the same value + in its Value property and SelectedItem and SelectedIndex are updated to it and its index respectively. + + + + + Gets or sets the active item. The Active item is relevant only in MultiSimple SelectionMode or MultiExtended in combination with + the control keyboard key. + + + + + Gets or sets the currently selected item. + + + + + Gets or sets the currently selected index. + + + + + Gets or sets an object which will provide the data to be visualized as a list. + + + + + Gets or sets a property name which will be used to extract a string value from the data items in order to provide + a meaningful display value. + + + + + Gets or sets a property name which will be used to extract a value from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets a property name which will be used to extract a text for description text from the data items. The value of the property with + this name will be available via the Value property of every RadListDataItem in the Items collection. + + + + + Gets or sets the sort style. + + + + + Gets or set the scroll mode. + + + + + Gets or sets a format string which will be used for visual formatting of the items text. + + + + + Gets or sets a value that indicates whether the FormatString and FormatInfo properties will be used to format + the items text. Setting this property to false may improve performance. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the FindString() method when searching for an item. + + + + + Gets or sets a value that determines whether the FindString() method searches via the text property + set by the user or by the text provided by the data binding logic, that is, by DisplayMember. + + + + + Gets or sets a value that indicates if this RadListControl will stop firing the ItemsChanging and ItemsChanged events. + + + + + Gets or sets a value that determines whether to stop the selection events from firing. These are SelectedIndexChanged, + SelectedIndexChanging and SelectedValueChanged. + + + + + Fires after data binding operation has finished. + + 1 + + + + + + This event fires when the selected index property changes. + + + + + This event fires before SelectedIndex changes. This event allows the operation to be cancelled. + + + + + This event fires only if the SelectedValue has really changed. For example it will not fire if the previously selected item + has the same value as the newly selected item. + + + + + This event fires before a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event fires for every item provided by the data source. + This event allows a custom RadListDataItem to be provided by the user. + + + + + This event fires after a RadListDataItem is data bound. This happens + when the DataSource property is assigned and the event is fired for every item provided by the data source. + + + + + This event allows the user to create custom visual items. + It is fired initially for all the visible items and when the control is resized afterwards. + + + + + This event fires when the SortStyle property changes. + + + + + The VisualItemFormatting event fires whenever a property of a visible data item changes + and whenever a visual item is associated with a new data item. During scrolling for example. + + + + + This event fires when the SelectedItems collection changes. + + + + + This event fires before the SelectedItems collection changes. + + + + + RadListControl consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadListControl consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Defines the alignment of checkbox within a . + + + + + Checkbox is aligned next to the near edge. + + + + + Checkbox is centered within the layout. + + + + + Checkbox is aligned next to the far edge. + + + + + ListViewSpreadExport is a powerful exporting API, allowing to export RadListView to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The ListView to export. + + + + Initializes a new instance of the class. + + The ListView to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadListView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export images. + + + + + Gets or sets a value indicating whether to export hierarchy and group child rows grouped. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets a value indicating how children of collapsed items are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting item of RadListView. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting item. + + + + + Defines values for specifying how the width of a column is adjusted. + + + + + The column width does not automatically adjust. + + + + + The column width adjusts to fit the contents of the header cell. + + + + + The column width adjusts to fit the contents of the data cells. + + + + + The column width adjusts to fit the contents of all cells + + + + + A helper class that process best fitting of columns + + + + + Initializes a new instance of the class. + + The detail list view. + + + + Performs best fit for specified column + + An instance of that will be best fitted + + + + Performs best fit for all columns + + + + + Bests the fit columns. + + The mode. + + + + Process all best fit column requests + + + + + Performs best fit for all columns + + + + + Performs best fit for specified column + + An instance of that will be best fitted + The mode. + + + + Determines whether the instance of can be best fitted. + + The item. + + true if the instance of can be best fitted ; otherwise, false. + + + + + Gets the desired cell's width + + An instance of + Returns the desired cell's with + + + + Sets 's width + + An instance of . + The desired width + + + + Gets the table element. + + The table element. + + + + Gets the best fit requests. + + The best fit requests. + + + + Best Fit All Columns Request + + + + + Requests the best fit columns. + + + + + Enqueues the best fit columns. + + The mode. + + + + Requests the best fit column. + + The column. + + + + Removes and returns the object at the beginning of the queue + + Returns BestFitRequest + + + + Dequeues the specified column's request from the queue + + The column's request that should be removed + Returns BestFitReques + + + + Represents BestFitRequest type + + + + + BestFit Operation for specified column + + + + + BestFit Operation for all columns + + + + + Represent best fit request + + + + + Initializes a new instance of the class. + + The operation. + The column. + + + + Initializes a new instance of the class. + + The operation. + + + + Initializes a new instance of the class. + + The operation. + The mode. + + + + Compares the current instance to the specified request. + + The request. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the operation. + + The operation. + + + + Gets the auto size mode. + + + + + Gets the column. + + The column. + + + + Gets the related with the page. + + + + + Gets the editor value. + + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Creates Heart like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Initializes a new instance of the RadRating class + + + + + CreateChildItems + + + + + + Set the default control size. + + + + + Gets or sets whether the edit control is auto-sized. + + + + + Gets or sets the direction of rating element paint (Standard, Reversed). + + + + + Gets or sets the orientation of the rating control. + + + + + Gets or sets the selection mode of the rating control. + + + + + Gets the rating items collection. + + + The items. + + + + + Gets or sets the average value of rating element. + + + + + Gets or sets the minimum value of rating element. + + + + + Gets or sets the maximum value of rating element. + + + + + Gets or sets the text of the Caption label. + + + + + Gets or sets the text of the Sub Caption label. + + + + + Gets or sets the text of the description label. + + + + + Gets the instance of RadRatingElement wrapped by this control. RadRatingElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRatingControl. + + + + + Gets or sets whether the rating is ReadOnly. + The Value of the element can still be set in ReadOnly mode, nothing else. + + + + + Occurs before the value of the RatingElement is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Gets the rating items collection. + + + The items. + + + + + Gets or sets the text of the Caption label. + + + The caption. + + + + + Gets or sets the text of the Sub Caption label. + + + The sub caption. + + + + + Gets the caption element. + + + The caption element. + + + + + Gets the sub caption element. + + + The sub caption element. + + + + + Gets the description element. + + + The description element. + + + + + Gets the elements layout. + + + The elements layout. + + + + + Gets or sets the tool tip format string. + + + The tool tip format string. + + + + + Gets or sets the selected value. + + + The selected value. + + + + + Gets or sets the current value. + + + The current value. + + + + + Gets or sets the hover value. + + + The hover value. + + + + + Gets or sets whether the Hover layer should be applied. + + + + + Gets or sets the value of the rating. + + + + + Gets or sets the minimum value of rating element. + + + The minimum. + + The Minimum should be lower than the Maximum + + + + Gets or sets the maximum value of rating element. + + + The maximum. + + The Maximum should be bigger than the Minimum + + + + Gets or sets the orientation of the rating control (Horizontal, Vertical). + + + + + Gets or sets the selection mode of the rating control (full item, half item, precise selection). + + + + + Gets or sets a value indicating whether the element is read-only. + + + + + Gets or sets the text of the description label. + + + + + GGets or sets the direction of rating element paint (Standard, Reversed). + + + The direction. + + + + + Gets or sets the tool tip precision. + + + The tool tip precision. + + + + + Gets or sets the percentage rounding. + + + The percentage rounding. + + + + + Gets or sets the tool tip offset. + + + The tool tip offset. + + + + + Gets or sets the duration of the tool tip. + + + + + Occurs before the value of the RatingElement is changed. + + + + + Occurs when the value is being changed. Cancelable event. + + + + + Represents a state manager for + + + + + Creates the specific states. + + + + + + Creates the state manager. + + + + + + Creates a new star shape with the specified number of arms and inner radius. + + + + + Creates a new star shape with the specified number of arms and inner radius. + + The number of arms the star will have. + The ratio between the inner and out ration of the star. + + + + Creates Star like shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Gets or sets the number of arms. + + + + + Gets or sets the ration between the inner and out radius. + + + + + Represents a logical data item that contains the tokenzied text and its value + + + + + Initializes a new instance of the class. + + The text. + The value. + + + + Compares the current object with another object of the same type. + + An object to compare with this object. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the parameter.Zero This object is equal to . Greater than zero This object is greater than . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the event. + + Name of the property. + + + + Raises the event. + + The instance containing the event data. + + + + Gets the text. + + + + + Gets the value. + + + + + Occurs when a property value changes. + + + + + Represents a collection of + + + + + Initializes a new instance of the class. + + The text box. + + + + Initializes a new instance of the class. + + The text box. + The list. + + + + Raises the event. + + The instance containing the event data. + + + + Finds the specified text in the collection + + The text. + + + + + Fins all tokenized item that contains this text. + + The text. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Occurs when the collection is changed. + + + + + Represents the method that handles validation of tokens in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text. + + + + Initializes a new instance of the class. + + The text. + if set to true [is valid token]. + + + + Gets the text of the token. + + + + + Gets or sets a value indicating whether the text is valid token. + + + true if the text is token; otherwise, false. + + + + + The AccessibleObject of + + + + + Initializes a new instance of the class. + + The text box control. + + + + Gets the associated text box. + + + + + Represents a close event arguments when closed + + + + + Represents event data of the RadPopupClosed event. + + + + + Initializes a new instance of the RadPopupClosedEventArgs class using + the closing reason. + + + closing reason + + + + + Initializes a new instance of the class. + + The reason. + The instance containing the event data. + + + + Gets the input arguments. + + + + + Represents the method that is called when is formatted. + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text block. + + + + Gets the text block to be formatted + + + + + X-coordinate comparer of + + + + + Initializes a new instance of the class. + + The x coordinate. + + + + Compares the specified x value. + + The x value. + The y value. + + + + + Edit operation in + + + + + Insert text operation + + + + + Replace text operation + + + + + Delete text operation + + + + + The autocomplete drop down of + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the associated text box. + + + + + Gets the associated list element. + + + + + Represents a tokenized text block in + + + + + Represents a single word in + + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Measures the textblock available size. + + Size of the available. + + + + Arranges the textblock final rectangle. + + The final rectangle. + + + + Gets or sets the index of the block + + + The index. + + + + + Gets or sets the block according to the previous one + + + The offset. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + Gets or sets the block's text + + + The text. + + + + + Gets the desired size of the block + + + The size of the desired. + + + + + Gets the control bounding rectangle. + + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Creates the tokenized text item. + + The text. + The value. + + + + + Creates the text content element. + + + + + + Creates the remove button element. + + + + + + Called when the remove button is clicked. + + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Gets the associated tokenized text item. + + + + + Gets the content element that contains the text + + + + + Gets the remove button. + + + + + Gets or sets a value indicating whether the block can be remove by clicking the Remove button. + + + true if [allow remove]; otherwise, false. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the index of the block + + + The index. + + + + + Gets a value indicating the offset. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + An view port element of + + + + + An editable and selectable + + + + + The wrap layout of + + + + + Initializes a new instance of the class. + + + + + Called when text block is formatting. + + The text block. + + + + Raises the event. + + The instance containing the event data. + + + + Called when a property is changing. + + Name of the property. + The old value. + The new value. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Notifies the text changing. + + The start position. + The length. + The old text. + The new text. + The action. + + + + + Notifies the text changed. + + The text. + The caret position. + The action. + + + + Performs measurement and arrangement of child elements. + + + + + Clamps the desired size in the valid available size bounds. + + The available size. + The desired size. + + + + + Merge and measure block. + + The text block. + The available size. + + + + Measures and perfroms wrapping for blocks in WordWrap mode + + The available size. + Index of the current block. + Document desired size. + Index of the current line. + The current block offset. + + + + + Adds the desired size of the line to document desired size. + + The line. + Size of the desired. + + + + Adds the desired size of the block to desired size of line. + + Size of the block desired. + The line. + + + + Gets the baseline offset. + + The line. + The text block. + + + + + Checks that tow block are splitted block + + The first block. + The second block. + + + + + Gets the next block for this index + + The index. + + + + + Gets the previous block for this index + + The index. + + + + + Determines whether this panel has text. + + + true if this panel has text; otherwise, false. + + + + + Gets the line info by its index + + Index of the line. + + + + + Creates the block for concrete and instance. + + The text + The type. + + + + + Clears the presented text + + + + + Gets the text between start and end position + + The start position. + The end position. + + + + + Gets the block's text. + + The block. + The start. + The length. + + + + + Search a text block by X coordinate. + + The line. + The x. + + + + + Search a text block by offset. + + The line. + The offset. + + + + + Search a line by using concrete comparer + + The line. + The comparer. + + + + + Determines whether the text is tab, whitespace, line feed or carriage return symbol. + + The text. + + true if [is special text] [the specified text]; otherwise, false. + + + + + Determines whether the text contains a new line + + The text + + true if [contains new line] [the specified text]; otherwise, false. + + + + + Determines whether the specified text is whitespace. + + The text. + + true if the specified text is whitespace; otherwise, false. + + + + + Determines whether the specified text is tab. + + The text. + + true if the specified text is tab; otherwise, false. + + + + + Determines whether the text is tab or whitespace. + + The text. + + true if the text is tab or whitespace; otherwise, false. + + + + + Determines whether the text is line feed symbol. + + The text. + + true if the text is line feed symbol; otherwise, false. + + + + + Determines whether the text is carriage return symbol. + + The text. + + true if the text is carriage return symbol; otherwise, false. + + + + + Gets the bounds of the Viewport + + + + + Gets or sets the spacing between lines when the is in multiline mode. + + + The line spacing. + + + + + Gets the logical lines of . + + + + + Gets the length of the text. + + + The length of the text. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets or sets a value indicating whether [word wrap]. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets a value indicating whether this is multiline. + + + true if multiline; otherwise, false. + + + + + Occurs when text block is formatting. + + + + + Occurs when a property value is changing. + + + + + Occurs when an instance of is created + + + + + Suspends notifcations when text is editing. + + + + + Resumes notifcations when text is editing. + + + + + Resumes notifcations when text is editing. + + if set to true the event is fired. + The new text. + The caret position. + The action. + + + + Convert point to absolute point according to the current scroll offset + + The point. + + + + + Gets the location of instance + + The position. + + + + + Deletes the text range + + The start position. + The end position. + + + + + Inserts the specified text in concerte position. + + The position. + The text. + + + + + Replaces the text ranged with a new text + + The start position. + The end position. + The text. + + + + + Replaces the text ranged with a new text + + The start position. + The end position. + The text. + + + + + Replaces the text range in + + The target block. + The start char position. + The end char position. + The text. + + + + Replaces the text range in concrete special + + The target block. + The start char position. + The end char position. + The text. + + + + Replaces the text range in concrete non-special + + The target block. + The start char position. + The end char position. + The text. + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets the scroller for Vertical Scrollbar + + + The Vertical Scroller + + + + + Gets or sets the scroller for Horizontal Scrollbar + + + The Horizontal Scroller + + + + + Gets or sets the selection primitive that renders the selection + + + The selection primitive. + + + + + Gets or sets the scroll offset. + + + The scroll offset. + + + + + Gets a value indicating whether this textbox is editing mode. + + + true if this textbox is editing; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Determines whether the specified text block is delimiter. + + The text block. + + true if the specified text block is delimiter; otherwise, false. + + + + + Removes range of the editable block. + + The block. + The start char position. + The text. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The token text. + + + + + Gets or sets the delimiter used to tokenize the text + + + The delimiter. + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets or sets the height of the min line. + + + The height of the min line. + + + + + Occurs when text is validating as token + + + + + Represents a keyboard and mouse input handler + + + + + Represents a keyboard and mouse input handler + + + + + Represents a keyboard and mouse input handler + + + + + Processes the key down. + + The instance containing the event data. + + + + + Processes the key up. + + The instance containing the event data. + + + + + Processes the key press. + + The instance containing the event data. + + + + + Processes the mouse down. + + The instance containing the event data. + + + + + Processes the mouse up. + + The instance containing the event data. + + + + + Processes the mouse move. + + The instance containing the event data. + + + + + Processes the mouse wheel. + + The instance containing the event data. + + + + + Processes the double click. + + The instance containing the event data. + + + + + Processes the mouse leave. + + The instance containing the event data. + + + + Prcesses the mouse enter. + + The instance containing the event data. + + + + Initializes a new instance of the class. + + The text box element. + + + + Determines whether the mouse input should be handled + + The mouse position. + + + + + Processes the mouse down. + + The instance containing the event data. + + + + + Processes the mouse up. + + The instance containing the event data. + + + + + Processes the mouse move. + + The instance containing the event data. + + + + + Processes the mouse leave. + + The instance containing the event data. + + + + Prcesses the mouse enter. + + The instance containing the event data. + + + + Processes the mouse selection. + + The location. + + + + + Sets the current cursor position + + The location. + + + + Processes the mouse wheel. + + The instance containing the event data. + + + + + Processes the context menu. + + The location. + + + + + Processes the double click. + + The instance containing the event data. + + + + + Processes the key down. + + The instance containing the event data. + + + + + Processes delete of + + if set to true [move next]. + + + + + Processes the select of all + + + + + + Processes the copy operation of + + + + + + Processes the paste operation of text + + + + + + Processes the cut. + + + + + + Processes the tab key. + + The instance containing the event data. + + + + + Selects the next or previous control. + + if set to true [forward]. + + + + + Processes the navigation key. + + The instance containing the event data. + + + + + Processes the list navigation. + + The instance containing the event data. + + + + + Processes the enter key. + + The instance containing the event data. + + + + + Processes the page key. + + The instance containing the event data. + + + + + Processes the key press. + + The instance containing the event data. + + + + + Processes the insert. + + The text. + + + + + Processes the key up. + + The instance containing the event data. + + + + + Initializes a new instance of the class. + + The text box element. + + + + Gets the text block at point. + + The location. + + + + + Represent a navigator in + + + + + Represent a navigator in + + + + + Represent a navigator in + + + + + Suspends the notifications. + + + + + Resumes the notifications. + + + + + Navigates by specified keys. + + The instance containing the event data. + + + + + Saves the current selection position. + + + + + Restores the saved selection position. + + + + + Scrolls to caret position. + + + + + + Selects the specified range. + + The start. + The end. + + + + + Gets the position from point. + + The point. + + + + + Gets the position from offset. + + The offset. + + + + + Gets the previous position. + + The position. + + + + + Gets the next position. + + The position. + + + + + Gets or sets the selection start. + + + The selection start. + + + + + Gets or sets the selection end. + + + The selection end. + + + + + Gets or sets the caret position. + + + The caret position. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Occurs when selection is changing. + + + + + Occurs when selection is changed. + + + + + Initializes a new instance of the class. + + The text box element. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Saves the current selection position. + + + + + Restores the saved selection position. + + + + + Suspends the notifications. + + + + + Resumes the notifications. + + + + + Gets the position from offset. + + The offset. + + + + + Gets the position from point. + + The point. + + + + + Gets the text position from line. + + The line. + The x. + + + + + Scrolls to caret position. + + + + + + Navigates by specified keys. + + The instance containing the event data. + + + + + Navigates at line. + + The instance containing the event data. + The position. + + + + + Gets the previous position. + + The position. + + + + + Gets the previous position resursively. + + The position. + + + + + Gets the next position. + + The position. + + + + + Gets the next position recursively. + + The position. + + + + + Navigates to line. + + The instance containing the event data. + The position. + + + + + Selects the specified range. + + The start. + The end. + + + + + Selects the override. + + if set to true [notify]. + + + + Sets the caret position. + + + + + Gets the associated text box element. + + + + + Gets or sets the selection start. + + + The selection start. + + + + + Gets or sets the selection end. + + + The selection end. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Gets or sets the caret position. + + + The caret position. + + + + + Occurs when selection is changing. + + + + + Occurs when selection is changed. + + + + + Initializes a new instance of the class. + + The owner. + + + + Gets the editable position. + + The position. + if set to true [next]. + + + + + Represents a text box control that tokenized a text by specified delimiter + + + + + Enables the user to enter text, and provides multiline editing + + + + + Initializes a new instance of the class. + + + + + Creates the associated text box element. + + + + + + Appends text to the current text of a text box. + + The text. + + + + Clears all text from the text box element. + + + + + Specifies that the value of the SelectionLength property is zero so that no characters are selected in the element. + + + + + + Scrolls the contents of the control to the current caret position. + + + + + Selects a range of text in the text box. + + The selection start + The selection length + + + + Selects all text in the text box. + + + + + Moves the current selection in the text box to the Clipboard. + + + + + + Copies the current selection in the text box to the Clipboard. + + + + + + Replaces the current selection in the text box with the contents of the Clipboard. + + + + + + Inserts the specified text to the textbox + + The text. + + + + + Deletes the text at current position + + + + + + Deletes the text at the next current position + + if set to true deletes next character. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the size of the drop down max. + + + The size of the drop down max. + + + + + Gets or sets the size of the drop down min. + + + The size of the drop down min. + + + + + Gets or sets the max count of visible items in auto-complete drop down + + + The max drop down item count. + + + + + Gets the associated text box element. + + + + + Gets the auto-complete list element. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets a value indicating whether the text in view + should appear as the default password character. + + + + + Gets or sets the character used to mask characters of a password in a single-line + + + + + Gets or sets when the vertical scroll bar should appear in a multiline TextBox. + + + The state of the vertical scroll bar. + + + + + Gets or sets when the horizontal scroll bar should appear in a multiline TextBox. + + + The state of the horizontal scroll bar. + + + + + Gets or sets the auto complete display member. + + + The auto complete display member. + + + + + Gets or sets a value specifying the source of complete items used for automatic completion. + + + The auto complete data source. + + + + + Gets a value specifiying the complete items used for automatic completion. + + + + + Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the element loses focus. + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the caret position. + + + The index of the caret. + + + + + Gets or sets the starting point of text selected in the text box. + + + The selection start. + + + + + Gets or sets the number of characters selected in the text box. + + + The length of the selection. + + + + + Gets the length of text in the element. + + + The length of the text. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box element. + + + The length of the max. + + + + + Gets or sets the current text in the text box element. + + + + + Gets or sets the prompt text that is displayed when the text box contains no text. + + + The null text. + + + + + Gets or sets the color of the null text. + + + The color of the null text. + + + + + Gets or sets how the text is horizontally aligned in the element. + + The horizontal text alignment. + + + + Gets or sets the lines of text in a text box control. + + + The lines. + + + + + Gets or sets a value indicating the currently selected text in the text box. + + + The selected text. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text box element types a TAB character in the element instead of moving the focus to the next element in the tab order. + + + true if [accepts tab]; otherwise, false. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline TextBox control creates a new line of text in the control or activates the default button for the form. + + + true if [accepts return]; otherwise, false. + + + + + Gets or sets a value indicating whether this is a multiline text box. + + + true if multiline; otherwise, false. + + + + + Indicates whether a multiline text box control automatically wraps words to the beginning of the next line when necessary. + + + true if [word wrap]; otherwise, false. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets or sets whether the TextBox control modifies the case of characters as they are typed. + + + The character casing. + + + + + Gets or sets a value indicating whether text in the text box is read-only. + + + true if this is in read only mode; otherwise, false. + + + + + Gets or sets a value indicating whether the caret is visible in read only mode. + + + true if the caret is visible; otherwise, false. + + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Occurs when text selection is changing. + + + + + Occurs when text selection is changed. + + + + + Occurs when the text is changing. + + + + + Occurs when text block is formatting. + + + + + Occurs when an instance of is created + + + + + Occurs when opening the context menu. + + + + + Fired when the Input Method Editor starts the composition. + + + + + Fired when the Input Method Editor completes the composition. + + + + + Fired when the Input Method Editor has a result ready. For languages like Korean + this might happen before the composition has ended. + + + + + Initializes a new instance of the class. + + + + + Gets the associated auto complete text box element. + + + + + Gets or sets the delimiter used to tokenize the text. + + + The delimiter. + + + + + Gets or sets a value indicating whether the remove button of should appear. + Notice that the text box should not be in read only mode + + + true if [show remove button]; otherwise, false. + + + + + Gets the tokenized items. + + + + + Gets or sets an option that controls how automatic completion works for the TextBox. + + + The auto complete mode. + + + + + Gets or sets a property name which will be used to extract a value from the data items + + + + + Occurs when text is validating as token + + + + + Creates a new instance of the . + + + + + Fires right after the editor value is changed. + + The event arguments. + + + + Fires right before the editor value is changed. + + The event arguments. + + + + Fires after the dialog is closed. + + The event arguments. + + + + Fires when the is clicked. + + The event arguments. + + + + Sets the value of the editor. + + The new value to set. + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be opened when the browse button is clicked. + + A . + + + + Creates the that will be placed in the browse editor and will be used to open + the . + + + + + + Gets the value of the editor. + + + + + Gets or sets the type of dialog to be opened when the browse button is pressed. + + + + + Gets the that opens the . + + + + + Gets the that will open upon pressing the browse button. + + + + + Determines if users can input text directly into the text field. + + + + + Fires after the dialog window is closed. + + + + + Fires right before the value is changed. Cancelable event. + + + + + Fires after the editor value is changed. + + + + + Represents a browser control box. The RadBrowseEditor class is a simple wrapper for the + RadBrowseEditorElement class. The RadBrowseEditor acts + to transfer events to and from its corresponding + RadBrowseEditorElement. The + RadBrowseEditorElement which is essentially the + RadBrowseEditor control may be nested in other telerik controls. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadBrowseEditorElement of this control. + + + + + Gets the OpenFileDialog of this control. + + + + + Gets or sets the type of dialog to be opened when the browse button is pressed. + + + + + Gets or sets the value of the editor. + + + + + Determines if users can input text directly into the text field.. + + + + + Fires after the dialog window is closed. + + + + + Fires right before the value is changed + + + + + Fires after the editor value is changed. + + + + + Fires when the ReadOnly property value is changed. + + + + + Creates a RadTimePicker instance. + + + + + Determines whether the Clock will show the system time. + + + + + Determines whether the Clock will show the system time. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + RadClock consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Shows the UITypeEditor + + + + + Occurs when the button of the editor is clicked. + + + + + Determines if the editor should be closed after the value has been changed. + + The current value of the editor. + The new value of the editor. + True if editor should be closed other wise false. + + + + Selects the whole text inside the editor tex box. + + + + + Validates if the text input in the text box is a valid value for the edited item + + True if the value is valid otherwise false. + + + + Gets the that is opening. + + + + + Gets or sets a value indicating whether the editor will loop through its values when double clicked. + + + true if the editor will loop through its values when double clicked; otherwise, false. + + + + + Provides information about the type of the editor required by the + GridTableViewManager when instantiating the requested type of column. + + + + + Initializes with editor type defined. + + + + + Initializes setting the required editor type. + + The type of the editor required. + + + + Initializes setting the required editor type. + The IInputEditor property is initialized by GridViewEditManager prior to event call, + if default implementation is available. + + The type of the editor required. + IInputEditor instance if available. + + + + Gets or sets the type of the editor required by the edited control if no default editor is available. + + + + + Gets or sets the ICellEditor instance if created outside the GridViewEditorManager. + Also if a default editor is provided by the RadGridView, it is available for post-initialization + or substitution. + + + + + Provides information about the new value that is edited inside the active + cell editor. + + + + + Gets the new value that is edited by the active editor. + + + + + Gets the new value that is edited by the active editor. + + + + + Sets the visibility of the sort/group items depending on whether the functionality is enabled. + + + + + Gets the Expand/Collapse menu item. + + + + + Gets the Edit menu item + + + + + Gets the Reset menu item. + + + + + Gets the Sort menu item. + + + + + Gets the Show description menu item. + + + + + Gets the Show toolbar menu item. + + + + + Represents a property descriptor for properties. + + + + + Creates a new instance of the class. + + The collection of objects whose properties will be exposed. + The original property descriptors for the objects. + + + + Gets a value indicating whether a property cam be reseted. + + Always returns true. + + + + Gets a common value of all objects or returns null if object's values differ. + + Returns a common value or null + + + + Resets the values of all objects for this property. + + + + + Sets a value to all objects. + + The value to set. + + + + + Gets a value indicating whether value should be serialized. + + Always returns true. + + + + Returns the type of component this property descriptor is for. + + + + + Gets a value indicating whether this property is read only. Always returns false. + + + + + Returns the type of the property. + + + + + Represents a for the + used in the . + + + + + Returns an instance of the . + + + + + Represents a for the . + + + + + Creates a new instance of the . + + The collection of objects. + + + + Returns a with the common properties of the objects in the + . + + The common properties of the objects in the . + + + + Returns a with the common properties of the objects in the + to which the specified attributes have been applied. + + The attributes by which to filter the properties. + The common properties of the objects in the . + + + + Represents a collection of objects. It can be used in a property grid to edit the common properties of the objects. + + + + + Creates a new empty . + + + + + Creates a new with the specified objects. + + The objects to fill the collection with. + + + + Gets the index of a given object. + + The object to look for. + The index of the object or -1 if the object is not present in the collection. + + + + Inserts an object in the given index. + + The index to insert on. + The object to insert. + + + + Removes an object from the specified index. + + The index to remove from. + + + + Adds an object to the collection. + + The object to add. + + + + Clears the entire collection. + + + + + Checks whether the collection contains the given object. + + The object to check for. + True if the object is present in the collection, otherwise false. + + + + Copies the objects from the collection to a specified array starting at the given index. + + The destination array. + The index to start at in the destination array. + + + + Removes a specified object from the collection. + + The object to remove. + True if the object was removed otherwise false. + + + + Gets or sets the object on the specified index. + + The index of the object + + + + Gets the number of items currently in the collection. + + + + + Gets a value indicating whether the collection si read only. Always returns false. + + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + The category the item would be grouped in. + + + + Creates a new instance of the which can be added to a . + + The type of the item. + The name to be displayed for the item. + The initial value for the item. + The description to be displayed for the item. + The category the item would be grouped in. + Determines if the property would be editable. + + + + Resets the value to the initial state. + + + + + Called when the PropertyChanged event is fired. + + + + + Gets or sets the Type of the property. + + + + + Gets or sets the name that would be displayed in the RadPropertyGrid + + + + + Gets or sets the value of the item. + + + + + Gets or sets the description to be displayed in the RadPropertyGrid for this item. + Same as setting a to a property. + + + + + Gets or sets a value indication whether this property item would be read only in the RadPropertyGrid. + Same as setting a to a property. + + + + + Gets or sets the category of this item. + Same as setting a to a property. + + + + + Gets or sets the text to be displayed instead of the property name. + Same as setting a to a property. + + + + + Gets or sets a collection of attributes to be applied to the item in the property grid. + If an attribute covered by property of the is added the + attribute in this collection will be ignored. will always be ignored. + + + + + Gets or sets the that contains this item. + + + + + Occurs when any of the properties is changed. + + + + + A descriptor for the used in the . + + + + + Creates a new instance of the . + + The item this descriptor would represent. + + + + Returns a value indicating if Reset can be performed for this item. + + Always returns true. + + + + Resets the value of the current item to its initial value. + + + + + Gets the value of the current item. + + The value of the item. + + + + Sets a new value to the current item. + + The value to be set to the current item. + + + + + Gets a value indicating whether the value should be serialized. + + Always returns true. + + + + Gets the type of component this descriptor is used for. + + + + + Gets a value indicating whether the current item is read only. + + + + + Gets the type of the current item. + + + + + Type descriptor provider for the . + + + + + Gets a type descriptor for the given instance. + + + The instance to get a type descriptor for. + The type descriptor. + + + + Custom type descriptor for the . + + + + + Creates a new instace of the + + The this descriptor is used for. + + + + Returns a collection of property descriptors corresponding to the items in the current . + + A collection of . + + + + Returns a collection of property descriptors corresponding to the items in the current . + + A collection of . + + + + Collection of items which can be set as a property grid selected object. + It's items would be displayed in the property grid as properties of an object. + + + + + Creates a new instace of the + + + + + Adds an item to the collection. + + The item to add. + + + + Adds an item to the collection. + + Type of the item. + Name to be displayed in the RadPropertyGrid. + Value for the item. + + + + Adds a collection of items to this collection. + + The collection of items to add. + + + + Inserts the item on the specified index. + + The index to insert on. + The item to insert. + + + + Gets the index of the item. + + The item which index to return + The index of the item if found and -1 if item is not in the collection. + + + + Checks whether a specific item is present in the collection. + + The item to check. + True if the item is contained in the collection otherwise false. + + + + Removes the specified item form the collection. + + The item to remove from the collection. + True if the removal was successful otherwise false. + + + + Removes the item with the specified name form the collection. + + The name of the item to remove. + True if the removal was successfull otherwise false. + + + + Removes an item from the specified index. + + The index to remove on. + + + + Clears the entire collection. + + + + + Copies the items of the collection to the specified array starting from the provided index. + + The destination array. + The index in the destination array. + + + + Gets the generic enumerator for this collection. + + The generic enumerator. + + + + Gets the enumerator for this collection. + + The enumerator. + + + + Gets the number of items in the collection. + + + + + Gets a value indicating whether the collection is read only. + + + + + Gets or sets the item at the specified index. + + The index. + The item on the specified index. + + + + Gets or sets the item with the specified name. + + The property name. + Returns the item if its present in the collection otherwise returns null + + + + Gets a value indicating whether the item is selected. + + + + + Gets a value indicating whether the item is expanded. + + + + + Gets a value indicating whether the control contains the focus. + + + + + Gets the that is parent to this item. + + + + + Gets a value indicating whether a given point is in a location where resize should be initialized when the left mouse button is pressed. + + The point to check for. + true if point is in location for resize otherwise false. + + + + Attaches a logical item to this visual element. + + The logical item. + The context. + + + + Detaches the currently attached logical item. + + + + + Syncronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets or sets a value indicating whether this item has a parent or not. + + + + + Gets or sets a value indicating whether this item has changed its value or not. + + + + + Gets or sets a value indicating whether this property can be edited. + + + + + Gets the header element of the . + + + + + Gets the property grid item indent element + + + + + Gets the property grid item expander element. + + + + + Gets the property grid item text element. + + + + + Gets the property grid item value element + + + + + Gets the logical item attached to this visual element. + + + + + Synchronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets the property grid item check box element + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Syncronizes changes with other elements. + + + + + Editing begins when the cell receives focus. + + + + + Editing begins when a focused cell is clicked again. + + + + + Editing begins only when the method is called. + + + + + Represents a toggle button element. The toggle button supports two or three + states depending on the IsThreeState property. + + The RadToggleButton class is a simple wrapper + for the RadToggleButtonElement class. All UI and logic functionality is + implemented in the RadToggleButtonElement class. The + RadToggleButton acts to transfer events to + and from its corresponding RadToggleButtonElement instance. The latter can be + nested in other telerik controls. + + + + + Initializes a new instance of the RadToggleButtonElement class. + + + + Raises the StateChanging event. + + + + + Raises the CheckStateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the StateChanged event. + + + + + Raises the IsCheckedChanged event. + + + + + Occurs before the elements's state changes. + + + + + Occurs when the elements's state changes. + + + + + Occurs before the elements's check state changes. + + + + + Occurs when the elements's check state changes. + + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + Gets or sets a value indicating whether the button is checked. + + + + Gets or sets a value indicating whether the toggle button has three or two + states. + + + + + Gets or sets a value indicating whether the toggle button element is read only. + + + true if the toggle button element is read only; otherwise, false. + + + + + Executes a search with the current state of the filter. + + + + + Synchronizes the default toggle buttons in the + with the PropertySort property of the . + + + + + Executed when one of the toggle buttons changes. + + The button that triggered the event. + The event arguments. + + + + Gets the parent . + + + + + Gets the that enables CategorizedAlphabetical view in the + + + + + Gets the that enables Alphabetical view in the + + + + + Gets the . + + + + + Gets or sets the property name by which the search will be performed. + + + + + Gets or sets the filter operator which will be used for the search. + + + + + Gets or sets the value by which the search will be performed. + + + + + Gets or sets the height of the . + + + + + Begins the resize of the description element. + + The offset used to resize the description element. + + + + Gets the . + + + + + Gets the . + + + + + Gets the . + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the is visible. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Expands all the categories in the . + + + + + Collapses all the categories in the . + + + + + Resets the selected property to its default value. + + + + + Gets the . + + + + + Gets the . + + + + + Gets the + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the should be visible. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets or sets a value indicating whether the data can be grouped programatically. + + + + + Displays the properties of an object in a grid with two columns with a property name in the first column and value in the second. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Expands all the categories in the . + + + + + Collapses all the categories in the . + + + + + Resets the selected property to its default value. + + + + + Puts the current item in edit mode. + + true if successful. + + + + Commits any changes and ends the edit operation on the current item. + + true if successful. + + + + Close the currently active editor and discard changes. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets or sets a value indicating whether the data can be grouped programmatically. + + + + + Gets a value indicating whether there are currently open editors. + + + + + Gets or sets a value indicating whether the user is allowed to edit the values of the properties. + + + + + Gets the active editor. + + + + + Gets or sets a value indicating how user begins editing a cell. + + + + + Gets or sets a value indicating whether the groups will be expanded or collapsed upon creation. + + + + + Gets or sets the shortcut menu associated with the control. + + + + A that represents the shortcut menu associated with the control. + + + + + Gets or sets a value indicating whether the default context menu is enabled. + + The default value is false. + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadPropertyGrid is focused. + + The default value is false. + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + + The default value is 300. + + + + Gets or sets the string comparer used by the keyboard navigation functionality. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the selected item. + + + + + Gets or sets the object which properties the is displaying. + + + + + Gets or sets the objects which properties the is displaying. + + + + + Gets the Items collection. + + + + + Gets the Groups collection. + + + + + Gets or sets a value indicating whether grouping is enabled. + + + + + Gets or sets a value indicating whether sorting is enabled. + + + + + Gets or sets a value indicating whether filtering is enabled. + + + + + Gets the group descriptors. + + + + + Gets the filter descriptors. + + + + + Gets the sort descriptors. + + + + + Gets or sets the sort order of items. + + + + + Gets or sets the mode in which the properties will be displayed in the . + + + + + Gets or sets a value indicating whether the is visible. + + + + + Gets or sets the height of the . + + + + + Gets or sets a value indicating whether the search box of the should be visible + + + + + Gets the of this control. + + + + + Gets or sets the height of the items. + + The height of the item. + + + + Gets or sets the distance between items of the RadPropertyGridElement. + + + + + Gets or sets the width of the indentation of subitems. + + + + + RadPropertyGrid consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadPropertyGrid consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs before the selected object is changed. + + + + + Occurs after the selected object is changed. + + + + + Occurs before a property grid item is selected. + + + + + Occurs after the property item is selected. + + For more information about handling events, see also SelectedItemChanging. + + + + + + Occurs when opening the context menu. + + + + + Fires for custom grouping operation. + + + + + Occurs when the user presses a mouse button over a property grid item. + + + + + Occurs when the user moves the mouse in the area of a property grid item. + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs before the value of the Expanded property of a property grid item is changed. + + + + + Occurs after the value of the Expanded property of a property grid item is changed. + + + + + Occurs when the item changes its state and needs to be formatted. + + + + + Occurs when a new item element is going to be created. + + + + + Occurs when a new item element is going to be created. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when item's value is changing. + + + + + Occurs when a property value changes. + + + + + Fires when a property value is validating. + + + + + Fires when a property has finished validating. + + + + + Fires before the value in an editor is being changed. The action can be canceled. + + + + + Fires when the value of an editor changes. + + + + + This property determines whether the traverser will traverse only via expanded items or through all items + true to traverse all items, false to traverse expanded items only + + + + + Represents the method that will handle events in . + + + + + + + Provides data for all events used in + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + true if [process PropertyGridItemBase]; otherwise, false. + + + + Gets the item. + + The item. + + + + Gets or sets the text of the title. + + + + + Gets or sets the text of the content. + + + + + Gets the . + + + + + Gets the . + + + + + Gets or sets the height of the . + + + + + Gets the parent of this element. + + + + + Attaches a logical item to this visual element. + + The logical item. + The context. + + + + Detaches the currently attached logical item. + + + + + Syncronizes changes with other elements. + + + + + Determines if a logical item is compatible with this visual element. + + The logical item to be checked for compatibility. + The context. + + + + + Gets the property grid group item expander element. + + + + + Gets the property grid group item text element. + + + + + Gets the logical item currently attached to this visual element. + + + + + Syncronizes element with data item. + + + + + Uses a mechanism to maximize the visible strings in both columns of RadPropertyGrid. + + + + + Best fits the column(s) of RadPropertyGrid using the given mode. + + The mode that determines the mechanism used for best fitting. + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + Tells the view whether an update is required or not. + Indicates the update action + + + + Updates the visual items in the property grid + + Indicated the update action + + + + Gets the element at specified coordinates. + + The x coordinate. + The y coordinate. + An instance of if successful. + + + + Ensures the item is visible within the RadPropertygridElement and scrolls the element if needed. + + The item to visualize. + + + + Scrolls the scrollbar to bring the specified into view. + + The item to visualize. + + + + Initializes and returns the context menu associated with the specified . + + The element. + An instance of if successfull. + + + + Makes the property grid columns even. + + + + + Sorts the sub items of all expanded items. + + + + + Ensures the item is visible within the RadPropertygridElement and scrolls the element if needed. + + The item to visualize. + + + + Performs the needed operations on the data layer when the mode is changed. + + + + + + Gets the default property for the selected object + + The that is the default property. + + + + Updates the scroll bars visibility. + Specifies the action which caused the update. + + + + + Syncronizes all visual elements. + + + + + This method traverses through the visible items of RadPropetyGrid and returns an item matching the . + + + + + + + Gets the type of editor used for a editing the given item. + + The item to get editor type for. + The type of the editor + + + + Puts the current item in edit mode. + + + + + + Commits any changes and ends the edit operation on the current item. + + + + + + Close the currently active editor and discard changes. + + + + + + Ends the editing of an item and commits or discards the changes. + + Determines if the changes are commited [true] or discarded [false]. + + + + + Gets an editor depending on the type of the value to be edited. + + The type of the value. + + + + + Returns a value indicating whether the is editable + + The item to check. + True if item can be edited. Otherwise false. + + + + Gets or sets a value indicating whether the data can be grouped programmatically. + + + + + Gets or sets a value indicating whether the values of the items should be invalidated the next time a grouping and/or sorting is performed. + + + + + Gets the that is responsible for the kinetic scrolling option. + + + + + Gets or sets a value indicating whether the kinetic scrolling function is enabled. + + + + + Gets the that is a parent to this element. + + + + + Gets the active editor. + + + + + Gets or sets the mode in which the properties will be displayed in the . + + + + + Gets or sets the minimum width columns can have. + + + + + Gets a value indicating whether there are currently open editors. + + + + + Gets or sets a value indicating whether the user is allowed to edit the values of the properties. + + + + + Gets or sets a value that indicates whether editors specified with an EditorAttribute will be used without considering built-in editors. + + + + + Gets or sets the width of the "column" that holds the values. + + + + + Gets or sets a value indicating whether the groups will be expanded or collapse upon creation. + + + + + Gets the group descriptors. + + The group descriptors. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the sort order of Nodes. + + The sort order. + + + + Gets or sets the height of the items. + + The height of the item. + + + + Gets or sets the width of the indentation of subitems. + + + + + Gets or sets the object which properties the RadPropertyGrid is displaying. + + + + + Gets or sets the objects which properties the RadPropertyGrid is displaying. + + + + + Gets the collection to which the RadPropertyGrid is bound to. + + + + + Gets the selected item. + + + + + Gets or sets the context menu. + + The context menu. + + + + Gets or sets a value indicating how user begins editing a cell. + + + + + Gets or sets the distance between property grid items. + + + + + Gets or sets a value that determines whether the user can navigate to an item by typing when RadPropertyGrid is focused. + The default value is false. + + + + + Gets or sets a value that specifies how long the user must wait before searching with the keyboard is reset. + The default value is 300. + + + + + Gets or sets an object that implements IFindStringComparer. + The value of this property is used in the keyboard search functionality. + + + + + Fires for custom grouping operation. + + + + + Occurs before the selected object is changed. + + + + + Occurs after the property grid selected object has been changed. + + + + + Occurs when is formatting + + + + + Occurs when a mouse button is pressed on the . + + + + + Occurs when a mouse button is clicked inside a + + + + + Occurs when a mouse button is double clicked inside a + + + + + Occurs when mouse moves over a . + + + + + Occurs when item is expanding. + + + + + Occurs when item has been expanded. + + + + + Occurs when the selected item is changing + + + + + Occurs when selected item has been changed. + + + + + Occurs when editor is required. + + + + + Occurs when editing is started. + + + + + Occurs when editor is initialized. + + + + + Occurs when editing has been finished. + + + + + Occurs when item's value is changing. + + + + + Occurs when item's value has been changed. + + + + + Fires when a property value is validating. + + + + + Fires when a peoperty has finished validating. + + + + + Fires before the value in an editor is being changed. The action can be canceled. + + + + + Fires when the value of an editor changes. + + + + + Occurs when [binding context changed]. + + + + + Docks the search button on the left or right side of the search text box depending on the RightToLeft state. + + + + + Gets the search button. + + + + + Represents base class for button elements used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorButton. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorOperationButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorCommandButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorDeleteButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorEqualsButtonElement. + + Button text. + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorMemoryButtonElement. + + Button text. + + + + Represents arrow button used in RadCalculatorDropDown. + + + + + Represents memory element used in RadCalculatorContentElement. + + + + + Represents a control with calculator functionality. + + + + + Creates a RadCalculatorDropDown instance. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadCalculatorElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the calculator value. + + + + + Gets or sets a value indicating whether the calculator drop down is read only. + + + true if the calculator drop down is read only; otherwise, false. + + + + + Fires when the value of the calculator is changing. + + + + + Fires when the value of the calculator is changing. + + + + + Event needed by the engine behind simple data binding so that it can work two way. In order to receive notifications for changes in the calculator value subscribe to the CalculatorValueChanged event. + + + + + Represents button element used in RadCalculatorContentElement. + + + + + Creates new instance of RadCalculatorDigitButtonElement. + + Button text. + + + + Represents the content element of RadCalculatorDropDown. + + + + + Creates new instance of RadCalculatorContentElement. + + + + + + Gets the owner RadCalculatorElement. + + + + + Gets or sets the memory value. + + + + + Gets the grid layout. + + + The grid layout. + + + + + Gets the button add. + + + The button add. + + + + + Gets the button substract. + + + The button substract. + + + + + Gets the button multiply. + + + The button multiply. + + + + + Gets the button divide. + + The button divide. + + + + Gets the button SQRT. + + The button SQRT. + + + + Gets the button percent. + + The button percent. + + + + Gets the button reciprocal. + + The button reciprocal. + + + + Gets the button sign. + + The button sign. + + + + Gets the button equals. + + The button equals. + + + + Gets the button C. + + The button C. + + + + Gets the button CE. + + The button CE. + + + + Gets the button delete. + + The button delete. + + + + Gets the button mplus. + + The button mplus. + + + + Gets the button mminus. + + The button mminus. + + + + Gets the button MS. + + The button MS. + + + + Gets the button MR. + + The button MR. + + + + Gets the button MC. + + The button MC. + + + + Gets the button 0. + + The button 0. + + + + Gets the button 1. + + The button 1. + + + + Gets the button 2. + + The button 2. + + + + Gets the button 3. + + The button 3. + + + + Gets the button 4. + + The button 4. + + + + Gets the button 5. + + The button 5. + + + + Gets the button 6. + + The button 6. + + + + Gets the button 7. + + The button 7. + + + + Gets the button 8. + + The button 8. + + + + Gets the button 9. + + The button 9. + + + + Gets the button point. + + The button point. + + + + RadCalculatorDropDown arithmetic operations. + + + + + Represents the editor content element of RadCalculatorDropDown. + + + + + Creates new instance of RadCalculatorEditorContentElement. + + + + + Indicates whether the fast navigation buttons were used. + + + + + Gets the direction of the navigation. + + + + + Arguments class used when the SelectionChanging event is fired. + + + + + Gets a refference to the Dates which will be selected + + + + + Gets a refference to the SelectedDates collection, represented by the Telerik RadCalendar component + that rise the SelectionChanging event. + + + + + The public delegate for the SelectionChanging event. + + + + + Arguments class used with the ElementRender event. + + + + + Gets a refference to the LightVisualElement object that represents visually the specified day to render. + + + + + Gets a refference to the RadCalendarDay logical object that represents the specified day to render. + + + + + Gets a refference to the CalendarView object currently displayed by RadCalendar, + that contains the specified day to render. + + + + + The public delegate for ElementRender event. + + + + + Indicates whether the fast navigation buttons were used. + + + + + Gets the direction of the navigation. + + + + + Gets or sets the start date of the new view. + + + + + Arguments class used when the ViewChangingEvent event is fired. + + + + + Gets the new CalendarView instance that will substitute the view currently displayed by RadCalendar. + + + + + The public delegate for the ViewChanging event. + + + + + RadCalendarDay represents a object that maps date value to corresponding visual settings. + Also the object implements Boolean properties that represent the nature of the selected date - + whether it is a weekend, disabled or selected in the context of the calendar. Mostly the values + of those properties are set at runtime when a RadCalendarDay instance is constructed and passed + to the DayRender event. + + + + + Sets whether RadCalendarDay object is associated with a DateTime equal to today's date. + + True if RadCalendarDay object is associated with today's date. + + + + Sets whether RadCalendarDay object is associated with a DateTime that represents a weekend day. + + True if RadCalendarDay object is associated with a DateTime that represents a weekend day. + + + + Checks whether RadCalendarDay object is associated with a DateTime that represents a recurring event. + + the DateTime to compare. + the System.Globalization.Calendar object used to check whether the DateTime + represents a recurring event. + + + + + Removes the time component of a DateTime object, thus leaving only the date part. + + the DateTime object to be processed. + the DateTime object containing only the date part of the original DateTime object. + + + + + + the DateTime object associated with this particular RadCalendarDay. + + + + + + + the DateTime object associated with this particular RadCalendarDay. + the CalendarDayCollection that contains this particular RadCalendarDay. + + + + + Raises the PropertyChanged event. + + The name of the property. + + + + Raises the PropertyChanged event. + + PropertyChangedEventArgs instance containing the name of the property. + + + + Gets or sets the image associated with a particular RadCalendarDay object. + + + + + Gets or sets the template associated with a particular RadCalendarDay object. + The template must inherit from RadHostItem. + + + + + Gets or sets the date represented by this RadCalendarDay. + + + + + Gets or sets a value indicating whether the RadCalendarDay is qualified as available for selection. + + + + + Gets or sets a value indicating whether the RadCalendarDay is selected + + + + + Gets or sets a value indicating whether the RadCalendarDay is disabled + + + + + Gets or sets a value indicating whether the RadCalendarDay represents the current date. + + + + + Gets or sets a value indicating whether the RadCalendarDay settings are repeated/recurring through out the valid + date range displayed by the calendar. + + + The RecurringEvents enumeration determines which part of the date is handled (day or day and month). + + + + + Gets or sets a value indicating whether the RadCalendarDay is mapped to a date that represents a non working + day/weekend. + + + + + Gets or sets the text displayed when the mouse pointer hovers over the calendar day. + + + + + The owner of RadCalendarDay object. + + + + + Used to handle all requests for layout invalidation through a single place + + + + + Used to handle all requests for repainting through a single place + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Summary description for CalendarDayCollection. + + + + + Finds the RadCalendarDay with specified key, optionally searching child days. + + The date bound to a particular RadCalendarDay object to search for. + An array of RadCalendarDay objects whose Date property matches the specified key. + + + + Returns the index of the specified RadCalendarDay object in the collection. + + The RadCalendarDay object to locate in the collection. + The zero-based index of the item found in the CalendarDayCollection; otherwise, -1. + + + + Adds an collection of previously created RadCalendarDay objects to the collection. + + An array of RadCalendarDay objects representing the views to add to the collection. + + + + Adds a previously created RadCalendarDay object to the end of the CalendarDayCollection. + + The RadCalendarDay object to add to the collection. + + + + Adds a DateTime object to the end of the CalendarDayCollection. + + The DateTime object to add to the collection. + + + + Adds a collection of date time values to the collection. + + An IEnumerable of DateTime objects to add to the collection. + + + + Returns an enumerator that can be used to iterate through the RadCalendarDay collection. + + An IEnumerator that represents the RadCalendarDay collection. + + + + Inserts an existing RadCalendarDay object into the CalendarDayCollection at the specified location. + + The indexed location within the collection to insert the RadCalendarDay object. + The RadCalendarDay object to insert into the collection. + + + + Removes the specified RadCalendarDay object from the CalendarDayCollection. + + The RadCalendarDay object to remove. + + + + Returns an enumerator that can be used to iterate through the RadCalendarDay collection. + + An IEnumerator that represents the RadCalendarDay collection. + + + + Removes all RadCalendarDay objects in the collection of CalendarDays. + + + + + Copies the elements of CalendarDayCollection to a new + of elements. + + A one-dimensional of + elements containing copies of the elements of the . + Please refer to for details. + + + + Copies the elements of the CalendarDayCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from CalendarDayCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a RadCalendarDay object to the collection of CalendarDays. + + The RadCalendarDay object to add to the collection. + + + + Removes all RadCalendarDay objects in the collection of CalendarDays. + + + + + Checks whether a specific RadCalendarDay object is in the collection of CalendarDays. + + The RadCalendarDay object to search. + True if the RadCalendarDay is found, false otherwise. + + + + Returns a zero based index of a RadCalendarDay object depending on the passed index. + + The zero-based index, RadCalendarDay object or the date represented by the searched RadCalendarDay object. + A zero based index of the RadCalendarDay object in the collection, or -1 if the RadCalendarDay object is not found. + + + + Adds a RadCalendarDay object in the collection at the specified index. + + The index after which the RadCalendarDay object is inserted. + The RadCalendarDay object to insert. + + + + Deletes a RadCalendarDay object from the collection. + + The RadCalendarDay object to remove. + + + + Deletes the RadCalendarDay object from the collection at the specified index. + + The index in collection at which the RadCalendarDay object will be deleted. + + + + Creates a new CalendarDayCollection object that is a copy of the current instance. + + A new CalendarDayCollection object that is a copy of this instance. + + + + Creates a new object that is a copy of the current instance. + + A new object that is a copy of this instance. + + + + Gets a value indicating whether access to the CalendarDayCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the CalendarDayCollection. + + + + + Gets a value indicating whether the CalendarDayCollection has a fixed size. + + + + + Gets a value indicating whether the CalendarDayCollection is read-only. + + + + + Gets or sets the RadCalendarDay at the specified indexed location in the collection. + + The indexed location of the RadCalendarDay in the collection. + The RadCalendarDay at the specified indexed location in the collection. + + + + Gets the total number of RadCalendarDay objects in the collection. + + + + + Gets or sets the RadCalendarDay at the specified indexed location in the collection. + + The indexed location of the RadCalendarDay in the collection. + The RadCalendarDay at the specified indexed location in the collection. + + + + Gets or sets a RadCalendarDay object depending on the passed key. + Only integer and string indexes are valid. + + + + + Summary description for CalendarView. + + + + + Determines if a DateTime object belongs to the dates range managed by a particular CalendarView. + + The DateTime object to be tested. + True if the DateTime object belongs to the dates range managed by a particular CalendarView; False otherwise. + + + + Adds the specified date to the SelectedDates collection of RadCalendar. + + The DateTime object to add. + + + + Adds the specified range of dates to the SelectedDates collection of RadCalendar. + + array of DateTime objects to add. + + + + Adds the specified range of dates to the SelectedDates collection of RadCalendar. + + A System.DateTime that specifies the initial date to add to the SelectedDates collection. + A System.DateTime that specifies the end date to add to the SelectedDates collection. + + + + Gets a DateTime object that is part of the date range handled by the previous calendar view. + Used for traversal of the calendar. + + The DateTime object + + + + Gets a DateTime object that is part of the date range handled by the next calendar view. + Used for traversal of the calendar. + + The DateTime object + + + + + + + + + + + + Ensures that the child views collection is created. + + + + + Initializes properly the ViewStartDate, ViewEndDate, ViewRenderStartDate, ViewRenderEndDate properties + + + + + handles the page down key. + + The key data to be processed. + + + + handles the page up key. + + The key data to be processed. + + + + handles the down arrow key. + + The key data to be processed. + + + + handles the up arrow key. + + The key data to be processed. + + + + handles the End key. + + The key data to be processed. + + + + handles the Home key. + + The key data to be processed. + + + + handles the left arrow key. + + The key data to be processed. + + + + handles the right arrow key. + + The key data to be processed. + + + + Toogles the date selection (Enter key). + + The key data to be processed. + + + + Verifies CalendarView settings required for correct presentation of calendrical information. + + + + + Returns the DateTime object that is used by the CalendarView to initialize. + + DateTime object that is used by the CalendarView to initialize. + + + + handles key events that require processing from CalendarView. + + The key data to be processed. + + + + Creates a CalendarView object based on the logic implemented by the CalendarView instance + that implements the method. + + DateTime object that is used to create the CalendarView. + The created CalendarView object. + + + + Raises the PropertyChanged event + + The name of the property + + + + Gets the parent calendar that the current view is assigned to. + + + + + Gets the parent tree node of the current tree node. + + + + + Gets the collection of nodes that are assigned to the tree view control. + + + + + Gets or sets the name of the node. + + + + + Gets or sets whether tool tips are displayed for this specific control. + + + + Gets or sets the format string that is applied to the days cells tooltip. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'dddd, MMMM dd, yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + + Gets or sets the orientation (rendering direction) of the calendar component. + Default value is Horizontal. + + + + + Member + Description + + + Horizontal + Renders the calendar data row after row. + + + Vertical + Renders the calendar data column after + column. + + + + + + + Gets or sets the horizontal alignment of the view title. + The ContentAlignment enumeration is defined in + System.Windows.Forms.VisualStyles + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Gets or sets a value indicating whether the tree node is visible or partially visible. + + + + + Gets the root parent node for this instance. + + + + + Gets a value indicating whether the CalendarView is the top most view displayed by RadCalendar. + + + + + Gets the zero-based depth of the tree node in the RadTreeView tree. + Returns -1 if the node is outside of a tree view. + + + + + Gets or sets a value indicating whether the calendar view is in read-only mode. + + + + + Gets or sets the text displayed for the complete CalendarView + selection element in the view selector cell. + + + The text displayed for the CalendarView selection element in the + selector cell. The default value is "". + + + Use the ViewSelectorText property to provide custom text for + the CalendarView complete selection element in the selector + cell. +
+ + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the ViewSelectorText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the EnableViewSelector + property is set to true. +
+
+ + + Use the RowHeaderText property to provide custom text for + the CalendarView complete row header element. +
+ + + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the RowHeaderText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the ShowRowsHeaders + property is set to true. +
+ + The text displayed for the CalendarView header element. The default value is "". + + + Gets or sets the text displayed for the row header element. + +
+ + + Use the ColumnHeaderText property to provide custom text + for the CalendarView complete column header element. +
+ + + + + This property does not automatically encode to HTML. You need + to convert special characters to the appropriate HTML value, unless + you want the characters to be treated as HTML. For example, to + explicitly display the greater than symbol (>), you must use the + value &gt;. + + + +
+ Because this property does not automatically encode to HTML, it is possible + to specify an HTML tag for the ColumnHeaderText property. For + example, if you want to display an image for the next month navigation control, you + can set this property to an expression that contains an + <img> element. + This property applies only if the ShowColumnHeaders + property is set to true. +
+ + The text displayed for the CalendarView column header element. The default value is "". + + + Gets or sets the text displayed for the column header element. + +
+ + + The image displayed for the CalendarView column header element in the + header cells. The default value is "". + + + Gets or sets the image displayed for the column header element. + + + This property applies only if the ShowColumnHeaders property + is set to true. If ColumnHeaderText is set too, + its value is set as an alternative text to the image of the column header. + When using this property, the whole image URL is generated using also the + value. + Example: + ShowColumnHeaders="true"
+ ImagesBaseDir = "Img/"
+ ColumnHeaderImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + The image displayed for the CalendarView row header element. The default value is "". + + + Gets or sets the image displayed for the row header element. + + + This property applies only if the ShowRowHeaders property is + set to true. If RowHeaderText is set too, its + value is set as an alternative text to the image of the row header. + When using this property, the whole image URL is generated using also the + value. + Example:
+ ShowRowHeaders = "true"
+ ImagesBaseDir = "Img/"
+ RowHeaderImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + Gets or sets the margin of the view cells + + + + + Gets or sets the margin of the view cells + + + + + Gets or sets the image displayed for the complete + selection element in the view selector cell. + + + The image displayed for the CalendarView selection element in + the selector cell. The default value is "". + + + When using this property, the whole image URL is generated using also the + value. + Example:
+ ImagesBaseDir = "Img/"
+ ViewSelectorImage = "selector.gif"
+ complete image URL : "Img/selector.gif"
+
+
+ + + Gets or sets whether the month matrix, when rendered will show days from other (previous or next) + months or will render only blank cells. + + + + Gets or sets whether the fish eye functionality is enabled. + + + Gets or sets the zooming factor of a cell which is handled by the fish eye functionality. + + + + Gets or sets the predefined pairs of rows and columns, so that the product of + the two values is exactly 42, which guarantees valid calendar layout. It is applied + on a single view level to every + + + + + + The Width applied to a Header + + + + + The Height applied to a Header + + + + Gets or sets whether a single CalendarView object will display a selector. + + + + Gets or sets the the count of rows to be displayed by a multi month CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a multi month CalendarView. + + + + Gets or sets whether a single CalendarView object will display a title row. + + + Gets or sets the format string used to format the text inside the header row. + + + Gets or sets whether a CalendarView object will display a header row. + + + Gets or sets whether a CalendarView object will display a header column. + + + + Gets or sets whether row headers ( if displayed by a MonthView object) + will act as row selectors. + + + + + Gets or sets whether column headers ( if displayed by a MonthView object) + will act as column selectors. + + + + + Gets or sets whether a selector for the entire CalendarView ( + MonthView ) will appear on the calendar. + + + + + Gets a value indicating whether the CalendarView has child views. + + + + + Gets the DateTime object that is the first date to be rendered by CalendarView. + While ViewStartDate is the start date that is handled by a particular CalendarView instance, + the ViewRenderStartDate might belong to a different (previous) CalendarView object. + + + + + Gets the DateTime object that is the last date to be rendered by CalendarView. + While ViewEndDate is the start date that is handled by a particular CalendarView instance, + the ViewRenderEndDate might belong to a different (next) CalendarView object. + + + + + Gets or sets a DateTime value specifying the starting date for the period handled by a CalendarView instance. + + + + + Gets or sets a DateTime value specifying the ending date for the period handled by a CalendarView instance. + + + + + Gets or sets the size and location of the tree node in pixels, relative to the parent layout. + + + + + Gets or sets the the count of rows to be displayed by a CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a CalendarView. + + + + + Gets the previous available view. Used for traversal of the calendar. + + + + + Gets the next available view. Used for traversal of the calendar. + + + + + Gets the default System.Globalization.Calendar instance as + specified by the default culture. + + + A calendar divides time into measures, such as weeks, months, and years. The + number, length, and start of the divisions vary in each calendar. + Any moment in time can be represented as a set of numeric values using a + particular calendar. For example, the last vernal equinox occurred at (0.0, 0, 46, + 8, 20, 3, 1999) in the Gregorian calendar. An implementation of Calendar can + map any DateTime value to a similar set of numeric values, and + DateTime can map such sets of numeric values to a textual representation + using information from Calendar and DateTimeFormatInfo. The + textual representation can be culture-sensitive (for example, "8:46 AM March 20th + 1999 AD" for the en-US culture) or culture-insensitive (for example, + "1999-03-20T08:46:00" in ISO 8601 format). + A Calendar implementation can define one or more eras. The + Calendar class identifies the eras as enumerated integers where the current + era (CurrentEra) has the value 0. + In order to make up for the difference between the calendar year and the + actual time that the earth rotates around the sun or the actual time that the moon + rotates around the earth, a leap year has a different number of days than a + standard calendar year. Each Calendar implementation defines leap years + differently. + For consistency, the first unit in each interval (for example, the first + month) is assigned the value 1. + The System.Globalization namespace includes the following + Calendar implementations: GregorianCalendar, + HebrewCalendar, HijriCalendar, + JapaneseCalendar, JulianCalendar, + KoreanCalendar, TaiwanCalendar, and + ThaiBuddhistCalendar. + + + + + Gets or sets the vertical spacing between the calendar cells + + + + + Gets or sets the horizontal spacing between the calendar cells + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Updates correctly the visual appearance of RadCalendar. Updates the parential + dependencies (parent and Calendar properties) also. + + the CalendarView that will be updated + + + + Finds the calendar views with specified key, optionally searching child views. + + The name of the calendar view to search for. + true to search child views; otherwise, false. + An array of CalendarView objects whose Name property matches the specified key. + + + + Returns the index of the specified calendar view in the collection. + + The CalendarView to locate in the collection. + The zero-based index of the item found in the calendar view collection; otherwise, -1. + + + + Adds an collection of previously created CalendarView objects to the collection. + + An array of CalendarView objects representing the views to add to the collection. + + + + Adds a previously created CalendarView object to the end of the CalendarViewCollection. + + The CalendarView object to add to the collection. + The zero-based index value of the CalendarView object added to the CalendarViewCollection. + + + + Returns an enumerator that can be used to iterate through the CalendarView collection. + + An IEnumerator that represents the CalendarView collection. + + + + Inserts an existing CalendarView object into the CalendarViewCollection at the specified location. + + The indexed location within the collection to insert the CalendarView object. + The CalendarView object to insert into the collection. + + + + Removes the specified CalendarView object from the CalendarViewCollection. + + The CalendarView object to remove. + + + + Returns an enumerator that can be used to iterate through the CalendarView collection. + + An IEnumerator that represents the CalendarView collection. + + + + Removes all CalendarView objects from the collection. + + + + + Copies the elements of the CalendarViewCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from CalendarViewCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a previously created CalendarView object to the end of the CalendarViewCollection. + + The CalendarView object to add to the collection. + The zero-based index value of the CalendarView object added to the CalendarViewCollection. + + + + Removes all CalendarView objects from the collection. + + + + + Determines whether the specified CalendarView object is a member of the collection. + + The CalendarView to locate in the collection. + true if the CalendarView is a member of the collection; otherwise, false. + + + + Returns the index of the specified calendar view in the collection. + + The CalendarView to locate in the collection. + The zero-based index of the item found in the calendar view collection; otherwise, -1. + + + + Inserts an existing CalendarView object into the CalendarViewCollection at the specified location. + + The indexed location within the collection to insert the CalendarView object. + The CalendarView object to insert into the collection. + + + + Removes the specified CalendarView object from the CalendarViewCollection. + + The CalendarView object to remove. + + + + Removes the element at the specified index of the CalendarViewCollection. + + The zero-based index of the element to remove. + + + + Gets the total number of CalendarView objects in the collection. + + + + + Gets or sets the CalendarView at the specified indexed location in the collection. + + The indexed location of the CalendarView in the collection. + The CalendarView at the specified indexed location in the collection. + + + + Gets or sets by name the CalendarView instance in the collection. + + The name of the CalendarView in the collection. + The CalendarView with a specified name in the collection. + + + + Gets a value indicating whether access to the CalendarViewCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the CalendarViewCollection. + + + + + Gets a value indicating whether the CalendarViewCollection has a fixed size. + + + + + Gets a value indicating whether the CalendarViewCollection is read-only. + + + + + Gets or sets the CalendarView at the specified indexed location in the collection. + + The indexed location of the CalendarView in the collection. + The CalendarView at the specified indexed location in the collection. + + + + Specifies the display formats for the days of the week used as selectors by + RadCalendar.You can specify whether the days of the week are displayed as + the full name, short (abbreviated) name, first letter of the day, or first two letters of the day. + + + + + The days of the week displayed in full format. For example, Tuesday. + + + + + The days of the week displayed in abbreviated format. For example, Tues. + + + + + The days of the week displayed with just the first letter. For example, T. + + + + + The days of the week displayed with just the first two letters. For example, Tu. + + + + + The shortest unique abbreviated day names associated with the current DateTimeFormatInfo object. + + + + + Indicates the first day of the week to use when calling date-related functions. + + + + + Sunday + + + + + Monday + + + + + Tuesday + + + + + Wednesday + + + + + Thursday + + + + + Friday + + + + + Saturday + + + + + Handled by the current System.Globalization.Calendar object. + + + + + Summary description for MonthLayout. + Layout_7columns_x_6rows - horizontal layout + Layout_14columns_x_3rows - horizontal layout + Layout_21columns_x_2rows - horizontal layout + Layout_7rows_x_6columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + Layout_14rows_x_3columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + Layout_21rows_x_2columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + + + + Allows the calendar to display the days in a 7 by 6 matrix. + + 1 + + + + Alows the calendar to display the days in a 14 by 3 matrix. + + 2 + + + + Allows the calendar to display the days in a 21 by 2 matrix. + + 4 + + + + Allows the calendar to display the days in a 7 by 6 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 8 + + + + Allows the calendar to display the days in a 14 by 3 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 16 + + + + Allows the calendar to display the days in a 21 by 2 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns. + + 32 + + + + Summary description for RecurringEvents. + DayInMonth - Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day. + DayAndMonth - The month and the day part of the date is taken into account. That gives the ability to serve events repeated in a specific month on the same day. + Today - gives the ability to control the visual appearace of today's date. + None - Default value, means that the day in question is a single point event, no recurrences. + + + + + Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day. + + 1 + + + + The month and the day part of the date are taken into account. That gives the ability to serve events repeated in a specific month on the same day. + + 2 + + + + The week day is taken into account. That gives the ability to serve events repeated in a specific day of the week. + + 4 + + + + The week day and the month are taken into account. That gives the ability to serve events repeated in a specific week day in a specific month. + + 8 + + + + Gives the ability to control the visual appearace of today's date. + + 16 + + + + Default value, means that the day in question is a single point event, no recurrence. + + 32 + + + + Summary description for CalendarView. + + + + + Gets the string representation for a particular day in the week. + + Specifies the day of the week. + the string representation for the specified day. + + + + Retrieves the ToolTip text associated with a particular RadCalendarDay object. + + RadCalendarDay object + The retrieved ToolTip text associated with a particular RadCalendarDay object + + + + Gets the RadCalendarDay object associated with a particular DateTime object if any. + + DateTime object to be tested. + The retrieved RadCalendarDay object. + + + + Gets the month name. + + + + + Returns the number of months displayed by a particular MonthView (in this case 1). + + + + + Summary description for CalendarView. + + + + + Calculates the correct position of the CalendarView + + + + + Returns the index of the specified DateTime object in the collection. + + The DateTime object to locate in the collection. + The zero-based index of the item found in the DateTimeCollection; otherwise, -1. + + + + Adds a previously created DateTime object to the end of the DateTimeCollection. + + The DateTime object to add to the collection. + The zero-based index value of the DateTime object added to the DateTimeCollection. + + + + Returns an enumerator that can be used to iterate through the DateTime collection. + + An IEnumerator that represents the DateTime collection. + + + + Inserts an existing DateTime object into the DateTimeCollection at the specified location. + + The indexed location within the collection to insert the DateTime object. + The DateTime object to insert into the collection. + + + + CanAdd method verify whether the date can be add to the collection. + + The DateTime object to insert into the collection. + + + + Removes the specified DateTime object from the DateTimeCollection. + + The DateTime object to remove. + + + + Removes all DateTime objects from the collection. + + + + + Removes a range of DateTime elements from the DateTimeCollection. + + The zero-based starting index of the range of elements to remove. + The number of elements to remove. + + + + Adds an array of previously created DateTime objects to the collection. + + An array of DateTime objects representing the dates to add to the collection. + + + + Determines whether the specified DateTime object is a member of the collection. + + The DateTime to locate in the collection. + true if the DateTime is a member of the collection; otherwise, false. + + + + Copies the elements of the DateTime collection to a new DateTime array. + + A DateTime array + + + + Returns an enumerator that can be used to iterate through the DateTime collection. + + An IEnumerator that represents the DateTime collection. + + + + Copies the elements of the DateTimeCollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from DateTimeCollection. + The Array must have zero-based indexing. + The zero-based index in array at which copying begins. + + + + Adds a previously created DateTime object to the end of the DateTimeCollection. + + The DateTime object to add to the collection. + The zero-based index value of the DateTime object added to the DateTimeCollection. + + + + Removes all DateTime objects from the collection. + + + + + Determines whether the specified DateTime object is a member of the collection. + + The DateTime to locate in the collection. + true if the DateTime is a member of the collection; otherwise, false. + + + + Returns the index of the specified DateTime object in the collection. + + The DateTime object to locate in the collection. + The zero-based index of the item found in the DateTimeCollection + + + + Inserts an existing DateTime object into the DateTimeCollection at the specified location. + + The indexed location within the collection to insert the DateTime object. + The DateTime object to insert into the collection. + + + + Removes the specified DateTime object from the DateTimeCollection. + + The DateTime object to remove. + + + + Removes the element at the specified index of the DateTimeCollection. + + The zero-based index of the element to remove. + + + + Creates a new DateTimeCollection object that is a copy of the current instance. + + A new DateTimeCollection object that is a copy of this instance. + + + + Creates a new object that is a copy of the current instance. + + A new object that is a copy of this instance. + + + + Gets the total number of DateTime objects in the collection. + + + + + Gets or sets the DateTime at the specified indexed location in the collection. + + The indexed location of the DateTime in the collection. + The DateTime at the specified indexed location in the collection. + + + + Gets a value indicating whether access to the DateTimeCollection is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the DateTimeCollection. + + + + + Gets a value indicating whether the DateTimeCollection has a fixed size. + + + + + Gets a value indicating whether the DateTimeCollection is read-only. + + + + + Gets or sets the DateTime at the specified indexed location in the collection. + + The indexed location of the DateTime in the collection. + The DateTime at the specified indexed location in the collection. + + + + The RadCalendar main class. + + + + + Raises the SelectionChanging event. + + A DateTimeCollection collection used by SelectionEventArgs. + A List with Dates which will be selected + SelectionEventArgs instance. + + + + Raises the SelectionChanged event. + + + + + Raises the ElementRender event of the RadCalendar control and allows you to provide a custom + handler for the ElementRender event. + + A LightVisualElement object that contains information about the cell to render. + A RadCalendarDay that contains information about the day to render. + A CalendarView that contains the day to render. + + + + Raises the ViewChanging event. + + A CalendarView collection used by ViewChangingEventArgs. + ViewChangingEventArgs instance. + + + + Raises the ViewChanged event. + + + + + Remove focused date and change the current view to today + + Indicates that all selected dates will be cleared as well. + + + + Removes the time component of a DateTime object, thus leaving only the date part. + + the DateTime object to be processed. + the DateTime object containing only the date part of the original DateTime object. + + + + Ensures that a valid CalendarView object is instantiated and used by RadCalendar as default view. + + The CalendarView object to be used as default view. + + + + Explicitely invalidates RadCalendar layout. Can be used when batch updates to calendar properties are made + outside of the control that require control invalidation. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the row in the multi-view table where the focused date is positioned. + + + + + The column in the multi-view table where the focused date is positioned. + + + + + Gets the instance of RadCalendarElement wrapped by this control. RadCalendarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadCalendar. + + + + + Specifies the navigation mode that will be used when user click on header element.Zoom navigation mode is not supporting in MultipleView of RadCalendar + + + + + Occurs when the view is about to be changed by the navigation elements. + + + + + Occurs when the view is changed by the navigation elements. + + + + + SlectionChanged event is fired when a new date is added or removed from + the SelectedDates collection. + + + + + SlectionChanged event is fired when a new date is added or removed from the + SelectedDates collection. + + + + + ElementRender event is fired after the generation of every calendar cell + object and just before it gets rendered. It is the last place where + changes to the already constructed calendar cells can be made. + + + + + ViewChanging event is fired when a navigation to a different date range is required. + + + + + ViewChanged event is fired when a navigation to a different date + range occurred. Generally this is done by using the normal navigation buttons. + + + + + Specifies the display formats for the days of the week used as selectors by RadCalendar. + + + Use the DayNameFormat property to specify the name format for the days + of the week. This property is set with one of the DayNameFormat + enumeration values. You can specify whether the days of the week are displayed as + the full name, short (abbreviated) name, first letter of the day, or first two + letters of the day. + The DayNameFormat enumeration represents the display formats for the + days of the week used as selectors by RadCalendar. + + + Member name + Description + + + FirstLetter + The days of the week displayed with just the first letter. For + example, T. + + + FirstTwoLetters + The days of the week displayed with just the first two + letters. For example, Tu. + + + Full + The days of the week displayed in full format. For example, + Tuesday. + + + Short + The days of the week displayed in abbreviated format. For + example, Tues. + + + Shortest + The shortest unique abbreviated day names associated with the current DateTimeFormatInfo + object. + + + + + + + Gets or sets a DateTimeFormatInfo instance that defines the + culturally appropriate format of displaying dates and times as specified by the default + culture. + + + A DateTimeFormatInfo can be created only for the invariant + culture or for specific cultures, not for neutral cultures. + The cultures are generally grouped into three sets: the invariant culture, + the neutral cultures, and the specific cultures. + The invariant culture is culture-insensitive. You can specify the invariant + culture by name using an empty string ("") or by its culture identifier 0x007F. + InvariantCulture retrieves an instance of the invariant culture. + It is associated with the English language but not with any country/region. It can + be used in almost any method in the Globalization namespace that requires a + culture. If a security decision depends on a string comparison or a case-change + operation, use the InvariantCulture to ensure that the behavior will be + consistent regardless of the culture settings of the system. However, the invariant + culture must be used only by processes that require culture-independent results, + such as system services; otherwise, it produces results that might be + linguistically incorrect or culturally inappropriate. + A neutral culture is a culture that is associated with a language but not + with a country/region. A specific culture is a culture that is associated with a + language and a country/region. For example, "fr" is a neutral culture and "fr-FR" + is a specific culture. Note that "zh-CHS" (Simplified Chinese) and "zh-CHT" + (Traditional Chinese) are neutral cultures. + The user might choose to override some of the values associated with the + current culture of Windows through Regional and Language Options (or Regional + Options or Regional Settings) in Control Panel. For example, the user might choose + to display the date in a different format or to use a currency other than the + default for the culture. + If UseUserOverride is true and the specified culture + matches the current culture of Windows, the CultureInfo uses those + overrides, including user settings for the properties of the + DateTimeFormatInfo instance returned by the DateTimeFormat property, + the properties of the NumberFormatInfo instance returned by the + NumberFormat property, and the properties of the + CompareInfo instance returned by the CompareInfo + property. If the user settings are incompatible with the culture associated with + the CultureInfo (for example, if the selected calendar is not one of the + OptionalCalendars ), the results of the methods and the values of + the properties are undefined.
+
+ Note: In this version of RadCalendar the + NumberFormatInfo instance returned by the + NumberFormat property is not taken into account.
+
+
+ + + Gets or sets the CultureInfo supported by this RadCalendar object. + Describes the names of the culture, the writing system, and + the calendar used, as well as access to culture-specific objects that provide + methods for common operations, such as formatting dates and sorting strings. + + + The culture names follow the RFC 1766 standard in the format + "<languagecode2>-<country/regioncode2>", where <languagecode2> is + a lowercase two-letter code derived from ISO 639-1 and <country/regioncode2> + is an uppercase two-letter code derived from ISO 3166. For example, U.S. English is + "en-US". In cases where a two-letter language code is not available, the + three-letter code derived from ISO 639-2 is used; for example, the three-letter + code "div" is used for cultures that use the Dhivehi language. Some culture names + have suffixes that specify the script; for example, "-Cyrl" specifies the Cyrillic + script, "-Latn" specifies the Latin script. + The following predefined CultureInfo names and identifiers are + accepted and used by this class and other classes in the System.Globalization + namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Culture NameCulture IdentifierLanguage-Country/Region
"" (empty string)0x007Finvariant culture
af0x0036Afrikaans
af-ZA0x0436Afrikaans - South Africa
sq0x001CAlbanian
sq-AL0x041CAlbanian - Albania
ar0x0001Arabic
ar-DZ0x1401Arabic - Algeria
ar-BH0x3C01Arabic - Bahrain
ar-EG0x0C01Arabic - Egypt
ar-IQ0x0801Arabic - Iraq
ar-JO0x2C01Arabic - Jordan
ar-KW0x3401Arabic - Kuwait
ar-LB0x3001Arabic - Lebanon
ar-LY0x1001Arabic - Libya
ar-MA0x1801Arabic - Morocco
ar-OM0x2001Arabic - Oman
ar-QA0x4001Arabic - Qatar
ar-SA0x0401Arabic - Saudi Arabia
ar-SY0x2801Arabic - Syria
ar-TN0x1C01Arabic - Tunisia
ar-AE0x3801Arabic - United Arab Emirates
ar-YE0x2401Arabic - Yemen
hy0x002BArmenian
hy-AM0x042BArmenian - Armenia
az0x002CAzeri
az-AZ-Cyrl0x082CAzeri (Cyrillic) - Azerbaijan
az-AZ-Latn0x042CAzeri (Latin) - Azerbaijan
eu0x002DBasque
eu-ES0x042DBasque - Basque
be0x0023Belarusian
be-BY0x0423Belarusian - Belarus
bg0x0002Bulgarian
bg-BG0x0402Bulgarian - Bulgaria
ca0x0003Catalan
ca-ES0x0403Catalan - Catalan
zh-HK0x0C04Chinese - Hong Kong SAR
zh-MO0x1404Chinese - Macau SAR
zh-CN0x0804Chinese - China
zh-CHS0x0004Chinese (Simplified)
zh-SG0x1004Chinese - Singapore
zh-TW0x0404Chinese - Taiwan
zh-CHT0x7C04Chinese (Traditional)
hr0x001ACroatian
hr-HR0x041ACroatian - Croatia
cs0x0005Czech
cs-CZ0x0405Czech - Czech Republic
da0x0006Danish
da-DK0x0406Danish - Denmark
div0x0065Dhivehi
div-MV0x0465Dhivehi - Maldives
nl0x0013Dutch
nl-BE0x0813Dutch - Belgium
nl-NL0x0413Dutch - The Netherlands
en0x0009English
en-AU0x0C09English - Australia
en-BZ0x2809English - Belize
en-CA0x1009English - Canada
en-CB0x2409English - Caribbean
en-IE0x1809English - Ireland
en-JM0x2009English - Jamaica
en-NZ0x1409English - New Zealand
en-PH0x3409English - Philippines
en-ZA0x1C09English - South Africa
en-TT0x2C09English - Trinidad and Tobago
en-GB0x0809English - United Kingdom
en-US0x0409English - United States
en-ZW0x3009English - Zimbabwe
et0x0025Estonian
et-EE0x0425Estonian - Estonia
fo0x0038Faroese
fo-FO0x0438Faroese - Faroe Islands
fa0x0029Farsi
fa-IR0x0429Farsi - Iran
fi0x000BFinnish
fi-FI0x040BFinnish - Finland
fr0x000CFrench
fr-BE0x080CFrench - Belgium
fr-CA0x0C0CFrench - Canada
fr-FR0x040CFrench - France
fr-LU0x140CFrench - Luxembourg
fr-MC0x180CFrench - Monaco
fr-CH0x100CFrench - Switzerland
gl0x0056Galician
gl-ES0x0456Galician - Galician
ka0x0037Georgian
ka-GE0x0437Georgian - Georgia
de0x0007German
de-AT0x0C07German - Austria
de-DE0x0407German - Germany
de-LI0x1407German - Liechtenstein
de-LU0x1007German - Luxembourg
de-CH0x0807German - Switzerland
el0x0008Greek
el-GR0x0408Greek - Greece
gu0x0047Gujarati
gu-IN0x0447Gujarati - India
he0x000DHebrew
he-IL0x040DHebrew - Israel
hi0x0039Hindi
hi-IN0x0439Hindi - India
hu0x000EHungarian
hu-HU0x040EHungarian - Hungary
is0x000FIcelandic
is-IS0x040FIcelandic - Iceland
id0x0021Indonesian
id-ID0x0421Indonesian - Indonesia
it0x0010Italian
it-IT0x0410Italian - Italy
it-CH0x0810Italian - Switzerland
ja0x0011Japanese
ja-JP0x0411Japanese - Japan
kn0x004BKannada
kn-IN0x044BKannada - India
kk0x003FKazakh
kk-KZ0x043FKazakh - Kazakhstan
kok0x0057Konkani
kok-IN0x0457Konkani - India
ko0x0012Korean
ko-KR0x0412Korean - Korea
ky0x0040Kyrgyz
ky-KZ0x0440Kyrgyz - Kazakhstan
lv0x0026Latvian
lv-LV0x0426Latvian - Latvia
lt0x0027Lithuanian
lt-LT0x0427Lithuanian - Lithuania
mk0x002FMacedonian
mk-MK0x042FMacedonian - FYROM
ms0x003EMalay
ms-BN0x083EMalay - Brunei
ms-MY0x043EMalay - Malaysia
mr0x004EMarathi
mr-IN0x044EMarathi - India
mn0x0050Mongolian
mn-MN0x0450Mongolian - Mongolia
no0x0014Norwegian
nb-NO0x0414Norwegian (Bokmål) - Norway
nn-NO0x0814Norwegian (Nynorsk) - Norway
pl0x0015Polish
pl-PL0x0415Polish - Poland
pt0x0016Portuguese
pt-BR0x0416Portuguese - Brazil
pt-PT0x0816Portuguese - Portugal
pa0x0046Punjabi
pa-IN0x0446Punjabi - India
ro0x0018Romanian
ro-RO0x0418Romanian - Romania
ru0x0019Russian
ru-RU0x0419Russian - Russia
sa0x004FSanskrit
sa-IN0x044FSanskrit - India
sr-SP-Cyrl0x0C1ASerbian (Cyrillic) - Serbia
sr-SP-Latn0x081ASerbian (Latin) - Serbia
sk0x001BSlovak
sk-SK0x041BSlovak - Slovakia
sl0x0024Slovenian
sl-SI0x0424Slovenian - Slovenia
es0x000ASpanish
es-AR0x2C0ASpanish - Argentina
es-BO0x400ASpanish - Bolivia
es-CL0x340ASpanish - Chile
es-CO0x240ASpanish - Colombia
es-CR0x140ASpanish - Costa Rica
es-DO0x1C0ASpanish - Dominican Republic
es-EC0x300ASpanish - Ecuador
es-SV0x440ASpanish - El Salvador
es-GT0x100ASpanish - Guatemala
es-HN0x480ASpanish - Honduras
es-MX0x080ASpanish - Mexico
es-NI0x4C0ASpanish - Nicaragua
es-PA0x180ASpanish - Panama
es-PY0x3C0ASpanish - Paraguay
es-PE0x280ASpanish - Peru
es-PR0x500ASpanish - Puerto Rico
es-ES0x0C0ASpanish - Spain
es-UY0x380ASpanish - Uruguay
es-VE0x200ASpanish - Venezuela
sw0x0041Swahili
sw-KE0x0441Swahili - Kenya
sv0x001DSwedish
sv-FI0x081DSwedish - Finland
sv-SE0x041DSwedish - Sweden
syr0x005ASyriac
syr-SY0x045ASyriac - Syria
ta0x0049Tamil
ta-IN0x0449Tamil - India
tt0x0044Tatar
tt-RU0x0444Tatar - Russia
te0x004ATelugu
te-IN0x044ATelugu - India
th0x001EThai
th-TH0x041EThai - Thailand
tr0x001FTurkish
tr-TR0x041FTurkish - Turkey
uk0x0022Ukrainian
uk-UA0x0422Ukrainian - Ukraine
ur0x0020Urdu
ur-PK0x0420Urdu - Pakistan
uz0x0043Uzbek
uz-UZ-Cyrl0x0843Uzbek (Cyrillic) - Uzbekistan
uz-UZ-Latn0x0443Uzbek (Latin) - Uzbekistan
vi0x002AVietnamese
vi-VN0x042AVietnamese - Vietnam
+
+
+ + + Gets the default System.Globalization.Calendar instance as + specified by the default culture. + + + A calendar divides time into measures, such as weeks, months, and years. The + number, length, and start of the divisions vary in each calendar. + Any moment in time can be represented as a set of numeric values using a + particular calendar. For example, the last vernal equinox occurred at (0.0, 0, 46, + 8, 20, 3, 1999) in the Gregorian calendar. An implementation of Calendar can + map any DateTime value to a similar set of numeric values, and + DateTime can map such sets of numeric values to a textual representation + using information from Calendar and DateTimeFormatInfo. The + textual representation can be culture-sensitive (for example, "8:46 AM March 20th + 1999 AD" for the en-US culture) or culture-insensitive (for example, + "1999-03-20T08:46:00" in ISO 8601 format). + A Calendar implementation can define one or more eras. The + Calendar class identifies the eras as enumerated integers where the current + era (CurrentEra) has the value 0. + In order to make up for the difference between the calendar year and the + actual time that the earth rotates around the sun or the actual time that the moon + rotates around the earth, a leap year has a different number of days than a + standard calendar year. Each Calendar implementation defines leap years + differently. + For consistency, the first unit in each interval (for example, the first + month) is assigned the value 1. + The System.Globalization namespace includes the following + Calendar implementations: GregorianCalendar, + HebrewCalendar, HijriCalendar, + JapaneseCalendar, JulianCalendar, + KoreanCalendar, TaiwanCalendar, and + ThaiBuddhistCalendar. + + + + + Gets or sets the format string that will be applied to the dates presented in the + calendar area. + + + For additional details see Date Format Pattern + topic + + + + + Specifies the day to display as the first day of the week on the + RadCalendar control. + + + The FirstDayOfWeek enumeration represents the values that specify + which day to display as the first day of the week on the RadCalendar control. + + + Member name + Description + + + Default + The first day of the week is specified by the system + settings. + + + Friday + The first day of the week is Friday. + + + Monday + The first day of the week is Monday. + + + Saturday + The first day of the week is Saturday. + + + Sunday + The first day of the week is Sunday. + + + Thursday + The first day of the week is Thursday. + + + Tuesday + The first day of the week is Tuesday. + + + Wednesday + The first day of the week is Wednesday. + + + + + + Gets or sets the format string that is applied to the calendar title. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'MMMM yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + Gets or sets the format string that is applied to the days cells tooltip. + + The property should contain either a format specifier character or a + custom format pattern. For more information, see the summary page for + System.Globalization.DateTimeFormatInfo. + By default this property uses formatting string of + 'dddd, MMMM dd, yyyy'. Valid formats are all supported by the .NET + Framework. + Example: +
    +
  • "d" is the standard short date pattern.
  • +
  • "%d" returns the day of the month; "%d" is a custom pattern.
  • +
  • "d " returns the day of the month followed by a white-space character; "d " + is a custom pattern.
  • +
+
+
+ + + Gets or sets whether tool tips are displayed for this speciffic control. + + + + + Gets or sets the separator string that will be put between start and end months in a multi view title. + + + + + Gets or sets the the count of rows to be displayed by a single CalendarView. + + + If the calendar represents a multi view, this property applies to the child views + inside the multi view. + + + + + Gets or sets the the count of columns to be displayed by a single CalendarView. + + + If the calendar represents a multi view, this property applies to the child views + inside the multi view. + + + + + Gets the today button of the footer element + + + + + Gets the clear button of the footer element + + + + + The Width applied to a Header + + + + + The Height applied to a Header + + + + + Gets or sets the horizontal alignment of the date cells content inside the + calendar area. + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Gets or sets the the count of rows to be displayed by a multi month CalendarView. + + + + + Gets or sets the the count of columns to be displayed by a multi month CalendarView. + + + + + Gets or sets the maximum date valid for selection by + Telerik RadCalendar. Must be interpreted as the higher bound of the valid + dates range available for selection. Telerik RadCalendar will not allow + navigation or selection past this date. + + + This property has a default value of 12/30/2099 + (Gregorian calendar date). + + + + + Gets or sets the minimal date valid for selection by + Telerik RadCalendar. Must be interpreted as the lower bound of the valid + dates range available for selection. Telerik RadCalendar will not allow + navigation or selection prior to this date. + + + This property has a default value of 1/1/1980 + (Gregorian calendar date). + + + + + Gets or sets a value indicating whether the calendar is in read-only mode. + + + + + Sets or returns the currently selected date. The default value is the value of + System.DateTime.MinValue. + + + Use the SelectedDate property to determine the selected date on the >RadCalendar control. + The SelectedDate property and the SelectedDates collection are closely related. + When the AllowMultipleSelect property is set to false, a mode that allows only a single date selection, + SelectedDate and SelectedDates[0] have the same value and SelectedDates.Count equals 1. + When the AllowMultipleSelect property is set to true, mode that allows multiple date + selections, SelectedDate and SelectedDates[0] have the same value. + The SelectedDate property is set using a System.DateTime object. + When the user selects a date on the RadCalendar control, the SelectionChanged + event is raised. The SelectedDate property is updated to the selected date. + The SelectedDates collection is also updated to contain just this + date. +
+ Note Both the SelectedDate property and the + SelectedDates collection are updated before the SelectionChanged + event is raised. You can override the date selection by using the + OnSelectionChanged event handler to manually set the + SelectedDate property. The SelectionChanged event does not get + raised when this property is programmatically set. +
+
+
+ + + Gets or sets the value that is used by RadCalendar to determine + the viewable area displayed . + + + By default, the FocusedDate property returns the current + system date when in runtime, and in design mode defaults to + System.DateTime.MinValue. When the FocusedDate is + set, from that point, the value returned by the FocusedDate + property is the one the user sets. + + + + + Gets a collection of DateTime objects that represent the + selected dates on the RadCalendar control. + + + A DateTimeCollection that contains a collection of System.DateTime objects representing the selected + dates on the RadCalendar control. The default value is an empty DateTimeCollection. + + + Use the SelectedDates collection to determine the currently selected + dates on the control. + The SelectedDate property and the SelectedDates collection are closely related. When the AllowMultipleSelect + property is set to false, a mode that allows only a single date selection, + SelectedDate and SelectedDates[0] have the same value and + SelectedDates.Count equals 1. When the AllowMultipleSelect + property is set to true, mode that allows multiple date selections, + SelectedDate and SelectedDates[0] have the same value. + The SelectedDates property stores a collection of DateTime objects. + When the user selects a date or date range (for example with the column or + rows selectors) on the RadCalendar control, the SelectionChanged + event is raised. The selected dates are added to the SelectedDates + collection, accumulating with previously selected dates. The range of dates are not + sorted by default. The SelectedDate property is also updated to + contain the first date in the SelectedDates collection. + You can also use the SelectedDates collection to programmatically + select dates on the Calendar control. Use the Add, Remove, Clear, and SelectRange + methods to programmatically manipulate the selected dates in the SelectedDates collection. +
+ Note Both the SelectedDate property and the + SelectedDates collection are updated before the SelectionChanged + event is raised.You can override the dates selection by using the + OnSelectionChanged event handler to manually set the + SelectedDates collection. The SelectionChanged event is not + raised when this collection is programmatically set. +
+
+
+ + + Gets or sets whether navigating RadCalendar is allowed. + + + + + Gets or sets whether the fast navigation in RadCalendar is allowed. + + + + + Gets or sets the text displayed for the previous month navigation control. Will be + applied only if there is no image set (see + NavigationPrevImage). + + + Use the NavigationPrevText property to provide custom text for the + previous month navigation element in the title section of + RadCalendar. + + + The text displayed for the CalendarView previous month + navigation cell. The default value is "&lt;". + + + + + Gets or sets the text displayed for the next month navigation control. Will be + applied if there is no image set (see + NavigationNextImage). + + + The text displayed for the CalendarView next month navigation + cell. The default value is "&gt;". + + + Use the NavigationNextText property to provide custom text for the + next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed for the fast navigation previous month control. + + + The text displayed for the CalendarView selection element in the + fast navigation previous month cell. The default value is + "&lt;&lt;". + + + Use the FastNavigationPrevText property to provide custom text for + the next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed for the fast navigation next month control. + + + The text displayed for the CalendarView selection element in the + fast navigation next month cell. The default value is "&gt;&gt;". + + + Use the FastNavigationNextText property to provide custom text for + the next month navigation element in the title section of RadCalendar. + + + + + Gets or sets the image that is displayed for the previous month navigation control. + + + + + Gets or sets the image that is displayed for the next month navigation control. + + + + + Gets or sets the image that is displayed for the previous month fast navigation control. + + + + + Gets or sets the image that is displayed for the next month fast navigation control. + + + + + Gets or sets the text displayed as a tooltip for the previous month navigation control. + + + Use the NavigationPrevToolTip property to provide custom text for the + tooltip of the previous month navigation element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView previous month + navigation cell. The default value is "&lt;". + + + + + Gets or sets the text displayed as a tooltip for the next month navigation control. + + + The tooltip text displayed for the CalendarView next month + navigation cell. The default value is "&gt;". + + + Use the NavigationNextToolTip property to provide custom text for the + tooltip of the next month navigation element in the title section of + RadCalendar. + + + + + Gets or sets the text displayed as a tooltip for the fast navigation previous + month control. + + + Use the FastNavigationPrevToolTip property to provide custom text for + the tooltip of the fast navigation previous month element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView fast navigation + previous month cell. The default value is "&lt;&lt;". + + + + + Gets or sets the text displayed as a tooltip for the fast navigation previous + month control. + + + Use the FastNavigationPrevToolTip property to provide custom text for + the tooltip of the fast navigation previous month element in the title section of + RadCalendar. + + + The tooltip text displayed for the CalendarView fast navigation + previous month cell. The default value is "&lt;&lt;". + + + + + Gets or sets the horizontal alignment of the view title. + The ContentAlignment enumeration is defined in + System.Windows.Forms.VisualStyles + + + + + + Member name + + + Description + + + + + Center + + The contents of a container are centered. + + + Left + The contents of a container are left justified. + + + Right + The contents of a container are right justified. + + + + + + + Allows RadCalendar to render multiple months in a single view. + + + + + Allows the selection of dates. If not set, selection is forbidden, and if any dates are all ready selected, they are cleared. + + + + + Allows the selection of multiple dates. If not set, only a single date is selected, and if any dates + are all ready selected, they are cleared. + + + + Gets or sets whether the navigation buttons should be visible. + + + Gets or sets whether the fast navigation buttons should be visible. + + + Gets or sets whether RadCalendar will display a footer row. + + + Gets or sets whether RadCalendar will display a header/navigation row. + + + Gets or sets whether the column headers will appear on the calendar. + + + Gets or sets whether the row headers will appear on the calendar. + + + Gets or sets whether a single CalendarView object will display a header . + + + Gets or sets whether a single CalendarView object will display a selector. + + + + Gets or sets whether the view selector will be allowed to select all dates presented by the CalendarView. + + + + Gets or sets the zooming factor of a cell which is handled by the zooming (fish eye) functionality. + + + Gets or sets whether the zooming functionality is enabled. + + + + Gets or sets whether row headers ( if displayed by a MonthView object) + will act as row selectors. + + + + + Gets or sets whether column headers ( if displayed by a MonthView object) + will act as column selectors. + + + + + Gets or sets whether the month matrix, when rendered will show days from other (previous or next) + months or will render only blank cells. + + + + + Gets or sets the predefined pairs of rows and columns, so that the product of + the two values is exactly 42, which guarantees valid calendar layout. It is applied + on a single view level to every MonthView instance in the calendar. + + + The following values are applicable and defined in the MonthLayout + enumeration:
+
+ Layout_7columns_x_6rows - horizontal layout
+
+ Layout_14columns_x_3rows - horizontal layout
+
+ Layout_21columns_x_2rows - horizontal layout
+
+ Layout_7rows_x_6columns - vertical layout, required when AllowColumnHeaderSelectors is true and + Orientation is set to Vertical.
+
+ Layout_14rows_x_3columns - vertical layout, required when AllowColumnHeaderSelectors + is true and Orientation is set to Vertical.
+
+ Layout_21rows_x_2columns - vertical layout, required when AllowColumnHeaderSelectors is true and Orientation + is set to Vertical.
+
+
+ + + RadCalendar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadCalendar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Use the RowHeaderText property to provide custom text for + all row header elements. + + + The text displayed for all CalendarView row header elements. The default value is "". + + + Gets or sets the text displayed for all row header elements. + + + + + The image displayed for all CalendarView row header elements. The default value is "". + + + Gets or sets the image displayed for all row header elements. + + + + + Use the ColumnHeaderText property to provide custom text + for all CalendarView column header elements. + + + The text displayed for all CalendarView column header elements. The default value is "". + + + Gets or sets the text displayed for all column header elements. + + + + + The image displayed for all CalendarView column header elements. The default value is null. + + + Gets or sets the image displayed for all column header elements. + + + + + Gets or sets the text displayed for the view selector. + + + The text displayed for the view selector. The default value is "x". + + + Use the ViewSelectorText property to provide custom text for + the CalendarView selector element. + + + + + Gets or sets the image displayed for the view selector element. + + + The image displayed for the CalendarView selector element. The default value is null. + + + + + Gets or sets the orientation (rendering direction) of the calendar component. + Default value is Horizontal. + + + + + Member + Description + + + Horizontal + Renders the calendar data row after row. + + + Vertical + Renders the calendar data column after + column. + + + + + + + Gets or sets an integer value representing the number of CalendarView + views that will be scrolled when the user clicks on a fast navigation button. + + + + + A collection of special days in the calendar to which may be applied specific formatting. + + + + + Gets or sets the padding of the calendar cells. + + + + + Gets or sets the vertical spacing between the calendar cells. + + + + + Gets or sets the horizontal spacing between the calendar cells. + + + + + Gets or sets the margin of the calendar cells. + + + + + Exposes the top instance of CalendarView or its derived types. + Every CalendarView class handles the real calculation and + rendering of RadCalendar's calendric information. The + CalendarView has the ChildViews collection which contains all the sub views in case of a multi view + setup. + + + + Indicates the fish eye feature factor of a cell. + + + Gets or sets the zooming factor of a cell. + + + Gets or sets the week end cell. + + + Gets or sets the date which that cell is representing. + + + Gets or sets a cell representing a special day. + + + Gets or sets the today cell. + + + Gets or sets the today cell. + + + Gets or sets the out of range cell. + + + Gets or sets the cell which is from other month. + + + Gets or sets the selected cell. + + + + enable or disable animation on mouse click + + + + Specifies the type of a selector sell. + + + + Rendered as the first cell in a row. When clicked if UseRowHeadersAsSelectors is true, + it will select the entire row. + + + + + Rendered as the first cell in a column. When clicked if UseColumnHeadersAsSelectors is true, + it will select the entire column. + + + + + Rendered in the top left corner of the calendar view. When clicked if EnableViewSelector is true, + it will select the entire view. + + + + + Gets or sets the count of the items in the fast navigation drop down + + + + + first button + + + + + Last button + + + + + previuos button + + + + + next button + + + + + today button + + + + + label element + + + + + Gets or sets date time format + + + + + Gets or sets date time format + + + + + Gets or sets a value whether drop down fast navigation is enabled. + + + + Gets or sets whether the fish eye functionality is enabled + + + Gets or sets the zooming factor of a cell which is handled by the fish eye functionality.. + + + Gets or sets the width of header cells. + + + Gets or sets the height of header cells. + + + + first button + + + + + Last button + + + + + previuos button + + + + + next button + + + + + Sets the way opacity is applied to carousel items + + + + + Opacity is not modified + + + + + Selected item is with opacity 1.0. Opacity decreases corresponding to the distance from the selected item. + + + + + Opacity increases relatively to items' ZIndex. The Item with greatest ZIndex has opacity of 1.0 + + + + + CreateNewCarouselItem delegate usined by RadCarousel control + + + + + Arguments of CreateNewCarouselItem event + + + + + Initializes a new instance of the class. + + The new carousel item. + + + + Gets or sets the newly created item that will be added in RadCarousel + + + + + Represents a custom made ellipse path which will be used to specify the path travelled by carousel items when animated + + + + + Gets or sets the angle where itms new items will first appear in the carousel view. + + + + + RadCarouselContentItem with CarouselElement and Reflection primitive + + + + + create element with HostedItem + + + + + + Custom implementation for RadCarouselItem + + + + + + + Represent the HostedItem + + + + + Gets the owner RadCarouselElement. + + The owner. + + + Represents a RadCarouselReflectionItem primitive that is drawn on the screen. + + + + Default cstor for RadCarouselReflectionPrimitive + + which element will be draw + + + + repaint Reflection Image + + + + + ElementInvalidated + + + + + + + Represent ItemReflectionPercentage + + + + + Represents a color editor box. The RadColorBox class is a simple wrapper for the + RadColorBoxElement class. The RadColorBox acts + to transfer events to and from its corresponding + RadColorBoxElement. The + RadColorBoxElement which is essentially the + RadColorBox control may be nested in other telerik controls. + + + + Sets input focus to the control. + true if the input focus request was successful; otherwise, false. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the RadColorDialog of this control. + + + + + Gets the RadColorBoxElement of this control. + + + + + Gets or sets the value of the editor. + + + + + Determines if users can input text directly into the text field.. + + + + + Gets or sets a value indicating whether the user can give the focus to this control + using the TAB key. + + true if the user can give the focus to the control using the TAB key;otherwise, false. The default is true. + + + + Fires after the color dialog is closed. + + + + + Fires right before the value is changed. Cancelable event. + + + + + Fires after the editor value is changed. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets the owner of the collection. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Represents data item for the list of strips in the customize dialog of the . + + + + + Represents visual item for the list of strips in the customize dialog of the . + + + + + Represents data item for the list of strip items in the customize dialog of the . + + + + + Represents visual item for the list of strip items in the customize dialog of the . + + + + + Provides customization dialogs for the customization of a . + + + + + Creates an instance of a dialog form. + + + object that contains information about strips. + A refference to the created form. + + + + Creates a default localization provider. + + A new instance of the default localization provider. + + + + Fires when the current dialog provider has changed. + + + + + Fires when a customize dialog is shown + + + + + Fires before a customize dialog is shown + + + + + Gets or sets the current localization provider. + + + + + Represents a simple dialog that provides customization options for the element. + + + + + Creates a customize dialog that provides customization options for the strips in the specified . + + The from which the information for the strips will be taken. + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Sets the strings values depending on the current localization provider. + + + + + Represents a form that holds the items of a that has been undocked and is floating. + + + + + Tries to dock the floating strip in a specified . + + The control into which the strip should be docked. + + + + Tries to dock the floating strip on a specified point of screen. The docking will be completed only if + the control under that point is . + + The location in screen coordinates where the strip should try to dock. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the control that hosts the floating items. + + + + + Gets or sets the parent of the control to which the floating strip belongs. + + + + + Gets the which contains information about the floating strip. + + + + + Gets or sets the which the floating form is hosting. + + + + + Provides localization services for . + + + + + Represents localization strings for . + + + + + Holds information about the strips in a + + + + + Adds information about a specific strip to the + + The object to add info about. + + + + Removes information about a specific strip from the + + The object to remove info about. + + + + Gets a list of elements for which the is storing info. + + + + + Represents a menu item on the context menu opened by right click on the RadCommandBar control. + Has a coresponding element and controls its VisibleInCommandBar property. + + + + + This create the default layout + + + + + + Represent Layout that holds elements over the menu + + + + + Represents an arrow button element. Each telerik control has a + corresponding tree of RadElements; the RadArrowButtonElement can be nested + in other telerik controls. + + + + Gets or sets the + %arrow direction:Telerik.WinControls.Primitives.ArrowPrimitive.ArrowDirection%. + + + Gets the ArrowPrimitive object. + + + + Represents a drop down list in . + + + + + A base class for all of the items contained in . + + + + + Raises the event. + + Event data. + + + + Raises the event. + + Event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + Event data. + + + + Occurs when the orientation is changed + + + + + Occurs before the orientation is changed + + + + + Occurs when the property is changed. + + + + + Show or hide item from the strip overflow menu + + + + + Gets or sets the Orientation of the item. + + + + + Show or hide item from the strip + + + + + Gets or sets that the orientation will be inherit from parent + + + + + Occurs when the element is double-clicked. + + + + + Selects a range of text in the editable portion of the combo box + + The position of the first character in the current text selection within the text box. + The number of characters to select. + + + + Selects all the text in the editable portion of the DropDownList box. + + + + + selects the hosted control + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets the hosted . + + + + + Gets the collection of data-binding objects for this IBindableComponent. + + + + + Gets or sets the BindingContext for the object. + + + + + Gets the items collection of the . + + + + + Gets a reference to the drop down form associated with this RadDropDownList. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets or sets the maximum number of items to be shown in the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value that indicates whether items will be sized according to + their content. If this property is true the user can set the Height property of each + individual RadListDataItem in the Items collection in order to override the automatic + sizing. + + + + + Gets or sets the maximum number of characters the user can type or paste into the text box control. + + + + + + + + Gets or sets a value of the enumeration. + This value determines how the pop-up form can be resized: vertically, horizontally or both. + + + + + Gets or sets a value indicating whether string comparisons are case-sensitive. + + + + + + Specifies the mode for the automatic completion feature used in the DropDownList + and the TextBox controls. + + + + + + Rotate items on double click in the edit box part + + + + + + Gets or sets an object that implements the IFormatProvider interface. This object is used when formatting items. The default object is + CultureInfo.CurrentCulture. + + + + + + Gets or sets a format string that will be used for visual item formatting if FormattingEnabled is set to true. + + + + + + Gets or sets a value that determines whether text formatting is enabled for the visual items. + + + + + + /// + Gets or sets the easing type of the animation. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + + + Gets or sets the height in pixels of the drop-down portion of the RadDropDownList. + + + + + Gets or sets a value specifying the style of the DropDownList + + + + + DefaultItems count in drop-down portion of the RadDropDownList. + + + + + Gets or sets the drop down maximum size. + + + + Represent the DropDownListElement element + + + + + Represent the List element + + + + + Provides a readonly interface to the currently selected items. + + + + + Gets or sets the currently selected value. Setting the SelectedValue to a value that is shared between many items causes the first item to be selected. + This property triggers the selection events. + + + + + Gets or sets the selected logical list item. + Setting this property will cause the selection events to fire. + + + + + Gets or sets the position of the selection. + Setting this property will cause the SelectedIndexChanging and SelectedIndexChanged events to fire. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Gets or sets the object that is responsible for providing data objects for the RadListElement. + + + + + Gets or sets a string which will be used to get a text string for each visual item. This value can not be set to null. Setting + it to null will cause it to contain an empty string. + + + + + Gets or sets the string through which the SelectedValue property will be determined. This property can not be set to null. + Setting it to null will cause it to contain an empty string. + + + + + Enable or disable Mouse Wheel Scrolling. + + + + + Indicating whether the Popup part of the control + are displayed. + + + + + Gets or sets a predicate which filters which items can be visible. + + + + + Gets or sets a filter expression which determines which items will be visible. + + + + + Gets a value indicating whether there is a Filter or FilterExpression set. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets or sets the text that is selected in the editable portion of the DropDownList. + + + + + Gets or sets the number of characters selected in the editable portion of the combo box. + + + + + Gets or sets the starting index of text selected in the combo box. + + + + + Show or hide item from the strip + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Occurs when the popup is about to be opened. + + + + + Occurs when the popup is opened. + + + + + Occurs when the popup is about to be closed. + + + + + Occurs when the popup is closed. + + + + + Occurs when the CommandBarTextBox has focus and the user presses a key + + + + + Occurs when the CommandBarTextBox has focus and the user releases the pressed key up + + + + + Occurs when the CommandBarTextBox has focus and the user presses a key down + + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Represents a button in . + + + + + Represents a drop down button in . + + + + + Gets the arrow part of the button. + + + + + Gets or sets the drop down menu, opened on click. + + + + + Gets menu items collection + + + + + Represents a host for elements in . + + + + + Gets or sets the hosted . + + + + + Gets or sets the hosted . + + + + + Show or hide item from the strip + + + + + Represents a label in . + + + + + Represents a separator for the items in . + + + + + Gets or sets the thickness of the separator item. + + + + + Represents a split button in . + + + + + Raises the event. + + true if the event should be canceled, false otherwise. + + + + Raises the event. + + + + + Occurs when the default item is changed. + + + + + Occurs before the default item is changed. + + + + + Gets or sets the default item of the split button. + + + + + Represetns a text box in . + + + + + Appends the given text + + + + + + Clears the editing control's text + + + + + Clears and undoes the text + + + + + Copies the selected text + + + + + Cuts the selected text + + + + + clears the selection + + + + + Gets a character from a given point + + + + + + + Gets the index of a character at a given point + + + + + + + gets the index of the first char in a given line + + + + + + + gets the first char index at the current line + + + + + + Gets a line number from a char index + + + + + + + Gets the position from a char index + + + + + + + pastes the text in the clipboard + + + + + Pasted a given text + + + + + + scrolls the textbox to the caret position + + + + + Makes a selection in a given range specified by a start position and selection length + + + + + + + selects the whole text + + + + + selects the hosted control + + + + + Show or hide item from the strip + + + + + Gets or sets the hosted . + + + + + Gets or sets the prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the number of characters selected in the editable portion of the textbox. + + + + + Gets or sets the starting index of text selected in the textbox. + + + + + Occurs when the CommandBarTextBox has focus and the user pressees a key + + + + + Occurs when the CommandBarTextBox has focus and the user releases the pressed key up + + + + + Occurs when the CommandBarTextBox has focus and the user pressees a key down + + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Occurs when the element recieves focus. + + + + + Occurs when the element loses focus. + + + + + Represents a toggle button in . + + + + + Raises the StateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the StateChanged event. + + + + + Raises the IsCheckedChanged event. + + + + + Occurs when the IsChecked property is changed. + + + + + Occurs before the toggle state is changed. + + + + + Occurs when the toggle state is changed. + + + + + Occurs when the elements's check state changes. + + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + + Gets or sets the toggle + state. Toggle state enumeration defines the following values: Off, + Indeterminate, and On. + + + + + Gets or sets a value indicating whether the toggle button has three or two + states. + + + + + + Represents a RadCommandBar control - a flexible component for implementation of tool and + button bars featuring docking behavior, toggling buttons, shrinkable toolbars. The RadCommandBar is responsible for managing + RadCommandBarBaseItem items which are positioned on some + of the CommandBarStripElement elements /// + + + Only items that inherit the RadCommandBarBaseItem class + can be placed inside the strip elements. You han use the special CommandBarHostItem + to host any other RadElement. + + + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Propagete ThemeName to child bar's menu + + + + + Apllies the orientation to the control and its child elements. + + The orientation to apply + Indicates whether events should be fired + + + + Gets or sets which RadCommandBar borders are docked to its parent control and determines + how a control is resized with its parent. + + + One of the values. The default + is . + + + The value assigned is not one of the + values. + + 1 + + + + Gets the menu opened upon rightclick on the control. + + + + + Gets or sets the size in pixels when current strip is being Drag and Drop in next or previous row. + + + + + Gets or sets the RadCommandBarElement of the RadCommandBar control. + + + + + Gets or sets the orientation of the commandbar - could be horizontal or vertical. + This property is controlled by the Dock property of the RadCommandBar control. + + + + + RadCommandBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadCommandBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs before the orientation is changed. + + + + + Occurs after the orientation is changed. + + + + + Occurs before a floating form is created. + + + + + Occurs before a floating strip is docked. + + + + + Occurs when a floating strip is created. + + + + + Occurs when a floating strip is docked. + + + + + Gets the rows of the commandbar. + + + + + Represents the RootElement of the RadCommandBar control. + + + + + Raises a bubble event to notify its parents about the beginning of a drag. + + A that contains the + event data. + true if the drag should be canceled, false otherwise. + + + + Raises a bubble event to notify its parents about the end of a drag. + + A that contains the + event data. + + + + Raises a bubble event to notify its parents about the drag. + + A that contains the + event data. + + + + Paints the dots of the grip element. + + The IGraphics object where the element should be painted. + The angle under which the element should be painted. + The factor of scaling the element. + + + + Gets the delta of the drag. + + + + + Gets whether the item is being dragged. + + + + + Gets or sets the orientation of the grip element. + + + + + Gets or sets the that owns the grip element. + + + + + Gets or sets the size of the painted dots. + + + + + Gets or sets the space between dots. + + + + + Gets or sets the shadow offset of the dots. + + + + + Gets or sets the number of dots. + + + + + Gets or sets the elements orientation inside the stacklayout. + Possible values are horizontal and vertical. + + + + + Represent a single strip with controls inside + + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The collection that is changed. + The targeted element of the collection. + The type of the operation. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Raises the event. + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + true if the event should be canceled, false otherwise. + + + + Forces the drag to end. + + + + + Measures the items with the size given and calculates the expected size of the strip + including the and . + + The size to measure the items with. + The calculated size of the strip. + + + + Subscribes to the children's events. + + + + + Unsubscribe from the children's events. + + + + + Applies an orientation to the strip and its children. + + The orientation to apply. + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Items collection is changed. + + + + + Occurs when item is clicked. + + + + + Occurs when item is moved to the overflow panel. + + + + + Occurs when item is moved out from the overflow panel. + + + + + Occurs before oferflow menu is opened. + + + + + Occurs when overflow menu is opened. + + + + + Occurs before oferflow menu is opened. + + + + + Occurs when overflow menu is opened. + + + + + Occurs before VisibleInCommandBar property is changed. + + + + + Occurs when VisibleInCommandBar property is changed. + + + + + Occurs before item is moved in or out of the UncheckedItems collection. + + + + + Occurs when item is moved in or out of the UncheckedItems collection. + + + + + Occurs before VisibleInCommandBar property is changed. + + + + + Occurs when VisibleInCommandBar property is changed. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Gets the form in which the items are placed where the strip is floating. + + + + + Gets the layout panel in which the items are arranged. + + + + + Gets or sets Overflow menu single strip minimum size. + + + + + Gets or sets Overflow menu single strip maximum size. + + + + + Gets or sets the desired location of the strip element. + + + + + + Gets or sets if the strip can be dragged. + + + + + + Gets or sets if the strip can be floating. + + + + + + Gets the delta of the drag. + + + + + + Gets or sets whether the strip is beeing dragged. + + + + + Gets or sets whether the strip is visible in the command bar. + This property is changed by the context menu which is opened on right click on the control. + + + + + + Gets or sets the elements orientation inside the line element. + Possible values are horizontal and vertical. + + + + + Gets whether the strip has items in its overflow panel. + + + + + Gets or sets the element of the strip. + + + + + Gets or sets the element of the strip. + + + + + Gets the items contained in the strip. + + + + + Represent a layout for the items contained in a strip + + + + + Represent the overflow button at the end of each strip + + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + + + + Raises the event. + + The element that is reponsible for firing the event. + A that contains the + event data. + + + + Raises the event. + + The element that is reponsible for firing the event. + A that contains the + event data. + + + + Gets the "Add or Remove Items" menu item from overflow menu + + + + + Gets the menu item from overflow menu which opens the Customize Dialog + + + + + Gets the overflow panel which contains the overflowed items + + + + + Gets the RadDropDownMenu that is shown on click. + + + + + Gets whether there are items in the overflow panel. + + + + + Gets or sets the orientation of the overflow button. + + + + + Gets or sets the dropdown menu element theme name. + + + + + Gets or sets the panel in which overflowed items are arranged. + + + + + Gets or sets the ArrowPrimitive element of the button. + + + + + This event fires before oferflow menu is opened. + + + + + This event fires when overflow menu is opened. + + + + + This event fires before oferflow menu is opened. + + + + + This event fires when overflow menu is opened. + + + + + Represents a menu item from drop down menu opened by the . + Has a coresponding item from the Items collection and + controls its VisibleInStrip property. + + + + + Create RadCommandBarOverflowMenuItem instance + + Which item will be show in menu + Menu that should be updated on representedItem visibility is changed + + + + Gets or sets the image that is displayed on menu item element. + + + + + Gets or sets the text that is displayed on menu item element. + + + + + Gets or sets whether the item is in checked state. + This property affects the VisibleInStrip property of the coresponding item in . + + + + + Represents a row of the . + Contains a collection of elements. + + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + The element that is responsible for firing the event. + A that contains the + event data. + + + + Raises the event + + A that contains the + event data. + + + + Raises the event. + + A that contains the + event data. + True if the change of orientation should be canceled, false otherwise. + + + + Moves specified in coresponding row + if its property points to a location in other row. + + The to move. + + + + Applies the new orientation to the element and its children. + + The orientation to apply. + + + + Gets or sets the that owns this row. + + + + + Occurs before dragging is started. + + + + + Occurs when item is being dragged. + + + + + Occurs when item is released and dragging is stopped. + + + + + Occurs when Orientation property is changed. + + + + + Occurs before Orientation property is changed. + + + + + Gets the elements contained in this row. + + + + + This class provides API for managing components. + + + + + Gets an instance of the struct + that represents the location of the current alert + according to its screen position setting and + the currently opened alerts. + + An instance of the + class that represents the alert which position to define. + The evaluated position in screen coordinates. + + + + Sets the active screen. The active screen is used + to calculate the positioning of all desktop alerts. + + An instance of the + class that is the active screen to set. + + + + Gets an enumerator for the currently shown dekstop alerts. + + + + + + Recalculates the location of all opened alerts + based on their screen position. + + + + + Registers an instance of the and + displays it on the screen according to its + + + + + + Unregisters a desktop alert from the manager. + + The alert to unregister. + + + + Evaluates whether a given + is registered with the . + + The to check. + + + + + Fires when an instance of the class + is registered with this . + + + + + Fires when an instance of the class + is removed from this . + + + + + Gets the only instance of the + class. + + + + + Gets an instance of the class + that represents the screen onto which the + positions the alert popups. + + + + + This class encapsulates information relevant to the events of the . + + + + + Creates an instance of the class + with a specified . + + + + + + Gets an instance of the class + associated with the event context. + + + + + This class represents the popup of a component. + This popup hosts an instance of the class which + represents the element hierarchy of the alert. + + + + + Creates an instance of the class. + + An instance of the class that + represents the owner alert of the + + + + Creates an instance of the class + with specified owner. + + An instance of the class that + represents the owner element of the + An instance of the class that + represents the owner alert of the + + + + Stops the auto-close timer. + + + + + Restarts the auto-close timer. + + + + + Gets a sets a boolean value determining whether the alert popup will be automatically + closed after a given amount of time. + + + + + Gets or sets the amount of time in seconds after + which the alert will be automatically closed. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets a boolean value determining whether the popup is pinned on the screen. + + + + + Gets or sets a boolean value determining whether the popup + can be moved by dragging it by the grip. + + + + + Gets an instance of the which + represents the main alert element. + + + + + Gets or sets the caption text of the alert. + + + + + Gets or sets the content text of the alert. + + + + + Gets or sets the content image of the alert. + + + + + Gets an instance of the that + holds the buttons items added to the alert component. + + + + + This class represents the element which holds the buttons + that can be added in a window. + + + + + Gets an instance of the that + represents the buttons collection of the window. + + + + + Gets an instance of the + that represents the layout panel which holds the added buttons. + + + + + This class represents the caption of a . + It contains caption grip which is used to move the alert window, close + button and options drop-down button. + + + + + Gets an instance of the class + that represents the part of a that + can be used to move the component on the screen. + + + + + Gets an instance of the class + that represents the part of a that contains + the text and the system buttons. + + + + + This class represents the caption grip of a window. + + + + + This class represents the content of a component. + The content usually is built of an image and HTML enabled text. + + + + + This element represents the text and system buttons part of a component. + + + + + Gets an instance of the that + represents the layout panel which holds the alert window's + text and system buttons elements. + + + + + Gets an instance of the that + represents the layout panel which holds the alert window's caption + buttons. + + + + + Gets an instance of the class + that represents the text of the text + caption. + + + + + Gets an instance of the class + that represents the close button of a component. + + + + + Gets an instance of the class + that represents the pin button of a component. + + + + + Gets an instance of the class + that represents the options button of a component. + + + + + This class represents the main element of a window. + + + + + Gets or sets a value indicating whether the control is automatically resized by Height + to display its entire contents. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets an instance of the class + that represents the alert's content image. + + + + + Gets or sets the text of the caption. + + + + + Gets or sets the content text of the . + This is the actual text displayed in a . + + + + + Gets an instance of the class + that represents the caption of a component. + The caption contains moving grip and system buttons. + + + + + Gets an instance of the class + that represents the main content element of a component. + This element contains an image and a text element. + + + + + Gets an instance of the class + that represents the panel which holds the buttons added to the + component. + + + + + This class encapsulates information needed for displaying a . + The class contains caption text, content text, content image and a collection of buttons. + + + + + Creates an instance of the class + with specified content text. + + The text which will be displayed as a content of the + + + + Creates an instance of the class + with specified content text and caption text. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + + + + Creates an instance of the class + with specified content text, caption text and content image. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + An instance of the class that will be displayed as a content image of the + + + + Creates an instance of the class + with specified content text, caption text, content image and a collection of buttons. + + The text which will be displayed as a content of the + The text which will be displayed as a caption of the + An instance of the class that will be displayed as a content image of the + An instance of the class that holds the buttons which will be displayed in the + + + + Represents a set of possible screen positions for a + windows. + + + + + The window is shown + at the position that is set to the Location property. + + + + + The window is shown + at the bottom right part of the working area + of the current screen. + + + + + The window is shown + centered at the bottom part of the working area + of the current screen. + + + + + The window is shown + at the bottom left part of the working area + of the current screen. + + + + + The window is shown + at the top right part of the working area + of the current screen. + + + + + The window is shown + centered at the top part of the working area + of the current screen. + + + + + The window is shown + at the top left part of the working area + of the current screen. + + + + + This class represents a Desktop Alert component which can be used to + display a small window on the screen to notify the user that an + event occurred. The location of the window and the way it appears + can be customized. + + + + + Creates an instance of the class. + + + + + Creates an instance of the class. + + An implementation of the interface + that holds this instance. + + + + Returns an instance of the class + that represents the alert's popup + + + + + Displays the alert popup on the screen at the specified location. + + + + + Hides the alert popup from the screen. + + + + + Resets the explicit location modifier. In other words, if the user + has modified the location of the alert's popup, the + will not consider it when rearranging the visible alerts. This method + will reset the explicit location modifier and thus the + will continue managing the location of the alert according to its location settings. + + + + + Gets or sets a value indicating whether the control is automatically resized by Height + to display its entire contents. + + + + Gets or sets a value indicating whether control's elements are aligned + to support locales using right-to-left fonts. + One of the values. + The default is . + The assigned + value is not one of the values. + + + + + Gets or sets a boolean value determining whether a sound is played + when the alert's popup is shown. + + + + + Gets or sets the sound which is played when the alert's popup is shown + and the PlaySound property is set to true. + + + + + Gets or sets the initial opacity of the alert's popup. + + + + + Gets or sets a boolean value determining whether the options button is shown. + + + + + Gets or sets a boolean value determining whether the pin button is shown. + + + + + Gets or sets a boolean value determining whether the close button is shown. + + + + + Gets or sets a boolean value determining whether the alert's + popup will be pinned on the screen. If pinned, the alert's popup + will not be automatically closed upon mouse click outside its bounds + or if the AutoClose property is set to true. + + + + + Gets or sets a boolean value determining whether the popup + can be moved by dragging the caption grip. + + + + + Gets or sets a boolean value determining whether the alert's popup + will be animated. + + + + + Gets or sets a value determining the direction of the alert's popup animation. + + + + + Gets or sets the count of the alert's drop-down animation frames. + + + + + Gets or sets the type of the drop-down animation easing. + + + + + Gets or sets a value from the + enumerator that determines the type of fade animation performed + when the alert's popup is opened/closed. + + + + + Gets or sets the interval in milliseconds between two animation frames. + + + + + Gets or sets the count of animation frames for the fade animation. + + + + + Gets a sets a boolean value determining whether the alert popup will be automatically + closed after a given amount of time. + + + + + Gets or sets the amount of time in seconds after + which the alert will be automatically closed. + + + + + Gets or sets a value of the + enum which defines the position of the alert popup + on the working area of the active screen. + + + + + Gets or sets an instance of the struct + which defines fixed size for the alert's popup. The default + value is an empty size. In this case the popup adjusts its + size according to its content. Otherwise the value of this property is + considered. + + + + + Gets or sets the content image of the . + + + + + Gets or sets the text displayed in the alert popup. This text + can be additinally HTML formatted to achieve better appearance. + + + + + Gets or sets the alert's caption text. + The caption text is displayed below the moving grip of the alert's popup. + + + + + Gets or sets the items collection containing the button items shown at the bottom + part of the desktop alert's popup. + + + + + Gets the items collection containing the items added to the options drop-down button + of the desktop alert's popup. + + + + + Gets an instance of the class + that represents the popup of the desktop alert. + + + + + This element is used for the sole purpose of storing the current DPI scale. + + + + + Fires when the alert's popup is about to be opened. The opening + action can be canceled by modifying the arguments of this event. + + + + + Fires when the alert's popup was opened. + + + + + Fires when the alert's popup is about to be closed. + The closing action can be canceled by modifying the + arguments of this event.. + + + + + Fires when the alert's popup was closed. + + + + + IsItemsDirty Property + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + Gets or sets the object that is responsible for providing data objects for the AutoComplete Suggest. + + + + + DropDownList Property + + + + + represent Navigation Button position + + + + + RadCarouses is a control that animates a group of items in Carousel-style + rotation. + + + You can add item to RadCarousel control using Items collection, or through binding + to data by assigning its DataSource properties. In order to manage the display of + great number of items you may need to set the + property to true. In this case you should specify the maximum + visible number of item, using the property. + Item path can be specified through property. Each + carousel path instance contains properties to adjust various aspects of the path + curve, including "start" and "end" position, selected items position. If you use a + RadCarousel bound to a data, you would need to handle the + ItemDataBound event to change each carouselItem's + properties according to items in the data source. You may also need to handle the + CreateNewCarouselItem event, to change the default type of items + RadCarousel will produce when data binding. + + + + + Enable or disable the re-animation of RadCarousel on form maximize, minimize or resize + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the default size of the control. + + + + + Gets a reference to the Carousel element, which encapsulates the most of the + functionality of RadCarousel + + + + + Gets ot sets the number of animation frames between two positions + + + + + Gets or sets the delay in ms. between two frames of animation + + + + + Gets or sets a value indicating that the Carousel will loop items automatically + + + + + Gets or sets a value indicating whether carousel will increment or decrement item indexes when in auto-loop mode. + + + + + Gets or sets a value indicating when carousel will pause looping if in auto-loop mode. + + + + + Gets or sets a value indicating the interval (in seconds) after which the carousel will resume looping when in auto-loop mode. + + + + + + + + + + + + + Gets or sets the item in the carousel that is currently selected. + + + + + + + Gets or sets the field from the data source to use as the actual value for the + carousel items. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + + Gets or sets the number of items that carousel displays when is set to true. + + + + + Get or sets value indicating the maximum number of items that will be displayed in + the carousel, even when there are more Items in the + collection. Virtualizing the carousel would significantly improve its performance. + + + False indicates that all items be displayed. + It depends on SelectedIndex, which items are displayed in this case. + + + + + Gets or sets value indicating that when item position goes beyond the carousel + path, it will be displayed again in the beginning of the carousel path. + + + + + + + + Sets the way opacity is applied to carousel items + + + + + Gets or sets value indicating the minimum value of the opacity applied to items + + + + + + + + Gets or sets value indicating which of the predefined animations will be applied to carousel items + + + + + Gets or sets the default action when item is clicked as member. + + The item click default action. + + + + Gets or sets value indicating the height (in percentage - values from 0.0. to 1.0) of reflection that will be painted bellow each carousel item. + + The item reflection percentage. + + 0.0 indicates no reflection and 1.0 indicates 100% of the height of the original item + + + + + Present the Previous button + + + + + Pressent the Next button + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Represent the Navigation buttons Positions + + + + + + + + + + + + + + + + + + + + Gets or sets a value indicating whether the keyboard navigation is enabled. + + + + + Provides values for ItemClickDefaultAction property + + + + + Indicates that item click will not be handeled by default + + + + + Indicates that item will be set selected when clicked. + + + + + RadElement that animates a list of items using Carousel-style view, used by control + + + + + Fires the ItemLeaving event + + Event specific arguemtns + + + + Fires the ItemEntering event + + Event specific arguemtns + + + + Raises the CreateNewCarouselItem event. + + + + + Raises the ItemDataBound event. + + + + + Raises the SelectedItemChanged event. + + + + + Raises the SelectedValueChanged event. + + + + + Raises the SelectedIndexChanged event. + + + + + Finds the first item in the list box that matches the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + Initiates batch update of the items. + + + Ends batch update of the items. + + + Gets the value of the given item. + + + + Finds the first item in the list with Text that starts with the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + + Finds the first item in the list with Text containing the specified string. + + The string to search for. + The zero-based index of the first item found; returns null if no match is found. + + + + Occurs when an Item is about to leave carousel view + + + + + Occurs when an Item is about to enter carousel view + + + + + Occurs before a new databound carousel item is created. You can use this event to + replace the default item. + + + + Occurs after an Item is databound. + + + Occurs when the selected items is changed. + + + Fires when the selected value is changed. + + + Fires when the selected index is changed. + + + Gets a collection of RadItem objects managed by RadCarousel. + + Items are populated automatically when RadCarousel is data-bound. When using , carousel displays only number of items at a time. + + + + Gets the element, which contains all visible carousel items + + + + Gets or sets a value indicating whether sorting of carousel items is + case-sensitive. + + + + + Gets or sets a value indicating whether the keyboard navigation is enabled. + + + + Gets or sets the item in the carousel that is currently selected. + + + Gets or sets the index the currently selected item. + + + Gets or sets a value defining the currently selected item. + + + + Gets or sets the field from the data source to use as the actual value for the + carousel items. + + + + + Gets or sets a value indicating whether formatting is applied to the DisplayMember property. + + + + Gets or sets the data source that the carousel will bind to. + + + + Gets or sets the default action when item is clicked as member. + + The item click default action. + + + + Gets or sets value indicating the height (in percentage - values from 0.0. to 1.0) of reflection that will be painted bellow each carousel item. + + The item reflection percentage. + + 0.0 indicates no reflection and 1.0 indicates 100% of the height of the original item + + + + + Set ot get the Carousel animation frames + + + + + Set ot get the Carousel animation frames delay + + + + + Gets or sets a value indicating the interval (in seconds) after which the carousel will resume looping when in auto-loop mode. + + + + + Present the Previous button + + + + + Pressent the Next button + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Represent the Navigation buttons Possitions + + + + + Type of animation to be applied on carousel items + + + + + Enable or disable the re-animation of RadCarousel on form maximize, minimeze or resize + + + + + Sets the way opacity is applied to carousel items + + + + + Gets the owner RadCarouselElement. + + The owner. + + + + Gets or sets CarouselPath object that defines the curve which carousel items will animate through + + + + + Gets or sets carousel items' animation easing. + + + + + + + + Gets or sets the set of animations to be applied on carousel items + + + + + Set ot get the Carousel animation frames + + + + + Set ot get the Carousel animation frames + + + + + Gets or sets a value indicating whether carousel will increnment or decrement item indexes when in auto-loop mode. + + + + + Gets or sets a value indicating that the Carousel will loop items automatically + + + + + Gets or sets a value indicating when carousel will pause looping if in auto-loop mode. + + + + + Gets or sets the font for this RadListDataItem instance. + + + + Represents the method that will handle the DataBindingComplete event of a RadListView and RadDropDownList + 2 + + + Provides data for the ListBindingCompleteEventHandler event. + 2 + + + Initializes a new instance of the ListBindingCompleteEventArgs class. + One of the values. + + + Gets a value specifying how the list changed. + One of the values. + 1 + + + + Gets or sets the font. Font type defines a particular format for text, including + font face, size, and style attributes. + + + + + Contains the visual list item which is to be formatted in the VisualItemFormatting event of RadListControl. + + + + + Gets the visual list item which is to be formatted. + + + + + Allows setting custom instances of the visual list items in RadListControl. + + + + + Gets or sets the custom visual list item that will be used as visual representation + of the data items. + + + + + Allows setting custom instances of the data items in RadListControl. + + + + + Gets or sets a data item that will be used to store logical information + to represent data records. + + + + + Provides a data item that was just bound during RadListControls data binding. + + + + + Gets the data item that was just associated with a data record. + The data record can be accessed through the DataBoundItem property. + + + + + Provides the new sort style after the same property of RadListControl changes. + + + + + Gets the new sort style value. + + + + + This interface is used to provide alternative ways to compare strings. + Users can assign their custom comparer to the FindStringComparer property of the respective control. + + + + + This class is used to create the initial instance of the IFindStringComparer. + It uses the string StartsWith method. + + + + + This class is used to precisely compare strings. It searches for an item whose text is exactly equal to the provided string. + + + + + This class is used to determine whether a string contains another string. + + + + + This enum is used in RadListControl.FindString() to determine whether an item is searched via the text property + set by the user or the text provided by the data binding logic. + + + + + Clears this instance. + + + + + Gets a value for the Value property in unbound mode. + + Returns an object reference pointing to the value of the Value property in unbound mode. + + + + This method is called when setting the Value property of a RadListDataItem when it is in unbound mode. + + The value to set the Value property to. + + + + Key object that is used by the FindByKey method of RadListView. + By default this property holds a reference to the . + + + + + Gets or sets the key for the left image associated with this list view item. + + Image Property + ImageIndex Property + + + + Gets or sets the left image list index value of the image displayed. + + Image Property + ImageKey Property + + + + Gets or sets a value that indicates if this item is current. + + + + + Gets a value indicating whether this instance has style. + + true if this instance has style; otherwise, false. + + + + Gets or sets a value for the property indicated by ValueMember if in bound mode, and private value in unbound mode. + Trying to explicitly set this property in bound mode will result in an InvalidOperationException. + + + + + Gets or sets the text. + + The text. + + + + Gets a value that indicates if this item is selected. + + + + + Gets a value that indicates if this item is currently visible. + + + + + Gets a value that indicating the current check state of the item. + + + + + This collection is used for adding items at design time. It should not be used in runtime. + + + + + Gets or sets the backcolor of the list node. Color type represents an ARGB color. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, gel, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the backcolor of the list item. This property is applicable to radial, glass, + office glass, and vista gradients. + + GradientStyle Property + NumberOfColors Property + + + + Gets or sets the border color of the list item. + + + + + Gets or sets gradient angle for linear gradient. + + GradientStyle Property + GradientPercentage Property + GradientPercentage2 Property + NumberOfColors Property + The default value is 90.0. + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + GradientStyle Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + GradientStyle Property + GradientPercentage Property + GradientAngle Property + NumberOfColors Property + The default value is 0.5. + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + The default value is + GradientStyles.Linear. + + GradientStyles Enumeration + GradientPercentage Property + GradientPercentage2 Property + GradientAngle Property + NumberOfColors Property + + + + Gets or sets the number of used colors in the gradient effect. + + BackColor Property + BackColor2 Property + BackColor3 Property + BackColor4 Property + GradientStyle Property + The default value is 4. + + + + Gets or sets the relation between the image and the text. + + + + + Gets or sets the font. + + The font. + + + + Gets or sets the color of the fore. + + The color of the fore. + + + + Gets or sets the color of the border. + + The color of the border. + + + + Gets or sets the back color4. + + The back color4. + + + + Gets or sets the back color3. + + The back color3. + + + + Gets or sets the back color2. + + The back color2. + + + + Gets or sets the color of the back. + + The color of the back. + + + + Gets or sets the number of colors. + + The number of colors. + + + + Gets or sets the gradient percentage2. + + The gradient percentage2. + + + + Gets or sets the gradient percentage. + + The gradient percentage. + + + + Gets or sets the gradient angle. + + The gradient angle. + + + + Gets or sets the gradient style. + + The gradient style. + + + + Gets or sets the text alignment. + + The text alignment. + + + + Gets or sets the image alignment. + + The image alignment. + + + + Sets the owner for this column. This method is used internally, never call it directly. + + The owner element. + + + + Adjusts the column width to fit the contents of all cells in the column, including the header cell. + + + + + Gets the that owns this column. + + + + + Gets the maximum width that the column can be resized to. + + + + + Gets the minimum width that the column can be resized to. + + + + + Gets the current width of the column. + + + + + Gets the name of the field of the bound item corresponding to this column. + + + + + Gets the name of the column. Must be unique for each column in the same . + + + + + Gets or sets the text that will be displayed in the header cells. + + + + + Gets a value indicating whether the column is in bound mode. + + + + + Gets or sets a value indicating whether this column is current. + + + + + Gets or sets a value indicating whether this column will be visible in DetailsView. + + + + + Gets or sets the mode by which the column automatically adjusts its width after BestFit is executed. + + + + + Gets or sets a value indicating whether the group's items should be displayed. + + + + + Gets the items in this group. + + + + + Gets the data group that is assigned to this group. + + + + + Clears this instance. + + + + + Used by the best fit columns mechanism so the cell measure would ignore the column width. + + + + + Represents the method that will handle events in . + + + + + + + Provides data for all events used in + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the instance to be processed by . + + + + + Defines the check on click mode. Check on click states are used in RadListView and RadCheckedListBox. + + + + + Item CheckState is not toggled on click. + + + + + Item is selected and CheckState is toggled on first click. + + + + + Item is selected on first click. On second click the CheckState is toggled. + + + + + Determines whether this instance can execute a best fit columns operation. + + + true if this instance can execute a best fit columns operation; otherwise, false. + + + + + Widens / shrinks a column based on the space required by the text in the columns. + + The column. + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + + + + Widens / shrinks all columns based on the space required by the text in the columns. + + The mode. + + + + Gets or sets the RadImageShape instance which describes the hint that indicates where a column will be dropped after a drag operation. + + + + + Represents the view type of . + + + + + Represents a simple list view type. + + + + + Represents an icon view type. + + + + + Represents a detailed view type. + + + + + Represents a check box element. The RadCheckBox + class is a simple wrapper for the RadCheckBoxElement class. The + RadCheckBox acts to transfer events to and from its + corresponding RadCheckBoxElement instance. The radCheckBoxElement which is + essentially the RadCheckBox control may be nested in + other telerik controls. + + + + Gets or sets a value indicating the alignment of the check box. + + + + Gets an instance of the class + that represents the check box part of the . + + + + + Gets the item that is being dropped. + + + + + Gets the item that the DraggedItem is being dropped on. + + + + + Gets the item that is being dropped. + + + + + Gets the item that the DraggedItem is being dropped on. + + + + + Provides data for the RadPageViewItemsChanged event. + + + + + Gets the changed item. + + + + + Gets the change operation. + + + + + Initializes a new instance of the RadPageViewItemsChangedEventArgs class. + + The changed item. + The change operation. + + + + Provides data for the RadPageViewItemSelected event. + + + + + Gets the previous selected item of RadPageView. + + + + + Gets the selected item of RadPageView. + + + + + Initializes a new instance of the RadPageViewItemSelectedEventArgs class. + + The previous selected item of RadPageView. + The selected item of RadPageView. + + + + Provides data for the RadPageViewItemSelecting event. + + + + + Gets the selected item of RadPageView. + + + + + Gets the item to be selected. + + + + + Initializes a new instance of the RadPageViewItemSelectingEventArgs class. + The selected item of RadPageView. + The item to be selected. + + + + + Gets or sets the rectangle (in screen coordinates) which will be used to align the menu. + + + + + Gets a list with all the items that will be displayed. + + + + + Gets or sets the horizontal alignment of the menu that will display the items. + + + + + Gets or sets the vertical alignment of the menu that will display the items. + + + + + Gets the view mode associated with the event. + + + + + Determines whether the event may continue or it should be canceled. + + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + Gets or sets the width of the items area. + + + + + Represents a page in a RadPageView instance. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the image to be displayed by the associated RadPageViewItem instance. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the title of the Page. Title appears in the Header area of the owning RadPageView. + + + + + Gets or sets the length of the current . The length + represents the fixed amount of space the page will take when the layout of the control is performed. + Note: This property is only functional when the control + is in ExplorerBar mode and its content size mode is set to FixedLength. + + + + + Gets or sets a boolean value determining whether the content of the current + is visible. This property is only functional in the + when the control is in ExplorerBar view mode. + + + + + Gets or sets the tooltip to be displayed when the item hovers page's associated item. + + + + + Gets or sets the text to be displayed in the associated item. + + + + + Gets the RadPageView instance that owns this page. + + + + + Gets the RadPageViewItem instance which is the UI representation of this page. + + + + + Gets or sets the size of the item of RadPageView.This size will be used in is PageViewItemSizeMode.Individual mode. + + + + + This enumerator defines the possible size modes for the content areas in a . + The size modes define how the content areas are calculated according to their content or the size of the + control. + + + + + The length of the content area is fixed and is defined by the PageLength value for each . + + + + + The length of the content area is automatically calculated to fit the length of the content. + + + + + The length of all visible content areas is equal. This usually implies that no scrollbars are shown. + + + + + This class contains layout information about a and + performs base layout operations over an item like measuring. + + + + + This class represents the element that implements the ExplorerBar view of the control. + This view allows for multiple visible pages, whereby items can be expanded/collapsed to show their content in an associated page. + + + + + Gets or sets a value from the enum + which determines the location of the items in relation to the content area. + + + + + Gets or sets a value from the enum + that determines how items in the stack view are selected and positioned. + + + + + Scroll in RadPageViewExplorerBar mode to control. + Control will be focused + + control to scroll + + + + Gets an instance of the that represents + the scrollbar of the . + + + + + Gets or sets a value from the enum + that defines how the content areas for each item are sized. + + + + + This class represents a single item in the 's explorer bar view mode. + + + + + Creates an instance of the . + + + + + Creates an instance of the . + + + + + Creates an instance of the . + + + + + Gets or sets a boolean value that determines whether the content of the + is expanded. + + + + + Gets or sets an instance of the that + represents the content holder of this . + + + + + Gets an instance of the class which is + the layout panel that holds instances of the + class representing items currently collapsed by using the overflow grip. + + + + + Gets the overflow menu button. + + + + + Gets the overflow drop-down menu. + + + + + Gets the overflow menu item used to show fewer items in the stack. + + + + + Gets the overflow menu item used to show more buttons in the stack. + + + + + Gets the overflow menu item used to add/remove items in the stack. + + + + + Represents a simple button within a RadPageViewElement. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Gets an array containing the items that are currently hidden by using the + overflow grip. + + + + + Gets an array containing the items that are currently unchecked by using the + overflow menu. + + + + + This method returns the count of the items which are currently + visible to the user. + + + + + + Makes an item invisible. The item will appear as unchecked in the + overflow menu. + + The item to make invisible. + + + + Makes an item visible. The item will appear as checked in the + overflow menu. + + The item to make visible. + + + + Drags the overflow grip down to hide the first possible visible item. + + True if the drag operation succeeds, otherwise false. + + + + Drags the overflow grip up to show the first possible hidden item. + + True if the drag operation succeeds, otherwise false. + + + + Shows a given amount of items from the hidden items + in the starting from the + bottom part of the stack. + + The count of the items to be shown. + + + + Hides a given amount of items from the visible items + in the starting from the + bottom part of the stack. + + The count of the items to be hidden. + + + + Gets the element that represents the container which holds + the buttons shown when items in the stack are hidden by using + the overflow grip. + + + + + Gets the element which represents the grip which can be dragged + to adjust the count of visible items in the stack. + + + + + Gets or sets the image that is shown on the + item in the overflow drop-down menu that is used to + show more buttons in the control. + + + + + Gets or sets the image that is shown on the + item in the overflow drop-down menu that is used to + show fewer buttons in the control. + + + + + Gets the collection containing the unchecked items. + + + + + Fires when the user clicks on a button associated with a instance. + This buttons is shown when the item is collapsed by using the overflow grip. + + + + + Fires when an item is shown in the . + + + + + Fires when an item is collapsed in the . + + + + + Fires when an item is checked in the overflow drop-down menu of the . + + + + + Fires when an item is unchecked in the overflow drop-down menu of the . + + + + + Gets or sets the associated overflow button with the current page view item. + This button is displayed below all items in the overflow items panel when the item + is collapsed by using the outlook grip. + When setting this property, the previously set item is disposed. + + + + + Defines possible alignment of buttons within RadPageViewItem instance. + + + + + Buttons overlay item's content. + + + + + Buttons are before item's content. + + + + + Buttons are after item's content. + + + + + Buttons are above item's content. + + + + + Buttons are below item's content. + + + + + Defines possible modes for dragging items within a RadPageView instance + + + + + Item dragging is disabled. + + + + + A preview is generated, indicating where the item will be inserted when dropped. This mode is cancelable. + + + + + The item is immediately reordered when moved to a different position. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently set as preview. + + + + + Represents a Label(static) element - such as Header and Footer - within a RadPageViewElement instance. + + + + + This enumerator defines the possible selection modes for items + in a . + + + + + The selected item is highlighted and its content is displayed in the content area. + + + + + The selected item is highlighted and its content is displayed before it according to the stack orientation. + + + + + The selected item is highlighted and its content is displayed after it according to the + stack orientation. + + + + + This enumerator defines the possible positioning + options for the items of a . + + + + + Positions the items to the left side of the content area. + + + + + Positions the items to the top of the content area. + + + + + Positions the items to the right of the content area. + + + + + Positions the items to the bottom of the content area. + + + + + Defines the visibility of the New item in a RadPageViewStripElement instance. + + + + + Represents a separator which is just a line separating one group of + controls from another. The RadSeparator is a simple wrapper of the + RadSeparatorElement class. + + + + + Gets or sets whether the edit control is auto-sized + + + + + + + + + + + + + + + + + + + + Gets the instance of RadSeparatorElement wrapped by this control. RadSeparatorElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSeparator. + + + + + RadSeparator consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Represents an enumration of the possible transitions which a uses to change its content. + + + + + Represent a live tile that can change dinamically its content by using animations. + + + + + Represents a tile that can be arranged in a control. + + + + + Gets the zero-based index of the column in which the tile should be arranged. + + + + + Gets the zero-based index of the row in which the tile should be arranged. + + + + + Gets or sets the number of cells that the tile should occupy in a column. + + + + + Gets or sets the number of cells that the tile should occupy in a row. + + + + + Gets or sets the padding according to the currently occupied cell. + + + + + Cancels the currently running animations. + + + + + Pauses the change of the content. + + + + + Continues the change of the content. + + + + + Moves to the next frame. + + + + + Changes the content of the tile by setting the CurrentItem property. Called on an interval specified by the ContentChangeInterval property. + + + + + Gets or sets the interval at which the content of changes. + + + + + Gets or sets a value indicating whether the animations are enabled. + + + + + Gets or sets the number of frames of the transition animation. + + + + + Gets or sets the interval between each frame of the transition animation. + + + + + Gets a collection of objects that represent the content items of the . + + + + + Gets or sets the type of the transition animation. + + + + + Gets or sets the currently displayed item. + + + + + Represent a panoramic view control that can display and arrange tiles in grouped or ungrouped manner. + + + + + Creates the main element of the control. + + The created element. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the way that RadPanorama should handle mouse wheel input. + + + + + Gets or sets a value that indicates whether the newly added tiles should be automatically arranged. + + + + + Enables or Disables the build in zoom functionality + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets a value indicating whether reordering of tiles via drag and drop is allowed. + + + + + Gets or sets a value indicating whether the groups or the items should be displayed. + + + + + Gets or sets a value indicating whether the background image should be scrolled along with the tiles. + + + + + Gets or sets the position on which the scrollbar should be aligned. + + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets the that represents the main element of the control. + + + + + Gets or sets the image that is displayed in the background. + + + + + Gets or sets the size of the image that is displayed in the background. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Gets a collection of objects that represent the tiles that are displayed. + + + + + Gets a collection of objects that represent the tiles that are displayed. + + + + + RadPanorama consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Enumerates the possible alignments of a horizontal scrollbar. + + + + + Provides options for the way that the MouseWheel should be handled. + + + + + Do not handle mouse wheel. + + + + + Zoom the view on mouse wheel. + + + + + Scroll the view on mouse wheel. + + + + + Scroll the view on mouse wheel, zoom the view on Control + mouse wheel. + + + + + Represents the main element of control. + + + + + Scrolls the view with a specified offset. + + The offset. + + + + Scrolls the view with a specified offset. + + The offset. + If the method is called too often, set this to [true] to improve performance. + + + + Updates the view according to the current value of the scrollbar. + + + + + Zooms the view out. + + + + + Zooms the view in towards the specified location. + + The location. + + + + Gets or sets the way that RadPanorama should handle mouse wheel input. + + + + + Gets or sets a value that indicates whether the newly added tiles should be automatically arranged. + + + + + Enables or Disables the build in zoom functionality + + + + + Indicates whether the view is zoomed out. + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets a value indicating whether reordering of tiles via drag and drop is allowed. + + + + + Gets or sets a value indicating whether the groups or the items should be displayed. + + + + + Gets or sets a value indicating whether the background image should be scrolled along with the tiles. + + + + + Gets or sets the position on which the scrollbar should be aligned. + + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets or sets the image that is displayed in the background. + + + + + Gets or sets the size of the image that is displayed in the background. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Gets the scrollbar of the view. + + + + + Gets the image primitive that represents tha image in the background. + + + + + Gets the layout that arranges the tiles in ungrouped mode. + + + + + Gets the layout that arranges the tile groups. + + + + + Gets or sets the that is responsible for the drag-drop reorder of tiles. + + + + + Gets the that is responsible for kinetic scrolling behavior with the mouse pointer. + + + + + Gets a collection of items that should be displayed in grouped mode. + + + + + Gets a collection of items that should be displayed in ungrouped mode. + + + + + Gets or sets the offset from the edges of the control at which automatic + scrolling starts. + + + + + Represent a container for grouped tiles that is displayed in control. + + + + + Updates the number of rows and columns before each layout update. + + + + + Gets or sets the minimum number of columns that the view can be reduced to. + + + + + Gets or sets the height of the group title. + + + + + Gets the layout panel that arranges the tiles. + + + + + Gets or sets the current number of columns. + + + + + Gets or sets the number of rows. + + + + + Gets or sets the size of a single cell. + + + + + Represents the caret of + + + + + Initializes a new instance of the class. + + + + + Shows this caret. + + + + + Hides this caret. + + + + + Suspends the blinking of this caret. + + + + + Resumes the blinking of this caret + + + + + Gets or sets the caret position. + + + The position. + + + + + Gets or sets the height of the caret + + + The height. + + + + + Gets or sets the width of the caret + + + The width. + + + + + Represent the selection paiting primitive + + + + + Initializes a new instance of the class. + + The text box. + + + + Invalidates the specified selection start. + + The selection start. + The selection end. + if set to true [repaint]. + + + + Gets the rectangle of + + The current line. + + + + + Draws the primitive on the screen. + + + + + + + + Gets or sets a value indicating whether the primitive should be painted + be painted. + + + + + Gets or sets a value indicating whether the selection should be hidden if focused is lost + + + true if [hide selection]; otherwise, false. + + + + + Gets or sets the color of the selection. + + + The color of the selection. + + + + + Gets or sets the selection opacity. + + + The selection opacity. + + + + + Gets the associated text box element. + + + + + Represents a single word in + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The text. + + + + Gets a rectangle of character by index. + + The index. + if set to true [trail edge]. + + + + + Gets the character index at X-position. + + The x. + + + + + Gets or sets the word's text + + + The text. + + + + + Gets the length of the word. It can be different than the exact text length. + + + + + Gets or sets the word according to the previous one + + + The offset. + + + + + Gets or sets the index of the word + + + The index. + + + + + Gets or sets a value indicating whether the word's background can be painted. + + + true if paint the background; otherwise, false. + + + + + Represents text measurer of . + + + + + Measures a text. + + The text. + The font. + + + + + Search the index position where the text should be wrapped for the available width. + + The text. + The font. + The available width. + + + + + Searches the text's index where the caret should be positioned + + The text. + The font. + The available width. + + + + + Represents an action when auto-complete performs + + + + + No action + + + + + Append action + + + + + Replace action + + + + + Represents the method that will handle the create text block in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Gets the text for which the block is created. + + + + + Gets or sets the text block. + + + The text block. + + + + + Represents the method that will handle when the selection is changed in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The selection start. + Length of the selection. + + + + Gets the selection start. + + + + + Gets the length of the selection. + + + The length of the selection. + + + + + Represents the method that will handle when the selection is changing in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The old selection start. + Old length of the selection. + The new selection start. + New length of the selection. + + + + Gets the old selection start. + + + + + Gets the old length of the selection. + + + The old length of the selection. + + + + + Gets the new selection start. + + + + + Gets the new length of the selection. + + + The new length of the selection. + + + + + Represents the method that suggested text is changed in + + The sender. + The instance containing the event data. + + + + An event arguments of + + + + + Initializes a new instance of the class. + + The text. + The suggested text. + The start position. + The end position. + The action. + + + + Gets the text. + + + + + Gets the suggested text. + + + + + Gets the auto-complete action. + + + + + Gets or sets the start position. + + + The start position. + + + + + Gets or sets the end position. + + + The end position. + + + + + Represents text changed action + + + + + Text editing + + + + + Text property change + + + + + Represents text changed event arguments + + + + + Initializes a new instance of the class. + + The text. + The caret position. + The action. + + + + Gets the text. + + + + + Gets the caret position. + + + + + Gets the text change action. + + + + + Represents text changing event arguments + + + + + Initializes a new instance of the class. + + The start position. + The length. + The old text. + The new text. + The action. + + + + Gets the text change action. + + + + + Gets the start position. + + + + + Gets the selection length. + + + + + Represent a method that handles menu opening in + + The sender. + The instance containing the event data. + + + + Event arguments of + + + + + Initializes a new instance of the class. + + The context menu. + + + + Gets the context menu. + + + + + Represents a logical line in + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The start block. + The end block. + The size. + + + + Gets or sets the start block. + + + The start block. + + + + + Gets or sets the end block. + + + The end block. + + + + + Gets or sets the location. + + + The location. + + + + + Gets or sets the size. + + + The size. + + + + + Gets the control bounding rectangle. + + + + + Index comparer of + + + + + Initializes a new instance of the class. + + Index of the block. + + + + Compares the specified line. + + The line. + The null line. + + + + + Represents collection of + + + + + Adds the specified line. + + The line. + + + + Removes the range. + + The index. + The count. + + + + Removes all items from the . + + The is read-only. + + + + Binaries the search by Y coordinate. + + The y. + + + + + Binaries the search by offset. + + The offset. + + + + + Binaries the index of the search by block. + + The index. + + + + + Binaries the search. + + The comparer. + + + + + Offset comparer of + + + + + Initializes a new instance of the class. + + The offset. + + + + Compares the specified line. + + The line. + The null line. + + + + + Y-coordinate comparer of + + + + + Initializes a new instance of the class. + + The y coorditante. + + + + Compares the specified line X. + + The line X. + The line Y. + + + + + Offset comparer of + + + + + Initializes a new instance of the class. + + The offset. + + + + Compares the specified x. + + The x. + The null object. + + + + + Represents a localizable provider of + + + + + Gets the localized string by identifier + + The id. + + + + + Contains identifiers of the localizable strings in + + + + + Represent a text position in + + + + + Initializes a new instance of the class. + + The line. + The text block. + The char position. + + + + Compares to + + The position. + + + + + Equalses the specified position. + + The position. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Performs an implicit conversion from to . + + The start. + + The result of the conversion. + + + + + Implements the operator >. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator >=. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator <. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator <=. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator ==. + + The start. + The end. + + The result of the operator. + + + + + Implements the operator !=. + + The start. + The end. + + The result of the operator. + + + + + Gets the length. + + The start. + The end. + + + + + Gets the first position. + + The layout panel. + + + + + Gets the last position. + + The layout panel. + + + + + Swaps two positions + + The start position. + The end position. + + + + Gets the line. + + + + + Gets the text block. + + + + + Gets the char position in + + + + + Represents a context menu of + + + + + Initializes a new instance of the class. + + The text box. + + + + Adds the menu item by localizable string identifier + + The string id. + + + + + Gets the associated text box. + + + + + Represents a scroller in + + + + + Initializes a new instance of the class. + + The scroll bar. + + + + Raises the event. + + The instance containing the event data. + + + + Suspends the notifications of event. + + + + + Resumes the notifications of event. + + + + + Updates the scroll range. + + Size of the client. + Size of the desired. + + + + Updates the scroll bar + + + + + Sets the scroll bar visibility. + + + + + Gets the max value of the scrollbar + + + + + Gets or sets the value of the scrollbar + + + The value. + + + + + Gets the associated scroll bar. + + + + + Gets or sets the state of the scrollbar. + + + The state of the scrollbar. + + + + + Gets the size of the client area. + + + The size of the client. + + + + + Gets the desired size of the document + + + The size of the desired. + + + + + Gets or sets the large change of the scrollbar. + + + The large change. + + + + + Gets or sets the small change of the scrollbar. + + + The small change. + + + + + Occurs when the scroller is updated. + + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Provides localization services for RadTimePicker. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + RadWizard localization strings. + + + + + Creates a RadTimePicker instance. + + + + + Fires the ValueChanging event + + + + + + + Fires the ValueChanged event + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the Text associated to the Button below TimeTables + + + + + Gets or sets the current culture associated to the RadTimePicker + + + + + Gets or sets the row height in time picker popup. + + + + + Gets or sets the columns count. + + + + + Gets or sets headers height. + + + + + Gets or sets button panel height. + + + + + Gets or sets the table width. + + + + + Set the Clock position Before Time Tables or Above Time Tables + + + + + Gets or sets a value which determines how to represent the times in time picker popup. + + + + + Gets or sets a value indicating the time interval. + + + + + Gets or sets a value indicating whether the contents of the TextBox control can be changed. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the time value assigned to the control. + + + + + Gets or sets the Minimal time value assigned to the control. + + + + + Gets or sets the Maximal time value assigned to the control. + + + + + Occurs when the editing value is changing. + + + + + Occurs when the editing value has been changed + + + + + Occurs when a cell changes its state. + + + + + Occurs when the RadItem has focus and the user pressees a key down + + + + + Occurs when the RadItem has focus and the user pressees a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Fires the ValueChanged event + + + + + + + Fires the ValueChanging event + + + + + + + Gets the culture to be used when displaying the time. + + + + + Determines whether control's height will be determined automatically, depending on the current Font. + + + + + Gets the RadTimePickerElement which encapsulates the UI representation and functionality of the control. + + + + + Occurs when the editing value has been changed + + + + + Occurs when the editing value is changing. + + + + + This property is used internally. + + + + + Creates the button element for the increment button. + + A to be placed in the . + + + + Creates the button element for the decrement button. + + A to be placed in the . + + + + Enables or disables the ReadOnly mode of RadTimeBox. The default value is false. + + + + + Gets or sets a value indicating whether the RadDropDownList will be animated when displaying. + + + + + Gets or sets the text that is displayed when RadDropDownList has no text set. + + + + + This property is used internally. + + + + + Occurs when the editing value is changing. + + + + + Occurs when the editing value has been changed + + + + + Represents a command area of RadWizard in Wizard97 mode. + + + + + Represents a command area of RadWizard. + + + + + Base class for RadWizard elements. + + + + + Updates the current state of the element. + + The WizardPage the element currently refers to. + + + + Gets or sets a value indicating that the element currently refers to a WizardWelcomePage. + + + + + Gets or sets a value indicating that the element currently refers to a WizardCompletionPage. + + + + + Gets the owner RadWizardElement of the element. + + + + + Creates a WizardCommandArea instance. + + + + + Creates a WizardCommandArea element. + + Owner of the element. + + + + Gets the CommandArea elements. + + + + + Gets the CommandArea Next button element. + + + + + Gets the CommandArea Cancel button element. + + + + + Gets the CommandArea Finish button element. + + + + + Gets the CommandArea Help button element. + + + + + Creates a Wizard97CommandArea instance. + + + + + Creates a Wizard97CommandArea element. + + >Owner of the element. + + + + Gets the CommandArea Back button element. + + + + + Represents a command area button element of RadWizard. + + + + + Gets or sets a value indication wether the button is focused. + + + + + Represents a button element of RadWizard in Aero mode. + + + + + Represents a top element of RadWizard in Aero mode. + + + + + Creates a WizardAeroTopElement instance. + + + + + Creates a WizardAeroTopElement. + + Owner of the element. + + + + Gets the AeroTopElement Back button element. + + + + + Represents a page header of RadWizard. + + + + + Creates a WizardPageHeaderElement instance. + + + + + Updates the current state of the element. + + + + + + Gets the element containing the WizardPageHeader title text. + + + + + Gets or sets the text of TitleElement. + + + + + Gets or sets the TitleElement visibility. + + + + + Gets the element containing the WizardPageHeader header text. + + + + + Gets or sets the text of HeaderElement. + + + + + Gets or sets the HeaderElement visibility. + + + + + Gets the element containing the WizardPageHeader icon image. + + + + + Gets or sets the WizardPageHeader icon image. + + + + + Gets or set the alignment of the WizardPageHeader icon image. + + + + + Represents an element of RadWizard which paints its text on glass. + + + + + Represents the method that will handle the ModeChanged events of RadWizard. + + The event sender. + Instance of ModeChangedEventArgs. + + + + Provides data for the ModeChanged event. + + + + + Gets the previous mode of the wizard. + + + + + Gets the current mode of the wizard. + + + + + Initializes a new instance of the ModeChangedEventArgs class. + + The previous mode of the wizard. + The current mode of the wizard. + + + + Represents the method that will handle the ModeChanging events of RadWizard. + + The event sender. + Instance of ModeChangingEventArgs. + + + + Provides data for the ModeChanging event. + + + + + Gets the current mode of the wizard. + + + + + Gets the next mode of the wizard. + + + + + Initializes a new instance of the ModeChangingEventArgs class. + + The current mode of the wizard. + The next mode of the wizard. + + + + Represents the method that will handle cancelable events of RadWizard. + + The event sender. + Instance of WizardCancelEventArgs. + + + + Provides data for cancelable events of RadWizard. + + + + + Initializes a new instance of the WizardCancelEventArgs class. + + + + + Determines whether the event is canceled or may continue. + + + + + Represents the method that will handle the SelectedPageChanged events of RadWizard. + + The event sender. + Instance of SelectedPageChangedEventArgs. + + + + Provides data for the SelectedPageChanged event. + + + + + Gets the previous selected page of the wizard. + + + + + Gets the selected page of the wizard. + + + + + Initializes a new instance of the SelectedPageChangedEventArgs class. + + The previous selected page of the wizard. + The selected page of the wizard. + + + + Represents the method that will handle the SelectedPageChanging events of RadWizard. + + The event sender. + Instance of SelectedPageChangingEventArgs. + + + + Provides data for the SelectedPageChanging event. + + + + + Gets the selected page of the wizard. + + + + + Gets the wizard page to be selected. + + + + + Initializes a new instance of the SelectedPageChangingEventArgs class. + The selected page of the wizard. + The wizard page to be selected. + + + + + Provides localization services for RadWizard. + + + + + Gets the string corresponding to the given ID. + + String ID. + The string corresponding to the given ID. + + + + RadWizard localization strings. + + + + + Represents a completion page of RadWizard. + + + + + Represents a page of RadWizard. + + + + + Creates a WizardPage instance. + + + + + Returns a string representation of the page. + + The string representation of the page. + + + + Gets the owner RadWizardElement of the page. + + + + + Gets or sets the panel presenting the content area of the page. + + + + + Gets or sets the page title text. + + + + + Gets or sets the page header text. + + + + + Gets or sets a value indicating whether the page customizes its header. + + + + + Gets or sets the page's TitleElement visibility. Applies if CustomizePageHeader has value 'true'. + + + + + Gets or sets the page's HeaderElement visibility. Applies if CustomizePageHeader has value 'true'. + + + + + Gets or sets the page's IconElement image. Applies if CustomizePageHeader has value 'true'. + + + + + Gets a value indicating whether the page is selected. + + + + + Creates a WizardCompletionPage instance. + + + + + Gets or sets the Completion page image. + + + + + Represents a collection of WizardPage objects. + + + + + Creates a WizardPageCollection instance. + + Owner of the element. + + + + Inserts a WizardPage before the RadWizard CompletionPage in the collection. + + + + + + Gets the owner RadWizardElement of the collection. + + + + + Represents a welcome page of RadWizard. + + + + + Creates a WizardWelcomePage instance. + + + + + Gets or sets the Welcome page image. + + + + + RadWizard is a control which helps you to break a complex process into separate steps. + + + + + Creates a RadWizard instance. + + + + + Returns true if the focus should go the navigation buttons when the user presses Shift and Tab + + + + + Returns true if the focus should go the navigation buttons when the user presses Left arrow + + + + + Returns true if the focus should go the navigation buttons when the user presses Right arrow + + + + + Returns true if the focus should go the navigation buttons when the user presses Tab + + + + + Selects next wizard page. + + + + + Selects previous wizard page. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of . + + + + Raises the event. + + An instance of . + + + + Raises the event. + + An instance of . + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Gets the RadWizardElement which encapsulates the UI representation and functionality of the control. + + + + + Gets or sets the mode of the control. + + + + + Gets or sets a value indication wether the Aero style should apply when the control is in Wizard Aero mode. + + + + + Gets the pages collection. + + + + + Gets or sets the welcome page. + + + + + Gets or sets the completion page. + + + + + Gets or sets the selected page. + + + + + Gets the command area element. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header element. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets the element containing the image of the completion pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + RadWizard consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadWizard consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Fires before the mode of RadWizard is changed. + + + + + Fires after the mode of RadWizard is changed. + + + + + Fires when the next command button is clicked. + + + + + Fires when the back command button is clicked. + + + + + Fires when the finish command button is clicked. + + + + + Fires when the cancel command button is clicked. + + + + + Fires when the help command button is clicked. + + + + + Fires before the selected page of RadWizard is changed. + + + + + Fires after the selected page of RadWizard is changed. + + + + + Encapsulates the UI representation and functionality of RadWizard. + + + + + Creates a RadWizardElement instance. + + + + + Refreshes the element's view. + + + + + Selects next wizard page. + + + + + Selects previous wizard page. + + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Raises the event. + + The owner. + An instance of containing event data. + + + + Gets or sets the mode of RadWizard. + + + + + Gets the view of RadWizard. + + + + + Gets the Owner RadWizard control. + + + + + Gets or sets a value indication wether the Aero style should apply when RadWizard is in Wizard Aero mode. + + + + + Gets the pages collection. + + + + + Gets or sets the welcome page. + + + + + Gets or sets the completion page. + + + + + Gets or sets the selected page. + + + + + Gets the command area element. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header element. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets the element containing the image of the completion pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Fires before the mode of RadWizard is changed. + + + + + Fires after the mode of RadWizard is changed. + + + + + Fires when the next command button is clicked. + + + + + Fires when the back command button is clicked. + + + + + Fires before the selected page of RadWizard is changed. + + + + + Fires after the selected page of RadWizard is changed. + + + + + Represents a view element of RadWizard in Wizard97 mode. + + + + + Base class for RadWizard view elements. + + + + + Creates a WizardView instance. + + + + + Gets the owner RadWizardElement of the view. + + + + + Gets the pages collection of the Owner RadWizardElement. + + + + + Gets the welcome page of the Owner RadWizardElement. + + + + + Gets the completion page of the Owner RadWizardElement. + + + + + Gets the selected page of the Owner RadWizardElement. + + + + + Gets the command area of the view. + + + + + Gets or sets the height of the command area. Negative value makes the command area autosize. + + + + + Gets the page header of the view. + + + + + Gets or sets the height of the page header. Negative value makes the page header autosize. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets or sets the image of the welcome pages. + + + + + Gets or sets a value indicating whether the image of the welcome pages should be visible. + + + + + Gets or sets the layout of the welcome pages image. + + + + + Gets or sets the background image shape of the welcome pages. + + + + + Gets the element containing the image of the welcome pages. + + + + + Gets or sets the image of the completion pages. + + + + + Gets or sets a value indicating whether the image of the completion pages should be visible. + + + + + Gets or sets the layout of the completion pages image. + + + + + Gets or sets the background image shape of the completion pages. + + + + + Gets or sets the visibility of the page header's title element. + + + + + Gets or sets the visibility of the page header's header element. + + + + + Gets or sets the icon of the page header. + + + + + Gets or sets the alignment of the page header's icon. + + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Creates a Wizard97View instance. + + + + + Creates a Wizard97View instance. + + Owner of the element. + + + + Gets the command area's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Represents a view element of RadWizard in Wizard Aero mode. + + + + + Creates a WizardAeroView instance. + + + + + Creates a WizardAeroView instance. + + Owner of the element. + + + + Gets the top element of RadWizard in Wizard Aero mode. + + + + + Gets the top element's back button. + + + + + Gets the command area's next button. + + + + + Gets the command area's cancel button. + + + + + Gets the command area's finish button. + + + + + Gets the command area's help button. + + + + + Mode of RadWizard. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the default size of the control. + + + The default of the control. + + + + + Gets the range selector element. + + + The range selector element. + + + + + Gets or Sets the orientation of the RangeSelector + + + + + Gets or sets the start of the selected range. + + + The start range. + + + + + Gets or sets the end of the selected range. + + + The end range. + + + + + Gets or sets the range selector view zoom start. + + + The range selector view zoom start. + + + + + Gets or sets the range selector view zoom end. + + + The range selector view zoom end. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Gets or sets how the associated chart will be updated. + + + Immediate, the chart will be updated while moving the thumb or the tracking element. Deferred, the chart will be updated upon releasing the thumb or the tracking element. + + + + + Gets or sets the associated control. + + + The associated control. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + RadRangeSelector consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadRangeSelector consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs when the value of left thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the value of right thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the whole selection of the controls is about to change. + + + + + Occurs when the whole selection of the controls is changed. + + + + + Occurs when scale of the controls is Initializing. + + + + + Gets the body element. + + + The body element. + + + + + Gets the scroll selector element. + + + The scroll selector element. + + + + + Gets the top left scales. + + + The top left scales. + + + + + Gets the bottom right scales. + + + The bottom right scales. + + + + + Gets or sets a value indicating whether [show scroll]. + + + true if [show scroll]; otherwise, false. + + + + + Gets or sets the scroll view position. + + + The scroll view position. + + + + + Gets or sets the orientation. + + + The orientation. + + + + + Gets or sets how the associated chart will be updated. + + + Immediate, the chart will be updated while moving the thumb or the tracking element. Deferred, the chart will be updated upon releasing the thumb or the tracking element. + + + + + Gets or sets the associated element. + + + The associated element. + + + + + Gets or sets the start range. + + + The start range. + + + + + Gets or sets the end range. + + + The end range. + + + + + Gets or sets the range selector view zoom start. + + + The range selector view zoom start. + + + + + Gets or sets the range selector view zoom end. + + + The range selector view zoom end. + + + + + Gets or sets the selection rectangle start. + + + The selection rectangle start. + + + + + Gets or sets the selection rectangle end. + + + The selection rectangle end. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Gets or sets the minimum selection length. + + + The minimum selection length. + + + + + Gets or sets the zoom factor. + + + The zoom factor. + + + + + Gets the total zoom factor. + + + The total zoom factor. + + + + + Gets or sets a value indicating whether [enable fast scrolling]. + + + true if [enable fast scrolling]; otherwise, false. + + + + + Occurs when the value of left thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the value of right thumb is changing. + + + + + Occurs when the value of left thumb is changed. + + + + + Occurs when the whole selection of the controls is about to change. + + + + + Occurs when the whole selection of the controls is changed. + + + + + Occurs when scale of the controls is Initializing + + + + Represents a repeat button element, and like all elements can be nested + in other telerik controls. RadRepeatButton is essentially a simple wrapper for + RadRepeatButtonElement. All UI and logic functionality is implemented in the + RadRepeatButtonElement class. RadRepeatButton acts to transfer events to and from + the RadRepeatButton class. + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Gets or Sets whether the RangeSelector's handles should be drawn + + + + + Represents a button on the . + + + + + Represents a base class + + + + + Represents the area where backstage pages are arranged. + + + + + Represents the area where backstage items are arranged. + + + + + Gets the that owns this element. + + + + + Gets a collection representing the items contained in this BackstageView. + + + + + Gets the back button element. + + + The back button element. + + + + + Represents a page on the on which you can add any type of controls. + + + + + Gets the that this page is attached to. + + + + + Represents a tab on the which has a page associated with it. + + + + + Indicates whether this tab is selected. + + + + + Gets or sets the page that is associated with this tab item. + + + + + Occurs when the selected state of this item has changed. + + + + + Occurs when the page associated with this item has changed. + + + + + + Represents a BackstageView control - the Office 2010 replacement of ApplicationMenu. + + + It can contain tabs, pages, buttons and all other RadItems as well. + + + + + + Shows the backstage view mimicking popup. + + The location on which the backstage will be shown. + The RadRibbonBarElement that the backstage view is attached to. + + + + Shows the backstage view mimicking popup. + + + + + + Hides the backstage view. + + + + + Raises the BackstageViewClosed event. + + + + + Raises the BackstageViewClosing event. + + + + + Raises the BackstageViewOpened event. + + + + + Raises the BackstageViewOpening event. + + + + + Fires when the backstage view is closed. + + + + + Fires when the backstage view is about to close. + + + + + Fires when the backstage view is opened. + + + + + Fires when the backstage view is about to open. + + + + + Fires when an item from the items panel is clicked. + + + + + Fires when the selected tab is about to change. + + + + + Fires when the selected tab is changed. + + + + + Gets or sets a value that indicates whether the position of the BackstageView should be + automatically adjusted to the bottom of the application button of the owner . + + + + + Gets or sets the selected tab. + + + + + Indicates whether the backstage view is opened. + + + + + Gets the backstage element. + + + + + Gets the RadRibbonBar element that the backstage view is attached to. + + + + + Represents the main visual element of the . + + + + + Raises the event. + + The backstage item. + + + + Raises the event. + + The backstage tab item. + + + + + Raises the event. + + The new item. + The old item. + + + + Raises the event. + + The instance containing the event data. + + + + Gets the on which the backstage items are arranged. + + + + + Gets the on which the backstage pages are arranged. + + + + + Gets the caption element. + + + The caption element. + + + + + Gets or sets the selected tab. + + + + + Gets a collection representing the items contained in this backstage view. + + + + + Gets or sets a value indicating whether this backstage view should be opened is full screen. + + + true if full screen; otherwise, false. + + + + + Fires when an item from the items panel is clicked. + + + + + Fires when the selected tab is about to change. + + + + + Fires when the selected tab is changed. + + + + + Represents event data for the following events: OnTabSelecting + + + + + Creats a new instance of the class. + + The tab which is currently selected + The tab that is being selected. + + + + Gets the tab which is currently selected. + + + + + Gets the tab that is being selected. + + + + + Represents a toolstrip overflow button element. + + + + + Creates child elements. + + + + + Shows small arrows. + + + + + + Gets the drop down button arrow position. + + + + + Gets the overflow primitive. + + + + + Represents the method that will handle the PageViewInstanceCreated events of RadDock. + + The event sender. + Instance of PageViewInstanceCreatedEventArgs. + + + + Provides data for the PageViewInstanceCreated event. + + + + + Gets the created RadPageViewElement. + + + + + Initializes a new instance of the PageViewInstanceCreatedEventArgs class. + + The created RadPageViewElement. + + + + Gets the index at which the page was before the change. + + + + + Gets the index at which the page is currently at. + + + + + Determines whether the event is canceled or may continue. + + + + + Gets the index the page is currently at. + + + + + Gets or sets the new index to be applied to the associated page. + + + + + Represents a control that has a collection of pages and displays one page at a time. + + + + + Temporary suspends event raising. + + + + + Resumes event raising, previously suspended by a SuspendEvents call. + + + + + Occurs when an item is about to be dropped over another item. + + + + + Occurs when an item was dropped over another item. + + + + + Raised when page item is about to be created. + + + + + Raised when the current mode of the view is about to change. Cancelable. + + + + + Raised when the current mode of the view is about to change. Cancelable. + + + + + Raised when the current mode of the view has changed. + + + + + Raised when the built-in ItemsList menu is about to be displayed. Cancelable. + + + + + Raised when the built-in ItemsList menu is displayed. + + + + + Raised when a new page is about to be added to the view. Cancelable. + + + + + Raised when a new page has been successfully added to the view. + + + + + Raised when a page is about to be removed from the view. Cancelable. + + + + + Raised when a page has been successfully removed from the view. + + + + + Raised when a page is about to change its index. Cancelable. + + + + + Raised when a page's index has been successfully changed. + + + + + Raised when all pages are about to be removed from the view. Cancelable. + + + + + Raised when all pages have been successfully removed from the view. + + + + + Raised when the content of a is expanding. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is expanded. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is collapsing. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when the content of a is collapsed. + This event is only raised when the view mode of the control is set + to ExplorerBar. + + + + + Raised when currently selected page has changed. + + + + + Raised when currently selected page has changed. + + + + + Determines whether event raising is currently enabled. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the BackColor of all pages. + + + + + Gets or sets the current mode of the view. + + + + + Gets or sets the RadPageViewPage instance that is currently selected within the view. + + + + + Gets the collection of pages for this view. + + + + + Gets the current RadPageViewElement instance that represents the UI of the view. + + + + + Gets or sets the default RadPageViewPage that will be loaded after EndInit of the control. + If the DefaultPage is null the currently selected page will be loaded. + + + + + Gets or sets the text orientation of the item within the owning RadPageViewElement instance. + + + + + Gets or sets the size of the items when ItemSizeMode of RadPageView is PageViewItemSizeMode.EqualSize. + + + + + RadPageView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadPageView consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Gets or sets whether the pages will be wrapped around when performing selection using the arrow keys. + If the property is set to true, pressing the right arrow key when the last page is selected will result in selecting the first page. + + true if [wrapped around]; otherwise, false. + + + + Gets the instance that this object is associated with. + + + + + Gets the RadPageViewPage instance that matches the specified name. + + + + + + + Gets the RadPageViewElement instance that owns this instance. + + + + + Gets the element which hosts and arranges all the items within the strip. + + + + + Gets the element which hosts and arranges all the items within the strip. + + + + + Gets the scroll offset applied to the strip. + + + + + Gets or sets the MultiLineItemFitMode.This mode determines how the multiLine layout will behave when control is resizing. + + + + + Defines the possible alignment of the strip in a RadPageViewStripElement. + + + + + Defines the alignment of items within a strip item layout. + + + + + Items are aligned starting from the near edge. This is Left for Left-to-right layout and Right for Right-to-left layout. + + + + + Items are centered within the layout. + + + + + Items are aligned starting from the far edge. This is Right for Left-to-right layout and Left for Right-to-left layout. + + + + + Defines possible modes to fit items within a RadPageViewStripElement instance. + + + + + Each item uses its desired size. + + + + + Items are shrinked if their size exceeds the available one. + + + + + Items are expanded if their size is less than the available one. + + + + + Items are either shrinked or expanded when needed. + + + + + Items are stretched in the available height of their parent container. + + + + + Items are arranged in multiLine layout. + + + + + Defines which internal buttons will be present for a RadPageViewStripElement instance. + + + + + No buttons are available. + + + + + Buttons are automatically displayed when needed. + + + + + Allows strip to be scrolled left when not enough space is available. + + + + + Allows strip to be scrolled right when not enough space is available. + + + + + Allows currently selected item to be closed. + + + + + Displays all available items in a drop-down manner. + + + + + Both left and right scroll buttons are present. + + + + + Both scroll buttons and Close button are present. + + + + + ItemList and Close buttons are present. + + + + + All buttons are present. + + + + + Defines how an item is sized within a RadPageViewElement instance. + + + + + Each item's desired size is applied. + + + + + All items are with equal width. + + + + + All items are with equal height. + + + + + All items are with equal size. + + + + + Defines the content orientation of in RadPageViewItem. + + + + + Orientation is automatically selected depending on the item alignment within the owning RadPageViewElement. + + + + + Item's content is horizontally oriented. + + + + + Item's content is rotated by 180 degrees. + + + + + Item's content is rotated by 90 degrees. + + + + + Item's content is rotated 270 degrees. + + + + + Defines methods and properties for a collapsible element. For example, + RadRibonBarChunk is a collapsible element. + + + + + Create a Adapter if possible for Item + + + The wrapper for Item + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets a boolean value determining whether the layout panel + will collapse its content according to its size. + + + + + This class represents the drop down button which is shown when + a is collapsed. This drop down button + holds the content of the collapsed group in its popup. + + + + + This class represents the popup of a . + The contents of the group are placed in this popup when the group is collapsed. + + + + + This class represents a separator line which can be put between + items in a or . + This separator is built of two instances which are layout + together to allow two-coloured separator appearance. + + + + + Gets or sets the orientation of the separator. A separator + can be positioned vertical or horizontal. + + + + + Gets an instance of the class + which represents the primitive that is used to paint the separator. + + + + + This class represents the popup which is displayed when a collapsed tab + is selected in the RadRibbonBar control. + + + + + Creates an instance of the RibbonBarPopup class. + + + + + + Close the popup upon mouse click unless + the user has clicked on a RadElement + that opens another popup. + + + + + + Gets a boolean value indicating + whether the ribbon popup is shown. + + + + + Gets the owner RadRibbonBarElement. + + + + + Represents a ribbon tab. Ribbon tabs are used to manage between different + groups of related operations, for example, in a text editor application between + write and insert functionality. + + + + + Initializes a new instance of the RadRibbonBarCommandTab class. + + + + + This method paints the left RibbonTab shadow that appears on the right of the tab. + The method paints two 1 pixel wide vertical linear gradient lines that + create a shadow effect. The colors of the shadow can be styled by + the Visual Style Builder. + + + + + This method paints the right RibbonTab shadow that appears on the right of the tab. + The method paints two 1 pixel wide vertical linear gradient lines that + create a shadow effect. The colors of the shadow can be styled by + the Visual Style Builder. + + + + + Gets or sets the first right inner color of the RibbonTab's shadow. + + + + + Gets or sets the second right inner color of the RibbonTab's shadow. + + + + + Gets or sets the first right outer color of the RibbonTab's shadow. + + + + + Gets or sets the second right outer color of the RibbonTab's shadow. + + + + + Gets or sets the first left inner color of the RibbonTab's shadow. + + + + + Gets or sets the second left inner color of the RibbonTab's shadow. + + + + + Gets or sets the first left outer color of the RibbonTab's shadow. + + + + + Gets or sets the second left outer color of the RibbonTab's shadow. + + + + + The RibbonTab tab item + + + + + Gets an instance of the class + that represents the content layout of the tab. In this layout all + chunks visible to the end user are put. + + + + + Gets or sets the ContextualTabGroup of this CommandTab. + + + + + Gets the nested items. + + + + + Exposes the + scroll button direction. + + + + + Indicates left scroll button direction. + + + + + Indicates up scroll button direction. + + + + + Indicates right scroll button direction. + + + + + Indicates down scroll button direction. + + + + Defines the scrolling types of the RadScrollBar control. + + + + Indicates horizontal scroll type. + + + + + Indicates vertical scroll type. + + + + + Defines the possible alignment of the TabStripElement in a TabStripPanel. + + + + + The panel itself decides where the element is positioned. + + + + + The element is positioned vertically on the left edge. + + + + + The element is positioned horizontally on the top edge. + + + + + The element is positioned vertically on the right edge. + + + + + The element is positioned horizontally on the bottom edge. + + + + + Defines the possible orientation of text within a TabStripPanel. + + + + + Default orientation is used, depending on the alignment of the TabStrip. + + + + + Text is oriented horizontally. + + + + + Text is oriented vertically. + + + + Creates the main panel element and adds it in the root element. + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this speciffic control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets the object that encapsulates sizing information for this panel. + + + + + Gets the instance of RadPanelElement wrapped by this control. RadPanelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadPanel. + + + + + Applies the desired splitter width across all splitters and delegates the event to all descendant RadSplitContainer instances. + This method is used internally. + + + + + + Applies theme to all SplitterElements. + + + + + Provides a routine which merges a container with its parent (if appropriate). + The purpose of this logic is to remove internally created containers when they are not needed. + This method is used internally. + + + + + this method is used internally. + + + + + Gets SplitterElement which rectangle conttains the specified Point. + + Point to test, in SplitContainer client coordinates + SplitterElement if found, null otherwise + + + + Determines whether the container can be selected at design-time. This method is used internally. + + + + + + Updates the splitter, associated with the specified index of a child SplitPanel. + + The layout info, containing information about the operation. + The index of the panel for which the splitter should be updated. + The bounding rectangle of the splitter. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets a value indicating the splitter distance. Never set the value of this property directly. + + + + + Gets a value indicating whether the bounds of the split panels should be updated immediately on drag. + + + + + Gets the split container element. + + + + + Determines whether the container is a target of automatic defragment operation. + This property is internally used by the framework and is not intended to be directly used in code. + + + + + Gets or sets a value indicating the horizontal or vertical orientation of + the Telerik.WinControls.UI.RadSplitContainer panels. + + + + + Gets or sets the width of a single splitter on the container. + Specify zero to prevent displaying any splitters at all. + + + + + Gets or sets the layout strategy that arranges all the visible SplitPanel children. + + + + + Enable and Disable navigation buttons. + + + + + Determines whether the panels can be collapsed when clicking twice on splitter or click once on navigation button. + + + + + This property is not relevant for this class. + + + + + Occurs when any of the splitters is moving. + + + + + Occurs when any of the splitters is moved. + + + + + Occurs when some panel is collapsing. + + + + + Occurs when some panel collapsed. + + + + + Gets or sets the width of each splitter within the container. + + + + + Encapsulates the layout information for a layout pass of a RadSplitContainer. + + + + + Gets a list with all the panels that are target of a layout operation. + + + + + Gets a list with all the panels that are target of an auto-size logic. + + + + + Gets or sets the auto-size factor which depends on the auto-sizable targets per container. + + + + + Gets or sets the length (width or height, depending on the orientation) that is avilable for layout. + + + + + Gets or sets the length vailable for all panels with AutoSize mode. + + + + + Gets or sets the length of all panels which are with Absolute size mode. + + + + + Gets or sets the total length, reserved for splitters. + + + + + Gets or sets the total length, reserved for splitters. + + + + + Gets or sets the content rectangle that represents the layoutable area of the container. + + + + + Gets or sets the orientation of the associated container. + + + + + Defines the layout strategy for a RadSplitContainer. + + + + + Entry point for the entire layout operation. + Called in the OnLayout override of RadSplitContainer. + + + + + + Applies a correction in both of the specified panels, after a successful spliter drag operation. + + The panel left (top) on the splitter. + The panel right (bottom) on the splitter. + The dragged distance. + + + + Updates the layout info for a pending layout operation. + + + + + + Performs the core measure logic. + This is the pass which determines the desired size for each panel. + + + + + Performs the core layout logic. Updates each panel's bounds, keeping in mind restrictions like Minimum and Maximum size. + + + + + + Gets an integer value for the specified size (depending on the orientation of the current laid-out container). + + + + + + + Gets a single-precision value from the provides SizeF struct. + + + + + + + Gets the available length left for the panel at the specified index. + + + + + + + + + Gets the minimum size for the specified split panel. + If it is a container, the sum of minimum sizes of all child panels is calculated. + + + + + + + Special measure logic, used when there is at least one fill panel in the layout info. + + + + + Default measure logic. + + + + + Apply constraints on measured length for each layout target, + having in mind MinSize, MaxSize, available size and other conditions. + + + + + Final pass that determines whether we have less + or more measured length than the currently available one and performs the needed corrections. + + + + + Updates the provides panel after a splitter drag operation. + + + + + + + + Propagates a splitter change down to all children of the specified container. + + + + + + Gets the viewport origin for the current layout operation. + + + + + + Gets a list with all the descendant panels which SizeMode is SplitPanelSizeMode.Fill + + + + + + Gets the layout info associated with this layout strategy. + + + + + Gets or sets the Type that is treated as Root for the layout strategy. + Allows for defining how deep the search for a Fill panel should be. + + + + The main element of the RadPanel control. + + + Create the elements in the hierarchy. + + + + Gets the SplitPanel instance associated with the event. + + + + + Gets the Control instance, which Controls collection has changed. + + + + + Gets the child Control instance, inserted or removed in the Parent's collection. + + + + + Gets the action of the notification. + + + + + Defines the possible actions for a ControlTreeChanged event. + + + + + A control has been added. + + + + + A control has been removed. + + + + + Encapsulates all size-related properties for a SplitPanel instance residing on a RadSplitContainer. + + + + + Gets or sets the minimum size for the associated SplitPanel. + + + + + Gets or sets the maximum size for the associated SplitPanel. + + + + + Gets or sets the amount (in pixels) applied to the size of the panel by a splitter. + + + + + Gets or sets the scale factor for relatively-sized panels. + + + + + Gets or sets the scale factor to be used by auto-sized panels. + Usually this is internally updated by a splitter resize. + + + + + Gets or sets the size mode for the owning panel. + + + + + Gets or sets the size used when size mode is Absolute. + + + + + Gets or sets the desired (measured) size for the owning panel. + This field is internally updated by a SplitContainerLayoutStrategy upon a layout operation. + + + + + Gets the current DPI scaling. + + + + + Defines the posiible size modes for a split panel residing on a RadSplitContainer. + + + + + The panel is auto-sized. Its size depends on the size of its container + as well as the number of all auto-sizable panels within the container. + + + + + The panel has fixed size, regardless of the size of its container. + + + + + The panel occupies a relative amount of its container's available size. + + + + + A special mode, used to specify that a certain panel should fill all the available auto-sizable area. + + + + + Notifies for a change in the Image member of this panel. + + + + + + Determines whether the ToolTip property should be serialized. + + + + + + Gets or sets the Image associated with the panel. + + + + + Gets or sets the tooltip to be displayed when the mouse hovers the tabitem of this panel. + + + + + Represents an image button. + + + + + Gets or sets the image that is displayed on a button element when it is hovered. + + + + + Gets or sets the image list index value of the image displayed on the button control when it is hovered. + + + + + Gets or sets the key accessor for the image for hovered state in the ImageList. + + + + + Gets or sets the image that is displayed on a button element when it is clicked. + + + + + Gets or sets the image list index value of the image displayed on the button control when it is clicked. + + + + + Gets or sets the key accessor for the image for clicked state in the ImageList. + + + + + Determines whether the RadPageViewItem is currently selected (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently pinned (associated with the SelectedPage of the owning RadPageView). + + + + + Determines whether the RadPageViewItem is currently set as preview. + + + + + Gets the TabStripButtonItem that represents the CloseButton in this TabItem. May return null if ShowCloseButton is false. + + + + + Gets the TabStripButtonItem that represents the CloseButton in this TabItem. May return null if ShowCloseButton is false. + + + + + Determines whether the CloseButton of the item will be displayed or not. + + + + + Determines whether the CloseButton of the item will be displayed or not. + + + + + Gets or sets the offset of the close button from the item's ImageAndTextLayout panel. + + + + + Disables the selection in the strip panel. + + + + + Handles the click of a CloseButton on a child TabStripItem. + Closes the corresponding TabPanel by default. + + + + + + Temporary suspends notifications like TabSelecting and TabSelected from the parented RadTabStripElement. This method is used internally. + + + + + Callback to notify the panel that a control has been successfully removed, tab strip has been updated and any additional update is allowed. + + + + + + Resumes previously suspended notifications like TabSelecting and TabSelected from the parented RadTabStripElement. This method is used internally. + + + + + Determines whether the tabstrip element is visible. + + + + + + Forces layout update by explicitly re-setting the current bounds and performing a layout pass. + + + + + Suspends the focus change in the strip panel. + + + + + Gets the default alignment of the TabStripElement. + + + + + Gets the default text orientation. + + + + + Gets or sets the text orientation of the tab used to switch among child panels. + + + + + Determines whether each TabStripItem will display a CloseButton, which allows for explicit close of its corresponding panel. + + + + + Determines whether each TabStripItem will display a CloseButton, which allows for explicit close of its corresponding panel. + + + + + Gets the point where the mouse was pressed and a drag operation has been instanciated. + + + + + Determines whether the tab used to navigate among child panels is displayed. + + + + + Gets or sets the alignment of the tab used to switch among child panels. + + + + + Determines whether the child panels' Index update is currently locked. This property is used internally. + + + + Represents a Panel that is capalbe to host standard Windows Forms controls. + + + Initializes a new instance of the RadTabStripContentPanel class. + + + + Gets the item associated with the panel. + + + + Gets or sets the background color of the tabstrip layout. + + + + Defines the possible positions of the tab items + relatively to the base area. + + + + + The tab items will appear on the left of the base area. + + + + + The tab items will appear on the right of the base area. + + + + + The tab items will appear on the top of the base area. + + + + + The tab items will appear on the bottom of the base area. + + + + + Gets or sets SliderArea's first background color. + + + + + Gets or sets SliderArea's second background color. + + + + Gets or sets RadTrackBar's ticks color. + + + Gets or sets the gradient angle of the SliderArea. + + + Gets or sets whether the TrackBar should fit to available size. + + + Gets or sets whether the SlideArea should be visible. + + + Gets or sets Ticks Visibility. + + + + The number of positions the slider moves in response to mouse clicks. + + + + + The number of positions the slider moves in response to mouse clicks. + + + + + The number of positions between tick marks. + + + + + Gets or sets TrackBar's orientation. + + + + + Gets or sets the width of TrackBar's SlideArea. + + + + + Indicates the tick style of the progress bar. Possible values are members of + %TickStyles enumeration:Telerik.WinControls.Enumerations.TickStyles%: none, + topleft, BottomRight, and both. + + + + Gets or sets a minimum int value for the trackbar position. + + + Gets or sets a maximum int value for the trackbar position. + + + + Gets or sets the position of the Slider. + + + + Initializes a new instance of the TrackbarThumb class. + + + + CreateChildElements + + + + + GetPreferredSizeCore + + + + + + + + gets or sets Thumb's width + + + + + + gets or sets whether the trackbar's thumb should use its default shape + + + + + gets ParentTrackBarElement + + + + + Represents a track bar. The trackbar class is essentially a simple wrapper + for the RadTrackBarElement. All UI and + logic functionality is implemented in the + RadTrackBarElement class. The RadTrackBar acts + to transfer the events to and from its corresponding + RadTrackBarElement instance. The + RadTrackBarElement may be nested in other + telerik controls. + + + + + Creates the associated TrackBar element. + + RadTrackBarElement + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadTrackBarElement wrapped by this control. RadTrackBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTrackBar. + + + + + Gets or sets a minimum value for the trackbar position + + + + + Gets or sets a maximum value for the trackbar position + + + + + Gets or Sets TrackBar's value + + + + + Gets or Sets whether the TrackBar's ticks should be drawn + + + + + Gets or Sets the orientation of the TrackBar + + + + + Gets or Sets the number of positions that the trackbar moves in response to mouse clicks. + + + + + Gets or Sets the number of positions that the trackbar moves in response to keyboard arrow keys and the trackbar buttons. + + + + + Gets or Sets the orientation of the text associated with TrackBar. Whether it should appear horizontal or vertical. + + + + + Gets or Sets whether the TrackBar's labels should be drawn + + + + + Gets or Sets whether the TrackBar's handles should be drawn + + + + + Gets or Sets the number of positions between large tick marks + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the Range collection. + + + + + Gets or Sets the Snap mode of the TrackBar + + + + + Gets or Sets TrackBar's Size + + + + + Gets or Sets whether the SlideArea should be visible + + + + + Gets or Sets whether the selected thumb should move on arrow key press. + + + + + Occurs when the value of the controls changes + + + + + Occurs when a Label needs to be formatted. + + + + + Occurs when a Tick needs to be formatted. + + + + Represents a trackbar element. RadTrackBarElement can be nested in other + telerik controls. Essentially, the RadTrackBar is a simple wrapper for the + RadTrackBarElement. The former transfers events to and from its corresponding + RadTrackBarElement instance. + + + + Gets the instance of TrackBarBodyElement. TrackBarBodyElement + is the core element in the hierarchy tree and encapsulates the Scale and indicators functionality. + + + + + Gets instance of TrackBarArrowButton + + + + + Gets instance of TrackBarArrowButton + + + + + Gets or sets a minimum value for the trackbar position + + + + + Gets or sets a maximum value for the trackbar position + + + + + Gets or Sets TrackBar's value + + + + + Gets or Sets whether the TrackBar's ticks should be drawn + + + + + Gets or Sets TrackBar's Orientation + + + + + Gets or Sets whether the SlideArea should be visible + + + + + Gets or Sets the number of positions that the trackbar moves in response to mouse clicks. + + + + + Gets or Sets the number of positions that the trackbar moves in response to keyboard arrow keys and the trackbar buttons. + + + + + Gets or Sets Ticks Visibility + + + + + Gets or Sets TrackBar's sliders area color + + + + + Gets or Sets TrackBar's ticks color + + + + + Gets or Sets TrackBar's sliders area color + + + + + Gets or Sets the gradient angle of the SliderArea + + + + + Gets or Sets TrackBar's thumbWidth + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets the width of TrackBar's SlideArea + + + + + Gets or Sets whether the TrackBar's labels should be drawn + + + + + Gets or Sets whether the TrackBar's handles should be drawn + + + + + Gets or Sets the number of positions between large tick marks + + + + + Gets or Sets the number of positions between small tick marks + + + + + Gets or Sets TrackBar's Size + + + + + Gets or Sets the Snap mode of the TrackBar + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the Range collection. + + + + + Gets or Sets the selected thumb + + + + + Gets or Sets whether the selcted thumb should move on arrow key press. + + + + + Occurs when the value of the controls changes + + + + + Occurs when the trackBar slider moves + + + + + Occurs when a Label needs to be formatted. + + + + + Occurs when a Tick needs to be formatted. + + + + + Represents a core range object that contains the start and end. + + + + + Creates a new object that is a copy of the current instance. + + + + + + Gets or Sets the start of the range. + + + + + Gets or Sets the end of the range. + + + + + Gets whether the range contains selected thumb" + + + + + Gets the Owner Collection + + + + + Gets or Sets the Name. + + + + + Gets or Sets the ToolTipText + + + + + Gets or Sets the Tag. + + + + + Occurs when a property value changes. + + + + + Represents a collection of + + + + + Check thumb move. + + value + isStart + range + bool + + + + Perform Thumb Move in SingleThumb Mode. + + Value + bool + + + + Returns an enumerator that iterates through the collection. + + IEnumerator + + + + Determines the index of a specific item in the Collection + + item + int + + + + Inserts an item to the Collections at the specified + index. + + index + item + + + + Removes the TrackBarRange item at the specified index. + + index + + + + Add range to the System.Collections.Generic.ICollection + + item + + + + Removes all items except the first from the System.Collections.Generic.ICollection + + + + + Determines whether the System.Collections.Generic.ICollection contains a specific value. + + + bool + + + + Copies the elements of the System.Collections.Generic.ICollection to an System.Array, starting at a particular System.Array index. + + array + arrayIndex + + + + Removes the first occurrence of a specific object from the Collection. + + item + bool + + + + Adds an item to the System.Collections.Generic.ICollection. + + value + int + + + + Determines whether the System.Collections.Generic.ICollection contains a specific value. + + value + bool + + + + Determines the index of a specific item in the System.Collections.IList. + + value + int + + + + Inserts an item to the System.Collections.IList at the specified index. + + index + value + + + + Removes the first occurrence of a specific object from the System.Collections.IList. + + value + + + + Copies the elements of the System.Collections.ICollection to an System.Array, + starting at a particular System.Array index. + + array + index + + + + Suspends all property and collection notifications. + + + + + Resumes property and collection notifications. + + + + + Gets or Sets a maximum value for the trackbar position + + + + + Gets or Sets a minimum value for the trackbar position + + + + + Gets or Sets the Mode of the TrackBar + + + + + Gets the RadTrackBarElement which owns this collection + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when a property value changes. + + + + + Gets or sets the Range at the specified index. + + index + TrackBarRange + + + + Gets or sets the Range at the specified name. + + text + TrackBarRange + + + + Gets the number of elements contained in the Collection + + + + + Gets a value indicating whether the Collection is read-only. + + + + + Gets a value indicating whether the System.Collections.IList has a fixed + size. + + + + + Gets or sets the element at the specified index. + + index + object + + + + Gets a value indicating whether access to the System.Collections.ICollection + is synchronized (thread safe). + + + + + Gets an object that can be used to synchronize access to the System.Collections.ICollection. + + + + + Gets the nodes. + + + + + + Sets the current. + + The node. + + + + Resets this instance. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Suspends the update. + + + + + Resumes the update. + + + + + Gets or sets a value indicating weather the changes in the child collections + in Object Relational Binding mode will be reflected automatically. + + + + + Gets the tree view. + + The tree view. + + + + Gets a value indicating whether this instance is suspended. + + + true if this instance is suspended; otherwise, false. + + + + + Initializes a new instance of the class. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + The checked member. + + + + Initializes a new instance of the class. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent member. + The child member. + The value member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent member. + The child member. + + + + Initializes a new instance of the class. + + The data source. + The display member. + The parent child member. + + + + Gets or sets the name of the relation. + + The name of the relation. + + + + Gets or sets the data source. + + The data source. + + + + Gets or sets the data member. + + The data member. + + + + Gets or sets the display member. + + The display member. + + + + Gets or sets the parent member. + + The parent member. + + + + + Gets or sets the child member. + + The child member. + + + + + Gets or sets the value member. + + The value member. + + + + Gets or sets the checked member. + + The checked member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent child member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent member. + The child member. + + + + Adds the specified data source. + + The data source. + The display member. + The parent member. + The child member. + The value member. + + + + Adds the specified data source. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + + + + Adds the specified data source. + + The data source. + The data member. + The display member. + The parent member. + The child member. + The value member. + The checked member. + + + + Clears this instance. + + + + + Refreshes this instance. + + + + + Adds the tree node with specified text. + + The text. + + + + + Adds the specified text. + + The text. + Index of the image. + + + + + Adds the specified text. + + The text. + The image key. + + + + + Adds the specified key. + + The key. + The text. + Index of the image. + + + + + Adds the specified key. + + The key. + The text. + The image key. + + + + + Removes the specified name. + + The name. + + + + Determines whether [contains] [the specified name]. + + The name. + + true if [contains] [the specified name]; otherwise, false. + + + + + Indexes the of. + + The name. + + + + + Gets the owner. + + The owner. + + + + Gets the tree view. + + The tree view. + + + + Gets the with the specified name. + + + + + + Defines the expanding animation style of nodes in a + RadTreeView Class. + + + + + Indicates animation style changing the opacity of the expanding nodes. + + + + + Indicates no animation. + + + + + Specifies the type of option list formed by child nodes. + + + + + All children have a check box. + + + + + All children have a radio button. + + + + + Every child can specify whether it has a check box or a radio button. + + + + + Defines the style of the lines between the nodes in a + RadTreeView Class. + + + + Specifies a solid line. + + + Specifies a line consisting of dashes. + + + Specifies a line consisting of dots. + + + Specifies a line consisting of a repeating pattern of dash-dot. + + + Specifies a line consisting of a repeating pattern of dash-dot-dot. + + + + Gets the error text. + + The error text. + + + + Show expander + + + + + Gets the checked mode. + + + The checked mode. + + + + + TreeViewSpreadExport is a powerful exporting API, allowing to export RadTreeView to XLSX, PDF, CSV, and TXT format, utilizing the Document Processing Libraries. + + + + + Initializes a new instance of the class. + + The RadTreeView to export. + + + + Initializes a new instance of the class. + + The RadTreeView to export. + The export format. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Starts an export operation. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The file name where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an export operation, in the specified sheet. If such sheet does not exist, it gets created. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Starts an export operation that runs in a background thread. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + + + + Starts an async export operation, in the specified sheet. If such sheet does not exist, it gets created. + Note that if ExportVisualSettings is true, collecting the visual styles from the RadTreeView will still execute on the UI thread. + + The stream where data will be exported. + Instance of ISpreadExportRenderer class. + Name of the sheet. + + + + Cancels an asynchronous export operation. + + + + + Check if date is supported from MS Excel + + + True if value is supported + + + + Gets or sets the name of the sheet. + + + The name of the sheet. + + + + + Specifies whether a file will be exported as a new file, or if a file with the same name already exists at the specified path, a new sheet will be added to it. + + + ExportAsNewSheetInExistingFile - will add a new sheet to the specified file, if it exists + ExportInNewFile - will create/override the specified file + + + + + Gets or sets a value indicating whether to export images. + + + + + Gets or sets a value indicating whether to export child nodes grouped. + + + + + Gets or sets the format of the exported file - XLSX, PDF, CSV or TXT. + + + The file extension. + + + + + Gets or sets a value indicating whether the visual settings should be exported. + + + true if visual settings are exported; otherwise, false. + + + + + Gets or sets the maximum number of rows per sheet. + + + The sheet max rows. + + + + + Gets or sets the indent of child nodes. + + + + + Gets or sets a value indicating how children of collapsed nodes are exported. + + + + + Occurs for every cell that is being exported. + + + + + Occurs when the export process completes. + + + + + Occurs when the progress of an async export operation changes. + + + + + Occurs when an async export operation is completed. + + + + + Represents the method that will handle the CellFormatting event. + + The sender. + The instance containing the event data. + + + + Provides event arguments for the CellFormatting event + + + + + Initializes a new instance of the class. + + Export cell for further formatting. + The exporting tree node of RadTreeView. + The row index in the worksheet. + + + + Gets the row index in worksheet. + + + + + Gets export cell for further formatting. + + + + + Gets the exporting tree node. + + + + + RadbreadCrumb consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Gets a collection of items which are children of the TabStrip element. + + + + + Initializes a new instance of the TreeViewCheckboxEditor class. + + + + + Begins the edit. + + + + + Toggles the checkbox state. + + + + + Translates system key down events to the owner element. + + A System.Windows.Forms.KeyEventArgs that contains the event data. + + + + Gets or sets the editor value. + + + + + + Gets the is modified. + + The is modified. + + + + Gets the type of the editor value + + System.Boolean + + + + Initializes a new instance of the DataFilterCheckboxEditorElement class. + + A instance. + + + + Get the checkmark element. + + + + + Gets or sets the checkmark state. + + + + + Represents a date time editor in RadTreeView. + + + + + Represents a DropDownList editor in RadTreeView. + + + + + Represents a spin editor in RadTreeView. + + + + + Represents the method that will handle events in the hierarchy traverser. + + + + + + + Provides data for all events used in the hierarchy traverser. + + + + + Initializes a new instance of the class. + + The content. + + + + Gets or sets a value indicating whether the object instance to be processed by the hierarchy traverser. + + true if [process hierarchy object]; otherwise, false. + + + + Gets the node. + + The node. + + + + + + + + + Gets or sets the font. + + The font. + + + + Gets or sets the color of the fore. + + The color of the fore. + + + + Gets or sets the color of the border. + + The color of the border. + + + + Gets or sets the back color4. + + The back color4. + + + + Gets or sets the back color3. + + The back color3. + + + + Gets or sets the back color2. + + The back color2. + + + + Gets or sets the color of the back. + + The color of the back. + + + + Gets or sets the number of colors. + + The number of colors. + + + + Gets or sets the gradient percentage2. + + The gradient percentage2. + + + + Gets or sets the gradient percentage. + + The gradient percentage. + + + + Gets or sets the gradient angle. + + The gradient angle. + + + + Gets or sets the gradient style. + + The gradient style. + + + + Gets or sets the text alignment. + + The text alignment. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The table element. + + + + Gets or sets the size of the arrow. Used to calculate pixel-perfect results. + + + + + Gets or sets a value determining the shape of the link + + + + + Gets or sets a value determining the style of the link lines + + + + + Defines the differen link styles + + + + + + + + This constant is used internally. + + + + + Initializes a new instance of + + + + + + Initializes a new instance of + + + + + Raises the ModifiedChanged event. + + + + + Appends the given text + + + + + + Clears the editing control's text + + + + + Clears and undoes the text + + + + + Copies the selected text + + + + + Cuts the selected text + + + + + clears the selection + + + + + Gets a character from a given point + + + + + + + Gets the index of a character at a given point + + + + + + + gets the index of the first char in a given line + + + + + + + gets the first char index at the current line + + + + + + Gets a line number from a char index + + + + + + + Gets the position from a char index + + + + + + + pastes the text in the clipboard + + + + + Pasted a given text + + + + + + scrolls the textbox to the caret position + + + + + Makes a selection in a given range specified by a start position and selection length + + + + + + + selects the whole text + + + + + Undoes the last edit operation in the text box. + + + + + Raises the AcceptsTabChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the MultilineChanged event. + + + + + Raises the PreviewKeyDown event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets whether the control can receives the focus when tab is pressed + + + + + Gets or sets whether the text box accepts the return key + + + + + Gets or sets whether the text box accepts the tab key + + + + + Gets if the text box could undo its value + + + + + Indicates if all characters should be left alone or converted + to upper or lower case + + + + + Gets or sets the selection in the text box + + + + + The lines of the text in a multi-line edit, as an array of string values + + + + + Specifies the maximum length of characters which could be entered + + + + + Indicates the visibility level of the object + + + + + The text could span more than a line when the value is true + + + + + Gets or sets the char used for entering passwords + + + + + Gets the preferred height + + + + + Indicates whether the text could be changed or not + + + + + The scrollbars which will appear if the editing control is in multiline mode + + + + + the text which is in selection + + + + + the length of the selection + + + + + Gets or sets the start selection position + + + + + Indicates whether the shortcuts are enabled. + + + + + Gets or sets the alignment of the text in the editing control + + + + + Indicates the text length + + + + + Indicates if lines are automatically word-wrapped for + multiline editing controls + + + + + Gets or sets the prompt text that is displayed when the TextBox contains no text + + + + + Gets or sets the color of prompt text that is displayed when the TextBox contains no text + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets the TextBox control hosted in this item. + + + + + Gets or sets the vertical stretch value + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + This property is used internally. + + + + + Occurs when the TabStop property has changed. + + + + + Occurs when the AcceptsTab property has changed. + + + + + Occurs when the HideSelection property has changed. + + + + + Occurs when the Modified property has changed. + + + + + Occurs when the Multiline property has changed. + + + + + Occurs when a key is pressed while focus is on text box. + + + + + Occurs when the ReadOnly property has changed. + + + + + Occurs when the TextAlign property has changed. + + + + + Represents a base button control. The button control serves as a + RadButtonElement Class wrapper. All logic and + presentation features are implemented in a parallel hierarchy of objects. For this + reason, RadButtonElement Class may be nested in + any other telerik control, item, or element. + + + + + Initializes a new instance of the RadButtonBase class. + + + + + Override this method to create custom main element. By default the main element is an instance of + RadButtonElement. + + Instance of the one-and-only child of the root element of RadButton. + + + + Gets or sets the text associated with this item. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the instance of RadButtonElement wrapped by this control. RadButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadButton. + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + + + + + + + + + + Specifies the options for display of image and text primitives in the element. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + Determines whether the button can be clicked by using mnemonic characters. + + + + + Toggles the value of RadToggleSwitch + + + + + Toggles the value of RadToggleSwitch + + Indicates whether to use animation. + + + + Sets the value of RadToggleSwitch. + + The new value. + + + + Sets the value of RadToggleSwitch. + + The new value. + Indicates whether to use animation. + + + + Gets the instance of RadToggleSwitchElement wrapped by this control. RadToggleSwitchElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadToggleSwitch. + + + + + Gets the on element of RadToggleSwitch. + + + + + Gets the off element of RadToggleSwitch. + + + + + Gets the thumb of RadToggleSwitch. + + + + + Gets or sets the text displayed when the state is On. + + + + + Gets or sets the text displayed when the state is Off. + + + + + Gets or sets width of the thumb. + + + + + Determines how far the switch needs to be dragged before it snaps to the opposite side. + + + + + Gets or sets the value. + + + + + Gets or sets a value indicating whether to use animation when changing its state. + + + + + Gets or sets the animation interval. + + + + + Gets or sets the animation frames. + + + + + Gets a value indicating whether the control is currently animating. + + + + + Determines how ToggleSwitch button should handle mouse click and drag. + + + + + Gets or sets a value indicating whether the value could be changed. + + + + + RadToggleSwitch consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadToggleSwitch consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Occurs when the Value is about to change. Cancelable. + + + + + Occurs when the Value has changed. + + + + + Occurs when the animation starts. + + + + + Occurs when the animation finishes. + + + + + Toggles the value of RadToggleSwitch + + + + + Toggles the value of RadToggleSwitch + + Indicates whether to use animation. + + + + Sets the value of RadToggleSwitch. + + The new value. + + + + Sets the value of RadToggleSwitch. + + The new value. + Indicates whether to use animation. + + + + Cancels the currently running animation. + + + + + Gets or sets a value indicating whether to use animation when changing its state. + + + + + Gets or sets the animation interval. + + + + + Gets or sets the animation frames. + + + + + Gets a value indicating whether the control is currently animating. + + + + + Gets the on element + + + + + Gets the off element. + + + + + Gets the thumb element. + + + + + Gets or sets the value. + + + + + Gets or sets width of the thumb. + + + + + Determines how far the switch needs to be dragged before it snaps to the opposite side. + + + + + Gets or sets the text displayed when the state is On. + + + + + Gets or sets the text displayed when the state is Off. + + + + + Determines how ToggleSwitch button should handle mouse click and drag. + + + + + Gets or sets a value indicating whether the value could be changed. + + + + + + + + + + + + + + + Get or set thumb size + + + + + Gets or sets the image used by the splitter when in horizontal orientation. + + + + + Gets or sets the image used by the splitter when in vertical orientation. + + + + + This class represents the drop-down + of the RadGalleryElement. + + + + + Creates an instance of the + class. + + An instance of the + class that represents the gallery that owns this drop-down. + + + + Represents the groupbox content. + + + + + Gets the FillPrimitive contained in the Content area + + + + + Gets the BorderPrimitive contained in the Content area. + + + + + Creates child elements. Please refer to TPF documentation for more information. + + + + + Returns class name. + + class name + + + + Represents the groupbox footer. + + + + + Creates child elements. Please refer to TPF documentation for more information. + + + + + Performs layout measure. Please refer to TPF documentation for more information. + + + desired size + + + + Returns class name. + + class name + + + + Represents a groupbox. The group box major purpose is to define a radio buttons group. The RadGroupBox does not support scrolling. + The control is highly customizable using themes. + + + + + Parameterless contstructor. + + + + + Gets or sets the header text. + + + + + Gets the groupbox element. + + + + + Gets or sets the groupbox style - Standard or Office. + + + + + Gets or sets the header position - Top, Right, Bottom, Left + + + + + Gets or sets the header alignment - Near, Center, Far. + + + + + Gets or sets the header margin. + + + + + Gets or sets footer visibility. + + + + + Gets or sets the header text. + + + + + Gets or sets the footer text. + + + + + Gets or sets the header image. + + + + + Gets or sets the footer image. + + + + + Gets or sets the header image key. + + + + + Gets or sets the header image index. + + + + + Gets or sets the footer image key. + + + + + Gets or sets the footer image index. + + + + + Gets or sets the header text image relation. + + + + + Gets or sets the footer text image relation. + + + + + Gets or sets the header text alignment. + + + + + Gets or sets the footer text alignment. + + + + + Gets or sets the header image alignment. + + + + + Gets or sets the footer image alignment. + + + + + If true, the first character preceded by an ampersand will be used as mnemonic key + + + + + Gets or sets the header margin. + + + + + Gets or sets the header text. + + + + + Gets or sets the footer text. + + + + + Gets or sets the header image. + + + + + Gets or sets the footer image. + + + + + Gets or sets the header text image relation. + + + + + Gets or sets the footer text image relation. + + + + + Gets or sets the header text alignment. + + + + + Gets or sets the footer text alignment. + + + + + Gets or sets the header image alignment. + + + + + Gets or sets the footer image alignment. + + + + + Gets or sets the header image key. + + + + + Gets or sets the header image index. + + + + + Gets or sets the footer image key. + + + + + Gets or sets the footer image index. + + + + + Gets or sets the group box style - Standard, or Office. + + + + + Defines group box styles. + + + + + Prevent Design time serilizaltion for Image from theme + + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets or sets the position of text and image relative to each other. + + + + + true if the text should wrap to the available layout rectangle otherwise, false. The default is true + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + + + + + + + + + + If true, the first character preceded by an ampersand will be used as the label's mnemonic key + + + + + Gets or sets a value indicating whether the border is visible + + + + + Gets the instance of RadLabelElement wrapped by this control. RadLabelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadLabel. + + + + + A light element that inherits from , adds the base states for theming and sets the default event to Click. + + + + + IsDirty Property + + + + + Takes as parameters the that is binding + and the that is being bound to the RadItem. + + The that is binding. + The object that is being bound to the . + + + + Gets the that is bound. + + + + + Gets the that was swapped with a new RadItem. + + + + + Gets the object that is being bound to the . + + + + + Takes as parameters the that is bound + and the that is being bound to the RadItem. + + The that is bound. + The object that is being bound to the . + + + + Gets the that is bound. + + + + + Gets the object that is being bound to the . + + + + + Returns the type supported by the class implementing the ICellEditor interface. + The supported type is the data type that can be handled and edited by the editor. + + + + + Defines how the editor will be positioned relatively to the edited container + + + + + Editor is positioned inline, inside of the editor container, and logically resides in container's children + hierarchy. Usually it is recommended to use this option for compact-sized editors, + like textboxes, comboboxes, mask editors, checkboxes, etc. + + + + + Editor is positioned inside a popup control which is positioned vertically under the edited + container. Usually it is recommended to use this + option for medium to large-sized editors, like calendars, custom controls and panels, + radiobutton lists, checkbox groups, etc. + + + + + Usually this means that the editor is positioned explicitly by the edited containers's logic. + Also it is used as a default initialization value. + + + + + Provides functionality for managing editors + + + + + Returns an editor instance of the default type for the editor provider. + + An object that implements interface. + + + + Gets the default editor type for the editor provider. + + The default type. + + + + Initializes a specified editor. + + An object that implements interface. + + + + Establishes the common events and also the event-related properties and methods for basic input processing by + Telerik Presentation Foundation (TPF) elements. + + + + + This interface defines all necessary methods for custom scrolling. Performing each + scroll operation via the method (thus allowing custom + logic to be used) is called logical scrolling. The only way to enable logical + scrolling in is via implementation of this + interface. + + + + + Gets the real size of the content that the viewport must visualize. + + + + + Invalidates the viewport. + + + + + Calculate scroll value. This method is used while resizing the scroll panel. + + + + + + + + + + + + + + + Calculates the necessary offset in order to make the given child visible. + + + + Retrieves the scroll parameters. + + + + + + Returns the number of items that are visible when the viewport is scrolled to its + maximum value (the bottom for vertical stack and the right-most place for left-to-right + horizontal stack). The last item must always be fully visible. + If there are children the result will be at least 1. + + Number of full visible items in the viewport. If the items are with different sizes, + the last items are used in the calculations. + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the captured color + + + + + Fires when the color is changed. + + + + + + + + Fires when the selected color has changed + + + + + Represents a color palette + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the number of columns in the palette + + + + + Gets or sets the margin of the palette + + + + + Gets or sets the color in the palette + + + + + Gets or sets the selected color + + + + + Fires when the selected color has changed + + + + + + + + Provides different sets of colors + + + + + Gets the color correspoding to a hex value + + + + + + + Gets the hex value for the color + + + + + + + Gets the rounded value + + + + + + + Gets the set of basic colors + + + + + Gets the set of system colors + + + + + Gets the set of named colors + + + + + Provides common services for color transformations + + + + + Gets a color from RGB ratios + + + + + + + + + Gets a color quotient + + + + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the RgbValue value + + + + + Gets or sets the HSL value + + + + + Fires when the selected color changes + + + + + Represents a hexagon of discrete colors + + + + + Fires when the selected color has changed + + + + + Gets the selected color + + + + + Paints the hexagon + + + + + + Gets or sets the hexagon color + + + + + Gets a rectangle containing the hexagon + + + + + Gets or sets a value indicating whether the hexagon is hovered + + + + + Gets or sets a value indicating whether the hexagon is selected + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color mode + + + + + Gets or sets the color in HSL format + + + + + Gets or sets the color in RgbValue format + + + + + Fires when the selected color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color mode of the slider + + + + + Gets or sets the color in HSL format + + + + + Gets or sets the color in RgbValue format + + + + + Gets or sets the position of the slider arrow + + + + + Fires when the selected color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color in RgbValue format + + + + + Fires when the selected color changes + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the color shown in RGB format + + + + + Gets or sets the color shown in HSL format + + + + + Fires when the selected color has changed + + + + + Represents a color selector control + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when custom colors configuration is about to be saved or loaded. + Can be used to change the default location of the configuration file. + + + + + Fires when the selected color changes + + + + + Fires when the OK button is clicked + + + + + Fires when the Cancel button is clicked + + + + + Gets or sets a value indicating whether the Analytics functionality is enable or disbale for this control. + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the selected HSL color + + + + + Gets or sets the old color + + + + + Gets the list of custom colors + + + + + Shows or hides the web colors tab + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the professional colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the hex color textbox + + + + + Gets or sets the value indicating whether the user can edit the hexadecimal color value + + + + + Gets or sets the value indicating whether the user can pick a color from the screen + + + + + Gets or sets the value indicating whether the user can save colors + + + + + Gets or sets the text of the add new color button + + + + + Sets or gets the active mode of the RadColorPicker + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the new color label + + + + + Gets or sets the heading of the old color label + + + + + Gets the DiscreteColorHexagon control + + + + + Gets or sets a value indicatign whether custom colors should be save upon exiting the color picker. + + + + + A panel holding a collection of saved colors + + + + + Safely tries to find the path to the local app data folder. + If no path is found, tries to find the path to the common app data folder. + + + + + Serializes the custom colors. + + + Deserializes the custom colors. + + + + Save the color to the next color slot + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when the selected color has changed + + + + + Fires when custom colors configuration is about to be saved or loaded. + Can be used to change the default location of the configuration file. + + + + + Gets or sets a value indicatign whether custom colors should be save upon exiting the color picker. + + + + + Gets or sets the custom directory path which will be used + when the custom colors XML file is stored on the hard drive. + + + + + Gets or sets the index of the currently selected color + + + + + Gets the currently selected color + + + + + Gets all the colors in the saved colors collection + + + + + A transparent color box where semi-transparent colors can be shown + + + + + Gets or sets the color shown in the box + + + + + A transparent color box where semi-transparent colors can be shown + + + + + Gets or set the color shown in the box + + + + + Represents the RadDateTimePicker class + + + + + Represents the RadDateTimePicker constructor + + + + + creates and initializes the RadDateTimePickerElement + + + + + + Sets the current value to behave as a null value + + + + + Raises the FormatChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanged event + + + + + + Raises the ValueChanging event + + + + + + Gets the control's default size + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the culture supported by this calendar. + + + + + Gets the instance of RadDateTimePickerElement wrapped by this control. RadDateTimePickerElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadDateTimePicker. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the date/time value assigned to the control. + + + + + Gets or sets the format of the date and time displayed in the control. + + + + + Indicates whether a check box is displayed in the control. When the check box is unchecked no value is selected + + + + + Gets or sets the custom date/time format string. + + + + + When ShowCheckBox is true, determines that the user has selected a value + + + + + Gets or sets the minimum date and time that can be selected in the control. + + + + + Gets or sets the maximum date and time that can be selected in the control. + + + + + Gets or sets the location of the drop down showing the calendar + + + + + Gets or sets the size of the calendar in the drop down + + + + + The DateTime value assigned to the date picker when the Value is null + + + + + Indicates whether a spin box rather than a drop down calendar is displayed for editing the control's value + + + + + Gets or sets the text that is displayed when the DateTimePicker contains a null + reference. + + + + Gets or sets a value indicating whether RadDateTimePicker is read-only. + + true if the RadDateTimePicker is read-only; otherwise, false. The default is + false. + 1 + + + + Gets the maximum date value allowed for the DateTimePicker control. + + + + + Occurs when MaskProvider has been created + This event will be fired multiple times because + the provider is created when some properties changed + Properties are: Mask, Culture, MaskType and more. + + + + + Occurs when the format of the control has changed + + + + + Occurs when the value of the control has changed + + + + + Occurs when the value of the control is changing + + + + + Occurs when the value of the control is changing + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Occurs when the RadItem has focus and the user presses a key down + + + + + Occurs when the RadItem has focus and the user presses a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs before the CheckBox's state changes. + + + + + Occurs when the CheckBox's state changes. + + + + + Occurs when the value of the checkbox in the editor is changed + + + + + Represents the RadDateTimePickerCalendar class + + + + + Represents the RadDateTimePickerCalendar constructor + + + + + + Creates dateTimePicker's children + + + + + Shows the drop-down window part of the combo box + + + + + Sets the date shown in the textbox by a given value and format type. + + + + + + + Gets the instance of RadDateTimePickerElement associated to the control + + + + + Gets the RadArrowButtonElement instance + that represents the Date Time Picker's arrow + button. + + + + + Gets or sets the calendar control which is shown when the pop up control is shown + + + + + Gets or sets the drop down control which is shown when the user clicks on the arrow button + + + + + Gets or sets the drop down sizing mode. The mode can be: horizontal, veritcal or a combination of them. + + + + + Gets or sets the drop down minimum size. + + + + + Gets or sets the drop down maximum size. + + + + + Gets a value representing whether the drop down is shown + + + + + The owner control of the popup + + + + + Shows the popup control with a specified popup direction and offset by the owner + + + + + + + Hides the popup + + + + + Occurs when the drop down is opened + + + + + Occurs when the drop down is opening + + + + + Occurs when the drop down is closing + + + + + Occurs when the drop down is closed + + + + + Gets or sets the hosted control in the popup. + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Represents the RadDateTimePickerSpinEdit class + + + + + Represents the RadDateTimePickerSpinEdit constructor + + + + + + Sets the date shown in the textbox by a given value and format type. + + + + + + + Creates dateTimePicker's children + + + + + Gets the instance of RadDateTimePickerElement associated to the control + + + + + RadRotator BeginRotate Event Arguments + + + + + Delegate for the BeginRotate event + + The RadRotator that rotates + + + + + This control is transfers the web-based rotators' functionality to the Windows forms work space. + + + + + Initializes the RadRotator control + + + + + Initializes the Childs Items + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + /// + + + + + + + /// + + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + + + + Gets the instance of RadRotatorElement wrapped by this control. RadRotatorElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRotator. + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The RadItem containing , Border and Fill primitives + + + + + + + + + + + + + + + + + + + + + + + + + + Gets the collection of s that will be rotated. + + + + + Gets or Sets the that is to be displayed while loading the rest items. It is not cycled through when rotation starts. + If you want to have initial item that will be cycled through, add it to the collection + and advance to it using + + + + + + + Gets or Sets the interval between consequetive rotation animations. + + + + + Gets or Sets the swap animation's frames number + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + Gets or Sets value indicating whether opacity will be animated when switching frames + + + + + Gets or Sets value defining the initial position of the incomming item + and the final position of the outgoing item. + Note: The position is relative, in the range [-1, 1] for each of the components (X, Y). + Value of positive or negative 1 means that the object will not be in the visible area + before the animation begins (for the incomming item) or after it ends (for the outgoing item) + + + + + Gets or Sets the index of the current item. + Note: When setting the current item, the old and the new item will be swapped. + + + + + + Gets the current item. + + + + + + Gets or Sets value indicating whether the is started/stopped. + + + + + + + + Gets the in the current + + + + + + + + + + + + + + + + + + + + Represents TPF controls container + + + + + Gets the collection of s contained in the + + + + + The RadItem that implements the actual 's functionality. + + + + + Starts cycling through the elements in the collection + + set to true to initiate rotation immediately, or set to false to rotate after the time + there are no elements to rotate (Items collection is empty) + + + + Stops the rotation process. If swap is under way, it will be completed. + + + + + Initiates swap between the current item and the one whose index is supplied. + + the index of the item in the collection. The index of the home element is -1. + true on successful swap + + + + Makes transition to the default element. + + + + + Advances to the next item + + + + + Advances to the previous item + + + + + + + + + + + + + + Gets the collection of s that will be rotated. + + + + + Gets or Sets the that is to be displayed while loading the rest items. It is not cycled through when rotation starts. + If you want to have initial item that will be cycled through, add it to the collection + and advance to it using + + + + + + + Gets or Sets the interval between consequetive rotation animations. + + + + + Gets or sets whether RadRotator should stop rotating on MouseOver + + + + + Gets or Sets the swap animation's frames number + + + + + Gets or Sets value indicating whether opacity will be animated when switching frames + + + + + Gets or Sets value defining the initial position of the incomming item + and the final position of the outgoing item. + Note: The position is relative, in the range [-1, 1] for each of the components (X, Y). + Value of positive or negative 1 means that the object will not be in the visible area + before the animation begins (for the incomming item) or after it ends (for the outgoing item) + + + + + Gets or Sets the index of the current item. + Note: When setting the current item, the old and the new item will be swapped. + + + + + + Gets the current item. + + + + + + Gets or Sets value indicating whether the is started/stopped. + + + + + + + + Fires when an Item is clicked + + + + + Fires when is started. + + + + + Fires when is stopped. + + + + + Fires before s' swap begins. + + + + + Fires when s' swap has finished. + + + + + Provides information about the validation process. + + + + + Gets the exception that is caused by the validation of the edited value. Generally + the exception is populated by the validation logic and is available for rising by the editor. + + + + + Gets the edited value that fails to be validated + + + + + Represents the method that handles the Validating event. + + The source of the event. + A ValidationErrorEventArgs that contains the event data. + + + + Represents the method that handles the ValueChanging event. + + The source of the event. + A ValueChangingEventArgs that contains the event data. + + + + Adds the RadContextMenu dynamic property and enables using RadContextMenu in all controls. + + + + + Provides a menu-like interface within a button. + + + + + Create main button element that is specific for RadSplitButton. + + The element that encapsulates the functionality of RadSplitButton + + + + + + + Gets the instance of RadSplitButtonElement wrapped by this control. RadSplitButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSplitButton. + + + + + + + + + + + Raises the DropDownItemClicked event. + + + + + Get or sets the item that is activated when the button portion of the + RadSplitButtonElement is clicked or selected and Enter is pressed. + + + + + Get or sets the item that is separating the action part and the arrow part of the button. + + + + + Occurs when the default item is changed. + + + + + + Represents a checkmark element in a menu item. + + + + + Represents checkmark. + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets the instance of BorderPrimitive wrapped by this element. + + + + + Gets the instance of FillPrimitive wrapped by this element. + + + + + Gets the instance of ImagePrimitive wrapped by this element. + + + + + Gets the instance of CheckPrimitive wrapped by this element. + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed as a checkmark. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets value indicating RadCheckmark checkstate. + + + + + Determines whether the item will be used as a separate item in another element. + + + + Gets or sets value indicating whether border must be shown. + + + Gets or sets value indicating whether background must be shown. + + + + Represents a menu item which has a combobox placed inside. + + + + + Provides a reference to the ComboBox element in the menu item. + + + + + Represents a generic menu item which could have any descendant of RadElement placed inside. + Such element could be placed in the menu by setting the ContentElement property. + + + + + Gets or sets if the image column offset is shown along with content element or not. + + + + + Provides a reference to the content element in the menu item. + + + + Defines scrolling states. + + + + + + + Represents event data of the Scroll event defined in all controls providing + scrolling functionality(e.g. RadScrollBar). + + + + + Initializes a new instance of the ScrollPanelEventArgs class. + + + + + + Gets the old thumb position (point). + + + Gets the new thumb position (point). + + + + Represents event data for the + ScrollParametersChanged event. + + + + + Indicates whether the scroll parameters are for the horizontal or for the vertical scroll bar. + + + + + Scroll bar parameters taken from the scroll bar that caused the event. + All parameters are filled correctly, not only the chagned one. + + + + + Indicates whether the need for horizontal or vertical srcolling has changed + + + + + Indicates whether horizontal scrolling was necessary + + + + + Indicates whether horizontal scrolling is necessary + + + + + Represents the method that will handle the + Scroll event. + Represents the event sender. + Represents the event arguments. + + + + + Represents the method that will handle the + Scroll event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + ScrollNeedsChanged event. + + + + + + + Represents parameters of the scroll panel such as values for the small and + large changes while scrolling. + + + + + Represents horizonatal scroll parameters data: horizontal minimum and maximum + positions, and horizontal small and large change. + + + + + Represents vertical scroll parameters data: vertical minimum and maximum + positions, and vertical small and large change. + + + + + Initializes a new ScrollPanelParameters struct. + + + ScrollPanelParameters(int,int,int,int,int,int,int,int) + + + Initializes the parameters pertaining to the horizontal scrolling - small and + large horizontal changes, and minimum and maximum scrolling positions. + + + Initializes the parameters pertaining to the vertical scrolling - small and large + vertical changes, and minimum and maximum scrolling positions. + + + + + Initializes a new ScrollPanelParameters structure. + + + ScrollPanelParameters(ScrollBarParameters,ScrollBarParameters) + + Initializes the minimum horizontal scrolling position. + Initializes the maximum horizontal scrolling position. + + Initializes the small horizontal change value; the value added or substracted + from the current position when small horizontal change is initiated. + + + Initializes the large horizontal change value; the value added or substracted + from the current position when large horizontal change is initiated. + + Initializes the vertical minimum scrolling position. + Initializes the vertical maximum scrolling position. + + Initializes the small change vertical value; the value added or substracted from + the current position when small vertical change is initiated. + + + Initializes the large vertical change value; the value added or substracted from + the current position when large vertical change is initiated. + + + + + Represents a menu. It may be nested in other telerik controls. RadMenu can be + horizontal or vertical. You can add, remove, and disable menu items at run-time. It + offers full support for the Telerik RadControls + for WinForm theming engine, allowing you to easily construct a variety of stunning + visual effects. You can nest any other RadControl within a RadMenu + . For example, you can create a menu with an embedded + textbox or combobox. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Occurs when the menu Orientation property value changes. + + + + + Occurs when the menu AllItemsEqualHeight property value changes. + + + + Gets or sets the context items. + + + + Gets an instance of the class + that represents the layout panel in which the menu items reside. + + + + + + Gets all root menu items (see for more + information about menu items). + + + + Root menu items are these menu items that can be displayed in the menu when + nothing is dropped down. + + Menu items are hierarchical items - they have a parent item and a list of children + items. Children items are menu items that can be dropped down as submenu of + their parent. The difference between the root and the non-root menu items is that + root items have no parent item (the property + can be used to check if an item is a + root one). + + Note that Items contains all root menu items, not just the + items that are displayed. An item remains in the Items collection even if it is an + overflow item and is therefore not currently visible. + + RadMenuItemBase Class + + + + Gets or sets the + orientation of menu + items - Horizontal or Vertical. + + + + + Gets or sets whether all items will appear with the same size (the size of the highest item in the collection). + + + + + Gets or sets a value indicating whether the DropDown animation will be enabled when it shows. + + + + + Gets or sets the type of the DropDown animation. + + + + + Gets or sets the number of frames that will be used when the DropDown is being animated. + + + + + Gets an instance of the class + that represents the menu background fill. + + + + + Gets an instance of the class + that represents the border of the menu. + + + + + Represents the method that will handle the RadPopupClosing event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + Represents the event arguments. + Represents the sender of the event. + + + + + Represents a method which will handle the PopupOpening event. + + Repretents the event sender. + Represents the event arguments + + + + Represents a method which will handle the FadeAnimationFinished event. + + Repretents the event sender. + Represents the event arguments + + + + Represents a method which will handle the PopupOpened event. + + Repretents the event sender. + Represents the event arguments + + + Defines the closing reasons for the popup. + + + + Specifies that the popup was closed because + another application has received the + focus. + + + + + Specifies that the popup was closed because the + mouse was clicked outside the + popup. + + + + + Specifies that popup was closed because of + keyboard activity, such as the ESC key being + pressed. + + + + + Specifies that the popup was closed because + ClosePopup() method had been called. + + + + + Specifies that the popup was closed because its parent was closed. + + + + + Instances of this class contain information + about the fade animation finished event of a popup control. + + + + + Gets a boolean value determining the type + of the fade animation. + + + + + Instances of this class contain information + about the opening event of a popup control. + + + + + Creates an instance of the + class. + + + + + Gets an instance of the + struct which contains the coordinates which will be used + to position the popup. + + + + + Represents event data of the RadPopupClosingEvent. + + + + + Initializes a new instance of the RadPopupClosingEventArgs class using the close reason. + + + + + + Defines the direction in which the drop-down window will be shown relative to its parent. + + + This enumeration is used in such controls like menus, combo boxes, etc. for example. + + + + + Indicates that the drop-down will be shown on the left side of the parent. + + + + + Indicates that the drop-down will be shown on the right side of the parent. + + + + + Indicates that the drop-down will be shown on the top side of the parent. + + + + + Indicates that the drop-down will be shown on the bottom side of the parent. + + + + + + + + Gets the screen rectangle of the provided screen. + + The screen. + Determines whether the taskbar is included in the result. + A Rectangle struct that contains the data about the bounds of the screen. + + + + Gets the valid location for a context menu + + + + + + + + + + Gets the valid location for a drop-down (for menus, combo boxes, + etc.). + + + This method calculates: + 1. The rectangle of the screen where the drop down should be shown + 2. The rectangle (in screen coordinates) of the owner element. Owner element + is the element that shows the drop-down and is connected to it - like a menu item + that shows its sub menus or a combobox element that shows its drop-down. + After calculating the screen and the element rectangles this method calls the + basic method. + + + + + + + Offset in pixels from the owner element. When this is zero there is no space + between the owner and the drop-down. + + + + + Gets the valid location for a drop-down (for menus, combo boxes, etc.). + + The popup is not allowed to be outside the screen rectangle and to be shown over + the ownerRect. + + + + + + + Offset in pixels from the owner element. When this is zero there is no space + between the owner and the drop-down. + + + + + Gets a screen from a point on the desktop. + + A Screen object that contains the given point or the PrimaryScreen on + error. + + The point on the desktop that must be in the returned screen. + + + + Gets the rectangle of the screen that contains the biggest part of a given + element. + + The rectangle of the primary screen on error. + + If the element is not added in a control or is not visible the rectangle of the + primary screen is returned. + + + + Gets the rectangle of the screen that contains given point on the desktop. + The rectangle of the primary screen on error. + The point on the desktop that must be in the returned screen rectangle. + + + + Ensures a drop-down rectangle is entirely visible in a given screen + rectangle. + + + + + Represents a progress bar. You can set progress bar appearance in numerous ways. + For example, you can use dash or dash integral style, set separator color and width, set a + background image, etc. The RadProgressBar class is a simple wrapper for the + RadProgressBarElement class. The latter may + be nested in other telerik controls. All UI and logic functionality is + implemented by the RadProgressBarElement + class. RadProgressBar acts to transfer the events to and from the + RadProgressBarElement class. + + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the text associated with this control. + + + The text. + + + + + Gets or sets the background image of the RadProgressBar. + + + + + Gets or sets the layout of the background image of the RadProgressBar. + + + + + Gets the instance of RadProgressBarElement wrapped by this control. RadProgressBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadProgressBar. + + + + + Gets or sets the value of the first progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the value of the second progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the minimum value for the progress. + + + The minimum. + + + + + Gets or sets the maximum value for the progress. + + + The maximum. + + + + + Gets or sets a value indicating the amount to increment the current value with. + + + The step. + + + + + Gets or sets the StepWidth between different separators. + + + The width of the step. + + + + + Indicates whether the progress bar style is dash. When style is dash + the progress line is broken into segments with separators in between them. + + + + + Indicates whether the progress bar style is hatch. When style is hatch + the progress line is covered with a hatch. You will have to change the SweepAngle + in order to see the style. + + + + + When style is dash indicates if the progress indicators will progress on steps or smoothly. + + + + + Gets or sets the first gradient color for separators + + + The separator color1. + + + + + Gets or sets the second gradient color for separators. + + + The separator color2. + + + + + Gets or sets the third gradient color for separators. + + + The separator color3. + + + + + Gets or sets the fourth gradient color for separators. + + + The separator color4. + + + + + Gets or sets the fourth gradient color for separators. + + + The separator gradient angle. + + + + + Gets or sets the first color stop in the separator gradient. + + + The separator gradient percentage1. + + + + + Gets or sets the second color stop in the separator gradient. + + + The separator gradient percentage2. + + + + + Gets or sets the number of colors used in the separator gradient. + + + The separator number of colors. + + + + + Gets or sets the separators width in pixels. + + + The width of the separator. + + + + + + + + + + + + + + + + + Gets or sets the alignment of the image of the progress line. + + + + + Gets or sets the text orientation in the progress bar. + + + + + Gets or sets the alignment of the text content on the drawing surface. + + + + + Gets or sets the progress + orientation: Bottom, Left, Right, Top. + + + + + Indicates whether the progress bar style is hatch. When true, the style is Hatch. + When both dash and hatch are true the style is hatch. + + + + + Gets or sets the angle at which the dash or hatch lines are tilted. + + + + + Fires when value is changed. + + + + + Fires when step is changed. + + + + + Fires when step width is changed. + + + + + Fires when the separator width is changed. + + + + + Fires when the minimum property is changed. + + + + + Fires when the maximum property is changed. + + + + + Fires when the dash property is changed. + + + + + Fires when the hatch property is changed. + + + + + Fires when the integral dash property is changed. + + + + + Fires when the text orientation is changed. + + + + + Fires when the text alignment is changed. + + + + + Fires when the progress orientation is changed. + + + + + Fires when show progress indicators is changed. + + + + + Fires when the separator color is changed. + + + + + Represents the method that will handle some of the following events: + ValueChanged, + StepChanged, + StepWidthChanged, + SeparatorWidthChanged, + MinimumChanged, + MaximumChanged, + DashChanged, + TextOrientationChanged, + Represents the event sender. + Represents the event arguments. + + + + + Represents a progress bar element. RadProgressBar + is a simple wrapper for RadProgressBarElement. The latter may be included in other + telerik controls. All graphical and logic functionality is implemented by + RadProgressBarElement. The RadProgressBar acts to + transfer the events to and from its RadProgressBarElement instance. + + + + + Creates the child elements and sets their locally applied values as Default + + + + + Initializes the fields. + + + + + Gets the final size of the progress indicator. + + The element. + The client rect. + The value. + + + + + Gets the final size of a vertical progress indicator. + + The client rect. + The value. + The step. + + + + + Gets the final size of a horizontal progress indicator. + + The client rect. + The value. + The step. + + + + + Gets the final size of the separators. + + The progress bar1 rectangle. + The progress bar2 rectangle. + + + + + Raises the event. + + The instance containing the event data. + + + + Advances the + current position of the progress bar by the amount of the Step property + + + + + Reverses the + advance of the current position of the second progress bar by the amount of the Step + property. + + + + + Increments Value1 with the given argument value. + + The value. + + + + Decrements Value1 with the given argument value. + + The value. + + + + Advances the + current position of the first progress bar by the amount of the Step + property. + + + + + Advances the + current position of the first progress bar by the amount of the Step + property. + + + + + Increments Value2 with the given argument value. + + The value. + + + + Decrements Value2 with the given argument value. + + The value. + + + + Gets or sets the value for the first progress indicator. + + + + + Gets or sets the value for the second progress indicator. + + + + + Gets or sets the minimum possible value for the progress bar Value1(2). + + + + + Gets or sets the maximum possible value for the progress bar Value1(2). + + + + + Gets or sets the value with which the progress bar Value1(2) will + increments/decrements. + + + + + Gets or sets the step width in pixels with which the progress bar + indicator will move if style is dash. + + + + + Gets or sets the progress orientation of the progress bar indicator. + Bottom, Left, Right, Top + + + + + Gets or sets if the progress should be show with percentages. + + + + + Gets or sets the style to dash. + + + + + Gets or sets the style to hatch. + + + + + Gets or sets the style to integral dash. To set IntegralDash you need + to first set dash to true. + + + + + Gets or sets the progress bar indicator image. + + + + + Gets or sets the layout of the image in the progress indicator. + + + + + Gets or sets the image index of the progress bar indicator image. + + + + + Gets or sets the image key for the progress bar indicator image. + + + + + Gets or sets the alignment of the image in the progress line. + + + + + Gets an instance of the class + that represents the progress indicator of the progress bar. + + + + + Gets an instance of the class + that represents the progress bar indicator. + + + + + Gets an instance of the class + that represents the separators on the progress bar indicator. + + + + + Gets or sets the separators width in pixels. + + + The width of the separator. + + + + + Gets or sets the first gradient color for separators + + + The separator color1. + + + + + Gets or sets the second gradient color for separators + + + The separator color2. + + + + + Gets or sets the third gradient color for separators + + + The separator color3. + + + + + Gets or sets the fourth gradient color for separators + + + The separator color4. + + + + + Gets or sets the angle of the separators gradient + + + + + Gets or sets the first color percentage in the separator gradient. + + + + + Gets or sets the second color percentage in the separator gradient. + + + + + Gets or sets the number of colors used in the separator gradient. + + + + + Gets an instance of the class + that represents the text of the progress bar. + + + + + Gets or sets the text associated with this element. + + + + + Gets or sets the angle at which the dash or hatch lines are tilted. + + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + Gets the element that displays the caption + + + + + Gets the element that displays the footer line + + + + + Gets the element that displays the Text + + + + + Gets the element that displays the Footer + + + + + Gets the FillPrimitive instance that represents + the screen tip fill. + + + + + Gets the BorderPrimitive instance that represents + the screen tip border. + + + + + Represents event data for the following events: OnTabSelected, OnTabHovered, + OnTabDragStarted, OnTabDragStarting, OnTabDragEnding, and OnTabDragEnded. + + + + + Initializes a new instance of the CommandTabEventArgs class using the + affected command tab. + + + + + + Gets the affected command tab. + + + + + Represents the method that will handle the following event: + CommandTabSelected. + + + + + ContextualTabGroups are used to organize RibbonBar Tabs in + groups which are visible depending on certain context. + + + + + Collection containing references to the TabItems in the group. + + + + Gets or sets the displayed text. + + + + + A collection that stores objects. + + + + + + + + Initializes a new instance of the + . + + + + + + + Initializes a new instance of the + . + + + + + + + Initializes a new instance of the + + based on another + . + + + + A from which the contents are copied + + + + + + Initializes a new instance of the + + containing any array of + objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space to the end of . + is . + + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + + Returns an enumerator that can iterate through + the . + + None. + + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + Gets or sets a value indicating the owner. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + + + + + + Initializes a new instance of the ContextualTabGroupEnumerator class + using a collection of ribbon bar command tabs. + + + + + + Moves to the next element in the collection. When invoked for the first time, + moves to the first element of the collection. + + + + Resets the iterator. + + + Gets the current element of the collection. + + + + Find main form and save it in member variable + + + + + Main method for internal logic + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + This method defines whether a Quick Access Toolbar item is visible or not. + If the method is called to hide an item, its Visibility property is set to Collapsed + and the corresponding menu item in the overflow button is unchecked. + The method throws an InvalidOperationException if the item does not below + to the current QAT collection. + + The item which visibility will be modified. + True to show an item, false to collapse it. + + + Gets the items in the tabstrip. + + + + + + + Determines whether the parent form can be moved by dragging the title bar. + + + + + Gets or sets the value of the caption + + + + + Gets the caption layout + + + + + Gets the Help button. + + + + + Gets the Minimize button + + + + + Gets the Maximize button + + + + + Gets the Close button + + + + + Fires when the close button is clicked + + + + + Fires when the minimize button is clicked + + + + + Fires when the maximize button is clicked + + + + + + + + Transforms the given point's X coordinate from world coordinates to local coordinates. + + The point to transform + The transformed point + + + + This method calculates the available space for the + ribbon caption text at the left side of the + contextual tab groups + The total available size for the elements + managed by this layout panel. + The width available. + + + + This method calculates the available space for the + ribbon caption text at the right side of the + contextual tab groups + The total available size for the elements + managed by this layout panel. + The width available. + + + + Determines whether the tab strip items should be reordered so that they match + the requirements for associated tab strip items. + + True if a reset is needed. Otherwise false. + + + + Checks whether the Add New Tab item is in the tab strip. + + True or false + + + + Gets the count of the empty contextual tab groups. + + The count of the empty groups. + + + + Resets the layout context variables which are used to determine the position + of the caption text, the contextual tabs and the design-time + contextual tab groups which are empty. + + + + + Gets the left most contextual tab group. + + Determines whether empty contextual groups are considered when + calculating the left most group + A reference to the left most group. Null if no groups are found. + + + + Gets the right most contextual tab group. + + Determines whether empty contextual groups are considered when + calculating the right most group + A reference to the right most contextual group. Null if no groups are found. + + + + This method reorders the TabStrip items so that they are positioned under the + ContextualTabGroup they are associated with. All tab items that are + associated with a tab groups should be positioned on the right side of the tab strip. + This algorithm begins iterating from the first to the last contextual tab group as they + appear in the collection of the ribbon bar. The associated tab items are always inserted + at the end of the tab strip. In this way the effect of positioning the last associated + tab item at the end of the corresponding contextual group is achieved. + + + + + This method calculates the size of a contextual group base on the associated tabs. + + The tab group which size is to be calculated + The calculated size of the group. + + + + This method is responsible for measuring the rightmost visible contextual group with associated tabs. + This is a private case method which is called only for the right most group, + since it has to be shrinked when the system buttons panel has to 'step' over it while resizing. + + The available size for measuring + The tab group which is to be shrinked + + + + This method is responsible for arranging the rightmost visible contextual group with associated tabs. + This is a private case method which is called only for the right most group, + since it has to be shrinked when the system buttons panel has to 'step' over it while resizing. + + The final size for arranging + The tab group which is to be arranged + + + Represents parameters of the scroll bar such as small change and + large change in the scrolling position. + + + + Represents the minimum value of the scrolling position. + + + + + Represents the maximum value of the scrolling position. + + + + + Represents a small change in the scrolling position; the value which will be + added or substracted from the current position in case of small change. + + + + + Represents a large change in the scrolling position; the value which will be + added or substracted from the current position in case of large change. + + + + Initializes a new ScrollBarParameters structure. + + Initializes the minimum value of the scrolling. + Initializes the maximum value of the scrolling. + Initializes the small change value. + Initializes the large change value. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Allow form's resize + + + + + Gets or sets the form's border color + + + + + Gets or sets the form's border width + + + + + Gets or sets an instance of the Shape object of a form. The shape of the + form is responsible for providing its' border(s) with custom shape. + + + Some predefined shapes are available, like or . + offers a way to specify element's shape with a sequance of points and curves using code + or the design time + . + + + + Gets or sets theme name. + + + Enables or disables transparent background on Vista + + + + Gets or sets the FormBorderStyle of the Form. + + + + + Represents a title bar. This control helps in creation of borderless forms by + substituting the system title bar. Subscribe for radTitleBar events to implement + the actual action for the the corresponding event. For example, on Close event + close the form of your application. + Use the Visual Style Builder to change the default appearance and the visible + elements. For example the system menu is not visible by default. + + + + + Initializes a new instance of the RadTitleBar class. + + + + + Gets or sets the text associated with this item. + + + + + Gets or sets a boolean value that determines whether the title bar + can manage the owner form. + + + + + Allow form's resize + + + + + An Icon that represents the icon for the form. + + + + + Gets the instance of RadTitleBarElement wrapped by this control. RadTitleBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTitleBar. + + + + + Fires when a minimize action is performed by the user (the minimize button is + pressed). + + + + + Fires when a maximize/restore action is performed by the user (maximizes button + is pressed or the title bar is double clicked). + + + + + Fires when the minimize in the tray button is pressed. It is hidden by default. + Use the Visual Style Builder to set which elements are visible and design their visual + appearance. + + + + + Represents the method that will handle some of the following events: Close, + MaximizeRestore, Minimize, and MinimizeInTheTray. + + + + + Represents a button control. The button control serves as a + RadButtonElement Class wrapper. All logic and + presentation features are implemented in a parallel hierarchy of objects. For this + reason, RadButtonElement Class may be nested in + any other telerik control, item, or element. + + + + + Gets or sets the DialogResult for this button. + + + + + Rec editors. It is used in + RadComboboxElement, DropDownButton, etc. + + + + + Note: this property is supposed to be used only when this.Parent.AutoSizeMode==WrapAroundChildren + + + + Represents a menu separation item. + Use it to separate logically unrelated items in the menu. + + + Initializes a new instance of the RadMenuSeparatorItem class. + + + Gets or set the sweep angle in degrees. + + + + Gets or sets the separator + orientation. Possible values are members of SepOrientation enumeration. + + + + Gets or sets separators width in pixels. + + + + Gets or sets the offset of the location where the draw of the line should start + + + + Gets a value indicating whether the RadMenuSeparator can be selected. + + + + Gets or sets a value indicating whether the text should be visible. + + + + + Represents the RadRadioButton control + + + + + Represents a RadToggleButton. A ToggleButton may have the following states: + On, Off, and Indeterminate. The button may have only the first two states if the + IsThreeState property is set to false. + + The RadToggleButton class is a simple wrapper for the + RadToggleButtonElement. All UI and + logic functionality is implemented in the + RadToggleButtonElement class. The + latter can be nested in other telerik controls. RadToggleButton acts to + transfer events to and from the its corresponding + RadToggleButtonElement instance. + + + + + Initializes a new instance of the RadToggleButton class. + + + + Initializes a new instance of the class. + + + + + Create main button element that is specific for RadToggleButton. + + The element that encapsulates the functionality of RadToggleButton + + + + Raises the StateChanging event. + + + + + Raises the StateChanged event. + + + + + Raises the CheckStateChanging event. + + + + + Raises the CheckStateChanged event. + + + + + Gets the instance of RadToggleButtonElement wrapped by this control. RadToggleButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadToggleButton. + + + + + + + Gets or sets a boolean value indicating where the button is checked. + + + + Gets or sets the CheckState + . CheckState enumeration defines the following values: Unchecked, Checked, and Indeterminate. + + + + Gets or sets a boolean value indicating where the button is checked. + + + + Gets or sets a value indicating whether the toggle button is read only. + + + true if the toggle button is read only; otherwise, false. + + + + Occurs when the elements's state is changing. + + + + Occurs when the element's state changes. + + + + Occurs when the elements's check state is changing. + + + + Occurs when the element's check state changed. + + + + + Create main button element that is specific for RadRadioButton. + + The element that encapsulates the funtionality of RadRadioButton + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets the default size of RadRadioButton + + + + + Gets the instance of RadRadioButtonElement wrapped by this control. RadRadioButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRadioButton. + + + + Gets or sets a value indicating the alignment of the radio button. + + + + Represents a radio button element. The RadRadioButton + class is a simple wrapper for the RadRadioButtonElement class. The + RadRadioButton acts to transfer events to and from its + corresponding RadRadioButtonElement instance. The RadRadioButtonElement which is + essentially the RadRadioButton control may be nested in + other telerik controls. + + + + + Registers the RadioCheckAlignment dependency property + + + + + initializes and adds the child elements + + + + + Fires te Click event and handles the toggle logic + + + + + Gets or sets a value indicating the alignment of the radio-mark according to the text of the button. + + + + Represents checkmark. + + + + Registers the CheckState dependency property + + + + + Registers the IsImage dependency property + + + + + Registers the IsCheckMark dependency property + + + + + Initializes the newly added children if needed. + + + + + + + handles the properties behavior when a property value is changed. + + + + + + Sets the toggle state of the RadioMark + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets an instance of the check element + + + + + Gets an instance of Image element + + + + Gets or sets value indicating RadRadiomark checkstate. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Raises the GalleryItemHover event. + + + + + Raises the DropDownOpening event. + + + + + Raises the DropDownOpened event. + + + + + Raises the DropDownClosing event. + + + + + Raises the DropDownClosed event. + + + + + Gets an instance of the class + that represents the popup control which hosts the + displayed to the user when he/she clicks on the drop-down button of the gallery. + + + + + Gets an instance of the class + that represents the main element put in the + when it is shown to the user. This element holds the content of the gallery, + as well as some additional elements like sizing grip etc. + + + + + Gets the instance + that represents the Gallery Element's fill. + + + + + Gets the instance + that represents the Gallery Element's border. + + + + + Gets tne that + represents the up button in the gallery element. + + + + + Gets tne that + represents the down button in the gallery element. + + + + + Gets tne that + represents the show popup button in the gallery element. + + + + + Gets or sets a value indicating whether group filtering is enbled when filters are defined. + + + + + Gets a collection representing the group filters defined in this gallery. + + + + + Gets a collection representing the groups contained in this gallery. + + + + + Returns whether the gallery is currently dropped down. + + + + + Gets a collection representing the items contained in this gallery. + + + + + Gets or sets a value indicating whether the selection of the gallery items is enabled or not. + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the maximum number of columns to be shown in the drop-down portion of the gallery. + + + + + Gets or sets the maximum number of rows to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the minimum number of columns to be shown in the drop-down portion of the gallery. + + + + + Gets or sets the currently selected item. + + + + + Gets the Tools menu items collection where you can add and remove items from the + Tools part of the gallery + + + + + Gets or sets a value indicating whether a gallery item is zoomed-in when mouse over it. + + + + + Occurs when the mouse pointer rests on the gallery item. + + + + + Occurs when the drop-down is opening. + + + + + Occurs when the drop-down has opened. + + + + + Occurs when the drop-down is about to be closed. + + + + + Occurs when the drop-down window has closed. + + + + + Gets or sets value indicating whether DropDownMenu will have the same class name as the owner control or its own. + True means that the same class name will be used as the control that opened the dropdown. + + + + + Gets a collection representing the group items contained in this gallery filter. + + + + + Returns whether the filter is currently selected. + + + + + Gets or sets a value indicating whether the caption of the group is shown. + + + + + Gets or sets the description text associated with this item. + + + + + Angle of rotation for the button image. + Unlike AngleTransform the property ImagePrimitiveAngleTransform rotates the image only. + AngleTransform rotates the whole item + + + + + Gets or sets the font of the description text of the RadGalleryItem. + + + + + Returns whether the gallery item is currently selected. + + + + + Gets or sets the alignment of text content on the drawing surface. + + + + + + + + Gets or sets the image that is displayed on a button element. + + + + + Gets or sets the image list index value of the image displayed on the button control. + + + + + Gets or sets the key accessor for the image in the ImageList. + + + + + Gets or sets the position of text and image relative to each other. + + + + + Gets or sets the alignment of image content on the drawing surface. + + + + + Gets the element responsible for painting the background of the label + + + + + Gets the element responsible for painting the text of the label + + + + + Gets the image element responsible for painting the image part of the label. + + + + + Gets the responsible for painting the image part of the label. + + + + + Represents a check box. The RadCheckBox class is a simple wrapper for the + RadCheckBoxElement class. The RadCheckBox acts + to transfer events to and from its corresponding + RadCheckBoxElement. The + RadCheckBoxElement which is essentially the + RadCheckBox control may be nested in other telerik controls. + + + + + Create main button element that is specific for RadCheckBox. + + The element that encapsulates the functionality of RadCheckBox + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets the instance of RadCheckBoxElement wrapped by this control. RadCheckBoxElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadCheckBox. + + + + Gets or sets value indicating the checked state of the checkbox. + + Since RadCheckBox is tri-state based (ToggleState property) the Checked property is provided for compatibility only. + Checked=true corresponds to ToggleState.On and Checked=false corresponds to ToggleState.Off. + If value of ToggleState property equals , + value of Checked property is 'false'. + + + + + Gets or sets a value indication whether mnemonics are used. + + + + Gets or sets a value indicating the alignment of the check box. + + + + Represents a RadRepeatButton. If the button is continuously held pressed, it + generates clicks. The RadRepeatButton class is a simple wrapper for the + RadRepeatButtonElement class. The + RadRepeatButton acts to transfer events to and from its corresponding + RadRepeatButtonElement instance. The + RadRepeatButtonElement which is + essentially the RadRepeatButtonElement + control may be nested in other telerik controls. All graphical and logical + functionality is implemented in + RadRepeatButtonElement class. + + + + + Raises the ButtonClick event. + + + + + Gets the instance of RadRepeatButtonElement wrapped by this control. RadRepeatButtonElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRepeatButton. + + + + + Determines whether the button can be clicked by using mnemonic characters. + + + + + Gets or sets the amount of time, in milliseconds, the Repeat button element waits while it is pressed before it starts repeating. The value must be non-negative. + + + + + Gets or sets the amount of time, in milliseconds, between repeats once repeating starts. The value must be non-negative. + + + + + Propagates internal element click. + + + + + Represents the method that will handle the + ToggleStateChanging + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the + CheckStateChanging + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents event data of the + CheckStateChanging + event. + + + + + Initializes a new instance of the StateChangingEventArgs class using the old toggle state, the new toggle state and + + + + + + + + Gets or sets the old toggle state. + + + + + Gets or sets the new toggle state. + + + + + Represents event data of the + ToggleStateChanging + event. + + + + + Initializes a new instance of the StateChangingEventArgs class using the old toggle state, the new toggle state and + + + + + + + + Gets or sets the old toggle state. + + + + + Gets or sets the new toggle state. + + + + + Represents event data of the + ToggleStateChanged. + + + + + Initializes a new instance of the StateChangedEventArgs class. + + + + + + Gets the toggle state Off, On, or Indeterminate + + + + + Represents the method that will handle the + ToggleStateChanged + event. + + Represents the event sender. + Represents the event arguments. + + + + Represents the method that will handle the SelectedIndexChanged event. + A SelectedIndexChangedEventArgs that contains the event data. + The source of the event. + + + + + Represents event data of the SelectedIndexChanged event. + + + + + Initializes a new instance of the SelectedIndexChangedEventArgs class. + + + + + Gets the instance of previously selected item. + + + + + Gets the instance of currently selected item. + + + + Used to group collections of controls. + + A RadPanel is a control that contains other controls. You + can use a RadPanel to group collections of controls such as a + group control of radio buttons. If the RadPanel control's + Enabled property is set to false, the controls + contained within the RadPanel will also be disabled. + You can use the AutoScroll property to enable scroll bars in + the RadPanel control. When the AutoScroll + property is set to true, any controls located within the + RadPanel (but outside of its visible region), can be scrolled to + with the scroll bars provided. + The RadPanel control is displayed by default with border and + a text (using TextPrimitive). There is a + FillPrimitive which is transparent by default. It allows gradients + to be used for background of the RadPanel. + + + + Initializes new RadPanel + + + Creates the main panel element and adds it in the root element. + + + + Gets the instance of RadPanelElement wrapped by this control. RadPanelElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadPanel. + + + + + Gets or set a value indicating whether panel will scroll automatically to show + the currently focused control inside it. + + + + + Gets or sets the alignment of the text within Panel's bounds. + + + + Gets the default size of the control. + The default System.Drawing.Size of the control. + The default Size of the control. + + + + Gets or sets a value indicating whether the control causes validation to be + performed on any controls that require validation when it receives focus. + + + true if the control causes validation to be performed on any controls requiring + validation when it receives focus; otherwise, false. + + + + The main element of the RadPanel control. + + + Create the elements in the hierarchy. + + + + Gets the of the + panel element. + + + + + Gets the of the + panel element. + + + + + Gets the of the + panel element. + + + + + This class represents the root element + of a control. + + + + + Represents a dialog containing a color picker + + + + + Creates instance of RadColorDialog class + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the color selector + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Gets or sets the active mode of the color tabstrip + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides whe professional colors tab + + + + + Shows or hides the custom colors tab + + + + + Shows or hides the hex color value + + + + + Allows or disallows editing the HEX value + + + + + Allows or disallows color picking from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the selected color has changed + + + + + Instance of this class contain information about the control to which + a container of the RadScrollablePanel is scrolled. + + + + + Gets an instance of the + class that represents the scrollable panel that holds + the gallery items when the popup is shown. + + + + + Gets an instance of the class + that represents the element holding the buttons that represent + the different filters and groups. + + + + + Gets an instance of the class + that represents the sizing grip of the dropdown. + + + + + Set theme name for the whole RadMessageBox + + + + + + Displays RadMessageBox with specified text. + + The text to display in the RadMessageBox. + One of the values + + + + Displays RadMessageBox with specified text and caption. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, and buttons. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, and buttons. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, and icon. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, and icon. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, icon and default button. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox with specified text, caption, buttons, icon and default button. + + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text and caption. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, and buttons. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, and buttons. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, and icon. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, and icon. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + that displays in the RadMessageBox. + One of the values. + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values that specifies right to left settings. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + One of the values that specifies which icon to display in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values that specifies right to left settings. + If this parameter is set to a string value the message box will contain a details button and a text field which will display this string. + One of the values + + + + Displays a RadMessageBox in front of the specified object and with the specified text, caption, buttons, icon, and default button. + + An implementation of that will own the RadMessageBox. + The text to display in the RadMessageBox. + The text to display in the title bar of the RadMessageBox. + One of the values that specifies which buttons to display in the RadMessageBox. + that displays in the RadMessageBox. + One of the values that specifies the default button for the RadMessageBox. + One of the values. + + + + Gets the RadMessageBoxForm instance + + + + + Gets or set theme name for the whole RadMessageBox + + + + + Set the cursor that is displayed when the mouse pointer is over the control. + + + + + Set the message to be shown in windows taskbar. Default is false + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Set label text and size according to text string measure + + + + + + Calculate form size according to title text size + + width + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value indicating whether a beep is played when the message box is shown. + + + true if a beep is played; otherwise, false. + + + + + Sets the RadMessageBox Text + + + + + Sets the RadMessageBox caption text + + + + + RadMessageBox Icon + + + + + Gets ot sets the size of the buttons shown in the message box. + + + + + Provides Localization service for RadMessageBox + + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + present RadGripElement + + + + + creacte child elements + + + + + OnMouseDown + + + + + + OnMouseUp + + + + + + OnMouseMove + + + + + + Grip image + + + + + Represents a RadStatusStrip. The RadStatusStrip class is a simple wrapper for the + RadStatusBarElement class. The RadStatusStrip acts + to transfer events to and from its corresponding + + + + + create RadStatusStrip instance + + + + + create child items + + + + + + fire the StatusBarClick event + + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + implement default Dock style + + + + + Gets or sets the text associated with this control. + + + + + Gets or sets the visibility of the grip used to reposition the control. + + + + + Gets all the items that belong to a RadStatusStrip. + + + + + Set the RadStatusStrip's layout style + + + + + Gets the instance of RadStatusBarElement wrapped by this control. RadStatusBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadStatusStrip. + + + + + RadStatusStrip consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadStatusStrip consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + status bar click events + + + + + this event fired before Layout Style Changing + + + + + this event fired after LayoutStyle Changed + + + + + custom event handle for the click event + + + + + + + represent the RadStatusBarClickEventArgs object + + + + + create a instance of + + + + + + + present the clicked element + + + + + Represents a RadStatusBarElement. + + + + + create elements in the RadStatusBarElement + + + + + this event fired before Layout Style Changing + + + + + this event fired after LayoutStyle Changed + + + + + Gets a collection representing the "View changing" items contained in this statusbar. + + + + + get or set RadStatusBarElement orienatation + + + + + show or hide the Grip element in RadStatusStrip + + + + + Set the RadStatusStrip's layout style + + + + + enumerate RadStatusStrip LayoutStyles + + + + + represent the RadStatusBarPanelElement + + + + + create child items + + + + + Represents the StatusBarBoxLayout class + + + + + Registers the Proportion dependancy property of StatusBarBoxLayout + + + + + Registers the Orientation dependancy proeprty of StatusBarBoxLayout + + + + + Registers the StripPosition dependancy property of StatusBarBoxLayout + + + + + Gets the proportion based on a given element + + + + + + + arranges the children by a given criteria + + + + + + + Gets or sets strip orientation - it could be horizontal or vertical. + + + + + represents StripPosition enumeration + + + + Gets or sets the line width in pixels. + + + + Gets or sets the line orientation. Possible values are defined in the SepOrientation + enumeration. + + + + Gets or sets the line angle in degrees. + + + + Represents a numeric up/down control box. The RadSpinEditor class is a simple wrapper for the + RadSpinElement class. The RadSpinEditor acts + to transfer events to and from its corresponding + RadSpinElement. The + RadSpinElement which is essentially the + RadSpinEditor control may be nested in other telerik controls. + + + + + Initializes a new instance of the RadSpinEditor class + + + + + CreateChildItems + + + + + + increase or decrease value in the numeric up/dowm with step value + + + + + + set the default control size + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadSpinElement wrapped by this control. RadSpinElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadSpinControl. + + + + + Gets or sets the mimimum value for the spin edit + + + + + Gets or sets the maximum value for the spin edit + + + + + Gets or sets the whether RadSpinEditor will be used as a numeric textbox. + + + + + Gets or sets whether by right-mouse clicking the up/down button you reset the value to the Maximum/Minimum value respectively. + + + + + Gets or sets a value indicating whether the border is shown. + + + + + Set or get the Step value + + + + + Set or get the Step value + + + + + Gets or sets a value indicating that value will revert to minimum value after reaching maximum and to maximum after reaching minimum. + + + + + Represents the decimal value in the numeric up/down + + + + + Represents the decimal value in the numeric up/down. The Value can be null + + + + + Gets or set how to interpret the empty text in the editor portion of the control + if true the empty value will set NULL in NullableValue property + + + + + Gets or sets a value indicating whether the user can use the UP ARROW and DOWN ARROW keys to select values. + + + + + Gets or sets a value indicating whether the text can be changed by the use of the up or down buttons only. + + + + + Gets or sets a value indicating whether a thousands separator is displayed in the RadSpinEditor + + + + + Gets or sets the number of decimal places to display in the RadSpinEditor + + + + + Gets or sets a value indicating whether the RadSpinEditor should display the value it contains in hexadecimal format. + + + + + Gets or sets the minimum value that could be set in the spin editor + + + + + Occurs before the value of the SpinEdit is changed. + + + + + Occurs before the value of the SpinEdit is changing. + + + + + Occurs when the NullableValue of the SpinEdit is changed. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Initializes a new instance of the RadTextBoxBase class. + + + + + Represents RadTextBoxBase constructor + + + + + Initializes textbox's children + + + + + Appends text to the current text. + + + + + Empties the TextBox. + + + + + Undo to the previous text value before clear invocation. + + + + + Copies the text value to the clipboard. + + + + + Cuts the text value to the clipboard. + + + + + Deselects the text in the cotrol. + + + + + Retrieves the character that is closest to the specified location within the + control. + + + + + Retrieves the index of the character nearest to the specified location. + + + + + Retrieves the index of the first character of a given line. + + + + + Retrieves the index of the first character of the current line. This method + is not supported by MaskedTextBox. + + + + + Retrieves the line number from the specified character position within the + text of the control. + + + + + Retrieves the location within the control at the specified character + index. + + + + + Pastes the text value to the clipboard. + + + + + Pastes the string parameter to the clipboard. + + + + + Scrolls the contents of the control to the current caret position. + + + + + Selects the text in the TextBox from the start position inclusive to the end + position exclusive. + + + + + Selects the text in the TextBox. + + + + + Undoes the last edit operation in the text box. + + + + + Sets input focus to the control. + + true if the input focus request was successful; otherwise, false. + + + + + Activates the control. + + + + + Raises the AcceptsTabChanged event. + + + + + Raises the HideSelectionChanged event. + + + + + Raises the ModifiedChanged event. + + + + + Raises the MultilineChanged event. + + + + + Raises the ReadOnlyChanged event. + + + + + Raises the TextAlignChanged event. + + + + + Raises the TextChanging event. + + + + + Gets or sets whether the edit control is auto-sized + + + + Gets or sets the displayed text. + + + + Gets or sets + the font of the text displayed by the control. + + + + + Gets or sets a value indicating whether pressing ENTER in a multiline RadTextBox + control creates a new line of text in the control or activates the default button for + the form. + + + + + Gets or sets a value indicating whether pressing the TAB key in a multiline text + box control types a TAB character in the control instead of moving the focus to the + next control in the tab order. + + + + Gets value indicating whether undo is allowed. + + + + Gets or sets a value indicating whether the RadTextBox control modifies the + case of characters as they are typed. + + + + + Gets or sets a value indicating whether the selected text remains highlighted + even when the RadTextBox has lost the focus. + + + + + Gets or sets + the lines of text in multiline configurations. + + + + + Gets or sets + the maximum number of characters allowed in the text box. + + + + + Gets or sets a value indicating whether the RadTextBox control has been modified + by the user since the control was created or since its contents were last set. + + + + + Gets or sets + a value indicating whether this is a multiline TextBox control. + + + + + Gets or sets the text that is displayed when the ComboBox contains a null + reference. + + + + + Gets or sets + the character used to mask characters of a password in a single-line TextBox + control. + + + + + Gets or sets + a value indicating whether the contents of the TextBox control can be + changed. + + + + + Gets or sets + which scroll bars should appear in a multiline TextBox control. + + + + + Gets or sets a value indicating the currently selected text in the + control. + + + + + Gets or sets + the number of characters selected in the text box. + + + + + Gets or sets + the starting point of text selected in the text box. + + + + + Gets or sets + a value indicating whether the defined shortcuts are enabled. + + + + Gets or sets how text is aligned in a TextBox control. + + + Gets the length of the text in the control. + + + + Gets or sets a value indicating whether a multiline text box control + automatically wraps words to the beginning of the next line when necessary. + + + + + Occurs when + the value of the AcceptsTab property has changed. + + + + + Occurs when + the value of the HideSelection property changes. + + + + + Occurs when + the value of the Modified property has changed. + + + + + Occurs when + the value of the Multiline property has changed. + + + + + Occurs when + the ReadOnly property changes. + + + + + Occurs when + the value of the TextAlign property has changed. + + + + + Occurs + when text is being changed. + + + + + The TextBox control that is hosted by default by RadTextBoxItem. + Children of this calss can be passed to RadTextBoxItem in order to customize the hosted text box. + + + + + Overload to automatically create the Graphics region before drawing the text prompt + + The Graphics region is disposed after drawing the prompt. + + + + Draws the NullText in the client area of the TextBox using the default font and color. + + + + + Gets or sets a color of the null text + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + + Represents a RadTextBox. The RadTextBox control serves as a simple wrapper for + RadTextBoxElement class which in turn wraps + RadTextBoxItem Class. All logic and presentation + features are implemented in a parallel hierarchy of objects. For this reason, + RadTextBoxElement class may be nested in any + other telerik control, item, or element. RadTextBox acts to transfer events to and + from its corresponding instance of the + RadTextBoxElement class. + + + + + Represents RadTextBox's constructor + + + + + Initializes textbox's children + + + + + Gets the instance of RadTextBoxElement wrapped by this control. RadTextBoxElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadTextBox. + + + + + Gets or sets a value indicating whether to show the bottom part of characters, clipped + due to font name or size particularities + + + + + Gets or sets a value indicating whether the text should appear as the default password character. + + + true if the text otherwise hould appear as the default password character; false. + + + + + Gets or sets a value indicating whether the clear button is shown. + + + + + Represents a layout panel used in the RadCheckBoxElement. + + + + Gets or sets the offset between the check and body elements. + + The body can contain image and / or text the same way as all buttons can - + see + + + + Gets or set a value indicating the check alignment. + + + + RadScrollLayoutPanel is the layout panel that arranges viewport, horizontal and vertical scrollbars + and a spot that appears when both scrollbars are shown. + + + For more information about scrolling see the help for + RadScrollViewer class and for + IRadScrollViewport interace. + + + + + The spot between the ScrollBars when both are shown + + + + + Set visible and enabled state of the ScrollBars. + + + + + Make viewportOffset to be with correct value. + Set Value of ScrollBars using viewportOffset + + + + + Occurs when horizontal or vertical scrolling is performed + + + + + Occurs when the need for horizontal or vertical scrollbar has changed. + + + + + Occurs when property that affects the scrolling functionality is changed. + + + + + Occurs when the Viewport is changed + + + + + Gets the horizontal scrollbar + + + + + Gets the vertical scrollbar + + + + + Gets the retcangle that is between the two scrollbars when they both are shown. + + + + + Gets a value indicating whether can be performed horizontal scrolling operation + + + + + Gets a value indicating whether can be performed vertical scrolling operation + + + + Gets or sets the scroll state of the horizontal scroll bar. + State of type . Default value is AutoHide. + + + Gets or sets the scroll state of the vertical scroll bar. + State of type . Default value is AutoHide. + + + + Gets or sets the thickness of the scrollbar. + + + + + Gets or sets the element which content will be scrolled if the scroll viewer has + not enough space for it. Very often the viewport is a layout panel that implements + . + + + Object of type RadElement which represents the content that could be scrolled if + necessary. Default value is null. + + + + + Gets or sets a value indicating whether physical or logical scrolling will be + used. + + Boolean value: when it is false logical scrolling will be used. + + + This property cannot be set to false if does not + implement . + + + Default value is true for ordinary viewports and false for viewports that + implement . + + + + + + Gets or sets the number of pixels to use when performing Line + Up/Down/Left/Right scrolling operation. + Still the scrolling position can be set with one pixel accuracy if the scroll + bar thumb is dragged. + + + + Gets the minimum possible scrolling position. + + Point which contains minimum values for scrolling in horizontal and vertical + direction. + + + + Gets the maximum opssible scrolling position. + + Point which contains maximum values for scrolling in horizontal and vertical + direction. + + + + + Gets or sets the scrolling position. The value is between + and . + + + Point which contains the current scrolling position in horizontal and vertical + direction. + + + + + + The only implementation of and base class of + all scrollable elements. + + This class contains one element called Viewport. In addition to the ordinary + property Size, Viewport has parameter called "extent size" which represents the + real size of its content. Extent size could be bigger as well as smaller than the + size of the scroll viewer. + + There are two types of viewports: ordinary elements and elements that implement + . In the first case extent size is the + size of the viewport itself. The scrolling is done on pixel basis and via + painting offset of the viewport (it is called physical scrolling). In the + second case the functions that are declared in + are called for getting extent size and + performing the scroll operation (this is called logical scrolling). + + + If the viewport implementation is of type it + still can be physically scrolled by setting the property + to true. + + + Physical scrolling has one parameter that can be set - + which represents the small change value + for the scrolling (i.e. the number of pixels for Line Up/Down/Left/Right). The + large change (Page Up/Down/Left/Right) is the corresponding size of the + viewable size of the viewport. + + + For more information about custom viewports and logical scrolling - see + . + + + Current scroll position can be get or set via the property + . In addition scrolling can be performed by calling the + methods that are implemented from . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets a value indicating whether the border is shown. + + + Gets or sets a value indicating whether the fill is shown. + + + + + + + + + + + + + Represents a menu. RadMenu can be horizontal or vertical. You can add, + remove, and disable menu items at run-time. It offers full theming support, + allowing you to easily construct a variety of stunning visual effects. You + can nest any other RadControl within a RadMenu. For + example, you can create a menu with an embedded textbox or combobox. + RadMenu is a simple wrapper for the RadMenuElement class. + + + + + Initializes a new instance of the RadMenu class. RadMenu can be horizontal or + vertical. You can add, remove, and disable menu items at run-time. It offers full + theming support, allowing you to easily construct a variety of stunning visual effects. + You can nest any other RadControl within a RadMenu. For + example, you can create a menu with an embedded textbox or combobox. + + + + + + + + + + + + + + + + + + + + + + + Gets or sets boolean value that determines whether + RadMenu handles the MDI menu functionality. + + + + + Indicates whether the menu items should be stretched to fill the available space. + + + + + Gets or sets whether the Alt or F10 keys can be used to highlight the menu. + + + + + Gets the instance of RadMenuElement wrapped by this control. RadMenuElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadMenu. + + + + + + + + + + + + + + + + + + + + + + + RadMenu consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadMenu consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + This enumerator describes the states can + jump into when processing mnemonics. + + + + + When the menu is in this state, that means that Mnemonics are visible. + + + + + When the menu is in this state, that means it listens for keyboard input and can process mnemonics. + + + + + When the menu is in this state, that means it can process keyboard input not associated with mnemonics. + This can be navigation input for instance. + + + + + When the menu is in this state, that means it will not process mnemonics. + + + + + other Telerik RadControls and Windows Represents a RadRibbonBar. The + RadRibbon bar visual appearance can be customized in numerous ways through themes. + Also you can nest other telerik controls in the ribbon bar chunks thus creating + intuitive interface for your applications. All of the application's functionality + is accessible from a single ribbon. The ribbon is divided into command tabs such as + Write, Insert, and Page Layout. When the users clicks on a command tab, they see + chunks such as Clipboard, Font, and Paragraph. Each chunk can hold an unlimited + number of controls including toolbars, comboboxes, and Forms controls. + + The RadRibbonBar class is a simple wrapper for the + RadRibbonBarElement class. All UI and + logic functionality is implemented in + RadRibbonBarElement class. RadRibbonBar + acts to transfer the events to and from its + RadRibbonBarElement class. + + + + + Initializes a new instance of the RadRibbonBar control class. + + + + + + + + + + + + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets or sets the small image list + + + + + Gets or sets the text of the control + + + + + Gets or sets a flag indicating whether the control causes validation + + + + + + + + + + + + + + Allows the user to navigate the control using the keyboard + + + + + Represent the Ribbon Help button + + + + + Represent the Ribbon Expand button + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets a value indicating the type of the fade animation. + + + + + + + + + + + Gets the QuickAccessToolBar element + + + + + + + + + + + + + + + + + + + + Gets the options menu button + + + + + Gets the exit menu button + + + + + + + + Gets the instance of RadRibbonBarElement wrapped by this control. RadRibbonBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadRibbonBar. + + + + Gets or sets a value indicating whether the ribbon bar is expanded. + + + Gets or sets a value indicating whether the ribbon bar will be collapsed or expanded on ribbon tab double click. + + + + Gets or sets if the ribbon bar has minimize button in its caption + + + + + Gets or sets if the ribbon bar has maximize button in its caption + + + + + Gets or sets if the ribbon bar has close button in its caption + + + + + Gets the localization settings associated with this control + + + + + RadRibbonBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadRibbonBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + Represents a ribbon bar button group. You can group buttons that are + logically related, for example, bold, italic, and underline buttons in + a text editor application. + + + + + Fires ItemChanged event. + + + + + Fires ItemClicked event. + + + + + + + + + + + Refreshes the items nested in the argument. + + + + + + + + + + + + + Gets the collection of items in the button group. + + + Gets or sets the orientation of the elements inside the button group: Horizontal or Vertical. + + + Gets or sets a value indicating whether the border is shown. + + + Gets or sets a value indicating whether the back color is shown. + + + + Gets the stack layout panel + that holds all elements. + + + + + Represents a Ribbon Bar group. The Group can contain telerik controls. You may + group related controls in groups; this gives the application intuitive interface. + + + + + Overrides object ToString() method. Returns the value of the Text property + prefixed with the "chunk:" string. + + + + Expands the chunk. + + + Collapses the chunk. + + + + Occurs when Dialog Button is clicked + + + + + Gets an instance of the class + that represents the group's outer border. + + + + + Gets an instance of the class + that represents the group's fill; + + + + + Gets an instance of the class + that represents the caption's fill; + + + + + Gets an instance of the class + that represents the body's fill; + + + + + Get or sets value indicating whether Dialog button is visible or hidden. + + + + Gets a collection of nested items. + + + Gets or sets the orientation of the items inside the chunk. Possible values are: Horizontal and + Vertical. + + + + Gets or sets the image that is displayed when the chunk is collapsed. + + + + + Get or Set collapsing order weight - biger mean to start collapsing from this RadRibbonbarGroup + + + + + + A collection that stores objects. + + + + + + + + Initializes a new instance of the + . + + + + + + Initializes a new instance of the . + + Collection owner. + + + Fires when the collection is changed. + + + + Represents a ribbon bar element. The RadRibbonBarElement can be nested in other + telerik controls. Essentially RadRibbonBar class is a simple wrapper for + RadRibbonBarElement class. RadRibbonBar acts to transfer events to and from the its + corresponding instance of the RadRibbonBarElement. + + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An instance that contains the event data. + + + + Calls the OnCommandTabCollapsed event. + For internal use only. + + The event args associated with this event + + + + Calls the OnCommandTabExpanded event. + For internal use only. + + The event args associated with this event + + + + Gets or sets a boolean value determining whether the groups are collapsed according to the ribbon's size. + + + + + Gets or sets the Minimize button + + + + + Gets or sets the Maximize button + + + + + Gets or sets the Close button + + + + Gets a collection of the command tabs. + + + + Gets or the localization settings for this element + + + + + Gets a collection of contextual tab groups. + + + + + Get or sets value indicating whether RibbonBar Help button is visible or hidden. + + + + + Get or sets value indicating whether RibbonBar Expand button is visible or hidden. + + + + + Gets the collection of quick access menu items. + + + + Gets or sets the height of the quick access. + + + Gets or sets if the quick access toolbar is below the ribbon. + + + + Gets or sets the image of the start button placed in the top left corner. + + + + + Gets the application menu element + + + + + Gets the options menu button + + + + + Gets the exit menu button + + + + + Gets the collection of the start button menu item. + + + + + Gets the collection of the start button menu items which appear on the right. + + + + + Gets the collection of the start button menu DropDown which is displayed when the button has two columns. + + + + + Gets or sets the width of the start menu + + + + + Gets an instance of the TabStripElement which is used to display the tab items in the RibbonBarElement. + + + + + Gets the instance of the currently selected command tab. + + + + + Gets or sets a boolean value indicating whether the + RadRibbonBarElement is expanded or not. + + + + + Gets the QuickAccessToolBar + + + + + Gets the instance + that represents the fill of the ribbon's caption. + + + + + Gets the instance + that represents the border of the ribbon's caption. + + + + + Occurs just before a command tab is selected. + + + + + Occurs when a command tab is selected. + + + + + Occurs when a command tab is expanded by double clicking a collapsed command tab item. + + + + + Occurs when a command tab is collapsed by double clicking an expanded command tab item. + + + + + Gets an instance of the RibbonBarPopup class which represents the + RadRibbonBar popup. + + + + + Implements + the basic functionality of a horizontal scroll bar control. + + + + Implements the basic functionality for the scrolling. + + + This class can be used both for horizontal and for vertical scrolling through its + property . Only the + specialized children are put in the Toolbox: + and . + + + To adjust the value range of the scroll bar control set the + and + properties. To adjust the + distance the scroll thumb moves, set the + and + properties. To adjust the starting point of the scroll thumb, set the + property when the control is + initially displayed. + + + + + + Decrements the thumb position by the number of small steps given as a parameter. + The distance of a small step is determined by the + SmallChange property. + + + + + Increments the thumb position by the number of small steps given as a parameter. + The distance of a small step is determined by the + SmallChange property. + + + + + Decrements the thumb position by the number of large steps given as a parameter. + The distance of a large step is determined by the + LargeChange property. + + + + + Increments the thumb position by the number of large steps given as a parameter. + The distance of a large step is determined by the + LargeChange property. + + + + + Scrolls to the first position specified by the Minimum + property. + + + + + Scrolls to the last position specified by the Maximum + property. + + + + + Scrolls to the specified position. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Gets the instance of RadScrollBarElement wrapped by this control. RadScrollBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of both + RadHScrollBar and RadVScrollBar. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + RadScrollBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current BackColor property might be ignored. + + + + + RadScrollBar consists of multiple visual elements and separate settings are provided to customize their appearance. + Current ForeColor property might be ignored. + + + + + + + + + + + Gets or sets the ScrollType. Possible values are defined in the ScrollType + enumeration: Vertical, and Horizontal. + + + + Implements the basic functionality for scrolling. + + + This class can be used both for horizontal and for vertical scrolling via its + property . In the Toolbox only the specialized + children are put: and + . + + + To adjust the value range of the scroll bar control, set the + and properties. To adjust + the distance the scroll thumb moves, set the and + properties. To adjust the starting point of the + scroll thumb, set the property when the control is + initially displayed. + + + + + + + + + + Retrieves the srolling parameters. + ScrollBarParameters Structure + + + Sets the given scroll parameters. + ScrollBarParameters Structure + + + + Simulate scrolling - just like the top / left button is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is decremented with (numSteps * SmallChange) + + + + Simulate scrolling - just like the bottom / right button is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is incremented with (numSteps * SmallChange) + + + + Simulate scrolling - just like the top / left area according the thumb is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is decremented with (numSteps * LargeChange) + + + + Simulate scrolling - just like the bottom / right area according the thumb is pressed. + Unlike setting property Value this function fires scrolling events. + + Value is incremented with (numSteps * LargeChange) + + + + Simulate scrolling with positioning the thumb on its first position. + Unlike setting property Value this function fires scrolling events. + + + + + Simulate scrolling with positioning the thumb on its last position. + Unlike setting property Value this function fires scrolling events. + + + + Scrolls just like the thumb is dragged at given position + Position of the thumb (in screen coordinates). + + + + Occurs when the scroll thumb has been moved by either a mouse or keyboard + action. + + + + + Occurs when the property is changed, either by a + event or programmatically. + + + + + Occurs when a property that affects the scrolling is changed. + See for more information on which properties affect the scrolling. + + + + + Indicates whether invalid values should be clamped or an exception should be thrown + + + + + Gets the first button element of this scrollbar + + + + + Gets the second button element of this scrollbar + + + + + Gets or sets a value between 0.0 and 1.0 that indicates what part of the scrollable area + can be occupied by the thumb. If the value is 0.0 then the thumb should be with length 0 + but the property MinThumbLength will cause the thumb to be larger. + If the value is 1.0 the the thumb takes the whole area between the two scrolling buttons. + Negative value means that the thumb length should be calculated automatically based on + Minimum, Maximum and LargeChange values. + + + + + + Gets or sets the minimum length of the scrolling thumb. See + for more information about thumb length. + + + + An integer value that gives the minimum thumb length. It is taken into account no + matter if the thumb length is calculated automatically or the thumb length is set + explicitly. + The thumb length could be smaller than MinThumbLength if there is no space in the scroll bar. + + + + + Gets the length of the scrolling thumb. Thumb length is the thumb's height + for vertical scroll bar and the thumb's width for horizontal scroll bar. + + + + + Controls the angle that the fill primitive will be rotated when switching from horizontal to vertical orientation + + + + Gets or sets the upper limit of the scrollable range. + A numeric value. The default value is 100. + + NOTE: The value of a scroll bar cannot reach its maximum value through user + interaction at run time. The maximum value that can be reached is equal to the + Maximum property value minus the + property + value plus 1. The maximum value can only be reached programmatically. + + + + Gets or sets the lower limit for the values of the scrollable range. + A numeric value. The default value is 0. + + The value of a scroll bar cannot reach its maximum value through user + interaction at run time. The maximum value that can be reached is equal to the + Maximum property value minus the + property + value plus 1. The maximum value can only be reached programmatically. + + + + + Gets or sets a numeric value that represents the current position of the scroll thumb on + the scroll bar. + + + A numeric value that is within the and + range. The default value is 0. + + + + + Gets or sets the value to be added to or subtracted from the + property when the scroll thumb is moved a small distance. + + A numeric value. The default value is 1. + + When the user presses one of the arrow keys, clicks one of the scroll bar + buttons or calls one of the LineXXX() functions, the Value property changes + according to the value set in the SmallChange property. + + + + + Gets or sets a value to be added to or subtracted from the + property when the scroll + thumb is moved a large distance. + + A numeric value. The default value is 10. + + When the user presses the PAGE UP or PAGE DOWN key, clicks in the scroll bar + track on either side of the scroll thumb, or calls one of the PageXXX() functions, the + Value property changes according to the value set in the LargeChange + property. + + + + + Gets or sets the scroll type - it could be horizontal + or vertical. + + + + + Gets the thumb element of this scrollbar + + + + + Gets or sets the scroll timer delay + + + + Represents a vertical scroll bar. + + + + Gets or sets the ScrollType. Possible values are + defined in the ScrollType enumeration: Horizontal and Vertical. + + + + + Represents a scrollbar button. There are two buttons in the implementation of the + RadScrollBar: FirstButton and SecondButton. + + + + Initializes a new instance of the ScrollBarButton class. + + + + Initializes a new instance of the ScrollBarButton class using + scrollButtonDirection. + + + + + Gets or sets a value indicating the button + direction defined in the ScrollButtonDirection enumeration: up, right, + buttom, and left. + + + + + Gets an instance of contained in the button. + + + + + Gets an instance of contained in the button. + + + + + Gets an instance of contained in the button. + + + + Represents a scrollbar thumb in the scroll bar. + + + + Gets a value indicating whether the thumb is in pressed state. + + + + + Gets or sets the image associated with the thumb + + + + + Gets an instance of contained in the thumb. + + + + + Gets the contained in the thumb. + + + + + RadWebBrowserElement extends RadWebBrowserItem adding border and background fill. + + + + + + + + + + + + + + + + + + + + + Gets the of the + + + + + + Gets the of the + + + + + + Gets or Sets value indicating whether the is visible + + + + + + RadWebBrowserItem hosts WebBrowser control to allow using it in the TPF structure. + + + + + Gets or Sets the Url that is to be browsed. + + + + + + Gets or Sets the HTML document content. + + + + + + Gets the HTML document title content. + + + + + + Fires when document loading has completed. + + + + + + Fires when file has been downloaded + + + + + + Fires when the browser has navigated to a new document and has begun loading it. + + + + + + + Fires before the browser navigates to a new document + + + + + + + Fires before new browser window is opened + + + + + + Fires before System.Windows.Forms.Control.KeyDown event when a key is pressed while focus is on this control. + + + + + Fires when the RadWebBrowserItem has updated information on the download progress of a document it is navigating to. + + + + + + Fires when the System Colors change + + + + + Gets or sets the zoom popup shadow + + + + + Gets or sets the animation frames count + + + + + Gets or sets the animation interval (in miliseconds) + + + + + Provides data for the ToolTipTextNeeded event used in ItemScroller + + + + + Initializes a new instance of the GridElementToolTipTextNeededEventArgs class. + + The tool tip. + The row index of the first visible item. + The first visible item. + The default tooltip text. + + + + Gets the item index of the first visible item. + + + + + Gets the item associated with this ToolTip. + + + + + Represent a interface that is traversable + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Specifies the mode in which an ItemScroller will scroll the items in its view. + + + + + Items are scrolled one at a time. The scrollbar maximum is equal to the number of the items in the view. + The scrollbar SmallChange is equal to 1 and each small increment or decrement will move the items in the view with one whole item. + + + + + Items are scrolled smoothly. The scrollbar maximum is equal to the sum of the heights of all the items in the view. + The scrollbar SmallChange is calculated automatically. Increments and decrements will move the items in the view with the actual value of the scrollbar. + + + + + Works in a similar way as Smooth with the difference that the view is updated only when the scrollbar thumb is released. A tooltip helps indicated the + position to which the view will be scrolled to. + + + + + Represent a navigating event handler raised by ItemScroller + + + The sender. + The e. + + + + Event arguments of ItemsNavigatingEventHandler + + Item + + + + Initializes a new instance of the class. + + The navigating item. + + + + Gets the item. + + + The item. + + + + + Gets or sets a value indicating whether the item should be skipped. + + + true if skip the item; otherwise, false. + + + + + Represent a generic scroll view element + + + + + Container element of + + + + + Gets or sets the element count. + + The element count. + + + + Gets or sets the color of the elements. + + The color. + + + + Gets or sets the secondary color of the elements. + + The secondary color. + + + + Gets or sets the inner radius. + + The inner radius. + + + + Gets or sets the radius. + + The radius. + + + + Gets or sets the initial start element angle. + + The initial start element angle. + + + + Gets or sets the rotation direction. + + The rotation direction. + + + + Gets or sets the element gradient percentage. + + The element gradient percentage. + + + + Gets or sets the element gradient percentage. + + The element gradient percentage. + + + + Gets or sets the element back color3. + + The element back color3. + + + + Gets or sets the element back color3. + + The element back color3. + + + + Gets or sets the element number of colors. + + The element number of colors. + + + + Gets or sets the current leading element angle. + + The current leading element angle. + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the last dot radius. + + The last dot radius. + + + + Gets or sets the line thickness. + + The line thickness. + + + + Checks if an angle is in given range(by given start and end angles) depending on the RotationDirection. + + The angle to check. + Start of range. + End of range. + + + + + Gets or sets a value indicating whether to expand and collapse the ring. + + Boolean. + + + + Gets or sets the sweep angle. + + The sweep angle. + + + + Gets or sets the minimal sweep angle. + + The minimal sweep angle. + + + + Gets or sets the outer ring sweep angle. + + The outer ring sweep angle. + + + + Gets or sets the width of the outer ring. + + The width of the outer ring. + + + + Gets or sets the background color of the outer ring. + + The outer ring background color. + + + + Gets or sets the inner ring sweep angle. + + The inner ring sweep angle. + + + + Gets or sets the inner ring start angle measured in degrees. + + The inner ring start angle. + + + + Gets or sets the width of the inner ring. + + The width of the inner ring. + + + + Gets or sets the background color of the inner ring. + + The inner ring background color. + + + + Gets or sets the distance between segments. + + + + + Represents accelerating dots moving in a line. + + + + + Gets a value indicating whether the WaitingDirection is vertical(Top or Bottom). + + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the acceleration speed. + + The acceleration speed. + + + + Gets or sets the distance between dots. + + The distance between dots. + + + + Gets or sets a value, indicating the distance(in percent) which each ball moves with slow speed. + + The slow speed range. + + + + Gets or sets the waiting direction. + + The waiting direction. + + + + Gets or sets the empty frames count between animation cycles. + + The delay between animation cycles. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the dot radius. + + The dot radius. + + + + Gets or sets the acceleration speed. + + The acceleration speed. + + + + Gets or sets the max speed sweep angle. + + The max speed sweep angle. + + + + Gets or sets the sweep angle dot travels before the end of animation cycle. + + The dot sweep angle life cycle. + + + + Gets or sets the distance between dots. + + The distance between dots. + + + + Gets or sets the empty frames count between animation cycles. + + The delay between animation cycles. + + + + Represents the content element of . + + + + + The waiting style property of + + + + + Clears all indicators and creates new, depending on the WaitingStyle value. + + + + + Gets the reversed direction. + + The direction. + + + + + Increments the offset of the indicator + + The value. + + + + Determines whether this instance is vertical. + + + true if this instance is vertical; otherwise, false. + + + + + Resets the waiting state of the indicator. + + + + + Updates the indicator stretch orientation. + + The indicator. + + + + Updates the vertical state property of the indicator. + + The indicator. + + + + Adds the indicator step. + + The step. + The index of the indicator. + + + + + Arranges the indeterminate indicator elements. + + The client rectangle. + + + + Calculates the indicator step. + + The client rectangle. + + + + + Gets the final size of the throbber indicator element. + + The element. + The client rectangle. + + + + + Gets the final size of the dash element. + + The element. + The client rectangle. + + + + + Moves the indicator element. + + The element. + The client rectangle. + The waiting direction. + + + + + Sets the elements visibility. + + The style. + + + + Sets the indicators visibility. + + The visibility. + + + + Sets the dash initial position. + + The element. + The client rectangle. + + + + + Updates the offset. + + The client rectangle. + + + + Obsolete. Use WaitingIndicators instead. + + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets an instance of the class + that represents the waiting bar text element + + + + + Gets an instance of the class + that represents the waiting bar separator element + + + + + Gets and sets the direction of waiting. + Range: Bottom, Left, Right, Top + + + + + Indicates whether the element is currently waiting + + + + + Gets or sets the style of the WaitingBarElement. + + + + + Returns true if WaitingStyle is Indeterminate, Throbber or Dash. + + + + + The RadWaitingBar class is a simple wrapper for the + RadWaitingBarElement class. + The latter implements all UI and logic functionality. + The RadWaitingBar class acts to transfer events to and from the + RadWaitingBarElement class. + RadWaitingBarElement can be + nested in other telerik controls. + + + + + Creates the waiting bar element. + + + + + + exclude WaitingBarElement from Serilization + + should serialize + + + + Starts the waiting animation. + + + + + Stops the waiting animation. + + + + + Resets the waiting indicator to initial position. + + + + + Gets or sets whether the edit control is auto-sized + + + + + Obsolete. Use WaitingIndicators instead. + + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets the instance of RadWaitingBarElement wrapped by this control. RadWaitingBarElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadWaitingBar. + + + + + Sets the DefaultSize of RadWaitingBar + + + + + Gets and sets the image property of the indicator + + + + + Gets and sets the image index property of the indicator + + + + + Gets and sets the image key property of the indicator + + + + + Indicates whether the control is currently waiting + + + + + Indicates the orientation of the RadWaitingBar + + + + + Indicates whether the indicators are stretched horizontally + + + + + Indicates whether the indicators are stretched vertically + + + + + Sets the style of RadWaitingBar + + + + + Gets and sets the text of the control's textElement + + + + + Gets and sets the WaitingDirection of the RadWaitingBarElement + + + + + Gets and sets the size of the indicator in pixels + + + + + Gets and sets the speed of the animation. Higher value moves the indicator more quickly across the bar + + + + + Gets and sets the number of pixels the indicator moves each step + + + + + Shows text in RadWaitingBar. + + + + + Gets/Sets the control to associated it. RadWaitingBar will be shown in the middle of the associated control when started. + + + + + Gets the associated panel. + + + + + Starts control waiting + + + + + Ends control waiting + + + + + Represents a waiting bar element. It may be included in other telerik controls. + All graphical and logical functionality is implemented in RadWaitingBarElement. + + + + + The timer + + + + + The continue waiting + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Initializes the class. + + + + + Initializes a new instance of the class. + + + + + Starts the waiting process + + + + + Stops the waiting process + + + + + Sets the indicator to its starting position depending on the WaitingDirection + + + + + Gets an instance of the class + that represents the waiting bar content element + + + + + Obsolete. Use WaitingIndicators instead. + + + + + Gets a collection of elements + which contains all waiting indicators of RadWaitingBar + + + + + Gets an instance of the class + that represents the waiting bar text element + + + + + Gets an instance of the class + that represents the waiting bar separator element + + + + + Gets and sets the Image of the element's indicator + + + + + Gets and sets the ImageIndex of the element's indicator + + + + + Gets and sets the ImageKey of the element's indicator + + + + + Shows text in RadWaitingBarElement. + + + + + Indicates whether the indicators are stretched horizontally + + + + + Indicates whether the indicators are stretched vertically + + + + + Sets the style of the WaitingBarElement + + + + + Gets and sets the size of the indicator in pixels + + + + + Indicates whether the element is currently waiting + + + + + When set to vertical the RadWaitingBar WaitingDirection property is set to Bottom + When set to horizontal the RadWaitingBar WaitingDirection is property is set to Right + + + + + Gets and sets the direction of waiting, e.g. + the Right value moves the indicator from left to right + Range: Bottom, Left, Right, Top + + + + + Gets and sets the speed of the indicator + Greater value results in faster indicator + Range: [0, 100] + + + + + Gets and sets the step in pixels which moves the indicator + + + + + Occurs when waiting is started. + + + + + Occurs when waiting is stopped. + + + + + The state manager class of + + + + + Represents a collection of items. + + + + + Initializes a new instance of the class. + + + + + Represents waiting bar indicator element + + + + + Initializes the class. + + + + + Gets the separator element. + + + The separator element. + + + + + Gets a offset of the indicator. + + + + + The state manager class of . + + + + + The state manager class of + + + + + Represents 's text element + + + + + Represents separator element in . + + + + + Initializes the class. + + + + + Sets and gets the width of each separator line in pixels + + + + + Sets and gets the distance between two adjacent separator lines + + + + + Sets and gets the orientation of the separator element + + + + + Sets and gets the angle of rotation of all separator lines + + + + + Indicates whether separator lines should be drawn + + + + + Indicates whether a second set of separator lines should be drawn + + + + + Represents a collection of items. + + + + + Initializes a new instance of the class. + + +
+
diff --git a/SDRSharper/bin/x64/Release/Telerik.WinControls.dll b/SDRSharper/bin/x64/Release/Telerik.WinControls.dll new file mode 100644 index 0000000..363ae5d Binary files /dev/null and b/SDRSharper/bin/x64/Release/Telerik.WinControls.dll differ diff --git a/SDRSharper/bin/x64/Release/Telerik.WinControls.xml b/SDRSharper/bin/x64/Release/Telerik.WinControls.xml new file mode 100644 index 0000000..06b79ca --- /dev/null +++ b/SDRSharper/bin/x64/Release/Telerik.WinControls.xml @@ -0,0 +1,22298 @@ + + + + Telerik.WinControls + + + + + This interface represents a monitor which receives trace events from RadControls. You can implement it if you need to + receive trace events from the controls used in your application. + + + + + This method is called when an atomic feature is executed. + + The feature to be tracked. + + + + This method is called when a feature is initiated. + + The feature that was initiated. + + + + This method is called when a feature finishes execution. + + The feature that finished. + + + + This method is called when a feature is canceled. + + The feature that was canceled. + + + + Traces an error in a specified feature. + + The feature in which the error occurred. + The error that occurred. + + + + This method is called when a value connected with a specific feature is tracked. + + The feature that produced the value. + The value that was tracked by the feature. + + + + Gets or sets the monitor, which the controls report to. + + + + + Notifies listeners of dynamic changes, such as when items get added and removed or the whole list is refreshed. + + + You can enumerate over any collection that implements the IEnumerable interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the INotifyCollectionChanged interface. This interface exposes the CollectionChanged event that must be raised whenever the underlying collection changes. + + + + + Occurs when the collection changes. + + + + + Moves the specified old index. + + The old index. + The new index. + + + + Adds the range. + + The items. + + + + Adds the range. + + The items. + + + + Begins the update. + + + + + Ends the update. + + + + + Defers the refresh. + + + + + + Defines possible reasons for a CurrentChanged notification from RadCollectionView. + + + + + The default reason for causing the event. + + + + + The event was caused by an Add operation. + + + + + The event was caused by a Move operation. + + + + + The event was caused by an EndUpdate operation. + + + + + The event was caused by a Sync operation. + + + + + String + + + + + Number + + + + + DateTime + + + + + Boolean + + + + + Null + + + + + Other + + + + + Used when exporting null value. + + + + + General format + + + + + Displays anything as text (i.e. Left aligned without formatting) + + + + + Displays numeric values with two fixed decimals + + + + + Displays numeric values with two fixed decimals and digit grouping + + + + + Displays numeric values as percentage values + + + + + Displays numeric values in scientific notation + + + + + Displays numeric or date values as formatted date values + + + + + Displays numeric or date values as short date format + + + + + Displays numeric or date values as medium date format + + + + + Displays numeric or date values as long date format + + + + + Displays numeric date as currency + + + + + Displays numeric or date values in a long time format + + + + + Displays numeric or date values in a medium time format + + + + + Displays numeric or date values in a short time format + + + + + Custom defined format + + + + + The cell content type + + + + + Cell does not contain anything + + + + + Cell contains a string + + + + + Cell contains a number + + + + + Cell contains a DateTime value + + + + + Cell contains a bool value + + + + + Cell contains a formula + + + Cell contains a formula which cannot be resolved + + + + + Gets or sets the type of the grid row. + + The type of the row. + + + + Gets or sets the index of the grid row. + + The index of the row. + + + + Gets or sets the type of the grid column. + + The type of the column. + + + + Gets or sets the index of the grid column. + + The index of the column. + + + + Gets or sets the cell style info. + + The cell style info. + + + + This creates a linear gradient depending on number of colors needed + + + + + this.editor.Position = savePosition; + + Horizontal offset that will be set as new Matrix position + Vertical offset that will be set as new Matrix position + + + + Enum listing the export formats supported by RadSpreadProessing. + + + + + XLSX format + + + + + PDF format + + + + + CSV format + + + + + Txt format + + + + + Enum listing the export formats supported by RadSpreadStreamProessing. + + + + + XLSX format + + + + + CSV format + + + + + Enum listing the different options when exporting to a file + + + + + Export as new sheet in existing file + + + + + Export in new file or override existing file + + + + + Load expression items list from embedded in Telerik assembly xml source + + + + + Load expression items list + + Xml file path + + + + Load expression items list + + + + + + Sets the first page as the current page. + + true if the operation was successful; otherwise, false. + + + + Sets the last page as the current page. + + true if the operation was successful; otherwise, false. + + + + Moves to the page after the current page. + + true if the operation was successful; otherwise, false. + + + + Requests a page move to the page at the specified index. + + true if the operation was successful; otherwise, false. + The index of the page to move to. + + + + Moves to the page before the current page. + + true if the operation was successful; otherwise, false. + + + + Gets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Occurs when the IPagedCollectionView.PageIndex has changed. + + + + + Occurs before the IPagedCollectionView.PageIndex is changed. + + + + + Gets a value that indicates whether the IPagedCollectionView.PageIndex value is allowed to change. + + true if the IPagedCollectionView.PageIndex value is allowed to change; otherwise, false. + + + + Gets a value that indicates whether a page index change is in process. + + true if the page index is changing; otherwise, false. + + + + Gets the zero-based index of the current page. + + The zero-based index of the current page. + + + + Gets or sets the number of items to display on a page. + + The number of items to display on a page. + + + + Gets the total number of items in the source collection. + + The total number of items in the source collection, or -1 if the total number is unknown. + + + + Gets or sets the tag. + + The tag. + + + + Determines whether [contains] [the specified value]. + + The value. + + true if [contains] [the specified value]; otherwise, false. + + + + + Copies to. + + The array. + The index. + + + + Indexes the of. + + The value. + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Use the StyleBuilderReadOnly attribute to mark properties that should appear as readonly when edited in the Visual + Style Builder application + + + + + This attribute should be used on classes which will be present in the Visual Studio toolbox (i.e. the ones that should also have a attribute). + + + + + Creates a new instance of the ToolboxCategory attribute with the specified title. + + The title of the category where the control will be placed + + + + Theme manager Component is used to load user-defined themes for RadControls in an application. + Use the LoadedThemes property to add new team source files. Themes load immediately when correct + property values specified and last for the life time of the application. After a theme is loaded + it can be used by the corresponding types of controls placed on any Form of the application. + + + + + ThemeSource is used to load user-defined themes for RadControls in an application. + Themes load immediately when correct property values specified and last for the life + time of the application. After a theme is loaded it can be used by the corresponding + types of controls placed on any Form of the application. ThemeSource object are generally + used by ThemeManager component placed on a Form + + + + + Base for all TPF classes. Implements WPF-like property system with different value sources. + Provides public interface for getting, setting value or re-setting property value. + + + + + Represents a basic object which implements IDisposable interface. + + + + + Gets the current bit state for the object, defined by the provided key. + + + + + + + Applies the specified boolean value to the BitVector of the object. + + + + + + + Notifies the object for a change in its bit state. + + + + + + + + Releases all resources associated with this object. + + + + + Performs the actual Dispose logic. + + + + + + Performs the core resources release logic. + + + + + + Disposes all MANAGED resources - such as Bitmaps, GDI+ objects, etc. + + + + + Releases any UNMANAGED resources used by this object. + NOTE: If you declare some unmanaged resources in your class, + you should override its finalizer and put disposing logic there also. + + + + + Gets the RadBitVector64 structure that holds all the bit states of the object. + + + + + Provides a simple list of delegates. + + + + + Determines whether the object is in a process of being disposed of. + + + + + Determines whether the object is already disposed. + + + + + Replaces the default property descriptors of properties of the object in order to perform Rad-Object specific + tasks like checking ShouldSerialize and RadProperty-DefaultValue... + + + + + + + + + + + + Removes all references to external property modifiers such as + property bindings, style settings and animations. + + + + + Allows PropertyChanging and PropertyChanged notifications to be temporary suspended. + + + + + Resumes property notifications after a previous SuspendPropertyNotifications call. + + + + + Gets the RadPropertyValue structure that holds information + about the specified property's effective value for this instance. + May be null if no effective value is recorded. + + + + + + + Applies the provided value as an override + of the Default value provided by the specified property's metadata. + + + + + + + + Marks the current PropertyValue entry for the specified property as "Set at design-time". + This is used by our custom code-dom serializer to determine which properties needs to be persisted. + + + + + + Applies the specified value as Local for the desired property + and raises the flag IsLocalValueSetAtDesignTime for that property. + All design-time direct property modifications (e.g. item.Text = "Item1") + should be done through this method for the property to be properly serialized. + If a property is modified through a property grid, the custom property descriptor will automatically apply this logic. + This method is used internally. + + + + + + + Retrieves the current value for the specified property. + + + + + + + Applies the provided value as Local for the specified property. + + + + The result of the operation. + + + + Resets the current value of the specified property. + This method will remove any effective value modifier + (such as style or animation setting) for the specified property. + + The RadProperty that should be reset. + The result of the operation. + + + + Resets the current value of the specified property using the provided flags. + + The RadProperty that should be reset. + Additional flags that specify which effective modifiers should be reset. + The result of the operation. + + + + Forces re-evaluation of the current value for the specified property. + + + The result of the operation. + + + + Gets the source of the current value for the specified property. + + + + + + + Gets the registered property with the specified name. + + + + + + + Performs the core value update logic. + + + The result of the operation. + + + + Performs the core logic of updating property value. + + The property value structure, holding property information. + Additional modifier, like IPropertySetting + The actual new value to be set, valid for Local and DefaultValue sources. + Specifies the source of the provided new value. + The result of the operation. + + + + Resets the specified property value, using the provided reset flags. + + + + The result of the operation. + + + + Allows inheritors to provide custom default value. + + + + + + + + Allows inheritors to force a coersion of the current calculated value for the given property. + + The property value. + The current caluclated value of the property. + Null if no coersion is needed. + + + + Determines whether the property defined by the provided property descriptor should be serialized. + + + + + + + Checks needed conditions to perform property update. + + + + + + + Performs the following logic: + 1. Compares oldValue and newValue and returns ValueUpdateResult.NotChanged if they are equal. + 2. Raises the PropertyChanging notification. If the event is canceled returns ValueUpdateResult.Canceled. + 3. Raises PropertyChanged notification and returns ValueUpdateResult.Updated. + + + + + + The result of the operation. + + + + Determines whether the object can raise PropertyChanging and PropertyChanged notifications. + Current implementation checks whether the object is disposing or is already disposed of. + + + + + + + Gets the animation (if any) attached to the current property. + + + + + + + Gets notified for a change in an animated property. + + The property which is currently animated. + + + + Binds the specified property to a property of the provided binding source object. + + Our property that is about to be bound. + The object to which source property belongs. + The property to which we will bind. + Additional options, specifying the binding operation. + + + + Removes the binding for the specified property. + + + The result of the operation. + + + + Gets notified that the specified object has bound to a property of ours. + + The instance that has bound the specified property. + + + + + Gets notified that the specified object has unbound itself from a property of ours. + + + + + + + Notifies a binding source that a change occured in a two-way bound property. + + + + + + + Gets notified for a change in an already bound external property. + + + + + + Detaches binding reference from the binding source. + + + + + + Registers a style setting for this instance. + + + + + + Called when element style condition changes. This method is used internally. + + + + + + Called when element style condition changes. This method is used internally. + + + + + + Searches up in the chain of InheritanceParents for a value for the specified property. + + The property to examine. + + + + + Raises the event. + + + + + + Raises the event. + + + + + + Raises the PropertyChanged event. + + The name of the property. + + + + Raises the standard .NET PropertyChanged event. + + + + + + Determines whether the specified property may be canceled. + + The metadata associated with the property change. + + + + Occurs when a property of an object changes. + Note: if a property which is not a RadProperty changes, + the developer is responsible for firing this event by using the + API. + + + + + Occurs when a property of a RadObject changes. + + + + + Occurs prior to property of a RadObject changes. + + + + + Gets a collection containing property values. + + + + + Gets the RadObject which is treated as the parent from which inheritable properties are composed. + + + + + Determines whether the element is in design mode. + + + Gets or sets a value indicating whether design mode is active. + + + + + Gets or sets a Filter instance, used to filter the ICustomPropertyDescriptor.GetProperties collection. + + + + + Gets the RadObjectType which is associated with this system type. + + + + + Gets or sets the BindingContext for the object. + + + + + Loads the theme from the file resource specified and registers it into ThemeResolutionService. Thais method is called + immediately when correct ThemeLocation and StorageType are specified. + + + + + Indicates whether the specified theme was loaded successfully. + + + + + Gets value indicating the error message if Theme was not loaded successfully. + + + + + Gets or sets the full resource name if StorageType is Resource. Example: "MyNamespace.MyThemeFileName.xml". + If the StorageType specified is File, then the value of this property should represent the full or relative file path, + accessible by the application. The "~" sign can be used to substitute the application executable path. + Eg. "C:\MyApp\MyThemeFileName.xml" or "..\..\MyThemeFileName.xml" or "~\MyThemeFileName.xml" + + + + + Gets or sets the owner theme manager component. Generally used by Form's designer. + + + + + Gets or sets File or Resource type of storage for the theme file + + + + + Gets a value indicating whether property values are valid + + + + + Represents + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of the. + + + + Owner component + + + + + + Initializes a new instance of the based on another . + + + + A from which the contents are copied + + + Owner component + + + + + + Initializes a new instance of the containing any array of objects. + + + + A array of objects with which to intialize the collection + + + Owner component + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Defines the theme storage type. + + + + + Indicates that the theme is contained in a external file. + + + + + Indicates that the theme is contained as a resource. + + + + + Represent the ColorChangedEventArgs class + + + + + Represents event arguments for the + %ColorChanged:Telerik.WinControls.CaptureBox.ColorChanged% event. + + + Represents the changed color. + + + + + Represents event arguments for the + event. + + + Represents the changed color. + + + + + Modes the RadColorPicker can be in + + + + + This class is used to hold the event arguments + for the CustomColorsConfigLocationNeeded event of the CustomColors control. + + + + + Creates an instance of the CustomColorsEventArgs class. + + The location of the config file. + The name of the config file. + + + + Gets or sets the file name of the configuration file. + + + + + Gets or sets the path where the configuration file will be stored. + + + + + Represents color in HSL color space. + + + Used for color blending operations, defined in HSL color space which are more precise than in RGB. + HSL colors are used by theming and painting sub-systems of RadControls. + + + + + H Channel value + + + + + S Channel value + + + + + L Channel value + + + + + RGB color value + + + + + Gets or sets color'a alpha chanel level in terms of argb color. Used mainly for conversion from/to ARGB color values. + + + + + Wraps the functionality provided by the color picker + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Shows or hides the basic colors tab + + + + + Gets or sets the active mode of the color tabs + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides the professional colors tab + + + + + Shows or hides the custom colors panel + + + + + Shows or hides the hex color textbox + + + + + Allows or disallows editing the hex value + + + + + Allows or disallows picking colors from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the OK Button is clicked + + + + + Fires when the Cancel Button is clicked + + + + + Gets the color selector + + + + + Gets or sets the selected color + + + + + Gets or sets the selected color + + + + + Gets or sets the old color + + + + + Gets or sets the active mode of the color tabstrip + + + + + Shows or hides the basic colors tab + + + + + Shows or hides the system colors tab + + + + + Shows or hides the web colors tab + + + + + Shows or hides whe professional colors tab + + + + + Shows or hides the custom colors tab + + + + + Shows or hides the hex color value + + + + + Allows or disallows editing the HEX value + + + + + Allows or disallows color picking from the screen + + + + + Allows or disallows color saving + + + + + Gets the custom colors + + + + + Gets or sets the heading of the basic colors tab + + + + + Gets or sets the heading of the system colors tab + + + + + Gets or sets the heading of the web colors tab + + + + + Gets or sets the heading of the professional colors tab + + + + + Gets or sets the heading of the selected color label + + + + + Gets or sets the heading of the old color label + + + + + Fires when the selected color has changed + + + + + Represents a dialog that can be used to select color with rich UI and extended functionality. + + + + + Resets the properties of a color dialog box to their default values. Replaces the underlaying ColorDialogForm + with new instance + + 1 + + + + Shows modal dialog box. + + + + true if the dialog box was successfully run; otherwise, false. + + + A value that represents the window handle of the owner window for the common dialog box. + + + + Gets the instance of RadColorDialogForm, which incorporates various settings of the + underlaying color selection Form and ColorSelector user control. + + + + + Gets or sets the icon displayed for this dialog. + + + + Gets or sets a value indicating whether control's elements are aligned + to support locales using right-to-left fonts. + One of the values. + The default is . + The assigned + value is not one of the values. + + + + + Gets or sets the selected color. References to SelectedColor of . + + + + + Gets or sets the selected color. References to SelectedColor of . + + + + + Gets the user-defined colors. References to CustomColors of . + + + + + Represents the method that will handle the ColorChanged event. + + + + + + + + + + + + + + + + + + + Fires when the selected color changes + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + + + + Represents a RadControl. RadControl is an abstract class and is base class for + all Telerik controls. + + + + + Returns the value for some ambient properties like BackColor, ForelColor, Font, etc. + + + + + + + Updates after a change in an ambient property like BackColor, ForeColor, Font, etc. + + + + + + Creates the input behavior instance. Allows inheritors to provide custom input implementations. + + + + + + Loads the element tree. While not loaded, no layout operations are allowed upon the tree. + By default, the tree will be loaded when the control is displayed for the first time. + + + + + Loads the element tree using the specified desired size. + + + + + + This method is used internally! + + + + + + Determines whether the BackColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Determines whether the ForeColor property should be serialized. + + + + + + Notifies that the control is about to be visualized. + + + + + + Processes a focus request from the specified element. + + The element that requested the focus. + True if focus is approved, false otherwise. + + + + Processes a capture request from the specified element. + + The element which requested the capture. + + True if the capture request is approved, otherwise false. + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + Suspends layout during initialization. + + + Resumes layout. + + + + Raises the PropertyChanged event + + The name of the property + + + + Fires the ZoomGesture event. + + The arguments for the ZoomGesture event. + + + + Fires the RotateGesture event. + + The arguments for the RotateGesture event. + + + + Fires the PanGesture event. + + The arguments for the PanGesture event. + + + + Fires the TwoFingerTapGesture event. + + The arguments for the TwoFingerTapGesture event. + + + + Fires the PressAndTapGesture event. + + The arguments for the PressAndTapGesture event. + + + + Enable firing gesture events of the specified type. + + The type of gesture events to enable. + + + + Disable firing gesture events of the specified type. + + The type of gesture events to disable. + + + + Checks whether the 's theme is defined by the control. + + + If true is returned the ThemeResolutionService would not not set any theme to the element + to avoid duplicating the style settings of the element. + + The element to should be checked. + true if the control defines theme for this element, false otherwise. + + + + Replaces the default style group for specific element. + + The style group to replace. + The element on which this style should apply. + An instance of is successfull. + + + + Strips all html tags of the text set to the control and returns only the plain text. + + Plain text stripped of any html tags. + + + + Determines whether an element from this element tree may be displayed in the EditUIElements dialog. + + + + + + + Method used by control Code Dom serializer to access element in the collection of RootElement. + + + + + + + Determines whether the specified RadProperty should be serialized. + + + + + + + Determines whether an element may be edited via the EditUIElements dialog at design-time. + + + + + + + This method is used internally! + + The default size for this control + + + + This method is used internally! + + + + + + + Determines whether the control is properly loaded. + + + + + Set or get the default value for UseCompatibleTextRendering property. + + + + Gets the input behavior for the control. + + + Gets the RootElement of the control. + + + Gets or sets padding within the control. + A representing the control's + internal spacing characteristics. + + + + Gets or sets control's preferred theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets value indicating whether the control is styled through theme + + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usage of the control. + + + + + Gets or sets the ImageList that contains the images displayed by this control. + + + + + Gets or sets the image scaling size. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value indicating whether the control is automatically resized + to display its entire contents. + + + + + Gets or sets the size that is the upper limit that GetPreferredSize can + specify. + + + + + Gets or sets the size that is the lower limit that GetPreferredSize can + specify + + + + + Gets or sets a value indicating whether the control causes validation to be performed on any controls that require validation when it receives focus. + + + + + Gets or sets the SmallImageList that contains the small images which are displayed when there's not enough space. + + + + Gets or sets the small image scaling size. + + + + Determines whether the control is currently displayed on the screen. + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets the BackColor of the control. + This is actually the BackColor property of the root element. + + + + + Gets or sets the ForeColor of the control. + This is actually the ForeColor property of the root element. + + + + + Gets or sets the Font of the control. This is actually the Font property of the root element. + + + + + Occurs when a RadItem instance inside the RadControl requires ToolTip text. + + + + + Occurs prior the ScreenTip of a RadItem instance inside the RadControl is displayed. + + + + Fires when the theme name is changed. + + + Fires when the control is initialized. + + + + Occurs when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Occurs when a zoom gesture was sent by a touch input device. + + + + + Occurs when a rotate gesture was sent by a touch input device. + + + + + Occurs when a pan gesture was sent by a touch input device. + + + + + Occurs when a two-finger-tap gesture was sent by a touch input device. + + + + + Occurs when a press-and-tap gesture was sent by a touch input device. + + + + + Gets or sets a value indicating whether the Gestures functionality is enabled. + + + + + Gets or sets a value indicating whether the Analytics functionality is enabled or disabled for this control. + + + + + Gets or sets the Analytics Name associated with this control. + By default the Control Name property is logged. + If you want to customize the information which will be logged for this control + set this property to a preferred value. + + + + + Gets or sets a value indicating whether the RadControls Accessible custom object is enabled. + + + + + Gets or sets a value indicating whether the CodedUI Tests functionality is requested from external program such a Narrator. + + + + + Gets or sets a value indicating whether the CodedUI Tests functionality is enabled. + + + + + Gets or sets the default value for EnableCodedUITests property. + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets a value indicating whether the gradient editor is in loading state. This property is used internally. + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets or sets the values + + + + + Fires when the color has changed + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the different positions where an item can be docked + + + + + Defines element selector types. + + + + + Selects an element based on its type. + + + + + Selects an element based on its class property. + + + + + Selects an element based on its visual state property. + + + + + Defines the different sign styles + + + + + plus/minus sign + + + + + up/down arrow + + + + + image + + + + + Triangle + + + + + TextWrapExpand Modes + + + + + Indicates Indeterminate style + + + + + Indicates Throbber style + + + + + Indicates Dash style + + + + + Shows a line of moving dots. + + + + + Shows a ring of moving dots. + + + + + Shows a ring, composed of lines. + + + + + Shows a ring, composed of segments. + + + + + Shows a ring, composed of dots. + + + + + Shows a rotating fading ring. + + + + + Shows two rotating rings in opposite directions. + + + + + [true] if the event has been handled and should not be proccessed further, [false] otherwise. + + + + + The type of the gesture that has occured. + + + + + [true] if this is the beggining of the gesture, [false] otherwise. + + + + + [true] if this is the end of the gesture, [false] otherwise. + + + + + [true] if the event was caused by inertia, [false] otherwise. + + + + + The location of the gesture. + + + + + Initializes a new instance of the class. + + The index of the requested page. + + + + Gets the index of the requested page. + + The index of the requested page. + + + + The possition offset according to the previous pan event. + + + + + A direction vector that indicates the direction of the velocity. + + + + + The offset of the tapping finger according to the pressing finger. + + + + + The rotation angle in radians. + + + + + The zoom factor according to the previous zoom gesture event. + + + + + The center of the zoom gesture. + + + + + Exposes methods and properties for a concrete property setttings used in StyleSheets and Themes. + PropertySetting can customize the current value of any RadPropertry of any RadElement instance. + + + + + Retrieves the current value of the property. + + + + + + + + + + + Applies the value to the element given as a parameter. + + + the element that the property value is applied to. + + + + + Unapply the property to the element given as a parameter. + + + the element that the property value is unapplied to. + + + + + Gets or sets the property itself. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + + + + + + Represents the item which could be added to an ItemsCollection and can be selected, deleted or moved during VS design time. + + + + + + + + Extends RadElement and adds visual properties common to all elements. + + + + + RadElement class represents the smallest unit in a RadControl that can be painted or that has a layout slot in a RadControl. + Generally each RadCotnrol is composed of a tree of RadElements. The tree has as a root the and + children property. + + + Elements nesting also represents the visual nesting. Elements are painted starting + from the root to the leaves of the tree. the leaves are most often primitive + elements like, text, fills, borders and so on. Elements that are descendants of + LayoutPanel are responsible for arranging their children in the available space + and/or for notifying the parent that the layout space is not enough to expand. + Layout behavior of each element can be adjusted using the properties: + , , + (old layouts), and and for + the new layouts. + RadElement is the base class of all elements that need to take advantage of TPF features, like + property inheritance, layouts, styling + with the Visual Style Builder application. Each property change of a RadElement or + of its inheritance parent would result in calling the method OnPropertyChange, + which can be overridden in order to customize the response to changes of any + RadPoperty. + + + + + Defines a visual element which may be displayed using system skins (UxTheme semantic). + + + + + Gets the VisualStyleElement which represents the current state of this instance for Windows XP. + + + + + + Gets the VisualStyleElement which represents the current state of this instance for Windows Vista. + + + + + + Determines whether to use system skins or not. + If this is false, the default TPF rendering will be used. + If this is true and there is no system skin enabled, TPF rendering will be used. + + + + + This constant is used internally. + + + + + Creates the child elements and sets their locally applied values as Default + + + + + Temporary suspends UpdateReferences method. + Useful when modifying the element tree without changing the actual element's references. + + + + + Resumes previously suspended UpdateReference method. + + + + + Initializes member fields to their default values. + This method is called prior the CreateChildItems one and allows for initialization of members on which child elements depend. + + + + + Called by the element when constructed. Allows inheritors to build the element tree. + + + + + A callback used by the owning RadControl to notify the element for a first-time screen visualization. + + True to notify entire subtree for the load process, false otherwise. + + + + This method is used internally. + + + + + + Allows inheritors to provide custom load logic. + + + + + Called when the element has been successfully loaded. That includes loading of all its children as well. + + + + + Unloads the element if it was previously loaded on an element tree. + + Reference to the element tree from which we are in a process of unload. + + + + + Executes the core unload logic. Allows inheritors to perform additional action while the element is unloading itself. + + Reference to the element tree from which we are in a process of unload. + + + + Notifies that the element has been successfully unloaded from an element tree. + Allows inheritors to provide custom logic at this stage. + + Reference to the element tree from which the element has been unloaded. + + + + The element gets notified for a change in its current ElementTree member. + + + + + + A callback used by the owning RadControl to notify the element for the beginning of a disposing process. + + + + + Applies the specified RadElement instance as parent of the current instance. + + + + + + Notifies for a change in the Parent value. + + The previous parent element (if any) + + + + Updates the local references using the provided element tree. + + + True to update inheritance chain, false otherwise. + True to update children also, false otherwise. + + + + This method is used internally! + + + + + + + Updates the state of the element when reference update is suspended and we have a change in our parent. + + + + + + Performs an update after a change in the Children collection. + + The element associated with the change. + + + + + Resets all layout related fields and puts the element in its initial layout state. + + + + + + Determines whether there is an ancestor in this element tree that is not visible. + + + + + + This method is used internally. + + + + + + Temporary suspends layout operations upon this element. + + + + + Temporary suspends layout operations upon this element. + + True to suspend children also, false otherwise. + + + + Sets the bounds of the element to the specified rectangle (locating and + size). + + + + + Sets the bounds of the element to the specified rectangle (X, Y, width and + height). + + + + + Gets the rectangle which surrounds the rotated element (if having AngleTransform property set). + + The size of the element which is accepted as a parameter (for example when returned from GetPreferredSize). + + + + + Retrieves a point in screen coordinates taking as a parameter a point which is in + element coordinates (this means that the top left corner of the element is with + coordinates 0, 0). + + + + + Retrieves a rectangle in screen coordinates taking as a parameter a rectangle + which is in element coordinates (this means that the top left corner of the element is + with coordinates 0, 0). + + + + + This method is used internally. + + + + + + Arranges the to its final location. + The element must call the Arrange method of each of its children. + + The size that is available for element. + The rectangle occupied by the element. Usually . Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion. + In this method call to the Arrange method of each child must be made. + + + + Measures the space required by the + + Used by the layout system. + + The size that is available to the . The available size can be infinity (to take the full size of the element) + The minimum size required by the element to be completely visible. Cannot be infinity. + In this method call to the Measure method of each child must be made. + + + + Gets the arrange rectangle, valid for this element. + + + + + + + Determines whether the element can perform layout operation. + + + + + + Determines whether the element is currently in valid state. + That is having a valid RadElementTree reference and being in either Constructed or Loaded state. + + + + + + Gets the offset that is caused by scrolling. The difference between this method and + PositionOffset property is that GetScrollingOffset() takes into account RightToLeft. + + The scrolling offset for this element. + + + + Returns the bounds of the area that should be invalidated when the element is invalidated. + + The bounds to invalidate. + + + + This method is executed when a property which affects the absolute position of the element has been changed. + + + + + This method is used internally. + + + + + Provides a routine to paint element's content when system skin appearance is desired. + + + + + + Virtual layer between PaintChildren() and Paint(). + Can be overridden to fully customize element hierarchy paint. + Used for painting disabled items. + + The graphics object. + The rectangle which has been invalidated. + The angle (in degrees) to which the current element is rotated. This angle is a sum of all AngleTransform properties of this element's parents. + + + + + + This method is used internally. + + + + + + + + + + Gets the VisualStyleElement instance that describes the skin appearance for the element when the current OS is Windows XP. + + + + + + Gets the VisualStyleElement instance that describes the skin appearance for the element when the current OS is Windows Vista. + + + + + + Performs initialization when the element is first-time painted using system skin. + + + + + Gets the rectangle where skin background should be painted. + Defaults to BoundingRectangle. + + + + + + The element gets notified for a change in the UseSystemSkin property. + This method will recursively notify all descendants for the change. + + + + + + Determines whether we should paint system skin. + + + + + + Composes a value which determines whether the element should use system skins when painting. + This method will traverse the element and control tree and will end with the global UseSystemSkin property. + + + + + + Maps a style property to another property. This method is used + to map corresponding properties of LightVisualElement + instances and instances. + + An instance of the + class that represents the property to map. + + An instance of the + class which represents the mapped property. If no property is found, + the method returns null + + + + Gets the IFilter instance that may be used to filter the properties, treated as Stylable for this element. + + + + + + Resets the Style modifier of each registered property. + + + + + Resets the Style modifier for the specified property. Will reset all properties if null is passed. + + + + + Adds a property change behavior to the list of behaviors of the element. + + + Behaviors can be used to specify how an element should respond when a certain element property changes. + Behaviors are used internally by stylesheets when applying to an hierarchy of elements. + + behavior instance - should not be null (or Nothing in VB.NET) + + + + + + list of behaviors + + + + Used internally to support RadControl infrastructure. This method is not intended for use directly from your code. + + + + + + This method is used internally. + + + + + This method is used internally. + + + + + Gets a list of child elements using the type to filter the results. + + + + + + + Searches up the parent chain and returns the first parent with the provided ThemeEffectiveType. + + + + + + Searches up the parent chain and returns the first parent of type T. + + + + + + + Gets a boolean value that determines whether a given element + resides in the element hierarchy of this element. + + An instance of the + class which is checked. + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of type T. + + + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of type T. + + + + + + Searches down the subtree of elements, using breadth-first approach, and returns the first descendant of the specified Type. + + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided predicate. + + The mode used to traverse the subtree. + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided predicate. + + The filter that defines the match criteria. + The mode used to traverse the subtree. + + + + + Provides flexible routine for traversing all descendants of this instance that match the provided filter. + + The filter that defines the match criteria. + The mode used to traverse the subtree. + + + + + Gets a list with all the descendants that match the provided filter. + + + + + + + + Gets a list with all the descendants that match the provided filter. + + + + + + + + Provides a routine which enumerates all ancestors up in the parent chain of this element, which match the provided Filter. + + + + + + + Provides a routine which enumerates all ancestors up in the parent chain of this element, which match the provided predicate. + + The predicate used to filter parents. + + + + + Forces an update in the z-ordered collection after a change in the Children collection. + + + + + + + Allows enumerating of this element's children, using the specified options. + + + + + + + Sends this element to the beginning of its parent's z-ordered collection. + + + + + Sends this element at the end of its parent's z-ordered collection. + + + + + Method used by control Code Dom serializer to access items in the collection + + + + + + + Get a value indicating whether the element is a direct or indirect child of specified parent element + + Parent to test + true if the element is child of parent, false otherwise + + + + This method sets the focused state of an element. It is used internally. + + The new focused state. + + + + This method is used internally! + + + + + Raises the Click event. + + + + + Raises the DoubleClick event. + + + + + Raises the MouseWheel event. + + + + + + This method is used internally! + + + + + + Updates the ContainsMouse property. The notification may be received from a child whose IsMouseOver property has changed. + + + + + Updates the ContainsFocus property. The notification may be received from a child whose IsFocused property has changed. + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + Invalidates all Ambient (inherited) properties down in the parent chain. + Called when the parent for this element changes. + + True to update children also, false otherwise. + + + + The object gets notified for a parent property change. + + + + + + Add the ElementTree property if we are in the context of RadControlSpy. + + + + + + + Tunnels and bubbles on MouseClick on current element + + + + + Tunnels and bubbles on MouseDoubleClick on current element + + + + + Tunnels and bubbles on MouseDown on current element + + + + + Tunnels and bubbles on MouseUp on current element + + + + + Tunnels and bubbles on MouseWheel on current element + + + + + Routed event key for ChildElementAdded event. Bubbles when element is added + + + + + Routed event key for ParentChanged event. Tunnels when element parent changes + + + + + Tunnels when bounds changed in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + Tunnels and bubbles when changes the current element + + + + + Tunnels when the Enabled property changes in order to notify any children that should take special actions. + + + + + Tunnels when the winforms control has been changed. + + + + + Used by RadControlSpy to display certain hidden properties in the Property Grid. + + + + + Get or sets the maximum size to apply on an element when layout is calculated. + + + + + Property key of the ZIndex Property. + + + + + This field is used internally. + + + + + Gets the current state of the element. + + + + + Gets the layout manager of the element. Will be null until the element is loaded on a visual scene. + + + + + Gets the element desired size. + + + + + Gets a value indicating whether the layout is suspended or not. + + + + + Represents the rectangle which surrounds the element bounds after the rotation caused by setting the AngleTransform property to some degree. The rectangle is in parent element's coordinates. + + + + + Represents the rectangle which surrounds the element bounds after the rotation caused by setting the AngleTransform property to some degree. The rectangle is in control coordinates. + + + + + This property is used internally. + + + + + Gets the level of this element in the ElementTree it currently resides. + + + + + This event occurs after printing the element. It is used internally. + + + + + Gets or sets the mode that describes the usage of system skinning (if available). + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Gets a value indicating whether the element can have its own style with style conditions. + + + + + Defines whether stylesheet rules should be applied for this element and its children, or only for this element + + + + + Gets a reference to the tree object, that contains information about the scene where the element is currently visualized. + + + + + Gets the collection of elements that are child elements in the element + tree. + + + + + Enumerates entire subtree of elements (using depth-first approach), + starting from this one as a root. + + + + Gets a reference to the parent element in the visual element tree. + + + + + + + Gets the count of all elements, which visibility is not ElementVisibility.Collapsed. + + + + + Occurs when the mouse pointer rests on the element. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + Occurs when the mouse pointer is over the element and a mouse button is pressed. + + + + + Occurs when the mouse pointer is over the element and a mouse button is released. + + + + + Occurs when the element is clicked. + + + + + Occurs when the element is double-clicked. + + + + + Occurs when the mouse pointer enters the element. + + + + + Occurs when the RadItem has focus and the user scrolls up or down the mouse wheel + + + + + Occurs when the mouse pointer leaves the element. + + + + + Occurs when the children collection of the element is changed. + + + + + Determines whether the element or one of its descendants currently contains the keyboard focus. + + + + + Specifies whether the Item should handle MouseOver, MouseMove and related mouse events. + + + By default only elements that inherit RadItem can process mouse input. + + + + + Gets or sets a value indicating whether the element should pass the handled mouse + event to the first parent element which has the + property set to true. + + + + + Gets or sets a value indicating whether the element size will be calculated + automatically by the layout system. Value of false indicates that the element's size + will not be changed when calculating the layout. + + + + + Gets or sets a value corresponding to the bounding rectangle of the element. + Location and/or Size portions of the bounds may be calculated automatically based + on the current and + settings. + + + + + Gets or sets the location of the element based on the element parent rectangle. + Corresponds to .Location + + + + + Gets or sets the size of the element which is the height and width of the visual + rectangle that would contain the graphics of the element. Size corresponds to + element's Bounds.Size. When the AutoSize property is set + to true setting the Size property to some value has no effect. + + + + + Gets or sets the border thickness of the element. This thickness is included into the + element's bounding rectangle. + + + + + Gets or sets the padding sizes of the element. The paddings are included into the + element's bounding rectangle. + + + + + Gets or sets a value corresponding to the margins of the element. Margins are not + included into the element's bounding rectangle. + + + + + Gets or sets the preferred location of the element if its size is less than its + parent size. + + + + + Gets or sets the way the element should calculate its , when + the property is set to true. + + + + + Gets or sets a value indicating the way element will fill its available size when + parent element is calculating element size and location. + + + + + Gets or sets a value indicating whether the element can respond to user + interaction. + + + By default, if element is currently selected when Enabled set to false, next element would be selected. + Values inherits from Parent.Enabled. + When a scrollable control is disabled, the scroll bars are also disabled. + For example, a disabled multiline textbox is unable to scroll to display all the lines of text. + + + + + Gets or sets a value indicating whether the element can receive input + focus. + + + + + Gets a value indicating whether the element has input focus. + + + + + Gets or sets a value indicating whether the mouse has entered the bounds of the + element or any of its sibling elements in the parent RadItem. + + + + + Gets or sets a value indicating whether the mouse has entered the bounds of the + element. + + + + + Gets or sets a value indicating whether the mouse button has been pressed when + inside the bounds of the element. + + + + + Provide for use within TelerikLayoutEngine. + + + + Gets or sets a value indicating whether the element should be painted. + + Children visibility is not be affected. + + + + Gets or sets a value indicating element visibility. + + Setting this property affects also the children of the element. Collapsed means the element and its children would not be painted and would not be + calculated in the layout. + This property has no effect in design-time on objects. + + + + Gets a value indicating if the element is visible. + + + Represents the element unique name. + + + + Gets or sets a string value indicating the element visual class name. It's used + when a stylesheet has been applied to this element. + + + Style sheets contain groups of property settings categorized by element type and/or class, thus + element "class" is used to determine whether certain style rule would be applied over an element. + Generally this property is assigned by the control developer but it can be changed design time or runtime if + certain element is decided to have different style class. + + + + + Indicates whether the painting of the element and its children should be + restricted to its bounds. + + + + + Gets or sets an instance of the Shape object of an element. The shape of the + element is both responsible for clipping the element's children and for providing its' + border(s) with custom shape. + + + Value of null (or Nothing in VisualBasic.Net) indicates that element has rectangular (or no) shape. + Shape is an object that defines the bounding graphics path of an element. Graphics clip is always applied when an element has shape. + Shape is considered when painting the border element, and when hit-testing an element. + Some predefined shapes are available, like or . + offers a way to specify element's shape with a sequence of points and curves using code + or the design time + . + + + + + Get or sets the minimum size to apply on an element when layout is calculated. + + + + + Get or sets the maximum size to apply on an element when layout is + calculated. + + + + + Gets of sets the order of painting an element compared to its sibling elements. Greater ZIndex means an element would be + painted on top of other elements amongst its siblings. ZIndex changes the order of the elements in the list returned by + . + + + + + Gets or sets the direction of flow of the elements and whether elements are aligned to support locales + using right-to-left fonts. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets the RadImageShape that describes the background of the element. + + + + + Determines whether the element or one of its descendants currently contains the mouse. + + + + + Gets or sets a value indicating the scale transform factors, when painting the + element and its children. + + + + + Gets or sets the rotation transform angle used when painting the element and its + children. + + + + + Gets or sets the offset of the origin of the coordinate system used when + painting the element and its children. + + + TrnslateTransform of the graphics is used prior to painting the element and after painting element children, + to reset the transformation + + + + + Gets or sets whether the properties of this element should be serialized + + + + + Gets or sets whether the element should be serialized in designer + + + + + Gets or sets whether the children of this element should be serialized + + + + Gets or sets a value indicating maximum rendered frames per second. + + + + Gets a value indicating if theme finished applying + + + + + Gets a value indicating if a theme should be applied + + + + + Gets a value indicating whether the AngleTransform should use + the center of the object as origin for the transformation. + + + + + Specifies when the Click event should fire. + + + + + Gets or sets a value indicating whether the DoubleClick event will fire for this item. + + + + + Determines whether mouse will be captured upon MouseDown event. + + + + + This property is used internally! + + + + + Gets or sets the stylesheet associated with the element. + + + Stylesheets provide dynamic property settings for elements' RadProperties organized into groups, each regarding a + certain state of the element. State means a property has certain value. + Style of an element can affect also element children. + Generally element style is set through control theme, which is a holder for various styles for many controls. + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Fires when the font is changed. + + + + + Gets or sets the DefaultSize. + + + + + Gets or sets the forecolor. Color type represents an ARGB color. + + + + + Gets or sets the backcolor. Color type represents an ARGB color. + + + + + Gets or sets the font. Font type defines a particular format for text, including + font face, size, and style attributes. + + + + + Gets or sets the smoothing mode of an element. Smoothing mode enumeration defines + possible values. + + + + + Gets or sets the opacity of an element. Value 0.0f indicates that the element is completely transparent, + 1.0f means the element is not transparent (the default value). + + + + + This constant is used internally. + + + + + Gets or sets a value indicating whether design mode is active. + + + + + Gets the collection of data-binding objects for this IBindableComponent. + + + + + Exposes methods and properties for draggable elements. + + + + + Determines that the element is availble for dragging. + + An instance of which represents a dragging start location. + True if the object can be dragged, otherwise false. + + + + Gets the assosiated with dragged element data context. + + + + + + Gets the image used by the DragDropService to indicate that the element is being dragged. + Usually this is a snapshot of the element itself. + + + + + + Determines whether this instance may enter drag operation. + + + + + Exposes methods for drop targets + + + + + Completes drag-drop operation of instance of the IDraggable over the specified target. + + An instance of which represents a drop location. + An instance of the IDraggable which is dragged over the target. + + + + + + The current position of the mouse cursor + An instance of the IDraggable which is dragged over the specified target. + True if the operation finished successfully, otherwise false. + + + + Drop operations to occur in the drop target. Called when the cursor first enters the specified target. + + The current position of the mouse cursor + An instance of the IDraggable which is dragged over the target. + + + + Special behavior when the drag operation leaves the specified target. + + The old position of the mouse cursor + An instance of the IDraggable which is dragged over the target. + + + + Determines whether the instance allows for drop operations. + + + + + Occurs when the complete keyboard combination for a registered RadShortcut is triggerred. + + + + + + Occurs when a registered shortcut's keyboard combination is partially complete. + E.g. if we have Ctrl+C+V and Ctrl+C is pressed the event will be raised. + + + + + + This constant is used internally. + + + + + Raises the KeyDown event. + + + + + + Raises the KeyPress event. + + + + + + Raises the KeyUp event. + + + + + Raises the event. + + A that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Raises the event. + + An that contains the event data. + + + + Determines if the item displays any text. + + + + + + This method is used internally! + + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + This method is used internally! + + + + + + Add the VisualState property if we are in the context of RadControlSpy. + + + + + + + Calls the appropriate gesture event according to the GestureType property of the event arguments. + + The event arguments. + + + + Fires the TwoFingerTapGesture event. + + The arguments for the TwoFingerTapGesture event. + + + + Fires the PressAndTapGesture event. + + The arguments for the PressAndTapGesture event. + + + + Fires the PanGesture event. + + The arguments for the PanGesture event. + + + + Fires the RotateGesture event. + + The arguments for the RotateGesture event. + + + + Fires the ZoomGesture event. + + The arguments for the ZoomGesture event. + + + + Determines whether the element may be dragged. + + + + + + + Gets the context, associated with a drag operation. + + + + + + Gets the image to be used as a hint when this element is being dragged. + + + + + + Core logic when a drag-drop is performed over this element. + Allows inheritors to provide their own implementations. + + + + + + + Determines whether the element may be treated as a drop target during drag-and-drop operation. + + + + + + + + Allows the element to perform additional action upon mouse entering its bounds upon a drag-and-drop operation. + + + + + + + Allows the element to perform additional action upon mouse leaving its bounds upon a drag-and-drop operation. + + + + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + The value of the Class property of the child element for which + the override stands. (e.g. ButtonFill, ButtonBorder, etc.) + + + + Applies the provided value as an override of the theme setting + for the specified property in the specified state. + + The property to override. + The value to override the theme setting with. + The VisualState of the item for which the setting will be applied. + States can be combined using "." (dot). To see a list of the available states for this + element, use the GetAvailableVisualStates method. + The type of the child element for which + the override stands. (e.g. typeof(FillPrimitive), typeof(BorderPrimitive), etc.) + + + + Resets all overrides for the theme settings of a given property. + + The property to reset overrides for. + + + + Resets all overrides for the theme settings of a given property and a given state. + + The property to reset overrides for. + The state to reset. + + + + Resets all theme override settings for this element. + + + + + Suspends the apply of theme settings. + + + + + Resumes the apply of theme settings. + + + + + Gets the available visual states for this item. Visual states can be combined using "." (dot). + + A list with the available visual states for this element. + + + + Occurs when the Text property value is about to be changed. + + + + + Occurs when the Text property value changes. + + + + + Occurs when the TextOrientation property value changes. + + + + + Occurs when the FlipText property value changes. + + + + + Gets or sets whether the item should use the default way for painting the item when disabled (making it gray) or whether + the disabled appearance should be controlled by the theme. + + + + + Specifies the orientation of the text associated with this item. Whether it should appear horizontal or vertical. + + + + + Specifies the text associated with this item will be flipped. + + + + + Gets or sets the text associated with this item. + + + + + Gets a value indicating whether the item can be selected. + + + + + This property is used internally. + + + + + This property is used internally. + + + + + Occurs when the RadItem has focus and the user pressees a key down + + + + + Occurs when the RadItem has focus and the user pressees a key + + + + + Occurs when the RadItem has focus and the user releases the pressed key up + + + + + Occurs when a zoom gesture was sent by a touch input device. + + + + + Occurs when a rotate gesture was sent by a touch input device. + + + + + Occurs when a pan gesture was sent by a touch input device. + + + + + Occurs when a two-finger-tap gesture was sent by a touch input device. + + + + + Occurs when a press-and-tap gesture was sent by a touch input device. + + + + + Gets or sets string representing the current visual state of the Item which is used by themes to determine the appearance of the item and its child elements + + + + + Determines whether the element may be dragged by a RadDragDropService instance. + + + + + Determines whether the element may accept a drop operation. + + + + + Gets the collection of all RadShortcut instances registered with this item. + + + + + Gets or sets the description that will be reported to accessibility client applications. + + + + + Gets or sets the name of the control for use by accessibility client applications. + + + + + Gets or sets the accessible role of the item, which specifies the type of user interface element + of the item. + + + + + This property is used internally! + + + + + Gets or sets a value indicating whether the Analytics functionality is enable or disbale for this item. + + + + + Initializes a new instance of the class. + + + + + Gets or sets value indicating whether Office 2007 UI compliant screen tip sizing should be used + + + + + Override this property and provide custom screentip template description in DesignTime + + + + + Gets the screen tip actual template type. Used for component serialization. + + + + + Gets a value indicating screen tip preset size. + + + + + Sets the screntip element to be wrapped by this control. + + An instance of RadScreenTipElement + + + + Gets the instance of RadScreenTipElement wrapped by this control. RadScreenTipElement + is the main element in the hierarchy tree and encapsulates the actual functionality of RadScreenTip. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the method that will handle a CollectionChanged event. + + the %sender:System.Collections.CollectionBase% of the event + the %event arguments:Telerik.WinControls.UI.CollectionChangedEventArgs" + + + + Represents event data for the CollectionChanged event. + + + + + Initializes a new instance of the CollectionChangedEventArgs class using the + target, the index of the item, and the item's change operation. + + + + + + + + Gets or sets a value specifing the target. + + + + + Gets or sets a value indicating the index in the collection of the changed item. + + + + + Gets or sets a value indicating the items chnage operation. + + + + + Represents a dynamic data collection that provides notifications when items get added, removed, or when the whole list is refreshed. + + + + + + Notifies listeners of dynamic changes, such as when items get added and removed or the whole list is refreshed. + + + You can enumerate over any collection that implements the IEnumerable interface. However, to set up dynamic bindings so that insertions or deletions in the collection update the UI automatically, the collection must implement the INotifyCollectionChanged interface. This interface exposes the CollectionChanged event that must be raised whenever the underlying collection changes. + + + + + Occurs before the collection changes. + + + + + Notifies clients that a property value is changing. + + + + + Occurs when a property value is changing. + + + + + Initializes a new instance of the ObservableCollection class. + + + + + Initializes a new instance of the ObservableCollection class that contains elements copied from the specified list. + + + + + + Overridden. Removes all items from the collection. + + + + + Overridden. Inserts an item into the collection at the specified index. + + + + + + + Moves the item at the specified index to a new location in the collection. + + + + + + + Moves the item at the specified index to a new location in the collection. + + + + + + + Suspends event notification. + + + + + Resumes event notification. + + + + + Resumes event notification. + + + + + Calls the NotifyListenersCollectionChanged method with the provided arguments if not in a batch update. + + + + + + Raises the CollectionChanged event with the provided arguments. + + + + + + Calls the NotifyListenersCollectionChanging method with the provided arguments if not in a batch update. + + + + + + Raises the CollectionChanging event with the provided arguments. + + + + + + Overridden. Removes the item at the specified index of the collection. + + + + + + Overridden. Replaces the element at the specified index. + + + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + A instance containing event data. + + + + Raises the PropertyChanging event + + The name of the property + + + + Raises the NotifyPropertyChanging event + + A instance containing event data. + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs before an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + true to indicate the collection has completed update; otherwise false. + + + + + Occurs when a property of an object changes. + Calling the event is developer's responsibility. + + + + + Occurs before a property of an object changes. + + + + + Interface to the node + + + + + Interface to the tree + + + + + Add item + + + + + Add or get item + + + + + Find item + + + + + Delete item by key + + + + + Delete specific item + + + + + Clear the tree + + + + + Get synchornization root + + + + + Interface to the tree + + + + + Get first node + + + + + Get last node + + + + + Get next node + + + + + Get prior node + + + + + Get number of nodes in the tree + + + + + Interface to the tree which supports direct access to the items + + + Interface to the tree + + + + + Get item by order index + + + + + Get index by item + + + + + Parameters of ordered node + + + + + Node's rank + + + + + Number of sub nodes + + + + + Ordered node + + + + + Node of the red-black tree + + Key type + Node's parameter + + + + Set parent node + + + + + Set left node + + + + + Set right node + + + + + Update reference count + + + + + Node parameters + + + + + Constructor + + + + + Copy from other node + + + + + Parent node + + + + + Left node + + + + + Right node + + + + + Key value of the node + + + + + Colour of the node + + + + + Constructor + + + + + Set parent node + + + + + Set left node + + + + + Set right node + + + + + Update reference count + + + + + Copy from other node + + + + + Basic RBTree with ordering + + Operation like Add and Remove are an O(2logN) operations. + Operation Find is O(logN) operation. + + + + + Base class for the tree. + Based on the Damian Ivereigh implementation + Support for the multi-trees has been added. + Do not use this class directly. Use RBTree, RBMultiTree, RBOrderedTree and RBOrderedMultiTree classes + + Key type + Node type + Node parameter type + + + + Add item + + + + + Add or get item + + + + + Find item + + + + + Delete item by key + + + + + Clear + + + + + Delete item by key + + + + + Get first node + + + + + Get last node + + + + + Get next node + + + + + Get prior node + + + + + Comparator + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Add new key into the tree + + This operation is O(logN) operation + + In case the key is already in the tree + + + + Add new key into the tree or get existing node + This operation is O(logN) operation + + + + + Remove key from the dictionary + This operation is O(logN) operation + + + + + Remove all items + + + + + Remove node from the dictionary + This operation is O(1) operation + + + + + Find key in the dictionary + This operation is O(logN) operation + + + + + Get first node + This operation is O(logN) operation + + + + + Get last node + This operation is O(logN) operation + + + + + Get next node + This operation is O(logN) operation + + + + + Get previous node + This operation is O(logN) operation + + + + + Get enumerator + + + + + Get enumerator + + + + + Balance tree past inserting + + + + + Create new node + + + + + Go trough tree and find the node by the key. + Might add new node if node doesn't exist. + + + + + Rotate our tree Left + + X rb_left_rotate(X)---> Y + / \ / \ + A Y X C + / \ / \ + B C A B + + N.B. This does not change the ordering. + + We assume that neither X or Y is NULL + + + + + Rotate our tree Right + + X Y + / \ / \ + A Y leftArrow--rb_right_rotate(Y) X C + / \ / \ + B C A B + + N.B. This does not change the ordering. + + We assume that neither X or Y is NULL + > + + + + Return a pointer to the smallest key greater than x + + + + + Return a pointer to the largest key smaller than x + + + + + Delete the node z, and free up the space + + + + + Restore the reb-black properties after a delete + + + + + + Is tree unique + + + + + Object can be used for synchronization + + + + + Root of the tree + + + + + Number of nodes in the tree + + + + + Get collection object for this + + + + + Adapter implementing collection interface + + + + + Referenced tree + + + + + Constructor + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Get item by order index + This operation is O(logN) operation + + + + + Get order index of item + This operation is O(logN) operation + + + + + Get item by order index + + + + + Get index by item + + + + + Unique ordered RBTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Non-unique RBMultiTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Tree node + + + + + Constructor + + + + + Unique RBTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Non-unique RBMultiTree + + + + + Tree constructor + + + + + Tree constructor with comparer + + + + + Create new node + + + + + Generic tree enumerator + + Node type + Key type + >Node parameter + + + + Tree + + + + + Current item + + + + + + Constructor + + + + + Move to next element + + + + + Reset enumeration + + + + + Dispose object + + + + + Get current element + + + + + Get current element + + + + + Generic tree value's enumerator + + Node type + Key type + Node parameter + + + + Tree + + + + + Current item + + + + + Constructor + + + + + Move to next element + + + + + Reset enumeration + + + + + Dispose object + + + + + Get current element + + + + + Get current element + + + + + Colour of the node + + + + + Red + + + + + Black + + + + + Represents a read-only data collection that provides notifications when the original has changed. + + + + + + Initializes a new instance of the with an instance of a /> + + + + + + Fires the CollectionChanged event. + + + + + + Fires the PropertyChnaged event. + + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. + + + + + Occurs when when a property of an object changes change. + Calling the event is developer's responsibility. + + + + + Gets the type. + + + The type. + + + + + Gets or sets the session identifier. + + + The session identifier. + + + + + Gets the instalation key. + + + The instalation key. + + + + + Converts an ISO 8601 time/date format string, which is used by JSON and others, + into a DateTime object. + + + + + + + Converts a DateTime object into an ISO 8601 string. This version + always returns the string in UTC format. + + + + + + + Ensures a two-digit number with leading zero if necessary. + + + + + + + Ensures a three-digit number with leading zeros if necessary. + + + + + + + The ASP.NET Ajax team made up their own time date format for JSON strings, and it's + explained in this article: http://msdn.microsoft.com/en-us/library/bb299886.aspx + Converts a DateTime to the ASP.NET Ajax JSON format. + + + + + + + Converts an ASP.NET Ajax JSON string to DateTime + + + + + + + Converts a Unicode character to a string of its ASCII equivalent. + Very simple, it works only on ordinary characters. + + + + + + + Returns null if no DTE instance is available. + + EnvSessionManager or Null depending on whether DTE is available. + + + + Tries to add the item to the collection. If it already exists it won't be added. + + The item to be added. + + + + Represents a small rectangular pop-up window that displays a brief description of a control's purpose when the user rests the pointer on the control. + Provides extended functionality by removing the necessity to have a control in the element tree + + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + An containing the duration, in milliseconds, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + A containing the offset, in pixels, relative to the upper-left corner of the screen, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + The horizontal offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + The vertical offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + The horizontal offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + The vertical offset, in pixels, relative to the upper-left corner of the screen, to display the ToolTip. + An containing the duration, in milliseconds, to display the . + + + + Sets the text and displays the modally. + Uses CursorPosition relative to screen coordinates to position the . + + A containing the new text. + A containing the offset, in pixels, relative to the upper-left corner of the screen, to display the . + An containing the duration, in milliseconds, to display the . + + + + Hides this instance. + + + + + Repository for Telerik-related resources. Not for general use. + + + + + Represents a rectangle with chamfered corners. + + + + Represents element shape. Base class for specialized shapes such as + EllipseShape, RoundRectShape, Office12Shape, etc. + + + + Retrieves the shape of the element. GraphicsPath represents a series of connected + lines and curves. + + + + + Retrieves the contour of the element0. GraphicsPath represents a series of + connected lines and curves. + + + + Creates path using a rectangle for bounds. + + + Creates path using a rectangle for bounds. + + + + Serializes properties. Required for serialization mechanism of telerik + framework. + + + + + Deserializes properties. Required for the deserialization mechanism of telerik + framework. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The width of the chamfer. + + + + Initializes a new instance of the class. + + The width of the chamfer. + The angle of the chamfer in degrees. + + + + Initializes a new instance of the class. + + The width of the chamfer. + The angle of the chamfer in degrees. + if set to true the top left corner will be chamfered. + if set to true the bottom left corner will be chamfered. + if set to true the bottom right corner will be chamfered. + if set to true the top right corner will be chamfered. + + + + Creates path using a rectangle for bounds. + + + + + + + Serializes properties. Required for telerik serialization mechanism. + + + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + + Gets or sets the width of the chamfer. + + + + + Gets or sets the angle of the chamfer in degrees. The value must be between 0 inclusive and 90 exclusive. + + + + + Gets or sets a value indicating whether the top left corner of the shape will be chamfered. + + + true if the top left corner is be chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the top right corner of the shape will be chamfered. + + + true if the top right corner is be chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the bottom right corner of the shape will be chamfered. + + + true if the bottom right corner is chamfered; otherwise, false. + + + + + Gets or sets a value indicating whether the bottom left corner of the shape will be chamfered. + + + true if the bottom left corner is chamfered; otherwise, false. + + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Should snap to the line or curve + + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + The default constructor sets the following default values: + FieldWidth = 1.0f; + SnapRelative = 0.2f; + SnapDelta = 0.2f; + SnapType = SnapTypes.Relative; + + + + + Set the snap type to be one of the following: + SnapTypes.Relative - snap distance is relative to the FieldWidth + + SnapTypes.Fixed - snap distance is fixed + + + + + Width of a single box in the snap grid. + It's value cannot be less than or equal to zero. + + + + + Sets/Gets the snap distance for fixed type snapping. + Does not activate fixed type snapping. + + + + + + Sets/Gets the relative snap distance. + Does not activate relative type snapping. + + + + + + Gets the precached snap distance. + Doesn't need to be equal to any of the SnapFixed or SnapRelative properties. + + + + Represents custom shape of an element. + + + Initializes a new instance of the CustomShape class. + + + Creates a path using a ractangle for bounds. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets a List of Shape points. + + + Gets or sets a Rectangle indicating the dimension of the shape. + + + + Represents a shape editor control. + + + + + Draws grid lines in the specified rectangle with the specified color + + + + + + + + Translates a rectangle in accordance with the offsets due to scrolling + + + + + + + Translates a point in accordance with the offsets due to scrolling + + + + + + + Updates the bounds of the drawable area + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents a shape point. + + + + + Represents a base class of the ShapePoint class. + + + + + Initializes a new instance of the ShapePointbase class. + + + + + Initializes a new instance of the ShapePoint class using X and Y + coordinates. + + + + + Initializes a new instance of the ShapePoint class using a Point structure. + + + + + + Initializes a new instance of the ShapePoint class using an instance of the + ShapePointBase class. + + + + + + Sets the X and Y coordinates of the shape point. + + + + + + + Sets the point position from a Point structure. + + + + + + Retrieves a Point structure corresponding to the point position. + + + + + + + + + + + + + Retrieves a string representation of the ShapePointBase class. + + + + + + Gets or sets a float value indicating the X coordinate of the shape point. + + + + + Gets or sets a float value indicating the Y coordinate of the shape point. + + + + + Gets or sets a value indicating the anchor style. + + + + + Gets or sets a boolean value indicating whether the shape point is locked. + + + + + Initializes a new instance of the ShapePoint class. + + + + + Initializes a new instance of the ShapePoint class from + the X and Y coordinates of the point. + + + + + + + Initializes a new instance of the ShapePoint class from a Point structure. + + + + + Initializes a new instance of the ShapePoint class using a ShapePoint instance. + + + + + + Retrieves the line direction of the line that passes through the instance + point and the point given as an argument. + + + + + + + Creates a Bezier curve between the current point and the point given as a + parameter. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gets or sets the first control point. + + + + + Gets or sets the second control point. + + + + + Exposes the line direction. + + + + + Exposes the line position. + + + + + Indicates horizontal position. + + + + + Indicates vertical position. + + + + + The default constructor sets the following default values: + FieldWidth = 1.0f; + SnapRelative = 0.2f; + SnapDelta = 0.2f; + SnapType = SnapTypes.Relative; + + + + + Set the snap type to be one of the following: + SnapTypes.Relative - snap distance is relative to the FieldWidth + + SnapTypes.Fixed - snap distance is fixed + + + + + Width of a single box in the snap grid. + It's value cannot be less than or equal to zero. + + + + + Sets/Gets the snap distance for fixed type snapping. + Does not activate fixed type snapping. + + + + + + Sets/Gets the relative snap distance. + Does not activate relative type snapping. + + + + + + Gets the precached snap distance. + Doesn't need to be equal to any of the SnapFixed or SnapRelative properties. + + + + Represents donut like shape. + + + + Creates donut-like path. Overrides the method defined in its base class - + ElementShape. + + + + Represents element shape converter. + + + Represents ellipse shape. + + + + Creates ellipse shape. Overrides the method defined in its base class - + ElementShape. + + + + + Defines possible modes to be used when rendering an image. + + + + + Image is painted without any modification. + + + + + Image is stretched within the paint rectangle. + + + + + Image is stretched by the X axis and tiled by the Y one. + + + + + Image is stretched by the Y axis and tiled by the X one. + + + + + Inner image segment is tiled while all others are stretched. + + + + + Image is centered within the paint rectangle. + + + + + Image is centered by the X axis and stretched by the Y one. + + + + + Image is centered by the Y axis and stretched by the X one. + + + + + Image is centered by the X axis and tiled by the Y one. + + + + + Image is centered by the Y axis and tiled by the X one. + + + + + Image is tiled within the paint rectangle. + + + + + Image is flipped by the X axis and tiled within the paint rectangle. + + + + + Image is flipped by the X and Y axis and tiled within the paint rectangle. + + + + + Image is flipped by the Y axis and tiled within the paint rectangle. + + + + + Gets the segment associated with this object. + + + + + Gets or sets the image part associated with this object. + + + + + Represents an image which may be divided in 9 different segments where only the inner one is stretched within the paint rectangle. + + + + + Gets or sets the RotateFlipType value that defines additional transform on the rendered image. + + + + + Gets or sets the interpolation mode to be applied on the device context when image is rendered. + + + + + Determines which segments from the image will be painted. + + + + + Determines whether the image will be rendered using segments. + + + + + Gets or sets the mode to be used when image is painted. + + + + + Gets or sets the image to be rendered. + + + + + Gets or sets the string representation of the + + + + + Gets or sets the opacity of the rendered image. Valid values are within the interval [0, 1]. + + + + + Gets or sets the Padding structure that defines the margins of the segmented image. + + + + + Gets or sets the Padding structure that defines offset when the image is rendered to the destination rectangle. + + + + Represents the shape of the MS Office forms. + + + Greates the path. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets whether the bottom edges of the form should be rounded. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + + Creates donut-like path. Overrides the method defined in its base class - + ElementShape. + + + + Represents round rectangle shape. + + + Initializes a new instance of the RoundRectShape class. + + + Initializes a new instance of the RoundRectShape class. + + + Initializes a new instance of the RoundRectShape class using a radius. + + + Initializes a new instance of the RoundRectShape class using a radius and rounded corners. + + + Greates round rectangle like path. + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets the radius of the shape. + + + + Gets or sets value indicating whether the bottom left corner of the shape should be round + + + + + Gets or sets value indicating whether top left corner of the shape should be round + + + + + Gets or sets value indicating whether bottom right corner of the shape should be round + + + + + Gets or sets value indicating whether top right corner of the shape should be round + + + + Represents IE like tab shape. Shapes are series of connected lines and curves. + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents office 12 like tab. + + + + Creates office 12 like tab. Overrides the method defined in its base class - + ElementShape. + + + + Represents VS like tab shape. Shapes are series of connected lines and curves. + + + + Creates VS like tab shape. Overrides CreatePath method in its base class - + ElementShape. + + + + Serializes properties. Required for telerik serialization mechanism. + + + Deserializes properties. Required for telerik deserialization mechanism. + + + Gets or sets the orientation of this shape. + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + + + + Creates IE like tab shape. Overrides CreatePath method in the base class + ElementShape. + + + + + Represents RadElementTree. Every Telerik control has a corresponding tree of + RadElements. This gives a lot of flexibility in building controls allowing, for + example, inheritance of properties from the ancenstor nodes. + + + + Initializes a new instance of RadElementTree class. + + + + Gets the element of specific type at specific coordinates if it handles the mouse input. + + Element location in control coordinates + The element if successfull, otherwise null + + + + Gets the element at specific coordinates if it handles the mouse input. + + Element location in control coordinates + The element if successfull, otherwise null + + + + Gets the element at specific coordinates if it meets the predicate criteria. + + Element location in control coordinates + Specify a predicate or null if the first element should be returned. + The element if successfull, otherwise null + + + + Retrieves the size of a rectangular area into which a control can be + fitted. This override is called only when AutoSize is true. + + + + Gets the RootElement of the tree. + + + Gets or sets the RadControl for the corresponding tree. + + + Gets the bridge between the abstract RadElement layout and the RadControl instance. + + + Gets the tree name. + + + + + + + + + Represents a collection of PropertyChangeBahavior instances. + See also RadElement.AddBehavior + + + + + Represents a routed event. Routed events can be tunnel or bubble event + according to the routed direction of the event. + + + + + Gets or sets the event name. + + + + + Gets the owner's type. + + + + + Represents a raised routed event. + + + + + Initializes a new instance of the RaisedRoutedEvent class. + + + + + Initializes a new instance of the RaisedRoutedEvent class using + routed event, event sender, sender's type, and routing direction (tunnel + or bubble). + + + + + + + + + Compares the instance with the other event arguments and the sender of the event. + + + + + + + + Compares the instance with another event passed as a parameter. + + + + + + + Gets or sets a value indicating the routed event. + + + + + Gets or sets a string value indicating the routed event name. + + + + + Gets or sets the sender's type. + + + + + Gets or sets the sender. + + + + + Gets or sets the routing direction - tunnel or bubble. + + + + + Defines the routing directions for an events. + + + + + Indicates a tunnel event. + + + + + Indicates a bubble event. + + + + + Represents event arguments for a routed event. + + + + + Initializes a new instance of the RoutedEventArgs class using EventsArgs to + initializes its base class and the RoutedEvent. + + + + + + + Gets or sets the original EventArgs. + + + + + Gets or sets a value indicating the RoutedEvent. + + + + + Gets or sets a value indicating whether the event is canceled. + + + + + Gets or sets a value indicating the routing direction for the event. + + + + + A collection of the RoutedEventBehavior objects. Used by the StyleSheet system. + + + + + Represets an animated property setting + + + + + Initializes new instance of + + + + + Initializes new instance of + + The property to animate. + The number of frames. + The interval between animation frames. + The step used to calculate the next value. + + + + Initializes new instance of + + The property to animate. + The start value. + The end value. + The number of frames. + The interval between animation frames. + + + + Gets or sets the property that will be animated. + + + + + Gets or sets the start value for the animation. + + + + + Gets or sets the end value for the animation. + + + + + Gets or sets the maximum allowed value when using OutElastic mode + + + + + Gets or sets the step used when calculating the next value. + + + + + Gets or sets the number of frames in which the animation will run. + + + + + Gets or sets the interval between animation frames. + + + + + Gets or sets a value indicating the time delay before starting the animation. + + + + + Gets or sets a value indicating whether to set a random delay before starting the animation. + The random delay applies if the value of this property is different from 0. + + + + + Gets or sets the easing to be used when applying animation values. + + + + + Gets or sets a value that determines whether the animation value remains applied after the animation finishes. + + + + + Static value indicating whether animations are enabled at global level. + + + + + Occurs when the animation finishes. + + + + + Occurs when the animation starts. + + + + + Calculates int values for property animation. + + + + + Calculates values used in each frame of property animation. + Also supports converting animation step values to and from a string for + theme serialization. + + + + + Calculates the animated value from start value, end value, current value, + current frame, total number of frames and the specified animation calulator. + + + + + + + + + + + + + + + + + + + + Retrieves the animation step as a string value. + + + + + + + Converts a string to an animation value. + + + + + + + Calculates the animation step from start value, end value, and the total number of frames. + + + + + + + + + Calculates the animation end value from start value, step, and the total number of frames. + + + + + Represents a map of CLR types and corresponding type using when property animation is running and + for animations serialization in themes. + + + + + Animates color values using ColorAnimationStep objects. + + + + + Calculates double values for the property animation. + + + + + Calculates float values for the property animation. + + + + + Calculates Font values for property animation, using FontAnimationStep values. + + + + + Calculates int values for property animation. + + + + + Calculates animation rectangle values. + + + + + Represents a value point animation calculator. + + + + + Represents a value point animation calculator using floating point values. + + + + + Calculates animation rectangle values. + + + + + Represents a value size animation calculator. + + + + + Represents a value size animation calculator using floating point values. + + + + + Represents a numerical value calculator. It is used internally by StyleSheet + system to calculate the value changes when animating RadElement properties. + + + + + Calculates the current value of some property from the initial value, end value, current frame, and the numbers of frames. + + + + + + + + + + Calculates the current value of some property from the initial value, end value, current frame, and the number of frames. + + + + + + + + + + Caclulates the current value of a property from the initial value, end value, current frame, and the number of frames. + + + + + + + + + + Defines the time of the animation occurrence. + + + + + Indicates that no animation is played. + + + + + Indicates that animation is played on applying a setting. + + + + + Indicates that animation is played on up-apply a setting. + + + + + Indicates that animation is always played. + + + + + Defines the possible types of animation looping. + + + + + No animation looping is enabled. + + + + + The animation is started from the beginning after it ends. + + + + + The animation is started again, whereby + end and start values are swapped. + + + + + Defines the animation type. + + + + + + + + + + + + + + + Defines the easing equations for the easing animations. + + + + + Contains information about the way Animation has finished + + + + + Gets value indicating whether the animation has been interrupted by another one. + + + + + Gets value indicating whether the animation has been interrupted by another one. + + + + + Gets the element (if it exists) associated with the specified animation. + + + + + Gets the object associated with the specified animation. + + + + + AnimationStartedEventHandler delegate + + + + + + + AnimationFinishedEventHandler delegate + + + + + + + Event raised during animation notifying the new size for the panel + + the object sending the notification + the new size for the window collasping/expanding + + + + Event raised when animation is finished + + + + + Event raised in parallel with the executing animation. + + + + + Get/Set minimum value allowed for size + + + + + Get/Set maximum value allowed for size + + + + + Initializes a new instnace of the PropertySetting class. + + + + + Initializes a new instnace of the PropertySetting class by specifying property name and its value. + + A property name. + A property value. + + + + Initializes a new instnace of the PropertySetting class by specifying property and its value. + + A property. + A property value. + + + + Initializes a new instnace of the PropertySetting class by using an exising property setting instance. + + An existing property setting. + + + + Gets or sets the property mapper used to map property names based on the stylable element type. + + + + + Gets the current property value for the specified + + The object. + The current property value for the object. + + + + Applies the property setting on the specified element. + + An instance of + + + + Unapplies the property setting from the specified element. + + An instance of + + + + Resolves the object based on its arguments. + + The type which owns this property. + The property name. + Specifies whether to search base classes if the current type does not contain the specified property. + An instance of if successful. + + + + Gets or sets the property name. + + + + + Gets or sets the full property name (including the class name). + + + + + Gets or sets the property value. + + + + + Gets or sets the property end value (creates an animated property setting). + + + + + Gets an instance of related with this setting. + + + + + Gets the associated RadProperty. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class. + + + + + Initializes a new instance of the PropertySettingGroup class by using an existing instance. + + The PropertySettingGroup to be used as a source. + + + + Applies the property settings contained in this group to the specified element. + + The element. + + + + Searches for a property setting for the specified property. + + The property to search for + An instance of if successfull. + + + + Searches for a property setting for the specified property. + + The name of the property to search for + An instance of if successfull. + + + + Gets or sets value indicating the key of a repository item which this group is based on. + + + + + Gets the for this property setting group. + + + + + Gets a collection of the property settings for the property setting group. + + + + + Gets a collection of repository settings for the property setting group. + + + + + Initializes a new instance of the ElementSelector class. + + + + + Initializes a new instance of the ElementSelector class by specifying element state. + Sets thw type property to VisualStateSelector. + + The element state. + + + + Initializes a new instance of the ElementSelector class by specifying selector properties. + + The selector type. + The selector value + + + + Initializes a new instance of the ElementSelector class by using an existing one. + + The ElementSelector to be used as a source. + + + + Determines whether the selector is compatible with the specified element. + + The element to compare with. + true if the element is compatible. + + + + Determines whether the selector is valid an element with specific state. + + The element to compare with. + The element state. + true if the selector is valid. + + + + Determines whether the selector is compatible with specific selector. + + The selector. + true if successfull. + + + + Gets or sets the selector value. + + + + + Gets or sets the selector type. + + + + + Gets or sets the child selector. + + + + + Initializes a new instance of the StyleGroup class. + + + + + Initializes a new instance of the StyleGroup class by adding a default style registration. + + The default style registration. + + + + Initializes a new instance of the StyleGroup class by specifying an element type. + Creates a new ElementTypeDefault registration. + + The element type. + + + + Initializes a new instance of the StyleGroup class by using an existing StyleGroup instance. + + The StyleGroup to be used as a source. + + + + Determines whether the style group is compatible with the specified control type. + + The control type. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified control. + + The control. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified stylable node. + + The stylable node. + true if the style group is compatible. + + + + Determines whether the style group is compatible with the specified style group. + + The stye group. + true if the style group is compatible. + + + + Creates a new style sheet based on this style group for the specified element. + + The element. + An instance of if successful. + + + + Combines the style group with a specified style group by adding its property setting groups. + + style group to combine with. + Specifies whether to replace existing styles. + + + + Saves all style settings presented in this group in a file with XML formatting. + + The theme name to be stored in the file. + The name of the file to be created. + + + + Creates a new theme which is a cloned version of all styles existing in this style group. + + The name of the new theme. + An instance of the Theme class if successfull. + + + + Gets a collection with property setting groups for the style group. + + + + + Gets a collection with style registrations for the style group. + + + + + Initializes a new instance of the StyleRegistration class. + + + + + Initializes a new instance of the StyleRegistration class by creating an ElementTypeDefault registration. + + The full element type. + + + + Initializes a new instance of the StyleRegistration class by using an existing StyleRegistration instance. + + The StyleRegistration to be used as a source. + + + + Initializes a new instance of the StyleRegistration class. + + The registration type. + The full element type. + The full control type. + The element name. + The control name. + + + + Determines whether the style registration is valid for the specified control. + + The control to check. + true if the style registration is compatible. + + + + Checks whether the style registration conatins a style for a child element of the specified stylable node. + + The to check. + true if this style registration is compatible. + + + + Determines whether the style registration is valid for the specified control type. + + The control type to check. + true if the style registration is compatible. + + + + Determines whether the style registration is valid for the specified stylable node. + + The stylable node to check. + true if the style registration is compatible. + + + + Determines whether the style registration is compatible with existing style registration. + + The style registration to check. + true if the style registration is compatible. + + + + Gets or sets the registration type. + + + + + Gets or sets the element type. + + + + + Gets or sets the control type. + + + + + Gets or sets the element name. + + + + + Gets or sets the control name. + + + + + Initializes a new instance of the StyleRepository class. + + + + + Initializes a new instance of the StyleRepository class and specifies the repository key. + + The repository key. + + + + Initializes a new instance of the StyleRepository class and specifies its main properties. + + The style repository type. It can be: Border, Gradient, Image and Layout + The repository name. + The repository key. + + + + Initializes a new instance of the StyleRepository class by using an existigng instance. + + The StyleRepository to be used as a source + + + + Initializes the repository and maps its properties. + + + + + Searches for a specific property setting in the repository. + + The property name to search for. + An instance of + + + + Searches for a specific property setting in the repository. + + The property to search for. + An instance of + + + + Gets or sets the repository type. + + + + + Gets or sets the repository name. + + + + + Gets or sets the repository key. + + + + + Gets a collection containing the repository settings. + + + + + Initializes a new instance of the Theme class. + + + + + Initializes a new instance of the Theme class. + + The name of the theme. + + + + Searches for a StyleGroup based on the control type. + + The control type to search for. + An instance of if successfull. + + + + Searches for a StyleGroup for a specified control. + + The control to search for. + An instance of if successfull. + + + + Searches for a StyleGroup for a specified stylable node. + + The stylable node to search for. + An instance of if successfull. + + + + Searches for a StyleRepository based on its key. + + The repository key to search for. + An instance of if successfull + + + + Relates repositories with style groups. + + + + + Determines whether this theme is compatible with the specified theme name. + + Theme name to compare with. + true if successfull. + + + + Creates a new theme by reading a TSSP file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading an XML file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading a CSS like file. + + The file location. + An instance of if successfull. + + + + Creates a new theme by reading a CSS like formatted text. + + The text containing a theme in CSS style syntax. + An instance of if successfull. + + + + Creates a new theme by reading a file. The function determines the correct file format by using file extension. + + The file location. + An instance of if successfull. + + + + Creates a new theme by loading it from a resource. The function determines the correct file format by using file extension. + + The assembly to load from. + The location of the resource. + An instance of if successfull. + + + + Creates a new cloned version of the class. + + A new instance of the Theme class + + + + Combines two themes. + + The source theme. + Determines whether to merge repositories. + Determines whether to replace existing styles. + + + + Gets or sets the name of the theme. + + + + + Gets a collection containing the style groups for the theme. + + + + + Gets a collection containing the repositiories for the theme. + + + + + Gets or sets a value indicating whether the theme should be visible at design time. This property value is not serialized. + + + + + Initializes a new instance of the StyleSheet class. + + + + + Applies contained property setting groups, if their conditions are ture. + + The element. + Specifies whether to apply initial condition if the element is in other state. + + + + Gets a collection of the property setting groups for the property setting group. + + + + + Searches for a theme with specific name. + + The theme name to search for. + an instance of if successfull. + + + + Searches for a theme with specific name. + + The theme name to search for. + Sepecifies whether to fallback to control default theme if no other theme is found. + an instance of if successfull. + + + + Adds a new theme to the repository. + + The theme to add. + + + + Adds a new theme to the repository. + + The theme to add. + Specifies whether to replace all matching styles if a theme with the same name exists. + + + + Removes a theme from the repository. + + The theme to remove. + + + + Registers a theme without loading it. + + The theme component to register + + + + Gets or sets the default control theme. + + + + + Gets a list with all loaded themes. + + + + + Gets a list with all theme names that are available. + + + + + Checks is a given element or any of its descendants contain the focus. + + The element. + [true] if the element or any of its children contain focus, [false] otherwise. + + + + This method is used internally. + + + + + + + Clears all resources reserved for the KeyTips functionality + + + + + This method is used internally. + + + + + + + This property is used internally! + + + + + This property is used internally! + + + + + Indicates focus cues display, when available, based on the corresponding control type and the current UI state. + + + + + Gets the tool tip + + The tool tip. + + + + Gets or sets the value of how much the tooltip will be moved on the Y coordinate + + + + + Gets or sets the value of how much the tooltip will be moved on the X coordinate + + + + + Gets or sets a value indicating whether ToolTips are shown for the RadItem objects contained in + the RadControl. + + + + + Gets or sets value indicating whether the control should show all screen tips under the control client rectangle, as required for the RibbonBar control, for example + + + + + Gets the shortcust collection. + + + + + This property is used internally! + + + + + Gets whether this instance of RadControl is on a active form + + + + + Gets or sets whether Key Map (Office 2007 like accelerator keys map) + is used for this specific control. Currently this option is implemented for + the RadRibbonBar control only. + + + + + Gets or sets whether Key Tips (Office 2007 like accelerator keys map) + are used for this specific control. + + + + + Determines whether the mouse over the owning IComponentTreeHandler instance. + + + + + Only RadItem should manipulate this property + + + + + Gets the current selected element (hovered by the mouse). + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + + This method is used internally. + + + + + + This method is used internally. + + + + + + Fires when hovered element is changed. + + + + Suspends the animated property changes for the control. When animation are suspended property changes still occur but without aniumations. + + + + + Resumes the animated property changes for the conrol. For more info see + + + + + Gets the currently used theme. + + + + + Gets or sets control's preffered theme name. Themes are stored and retrieved using + APIs of . + + + If ThemeResolutionService.ApplicatonThemeName refers to a + non-empty string, the theme of a RadControl can differ from the one set using + RadControls.ThemeName property. If the themes differ, the + RadControls.ThemeName property will be overridden by + ThemeResolutionService.ApplicatonThemeName. If no theme is registered + with a name as ThemeResolutionService.ApplicatonThemeName, then + control will revert to the theme specified by its ThemeName property. + If ThemeName is assigned to a non-existing theme name, the control may + have no visual properties assigned, which will cause it look and behave in unexpected + manner. If ThemeName equals empty string, control's theme is set to a + theme that is registered within ThemeResolutionService with the name + "ControlDefault". + + + + + Gets or sets the class name string that ThemeResolutionService will use to find the themes registered for the control. + + + By default the return value is RadControl's type FullName; Some controls like drop down menu has different ThemeClassName + depending on the runtime usage of the control. + + + + + Gets the version of the style applied to this themable element tree. This property is used internally. + + + + + Gets or sets a value indicating whether to fallback to control default theme if the control does not support the current theme. + + + + + Gets value indicating whether the animated property changes are suspended for the control. Also see . + + + + + Represents the method that will handle the + %HoveredElementChanged:HoveredElementChanged% event. + + Initializes the event sender. + Initializes the %event arguments:HoveredElementChangedEventArgs%. + + + + Represents event data for the HoveredElementChanged event. + + + + + Initializes a new instance of the HoveredElementChangedEventArgs class. + + + + + + An interface which provides methods for handling a collection of RadItems. + This interface is used throughout controls which represent a list of items. + + + + + Returns the selected item in the control. + + An reference to a RadItem instance which represents + the currently selected item. + + + + Selects an item in the control. + + A reference to a RadItem instance which + represents the item which is to be selected. + + + + Gets an item from the collection that is next to a certain item. + + The item which neighbour to return. + The direction in which to look for the neighbour. + A reference to a RadItem instance which represents the neighbour item. + + + + Selects an item from the collection that is next to a certain item. + + The item which neighbour to return. + The direction in which to look for the neighbour. + A reference to a RadItem instance which represents the neighbour item. + + + + Gets the first visible item from the collection. + In a IItemsControl that is the first item that is visible on the control. + + A reference to a RadItem instance that represents + the first visible control. + + + + Gets the last visible item from the collection. + In a IItemsControl that is the last item that is visible on the control. + + A reference to a RadItem instance that represents + the last visible control. + + + + Selects the first visible item on the IItemsControl. + + A reference to a RadItem instance that represents the item selected. + + + + Selects the last visible item on the IItemsControl. + + A reference to a RadItem instance that represents the item selected. + + + + Defines whether the IItemsControl can execute navigation + operation based on the keydata provided. + + An instance of the + struct that defines the key command issued. + True if navigation possible, otherwise false. + + + + Defines whether the IItemsControl has an item that + corresponds to the mnemonic passed in the parameter. + + A character that defines the mnemonic command issued. + True if mnemonic can be processed, otherwise false. + + + + Fires when an item has been selected. + + + + + Fires when an item has been deselected. + + + + + Gets a collection containing the items + that are currently active. + + + + + Gets the collection of items associated + with the IItemsControl. + + + + + Gets or sets a boolean value that determines whether + the rollover items functionality will be allowed. + + + + + Gets or sets a boolean value that determines whether + keyboard input will be processed by the IItemsControl. + + + + + Gets the item affected by the operation. + + + + + Represents event data for the ItemUpdated event. + + + + + Initializes a new instance of the ItemUpdatedEventArgs class using the RadItem. + + + + + + Gets the RadItem that is updated. + + + + + Represents a encapsulated implementation of the IItemsControl interface. + + + + + Represents a Win2K+ layered window semantic, which allows for semi-transparent windows. + + + + + Default constructor. + + + + + + + + + + + + + + + + + Provides special handling for the WM_MOUSEACTIVATE, WM_PAINT and WM_NCHITTEST messages. + + + + + + Brings the window on top of the z-order. + + + + + + Sends the window to back of the z-order. + + + + + + Suspends any Layered-related updates for the window. + Useful for multiple properties set-up without sequential update for each property change. + + + + + Resumes previously suspended updates and forces Layered update. + + + + + Resumes previously suspended updates. Optionally preforms Layered update. + + + + + + Displays the window to user using the specified location and current size. + + + + + Performs painting of the window. + Default implementation simply paints the BackgroundImage (if any). + + The graphics to use. + The off-screen bitmap instance the graphics is created from. + + + + Updates the layered window. + + + + + Performs native layered window update, using the Win32 UpdateLayeredWindow API. + + + + + + + + + + + Gets or sets the Image that represents the Layered window. + + + + + Gets the final Bitmap that represents the content of the Layered Window. + + + + + Determines whether window's handle will be re-created upon a Size change. + If the window is large - e.g. 800*600 pixels, + applying new size may cause flicker due to the nature of Layered Windows semantic. + + + + + Determines whether the window is updated (used UpdateLayeredWindow API). + + + + + Gets or sets the Alpha (transparency) value - [0, 1] - for the window. + + + + + Gets the current size used by the window to visualize itself. + + + + + Gets or sets the size of the window. + + + + + Determines whether the window is TopMost (above all floating windows). + + + + + Determines whether the Control is visible for mouse input. + + + + + This class represents a that allows for non-client area modification and paiting. + + + + + This is a helper class which avoids design time error when control design time is opened directly. + + + + + Represents the method that will handle the ScreenTipNeeded event of a RadControl. + + + + + Provides data for the ScreenTipNeeded event. + + + + + Initializes a new instance of the class. + + The item. + + + + Initializes a new instance of the class. + + The item. + The offset. + + + + Gets the item for which the ScreenTipNeeded event occurs. + + The item. + + + + Gets or sets the delay. + + The delay. + + + + Gets or sets the offset. + + The offset. + + + + + + + + + + + Represents the method that will handle the ThemeNameChanged event. + + + Initializes the event sender. + + + Initializes the %event arguments:ThemeNameChangedEventArgs%. + + + + + Represents the event data for the %ThemeNameChanged:ThemeNameChanged% event. + + + + + Represents the old theme name. + + + + + Represents the new theme name. + + + + + Initializes a new instance of the ThemeNameChangedEventArgs class. + + + Initializes the old theme name. + + + Initializes the new theme name. + + + + + Represents the method that will handle the ToolTipTextNeeded event of a RadCOntrol. + + The source of the event. + A ToolTipTextNeededEventArgs that contains the event data. + + + + Provides data for the ToolTipTextNeeded event. + + + + + Initializes a new instance of the class. + + The tool tip. + + + + Initializes a new instance of the class. + + The tool tip. + The tool tip text. + + + + Initializes a new instance of the class. + + The tool tip. + The tool tip text. + The offset. + + + + Gets or sets the ToolTip text. + + + + + Gets or sets the offset from the Cursor.HotSpot + + The offset. + + + + Gets the tool tip. + + + + + Inserts the with duplicates. + + The value. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The source collection view. + + + + Gets the view. + + The source. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + + + + + Gets or sets the sort descriptors. + + The sort descriptors. + + + + Gets or sets the group descriptors. + + The group descriptors. + + + + Gets or sets the filter. + + The filter. + + + + Gets the expression. + + The filter descriptor. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the operator. + + The operator. + + + + Gets or sets the value. + + The value. + + + + Gets the filter expression. + + The filter expression. + + + + Gets a value indicating whether this instance is default filter descriptor of the column + + + true if this instance is default; otherwise, false. + + + + + Gets the expression. + + The filter descriptor. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the date value. + + The date value. + + + + Gets the filter expression. + + The filter expression. + + + + Get or set if the time part of date value should be ignored. + + + + + Passeses the filter. + + The item. + + + + + Suspends event notification. + + + + + Resumes event notification. + + + + + Resumes event notification. + + + + + Defers the refresh. + + + + + + Copies to array. + + The array. + Index of the array. + + + + Loads the data. + + The collection. + + + + Finds the specified item index. + + Index of the item. + The data bound item. + + + + + Searches the Groups collection for a match, using the Keys in the provided group. + + + + + + + Determines whether the specified group is present within this view. + + + + + + + Indexes the of. + + The item. + + + + + Determines whether [contains] [the specified item]. + + The item. + + true if [contains] [the specified item]; otherwise, false. + + + + + Evaluates the specified expression. + + The expression. + The item. + + + + + Evaluates the specified expression. + + The expression. + The start index. + The count. + + + + + Evaluates the specified expression. + + The expression. + The items. + + + + + This method is used internally. + + + + + + + + + Try to evaluate the specified expression. + + The expression. + The items. + Index of item, which the result will be calculated for + Expression result + + + + + This method is used internally. + + + + + Moves the current to. + + The item. + + + + + Moves the current to first. + + + + + + Moves the current to last. + + + + + + Moves the current to next. + + + + + + Moves the current to position. + + The position. + + + + + The core update routine for the current position. + + New position of the current item. + True to raise CurrentChanged regardless of whether actual position change is available. + + + + + Moves the current to previous. + + + + + + Refreshes this data view. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Ensures the index of the page is within the valid pages range. + + + + + Raises the NotifyPropertyChanged event + + + + + + Sets the first page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Sets the last page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Moves to the page after the current page. + + + true if the operation was successful; otherwise, false. + + + + + Requests a page move to the page at the specified zero-based index. + + The zero-based index of the page to move to. + + true if the operation was successful; otherwise, false. + + + + + Moves to the page before the current page. + + + true if the operation was successful; otherwise, false. + + + + + Fires the PageChanging event. Returns the value of the Cancel event argument. + + The new index. + True if the event was canceled, otherwise false. + + + + Fires the PageChanged event. + + + + + Gets or sets the comparer. + + The comparer. + + + + Gets or sets the comparer. + + The comparer. + + + + Gets or sets a value indicating whether [change current on add]. + + true if [change current on add]; otherwise, false. + + + + Gets a value indicating whether this item collection is empty. + + true if this item collection is empty; otherwise, false. + + + + Gets a value that indicates whether the underlying collection provides change notifications. + + + true if this instance is dynamic; otherwise, false. + + + + + Gets the count. + + The count. + + + + Gets the item at the specified index. + + + + + + Indicates whether string comparisons of data are case-sensitive. + + + + + Gets or sets the filter expression. + + The filter expression. + + + + Gets or sets a value indicating whether filtering will be performed or it will be handled by the user/data source. + + + + + Gets or sets a value indicating whether sorting will be performed or it will be handled by the user/data source. + + + + + Gets a value indicating whether this instance has filter applied. + + + true if this instance has filter applied; otherwise, false. + + + + + Gets a value indicating whether this instance has group applied. + + true if this instance has group applied; otherwise, false. + + + + Gets a value indicating the current version of the view. + + + + + This property is used internally. + + + + + This property is used internally. + + + + + Gets a value indicating whether this instance has sort applied. + + true if this instance has sort applied; otherwise, false. + + + + Gets or sets the current item. + + The current item. + + + + Gets or sets the current position. + + The current position. + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Gets the source collection. + + The source collection. + + + + Gets the sort descriptions. + + The sort descriptions. + + + + Gets the group descriptions. + + The group descriptions. + + + + Provides a callback so that the default filtering expression parser can be substituted. + + + + + Gets a value indicating whether this instance is incremental filtering. + + + true if this instance is incremental filtering; otherwise, false. + + + + + Default callback so that the default filtering expression parser can be substituted. + + + + + Gets the groups. + + The groups. + + + + Gets the default group predicate. + + The default group predicate. + + + + Gets or sets a value indicating whether paging is performed before grouping or vice versa. + + + true if paging is performed before grouping; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Occurs when the IPagedCollectionView.PageIndex has changed. + + + + + Occurs before the IPagedCollectionView.PageIndex is changed. + + + + + Gets a value that indicates whether the IPagedCollectionView.PageIndex value is allowed to change. + + true if the IPagedCollectionView.PageIndex value is allowed to change; otherwise, false. + + + + Gets a value that indicates whether a page index change is in process. + + true if the page index is changing; otherwise, false. + + + + Gets the zero-based index of the current page. + + The zero-based index of the current page. + + + + Gets or sets the number of items to display on a page. + + The number of items to display on a page. + + + + Gets the total number of items in the source collection. + + The total number of items in the source collection, or -1 if the total number is unknown. + + + + Gets the total number of pages with the current page size. + + + + + Gets or sets the comparer. + + The comparer. + + + + Gets the groups. + + The groups. + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Gets the type of the . + + The filter descriptor. + + + + + Creates the descriptor. + + The type. + + + + + + + Creates the descriptor. + + The type. + Name of the property. + Type of the data that will be filtered. + The values. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Converts to the filter descriptor to concrete type + + The type. + The converted instance of + + + + Converts to the filter descriptor to a concrete type. + + The type to which the filter will be converted. + The type of data that will be filtered. + + The converted instance of + + + + + Gets or sets the logical operator. + + The logical operator. + + + + Gets the filter descriptors. + + The filter descriptors. + + + + Gets or sets a value indicating whether [not operator]. + + true if [not operator]; otherwise, false. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the operator. + + The operator. + + + + Gets a value indicating whether this instance contains FilterDescriptor's with different PropertyName. + + + true if any child filters have the same name; otherwise false. + + + + + Gets the filter expression. + + The filter expression. + + + + + + + + + Type is not predefined. + + + + + Between + + + + + Not Between + + + + + Determines whether [contains] [the specified item]. + + The item. + + true if [contains] [the specified item]; otherwise, false. + + + + + Indexes the of. + + The item. + + + + + Evaluates the specified expression. + + The expression. + + + + + Gets the items contained in this group. This method is used internally. + + A list containing group items. + + + + Get the zero-based depth of the Group + + + + + Gets or sets the header. + + The header. + + + + Gets the key of the group. + + The key. + + + + Gets the item count. + + The item count. + + + + Gets the item at the specified index. + + + + + + Gets the parent. + + The parent. + + + + Gets the groups. + + The groups. + + + + This property is used internally. + + + + + Adds the specified property name. + + Name of the property. + The filter operator. + The value. + + + + Indexes the of. + + Name of the property. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Removes the specified property name. + + Name of the property. + + + + + Removes the specified property name. + + Name of the property. + The predicate which determine weather the filter can be deleted. + + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the logical operator. + + The logical operator. + + + + Gets or sets the expression. + + The expression. + + + + Gets the group list contained in this collection. This property is used internally. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Gets or sets the aggregates. + + The aggregates. + + + + Gets or sets the format. + + The format. + + + + Gets or sets the expression. + + The expression. + + + + Gets the group names. + + The group names. + + + + Adds the specified property name. + + Name of the property. + The direction. + + + + Removes the specified property name. + + Name of the property. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + + true if [contains] [the specified property name]; otherwise, false. + + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Finds all sort descriptors associated with the group descriptors by property name + + Name of the property. + All sort descriptors contained in the group descriptors by the specified propertyName + + + + Finds all sort descriptors associated with the group descriptors by property name + + Name of the property. + if set to true [case sensitive]. + All sort descriptors contained in the group descriptors by the specified propertyName + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the expression. + + The expression. + + + + Used to build groups from indexer + + + + + + Performs the grouping operation for specified items. + + The items. + The level. + The parent. + + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the default group predicate. + + The group predicate. + + + + Gets a value indicating whether [needs refresh]. + + true if [needs refresh]; otherwise, false. + + + + Gets the collection view associated with this builder. + + + + + + + + + + + Evaluates the specified expression. + + The expression. + The item. + + + + + Evaluates the specified expression. + + The expression. + The start index. + The count. + + + + + Sets the view in dirty state. + + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the source collection. + + The source collection. + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + This method is called right befor the event is fired. + + + + + + Raises the PropertyChanging event + + The name of the property + + The value that is goint to be set to the property. + + + + Raises the PropertyChanging event + + The name of the property + true if the event has been canceled, for more information see + + + + Raises the PropertyChanging event. + Note: This method is called even when the notifications are suspended. + + A instance containing event data. + + + + This method is called right before the event is fired. + Note: If is true, this method is not called. + + + + + + General method for setting the value of the field related to the property that is modified. + This method confirms that the old and new values are different, then fires the + event, then sets the given value to the supplied field, + and fires the event. + Note: If the event is canceled, the last two actions are + not performed. + + + + public class MyNotificationsTest : NotifyPropertyBase + { + private int myInt = 0; + private int myInt2 = 0; // + + public int AsInt + { + get + { + return this.myField; + } + set + { + if (SetProperty("AsInt", ref this.myInt, value)) + { + // perform additional actions when new value is set to myInt. + } + } + } + + public int AsInt2 + { + get + { + return (float)this.myInt2; + } + set + { + // The following property setter is the same as the previous one. + if (this.myInt2 != value) + { + PropertyChangingEventArgs2 ea = new PropertyChangingEventArgs2("AsInt2", value); + OnPropertyChanging(ea); + + if (!ea.Cancel) + { + this.myInt2 = (int)ea.Value; + OnPropertyChanged("AsInt2"); + + // perform additional actions when new value is set to myInt2. + } + } + } + } + } + + + The two setter implementations are identical. If you require to perform some actions before + the event is fired, you can use the second implementation, or, + a better solution is to override the method and place + the code there. + The type of the field that is to be modified. + The name of the property, that will appear as propertyName in the and event args. + The field, that is related to the property. + The value that is to be set to the field in case the event is not being Canceled. + true if new value is being set + + + + Occurs when a property of an object changes. + + + + + Occurs before a property of an object changes. + + + + + Sets the last page as the current page. + + + true if the operation was successful; otherwise, false. + + + + + Gets or sets the sort comparer. + + The comparer. + + + + Gets or sets the group comparer. + + The group comparer. + + + + Gets the groups. + + The groups. + + + + Gets or sets the group predicate. + + The group predicate. + + + + Gets the default group predicate. + + The default group predicate. + + + + Gets or sets a value indicating whether this data view can be paginated. + + + true if this data view can be paginated; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can filter. + + + true if this instance can filter; otherwise, false. + + + + + Gets or sets a value indicating whether this data view can group. + + true if this instance can group; otherwise, false. + + + + Gets or sets a value indicating whether this data view can sort. + + true if this instance can sort; otherwise, false. + + + + Refreshes this instance. + + + + + Resets this instance. + + + + + Begins the update. + + + + + Ends the update. + + + + + Ends the update. + + if set to true [notify updates]. + + + + Adds the new. + + + + + + Adds the created item to ListSource. + + + + + + Moves the specified item. + + The old index. + The new index. + + + + Raises a CollectionChanged notification with action ItemChanging. Must be paired with the NotifyItemChanged method. + + + + + + Raises a CollectionChanged notification with action ItemChanged. Must be paired with the NotifyItemChanging method. + + + + + + Raises a CollectionChanged notification with action ItemChanging. Must be paired with the NotifyItemChanged method. + + + + + + + Raises a CollectionChanged notification with action ItemChanged. Must be paired with the NotifyItemChanging method. + + + + + + + Returns the that represents the properties on each item used to bind data. + + An array of objects to find in the collection as bindable. This can be null. + + The that represents the properties on each item used to bind data. + + + + + Returns the name of the list. + + An array of objects, for which the list name is returned. This can be null. + The name of the list. + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the NotifyPropertyChanged event + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + + + The is read-only. + + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + + + The is read-only. + + + + + Adds an item to the . + + The object to add to the . + + The is read-only. + + + + + Used internally by the design time property editor. + + + + + Removes all items from the . + + + The is read-only. + + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies the elements of the to an , starting at a particular index. + + The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing. + The zero-based index in at which copying begins. + + is null. + + + is less than 0. + + + is multidimensional. + -or- + is equal to or greater than the length of . + -or- + The number of elements in the source is greater than the available space from to the end of the destination . + -or- + Type T cannot be cast automatically to the type of the destination . + + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + + The is read-only. + + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Gets or sets the position. + + The position. + + + + Gets the current. + + The current. + + + + Gets the collection view. + + The collection view. + + + + Gets or sets the name of the list or table in the data source for which the is bound. + + + + + Gets or sets the data source of the . + + + + + Gets a value indicating whether this instance is data bound. + + + true if this instance is data bound; otherwise, false. + + + + + Occurs when a property value changes. + + + + + Gets or sets the item at the specified index. + + + + + + Gets a value indicating whether the is read-only. + + + true if the is read-only; otherwise, false. + + + + + Determines whether this instance is in a Begin/End update block. + + + + + Raises the PropertyChanged event + + The name of the property + + + + Raises the PropertyChanged event + + A instance containing event data. + + + + Raises the event. + + Name of the property. + The old value. + The new value. + Returns [TRUE] If the events is not canceled, otherwise [FALSE]. + + + + Raises the event. + + The instance containing the event data. + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the direction. + + The direction. + + + + Gets or sets the owner. + + The owner. + + + + Adds the specified property name. + + Name of the property. + The direction. + + + + Determines whether [contains] [the specified property name]. + + Name of the property. + + true if [contains] [the specified property name]; otherwise, false. + + + + + Indexes the of. + + Name of the property. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Removes the specified property name. + + Name of the property. + + + + + Gets or sets a value indicating whether fields with names that differ only in the casing + should be considered different. + + + + + Gets or sets the expression. + + The expression. + + + + Represents a new item's data. + + + + + Initializes a new instance of the NewItemData class. + + + + + Gets an implementation + which is owned by this component. This method is used + by the ThemeNameEditor to prefilter + the available themes for the current component. + + An implementation which + is owned by this . + + + + Gets or sets the theme name of the component. + + + + + + + + + + + + + + Represents a item's edit text attribute. + + + + + Represents a new item attribute. + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + + Initializes a new instance of the RadNewItemAttribute class. + + + + + + + + + Gets a string representing the new item text. + + + + + Gets a value indicating whether the item should be editable. + + + + + Gets a value indicating whether a glyph should be added. + + + + + Gets a value indicating whether a verb should be added. + + + + + + + + RadPropertyDefaultValueAttribute constructor + + The name of the property which provides the default value. + Type of the object that ownes the RadProperty which provides the default value. + + + + Attribute that can be applied to hide a class when searching for possible new-item-types when a RadControl + is in design mode + + + + + A dummy ISite implementation, which provides support for custom services. + + + + + Represents a dependency between two properties. + Used by a RadObject to bind a RadProperty to an external one and always use its value. + The binding may be also two-way, in which special case the bound property updates its source. + + + + + Initializes a new instance of the RadPropertyBinding class. + + + + + + + + + + + + + + + Updates the binding source property. + + + + + + Gets the binding source. + + + + + Represents an object which property is bound to some other object's property. + Stores the object itself and its bound property. Used internally by the DPS to notify + bound objects for a change in a binding source property. + + + + + Stores all the information needed for composing a RadProperty's value for a given object. + + + + + Internal constructor used to store existing property state. + + + + + + Resets all references - such as binding references and property modifiers. + + + + + Restores the state of this property using the provided source. + + + + + + Registers an object which is bound to this property value. + + + + + + Gets the current value and optionally forces re-evaluation. + + + + + + + Removes previously registered bound object. + + + + + + Notifies all bound objects for a change in this property. + + + + + Forces value composition, using default precedence order. + + + + + Resets the state of the inherited value. + + True if the property needs re-evaluation, false otherwise. + + + + Applies the specified value as local and forces current value re-evaluation. + + + + + + Applies the specified value as local and forces current value re-evaluation. + + + + + + Applies the specified animation and forces current value re-evaluation. + + + + + + Applies the specified style setting and forces current value re-evaluation. + + + + + + Applies the specified binding and forces current value re-evaluation. + + + + + + Determines whether the specified object is already bound. + + + + + + + Begins an update operation. + + Value composition will be locked. + Specifies that we are currently applying new value. + + + + Registers the provided value as a default for the property. + + + + + + Assigns the specified value and source as current. + Internally checks for possible coersion. + + + + + + + Retrieves the default value for the property. + Custom value may be defined, using the DefaultValueCallback + + + + + + Sets a new style version for this property value. This method is used internally. + + The new version + + + + Determines whether we have objects already bound to this property. + + + + + Determines whether current value composition is currently locked. + + + + + Determines whether we are in a process of updating a modifier. + + + + + Gets the index of the associated RadProperty. + + + + + Gets the current value for the property. + + + + + Gets the local value for this property. + + + + + Gets the value which is set through a two-way property binding. + This value has higher priority that the local one. + + + + + Gets the property binding relation for this property. + + + + + Gets the animation setting (if any) for this property. + + + + + Gets the current style setting for the property. + + + + + Gets the current animated value. + + + + + Gets the source of the current value. + + + + + Gets the Metadata associated with this property for the current owner. + + + + + The current value is forced to some custom value by a Coerce callback. + + + + + Gets the custom default value associated with this property. + + + + + Determines whether the current local value (if any) is set at design-time. + + + + + Gets the current style version + + + + + Allows RadObject inheritors to replace RadProperty instances with another one. + + + + + + + Represents a storage for RadPropertyValue entries, which are accessed by their GlobalIndex property. + + + + + Resets all properties with local values. This method is used internally. + + + + + This method is used internally. + + + + + Used to resolve Telerik types + + + + + Gets or sets value indicating whether the TypeResolver should look up types in the calling assembly only. + This option (if set to true) is very usefull particularly in the case when all the assemblies of the application, including the + Telerik assemblies are merged into a single assembly. + + + + + Gets or sets value indicating the search pattern for assembly in the domain that contains the types referenced in RadControls theme files. + + By default the types referencd in theme files are contained in assemblies with the name "Telerik" + + + + + + Gets or sets value indicating the version of the assembly specified in TypeResolverAssemblyName + + + + + Gets the only instance of the resolver. + + + + + Exposes the ImageList property. All classes that implement this interface + provide an image list. + + + + + Gets the image list. + + + + + Initializes a new instance of the CommandBase class. + + + + + Initializes a new instance of the CommandBase class using command name. + + + + + + Initializes a new instance of the CommandBase class. + + + + + + + Retrieves a text representation of the instance. + + + + + + Executes the command. + + + + + Executes the command with the given settings. + + + + + + + + + + + + + + + + + + Gets or sets the command name/ + + + + + Gets or sets the command type. + + + + + Represents per-thread static instance of special RadControl, which may be used for explicit measure of RadElement instance. + This functionality is required for example in the RadComboBox, when we need to calculate the size of the drop-down before it is displayed. + + + + + Gets the element's desired size, using the specified available. + + + + + + + + Gets the instance of the measurement tree (valid per UI thread) + + + + + Represents a collection which stores RadElement instances + and is sorted by ZIndex property of each element. + + + + + The collection gets notified for a change in the ZIndex of the specified property. + + + + + + The collection gets notified for a change in the Visibility property of the specified element. + + + + + + Puts the specified element at the beginning of the collection + + + + + + Puts the specified element at the end of the collection + + + + + + Finds the insert index for the specified element. + Since the collection is sorted by each element's Z-index, + we perform a binary search to determine at which position the element should be inserted. + + + + + + + Compares two elements by their z-index first + and if they equals, the index in their Parent collection is used. + + + + + + + + Gets the count of all elements, which visibility is not ElementVisibility.Collapsed. + + + + + + + + + + Indicates that an insert operation will commence. + + + + + Indicates that an insert operation is performed. + + + + + Indicates that a remove operation will commence. + + + + + Indicates that a remove operation is performed. + + + + + Indicates that an item is going to be set + + + + + Indicates that an item is set + + + + + Indicates that the items will be cleared + + + + + Indicates that the items are cleared + + + + + Indicates that the items will be sorted + + + + + Indicates that the items are sorted + + + + + Indicates that a number of items were added to the collection via the AddRange method + + + + + Represents the method that will handle the %ItemChanged:ItemChanged% event. + + + + + + + + + A collection that stores objects. + + + + + Initializes a new instance of the RadItemCollectionBase class. + + + + + Initializes a new instance of RadItemCollection based on another RadItemCollection. + + + + A RadItemCollection from which the contents are copied. + + + + + + Initializes a new instance of RadItemCollection containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Returns an enumerator that can iterate through + the RadItemCollection . + + None. + + + + Adds a with the specified value to the + Telerik.WinControls.RadItemCollection . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the RadItemCollection. + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another RadItemCollection to the end of the collection. + + + + A RadItemCollection containing the objects to add to the collection. + + + None. + + + + + Inserts a into the RadItemCollection at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + RadItemCollection . + + The to remove from the RadItemCollection . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Gets a value indicating whether the + RadItemCollection contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Returns the index of a in + the RadItemCollection . + + The to locate. + + The index of the of in the + RadItemCollection, if found; otherwise, -1. + + + + + Copies the RadItemCollection values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from RadItemCollection . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the RadItemCollection is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + Retrieves an array of the items in the collection. + + + + Fires when item is changed. + + + + + Gets or sets an array of the items' types in the collection. + + + + + Gets or sets an array of the excluded items' types for this collection. + + + + + Gets or sets an array of the sealed items' types for this collection. + That are types that are allowed but not their descendants. + + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Gets the first found item, with Name property equal to itemName specified, case-sensitive. + + item Name + RadItem if found, null (Nothing in VB.NET) otherwise + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + Retrieves an array of the items in the collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents an element enumerator. + + + + + Initializes a new instance of the RadElementEnumerator class. + + + + + + Moves to the next element in the collection. + + + + + + Moves to the the next element of the collection. + + + + + + Resets the enumerator position. + + + + + Resets the enumerator position. + + + + + Disposes the enumeration. + + + + + Gets the current element in the collection. + + + + + Gets the current element in the collection. + + + + + Defines the order in which border lines are drawn. + + + + + Defines the options used by CheckPrimitive check box + + + + + Indicates XP check primitive style. + + + + + Indicates Vista check primitive style. + + + + + Indicates Mac check primitive style. + + + + + Indicates empty check primitive. + + + + + Indicates Windows8 check primitive style. + + + + + + + + + + + + + + + + + + + + Normalize the value of the function's argument + to ensure the correct overload is matched. + + + + + + + + + + + + -1: value1 < value2 + 0: value1 = value2 + 1: value1 > value2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Escapes the name. + + The name. + + + + + Escapes the LIKE value. + + The value without wildcards. + + + + + Escapes the filtering value. + + The value without wildcards. + + + + + + + + + + + + + + + + + + + + Set or get default expression context class, which will be used for determinating the expression functions. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Use for all op except And, Or, In, Is and IsNot + + if false to stop processing the op and return the retValue + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Encapsulates common mothods related with Control Tree. + + + + + Brings the window on top of the z-order. + + + + + + + Sends the + + + + + + + Forces the non-client area of the specified Control instance to be re-evaluated. + + + + + + + Determines whether the specified Child is contained within the specified Parent's Control Tree. + + + + + + + + Gets the Control instance that currently contains the Keyboard focus. + + + + + + Determines whether the specified ControlStyle is applied to the provided control. + + + + + + + + Sends a WM_SETREDRAW message to the control, preventing any paint operation afterwards. + + + + + + Resumes Control's painting, previously suspended by a BeginUpdate call. + + + + + + + Enumerates the Control tree, starting from the provided parent as a root, + and collects all the child controls that match the specified filter. + + + + + + + + + Gets the Control of type T that is descendant of the specified parent and is anchored to the specified current T instance. + + A Control of Type T. + The parent control, which descendants are to be examined. + The current T instance to start the search from. + True to perform depth-first traversal of the Control Tree, false to look-up direct children only. + True to search for a T instance that is next to the current specified one, false to search for a T instance that is previous to the current specified one. + True to start the search from the beginning when end of the search is reached. + + + + + Gets the first Control of Type T, which is descendant of the specified Parent. + + + + + + + + + Gets the last Control of Type T, which is descendant of the specified Parent. + + + + + + + + + Collects all child controls of given type. + + + + + + + + + Enumerates all child controls of the specified parent and optionally traverses the entire tree using Depth-first approach. + + + + + + + + Enumerates all child controls of the specified parent and optionally traverses the entire tree using Depth-first approach. + + + + + + + + + Searches up the parent chain of controls, looking for an ancestor of the specified type. + + + + + + + + Searches down the control tree, using breadth-first approach, for a descendant of the specified type. + + + + + + + + Provides common helper methods related with image manipulation. + TODO: Should be moved to base assembly, making it accessible for all Telerik Assemblies. + + + + + Crops recatnalge from image + + An instance of . + An instance of + Cropped image with the size of cropped rectangle + + + + Encapsulates common functionality related with reflection-based operations such as Cloning, Field Copying, etc. + + + + + Copies all the fields, which are not marked by the [NonSerialized] attribute and are not Delegate instances, + from the source object to the target one. Reference type fields will be copied by reference rather than cloned. + + + + + + + + Creates a new instance of type T and copies its fields from the provided source instance. + Reference type fields will be copied by reference rather than cloned. + + + + + + + + An extended interface that supports some additional notifications sent by the ReflectionHelper. + + + + + The instance gets notified for a field copy process. + + + + + The instance gets notified for a clone complete process. + + + + + Defines helper methods for manipulating assembly resources. + + + + + Creates a new Image instance from the specified embedded resource for the specified type. + + + + + + + + Creates a new Cursor instance from the specified embedded resource for the specified type. + + + + + + + + Get bounding rectangle arround rotated one. + + Rectangle that is to be rotated + + Returns the bounding rectangle around the rectangle + that is rotated according to the given matrix + + + + Gets the color of the pixel at the specified location on the screen. + + The location in screen coordinates to get the color for. + The color of the pixed at the specified location. + + + + Converts a key to string taking into account the currently selected keyboard leyout. + + The key to convert. + The string mapped to the provided key. + + + + Defines possible reasons for a Reset notification from RadCollectionView. + + + + + Entire data has changed. + + + + + Reset has been initiated by a change in collection's filtering logic. + + + + + Reset has been initiated by a change in collection's grouping logic. + + + + + Reset has been initiated by a change in collection's sorting logic. + + + + + Reset has been initiated by a change in collection's paging logic. + + + + + This interface gives the ability to create reusable providers for VisualElements + that are in some relation with logical data objects. + + + + + + + Create element using the pased data + + Logical data that will be used to initialize the element. + The newly created element if everything is OK; null on error. + + + + Cleans up when an element that is created with CreateElement() is no longer necessary. + + + + + + Initialize already created element with logical data (if possible). + + the element to be initilaized + with this data the given element should be initialized + false if the element cannot be initialized with the given data + + + + Check if an element can be initialized with some logical data. + + + + true if the lement can be initialized with the data. + + + + Describes the action that caused a CollectionChanged event. + + + + + One or more items were added to the collection. + + + + + One or more items were removed from the collection. + + + + + One or more items were replaced in the collection. + + + + + One or more items were moved within the collection. + + + + + The content of the collection changed dramatically. + + + + + The collection has been updated in a batch operation. + + + + + An item in the collection is about to change. + + + + + An item in the collection has changed. + + + + + Provides data for the CollectionChanged event. + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a Reset change. + + The action that caused the event. This must be set to Reset. + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change or a reset change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change. + + + + + + + + + Initializes a new instance of the class. + + The action. + The new item. + The old item. + The index. + Name of the property. + + + + Gets the name of the changed property when the Action is ItemChanged. + + + + + Provides data for the CollectionChanged event. + + + + + Gets the reason for a Reset notification. + + + + + Gets the list of new items involved in the change. + + + + + Gets the index at which the change occurred. + + + + + Gets the list of items affected by a Replace, Remove, or Move action. + + + + + Gets the index at which a Move, Remove, ore Replace action occurred. + + + + + Represents the method that handles the CollectionChanged event. + + The object that raised the event. + Information about the event. + + + + Provides data for the CollectionChanging event. + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a Reset change. + + The action that caused the event. This must be set to Reset. + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item change. + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item change or a reset change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item Replace change. + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Replace change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a multi-item Move change. + + + + + + + + + Initializes a new instance of the NotifyCollectionChangingEventArgs class that describes a one-item Replace change. + + + + + + + + + Provides data for the CollectionChanging event. + + + + + Gets the property arguments when property changing has been fired. + + The property arguments. + + + + Gets the list of new items involved in the change. + + + + + Gets the index at which the change occurred. + + + + + Gets the list of items affected by a Replace, Remove, or Move action. + + + + + Gets the index at which a Move, Remove, ore Replace action occurred. + + + + + Represents the method that handles the CollectionChanging event. + + The object that raised the event. + Information about the event. + + + + Represents the method that will handle the Telerik.WinControls.Interfaces.INotifyPropertyChanging.PropertyChanging + event of an Telerik.WinControls.Interfaces.INotifyPropertyChanging interface. + + The source of the event. + A System.ComponentModel.PropertyChangingEventArgs that contains the event data. + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Encapsulates the data, associated with the IShortcutProvider.OnShortcut callback. + + + + + Gets the control that is currently focused and which will receive the keyboard event. + + + + + Gets the shortcut that is triggerred. + + + + + Determines whether the event is handled. If true, the keyboard message will not be dispatched to the focused control. + + + + + Gets an array with the currently collected key strokes. + + + + + Describes a combination of keys that may be used as a shortcut to RadItem.PerformClick method or any other arbitrary command. + + + + + Default constructor. Initializes an empty RadShortcut instance. + + + + + Initializes a new RadShortcut instance, using the specified modifiers and key mappings. + + + + + + + Determines whether the specified Keys are part + + + + + + + + Determines whether the specified Keys are part of a shortcut combination. + E.g. if we have a key mapping CTRL+M+O and the provided keys are CTRL+M, the method will return true. + + + + + + + + Determines whether the specified key is present in the RadDockShortcut KeyMappings list. + + + + + + + Gets the human-readable represention of the current key settings. + + + + + + Gets a list with all the Keys that form the shortcut combination. + E.g. we may have M+O and a Modifier CTRL, then the valid shortcut will be CTRL+M+O + + + + + Gets or sets the Keys value that describes the modifiers for the shortcut. + + + + + Determines whether the Control modifier key is applied. + + + + + Determines whether the Alt modifier key is applied. + + + + + Determines whether the Shift modifier key is applied. + + + + + Gets a human readable string representation of the collection. + + + + + + Gets the IShortcutProvider instance that owns this collection. + + + + + Gets the count of all shortcut providers currently registered with this instance. + + + + + Represents layout container which implements column and row span and different column and row sizing modes - proportional, fixed, and auto. + + + + + Represents a base class for all layout panels. Layout panels are RadElements. + They are the elements in the control tree responsible for the layout of primitives. + Layout panels determine the position and size of the primitives inside them. + Because panels are RadElements, panels can be nested thus providing an + arbitrary complex layout. + + + + + This constant is used internally. + + + + + Determines whether the element may be added associated with metadata in the Visual Style Builder. + + + + + Creates new instance of GridLayout. + + + + + Creates new instance of GridLayout. + + Number of columns. + Number of rows. + + + + Gets or sets the columns of the layout container. + + + + + Gets or sets the rows of the layout container. + + + + + GridLayout sizing type options. + + + + + Represents GridLayout column. + + + + + Represents base class for GridLayout element. + + + + + Represents GridLayout row. + + + + + scrol to line + + line index to scrool - zero besed + + + + Scroll to element + + + + + + how many lines we have + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + Gets or sets the maximum number of columns to be shown in the in-ribbon portion of the gallery. + + + + + which is the current line + + + + + This class is used as a base class for all Localization Provider classes + used in RadControls. + + + + + Creates a default localization provider. + + A new instance of the default localization provider. + + + + Gets the string corresponding to the given ID. + + String ID + The string corresponding to the given ID. + + + + Fires when the current localization provider has changed. + + + + + Gets or sets the current localization provider. + + + + + Gets a CultureInfo object corresponding to the current localization provider. + + + + + Represents a light-weight 3*3 Matrix to be used for GDI+ transformations. + + + + + Initializes a new RadMatrix, using the specified parameters. + + + + + + + + + + + Copy constructor. + + + + + + Initializes a new RadMatrix, using the elements of the specified GDI+ Matrix instance. + + + + + + Initializes a new RadMatrix, applying the specified X and Y values as DX and DY members of the matrix. + + + + + + Initializes a new RadMatrix, scaling it by the provided parameters, at the origin (0, 0). + + + + + + + Initializes a new RadMatrix, scaling it by the provided parameters, at the specified origin. + + + + + + + + Initializes a new RadMatrix, rotated by the specified angle (in degrees) at origin (0, 0). + + + + + + Initializes a new RadMatrix, rotated by the specified angle (in degrees) at the provided origin. + + + + + + + Determines whether the current matrix is empty. + + + + + Determines whether this matrix equals to the Identity one. + + + + + Gets the determinant - [(M11 * M22) - (M12 * M21)] - of this Matrix. + + + + + Determines whether this matrix may be inverted. That is to have non-zero determinant. + + + + + Gets the scale by the X axis, provided by this matrix. + + + + + Gets the scale by the Y axis, provided by this matrix. + + + + + Gets the rotation (in degrees) applied to this matrix. + + + + + Gets all the six fields of the matrix as an array. + + + + Represents shadow settings. + + + + Initializes a new instance of the ShadowSettings class using point and + shadow color. + + + + Initializes a new instance of the ShadowSettings class. + + + Gets or sets the shadow depth. + + + Gets or sets the shadow color. + + + + Specifies arrow directions for the arrow primitive: Up, Right, Down, and + Left. + + + + + Indicates left pointed arrow. + + + + + Indicates up pointed arrow. + + + + + Indicates right pointed arrow. + + + + + Indicates down pointed arrow. + + + + + Represents the BoxLayout class + + + + + Registers the Proportion dependancy property of BoxLayout + + + + + Registers the Orientation dependancy proeprty of BoxLayout + + + + + Registers the StripPosition dependancy property of BoxLayout + + + + + Gets the proportion based on a given element + + The element which proportion will be get. + The proportion value. + + + + Sets the proportion (attached property) of a given element. + + The element which proportion will be set. + The proportion value. + + + + Handles the properties values changes of BoxLayout + + + + + + measures the size to layout the children + + + + + + + arranges the children by a given criteria + + + + + + + Gets or sets strip orientation - it could be horizontal or vertical. + + + + + represents StripPosition enumeration + + + + Adds a delegate to the list. + The object that owns the event. + The delegate to add to the list. + + + Removes a delegate from the list. + The object that owns the event. + The delegate to remove from the list. + + + Raises the specified event. + The object that owns the event. + An that contains the event data. + + + + Gets or sets whether the rollover items functionality of the RadItemsControl will be allowed. + + + + + Gets or sets whether the RadItemsControl processes the keyboard. + + + + + Represents the method that will handle the + RadPropertyChange event. + + + + + Represents a click command. + + + + + Exposes the Items property for accessing a collection of the items in a + combobox. + + + + + Gets a collection representing the collection of the items contained + in this ComboBox. + + + + Defines the border rendering style. + + + + All four borders share same customization, using gradient, regarding parent element's shape. + + + + + Each of the four borders and their "shadow" colors can have disparate customization. Note that shape and gradient would NOT be applied. + + + + + Draw inner and outer gradient borders, regarding parent element's shape. Inner and outer borders would share the specified border width. + + + + + Defines the options used by RadElement.GetChildren(options) method. + + + + + Indicates that all children are returned. + + + + + Indicates that children are returned sorted according to their z-index. + + + + + Indicates that children are returned in reverse order. + + + + + Indicates that collapsed children are included. + + + + + Indicates that only children, which visibility is ElementVisibility.Visible, are included. + + + + + Defines the sorting style of items in a control. + + + + + Indicates ascending sorting. + + + + + Indicates descending sorting. + + + + + Indicates no sorting. + + + + + Defines the click modes. + + + + + Indicates that the mouse is released. + + + + + Indicates that the mouse is pressed. + + + + + Indicates that the mouse hovers. + + + + + Defines the drop down style used by RadComboBox. + + + + + Indicates that the text area is editable. + + + + + Indicates that the text area cannot be edited. + + + + + Defines element's visibility. + + + + + Indicates that the element is visible. + + + + + Indicates that the element is hidden. + + + + + Indicates that the element is collapsed. + + + + + Indicates how the image is scaled. ImageScaling members are None and + SizeToFit. The latter fits the image to the parent size. + + + + + + + + + Defines the progress bar orientation. + + + + Indicates top orientation. + + + + + Indicates bottom orientation. + + + + + Indicates left orientation. + + + + + Indicates right orientation. + + + + + + + + + + + + + + + + + + + + + + + + + + + + Defines the life cycle of a RadElement instance. + + + + + The element is in its initial state. + + + + + The element is in a process of being constructed. + + + + + The element is already constructed but not loaded yet. + + + + + The element is loading. That is it is initializing on the owning control. + + + + + The element is prepared for visualizing. + + + + + Special state, indicating that the element has been loaded once and removed from the element tree. + + + + + The element is in a process of being disposed of. + + + + + The element is already disposed of. + + + + + Defines separators orientation. + + + + + Indicates Verical separators orientation. + + + + + Indicates Horizontal separators orientation. + + + + + Indicates Custom separators orientation. + + + + + Defines the toggle states. Toggle states are used in RadToggleButton. + + + + + Indicates off state. + + + + + Indicates on state. + + + + + Indicates a third state for the toggle button - indeterminate. + + + + + Initializes a new instance of the Formatter class. + + + + + Exposes methods and properties for e hierarchical items such as + RadMenuItem. + + + + + Gets or sets the item's owner. + + + + + Gets a value indicating whether the item has children. + + + + + Gets a value indicating whether the item is the root element if the + hierarchy. + + + + + Gets or sets the item's parent. + + + + + Gets the root item of this item's hierarchy. + + + + + Gets the next item. + + + + + Gets the previous item. + + + + + Initializes a new instance of the ChordMessageFilter class. + + Instance of the ChordMessageFilter class + + + + Filters out a message before it is dispatched. + + + Use PreFilterMessage to filter out a message before it is dispatched to a control or form. + For example, to stop the Click event of a Button control from being dispatched to the control, + you implement the PreFilterMessage method and return a true value when the Click message occurs. + You can also use this method to perform code work that you might need to do before the message is + dispatched. + + The message to be dispatched. You cannot modify this message. + true to filter the message and stop it from being dispatched; false to allow the message to continue to the next filter or control. + + + + Calculates the character code of alphanumeric key of the Keys enum instance + + An instance of the Keys enumaration + The character code of the alphanumeric key + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Represents the state of the modifier keys (SHIFT, CTRL, and ALT) in a + Chord. + + + + + Initializes a new instance of the ChordModifier using data + provided by Keys input. + + + + + Initializes a new instance of the ChordModifier using explicit + setting for every property. + + + + + Initializes a new instance of the ChordModifier using data + provided by another instance. + + + + + Initializes a new instance of the ChordModifier class with + default settings. + + + + + Updates a ChordModifier instance based on a Keys input value + + ChordModifier instance to update + Keys input value + ChordModifier instance with updated states + + + + Creates new ChordModifier instance based on a Keys input value + + Keys input value + ChordModifier instance + + + + Removes all data from the ChordModifier. + + + + + Compares this instance to a specified object or ChordModifier and returns an indication of their relative values. + + + A signed number indicating the relative values of this instance and + value. +
+ + + + Return Value + + + Description + + + + + Less than zero + + + This instance is less than + value. + + + + + Zero + + + This instance is equal to + value. + + + + + Greater than zero + + + This instance is greater than + value. + -or- + value is a null reference + (Nothing in Visual Basic). + + + +
+

Collapse imageExceptions

+
+ + An object to compare, or a null reference (Nothing in Visual + Basic). + +
+ + + Raises the PropertyChanged event + + The name of the property + + + + Gets a value indicating if any of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state. + + + + + Gets a value indicating if the SHIFT modifier key is in a pressed state. + + + + + Gets a value indicating if the CTRL modifier key is in a pressed state. + + + + + Gets a value indicating if the ALT modifier key is in a pressed state. + + + + + Notifies clients that a property value has changed. + + + + + Represents a base class for all container controls - + controls that contain other controls. + + + + + Initializes a new instance of the ContainerControlBase class. + + + + Adds a delegate to the list. + The object that owns the event. + The delegate to add to the list. + + + Removes a delegate from the list. + The object that owns the event. + The delegate to remove from the list. + + + Raises the specified event. + The object that owns the event. + An that contains the event data. + + + + Raises the BorderStyleChanged event. + + An EventArgs that contains the event data. + + + + Overrides Control.CreateControlsInstance. + + A new instance of ContainerControlBase.ContainerTypedControlCollection assigned to the control. + + + Raises the event. + A containing the event data. + + + Sets the value of the specified property. + The property whose value to set. + An object representing the value to assign to the property. + + + Retrieves the value of the specified property. + The property whose value to retrieve. + + + Removes the specified property from the properties collection. + The property to remove. + + + Retrieves a boolean value indicating if the specified property has been explicitly set. + The property to evaluate. + + + + Occurs when the value of the BorderStyle property has changed. + + + + + Encapsulates the information needed when creating a control. + + + + + Specifies the border style for a control. + + + + + Gets the space, in pixels, that is specified by default between controls. + + + + + Gets the internal spacing, in pixels, of the contents of a control. + + + + + this is the statistical weight of the container which is taken into account + when the contaner participates in a layout chain. + + + + + + + + Represents the method that will handle the + Activate event. + + + + + Represent a chord. + + + + + Initializes a new instance of the Chord class. + + + + + Initializes a new isntance of the Chord class using a list of keys. + + + + + + Initializes a new instance of the Chord class using a list of keys + and %chord modifier:Telerik.WinControls.Keyboard.ChordModifier%. + + + + + + + Initializes a new instance of the Chord class using a string of keys. + + + + + Clears the chord. + + + Retrieves the string representation of the instance. + + + Processes the modifiers. + + + + + + + + + Compares two instance for equality. + returns 0 if equal, a positive number if the first is greater than the + second, and a negative number otherwise. + + + + + + Gets or sets a list of keys in this instance. + + + Gets or sets the keys in this chord. + + + Gets the modifier strings. + + + Gets the chord keys. + + + Gets or sets the chord modifier. + + + + Represents keyboard shortcuts. + + + + Initializes a new instance of the Shortcuts class. + + + Initializes a new instance of the Shortcuts class. + + + + Adds the command bindings. + + + + + + Adds command bindings. + + + + + + Adds commands bindings. + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Fires when a shortcut is activated. + + + + + Gets the input bindings. + + + + + Represents a mouse timer. + + + + + Represents a property. Supports telerik dependency properties system by + encapsulating a property of a certain RadElement instance. + + + + + Gets the hashcode of the Name string. Pre-computed for faster dictionary operations. + + + + + One-way binding + + + + + Two-way binding. Both source and target objects can modify the current value. + + + + + No notifications are raised for the bound object. + + + + + Binding value is preserved as local upon unbind. + + + + + Supports methods for bound properties of two instances. + + + + + Supports methods for general binding of properties of two + instances. + + + + + Initializes a new instance of the RadPropertyBinding class. + + + + + + + + + + + + + + + + + + + + + + Reset the bound properties + + + + + Updates the binding source property. + + + + + + + Gets the binding source. + + + + + Supports metadata for each class inherited from + + + + + Represents a property key. + + + + + Singleton. + + + + + Represents metadata for a RadProperty. RadPropertyMetadata describes the property. + For example, through DefaultValue property you can get or set the default value + for the property. + + + + Initializes a new instance of the RadPropertyMetadata class. + + + Initializes a new instance of the RadPropertyMetadata class using the default value of the property. + + + + Initializes a new instance of the RadPropertyMetadata class using a property + changed callback. + + + + + Initializes a new instance of the RadPropertyMetadata class using an object + and a property changed callback. + + + + Gets a value indicating whether the property is read-only. + + + Gets or sets the default value of the property. + + + Gets or sets a value indicating whether the property is inherited. + + + + Gets or sets the PropertyChangedCallback + + + + + Represents element's layout data. + + + + + Initializes a new instance of the ElementLayoutData class from + the element and its PerformLayoutType. + + + + + + + Gets or sets the element. + + + + + + + + + + + + + + + Represents an item that contains external control. There is no limitation for the control type - could + be any descendant of the class Control. + + + + + This constant is used internally. + + + + + Updates the visibility, which is bound to the item's current IsVisible state, of the hosted control. + + + + + Gets the instance of the hosted control. + + + + + Gets or sets whether the mouse and keyboard messages from the hosted control + can be routed to the owner control. + + + + You can use ElementTree.Control to get + the owner control. + + + To get the hosted control use HostedControl + property. + + + + + + Gets or sets the CausesValidation property of the hosted + control. + + + Using this property is equivalent to using + HostedControl.CausesValidation + + + + + Gets or sets a value that determines whether the control should be clipped when it requires more space than available. + + + + + Corresponds to the hosted control's Validated event + + + + + Corresponds to the hosted control's Validating event + + + + + Occurs when the element recieves focus. + + + + + Occurs when the element loses focus. + + + + + Defines the display style of an item. + + + + + Specifies that neither image nor text is rendered. + + + + Specifies that only text is rendered. + + + + Specifies that only an image is rendered. + + + + + Specifies that both an image and text are to be rendered. + + + + + Defines the gradient effects: Solid, Linear, + Radial, Glass, OfficeGlass, Gel, and Vista. + + + + + Indicates that no gradient effect is used. + + + + + Indicates that linear gradient effect is used. + + + + + Indicates that radial gradient effect is used. + + + + + Indicates that glass gradient effect is used. + + + + + Indicates that OfficeGlass gradient effect is used. + + + + + Indicates that OfficeGlassRect gradient effect is used. + + + + + Indicates that gel gradient effect is used. + + + + + Indicates that vista gradient effect is used. + + + + + Defines properties for the box-model; Elements are nodes of a tree, and a + rectangular box is generated for each element. + + + + Gets or sets a value indicating the box width. + + + Gets or sets a value indicating the left width. + + + Gets or sets a value indicating the top width. + + + Gets or sets a value indicating the right width. + + + Gets or sets a value indicating the botton width. + + + Gets a value indicating the offset. + + + Gets a value indicating the border size. + + + Gets a value indicating the horizontal width. + + + Gets a value indicating the vertical width. + + + + Defines methods and properties for a calapsible element. For example, + RadRibonBarChunk is a collapsible element. + + + + + Expands the element. + + + + + Collapses the element. + + + + + Gets or sets a value indicating the expanded size of the element. + + + + + Gets the max number of steps needed for collapsing the collapsible element. + + + + + Gets the current collapse step for the collapsible element. + + + + Defines properties and methods for the default layout engine. + + + Retrieves parent's padding. + + + Retrieves check size structure. + + + Sets coerced size taken as parameter. + + + Gets the face rectangle. + + + Invalidates layout - needs redrawing. + + + + + + + + + Retrieves a value indicating whether the element is valid wrap element. + + + Performs registered suspended layout. + + + Retrieves transformation point. The point is a Point structure. + + + Retrieves transformation by alignment point using size and inner bounds. + + + Retrieves Border offset. + + + Retrieves border size. + + + Retrieves the border size of its child. + + + Invalidates the cached border. + + + Gets a value indicating the available size. + + + + Represents a panel with two children an image element and a text element + + + + + Gets or sets a value indicating the image alignment. + + + + + Gets or sets a value indicating text alignment. + + + + + Gets or sets a value indicating the TextImageRelation: ImageAboveText, ImageBeforeText, Overlay, TextAboveImage, and TextBeforeImage. + + + + + Gets or sets a value indicating the DisplayStyle: None, Image, Text and ImageAndText. + + + + + Content within a user interface is often larger than the visible area that + the user can see. Large Telerik elements can be put in scroll viewer in order to + scroll their content in small visible area. + + Every element that support scrolling must implement this interface. Currently + only class RadScrollViewer implements this interface and all + Telerik elements that can be scrolled inherit that class. + + + + + + Scrolls down within viewport by one logical unit. + + + + + Scrolls left within viewport by one logical unit. + + + + + Scrolls right within viewport by one logical unit. + + + + + Scrolls up within viewport by one logical unit. + + + + + Scrolls down within viewport by one page. + + + + + Scrolls left within viewport by one page. + + + + + Scrolls right within viewport by one page. + + + + + Scrolls up within viewport by one page. + + + + + Scrolls vertically to the beginning of the content. + + + + + Scrolls vertically to the end of the content. + + + + + Scrolls horizontally to the beginning of the content. + + + + + Scrolls horizontally to the end of the content. + + + + + Scrolls both horizontally and vertically to the beginning of the content. + + + + + Scrolls both horizontally and vertically to the end of the content. + + + + + Gets whether the scroll viewer uses a virtualized viewport + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + This class supports the TPF internal infrastructure and is not intended to be used directly from your code. + + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Represents a base type for all primitives. Defines PaintPrimitive method that is + overridden in all derived classes. + Primitives are these RadElement(s) that are actually drawn on the + screen. + + + + Draws the primitive on the screen. + + + Gets or sets a value indicating whether the primitive should + be painted. + + + Virtual function that draws the primitive on the screen. + + + Gets a value indicating whether the primitive has content. + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + Represents a line that is drawn on the screen. + + + + Represents a filling that is drawn on the screen. + + + + + Draws the primitive on the screen. + + + + + Gets or sets background color. This property is applicable to radial, glass, office glass, gel, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, office glass, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or sets the number of used colors in the gradient effect. + + + + + Gets and sets the gradient style. The possible values are defined in the gradient + style enumeration: solid, linear, radial, glass, office glass, gel, and vista. + + + + + Gets or sets gradient angle for linear gradient. + + + + + Gets or sets GradientPercentage for linear, glass, office glass, gel, vista, and + radial gradients. + + + + + Gets or sets GradientPercentage for office glass, vista, and radial + gradients. + + + + + Specifies whether the FillPrimitive should fill the GraphicsPath defined by its Parent.Shape. If false, it will fill its bounding rectangle. + + + + + This property is used internally! + + + + Draws the primitive on the screen. + + + Gets or sets the line width in pixels. + + + + Gets or sets the line orientation. Possible values are defined in the SepOrientation + enumeration. + + + + Gets or sets the line angle in degrees. + + + + Initializes a new instance of the ArrowPrimitive class using the + ArrowDirection enumeration. Possible directions are up, bottom, left, and + right. + + + + + Gets or sets the arrow direction. The possible values are contained in the + ArrowDirection enumeration: up, left, right, and bottom. + + + + Represents the internal part of the progress bar. + + + Draws the primitive on the screen. + + + + indicates that Progress Bar has Image + + + + + Gets or sets progress bar orientation. Possible values are indicates in + ProgressOrientaion enumeration: up, left, bottom, and right. + + + + + Indicates whether the progress bar style is dash. If both dash and hash are + true, hatch style is chosen. + + + + + Indicates whether the progress bar style is hatch. When true, the style is Hatch. + When both dash and hatch are true the style is hatch. + + + + Gets or sets the angle in degrees of the progress bar dash or hatch parts. + + + Gets or sets the step width in pixels between separators. + + + Gets or sets separators width in pixels. + + + + Gets or sets the value of the first progress line. There could be two progress + lines in the progress bar. + + + + + Gets or sets the value of the second progress line. There could be two progress + lines in the progress bar. + + + + Specifies minimum value for the progress. + + + Gets or sets maximum value for the progress. + + + + indicates Stap value + + + + Gets or sets the first color that is used in gradient effect. + + + Gets or sets the second color that is used in gradient effect. + + + Represents a check box primitive that is drawn on the screen. + + + + Default constructor + + + + + Copy constructor + + + + + + GetBaseLineFromFont Method + + A Font + A float + + + + Get or sets HTML tag of the current text block + + + + + Get or sets FontSize the current text block + Note: recreate the font + + + + + Get or sets Image for the current text block + Current block should be named Image block + + + + + Get or sets the Size the current text block + + + + + current block content alignment + + + + + Get or set the text + + + + + BaseLine Property + + + + + Move text blocks to next line if there is not avaible space for the current line + + + + + + + Calculate Size of the whole FormattedTextBlock + + + + + + + + + + + Calculate text size of the Single Text Line + + + + + + + Draw whole FormattedTextBlock + + + + + + + + + + + + Occurs when the mouse is up the element. + + + + + Occurs when the mouse pointer is moved over the element. + + + + + BaseLine Property + + + + + This method draws text to a Bitmap graphics which is used when an element/control is in Disabled state. GDI does not draw text well on a bitmap graphics surface, + hence the need for this method. + + + + Retrieves the text size. + + + + check is the Text contains html command + + text to be checked + text to check + + + + Main function for parsing process + + text to parse + base Font color + base font + base font size + base textaligment + Formatted text block that contains the whole structure + + + + Main function for parsing process + + text to parse + base Font color + base font + base font size + base textaligment + base font style etc. Regular, Bold + Formatted text block that contains the whole structure + + + + Parse single HTML tag and apply settings + + + + + + + + + + + process single token from Html string + + + + + + + a FormattedText object + + + + Handles <u><i><b> tags + + + + + + + + + Handles <color=value> + + + + + + + + Handles <size=[+|-] valie> + + + + + + + + Handles <font=value> + + + + + + + A String Tokenizer that accepts Strings as source and delimiter. Only 1 delimiter is supported (either String or char[]). + + + + + Constructor for StringTokenizer Class. + + The Source String. + The Delimiter String. If a 0 length delimiter is given, " " (space) is used by default. + + + + Method to get the number of tokens in this StringTokenizer. + + The number of Tokens in the internal ArrayList. + + + + Method to get the next (string)token of this StringTokenizer. + + A string representing the next token; null if no tokens or no more tokens. + + + + + Represents a track bar that is drawn on the screen. + + Extends + BasePrimitive + + + + + Gets or Sets RadTrackBar's ticks color + + + Gets or Sets the gradient angle of the SliderArea + + + Gets or Sets whether the TrackBar should fit to available size + + + Gets or Sets whether the SlideArea should be visible + + + Gets or Sets Ticks Visibility + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or sets background color. This property is applicable to radial, glass, + office glass, and vista gradients. + + + + + Gets or Sets TrackBar's thumbWidth + + + + + Gets or Sets TrackBar's Orientation + + + + + Indicates the tick style of the progress bar. Possible values are members of + %TickStyles enumeration:Telerik.WinControls.Enumerations.TickStyles%: none, + topleft, BottomRight, and both. + + + + + The number of positions between tick marks + + + + + Gets or Sets the width of TrackBar's SlideArea + + + + Gets or sets a minimum int value for the trackbar position. + + + Gets or sets a maximum int value for the trackbar position. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Looks up a localized resource of type System.Byte[]. + + + + + Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + + + + + Looks up a localized resource of type System.Drawing.Bitmap. + + + + + Interface provides methods for registering and accessing . + + + + + Retrieves currently registered Service by the specified type. + + A type derived from + + + + + Registers the specified service with ourselves. + + An instance of type derived from . + + + + Represents abstact class that provides service capabilities. + + + + + Initializes a new instance of the RadService class. + + + + + Determines whether the service is operational and may perform actions. + + + + + + Starts the Service. + If the service was previously paused, it should be re-started with the Resume method. + + A context passed to the service. + + + + Stops currently working or previously stopped service. + + True to indicate that current operation ended successfully, false otherwise. + + + + Pauses a currently running operation. + + + + + Resumes previously paused operation. + + + + + Determines whether the service may be started. + Validation is as follows: + 1. Check whether Enabled is true. + 2. Check the context through IsContextValid method. An exception is thrown if context is invalid. + 3. Checks the current state - it should be Initial or Stopped. + + + + + + + Notifies that the service has been successfully started. + Allows inheritors to perform some additional logic upon start. + + + + + Notifies that a start request has occured. Cancelable. + + + + + + Notifies that a running operation has stopped. + Allows inheritors to perform some additional logic upon stop. + + + + + Notifies that a stop request has occured. Cancelable. + + + + + + Evaluates the provided context. Some services may not operate without certain context provided. + + + + + + + Performs the core Start logic. + + + + + Stops the service. Performs the core logic. + + + + + Aborts the current operation without applying any changes. + + + + + Ends the current operation and applies all changes. + + + + + Performs the core Resume logic. + + + + + Performs the core Pause logic. + + + + + Sets the provided object as the current context. + + + + + + Notifies for a change in the Enabled state. + + + + + Gets the context associated with the current operation. + This member is valid only while the Service is started or paused. + + + + + Raised when the service is about to be started. + + + + + Raised right after the service is started. + + + + + Raised when the service is about to be stopped. + + + + + Raised when the service is stopped. + + + + + Determines whether the service is available at design-time. False by default. + + + + + Gets the current state of the service. + + + + + Gets the name of the service. + + + + + Determines whether the Service is enabled (may be started). + If the Service is working and its is disabled, it will end its current operation. + + + + + Represents event data when RadService is starting. + + + + + Initializes a new instance of the RadServiceStartingEventArgs class. + + The context that is passed prior to the Start request. + + + + Gets the Context, passed to the service as a start parameter. + + + + + Represents the states of + + + + + The state of , when is created. + + + + + The state of , when is stopped. + + + + + The state of , when is working. + + + + + The state of , when is paused. + + + + + Represents event data when RadService is stopping. + + + + + Initializes a new instance of the RadServiceStoppingEventArgs class. + + + + + + Gets or sets the Commit parameter of the Stop request. + + + + + Gets the currently dragged instance. + + + + + Determines whether a default hint will be generated. Usually this is a snapshot of the dragged item. + + + + + Gets or sets the context associated with a drag operation. + + + + + Determines whether a drag operation may start. + + + + + Gets or sets the drop target for the operation. + + + + + Represents a service that manages drag and drop actions. + + + + + Initializes a new instance of the DragDropService class. + + + + + Begins a drag pass. Allows for service automation. + + The position of the mouse cursor in screen coordinates. + An instance of IDraggable that is dragged. + + + + Ends a drag pass. Allows for service automation. + + The end position of the mouse cursor in screen coordinates. + An instance of . + + + + Ends a drag pass. Allows for service automation. + + + + + Mocks a mouse move to a specific point. Allows for service automation. + + + + + Determines whether a drop operation will be committed (a valid drop target is found). + + + + + Gets or sets the cursor to be used when a valid drop target is hit-tested. + + + + + Gets or sets the cursor to be used when a valid drop target is hit-tested. + + + + + Determines whether a default preview is generated for a ISupportDrag instance if its GetPreview method returns null. + + + + + Gets current drop target, where the mouse cursor points. + + + + + Gets the current drop location in the context of the current target. + + + + + Gets the Hint window. + + The hint window. + + + + Gets or sets the image to be used as a preview while dragging. + + + + + Gets or sets the cursor to be used while dragging. + + + + + Defines the element's property options. + + + + + Indicates that there are no property options. + + + + + Indicates that the property can inherit a value. + + + + + Indicates that the property invalidates the layout. + + + + + Indicates that the property affects the layout. + + + + + Invalidates measure + + + + + Invalidates arrange + + + + + Invalidates parent's measure + + + + + Invalidates parent's arrange + + + + + Indicates that the property affects the display. + + + + + Indicates that the property affects the theme. + + + + + The property supports cancellation. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + Initializes a new instance of the RadItemCollection class. + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Gets or sets the owner of the collection. + + + + + Represents the method that will handle the TextChanging event. + + + + + + + Represents a Z-order comparer. The Z-Order determines the overlapping of the + RadElements. + + + + + Initializes a new instance of the RadElementZOrderComparer class. + + + + + + Compares the Z-order of the two RadElement arguments. Retrieves 0 if the + two elements are equal, positive number if the first element has a greater + Z-Order than the second argument, and a negative number otherwise. + + + + + + + + + + + + + + + + + + + + + + + Layout panel which docks its children to the sides of the area it contains + + + + + Gets the dock property of an element + + + + + + + Sets the docking position of an element + + + + + + + Gets or sets a property indicating whether the last child will fill the remaining area + + + + ElementWithCaptionLayoutPanel is a container for elements with a caption. + + + + Gets or sets a boolean value indicating whether there is a caption on the + top. + + + + + Layout panel is a container for other elements. It orders the contained + elements as a stack vertically or horizontally. When the elements pass through the + left end of the stacklayout, the last one is put on a new line. If horizontal is + chosen the width of all elements is the width of the largest element in the + column. + + + + + This constant is used internally. + + + + + ArrangeOverride + + + + + + + Gets or sets the elements orientation inside the stacklayout. + Possible values are horizontal and vertical. + + + + + Gets or sets a value indicating whether the elements have equal size. + + + + + Gets or sets a value indicating whether the elements have equal width. + + + + + Gets or sets a value indicating whether the elements have equal height. + + + + + ChildrenForcedSize + + + + + Gets or sets a value indicating whether maximum size dimensions are + flipped. + + + + Gets or sets a value indicating whether elements are collapsed on resize. + + + + Gets or sets a value indicating whether the panel will use its direct parent size to arrange the child elements or + whether it will use the first ancestor which is a layout panel or an element with AutoSizeMode = FitToAvailableSize. + + + + + Gets or sets a value indicating whether the panel is in Strip mode or not. When in Strip mode the panel doesn't + move the child elements to a new row when there's not enough space but rather arranges all elements on a single row. + + + + + Notifies all children when same child changes. Effectively redraws all + children in the panel. + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + + Represents the method that will handle HandleExecute, and Execucted events. + + + + + Represents the method that will handle HandleExecute, and Executed events. + + Initializes the event sender. + Initializes the event argument data. + + + + + + + Required designer variable. + + + + + Clean up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + Represents an arrow that is drawn on the screen. + + Extends %BasePrimitive:Telerik.WinControls.Primitives.BasePrimitive%. + + + + + Initializes a new instance of the ArrowPrimitive class. + + + + Initializes a new instance of the ArrowPrimitive class using the + ArrowDirection enumeration. Possible directions are up, bottom, left, and + right. + + + + Draws the primitive on the screen. + + + + Gets or sets the arrow direction. The possible values are contained in the + ArrowDirection enumeration: up, left, right, and bottom. + + + + + Tunnels when the AutoSize property of RadControl changes in order to notify any children that should take special actions. + + + + + Tunnels when some of the stretch properties (horizontal or vertical) has changed in order to notify any children that should take special actions. + + + + + Tunnels when the layout has been suspended in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + Tunnels when the layout has been resumed in order to notify any children that should take special actions in this case - like RadHostItem. + + + + + This method is used internally. + + + + + This method is used internally. + + + + + Paints the RootElement and its element tree. Intended for use by RadControl inheritors. + + IGrpahics object to be used to paint elements + Clipping rectangle to be painted. Only those elements from the tree which intersect with this rectangle will be painted. + + + + Paints the RootElement and its element tree. Intended for use by RadControl inheritors. + + IGrpahics object to be used to paint elements + Clipping rectangle to be painted. Only those elements from the tree which intersect with this rectangle will be painted. + + + + + Gets or sets the forecolor. Color type represents an ARGB color. + + + + + Determines whether to use compatible text rendering engine (GDI+) or not (GDI). + + + + + Gets or sets a value corresponding to the bounding rectangle of the owning Control. + + + + + Gets or sets value indicating whether the shape set to the root element would be applied as a region to + the RadControl that contains the element. + + + + + This property is used internally! + + + + + When set, replaces the default control size. + + + + + Defines the usage of a given attached property. + + + + + + + + + + + + + + + + + + + + + + + + + Represents the method that will be an alternative expression storage callback. + + + + + + + + + Represents the method that will be a coerce value callback. + + + + + + + + Represents the method that will be a property changed callback. + + + + + + Initializes the property change arguments. + + + + + Defines the source of current property value. See also + %RadObject.GetValueSource:
+ Telerik.WinControls.RadObject.GetValueSource%. +
+
+ + + Indicates that the reason is unknown. + + + + + Indicates that the default value is set. + + + + + Indicates that the property changed is inherited. + + + + + An overriden default value, has higher priority than Default and Inherited source. + + + + + Indicates that the reason for the property change is an applied theme. + + + + + Value is set locally through a CLR property setter. + + + + + Indicates that the reason for the property change is data binding. + + + + + A value is applied through two-way binding. + + + + + Indicates that the reason for the property change is an animation effect. + + + + + Defines a mask enumeration which is used when updating rad properties' values. + + + + + Defines the possible results for a property value update operation. + + + + + A composite value update is still running. + + + + + There was no need of updating the property. + + + + + The property has been successfully updated and its value has changed. + + + + + The property has been successfully updated but its value has not changed. + + + + + Update operation was canceled. + + + + + Defines basic methods for Telerik layout architecture. Since all layout panels + update their layout automatically through events, this functions are rarely used + directly. + + + + + Performs layout changes based on the element given as a paramater. + Sizes and places are determined by the concrete layout panel that is used. + For example if StackLayoutPanel is used, the element will be placed next to + the previously placed element. Since all layout panels update their layout + automatically through events, this function is rarely used directly. + + + + + + Retrieves the preferred size of the layout panel. If the proposed size is + smaller than the minimal one, the minimal one is retrieved. Since all layout + panels update their layout automatically through events, this function is + rarely used directly. + + + + + + + + + + Classes that implement IGraphics interface are capable of drawing on the + computer screen. Classes that implement this interface can use different APIs to + perform the actual drawing: GDI+, DirectX, etc. + + + + Changes the opacity level of the current device context. + + + Restores the opacity of the current device context to the previous value. + + + + Saves the current smothingMode, and changes the smoothingmode for the current device + context. + + + + Restores the smoothing mode to the previous value. + + + Draws a rectangle specified by a rectangle structure and a color. + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment and pen + width. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment and pen + width. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment, pen width and DashStyle. + + + + + Draws a rectangle specified by rectangle structure, color, PenAlignment, pen width and DashStyle. + + + + + Updates the clipping region of the current Graphics object to exclude + the area specified by a Rectangle structure. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth and angle. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth, angle and DashStyle. + + + + + Draws a linear gradient rectangle specified by rectangle structure, color array, + penalignment, penWidth, angle and DashStyle. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment and penWidth. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment and penWidth. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment, penWidth and DashStyle. + + + + + Draws a radial gradient rectangle specified by rectangle structure, color, color + array for gradient effect, penalignment, penWidth and DashStyle. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment and penwidth. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment and penwidth. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment, penwidth and DashStyle. + + + + + Draws a custom gradient rectangle specified by rectangle structure, graphicsPath, + color, color array for the gradient effect, penalignment, penwidth and DashStyle. + + + + Draws an ellipse defined by a bounding rectangle and color. + + + + Draws the specified text string with specified Rectangle, Font, Color, + ContentAlignment, StringFormat and Orientation. + + + + + Draws the specified text string with specified Rectangle, Font, Color, + ContentAlignment, StringFormat and Orientation. + + + + + Draws the specified text string with specified Rectangle, Font, Color, + ContentAlignment, StringFormat, ShadowSettings, TextRenderingHint and + Orientation. + + + + + Draws the specified Image object with the specified Rectangle, Image, + ContentAlignment and disable flag. + + + + + Draws the specified Image object with the specified Point, Image and disable + flag. + + + + + Draws a bitmap image specified by image object and position from the left-upper + corner of the current device context. + + + + + Draws a bitmap image specified by image object and position from the left-upper + corner of the current device context and specified opacity. + + + + + Draws a bitmap image specified by image object, position from the left-upper + corner of the current device context and specified size. + + + + + Draws a bitmap image specified by image object, position from the left-upper + corner of the current device context, opacity and specified size. + + + + Draws a path specified by GraphicsPath, color, pen alignment and pen width. + + + Draws a path specified by GraphicsPath, color, pen alignment, pen width and DashStyle. + + + Draws a path specified by GraphicsPath, color, pen alignment, pen width and DashStyle. + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth and angle. + + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth, angle and DashStyle. + + + + + Draws a linear gradient path specified by GraphicsPath, bounding Rectangle, color + gradient array, penalignment, penwidth, angle and DashStyle. + + + + + Draws a line specified by color, initial x point, initial y point, final x and + final y point. + + + + + Draws a line specified by color, initial x point, initial y point, final x and + final y point. + + + + + Draws a line specified by color, initial x point, initial y point, final x, final y point and width + + + + + Draws a line specified by color, DashStyle, initial x point, initial y point, final x + and final y point. + + + + + Draws a redial gradient path specified by Graphicspath, bounding rectangle, color, + color gradient array, penalignment and penwidth. + + + + + Draws a redial gradient path specified by Graphics path, bounding rectangle, color, + color gradient array, pen alignment and pen width. + + + + + Draws a redial gradient path specified by Graphics path, bounding rectangle, color, + color gradient array, pen alignment and pen width. + + + + + Draws a custom gradient path specified by GraphicsPath, GraphicsPath for the + gradient, color, gradient color array, penalignment and penwidth. + + + + Creates a mask specified by color and bitmap. + + + + Fills the interior of a rectangle specified by the + borderRectangle and using for color the second argument. + + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + Defines the way the image is populated in the rectangle + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + + + + Fills a rectangle using the image as texture. + + The rectangle to fill. + The image to use as a texture. + Defines the way the image is populated in the rectangle + + + + Fills gradient rectangle specified by rectangle structure, color, color, color, + color, GradientStyles, and angle. + + + + + Fills the gradient rectangle specified by rectangle structure, color gradient array, + float offset array, GradientStyles, angle, gradientPercentage, and + gradientPercentage2. + + + + + Fills the gradient rectangle specified by rectangle structure, color gradient array, + float offset array, GradientStyles, angle, gradientPercentage, and + gradientPercentage2. + + + + + Fills the glass gradient rectangle specified by rectangle structure, color, color, + color, color, and gradient percentage. + + + + + Fills the office glass gradient rectangle specified by rectangle structure, color, + color, color, color, and gradientPercentage and gradientPercentage2. + + + + + Fills the vista gradient rectangle specified by rectangle structure, color, color, + color, color, gradient percentage, and gradientPercentage2. + + + + + Fills the gel gradient rectangle specified by rectangle structure, color, color, and + gradientPercentage. + + + + + Fills the interior of a polygon defined by an array of points specified by + Point structures and + color. + + + + + Fills the interior of a polygon defined by color and an array of points specified + by Point structures. + + + + + Fills the interior of a polygon defined by brush and an array of points specified + by Point structures. + + + + + Draws a round rectangle specified by Rectangle structure, color, float borderWidth, + and radius in pixels. + + + + + Translates the local geometric transformation of this TextureBrush object by + the specified dimensions. This method prepends the translation to the + transformation. + + + + + Translates the local geometric transformation of this TextureBrush object by the + specified dimensions. This method prepends the translation to the + transformation. + + + + + Rotates the local geometric transformation by the specified angle. This method + prepends the rotation to the transformation. + + + + + Resets the + world transformation matrix of this Graphics to the identity matrix. + + + + + Scales the world transformation matrix by the specified amount. + + + + Gets the clipping rectangle; the rectangle which needs redrawing. + + + Gets the current context device - graphics object. + + + Gets or sets the opacity level of the device context. + + + + Implements functionality for drawing GDI+ graphics. + + + + + Initializes a new instance of RadGdiGraphics class using GDI graphics context. + + + + + + Draws a border specified by rectangle structure, IBorderElement. + + + + + Disposes the object. + + + + + Disposes the GDI+ graphics context. + + + + + Gets or sets current GDI+ graphics context. + + + + Represents a border that is drawn on the screen. + + + + Virtual method that paints the primitive on the screen. It may be overridden by + the derived types. + + + + + Gets the border thickness. + + An instance of representing the border thickness. + + + + + Gets or sets the + Border style. The two possible values are SingleBorder and FourBorder. In the + single border case, all four sides share the same appearance although the entire + border may have gradient. In four border case, each of the four sides may differ in + appearance. For example, the left border may have different color, shadowcolor, and + width from the rest. When SingleBorder is chosen, you should use the general + properties such as width and color, and respectively, when the FourBorder style is + chosen you should use properties prefixed with the corresponding side, for example, + LeftColor, LeftWidth for the left side. + + + + + + + + + + Gets or sets float value indicating the width of the border + measured in pixels. It is only used when SingleBorder style is chosen for the + BoxStyle property which effectively means that all four borders share the same + width. + + + + + Gets or sets a float value width of the left border. This property + has effect only if FourBorders style is used in BoxStyle property and + affects only the width of the left border. + + + + + Gets or sets a float value width of the top border . This property + has effect only if FourBorders style is used in BoxStyle property, + and affects only the top border. + + + + + Gets or sets a float value width of the right border. This + property has effect only if FourBorders style is used in BoxStyle + property, and affects only the right border. + + + + + Gets or sets a float value width. This property has effect only if + FourBorders style is used in BoxStyle property, and affects only the + bottom border. + + + + + Gets and sets the left border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the left border. + + + + + Gets and sets the top border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the top border. + + + + + Gets and sets the right border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the right border. + + + + + Gets and sets the bottom border color. This applies only if FourBorders is chosen + for BoxStyle property, and affects only the bottom border. + + + + + Gets and sets the left shadow color. This option applies only if + fourBorders is chosen, and affects only the left border. + + + + + Gets and sets the top shadow color. This option applies only if + fourBorders is chosen, and affects only the top border. + + + + + Gets and sets the right shadow color. This option applies only if + fourBorders is chosen, and affects only the right border. + + + + + Gets and sets the bottom shadow color. This option applies only if + fourBorders is chosen, and affects only the bottom border. + + + + + Specifies whether the BorderPrimitive should draw the GraphicsPath defined by its Parent.Shape. If false, it will draw its bounding rectangle. + + + + + Specifies the style of dashed lines drawn with a border. + + + + + Specifies the pattern of dashed lines drawn when the BorderDashStyle is custom. + + + + + Gets the border offset of the primitive. It effectively retrieves the upper-left + corner inside the primitive border. It takes into consideration the BoxStyle property + and possible different widths of the left and the upper side. + + + + Retrieves size of the combined bottom, right, upper, and left border. + + + Gets the horizontal width of the combined left and right border. + + + Gets the vertical width of the combined bottom and upper border. + + + Gets or sets gradient angle for linear gradient measured in degrees. + + + + Gets or sets gradient style. Possible styles are solid, linear, radial, glass, + office glass, gel, and vista. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, and vista gradients. This + is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + + Gets or sets color used by radial, glass, office glass, gel, and vista gradients. + This is one of the colors that are used in the gradient effect. + + + + Represents a check box primitive that is drawn on the screen. + + + + Gets or sets a value indicating the style of the check box primitive. + + + + + Gets or sets a value indicating whether to draw the background. + + + + + Gets or sets a value that determines whether the checkmark size is fixed to 8;8 pixels. + + + + + Gets or sets a value that determines the checkmark thickness. Use this property only when UseFixedCheckSize property is set to false. + + + + + Gets or sets a value that determines how the checkmark position in Indeterminate state will be adjusted vertical (in pixels). + + + + + Gets or sets a value that determines how the checkmark position in Indeterminate will be adjusted horizontal (in pixels). + + + + + Gets or sets a value that determines how the checkmark width in Indeterminate state will be adjusted (in pixels). + + + + + Gets or sets a value that determines how the checkmark height in Indeterminate state will be adjusted (in pixels). + + + + Represents an image that is drawn on the screen. + + + Draws the primitive on the screen. + + + + Gets or sets the flag controlling whether the image primitive fills up the available area horizontally + + + + + Gets or sets the flag controlling whether the image primitive fills up the available area vertically + + + + + Gets or sets the way ImagePrimitive will layout its image on the screen. + + + + + Gets or sets the desired size to be used when displaying the image. Works when ImageScalingMode is set to FitToSize. + + + + Gets or sets the image that is displayed. + + + + Gets the Image that will be painted on the screen, with settings such as Opacity and Flip applied. + + + + Gets or sets the image list index value of the displayed image. + + + Gets or sets the key accessor for the image in the ImageList. + + + Specifies whether the image should be taken from the SmallImageList or from the ImageList when the ImageIndex/ImageKey property is set. + + + + Gets or sets image scaling. Possible values are members of ImageScaling + enumeration: None and SizeToFit. + + + + Gets actual index. + + + Gets a value indicating whether the primitive has content. + + + + Gets or sets the transparent color for the image + + + + + Gets or sets the type of rotate/flip to be applied. + + + + + Represents text that is drawn on the screen. + Extends %BasePrimitive:Telerik.WinControls.Primitives.BasePrimitive%. + + + + + Draws the primitive on the screen. + + + + + Returns the text as a string. + + + + + Gets or sets the text rendering hint. + + + + + Gets or sets the text rendering hint used when this instance is disabled. + + + + + This property is used internally. + + + + + Gets or sets the displayed text. + + + + + Allow StretchHorizontally + + + + + Allow StretchVertically + + + + + Gets or sets a value indicating whether the additional label text is to be indicated by an ellipsis. + + + true if the additional label text is to be indicated by an ellipsis otherwise, false. Default value is true. + + + + + Includes the trailing space at the end of each line. By default the boundary rectangle returned by the Overload:System.Drawing.Graphics.MeasureString method excludes the space at the end of each line. Set this flag to include that space in measurement. + + + + + Gets or sets a value indicating whether the text should wrapped to the available layout rectangle. + + + true if the text should wrapped to the available layout rectangle otherwise, false. + + + + + Gets or sets a value indicating whether the control interprets an ampersand character (&) + in the control's Text property to be an access key prefix character. + + + true if the label doesn't display the ampersand character and underlines the character + after the ampersand in its displayed text and treats the underlined character as an access key; + otherwise, false if the ampersand character is displayed in the text of the control. + The default is true. + + + + + Gets or sets a value indicating whether if the keyboard accelerators are visible. + + + true if if the keyboard accelerators are visible otherwise, false. + + + + + Gets or sets the text orientation. Possible values are horizontal + and vertical. + + + + + Gets or sets whether the text will be flipped. + + + + + Gets or sets the text alignment. Possible values are included in + the ContentAlignment enumeration. + + + + + Gets a value indicating whether the primitive has content. + + + + + Gets or sets the shadow settings. + + + + + Gets an instance of the structure which contains information on how to render the text in this element + + + + + ComplexCondition evaluates two conditions related with a binary operator. + Inherits Condition + + + + + Defines a base abstract class that describes a condition which checks when to apply + a style rule. SimpleCondition evaluates when a property of an Element equals a + certain value. RoutedEventCondition evaluates if a routed event is currently + tunneling/bubbling through an Element. ComplexCondition evaluates two conditions + related with a binary operator. + + + + + Retrieves a value indicating whether to apply a style rule. + + + + + + + Retrieves a list of the affected properties of the current condition. + + + + + Retrieves a list of the affected events of the current condition. + + + + + Initializes a new instance of the ComplexCondition class. + + + + + Initializes a new instance of the ComplexCondition class from the first condition, + binary operator, and second condition. + + + + + + + + Evaluates the complex condition. + + + + + + + Retrives a string representation of the ComplexCondition class. + + + + + + Gets or sets the first condition. + + + + + Gets or sets the binary operator to be used for evaluating the condition. + + + + + Gets or sets the second condition. + + + + + A binary opeartor used by the CompolexCondition class. + + + + + Indicates conjunction. + + + + + Indicates disjunction. + + + + + Indicates exclusive or. + + + + + See BinaryOperator, + Condition + + + + + + + + + + + + + + + SimpleCondition evaluates when a property of an Element equals a certain value. + + + + + Initializes a new instance of the SimpleCondition class. + + + + + + Initializes a new instance of the SimpleCondition class from the setting to check, and the + unary operator to use. + + + + + + + Initializes a new instance of the SimpleCondition class from the property, value and unary operator + + + + + Initializes a new instance of the SimpleCondition class from the property and value + + + + + Evaluates the target RadElement using the unary operator. + + + + + + + Retrieves the string representation of the current instance. + + + + + + Gets or sets the unary operator of the simple condition. + + + + + Gets or sets the setting of the current property. + + + + + Represents a class selector. Class selectors are used to apply the same + customization to all elements that belong to the same class. This + behavior is very similar to that of the CSS class selectors. + + + + + Represents a base class for other selectors. telerik presentation framework + selectors are similar to CSS selectors. + + + + Represents a base class for the HierarchicalSelector class. + Selectors in telerik presentation framework are very similar to CSS + selectors. + + + Exposes methods and properties required for a general selector. + Selectors in telerik presentation framework are like CSS selectors. + + + + Gets value indicating whether the selector applies to the specified element + + + + + + + Gets value indicating whether the selector applies to the specified element, without checking conditions that apply to properties of the element. + + + + + + Retrieves an array of selected elements of the element given as an + argument. + + + + Method supports obsolete theming infrastructure + + + + + + Applies the property settings to the given element. Method supports obsolete theming infrastructure. + + + + Gets value indicating whether the selector Equals to the specified selector + + + + + + + Method supports obsolete theming infrastructure. + If HasApplyCondition returns true, this method should add the RadProperties that the selector depends, so style manager + can refresh afected element by the selector selector, when property changes + + + + + Gets a value indicating whether a condition has been applied. + + + + Gets or sets the child selector. + + + + + Selector Key + + + + Retrieves a value indicating whether the customization should be + un-applied to the given element.. + + + Retrieves a value indicating whether value is set for the element. + + + Gets or sets the Condition upon which to apply the customization. + + + Gets or sets the condition upon which to un-apply the customization. + + + Gets or sets a value indicating whether auto-un-apply is on or off. + + + Gets or sets a value indicating whether the current selector is the active one in style builder + + + Gets a value indicating whether the an apply condition is set. + + + Retrieves the selected elements of the given element. + + + Initializes a new instance of the class selector class. + + + + Initializes a new instance of the class selector class using string for the class + name. + + + + Gets or sets a value indicating the class name. + + + + Represents a name selector. Name selectors are used to apply customization to the + element having the specified name. This behavior is very similar to that of CSS id + selectors. + + + + Initializes a new instance of the NameSelector class. + + + + Initializes a new instance of the NameSelector class using the name of the + element. + + + + + Gets or sets the element's name. Customization is applied only to the element + having this name. + + + + + Initializes a new instance of the SelectorCollection class. + + + + + Initializes a new instance of the SelectorCollection class. + + + + + Represents a type selector. Type selectors are used to apply the same + customization to all elements of the same type. Behavior is very similar to that + of the CSS type selectors. + + + + Initializes a new instance of the TypeSelector class. + + + + Initializes a new instance of the TypeSelector class using the type that will be + affected. + + + + Gets or sets the element type that will be affected by the Type selector. + + + + Gets or sets value corresponding to the VisualState of the item that the selector targets + + + + + Gets the Color defined for the current element. + + + + + + + Sets the specified element as the "Current" for painting. + + + True if the element may be painted (there is a theme part defined for it), false otherwise. + + + + Paints the current element (previously specified by the SetCurrentElement method) + on the provided graphics surface, within the desired bounds. + + + + + + + Invalidates all opened forms upon a user-triggered change in this class. + + + + + closes all currently opened HTheme handles + + + + + Looks-up a HTheme handle. + + + + + + + Used internally by the framework to determine whether we just want to skip TPF's drawing. + + + + + Used to instruct the system skin painting mechanism that a custom painting will be performed + in the PaintElementSkin method. + + + + + Gets the currently attached element. + + + + + Returns true on Windows Vista or newer operating systems; otherwise, false. + + + + + Determines whether system skins will be applied on RadControls + + + + + Gets the only instance of this manager. + + + + + Mode is inherited by the parent chain. + + + + + Only direct element can use skins, value cannot be used for inheritance + + + + + The element and all its descendants may use skins. + + + + + Only direct element is forbidden to use skins, its children can compose this value up from the parent chain. + + + + + Element and all its descendants are forbidden to use system skins. + + + + + Contains definitions for the MS Windows Vista Aero theme. + + + + + Vista comboboxes + + + + + Vista DateTimePickers + + + + + Vista TextBoxes + + + + + Vista Headers + + + + + Vista Listboxes + + + + + Vista ListViews + + + + + Vista Flyout + + + + + Vista Flyout + + + + + Defines the possible formats used when serializing an archive package. + + + + + Binary format. + + + + + XML format. + + + + + Decompresses the stream using Binary format. + + + + + + + Decompresses the stream in the provided file using Binary format. + + + + + + + Gets the default format for this package. + + + + + Gets or sets the format used to persist the package. + + + + + Gets the list which contains the streams of this package. + + + + + Encapsulates information for a single stream within a zipped stream. + + + + + Gets or sets the context associated with the archive. + + + + + Gets the raw bytes of the underlying stream. + + + + + Gets or sets the already zipped raw bytes of the underlying stream. + + + + + Gets the count of the raw bytes that form the stream. + + + + + Gets or sets the name of this archive. + + + + + Gets the information about the format of the underlying stream. + + + + + Represents an archive package where each stream is a compressed XmlTheme. + + + + + Gets all the themes that reside within this package. + + + + + + An archived stream, which persists a XmlTheme instance. + + + + + Defines the types of registrations of a StyleSheet in the ThemeResolutionService. + + + + + Implements whether an instances of a class need validation after theme + deserialization. + + + + + Initializes a new instance of the RadStylesheetRelation class. + + + + + Determines whether the specified relation is equal to this one. + + + + + + + Gets or sets a value indicating the builder registration type. + + + + + Gets or sets a string value indicating the control type. + + + + + Gets or sets a string value indicating the element type. + + + + + Gets or sets a value indicating the control name. + + + + + Gets or sets a string value indicating the element name. + + + + + Marker attribute - informs StyleXmlSerializer that property should be serialized as an attribute, when serializing + RadControl style + + + + + Serializes components to XML, using the same rules that apply in Code Dom serialization, in VS designer. + + + + + Constructs new instance of the class, providing extended properties serialization information + + Extends the properties serialization information. + + + + Constructs new instance of the class, providing extended serialization information. + + Dictionary to use that maps type names to XML element names. Keys of the dictionary entries should be type full names. Values should correspond to the type instances. + Extends the properties serialization information. + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + object that owns the property (collection) currently deserialized + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + object that owns the property (collection) currently deserialized + + + + + + Reads the collection items if reader is positioned on an element that is a collection. + + + + + + property used to match objects in collection + + + + Reads the collection items if reader is positioned on an element that is a collection. + + + + + + property used to match objects in collection + + + + + if Reader is positioned at an element that is a collection, reads the collection items. + + + property used to match objects in collection + + + + + States whether the list specified by toRead should not be cleared before reading + + + + Matches the instance of the element by an attribute value and then deserializes its properties. + If the instance is not found in existingInstancesToMatch, + new instance of type instanceType will be created and added to existingInstancesToMatch list. + + + + + + + the list with existing instances + index of the element if found in existingInstanceToMatch + + + + Reads properties of an object and subobject the reader is currently + positioned on. + + Xml reader instance, positioned on the element to read. + object instance to be processed + + + + Reads properties of an object and subobject the reader is currently + positioned on. + + Xml reader instance, positioned on the element to read. + parent object instance, null if there is no parent object information + object instance to be processed + + + + Override to provide alternative deserialization of objects. + + + + value indicating whether the object should be processed any further by serializer + + + + Deserializes a specified property of an object + + Xml reader, positioned on the element corresponding to the property to deserialize + Property descriptor of the property to deserialize + Object that owns the property to deserialize + + + + Override to provide custom processing of collection being deserialized + + + + + + True if the list does not require further processing by the deserializer, False to use the default deserialization + + + + Serializes the given object using the specified XmlWriter. + + + + + + + Provides logic to determine whether property value should be serialized. + + + ShouldSerialize value resolution is as follows: + + 1. ComponentSerializationInfo.SerializeDefaultValues + 2. overwriteMetadata contains attribute DesignerSerializationVisibilityAttribute.Content + 3. property.ShouldSerialize + + + + property to serialize + collection of extra serialization attributes for the property, corresponding to ComponentSerializationInfo + value indicating whether property value should be serialized + + + + Gets or sets value indicating whether the serializer will search all domain assemblies for a specified type + (by FullName) or will search only assemblies related to telerik + + + + + Utility class for Design - Time VisualStudio.NET project management. + + + + + Represents a property setting. Each property of Telerik controls can be + serialized and deserialized through an instance of this class. The + XMLPropertySetting instance describes the affected control, its property, and + the current value. XmlPropertySetting is very similar to CSS style properties. + + + + + Deserializes the property given as a string. For example, + Telerik.WinControls.VisualElement.ForeColor. + + + + + + + Deserializes the property given as a string. For example, + Telerik.WinControls.VisualElement.ForeColor. + + + + + + + Serializes the given dependency property with the given value. + + + + + + + + Deserializes the given dependency property with the given value. + + + + + + + + Retrieves a string representation of the class. + + + + + + Retrieves the name of the property. + + + + + + Retrieves the deserialized property. + + + + + + Gets or sets a string value indicating the property. + For example, Telerik.WinControls.VisualElement.ForeColor. + + + + + Gets or sets an object value indicating the value of the property. For example, + the value of Telerik.WinControls.VisualElement.ForeColor property + could be "navy" or "128, 0, 255, 63". + + + Here is how XmlPropertySetting determines whether to serialize Value or ValueString property when used in + ThemeComponent with CodeDom serialization. + + If the property belongs to an object from System, Telerik.WinControl or Telerik.WinCotnrols.UI assembly + then Value will be serialized (the actual object). For values that are defined in other assemblies ValueString + will be serialized. Tthis is Value, serialized as string using the TypeConverter specified by the corresponing RadProperty. + This is important for late-binding for types declared in different assemblies: egg. Docking + Otherwise a problem will occur when adding a ThemeComponent on the Form in a project which does not + reference Docking or Grid, etc, or custom controls assembly. + + For xml serializtion, property serialize always as string using the TypeConverter specified by the corresponing RadProperty. + + + + + Gets or sets the value serialized to string using the corresponding property TypeConverter. Generally used in rear cases by CodeDom + Serializer, if theme is serializaed to CodeDom + + + + + Represents + + + + + Represents a class selector that can be serialized and deserialized. + Telerik class selectors are very similar to CSS class selectors. + + + + + Initializes a new instance of the XmlClassSelector class. + + + + + Initializes a new instance of the XmlClassSelector class using an element + given as a string. + + + + + + Retrieves the string representation of the class. + + + + + + Retrieves a boolean value indicating whether this and the argument are equal. + + + + + + + Serves as a hash function for the XmlClassSelector type. + + + + + + Gets or sets a string value indicating the class. + + + + + Represents a serializable correspodence to the ComplexCondtion class. + + + + + Represents a serializable condition. + + + + + Build the expression string. + + + + + + Deserializes the condition. + + + + + + Deserializes the properties for a given condition. + + + + + + Creates a new instance of the Condition class. + + + + + + Compares two XmlComplexCondtion(s) for equality. + + + + + + + Retrieves a hash code for the current instance. + + + + + + Gets or sets a value indicating the first condition. + + + + + Gets or sets a value indicating the binary operator for the condition. + + + + + Gets or sets a value indicating the second condition. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents a group of property settings. + + + + + Retrieves the string representation of the instance. + + + + + + Determines whether the BasedOn property should be serialized. + + + + + + Gets or sets the collection of properties. + + + + + Gets or sets the collection of selectors. + + + + + Retrieve the name of the group. + + + + + Gets or sets value indicating the key of a repository item which this group is based on. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + + + + + + Represents a base class for the XML serialization converters. + + + + + + + + + + + + + + Gets or sets value indicating the key of the group uised to identfy the group when referenced + by other groups when basedOn is specified. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of . + + + + + + + Initializes a new instance of based on another . + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Represents a serializable correspondence to the SimpleCondtion class. + + + + + Compares two instances for equality. + + + + + + + Gets or sets a value indicating the UnaryOperator used in the condition. + + + + + Gets or sets the XML property setting for the instance. + + + + + Gets value indicating the location of the theme file that the XmlStyleSheet has been loaded from. + + + + + Represents a registration for the Style Builder. The class is responsible + for the serialization and deserialization of a group of telerik controls. + + + + + Initializes a new instance of the XmlStyleBuilderRegistration class. + + + + + Initializes a new instance of the XmlStyleBuilderRegistration class + from xml style sheet, control type, and element type. + + + + + + + + Retrieves the style builder registration. + + + + + + Gets or sets a string value indicating the builder type. + + + + + Gets or sets a value indicating the xml builder data. + + + + + Represents a theme for a telerik control. Themes can be serialized and + deserialized, thus saving and loading the theme for a given control. + XmlTheme implements IXmlSerializable which provides custom formatting for + XML serialization and deserialization. + + Removed the Serializable attribute since many of the classes used in this class are also not serializable. + This causes the deserialization of the theme to fail when requested in the Visual Studio designer from the + theme components context menu. + [Serializable] + + + + Initializes a new instance of the XmlTheme class. + + + + + Initializes a new instance of the XmlTheme class from XmlStyleSheet, + control type, and element type. + + + + + + + + Loads a theme from a System.IO.Stream instance. + + + + + + + Load a XML theme from a TextReader. + + + + + + + Loads a theme from a XML reader. + + + + + + + Saves the theme to a XMLWriter. + + + + + + Retrieves the serialization string of the given type. + + + + + + + Deserializes the provided deserialization string. + + + + + + + Get the StyleRepository associated with this theme. + + StyleReposity contains named lists of PropertySettings, reffered by Key property, that can be inherited by the PropertySettingGroups of this theme. + This is done by associating BsedOn property of the property setting group with PropertySettings list key. + Since each theme can have only one repository, when different XmlTheme are registered with repositories for the same theme + the repositories are merged. If a PropertySettings list with the same Key is defined in several XmlTheme repository instances, the last laoded one overrides + any existing list. + + + + + + Gets value indicating whether this XmlTheme defines StyleRepository + + + + + Gets or sets a string value indicating the theme name. + + + + + Gets or sets the Builder Registration for the theme. Each builder registration + corresponds to a theme for single telerik control. + + + + + Gets or sets value corresponding to the VisualState of the item that the selector targets + + + + + Class used by RadThemeManager to recognize classes that load themes from resources in a class library + + + + + This method is used internally. + + + + + Gets the ThemeName of the theme component + + + + + this class is used internally. + + + + + Combines ThemeRoleName with state names using "." as delimiter and sets the result to AttachedElement.Class + + + + + + + Combines state names, using stateDelimiter Character. + + + Egg. combining "Selected" and "MouseOver" gives "Selected.MouseOver"; + combining "" and "MouseOver" gives "MouseOver" + + + + + + + + Represents event data for the + + + + + Represents the method that will handle a ThemeChanged event. + + + Initializes the event sender. + + + Initializes the %event argument:ThemeChangedEventArgs%. + + + + + A Class that represents storage for themes in an application that contains + RadControls. + + + + A theme consists of one or more + StyleSheet objects, and one or more + StyleSheetRelation objects. + + + The style sheet object defines the appearance + and/or certain aspects of behavior of one RadControl or + RadItem. + + StyleSheetRelation objects contain data that maps a control + and a certain StyleSheet. + Theme.ThemeName is used by RadControl to + automatically query ThemeResolutionService, upon + Initialize and retrieve its StyleSheet. Use the + API of this class to register, un-register, query themes storage for specific + themes by attributes like Name, certain relations, etc. + + + + + Returns a previously loaded font by given font name. + + The name of font. + The FontFamily or null if font with given name is not loaded. + + + + Call to subscribe for theme change event, for the specified control theme class name. Note the event may be fired from another thread + + + + + + Call to unsubscribe for theme change event. + + + + + + Gets a list of all registered themes. + + + + + + Gets any themes registered for a specific control by control type name or control name. + + + + + + + Get previously registered theme by theme name. + + + + + + + Applies the specified ThemeName to all RadControls that are children of the specified Control and its child Controls + + + + + + + Loads a theme package, stored in the provided file. + + + + + + + Loads a theme package stored in the provided file. + + + True to throw an exception if it occurs, false otherwise. + + + + + Loads a theme package, stored in the provided embedded resource. + The calling assembly is used to read the manifest resource stream. + + + + + + + Loads a theme package from an embedded resource in the specified assembly. + + + + + Loads a theme package stored in the provided embedded resource. + + + True to throw an exception if it occurs, false otherwise. + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + + Registers theme from a file or resource that contains a XML-serialized Theme object. + The Visual Style Builder application for example is capable of designing and serializing + themes. Theme files generally contain Theme with one or several style sheets each assigned a + registration that defines which RadControl and/or RadElment the style sheet applies. + + + + + + + Suspends the ThemeChange event. This method is used internally. + + + + + Resumes the ThemeChange event. This method is used internally. + + + + + Resumes the ThemeChange event. This method is used internally. + + Determines whether to fire the ThemeChanged event. + + + + Creates and registers an empty Theme if one is not already registered. + + + + + + + Clears all stylesheets registered previously with the themeName specified. + + + + + + Gets all StyleSheets registered under a theme name. + + + + + + + Registers a StyleSheet found in styleBuilderRegistration using also the registration details specified under the theme name specified. + + + + + + + Registers a StyleBuilder for specific type of controls and specific type of elements under the name given. + + + + + + + + + Removes an instance of the class + from the dictionaries with registered style builders. + + The instance to remove. + + + + Gets or sets value indicating the theme name that will be used by all controls in the application. + + + If the value of this property is null or empty each control will be assigned a theme, corresponding on the + property of the control. Otherwise the ThemeName property will be disregarded. + If a specific control in the application has no theme registered with the name specified by ApplicationThemeName, it will be + assigned its ControlDefault theme name. + + + + + Determines whether animations are allowed across entire application. + + + + + "ControlDefault" theme name + + + + + Represents a property settings collection. Property settings are very + similar to CSS style properties. + + + + + Gets or sets the StyleBuilder instance. + + + + + Gets the name of the theme for which StyleBuilder is required. + + + + + + A collection that stores objects. + + + + + + + Initializes a new instance of the . + + + + + + + Initializes a new instance of the based on another . + + + + + A from which the contents are copied + + + + + + Initializes a new instance of containing any array of objects. + + + + + A array of objects with which to intialize the collection + + + + + Adds a with the specified value to the + . + + The to add. + + The index at which the new element was inserted. + + + + + Copies the elements of an array to the end of the . + + + An array of type containing the objects to add to the collection. + + + None. + + + + + Copies the elements of an IList of RadElements to the end of the . + + + An List of type containing the objects to add to the collection. + + + None. + + + + + + Adds the contents of another to the end of the collection. + + + + A containing the objects to add to the collection. + + + None. + + + + + Gets a value indicating whether the + contains the specified . + + The to locate. + + if the is contained in the collection; + otherwise, . + + + + + Copies the values to a one-dimensional instance at the + specified index. + + The one-dimensional that is the destination of the values copied from . + The index in where copying begins. + + None. + + is multidimensional. -or- The number of elements in the is greater than the available space between and the end of . + is . + is less than 's lowbound. + + + + Returns the index of a in + the . + + The to locate. + + The index of the of in the + , if found; otherwise, -1. + + + + + Inserts a into the at the specified index. + + The zero-based index where should be inserted. + The to insert. + None. + + + + Returns an enumerator that can iterate through + the . + + None. + + + + Removes a specific from the + . + + The to remove from the . + None. + is not found in the Collection. + + + + Sorts the elements in the entire using the IComparable implementation of each element. + + + + + Sorts the elements in the entire using the specified comparer. + + The IComparer implementation to use when comparing elements. + + + + Sorts the elements in a range of elements in using the specified comparer. + + The zero-based starting index of the range to sort. + The length of the range to sort. + The IComparer implementation to use when comparing elements. + + + + Moves the element at position a given position to a new position + + The zero-based index of the element to move + The zero-based index of the position where the element is to be placed + + + + Represents the entry at the specified index of the . + + The zero-based index of the entry to locate in the collection. + + The entry at the specified index of the collection. + + is outside the valid range of indexes for the collection. + + + + Provides XmlSerialization parsing for ColorBlend extention and + calculates color-blending values for color values of PropertySetting and AnimatedPropertySettings. + + + + + + + IValueProvider GetValue implementation + + + + + + Gets the original Color value + + + + + Gets value corresponding to the name of the ThemeParameter used for color blending calculations + + + + + Instances of this type are used by to provide information used to control + XML of properties and sub-objets. + + + + + Gets a collection of attributes for properties that would override the original designer serialization + metadata for these properties + + + + + Gets or sets value indicating whether the serializer will use the serialization visibility attributes + of the properties of the serialized objects or only those found in + + + + + Gets or sets value indincating whether the serializer will force serialization of properties, disregarding + the values of the DefaultValue attribute or ShouldSerialize method + + + + + Attribute for telerik theme serialization. + + + + + Base class for all block transformations. + + + + + Defines the basic operations of the cryptographic or compression transformations. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets transformation header (if required). + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Releases the resources used by the current instance of the ZipArchive class. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Validates parameters of the input buffer. + + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Indicates whether buffer block size should be validated. Should be true for the TransformBlock and false for the TransformFinalBlock. + Indicates whether count can be zero. + + + + Validates parameters of the transform operation. + + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + Indicates whether input count can be zero. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets transformation header (if required). + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Gets or sets value which indicates whether the transformation uses + input buffer of the fixed size. + + + + + Implements Adler-32 checksum algorithm. + + + + + Interface which must be implemented by all implementations of the checksum algorithm. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Base for modulo arithmetic (largest prime smaller than 65536). + + + + + Number of iterations we can safely do before applying the modulo. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Implements CRC-32 checksum algorithm. + + + + + Calculate checksum for the specified region of the input byte array. + + Checksum to update. + The input for which to compute the checksum. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + Updated checksum. + + + + Specifies values that indicate compression method. + + + + + The file is stored (no compression). + + + + + The file is Deflated. + + + + + The file is compressed using LZMA algorithm. + + + + + Represents stream which allows read/write compressed information from/to given input stream. + + + + + Operational stream. Base class for cryptographic and compression streams. + + + + + Initializes a new instance of the OperationStream class. + + The base input/output stream. + Stream operational mode. + Specified mode is not allowed for the given stream. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Clears all buffers for this stream and causes any buffered data to be written to the underlying device. + + + + + Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + An array of bytes. When this method returns, the buffer contains the specified byte array with the + values between offset and (offset + count - 1) replaced by the bytes read from the current source. + The zero-based byte offset in buffer at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many + bytes are not currently available, or zero (0) if the end of the stream has been reached. + The associated with + current object does not match the underlying stream. + For example, this exception is thrown when using with an underlying stream that is write only. + The parameter is less than zero.-or- The parameter is less than zero. + Thesum of the and parameters is longer than the length of the buffer. + + + + Sets the position within the current stream. + + A byte offset relative to the origin parameter. + A value of type SeekOrigin indicating the reference point used to obtain the new position. + The new position within the current stream. + + + + Sets the length of the current stream. + + The desired length of the current stream in bytes. + + + + Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + An array of bytes. This method copies count bytes from buffer to the current stream. + The zero-based byte offset in buffer at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + + + + Validate read/write operation parameters. + + Operation buffer. + Offset. + Count. + Indicates whether count can be zero. + + + Updates the underlying data source or repository with the current state of the buffer, then clears the buffer. + The current stream is not writable.-or- The final block has already been transformed. + + + + Ensure that current stream is not disposed. + + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Initialize internal buffers. + + + + + Initialize transformation. + + + + + Read transformation header. + + + + + Write transformation header. + + + + + Gets a value indicating whether the current stream supports reading. + + + + + Gets a value indicating whether the current stream supports seeking. + + + + + Gets a value indicating whether the current stream supports writing. + + + + Gets a value which indicates whether the final buffer block has been written/read to/from the underlying stream. + true if the final block has been flushed or end of underlying stream is reached; otherwise, false. + + + + Gets the length in bytes of the stream. + + + + + Gets or sets the position within the current stream. + + + + + Gets value which specify total plain bytes count (not-compressed and not-encrypted). + + + + + Gets value which specify total transformed bytes count (compressed or encrypted). + + + + + Gets input stream. + + + + + Gets stream mode. + + + + + Gets or sets value which indicates whether this stream is disposed already. + + + + + Gets or sets block transformation is used for read/write operations. + + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression settings. + Specified mode is not allowed for the given stream. + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression settings. + Indicates whether the CRC32 (true) or Adler32 (false) checksum algorithm will be used. + Encryption settings. + Specified mode is not allowed for the given stream. + + + + Initializes a new instance of the CompressedStream class. + + The base input/output stream. + Stream operational mode. + Compression algorithm. + Checksum algorithm. + Specified mode is not allowed for the given stream. + + + + Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. + + An array of bytes. When this method returns, the buffer contains the specified byte array with the + values between offset and (offset + count - 1) replaced by the bytes read from the current source. + The zero-based byte offset in buffer at which to begin storing the data read from the current stream. + The maximum number of bytes to be read from the current stream. + The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many + bytes are not currently available, or zero (0) if the end of the stream has been reached. + The associated with + current object does not match the underlying stream. + For example, this exception is thrown when using with an underlying stream that is write only. + The parameter is less than zero.-or- The parameter is less than zero. + Thesum of the and parameters is longer than the length of the buffer. + + + + Sets the length of the current stream. + + The desired length of the current stream in bytes. + + + + Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. + + An array of bytes. This method copies count bytes from buffer to the current stream. + The zero-based byte offset in buffer at which to begin copying bytes to the current stream. + The number of bytes to be written to the current stream. + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Initialize compressed stream. + + The base input/output stream. + Compression algorithm. + Checksum algorithm. + + + + Event occurs when calculation of the checksum for this stream is completed. + + + + + Gets checksum calculated for this stream starting from + the first read/write operation and up to the Flush call. + + + + + Gets the compressed size of the stream. + + + + + Gets or sets the checksum algorithm will be used during compression-decompression. + + + + + Base class for the compression settings. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + Called when property value is changed. + + Property name. + + + + Occurs when a property value changes. + + + + + Gets or sets compression method. + + + + + Represents base class for all compression and decompression functionality. + + + + + Initializes a new instance of the CompressionTransformBase class. + + + + + Transforms the specified region of the input byte array and copies + the resulting transform to the specified region of the output byte array. + + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Transforms current input buffer. + + The final block flag. + True when output still available. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Specifies values for header type of the compressed stream. + + + + + Compressed stream does not contain a header. + + + + + Compressed stream is formatted in accordance with RFC 1950 + (ZLIB Compressed Data Format Specification version 3.3). + + + + + The compression level to be used for compression of data. + + + + + The data will be simply stored, + no compression should be performed. + + + + + Same as NoCompression. + + + + + The fastest but least effective compression. + + + + + A synonym for Fastest. + + + + + A little slower, but better, than level 1. + + + + + A little slower, but better, than level 2. + + + + + A little slower, but better, than level 3. + + + + + A little slower than level 4, but with better compression. + + + + + The default compression level with + a good balance of speed and compression efficiency. + + + + + A synonym for Optimal. + + + + + Pretty good compression. + + + + + Better compression than Level7. + + + + + The best compression, where best means + greatest reduction in size of the input data. + This is also the slowest compression. + + + + + A synonym for Best compression level. + + + + + Class which implements Deflate compression algorithm. + + + + + Interface which must be implemented by all implementations of the compression algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Represents a state of current block. + + + + + Block is not completed, need more input or more output. + + + + + Block flush performed. + + + + + Finish started, need only more output at next deflate. + + + + + Finish done, accept no more input or output. + + + + + Compressor which implements Deflate compression. + + + + + Represents base class for Deflate compression and decompression functionality. + + + + + Initializes a new instance of the DeflateTransformBase class. + + Deflate settings. + + + + The default number of window bits for the Deflate algorithm. + 15 is the maximum number of window bits for the Deflate algorithm (32K window). + + + + + Initializes a new instance of the DeflateCompressor class. + + Deflate settings. + + + + Creates RFC 1950 (ZLIB Compressed Data Format Specification version 3.3) header + to be written into the output stream. + + + + + Restore the heap property by moving down the tree starting at specified node, + exchanging a node with the smallest of its two sons if necessary, stopping + when the heap property is re-established (each father smaller than its two sons). + + The tree. + Index of node. + + + + Transforms current input buffer. + + The final block flag. + True when still output available. + + + + Scan a literal or distance tree to determine the frequencies of the codes + in the bit length tree. + + The tree. + Max code. + + + + Construct the Huffman tree for the bit lengths. + + The index of the last bit length code to send. + + + + Send the header for a block using dynamic Huffman trees: the counts, + the lengths of the bit length codes, the literal tree and the distance tree. + + Length of literal codes. + Length of distance codes. + Length of bit length codes. + + + + Send a literal or distance tree in compressed form, + using the codes in bit length tree. + + The tree. + Max code. + + + + Output a block of bytes on the stream. + + Buffer. + Start index. + Length. + + + + Save the match info and tally the frequency counts. + + Distance. + Length or unmatched char. + Return true if the current block must be flushed. + + + + Send the block data compressed using the given Huffman trees. + + Literal tree. + Distance tree. + + + + Flush the bit buffer and align the output on a byte boundary. + + + + + Copy a stored block, storing first the length + and its one's complement if requested. + + Buffer. + Length. + Should send the header. + + + + Send a stored block. + + Offset in window. + Length. + The flag of last block. + + + + Determine the best encoding for the current block: dynamic trees, static + trees or store, and output the encoded block. + + Offset in window. + Length. + The flag of last block. + + + + Fill the window if necessary. + + + + + Compress as much as possible from the input stream, return the current + block state. + This function does not perform lazy evaluation of matches and inserts + new strings in the dictionary only for unmatched strings or for short + matches. It is used only for the fast compression options. + + Flush flag. + Returns the current block state. + + + + Copy without compression as much as possible from the input buffer. + + Flush flag. + Returns the current block state. + + + + Same as above, but achieves better compression. We use a lazy + evaluation for matches: a match is finally adopted only if there is + no better match at the next window position. + + Flush flag. + Returns the current block state. + + + + Initialize the tree data structures. + + + + + Sets configuration parameters by the compression level. + + Compression level. + + + + Flush as much pending output as possible. + All deflate output goes through this function. + + + + + Read a new buffer from the current input stream, update + total number of bytes read. All deflate input goes through + this function. + + Buffer. + Start position in buffer. + Size. + + + + + Represents configuration of deflate algorithm. + + + + + Returns instance of Config class by the compression level. + + Compression level. + Instance of Config class. + + + + Use a faster search when the previous match is longer + than this reduce lazy search above this match length. + + + + + Attempt to find a better match only when the current match is + strictly smaller than this value. This mechanism is used only for + compression levels >= 4. For levels 1,2,3: MaxLazy is actually + MaxInsertLength (See DeflateFast). + Do not perform lazy search above this match length. + + + + + Quit search above this match length. + + + + + To speed up deflation, hash chains are never searched beyond this length. + A higher limit improves compression ratio but degrades the speed. + + + + + Represents constants for deflate compression. + + + + + Z-lib header: the deflate compression method. + + + + + Bit length codes must not exceed MaxBitLengthBits bits. + + + + + Repeat previous bit length 3-6 times (2 bits of repeat count). + + + + + Repeat a zero length 3-10 times (3 bits of repeat count). + + + + + Repeat a zero length 11-138 times (7 bits of repeat count). + + + + + Decompressor which implements Deflate compression. + + + + + Initializes a new instance of the DeflateDecompressor class. + + Deflate settings. + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + + Transforms current input buffer. + + The final block flag. + True when still output available. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Represents a state of decompressor process. + + + + + Represents a type of block in deflated data. + + + + + Compression settings of the Deflate method. + + + + + Initializes a new instance of the DeflateSettings class. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + The compression level of deflate algorithm to be used for deflating by a CompressedStream. + + + + + Gets or sets compression stream header type. + + + + + Inflates data using a lookup table combined with a HuffmanTree. + + + + + Initializes static members of the InflateTree class. + + + + + Initializes a new instance of the InflateTree class. + + + + + Tries to get enough bits from input and try to decode them. + + Input buffer. + Next symbol or -1 when there is no enough bits in input. + + + + Calculate the huffman codes according to RFC 1951. + + Huffman codes. + + + + Represents input buffer for inflating data using Huffman coding. + + + + + Initializes a new instance of the InputBitsBuffer class. + + + + + Checks available bits in the bit buffer. + + Count of bits. + True if available. + + + + Gets available bits from buffer. + + Count of required bits. + Bits data. + + + + Read bytes to output buffer. + + Output buffer. + Offset. + Length. + Count of bytes which are read. + + + + Set current working buffer. + + Bytes buffer. + Offset. + Length. + + + + Skips bits in bit buffer. + + Count of bits to skip. + + + + Skips to the next byte boundary. + + + + + Gets 16 or more bits into bit buffer. + + Bit buffer. + + + + Available bits in bit buffer. + + + + + Available bytes. + + + + + Is input required. + + + + + Represents output window for inflating data using Huffman coding. + + + + + Initializes a new instance of the OutputWindow class. + + + + + Adds a byte to output window. + + Byte. + + + + Copies bytes within output window. + Moves backwards distance bytes and copy length bytes. + + Length. + Distance. + + + + Read bytes to output buffer. + + Output buffer. + Offset. + Length. + Count of bytes which are read. + + + + Reads bytes from input. + + InputBitsBuffer. + Length. + Count of read bytes. + + + + Gets available bytes count. + + + + + Gets free bytes count. + + + + + Represents Huffman static tree. + + + + + Initializes static members of the StaticTree class. + + + + + Initializes a new instance of the StaticTree class. + + + + + Static tree. + + + + + Extra bits for each code. + + + + + Base index for extra bits. + + + + + Max number of elements in the tree. + + + + + Max bit length for the codes. + + + + + Deflates data using Huffman coding. + + + + + Reverse the first specified bits of a code, + using straightforward code (a faster method would use a table). + + Value. + The length of bits to reverse. + Result of reverse. + + + + Map from a distance to a distance code. + + + No side effects. DistanceCode[256] and DistanceCode[257] are never used. + + + + + Construct one Huffman tree and assigns the code bit strings and lengths. + Update the total bit length for the current block. + + Deflate compressor. + + + + Generate the codes for a given tree and bit counts (which need not be optimal). + + The tree. + Max code. + Bit length count. + + + + Compute the optimal bit lengths for a tree and update the total bit length for the current block. + + Deflate compressor. + + + + The Optimization Data for LZMA match finder. + + + + + Represents the LZMA range encoder. + + + + + Class which implements Deflate compression algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Compressor which implements LZMA compression. + + + + + Represents base class for LZMA compression and decompression functionality. + + + + + Initializes a new instance of the class. + + Settings. + + + + Initializes a new instance of the class. + + Settings. + + + + Creates transformation header to be written into the output stream. + + + + + Transforms current input buffer. + + The final block flag. + True when output still available. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources + (true) on only unmanaged resources (false) should be released. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Decompressor which implements LZMA decompression algorithm. + + + + + Initializes a new instance of the class. + + Settings. + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Represents a state of decompressor process. + + + + + Specifies values for a type of the match finder for LZMA compression. + + + + + The match finder uses two bytes for the hash. + + + + + The match finder uses four bytes for the hash. + + + + + Compression settings of the Deflate method. + + + + + Initializes a new instance of the class. + + + + + Copy settings from the given base settings. + + Base settings to copy from. + + + + Prepare settings for usage in zip archive entries. + + Central directory header. + + + + Gets or sets dictionary size [0 - 27]. + Default value is 23 (8MB). + + + + + Gets or sets number of position state bits for LZMA [0 - 4]. + Default value is 2. + + + + + Gets or sets number of literal context bits for LZMA [0 - 8]. + Default value is 3. + + + + + Gets or sets number of literal position bits for LZMA [0 - 4]. + Default value is 3. + + + + + Gets or sets number of fast bytes [5 - 273]. + Default value is 32. + + + + + Gets or sets a type of the match finder. + + + + + Gets or sets length of the stream for compressing. + Used for single compressed streams only (not for ZIP archives). + Allows to avoid using the end of stream marker for compressed stream. + If it is set to -1, then the marker will be used. + + + + + Gets or sets length of the stream for decompressing. + + + + + Gets or sets a value which indicates whether + the compression stream should use zip header type. + + + + + Represents LZMA state for compressing and for decompressing. + + + + + Class which implements Store (no compression) algorithm. + + + + + Creates a compressor object. + + A compressor object. + + + + Creates a decompressor object. + + A decompressor object. + + + + Initialize compression algorithm using given compression settings. + + Compression settings. + + + + Compressor which implements Store compression. + + + + + Base class for the Store (no compression) transformation. + + + + + Initializes a new instance of the StoreTransformBase class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Decompressor which implements Store compression. + + + + + Compression settings of the Store method. + + + + + Initializes a new instance of the StoreSettings class. + + + + + Platform independent manager. + + + + + Interface which provides platform-specific operations. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + + + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + Encoding. + true if encoding is allowed in the ZIP file. + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Cryptographic stream. Allows encrypt or decrypt information from the given input stream. + + + + + Initializes a new instance of the CryptoStream class. + + Input stream. + Stream operational mode. + Crypto provider. + Specified mode is not allowed for the given stream. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Releases the unmanaged resources used by the Stream and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Crypto provider which implements traditional PKWARE encryption. + + + + + Interface which provides method to encrypt/decrypt data in the ZIP archive. + + + + + Creates an decryptor object. + + A decryptor object. + + + + Creates an encryptor object. + + An encryptor object. + + + + Initialize crypto provider using given encryption settings. + + Encryption settings. + + + + Creates an decryptor object. + + A decryptor object. + + + + Creates an encryptor object. + + + + + + Initialize crypto provider using given encryption settings. + + Encryption settings. + + + + Base class for the transformations which implements traditional PKWARE encryption/decryption. + + + + + Initializes a new instance of the DefaultCryptoTransformBase class. + + + + + Creates transformation header to be written into the output stream. + + + + + Initialize reading of the transformation header. + + + + + Process transformation header has been read. + + + + + Releases the unmanaged resources used by the transform and optionally releases the managed resources. + + Value which indicates whether both managed and unmanaged resources (true) on only unmanaged resources (false) should be released. + + + + Update encryption keys. + + Byte. + + + Gets a value indicating whether the current transform can be reused. + true if the current transform can be reused; otherwise, false. + + + Gets a value indicating whether multiple blocks can be transformed. + true if multiple blocks can be transformed; otherwise, false. + + + Gets the input block size. + The size of the input data blocks in bytes. + + + Gets the output block size. + The size of the output data blocks in bytes. + + + + Gets encoding byte. + + + + + Crypto transformation which implements traditional PKWARE decryption. + + + + + Initializes a new instance of the DefaultDecryptor class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + + Encryption settings for the default cryptographic provider (traditional PKWARE encryption. + + + + + Base class for the encryption settings. + + + + + Called when property value is changed. + + Property name. + + + + Occurs when a property value changes. + + + + + Gets name of the algorithm will be used for encryption/decryption. + + + + + Initializes a new instance of the DefaultEncryptionSettings class. + + + + + Gets or sets password will be used for encryption/decryption. + + + + + Gets or sets last modification file date and time. + + + + + Crypto transformation which implements traditional PKWARE encryption. + + + + + Initializes a new instance of the DefaultEncryptor class. + + + + Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array. + The number of bytes written. + The input for which to compute the transform. + The offset into the input byte array from which to begin using data. + The number of bytes in the input byte array to use as data. + The output to which to write the transform. + The offset into the output byte array from which to begin writing data. + + + Transforms the specified region of the specified byte array. + The computed transform. + The input for which to compute the transform. + The offset into the byte array from which to begin using data. + The number of bytes in the byte array to use as data. + + + The exception that is thrown when a data stream is in an invalid format. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with a specified error message. + The error message that explains the reason for the exception. + + + Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. + The error message that explains the reason for the exception. + The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. + + + + Common interface for the data structures defined in the ZIP File Format Specification. + + + + + Read data from the binary reader. + + Binary reader to read data from. + true if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents the compression types. + + + + + This is the default compression type which uses the deflate algorithm. + + + + + This compression type uses the LZMA algorithm. + + + + + Represents the compression methods. + + + + + This is the default compression method. + + + + + This is the no-compression method. + + + + + This is the fastest compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is a custom compression method. + + + + + This is the the best compression method. + + + + + This is the the best compression method. + + + + + Represents a stream that can read from a compressed stream. + + + + + Initializes a new instance of the ZipInputStream class. + + + The stream that will be decompressed. + + + + + Reads a byte from the stream and advances the position within the stream + by one byte, or returns -1 if at the end of the stream. + The unsigned byte cast to an 32-bit integer, or -1 if at the end of the stream. + + + + + The stream that is decompressed. + + + + + Gets the uncompressed size of the stream. + + + + + Represents a stream that can write into a compressed stream. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + /// + The compression method. + + + + + Initializes a new instance of the ZipOutputStream class. + + + The stream that will be compressed. + + /// + The compression level. + + + + + Writes a byte to the current position in the stream and advances the + position within the stream by one byte. + + The byte to write to the stream. + + + + Create DeflateSettings for specified compression level. + + Compression level. + DeflateSettings. + + + + The stream that is decompressed. + + + + + Gets the uncompressed size of the stream. + + + + + Represents the ZipPackage class. + + + + + Represents a package of compressed files in the zip archive format. + + + + + Value that describes the type of action the zip archive can perform on entries. + + + + + Binary reader is used to read from working stream. + + + + + Binary writer is used to write to working stream. + + + + + Track whether Dispose has been called. + + + + + Encoding of the entry name. + + + + + Original archive stream. If this stream doesn't support seeking then + temporary working stream will be created. + + + + + Working archive stream. If original stream doesn't support seeking then + temporary working stream will be created. + + + + + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + + + + + Indicates whether the central directory have been read. + + + + + ZIP Archive End of Central Directory. + + + + + ZIP64 End of Central Directory Locator. + + + + + ZIP64 End of Central Directory Record. + + + + + ZIP entries. + + + + + Initializes a new instance of the ZipArchive class from the specified stream. + + The stream that contains the archive to be read. + + + + Initializes a new instance of the ZipArchive class. + + The stream that contains the archive to be read. + One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries. + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter + only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Initializes a new instance of the ZipArchive class. + + The stream that contains the archive to be read. + One of the enumeration values that indicates whether the zip archive is used to read, create, or update entries. + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter + only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + Compression settings. + Encryption settings. + + + + Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. + + + + + Creates an empty entry that has the specified path and entry name in the zip archive. + + A path, relative to the root of the archive, that specifies the name of the entry to be created. + An empty entry in the zip archive. + The entry name is empty. + The entry name is null. + The zip archive does not support writing. + The zip archive has been disposed. + + + + Creates an empty entry that has the specified path and entry name in the zip archive. + + A path, relative to the root of the archive, that specifies the name of the entry to be created. + Compression settings. + An empty entry in the zip archive. + The entry name is empty. + The entry name is null. + The zip archive does not support writing. + The zip archive has been disposed. + + + + Releases the resources used by the current instance of the ZipArchive class. + + + + + Retrieves a wrapper for the specified entry in the zip archive. + + A path, relative to the root of the archive, that identifies the entry to retrieve. + A wrapper for the specified entry in the archive; null if the entry does not exist in the archive. + The entry name is empty. + The entry name is null. + The zip archive does not support reading. + The zip archive has been disposed. + The zip archive is corrupt, and its entries cannot be retrieved. + + + + Release the unmanaged resources used by the current instance of the ZipArchive class. + + True to leave the stream open after the ZipArchive object is disposed; otherwise, false. + + + + Called by the Dispose() and Finalize() methods to release the unmanaged + resources used by the current instance of the ZipArchive class, and optionally + finishes writing the archive and releases the managed resources. + + True to finish writing the archive and release unmanaged and managed resources; + false to release only unmanaged resources. + + + + Dispose streams. + + + + + Writes archive to the original stream. + + + + + Occurs when a property value changes. + + + + + Gets the collection of entries that are currently in the zip archive. + + The zip archive does not support reading. + The zip archive has been disposed. + The zip archive is corrupt, and its entries cannot be retrieved. + + + + Gets entry name encoding. + + + + + Gets a value that describes the type of action the zip archive can perform on entries. + + + + + Gets compression settings. + + + + + Gets encryption settings. + + + + + Gets number of the disk. + + + + + Gets reader for the working stream. + + + + + Gets writer for the working stream. + + + + + Gets start of the central directory. + + + + + Initializes a new instance of the ZipPackage class from the specified stream. + + The stream that contains the archive to be read. + Mode. + + + + This method is used to create a ZipPackage from a stream. + + Stream. + ZipPackage instance. + + + + This method is used to create a ZipPackage with the passed file name. + + File name. + ZipPackage instance. + + + + Checks whether the stream that represents a zip file is actually a zip file. + + Stream. + True if the stream represents a zip file. + + + + Checks whether the file with the passed file name is actually a zip file. + + File name. + True if the file represents a zip file. + + + + Opens zip archive from the Stream. + + Stream. + ZipPackage instance. + + + + This method is used to open a ZipPackage with the passed file name. + + File name. + File access. + ZipPackage instance. + + + + Adds a file with the passed file name in the ZipPackage. + + File name. + + + + Adds a file with the passed file name in the ZipPackage. + + + + + Adds the files from the passed IEnumerable of file names in the ZipPackage. + + + + + Adds the files from the passed IEnumerable of file names in the ZipPackage. + + + + + Adds a file with the passed file name in the ZipPackage and associates it with the passed file name in zip. + + + + + Adds a file with the passed file name in the ZipPackage and associates it with the passed file name in zip. + + + + + Adds a file with the passed file name in the ZipPackage, associates it with the passed file name in zip and sets a date time for the entry. + + + + + Adds a file with the passed file name in the ZipPackage, associates it with the passed file name in zip and sets a date time for the entry. + + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + Compression type. + + + + Adds a stream in the ZipPackage, compresses it with the passed compress method, + associates it with the passed file name in zip and sets a date time for the entry. + + Stream. + File name in zip archive. + Compression level. + Date and time of file. + + + + Adds a stream in the ZipPackage and associates it with the passed file name in zip. + + Stream. + File name in zip archive. + Compression level. + Date and time of file. + Compression type. + + + + Closes the ZipPackage. + + If the parameter is set to true then closes the file. + + + + Gets the index of the entry in the list of entries of the ZipPackage. + + File name in zip archive. + Index of entry or -1 when the entry is not found. + + + + Removes the passed entry from the ZipPackage. + + + + + Gets the file name for the ZipPackage. + + + + + Gets the collection of entries that are currently in the zip archive. + + The zip archive does not support reading. + The zip archive has been disposed. + + + + Represents the ZipPackageEntry class. + + + + + Initializes a new instance of the ZipPackageEntry class. + + ZipArchiveEntry. + + + + Opens the entry from the zip archive. + + The stream that represents the contents of the entry. + + + + Deletes the entry. + + + + + Gets the file attributes for the entry. + + + + + Gets the compressed size for the entry. + + + + + Gets the file name in the ZipPackage for the entry. + + + + + Gets the uncompressed size for the entry. + + + + + Static class which provides access to the platform-specific settings for all + parts of the ZIP library. + + + + + Gets or sets platform manager. + + + + + Operational mode of the cryptographic and compression streams. + + + + + Read operation is allowed. + + + + + Write operation is allowed. + + + + + Represents header of the transformation. + The extra data precedes the transformed data which provides + some additional information about transformation (compression or encryption). + + + + + Initializes a new instance of the TransformationHeader class. + + + + + Gets or sets buffer to store header information. + + + + + Gets or sets number of byte to read. + + + + + Gets initialization data of the header. + + + + + Gets length of the transformation header. + + + + + Gets or sets the flag which indicates + that the compressed size should include the header size. + + + + + Platform manager which can be used with full version of the .NET Framework. + + + + + Initializes a new instance of the DotNetPlatformManager class. + + + + + Creates temporary stream. + + Stream will be used for temporary operations. + + + + Deletes temporary stream. + + Stream to delete. + + + + Gets crypto provider initialized using given encryption settings. + + Encryption settings. + Crypto provider. + Specified crypto algorithm is not supported. + + + + Indicates whether specified encoding is supported for this platform. + + Encoding. + true if encoding is allowed in the ZIP file. + + + + Gets a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets default encoding for this platform. + + + + + Gets a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization. + + + + + Gets or sets type of the temporary stream. The default value is TemporaryStreamType.Memory. + + + + + Type of the temporary stream. + + + + + The temporary stream represents temporary file in the file system. + + It allows manipulations with large archives and minimize memory consumption. + + + + The temporary stream represents data in the memory. + + It is the fastest way of the data manipulation. + + + + Provides static methods for creating, extracting, and opening zip archives. + + + + + Archives a file by compressing it and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + New entry in archive. + + + + Archives a file by compressing it using the specified compression level and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + New entry in archive. + + + + Archives a file by compressing it using the specified compression settings and adding it to the zip archive. + + The zip archive to add the file to. + The path to the file to be archived. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + The name of the entry to create in the zip archive. + Compression settings. + New entry in archive. + + + + Creates a zip archive that contains the files and directories from the specified directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression level, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression level, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that indicates whether to emphasize speed or compression effectiveness when creating the entry. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Creates a zip archive that contains the files and directories from the specified directory, uses the specified compression settings, and optionally includes the base directory. + + The path to the directory to be archived, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The path of the archive to be created, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + Compression settings. + True to include the directory name from sourceDirectoryName at the root of the archive; false to include only the contents of the directory. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + + + + Extracts all the files in the specified zip archive to a directory on the file system. + + The path to the archive that is to be extracted. + The path to the directory in which to place the extracted files, + specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + + + + Extracts all the files in the specified zip archive to a directory on the file system and uses the specified character encoding for entry names. + + The path to the archive that is to be extracted. + The path to the directory in which to place the extracted files, + specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + The encoding to use when reading or writing entry names in this archive. + Specify a value for this parameter only when an encoding is required for interoperability with zip archive + tools and libraries that do not support UTF-8 encoding for entry names. + + + + Extracts all the files in the zip archive to a directory on the file system. + + The zip archive to extract files from. + The path to the directory to place the extracted files in. You can specify either a relative or an absolute path. A relative path is interpreted as relative to the current working directory. + + + + Extracts an entry in the zip archive to a file. + + The zip archive entry to extract a file from. + The path of the file to create from the contents + of the entry. You can specify either a relative or an absolute path. A relative path + is interpreted as relative to the current working directory. + + + + Extracts an entry in the zip archive to a file, and optionally overwrites an existing file that has the same name. + + The zip archive entry to extract a file from. + The path of the file to create from the contents + of the entry. You can specify either a relative or an absolute path. A relative path + is interpreted as relative to the current working directory. + True to overwrite an existing file that has the same name as the destination file; otherwise, false. + + + + Opens a zip archive at the specified path and in the specified mode. + + The path to the archive to open, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that specifies the actions which are allowed on the entries in the opened archive. + The opened zip archive. + + + + Opens a zip archive at the specified path and in the specified mode. + + The path to the archive to open, specified as a relative or absolute path. A relative path is interpreted as relative to the current working directory. + One of the enumeration values that specifies the actions which are allowed on the entries in the opened archive. + The encoding to use when reading or writing entry names in this archive. Specify a value for this parameter only when an encoding is required for interoperability with zip archive tools and libraries that do not support UTF-8 encoding for entry names. + The opened zip archive. + + + + Opens a zip archive for reading at the specified path. + + The path to the archive to open, specified as a relative or absolute path. + A relative path is interpreted as relative to the current working directory. + The opened zip archive. + + + + Indicates whether specified directory is empty or not. + + Directory info. + True if directory is empty; otherwise - false. + + + + This method is used to copy the source stream to the destination stream. + + + + + + + Represents data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Represents base fields of data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets crc-32. + + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Data descriptor header signature. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents Zip64 end of central directory locator described in the + ZIP File Format Specification v6.3.3, #4.3.15. + + + + + Zip64 end of central directory locator signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets number of the disk with the + start of the zip64 end of + central directory. + + + + + Gets or sets relative offset of the zip64 + end of central directory record. + + + + + Gets or sets number of disks. + + + + + Represents Zip64 end of central directory record described in the + ZIP File Format Specification v6.3.3, #4.3.14. + + + + + Zip64 end of central directory record signature. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets size of zip64 end of central + directory record. + + + + + Gets or sets byte which indicates the ZIP specification version + supported by the software used to encode the file. + + + + + Gets or sets byte which indicates the compatibility + of the file attribute information. + + + + + Gets or sets version needed to extract. + + + + + Gets or sets number of this disk. + + + + + Gets or sets number of the disk with the start of the central directory. + + + + + Gets or sets total number of entries in the central directory on this disk. + + + + + Gets or sets total number of entries in the central directory. + + + + + Gets or sets size of the central directory. + + + + + Gets or sets offset of start of central directory with respect to the starting disk number. + + + + + Represents a compressed file within a zip archive. + + + + + Track whether Dispose has been called. + + + + + Initializes a new instance of the ZipArchiveEntry class. + + Zip archive. + Central directory header correspondent to this entry. + + + + Initializes a new instance of the ZipArchiveEntry class. + + Zip archive. + Entry name. + + + + Deletes the entry from the zip archive. + + The entry is already open for reading or writing. + The zip archive for this entry was opened in a mode other than Update. + The zip archive for this entry has been disposed. + + + + Releases the resources used by the current instance of the ZipArchiveEntry class. + + + + + Opens the entry from the zip archive. + + The stream that represents the contents of the entry. + The resulting stream depends on the zip archive mode. + If zip archive mode is then read-only stream without seeking support is returned (). + If zip archive mode is then write-only stream without seeking support is returned (). + If zip archive mode is then read/write stream which supports seeking is returned. + + The entry is already currently open for writing. + -or- + The entry has been deleted from the archive. + -or- + The archive for this entry was opened with the Create mode, and this entry has already been written to. + The entry is either missing from the archive or is corrupt and cannot be read. + -or- + The entry has been compressed by using a compression method that is not supported. + The zip archive for this entry has been disposed. + + + + Checks entry integrity. + + Message will be thrown if entry don't pass integrity check. + True - if entry is OK; false - otherwise. + + + + Writes central directory header. + + + + + Called by the Dispose() and Finalize() methods to release the unmanaged + resources used by the current instance of the ZipArchive class, and optionally + finishes writing the archive and releases the managed resources. + + True to finish writing the archive and release unmanaged and managed resources; + false to release only unmanaged resources. + + + + Occurs when a property value changes. + + + + + The zip archive that the entry belongs to, or null if the entry has been deleted. + + + + + Gets compressed size of the entry in the zip archive. + + + + + Gets or sets external file attributes. + + + + + Gets the relative path of the entry in the zip archive. + + + + + Gets or sets the last time the entry in the zip archive was changed. + + + + + Gets the uncompressed size of the entry in the zip archive. + + + + + Gets the file name of the entry in the zip archive. + + + + + Gets or sets compression method. + + + + + Gets or sets offset of the compressed data. + + + + + Gets disk start number. + + + + + Gets or sets offset of the local header. + + + + + Gets temporary stream which contains uncompressed data for update. + + + + + Specifies values for interacting with zip archive entries. + + + + + Only creating new archive entries is permitted. + + + + + Only reading archive entries is permitted. + + + + + Both read and write operations are permitted for archive entries. + + + + + Provides common internal static methods. + + + + + Copy specified number of bytes from one stream to another. + + Input stream. + Output stream. + Number of bytes to copy. + + + + Converts .NET DateTime structure to the MS-DOS date-time. + + DateTime structure to convert. + Packed date-time. + + + + Gets compression algorithm which corresponds to the given compression settings. + + Compression settings to get algorithm for. + Compression algorithm. + Compression method is not supported. + + + + Gets compression settings for the specified compression method. + + Compression method to get settings for. + Base settings to copy parameters from. + Compression settings. + Compression method is not supported. + + + + Detect whether the given path string ends with directory separator char (i.e. given path represents directory). + + Path string. + True if path string ends with directory separator char; otherwise - false. + + + + Gets value which indicates whether specified compression method is supported. + + Compression method to check. + True - if compression method is supported; false - otherwise. + + + + Converts MS-DOS date-time to the .NET DateTime structure. + + Packed date-time to convert. + DataTime structure. + + + + Read specified number of bytes from the given stream to the buffer. + + Stream to read data from. + Buffer to write data to. + Number of bytes to read. + + + + Seek given stream backward to the data signature. + + Stream to seek. + Signature to find. + true if signature is found, otherwise false. + + + + Represents central directory header record described in the + ZIP File Format Specification v6.3.3, #4.3.12. + + + + + Represents file header base class for + the local file header and central directory header + which are described in the ZIP File Format Specification v6.3.3, #4.3.7 and #4.3.12. + + + + + Represents base fields of data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets crc-32. + + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Copy properties from the given file header to this object. + + File header to copy properties from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Read data from the binary reader. + + Binary reader to read data from. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets version needed to extract. + + + + + Gets or sets general purpose bit flag. + + + + + Gets or sets compression method. + + + + + Gets or sets last modification file date and time. + + + + + Gets or sets file name. + + + + + Gets or sets extra fields data. + + The extra fields data. + + + + Gets or sets list of extra fields. + + + + + Central directory header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets byte which indicates the ZIP specification version + supported by the software used to encode the file. + + + + + Gets or sets byte which indicates the compatibility + of the file attribute information. + + + + + Gets or sets disk number start. + + + + + Gets or sets internal file attributes. + + + + + Gets or sets external file attributes. + + + + + Gets or sets relative offset of local header. + + + + + Gets or sets file comment. + + + + + Represents data descriptor record described in the + ZIP File Format Specification v6.3.3, #4.3.9. + + + + + Data descriptor header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Copy properties from the given file header to this object. + + File header to copy properties from. + + + + Gets or sets compressed size. + + + + + Gets or sets uncompressed size. + + + + + Represents general purpose bit flag for Methods 8 and 9 - Deflating + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 2 Bit 1 + 0 0 Normal (-en) compression option was used. + + + + + Bit 2 Bit 1 + 0 1 Maximum (-exx/-ex) compression option was used. + + + + + Bit 2 Bit 1 + 1 0 Fast (-ef) compression option was used. + + + + + Bit 2 Bit 1 + 1 1 Super Fast (-es) compression option was used. + + + + + Represents end of central directory record described in the + ZIP File Format Specification v6.3.3, #4.3.16. + + + + + End of central directory signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Read data from the binary reader. + + Binary reader to read data from. + true if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Gets or sets number of this disk. + + + + + Gets or sets number of the disk with the start of the central directory. + + + + + Gets or sets total number of entries in the central directory on this disk. + + + + + Gets or sets total number of entries in the central directory. + + + + + Gets or sets size of the central directory. + + + + + Gets or sets offset of start of central directory with respect to the starting disk number. + + + + + Gets or sets .ZIP file comment. + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Gets extra field collection. + + The header info. + IEnumerable of ExtraFieldBase instances. + + + + Gets extra field data. + + Extra field collection. + Extra field data. + + + + Should implement parsing of extra field data. + + Extra field data. + + + + Gets extra field data. + + Byte array of extra field data. + + + + Gets known extra field type. + + + + + Gets extra field type (Header ID). + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets vendor version for this record. + + + + + Gets or sets signature (AE). + + + + + Gets or sets bit length of encryption key. + 1 - 128-bit , 2 - 192-bit , 3 - 256-bit. + + + + + Gets or sets method. + + + + + Gets extra field type (Header ID). + + + + + Represents identifier of the encryption algorithm described in the + ZIP File Format Specification v6.3.3, #7.2.3.2. + + + + + Unknown algorithm. + + + + + DES algorithm. + + + + + RC2 algorithm. + The version needed to extract up to 5.2. + + + + + 3DES 168 bit algorithm. + + + + + 3DES 112 bit algorithm. + + + + + AES 128 bit algorithm. + + + + + AES 192 bit algorithm. + + + + + AES 256 bit algorithm. + + + + + RC2 algorithm. + The version needed to extract 5.2 and higher. + + + + + Blowfish algorithm. + + + + + Twofish algorithm. + + + + + RC4 algorithm. + + + + + Represents extra field type (Header ID) described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Unknown extra field type. + + + + + Zip64 extra field type. + + + + + Ntfs extra field type. + + + + + StrongEncryption extra field type. + + + + + UnixTime extra field type. + + + + + AesEncryption extra field type. + + + + + Represents strong encryption extra field described in the + ZIP File Format Specification v6.3.3, #4.5.12. + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets format definition for this record. + + + + + Gets or sets encryption algorithm identifier. + + + + + Gets or sets bit length of encryption key. + + + + + Gets or sets processing flags. + + + + + Gets extra field type (Header ID). + + + + + Represents base class for extra field described in the + ZIP File Format Specification v6.3.3, #4.5.2. + + + + + Initializes a new instance of the UnknownExtraField class. + + Header Id. + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets extra field type (Header ID). + + + + + Gets or sets extra field data. + + + + + Represents Zip64 Extended Information Extra Field described in the + ZIP File Format Specification v6.3.3, #4.5.3. + + + + + Gets extra field data. + + Byte array of extra field data. + + + + Implements parsing of extra field data. + + Extra field data. + + + + Gets or sets original uncompressed file size. + + + + + Gets or sets size of compressed data. + + + + + Gets or sets offset of local header record. + + + + + Gets or sets number of the disk on which this file starts. + + + + + Gets extra field type (Header ID). + + + + + Represents general purpose bit flag in the + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 0: If set, indicates that the file is encrypted. + + + + + Bit 3: If this bit is set, the fields crc-32, compressed + size and uncompressed size are set to zero in the + local header. The correct values are put in the + data descriptor immediately following the compressed + data. + + + Note: PKZIP version 2.04g for DOS only + recognizes this bit for method 8 compression, newer + versions of PKZIP recognize this bit for any + compression method. + + + + + Bit 4: Reserved for use with method 8, for enhanced + deflating. + + + + + Bit 5: If this bit is set, this indicates that the file is + compressed patched data. + + + Note: Requires PKZIP version 2.70 or greater. + + + + + Bit 6: Strong encryption. If this bit is set, you MUST + set the version needed to extract value to at least + 50 and you MUST also set bit 0. If AES encryption + is used, the version needed to extract value MUST + be at least 51. See the section describing the Strong + Encryption Specification for details. Refer to the + section in this document entitled "Incorporating PKWARE + Proprietary Technology into Your Product" for more + information. + + + + + Bit 11: Language encoding flag (EFS). If this bit is set, + the filename and comment fields for this file + MUST be encoded using UTF-8 (see APPENDIX D). + + + + + Bit 13: Set when encrypting the Central Directory to indicate + selected data values in the Local Header are masked to + hide their actual values. See the section describing + the Strong Encryption Specification for details. Refer + to the section in this document entitled "Incorporating + PKWARE Proprietary Technology into Your Product" for + more information. + + + + + Represents general purpose bit flag for the Method 6 - Imploding + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + For Method 6 - Imploding. + Bit 1: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + an 8K sliding dictionary was used. If clear, + then a 4K sliding dictionary was used. + + + + + For Method 6 - Imploding. + Bit 2: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + 3 Shannon-Fano trees were used to encode the + sliding dictionary output. If clear, then 2 + Shannon-Fano trees were used. + + + + + Represents local file header record described in the + ZIP File Format Specification v6.3.3, #4.3.7. + + + + + Local file header signature. + + + + + Size of the data block without signature and variable size fields. + + + + + Initializes a new instance of the LocalFileHeader class. + + + + + Initializes a new instance of the LocalFileHeader class. + + File header to copy properties from. + + + + Read data from the binary reader. + + Binary reader to read data from. + True if success, otherwise false. + + + + Write data to the binary writer. + + Binary writer to write data to. + + + + Represents general purpose bit flag for the Method 14 - LZMA + ZIP File Format Specification v6.3.3, #4.4.4. + + + + + Bit 1: If the compression method used was type 14, + LZMA, then this bit, if set, indicates + an end-of-stream (EOS) marker is used to + mark the end of the compressed data stream. + If clear, then an EOS marker is not present + and the compressed data size must be known + to extract. + + + + + Version needed to extract. + + +
+
diff --git a/SDRSharper/bin/x64/Release/TelerikCommon.dll b/SDRSharper/bin/x64/Release/TelerikCommon.dll new file mode 100644 index 0000000..4b858ed Binary files /dev/null and b/SDRSharper/bin/x64/Release/TelerikCommon.dll differ diff --git a/SDRSharper/bin/x64/Release/eibi-readme.txt b/SDRSharper/bin/x64/Release/eibi-readme.txt new file mode 100644 index 0000000..9443588 --- /dev/null +++ b/SDRSharper/bin/x64/Release/eibi-readme.txt @@ -0,0 +1,1243 @@ +How to use EiBi frequency lists. +================================ + +OVERVIEW +A) Conditions of use. +B) How to use. +C) Available formats. +D) Codes used. + +================================ + + +A) Conditions of use. + +All my frequency lists are free of cost, and any person +is absolutely free to download, use, copy, or distribute +these files or to use them within third-party software. +Should any mistake, omission or misinformation be found +in my lists, please send your helpful comment to +Eike.Bierwirth (at) gmx.de +[replace the "(at)" by the @ sign] + + +B) How to use. + I) Try to identify a signal on the radio: + You will need to know the frequency you tuned to in kHz, and the + time of the reception in UTC. + Search for the frequency in the list. Check all entries for this frequency: + - The listening time should fall inbetween the start and end times given for the broadcast. + - The day of the week should match. (If none is given in the list, the broadcast is daily.) + - Try to guess the language you hear, if you don't know it. + - Try to estimate the probability of propagation. The last column gives you information about + the transmitter site (if not, the transmitter is in the home country of the station.) + The target-area code should give you a clue if the signal is beamed in your direction or not. + If you are right in the target area, great. If you are "behind" it (from the transmitter's + point of view) or inbetween, your chances are also good. If the line connecting transmitter + and target area is perpendicular to the line connecting the transmitter to your location, + chances are lower. They are also lower if the target area is very close to the transmitter, + while you are far away. + Still, all rules can be turned upside-down by propagation conditions. You might sit in a good + direction but the waves may skip 80 kilometers above you in the ionosphere. Listed information + may be wrong, misleading, or outdated. Transmitters may fail, be upgraded, or drift in frequency. + Transmitter sites may change (for example, fire in the control room, hurricane tore the antenna + down, and transmissions have all been redirected to the Jlich transmitter). Broadcasters and + transmitter operators may mix up programmes or tune to the wrong frequency. + My lists will be useful for fast identification of many stations on the band, but in a number of + cases it will be of no use to you or it may bring you to a wrong conclusion. NO WARRANTY in case + of a wrong ID, an embarrasingly wrong log or reception report sent out etc. + + The ONLY 100% ID is that which you hear on the radio yourself. Even QSLs may be wrong. + + II) Find a broadcast you would like to hear: + Make extensive use of the SEARCH and SORT functions of the computer programme which you use. + For text-format files I use TextPad, a freely downloadable text editor. Software has been + written by very nice colleages of us to display the files in a more convenient manner, + namely: + + ShortwaveLog, by Robert Sillett, N3OEA, which you can find on http://www.shortwavelog.com/ + + RadioExplorer, by Dmitry Nefedov, Russia, which you can find on http://www.radioexplorer.com.ru/ + + For the CSV files, I recommend the GuindaSoft Lister, freely downloadable from + http://guindasoft.impreseweb.com/utile/utile.html + Click on the column headers to sort first by time, then by language or station or however you + wish. Try it out. + + +C) Available formats. + +Since B06, the fundamental database is a CSV semicolon-separated list. +IDL is used to transfer this into a frequency-sorted and a time-sorted text file. + +Naming of files is +sked-Xzz.csv for the CSV database; +freq-Xzz.txt for the frequency-sorted text file; +bc-Xzz.txt for the time-sorted text file; +where Xzz stands for the current broadcasting season: + X=A: Summer season + X=B: Winter season + zz: Two-character number for the year. E.g., + A99: Summer season 1999 + B06: Winter season 2006/2007. + +The change from A to B or from B to A usually coincides with the +change of clock to or from Daylight Saving Time in many parts of +the world. The U.S.A., however, decided to use Daylight Saving Time +for an even longer period, beginning in 2007. + +The download of freq and bc files shall furthermore be possible +in PDF, DOC, and zipped format. + + + + +D) Codes used. + I) Language codes. + II) Country codes. + III) Target-area codes. + IV) Transmitter-site codes. + + I) Lanuage codes. + + Numbers are number of speakers. 4m = 4 millions. + On the right in [brackets] the German translation, if significantly different. + + + -TS Time Signal Station [Zeitzeichensender] + A Arabic [Arabisch] + AB Abkhaz: Georgia (0.1m) [Abchasisch] + AC Aceh: Sumatera, Indonesia + ACH Achang (South-East Asia) + AD Adygea: Caucasus (0.2m) + ADI Adi: India-Assam (0.4m) + AF Afrikaans: South Africa, Namibia (6.4m) + AFA Afar: Djibouti (0.3m), Ethiopia (0.45m), Eritrea (0.3m) + AFG Pashto and Dari (main Afghan languages) + AH Amharic: Ethiopia (20m) [Amharisch] + AJ Adja (West Africa) + AK Akha: Burma (0.2m), China-Yunnan (0.13m) + AL Albanian: Albania (Tosk)(3m), Macedonia/Yugoslavia (Gheg)(2m) [Albanisch] + ALG Algerian (Arabic) + AM Amoy: S China (25m), Taiwan (15m), SoEaAsia (5m); very close to TW-Taiwanese) + Ang Angelus programme of Vaticane Radio + AR Armenian: Armenia (3m), USA (1m), RUS,GEO,SYR,LBN,IRN,EGY [Armenisch] + AR-W: Western, AR-E: Eastern + ARO Aromanian: Greece, Albania, Macedonia (0.1m) + ARU Arunachal (India) + ASS Assamese: Assam/India (14m) + ASY Assyrian: Middle East (0.1m) [Assyrisch] + ATS Atsi / Zaiwa (Myanmar: 13,000; China: 70,000) + Aud Papal Audience (Vaticane Radio) [Audienz des Papstes] + AV Avar: Dagestan, S Russia (0.6m) [Awarisch] + AW Awadhi: N&Ce India (20m) + AY Aymara: Bolivia (2m) + AZ Azeri: Azerbaijan (7m) [Aserbaidschanisch] + B Brazilian (Portuguese dialect) [Brasil.Portugiesisch] + BAD Badaga: India-Tamil Nadu (0.17m) + BAG Bagri (India 1.7m, PAK 0.2m) + BAJ Bajau: Malaysia-Sabah (50,000) + BAK Baku (SE Asia) + BAL Balinese: Bali / Indonesia (4m) [Balinesisch] + BAN Banjar: Indonesia/Borneo (3m) + BAO Baoule: Cote d'Ivoire (2m) + BAR Bari: S Sudan (0.3m) + BAS Bashkir: Ce Russia (1m) [Baschkirisch] + BAY Bayash Romani / Gypsy (Serbia, Croatia) + BB Braj Bhasa/Braj Bhasha: India (40,000) + BC Baluchi: Pakistan (1m), Iran (0.5m), Afghanistan (0.2m) + BE Bengali/Bangla: Bangladesh (100m), India (68m) + BEM Bemba (Zambia) + BH Bhili: Ce India (1.6m) + BHN Bahnar (Vietnam) + BI Bile: Eritrea-Keren (70,000) + BID Bidayuh (Malaysia-Sarawak) + BIS Bisaya (Malaysia-Sarawak) + BJ Bhojpuri/Bihari: India (23m), Nepal (1.4m) + BK Balkarian (Russian Caucasus) + BLK Balkan Romani (Gypsy) (Bulgaria, 1m) [Roma-Sprache] + BLT Balti: Pakistan (0.3m) + BM Bambara: Mali (2.7m) + BNA Borana Oromo: Ethiopia (4m) + BNG Bangala (Ce Angola) + BNJ Banjari / Gormati / Lambadi (India-Maharashtra,Karnataka,Andhra Pr.: 2m) + BON Bondo (India) + BOR Boro / Bodo (India-Assam,W Bengal: 0.5m) + BOS Bosnian (derived from Serbocroat) (4m) [Bosnisch] + BR Burmese (Barma / Myanmar) [Birmanisch] + BRA Brahui: Pakistan (1.5m), Afghanistan (0.2m) + BRB Bariba / Baatonum: Benin (0.5m) + BRI Brij (India) + Bru Bru (Vietnam) + BSL Bislama (Vanuatu) + BT Black Tai / Tai Dam (Vietnam: 500,000) + BTK Batak-Toba (Indonesia/Sumatra) + BU Bulgarian: Bulgaria (8m), Moldova (0.36m), Ukraine (0.2m) [Bulgarisch] + BUG Bugis (Indonesia/Celebes/Sunda) + BUK Bukharian (Central Asia - Uzbek??) + BUN Bundeli / Bundelkhandi (India: 1m) + BUR Buryat (South Siberia, similar to Mongolian) [Burjatisch] + BY Byelorussian [Weissrussisch] + C Chinese (if not specified) [Chinesisch] + CA Cantonese / Yue (South China 50m, others 15m) [Kantonesisch] + CC Chaochow (South China, close to TW-Taiwanese, AM-Amoy, SWT-Swatow) + CD Chowdary/Chaudhry/Chodri (India) + CEB Cebuano (Philippines) + CH Chin (not further specified) + C-A Chin-Asho: Myanmar-Arakan Hills (10,000) + C-D Chin-Daai (Myanmar) + Chinyanja: See NY-Nyanja + CHE Chechen (Chechnya, S Russia) [Tschetschenisch] + CHG Chattisgarhi: India-Mad.Pr.,Orissa,Bihar (11m) + CHI Chitrali + C-K Chin-Khumi: Myanmar (77,000) + C-O Chin-Thado (India) + CHR Chrau (Vietnam) + CHT Chatrali (Pakistan) + CHU Chuwabu (Mozambique) + C-T Chin-Tidim: Myanmar (0.2m), India (0.15m) + C-Z Chin-Zomin / Zomi-Chin (SEA) + CI Circassic (Cherkessia, S Russia) [Tscherkessisch] + CKM Chakma (India) + CKW Chokwe: Angola (0.5m), DR Congo (0.5m) + COF Cofan (Ecuador) + COK Cook Islands Maori + CR Creole (Caribbean) [Kreolisch] + CRU Chru (Vietnam) + CT Catalan: Spain, Andorra (31000) [Katalanisch] + CV Chuvash (Chuvashia/Russia) [Tschuwaschisch] + CW Chewa /Chichewa (Malawi) + CZ Czech [Tschechisch] + D German [Deutsch] + D-P Lower German (Northern Germany, USA) [Plattdeutsch] + DA Danish [Daenisch] + DAO Dao: Vietnam (0.5m) + DD Dhodiya (India) + DEG Degar / Montagnard (Vietnam) + DEN Dendi: Benin (30,000) + DH Dhivehi (Maldives) + DI Dinka (Sudan) + DIA Dial Arabic (North Africa) + DIT Ditamari / Tamari: Benin (20,000) + DN Damara-Nama service in Namibia (Languages: Damara, Nama) + DO Dogri-Kangri: N India (2m) + DR Dari / Eastern Farsi: Afghanistan (6m), Pakistan (1m) + DU Dusun (Malaysia-Sabah) + DUN Dungan (Central Asia) + DY Dyula (Burkina, Ivory Coast, Mali) + DZ Dzonkha: Bhutan (0.4m) + E English + EC Eastern Cham (Vietnam) + EDI English, German, Italian + E-C Col.English (S Sudan) + EGY Egyptian Arabic + E-L English Learning Programme (BBC) [Englisch-Sprachkurs] + EO Esperanto + ES Estonian [Estnisch] + Ewe Ewe (Ghana) + F French [Franzoesisch] + FA Faroese [Faeringisch] + FI Finnish [Finnisch] + FJ Fijian + FON Fon / Fongbe (West Africa) + FP Filipino + FS Farsi / Persian [Persisch] + FT Fiote (Angola-Cabinda) + FU Fulani/Fulfulde (0.25m BFA, 0.3m BEN, 5m CME) + FUJ FutaJalon (West Africa) + Fujian: see TW-Taiwanese + GA Garhwali: India-Kashmir,Uttar Pr. (2m) + GD Greenlandic [Groenlaendisch] + GE Georgian [Georgisch] + GJ Gujari/Gojri (India/Pakistan) + GL Galicic/Gallego (Spain) [Gallizisch] + GM Gamit: India-Gujarat (0.2m) + GO Gorontalo (Indonesia) + GON Gondi (India-Madhya Pr.,Maharashtra: 3m) + GR Greek [Griechisch] + GU Gujarati: India (43m) + GUA Guaran (Paraguay) + GUR Gurage/Guragena: Ethiopia (1m) + HA Haussa (Nigeria) + HAD Hadiya (Ethiopia) + HAR Haryanvi: India (13m) + HB Hebrew (Israel) [Hebraeisch] + HD Hindko (Pakistan) + HI Hindi: India (180m) + HK Hakka (South China 26m, TWN 2m, others 6m) + Hokkien: see TW-Taiwanese + HM Hmong (Vietnam) + HMA Hmar (India - Assam,Manipur,Mizoram 50,000) + HMB Hmong-Blue/Njua (Laos/Thailand) + HMW Hmong-White/Daw (Laos/Thailand) + HN Hani (S China) + HO Ho (India) + HR Croatian (Hrvatski) [Kroatisch] + Hre Hre (Vietnam) + HU Hungarian [Ungarisch] + HUA Huarani (Ecuador) + HUI Hui (China) + HZ Hazaragi: Afghanistan (1.4m), Iran (0.3m) + I Italian [Italienisch] + IB Iban (Malaysia - Sarawak) + IF If: Togo (100,000) + IG Igbo / Ibo: Nigeria (18m) + ILC Ilocano (Philippines) + ILG Ilonggo (Philippines) + IN Indonesian / Bahasa Indonesia [Indonesisch] + INU Inuktikut (Inuit language, Canada/Greenland) + IRQ Iraqi + IS Icelandic [Islaendisch] + J Japanese [Japanisch] + Jeh Jeh (Vietnam) + JG Jingpho (SE Asia) + JL Joula/Jula (West Africa) + JOR Jordanian + JR Jarai / Giarai / Jra (Vietnam) + JU Juba (Arabic; Chad, Sudan) + JV Javanese (Java/Indonesia) + K Korean [Koreanisch] + KA Karen (Burma) + K-P Karen-Pao (Burma) + K-S Karen-Sgaw (Burma) + K-W Karen-Pwo (Burma) + KAD Kadazan (Malaysia - Sabah) + KAL Kalderash Romani (Gypsy) (Romania) [Roma-Sprache] + KAB Kabardino (Caucasus) + KAM Kambaata (Ethiopia) + KAN Kannada (South India) + KAO Kaonde (Zambia) + KAR Karelian (Russia, close to Finnish border). [Karelisch] + Programme includes Finnish and Vespian parts. + KAT Katu (Vietnam) + KAY Kayan (Burma) + KB Kabyle: Algeria (2.5m) [Kabylisch/Berber] + KBO Kok Borok/Tripuri: India (0.7m) + KC Kachin (Burma) + KG Kyrgyz /Kirghiz: Kyrgystan (2.5m), China (0.1m) [Kirgisisch] + KH Khmer: Cambodia (6m), Vietnam (0.7m) [Kambodschanisch] + KHA Kham / Khams, Eastern (NE Tibet: 1m) + KHM Khmu (Laos 400,000, Vietnam 40,000) + KIM Kimwani (East Africa) + KiR KiRundi: Burundi (0.45m) + KK KiKongo/Kongo: DR Congo, Angola (3.5m) + KMB Kimbundu/Mbundu/Luanda: Angola (3m) + KNK KinyaRwanda-KiRundi service of the Voice of America / BBC + KNU Kanuri: Nigeria (3m), Chad (0.1m), Niger,Cameroon (0.1m) + KO Kosovar Albanian (Kosovo/Serbia) + KOH Koho/Kohor (Vietnam) + KOM Komering (Indonesia) + KON Konkani (India) + KOY Koya (India-Andhra Pr.: 300,000) + KPK Karakalpak (W Uzbekistan) + KRB Karbi / Mikir / Manchati (NE India: 0.5m) + KRI Krio (Sierra Leone) + KRW KinyaRwanda (Rwanda) + KS Kashmiri: India (4m), Pakistan (0.1m) + KU Kurdish + KuA Kurdish and Arabic + KuF Kurdish and Farsi + KUI Kui (India) + KUj Kirmanji Kurdish + KUL Kulina (Brazil) + KUK Kuki (India) + KUM Kumaoni/Kumauni (India) + KUN Kunama: Eritrea (0.14m) + KUR Kurukh / Kuruk: India (2m) + KUs Sorani Kurdish + KUT Kutchi (India 800,000) + KWA Kwanyama/Kuanyama (Ce Angola) + KYK Kayan/Kenyah (Malaysia-Sarawak) + KZ Kazakh: Kazakhstan (7m), China (1m), Mongolia (0.1m) [Kasachisch] + L Latin [Lateinisch] + LA Ladino (Hispanic Jewish lang.) + LAH Lahu (China 400,000; Myanmar 150,000) + LAM Lampung (Indonesia) + LAO Lao [Laotisch] + LaS Ladino and Spanish + LB Lun Bawang / Murut (Malaysia-Sarawak) + LBO Limboo (NE India) + LEP Lepcha (NE India) + LHO Lhotshampa (Bhutan) + LIM Limba (Sierra Leone) + LIN Lingala (Congo) + LIS Lisu (Burma/S China) + LND Lunda Ndembo (Angola) + LO Lomwe (Mocambique) + LOK Lokpa / Lukpa: Benin (50,000) + LOZ Lozi / Silozi (Zambia 500,000, ZWE+BOT 100,000) + LT Lithuanian [Litauisch] + LTO Oriental Liturgy of Vaticane Radio [Oestl.Lithurgie] + LU Lunda (Angola) + LUC Luchazi: Angola (0.24m), Zambia (0.05m) + LUN Lunyaneka/Nyaneka: Angola (0.4m) + LUR Luri (Iran) + LUV Luvale (Angola) + LV Latvian [Lettisch] + M Mandarin (Standard Chinese / Beijing dialect) + MA Maltese [Maltesisch] + MAD Madurese (Madura / Indonesia) + MAG Maghi/Magahi/Maghai (India) + MAI Maithili / Maithali (India: 22m, Nepal: 2m) + MAK Makonde (Tanzania/Mocambique) + MAL Malayalam (South India) + MAM Mamay / Rahanwein (Somalia) + MAN Manchu (Vietnam) + MAO Maori (New Zealand) + MAR Marathi (India) + MAS Masaai/Massai/Masai (E Africa) + MC Macedonian (2m) [Makedonisch] + MCH Mavchi/Mouchi/Mauchi/Mawchi/Monchi (India-Gujarat,Maharashtra: 72,000) + MEI Meithei/Manipuri: India (1.3m) + MEN Mende (Sierra Leone) + MEW Mewari/Mewadi (India) + MIE Mien / Iu Mien: S China (0.5m), Vietnam (0.3m) + MKB Minangkabau (Indonesia) + MKS Makasar (Indonesia) + MKU Makua / Makhuwa (N Mocambique) + ML Malay: Malaysia, Singapore, Brunei (18m) [Malaiisch] + MLK Malinke (West Africa) + MNO Mnong: Vietnam (0.1m) + MO Mongolian / Halh (MNG: 2m) [Mongolisch] + MOc Chinese / Peripheral Mongolian (N China: 3m) + Mon Mon (Burma) + MOO Moore: Burkina Faso (4.5m) + MOR Moro/Moru (S Sudan) + MR Maronite + MRC Moroccan (Arabic) + MRI Mari (Russia) + MRU Maru (Burma) + MSY Malagasy (Madagaskar) [Madegassisch] + MUG Mugrabian (North Africa) + MUN Mundari: India (1.5m) + MUO Muong (Vietnam) + MUR Murut (Malaysia-Borneo) + MW Marwari / Rajasthani (India) + MZ Mizo (South Asia) + NAG Naga-Makware (India/Burma) + NDA Ndau (Mocambique) + NDE Ndebele (S Africa/Zimbabwe) + NE Nepali: Nepal (10m), India (6m) [Nepalesisch] + NG Nagpuri / Sadani / Sadri (NE India: 2m) + NGA Ngangela/Nyemba (Angola) + NI Ni (South Asia) + NIC Nicobari (Nicobar Islands, India) + NIU Niuean (Niue / S Pacific) + NL Dutch (Nederlands) [Niederlaendisch] + Flemish is included here ;-) + NO Norwegian [Norwegisch] + NP Nupe (Nigeria) + NU Nuer: Sudan (0.75m), Ethiopia (0.04m) + NUN Nung (Vietnam) + NW Newari (India) + NY Nyanja / Chinyanja (Malawi 3m, Zambia 1m, ZWE+MOZ 1m) + OG Ogan (Indonesia) + OH Otjiherero service in Namibia (Languages: Herero, SeTswana) + OO Oromo: Ethiopia (8m) + OR Oriya / Orissa (India) + OS Ossetic (Caucasus) [Ossetisch] + OW Oshiwambo service in Angola and Namibia (Languages: Ovambo, Kwanyama) + P Portuguese [Portugiesisch] + PAL Palaung - Pale (Burma 300,000) + PED Pedi (S Africa) + PF Pashto and Farsi + PJ Punjabi (India/Pakistan) + PO Polish (Poland) [Polnisch] + POT Pothwari (Pakistan) + PS Pashto / Pushtu: Afghanistan (8m), Iran (0.1m) + PU Pulaar: Senegal (2m) + Q Quechua: Bolivia (2.8m) + QI Quichua: Ecuador + QQ Qashqai: Iran (1.5m) + R Russian [Russisch] + RAD Rade/Ede (Vietnam) + REN Rengao (Vietnam) + RH Rahanwein (Somalia) + RO Romanian [Rumaenisch] + ROG Roglai (Vietnam) + ROM Romanes (Gypsy) [Roma-Sprache] + Ros Rosary session of Vaticane Radio [Rosenkranz] + RWG Rawang (Burma) + S Spanish [Spanisch] + SAD Sadari (India) + SAH Saho: Eritrea, South (0.14m) + SAM Samayiki (India) + SAN Sango (Central African Rep.) + SAS Sasak (Indonesia) + SC Serbo-Croat (Yugoslav language before the [Serbokroatisch] + national and linguistic separation) + SCA Scandinavian languages (Norwegian, Swedish, Finnish) + SD Sindhi: Pakistan (17m), India (3m) + SED Sedang (Vietnam) + SEF Sefardi (Jewish language in Spain) + SEN Sena (Mocambique) + SGA Shangaan (Mocambique) + SGK Sgaw Karan + SGM Sara Gambai (Chad) + SGO Songo (Angola) + SHA Shan (Burma) + SHk Shan-Khamti (Burma) + SHC Sharchogpa (Bhutan) + SHE Sheena (Pakistan) + SHI Shiluk (Sudan, 0.18m) + SHO Shona (Zimbabwe) + SHP Sherpa (India,Nepal: 30,000) + SHU Shuwa (Arabic of Central Africa, Chad) + SI Sinhalese (Sri Lanka) + SID Sidamo/Sidama (Ethiopia, Eritrea) + SIK Sikkimese (NE India) + Silozi: See LOZ-Lozi + SIR Siraiki (Pakistan) + SK Slovak [Slowakisch] + SLM Solomon Islands Pidgin (Solomon Isl., S.Pacific) + SM Samoan: Samoa (0.2m), USA (0.1m) + SNK Sanskrit (India) + SNT Santhali: India (5.5m), Bangladesh (0.15m) + SO Somali + SON Songhai: Mali (0.6m), Niger (0.4m), Burkina (0.1m) + SOT SeSotho (Lesotho) + SOU Sous (North Africa) + SR Serbian [Serbisch] + SRA Soura / Saurashtra (India-Tamil N.,Karnataka,Andhra Pr.: 300,000) + STI Stieng: Vietnam (50,000) + SUD Sudanese (Arabia) + SUN Sundanese (Indonesia) + SUS Sousou (West Africa) + SV Slovenian [Slowenisch] + SWA Swahili (Kenya/Tanzania/Uganda) [Kisuaheli] + SWE Swedish [Schwedisch] + SWT Swatow (China) + SWZ SiSwati (Swaziland) + SYL Syrian-Lebanese Arabic + T Thai + TAG Tagalog (Philippines) + TAH Tachelhit (North Africa) + TAM Tamil (South India / Sri Lanka) [Tamilisch] + TB Tibetan: Tibet (1m), India (0.1m) [Tibetisch] + TEL Telugu (South India) + TEM Temme (Sierra Leone) + TFT Tarifit (North Africa) + TGR Tigre (Ethiopia/Eritrea) (not = Tigrinya) + THA Tharu Buksa (India-Nainital: 20,000) + TIG Tigrinya (Eritrea/Ethiopia) + TJ Tajik [Tadschikisch] + TK Turkmen [Turkmenisch] + TL Tai-Lu / Lu (S China:250,000;BRM:200,000;others 100,000) + TM Tamazight (North Africa) + TMJ Tamajeq (West Africa) + TN Tai-Nua / Chinese Shan (S China: 250,000; LAO,BRM: 200,000) + TNG Tonga (Zambia) + TO Tongan (Tonga, So.Pacific) + TOK Tokelau (Tokelau, So.Pacific) + TOR Torajanese (Indonesia) + TP Tok Pisin (PNG pidgin) + TS Tswana: Botswana (1m), South Africa (3m) + TSA Tsangla: Bhutan (0.4m). Close to Sharchagpakha. + TSH Tshwa (Mocambique) + TT Tatar: Central Russia, Volga (7m) + TTB Tatar-Bashkir service of Radio Liberty + TU Turkish: Turkey (46m), Bulgaria (0.8m) [Tuerkisch] + TUL Tulu (South India) + TUM Tumbuka (Malawi) + TUN Tunisian (Arabic) + TUR Turki + TV Tuva / Tuvinic (Tannu-Tuva, S Siberia) and Russian [Tuwinisch] + TW Taiwanese / Fujian / Hokkien (CHN 25m, TWN 15m, others 9m) + Twi Twi/Akan: Ghana (7m - Ashanti language) + TZ Tamazight/Berber: Morocco (2m), Algeria (1m) + UD Udmurt (Ce Russia) + UI Uighur: China/Xinjiang (7m), Kazakhstan (0.2m) [Uigurisch] + UK Ukrainian [Ukrainisch] + UM Umbundu: Angola (4m) + UR Urdu: Pakistan (54m) + UZ Uzbek (Southern Variant: 1m in Afghanistan) [Usbekisch] + V Vasco (Basque / Spain) [Baskisch] + Ves Vespers (Vaticane Radio) [Vesper] + Vn Vernacular = local languages (maybe various) [Lokalsprache] + VN Vietnamese [Vietnamesisch] + VV Vasavi (India) + VX Vlax Romani (Balkans) + W Wolof (Senegal) + Wa Wa (S China / Burma) + WAO Waodani (South America) + WE Wenzhou (China) + WT White Tai / Tai Don (Vietnam,Laos: 400,000) + WU Wu (China - Jiangsu, Zhejiang: 80m) + XH Xhosa (South Africa) + YAO Yao (Mocambique) + YI Yiddish (Jewish) [Jiddisch] + YIN Yi (Nosu Yi) (S China: 6 Yi dialects of each 300-800,000) + YK Yakutian / Sakha (Rep.Sakha, Siberia/Russia) [Jakutisch] + YO Yoruba: Nigeria (20m) + YOL Yolngu (NE Arnhem Land, NT, Australia; 7000 speakers) + YZ Yezidish (Armenia) + Z Zulu (South Africa) + ZA Zarma/Zama (West Africa) + ZD Zande (S Sudan) + ZG Zaghawa (Chad) + ZH Zhuang: S China (2 Zhuang dialects of 10m and 4m) + Zomi-Chin: see Chin-Zomi (C-Z) + + II) Country codes. + Countries are referred to by their ITU code. Here is a list: + + ABW Aruba + ADM Andaman & Nicobar Island + AFG Afghanistan + AFS South Africa + AGL Angola + AIA Anguilla + ALB Albania + ALG Algeria + ALS Alaska + AMS Saint Paul & Amsterdam Is. + AND Andorra + ANO Annobon I. + ARG Argentina + ARM Armenia + ARS Saudi Arabia + ASC Ascension I. + ATA Antarctica + ATG Antigua + ATN Netherlands Leeward Antilles + ATW Netherlands Windward Antilles + AUS Australia + AUT Austria + AVE Aves I. + AZE Azerbaijan + AZR Azores + B Brasil + BAH Bahamas + BAL Balleny Is. + BAN Banaba (Ocean I.) + BDI Burundi + BEL Belgium + BEN Benin + BER Bermuda + BFA Burkina Faso + BGD Bangla Desh + BHR Bahrain + BIH Bosnia-Hertsegovina + BIO Chagos Is. (Diego Garcia) (British Indian Ocean Territory) + BLR Belarus + BLZ Belize + BOL Bolivia + BOT Botswana + BOV Bouvet I. + BRB Barbados + BRM Burma (Myanmar) + BRU Brunei + BTN Bhutan + BUL Bulgaria + CAB Cabinda + CAF Central African Republic + CAN Canada + CBG Cambodia + CEU Ceuta + CGO Republic of Congo (capital Brazzaville) + CHL Chile + CHN China (People's Republic) + CHR Chrstmas I. (Indian Ocean) + CKH Cook Is. (South) (Rarotonga) + CKN North Cook Isls. (Manihiki) + CLM Colombia + CLN Sri Lanka + CLP Clipperton + CME Cameroon + CNR Canary Is. + COM Comores + CPV Cape Verde Is. + CRO Crozet I. + CTI Ivory Coast + CTR Costa Rica + CUB Cuba + CVA Vatican State + CYM Cayman Is. + CYP Gyprus + CZE Czech Republic + D Germany + DAI Daito Is. + DES Desventurados Is. + DJI Djibouti + DMA Dominica + DNK Denmarlc + DOM Dominican Republic + DRC Democratic Republic of Congo (capital Kinshasa) + E Spain + EGY Egypt + EQA Ecuador + ERI Eritrea + EST Estonia + ETH Ethiopia + EUR Iles Europe & Bassas da India + F France + FAR Faroe Is. + FIN Finland + FJI Fiji Is. + FLK Falkland Is. + FSM Federated States of Micronesia + G Great Britain and Northern Ireland + GAB Gabon + GDL Guadeloupe + GEO Georgia + GHA Ghana + GIB Gibraltar + GMB Gambia + GNB Guinea-Bissau + GNE Equatorial Guinea + GPG Galapagos Is. + GRC Greece + GRD Grenada + GRL Greenland + GTB Guantanamo Bay + GTM Guatemala + GUF French Guyana + GUI Guinea + GUM Guam + GUY Guyana + HKG Hong Kong, part of China + HMD Heard & McDonaid Is. + HND Honduras + HNG Hungary + HOL Netherlands + HRV Croatia + HTI Haiti + HWA Hawaii Is. + HWL Howland & Baker Is. + I Italy + ICO Cocos I. + IND India + INS Indonesia + IRL Ireland + IRN Iran + IRQ Iraq + ISL Iceland + ISR Israel + IWA Ogasawara (Bonin, Iwo Jima) + J Japan + JAF Jarvis (US Southem Line Isl.) + JDN Juan de Nova Island + JMC Jamaica + JMY Jan Mayen + JON Johnston Atoll + JOR Jordan + JUF Juan Femandez I. + KAL Kaliningrad + KAZ Kazakstan + KEN Kenya + KER Kerguelen + KGZ Kyrgyzstan + KIR Kiribati + KOR Korea, South + KRE Korea, North + KWT Kuwait + LAO Laos + LBN Lebanon + LBR Liberia + LBY Libya + LCA Saint Lucia + LIE Liechtenstein + LSO Lesotho + LTU Lithuania + LUX Luxembourg + LVA Latvia + MAC Macao + MAU Mauritius + MCO Monaco + MDA Moldova + MDG Madagascar + MDR Madeira + MEL Melilla + MEX Mexico + MKD Macedonia + MLA Malaysia + MLD Maldives + MLI Mali + MLT Malta + MNE Montenegro + MNG Mongolia + MOZ Mozambique + MRA Northern Mariana Islands + MRC Morocco + MRL Marshail Is. + MRN Marion & Prince Edward Is. + MRQ Marquesas Is. + MRT Martinique + MSR Montserrat + MTN Mauritania + MWI Malawi + MYT Mayotte + NCG Nicaragua + NCL New Caledonia + NFK Norfolk I. + NGR Niger + NIG Nigeria + NIU Niue + NMB Namibia + NOR Norway + NPL Nepal + NRU Nauru + NZL New Zealand + OCE Society Is. (Tahiti) + OMA Oman + PAK Pakistan + PAL Palau + PAQ Easter Island + PHL Philippines + PHX Phoenix Is. + PLM Palmyra (US Northem Line Is.) + PNG Papua New Guinea + PNR Panama Republic + POL Poland + POR Portugal + PRG Paraguay + PRU Peru + PRV Okino-Tori-Shima (Parece Vela) + PTC Pitcairn + PTR Puerto Rico + QAT Qatar + REU Reunion + ROU Roumania + RRW Rwanda + RUS Russian Federation + S Sweden + SAP San Andres & Providencia + SCN Saint Kitts - Nevis + SCO Scott I. + SDN Sudan + SEN Senegal + SEY Seychelles + SGA South Georgia Is. + SHN Saint Helena I. + SLM Solomon Is. + SLV EI Salvador + SMA Samoa (American) + SMO Samoa + SMR San Marino + SNG Singapore + SOK South Orkney Is. + SOM Somalia + SPM Saint Pierre & Miquelon + SPO Sao Paulo I. + SPR Spratly Is. + SRB Serbia + SRL Sierra Leone + SSI South Sandwich Is. + STB Saint Barthelemy + STP Sao Tome & Principe + SUI Switzerland + SUR Suriname + SVB Svalbard + SVK Slovakia + SVN Slovenia + SWZ Swaziland + SYR Syria + TCD Tchad + TCI Turks & Caicos Is. + TGO Togo + THA Thaiiand + TJK Tadjikistan + TKL Tokelau I. + TKM Turkmenistan + TON Tonga + TRC Tristan da Cunha + TRD Trinidad & Tobago + TRI Trindade & Martim Vaz Is., + TUA Tuamotu Archipelago + TUN Tunisia + TUR Turkey + TUV Tuvalu + TWN Taiwan + TZA Tanzania + UAE United Arab Emirates + UGA Uganda + UKR Ukraine + URG Uruguay + USA United States of America + UZB Uzbekistan + VCT Saint Vincent + VEN Venezuela + VIR American Virgin Is. + VRG British Virgin Is. + VTN Vietnam + VUT Vanuatu + WAK Wake I. + WAL Waliis & Futuna Is. + YEM Yemen + ZMB Zambia + ZWE Zimbabwe + + III) Target-area codes. + Af - Africa + Am - America(s) + As - Asia + C.. - Central .. + Car - Caribbean + Cau - Caucasus + CIS - Commonwealth of Independent States (Former Soviet Union) + CNA - Central North America + E.. - East .. + ENA - Eastern North America + Eu - Europe (often including North Africa/Middle East) + FE - Far East + LAm - Latin America (=Central and South America) + ME - Middle East + N.. - North .. + NAO - North Atlantic Ocean + Oc - Oceania (Australia, New Zealand, Pacific Ocean) + S.. - South .. + SAO - South Atlantic Ocean + SEA - South East Asia + SEE - South East Europe + Sib - Siberia + W.. - West .. + WNA - Western North America + + Alternatively, ITU country codes may be used if the target area is limited to + a certain country. This is often the case for domestic stations. + + IV) Transmitter site codes. + One-letter or two-letter codes for different transmitter sites within one country. + No such code is used if there is only one transmitter site in that country. + + The code is used plainly if the transmitter is located within the home country of the station. + Otherwise, it is preced by "/ABC" where ABC is the ITU code of the host country of the transmitter site. + Example: A BBC broadcast, relayed by the transmitters in Samara, Russia, would be designated as "/RUS-s". + + In many cases, a station has a "major" transmitter site which is normally not designated. Should this station + use a different transmitter site in certain cases, they are marked. + No transmitter-site code is used when the transmitter site is not known. + + AFS: Meyerton 26S35-28E08 + AGL: Mulenvos 08S53-13E20 + AIA: The Valley 18N13-63W01 + ALB: CRI: Cerrik 40N59'47"-19E59'58" (1x100kW = 2x50kW) + R Tirana: Shijiak 41N19'53"5-19E33'08"6 (1x100kW = 2x50kW) + MW: Durres/Fllake 41N22'11"-19E30'17" (500 kW) + ALS: Anchor Point 59N45-151W44 + ARG: General Pacheco 34S36-58W22 + ARM: Gavar (formerly Kamo) 40N25-45E11 + ARS: Riyadh 24N30-46E23 except j-Jeddah 21N32-39E10 + ASC: Ascension Island, 07S54-14W23 + ATA: Base Esperanza 63S24-56W59 + ATG: St.John's 17N06-61W48 (2 x 250kW) + ATN: Bonaire 12N12-68W18 + AUS: Shepparton 36S20-145E25 except: + a-Alice Springs 23S49-133E51 + b-Brandon 19S31-147E20 + d-Darwin NT 12S25-136E37 + h-Humpty Doo NT 12S34-131E05 + ka-Katherine NT 14S24-132E11 + ku-Kununurra WA 15S48-128E41 + t-Tennant Creek NT 19S40-134E16 + AUT: Moosbrunn 48N00-16E28 + AZE: Gnc 40N37-46E20 + BEL: Wavre(Waver) 50N44-04E34 + BEN: Parakou 09N20-02E38 + BGD: Dhaka 23N43-90E26 + BHR: Abu Hayan 26N02-50E37 + BIH: Bijeljina 44N42-19E10 + BIO: Diego Garcia 07S03-72E04 + BLR: Minsk-Sasnovy 53N56-27E34 except: + b - Brest 52N20-23E35 (5kW) + g - Hrodna/Grodno 53N40-23E50(5 kW) + m - Mahiliou/Mogilev ("Orsha") 53N37-30E20 (5 kW) + BOT: VoA: Mopeng Hill 21S57-27E39 + BTN: Thimphu 27N28-89E39 + BUL: Plovdiv-Padarsko 42N10-24E42 (2x500kW,3x250kW) + except s-Sofia-Kostinbrod 42N49-23E13 (2x100kW,2x50kW) + v-Varna 43N03-27E40 + 747-Petrich 41N42-23E18 (500kW) + 1224-Vidin 43N49-22E40 (500kW) + CAN: Sackville 45N53-64W19 except + c-Calgary AB + j-St John's NL 47N34-52W48 + o-Ottawa ON 40N18-75W45 + t-Toronto (Aurora) ON 44N00-79W30 + v-Vancouver BC 49N11-123W04 + CBG: Phnom Penh 11N34-104E51 + CHL: Santiago 33S27-70W41 + CHN: a-Baoji 34N30-107E10 (5x100kW) + b-Beijing 39N57-116E27 + B-Beijing 39N55-116E25 (12x100kW,9x50kW) + d-Dongfang (Hainan) 18N54-108E39 (150kW) + e-Gejiu (Yunnan) 23N21-103E08 + g-Gannan (Hezuo) 35N06-102E54 + h-Hohhot (Nei Menggu) 41N12-111E30 + j-Jinhua 28N07-119E39 + k-Kunming (Yunnan) 25N10-102E50 + ka-Kashi (Kashgar) (Xinjiang) 39N30-76E00 + L-Lingshi (Shanxi) 36N52-111E40 (6x100kW) + n-Nanning (Guangxi) 22N47-108E11 + q-Ge'ermu (Qinghai) 36N24-94E59 (100kW) + qq-Qiqihar 47N02-124E03 (500kW) + s-Shijiazhuang (Hebei) 38N04-114E28 (5x50kW) + t-Tibet (Lhasa) 29N30-90E59 + u-Urumqi (Xinjiang) 43N35-87E30 (6x500kW) + x-Xian (Shaanxi) 34N12-108E54 + 603-Guangdong 684-Dongfang 1296-Kunming + Regional Stations: Fuzhou:26N06-119E24 Lhasa:29N30-90E59 + Nanchang:28N38-115E56 Nanjing:32N02-118E44 Nanning:32N02-108E11 + Qinghai: Xining 36N38-101E36 + CLN: DW: Trincomalee 08N44-81E10 (SW 3 x 250kW, MW 400kW) + R.Japan/SLBC: Ekala 07N06-79E54 + RL/VoA: Iranawila 07N32-79E30 + CTR: Gene Scott: Cahuita 09N45-82W54 + REE: Caiari de Poroc 10N00-83W30 + CUB: La Habana (Quivicn) 22N50-82W17 + CVA: Santa Maria di Galeria 42N03-12E19 except: + v-Citta del Vaticano 41N54-12E27 + CYP: Zygi (Limassol) 34N43-33E19 except: + y-Yeni Iskele 35N13-33E55 + CZE: Litomysl 49N48-16E10 + D: b-Biblis 49N41-08E29 + be-Berlin 52N30-13E20 + d-Dillberg 49N19-11E23 + e-Erlangen 49N35-11E00 + h-Holzkirchen 47N52-11E44 + ha-Hannover 52N23-09E42 + i-Ismaning 48N15-11E45 + j-Juelich 50N57-06E22 ( 100kW) + L-Lampertheim 49N36-08E33 + n-Nauen 52N38-12E54 ( 4 x 500kW) + nu-Nuernberg 49N27-11E05 + w-Wertachtal 48N05-10E41 (13 x 500kW) + DJI: Djibouti 11N30-43E00 + DNK: Karup 56N18-09E10 + E: Noblejas 39N57-03W26 + EGY: a-Abis 31N10-30E05 + z-Abu Zaabal 30N16-31E22 + ETH: R.Ethiopia: Geja Jewe 08N47-38E38 + F: Issoudun 46N57-01E59 + r-Rennes 48N06-01W41 + FIN: YLE: Pori 61N28-21E35 + Scand.Weekend R.: Virrat 62N23-23E37 + G: r-Rampisham 50N48-02W38 + s-Skelton 54N44-02W54 + w-Woofferton 52N19-02W43 + cp-London-Crystal Palace + cr-London-Croydon + 648,1296-Orfordness (SE coast) + 198-Droitwich + GAB: Moyabi 01S40-13E31 + GEO: Dusheti 42N03-44E41 + GNE: Bata 01N48-09E46 + GRC: Avlis (38N23-23E36) + GUF: Montsinery 04N54-52W36 + GUM: AWR: Station KSDA, Agat, 13N20-144E39 + KTWR: Agana 13N17-144E40 + AFRTS: Barrigada 13N34-144E50 + GUY: Sparendaam 06N49-58W10 + HNG: Jaszbereny 47N35-19E52 + HOL: Flevo 52N21-05E27 + HRV: Deanovec 45N41-16E27 + HWA: Naalehu 19N02-155W40 + AFRTS: Pearl Harbour 21N25-158W09 + I: RAI,VoM: Roma (Prato Smeraldo) 41N48-12E31 + IRRS: unknown. Formerly Milano 45N27-09E11 + IND: a-Aligarh 28N00-78E06 + b-Bengaluru-Doddaballapur (Bangalore) 13N14-77E13 + c-Chennai(ex Madras) 13N08-80E07 + d-Delhi (Kingsway) 26N45-77E12 + g-Gorakhpur 23N52-83E28 + k-Delhi(Khampur) 28N43-77E38 + m-Mumbai (ex Bombay) 19N11-72E49 + p-Panaji (ex Goa) 15N28-73E51 + w-Guwahati 26N11-91E50 + 594,1134-Kolkata(Calcutta)-Chinsurah + 702-Jalandhar + 1053-Tuticorin + 1071-Rajkot + Regional Stations: + Aizawl(10kW):23N43-92E43 + Bhopal(50kW):23N10-77E38 + Chennai(50kW):13N08-80E07 + Delhi(Kingsway)(50kW):26N45-77E12 + Gangtok(10kW):27N22-88E37 + Guwahati(50kW):26N11-91E50 + Hyderabad(50kW):17N20-78E33 + Imphal(50kW):24N37-93E54 + Itanagar(50kW):27N04-93E36 + Jaipur(50kW):26N54-75E45 + Jammu(50kW):32N45-75E00 + Jeypore(50kW):18N55-82E34 + Kohima(50kW):25N39-94E06 + Kolkata(Calcutta)(50kW):22N27-88E18 + Kurseong(50kW):26N55-88E19 + Leh(10kW):34N08-77E29 + Lucknow(50kW):26N53-81E03 + Mumbai(50kW):19N11-72E49 + Port Blair-Brookshabad(5kW):11N37-92E45 + Ranchi(50kW):23N24-85E22 + Shillong(50kW):25N26-91E49 + Shimla(50kW):31N00-77E05 + Srinagar(50kW):34N00-74E50 + Thiruvananthapuram(Trivendrum)(50kW):08N29-76E59 + INS: Jakarta (Cimanggis) 06S12-106E51 + IRN: a-Ahwaz 31N20-48E40 + k-Kamalabad 35N46-51E27 + m-Mashhad 36N15-59E33 + s-Sirjan 29N27-55E41 + z-Zahedan 29N28-60E53 + ISL: Reykjavk 64N05-21W50 + ISR: Yavne 31N52-34E45 + J: Yamata 36N10-139E50 except: + c-Chiba(Tokyo-Nagara) + n-Nemuro(Sapporo) + JOR: Al Karanah 31N44-36E26 + KAZ: Almaty (Alma Ata, Dmitrievka) 43N17-77E00 + k-Karaturuk 43N39-77E56 + KGZ: Bishkek 42N54-74E37 + KOR: Kimjae 35N50-126E50 except: + g-Goyang, Gyeonggi-do + h-Hwasung 37N13-126E47 + p-Gimpo, Gyoenggi-do + KRE: c-Chongjin/Haeju 41N47-129E50 + e-Hyesan 41N04-128E02 + h-Hamhung 39N56-127E39 + k-Kanggye 40N58-126E36 + p-Pyongyang 39N05-125E23 + s-Sariwon 38N05-125E08 + u-Kujang 40N05-125E05 + w-Wonsan 39N05-127E25 + y-Pyongsong 40N05-124E24 + KWT: Sulaibiyah 29N10-47E45 + LAO: Vientiane 17N58-102E33 + LTU: Sitkunai 55N02-23E49 http://www.geocities.com/ratekona/sit + LUX: Junglinster 49N43-06E15 + LVA: Ulbroka 56N56-24E17 + MCO: Mont Angel/Fontbonne 43N44-07E26 + MDA: Maiac near Grigoriopol 47N14-29E24 + MDG: Talata Volonondry 18S43-47E37 + MLA: ka-Kajang 03N01-101E46 except: + kk-Kota Kinabalu 06N12-116E14 + ku-Kuching 01N33-110E20 + s-Sibu 02N18-111E49 + MLI: Bamako 12N39-08W01 + MNG: Ulaanbaatar 47N55-107E00 + MRA: RFA/RL/VoA: Tinian 15N03-145E36 except: + s-Saipan (Agingan Point) 15N07-145E42 + KFBS: Marpi, Saipan 15N16-145E48 + MRC: VoA/RL/RFE:Briech 35N34-05W58 + RTM:Tanger 35N48-05W55 except n-Nador 35N03-02W55 + Medi-1: Nador 35N03-02W55 + NOR: k-Kvitsoy 59N04-05E27 + s-Sveio 59N37-05E19 + NZL: Rangitaiki 38S50-176E25 + OMA: Radio Oman: t-Thumrait 17N38-53E56 + s-Seeb 23N40-58E10 + BBC: A'Seela 21N57-59E27 + PAK: Islamabad 33N27-73E12 except: + p-Peshawar 34N00-71E30 (10kW) + q-Quetta 30N15-67E00 (10kW) + r-Rawalpindi 33N30-73E00 (10kW) + PAL: Medorn 07N22-134E28 + PHL: RL/Voa: Tinang 15N21-120E37 except: + x-Tinang-2(portable) 15N21-120E38 (50kW) + 1143-Poro 16N26-120E17 + FEBC: Bocaue 14N48-120E55 except: + i-Iba 15N22-119E57 + RVA, R Vaticana: Palauig,Zembales 15N28-119E50 + DUR2 9581: 14N41-120E59 + POL: Warszawa 52N04-20E52 + POR: DW: Sines 37N57-08W45 (3 x 250kW) + RdP: Sao Gabriel(Lisboa) 38N45-08W40 except s-Sines. + PTR: Roosevelt Roads 18N23-67W11 + ROU: t-Tiganesti 44N42-26E06 except: + g-Galbeni 46N44-26E50 + s-Saftica 50kW + RUS: a-Armavir/Tblisskaya/Krasnodar 45N00-40E49 + ar-Arkhangelsk 64N30-40E30 + b-Blagoveshchensk (Amur) 50N16-127E30 + c-Chita (Atamanovka) (S Siberia) 51N50-113E43 + e-Ekaterinburg (S Ural) 56N55-60E36 + i-Irkutsk (Angarsk) (S Siberia) 52N18-104E18 + k-Kaliningrad-Bolshakovo 54N54-21E43 + ka-Komsomolsk-na-Amur (Far East) 50N39-136E55 + kh-Khabarovsk (Far East) 48N33-135E15 + kr-Krasnoyarsk 56N01-92E54 + ku-Kurovskaya-Avsyunino (near Moscow) 55N34-39E09 + m-Moscow/Moskva 55N45-37E18 + ma-Magadan + mu-Murmansk 68N58-32E46 + n-Novosibirsk (Oyash) 55N31-83E45 except for DW: + Novosibirsk City 55N04-82E58 + p-Petropavlovsk-Kamchatskij (Yelizovo) 52N59-158E39 + s-Samara (Zhygulevsk) 53N17-50E15 + se-Serpukhov [actually Noginsk but Noginsk closed with start of A03] 54N54-37E25 + sp-St.Petersburg (Popovka/Krasnyj Bor) 59N39-30E42 + t-Taldom - Severnyj (near Moscow) 56N44-37E38 + u-Ulan-Ude + v-Vladivostok (Razdolnoye) 43N32-131E57 + ya-Yakutsk/Tulagino 62N01-129E48 + ys-Yuzhno-Sakhalinsk (Vestochka) 46N55-142E54 + RRW: Kigali 01S53-30E07 (4 x 250kW) + S: Hoerby 55N49-13E44 + SEY: Mahe 04S36-55E28 + SNG: Kranji 01N25'23"-103E43'57" + Mediacorp 01N25'20"-103E43'30" + SRB: s-Stubline 44N34-20E09 + SRL: SLBS: Goderich 08N30-13W14 + STP: Pinheira 00N18-06E46 + SVK: Rimavska Sobota 48N23-20E00 + SWZ: Manzini 26S34-31E59 + SYR: Adra 33N27-36E30 + TCD: N'Djamena-Gredia 12N08-15E03 + THA: RL/R.THA/VoA: Udon Thani 17N25-102E48 except: + b-Bangkok / Prathum Thani(1575,4830,6070,7115) 13N47-100E30 + BBC: Nakhon Sawan 15N49-100E04 + TJK: y-Yangi Yul (Dushanbe) 38N29-68E48 + o-Orzu 37N32-68E42 + TUN: Sfax 34N48-10E53 + TUR: Emirler 39N29-32E51 except + c-Cakirlar 39N58-32E40 + TWN: h-Huwei 23N43-120E25 + k-Kouhu 23N35-120E10 + m-Minhsiung 23N29-120E27 + n-Tainan 23N11-120E38 + p-Paochung 23N43-120E18 + s-Tanshui 25N13-121E29 + t-Taipei (Pali) 25N05-121E27 + UAE: Dhabbiya 24N11-54E14 except m-Makta 24N21-54E34 + UAE R Dubai: Dubai 25N14-55E16 + UKR: Kiev/Brovary 50N31-30E46 except: + L-Lviv (Krasne) (Russian name: Lvov) 49N51-24E40 + m-Mykolaiv (Kopani) (Russian name:Nikolayev) 46N49-32E14 + x-Kharkiv (Taranivka) (Russian name: Kharkov) 49N38-36E07 + z-Zaporizhzhya + 657-Chernivtsi. 936-Krasne. + USA: c-Cypress Creek, SC 32N41-81W08 + d-Delano, CA 35N45-119W10 + g-Greenville, NC 35N35-77W22 + k-Key Saddlebunch, FL 24N34-81W45 + m-via WRMI (see below) + o-Okeechobee, FL 27N28-80W56 + w-via WWCR (see below) + KAIJ: Dallas, TX 33N13-96W52 + KJES: Vado, NM 32N08-106W35 + KTBN: Salt Lake City, UT 40N39-112W03 + KVOH: Los Angeles (Rancho Simi), CA 34N15-118W38 + WBCQ: Monticello, ME 46N20-67W50 + WBOH: Newport, NC 34N47-76W56 + WEWN: Birmingham (Vandiver), AL 33N30-86W28 + WGTG: McGaysville, GA 34N58-84W22 + WHRA: Greenbush, ME 45N08-68W34 + WHRI: Cypress Creek, SC 32N41-81W08 + WINB: Red Lion (York), PA 39N54-76W35 + WJIE: Millerstown, KY 37N26-86W02 + WMLK: Bethel, PA 40N29-76W17 + WRMI: Miami (Hialeah Gardens), FL 25N54-80W22 + WRNO: New Orleans, LA 29N50-90W07 + WTJC: Newport, NC 34N47-76W53 + WYFR: Okeechobee, FL 27N28-80W56 + WWBS: Macon, GA 32N50-83W38 + WWCR: Nashville, TN 36N13-86W54 + WWRB: Manchester / Morrison, TN 35N29-86W02 + UZB: Tashkent 41N13-69E09 + VTN: Sontay 21N12-105E22 except: + b-Buon Me Thuot 12N41-108E03 + h-Hanoi-Me Tri 21N01-105E47 + x-Xuan Mai 20N43-105E33 + YEM: a-Al Hiswah/Aden 12N50-45E02 + s-Sanaa 15N22-44E11 + diff --git a/SDRSharper/bin/x64/Release/eibi.csv b/SDRSharper/bin/x64/Release/eibi.csv new file mode 100644 index 0000000..bbb454d --- /dev/null +++ b/SDRSharper/bin/x64/Release/eibi.csv @@ -0,0 +1,41310 @@ +FMSCAN userlist available at http://fmscan.org/perseus.php,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +(c) www.mwlist.org ,,,,,,,,,,,,,,,,,,,,,, +*** THIS FILE IS FOR PERSONAL USE ONLY, NOT FOR PUBLICATION ***,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +userlist1.txt file ordered by frequency and signal strength prediction for user location (06e25/52n07) on 19 Mar 2014,,,,,,,,,,,,,,,,,,,,,, +Put it into your Perseus folder and rename it to userlist1.txt or userlist2.txt (userlist.txt for software versions below 4.0),,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +this list contains combined and modified data from AMLIST (MW), EiBi, TBL (Tropical Band List) and HFCC (SW),,,,,,,,,,,,,,,,,,,, +FMSCAN developed by Peer-Axel Kroeske, DL2LBP (peeraxel@aol.com),,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +please support AMLIST.ORG by reporting new stations and submitting logs,,,,,,,,,,,,,,,,,,,,,, +on the world log map,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +MW prediction for nighttime (24h local),,,,,,,,,,,,,,,,,,,,,, +SW prediction for strongest moment within transmission time,,,,,,,,,,,,,,,,,,,,,, +Time values 0001*2359 indicate that schedule times are unknown,,,,,,,,,,,,,,,,,,,,,, +"offsets are without KHz value. ""99937"" at 1440 KHz stands for 1439.99937 KHz",,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,, +0:freq,1:lang,,3:prog,4:mod,5:loca,6:lat,7:lon,,9:pow,,11:dist,,,,15:TIME,16:DAYS,,18:extra,,,, +===================================================================================,,,,,,,,,,,,,,,,,,,,,, +11.904761,RUS,,Alpha/RSDN-20,b,Krasnodar (RSDN-20) (KD),45.403406,38.158108,,0.025,,2421,95,97,,,,-11.904761,,6700087,,, +11.904761,RUS,,Alpha/RSDN-20,b,Novosibirsk (RSDN-20) (NS),55.756111,84.447889,,0.025,,4850,53,121,,,,-11.904761,,6700084,,, +11.904761,RUS,,Alpha/RSDN-20,b,Khabarovsk (RSDN-20) (KH),50.072319,136.609489,,0.025,,7724,32,150,,,,-11.904761,,6700086,,, +12.648809,RUS,,Alpha/RSDN-20,b,Krasnodar (RSDN-20) (KD),45.403406,38.158108,,0.025,,2421,95,97,,,,-12.648809,,6700089,,, +12.648809,RUS,,Alpha/RSDN-20,b,Novosibirsk (RSDN-20) (NS),55.756111,84.447889,,0.025,,4850,53,121,,,,-12.648809,,6700090,,, +12.648809,RUS,,Alpha/RSDN-20,b,Khabarovsk (RSDN-20) (KH),50.072319,136.609489,,0.025,,7724,32,150,,,,-12.648809,,6700088,,, +14.880952,RUS,,Alpha/RSDN-20,b,Krasnodar (RSDN-20) (KD),45.403406,38.158108,,0.025,,2421,95,97,,,,-14.880952,,6700093,,, +14.880952,RUS,,Alpha/RSDN-20,b,Novosibirsk (RSDN-20) (NS),55.756111,84.447889,,0.025,,4850,53,121,,,,-14.880952,,6700092,,, +14.880952,RUS,,Alpha/RSDN-20,b,Khabarovsk (RSDN-20) (KH),50.072319,136.609489,,0.025,,7724,32,150,,,,-14.880952,,6700094,,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,0000-0200,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,0400-0600,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,0800-1000,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,1200-1400,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,1600-1800,1234567,-16.4,FSK, 200 Bd,86009,, +16.4,NOR,,JXN,b,Gildeskl/Novik (no),66.982778,13.873056,,45,,1704,11,58,,2000-2200,1234567,-16.4,FSK, 200 Bd,86009,, +17.2,S,,SAQ,b,Grimeton (ha),57.105556,12.390278,,0.025,,675,32,80,,0800-1000,9999999,-17.2,temporary, special transmission 24.12,86011,, +18.1,RUS,,RDL,b,Arkhangelsk (AR),64.360492,41.568489,,0.025,,2420,42,97,,,,-18.1,MIL HQ Moskva VLF network,6700079,,, +18.1,RUS,,RDL,b,Krasnodar (KD),45.403403,38.158111,,0.025,,2421,95,97,,,,-18.1,MIL HQ Moskva VLF network,6700077,,, +18.1,RUS,,RDL,b,Nizhny Novgorod (NN),56.172861,43.933833,,0.025,,2454,64,98,,,,-18.1,MIL HQ Moskva VLF network,6700078,,, +18.1,RUS,,RDL,b,several tx sites,61.2,99.9,,0.025,,5299,41,126,,,,-18.1,,86014,,, +18.2,IND,,VTX3,b,South Vijayanarayanam (TN),8.387033,77.752761,,0.025,,8003,100,153,,,,-18.2,MSK/INN,86015,,, +18.3,F,,HWU,b,Rosnay (36),46.713056,1.244444,,400,,707,214,38,,,,-18.3,French Navy, M,86016,, +18.9,RUS,,RDL,b,Moskva VLF network (MV),61.2,99.9,,0.025,,5299,41,126,,,,-18.9,,86018,,, +19.2,IND,,VTX4,b,South Vijayanarayanam (TN),8.387033,77.752761,,0.025,,8003,100,153,,,,-19.2,,32200020,,, +19.6,G,,GQD,b,Anthorn (EN-CUM),54.911289,-3.281372,,30,,712,300,49,,,,-19.6,FSK,86019,,, +19.8,AUS,,NWC,b,Exmounth/NCS Harold E. Holt (WA),-21.816111,114.165278,,1000,,13104,90,127,,,,-19.8,,86020,,, +20.2,J,,JJI,b,Ebino/JMSDF (kyu-miy),32.084444,130.827778,,0.025,,9209,45,160,,,,-20.2,Japanese Navy, FSK,86022,, +20.3,I,,ICV,b,Isola di Tavolara (ot),40.923133,9.731,,0.025,,1269,167,86,,,,-20.3,,86023,,, +20.5,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,300,,2420,42,57,,0841-0847,1234567,-20.5,Beta time signal,86027,,, +20.5,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,300,,2454,64,57,,0441-0447,1234567,-20.5,Beta time signal,86028,,, +20.5,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,300,,2551,95,58,,1031-1041,1234567,-20.5,Beta time signal,86024,,, +20.5,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0641-0647,1234567,-20.5,,86026,,, +20.5,RUS,,RAB99,b,Khabarovsk (KH),48.485833,134.820139,,300,,7811,33,110,,,,-20.5,Beta time signal,6700074,,, +20.5,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,0.025,,4955,74,123,,0341-0347,1234567,-20.5,Beta time signal,34300001,,, +20.5,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,0.025,,4955,74,123,,0941-0947,1234567,-20.5,Beta time signal,34300001,,, +20.9,F,,HWU,b,Rosnay (36),46.713056,1.244444,,400,,707,214,38,,,,-20.9,French Navy, M,86030,, +20.9,F,,FTA20/HWU,b,Sainte-Assise (77),48.544722,2.578333,,0.025,,481,216,78,,,,-20.9,,86029,,, +21.1,RUS,,RDL,b,Krasnodar (KD),45.403403,38.158111,,0.025,,2421,95,97,,,,-21.1,MIL HQ Moskva VLF network,6700076,,, +21.1,RUS,,RDL,b,several tx sites,61.2,99.9,,0.025,,5299,41,126,,,,-21.1,,86031,,, +21.4,HWA,,NPM,b,Lualualei (HI),21.420139,-158.150944,,0.025,,11702,345,169,,,,-21.4,MSK,86033,,, +21.75,F,,HWU,b,Rosnay (36),46.713056,1.244444,,0.025,,707,214,80,,,,-21.75,French Navy, M, ex 21.8,86034, +22.1,G,,GQD,b,Anthorn (EN-CUM),54.911289,-3.281372,,0.025,,712,300,80,,,,-22.1,,86035,,, +22.2,J,,JJI,b,Ebino/JMSDF (kyu-miy),32.084444,130.827778,,200,,9209,45,121,,,,-22.2,Japanese Navy, FSK,86036,, +22.6,F,,HWU,b,Rosnay (36),46.713056,1.244444,,0.025,,707,214,80,,,,-22.6,French Navy, M,86037,, +23,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0635-0641,1234567,,,86040,,, +23,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,0.025,,2420,42,97,,0835-0841,1234567,,Beta time signal,86041,,, +23,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,0.025,,2551,95,98,,1026-1031,1234567,,Beta time signal,86038,,, +23,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,0.025,,2454,64,98,,0435-0441,1234567,,Beta time signal,86042,,, +23,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,0.025,,4955,74,123,,0335-0341,1234567,,Beta time signal,34300002,,, +23,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,0.025,,4955,74,123,,0935-0941,1234567,,Beta time signal,34300002,,, +23,RUS,,RAB99,b,Khabarovsk (KH),48.485833,134.820139,,0.025,,7811,33,151,,,,,Beta time signal,6700075,,, +23.4,D,,DHO38,x,Rhauderfehn Marinefunksendestelle (nds),53.081944,7.616389,,1,,135,37,53,,0000-0700,1234567,-23.4,,86043,,, +23.4,D,,DHO38,x,Rhauderfehn Marinefunksendestelle (nds),53.081944,7.616389,,1,,135,37,53,,0800-2400,1234567,-23.4,,86043,,, +24,USA,,NAA,b,Cutler (ME),44.646394,-67.281069,,1800,,5267,292,77,,,,,US Navy, MSK s, FSK (F1B), 200 Bd,86045 +24.8,USA,,NLK,b,Jim Creek/Oso Wash (WA),48.203611,-121.917056,,1200,,7834,326,105,,,,-24.8,,86046,,, +25,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,300,,2420,42,57,,0800-0825,1234567,,N0N/A1A/A9,86051,,, +25,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,300,,2420,42,57,,0825-0830,1234567,,N0N/A1A/A9,86051,,, +25,RUS,,RJH77,b,Arkhangelsk (AR),64.360492,41.568489,,300,,2420,42,57,,0830-0835,1234567,,N0N/A1A/A9,86051,,, +25,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,300,,2454,64,57,,0400-0425,1234567,,SENDING 6,86052,,, +25,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,300,,2454,64,57,,0425-0430,1234567,,SENDING 6,86052,,, +25,RUS,,RJH90,b,Nizhny Novgorod (NN),56.172861,43.933833,,300,,2454,64,57,,0430-0435,1234567,,SENDING 6,86052,,, +25,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,300,,2551,95,58,,1000-1020,1234567,,Beta time signal,86048,,, +25,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,300,,2551,95,58,,1020-1023,1234567,,Beta time signal,86048,,, +25,RUS,,RJH63,b,Krasnodar (KD),44.773611,39.547297,,300,,2551,95,58,,1023-1026,1234567,,Beta time signal,86048,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0300-0325,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0325-0330,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0330-0335,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0900-0925,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0925-0930,1234567,,miskeyed RJH86,86049,,, +25,KGZ,,RJH66,b,Chaldovar (cuy),43.036236,73.614278,,300,,4955,74,82,,0930-0935,1234567,,miskeyed RJH86,86049,,, +25,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0600-0625,1234567,,,86050,,, +25,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0625-0630,1234567,,,86050,,, +25,BLR,,RJH69,b,Vileyka/Molodecno (MI),54.463611,26.778889,,0.025,,1374,71,87,,0630-0635,1234567,,,86050,,, +25,RUS,,RAB99,b,Khabarovsk (KH),48.485833,134.820139,,300,,7811,33,110,,,,,Beta time signal,86047,,, +25.2,USA,,NML4,b,Lamoure (ND),46.366014,-98.335544,,0.025,,6938,311,142,,0000-1200,.2.....,-25.2,US Navy; MSK s,86053,,, +25.2,USA,,NML4,b,Lamoure (ND),46.366014,-98.335544,,0.025,,6938,311,142,,0000-2400,1.34567,-25.2,US Navy; MSK s,86053,,, +25.2,USA,,NML4,b,Lamoure (ND),46.366014,-98.335544,,0.025,,6938,311,142,,1900-2400,.2.....,-25.2,US Navy; MSK s,86053,,, +26.7,TUR,,TBB,b,Denizky-Bafa TBB (ege-ayd),37.412722,27.323347,,0.025,,2307,127,96,,,,-26.7,MSK/ FSK +/- 2,86054,,, +27.3,RUS,,RDL,b,unknown,61.2,99.9,,0.025,,5299,41,126,,,,-27.3,,86055,,, +37.5,ISL,,NRK,b,Grindavk (sn),63.850378,-22.466772,,0.025,,2115,319,94,,,,-37.5,US Navy; 200bp,86056,,, +37.5,ISL,,TFK/NRK,b,Grindavk (sn),63.850378,-22.466772,,0.025,,2115,319,94,,,,-37.5,MSK,86057,,, +38,S,,SRC/SHR,b,Ruda (ka),57.120328,16.153083,,0.025,,838,44,81,,,,,MSK 50BD,160HZ,86058,, +40,J,,JJY,b,Ohtakadoya-yama (toh-fuk),37.3725,140.848889,,50,,9130,35,127,,,,,CW IDent H+15,86059,,, +40.8,G,,NST,b,Londonderry (NI-LDR),55.041667,-7.183333,,0.025,,953,295,83,,,,-40.8,MSK,86061,,, +40.8,PTR,,NAU,b,Aguada (PR),18.39875,-67.177433,,0.025,,7290,269,146,,,,-40.8,US Navy; FIB M,86060,,, +42.6,S,,SAS2,b,Varberg/Svenska Marinen (ha),57.125,12.236111,,0.025,,672,32,80,,,,-42.6,,86063,,, +45.9,I,,NSY,b,Niscemi (cl),37.125658,14.43635,,0.025,,1781,156,91,,,,-45.9,US Navy; 200bp,86065,,, +49,GRC,,SXA,b,Marathon (att-est),38.14515,24.019722,,0.025,,2067,132,94,,,,,,86069,,, +50,RUS,,RTZ,b,Irkutsk (IR),52.429944,103.685847,,10,,6081,48,108,,,,,Time signal, ID h+05,6700073,, +52,G,,GIY20,b,Oxford (EN-OXF),51.8,-1.183333,,0.025,,521,269,78,,,,,FAX/FSK 100 Hz,86071,,, +52,G,,GYW1,b,Crimond (SC-ABS),57.612222,-1.883889,,0.025,,809,322,81,,,,,F1B 85 Hz shif,86073,,, +52,G,,GNY1,b,Thurso/Forss (SC-HIL),58.588889,-3.633333,,0.025,,958,323,83,,,,,UK Royal Navy,86072,,, +53.4,TUR,,TBG,b,Canakkale TBG (mam-can),40.171569,26.409653,,0.025,,2022,123,93,,,,-53.4,FSK +/- 38 Hz,86074,,, +57.4,G,,GXH,b,Thurso/Forss (SC-HIL),58.588889,-3.633333,,0.025,,958,323,83,,,,-57.4,,86077,,, +57.4,ISL,,NRK,b,Grindavk (sn),63.850378,-22.466772,,0.025,,2115,319,94,,,,-57.4,US Navy; 200bp,86078,,, +60,G,,MSF,b,Anthorn (EN-CUM),54.911289,-3.281372,,17,,712,300,52,,,,,,86079,,, +60,USA,,WWVB,b,Fort Collins (CO),40.676694,-105.046639,,70,,7770,311,116,,,,,,86080,,, +60,J,,JJY,b,Hagana-yama (kyu-sag),33.465,130.175556,,50,,9046,45,127,,,,,CW IDent H+15,31400014,,, +61.8,XUE,,?,b,UNID - GIZ20 ??,,,-,,,?,?,400,,,,-61.8,,86081,,, +62.6,F,,FUG,b,La Rgine (11),43.388611,2.098333,,0.025,,1021,200,83,,,,-62.6,,2500017,,, +63.9,F,,FTA63,b,Sainte-Assise (77),48.544722,2.578333,,0.025,,481,216,78,,,,-63.9,,86082,,, +65.8,F,,FUE,b,Kerlouan (29),48.637694,-4.35075,,0.025,,854,247,82,,,,-65.8,,86083,,, +66.6,RUS,,RBU,b,Taldom (MO),56.733333,37.663333,,10,,2066,63,68,,,,-66.6,,86084,,, +68,G,,GBY20,b,Thurso/Forss (SC-HIL),58.588889,-3.633333,,0.025,,958,323,83,,,,,FSK (100Hz),86085,,, +68.5,CHN,,BPC,b,Lintong/Pucheng (SA),34.948639,109.542944,,20,,7813,58,122,,0800-1200,1234567,-68.5,Time signal,86067,,, +68.5,CHN,,BPC,b,Lintong/Pucheng (SA),34.948639,109.542944,,20,,7813,58,122,,2200-2330,1234567,-68.5,Time signal,86067,,, +72,AZE,,unid,b,Baku (bak),40.4,49.933333,,0.025,,3527,94,108,,,,,FSK,86087,,, +73.6,CAN,,CFH,b,Newport Corner/NRS (NS),44.967278,-63.982211,,0.025,,5036,290,123,,,,-73.6,,86088,,, +77.5,D,,DCF77,x,Mainflingen/PTB (hes),50.015556,9.010833,,50,,295,141,43,,,,-77.5,,86090,,, +81,G,,GYN2,b,Skelton (EN-CUM),54.731806,-2.883028,,0.025,,681,299,80,,,,,F1B 85 Hz shift,86091,,, +82.8,G,,GYB,b,London/Royal Navy (EN-GTL),51.475,0.002778,,0.025,,446,263,77,,,,-82.8,FSK 75/68,86092,,, +100,CHN,,BPL,b,Lintong/Pucheng (SA),34.948639,109.542944,,20,,7813,58,122,,1200-2200,1234567,,Time signal,36201274,,, +100,TJK,,HU,b,Dangara (ktl),38.083333,69.333333,,0.025,,5006,82,123,,,,,,34200005,,, +124.5,GRC,,SXJ,b,Kriti (krt),35.166667,25,,0.025,,2391,135,97,,,,-124.5,FSK,86095,,, +125,D,,DCF45,x,Mainflingen/PTB (hes),50.015,9.01,,1,,295,141,60,,,,,,86096,,, +129.1,D,,DCF49,x,Mainflingen/EFR (hes),50.015,9.01,,100,,295,141,40,,,,-129.1,,86098,,, +135.6,HNG,,HGA 22,b,Lakihegy/EFR-Telecontrol Szigetszentmikls (Pes),47.373056,19.004722,,100,,1045,115,48,,,,-135.6,ASCII 200/500,86099,,, +135.8,GRC,,SXV,b,Marathon (att-est),38.149553,24.023222,,0.025,,2067,132,94,,,,-135.8,FSK,86100,,, +135.9,XUU,,RTTY,b,Unknown RTTY Station,,,-,,,?,?,400,,,,-135.9,Steve Ratzlaf,86101,,, +137,FIN,,OH1LSQ,b,Vaasa,63.145833,21.541667,,0.025,,1514,30,88,,,,,,86102,,, +137.7,CAN,,VO1NA,b,Torbay (NL),47.666667,-52.733333,,1.2,,4147,287,98,,,,-137.7,Lowfer LF experiment,86106,,, +137.7,USA,,WD2XKO,b,Stanfield (NC),35.233333,-80.433333,,0.4,,6797,291,129,,,,-137.7,Lowfer,86108,,, +137.7,CAN,,VA3LK,b,Westport (ON),45.5,-75,,0.025,,5688,297,130,,,,-137.7,,86105,,, +137.7,USA,,WD2XGJ,b,Wayland/Tower Hill (MA),42.365278,-71.335556,,0.01,,5681,292,134,,2200-1300,1234567,-137.7,CW LowFER,86107,,, +137.7,NZL,,Q,b,Wellington/Quartz Hill (WGN),-41.25,174.690556,,0.025,,18517,41,191,,,,-137.7,120s dot DFCW,86104,,, +137.8,CAN,,MP,b,London (ON),42.983333,-81.25,,0.025,,6248,298,135,,,,-137.8,Operated by VE,86109,,, +137.8,USA,,WD2XFX,b,Glenpool (OK),35.95,-96,,0.18,,7685,302,141,,,,-137.8,CW LowFER,20016134,,, +137.8,CAN,,VY1JA,b,Whitehorse (YT),60.9375,-135.125,,0.025,,6989,340,143,,,,-137.8,,86111,,, +137.8,CAN,,TIL,b,Vancouver (BC),49.25,-123.133333,,0.025,,7779,328,151,,,,-137.8,,86110,,, +139,D,,DCF39,x,Burg/Brehm (san),52.288333,11.8975,,1,,374,85,61,,,,,,86113,,, +139,TUR,,TBA,b,Ankara ?,38.55,35,,0.025,,2668,113,100,,,,,FSK,86114,,, +145,LVA,,UKB/YLQ63,b,Riga (Rig),56.95,24.066667,,0.025,,1255,58,86,,,,,FSK,86115,,, +147.3,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,0000-2400,1234567,-147.3,,86118,,, +148,RUS,,UIW,f,Pevek (CK),69.666111,170.489889,,1,,6413,6,121,,0530-0730,1234567,,,6700137,,, +148,RUS,,UIW,f,Pevek (CK),69.666111,170.489889,,1,,6413,6,121,,1130-1330,1234567,,,6700137,,, +148,RUS,,UIW,f,Pevek (CK),69.666111,170.489889,,1,,6413,6,121,,1430-1630,1234567,,,6700137,,, +153,D,de,Deutschlandfunk,,Donebach (Mudau/Senderstrae) (bw),49.560278,9.176944,,250,090-130,344,144,37,,0000-2400,1234567,0,,9,,, +153,ALG,ar,Chane 1,,Kenadsa (Bchar) (8),31.57,-2.345,,2000,,2392,201,48,,0200-0100,1234567,,,8,,, +153,ALG,ar,R Algrie Int.,,Kenadsa (Bchar) (8),31.57,-2.345,,2000,,2392,201,48,,0100-0200,1234567,,,8,,, +153,ROU,ro,SRR Antena Satelor,,Braşov/Bod Colonie (BV),45.756167,25.607444,,200,,1564,109,50,,0400-2000,1234567,57,,11,,, +153,ROU,ro,SRR R Romnia Actualităţi,,Braşov/Bod Colonie (BV),45.756167,25.607444,,200,,1564,109,50,,2000-0400,1234567,57,,11,,, +153,NOR,no,NRK P1/NRK P2,,Ingy (fi),71.071667,24.087222,,100,,2286,16,60,,0000-2400,1234567,9995,,10,,, +162,F,fr,France Inter,,Allouis (18),47.171667,2.204722,,1000,,627,210,33,,0000-2400,1234567,0,,13,,, +164,MNG,mn,Mongoliin R 1,,Ulaanbaatar/Khonkhor (ulb),47.798522,107.187433,,500,,6617,50,96,,2138-1500,1234567,994,,47181,,, +166.5,USA,,WC2XSR/13,b,Jefferson (LA),29.966667,-90.15,,0.4,,7842,294,139,,,,-166.5,10s dot LowFER,86120,,, +171,MRC,,Mdi 1,,Nador (LW) (otl),35.041667,-2.920833,,1600,,2037,205,45,,0000-0400,1234567,1,,17,,, +171,MRC,,Mdi 1,,Nador (LW) (otl),35.041667,-2.920833,,1600,,2037,205,45,,0500-2400,1234567,1,,17,,, +171,RUS,ce,Rkanal Kavkaz,,Tbilisskaya (KD),45.485431,40.089333,,1200,,2549,93,52,,0300-0600,1234567,,,18,,, +171,RUS,ce,Rkanal Kavkaz,,Tbilisskaya (KD),45.485431,40.089333,,1200,,2549,93,52,,1200-1600,1234567,,,18,,, +172,AFG,,OKN,b,Kandahar (kan),31.499167,65.8525,,0.025,,5256,92,126,,,,,,11000011,,, +175.3,XUU,,P,b,Unknown,,,-,,,?,?,400,,,,-175.3,Jim Smith writ,86121,,, +177,D,de,Deutschlandr Kultur,,Zehlendorf (Oranienburg) (brb),52.795,13.385833,,500,,479,78,35,,0000-2400,1234567,2,,19,,, +182.2,USA,,BRO,b,Duluth (MN),46.783333,-92.1,,0.025,,6576,308,139,,,,-182.2,,86122,,, +183,D,fr,Europe 1,,Felsberg/Zum Sender (Sauberg) (saa),49.281111,6.677778,,2000,220,315,176,27,,0200-2300,1234567,25,,21,,, +183.2,USA,,PRK,b,Saratoga (CA),37.266667,-122.016667,,0.025,,8893,321,159,,,,-183.2,CW LowFER,86123,,, +183.3,USA,,PLI,b,Burbank (CA),34.183333,-118.316667,,0.025,,9023,317,160,,,,-183.3,PSK31; Operate,86124,,, +183.5,USA,,MEL,b,San Jose/686 N. 21st St, (CA),37.333333,-121.9,,0.025,,8881,321,159,,,,-183.5,CW LowFER,86125,, +184.3,USA,,XR,b,Friendsville (TN),35.766667,-84.133333,,0.025,,6987,294,143,,,,-184.3,,86126,,, +184.5,USA,,JDH,b,Bonaire (GA),32.55,-83.6,,0.025,,7214,291,145,,,,-184.5,,86127,,, +185.2,USA,,FAW,b,Riverton (UT),40.516667,-111.933333,,0.025,,8126,316,154,,,,-185.2,LOWFER,86128,,, +185.3,USA,,WA,b,Andover (MA),42.666667,-71.133333,,0.025,,5647,292,129,,,,-185.3,,86139,,, +185.3,USA,,WM,b,Ellsworth (NH),43.866667,-71.733333,,0.025,,5601,294,129,,,,-185.3,,86140,,, +185.3,USA,,TAG,b,Holden (MA),42.35,-71.866667,,0.025,,5716,292,130,,,,-185.3,,86134,,, +185.3,USA,,USA,b,Harwinton (CT),41.766667,-73.066667,,0.025,,5833,292,131,,,,-185.3,,86136,,, +185.3,USA,,VD,b,Burlington (CT),41.766667,-72.966667,,0.025,,5827,292,131,,,,-185.3,,86138,,, +185.3,USA,,TMO,b,New Berlin (NY),42.583333,-75.4,,0.025,,5920,295,132,,,,-185.3,,86135,,, +185.3,CAN,,MP,b,London (ON),42.983333,-81.25,,0.025,,6248,298,135,,,,-185.3,,86132,,, +185.3,USA,,NC,b,Stanfield (NC),35.233333,-80.433333,,0.025,,6797,291,141,,,,-185.3,,86133,,, +185.3,USA,,XGI,b,St. Francis (MN),45.4,-93.383333,,0.025,,6755,308,141,,,,-185.3,LOWFER,86141,,, +185.3,USA,,MO,b,Seneca (MO),36.85,-94.6,,0.025,,7528,302,148,,,,-185.3,LOWFER,86131,,, +185.3,USA,,COV,b,South Coffeyville (OK),36.994444,-95.616667,,0.025,,7574,303,149,,,,-185.3,,86129,,, +185.3,USA,,IP,b,Agricola (MS),30.8,-88.516667,,0.025,,7670,294,150,,,,-185.3,,86130,,, +185.3,USA,,UWL,b,Edmond (OK),35.65,-97.483333,,0.025,,7796,303,151,,,,-185.3,,86137,,, +185.5,USA,,RLD,b,Stanfield (NC),35.233333,-80.433333,,0.025,,6797,291,141,,,,-185.5,,86142,,, +186.5,USA,,SMV,b,Simi Valley (CA),34.266667,-118.783333,,0.025,,9036,317,160,,,,-186.5,20080930 - Hea,86143,,, +186.7,USA,,LEK,b,Aitkin (MN),46.533333,-93.716667,,0.025,,6683,309,140,,,,-186.7,,86144,,, +186.8,USA,,SJ,b,East Haven (CT),41.3,-72.866667,,0.025,,5854,292,132,,,,-186.8,,86145,,, +187.3,CAN,,VO1NA,b,Torbay (NL),47.666667,-52.733333,,1.2,,4147,287,98,,,,-187.3,Lowfer LF experiment,86146,,, +187.4,USA,,WMS,b,Jacksonville (AR),34.866667,-92.116667,,0.025,,7549,299,148,,,,-187.4,,86147,,, +188.8,CAN,,EAR,b,Saltford (ON),43.75,-81.683056,,0.025,,6217,299,135,,,,-188.8,,86148,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,0000-0700,12345..,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,0000-1615,.....67,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,0900-1400,12345..,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1600-1615,12345..,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1930-1945,.....67,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1930-1945,12345..,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,2200-2400,.....67,6,,24,,, +189,ISL,is,RV Rs 1,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,2200-2400,12345..,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,0700-0900,12345..,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1400-1600,12345..,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1615-1930,.....67,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1615-1930,12345..,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1945-2200,.....67,6,,24,,, +189,ISL,is,RV Rs 2,,Gufusklar (Hellissandur) (ve),64.907378,-23.922372,,300,,2227,321,55,,1945-2200,12345..,6,,24,,, +189.3,USA,,TH,b,Colts Neck (NJ),40.283333,-74.166667,,0.025,,6011,292,133,,,,-189.3,,86149,,, +189.5,USA,,XMGR,b,Helena (AL),33.3,-86.85,,0.025,,7357,294,147,,,,-189.5,,86150,,, +194,USA,,TUK,b,Nantucket (MA),41.270833,-70.208333,,0.025,,5687,290,130,,,,,U411 ,86838,,, +195,CAN,,4Z,b,Solitare Platform (Sable Island) (NS),44.5625,-61.208333,,0.025,,4883,288,122,,,,,L400 U400 ,86251,,, +195,RUS,,F,b,Vladivostok / Knevichi (PM),43.395833,132.125,,0.025,,8188,38,155,,,,,,80001,,, +196,CHN,,OR,b,Beijing (BJ),40.104167,116.625,,0.025,,7756,50,151,,,,,,80002,,, +198,G,en,BBC R 4,,Droitwich/Mast A-B (EN-WOR),52.2955,-2.106,,500,,580,275,36,,0600-0100,1234567,0,,30,,, +198,G,en,BBC WS,,Droitwich/Mast A-B (EN-WOR),52.2955,-2.106,,500,,580,275,36,WEu,0100-0600,1234567,0,,30,,, +198,ALG,ar,Chane 1,,Berkaoui (Ouargla) (30),31.918056,5.076667,,2000,,2248,183,47,,0000-2400,1234567,,,26,,, +198,G,en,BBC R 4,,Westerglen (SC-STL),55.975556,-3.816111,,50,,793,307,48,,0600-0100,1234567,0,,29,,, +198,G,en,BBC WS,,Westerglen (SC-STL),55.975556,-3.816111,,50,,793,307,48,WEu,0100-0600,1234567,0,,29,,, +198,G,en,BBC R 4,,Burghead (SC-MOR),57.698083,-3.469778,,50,,884,318,49,,0600-0100,1234567,0,,28,,, +198,G,en,BBC WS,,Burghead (SC-MOR),57.698083,-3.469778,,50,,884,318,49,WEu,0100-0600,1234567,0,,28,,, +198,G,en,BBC R 4,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0600-0100,1234567,,,27,,, +198,G,en,BBC WS,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,WEu,0100-0600,1234567,,,27,,, +198,USA,,DIW,b,Dixon (NC),34.5625,-77.458333,,2,,6659,289,121,,,,995,L1042 U1039 10.5s,80003,,, +198,UZB,,N,b,Termez (sux),37.293056,67.336667,,0.025,,4927,84,122,,,,,,34500011,,, +199,USA,,GAO,b,Galliamo (LA),29.4375,-90.291667,,0.025,,7896,294,152,,,,1,L1036 U1039 7818s,80004,,, +200,CAN,,YAQ,b,Kasabonika (ON),53.520833,-88.625,,0.05,,5888,312,129,,,,,L385 U392 10.2s,DAID,80015,, +200,CAN,,UAB,b,Anahim Lake (BC),52.395833,-125.208333,,1,,7549,331,132,,,,0,L405 U408 10.3s,DAID,80014,, +200,USA,,HXF,b,Hartford (WI),43.354167,-88.375,,0.025,,6638,303,139,,,,0,L1021 U1021 6528s,80011,,, +200,CAN,,YDL,b,Dease Lake (BC),58.4375,-129.958333,,0.025,,7107,336,144,,,,,U410 10.08s,DAID,80016,, +200,CAN,,YJ,b,Victoria (BC),48.645833,-123.375,,0.1,,7846,327,145,,,,,U401 10.3s,DAID,80017,, +200,CAN,,5M,b,Sparwood / Elk Valley (BC),49.854167,-114.875,,0.025,,7402,323,147,,,,0,L1040 U1040 8.14s,DAID,80005,, +200,PRG,,CDE,b,Ciudad del Este (apa),-25.479167,-54.875,,1,,10474,233,149,,,,,8s,80007,,, +200,USA,,AOC,b,Arco (ID),43.604167,-113.375,,0.049,,7910,318,149,,,,,,86839,,, +200,B,,DAD,b,Diadema (SP),-23.6875,-46.625,,0.2,,9873,227,154,,,,,,80009,,, +200,AUS,,CKL,b,Clackline (WA),-31.6875,116.541667,,0.025,,14063,97,176,,,,,U1022 ,80008,,, +200,AUS,,MPA,b,Minnipa (SA),-32.854167,135.125,,0.025,,15418,83,181,,,,,,80012,,, +200,AUS,,TIB,b,Tibooburra (NSW),-29.4375,142.041667,,0.025,,15609,73,181,,,,,L1200 8s,86252,,, +200,AUS,,REN,b,Renmark (SA),-34.1875,140.708333,,0.025,,15897,79,182,,,,,,80013,,, +200,AUS,,HBA,b,Hervey Bay (QLD),-25.3125,152.875,,0.015,,15917,56,185,,,,,L1020 U1020 10s,80010,,, +200,AUS,,CBB,b,Coonabarabran (NSW),-31.3125,149.291667,,0.015,,16229,67,186,,,,,L400 U400 8s,80006,,, +201,CAN,,GL,b,La Grande Riviere (QC),53.645833,-77.708333,,0.5,,5305,307,113,,,,,U410 10.2s,DAID,80023,, +201,CAN,,RI,b,Rivire-du-Loup (QC),47.770833,-69.541667,,0.2,,5204,297,116,,,,,U423 9882s,DAID,80028,, +201,CAN,,YIF,b,Saint-Augustin (QC),51.1875,-58.625,,0.025,,4334,295,116,,,,,U393 10.0s,80030,,, +201,CAN,,ZYD,b,Reserve Mines Sydney (NS),46.229167,-60.041667,,0.025,,4704,290,120,,,,,,DAID,80039,, +201,CAN,,YKX,b,Kirkland Lake (ON),48.229167,-79.875,,0.2,,5787,303,122,,,,,U410 10123s,DAID,80031,, +201,CAN,,YAQ,b,Kasabonika (ON),53.520833,-88.625,,0.05,,5888,312,129,,,,,,86848,,, +201,CAN,,ZDV,b,Valois / Dorval (QC),45.4375,-73.791667,,0.025,,5619,296,129,,,,,U403 10.17s,DAID,80033,, +201,CAN,,U,b,London (ON),42.979167,-81.125,,0.05,,6241,298,132,,,,,U1000 ,86845,,, +201,CAN,,ZXD,b,Blatchford / Edmonton (AB),53.479167,-113.541667,,0.25,,7021,325,133,,,,108,U410 10242s,DAID,80037,, +201,CAN,,YVZ,b,Deer Lake (ON),52.645833,-94.041667,,0.025,,6223,314,135,,,,,U393 10.45s,DAID,80032,, +201,CAN,,ZXU,b,Thames London (ON),42.979167,-81.125,,0.025,,6241,298,135,,,,,U397 10.46s,DAID,80038,, +201,USA,,MNN,b,Marion (OH),40.604167,-83.041667,,0.025,,6538,297,138,,,,,L1025 U1041 ,86843,,, +201,CAN,,M,b,Fort McMurray (AB),56.645833,-111.125,,0.025,,6649,326,139,,,,,,86842,,, +201,CAN,,N,b,Downs / Winnipeg (MB),49.979167,-97.291667,,0.025,,6592,313,139,,,,,U395 ,DAID,86844,, +201,CAN,,ZMC,b,Clearwater/Fort McMurray (AB),56.645833,-111.125,,0.025,,6649,326,139,,,,,U387 ,80034,,, +201,CAN,,ZWN,b,Downs Winnipeg (Snowhill) (MB),49.979167,-97.291667,,0.025,,6592,313,139,,,,0,L380 U392 10352s,DAID,80036,, +201,CAN,,X,b,Saskatoon (AB),52.104167,-106.625,,0.025,,6853,320,142,,,,,U385 ,DAID,86846,, +201,CAN,,ZSK,b,Moonlake / Saskatoon (SK),52.104167,-106.625,,0.025,,6853,320,142,,,,,U386 10.5s,DAID,80035,, +201,USA,,DED,b,Deland (FL),29.0625,-81.291667,,0.025,,7352,287,146,,,,,,86840,,, +201,USA,,CE,b,Kobra Crestview (FL),30.854167,-86.541667,,0.025,,7541,292,148,,,,,L395 U398 6207s,80020,,, +201,USA,,APF,b,Naples (FL),26.145833,-81.791667,,0.025,,7627,285,149,,,,,,80018,,, +201,USA,,BV,b,Dewie Bartlesville (OK),36.854167,-96.041667,,0.025,,7611,303,149,,,,2,L1037 U1040 5773s,80019,,, +201,USA,,CZE,b,Clarksville (AR),33.479167,-93.458333,,0.025,,7746,299,150,,,,7,L1018 U1015 5.97s,80022,,, +201,USA,,MNE,b,Minden (LA),32.645833,-93.291667,,0.025,,7807,298,151,,,,2,L1026 U1030 7657s,80026,,, +201,USA,,GV,b,Major Greenville (TX),33.145833,-96.041667,,0.025,,7928,300,152,,,,2,L1050 U1027 5.6s,80024,,, +201,USA,,ETO,b,Silsbee (FL),30.354167,-94.125,,0.025,,8054,297,154,,,,,,86841,,, +201,USA,,PEN,b,Karpen Astoria (OR),46.145833,-123.625,,0.025,,8097,326,154,,,,0,L1028 U1028 8.0s,80027,,, +201,USA,,IP,b,Mobile (AZ),33.104167,-112.375,,0.025,,8833,312,159,,,,1,L1030 U1032 4.2s,80025,,, +201,CTR,,COT,b,Cota 47 (pta),8.5625,-83.041667,,0.025,,9220,275,160,,,,0,L1029 U1028 4771s,80021,,, +201,PRU,,RIO,b,Rioja (sam),-6.020833,-77.125,,0.025,,10097,261,163,,,,,U1055 ,80029,,, +202,CAN,,3C,b,La Prise Creek (BC),57.354167,-122.041667,,0.05,,6973,332,140,,,,,U410 ,86849,,, +202,CHN,,OD,b,Sanyuan (SA),34.604167,108.958333,,0.05,,7808,59,148,,,,,,80041,,, +202,AFS,,JB,b,Johannesburg (GT),-26.0625,28.291667,,0.08,,8950,160,154,,,,0,L1152 U1152 6.19s,80040,,, +203,CAN,,KL,b,Schefferville (QC),54.854167,-66.875,,1,,4633,304,103,,,,,U409 10.2s,DAID,80046,, +203,CAN,,T,b,Thompson (MB),55.770833,-97.875,,0.025,,6165,319,135,,,,,U385 ,DAID,86853,, +203,CAN,,ZZZ,b,Nicklebelt Thompson (MB),55.770833,-97.875,,0.025,,6165,319,135,,,,,U400 10.4s,DAID,86854,, +203,USA,,BXR,b,Big Doctor Siren (WI),45.8125,-92.375,,0.025,,6668,307,140,,,,,U1025 ,86851,,, +203,USA,,PVB,b,Platteville (WI),42.6875,-90.458333,,0.025,,6810,304,141,,,,999,L1028 U1018 6013s,80048,,, +203,USA,,AB,b,Reney Aberdeen (SD),45.395833,-98.291667,,0.025,,7016,310,143,,,,0,L1032 U1035 6072s,80042,,, +203,USA,,MWM,b,Windom (MN),43.895833,-95.125,,0.025,,6972,307,143,,,,994,L1008 U1018 7275s,80047,,, +203,USA,,DMZ,b,Dickson (TN),36.145833,-87.458333,,0.025,,7161,297,145,,,,,U1026 5.8s,80044,,, +203,CAN,,ZKI,b,Kitimat (BC),54.0625,-128.708333,,0.025,,7500,333,148,,,,,U403 9.8s,DAID,80053,, +203,USA,,RED,b,Red Lodge (MT),45.229167,-109.291667,,0.025,,7574,317,149,,,,984,L1040 U1008 3.1s,Cont. ID,80049,, +203,CAN,,YBL,b,Campbell River (BC),50.020833,-125.375,,0.025,,7785,329,151,,,,1,L381 U380 10.5s,DAID,80052,, +203,USA,,AVK,b,Alva (OK),36.770833,-98.708333,,0.025,,7769,305,151,,,,,U1020 ,86850,,, +203,USA,,TCY,b,Tracy (CA),37.6875,-121.458333,,0.025,,8828,321,159,,,,0,L1010 U1008 5.0s,80050,,, +203,USA,,NSI,b,San Nicolas (CA),33.229167,-119.458333,,0.025,,9168,317,160,,,,,L1040 U1045 ,86852,,, +203,URG,,COL,b,Colonia (co),-34.4375,-57.791667,,0.025,,11459,230,168,,,,,6.7s,80043,,, +203,AUS,,HML,b,Hamilton (VIC),-37.645833,142.041667,,0.025,,16241,83,184,,,,,L400 U400 8s,80045,,, +203,AUS,,WGT,b,Wangaratta (VIC),-36.4375,146.291667,,0.015,,16439,77,186,,,,,L400 U400 9s,80051,,, +204,CAN,,YFY,b,Forbay - Iqaluit (NU),63.729167,-68.541667,,1.5,,4325,317,98,,,,,U395 9.9s,DAID,80063,, +204,CAN,,2L,b,Rivire-aux-Saumons (QC),49.395833,-62.208333,,0.025,,4653,295,120,,,,,U400 ,80054,,, +204,USA,,EZ,b,Lizah (NJ),40.604167,-74.208333,,0.025,,5990,292,133,,,,,,86855,,, +204,USA,,GB,b,Plazz Buffalo (NY),42.854167,-78.791667,,0.025,,6109,297,134,,,,0,L1016 U1020 8.60s,80057,,, +204,USA,,MD,b,Enola Harrisburg (PA),40.229167,-76.875,,0.025,,6186,293,135,,,,0,L1038 U1038 6024s,80059,,, +204,USA,,HRA,b,Zanesville (OH),39.895833,-81.958333,,0.025,,6527,296,138,,,,,L1020 U1037 ,86856,,, +204,USA,,ZZV,b,Zanesville (OH),39.9375,-81.875,,0.025,,6518,296,138,,,,,,86859,,, +204,USA,,TWL,b,Wesley Monroe (NC),34.9375,-80.708333,,0.025,,6838,291,141,,,,0,L1018 U1026 5626s,80061,,, +204,CAN,,J,b,Regina (SK),50.4375,-104.541667,,0.025,,6901,318,142,,,,,U385 ,DAID,86857,, +204,USA,,JAU,b,Jacksboro (TN),36.354167,-84.125,,0.025,,6939,295,142,,,,,U1018 ,86858,,, +204,CAN,,ZQR,b,Findlay Regina (SK),50.4375,-104.541667,,0.02,,6901,318,143,,,,999,L390 U392 10396s,DAID,80064,, +204,USA,,LCQ,b,Lake City (FL),30.1875,-82.541667,,0.025,,7340,289,146,,,,,U1020 7537s,80058,,, +204,USA,,FDF,b,Fayette (AL),33.729167,-87.791667,,0.025,,7380,295,147,,,,,U994 5235s,80056,,, +204,USA,,ESU,b,Summerdale Foley (AL),30.479167,-87.708333,,0.025,,7646,293,149,,,,997,L1018 U1014 5.10s,80055,,, +204,USA,,RMD,b,Mc Dermitt State Mc Dermitt (OR),42.020833,-117.708333,,0.025,,8250,320,155,,,,1,L1017 U1019 6.0s,80060,,, +204,CHN,,UJ,b,Gaolan (GD),21.895833,113.291667,,0.025,,9185,64,160,,,,,9s,80062,,, +205,CAN,,YWO,b,Lupin (NT),65.770833,-111.208333,,2,,5885,333,113,,,,,U400 10.3s,DAID,80075,, +205,CAN,,YEU,b,Eureka (NU),79.979167,-85.875,,0.025,,4379,344,117,,,,,,80073,,, +205,UZB,,GZ,b,Kakaydy (sux),37.573056,67.495,,0.025,,4918,84,122,,,,,,34500012,,, +205,UZB,,TD,b,Kakaydy (sux),37.663056,67.54,,0.025,,4915,84,122,,,,,,34500015,,, +205,CAN,,XZ,b,Wawa (ON),48.020833,-84.708333,,0.13,,6076,305,127,,,,,U406 10.3s,DAID,80072,, +205,CAN,,YRQ,b,Trois-Rivires (QC),46.354167,-72.625,,0.025,,5485,297,128,,,,,U383 10530s,DAID,80074,, +205,USA,,ORE,b,Orange (MA),42.5625,-72.291667,,0.025,,5727,293,130,,,,2,L1041 U1041 5485s,80071,,, +205,USA,,CQA,b,Lakefield Celina (OH),40.479167,-84.541667,,0.025,,6638,298,139,,,,999,L1028 U1017 6750s,80067,,, +205,USA,,GM,b,WILZE Wilmington (NC),34.354167,-77.791667,,0.025,,6697,289,140,,,,999,L1038 U1038 5839s,80068,,, +205,USA,,LNH,b,Millen (GA),32.895833,-81.958333,,0.025,,7081,291,144,,,,0,L1010 U1009 5755s,80070,,, +205,B,,AAQ,b,Araraquara (SP),-21.8125,-48.125,,1,,9768,229,146,,,,,,80065,,, +205,B,,JPG,b,Jacarepagua (RJ),-22.979167,-43.375,,0.1,,9644,225,156,,,,,,80069,,, +205,USA,,COR,b,Sayler Farms Corcoran (CA),36.0625,-119.541667,,0.025,,8899,318,159,,,,996,L1025 U1015 6.9s,80066,,, +205,B,,CXM,b,Coxim (MS),-18.520833,-54.791667,,0.025,,9817,236,162,,,,,,86253,,, +206,CAN,,QI,b,Yarmouth (NS),43.8125,-66.125,,0.5,,5249,290,112,,,,,U415 10.2s,DAID,80088,, +206,CAN,,XBE,b,Bearskin Lake (ON),53.979167,-91.041667,,0.025,,5976,314,133,,,,,U384 ,DAID,80093,, +206,USA,,AP,b,Felps Alpena (MI),44.979167,-83.541667,,0.025,,6234,302,135,,,,0,L1022 U1018 8600s,80077,,, +206,USA,,GLS,b,Galveston (TX),29.354167,-94.791667,,2,,8180,297,136,,,,999,L1043 U1020 10.0s,80083,,, +206,USA,,LA,b,Artda Lansing (MI),42.770833,-84.458333,,0.025,,6456,300,138,,,,998,L1035 U1031 ,80085,,, +206,USA,,RA,b,Paser Racine (WI),42.6875,-87.875,,0.025,,6662,302,140,,,,4,L1019 U1022 8600s,80089,,, +206,USA,,IIB,b,Wapsie Independence (IA),42.4375,-91.958333,,0.025,,6915,304,142,,,,0,L1020 U1017 4974s,80084,,, +206,CAN,,EF,b,Champion Castlegar (BC),49.270833,-117.625,,0.1,,7567,324,143,,,,,U408 10.0s,DAID,80082,, +206,USA,,TEL,b,Tell City (IN),38.020833,-86.708333,,0.025,,6964,298,143,,,,,U1018 7.0s,80091,,, +206,USA,,VNC,b,Venice (FL),27.0625,-82.458333,,0.025,,7594,287,149,,,,996,L375 U372 8053s,80092,,, +206,USA,,PWT,b,Kitsap Bremerton National Airport (WA),47.479167,-122.791667,,0.025,,7937,326,152,,,,4,L1015 U1015 5.08s,80087,,, +206,USA,,LR,b,Hawke Las Cruces (NM),32.229167,-106.875,,0.025,,8624,307,158,,,,993,L1017 U1025 5.97s,80086,,, +206,USA,,SOW,b,Show Low (AZ),34.270833,-110.041667,,0.025,,8605,311,158,,,,999,L1033 U1035 8.0s,80090,,, +206,AUS,,BGO,b,Balgo Hill (WA),-20.145833,127.958333,,0.05,,13899,78,173,,,,,,80078,,, +206,AUS,,BWX,b,Barrow Island (WA),-20.854167,115.375,,0.025,,13107,89,173,,,,,,80080,,, +206,AUS,,AMK,b,Andamooka (SA),-30.4375,137.125,,0.025,,15364,79,181,,,,,,80076,,, +206,AUS,,BNA,b,Ballina (NSW),-28.854167,153.541667,,0.025,,16276,59,184,,,,,U1020 9s,86254,,, +206,AUS,,CNM,b,Coonamble (NSW),-30.979167,148.375,,0.015,,16143,68,185,,,,,L400 U400 8s,80081,,, +206,AUS,,BIK,b,Bindook (NSW),-34.1875,150.125,,0.015,,16516,70,187,,,,,L400 U400 8s,80079,,, +207,D,de,Deutschlandfunk,,Aholming/Graswegcker (bay),48.729167,12.931944,,250,080 200,595,127,39,,0000-2400,1234567,99989,,36,,, +207,ISL,is,RV Rs 1/RV Rs 2,,Eiar (au),65.368889,-14.343333,,100,,1881,329,56,,0000-2400,1234567,10,,37,,, +207,MRC,,SNRT Al Ida Al-Watania,,Azilal Demnate,31.898414,-6.5547,,400,,2481,210,56,,0500-0100,1234567,9982,,38,,, +207,CAN,,CL,b,Charlo (NB),48.020833,-66.458333,,1,,4999,295,107,,,,,U405 10411s,DAID,80094,, +207,CAN,,YNE,b,Norway House (MB),53.979167,-97.875,,1,,6304,317,120,,,,0,U399 10067s,DAID,80098,, +207,PAK,,MF,b,Muzaffarabad (ajk),34.341944,73.506667,,0.025,,5562,83,129,,,,,,31500044,,, +207,CAN,,FD,b,Brantford (ON),43.0625,-80.375,,0.025,,6190,298,135,,,,999,L392 U390 10.0s,DAID,80095,, +207,CAN,,PY,b,Fort Chipewyan (AB),58.770833,-111.125,,0.05,,6466,327,135,,,,2,L400 U403 10149s,DAID,80096,, +207,CAN,,UEM,b,Egg Island Light Station (BC),51.270833,-127.791667,,0.025,,7745,331,150,,,,,,80097,,, +208,CAN,,YSK,b,Sanikiluaq (NU),56.520833,-79.208333,,0.4,,5208,311,113,,,,,U415 10427s,DAID,80106,, +208,CAN,,P8,b,Hamel St. George de Beauce (QC),46.0625,-70.708333,,0.025,,5387,295,127,,,,,U~400 ,DAID,80102,, +208,PAK,,SB,b,Sibbi (blc),29.569444,67.846944,,0.025,,5543,92,128,,,,,,31500040,,, +208,USA,,UKT,b,Quakertown (PA),40.4375,-75.291667,,0.025,,6071,292,134,,,,998,L1053 U1049 7933s,80104,,, +208,CAN,,YKD,b,Aklavik (NT),68.229167,-135.041667,,0.025,,6261,344,136,,,,,U~400 ,80105,,, +208,USA,,JYN,b,Wayne Goldsboro (NC),35.520833,-77.875,,0.025,,6611,290,139,,,,,L1017 U1015 6136s,86860,,, +208,CAN,,8J,b,Provost (AB),52.3125,-110.291667,,0.025,,6992,322,143,,,,,U392 ,DAID,80099,, +208,USA,,CHQ,b,Charleston (MO),36.854167,-89.375,,0.025,,7219,298,145,,,,999,L1016 U1016 6.52s,80101,,, +208,USA,,BDQ,b,Bridge Morrilton (AR),35.145833,-92.708333,,0.025,,7560,299,149,,,,,U1018 5842s,80100,,, +208,CHN,,PK,b,Shanghai / Hongqiao / Nanxiang (SH),31.270833,121.291667,,0.025,,8797,52,159,,,,,L1055 ,80103,,, +209,MNG,mn,Mongoliin R 1,,Ulgii=lgii (boy),48.956944,89.970278,,30,,5579,58,98,,2200-1500,1234567,995,,47185,,, +209,MNG,mn,Mongoliin R 1,,Dalanzadgad (ogv),43.531792,104.411569,,75,,6806,55,106,,2200-1500,1234567,,,47184,,, +209,MNG,mn,Mongoliin R 1,,Choibalsan (dnd),48.004814,114.455056,,75,,6968,46,108,,2200-1500,1234567,,,47183,,, +209,CAN,,MT,b,Chiboo Chibougamau (Chapais) (QC),49.8125,-74.458333,,0.5,,5366,301,114,,,,,U408 10.25s,DAID,80125,, +209,CAN,,2V,b,Panuke Platform (NS),43.8125,-60.708333,,0.025,,4899,287,122,,,,,U401 9976s,86255,,, +209,CAN,,IB,b,Atikokan (ON),48.8125,-91.541667,,0.25,,6389,309,127,,,,0,L405 U403 10.2s,DAID,80120,, +209,ALS,,CYT,b,Yakataga (AK),60.104167,-142.458333,,1,,7231,343,129,,,,8,L1033 U1031 5.3s,TWEB,80111,, +209,USA,,GF,b,Ganse Glens Falls (NY),43.270833,-73.458333,,0.025,,5750,294,130,,,,,L1022 8600s,80116,,, +209,USA,,MJ,b,Lawrence Corner (NH),42.854167,-71.541667,,0.025,,5659,292,130,,,,0,L~1020 U~1020 8.6s,80123,,, +209,USA,,SYS,b,Stoystown Somerset (PA),40.104167,-78.875,,0.025,,6320,294,136,,,,,U1022 6.19s,80130,,, +209,USA,,GDW,b,Wiggins Gladwin (MI),43.979167,-84.458333,,0.025,,6363,301,137,,,,,U1006 5525s,80115,,, +209,USA,,CLI,b,Clintonville (WI),44.604167,-88.708333,,0.025,,6560,304,139,,,,,U1015 ,80109,,, +209,USA,,CHU,b,Caledonia (MN),43.604167,-91.458333,,0.025,,6793,305,141,,,,0,L1048 U1049 7.8s,80108,,, +209,USA,,DKB,b,De Kalb (IL),41.9375,-88.708333,,0.025,,6769,302,141,,,,998,L1034 U1021 ~6s,80112,,, +209,USA,,EY,b,Airpa Indianapolis (IN),39.9375,-86.208333,,0.025,,6781,299,141,,,,996,L1039 U1033 5652s,80114,,, +209,USA,,UKF,b,Wilki North Wilkesboro (NC),36.104167,-81.125,,0.025,,6771,293,141,,,,999,L1037 U1037 5075s,80132,,, +209,USA,,HCD,b,Hutchinson (MN),44.854167,-94.375,,0.025,,6853,308,142,,,,999,L1040 U1037 7981s,80117,,, +209,J,,MQ,b,Miyako (toh-iwa),39.854167,141.958333,,0.8,,8924,33,144,,,,15,L1005 U1035 15.1/26.1s,DAID,80124,, +209,USA,,RN,b,Warri Mc Minnville (TN),35.770833,-85.791667,,0.025,,7089,295,144,,,,,U1012 4369s,80128,,, +209,USA,,HOE,b,Homerville (GA),31.0625,-82.791667,,0.025,,7284,290,146,,,,0,L1019 U1018 5480s,80119,,, +209,USA,,EAD,b,Nevada (MO),37.854167,-94.291667,,0.025,,7426,302,147,,,,995,L1040 U1029 7.17s,80113,,, +209,USA,,PQ,b,Tlott Pascagoula (MS),30.5625,-88.541667,,0.025,,7691,293,150,,,,,,80127,,, +209,USA,,ITR,b,Kit Carson Burlington (CO),39.229167,-102.291667,,0.025,,7753,309,151,,,,999,L1014 U1020 8.5s,80121,,, +209,USA,,AEC,b,Base Camp Tonopah (NV),38.3125,-116.291667,,0.025,,8536,317,158,,,,2,L1031 U1036 7.0s,AWOS-3,80107,, +209,USA,,PCA,b,Picacho (AZ),35.270833,-112.291667,,0.025,,8628,313,158,,,,,,86861,,, +209,USA,,HGT,b,(Fort) Hunter Liggett Jolon (CA),35.979167,-121.208333,,0.025,,8982,320,160,,,,998,L1045 U1036 8.0s,80118,,, +209,MLA,,MYY,b,Miri (swk),4.3125,113.958333,,0.025,,10808,73,166,,,,1,L1014 U1016 ,80126,,, +209,AUS,,CMT,b,Clermont (QLD),-22.770833,147.625,,0.015,,15380,60,183,,,,,,80110,,, +209,AUS,,WKB,b,Warracknabeal (VIC),-36.3125,142.375,,0.025,,16168,81,183,,,,,L400 U400 9s,80133,,, +209,AUS,,TEM,b,Temora (NSW),-34.4375,147.541667,,0.025,,16369,73,184,,,,,,80131,,, +209,AUS,,KRY,b,Kingaroy (QLD),-26.5625,151.875,,0.015,,15973,59,185,,,,,L400 U400 10s,80122,,, +209,AUS,,SCO,b,Scone (NSW),-32.020833,150.791667,,0.015,,16382,66,186,,,,,L400 U400 7s,80129,,, +210,IRN,,ABD,b,Abadan (kuz),30.354167,48.208333,,0.025,,4164,109,115,,,,,,86256,,, +210,USA,,IOB,b,Mount Sterling (KY),38.0625,-83.958333,,0.049,,6793,296,138,,,,0,L1020 U1023 8600s,80140,,, +210,CAN,,F6,b,Chetwynd (BC),55.6875,-121.541667,,0.025,,7112,330,144,,,,,U409 10.2s,DAID,80137,, +210,CLM,,CLO,b,Cali (val),3.395833,-76.375,,1,,9217,266,144,,,,997,L1030 U1029 8.4s,80136,,, +210,B,,PCI,b,Pici (CE),-3.770833,-38.625,,0.025,,7516,230,148,,,,,L1039 U1040 6627s,80144,,, +210,B,,ARX,b,Arax (MG),-19.5625,-46.958333,,0.2,,9491,229,152,,,,,,80134,,, +210,AFS,,LL,b,Lanseria (GT),-25.9375,27.875,,0.025,,8927,160,159,,,,,U1037 8.2s,80141,,, +210,CHN,,RP,b,Lijia (JX),28.604167,115.708333,,0.025,,8727,58,159,,,,,,80145,,, +210,B,,FRM,b,Formosa (GO),-15.5625,-47.375,,0.025,,9127,232,160,,,,,,80138,,, +210,USA,,MY,b,Deoro San Diego (CA),32.770833,-117.041667,,0.025,,9096,315,160,,,,0,L1040 U1040 6.0s,80142,,, +210,TWN,,TC,b,Taichung (TC),24.270833,120.625,,0.025,,9403,57,161,,,,,9s,80146,,, +210,INS,,PB,b,Bengkulu (BE-bku),-3.854167,102.375,,0.025,,10753,88,165,,,,,,80143,,, +210,ARG,,ILM,b,Quilmes (ba),-34.729167,-58.208333,,0.025,,11507,230,168,,,,,5.5s,80139,,, +210,NZL,,AY,b,Appleby,-41.3125,173.125,,0.1,,18449,45,185,,,,,L400 U400 8s,80135,,, +211,CAN,,K7,b,Sainte-Anne-des-Monts (QC),49.145833,-66.541667,,0.025,,4935,297,122,,,,204,L411 U414 8294s,DAID,80150,, +211,CAN,,1J,b,Rock Island Lake (AB),55.4375,-113.625,,0.1,,6850,326,135,,,,,,86862,,, +211,USA,,AN,b,Bogga Anniston (AL),33.520833,-85.958333,,0.025,,7283,294,146,,,,0,L1042 U1042 7.80s,80147,,, +211,J,,OW,b,Itami (kns-hyo),34.8125,135.375,,0.5,,9155,40,147,,,,,L1000 5s,80152,,, +211,USA,,HGD,b,Steelhead Gooding (ID),42.895833,-114.708333,,0.05,,8035,319,150,,,,,,80149,,, +211,USA,,HDG,b,Steelhead Gooding (ID),42.895833,-114.708333,,0.025,,8035,319,153,,,,992,L1035 U1015 8.3s,80148,,, +211,USA,,ORG,b,Orange (TX),30.0625,-93.791667,,0.025,,8058,297,154,,,,4,L1035 U1042 ,80151,,, +212,RUS,,LZ,b,Ufa (BA),54.520833,55.958333,,0.025,,3234,65,105,,,,,U1020 29.9s,IDx2,80172,, +212,RUS,,RG,b,Ufa (BA),54.604167,55.875,,0.025,,3226,65,105,,,,,,80179,,, +212,CAN,,SJ,b,Saint John (NB),45.395833,-65.791667,,1,,5123,292,108,,,,,U414 10.1s,DAID,80181,, +212,CAN,,Y,b,Goose Bay (NL),53.270833,-60.541667,,0.025,,4345,299,116,,,,,,DAID,86866,, +212,CAN,,YTQ,b,Tasiujaq (QC),58.6875,-69.958333,,0.025,,4610,310,119,,,,,,80188,,, +212,CAN,,TS,b,Timmins (ON),48.5625,-81.458333,,0.4,,5854,304,120,,,,,U400 9759s,DAID,80182,, +212,PAK,,FA,b,Faisalabad (pjb),31.370278,72.995,,0.025,,5753,86,131,,,,,,31500037,,, +212,CAN,,YGX,b,Gillam (MB),56.354167,-94.708333,,0.025,,5976,318,133,,,,,U408 10.2s,DAID,80187,, +212,USA,,ESN,b,Easton (MD),38.8125,-76.041667,,0.025,,6240,291,135,,,,,U1019 4734s,80163,,, +212,USA,,HL,b,Dorch (WV),40.104167,-80.708333,,0.025,,6434,296,137,,,,4,L1034 U1041 5448s,80166,,, +212,CUB,,UMO,b,Moa (ho),20.645833,-74.958333,,0.35,,7630,277,138,,,,564,L1200 U1178 9329s,80185,,, +212,USA,,JX,b,Jakso Jackson (MI),42.3125,-84.375,,0.025,,6486,300,138,,,,1,L1035 U1036 6.0s,80169,,, +212,USA,,SSQ,b,Shell Lake (WI),45.729167,-91.958333,,0.025,,6652,307,139,,,,,,86865,,, +212,CUB,,UCF,b,Cienfuegos (cf),22.104167,-80.458333,,0.35,,7878,282,140,,,,19,L1013 U976 8.12s,80184,,, +212,USA,,AWW,b,Winchester (AL),40.1875,-84.958333,,0.025,,6686,298,140,,,,,,86863,,, +212,USA,,VP,b,Sedly Valparaiso (IN),41.4375,-86.875,,0.025,,6702,300,140,,,,0,L1032 U1027 7991s,80186,,, +212,ALS,,BCC,b,Bear Creek (AK),65.1875,-152.208333,,0.025,,6844,350,141,,,,0,L~1020 U~1020 ,80154,,, +212,CAN,,YYM,b,Cowley (AB),49.5625,-114.041667,,0.08,,7394,322,142,,,,,,80189,,, +212,USA,,DCY,b,Washington (IN),38.6875,-87.125,,0.025,,6935,298,142,,,,4,L1033 U1042 8499s,80161,,, +212,USA,,RUG,b,Rugby (ND),48.395833,-100.041667,,0.025,,6857,314,142,,,,,L1038 U1035 8.2s,86864,,, +212,CAN,,BY,b,Beechy (SK),50.854167,-107.458333,,0.025,,6997,320,143,,,,998,L400 U395 9.9s,DAID,80157,, +212,USA,,MPZ,b,Mt. Pleasant (IA),40.9375,-91.541667,,0.025,,7013,303,143,,,,1,L1020 U1023 5302s,80173,,, +212,USA,,OKZ,b,Kaolin (GA),32.979167,-82.875,,0.025,,7133,291,144,,,,,U1020 ,80174,,, +212,ALS,,CGL,b,Coghlan Island (AK),58.354167,-134.708333,,0.025,,7239,339,145,,,,0,L1037 U1036 8.5s,80159,,, +212,USA,,UC,b,Obion Union City (TN),36.3125,-88.958333,,0.025,,7239,298,145,,,,0,L1035 U1038 6.02s,80183,,, +212,CAN,,Z6,b,Golden (BC),51.3125,-116.958333,,0.025,,7352,325,146,,,,,,80190,,, +212,USA,,DBX,b,Morrison Washington (KS),39.770833,-97.041667,,0.025,,7420,306,147,,,,,U1021 5.9s,80160,,, +212,USA,,LMS,b,Louisville (MS),33.145833,-89.041667,,0.025,,7506,296,148,,,,990,L1025 U1006 6.0s,80171,,, +212,USA,,OZ,b,Ruckr Fort Rucker (Ozark) (AL),31.229167,-85.791667,,0.025,,7462,292,148,,,,2,L1041 U1045 6522s,80176,,, +212,USA,,CFV,b,Coffeyville (KS),37.104167,-95.541667,,0.025,,7561,303,149,,,,,L1029 U1020 5.62s,80158,,, +212,VTN,,DJ,b,Đ Nẵng (dan),15.979167,108.208333,,0.3,,9392,71,150,,,,0,L1025 U1025 8s,80162,,, +212,USA,,HMQ,b,Homer (LA),32.770833,-93.041667,,0.025,,7781,298,151,,,,999,L1039 U1032 7957s,80167,,, +212,USA,,HP,b,Anger Hammond (LA),30.604167,-90.458333,,0.025,,7807,295,151,,,,,L1032 U1039 6202s,80168,,, +212,USA,,BCY,b,Thorp Boise City (OK),36.770833,-102.541667,,0.025,,7982,307,153,,,,18,L1005 U1041 8.68s,80155,,, +212,CTR,,FIO,b,Fiora (alj),10.4375,-84.458333,,0.1,,9152,277,154,,,,55,L628 U748 4282s,80164,,, +212,USA,,LIU,b,Littlefield (TX),33.9375,-102.375,,0.025,,8223,305,155,,,,,U1010 ,80170,,, +212,USA,,BAZ,b,New Braunfels (TX),29.6875,-98.041667,,0.025,,8347,299,156,,,,,,80153,,, +212,USA,,OVE,b,Oroville (CA),39.479167,-121.625,,0.025,,8662,322,159,,,,999,L1038 U1036 10.0s,80175,,, +212,PNG,,MOE,b,Momote (mns),-2.016667,147.4125,,0.025,,13379,47,174,,,,,U1013 ,86257,,, +212,AUS,,PAG,b,Port Augusta (SA),-32.520833,139.708333,,0.025,,15701,78,182,,,,,,80177,,, +212,AUS,,POD,b,Portland (VIC),-38.3125,141.458333,,0.025,,16249,84,184,,,,,,80178,,, +212,AUS,,SHT,b,Shepparton (VIC),-36.4375,145.375,,0.025,,16378,78,184,,,,,,86258,,, +212,AUS,,GLI,b,Glen Innes (NSW),-29.6875,151.708333,,0.015,,16240,62,186,,,,,L400 U400 7s,80165,,, +212,AUS,,BNS,b,Bairnsdale (SA),-37.895833,147.541667,,0.015,,16629,78,187,,,,,L400 9s,80156,,, +213,CAN,,YRC,b,Saint-Honor-de-Chicoutimi (QC),48.520833,-71.125,,0.025,,5252,298,125,,,,,U395 10.23s,DAID,80191,, +213,THA,,HN,b,Hua Hin,12.643056,99.949444,,0.025,,9140,79,160,,,,,,32900031,,, +214,CAN,,K8,b,Nemiscau (QC),51.6875,-76.125,,2,,5341,304,107,,,,998,L399 U394 9.6s,DAID,80195,, +214,CAN,,YFL,b,Fort Reliance (NT),62.729167,-109.208333,,4,,6067,330,112,,,,,U410 ,86868,,, +214,CAN,,YIO,b,Pond Inlet (NU),72.6875,-77.958333,,0.025,,4395,332,117,,,,,U409 ,DAID,80201,, +214,USA,,TE,b,Torby (NJ),40.8125,-74.125,,0.025,,5969,292,133,,,,999,L1036 U1034 8120s,DAID,80199,, +214,CAN,,DA,b,Dawson (YT),64.020833,-139.208333,,0.025,,6764,344,141,,,,,U408 ,80193,,, +214,USA,,GYN,b,Gallatin (TN),36.395833,-86.375,,0.025,,7075,296,144,,,,,,86867,,, +214,J,,XA,b,Oshima (kan-tok),34.688833,139.396528,,0.5,,9338,37,148,,,,999,L1020 U998 5.0s,DAID,80200,, +214,CAN,,LU,b,Cultus Abbotsford (BC),49.020833,-122.041667,,0.025,,7761,327,151,,,,0,L412 U404 10.2s,DAID,80196,, +214,USA,,OHE,b,Monahans (TX),31.5625,-102.875,,0.025,,8462,304,158,,,,,U1025 5.0s,80198,,, +214,MEX,,CHX,b,Choix (Sinaloa) (sin),26.729167,-108.291667,,0.025,,9204,305,160,,,,31,L945 U1025 7.2s,80192,,, +214,NZL,,NV,b,Invercargill (STL),-46.4375,168.291667,,0.25,,18562,71,181,,,,,L1020 8s,80197,,, +215,RUS,,UW,b,Shumerlya,55.520833,46.458333,,0.025,,2619,66,99,,,,,L1100 ,IDx2,80221,, +215,CAN,,YTR,b,Trenton (ON),44.1875,-77.375,,0.025,,5926,297,132,,,,988,L1017 U1016 8393s,DAID,80223,, +215,CAN,,6S,b,#NAME?,43.4375,-79.875,,0.025,,6132,298,134,,,,,,86869,,, +215,USA,,PZQ,b,Rogers City (MI),45.395833,-83.791667,,0.025,,6218,302,135,,,,4,L1011 U1008 8067s,80216,,, +215,USA,,UIZ,b,Utica / Berz (MI),42.645833,-82.958333,,0.025,,6376,299,137,,,,,U1032 ,86873,,, +215,CAN,,W,b,Winnipeg (MB),49.8125,-97.291667,,0.025,,6605,313,139,,,,,U380 ,DAID,86874,, +215,CAN,,ZWW,b,Boine Muddywater (Winnipeg) (MB),49.8125,-97.291667,,0.025,,6605,313,139,,,,1,L385 U386 10567s,DAID,80225,, +215,USA,,DLZ,b,Delaware (OH),40.270833,-83.125,,0.025,,6569,297,139,,,,1,L1033 U1033 7782s,80206,,, +215,USA,,ISW,b,Wisconsin Rapids (WI),44.354167,-89.875,,0.025,,6645,305,139,,,,999,L1031 U1028 6453s,80208,,, +215,USA,,ML,b,Molli Moline (IL),41.4375,-90.625,,0.025,,6920,303,142,,,,2,L1030 U1035 6.0s,80210,,, +215,CAN,,K,b,Edmonton (AB),53.229167,-113.458333,,0.025,,7040,324,143,,,,,U~400 ,DAID,86872,, +215,CAN,,ZAB,b,Leduc Edmonton (Intl Apt) (AB),53.229167,-113.458333,,0.025,,7040,324,143,,,,,U392 11.23s,DAID,80224,, +215,SLV,,YSX,b,Ilopango (Lago de Ilopango) (ssl),13.6875,-89.125,,1.5,,9182,283,143,,,,,U1021 ~5.0s,Cont. ID,80222,, +215,USA,,AT,b,Lican Watertown (SD),44.8125,-97.125,,0.025,,7003,309,143,,,,0,L1040 U1040 5.85s,80203,,, +215,B,,NOA,b,Nova Iguau (RJ),-22.729167,-43.458333,,1,,9624,225,146,,,,,,80213,,, +215,USA,,MVQ,b,Malvern (AR),34.354167,-92.791667,,0.025,,7632,299,149,,,,,U1016 ,80212,,, +215,USA,,TQH,b,Tahlequah (OK),35.9375,-95.041667,,0.025,,7631,302,149,,,,,L973 U965 7.02s,80219,,, +215,USA,,BFK,b,Buffalo (OK),36.854167,-99.625,,0.025,,7814,305,151,,,,0,L1016 U1017 6359s,80204,,, +215,B,,MCP,b,Macap (AP),0.0625,-51.041667,,0.025,,7856,243,152,,,,,L1050 6.90s,86261,,, +215,B,,TRS,b,Teresina (PI),-5.0625,-42.791667,,0.025,,7864,233,152,,,,,L1020 7036s,80220,,, +215,USA,,CSZ,b,Crossroads Athens (TX),32.0625,-95.958333,,0.025,,8016,300,153,,,,998,L1018 U1018 7.3s,80205,,, +215,B,,PP,b,Maraca / Campo Grande (MS),-20.395833,-54.625,,0.1,,9984,235,157,,,,,L1040 ,80215,,, +215,USA,,ARU,b,Alturas Muni (CA),41.479167,-120.541667,,0.025,,8423,322,157,,,,,,86870,,, +215,B,,SGC,b,So Gabriel da Cachoeira (AM),-0.145833,-66.958333,,0.025,,8895,257,159,,,,989,L1045 U1025 6.96s,80217,,, +215,USA,,GEU,b,Glendale (AZ),33.520833,-112.291667,,0.025,,8790,312,159,,,,,,86871,,, +215,EQA,,ESM,b,Esmeraldas (esm),0.979167,-79.625,,0.025,,9651,267,162,,,,,L1041 U1068 7.23s,86260,,, +215,B,,SMR,b,Santa Maria (RS),-29.729167,-53.791667,,0.025,,10815,229,166,,,,,7.3s,80218,,, +215,CHL,,CFL,b,Calama (AN),-22.479167,-68.875,,0.025,,11016,245,166,,,,,L1018 U1018 10.08s,86259,,, +215,INS,,AL,b,Halim Perdanakusuma,-6.1875,107.041667,,0.025,,11275,85,167,,,,,U1022 ,80202,,, +215,AUS,,RMD,b,Richmond (QLD),-20.6875,143.125,,0.025,,14921,63,179,,,,,L1020 8s,86262,,, +215,AUS,,KSC,b,Kingscote (SA),-35.729167,137.541667,,0.025,,15798,84,182,,,,,U400 10.84s,80209,,, +215,AUS,,NRM,b,Narromine (NSW),-32.229167,148.208333,,0.025,,16236,69,184,,,,,L400 U400 7s,80214,,, +215,AUS,,MRY,b,Moruya (NSW),-35.895833,150.125,,0.025,,16650,72,185,,,,0,L400 U400 8s,80211,,, +215,AUS,,HAY,b,Hay (NSW),-34.5625,144.791667,,0.015,,16198,76,186,,,,,,80207,,, +216,F,fr,RMC Info,,Roumoules (04),43.792942,6.149744,,700,,925,181,38,,0300-2312,1234567,0,,41,,, +216,CAN,,ME,b,Matane (QC),48.8125,-67.541667,,0.1,,5016,297,117,,,,,U411 10.0s,DAID,80232,, +216,CAN,,YFA,b,Fort Albany (ON),52.1875,-81.708333,,0.2,,5617,307,120,,,,,U403 10.5s,DAID,80234,, +216,USA,,LRG,b,Lincoln (ME),45.354167,-68.541667,,0.025,,5300,293,126,,,,0,L1047 U1048 ,80231,,, +216,USA,,CO,b,Epsom Concord (NH),43.104167,-71.458333,,0.025,,5637,293,129,,,,4,L1040 U1048 5.9s,80227,,, +216,USA,,CLB,b,Wilmington / Carolina Beach (NC),34.104167,-77.958333,,0.025,,6727,289,140,,,,1,L1037 U1036 9.5s,80226,,, +216,USA,,JMR,b,Mora (MN),45.895833,-93.291667,,0.025,,6711,308,140,,,,,,80230,,, +216,USA,,RCR,b,Rochester (IN),41.0625,-86.208333,,0.025,,6692,300,140,,,,,L1031 U1028 ,86875,,, +216,USA,,DPY,b,Deer Park (WA),47.979167,-117.458333,,0.025,,7681,323,150,,,,,U1013 7.5s,80228,,, +216,MYA,,SW,b,Sittwe (rak),20.130833,92.883333,,0.025,,8019,80,153,,,,,,80233,,, +216,USA,,GR,b,Graye Fort Lewis (Tacoma) (WA),47.145833,-122.625,,0.025,,7963,326,153,,,,0,L1046 U1038 5.9s,80229,,, +216,USA,,GRF,b,Gray AAF (Joint Base Lewis-Mcchord) Airport (WA),47.145833,-122.625,,0.025,,7963,326,153,,,,,,86263,,, +217,USA,,HZD,b,Huntingdon (TN),36.104167,-88.458333,,0.025,,7226,297,145,,,,,U996 5.22s,80236,,, +217,USA,,RI,b,Klint Riverton (WY),43.020833,-108.291667,,0.025,,7724,315,150,,,,8,L1025 U1041 7.6s,80237,,, +217,USA,,EC,b,Meggi Cedar City (UT),37.770833,-113.041667,,0.049,,8433,315,154,,,,0,L1032 U1023 6.0s,80235,,, +217,CHN,,ZJ,b,Changzhou (JS),31.9375,119.708333,,0.025,,8651,53,159,,,,,,80238,,, +218,CAN,,YXP,b,Pangnirtung (NU),66.145833,-65.708333,,0.025,,4121,320,114,,,,,U400 10.3s,DAID,80251,, +218,CAN,,YUY,b,Rouyn-Noranda (QC),48.1875,-78.958333,,0.5,,5737,302,117,,,,,U403 10.1s,ID+4 tone,80250,, +218,CAN,,RL,b,Red Lake (ON),51.0625,-93.791667,,1,,6332,312,120,,,,4,L405 U409 10.2s,DAID,80246,, +218,CAN,,WK,b,Wabush (NL),52.854167,-66.875,,0.025,,4740,301,120,,,,,U395 9.8s,80248,,, +218,CAN,,PR,b,Prince Rupert (BC),54.270833,-130.458333,,0.5,,7532,334,135,,,,,U403 10.0s,DAID,80245,, +218,USA,,DRM,b,Drummond Island (MI),46.020833,-83.708333,,0.025,,6167,303,135,,,,,U1032 4892s,80242,,, +218,CAN,,YDM,b,Ross River (YT),61.979167,-132.458333,,0.025,,6822,339,141,,,,,U~400 ,80249,,, +218,USA,,AL,b,Alpos Alton (St Louis MO) (IL),38.854167,-89.958333,,0.025,,7090,300,144,,,,2,L1019 U1022 8600s,80239,,, +218,AUS,,BRL,b,Borroloola (NT),-16.0625,136.291667,,0.025,,14082,67,176,,,,,,80240,,, +218,AUS,,CMU,b,Cunnamulla (QLD),-28.020833,145.625,,0.1,,15720,67,176,,,,,L400 U400 8s,80241,,, +218,AUS,,WBR,b,Warburton Range (WA),-26.145833,126.541667,,0.025,,14305,84,177,,,,,L1020 U1020 9s,80247,,, +218,AUS,,PLE,b,Plenty - Melbourne (VIC),-37.729167,145.125,,0.1,,16455,80,178,,,,,L400 U400 10s,80244,,, +218,AUS,,MRB,b,Moranbah (QLD),-22.0625,148.041667,,0.025,,15341,59,181,,,,,U1020 8s,86264,,, +218,NZL,,OH,b,Ohakea,-40.1875,175.375,,0.13,,18444,37,184,,,,,4.13s,80243,,, +219,CAN,,ZQY,b,Bras dOr Sydney (NS),46.104167,-60.125,,0.025,,4717,289,120,,,,,U400 10187s,DAID,80271,, +219,CAN,,W7,b,Pabok du Rocher-Perc (QC),48.395833,-64.541667,,0.025,,4857,295,122,,,,0,L107 U411 8262s,DAID,80269,, +219,CAN,,YMG,b,Manitouwadge (ON),49.0625,-85.875,,0.1,,6065,307,128,,,,,U404 10.4s,DAID,80270,, +219,USA,,AL,b,Hawky Hawk (NY),42.8125,-73.791667,,0.025,,5804,294,131,,,,,,86877,,, +219,USA,,CX,b,Latle Harrisburg (PA),40.1875,-77.041667,,0.025,,6199,293,135,,,,999,L1040 U1040 6077s,80254,,, +219,USA,,MK,b,Muskegon (MI),43.104167,-86.208333,,0.025,,6533,301,138,,,,1,L1020 U1020 8599s,80260,,, +219,USA,,TO,b,Tophr Toledo (OH),41.5625,-83.958333,,0.025,,6519,299,138,,,,0,L1018 U1023 6234s,80268,,, +219,USA,,OQ,b,Brinn Indianapolis (IN),39.604167,-86.375,,0.025,,6817,299,141,,,,999,L1010 U1045 6.77s,80264,,, +219,CAN,,ZRS,b,Ajax Regina (SK),50.479167,-104.708333,,0.025,,6905,318,142,,,,6,L395 U396 10496s,DAID,80272,, +219,CAN,,Q,b,Regina (SK),50.479167,-104.708333,,0.02,,6905,318,143,,,,,,80265,,, +219,USA,,AWG,b,Washington (IA),41.270833,-91.708333,,0.025,,6995,303,143,,,,0,L1106 U1105 5.38s,80252,,, +219,USA,,EV,b,Vicci Evansville (IN),38.145833,-87.458333,,0.025,,6999,298,143,,,,2,L1031 U1035 6421s,80255,,, +219,CAN,,5Z,b,Oyen (AB),51.354167,-110.458333,,0.025,,7083,322,144,,,,,,86876,,, +219,USA,,AY,b,Wiket Waycross (GA),31.3125,-82.375,,0.025,,7237,290,145,,,,998,L1036 U1026 6.0s,80253,,, +219,ALS,,GAV,b,Gustavus (AK),58.4375,-135.708333,,0.025,,7255,339,146,,,,997,L1040 U1034 8.5s,80257,,, +219,USA,,OMK,b,Omak (WA),48.4375,-119.541667,,0.049,,7721,325,147,,,,998,L784 U784 6.5s,80263,,, +219,USA,,MPE,b,Philadelphia (MS),32.8125,-89.125,,0.025,,7539,295,148,,,,0,L1032 U1047 6.50s,80262,,, +219,J,,SK,b,Shinoda (kns-osk),34.479167,135.458333,,0.25,,9191,40,150,,,,,,80267,,, +219,USA,,ML,b,Sabar Monroe (LA),32.4375,-92.125,,0.025,,7754,297,151,,,,,L1025 ,80261,,, +219,USA,,HU,b,Houma (LA),29.645833,-90.625,,0.025,,7899,294,152,,,,0,L1019 U1021 8.60s,80258,,, +219,USA,,EVA,b,Silsbee (TX),30.395833,-94.125,,0.025,,8050,297,153,,,,,,86878,,, +219,USA,,FL,b,Jiffy Flower Mound (Dallas Ft. Worth Intl Apt) (TX),32.979167,-97.041667,,0.025,,8001,301,153,,,,,L1029 ,80256,,, +219,USA,,SA,b,Bluie San Antonio (TX),29.479167,-98.541667,,0.05,,8395,300,154,,,,0,L1020 U1020 7.1s,80266,,, +219,USA,,LB,b,Pollo Lubbock (TX),33.729167,-101.791667,,0.025,,8208,305,155,,,,4,L1041 U1037 5.77s,80259,,, +220,CAN,,BX,b,Blanc Sablon (Lourdes de Blanc Sablon) (QC),51.4375,-57.208333,,2,,4234,295,96,,,,0,L405 U400 10.5s,DAID,80273,, +220,CAN,,Y9,b,Digby (NS),44.5625,-65.791667,,0.025,,5178,291,125,,,,,U420 10557s,DAID,80286,, +220,IND,,SNG,b,Srinagar (JK),33.982778,74.782222,,0.025,,5675,82,130,,,,,,32200047,,, +220,USA,,IHM,b,Mansfield (MA),42.020833,-71.208333,,0.025,,5697,291,130,,,,973,L1028 U975 4864s,80280,,, +220,USA,,FZ,b,Syracuse (NY),43.104167,-76.125,,0.025,,5927,295,132,,,,2,L397 U402 5.05s,80277,,, +220,B,,TUI,b,Tucuru (PA),-3.7866,-49.714628,,1,,8137,240,138,,,,999,L1028 U1030 7158s,ID+5 gap,80284,, +220,USA,,HUR,b,Person (NC),36.229167,-79.041667,,0.025,,6630,291,139,,,,550,L1032 U1038 7.99s,80279,,, +220,USA,,DCM,b,Chester (SC),34.770833,-81.208333,,0.025,,6883,292,142,,,,982,L1052 U1022 6121s,80275,,, +220,CUB,,HG,b,Holguin (ho),20.770833,-76.291667,,0.025,,7710,278,150,,,,,U755 7010s,86266,,, +220,USA,,HLE,b,Hailey (ID),43.3125,-114.208333,,0.049,,7974,319,150,,,,998,L1030 U1030 7.9s,80278,,, +220,B,,PER,b,Perus (SP),-23.4375,-46.791667,,0.2,,9857,227,153,,,,,,80281,,, +220,B,,FNP,b,Florianpolis (SC),-27.6875,-48.541667,,0.2,,10354,227,155,,,,,,80276,,, +220,B,,IS,b,Cimbra (BA),-12.9375,-38.458333,,0.025,,8414,225,157,,,,,,86267,,, +220,USA,,VI,b,Vilia Vasalia (CA),36.270833,-119.291667,,0.025,,8868,318,159,,,,2,L1025 U1035 6.0s,80285,,, +220,TWN,,CO,b,Kaohsiung (KHS),22.580556,120.291667,,0.025,,9539,58,161,,,,,11s,80274,,, +220,USA,,RBJ,b,Robles Tucson (AZ),32.0625,-111.375,,0.01,,8878,310,163,,,,998,L1028 U1022 8.4s,80282,,, +220,B,,CAV,b,Cascavel (PR),-25.020833,-53.541667,,0.025,,10359,232,164,,,,,,86265,,, +220,SNG,,SEL,b,Selatar (ne),1.395833,103.875,,0.025,,10393,83,164,,,,946,L1023 U916 7s,80283,,, +221,CAN,,YAS,b,Kangirsuk (QC),60.020833,-70.041667,,0.5,,4551,312,106,,,,,U408 10.28s,ID+4 tone,80308,, +221,USA,,RQM,b,Rangeley (ME),44.9375,-70.791667,,0.025,,5468,294,128,,,,2,L1034 U1037 8870s,80303,,, +221,USA,,DYO,b,Smuto Rutland (VT),43.6875,-72.958333,,0.025,,5690,294,130,,,,0,L1035 U1030 8.0s,80292,,, +221,USA,,ARV,b,Arbor Vitae Minocqua (Woodruff) (WI),45.9375,-89.708333,,0.075,,6512,306,133,,,,,U1006 5480s,80288,,, +221,CAN,,HM,b,Hamilton (Carluke) (ON),43.104167,-80.041667,,0.025,,6167,298,135,,,,0,L375 U371 10489s,DAID,80294,, +221,USA,,PMZ,b,Plymouth (NC),35.8125,-76.791667,,0.025,,6518,289,138,,,,,U1035 ,80299,,, +221,USA,,RP,b,Wickr Rice Lake Airport, Carls Field (WI),45.3125,-91.791667,,0.025,,6676,307,140,,,,2,L398 U402 7916s,80302,, +221,CAN,,9A,b,Hanna (AB),51.645833,-111.875,,0.05,,7117,323,141,,,,,U386 10.47s,DAID,80287,, +221,CAN,,QU,b,Grande Prairie (AB),55.145833,-118.791667,,0.05,,7067,329,141,,,,5,L399 U403 10124s,DAID,80300,, +221,USA,,BO,b,Booie Bristol (Johnston-Kingsport) (TN),36.395833,-82.458333,,0.025,,6832,294,141,,,,995,L1042 U1025 7822s,80290,,, +221,USA,,RBW,b,Walterboro (SC),32.9375,-80.625,,0.025,,6993,290,143,,,,994,L1021 U1000 5344s,80301,,, +221,USA,,BJT,b,Bulldog Athens (GA),33.9375,-83.208333,,0.025,,7077,292,144,,,,0,L1021 U1031 6876s,80289,,, +221,USA,,PED,b,Needmore Springfield (TN),36.520833,-86.958333,,0.025,,7100,297,144,,,,,U1020 ,80298,,, +221,MEX,,SMS,b,Marcos Acapulco (Guerrero) (gue),16.770833,-99.375,,1,,9576,293,146,,,,0,L1020 U1020 ,80305,,, +221,USA,,HYE,b,Hanchey Fort Rucker (Ozark) (AL),31.354167,-85.625,,0.025,,7441,292,147,,,,999,L1041 U1046 8840s,80296,,, +221,USA,,OR,b,Henry Orlando (FL),28.520833,-81.458333,,0.025,,7407,287,147,,,,996,L403 U399 6.43s,80297,,, +221,USA,,FX,b,Praiz Fort Lauderdale (FL),26.1875,-80.291667,,0.025,,7524,284,148,,,,0,L378 U376 6156s,80293,,, +221,CTR,,CHI,b,Los Chiles (Alajuela) (alj),11.020833,-84.708333,,0.3,,9118,278,149,,,,,U970 4.7s,80291,,, +221,USA,,AYI,b,Hanco Bay Saint Louis (MS),30.4375,-89.458333,,0.025,,7759,294,151,,,,,,86879,,, +221,USA,,HS,b,Hanco Bay Saint Louis (MS),30.4375,-89.458333,,0.025,,7759,294,151,,,,0,L1025 U1026 8712s,80295,,, +221,AUS,,KU,b,Kununurra (WA),-15.770833,128.708333,,0.025,,13569,74,175,,,,,U670 ,86268,,, +221,AUS,,TAM,b,Taroom (QLD),-25.8125,149.875,,0.1,,15788,60,176,,,,,L1020 U1020 9s,80306,,, +221,AUS,,SCR,b,Southern Cross (WA),-31.229167,119.375,,0.025,,14220,94,177,,,,,,80304,,, +221,AUS,,WG,b,Wagga Wagga (NSW),-35.145833,147.458333,,0.025,,16418,74,184,,,,,L400 U400 8s,80307,,, +222,RUS,,TJ,b,Moskva/Bykovo (MV),55.604167,38.041667,,0.025,,2091,67,94,,,,,,86269,,, +222,RUS,,UI,b,Moskva/Bykovo (MV),55.604167,38.041667,,0.025,,2091,67,94,,,,,,86270,,, +222,CAN,,6Q,b,Cigar Lake (SK),58.0625,-104.541667,,0.025,,6270,324,136,,,,,U375 ,DAID,80309,, +222,USA,,CVX,b,Charlevoix (MI),45.3125,-85.291667,,0.025,,6311,303,136,,,,,,86880,,, +222,CAN,,WY,b,Wrigley (NT),63.229167,-123.458333,,0.025,,6469,336,138,,,,,U415 9.8s,DAID,80316,, +222,MEX,,CUW,b,Chihuahua (chi),28.5625,-105.958333,,0.4,,8906,304,147,,,,14,L982 U990 4.7s,80310,,, +222,USA,,FDR,b,Frederick (OK),34.354167,-98.958333,,0.025,,7993,303,153,,,,,,80311,,, +222,USA,,MY,b,Halow Marysville (CA),39.1875,-121.625,,0.025,,8690,321,159,,,,4,L1035 U1043 8.0s,80312,,, +223,CAN,,YYW,b,Armstrong (ON),50.3125,-89.041667,,0.1,,6143,309,128,,,,,U405 10.2s,DAID,80326,, +223,CAN,,YKA,b,Kamloops (BC),50.6875,-120.375,,0.5,,7541,327,135,,,,1,L407 U405 10.5s,DAID,80325,, +223,USA,,DA,b,Davee Fort Belvoir (VA),38.645833,-77.125,,0.025,,6321,292,136,,,,994,L1040 U1030 8885s,80320,,, +223,USA,,DAA,b,Davee Fort Belvoir (VA),38.645833,-77.125,,0.025,,6321,292,136,,,,,L1040 U1028 8898s,86271,,, +223,USA,,DM,b,Spence Detroit (MI),42.229167,-83.208333,,0.025,,6423,299,137,,,,0,L1020 U1022 8600s,80321,,, +223,USA,,CDI,b,Cambridge (OH),39.979167,-81.541667,,0.025,,6495,296,138,,,,,,80319,,, +223,USA,,AZW,b,Mt Airy (NC),36.395833,-80.541667,,0.025,,6712,292,140,,,,994,L1035 U1048 4313s,80318,,, +223,USA,,MW,b,Onida Franklin (OH),39.5625,-84.291667,,0.025,,6695,297,140,,,,999,L1039 U1036 4335s,80324,,, +223,USA,,GAK,b,Sioux Gateway (IA),42.395833,-96.375,,0.025,,7163,307,145,,,,,U1020 ,86881,,, +223,ALS,,AFE,b,Kake (AK),56.979167,-133.875,,0.025,,7356,338,147,,,,1,L1037 U1037 8.5s,80317,,, +223,USA,,FS,b,Wizer Fort Smith (AR),35.354167,-94.208333,,0.025,,7632,301,149,,,,0,L1048 U1051 5.64s,80323,,, +223,USA,,ES,b,Andra Alexandria (LA),31.395833,-92.208333,,0.025,,7848,297,151,,,,997,L1031 U1025 6.46s,80322,,, +224,CAN,,BK,b,Baker Lake (NT),64.3125,-96.041667,,2,,5468,326,109,,,,,U392 10.4s,DAID,80328,, +224,CAN,,QM,b,Moncton (NB),46.104167,-64.541667,,0.4,,4999,292,111,,,,,U407 10.2s,DAID,80335,, +224,CAN,,MO,b,Moosonee (ON),51.270833,-80.625,,0.4,,5620,306,117,,,,,U410 10.3s,DAID,80333,, +224,IRN,,ZD,b,Zahedan (sib),29.470833,60.895833,,0.025,,5078,98,124,,,,,,10800024,,, +224,CAN,,X,b,Mirabel (QC),45.645833,-73.958333,,0.025,,5615,297,129,,,,,,86885,,, +224,CAN,,ZMB,b,Mirabel Blainville (Montreal) (QC),45.645833,-73.958333,,0.025,,5615,297,129,,,,,U406 10.1s,DAID,80340,, +224,USA,,VWD,b,Mount Snow West Dover (VT),42.9375,-72.875,,0.025,,5737,293,130,,,,,U1003 6.2s,80337,,, +224,USA,,BH,b,Mc Den Birmingham (AL),33.520833,-86.875,,0.4,,7341,294,134,,,,995,L1044 U1039 6074s,80327,,, +224,USA,,BF,b,Bradford (PA),41.770833,-78.541667,,0.025,,6174,296,135,,,,,,86882,,, +224,USA,,II,b,Fichy Sturgeon Bay (WI),44.770833,-87.458333,,0.025,,6476,304,138,,,,,L1037 U1034 4896s,80332,,, +224,CAN,,DN,b,Dauphin (MB),51.104167,-100.041667,,0.025,,6635,316,139,,,,0,L390 U384 10421s,DAID,80329,, +224,USA,,FSE,b,Fosston (MN),47.604167,-95.791667,,0.025,,6706,311,140,,,,966,L1053 U980 35s,AWOS-3,80330,, +224,USA,,GVA,b,Geneva Henderson (KY),37.8125,-87.791667,,0.025,,7046,298,143,,,,,U1013 5855s,80331,,, +224,CAN,,N5,b,Rocky Two Rocky Mt House (AB),52.4375,-114.875,,0.025,,7168,325,145,,,,,U384 ,DBID,80334,, +224,BAH,,ZGB,b,Governors Harbor (Eleuthera) (cel),25.270833,-76.291667,,0.025,,7334,281,146,,,,,,80339,,, +224,USA,,ODD,b,Dondo Seattle (WA),47.354167,-122.291667,,0.025,,7930,326,152,,,,,L1050 U1030 6.22s,86883,,, +224,USA,,SDL,b,Scottsdale (AZ),33.645833,-111.875,,0.025,,8757,312,159,,,,,U1035 ,86884,,, +224,AUS,,WMD,b,West Maitland (NSW),-32.770833,151.541667,,0.1,,16491,66,178,,,,0,L400 U400 10s,80338,,, +224,AUS,,RPY,b,Ripley (VIC),-37.895833,144.458333,,0.025,,16422,81,184,,,,,U400 ,80336,,, +225,POL,pl,Polskie R Jedynka,,Solec Kujawski/Kabat (KP),53.022778,18.261111,,1000,,806,78,35,,0000-2400,1234567,0,,42,,, +225,CAN,,YIK,b,Ivujivik (QC),62.395833,-77.958333,,0.025,,4819,318,121,,,,,U406 10.2s,DAID,80349,, +225,CAN,,X5,b,Vegreville (AB),53.520833,-112.041667,,0.025,,6958,324,143,,,,,U417 10.37s,DAID,80348,, +225,CLM,,EPO,b,El Paso (ris),4.479167,-75.541667,,1,,9065,266,144,,,,0,L1024 U1026 5941s,80344,,, +225,MYA,,KL,b,Kalay,23.1875,94.054722,,0.025,,7838,77,151,,,,,,22100021,,, +225,B,,PRR,b,Presidente Prudente (SP),-22.1875,-51.375,,0.2,,9975,232,154,,,,998,L1021 U1018 7006s,80347,,, +225,B,,CPO,b,Campos (RJ),-21.6875,-41.291667,,0.1,,9418,224,155,,,,,,80343,,, +225,USA,,LWG,b,Lewisburg (Corvalllis) (OR),44.604167,-123.291667,,0.025,,8234,325,155,,,,994,L1050 U1045 6.0s,80345,,, +225,TWN,,MS,b,Yilan (YL),24.729167,121.708333,,0.05,,9422,56,158,,,,,,80346,,, +225,B,,BRL,b,Barcelos (AM),-0.979167,-62.958333,,0.025,,8706,253,159,,,,,L1189 U818 7096s,80341,,, +225,PRG,,ITU,b,Itaipu,-25.395833,-54.625,,0.025,,10452,232,164,,,,,5s,86272,,, +225,INS,,CB,b,Pondok Cabe,-6.354167,106.791667,,0.025,,11273,86,167,,,,,,80342,,, +226,CAN,,5W,b,Leaf Rapids (MB),56.520833,-99.958333,,0.025,,6199,320,135,,,,,U411 8.54s,DAID,80350,, +226,USA,,EZE,b,Engel Cleveland (OH),41.479167,-81.708333,,0.025,,6390,297,137,,,,1,L1037 U1039 ,80352,,, +226,USA,,FAF,b,Felker Fort Eustis (VA),37.145833,-76.625,,0.025,,6404,290,137,,,,999,L1026 U1025 8.62s,80353,,, +226,USA,,HT,b,Huntington (KY),38.354167,-82.625,,0.025,,6688,295,140,,,,3,L1040 U1046 5755s,80355,,, +226,USA,,OYI,b,Orangeburg (SC),33.4375,-80.875,,0.025,,6968,290,143,,,,,U1022 5402s,80357,,, +226,USA,,REN,b,Warren (AR),33.5625,-92.125,,0.025,,7659,298,150,,,,,L1017 U1014 4.73s,80358,,, +226,CHN,,DP,b,Dangjiazhuang (SD),36.770833,117.375,,0.025,,8090,52,154,,,,,,80351,,, +226,USA,,VC,b,Fostr Victoria (TX),28.895833,-97.041667,,0.05,,8356,298,154,,,,,L1017 U1030 ,86886,,, +226,USA,,VCT,b,Fostr Victoria (TX),28.895833,-97.041667,,0.05,,8356,298,154,,,,5,L1015 U1025 5.2s,80359,,, +226,NZL,,KK,b,Kerikeri (NTL),-35.270833,173.875,,0.13,,17896,33,182,,,,,L1020 4s,80356,,, +226,NZL,,FY,b,Ferry,-41.395833,175.125,,0.13,,18550,40,184,,,,,L1020 7s,80354,,, +227,MNG,mn,Mongoliin R 1,,Altaii=Altay (gvi),46.319722,96.251944,,75,,6129,57,100,,0000-1500,1234567,1,,47186,,, +227,MNG,mn,Mongoliin R 1,,Altaii=Altay (gvi),46.319722,96.251944,,75,,6129,57,100,,2147-2400,1234567,1,,47186,,, +227,USA,,BG,b,Totte Bangor (ME),44.729167,-68.708333,,0.025,,5352,293,126,,,,0,L1032 U1032 ,80363,,, +227,USA,,SZO,b,Sebago Fryeburg (ME),43.895833,-70.791667,,0.025,,5539,293,128,,,,12,L1006 U1031 7.94s,80381,,, +227,USA,,TAN,b,Taunton (MA),41.895833,-71.041667,,0.025,,5695,291,130,,,,,U1016 5141s,80382,,, +227,CAN,,YAC,b,Cat Lake (ON),51.729167,-91.791667,,0.05,,6180,312,132,,,,,U388 10.2s,DAID,80386,, +227,CAN,,CG,b,Castlegar (BC),49.4375,-117.541667,,0.5,,7548,324,135,,,,,U404 10.2s,DAID,80365,, +227,USA,,RJD,b,Ridgely (VA),38.979167,-75.875,,0.025,,6217,292,135,,,,,,86887,,, +227,USA,,GW,b,Aubon De Kalb County, Auburn (IN),41.3125,-84.958333,,0.025,,6598,299,139,,,,,L1036 U1036 7907s,86273,, +227,CAN,,1K,b,Zama Lake (AB),59.020833,-118.875,,0.025,,6716,331,140,,,,,U400 ,DAID,80360,, +227,USA,,SQ,b,Pnthr Connersville (IN),39.770833,-85.125,,0.025,,6729,298,140,,,,999,L1040 U1039 5871s,80380,,, +227,USA,,CPC,b,Camp Whiteville (NC),34.270833,-78.708333,,0.025,,6763,289,141,,,,999,L1022 U1028 8384s,80367,,, +227,CAN,,9X,b,Brooks (AB),50.645833,-111.958333,,0.05,,7210,322,142,,,,,U390 10.28s,DAID,80361,, +227,USA,,UZ,b,Rally Rock Hill (SC),34.895833,-81.041667,,0.025,,6862,291,142,,,,7,L1028 U1040 5875s,80385,,, +227,ALS,,MHM,b,Minchumina (AK),63.895833,-152.291667,,0.025,,6984,350,143,,,,798,L402 U~400 ,80375,,, +227,USA,,FZ,b,Eaves St. Louis (MO),38.6875,-90.541667,,0.025,,7138,301,144,,,,0,L1017 U1020 8600s,80369,,, +227,USA,,SLB,b,Storm Lake (IA),42.604167,-95.208333,,0.025,,7082,306,144,,,,,,86889,,, +227,CAN,,PK,b,Pitt Meadows (BC),49.229167,-122.708333,,0.08,,7766,327,146,,,,,,80379,,, +227,USA,,AB,b,Putny Albany (GA),31.4375,-84.291667,,0.025,,7350,291,146,,,,999,L1038 U1037 5876s,80362,,, +227,HND,,LCE,b,Goloson La Ceiba (Atlantida) (atl),15.729167,-86.875,,0.4,,8854,282,147,,,,995,L1005 U1006 4.05s,80372,,, +227,USA,,TNZ,b,Lawrence Co. Walnut Ridge (AR),36.1875,-90.958333,,0.025,,7369,299,147,,,,999,L1041 U1039 7.6s,80384,,, +227,USA,,LA,b,Wirey Lakeland (FL),27.9375,-82.041667,,0.025,,7494,287,148,,,,0,L1025 U1041 6063s,80371,,, +227,USA,,MPR,b,Mc Pherson (KS),38.354167,-97.708333,,0.025,,7578,305,149,,,,988,L1013 U1016 7.0s,80376,,, +227,USA,,TN,b,Monry Trailtown (Miami) (FL),25.854167,-81.041667,,0.025,,7602,285,149,,,,0,L1041 U1042 7232s,80383,,, +227,CHL,,CLD,b,Caldera (AT),-27.0625,-70.791667,,1,,11538,243,152,,,,1,L1016 U1018 10.3s,80366,,, +227,CHN,,BK,b,Ningbo (ZJ),29.895833,121.291667,,0.025,,8923,53,159,,,,,,80364,,, +227,USA,,SJY,b,San Jacinto (CA),33.8125,-116.958333,,0.025,,8993,315,160,,,,,L1025 U1000 6.3s,86888,,, +227,AUS,,NRB,b,Narembeen (WA),-32.0625,118.375,,0.025,,14216,96,177,,,,,U1028 ,80377,,, +227,AUS,,OOM,b,Moomba (SA),-28.104167,140.208333,,0.049,,15379,73,178,,,,,L400 U400 9s,80378,,, +227,AUS,,DYS,b,Dysart (QLD),-22.604167,148.375,,0.025,,15410,59,181,,,,,L1020 U1020 10s,80368,,, +227,AUS,,LRT,b,Lake Albert (SA),-35.6875,139.375,,0.025,,15919,82,183,,,,,L400 U400 8s,80373,,, +227,AUS,,LVG,b,Mount Livingstone (VIC),-37.145833,147.541667,,0.025,,16575,77,185,,,,,L400 U400 9s,80374,,, +227.5,AFS,,KS,b,Kroonstad (FS),-27.6875,27.291667,,0.25,,9104,161,150,,,,492,L1036 U1020 10.0s,80387,,, +228,USA,,OVY,b,Booneville (MS),34.604167,-88.625,,0.025,,7359,296,147,,,,0,L1050 U1050 ,Cont. ID,80390,, +228,USA,,BCZ,b,Choctaw Butler (AL),32.104167,-88.125,,0.025,,7536,294,148,,,,,U1020 ,80388,,, +228,J,,MI,b,Omiya (kan-sai),35.9375,139.625,,0.025,,9224,36,160,,,,,U1000 5s,80389,,, +229,XON,,1M,b,Hibernia Platform, Offshore,46.770833,-48.791667,,0.025,,3937,284,112,,,,,L1044 ,DAID,80391, +229,CAN,,PD,b,Port Hawkesbury (NS),45.645833,-61.291667,,0.025,,4820,290,121,,,,673,L1042 U387 10329s,DAID,80394,, +229,CAN,,8K,b,Valleyview (AB),55.020833,-117.291667,,0.035,,7025,328,142,,,,,U387 10.3s,DAID,80392,, +229,USA,,SD,b,Louisville (KY),38.104167,-85.791667,,0.025,,6902,297,142,,,,,,86890,,, +229,ALS,,AKW,b,Klawock (AK),55.5625,-133.041667,,0.025,,7476,337,148,,,,2,L1035 U1032 6.3s,80393,,, +230,RUS,,WZ,b,Kamenka (PZ),55.229167,37.041667,,0.025,,2030,68,93,,,,,U1000 14.8s,IDx2,80425,, +230,CAN,,QB,b,Qubec (QC),46.729167,-71.458333,,0.5,,5389,296,114,,,,0,L410 U405 9.9s,DAID,80415,, +230,CAN,,YMU,b,Umiujaq (QC),56.520833,-76.541667,,0.025,,5069,310,124,,,,,U397 10.2s,80428,,, +230,CAN,,AC,b,Pleasant Lake (Yarmouth) (NS),43.854167,-66.041667,,0.025,,5241,290,125,,,,,U391 10.51s,DAID,80395,, +230,CAN,,VG,b,Vermilion (AB),53.354167,-110.791667,,0.7,,6922,323,128,,,,,U410 10.0s,DAID,80421,, +230,CAN,,YBM,b,Saint-Bruno-de-Guigues (QC),47.4375,-79.458333,,0.025,,5818,302,131,,,,173,L46 U386 10237s,DAID,80426,, +230,USA,,BA,b,Wesie Westfield (MA),42.229167,-72.708333,,0.025,,5777,293,131,,,,,L~1000 ,86891,,, +230,CAN,,ZUC,b,Ignace (ON),49.4375,-91.708333,,0.05,,6349,310,133,,,,,U396 10.4s,DAID,80429,, +230,USA,,VQ,b,Cargl Detroit (MI),42.354167,-82.958333,,0.025,,6398,299,137,,,,0,L1016 U1023 8600s,80422,,, +230,CUB,,UCL,b,Cayo Largo del Sur (ij),21.604167,-81.541667,,0.8,,7993,282,138,,,,806,L802 U806 8024s,80420,,, +230,USA,,AQE,b,Alwood Greenville (NC),35.6875,-77.375,,0.025,,6565,290,139,,,,999,L1036 U1035 8123s,80399,,, +230,USA,,AT,b,Gamie Appleton (WI),44.145833,-88.625,,0.025,,6591,304,139,,,,998,L1019 U1021 8600s,80400,,, +230,USA,,BU,b,Boutn Columbus (OH),39.8125,-83.208333,,0.025,,6609,297,139,,,,996,L1028 U1024 8186s,80404,,, +230,USA,,SH,b,Crakk Shreveport (LA),32.520833,-93.875,,0.4,,7853,298,139,,,,998,L1038 U1034 ,80417,,, +230,USA,,PD,b,Foris Pendleton (OR),45.6875,-118.708333,,0.4,,7946,323,140,,,,,L1044 U1035 6.0s,86892,,, +230,USA,,BES,b,Bennettsville (SC),34.604167,-79.708333,,0.025,,6800,290,141,,,,983,L1045 U1013 5065s,80401,,, +230,USA,,VYS,b,Valley Peru (IL),41.354167,-89.125,,0.025,,6840,302,141,,,,,L1009 U1007 ,TWEB,86893,, +230,USA,,AND,b,Anderson Co Anderson (SC),34.479167,-82.708333,,0.025,,7001,292,143,,,,,U1021 ,80397,,, +230,USA,,BI,b,Jadan Bismarck (ND),46.6875,-100.625,,0.025,,7028,313,143,,,,4,L1030 U1027 6.12s,80402,,, +230,USA,,HPT,b,Hampton (IA),42.729167,-93.208333,,0.025,,6961,305,143,,,,995,L1030 U1018 4.8s,80407,,, +230,USA,,HSB,b,Harrisburg-Raleigh Harrisburg (IL),37.8125,-88.541667,,0.025,,7091,299,144,,,,2,L1015 U1022 5639s,80408,,, +230,USA,,RDK,b,Red Oak (IA),41.020833,-95.291667,,0.025,,7218,305,145,,,,988,L1033 U1005 6.0s,80416,,, +230,USA,,CPP,b,Cole Spring Cullman (AL),34.354167,-86.791667,,0.025,,7267,295,146,,,,,U~1000 ,80405,,, +230,CAN,,YD,b,Smithers (BC),54.729167,-127.125,,0.025,,7385,333,147,,,,,L399 U399 10.12s,DAID,80427,, +230,USA,,NRN,b,Norton (KS),39.854167,-99.875,,0.025,,7569,307,149,,,,1,L1020 U1029 5127s,80413,,, +230,B,,ALC,b,Alcantara (MA),-2.395833,-44.375,,0.025,,7696,236,150,,,,,U1013 ,80396,,, +230,B,,CPG,b,Campina Grande (PB),-7.270833,-35.875,,0.025,,7724,225,150,,,,,L1054 7633s,86275,,, +230,MYA,,KI,b,Kanti,25.987222,95.674444,,0.025,,7710,74,150,,,,,,22100024,,, +230,AFS,,WR,b,Pretoria/Wonderboom (GT),-25.645833,28.208333,,0.1,,8903,160,153,,,,0,L1024 U1024 4.35s,80424,,, +230,USA,,BNZ,b,Abbeville (LA),29.979167,-92.125,,0.025,,7963,295,153,,,,0,L1034 U1042 7.8s,80403,,, +230,USA,,VRT,b,Wilbarger Vernon (TX),34.229167,-99.291667,,0.025,,8023,303,153,,,,1,L1014 U1014 5.64s,80423,,, +230,B,,ARG,b,Araguaia (PA),-8.354167,-49.291667,,0.025,,8544,237,158,,,,,L1022 7467s,86274,,, +230,USA,,SM,b,Metre Sacramento (CA),38.8125,-121.625,,0.025,,8726,321,159,,,,0,L1035 U1032 8.0s,80419,,, +230,B,,TBT,b,Tabatinga (AM),-4.229167,-69.958333,,0.025,,9458,257,161,,,,,L1027 5118s,86276,,, +230,B,,SJC,b,So Jose dos Campos (SP),-23.229167,-45.875,,0.025,,9791,227,162,,,,,,80418,,, +230,B,,GRU,b,Guarapuava (PR),-25.395833,-51.541667,,0.025,,10288,230,164,,,,,,80406,,, +230,INS,,OR,b,Bali (BA-den),-8.729167,115.208333,,0.025,,12052,80,170,,,,,,80414,,, +230,INS,,ZM,b,Biak (PA-bia),-1.1875,136.125,,0.025,,12690,57,172,,,,,U1020 11s,86277,,, +230,AUS,,LST,b,Leinster (WA),-27.854167,120.708333,,0.025,,14045,90,176,,,,,U1022 8s,80410,,, +230,NZL,,AP,b,Taupo (BOP),-38.729167,176.041667,,0.13,,18325,32,183,,,,,L1020 U1020 9s,80398,,, +230,AUS,,KMP,b,Kempsey (NSW),-31.0625,152.791667,,0.025,,16424,63,184,,,,,L400 U400 9s,80409,,, +230,AUS,,MEA,b,Meadow - Essendon (VIC),-37.645833,144.875,,0.025,,16433,80,184,,,,,,80411,,, +230,AUS,,NIE,b,Nile (TAS),-41.645833,147.291667,,0.025,,16869,84,186,,,,,L550 U520 9s,80412,,, +231,SVK,,R,b,Malacky/Kuchyňa (BA),48.395833,17.125,,0.025,,865,114,82,,,,,,ID+10 gap,80431,, +231,USA,,BU,b,Klump Buffalo (NY),43.020833,-78.625,,0.025,,6087,297,134,,,,0,L1017 U1023 8601s,80430,,, +232,CAN,,GP,b,Gasp (QC),48.770833,-64.375,,0.4,,4824,295,109,,,,,U405 10358s,DAID,80435,, +232,USA,,MX,b,Zoote Camp Springs (MD),38.9375,-76.875,,0.025,,6283,292,136,,,,,L1022 ,80438,,, +232,USA,,CO,b,Colfa Indianapolis (IN),39.645833,-86.208333,,0.025,,6804,299,141,,,,0,L1020 U1020 8600s,80433,,, +232,TCA,,GT,b,Cockburn Town (Grand Turk Island) (gtu),21.4375,-71.125,,0.025,,7303,274,146,,,,998,L1035 U1030 6867s,80436,,, +232,USA,,MIG,b,Millington (TN),35.270833,-89.958333,,0.025,,7385,298,147,,,,,U1021 5283s,80437,,, +232,CUB,,UMZ,b,Manzanillo (gr),20.270833,-77.125,,0.025,,7809,278,151,,,,,,86894,,, +232,USA,,GF,b,Birdy Austin (TX),30.270833,-97.708333,,0.025,,8276,300,156,,,,0,L1020 U1020 ,80434,,, +232,CHN,,SB,b,Luogang (AH),31.854167,117.208333,,0.025,,8521,55,158,,,,,,80439,,, +232,SNG,,BED,b,Bedok (se),1.3125,103.958333,,0.025,,10406,83,164,,,,,U954 7s,80432,,, +233,CAN,,UM,b,Churchill Falls (NL),53.604167,-64.208333,,0.025,,4545,301,118,,,,,U410 10391s,DAID,80465,, +233,CAN,,5L,b,Donaldson (QC),61.645833,-73.291667,,0.025,,4637,315,119,,,,,,86278,,, +233,CAN,,QN,b,Nakina (ON),50.1875,-86.625,,0.4,,6023,308,121,,,,999,L408 U407 10.2s,DAID,80463,, +233,CAN,,4F,b,Galaxi 2 Platform (NS),43.895833,-60.208333,,0.025,,4861,287,122,,,,,U408 ,80440,,, +233,ALS,,ALJ,b,Johnstone Point Island (AK),60.479167,-146.625,,1,,7267,346,130,,,,999,L409 U403 8.4s,80444,,, +233,USA,,CNH,b,Claremont (NH),43.354167,-72.375,,0.025,,5677,293,130,,,,998,L1042 U1037 5898s,80449,,, +233,CAN,,ZFD,b,Fond-du-Lac (SK),59.354167,-107.208333,,0.025,,6270,326,136,,,,,U396 10.49s,DAID,80469,, +233,USA,,EY,b,Chesi Chesapeake (VA),36.604167,-76.375,,0.025,,6430,290,137,,,,,U1018 ,80452,,, +233,USA,,CQM,b,Cook (MN),47.8125,-92.708333,,0.025,,6528,309,138,,,,,L1040 ,80450,,, +233,USA,,HLM,b,Holland (MI),42.8125,-86.125,,0.025,,6550,301,138,,,,990,L1028 U1009 6318s,80455,,, +233,USA,,PDR,b,Ottawa (OH),41.020833,-83.958333,,0.025,,6561,298,139,,,,,L1015 U1018 6.2s,86897,,, +233,CAN,,BR,b,Brandon (MB),49.895833,-100.041667,,0.025,,6733,315,140,,,,998,L385 U384 10.2s,DAID,80447,, +233,USA,,OEO,b,Osceola (WI),45.3125,-92.708333,,0.025,,6726,307,140,,,,,U1024 6093s,86896,,, +233,USA,,SUT,b,Yaupon Oak Island (NC),33.9375,-78.041667,,0.025,,6746,289,140,,,,7,L1015 U1030 ,80464,,, +233,CAN,,X6,b,Creston (BC),49.1875,-116.625,,0.1,,7535,324,142,,,,,,86898,,, +233,USA,,BWP,b,Breckenridge-Wahpeton Whapeton (ND),46.229167,-96.625,,0.025,,6861,310,142,,,,18,L1020 U1059 6.67s,80448,,, +233,USA,,AG,b,Bushe Augusta (GA),33.270833,-81.958333,,0.025,,7051,291,143,,,,1,L1037 U1044 6046s,80442,,, +233,USA,,AGM,b,Sparta / Huchn (TN),35.979167,-85.625,,0.025,,7062,295,144,,,,,,80443,,, +233,USA,,GRE,b,Greenville (IL),38.854167,-89.375,,0.025,,7056,300,144,,,,,,86895,,, +233,USA,,HEM,b,Huchn Sparta (TN),35.979167,-85.625,,0.025,,7062,295,144,,,,1,L1016 U1030 5.4s,80454,,, +233,CAN,,7V,b,Jasper - Hinton (AB),53.3125,-117.791667,,0.025,,7200,327,145,,,,,U382 10.4s,DAID,80441,, +233,USA,,GAK,b,Sioux Gateway Sioux City (IA),42.395833,-96.375,,0.025,,7163,307,145,,,,997,L1059 U1028 5886s,80453,,, +233,CAN,,Y,b,Calgary (AB),51.020833,-114.041667,,0.025,,7262,323,146,,,,,L415 U415 ,DAID,86899,, +233,CAN,,ZCA,b,Blackfoot Calgary (AB),51.020833,-114.041667,,0.025,,7262,323,146,,,,993,L415 U400 ,DAID,80468,, +233,USA,,AZN,b,Amazon St. Joseph (MO),39.895833,-94.875,,0.025,,7288,304,146,,,,999,L388 U396 6.8s,80446,,, +233,CAN,,W6,b,Creston North (BC),49.1875,-116.625,,0.025,,7535,324,148,,,,,U1020 9.6s,DAID,80467,, +233,USA,,HR,b,Bakky Harrison (AR),36.145833,-93.125,,0.025,,7501,300,148,,,,1,L1034 U1036 5977s,80456,,, +233,USA,,OKS,b,Oshkosh (NE),41.395833,-102.375,,0.025,,7569,310,149,,,,9,L1000 U1006 6.9s,80460,,, +233,USA,,PK,b,Issue Dallas (DFW) (TX),32.8125,-97.041667,,0.025,,8016,301,153,,,,,L1020 ,80462,,, +233,USA,,CV,b,Abeta Arcut (Eureka) (CA),40.979167,-124.125,,0.025,,8619,324,158,,,,998,L1032 U1028 ,80451,,, +233,USA,,VHN,b,Van Horn (TX),31.0625,-104.791667,,0.025,,8614,305,158,,,,,U1020 4.9s,80466,,, +233,USA,,LG,b,Becca Long Beach (CA),33.770833,-118.041667,,0.025,,9049,316,160,,,,0,L1036 U1035 6.5s,80458,,, +233,AUS,,AYE,b,Ayers Rock (NT),-25.1875,130.958333,,0.05,,14524,79,175,,,,,U400 8s,80445,,, +233,AUS,,NWN,b,Newman (WA),-23.4375,119.791667,,0.025,,13623,87,175,,,,,U400 ,80459,,, +233,AUS,,PIY,b,Pingelly (WA),-32.520833,117.041667,,0.025,,14161,97,177,,,,,L1020 U1028 8s,80461,,, +233,AUS,,KAT,b,Katoomba (NSW),-33.729167,150.291667,,0.025,,16490,69,184,,,,,U400 9s,80457,,, +234,LUX,fr,RTL,,Beidweiler (grv),49.730328,6.320833,,1500,,265,181,28,,0000-2400,1234567,99988,,45,,, +234,CAN,,7H,b,Marystown (NL),47.145833,-55.291667,,0.025,,4342,288,116,,,,,U~400 ,DAID,80471,, +234,USA,,JTM,b,Sutton (WV),38.6875,-80.625,,0.025,,6538,294,138,,,,,,86900,,, +234,CAN,,3Y,b,Donnelly (AB),55.729167,-117.125,,0.025,,6954,328,143,,,,,U400 10.2s,DAID,80470,, +234,USA,,EQQ,b,Coweta County Newnan (GA),33.270833,-84.708333,,0.025,,7226,293,145,,,,4,L1019 U995 6199s,80472,,, +234,USA,,RYD,b,Green Cove Springs (FL),29.979167,-81.625,,0.025,,7298,288,146,,,,,U1015 ,80473,,, +234,USA,,TX,b,Tecco Texarkana (AR),33.520833,-93.958333,,0.025,,7772,299,151,,,,995,L1038 U1029 5.9s,80474,,, +234,NZL,,TY,b,Titahi Bay (WGN),-41.104167,174.791667,,0.1,,18507,40,185,,,,,U1020 4s,80475,,, +235,CAN,,9H,b,La Grande 3 (QC),53.5625,-76.208333,,0.25,,5228,306,115,,,,,U392 9876s,DAID,80476,, +235,CAN,,CN,b,Cochrane (ON),49.0625,-80.958333,,0.1,,5790,304,125,,,,,U410 10325s,DAID,80478,, +235,PAK,,KO,b,Karachi (shd),24.930278,67.246667,,0.025,,5876,96,132,,,,,,31500031,,, +235,USA,,RW,b,Jambe Rocky Mount (Wilson) (NC),35.770833,-77.958333,,0.025,,6596,290,139,,,,,U1024 ,80481,,, +235,B,,URT,b,Uruburetama (CE),-3.604167,-39.458333,,0.025,,7544,231,148,,,,11,L1044 U1068 7114s,80483,,, +235,CHN,,OC,b,Xingtang (HB),38.4375,114.541667,,0.025,,7791,52,151,,,,,,80480,,, +235,B,,URB,b,Uberaba (MG),-19.770833,-47.958333,,0.15,,9563,230,154,,,,,L1033 U1030 7112s,80482,,, +235,VTN,,XVL,b,Vungtau (bvt),10.354167,107.1,,0.13,,9818,75,155,,,,0,L1010 U1011 ,80484,,, +235,B,,NVG,b,Naveagantes (SC),-26.895833,-48.625,,0.1,,10282,227,158,,,,,,80479,,, +235,B,,BGE,b,Bage (RS),-31.395833,-54.125,,0.1,,10988,229,160,,,,,6.7s,80477,,, +236,CAN,,YHK,b,Gjoa Haven (NU),68.645833,-95.875,,0.025,,5179,331,125,,,,,U417 10.3s,DAID,80504,, +236,CAN,,OW,b,Ramsayville (Ottawa) (ON),45.354167,-75.541667,,0.06,,5731,297,126,,,,,U407 10323s,DAID,80499,, +236,USA,,XQA,b,Squaw Greenville (ME),45.520833,-69.708333,,0.025,,5361,294,127,,,,,L~1000 ,80503,,, +236,CAN,,ZRJ,b,Round Lake (ON),52.9375,-91.291667,,0.05,,6064,313,131,,,,,U392 10479s,DAID,80507,, +236,CAN,,4L,b,Chatham (ON),42.3125,-82.041667,,0.05,,6346,298,133,,,,,U1017 9799s,DAID,80485,, +236,CAN,,J,b,Juliett / Toronto (ON),43.604167,-79.708333,,0.025,,6109,298,134,,,,,,86903,,, +236,CAN,,ZLB,b,Britania Mississauga (Toronto) (ON),43.604167,-79.708333,,0.025,,6109,298,134,,,,,U412 10.5s,DAID,86904,, +236,CAN,,YZA,b,Ashcroft (BC),50.6875,-121.291667,,0.5,,7575,327,136,,,,999,L407 U405 10.1s,DAID,80505,, +236,CAN,,ZHT,b,Forks Winnipeg (MB),49.854167,-97.125,,0.05,,6593,313,136,,,,,U403 10434s,DAID,80506,, +236,USA,,BHW,b,West Branch (MI),44.229167,-84.125,,0.025,,6325,301,136,,,,,,80488,,, +236,USA,,DO,b,Dougy Blue Lake (Minocqua) (WI),45.854167,-89.708333,,0.025,,6518,306,138,,,,988,L1040 U1015 6.1s,80492,,, +236,CAN,,H,b,Winnipeg (MB),49.854167,-97.125,,0.025,,6593,313,139,,,,,L400 ,DAID,86902,, +236,USA,,RZT,b,Ross Co. Chillicothe (OH),39.4375,-83.041667,,0.025,,6628,296,139,,,,,U994 6.10s,80500,,, +236,USA,,GY,b,Garie Gary (IN),41.5625,-87.291667,,0.025,,6716,301,140,,,,990,L1028 U1011 8600s,80495,,, +236,USA,,DEH,b,Decorah (IA),43.270833,-91.708333,,0.025,,6834,305,141,,,,,U1024 4.63s,80491,,, +236,USA,,VJ,b,Whine Abingdon (VA),36.729167,-81.958333,,0.025,,6774,294,141,,,,992,L1030 U1011 5154s,80502,,, +236,USA,,HEK,b,Stuckey Hemingway (SC),33.729167,-79.541667,,0.025,,6859,290,142,,,,,U1018 ,80496,,, +236,CAN,,9Z,b,Westlock (AB),54.145833,-113.708333,,0.025,,6968,325,143,,,,,U387 10.2s,DAID,80486,, +236,CAN,,JB,b,Laberge Whitehorse (YT),60.9375,-135.125,,0.025,,6989,340,143,,,,,U398 ,80498,,, +236,USA,,CTK,b,Canton (IL),40.5625,-90.041667,,0.025,,6957,302,143,,,,0,L1019 U996 7.61s,80490,,, +236,USA,,FOR,b,Forsyth (MT),46.270833,-106.541667,,0.025,,7353,316,147,,,,998,L1032 U1034 8.0s,80493,,, +236,USA,,BW,b,Noora Bowling Green (KY),36.895833,-93.541667,,0.025,,7463,301,148,,,,,L1016 U1026 8.74s,80489,,, +236,USA,,GNI,b,Grand Isle (LA),29.1875,-90.041667,,0.025,,7901,293,152,,,,,,TWEB,86901,, +236,CLN,,KK,b,Kankesanturai/Jaffna Airport (jaf),9.795833,80.071944,,0.025,,8036,97,153,,,,,,34700022,,, +236,USA,,HQ,b,Abern Hoquiam (WA),46.979167,-123.791667,,0.025,,8023,327,153,,,,0,L1030 U1030 6.1s,80497,,, +236,THA,,UD,b,Udon (udt),17.395833,102.791667,,0.025,,8914,74,159,,,,,,80501,,, +236,AUS,,BKT,b,Burketown (QLD),-17.770833,139.541667,,0.025,,14438,65,178,,,,,U1020 9s,86279,,, +236,AUS,,GLA,b,Gladstone (QLD),-23.854167,151.208333,,0.025,,15688,57,182,,,,,,80494,,, +236,AUS,,AY,b,Albury (NSW),-36.0625,146.958333,,0.025,,16455,76,184,,,,,U400 8s,80487,,, +237,CAN,,YJI,b,Broughton / Qikiqtarjuaq (NU),67.5625,-64.041667,,1,,4015,322,97,,,,,U403 10051s,DAID,80513,, +237,CAN,,7C,b,Fogo (NL),49.645833,-54.208333,,0.025,,4137,291,114,,,,,U384 ,DAID,80508,, +237,CHN,,KQ,b,Lanzhou (GS),36.520833,103.625,,0.4,,7332,61,134,,,,,,80512,,, +237,USA,,DYL,b,Doylestown (PA),40.354167,-75.125,,0.025,,6066,292,134,,,,,,80509,,, +237,USA,,EZF,b,Shannon Fredericksburg (VA),38.270833,-77.458333,,0.025,,6371,292,137,,,,,U1017 5744s,80511,,, +237,VEN,,EPL,b,El Pinal (tch),7.520833,-71.958333,,0.025,,8555,265,158,,,,,U904 7016s,80510,,, +237,URG,,LS,b,Curbelo (ma),-34.854167,-55.125,,0.025,,11361,228,167,,,,,,86280,,, +238,USA,,MMK,b,Meriden (CT),41.520833,-72.791667,,0.025,,5833,292,131,,,,,,86905,,, +238,CAN,,K5,b,Maple Creek (SK),49.895833,-109.458333,,0.025,,7168,320,145,,,,,U993 10.0s,DAID,80514,, +238,USA,,MPA,b,Meridian Nampa (ID),43.604167,-116.541667,,0.025,,8050,320,153,,,,995,L1022 U1019 8.0s,80516,,, +238,NZL,,KT,b,Kaitaia (NTL),-35.020833,173.208333,,1.1,,17845,34,172,,,,993,L1020 U1020 7s,80515,,, +239,CAN,,FE,b,Forestville (QC),48.729167,-69.125,,0.5,,5118,297,111,,,,0,L411 U410 10153s,DAID,80525,, +239,CAN,,VO,b,Val-d'Or (QC),48.0625,-77.791667,,0.5,,5677,301,117,,,,0,L405 U405 10.3s,DAID,80538,, +239,CAN,,5Q,b,Fontanges (QC),54.5625,-71.208333,,0.025,,4893,305,122,,,,0,L405 U410 8327s,DAID,80517,, +239,CAN,,8F,b,Debert (NS),45.4375,-63.458333,,0.025,,4972,291,123,,,,,,DAID,80518,, +239,CAN,,OJ,b,High Level (AB),58.5625,-117.125,,0.35,,6698,330,129,,,,1,L400 U407 10.2s,DAID,80533,, +239,USA,,CFX,b,Cadiz (OH),40.229167,-81.041667,,0.025,,6445,296,137,,,,1,L1039 U1038 7.80s,80522,,, +239,USA,,TCU,b,Tecumseh (MI),42.020833,-83.875,,0.025,,6479,299,138,,,,2,L1018 U1022 8.1s,80535,,, +239,USA,,TN,b,Tribe Menominee (WI),45.0625,-87.708333,,0.025,,6467,304,138,,,,1,L1042 U1043 5855s,80536,,, +239,USA,,DOH,b,Fort Bragg (NC),35.104167,-79.208333,,0.025,,6729,290,140,,,,15,L1030 U1066 7.71s,80523,,, +239,USA,,EA,b,Maggs Eau Claire (WI),44.9375,-91.375,,0.025,,6682,306,140,,,,998,L1045 U1042 4.88s,80524,,, +239,USA,,HKF,b,Hook Field Middletown (OH),39.479167,-84.458333,,0.025,,6711,297,140,,,,0,L1030 U1018 6076s,80528,,, +239,USA,,BBB,b,Benson (MN),45.3125,-95.625,,0.025,,6883,309,142,,,,42,L1006 U1038 42.0s,AWOS-3,80519,, +239,USA,,FNZ,b,Ferdinand Huntingburg (IN),38.229167,-86.875,,0.025,,6957,298,143,,,,0,L1020 U1029 6315s,80526,,, +239,USA,,GIW,b,Coronaca Greenwood (SC),34.270833,-82.125,,0.025,,6981,292,143,,,,,L1044 U1017 5.50s,80527,,, +239,USA,,MIW,b,Marshalltown (IA),42.104167,-92.958333,,0.025,,6998,305,143,,,,11,L1010 U1032 ,80531,,, +239,USA,,SAR,b,Sparta (IL),38.145833,-89.708333,,0.025,,7133,300,144,,,,,L400 U400 ,86907,,, +239,J,,OH,b,Tokachi (hok),42.895833,143.125,,0.5,,8662,31,146,,,,,U1000 20s,80532,,, +239,USA,,BPW,b,Osceola (AR),35.6875,-90.041667,,0.025,,7356,298,147,,,,1,L1020 U1022 7785s,80521,,, +239,USA,,LHX,b,LA JUNTA (CO),38.0625,-103.625,,0.025,,7926,309,152,,,,,,86906,,, +239,USA,,LNC,b,Lancaster (TX),32.5625,-96.708333,,0.025,,8018,300,153,,,,,U1016 6.0s,80529,,, +239,USA,,UBC,b,Ballinger (TX),31.6875,-99.958333,,0.025,,8284,302,156,,,,6,L1016 U1016 6.4s,80537,,, +239,USA,,PWY,b,Hebronville (TX),27.4375,-98.625,,0.025,,8580,298,158,,,,,U1034 6816s,80534,,, +239,URG,,LS,b,Capitn de Corbeta C.A. Curbelo (ma),-34.854167,-55.125,,0.025,,11361,228,167,,,,,7.1s,80530,,, +239,AUS,,WOL,b,Wollongong (NSW),-34.5625,150.791667,,0.1,,16589,69,179,,,,,L400 U400 7s,80539,,, +239,AUS,,BLT,b,Ballarat (VIC),-37.520833,143.791667,,0.025,,16351,81,184,,,,,L400 U400 8s,80520,,, +239,AUS,,LIS,b,Lismore (QLD),-28.8125,153.291667,,0.025,,16257,59,184,,,,,U400 9s,86281,,, +240,RUS,,L,b,Krasnodar / Pashkovskiy (KD),45.0625,39.208333,,0.025,,2512,95,98,,,,,L385 U385 ,80546,,, +240,USA,,LE,b,Lewie Auburn (Lewiston) (ME),43.979167,-70.375,,0.025,,5508,293,128,,,,996,L1040 U1017 6.13s,80547,,, +240,PAK,,MI,b,Mianwali (pjb),32.566111,71.566111,,0.025,,5564,86,129,,,,,,31500042,,, +240,USA,,CJ,b,Calde Springfield (IL),39.8125,-89.625,,0.025,,6993,301,143,,,,0,L1044 U1044 6019s,80544,,, +240,CAN,,M9,b,Kathlyn Smithers (BC),54.8125,-127.208333,,0.025,,7380,333,147,,,,1,L407 U409 8.4s,DAID,80549,, +240,CHL,,MJL,b,Mejillones (Antofagasta) (AN),-23.104167,-70.458333,,1,,11169,246,151,,,,6,L1036 U1033 10433s,80551,,, +240,CHN,,QU,b,Beijing (BJ),39.979167,116.625,,0.025,,7767,50,151,,,,,,80552,,, +240,CUB,,USC,b,Santa Clara/Villa Santa Clara (vc),22.479167,-79.958333,,0.025,,7813,282,151,,,,999,L1027 U1027 8750s,80554,,, +240,USA,,BVS,b,Skagit / Bay View Burlington / Mt Vernon (WA),48.479167,-122.458333,,0.025,,7828,327,151,,,,999,L1030 U1015 5.8s,80543,,, +240,B,,LJS,b,Lages (SC),-27.770833,-50.291667,,0.4,,10450,228,152,,,,,,80548,,, +240,B,,MAC,b,Maca (RJ),-22.354167,-41.791667,,0.2,,9507,224,152,,,,,,80550,,, +240,USA,,AWC,b,Fort Polk (LA),31.395833,-93.291667,,0.025,,7914,297,152,,,,994,L1040 U1028 ,80541,,, +240,B,,TIR,b,Tiris (PA),2.229167,-55.958333,,0.025,,7964,249,153,,,,998,L1034 U1037 7023s,80553,,, +240,B,,IB,b,Bonsucesso (SP),-23.395833,-46.375,,0.025,,9832,227,162,,,,,,80545,,, +240,INS,,BA,b,Blora (JT-blo),-6.979167,111.458333,,0.025,,11645,82,168,,,,0,L980 U980 ,80542,,, +240,AUS,,ABA,b,Albany (WA),-34.9375,117.791667,,0.05,,14395,99,174,,,,,L400 U404 9s,80540,,, +241,CAN,,YGT,b,Igloolik (NU),69.395833,-81.791667,,0.025,,4648,328,119,,,,,U419 9833s,DAID,80562,, +241,CAN,,4F,b,Galaxi 2 Platform (NS),43.895833,-60.208333,,0.025,,4861,287,122,,,,,U408 ,86282,,, +241,CAN,,HF,b,Hearst / Rene Fontaine (ON),49.6875,-83.708333,,0.1,,5900,306,126,,,,,U407 10263s,DAID,80557,, +241,USA,,EW,b,Chesa Newark (NJ),40.604167,-74.208333,,0.025,,5990,292,133,,,,,,80555,,, +241,USA,,VKX,b,Potomac Friendly (MD),38.729167,-76.958333,,0.025,,6304,292,136,,,,,,86909,,, +241,USA,,PVG,b,Portsmouth Norfolk (VA),36.770833,-76.458333,,0.025,,6422,290,137,,,,,U1010 6073s,80559,,, +241,USA,,VBW,b,Bridgewater (VA),38.354167,-78.958333,,0.025,,6459,293,138,,,,,U1018 5595s,80561,,, +241,CAN,,YLL,b,Lloydminster (AB),53.3125,-110.041667,,0.014,,6894,323,144,,,,993,L400 U388 9.5s,DAID,80563,, +241,VIR,,SX,b,Peste (stc),17.6875,-64.875,,0.025,,7193,267,145,,,,,L1043 6159s,80560,,, +241,USA,,ECY,b,Elk City (OK),35.4375,-99.375,,0.025,,7922,304,152,,,,,L1021 U1015 6.17s,86908,,, +241,USA,,EZY,b,Elk City (OK),35.4375,-99.375,,0.025,,7922,304,152,,,,1,L1020 U1023 6.15s,80556,,, +241,CHN,,OS,b,Tongjingchang (CQ),29.854167,106.875,,0.025,,8092,63,154,,,,3,L1059 U1065 ,80558,,, +242,XON,,3E,b,Platform (See comments),43.6875,-59.875,,0.025,,4852,286,121,,,,,L1025 ,DAID,80564,, +242,USA,,EFK,b,Newport (VT),44.9375,-72.208333,,0.025,,5556,295,129,,,,2,L1015 U1020 ,80569,,, +242,USA,,SY,b,Kirki Syracuse (NY),43.104167,-76.041667,,0.025,,5922,295,132,,,,996,L1038 U1031 8.1s,80584,,, +242,CAN,,YMY,b,Ear Falls (ON),50.729167,-93.375,,0.05,,6336,312,133,,,,22,L379 U410 10474s,DAID,80587,, +242,CAN,,XC,b,Cranbrook (BC),49.6875,-115.791667,,0.4,,7455,324,136,,,,699,L1010 U409 10.5s,DAID,80586,, +242,CAN,,ZT,b,Port Hardy (BC),50.6875,-127.458333,,0.5,,7791,331,138,,,,,U405 10.0s,DAID,80588,, +242,ALS,,FTO,b,Yukon River Fort Yukon (AK),66.5625,-145.208333,,0.025,,6604,347,139,,,,,U~1020 ,80571,,, +242,USA,,EDJ,b,Bellefontaine (OH),40.354167,-83.791667,,0.025,,6603,298,139,,,,999,L1043 U1040 7.6s,80568,,, +242,USA,,GM,b,Teels Milwaukee (WI),42.895833,-88.041667,,0.025,,6655,302,140,,,,2,L1032 U1037 8230s,80573,,, +242,CAN,,DR,b,Broadview (SK),50.395833,-102.625,,0.025,,6815,317,141,,,,,,86910,,, +242,USA,,CL,b,Tryon Charlotte (NC),35.145833,-81.041667,,0.025,,6842,292,141,,,,999,L1038 U1038 7245s,80566,,, +242,USA,,LE,b,Blayd Lexington (KY),37.979167,-84.625,,0.025,,6840,296,141,,,,995,L1039 U1039 6009s,80576,,, +242,USA,,GGE,b,Georgetown (SC),33.3125,-79.291667,,0.025,,6877,289,142,,,,990,L1063 U1035 5068s,80572,,, +242,USA,,HWQ,b,Harlowton (MT),46.4375,-109.791667,,0.08,,7490,318,143,,,,980,L1030 U980 7.0s,80575,,, +242,USA,,MMI,b,Mc Minn Co. Athens (TN),35.395833,-84.541667,,0.025,,7042,294,143,,,,0,L1007 U1013 5210s,80579,,, +242,USA,,EL,b,Valtr El Paso (TX),31.854167,-106.291667,,0.4,,8626,307,146,,,,5,L1030 U1046 8.2s,80570,,, +242,USA,,LKG,b,Lindbergh Americus (GA),32.1875,-84.125,,0.025,,7277,292,146,,,,0,L1017 U1024 6862s,80577,,, +242,USA,,BKZ,b,Brinkley (AR),34.895833,-91.208333,,0.025,,7492,298,148,,,,4,L1025 U1020 ,80565,,, +242,USA,,PJN,b,Plantation Fort Lauderdale (FL),26.145833,-80.208333,,0.025,,7522,284,148,,,,9,L1032 U1050 7726s,80580,,, +242,USA,,CUH,b,Cushing (OK),35.895833,-96.791667,,0.025,,7736,303,150,,,,941,L952 U928 5.93s,80567,,, +242,USA,,MEZ,b,Mena (AR),34.5625,-94.208333,,0.025,,7699,300,150,,,,,U1020 ,86911,,, +242,CHN,,QU,b,Beijing (BJ),39.979167,116.625,,0.025,,7767,50,151,,,,,L1003 ,IDx2,80583,, +242,HWA,,HN,b,Ewabe Honolulu (HI),21.3125,-158.041667,,0.025,,11712,345,169,,,,,U~1030 ,80574,,, +242,AUS,,KOW,b,Kowanyama (QLD),-15.479167,141.708333,,0.025,,14361,61,177,,,,,U400 7s,86284,,, +242,AUS,,PKS,b,Parkes (NSW),-33.145833,148.291667,,0.1,,16315,70,178,,,,,L400 U400 9s,80581,,, +242,NZL,,PP,b,Paraparaumu (WGN),-40.895833,174.958333,,0.25,,18495,39,181,,,,,L1020 U1020 8s,80582,,, +242,AUS,,TBD,b,Tailem Bend (SA),-35.270833,139.458333,,0.025,,15894,82,182,,,,,L400 U400 10s,80585,,, +242,AUS,,BMR,b,Brymaroo (QLD),-27.229167,151.625,,0.025,,16018,60,183,,,,,L1008 9s,86283,,, +242,AUS,,LT,b,Launceston (TAS),-41.5625,147.208333,,0.025,,16858,84,186,,,,,L1020 U1020 9s,86285,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,0440-0515,1234567,,,46,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,0730-0815,1234567,,,46,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,0940-1015,1234567,,,46,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,1540-1615,1234567,,,46,,, +243,DNK,da,DR Langblge,,Kalundborg/Radiovej (sjl),55.676611,11.069944,,50,,500,36,45,,1640-1715,1234567,,,46,,, +243,CAN,,YVB,b,Bonaventure (QC),48.104167,-65.541667,,0.09,,4937,295,117,,,,,U405 10267s,DAID,80594,, +243,CAN,,3X,b,Cluff Lake (SK),58.354167,-109.541667,,0.025,,6442,326,137,,,,,U1021 9.27s,DAID,80589,, +243,USA,,OZW,b,Howell (MI),42.645833,-83.958333,,0.025,,6436,300,137,,,,5,L1019 U1026 5846s,80592,,, +243,USA,,TWM,b,Two Harbors (MN),47.0625,-91.708333,,0.025,,6533,308,138,,,,0,L1037 U1038 8.12s,80593,,, +243,USA,,FZK,b,Wausau (WI),44.9375,-89.625,,0.025,,6585,305,139,,,,3,L1027 U1033 8107s,80590,,, +243,USA,,IAK,b,Palatka (FL),29.645833,-81.791667,,0.025,,7336,288,146,,,,998,L1013 U1014 7992s,80591,,, +244,CAN,,DG,b,Chute des Passes (QC),49.895833,-71.291667,,0.5,,5175,300,112,,,,1,L408 U408 10296s,DAID,80599,, +244,CAN,,TH,b,Thompson (MB),55.8125,-97.875,,1,,6162,319,119,,,,,U409 10.3s,DAID,80603,, +244,CAN,,3W,b,Goldboro Offshore Platform (NS),44.1875,-61.625,,0.025,,4934,288,122,,,,,L-400 ,86286,,, +244,USA,,HF,b,Lomis (CT),41.645833,-72.625,,0.025,,5814,292,131,,,,997,L1040 U1034 6464s,80600,,, +244,CAN,,I4,b,Lacombe (AB),52.479167,-113.708333,,0.025,,7117,324,144,,,,40,L300 U380 10.4s,DAID,80601,, +244,USA,,DDA,b,Commerce Jefferson (GA),34.0625,-83.541667,,0.025,,7088,293,144,,,,998,L1027 U1022 ,80598,,, +244,CLM,,BA,b,Barranquilla (atl),10.8125,-74.875,,0.025,,8467,270,158,,,,,L1020 U1020 8462s,86287,,, +244,CLM,,BAQ,b,Barranquilla (atl),10.8125,-74.875,,0.025,,8467,270,158,,,,0,L1022 U1021 8462s,80596,,, +244,CHN,,BZ,b,Yunhe (ZJ),28.0625,119.541667,,0.025,,8994,55,160,,,,,U1035 ,80597,,, +244,CLM,,ED,b,unknown (cun),4.770833,-74.208333,,0.025,,8949,266,160,,,,,L1055 9649s,86288,,, +244,CLM,,SLI,b,San Luis (nar),0.854167,-77.708333,,0.025,,9531,266,161,,,,,L1189 8535s,80602,,, +245,RUS,,NG,b,Nizhny Novgorod / Strigino (NN),56.1875,43.791667,,0.025,,2445,64,97,,,,,U1030 14.5s,IDx2,80630,, +245,RUS,,ST,b,Nizhny Novgorod / Strigino (NN),56.270833,43.791667,,0.025,,2444,64,97,,,,,,80637,,, +245,CAN,,CB,b,Cambridge Bay (NU),69.104167,-105.041667,,1,,5439,334,111,,,,996,L404 U393 10.0s,DAID,80613,, +245,IRN,,GSN,b,Gachsaran (kba),30.3125,50.875,,0.025,,4341,106,116,,,,,U1029 ,ID+7 tone,80619,, +245,CAN,,YZE,b,Gore Bay (ON),45.9375,-82.625,,0.4,,6110,302,122,,,,,L382 U397 9.7s,DAID,80642,, +245,PAK,,ZB,b,Zhob (blc),31.3975,69.454722,,0.025,,5510,89,128,,,,,,31500041,,, +245,USA,,ALP,b,Alpine Elmira (NY),42.229167,-76.791667,,0.025,,6032,295,133,,,,994,L1040 U1030 8025s,80605,,, +245,ALS,,HNS,b,Haines (AK),59.229167,-135.458333,,0.25,,7169,340,135,,,,0,L1032 U1032 ,80622,,, +245,CAN,,7A,b,Conklin, Leismer (AB),55.6875,-111.291667,,0.05,,6738,325,137,,,,,U420 ,86912,, +245,USA,,LUA,b,Caverns Luray (VA),38.6875,-78.458333,,0.025,,6402,293,137,,,,,U1007 5008s,80628,,, +245,USA,,FS,b,Rokky Sioux Falls (SD),43.479167,-96.791667,,0.1,,7096,308,138,,,,5,L1030 U1035 6.0s,80616,,, +245,USA,,NKT,b,Cherry Point (NC),34.854167,-76.791667,,0.025,,6593,289,139,,,,,,80631,,, +245,USA,,PWF,b,Sportys Batavia (OH),39.0625,-84.208333,,0.025,,6729,297,140,,,,,U1015 7531s,80633,,, +245,USA,,UDG,b,Darlington (SC),34.4375,-79.875,,0.025,,6824,290,141,,,,,U1020 5.66s,80639,,, +245,USA,,EZI,b,Kewanee (IL),41.1875,-89.958333,,0.025,,6902,302,142,,,,488,L1025 U~1000 ,80615,,, +245,USA,,HU,b,Yinno Terre Haute (IN),39.395833,-87.375,,0.025,,6894,299,142,,,,998,L1037 U1038 5955s,80623,,, +245,USA,,LFB,b,Lafayette (TN),36.520833,-86.041667,,0.025,,7044,296,143,,,,,U1030 6932s,80627,,, +245,USA,,JYL,b,Sylvania (GA),32.645833,-81.625,,0.025,,7080,290,144,,,,,U1020 7169s,80626,,, +245,USA,,CRR,b,Circle (MT),47.4375,-105.541667,,0.025,,7204,316,145,,,,3,L840 U842 4.5s,Cont. ID,80614,, +245,USA,,GTP,b,Patten Thomasville (GA),30.9375,-83.791667,,0.025,,7359,290,147,,,,0,L1033 U1037 8355s,80620,,, +245,USA,,MG,b,Marra Montgomery (AL),32.3125,-86.541667,,0.025,,7420,293,147,,,,996,L1052 U1034 6.22s,80629,,, +245,USA,,SBQ,b,Scobey Grenada (MS),33.895833,-89.875,,0.025,,7494,297,148,,,,1,L998 U1010 4.40s,80635,,, +245,USA,,UKL,b,Boyd Burlington (KS),38.3125,-95.708333,,0.025,,7468,304,148,,,,5,L1043 U1053 6.12s,80640,,, +245,USA,,SR,b,Ringy Sarasota / Bradenton (FL),27.3125,-82.458333,,0.025,,7573,287,149,,,,,L1042 6032s,80636,,, +245,CAN,,HE,b,Hope (BC),49.395833,-121.458333,,0.025,,7703,327,150,,,,5,L398 U387 10.2s,DAID,80621,, +245,B,,YBA,b,Itumbiara (GO),-18.4375,-49.208333,,0.2,,9501,232,152,,,,,,80641,,, +245,USA,,PTN,b,Patterson (LA),29.729167,-91.375,,0.025,,7938,295,152,,,,998,L1047 U1040 7.9s,80632,,, +245,USA,,BKD,b,Breckenridge (TX),32.729167,-98.875,,0.025,,8130,302,154,,,,998,L1020 U1015 6.2s,80612,,, +245,B,,GAB,b,Gabi / Joinville (SC),-26.354167,-48.708333,,0.2,,10235,227,155,,,,,,80617,,, +245,USA,,ARM,b,Wharton (TX),29.270833,-96.125,,0.025,,8268,298,156,,,,,U1032 6.5s,80607,,, +245,B,,RIB,b,Ribas (MS),-20.479167,-53.791667,,0.1,,9945,234,157,,,,,,80634,,, +245,USA,,ANR,b,Andrews (TX),32.354167,-102.541667,,0.025,,8372,304,157,,,,,U1014 6.3s,86913,,, +245,MEX,,AGG,b,Leguas Agualeguas (Nuevo Leon) (nvl),26.354167,-99.541667,,0.025,,8731,298,159,,,,930,L1070 U930 ,80604,,, +245,USA,,AVQ,b,Marana (AZ),32.395833,-111.208333,,0.025,,8839,310,159,,,,996,L1017 U1022 6736s,TWEB,80610,, +245,B,,ATF,b,Alta Floresta (MT),-9.854167,-56.125,,0.025,,9087,242,160,,,,9,L1016 U1044 7218s,80609,,, +245,USA,,AN,b,Boing San Diego (CA),32.729167,-117.208333,,0.025,,9108,315,160,,,,3,L1027 U1033 6.2s,80606,,, +245,B,,IC,b,Mocambeiro (MG),-19.5625,-44.041667,,0.025,,9342,227,161,,,,,,80624,,, +245,USA,,TLR,b,Mefford Tulare (CA),36.145833,-119.291667,,0.015,,8880,318,161,,,,1,L1025 U1028 8.0s,80638,,, +245,MLA,,JR,b,Johor Baru (jhr),1.6875,103.625,,0.025,,10351,83,164,,,,1,L999 U1002 ,80625,,, +245,INS,,AT,b,Pontianak (KB-ptk),-0.145833,109.375,,0.025,,10901,80,166,,,,,,80608,,, +245,AUS,,PN,b,Proserpine (QLD),-20.479167,148.541667,,0.025,,15224,57,180,,,,,L1020 U1020 8s,86289,,, +245,AUS,,BDG,b,Bendigo (VIC),-36.729167,144.291667,,0.05,,16327,79,181,,,,,L400 U400 10s,80611,,, +245,AUS,,GBA,b,Gibraltar (NSW),-29.604167,152.208333,,0.025,,16263,62,184,,,,,U440 8s,80618,,, +246,CAN,,S,b,Outer Cove/St Johns Int. (NL),47.645833,-52.708333,,0.025,,4146,287,114,,,,,,86914,,, +246,CAN,,ZYT,b,Outer Cove/St Johns Int. (NL),47.645833,-52.708333,,0.025,,4146,287,114,,,,,U~400 ,DAID,80646,, +246,USA,,DFI,b,Defiance (OH),41.354167,-84.458333,,0.025,,6565,299,139,,,,989,L1040 U1018 6.5s,80643,,, +246,CAN,,X,b,Fort St. John (BC),56.1875,-120.625,,0.025,,7035,330,143,,,,,,86915,,, +246,CAN,,ZXJ,b,Taylor Fort St. John (BC),56.1875,-120.625,,0.025,,7035,330,143,,,,,U404 10.33s,DAID,80645,, +246,USA,,FAU,b,Fairview (OK),36.270833,-98.458333,,0.025,,7798,304,151,,,,5,L1010 U1020 ,80644,,, +247,BLR,,GM,b,Gomel (GO),52.5625,30.958333,,0.025,,1661,79,90,,,,6,L1006 U1013 ,80649,,, +247,BLR,,MV,b,Gomel (GO),52.520833,31.041667,,0.025,,1667,79,90,,,,,L1010 8.0s,ID+4 gap,80651,, +247,CAN,,YDP,b,Nain (NL),56.520833,-61.708333,,0.025,,4261,304,116,,,,,U400 10185s,DAID,80653,, +247,CAN,,YLH,b,Lansdowne House (ON),52.1875,-87.958333,,0.25,,5949,310,122,,,,0,L411 U409 10.2s,DAID,80654,, +247,PAK,,SD,b,Skardu (ggb),35.348889,75.531389,,0.025,,5623,81,129,,,,,,31500051,,, +247,USA,,ILT,b,Isleta (NM),34.979167,-106.625,,0.4,,8361,309,145,,,,992,L1047 U1030 8s,80650,,, +247,USA,,COI,b,Merritt Island Cocoa / Titusville (FL),28.354167,-80.708333,,0.025,,7372,286,147,,,,990,L1040 U1020 5.6s,80647,,, +247,USA,,VED,b,Leesville (LA),31.104167,-93.375,,0.025,,7944,297,152,,,,8,L1020 U1038 8101s,80652,,, +247,CHN,,FZ,b,Tunli (SD),37.4375,121.208333,,0.025,,8231,49,155,,,,990,L1046 U1027 ,80648,,, +248,CAN,,UL,b,Montral (QC),45.479167,-73.875,,1,,5621,296,113,,,,996,L408 U400 10440s,DAID,80674,, +248,CAN,,YLA,b,Aupaluk (QC),59.3125,-69.625,,0.025,,4563,311,119,,,,,U363 10678s,DAID,80677,, +248,CAN,,WG,b,Winnipeg (MB),49.895833,-97.375,,0.25,,6603,313,129,,,,0,L400 U401 10.3s,DAID,80675,, +248,USA,,AC,b,Waivs Nantucket (MA),41.3125,-69.958333,,0.025,,5668,290,130,,,,512,L~1000 U1022 8638s,80655,,, +248,USA,,FRT,b,Fairmont Spartanburg (SC),34.895833,-81.958333,,0.4,,6920,292,130,,,,996,L1035 U1030 7.9s,80660,,, +248,USA,,IL,b,Hadin Wilmington (DE),39.5625,-75.625,,0.05,,6157,292,132,,,,1,L1045 U1050 9733s,80664,,, +248,CAN,,KZ,b,Buttonville Stouffville (Toronto) (ON),43.9375,-79.291667,,0.025,,6060,298,134,,,,,U384 10466s,DAID,80665,, +248,JMC,,MBJ,b,Montego Bay (wmd),18.520833,-77.958333,,1,,8014,277,137,,,,1,L1030 U1032 8458s,80666,,, +248,USA,,BF,b,Tabey Cleveland (OH),41.5625,-81.541667,,0.025,,6373,297,137,,,,0,L1030 U1030 5.9s,80656,,, +248,USA,,MX,b,Kedzi Chicago (IL),41.729167,-87.708333,,0.025,,6728,301,140,,,,1,L1029 U1032 ,80668,,, +248,USA,,HZP,b,Zionsville (IN),39.9375,-86.208333,,0.025,,6781,299,141,,,,983,L1016 U968 8.0s,80663,,, +248,CAN,,QH,b,Watson Lake (YT),60.1875,-128.875,,0.025,,6906,337,142,,,,,U410 ,80671,,, +248,USA,,BRY,b,Bardstown (KY),37.854167,-85.458333,,0.025,,6901,297,142,,,,,,86916,,, +248,USA,,GGI,b,Grinnell (IA),41.729167,-92.708333,,0.025,,7015,304,143,,,,989,U1027 4.7s,80661,,, +248,ALS,,GLA,b,Glennallen Gulkana (AK),62.1875,-145.458333,,0.025,,7067,346,144,,,,485,L1034 U~1020 8.6s,80662,,, +248,USA,,CG,b,Dutch Cape Girardeau (MO),37.270833,-89.708333,,0.025,,7205,299,145,,,,996,L1035 U1027 ,80659,,, +248,CAN,,QL,b,Lethbridge (AB),49.604167,-112.875,,0.025,,7342,322,146,,,,,L397 U390 10.2s,DBID,80672,, +248,USA,,BJU,b,Big Blue Beatrice (NE),40.354167,-96.791667,,0.025,,7357,306,147,,,,,U1000 7181s,80657,,, +248,CAN,,Z,b,Sandspit (BC),53.354167,-131.958333,,0.025,,7667,335,150,,,,,,86917,,, +248,CAN,,ZZP,b,Dead Tree Point Sandspit (BC),53.354167,-131.958333,,0.025,,7667,335,150,,,,,U407 10.2s,DAID,80678,, +248,USA,,MO,b,Wisle Mobile (AL),30.770833,-88.291667,,0.025,,7658,293,150,,,,998,L1032 U1035 5.9s,80667,,, +248,USA,,PQF,b,Mesquite (TX),32.8125,-96.541667,,0.025,,7986,300,153,,,,7,L1015 U1030 7.4s,80670,,, +248,AUS,,WR,b,Woomera (SA),-31.145833,136.791667,,0.5,,15398,80,168,,,,,L1022 U1022 9s,80676,,, +248,AUS,,MYB,b,Maryborough (QLD),-25.520833,152.708333,,0.025,,15927,57,183,,,,,L1020 U1020 10s,80669,,, +248,AUS,,CCK,b,Church Creek (NSW),-35.479167,149.208333,,0.025,,16559,72,185,,,,,L400 U400 8s,80658,,, +248,AUS,,SMI,b,Smithton (TAS),-40.8125,145.041667,,0.025,,16662,85,185,,,,,U400 8s,80673,,, +249,USA,,RK,b,Waley Suffolk (VA),36.604167,-76.625,,0.025,,6446,290,137,,,,996,L1024 U1015 4490s,80681,,, +249,USA,,LYD,b,Lakeside Houston (TX),29.8125,-95.708333,,0.025,,8196,298,155,,,,0,L~1051 U~1004 ,80680,,, +249,CHN,,RO,b,Sanjiang (GX),25.770833,109.625,,0.025,,8616,64,158,,,,,L1178 ,80682,,, +249,USA,,JC,b,Jorge San Jose (CA),37.354167,-121.875,,0.025,,8878,321,159,,,,996,L1046 U1038 8.0s,80679,,, +250,CAN,,YMH,b,Marys Harbour (NL),52.3125,-55.791667,,1,,4104,296,98,,,,,U410 10259s,DAID,80701,, +250,RUS,,C,b,Vladikavkaz / Beslan (SO),43.229167,44.541667,,0.025,,2981,94,103,,,,,,80688,,, +250,RUS,,L,b,Vladikavkaz / Beslan (SO),43.1875,44.625,,0.025,,2989,94,103,,,,,,80693,,, +250,CAN,,UAC,b,Eric Poste Montagnais (QC),51.895833,-65.708333,,0.5,,4725,300,107,,,,,U412 10169s,DAID,80698,, +250,KAZ,,K,b,Narimanovka / Kostanay (qos),53.229167,63.541667,,0.025,,3750,65,110,,,,,,80692,,, +250,CAN,,FO,b,Flin Flon (MB),54.6875,-101.708333,,1.6,,6422,319,119,,,,997,L406 U400 10.2s,DAID,80690,, +250,IRN,,BND,b,Bandar-e Abbas (hrg),27.229167,56.375,,0.025,,4956,104,123,,,,,L1020 ,Cont. ID,80687,, +250,CAN,,YTJ,b,Terrace Bay (ON),48.8125,-87.125,,0.1,,6151,307,128,,,,999,L409 U407 10278s,DAID,80702,, +250,USA,,UGS,b,University Athens / Albany (OH),39.270833,-82.125,,0.025,,6585,296,139,,,,1,L1037 U1041 8018s,80699,,, +250,B,,SPO,b,So Paulo (SP),-23.604167,-46.708333,,1,,9869,227,147,,,,,,80697,,, +250,TRD,,BGH,b,British Gas north coast Hibiscus platform,11.145833,-61.625,,0.025,,7538,259,148,,,,,L409 U405 6.14s,86290,,, +250,CAN,,2J,b,Grand Forks (BC),49.020833,-118.458333,,0.025,,7623,325,149,,,,999,L400 U410 8.43s,DAID,80683,, +250,B,,BEL,b,Belm (PA),-1.395833,-48.458333,,0.025,,7837,240,151,,,,12,L643 U1064 7445s,80686,,, +250,BRU,,AKI,b,Anduki (blt),4.633333,114.375,,0.6,,10806,73,152,,,,,L992 ,80684,,, +250,CUB,,UPB,b,Playa Baracoa (ch),23.020833,-82.541667,,0.025,,7939,284,152,,,,982,L938 U907 7412s,80700,,, +250,CHN,,DS,b,Heliushui (SC),30.1875,106.875,,0.025,,8064,63,154,,,,,L2 ,80689,,, +250,MYA,,KP,b,Kyaukpyu,19.425833,93.535,,0.025,,8123,80,154,,,,,,22100025,,, +250,B,,YUB,b,Itaituba (PA),-4.229167,-56.041667,,0.025,,8561,245,158,,,,995,L1040 U1043 15.88s,80703,,, +250,VEN,,GTO,b,Guasdualito (apu),7.229167,-70.791667,,0.025,,8501,264,158,,,,,L990 6985s,80691,,, +250,B,,OAS,b,Canoas (RS),-29.9375,-51.125,,0.1,,10698,227,159,,,,,,80695,,, +250,VTN,,PC,b,Phucat (bdh),13.854167,109.125,,0.05,,9640,72,159,,,,999,L1028 U1025 ,80696,,, +250,TWN,,AP,b,Anpu (TPS),25.1875,121.541667,,0.025,,9370,55,161,,,,0,L1027 U1027 ,80685,,, +250,BOL,,TJA,b,Tarija (trj),-21.5625,-64.708333,,0.025,,10679,242,165,,,,,,86293,,, +250,ARG,,LIB,b,Paso de los Libres (cn),-29.6875,-57.125,,0.025,,10987,232,166,,,,,,86292,,, +250,INS,,NO,b,Maumere (NT-sik),-8.645833,122.208333,,0.025,,12511,74,171,,,,,,80694,,, +250,NCL,,KC,b,Koumac (nor),-20.5625,164.291667,,0.025,,16022,37,183,,,,,20s,86291,,, +251,USA,,MVM,b,Machias (ME),44.6875,-67.458333,,0.025,,5276,292,126,,,,,U~1000 ,86919,,, +251,CAN,,XAJ,b,unknown (NT),73.3125,-123.458333,,0.025,,5559,343,129,,,,,U400 ,80727,,, +251,USA,,SKR,b,Shaker Hill Beford (MA),42.4375,-71.208333,,0.025,,5668,292,130,,,,0,L1021 U1020 ,80724,,, +251,ALS,,OSE,b,Oscarville Bethel (AK),60.770833,-161.875,,1,,7420,354,131,,,,1,L1028 U1027 8.4s,TWEB,80721,, +251,USA,,CXK,b,Clam Lake Bellaire (MI),44.895833,-85.208333,,0.025,,6337,302,136,,,,,U1014 8.3s,80709,,, +251,CAN,,YCD,b,Nanaimo (BC),49.145833,-123.875,,0.5,,7817,328,138,,,,10,L390 U402 10.0s,DAID,80728,, +251,USA,,EUU,b,Jnall Smithfield (NC),35.604167,-78.375,,0.025,,6636,290,139,,,,993,L1037 U1022 5242s,80712,,, +251,USA,,FW,b,Hoagy Fort Wayne (IN),40.9375,-85.125,,0.025,,6637,299,139,,,,2,L1035 U1039 5677s,80713,,, +251,USA,,BR,b,Larew Brainerd (MN),46.4375,-94.041667,,0.025,,6708,309,140,,,,999,L1053 U1028 6018s,80708,,, +251,USA,,HBW,b,Kickapoo Hillsboro (WI),43.645833,-90.291667,,0.025,,6724,304,140,,,,,,80714,,, +251,USA,,PWD,b,Plentywood (MT),48.770833,-104.541667,,0.05,,7042,316,140,,,,5,L1038 U1042 8.1s,80723,,, +251,BAH,,ZQA,b,Nassau (npr),25.020833,-77.458333,,0.1,,7433,282,141,,,,998,L1026 U1021 6442s,80729,,, +251,USA,,AM,b,Pande Amarillo (TX),35.145833,-101.791667,,0.4,,8083,306,142,,,,998,L1037 U1027 6.0s,80705,,, +251,CAN,,4O,b,Swan Hills (AB),54.6875,-115.458333,,0.025,,6987,327,143,,,,,U393 10.3s,DAID,80704,, +251,USA,,JZY,b,Macomb (IL),40.520833,-90.541667,,0.025,,6989,302,143,,,,998,L1040 U1038 7953s,80716,,, +251,USA,,OEA,b,Vincennes (IN),38.6875,-87.541667,,0.025,,6960,299,143,,,,,U1060 5.9s,80720,,, +251,USA,,PRO,b,Perry (IA),41.8125,-94.125,,0.025,,7087,305,144,,,,,U1023 6.0s,80722,,, +251,USA,,DB,b,Creke Dublin (GA),32.479167,-83.041667,,0.025,,7185,291,145,,,,998,L1022 U1019 7897s,80710,,, +251,USA,,LUG,b,Verona Lewisburg (TN),35.520833,-86.791667,,0.025,,7171,296,145,,,,1,L1012 U1016 6286s,80717,,, +251,USA,,UPK,b,Dublin (GA),32.479167,-83.041667,,0.025,,7185,291,145,,,,,,86920,,, +251,USA,,BI,b,Saige Billings (MT),45.854167,-108.708333,,0.025,,7492,317,148,,,,995,L1044 U1038 ,80706,,, +251,USA,,HEE,b,Thompson-Robbins West Helena (Helena) (AR),34.5625,-90.708333,,0.025,,7489,298,148,,,,,U1020 ,86918,,, +251,USA,,TZO,b,Bristow (OK),35.770833,-96.458333,,0.025,,7727,302,150,,,,,U1015 ,80726,,, +251,USA,,MNZ,b,Hamilton (TX),31.604167,-98.125,,0.025,,8184,301,155,,,,,L1040 U1054 5.8s,80719,,, +251,USA,,SV,b,Cozey Silver City (NM),32.645833,-108.041667,,0.025,,8649,308,159,,,,998,L1055 U1049 6.9s,80725,,, +251,THA,,KPS,b,Kamphaeng Saen,14.170278,99.956389,,0.025,,9007,78,160,,,,,,22100046,,, +251,AUS,,MEK,b,Meekatharra (WA),-26.604167,118.541667,,0.025,,13797,91,176,,,,,U1028 8s,80718,,, +251,PNG,,HKN,b,Hoskins (wnb),-5.479167,150.375,,0.025,,13869,45,176,,,,,L1030 8.7s,80715,,, +251,AUS,,BOR,b,Bordertown (SA),-36.395833,140.791667,,0.025,,16067,82,183,,,,,L400 U403 10s,80707,,, +251,AUS,,DU,b,Dubbo (NSW),-32.229167,148.541667,,0.025,,16257,69,184,,,,,L400 U400 8s,80711,,, +252,ALG,fr,Chane 3,,Tipaza (42),36.566111,2.480556,,750,,1756,192,46,,0000-2400,1234567,6,,48,,, +252,IRL,en,RT R 1,,Clarkestown/Summerhill (MH),53.462661,-6.677403,,100,,892,285,46,,0500-0200,1234567,0,,49,,, +252,XON,,3S,b,Thebaud Platform, Offshore Nova Scotia,43.895833,-60.208333,,0.025,,4861,287,122,,,,999,L1030 U1027 8394s,DAID,80730, +252,USA,,CJR,b,Culpeper (VA),38.520833,-77.875,,0.025,,6378,292,137,,,,,U1015 ,86921,,, +252,USA,,SMS,b,Sumter (SC),33.979167,-80.375,,0.025,,6893,290,142,,,,1,L1013 U1014 5471s,80731,,, +252,USA,,PJR,b,Prentiss (MS),31.604167,-89.875,,0.025,,7686,295,150,,,,,,86922,,, +253,CAN,,YTF,b,Alma (QC),48.520833,-71.625,,0.025,,5282,298,126,,,,,U389 10197s,DAID,80739,, +253,USA,,DD,b,Cobbs Columbus (OH),39.729167,-83.041667,,0.049,,6606,297,136,,,,994,L1028 U1015 5997s,80732,,, +253,USA,,JA,b,Hibbing Chisholm (MN),47.4375,-92.958333,,0.025,,6571,309,139,,,,998,L1037 U1035 6067s,80735,,, +253,USA,,GB,b,Garno Marshall (MN),44.520833,-95.875,,0.025,,6961,308,143,,,,997,L1060 U1044 6.0s,80733,,, +253,J,,GT,b,Niigata (chu-nii),37.9375,139.125,,0.5,,9006,36,147,,,,0,L1019 U1020 5s,DAID,80734,, +253,USA,,RHZ,b,Zephyrhills (FL),28.229167,-82.125,,0.025,,7475,287,148,,,,990,L1049 U1030 5817s,80737,,, +253,USA,,OC,b,Nados Nacogdoches (TX),31.479167,-94.708333,,0.025,,7992,298,153,,,,998,L1041 U1038 7.86s,80736,,, +253,CHN,,QJ,b,Shenzhen Airport (GD),22.8125,113.708333,,0.025,,9128,63,160,,,,,,86294,,, +253,USA,,UR,b,Vinee Burbank (CA),34.1875,-118.375,,0.025,,9025,317,160,,,,0,L1040 U1038 6.0s,80738,,, +254,CAN,,5B,b,Summerside (PE),46.395833,-63.875,,0.25,,4938,292,112,,,,0,L409 U409 10130s,DAID,80740,, +254,CAN,,EV,b,Inuvik (NT),68.3125,-133.625,,0.5,,6225,343,122,,,,,U397 ,DBID,80749,, +254,CAN,,SM,b,Fort Smith (AB),59.979167,-111.875,,0.4,,6391,328,125,,,,,U400 10.3s,DAID,80759,, +254,USA,,CAT,b,Chatham (NJ),40.729167,-74.458333,,0.025,,5997,292,133,,,,997,L1039 U1035 7.94s,80744,,, +254,USA,,EUD,b,York (PA),39.9375,-76.875,,0.025,,6208,293,135,,,,969,L1052 U977 4628s,80748,,, +254,USA,,LLW,b,Woodville Elizabeth City (NC),36.270833,-76.291667,,0.025,,6450,289,137,,,,0,L1040 U1042 8120s,80755,,, +254,USA,,MB,b,Manistee (MI),44.270833,-86.125,,0.025,,6438,302,137,,,,998,L1043 U1038 6126s,80756,,, +254,USA,,ENY,b,Kennedy Ashland (WI),46.5625,-90.875,,0.025,,6527,307,138,,,,2,L1016 U1016 6215s,80747,,, +254,USA,,GS,b,Marky Greensboro (NC),36.1875,-80.041667,,0.025,,6696,292,140,,,,0,L1036 U1036 6517s,80751,,, +254,USA,,BOZ,b,Whiteside Sterling / Rock Falls (IL),41.729167,-89.791667,,0.025,,6848,302,141,,,,1,L1019 U1021 8601s,80743,,, +254,USA,,HLB,b,Batesville (IN),39.354167,-85.291667,,0.025,,6772,298,141,,,,0,L1018 U1019 34000s,80753,,, +254,CAN,,E,b,Calgary (AB),51.1875,-114.041667,,0.025,,7247,323,145,,,,,,86924,,, +254,CAN,,ZYC,b,Calgary (AB),51.1875,-114.041667,,0.025,,7247,323,145,,,,2,L400 U407 10.0s,DAID,80763,, +254,USA,,BDD,b,Bellgrade Brookport (IL),37.145833,-88.708333,,0.025,,7155,298,145,,,,8,L1040 U1056 7.2s,80742,,, +254,USA,,FPY,b,Foley (FL),29.979167,-83.625,,0.025,,7427,290,147,,,,,U1030 ,80750,,, +254,USA,,ILJ,b,Willard Springfield (MO),37.3125,-93.458333,,0.025,,7423,301,147,,,,995,L1040 U1030 ,80754,,, +254,USA,,RA,b,Ranch Rapid City (SD),43.979167,-102.958333,,0.025,,7376,312,147,,,,7,L1030 U1037 7.9s,80758,,, +254,CAN,,TB,b,Skeena Terrace (BC),54.479167,-128.625,,0.025,,7456,334,148,,,,,U1012 10.4s,DAID,80761,, +254,USA,,DTS,b,Destin (FL),30.395833,-86.458333,,0.025,,7574,292,149,,,,,U376 7.9s,80746,,, +254,USA,,SPK,b,Reno (Sparks) (NV),39.6875,-119.708333,,0.2,,8559,320,149,,,,,,80760,,, +254,CHN,,HG,b,Wuhan (HU),30.9375,114.375,,0.025,,8442,57,157,,,,2,L1003 U1007 ,80752,,, +254,USA,,AWR,b,Window Rock (AZ),35.645833,-109.041667,,0.025,,8428,311,157,,,,,,86923,,, +254,AUS,,CMW,b,Camooweal (QLD),-19.895833,138.125,,0.025,,14539,68,178,,,,,L1020 8s,80745,,, +254,AUS,,OK,b,Oakey (QLD),-27.4375,151.708333,,0.025,,16042,60,183,,,,,L400 U400 8s,86295,,, +254,AUS,,MNG,b,Mangalore (VIC),-36.895833,145.208333,,0.025,,16401,79,184,,,,990,L400 U400 8s,80757,,, +254,NZL,,AS,b,Ashburton (CAN),-43.895833,171.791667,,0.1,,18599,56,185,,,,,,80741,,, +254,NZL,,WI,b,Waiuku (WKO),-37.270833,174.791667,,0.025,,18132,33,190,,,,,U1020 4s,80762,,, +255,POL,,WRC,b,Wroclaw / Strachowice,51.104167,16.875,,0.025,,731,95,80,,,,0,L995 U995 ,80782,,, +255,SRB,,NS,b,Ni (Srb-nsv),43.303433,21.825003,,0.025,,1508,124,88,,,,5,L1010 U1019 ,ID+8 tone,80771,, +255,MRC,,NUA,b,Casablanca / Mohamed V (gcb),33.4375,-7.625,,0.025,,2362,214,97,,,,,U1020 4.71s,80772,,, +255,IRN,,SBZ,b,Sabzevar (rkh),36.1875,57.708333,,0.025,,4349,93,116,,,,,L1098 ,80778,,, +255,RRW,,LO,b,Kigali,-1.993611,30.281944,,0.025,,6420,151,137,,,,,,9800003,,, +255,USA,,IM,b,Kords Kingsford (WI),45.729167,-88.125,,0.025,,6440,305,137,,,,0,L1041 U1041 5989s,80768,,, +255,USA,,PNU,b,Washington Co Washington (PA),40.145833,-80.125,,0.025,,6395,295,137,,,,999,L1038 U1036 ,80776,,, +255,USA,,PHH,b,Andrews (SC),33.4375,-79.541667,,0.025,,6883,289,142,,,,1,L1020 U1021 6010s,80773,,, +255,USA,,FYE,b,Somerville (TN),35.1875,-89.375,,0.025,,7357,297,147,,,,0,L1017 U1019 4130s,80767,,, +255,USA,,SW,b,Blaki Stillwater (OK),36.229167,-97.125,,0.05,,7726,303,147,,,,997,L1044 U1043 4482s,80781,,, +255,MYA,,HL,b,Hommalinn,24.894444,94.913056,,0.025,,7751,75,150,,,,,,22100047,,, +255,B,,SCR,b,Santa Cruz (RJ),-22.9375,-43.708333,,0.2,,9656,225,153,,,,,,80779,,, +255,B,,PNH,b,So Jos dos Pinhais (PR),-25.604167,-49.125,,0.2,,10184,228,155,,,,,,86296,,, +255,USA,,BS,b,Creed Austin (TX),30.104167,-97.708333,,0.025,,8291,299,156,,,,999,L1019 U1015 4357s,80764,,, +255,CLM,,CT,b,Cartagena (bol),10.395833,-75.554167,,0.025,,8550,270,158,,,,,L904 U904 7198s,80765,,, +255,B,,PMS,b,Palmas (TO),-10.270833,-48.375,,0.025,,8674,235,159,,,,0,L1028 U1028 6964s,80774,,, +255,B,,RON,b,Ji-Paran/Jos Coleto (RO),-10.895833,-61.958333,,0.025,,9541,246,161,,,,,L1070 ,80777,,, +255,CLM,,PPN,b,Popayn (cau),2.5625,-76.541667,,0.025,,9302,266,161,,,,,,86925,,, +255,ARG,,JUJ,b,Jujuy (Jujuy) (jy),-24.395833,-65.125,,0.025,,10959,241,166,,,,,,80769,,, +255,ARG,,ESC,b,Crdoba (cb),-31.4375,-64.291667,,0.025,,11541,236,168,,,,,L1020 ,80766,,, +255,INS,,SO,b,Solo,-7.520833,110.708333,,0.025,,11642,83,168,,,,,L1060 ,80780,,, +255,INS,,MD,b,Manado (SA-man),1.479167,124.875,,0.025,,11764,66,169,,,,0,L1018 U1020 8s,80770,,, +255,INS,,SI,b,Sarmi,-1.85,138.791667,,0.025,,12905,55,173,,,,,,86297,,, +256,ROU,,BSE,b,Baneasa Southeast,44.520833,26.208333,,0.025,,1682,112,90,,,,2,L1010 U1020 29.7s,IDx2 + 20 gap,80783,, +256,CAN,,YCY,b,Clyde River (NU),70.479167,-68.541667,,0.025,,4130,328,114,,,,,U421 10.0s,DAID,80791,, +256,CAN,,YXN,b,Whale Cove (NU),62.229167,-92.625,,0.025,,5471,323,128,,,,,U373 10689s,DAID,80792,, +256,CAN,,EB,b,Namao Edmonton (AB),53.6875,-113.458333,,0.025,,6999,325,143,,,,2,L1024 U976 8.35s,DAID,80785,, +256,USA,,SKN,b,Hurricane Smithville (TN),35.979167,-85.791667,,0.025,,7073,295,144,,,,,,86926,,, +256,USA,,HBZ,b,Heber Springs (AR),35.520833,-92.041667,,0.025,,7489,299,148,,,,,U1020 ,80786,,, +256,CUB,,UNV,b,Nuevas (cm),21.395833,-77.208333,,0.025,,7720,279,150,,,,820,L1184 U823 5945s,80790,,, +256,USA,,TQK,b,Scott City (KS),38.479167,-100.875,,0.025,,7742,307,150,,,,999,L1041 U1038 8.1s,80789,,, +256,USA,,DEF,b,Slidell (LA),30.3125,-89.875,,0.025,,7795,294,151,,,,2,L1036 U1038 8069s,80784,,, +256,USA,,JBL,b,Hodge Jonesboro (LA),32.1875,-92.708333,,0.025,,7811,297,151,,,,998,L1046 U1034 7794s,80787,,, +256,USA,,LSO,b,Kelso (WA),46.145833,-122.875,,0.025,,8069,326,154,,,,1,L1020 U1020 8.7s,very fast id,80788,, +256,NCL,,TH,b,Touho (nor),-20.770833,165.291667,,0.025,,16083,36,183,,,,,20s,86298,,, +257,UKR,,C,b,Gostomel / Antonov,50.645833,30.208333,,0.025,,1652,86,89,,,,,,80796,,, +257,LBY,,BS,b,Benghazi / Benina (bga),32.020833,20.291667,,0.025,,2501,148,98,,,,,,ID+8 gap,80795,, +257,CAN,,YR,b,Goose Bay (NL),53.354167,-60.375,,0.025,,4331,299,116,,,,964,L1046 U987 9800s,DAID,80826,, +257,CAN,,YXR,b,Earlton (ON),47.729167,-79.791667,,0.4,,5817,302,119,,,,0,L400 U401 10125s,DAID,80827,, +257,USA,,FVE,b,Frenchville (ME),47.270833,-68.291667,,0.025,,5159,295,125,,,,,U~1000 ,86927,,, +257,CAN,,T8,b,Saint-Frdric (QC),46.354167,-70.958333,,0.025,,5383,296,127,,,,,L539 7510s,DAID,80822,, +257,PAK,,BN,b,Bannu (kpk),32.976389,70.520833,,0.025,,5462,87,128,,,,,,31500039,,, +257,USA,,FFF,b,Plymouth (MA),41.854167,-70.791667,,0.025,,5682,291,130,,,,,U~1008 6.0s,80802,,, +257,CAN,,Y,b,Churchill (MB),58.645833,-93.958333,,0.025,,5776,319,131,,,,,,86930,,, +257,USA,,GTB,b,Drum Fort Drum (NY),44.0625,-75.708333,,0.025,,5833,296,131,,,,998,L1036 U1041 8.0s,80804,,, +257,USA,,TBY,b,Waterbury Oxford (CT),41.520833,-73.125,,0.025,,5855,292,132,,,,,U~1016 5749s,80823,,, +257,USA,,AV,b,BARTY Wilke Barre (PA),41.270833,-75.791667,,0.025,,6041,294,133,,,,3,L1031 U1039 6145s,80793,,, +257,CAN,,TZ,b,Toronto Island/Gibraltar Point (ON),43.604167,-79.375,,0.025,,6089,298,134,,,,,U395 10437s,DAID,80824,, +257,USA,,MB,b,Olste Saginaw (MI),43.479167,-84.208333,,0.025,,6387,301,137,,,,995,L1052 U1044 5966s,80809,,, +257,USA,,ETC,b,Tarboro (NC),35.9375,-77.541667,,0.025,,6557,290,139,,,,999,L1022 U1023 5.63s,80801,,, +257,USA,,RRL,b,Merrill (WI),45.1875,-89.708333,,0.025,,6570,305,139,,,,2,L1011 U1019 4.60s,80816,,, +257,USA,,PLD,b,Portland (IN),40.4375,-84.958333,,0.025,,6666,298,140,,,,,U1027 ,86929,,, +257,USA,,RNH,b,New Richmond (WI),45.145833,-92.541667,,0.025,,6730,307,140,,,,8,L1023 U1032 5457s,80815,,, +257,USA,,SAZ,b,Staples (MN),46.395833,-94.791667,,0.025,,6751,309,140,,,,0,L1035 U1039 8228s,80818,,, +257,ALS,,CUN,b,Chena Fairbanks (AK),64.854167,-147.458333,,0.025,,6817,348,141,,,,998,L1035 U1032 ,80799,,, +257,USA,,ME,b,Maxtn Maxton (NC),34.729167,-79.458333,,0.025,,6774,290,141,,,,988,L1028 U997 5204s,80810,,, +257,CAN,,XE,b,Saskatoon (SK),52.1875,-106.791667,,0.025,,6853,320,142,,,,,U386 10.5s,DAID,80825,, +257,USA,,CEU,b,Clemson (SC),34.6875,-82.875,,0.025,,6995,293,143,,,,5,L956 U968 6454s,80797,,, +257,USA,,FWC,b,Wayne County Fairfield (IL),38.395833,-88.375,,0.025,,7034,299,143,,,,,L1020 U1019 6755s,80803,,, +257,USA,,PEA,b,Pella (IA),41.395833,-92.958333,,0.025,,7056,304,144,,,,,U1017 5.2s,80812,,, +257,USA,,JHG,b,Hohenwald (TN),35.479167,-87.625,,0.025,,7226,296,145,,,,998,L1027 U1025 6389s,80806,,, +257,CAN,,LW,b,Kelowna (BC),50.0625,-119.375,,0.05,,7561,326,146,,,,,U405 10.2s,DAID,80808,, +257,USA,,JYR,b,York (NE),40.895833,-97.625,,0.025,,7357,307,147,,,,,U1003 8.0s,80807,,, +257,USA,,SQT,b,Satellite Melbourne (FL),28.104167,-80.708333,,0.025,,7393,286,147,,,,999,L1039 U1038 7.9s,80820,,, +257,USA,,HCY,b,Cowley (WY),44.895833,-108.458333,,0.025,,7565,316,149,,,,996,L1025 U1017 8.8s,80805,,, +257,USA,,DT,b,Pinck Denton (TX),33.270833,-97.208333,,0.025,,7986,301,153,,,,0,L1037 U1032 6.03s,80800,,, +257,USA,,BP,b,Kazoo Beaumont / Port Arthur (TX),29.979167,-94.125,,0.025,,8086,297,154,,,,998,L1053 U1050 6.2s,80794,,, +257,AFS,,PZ,b,Pietermaritzburg (KZN),-29.6875,30.458333,,0.1,,9393,159,155,,,,,U1130 4.67s,80813,,, +257,USA,,LKA,b,Chino / Mira Loma (CA),33.979167,-117.541667,,0.025,,9005,316,160,,,,,,86928,,, +257,AUS,,MJM,b,Manjimup (WA),-34.270833,116.125,,0.025,,14233,99,177,,,,,,80811,,, +257,AUS,,RK,b,Rockhampton (QLD),-23.354167,150.458333,,0.025,,15599,58,181,,,,,L400 U400 9s,80814,,, +257,AUS,,SFL,b,Stonefield (SA),-34.395833,139.375,,0.025,,15823,81,182,,,,,L400 U400 9s,80819,,, +257,AUS,,RUG,b,Rugby (NSW),-34.395833,148.958333,,0.025,,16458,71,184,,,,,L400 U400 9s,80817,,, +257,AUS,,SRN,b,Strahan (TAS),-42.145833,145.291667,,0.025,,16764,87,185,,,,,L400 U403 8s,80821,,, +257.5,AFS,,WB,b,Pretoria/Wonderboom (GT),-25.645833,28.291667,,0.1,,8905,160,153,,,,500,L1041 U1041 4.77s,80828,,, +258,CZE,,N,b,Ostrava / Mosnov / Nada (MO),49.729167,18.125,,0.025,,862,103,82,,,,2,L400 U400 10.0s,ID+9 gap,80829,, +258,GRL,,QT,b,Nuuk=Godthb (Kitaa) (sms-nuk),64.354167,-51.541667,,0.025,,3504,315,108,,,,0,L405 U400 10.28s,80832,,, +258,CAN,,ZSJ,b,Sandy Lake (ON),53.0625,-93.375,,0.5,,6158,314,122,,,,0,L405 U407 10.21s,DAID,80833,, +258,USA,,ORJ,b,Corry (PA),41.895833,-79.625,,0.025,,6231,296,135,,,,997,L1055 U1045 7.91s,80830,,, +258,USA,,PPF,b,Parsons (KS),37.354167,-95.541667,,0.025,,7540,303,148,,,,7,L1035 U1049 ,80831,,, +258.5,NOR,,MO,b,Molde / Aro,62.729167,7.125,,0.025,,1182,2,85,,,,-258.5,L374 U382 ,86299,,, +258.5,NOR,,HL,b,Svolvaer / Helle,68.229167,14.625,,0.025,,1845,11,91,,,,-258.5,,80834,,, +259,CAN,,YLP,b,Mingan (QC),50.270833,-64.125,,0.025,,4721,297,120,,,,,,86932,,, +259,USA,,VM,b,Meana (AR),34.520833,-94.041667,,0.025,,7692,300,150,,,,,,80836,,, +259,MYA,,MIA,b,Mandalay (mdy),21.689167,95.983056,,0.025,,8094,77,154,,,,,,22100038,,, +259,USA,,PBY,b,Peabody Kayenta (AZ),36.479167,-110.375,,0.025,,8420,312,157,,,,,L1020 U1030 7.0s,86931,,, +260,XOE,,BGAS2,b,Troll B Gas Platform,60.770833,3.541667,,0.025,,979,351,83,,,,2,L386 U389 ,ID+1 gap,80840,, +260,CAN,,YT,b,Saint John's/Torbay (NL),47.6875,-52.791667,,1,,4150,287,98,,,,,U~400 ,DAID,86937,, +260,IRN,,NS,b,Nowshahr (mzd),36.645833,51.541667,,0.025,,3897,98,112,,,,,,80865,,, +260,IRN,,NSR,b,Nowshahr (mzd),36.645833,51.541667,,0.025,,3897,98,112,,,,,L1052 ,80866,,, +260,RUS,,A,b,Norilsk / Alykel (KN),69.270833,87.291667,,0.025,,4383,33,117,,,,,,80837,,, +260,IRN,,RAF,b,Rafsanjan (krm),30.3125,56.041667,,0.025,,4684,101,120,,,,,L1039 ,Cont. ID,80871,, +260,CAN,,YAT,b,Wapisk Attawapiskat (ON),52.9375,-82.458333,,0.13,,5607,309,122,,,,999,L406 U410 10.2s,DAID,80879,, +260,USA,,EPM,b,Eastport (ME),44.895833,-67.041667,,0.025,,5235,292,125,,,,994,L1038 U1026 ,80849,,, +260,CAN,,UFX,b,Saint-Flix-de-Valois (QC),46.1875,-73.458333,,0.025,,5547,297,128,,,,,U400 10484s,DAID,80878,, +260,USA,,ESG,b,Rollins Rollinsford (NH),43.229167,-73.375,,0.025,,5748,294,130,,,,988,L1042 U1052 5.19s,80850,,, +260,B,,FLZ,b,Fortaleza (CE),-3.770833,-38.541667,,1,,7512,230,132,,,,988,L1036 U1013 7586s,80852,,, +260,USA,,PYA,b,Penn Yan (NY),42.645833,-77.041667,,0.025,,6017,296,133,,,,986,L992 U982 7.84s,80870,,, +260,USA,,BUH,b,Anne Arundel Fort Meade (Odenton) (MD),39.104167,-76.791667,,0.025,,6265,292,136,,,,,U1034 8180s,80842,,, +260,USA,,BL,b,Yanks Milwaukee (WI),43.0625,-87.875,,0.025,,6632,302,139,,,,7,L1014 U1030 ,80841,,, +260,USA,,BYN,b,Bryan (OH),41.479167,-84.458333,,0.025,,6555,299,139,,,,3,L1018 U1024 6677s,80844,,, +260,USA,,SUW,b,Bong Superior (WI),46.6875,-92.125,,0.025,,6585,308,139,,,,2,L1016 U1020 5201s,80876,,, +260,USA,,HAO,b,Hamilton (OH),39.354167,-84.541667,,0.025,,6726,297,140,,,,,U1025 7456s,80855,,, +260,USA,,HY,b,Harvi Thief River Falls (MN),48.020833,-96.125,,0.025,,6690,311,140,,,,,L1020 U1016 ,80857,,, +260,USA,,GHJ,b,Stonia Gastonia (NC),35.1875,-81.125,,0.025,,6844,292,141,,,,5,L1049 U1025 5469s,80854,,, +260,USA,,JYG,b,St James (MN),43.979167,-94.541667,,0.025,,6933,307,142,,,,997,L1025 U1017 29.5s,AWOS-3,80860,, +260,USA,,OLZ,b,Oelwein (IA),42.6875,-91.958333,,0.025,,6895,305,142,,,,,U1016 5.4s,80867,,, +260,USA,,XCB,b,Carlisle (PA),42.6875,-91.958333,,0.025,,6895,305,142,,,,,,86936,,, +260,TCA,,SC,b,Cockburn Harbour (South Caicos Island) (scs),21.520833,-71.541667,,0.05,,7325,275,143,,,,,U988 ,80873,,, +260,USA,,BNL,b,Barnwell (SC),33.270833,-81.375,,0.025,,7014,290,143,,,,,U1027 ,86933,,, +260,USA,,BVQ,b,Beaver Creek Glasgow (KY),37.020833,-86.041667,,0.025,,7004,296,143,,,,990,L1022 U1005 6.8s,80843,,, +260,CAN,,YSQ,b,Atlin (BC),59.645833,-133.708333,,0.025,,7085,339,144,,,,,U407 10.3s,DAID,80880,, +260,CTR,,HOR,b,Horcones (Heredia) (her),9.979167,-84.291667,,1,,9181,277,144,,,,136,L803 U1075 4.74s,80856,,, +260,AFS,,GG,b,George (WC),-34.020833,22.458333,,1,,9704,167,146,,,,,L1034 7.01s,80853,,, +260,CAN,,X,b,Prince George (BC),53.979167,-122.708333,,0.025,,7313,330,146,,,,,,86935,,, +260,CAN,,ZXS,b,Northwood Prince George (BC),53.979167,-122.708333,,0.025,,7313,330,146,,,,,U390 10.4s,DBID,80881,, +260,USA,,AP,b,Casse Denver (CO),39.4375,-104.875,,0.1,,7871,310,146,,,,989,L1048 U1021 6.0s,80838,,, +260,USA,,ST,b,Tario Saint Joseph (MO),39.6875,-94.875,,0.025,,7306,304,146,,,,,L1038 5001s,80875,,, +260,ALS,,ESS,b,Wessels Middleton Island (AK),59.4375,-146.375,,0.025,,7373,345,147,,,,,L1025 8.6s,TWEB,86934,, +260,CHL,,TOY,b,Tongoy (Coquimbo) (CO),-30.270833,-71.458333,,3,,11858,242,148,,,,,L1030 8524s,80877,,, +260,USA,,JH,b,Brenz Jackson (MS),32.395833,-90.291667,,0.025,,7646,296,149,,,,997,L1032 U1029 6133s,80859,,, +260,USA,,MTH,b,Marathon (FL),24.729167,-81.125,,0.025,,7701,284,150,,,,999,L1036 U1040 6.9s,80863,,, +260,USA,,OUN,b,Norman (OK),35.229167,-97.458333,,0.025,,7831,303,151,,,,995,L1037 U1027 7.9s,80868,,, +260,USA,,RL,b,Riboo Richland (WA),46.354167,-119.291667,,0.025,,7907,324,152,,,,998,L1038 U1035 6.0s,80872,,, +260,B,,MAE,b,Marte (SP),-23.520833,-46.625,,0.2,,9857,227,153,,,,,,80862,,, +260,USA,,AVZ,b,Travis Terrell (TX),32.770833,-96.208333,,0.025,,7970,300,153,,,,996,L1052 U1019 6.4s,80839,,, +260,USA,,CL,b,Rowdy College Station (TX),30.479167,-96.375,,0.025,,8178,299,155,,,,0,L1055 U1055 6.1s,80846,,, +260,MYA,,NS,b,Namsang,20.885833,97.732778,,0.025,,8278,76,156,,,,,,22100036,,, +260,USA,,EU,b,Frakk Junction City (Eugene) (OR),44.229167,-123.208333,,0.025,,8267,325,156,,,,999,L1040 U1040 8.0s,80851,,, +260,USA,,CEP,b,Ruidoso (Capitan) (NM),33.479167,-105.375,,0.025,,8429,307,157,,,,,,80845,,, +260,USA,,SNE,b,Santa Elena (TX),26.729167,-98.541667,,0.025,,8637,298,158,,,,,U1014 5.0s,80874,,, +260,B,,VCO,b,Vitria da Conquista (BA),-14.854167,-40.875,,0.025,,8722,226,159,,,,,,86300,,, +260,MLA,,LAB,b,Labuan,5.270833,115.291667,,0.1,,10809,72,160,,,,2,L1015 U1018 ,80861,,, +260,B,,CZS,b,Cruzeiro do Sul (AC),-7.604167,-72.791667,,0.025,,9946,257,163,,,,,L1026 7.08s,80847,,, +260,NFK,,NF,b,Puppys Point (Norfolk Is),-29.020833,167.958333,,2,,17031,38,167,,,,0,L400 U400 9s,80864,,, +260,AUS,,PD,b,Port Hedland (WA),-20.395833,118.625,,0.025,,13290,86,174,,,,,U1028 7s,80869,,, +260,AUS,,IVL,b,Inverell (NSW),-29.895833,151.125,,0.025,,16222,63,184,,,,,L400 U400 8s,80858,,, +261,BUL,bg,BNR Horizont/Parlament R,,Vakarel (sof),42.576389,23.698611,,75,,1672,122,55,,0000-2400,1234567,7,,51,,, +261,CAN,,2H,b,Lebel-sur-Quvillon (QC),49.020833,-77.041667,,0.13,,5569,302,122,,,,2,L402 U410 8365s,DAID,80882,, +261,CAN,,GD,b,Goderich (ON),43.729167,-81.708333,,0.025,,6220,299,135,,,,,U405 10198s,DAID,80888,, +261,USA,,ELQ,b,Emporia (VA),36.604167,-77.458333,,0.025,,6499,291,138,,,,,L1042 U1017 5941s,80887,,, +261,CAN,,5U,b,Fort Vermillion (AB),58.395833,-115.958333,,0.025,,6673,329,140,,,,,U386 10.22s,DAID,80883,, +261,USA,,OA,b,Ellas Jacksonville (NC),34.770833,-77.708333,,0.025,,6659,289,140,,,,0,L1033 U1033 5.57s,80889,,, +261,CAN,,7J,b,Forestburg (AB),52.5625,-112.125,,0.025,,7046,323,143,,,,,U379 10.3s,DAID,80884,, +261,CAN,,D6,b,Fairmont Hot Springs (BC),50.3125,-115.875,,0.025,,7401,324,147,,,,993,L400 U386 ,DAID,80886,, +261,USA,,CHN,b,Wauchula (FL),27.520833,-81.875,,0.025,,7518,287,148,,,,0,L1020 U1020 5564s,80885,,, +261,AUS,,WG,b,Wagga (NSW),-35.145833,147.458333,,0.025,,16418,74,184,,,,,,80890,,, +262,POL,,NR,b,Inowrocław (KP),52.834722,18.343611,,0.025,,811,80,81,,,,,L400 U407 ,ID+2.3 gap,86301,, +262,CAN,,F,b,Iqaluit (Frobisher Bay) (NU),63.729167,-68.458333,,1,,4322,317,100,,,,,U400 ,86938,,, +262,CAN,,S2,b,Coal Valley (AB),53.0625,-116.791667,,0.1,,7185,326,139,,,,,,86940,,, +262,USA,,RG,b,Red Wing (MN),44.604167,-92.625,,0.025,,6778,306,141,,,,,L1030 U1022 ,86939,,, +262,NZL,,OD,b,Woodend,-43.354167,172.708333,,0.025,,18606,52,191,,,,,6.94s,80891,,, +263,CAN,,QY,b,Sydney (NS),46.229167,-59.958333,,0.5,,4698,290,107,,,,0,L405 U410 10.3s,DAID,80915,, +263,CAN,,YGK,b,Kingston (ON),44.3125,-76.625,,1,,5871,297,116,,,,2,L400 U398 10125s,DAID,80922,, +263,CAN,,YBB,b,Pelly Bay Kugaaruk (NU),68.520833,-89.791667,,0.025,,4977,329,123,,,,,U401 ,DAID,80921,, +263,CAN,,ZTS,b,Sandy Falls Timmins (ON),48.479167,-81.375,,0.025,,5855,304,132,,,,,U691 10.4s,DAID,86945,, +263,CAN,,ZQT,b,Superior Thunder Bay (ON),48.395833,-89.208333,,0.05,,6296,308,133,,,,,U408 9.9s,DAID,80924,, +263,CAN,,T,b,Timmins (ON),48.395833,-89.208333,,0.025,,6296,308,136,,,,,U365 ,DAID,86944,, +263,USA,,BFA,b,Boyne Falls (MI),45.1875,-84.958333,,0.025,,6301,303,136,,,,,L1020 U1017 ,86941,,, +263,USA,,LQL,b,Lakeland Willoughby (OH),41.6875,-81.375,,0.025,,6354,297,137,,,,999,L1017 U1020 5829s,80909,,, +263,ALS,,CQR,b,Chandalar Lake (AK),67.520833,-148.458333,,0.025,,6549,349,138,,,,481,L1037 U~1020 ,80897,,, +263,USA,,GR,b,Knobs Grand Rapids (MI),42.895833,-85.375,,0.025,,6500,301,138,,,,986,L1032 U1024 5988s,80903,,, +263,USA,,JN,b,Jurly Smithfield (NC),35.479167,-78.458333,,0.025,,6651,290,139,,,,3,L1022 U1022 4684s,80906,,, +263,USA,,PBH,b,Phillips (WI),45.6875,-90.375,,0.025,,6568,306,139,,,,,U1017 ,80913,,, +263,USA,,UYF,b,London (OH),39.9375,-83.458333,,0.025,,6615,297,139,,,,5,L1024 U1033 6483s,80919,,, +263,CAN,,3Z,b,Russell (MB),50.770833,-101.291667,,0.025,,6721,316,140,,,,,U340 ,DAID,80892,, +263,USA,,GGP,b,Logansport (IN),40.729167,-86.375,,0.025,,6728,300,140,,,,,L1025 U1027 8.4s,86942,,, +263,CAN,,ZL,b,Liard River (BC),59.479167,-126.125,,0.025,,6898,335,142,,,,,U408 10.2s,DAID,80923,, +263,USA,,CDN,b,Camden (SC),34.270833,-80.541667,,0.025,,6880,291,142,,,,995,L1009 U998 ,80896,,, +263,USA,,DYQ,b,Dulaney Greenville (TN),36.145833,-82.875,,0.025,,6878,294,142,,,,2,L1019 U1020 7316s,80900,,, +263,ALS,,OAY,b,Norton Bay (Moses Point) (AK),64.6875,-162.041667,,0.025,,6990,354,143,,,,0,L1034 U1036 8.3s,80912,,, +263,USA,,BGF,b,Boiling Fork Winchester (TN),35.1875,-86.041667,,0.025,,7152,295,144,,,,0,L1029 U1035 4.66s,80894,,, +263,USA,,CVM,b,Civic Memorial Alton (IL),38.895833,-90.041667,,0.025,,7092,300,144,,,,998,L1019 U1023 7.63s,80898,,, +263,USA,,MOQ,b,Mc Intosh Fort Stewart (GA),31.8125,-81.541667,,0.025,,7143,289,144,,,,,L1031 U1029 8010s,80911,,, +263,USA,,DA,b,Tomok Daytona Beach (FL),29.145833,-81.125,,0.025,,7334,287,146,,,,,L397 8600s,80899,,, +263,USA,,JDN,b,Jordan (MT),47.3125,-106.958333,,0.025,,7281,317,146,,,,959,L1065 U977 8.0s,80905,,, +263,USA,,LXT,b,Lesumit Lees Summit (MO),38.979167,-94.375,,0.025,,7336,303,146,,,,997,L1050 U1044 ,80910,,, +263,USA,,HWB,b,Shaw Beatrice (NE),40.270833,-96.791667,,0.025,,7364,306,147,,,,,U1020 5435s,80904,,, +263,USA,,RLL,b,Rolla (Municipal) (ND),36.479167,-94.125,,0.025,,7532,301,148,,,,,,80916,,, +263,USA,,RO,b,Rogers (AR),36.479167,-94.041667,,0.025,,7527,301,148,,,,998,L1015 U1007 5998s,80917,,, +263,USA,,BF,b,Creve Scottsbluff (NE),41.8125,-103.458333,,0.025,,7589,311,149,,,,993,L1042 U1032 6.8s,80893,,, +263,USA,,ECY,b,Eunice (LA),30.5625,-92.458333,,0.025,,7934,296,152,,,,2,L1033 U1034 7.8s,80901,,, +263,USA,,JSO,b,Cherokee Co Jacksonville (TX),31.854167,-95.208333,,0.025,,7990,299,153,,,,,U1037 8.1s,80907,,, +263,USA,,LB,b,Freep Angleton / Lake Jackson (TX),29.1875,-95.458333,,0.025,,8235,297,155,,,,993,L1042 U1047 8419s,80908,,, +263,USA,,ER,b,Shein Kerrville (TX),29.895833,-99.041667,,0.025,,8388,300,157,,,,2,L1019 U1021 8.5s,80902,,, +263,THA,,PL,b,Phitsanulok (psl),16.8125,100.291667,,0.025,,8800,77,159,,,,,,80914,,, +263,USA,,UAD,b,Chualar Salinas (CA),36.479167,-121.458333,,0.025,,8945,320,159,,,,993,L1045 U1035 9.0s,80918,,, +263,AUS,,CB,b,Canberra (ACT),-35.3125,149.208333,,0.025,,16546,72,185,,,,,L400 U400 8s,80895,,, +263,AUS,,WGT,b,Wangaratta (VIC),-36.4375,146.291667,,0.015,,16439,77,186,,,,,,80920,,, +264,SYR,,ABD,b,Damascus International / Abyad (dim),33.354167,36.458333,,0.025,,3181,119,105,,,,,L1020 U1025 ,ID+7 gap,80926,, +264,CAN,,ZPB,b,Sachigo Lake (ON),53.895833,-92.208333,,0.05,,6039,314,130,,,,,U397 10.5s,DAID,80933,, +264,USA,,PT,b,Pottstown / Googl (PA),40.229167,-75.458333,,0.025,,6097,292,134,,,,,,86946,,, +264,CAN,,A1,b,Tal Thielei Narrows (NT),62.604167,-111.541667,,0.025,,6157,330,135,,,,,,80925,,, +264,RRW,,ZE,b,Gabiro,-1.535833,30.399722,,0.025,,6375,151,137,,,,,,9800001,,, +264,USA,,ON,b,Winona (MN),44.020833,-91.625,,0.025,,6769,305,141,,,,,L1050 U1055 8.22s,86303,,, +264,CLM,,PSO,b,Pasto (nar),1.395833,-77.291667,,1,,9455,266,145,,,,,U1071 ,80931,,, +264,USA,,JUY,b,Judd Andelusia (AL),31.3125,-86.375,,0.025,,7492,292,148,,,,0,L1030 U1034 8.38s,80930,,, +264,USA,,SZT,b,Sandpoe Sandpoint (ID),48.270833,-116.541667,,0.025,,7616,323,149,,,,998,L1023 U1016 5.1s,80932,,, +264,USA,,HN,b,Suybe Shawnee (OK),35.4375,-96.958333,,0.025,,7785,302,151,,,,995,L1025 U1030 3.7s,80929,,, +264,CLM,,AQ,b,Barranquilla (atl),10.854167,-74.791667,,0.025,,8458,270,158,,,,0,L1026 U1027 8323s,80927,,, +264,CLM,,UC,b,Ccuta (nsa),7.9375,-72.541667,,0.025,,8558,266,158,,,,,U1008 7229s,86304,,, +264,AUS,,CCY,b,Cloncurry (QLD),-20.645833,140.541667,,0.025,,14758,66,179,,,,,L400 U400 10s,80928,,, +264,NCL,,LU,b,Lifou (ily),-20.770833,167.208333,,0.025,,16157,33,183,,,,,,86302,,, +265,HRV,,KAV,b,Pula / Kavran (pa),44.895833,14.004167,,0.05,,977,142,80,,,,0,L1029 U1020 8.5s,ID+5 gap,80939,, +265,UKR,,ZL,b,Zolochiv,49.8125,24.875,,0.025,,1314,94,86,,,,2,L400 U1016 30.0s,IDx2 + 20 gap,80946,, +265,ALG,,OO,b,Oran / Es Senia (31),35.729167,-0.375,,0.025,,1899,199,92,,,,,12.5s,80941,,, +265,GRL,,JH,b,Qaqortoq=Julianehb (Kitaa) (kuj-qqt),60.729167,-46.041667,,0.025,,3266,308,106,,,,1,L397 U399 10281s,80938,,, +265,IRQ,,ORT,b,Tal Afar (nnw),36.270833,42.375,,0.025,,3315,108,106,,,,,U1021 ,ID+3 gap,86305,, +265,CAN,,YKO,b,Akulivik (QC),60.8125,-78.125,,0.025,,4909,316,122,,,,,U384 10.25s,DAID,80945,, +265,USA,,SXD,b,Springfield (VT),43.270833,-72.625,,0.025,,5698,294,130,,,,997,L1043 U1035 8374s,80943,,, +265,USA,,XPZ,b,Winchester / Frogtown Cold Mountain (VA),39.0625,-77.875,,0.025,,6337,293,136,,,,998,L1025 U1021 7.70s,80944,,, +265,USA,,EDE,b,Edenton (NC),36.020833,-76.541667,,0.025,,6486,289,138,,,,976,L1058 U1001 4332s,80937,,, +265,USA,,BBW,b,Broken Bow (NE),41.4375,-99.625,,0.025,,7420,308,147,,,,,U1020 6.03s,80935,,, +265,IND,,DBR,b,Dibrugarh (AS),27.465278,95.018333,,0.025,,7543,73,148,,,,,,32200041,,, +265,B,,CF,b,Vespa (MG),-19.6875,-43.875,,0.2,,9346,227,152,,,,,,80936,,, +265,B,,KRI,b,Taquari (RS),-29.770833,-51.791667,,0.2,,10716,228,156,,,,,,80940,,, +265,MYA,,YGN,b,Yangon,17.076111,96.238056,,0.025,,8506,79,158,,,,,,22100044,,, +265,TWN,,AY,b,Kangshan (KH),22.770833,120.291667,,0.025,,9522,58,161,,,,,9s,80934,,, +265,BOL,,TCZ,b,El Trompillo (scz),-17.8125,-63.208333,,0.025,,10248,243,164,,,,,,86306,,, +266,CAN,,YZX,b,Greenwood (NS),44.9375,-65.125,,0.4,,5111,291,112,,,,986,L1034 U1016 5.90s,DAID,80970,, +266,CAN,,YFH,b,Fort Hope (ON),51.5625,-87.875,,0.2,,5990,310,124,,,,,U411 10.0s,DAID,80969,, +266,CAN,,J,b,Mirabel (QC),45.6875,-74.208333,,0.02,,5627,297,130,,,,,,86951,,, +266,CAN,,ZMM,b,Mirabel Colomban (Montreal) (QC),45.6875,-74.208333,,0.02,,5627,297,130,,,,,U414 10129s,DAID,80972,, +266,CAN,,ZHM,b,Hamilton (Binbrook) (ON),43.145833,-79.791667,,0.05,,6148,298,131,,,,,U404 10436s,DAID,80971,, +266,USA,,IT,b,Vrnah Ithaca (NY),42.4375,-76.375,,0.025,,5991,295,133,,,,999,L1017 U1016 6351s,80958,,, +266,CAN,,B,b,Hamilton (ON),43.145833,-79.791667,,0.025,,6148,298,134,,,,,,86948,,, +266,CAN,,GH,b,Fort Good Hope (YT),66.270833,-128.625,,0.025,,6316,340,136,,,,,U400 10.3s,DAID,80953,, +266,USA,,DU,b,Calin Marshfield (WI),44.5625,-90.125,,0.025,,6642,305,139,,,,995,L1014 U1000 5868s,80952,,, +266,USA,,CQJ,b,City Lake Asheboro (NC),35.729167,-79.875,,0.025,,6722,291,140,,,,0,L1025 U1025 6179s,80951,,, +266,USA,,IN,b,Pully Indianapolis (IN),39.645833,-86.458333,,0.025,,6819,299,141,,,,997,L1046 U1040 6169s,80957,,, +266,USA,,MS,b,Narco Minneapolis (MN),44.8125,-93.125,,0.025,,6788,307,141,,,,,L1038 U1030 ,86952,,, +266,USA,,OIX,b,Ottawa (IL),41.354167,-88.875,,0.025,,6825,302,141,,,,,,86953,,, +266,USA,,BR,b,Redan Atlanta (GA),33.645833,-84.291667,,0.05,,7169,293,142,,,,5,L1040 U1050 5909s,80948,,, +266,CAN,,XD,b,Edmonton (AB),53.645833,-113.541667,,0.025,,7006,325,143,,,,999,L410 U405 10.2s,DAID,80968,, +266,USA,,ADU,b,Audubon (IA),41.6875,-94.875,,0.025,,7140,306,144,,,,,U1010 6448s,80947,,, +266,ALS,,ICK,b,Nichols Annette Island (AK),55.0625,-131.625,,0.025,,7487,335,148,,,,999,L1037 U1029 8.45s,80956,,, +266,CAN,,VR,b,Vancouver (BC),49.1875,-123.041667,,0.05,,7782,328,148,,,,998,L410 U402 10.3s,DAID,80967,, +266,USA,,BZ,b,Manni Bozeman (MT),45.854167,-111.291667,,0.025,,7610,318,149,,,,2,L1041 U1039 6.02s,80950,,, +266,USA,,TM,b,Tamiami Executive Airport, Miami (FL),25.645833,-80.541667,,0.025,,7586,284,149,,,,997,L1039 U1039 6409s,80966,, +266,USA,,AGO,b,Magnolia (AR),33.229167,-93.208333,,0.025,,7752,298,150,,,,,U1040 ,86947,,, +266,USA,,SAA,b,Saratoga (WY),41.4375,-106.791667,,0.025,,7791,313,151,,,,991,L1026 U1013 3.9s,80964,,, +266,USA,,PYX,b,Perryton (TX),36.395833,-100.708333,,0.025,,7914,306,152,,,,,U1024 6.5s,80963,,, +266,USA,,SL,b,Turno Salem (OR),44.854167,-122.958333,,0.05,,8196,325,152,,,,995,L1045 U1036 6.0s,80965,,, +266,USA,,MWL,b,Mineral Wells (TX),32.770833,-98.041667,,0.025,,8078,301,154,,,,996,L1038 U1030 ,80962,,, +266,USA,,LLN,b,Levelland (TX),33.5625,-102.375,,0.025,,8256,305,156,,,,5,L1020 U1013 4.8s,80959,,, +266,USA,,RYU,b,Rosanky (TX),29.895833,-97.291667,,0.025,,8284,299,156,,,,,,86954,,, +266,USA,,HBV,b,Hebbronville (TX),27.354167,-98.708333,,0.025,,8592,298,158,,,,,L1020 U1011 6755s,80954,,, +266,USA,,CUK,b,Hilan Fresno (CA),36.729167,-119.625,,0.025,,8839,319,159,,,,,L1045 U1022 8.3s,86949,,, +266,USA,,FA,b,Hilan Fresno (CA),36.729167,-119.625,,0.025,,8839,319,159,,,,,L~1046 U1034 ,86950,,, +266,AUS,,HLC,b,Halls Creek (WA),-18.229167,127.625,,0.025,,13712,76,175,,,,,L1030 U1016 9s,80955,,, +266,AUS,,MTG,b,Mount Gambier (SA),-37.770833,140.791667,,0.025,,16165,84,183,,,,,U420 10.13s,80961,,, +267,NOR,,FNO,b,Haugesund / Karmoy / Foyno,59.354167,5.125,,0.025,,809,355,81,,,,2,L400 U400 10.1s,80975,,, +267,MRC,,CNZ,b,Marrakech / Menara (mth),31.604167,-7.958333,,0.025,,2561,213,99,,,,995,L1006 U994 4.6s,80973,,, +267,ALS,,ALJ,b,Johnstone Point Island (AK),60.479167,-146.625,,1,,7267,346,130,,,,,L405 U410 ,86955,,, +267,USA,,CR,b,Myrtle Beach, Calab (SC),33.895833,-78.625,,0.025,,6787,289,141,,,,0,L401 U400 8.61s,80974,, +267,KEN,,MO,b,Mombasa (coa),-4.020833,39.625,,0.025,,6982,142,143,,,,,,80977,,, +267,USA,,HET,b,Henryetta (OK),35.395833,-96.041667,,0.025,,7735,302,150,,,,998,L1032 U1025 4.4s,80976,,, +267.5,ROU,,OPW,b,Bucuresti / Otopeni (BU),44.5625,25.958333,,0.025,,1663,113,90,,,,500,L1024 U1023 ,ID+4 gap,80978,, +268,ALG,,ZAR,b,Zarzaitine=In Amnas (33),28.0625,9.625,,0.025,,2687,173,100,,,,0,L395 U401 8.1s,ID+5 gap,80986,, +268,IRN,,SHR,b,Shahroud (smn),36.4375,55.125,,0.025,,4155,95,115,,,,,,80982,,, +268,CAN,,ZWL,b,Wollaston Lake (SK),58.104167,-103.208333,,1,,6212,323,119,,,,,U404 10348s,DAID,80987,, +268,CAN,,S7,b,Hanover (ON),44.145833,-81.041667,,0.1,,6149,299,128,,,,,U1040 10824s,DAID,80981,, +268,USA,,VKN,b,Mount Mansfield Barre / Montpelier (VT),44.395833,-72.708333,,0.025,,5624,295,129,,,,993,L1047 U1031 8520s,80985,,, +268,PAK,,LA,b,Lahore (pjb),31.506667,74.383333,,0.025,,5837,85,131,,,,,,31500034,,, +268,USA,,RT,b,Grimm New York (NY),40.604167,-73.625,,0.025,,5953,292,133,,,,,L1042 U1027 ,86956,,, +268,CUB,,UBY,b,Bayamo (gr),20.395833,-76.625,,0.05,,7765,278,148,,,,986,L1003 U985 5280s,80984,,, +268,J,,AN,b,Aguni (kyu-oki),26.595833,127.2375,,0.025,,9549,50,161,,,,,,80979,,, +268,AUS,,FRT,b,Forrest (WA),-30.854167,128.125,,0.025,,14788,87,179,,,,,U1028 9s,80980,,, +269,CAN,,3C,b,Venture Drilling Platform (NL),44.020833,-59.458333,,0.13,,4804,287,114,,,,999,L1027 U1025 8313s,DAID,80988,, +269,USA,,TOF,b,Topsfield Beverly (MA),42.604167,-70.958333,,0.025,,5640,292,129,,,,,U1018 6370s,81010,,, +269,CAN,,ZW,b,Teslin (YT),60.1875,-132.708333,,0.2,,7006,339,134,,,,,U408 10.01s,DAID,81014,, +269,USA,,EL,b,Halos Wellsville (NY),42.104167,-77.875,,0.025,,6108,296,134,,,,2,L1031 U1034 6.7s,80996,,, +269,CAN,,UDE,b,Delta (MB),50.145833,-98.291667,,0.05,,6628,314,136,,,,,U401 10.0s,DAID,81011,, +269,USA,,BBO,b,Morgantown / Bobtown (WV),39.729167,-79.958333,,0.025,,6416,295,137,,,,,,86957,,, +269,USA,,CAD,b,Cadillac (MI),44.270833,-85.375,,0.025,,6394,302,137,,,,509,L~1020 U1016 5809s,80993,,, +269,USA,,FN,b,Petli Flint (MI),42.979167,-83.875,,0.025,,6405,300,137,,,,2,L1028 U1038 6025s,80998,,, +269,USA,,TII,b,Tiffin (OH),41.104167,-83.208333,,0.025,,6509,298,138,,,,2,L1008 U1021 4367s,81009,,, +269,USA,,MRH,b,Morehead Beaufort (NC),34.729167,-76.625,,0.025,,6592,288,139,,,,0,L1010 U1018 7393s,81004,,, +269,USA,,HLX,b,Hillsville Galax Hillsville (VA),36.770833,-80.791667,,0.025,,6698,293,140,,,,0,L1019 U1025 5726s,81000,,, +269,USA,,PK,b,Spida Park Rapids (MN),46.854167,-94.958333,,0.025,,6723,310,140,,,,0,L1048 U1049 6116s,81006,,, +269,USA,,ISB,b,Sibley (IA),43.354167,-95.791667,,0.025,,7052,307,143,,,,,U1017 8.0s,81001,,, +269,USA,,BEX,b,Bloomfield (IA),40.729167,-92.458333,,0.025,,7082,303,144,,,,997,L1008 U1010 6011s,80992,,, +269,USA,,CHX,b,Choteau (MT),47.8125,-112.208333,,0.05,,7474,320,145,,,,,,86958,,, +269,USA,,FES,b,Festus (MO),38.1875,-90.375,,0.025,,7169,300,145,,,,991,L1016 U1007 4998s,80997,,, +269,USA,,LRT,b,Lawrenceburg (TN),35.229167,-87.291667,,0.025,,7226,296,145,,,,2,L1028 U1037 3628s,81003,,, +269,USA,,SWT,b,Seward (NE),40.854167,-97.125,,0.025,,7333,306,146,,,,,U1025 8.1s,81008,,, +269,USA,,EFC,b,Belle Fourche (SD),44.729167,-103.875,,0.025,,7357,313,147,,,,,U1040 ,86959,,, +269,USA,,GN,b,Wynds Gainesville (FL),29.6875,-82.208333,,0.025,,7360,288,147,,,,1,L1036 U1038 6207s,80999,,, +269,USA,,LOR,b,Lowe Fort Rucker (Ozark) (AL),31.354167,-85.708333,,0.025,,7446,292,147,,,,0,L1029 U1043 7796s,81002,,, +269,USA,,CII,b,Choteau (MT),47.8125,-112.208333,,0.025,,7474,320,148,,,,0,L1043 U1037 8.0s,80994,,, +269,USA,,OSX,b,Kosciusko (MS),33.104167,-89.541667,,0.025,,7540,296,148,,,,,U1020 ,81005,,, +269,USA,,SGT,b,Stuttgart (AR),34.645833,-91.625,,0.025,,7538,298,148,,,,,U1018 5168s,81007,,, +269,CAN,,YK,b,Brilliant Castlegar (BC),49.3125,-117.625,,0.025,,7563,324,149,,,,,U406 10.2s,DAID,81012,, +269,USA,,AR,b,Acadi New Iberia (LA),29.9375,-91.875,,0.025,,7951,295,152,,,,0,L1036 U1038 5861s,80991,,, +269,USA,,AHX,b,Athens (TX),32.145833,-95.791667,,0.025,,7999,299,153,,,,3,L1018 U1015 5.0s,80990,,, +269,USA,,AAP,b,Andrau Houston (TX),29.729167,-95.541667,,0.025,,8193,298,155,,,,,L1020 ,80989,,, +269,AUS,,CV,b,Charleville (QLD),-26.4375,146.208333,,0.5,,15620,65,169,,,,985,L1020 U1020 10s,slow ident,80995,, +269,AUS,,YNG,b,Young (NSW),-34.229167,148.208333,,0.025,,16396,72,184,,,,,U400 9s,81013,,, +270,CZE,cs,ČRo Rurnl,,Topoln (ZL),49.123833,17.512222,,50,,850,109,49,,0400-2300,1234567,9993,,53,,, +270,RUS,ru,R Slovo,,Oyash (NS),55.493333,83.682222,,150,,4822,54,84,,0000-0200,1234567,998,,46858,,, +270,RUS,ru,R Slovo,,Oyash (NS),55.493333,83.682222,,150,,4822,54,84,,1000-1300,1234567,998,,46858,,, +270,RUS,ru,R Slovo,,Oyash (NS),55.493333,83.682222,,150,,4822,54,84,,2300-2400,1234567,998,,46858,,, +270,AZR,,FLO,b,Santa Cruz das Flores (flo),39.4375,-31.208333,,0.025,,3193,259,105,,,,,L1022 U1030 8.4s,ID+4 gap,86961,, +270,GRL,,NN,b,Nanortalik (kuj-nnt),60.145833,-45.291667,,0.025,,3234,307,105,,,,,U419 ,81020,,, +270,ARS,,WE,b,Wejh (tbk),26.145833,36.541667,,0.025,,3831,127,111,,,,,,81027,,, +270,CAN,,O,b,Saint John's (NL),47.604167,-52.875,,0.025,,4160,287,115,,,,,,86962,,, +270,CAN,,ZNF,b,Wabana Saint Johns (NL),47.604167,-52.875,,0.025,,4160,287,115,,,,,U380 10590s,ID+5 tone,81028,, +270,USA,,PYG,b,Pageland (SC),34.729167,-80.375,,0.025,,6833,291,141,,,,,U1027 6.01s,81023,,, +270,VEN,,CUP,b,Carupano (suc),10.645833,-63.291667,,0.1,,7694,260,144,,,,998,L1021 U1013 7.7s,81017,,, +270,USA,,EZM,b,Eastman (GA),32.145833,-83.125,,0.025,,7217,291,145,,,,,,86960,,, +270,B,,CGR,b,Campo Grande (MS),-20.520833,-54.708333,,1,,10000,235,147,,,,,U1014 ,81016,,, +270,USA,,TPF,b,Knight Tampa (FL),27.895833,-82.458333,,0.025,,7524,287,148,,,,995,L1040 U1030 7.9s,81025,,, +270,AFS,,LA,b,Lanseria (GT),-26.020833,27.875,,0.1,,8936,161,153,,,,0,L1027 U1027 4.35s,81019,,, +270,B,,AFS,b,Afonsos (RJ),-22.854167,-43.375,,0.2,,9632,225,153,,,,,,81015,,, +270,B,,TPV,b,Itapevi (SP),-23.5625,-46.958333,,0.2,,9877,227,154,,,,,,81026,,, +270,MYA,,TD,b,Thandwe,18.457778,94.298333,,0.025,,8257,80,156,,,,,,22100041,,, +270,MEX,,OAX,b,Oaxaca (oax),16.9375,-96.708333,,0.025,,9391,291,161,,,,,L1145 U1020 ,86963,,, +270,MEX,,SRL,b,Santa Rosalia, Baja California Sur (bcs),27.229167,-112.208333,,0.025,,9372,308,161,,,,5,L1007 U1016 4.0s,81024,, +270,SMO,,FA,b,Apia (tum),-13.830556,-172.033333,,1,,15756,358,166,,,,933,L1055 U912 2.9s,81018,,, +270,ARG,,OA,b,Ministro Pistarini (ba),-34.895833,-58.541667,,0.025,,11540,230,168,,,,,4.7s,81021,,, +270,INS,,OP,b,Palu (ST-kot),-0.9375,119.875,,0.025,,11666,72,168,,,,,,81022,,, +270,NCL,,KE,b,Kone (nor),-21.104167,164.875,,0.025,,16101,36,183,,,,,20s,86307,,, +271,GHA,,KL,b,Kumasi (ash),6.747778,-1.583889,,0.025,,5097,191,124,,,,,,3000002,,, +271,PAK,,KC,b,Karachi (shd),24.921667,67.158889,,0.025,,5870,97,132,,,,,,31500030,,, +271,USA,,HXO,b,Huntsboro (NC),36.3125,-78.625,,0.025,,6597,291,139,,,,998,L1016 U1019 6763s,81030,,, +271,USA,,GV,b,Kansas City (MO),39.229167,-94.708333,,0.025,,7334,304,146,,,,,U~1020 ,81029,,, +271,USA,,IBO,b,Idabel (OK),33.895833,-94.875,,0.025,,7795,300,151,,,,,U1035 9.8s,81031,,, +271,USA,,SC,b,Jotly Stockton (CA),37.8125,-121.125,,0.025,,8801,320,159,,,,0,L1044 U1038 6.0s,81032,,, +272,CAN,,ZMR,b,Montral/Mirabel (QC),45.604167,-74.125,,0.2,,5628,297,120,,,,,U376 10542s,DAID,81065,, +272,CAN,,YQA,b,Muskoka (ON),45.020833,-79.291667,,0.4,,5981,299,121,,,,,U425 9.8s,DAID,81064,, +272,USA,,OLD,b,Old Town (ME),45.020833,-68.625,,0.025,,5327,293,126,,,,0,L1035 U1039 7.87s,81045,,, +272,CAN,,YLB,b,Lac La Biche (AB),54.770833,-112.041667,,0.71,,6848,325,127,,,,5,L390 U398 10.0s,DAID,81063,, +272,CAN,,W,b,#NAME?,45.604167,-74.125,,0.025,,5628,297,129,,,,,,86967,,, +272,USA,,PFH,b,Philmont Hudson (NY),42.270833,-73.708333,,0.025,,5837,293,131,,,,4,L1010 U1019 6358s,81047,,, +272,USA,,UCP,b,Castle New Castle (PA),41.020833,-80.375,,0.025,,6343,296,136,,,,,U1007 6.65s,81057,,, +272,USA,,BT,b,Batol Battle Creek (MI),42.354167,-85.208333,,0.025,,6532,300,138,,,,0,L1035 U1036 6004s,81033,,, +272,USA,,RH,b,Arsha Rhinelander (WI),45.645833,-89.625,,0.025,,6530,306,138,,,,979,L1050 U1053 5651s,81051,,, +272,USA,,CB,b,Columbus (OH),40.020833,-83.041667,,0.025,,6583,297,139,,,,,L1025 U1046 ,86964,,, +272,USA,,CHC,b,Grens Columbus (OH),40.020833,-83.041667,,0.025,,6583,297,139,,,,12,L1026 U1046 6528s,81034,,, +272,USA,,GP,b,Galex Grand Rapids (MN),47.145833,-93.458333,,0.025,,6620,309,139,,,,997,L1051 U1040 6035s,81035,,, +272,USA,,LS,b,Mindi La Crosse (WI),44.020833,-91.291667,,0.025,,6751,305,140,,,,993,L1030 U1014 8.60s,81040,,, +272,ALS,,UTO,b,Utopia Creek (AK),65.979167,-153.708333,,0.025,,6776,351,141,,,,998,L1025 U1025 8.4s,81059,,, +272,USA,,IK,b,Kankakee (IL),41.020833,-87.875,,0.025,,6794,301,141,,,,995,L1040 U1028 7670s,81037,,, +272,CAN,,V1,b,Moose Jaw Muni (SK),50.4375,-105.375,,0.025,,6939,318,142,,,,979,L1019 U971 10.0s,DBID,81060,, +272,USA,,TYC,b,Taylor Co. Campbellsville (KY),37.395833,-85.208333,,0.025,,6923,296,142,,,,2,L1029 U1005 6316s,81056,,, +272,USA,,ULM,b,New Ulm (MN),44.3125,-94.458333,,0.025,,6901,307,142,,,,993,L1060 U1022 6459s,81058,,, +272,USA,,MUT,b,Mascatine (IA),41.354167,-91.125,,0.025,,6955,303,143,,,,,,86966,,, +272,USA,,OLY,b,Olney Olney-Noble (IL),38.729167,-88.208333,,0.025,,6997,299,143,,,,996,L1020 U1024 8118s,81046,,, +272,USA,,HNR,b,Harlan (IA),41.5625,-95.375,,0.025,,7178,306,145,,,,4,L1010 U1006 4487s,81036,,, +272,USA,,MLK,b,Malta (MT),48.354167,-107.875,,0.025,,7233,318,145,,,,0,L1029 U1032 4.6s,Cont. ID,81042,, +272,USA,,SIK,b,Sikeston (MO),36.895833,-89.541667,,0.025,,7226,299,145,,,,,,81054,,, +272,CAN,,XS,b,Prince George (BC),53.8125,-122.625,,0.025,,7326,330,146,,,,1,L399 U399 10.0s,DAID,81062,, +272,USA,,PIM,b,Pine Mountain (GA),32.854167,-84.875,,0.025,,7270,293,146,,,,,U1020 4.71s,81049,,, +272,USA,,EA,b,Keamey (NE),40.645833,-99.041667,,0.025,,7456,307,148,,,,,L1023 ,86965,,, +272,USA,,RNV,b,Renova (MS),33.8125,-90.791667,,0.025,,7557,297,149,,,,3,L1012 U1033 5.81s,81052,,, +272,CHN,,WF,b,Wuji (HB),38.229167,114.875,,0.025,,7827,52,151,,,,,8s,81061,,, +272,USA,,MMY,b,Many (LA),31.5625,-93.541667,,0.025,,7914,298,152,,,,997,L1027 U1021 ,81043,,, +272,USA,,OJA,b,Weatherford (OK),35.520833,-98.708333,,0.025,,7877,304,152,,,,3,L1012 U1018 7.0s,81044,,, +272,USA,,LD,b,Lubbi Lubbock (TX),33.645833,-101.708333,,0.025,,8211,305,155,,,,2,L1022 U1017 8.6s,81038,,, +272,USA,,RU,b,Garys San Marcos (TX),29.979167,-97.958333,,0.025,,8316,300,156,,,,0,L1021 U1021 8.7s,81053,,, +272,AUS,,PH,b,Perth (WA),-31.9375,115.958333,,0.025,,14043,97,176,,,,,U1022 ,81048,,, +272,AUS,,TNK,b,Tennant Creek (NT),-19.645833,134.208333,,0.025,,14267,71,177,,,,,U1020 9s,81055,,, +272,LHW,,LHI,b,Lord Howe Island (NSW),-31.520833,159.041667,,0.12,,16829,55,179,,,,,L400 U400 8s,81039,,, +272,AUS,,MIA,b,Mildura (VIC),-34.229167,142.041667,,0.025,,15989,78,183,,,,,U400 9s,81041,,, +273,LBY,,GAL,b,Jalu=Gialo/Warehouse 59E (wah),28.6875,21.458333,,0.025,,2886,149,102,,,,887,L1465 U1239 ,ID+4 gap,81068,, +273,CAN,,ZV,b,Sept-les (QC),50.1875,-66.125,,0.5,,4848,298,108,,,,,U392 10.1s,DAID,81069,, +273,PAK,,PC,b,Parachinar (fta),33.905278,70.072222,,0.025,,5361,86,127,,,,,,31500038,,, +273,DMA,,DOM,b,Marigot (saw),15.550675,-61.295789,,0.1,,7133,262,138,,,,2,L1020 U1018 8.0s,ID+4 gap,81066,, +273,USA,,FK,b,Airbe Fort Campbell (Hopkinsville) (KY),36.729167,-87.375,,0.025,,7109,297,144,,,,997,L1042 U1031 5.9s,81067,,, +274,MRC,,TNA,b,Tan Tan,28.4375,-11.208333,,2,,3009,216,84,,,,,,81081,,, +274,UKR,,JL,b,Yalta (KR),44.479167,34.125,,0.025,,2202,102,95,,,,,,81078,,, +274,CPV,,SAL,b,Sal/Amlcar Cabral (sal),16.70175,-22.948789,,3,,4705,224,99,,,,,10.3s,ID+5 tone,81080,, +274,USA,,EW,b,Nefor (MA),41.604167,-71.041667,,0.025,,5716,291,130,,,,0,L1018 U1018 3.0s,81075,,, +274,CAN,,FR,b,Fort Resolution (NT),61.145833,-113.625,,0.025,,6352,330,136,,,,,U404 ,DAID,81076,, +274,CAN,,YPM,b,Pikangikum (ON),51.8125,-93.958333,,0.025,,6282,313,136,,,,,U368 10.5s,DAID,81082,, +274,USA,,AKQ,b,Wakefield (VA),36.979167,-77.041667,,0.025,,6444,291,137,,,,,U1021 6003s,81070,,, +274,USA,,DLC,b,Dillon (SC),34.4375,-79.375,,0.025,,6792,290,141,,,,987,L1031 U1004 7468s,81074,,, +274,USA,,RG,b,Red Wing (MN),44.604167,-92.625,,0.025,,6778,306,141,,,,0,L1024 U1024 6828s,81079,,, +274,CAN,,Z5,b,Vulcan (AB),50.395833,-113.291667,,0.025,,7288,323,146,,,,,U374 10.4s,DAID,81083,, +274,USA,,CQI,b,Council (Municipal) (ID),44.729167,-115.458333,,0.05,,7898,320,149,,,,,,81072,,, +274,USA,,CAN,b,Carney Bremerton (WA),47.395833,-122.875,,0.025,,7948,326,152,,,,990,L1050 U1030 8.4s,81071,,, +274,CHN,,DA,b,Hebaohu (HU),30.6875,113.958333,,0.025,,8440,58,157,,,,,,81073,,, +274,NZL,,GB,b,Great Barrier Island,-36.229167,175.458333,,0.13,,18050,30,182,,,,,L1000 7s,81077,,, +275,NOR,,VG,b,Haugesund / Karmoy / Vaga,59.270833,5.375,,0.025,,799,356,81,,,,1,L402 U400 10.0s,81128,,, +275,NOR,,KB,b,Kristiansund / Kvernberget / Haltvik,63.104167,7.875,,0.025,,1226,3,85,,,,0,L400 U400 10.0s,81110,,, +275,TUN,,MS,b,Monastir / Msaken (sou),35.729167,10.625,,0.025,,1852,168,91,,,,0,L1025 U1027 4.5s,ID+2.5 gap,81114,, +275,NOR,,PG,b,Banak / Porsang,69.895833,25.041667,,0.025,,2197,19,95,,,,,,81117,,, +275,MRC,,CAE,b,Ben Slimane,33.604167,-7.125,,0.025,,2326,213,96,,,,1,L1019 U1021 9.4s,ID+6 gap,81090,, +275,IRN,,RUS,b,Tehran / Mehrabad / Rudeshur (thr),35.4375,50.875,,0.025,,3941,100,112,,,,928,L1107 U962 ,ID+7 gap,81123,, +275,UAE,,ZKU,b,Zirku Island (abd),24.883333,53.072222,,0.025,,4937,109,122,,,,,,81129,,, +275,CAN,,R1,b,Thetford-Mines (QC),46.0625,-71.291667,,0.025,,5423,296,127,,,,,U383 10307s,DAID,81120,, +275,USA,,BBN,b,Babylon (NY),40.6875,-73.375,,0.05,,5931,292,129,,,,0,L1043 U1041 9979s,81087,,, +275,USA,,CJY,b,Clay Utica (NY),43.0625,-75.291667,,0.025,,5879,295,132,,,,995,L1035 U1024 8.2s,81091,,, +275,CAN,,AV,b,St Andrews (Winnipeg) (MB),50.0625,-97.041667,,0.08,,6573,313,134,,,,998,L385 U382 10.64s,DAID,81085,, +275,USA,,ING,b,Ambler (PA),40.145833,-75.291667,,0.025,,6092,292,134,,,,,L1056 ,81108,,, +275,USA,,PS,b,Ports Lanse (PA),40.979167,-78.125,,0.025,,6208,295,135,,,,2,L1018 U1020 8600s,81119,,, +275,USA,,CM,b,Galey Hancock (MI),47.104167,-88.375,,0.025,,6348,306,136,,,,,U1018 5.97s,81093,,, +275,USA,,ISN,b,Williston (ND),48.145833,-103.625,,0.1,,7052,315,137,,,,,U1020 ,81109,,, +275,USA,,CW,b,Danci Mosinee (WI),44.770833,-89.791667,,0.025,,6607,305,139,,,,997,L1052 U1046 4.88s,81094,,, +275,USA,,EZT,b,Elizabethton (TN),36.3125,-82.291667,,0.025,,6828,293,141,,,,992,L1026 U1010 7372s,81099,,, +275,USA,,RF,b,Gilmy Rockford (IL),42.104167,-89.125,,0.025,,6780,302,141,,,,0,L1020 U1019 6221s,81121,,, +275,USA,,RU,b,Rovdy Salisbury (NC),35.729167,-80.458333,,0.025,,6759,292,141,,,,2,L1173 U1178 4792s,81122,,, +275,USA,,DE,b,Elwin Decatur (IL),39.770833,-88.958333,,0.025,,6957,300,143,,,,995,L1020 U1024 8.74s,81097,,, +275,USA,,SF,b,Yuson Williston (ND),48.104167,-103.541667,,0.025,,7052,315,143,,,,998,L1041 U1035 5.95s,81124,,, +275,USA,,FPR,b,Fort Pierce (FL),27.479167,-80.375,,0.049,,7422,285,144,,,,996,L1037 U1039 8112s,81101,,, +275,USA,,GEY,b,Greybull (WY),44.520833,-108.041667,,0.075,,7578,316,144,,,,998,L1060 U1055 7.5s,81102,,, +275,USA,,IKV,b,Ankeny (IA),41.6875,-93.541667,,0.025,,7065,305,144,,,,998,L1041 U1037 6957s,81107,,, +275,USA,,UOS,b,Sewanee (TN),35.1875,-85.875,,0.025,,7142,295,144,,,,,,81127,,, +275,USA,,BQ,b,Jeffi Brunswick (GA),31.229167,-81.541667,,0.025,,7190,289,145,,,,0,L1020 U1020 8601s,81089,,, +275,ALS,,CZF,b,Cape Romanzof (AK),61.770833,-166.041667,,0.025,,7335,356,146,,,,,L1020 U1030 8.5s,81096,,, +275,USA,,DY,b,Lexey Kansas City (MO),39.395833,-94.708333,,0.025,,7321,304,146,,,,0,L395 U398 8.0s,81098,,, +275,USA,,OLV,b,Olive Branch (MS),34.979167,-89.791667,,0.025,,7399,297,147,,,,,L1015 U1029 ,86968,,, +275,USA,,BKK,b,Tri County Bonifay (FL),30.854167,-85.625,,0.025,,7483,292,148,,,,998,L1029 U1027 8401s,81088,,, +275,USA,,HIN,b,Whitney Chadron (NE),42.8125,-103.125,,0.025,,7485,311,148,,,,0,L1015 U1022 6.2s,81105,,, +275,B,,MSS,b,Mossor (RN),-5.1875,-37.375,,0.025,,7591,228,149,,,,5,L1028 U1041 7.3s,81115,,, +275,USA,,PLS,b,Polson (MT),47.6875,-114.208333,,0.025,,7572,321,149,,,,975,L1070 U1020 6.6s,81118,,, +275,AFS,,CL,b,Carolina (MP),-26.104167,30.125,,0.25,,8999,159,150,,,,0,L1003 U1003 3.89s,81092,,, +275,KRE,,KP,b,Anju,39.604167,125.708333,,0.1,,8256,44,150,,,,,,81111,,, +275,USA,,ADF,b,Arkadelphia (AR),34.0625,-93.125,,0.025,,7677,299,150,,,,0,L1033 U1034 8.4s,81084,,, +275,MYA,,MK,b,Myitkyina,25.387222,97.356111,,0.025,,7870,73,152,,,,,,22100034,,, +275,USA,,GUY,b,Guymon (OK),36.6875,-101.541667,,0.025,,7934,306,152,,,,981,L1055 U1016 7.0s,81104,,, +275,USA,,LV,b,Conis Dallas (TX),32.770833,-96.791667,,0.025,,8005,301,153,,,,998,L1041 U1037 ,81112,,, +275,USA,,HPY,b,Humphrey Baytown (TX),29.770833,-94.958333,,0.025,,8154,297,155,,,,,U1030 ,81106,,, +275,USA,,SWW,b,Sweetwater (TX),32.479167,-100.458333,,0.025,,8243,303,155,,,,2,L1011 U1009 5.9s,81126,,, +275,B,,GGT,b,Guaratinguet (SP),-22.770833,-45.208333,,0.1,,9713,226,156,,,,,,81103,,, +275,B,,SVD,b,Salvador (BA),-12.9375,-38.375,,0.025,,8410,225,157,,,,,L1049 7.1s,81125,,, +275,USA,,PEZ,b,Pleasanton (TX),28.9375,-98.541667,,0.025,,8443,299,157,,,,988,L1038 U1056 8.0s,81116,,, +275,B,,FGR,b,Figueiras (RS),-29.979167,-50.958333,,0.1,,10694,227,159,,,,,,81100,,, +275,PRU,,MAR,b,Cajamarca (caj),-7.145833,-78.458333,,0.05,,10286,262,161,,,,,,81113,,, +275,B,,URG,b,Uruguaiana (RS),-29.770833,-57.041667,,0.025,,10990,232,166,,,,,,86309,,, +275,AUS,,CWS,b,Cowes (VIC),-38.520833,145.208333,,0.1,,16517,81,178,,,,,L400 U400 7s,81095,,, +276,RUS,,SC,b,Sleptsovskaya / Ingushetia (IN),43.3125,44.958333,,0.025,,3004,94,103,,,,0,L885 U885 ,ID+4 gap,81136,, +276,CAN,,YHR,b,Chevery (QC),50.479167,-59.625,,0.5,,4433,295,104,,,,998,L405 U401 10413s,DAID,81140,, +276,CAN,,YEL,b,Elliot Lake (ON),46.354167,-82.625,,0.25,,6080,302,124,,,,0,L411 U405 10.5s,DAID,81139,, +276,USA,,LAH,b,Hanover Lebanon (NH),43.6875,-72.208333,,0.025,,5643,294,129,,,,,U1018 4609s,81134,,, +276,CAN,,H,b,Thompson (MB),55.8125,-97.791667,,0.025,,6158,319,135,,,,,U400 ,DAID,86969,, +276,CAN,,YPC,b,Paulatuk (NT),66.354167,-124.041667,,0.025,,6197,338,135,,,,,U405 ,81141,,, +276,CAN,,ZTH,b,Headframe Thompson (MB),55.8125,-97.791667,,0.025,,6158,319,135,,,,,U374 10201s,DAID,81142,, +276,USA,,IS,b,Stals Kinston (NC),35.229167,-77.708333,,0.025,,6623,290,139,,,,1,L1018 U1019 8600s,81132,,, +276,CAN,,3H,b,Consort (AB),52.020833,-110.708333,,0.025,,7035,322,143,,,,,U382 10.3s,DAID,81130,, +276,USA,,TWT,b,Tradewater Sturgis (KY),37.479167,-87.958333,,0.025,,7083,298,144,,,,998,L1022 U1019 4.81s,81138,,, +276,USA,,MJD,b,Picayune (MS),30.479167,-89.625,,0.025,,7766,294,151,,,,30,L970 U1030 ,81135,,, +276,CHN,,KM,b,Danushan (LN),41.645833,122.125,,0.025,,7897,45,152,,,,,,81133,,, +276,AUS,,TVL,b,Townsville (QLD),-19.229167,146.791667,,3,,15007,58,159,,,,997,L1034 U1020 10s,81137,,, +276,MLA,,BP,b,Batu Pahat,1.854167,102.958333,,0.08,,10291,84,159,,,,997,L993 U987 ,81131,,, +277,G,,CHT,b,Chiltern (EN-BKS),51.604167,-0.541667,,0.025,,481,266,78,,,,2,L405 U407 5.6s,81147,,, +277,RUS,,PO,b,Pulkovo (SP),59.8125,30.375,,0.025,,1706,51,90,,,,690,L1011 U1012 ,81149,,, +277,CAN,,YLC,b,Kimmirut (NU),62.854167,-69.875,,1,,4421,316,101,,,,,U407 10225s,DAID,81152,, +277,IRQ,,BD,b,Baghdad (bgh),33.3125,44.208333,,0.025,,3666,110,110,,,,,,81146,,, +277,CAN,,1B,b,Sable Island (NS),43.9375,-60.041667,,0.025,,4847,287,121,,,,,,DAID,81144,, +277,USA,,VIT,b,Vinton (VA),37.1875,-79.875,,0.025,,6607,293,139,,,,0,L1020 U1020 8600s,81151,,, +277,CAN,,M2,b,Humboldt (SK),52.1875,-105.125,,0.025,,6780,319,141,,,,,U410 ,86970,,, +277,CAN,,V2,b,Humboldt (SK),52.1875,-105.125,,0.025,,6780,319,141,,,,988,L1043 U1042 8.29s,DAID,81150,, +277,USA,,OT,b,Wondd Worthington (MN),43.604167,-95.458333,,0.025,,7014,307,143,,,,998,L1048 U1040 7.9s,81148,,, +277,ALS,,ACE,b,Kachemak Homer (AK),59.645833,-151.458333,,0.025,,7431,348,147,,,,0,L1035 U1035 6.0s,TWEB,81145,, +277,THA,,CT,b,Chiang Rai (cri),19.959444,99.883056,,0.025,,8500,75,158,,,,,,32900029,,, +277.5,BOT,,JWN,b,Jwaneng (so),-24.604167,24.708333,,0.1,,8714,163,153,,,,500,L1019 U1019 6.74s,81153,,, +278,CAN,,NM,b,Matagami (QC),49.729167,-77.708333,,0.4,,5559,303,117,,,,0,L402 U404 10.4s,ID+6 tone,81173,, +278,USA,,PQ,b,Excal Presque Isle (ME),46.604167,-68.041667,,0.025,,5186,294,125,,,,,L1050 ,81176,,, +278,USA,,BST,b,Belfast (ME),44.395833,-69.041667,,0.025,,5395,293,127,,,,0,L1053 U1053 7702s,81159,,, +278,USA,,MS,b,Misse Massena (NY),44.854167,-74.875,,0.025,,5726,296,130,,,,,L1020 8.6s,81171,,, +278,USA,,SB,b,Colbe Salisbury (MD),38.270833,-75.375,,0.025,,6238,291,135,,,,,,81177,,, +278,CUB,,UBA,b,Baracoa (gu),20.354167,-74.541667,,0.35,,7627,276,138,,,,21,L1031 U1094 8460s,81179,,, +278,USA,,ADG,b,Adrian (MI),41.854167,-84.041667,,0.025,,6501,299,138,,,,8,L1015 U1026 5719s,81155,,, +278,USA,,AHH,b,Ameron Amery (WI),45.270833,-92.375,,0.025,,6711,307,140,,,,998,L1015 U1010 ,81156,,, +278,USA,,HFF,b,Mackall Camp Mackall (NC),35.020833,-79.458333,,0.025,,6751,291,140,,,,989,L1053 U1037 7087s,81168,,, +278,USA,,HOC,b,Hillsboro (OH),39.1875,-83.541667,,0.025,,6679,297,140,,,,,U1012 7181s,81169,,, +278,USA,,FKR,b,Frankfort (IN),40.270833,-86.541667,,0.025,,6774,299,141,,,,2,L1015 U1015 6.24s,81165,,, +278,USA,,EOE,b,Enoree Newberry (SC),34.3125,-81.625,,0.025,,6946,291,142,,,,2,L426 U418 5567s,81163,,, +278,USA,,GWR,b,Gwinner (ND),46.229167,-97.625,,0.025,,6913,311,142,,,,981,L1020 U983 5734s,81167,,, +278,USA,,XWY,b,West Union (IA),42.9375,-91.791667,,0.025,,6865,305,142,,,,998,L1015 U1012 8246s,81183,,, +278,CAN,,N1,b,Assiniboia (SK),49.729167,-105.958333,,0.025,,7026,318,143,,,,,U959 10.52s,DAID,81172,, +278,USA,,CRZ,b,Corning (IA),40.979167,-94.791667,,0.025,,7194,305,145,,,,,U1031 5.6s,81162,,, +278,USA,,GPQ,b,Carrollton (GA),33.5625,-85.125,,0.025,,7228,293,145,,,,998,L1028 U1028 7778s,81166,,, +278,USA,,FD,b,Earli Poplar Bluff (MO),36.6875,-90.291667,,0.025,,7288,299,146,,,,2,L1012 U1020 4.9s,81164,,, +278,USA,,AUH,b,Aurora (NE),40.895833,-97.958333,,0.025,,7376,307,147,,,,,L1035 U1015 ,86971,,, +278,USA,,BKV,b,Brooksville (FL),28.479167,-82.458333,,0.025,,7476,288,148,,,,,,81157,,, +278,USA,,PF,b,Lynne Panama City (FL),30.3125,-85.791667,,0.025,,7538,291,148,,,,3,L1037 U1046 6.47s,81175,,, +278,CAN,,1U,b,Masset (BC),54.020833,-132.125,,0.025,,7605,335,149,,,,0,L411 U410 ,DAID,81154,, +278,USA,,BLE,b,Lake Providence (LA),32.8125,-91.208333,,0.025,,7667,297,150,,,,,L1020 7.0s,81158,,, +278,USA,,SRE,b,Seminole (OK),35.270833,-96.708333,,0.025,,7784,302,151,,,,,U997 4800s,81178,,, +278,USA,,UX,b,Sulfy Sulphur (LA),30.1875,-93.458333,,0.025,,8027,297,153,,,,994,L1035 U1021 5840s,81180,,, +278,CUB,,D,b,Nueva Gerona (ij),21.8125,-82.791667,,0.025,,8058,283,154,,,,,L1100 U1077 5801s,86311,,, +278,USA,,IL,b,Iresh Killeen (TX),31.020833,-97.708333,,0.025,,8211,300,155,,,,997,L1044 U1029 6.1s,81170,,, +278,USA,,XSD,b,Tonopah Range (NV),37.854167,-116.791667,,0.05,,8602,317,155,,,,995,L1045 U1035 6.0s,81182,,, +278,USA,,ECE,b,El Campo (TX),29.1875,-96.291667,,0.025,,8286,298,156,,,,,,86972,,, +278,USA,,CEP,b,Capitan Ruidoso (NM),33.479167,-105.375,,0.025,,8429,307,157,,,,992,L1050 U1035 8.1s,81160,,, +278,USA,,OS,b,Romen (CA),33.979167,-118.291667,,0.025,,9041,316,160,,,,,L1055 U~1032 ,86973,,, +278,AUS,,PBO,b,Paraburdoo (WA),-23.1875,117.708333,,0.025,,13460,89,174,,,,,L1028 U1017 9.35s,81174,,, +278,NZL,,WS,b,Westport (WTC),-41.729167,171.541667,,0.25,,18406,50,181,,,,,L1200 U1200 6s,81181,,, +278,AUS,,CG,b,Coolangatta (QLD),-28.145833,153.541667,,0.025,,16213,58,183,,,,997,L400 U400 8s,81161,,, +279,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.396389,28.534444,,500,,1490,76,45,,0300-1600,12345..,0,,55,,, +279,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.396389,28.534444,,500,,1490,76,45,,0300-2100,.....67,0,,55,,, +279,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.396389,28.534444,,500,,1490,76,45,,1700-2100,12345..,0,,55,,, +279,BLR,be,BR Radyjo Stalitsa,,Sasnovy (MA),53.396389,28.534444,,500,,1490,76,45,,1600-1700,12345..,0,,55,,, +279,TKM,tk,TR1 Watan R,,Aşgabat/Karatamak (asb),37.854111,58.366056,,150,,4276,91,78,,2300-2200,1234567,2,,2567,,, +279,GRL,,SI,b,Simiutaq (Kitaa) (kuj-qqt),60.6875,-46.625,,0.025,,3298,308,106,,,,0,L402 U400 5617s,81188,,, +279,USA,,CQX,b,Nauset Chatham (MA),41.6875,-69.958333,,0.025,,5641,290,129,,,,,U1023 7822s,81184,,, +279,USA,,RS,b,Dunca North Brookfield (MA),42.270833,-72.041667,,0.025,,5732,292,130,,,,517,L~1040 U1035 5.7s,81187,,, +279,USA,,OZ,b,Kring Oneonta (NY),42.604167,-74.958333,,0.025,,5891,294,132,,,,998,L1038 U1034 5651s,81186,,, +279,USA,,ON,b,Music Springfield (TN),46.4375,-86.958333,,0.025,,6320,305,136,,,,0,L1048 U1044 6.04s,81185,,, +279,THA,,CP,b,Chumphon (cpn),10.717778,99.365833,,0.025,,9269,81,161,,,,,,32900033,,, +280,CAN,,QX,b,Gander (NL),48.979167,-54.708333,,1,,4204,290,99,,,,999,L410 U406 10.0s,DAID,81205,, +280,IRQ,,MOS,b,Mosul=Msil (nnw),36.3125,43.125,,0.025,,3361,107,107,,,,,U1020 ,ID+3.5 gap,81200,, +280,IRN,,ARK,b,Arak (mrk),34.145833,49.875,,0.025,,3972,103,113,,,,,U1014 ,81191,,, +280,CAN,,4T,b,Shamattawa (MB),55.854167,-92.041667,,0.2,,5888,316,123,,,,0,L398 U404 8427s,DAID,81190,, +280,CAN,,4B,b,Little Grand Rapids (MB),52.0625,-95.458333,,0.025,,6337,314,136,,,,,L400 U406 8172s,81189,,, +280,USA,,LJK,b,Ashey Ashland (VA),37.770833,-77.458333,,0.025,,6409,291,137,,,,,U1016 6126s,81199,,, +280,USA,,VW,b,Temky Statesville (NC),35.770833,-81.041667,,0.025,,6793,292,141,,,,,L1035 U1023 ,86977,,, +280,MEX,,MPG,b,Progreso (Yucatan) (yuc),21.270833,-89.708333,,1,,8560,288,142,,,,13,L999 U1011 6.55s,81201,,, +280,USA,,GVV,b,Grangeville (ID),45.9375,-116.208333,,0.1,,7819,322,145,,,,,L1047 U1035 6.0s,86974,,, +280,USA,,MQW,b,Mc. Rae (GA),32.104167,-82.875,,0.025,,7204,291,145,,,,995,L1026 U1014 8.59s,81202,,, +280,USA,,UQN,b,Lyons (GA),32.229167,-82.291667,,0.025,,7157,290,145,,,,,,86976,,, +280,USA,,GYZ,b,Camp Guernsey Guernsey (WY),42.229167,-104.708333,,0.05,,7616,312,146,,,,5,L1033 U1045 8.5s,81194,,, +280,CAN,,V6,b,Salmon Arm (BC),50.6875,-119.208333,,0.025,,7497,326,148,,,,998,L394 U384 10.62s,DAID,81210,, +280,B,,SLI,b,So Lus (MA),-2.5625,-44.208333,,0.025,,7702,236,150,,,,60,L1012 U1011 ,81207,,, +280,CHN,,VM,b,Shigezhuang (TJ),39.3125,116.875,,0.025,,7839,50,151,,,,,,81211,,, +280,NMB,,WH,b,Windhoek (khm),-22.479167,17.458333,,0.1,,8363,169,151,,,,10,L1018 U1039 7.41s,81213,,, +280,MOZ,,PB,b,Pemba (cbg),-12.951389,40.500833,,0.025,,7940,145,152,,,,,,20500007,,, +280,USA,,GZV,b,Brazos River Graford (TX),32.9375,-98.375,,0.025,,8083,302,154,,,,,L1018 U1026 5.7s,81195,,, +280,CLN,,CHB,b,Trincomalee/China Bay (tcm),8.533333,81.185278,,0.025,,8222,97,155,,,,,,34700023,,, +280,B,,RCL,b,Rio Claro (SP),-22.4375,-47.541667,,0.1,,9798,228,156,,,,,,81206,,, +280,PAQ,,IPA,b,Rapa Nui (Isla de Pascua) (vlp),-27.145833,-109.458333,,3,,14095,272,156,,,,0,L1029 U1021 8391s,81196,,, +280,AFS,,KD,b,Klerksdorp (NW),-26.895833,26.708333,,0.05,,9005,162,157,,,,0,L1023 U1024 ,81198,,, +280,MEX,,MID,b,Mrida (yuc),20.9375,-89.708333,,0.025,,8589,288,158,,,,,,86975,,, +280,MYA,,PP,b,Hpapun,18.067778,97.446111,,0.025,,8501,78,158,,,,,,22100020,,, +280,B,,IR,b,Trevo Braslia (DF),-15.854167,-47.958333,,0.025,,9186,232,160,,,,,,81197,,, +280,ARG,,P,b,Palmero (Provincia de Buenos Aires) (ba),-34.5625,-58.458333,,0.08,,11505,230,163,,,,,4.6s,81204,,, +280,EQA,,SOL,b,Chongon Guayaquil (gua),-2.229167,-80.041667,,0.025,,9961,266,163,,,,,L1030 ,81208,,, +280,BOL,,VRO,b,Viru Viru (scz),-17.520833,-63.208333,,0.025,,10222,243,164,,,,0,L1007 U1007 6399s,81212,,, +280,ARG,,T,b,Rawson Trelew (Chubut) (ch),-43.1875,-65.208333,,0.08,,12622,229,167,,,,,,81209,,, +280,URG,,CA,b,Carrasco (mo),-34.770833,-55.958333,,0.03,,11395,228,167,,,,,5.0s,81192,,, +281,CAN,,CA,b,Cartwright (NL),53.729167,-57.041667,,1,,4114,298,98,,,,5,L400 U407 10.0s,DAID,81217,, +281,CAN,,L,b,Charlo / Lima (NB),47.979167,-66.208333,,0.025,,4986,295,123,,,,,,86978,,, +281,USA,,HXK,b,Hornebrook Berlin (NH),44.5625,-71.208333,,0.047,,5520,294,125,,,,,U~1000 ,81228,,, +281,USA,,HP,b,Hestr White Plains (NY),41.145833,-73.791667,,0.025,,5924,292,132,,,,4,L1031 U1043 6252s,81227,,, +281,CAN,,C2,b,Hardisty (AB),52.645833,-111.291667,,0.2,,7004,323,134,,,,,,81216,,, +281,ALS,,VIR,b,Browerville Point Barrow (AK),71.270833,-156.791667,,0.025,,6231,354,135,,,,0,L1035 U1035 8.5s,81234,,, +281,BAH,,ZSJ,b,Guanahani San Salvador (San Salvador Island),24.0625,-74.541667,,0.1,,7316,279,140,,,,2,L1521 U1524 7287s,81236,,, +281,USA,,IL,b,Airli Wilmington (NC),34.1875,-77.875,,0.025,,6715,289,140,,,,998,L1023 U1033 5963s,81229,,, +281,USA,,AJW,b,Andri Alexandria (MN),45.8125,-95.291667,,0.025,,6825,309,141,,,,,,81214,,, +281,USA,,HMJ,b,Homer (IL),40.020833,-87.958333,,0.025,,6878,300,142,,,,,,81226,,, +281,ALS,,CRN,b,Cairn Mountain Sparrevohn (AK),61.104167,-155.541667,,0.025,,7325,351,146,,,,0,L1035 U1035 ,81219,,, +281,USA,,DMO,b,Sedalia (MO),38.6875,-93.208333,,0.025,,7294,302,146,,,,34,L980 U950 7.8s,81222,,, +281,USA,,XNE,b,Spring Hill (AL),31.6875,-85.958333,,0.025,,7435,292,147,,,,,L1027 U1020 8.34s,81235,,, +281,USA,,STF,b,Bryan Starkville (MS),33.4375,-88.875,,0.025,,7471,296,148,,,,,U1028 4753s,81231,,, +281,USA,,EWK,b,Newton (KS),38.0625,-97.291667,,0.025,,7579,305,149,,,,,U1046 7.1s,81224,,, +281,USA,,SZ,b,Parkk Seattle (WA),47.520833,-122.291667,,0.05,,7914,326,149,,,,0,L1030 U1030 7.1s,81232,,, +281,USA,,DEQ,b,De Queen (AR),34.0625,-94.375,,0.025,,7751,300,150,,,,990,L1066 U932 7.0s,81221,,, +281,USA,,TOT,b,Stapleton, Denver (CO),39.770833,-104.791667,,0.025,,7837,311,151,,,,,U1030 ,86979,, +281,USA,,CNZ,b,Clarendon (TX),34.895833,-100.875,,0.025,,8054,305,154,,,,,U1060 ,81218,,, +281,USA,,CX,b,Alibi Conroe (TX),30.4375,-95.458333,,0.025,,8127,298,154,,,,0,L1007 U1010 4580s,81220,,, +281,USA,,UVA,b,Uvalde (TX),29.1875,-99.708333,,0.025,,8490,300,158,,,,,U1019 7.9s,81233,,, +281,USA,,FFZ,b,Falcon Fld Mesa (AZ),33.479167,-111.708333,,0.025,,8764,311,159,,,,991,L1045 U1033 7.9s,81225,,, +281,AUS,,JT,b,Jandakot (WA),-32.104167,115.875,,0.025,,14050,97,176,,,,,U1022 ,81230,,, +281,AUS,,BRW,b,Brewarrina (NSW),-29.979167,146.791667,,0.025,,15959,68,183,,,,,U375 9s,81215,,, +281,AUS,,CN,b,Camden (NSW),-34.020833,150.708333,,0.025,,16540,69,185,,,,,L1020 U1020 10s,TWEB,86312,, +281,AUS,,DPO,b,Devonport (TAS),-41.1875,146.458333,,0.025,,16782,84,185,,,,,L993 9s,86313,,, +282,G,,LA,b,Lyneham (EN-WLT),51.520833,-2.041667,,0.025,,584,267,79,,,,2,L397 U398 10.0s,ID+8 gap,81241,, +282,POL,,NR,b,Minsk Mazowiecki / Faktor,52.1875,21.625,,0.025,,1036,84,83,,,,,,81244,,, +282,HNG,,AO,b,Opera (JNS),47.0625,20.208333,,0.025,,1139,114,84,,,,0,L1020 U1020 ,81237,,, +282,HNG,,OA,b,Szolnok / Opera (JNS),47.145833,20.291667,,0.025,,1139,113,84,,,,3,L1008 U1014 ,IDx2 + 6gap,81246,, +282,MRC,,NSR,b,Casablanca / Mohamed V (gcb),33.270833,-7.541667,,0.025,,2376,214,97,,,,0,L1024 U1028 3.39s,Cont. ID,81245,, +282,USA,,OXD,b,Oxford (OH),39.520833,-84.791667,,0.025,,6728,298,140,,,,3,L1016 U1013 6566s,81247,,, +282,USA,,ROS,b,Rush City (MN),45.6875,-92.958333,,0.025,,6709,308,140,,,,2,L1049 U1044 7155s,AWOS,81251,, +282,USA,,MXA,b,Manila (AR),35.895833,-90.125,,0.025,,7343,298,146,,,,,U1030 ,81242,,, +282,MLA,,PK,b,Pekan,3.395833,103.458333,,0.5,,10189,82,151,,,,0,L1001 U1001 ,81248,,, +282,USA,,GWF,b,Gen William J Fox Lancaster (CA),34.729167,-118.208333,,0.025,,8965,317,160,,,,995,L1019 U1020 7.4s,81240,,, +282,MEX,,CED,b,Isla Cedros (Baja California) (bcs),28.020833,-115.208333,,0.025,,9456,311,161,,,,,U1035 10.2s,DBID,81238,, +282,NZL,,RO,b,Rotorua (BOP),-38.0625,176.375,,0.025,,18269,30,190,,,,,4.03s,81250,,, +283,NOR,,SF,b,Sandefjord / Torp,59.104167,10.291667,,0.025,,815,16,81,,,,998,L403 U397 ,ID+8 gap,81262,, +283,ALG,,BIS,b,Biskra (7),34.8125,5.708333,,0.025,,1924,182,92,,,,,L5 U2 14.9s,ID+12 tone,81254,, +283,NOR,,KBV,b,Kobbevag For Tromso / Langnes,69.520833,18.791667,,0.025,,2040,14,93,,,,2,L399 U403 ,81258,,, +283,CAN,,PT,b,Pelee Island (ON),41.770833,-82.708333,,0.1,,6428,298,131,,,,,U405 10268s,DAID,81259,, +283,CAN,,6M,b,Belleville (ON),44.1875,-77.291667,,0.025,,5921,297,132,,,,,,DAID,81253,, +283,ALS,,DUT,b,Dutch Harbor Unalaska (AK),53.895833,-166.541667,,1,,8210,356,139,,,,999,L1037 U1032 8.4s,81255,,, +283,CAN,,W2,b,Kirby (Gas Plant) (AB),55.354167,-110.625,,0.025,,6741,324,140,,,,,U410 9.7s,DAID,81264,, +283,TZA,,KL,b,Kilimanjaro (ars),-3.435833,36.924722,,0.025,,6812,145,141,,,,,,11400003,,, +283,USA,,AFP,b,Anson Co Wadesboro (NC),35.020833,-80.041667,,0.025,,6789,291,141,,,,,U997 ,86980,,, +283,CUB,,UZG,b,Zarago Zaragoza (ch),22.9375,-82.041667,,0.25,,7913,283,142,,,,991,L947 U908 7.6s,81263,,, +283,USA,,JZI,b,Johns Island Charleston (SC),32.6875,-80.041667,,0.025,,6975,289,143,,,,,U978 5319s,81257,,, +283,USA,,SCO,b,Scobey (MT),48.8125,-105.458333,,0.025,,7082,317,144,,,,998,L1040 U1057 7.1s,81260,,, +283,USA,,IML,b,Imperial (NE),40.520833,-101.625,,0.025,,7605,309,149,,,,3,L1020 U1022 5.5s,81256,,, +283,USA,,CN,b,Waco (TX),31.729167,-97.041667,,0.025,,8110,300,154,,,,,,86981,,, +283,J,,AY,b,Kumagaya (kan-sai),36.145833,139.291667,,0.025,,9190,37,160,,,,,U1000 5s,86315,,, +283.5,CNR,,NA,b,Punta Lantailla (LPM-FU),28.229167,-13.958333,,0.025,,3146,220,104,,,,-283.5,U5 ,IDx2 + 54 tone,81265,, +284,D,,FSB,b,Fassberg (nds),52.895833,10.208333,,0.025,,272,70,76,,,,990,L1040 U1020 ,81274,,, +284,BUL,,GRN,b,Gorna Oryahovitsa (vlt),43.161667,25.612778,,0.025,,1741,117,90,,,,2,L1036 U1037 ,ID+5 gap,81277,, +284,E,,AM,b,Almera (AND-AL),36.895833,-2.208333,,0.02,,1822,205,92,,,,66,L1013 U1085 ,ID+9 gap,81268,, +284,EGY,,OR,b,Al-Qahira=Cairo (qah),30.020833,31.291667,,0.025,,3190,131,105,,,,,,81281,,, +284,CAN,,RT,b,Rankin Inlet (NU),62.8125,-92.125,,1,,5412,323,111,,,,3,L400 U411 10010s,ID+6 tone,81288,, +284,XON,,5N,b,Rowan Gorilla Platform,43.854167,-60.625,,0.025,,4891,287,122,,,,0,L~1020 U~1020 ,81267,,, +284,CAN,,QD,b,The Pas (MB),53.979167,-101.041667,,0.5,,6449,319,124,,,,5,L395 U405 9.8s,DAID,81286,, +284,CAN,,L,b,Montral/Dorval (QC),45.5625,-73.625,,0.02,,5600,296,130,,,,,,86982,,, +284,CAN,,ZMT,b,Jarry Dorval (Montreal) (QC),45.5625,-73.625,,0.02,,5600,296,130,,,,0,L417 U423 10054s,DAID,81294,, +284,USA,,RQY,b,Randolph Co Elkins (WV),38.895833,-79.875,,0.05,,6475,294,135,,,,2,L1020 U1020 8517s,81287,,, +284,CAN,,YOC,b,Old Crow (YT),67.5625,-139.875,,0.025,,6415,345,137,,,,,U~400 ,81293,,, +284,USA,,PTB,b,Petersburg (VA),37.145833,-77.541667,,0.025,,6463,291,138,,,,,U1014 5350s,81285,,, +284,USA,,UYF,b,London (OH),39.9375,-83.458333,,0.025,,6615,297,139,,,,,,81291,,, +284,SXM,,PJD,b,St. Maarten (smt),18.020833,-63.125,,0.025,,7046,265,143,,,,,U1002 10527s,86316,,, +284,USA,,PDW,b,Evansville (IN),38.020833,-87.541667,,0.025,,7014,298,143,,,,,U1020 ,81283,,, +284,USA,,PQN,b,Pipestone (MN),43.979167,-96.291667,,0.025,,7028,308,143,,,,2,L1043 U1040 7.8s,81284,,, +284,USA,,OXV,b,Knoxville (IA),41.3125,-93.125,,0.025,,7072,304,144,,,,,U1020 ,81282,,, +284,CAN,,2U,b,Mackenzie (BC),55.3125,-123.125,,0.025,,7201,331,145,,,,,U411 10.6s,DAID,81266,, +284,USA,,GPH,b,Mosby (MO),39.354167,-94.291667,,0.025,,7300,303,146,,,,990,L1020 U1000 9.0s,81276,,, +284,USA,,SCD,b,Sylacauga (AL),33.1875,-86.291667,,0.025,,7332,294,146,,,,,U1020 6136s,81289,,, +284,USA,,IDL,b,Indianola (MS),33.479167,-90.708333,,0.025,,7580,297,149,,,,993,L1031 U1016 6.3s,81278,,, +284,USA,,FHR,b,Friday Harbor (WA),48.520833,-123.041667,,0.025,,7846,327,151,,,,,L1025 U1012 5.0s,81273,,, +284,USA,,MDF,b,Mooreland (OK),36.479167,-99.208333,,0.025,,7823,305,151,,,,,,86983,,, +284,USA,,VIV,b,Vivian (LA),32.854167,-94.041667,,0.025,,7834,299,151,,,,1,L1026 U1025 7854s,81292,,, +284,USA,,AUV,b,Arbuckle Ardmore (OK),34.145833,-97.125,,0.025,,7905,302,152,,,,988,L1070 U1083 ,81269,,, +284,USA,,BT,b,Rundi Baton Rouge (LA),30.5625,-91.208333,,0.025,,7857,295,152,,,,997,L1039 U1034 6.0s,81271,,, +284,USA,,MXR,b,Maxwell Raton (NM),36.6875,-104.541667,,0.025,,8097,308,154,,,,3,L1025 U1035 6.2s,81280,,, +284,USA,,DPG,b,Dugway Dugway Proving Ground (UT),40.1875,-112.958333,,0.025,,8205,316,155,,,,994,L1032 U1024 8.5s,81272,,, +284,USA,,BEA,b,Beeville (TX),28.354167,-97.791667,,0.025,,8449,298,157,,,,,U1011 ,81270,,, +284,CLM,,TEH,b,Bogot D. C. (bdc),4.645833,-74.125,,0.025,,8954,265,160,,,,,,81290,,, +284,AUS,,GAY,b,Gayndah (QLD),-25.604167,151.708333,,0.025,,15877,58,182,,,,995,L1020 U1020 11s,81275,,, +284,AUS,,MFD,b,Mansfield (VIC),-37.0625,146.125,,0.025,,16474,78,184,,,,,L400 U400 8s,81279,,, +284.5,D,,DY,b,Dsseldorf (nrw),51.229167,6.708333,,0.025,,100,168,56,,,,509,L1015 U1032 ,81295,,, +284.5,NOR,,LVK,b,Namsos / Leirvika,64.4375,11.291667,,0.05,,1399,10,84,,,,-284.5,L368 U378 8.0s,81296,,, +284.5,E,,MA,b,Cabo Matxitxako (PVA-BI),43.4375,-2.791667,,0.025,,1182,219,85,,,,-284.5,,86984,,, +285,I,,PDV,b,Padova (pd),45.354167,11.791667,,0.025,,848,150,81,,,,5,L1020 U1028 ,81312,,, +285,POL,,KTC,b,Katowice / Pyrzowice,50.479167,19.125,,0.025,,901,97,82,,,,4,L1014 U1017 6.2s,ID+2.5 gap,81309,, +285,S,,LCF,b,Linkping/Malmen,58.354167,15.458333,,0.025,,899,36,82,,,,0,L401 U401,81310,,, +285,I,,URB,b,Roma / Urbe (rm),41.9375,12.458333,,0.025,,1219,156,85,,,,80,L1020 U1180 ,ID+3 gap,81316,, +285,E,,ROZ,b,Lugo/Rozas (GAL-LU),43.104167,-7.458333,,0.025,,1439,231,87,,,,961,L1099 U1020 ,ID+17 gap,81313,, +285,E,,GR,b,Granada (AND-GR),37.1875,-3.875,,0.025,,1844,210,91,,,,979,L1063 U1008 10.13s,ID+12 gap,81305,, +285,GRC,,KRS,b,Karystos (cgr-evv),37.979167,24.458333,,0.04,,2105,131,92,,,,0,L400 U400 ,ID+6.5 gap,81308,, +285,RUS,,MU,b,Moskva/Gorodskaya Klinicheskaya Bolnitsa (MV),55.729167,37.791667,,0.025,,2075,66,94,,,,,,86318,,, +285,UKR,,F,b,Simferopol (KR),45.0625,33.958333,,0.025,,2156,100,95,,,,,,81304,,, +285,UKR,,N,b,Simferopol (KR),45.020833,33.958333,,0.025,,2159,100,95,,,,,,81311,,, +285,TUR,,AN,b,Ankara / Esenboga (ica-ank),40.0625,32.958333,,0.025,,2425,113,97,,,,0,L1020 U1020 ,Cont. ID,81299,, +285,CAN,,UHA,b,Quaqtaq (QC),61.0625,-69.625,,0.5,,4484,313,105,,,,3,L400 U410 10.11s,DAID,81315,, +285,IRN,,ABM,b,Abu Musa (hrg),25.895833,55.041667,,0.025,,4979,107,123,,,,,,81298,,, +285,CAN,,2Y,b,#NAME?,49.895833,-74.375,,0.025,,5356,301,127,,,,,,86985,,, +285,CAN,,J7,b,108 Mile Ranch (BC),51.729167,-121.375,,0.13,,7479,328,141,,,,4,L400 U408 ,DAID,81306,, +285,USA,,JZP,b,Pickens County Jasper (GA),34.4375,-84.458333,,0.025,,7115,293,144,,,,,L1020 17.48s,81307,,, +285,B,,VSA,b,Vitria de Santo Anto (PE),-8.104167,-35.291667,,0.025,,7779,225,151,,,,,L1023 ,81317,,, +285,B,,MOZ,b,Porto de Moz (PA),-1.770833,-52.208333,,0.025,,8098,243,154,,,,,L1078 ,86317,,, +285,B,,TLB,b,Telmaco Borba (PR),-24.3125,-50.625,,0.2,,10137,230,154,,,,,,81314,,, +285,B,,DOU,b,Dourados (MS),-22.1875,-54.958333,,0.2,,10170,234,155,,,,,L1019 7088s,81303,,, +285,USA,,NE,b,Newport Bay / Jetty Light 3 (CA),33.604167,-117.875,,0.025,,9057,316,160,,,,,,86986,,, +285,B,,BBC,b,Barbacena (MG),-21.270833,-43.791667,,0.025,,9497,226,161,,,,,,81300,,, +285,B,,CUA,b,Carauari (AM),-4.854167,-66.875,,0.025,,9310,254,161,,,,,L1022 7141s,81301,,, +286,D,,HFX,b,Hohenfels (bay),49.229167,11.875,,0.025,,501,128,78,,,,999,L1041 U1024 ,81322,,, +286,RUS,,F,b,Yaroslavl / Tunoshna,54.5625,36.375,,0.025,,1993,70,93,,,,,,86319,,, +286,RUS,,W,b,Kaluga / Trabtsevo (KL),54.520833,36.375,,0.025,,1993,70,93,,,,,,81324,,, +286,CAN,,A,b,Gros Cap (ON),46.520833,-84.625,,0.1,,6182,304,129,,,,,,86987,,, +286,CAN,,ZSM,b,Gros Cap Sault Ste Marie (ON),46.520833,-84.625,,0.1,,6182,304,129,,,,,L426 U365 10.4s,DAID,86990,, +286,PAK,,DI,b,Dera Ismail Khan (kpk),31.908958,70.888206,,0.025,,5568,87,129,,,,,,31500050,,, +286,USA,,GD,b,Grand Marais Lt. (MN),43.729167,-81.708333,,0.025,,6220,299,135,,,,,,86988,,, +286,CAN,,8G,b,Stettler (AB),52.3125,-112.791667,,0.025,,7095,324,144,,,,,U410 ,DAID,81318,, +286,USA,,EKS,b,Big Sky Ennis (MT),45.270833,-111.625,,0.025,,7678,318,150,,,,992,L1026 U1020 3.4s,81320,,, +286,USA,,EYQ,b,Weiser Houston (TX),29.9375,-95.625,,0.025,,8180,298,155,,,,8,L1000 U1021 6.86s,81321,,, +286,USA,,PI,b,Pigeon Point LS (CA),37.1875,-122.375,,0.025,,8916,321,159,,,,,,86989,,, +286,MLA,,KK,b,Kong Kong,1.520833,103.958333,,0.07,,10388,83,160,,,,0,L1000 U1000 10s,81323,,, +286,NZL,,CC,b,Cape Campbell,-41.729167,174.291667,,0.25,,18543,43,181,,,,,L970 8s,81319,,, +286.5,F,,TA,b,Villacoublay / Vlizy (78),48.770833,2.125,,0.025,,479,221,78,,,,-286.5,U6 ,ID+17 tone,81325,, +287,LBY,,GAD,b,Ghadames (nlt),30.1875,9.708333,,0.025,,2453,172,98,,,,0,L1020 U1019 10.0s,ID+6 gap,81326,, +287,RUS,,WG,b,Kurumoch / Samara (SA),53.5625,50.125,,0.025,,2894,69,102,,,,10,L760 U780 ,81337,,, +287,MTN,,PS,b,Nouadhibou (dnd),20.854167,-17.041667,,0.025,,4020,219,113,,,,,,81335,,, +287,CAN,,SF,b,Stoney Rapids (SK),59.270833,-105.791667,,1,,6222,325,119,,,,,U410 ,86994,,, +287,PAK,,QS,b,Qasim (pjb),33.566667,73.033333,,0.025,,5588,84,129,,,,,,31500032,,, +287,CAN,,YSF,b,Stony Rapids (SK),59.270833,-105.875,,0.025,,6225,325,135,,,,,U402 9.70s,DAID,81340,, +287,CAN,,WJ,b,Deline (NT),65.1875,-123.458333,,0.025,,6289,337,136,,,,,U407 ,DAID,81338,, +287,USA,,MKP,b,Mckeesport (PA),40.354167,-79.791667,,0.025,,6358,295,137,,,,991,L1043 U1018 8.14s,81332,,, +287,CAN,,G,b,Winnipeg (MB),49.979167,-97.208333,,0.025,,6588,313,139,,,,,U~400 ,DAID,86992,, +287,CAN,,PE,b,Peace River (AB),56.1875,-117.541667,,0.056,,6927,329,139,,,,,U406 10.18s,DBID,81334,, +287,CAN,,ZWG,b,Stoney Medicine Rock (Winnipeg) (MB),49.979167,-97.208333,,0.025,,6588,313,139,,,,,U370 10.7s,DBID,81341,, +287,USA,,GS,b,Greer (SC),34.8125,-82.291667,,0.025,,6948,292,142,,,,2,L401 U400 8600s,81327,,, +287,USA,,HUA,b,Redstone Arsenal Huntsville (AL),34.6875,-86.708333,,0.025,,7234,295,145,,,,,U1042 9.3s,81328,,, +287,USA,,ME,b,Elvis Memphis (TN),35.0625,-90.041667,,0.025,,7407,298,147,,,,2,L1030 U1041 ,81331,,, +287,USA,,AOQ,b,Alliance (Municipal) (NE),42.020833,-102.791667,,0.025,,7536,311,148,,,,,,86991,,, +287,USA,,RBD,b,Redbird Dallas (TX),32.6875,-96.875,,0.05,,8017,301,150,,,,,L1045 U1030 ,86993,,, +287,BGD,,EG,b,Chittagong (cgg),22.251111,91.817778,,0.025,,7768,79,151,,,,,,36300004,,, +287,CUB,,U,b,Santa Clara (vc),22.479167,-79.958333,,0.025,,7813,282,151,,,,,U1014 8.25s,86320,,, +287,CLM,,SMR,b,Santa Marta (mag),11.020833,-74.291667,,0.025,,8409,270,157,,,,947,L1160 U1053 ,DBID,81336,, +287,AUS,,LEC,b,Leigh Creek (SA),-30.645833,138.458333,,0.5,,15470,77,168,,,,,L1023 U1023 7s,81330,,, +287,AUS,,KG,b,Kalgoorlie (WA),-30.770833,121.458333,,0.025,,14327,92,177,,,,,L410 U390 8s,81329,,, +287,AUS,,NRC,b,Naracoorte (SA),-36.979167,140.708333,,0.025,,16103,83,183,,,,,L400 U400 9s,81333,,, +287,AUS,,WLE,b,Williamsdale (NSW),-35.5625,149.208333,,0.025,,16565,73,185,,,,,L400 U400 9s,81339,,, +287.5,AFS,,RDW,b,Rand (GT),-26.270833,28.125,,0.03,,8969,160,159,,,,-287.5,,81342,,, +288,HNG,,MNR,b,Monor for Ferihegy (Pes),47.354167,19.375,,0.025,,1069,115,84,,,,988,L1016 U990 8.0s,81346,,, +288,USA,,JI,b,James Island Light Station (WA),47.895833,-124.625,,0.2,,7965,328,144,,,,,U1030 ,86995,,, +288,USA,,P,b,Cape Flattery (WA),48.395833,-124.708333,,0.05,,7919,328,149,,,,,,86996,,, +288.5,F,,AVD,b,Avord (18),47.104167,2.791667,,0.05,,614,206,76,,,,-288.5,U20 25.4s,ID+20 tone,81347,, +289,F,,HR,b,Hericourt (70),47.5625,6.708333,,0.025,,506,177,78,,,,,U3 ,DAID,81351,, +289,HRV,,RI,b,Rijeka / Krk (ri),45.145833,14.625,,0.025,,981,139,83,,,,995,L1029 U1030 ,ID+6 gap,81353,, +289,I,,ARB,b,Tortoli / Arbatax (nu),39.9375,9.708333,,0.025,,1377,168,87,,,,,U1020 ,86321,,, +289,RUS,,AP,b,Chertovitskoye / Vorenezh (VN),51.770833,39.291667,,0.025,,2235,78,95,,,,7,L328 U339 ,IDx2 + 7 gap,81348,, +289,RUS,,WR,b,Chertovitskoye / Voronezh (VN),51.854167,39.208333,,0.025,,2227,78,95,,,,998,L400 U395 15.0s,IDx2 + 6 gap,81354,, +289,CAN,,YLQ,b,La Tuque (QC),47.395833,-72.791667,,0.5,,5426,298,114,,,,,U405 10138s,DAID,81355,, +289,IND,,IM,b,Imphal (MN),24.758056,93.888889,,0.025,,7695,76,150,,,,,,32200044,,, +289,HND,,CTL,b,Punta Castilla (col),16.020833,-85.958333,,0.025,,8767,282,159,,,,,L1020 ,81350,,, +289,USA,,MR,b,Marina del Rey Light (CA),33.979167,-118.458333,,0.025,,9049,317,160,,,,,,86997,,, +289,THA,,NK,b,Nakhon Si Thammarat (ntm),8.5625,99.958333,,0.025,,9498,82,161,,,,,,81352,,, +289.5,E,,MY,b,Cabo Mayor (CNT-S),43.479167,-3.791667,,0.025,,1223,222,85,,,,-289.5,,86998,,, +290,AUT,,GRZ,b,Graz,46.9375,15.458333,,0.08,,869,128,77,,,,2,L1062 U1068 9.0s,ID+3 gap,81362,, +290,BEL,,ONL,b,Liege / Bierset (wal-lge),50.6875,5.541667,,0.015,,169,201,77,,,,2,L400 U400 10.1s,81374,,, +290,POL,,K,b,Oksywie,54.604167,18.458333,,0.025,,845,66,81,,,,,,IDx3,81367,, +290,POL,,N,b,Oksywie,54.604167,18.458333,,0.025,,845,66,81,,,,,U1001 ,81371,,, +290,UKR,,IF,b,Ivano-Frankovsk (IF),48.854167,24.791667,,0.025,,1346,98,86,,,,,L1071 U1073 30.0s,IDx2 + 22 gap,81363,, +290,UKR,,IV,b,Ivano-Frankovsk (IF),48.895833,24.625,,0.025,,1333,98,86,,,,,,81366,,, +290,ALB,,TR,b,Tirana / Rinas (tir),41.4375,19.708333,,0.025,,1555,134,89,,,,0,L403 U397 10.0s,ID+8 gap,81381,, +290,FIN,,TP,b,Oulu,64.895833,25.541667,,0.025,,1789,30,91,,,,999,L407 U409 8.6s,81380,,, +290,RUS,,GG,b,Moskva/Vnukovo (MV),55.5625,37.208333,,0.025,,2039,67,93,,,,,U1020 ,81361,,, +290,RUS,,OB,b,Moskva/Vnukovo (MV),55.604167,37.375,,0.025,,2050,67,93,,,,7,L1006 U1009 ,IDx2,81372,, +290,CAN,,YYH,b,Taloyoak (NU),69.520833,-93.541667,,1,,5048,331,107,,,,7,L390 U406 10.64s,DAID,81386,, +290,TCD,,TM,b,Am Timan (sal),11.020833,20.291667,,0.025,,4737,160,120,,,,,,81378,,, +290,PAK,,RK,b,Rahim Yar Khan (pjb),28.411111,70.303333,,0.025,,5802,91,131,,,,,,31500049,,, +290,CAN,,QR,b,Regina (SK),50.354167,-104.541667,,0.1,,6908,318,136,,,,997,L385 U358 10.2s,DAID,81375,, +290,USA,,EKQ,b,Elk Spring Monticello (KY),36.854167,-84.875,,0.025,,6946,296,142,,,,,U1020 ,81360,,, +290,NCG,,YNP,b,Managua (mng),12.145833,-86.125,,1.2,,9116,279,143,,,,,,81384,,, +290,USA,,TVK,b,Centerville (IA),40.6875,-92.875,,0.025,,7109,304,144,,,,993,L1033 U1020 5613s,81382,,, +290,USA,,AOP,b,Antelope Rock Springs (WY),41.604167,-109.041667,,0.1,,7888,314,146,,,,998,L1030 U1026 7.0s,81357,,, +290,USA,,BBW,b,Broken Bow (NE),41.4375,-99.625,,0.025,,7420,308,147,,,,,,86999,,, +290,USA,,TYV,b,Toneyville Jacksonville (AR),34.9375,-92.041667,,0.025,,7538,299,148,,,,,U1048 6.25s,81383,,, +290,USA,,Y,b,Crystal Bay (FL),28.9375,-82.708333,,0.025,,7454,288,148,,,,,,87001,,, +290,CAN,,YYF,b,Penticton (BC),49.479167,-119.625,,0.025,,7626,326,149,,,,5,L390 U404 10.5s,DAID,81385,, +290,USA,,OLR,b,Chickasha (OK),35.104167,-97.958333,,0.025,,7871,303,152,,,,,L1020 ,87000,,, +290,B,,IT,b,So Joo de Meriti (RJ),-22.8125,-43.375,,0.2,,9628,225,153,,,,,,81365,,, +290,CLN,,MIN,b,Minneriya (prw),8.05,80.985278,,0.025,,8251,97,155,,,,,,34700026,,, +290,USA,,TMV,b,Stamford (TX),32.854167,-99.708333,,0.025,,8167,303,155,,,,,U1010 5.7s,81379,,, +290,AFS,,MM,b,Mafikeng (NW),-25.895833,25.541667,,0.025,,8872,163,159,,,,,L399 12.3s,81370,,, +290,B,,AV,b,Abrolhos (BA),-17.979167,-38.708333,,0.025,,8928,223,159,,,,,,86322,,, +290,MYA,,KT,b,Kawthoung,10.051667,98.549444,,0.025,,9272,82,161,,,,,,22100022,,, +290,TWN,,BM,b,Magong=Makung (PG),23.520833,119.625,,0.025,,9414,58,161,,,,,7s,81359,,, +290,B,,IS,b,Mada (SP),-23.5625,-46.708333,,0.025,,9865,227,163,,,,,,81364,,, +290,AUS,,SGT,b,Singleton (NSW),-32.5625,151.291667,,2,,16458,66,165,,,,,L400 U400 7s,81376,,, +290,B,,RG,b,Canal (RS),-32.145833,-52.125,,0.025,,10957,227,166,,,,,,86323,,, +290,INS,,TF,b,Bandar Lampung (LP-bla),-5.229167,105.208333,,0.025,,11067,86,166,,,,0,L1020 U1020 ,81377,,, +290,ARG,,OI,b,Punta Indio (ba),-35.3125,-57.208333,,0.025,,11509,229,168,,,,,7.6s,81373,,, +290,INS,,LW,b,Lawang,-7.8125,112.708333,,0.025,,11803,82,169,,,,,,81369,,, +291,F,,WS,b,Grenoble / St Geoirs (38),45.354167,5.125,,0.025,,757,188,81,,,,,L398 U407 ,ID+8 gap,81389,, +291,GRC,,KZN,b,Kozani / Filippos (wmc-koz),40.270833,21.875,,0.025,,1768,132,91,,,,993,L414 U412 ,ID+5 gap,81388,, +291,CAN,,9Q,b,Amos (QC),48.5625,-78.208333,,0.025,,5667,302,130,,,,,U367 10424s,DAID,81387,, +291,CAN,,6P,b,Rainbow Lake (AB),58.479167,-118.958333,,0.025,,6768,331,141,,,,,,87002,,, +291.5,RUS,,TB,b,Mys Teriberskiy,69.270833,35.208333,,0.025,,2422,27,97,,,,-291.5,,81394,,, +292,D,,NKR,b,Neckar (bw),49.354167,8.708333,,0.025,,346,151,76,,,,3,L1020 U1024 ,81400,,, +292,I,,NOV,b,Novara (no),45.4375,8.791667,,0.025,,762,166,81,,,,998,L1023 U1020 ,ID+6 gap,81401,, +292,E,,MIA,b,Melilla (MEL-ML),35.3125,-2.958333,,0.25,,2010,205,83,,,,967,L1061 U980 ,ID+15 gap,81398,, +292,E,,BRB,b,Barcial del Barco (CAL-ZA),41.9375,-5.708333,,0.02,,1453,224,88,,,,531,L~1020 U1057 6.5s,ID+4 gap,81395,, +292,TUR,,CAY,b,Caycuma (kdz-zon),41.520833,32.125,,0.025,,2266,111,96,,,,5,L1015 U1025 ,ID+6 gap,81396,, +292,RUS,,DJ,b,Kazan (TS),55.5625,49.375,,0.025,,2799,65,101,,,,,L291 U293 ,81397,,, +292,RUS,,PS,b,Kazan (TS),55.645833,49.208333,,0.025,,2787,65,101,,,,2,L399 U403 ,81402,,, +292,CAN,,F,b,Edmonton (AB),53.354167,-113.708333,,0.025,,7039,325,143,,,,,,87004,,, +292,CAN,,ZET,b,Devon (Edmonton Intl Apt) (AB),53.354167,-113.708333,,0.025,,7039,325,143,,,,986,L402 U390 10.5s,DAID,81403,, +292,CAN,,YCJ,b,Cape St. James LS (BC),51.9375,-131.041667,,0.025,,7781,334,151,,,,,,87005,,, +292,CHN,,NF,b,Nanfeng (JX),27.229167,116.541667,,0.05,,8899,58,156,,,,,15s,2xID,81399,, +292,USA,,DP,b,Dana Point Breakwater Light (CA),33.4375,-117.708333,,0.025,,9065,316,160,,,,,,87003,,, +292,AUS,,BWN,b,Bowen (QLD),-20.020833,148.208333,,0.025,,15162,57,180,,,,,,86324,,, +292.5,E,,BA,b,Estaca de Bares (GAL-C),43.770833,-7.708333,,0.025,,1398,234,87,,,,-292.5,35.0s,IDx2 + 25 tone,87006,, +293,BEL,,OB,b,Brussels National (bru),50.9375,4.625,,0.025,,180,224,75,,,,7,L392 U398 10.1s,81414,,, +293,AUT,,STE,b,Wien / Schwechat / Steinhof,48.229167,16.208333,,0.025,,819,118,81,,,,0,L1018 U1020 10.0s,ID+8 gap,81415,, +293,MRC,,KSR,b,Errachidia/Moulay Ali Cherif,31.9375,-4.375,,0.025,,2407,205,97,,,,950,L1080 U980 ,ID+7 gap,81412,, +293,NGR,,ARL,b,Arlit,18.770833,7.375,,0.025,,3708,178,110,,,,,U84 20.4s,ID+16 tone,81404,, +293,IRN,,DZF,b,Dezful / Vahdati (kuz),32.4375,48.375,,0.025,,4006,106,113,,,,,,81410,,, +293,TZA,,KB,b,Kilimanjaro (ars),-3.581389,36.694444,,0.025,,6818,145,141,,,,,,11400002,,, +293,USA,,CJJ,b,Cresco (IA),43.354167,-92.125,,0.025,,6850,305,141,,,,,U1022 ,81406,,, +293,USA,,GHJ,b,Stonia Gastonia (NC),35.1875,-81.125,,0.025,,6844,292,141,,,,,U1020 ,87008,,, +293,USA,,FK,b,Hopkinsville (KY),36.729167,-87.375,,0.025,,7109,297,144,,,,,,87007,,, +293,USA,,IKV,b,Ankeny (IA),41.6875,-93.541667,,0.025,,7065,305,144,,,,,,87009,,, +293,USA,,UI,b,Quincy (IL),39.895833,-91.291667,,0.025,,7083,302,144,,,,0,L1030 U1020 ,81417,,, +293,USA,,CRD,b,Conrad (MT),48.1875,-111.875,,0.025,,7426,320,147,,,,,U1035 7.94s,81408,,, +293,USA,,FBY,b,Fairbury (NE),40.1875,-97.125,,0.025,,7390,306,147,,,,,U1007 6.82s,81411,,, +293,USA,,PPF,b,Parsons (KS),37.354167,-95.541667,,0.025,,7540,303,148,,,,,,87010,,, +293,USA,,TOR,b,Torrington (WY),42.0625,-104.125,,0.025,,7601,312,149,,,,987,L1051 U1034 8.05s,81416,,, +293,CAN,,MB,b,Mill Bay Victoria (BC),48.6875,-123.541667,,0.025,,7849,328,151,,,,,U363 10.4s,DAID,81413,, +293,PRG,,ALG,b,Ciudad del Este,-25.354167,-54.791667,,0.025,,10458,233,164,,,,,8s,86325,,, +293,AUS,,COM,b,Cooma (NSW),-36.354167,148.958333,,0.5,,16609,74,172,,,,,U414 9s,81407,,, +293,AUS,,CUN,b,Cunderdin (WA),-31.604167,117.208333,,0.025,,14102,96,177,,,,,U1028 ,81409,,, +293,AUS,,CDU,b,Ceduna (SA),-32.145833,133.708333,,0.025,,15268,83,180,,,,,L1028 U400 9s,81405,,, +293.5,D,,DGPS Iffezheim (Rhein),G,Iffezheim/An der Staustufe 27 (bw),48.831128,8.111864,,1,,384,161,61,,,,-293.5,,2000030,,, +294,SRB,,VRA,b,Vrac (Voj-jbn),45.104167,21.291667,,0.025,,1339,120,86,,,,60,L900 U1020 ,81421,,, +294,USA,,BMC,b,Brigham City (UT),41.520833,-112.041667,,0.025,,8039,316,153,,,,993,L1053 U1040 6.0s,81419,,, +294,CLM,,ZIP,b,Zipaquir (cun),5.020833,-73.958333,,0.025,,8910,265,159,,,,,U1020 ,81422,,, +294,OCE,,AN,b,Hiva Oa,-9.770833,-139.041667,,0.025,,14370,314,177,,,,,34.5s,DAID,86326,, +294.5,RUS,,ÜG,b,Mys Lounatrivi / Ostrov Gogland (LE),60.020833,27.041667,,0.025,,1543,47,88,,,,-294.5,,81423,,, +294.5,UKR,,ZM,b,Ostrov Zmeinyy,45.229167,30.208333,,0.025,,1897,104,92,,,,-294.5,,81428,,, +294.5,RUS,,VG,b,Ostrov Zhizhginskiy,65.229167,36.791667,,0.025,,2245,38,95,,,,-294.5,,81427,,, +294.5,RUS,,KC,b,Kashkarantsy,66.3125,36.041667,,0.025,,2270,35,96,,,,-294.5,,81424,,, +294.5,RUS,,MU,b,Ostrov Mudyugskiy,64.9375,40.208333,,0.025,,2379,40,97,,,,-294.5,,81425,,, +294.5,RUS,,NI,b,Mys Nikodimskiy,66.104167,39.041667,,0.025,,2380,37,97,,,,-294.5,,81426,,, +295,CZE,,DGPS IALA,b,Obřstv/Zdymadlo (ST),50.301072,14.483933,,0.1,,597,106,73,,,,,,1900002,,, +295,HNG,,DC,b,Debrecen (HaB),47.4375,21.541667,,0.025,,1201,110,85,,,,,U1025 ,ID+2 gap,81430,, +295,MKD,,PT,b,Skopje (SK),41.895833,21.625,,0.05,,1613,129,86,,,,20,L984 U968 ,ID+6 tone,81439,, +295,UKR,,YN,b,Vasilkov,50.229167,30.291667,,0.025,,1670,88,90,,,,,L1020 14.8s,IDx2,81443,, +295,UKR,,ZA,b,Zaporizhzhia (ZP),47.8125,35.291667,,0.025,,2105,92,94,,,,998,L1039 U1034 ,IDx2 + 6 gap,81444,, +295,UKR,,ZP,b,Zaporizhzhia (ZP),47.895833,35.375,,0.025,,2107,91,94,,,,0,L980 U980 ,ID+3.5 gap,81445,, +295,SYR,,DRZ,b,Deir ez-Zor=Dayr az-Zawr (dyz),35.270833,40.208333,,0.025,,3254,112,106,,,,22,L1020 U1055 ,ID+10 gap,81431,, +295,TKM,,PQ,b,Aşgabat (asb),37.979167,58.375,,0.025,,4268,90,116,,,,999,L728 U726 ,81438,,, +295,CAN,,YLU,b,Kangiqsualujjuaq (QC),58.6875,-65.958333,,0.025,,4399,309,117,,,,,U404 ,DAID,81442,, +295,IRN,,ZAL,b,Zabol (sib),31.0975,61.539722,,0.025,,4993,96,123,,,,,L1028 ,Cont. ID,86329,, +295,PAK,,RT,b,Rawalakot (ajk),33.8475,73.799167,,0.025,,5619,83,129,,,,,,31500046,,, +295,CAN,,8C,b,Fairview (AB),56.0625,-118.458333,,0.025,,6971,329,143,,,,990,L406 U382 ,DAID,81429,, +295,B,,LST,b,Lagoa Santa (MG),-19.645833,-43.875,,0.2,,9342,227,152,,,,,,81435,,, +295,B,,ATM,b,Altamira (PA),-3.270833,-52.291667,,0.025,,8243,242,155,,,,,,86328,,, +295,CLM,,RHC,b,Riohacha (lag),11.520833,-72.958333,,0.025,,8275,269,156,,,,,L1030 ,81440,,, +295,MYA,,LK,b,Loikaw,19.692778,97.216111,,0.025,,8346,77,156,,,,,,22100028,,, +295,B,,FLN,b,Florianpolis (SC),-27.6875,-48.458333,,0.025,,10350,226,164,,,,,,81433,,, +295,INS,,NR,b,Waingapu (NT),-9.6875,120.291667,,0.025,,12476,77,171,,,,,,81437,,, +295.5,E,,PS,b,Cabo de Peas (AST-O),43.645833,-5.875,,0.025,,1310,229,86,,,,-295.5,,87011,,, +296,SVN,,MG,b,Ljubljana (lj),46.1875,14.541667,,0.025,,884,135,82,,,,0,L1021 U1018 10.0s,ID+7 gap,81455,, +296,FIN,,JYV,b,Jyvskyl,62.354167,25.791667,,0.025,,1618,38,89,,,,1,L405 U408 8.5s,81451,,, +296,IRN,,CY,b,Kurush (bus),29.0625,49.458333,,0.025,,4352,109,116,,,,,,81448,,, +296,ALS,,AWI,b,Wainwright (AK),70.604167,-159.875,,0.025,,6326,355,136,,,,,U~1020 ,81447,,, +296,CAN,,M4,b,Gimli (MB),50.645833,-97.041667,,0.025,,6526,314,138,,,,15,L385 U417 11.96s,DAID,81454,, +296,CUB,,UVT,b,Victoria de las Tunas (lt),20.988639,-76.938764,,0.35,,7736,278,139,,,,,L1131 U856 6357s,81458,,, +296,USA,,G,b,Galveston (TX),29.3125,-94.708333,,1,,8179,297,139,,,,,,87014,,, +296,CAN,,V4,b,Bonnyville (AB),54.3125,-110.708333,,0.025,,6835,324,141,,,,,U338 10.3s,DBID,81459,, +296,CAN,,B,b,Quatsino Sound Light Station (BC),50.4375,-128.041667,,0.15,,7835,331,144,,,,,U400 ,DA3ID,87012,, +296,USA,,ARF,b,Saratoga Albertville (AL),34.270833,-86.208333,,0.025,,7238,294,145,,,,,L1052 5709s,81446,,, +296,USA,,CRZ,b,Corning (Municipal) (IA),40.979167,-94.708333,,0.025,,7189,305,145,,,,,,87013,,, +296,USA,,HCK,b,Hawks / Knob Noster (MO),38.645833,-93.541667,,0.025,,7316,302,146,,,,,L1063 ,87016,,, +296,USA,,HBZ,b,Heber Springs (AR),35.520833,-92.041667,,0.025,,7489,299,148,,,,,U1020 ,87015,,, +296,CHN,,PU,b,Dongyangjiao (LN),41.520833,123.291667,,0.05,,7964,45,150,,,,,,81457,,, +296,USA,,LQR,b,Larned (KS),38.1875,-99.125,,0.025,,7671,306,150,,,,,U1018 ,81453,,, +296,USA,,LGD,b,La Grande (OR),45.354167,-117.958333,,0.025,,7947,322,152,,,,,U1020 6.0s,Delayed D,81452,, +296,USA,,ICF,b,Madison Wichita Falls (TX),33.895833,-98.458333,,0.025,,8004,302,153,,,,997,L1036 U1032 ,81450,,, +296,USA,,SP,b,Shawn Wichita Falls (TX),33.895833,-98.458333,,0.025,,8004,302,153,,,,,L1039 U1040 6.0s,87017,,, +296,CHN,,WF,b,Xinglin (FJ),24.5625,118.041667,,0.05,,9227,58,157,,,,,14s,2xID,81460,, +296,AUS,,FLI,b,Flinders Island (TAS),-40.104167,148.041667,,2,,16818,81,166,,,,,L396 9s,81449,,, +296,AUS,,PLO,b,Point Lookout (NSW),-30.479167,152.375,,0.025,,16348,62,184,,,,,L400 U400 8s,81456,,, +296.5,E,,FI,b,Cabo Finisterre (GAL-C),42.895833,-9.291667,,0.025,,1556,235,89,,,,-296.5,34.8s,IDx2 +25 tone,87018,, +297,D,,FR,b,Frankfurt (hes),50.0625,8.708333,,0.025,,279,144,76,,,,,U1013 ,81462,,, +297,POL,,NA,b,Miroslawiec,53.395833,16.041667,,0.025,,663,74,80,,,,,L400 U400 ,ID+6 gap,86330,, +297,F,,GA,b,Gap / Tallard (05),44.395833,5.958333,,0.025,,858,182,82,,,,,L13 17.4s,ID+13 tone,81463,, +297,SVK,,PNY,b,Piestany (TT),48.604167,17.791667,,0.025,,895,111,82,,,,,,81468,,, +297,MKD,,PEP,b,Prilep (PE),41.354167,21.458333,,0.025,,1651,130,89,,,,15,L992 U1030 ,ID+6 tone,81467,, +297,RUS,,BA,b,Shatalovo,54.354167,32.458333,,0.025,,1741,71,90,,,,,L1010 ,81461,,, +297,RUS,,NSH,b,Shatalovo,54.354167,32.458333,,0.025,,1741,71,90,,,,0,L1115 U1116 ,81466,,, +297,MTN,,NH,b,Nouakchott (nkc),18.0625,-15.958333,,0.05,,4260,216,113,,,,,18.8s,81465,,, +297,CHN,,GS,b,Lishui (ZJ),31.645833,119.041667,,0.025,,8641,54,158,,,,,,81464,,, +298,E,,BJZ,b,Badajoz / Talavera La Real (EXT-BA),38.8125,-6.708333,,0.025,,1792,220,91,,,,525,U1050 7.38s,ID+3 gap,81471,, +298,GRL,,KU,b,Kook Islands (Kitaa) (sms-nuk),64.0625,-52.041667,,0.025,,3532,315,108,,,,202,L398 U400 4.7s,ID+2 gap,81472,, +298,TJK,,CG,b,Kulob=Kulyab (ktl),37.941667,69.79,,0.025,,5047,82,123,,,,,,34200004,,, +298,TZA,,KO,b,Kilimanjaro (ars),-3.432778,36.993333,,0.025,,6814,145,141,,,,,,11400004,,, +298,CAN,,3N,b,Weyburn (SK),49.6875,-103.791667,,0.025,,6929,317,142,,,,,,DAID,81469,, +298,MLA,,AM,b,Malacca,2.270833,102.291667,,0.03,,10209,84,163,,,,0,L540 U540 ,81470,,, +298,URG,,MP,b,Durazno (du),-33.354167,-56.458333,,0.025,,11290,229,167,,,,,4.9s,81473,,, +298.5,D,,DGPS Helgoland,G,Helgoland/Frachtstrae (shs),54.180544,7.884142,,1,,250,23,59,,,,-298.5,,2000031,,, +299,D,,SL,b,Berlin / Schnefeld (brb),52.395833,13.625,,0.025,,492,83,78,,,,0,L1020 U1020 10.0s,81480,,, +299,F,,BO,b,St Etienne / Boutheon (42),45.520833,4.291667,,0.025,,749,193,80,,,,,L399 U405 10.0s,ID+7 gap,81475,, +299,GRC,,HIO,b,Khios (neg-khi),38.354167,26.125,,0.025,,2160,127,95,,,,0,L1050 U1050 ,ID+11 gap,81477,, +299,CAN,,J4,b,Fort Mackay (AB),57.229167,-111.041667,,0.2,,6595,326,130,,,,,,87019,,, +299,CAN,,TV,b,Turner Valley (AB),50.770833,-114.375,,0.2,,7298,323,137,,,,,U414 10.2s,DAID,81482,, +299,USA,,VV,b,Camor (PA),39.895833,-79.708333,,0.025,,6388,295,137,,,,,,81483,,, +299,USA,,HW,b,Cubla Wilmington (OH),39.354167,-83.875,,0.025,,6686,297,140,,,,0,L1060 U1062 6.12s,81478,,, +299,USA,,TR,b,Bristol (TN),36.5625,-82.291667,,0.025,,6808,294,141,,,,991,L1049 U1037 4439s,81481,,, +299,ALS,,KKA,b,Koyak Alfred Adams (AK),64.9375,-161.125,,0.025,,6956,354,143,,,,,L1040 ,86331,,, +299,THA,,KB,b,Kroby (krb),8.104167,98.958333,,0.025,,9470,83,161,,,,,,2xID+44 gap,81479,, +299,AUS,,CWR,b,Cowra (NSW),-33.854167,148.625,,0.025,,16393,71,184,,,,,L409 U404 9s,81476,,, +299.5,NOR,,KN,b,Svolvaer / Helle / Skrova,68.145833,14.625,,0.025,,1836,11,91,,,,502,L407 U396 10.0s,ID+8 gap,81484,, +300,CZE,,KD,b,Kbely / Praha East (ST),50.145833,14.625,,0.025,,613,108,79,,,,41,L1178 U1035 8.3s,81493,,, +300,POL,,F,b,Pruszcz Gdanski,54.229167,18.708333,,0.025,,852,69,81,,,,5,L650 U660 5.2s,81490,,, +300,E,,ZMR,b,Zamora (CAL-ZA),41.520833,-5.625,,0.1,,1488,222,82,,,,986,L1057 U1055 6.2s,ID+2 gap,81511,, +300,S,,SC,b,Linkping/Malmen & Saab,58.4375,15.541667,,0.025,,909,36,82,,,,5,L404 U410 5.0s,81503,,, +300,SRB,,PV,b,Novi Sad / Cenej / Petrovaradin (Voj-jbc),45.145833,19.458333,,0.025,,1229,124,85,,,,14,L975 U1020 9.9s,ID+7 tone,81501,, +300,RUS,,NP,b,Pskov (PS),57.8125,28.458333,,0.025,,1535,57,88,,,,,14.9s,IDx2,81497,, +300,RUS,,PK,b,Pskov (PS),57.729167,28.375,,0.025,,1528,57,88,,,,,30.0s,IDx2,81500,, +300,RUS,,AR,b,Ryazan / Dyagilevo (RY),54.645833,39.541667,,0.025,,2195,69,95,,,,,,81486,,, +300,RUS,,LM,b,Ryazan / Dyagilevo (RY),54.645833,39.541667,,0.025,,2195,69,95,,,,,,81495,,, +300,LBY,,OJ,b,As Sidr (srt),30.645833,18.333333,,0.025,,2578,153,99,,,,5,L400 U400 ,ID+2 gap,81498,, +300,IRN,,TBZ,b,Tabriz (eaz),38.104167,46.208333,,0.025,,3433,101,107,,,,993,L1050 U1035 10.3s,ID+7 gap,81506,, +300,CAN,,YIV,b,Island Lake (MB),53.854167,-94.625,,0.5,,6159,315,122,,,,,U405 10.0s,DAID,81509,, +300,RUS,,UF,b,Novokuznetsk (KE),53.854167,86.875,,0.025,,5092,54,124,,,,,,81507,,, +300,CAN,,YOG,b,Ogoki Post (ON),51.645833,-85.875,,0.025,,5878,309,132,,,,,U400 10.4s,DAID,81510,, +300,TZA,,BK,b,Bukoba (kgr),-1.331111,31.825556,,0.025,,6402,149,137,,,,,,11400005,,, +300,RRW,,CR,b,Rusumo,-2.268889,30.717222,,0.025,,6464,151,138,,,,,,9800002,,, +300,CAN,,Q5,b,Grande Cache (AB),53.9375,-118.875,,0.025,,7182,328,145,,,,,U386 10.28s,DAID,81502,, +300,CLM,,ABL,b,Ambalema (tol),0.770833,-74.791667,,1,,9340,264,145,,,,,,81485,,, +300,CAN,,TVK,b,Turner Valley (AB),50.770833,-114.375,,0.025,,7298,323,146,,,,,,87020,,, +300,MEX,,LAP,b,La Paz (Baja California) (bcs),24.0625,-110.375,,1,,9567,305,146,,,,985,L1020 U990 7.24s,DA3ID,81494,, +300,USA,,SPF,b,Black Hills Spearfish (SD),44.479167,-103.791667,,0.025,,7374,313,147,,,,,U1021 5.0s,81505,,, +300,CUB,,UGT,b,Guantnamo (gu),20.0625,-75.125,,0.025,,7691,276,150,,,,998,L681 U678 5878s,81508,,, +300,B,,FB,b,Tramanda (RS),-29.979167,-50.125,,0.5,,10652,227,152,,,,,,81491,,, +300,B,,BCH,b,Bacacheri (PR),-25.395833,-49.208333,,0.1,,10168,228,158,,,,,,81487,,, +300,BIO,,NDG,b,Diego Garcia (dga),-7.2925,72.384167,,0.025,,9062,114,160,,,,,,12200003,,, +300,MYA,,ME,b,Myeik,12.449722,98.622778,,0.025,,9068,81,160,,,,,,22100033,,, +300,B,,PKT,b,Paracatu (MG),-17.229167,-46.958333,,0.025,,9265,231,161,,,,,,86332,,, +300,B,,SK,b,Maca (RJ),-22.020833,-41.041667,,0.025,,9439,223,161,,,,,,81504,,, +300,B,,IP,b,Jardim (SP),-22.979167,-47.125,,0.025,,9829,228,162,,,,,,81492,,, +300,INS,,OY,b,Bandung (JB-ban),-6.9375,107.625,,0.025,,11381,85,168,,,,0,L991 U1020 8s,81499,,, +300.5,D,,LW,b,Kln / Bonn (nrw),50.898278,7.252558,,0.025,,147,156,73,,,,498,L1022 U1015 6.9s,81515,,, +300.5,UKR,,GE,b,Genicheskiy / Henichesk (KE),46.1875,34.791667,,0.025,,2151,97,94,,,,-300.5,,81513,,, +300.5,UKR,,BS,b,Belosarayskiy,46.895833,37.375,,0.025,,2291,92,96,,,,-300.5,,81512,,, +300.5,UKR,,NB,b,Berdianskiy Nizhniy (ZP),46.645833,36.791667,,0.025,,2263,93,96,,,,-300.5,,81516,,, +300.5,RUS,,SN,b,Mys Setnavolok,69.395833,33.541667,,0.025,,2380,26,97,,,,-300.5,,81517,,, +300.5,RUS,,TB,b,Mys Teriberskiy,69.270833,35.125,,0.025,,2420,27,97,,,,-300.5,,81518,,, +300.5,RUS,,UR,b,Mys Chyernyy,68.354167,38.625,,0.025,,2480,31,98,,,,-300.5,,81519,,, +300.5,RUS,,KS,b,Mys Kanin,68.645833,43.291667,,0.025,,2663,33,100,,,,-300.5,,81514,,, +301,F,,RTN,b,Romorantin / Pruniers (41),47.3125,1.708333,,0.025,,631,214,79,,,,,U8 19.0s,ID+15 tone,81521,, +301,LBY,,TW,b,Tripoli / Ghararah (tbl),32.645833,13.041667,,0.025,,2230,164,95,,,,0,L1020 U1020 ,ID+8 gap,81522,, +301,HND,,ROA,b,Roatan (bah),16.3125,-86.541667,,0.025,,8781,282,159,,,,,U1017 9944s,81520,,, +301.5,I,,TRE,b,Treviso (tv),45.604167,12.125,,0.025,,835,148,81,,,,503,L1014 U1020 ,ID+7 gap,81524,, +301.5,I,,CMP,b,Campagnano (rm),42.104167,12.375,,0.025,,1200,156,85,,,,499,L1023 U1018 ,ID+5.5 gap,81523,, +302,F,,TH,b,Villacoublay / Vlizy (78),48.770833,2.375,,0.025,,468,219,78,,,,,U9 15.0s,DAID,81536,, +302,F,,ROM,b,Rodez / Marcillac (12),44.354167,2.625,,0.025,,907,199,82,,,,,U3 20.0s,ID+14 tone,81535,, +302,MNE,,NIK,b,Niksic (NK),42.770833,18.958333,,0.04,,1399,133,85,,,,0,L1017 U1015 9.7s,ID+6 tone,81531,, +302,TUR,,YT,b,Antalya LTAI (akd-ant),36.875736,30.789097,,0.025,,2549,122,98,,,,,U1018 ,ID+8 gap,81539,, +302,JOR,,JYT,b,Qatraneh (kar),31.229167,36.041667,,0.025,,3341,122,106,,,,979,L1020 U978 ,Cont. ID,81530,, +302,USA,,V,b,Point Vincente Light (CA),43.270833,-79.208333,,0.025,,6104,297,134,,,,,,87023,,, +302,CAN,,QW,b,North Battleford (SK),52.8125,-108.375,,0.04,,6868,321,140,,,,,U396 10.3s,DAID,81534,, +302,CAN,,XY,b,Whitehorse (YT),60.770833,-135.125,,0.025,,7006,340,143,,,,,U408 10s,DAID,81538,, +302,USA,,EAG,b,Eagle Grove (IA),42.729167,-93.875,,0.025,,6998,306,143,,,,,U1015 ,81528,,, +302,USA,,HO,b,Beady Huron (SD),44.4375,-98.375,,0.025,,7100,310,144,,,,0,L1034 U1020 ,81529,,, +302,USA,,MBY,b,Moberly (MO),39.479167,-92.458333,,0.025,,7185,302,145,,,,,,87022,,, +302,CAN,,6K,b,Vernon (BC),50.354167,-119.291667,,0.025,,7531,326,148,,,,0,L405 U408 8.5s,DAID,81525,, +302,USA,,CWS,b,Conway (AR),35.104167,-92.458333,,0.025,,7549,299,148,,,,,U1019 6907s,81527,,, +302,USA,,PU,b,Mertz Pueblo (CO),38.270833,-104.625,,0.025,,7961,309,153,,,,985,L1045 U1020 6.61s,81533,,, +302,USA,,L,b,Point Loma Light (CA),32.645833,-117.208333,,0.025,,9116,315,160,,,,,,87021,,, +302,AUS,,BUD,b,Bundaberg (QLD),-24.895833,152.291667,,0.025,,15846,57,182,,,,,U400 8s,86333,,, +302,AUS,,XP,b,Bundaberg (QLD),-24.895833,152.291667,,0.025,,15846,57,182,,,,,L400 U400 8s,86335,,, +302,AUS,,BN,b,Brisbane (QLD),-27.395833,153.125,,0.025,,16121,58,183,,,,993,L1032 U1019 9.75s,81526,,, +302,AUS,,WYY,b,Wynyard (TAS),-40.979167,145.708333,,0.025,,16718,84,185,,,,,U1020 20s,86334,,, +302.5,D,,DGPS Koblenz (Rhein),G,Koblenz/Alte Heerstrae (rlp),50.333725,7.638711,,1,,215,156,59,,,,-302.5,,2000032,,, +303,AUT,,RTT,b,Innsbruck / Rattenberg,47.4375,11.958333,,0.025,,654,140,80,,,,0,L1020 U1020 ,ID+8 gap,81545,, +303,POL,,NKA,b,Poznan / Krzesiny / Kamera,52.3125,17.041667,,0.025,,724,84,80,,,,995,L1020 U1002 7.2s,81543,,, +303,AUT,,WO,b,Wien / Schwechat,48.145833,16.458333,,0.025,,840,118,81,,,,0,L1020 U1020 10.0s,ID+7 gap,81546,, +303,NOR,,KPG,b,Sogndal / Haukasen / Kaupanger,61.1875,7.208333,,0.025,,1011,2,83,,,,5,L401 U400 ,ID+6 gap,81541,, +303,RUS,,PU,b,Sankt-Peterburg/Pulkovo (SP),59.8125,30.208333,,0.025,,1697,50,90,,,,0,L400 U400 ,81544,,, +303,CAN,,1X,b,Grand Banks/Terra Nova Platform (NL),46.479167,-48.541667,,0.025,,3936,283,112,,,,,,81540,,, +303,CAN,,YPP,b,Parent (QC),47.895833,-74.708333,,1,,5507,299,112,,,,0,L400 U381 9.8s,DAID,81547,, +303,CAN,,PPP,b,Pointe Petre (ON),43.8125,-77.125,,0.15,,5938,297,125,,,,,,87025,,, +303,PAK,,GD,b,Gwadar (blc),25.227778,62.330556,,0.025,,5519,100,128,,,,,,31500036,,, +303,USA,,MRT,b,Marysville (OH),40.229167,-83.375,,0.025,,6587,297,139,,,,,L1013 U1014 ,87024,,, +303.5,D,,DGPS Zeven,G,Zeven/Meierhfen 31 (nds),53.284628,9.262464,,1,,232,55,59,,,,-303.5,,2000033,,, +303.5,RUS,,WD,b,Mys Nemetski,69.9375,31.958333,,0.025,,2374,24,97,,,,-303.5,,81550,,, +303.5,RUS,,KO,b,Konushinskiy,67.1875,43.791667,,0.025,,2619,36,99,,,,-303.5,,81549,,, +303.5,RUS,,CHL,b,Mys Chirikova (MA),59.479167,150.541667,,0.025,,7196,19,145,,,,-303.5,,81548,,, +304,POR,,VR,b,Villa Real (vrl),41.229167,-7.708333,,0.025,,1614,227,89,,,,998,L405 U400 ,Cont.ID,81560,, +304,RUS,,BF,b,Ukhta (KO),63.520833,53.791667,,0.025,,2991,46,103,,,,0,L400 U400 ,81551,,, +304,RUS,,DP,b,Ukhta (KO),63.604167,53.791667,,0.025,,2991,46,103,,,,0,L1020 U1020 15.1s,IDx2,81554,, +304,ALG,,MOK,b,Bordj Badji Mokhtar (1),21.354167,0.958333,,0.025,,3452,190,107,,,,,L1040 ,Cont. ID,81558,, +304,CAN,,ZQM,b,Riverview (Moncton) (NB),46.020833,-64.791667,,0.1,,5020,292,117,,,,993,L416 U401 ,ID+4 tone,81561,, +304,CAN,,F,b,Riverview / Moncton (NB),46.020833,-64.791667,,0.025,,5020,292,123,,,,,U416 ,87026,,, +304,CAN,,D4,b,Rocanville (SK),50.479167,-101.541667,,0.025,,6757,316,141,,,,,U404 ,DAID,81553,, +304,CAN,,FH,b,McLeod (Whitecourt) (AB),54.145833,-115.791667,,0.025,,7048,326,143,,,,,L400 U387 9.43s,DAID,81555,, +304,USA,,BN,b,Dobbs Nashville (TN),36.020833,-86.708333,,0.025,,7126,296,144,,,,,U1020 ,81552,,, +304,USA,,LVM,b,Livingston (MT),45.6875,-110.458333,,0.025,,7587,318,149,,,,,U1850 ,81557,,, +305,FIN,,S,b,Mariehamn,60.145833,19.875,,0.025,,1218,38,85,,,,5,L399 U405 ,ID+4 gap,81580,, +305,BUL,,GO,b,Gorna Oryahovitsa (vlt),43.141111,25.813056,,0.025,,1754,117,91,,,,0,L1020 U1020 ,ID+5.5s tone,81565,, +305,RUS,,N,b,Ostafyevo,55.520833,37.458333,,0.025,,2055,67,94,,,,,L1015 U1022 ,86340,,, +305,RUS,,P,b,Ostafyevo,55.520833,37.541667,,0.025,,2060,67,94,,,,0,L400 U400 15.0s,IDx2 + 8 tone,81577,, +305,TUR,,YAA,b,Yalova (mam-yal),40.5625,29.375,,0.025,,2166,117,95,,,,984,L1097 U1065 ,Cont. ID,81583,, +305,CAN,,LT,b,Alert Bay (NU),82.520833,-62.208333,,1,,3975,348,97,,,,,U413 10.0s,DAID,81569,, +305,RUS,,FK,b,Lhata,64.395833,40.708333,,0.025,,2381,42,97,,,,,,86338,,, +305,TUR,,NK,b,Ankara / Esenboga (ica-ank),40.104167,32.958333,,0.025,,2422,113,97,,,,,U1075 ,Cont. ID,81573,, +305,LBY,,GS,b,Sarir /A.G Concession 65 (wah),27.645833,22.541667,,0.025,,3033,148,103,,,,998,L1023 U1020 ,ID+7.5 gap,81566,, +305,CAN,,YQ,b,Churchill / Eastern Creek (MB),58.770833,-93.958333,,0.5,,5767,320,118,,,,,U405 10.0s,DAID,81584,, +305,LCA,,BNE,b,Hewanorra (vft),13.729167,-60.958333,,0.1,,7268,261,140,,,,,L1020 8.0s,86337,,, +305,CAN,,Z1,b,Three Hills (AB),51.6875,-113.208333,,0.049,,7168,323,142,,,,996,L395 U391 5.11/10.2s,DAID,81585,, +305,CAN,,P,b,Pine Island Light (BC),50.979167,-127.708333,,0.15,,7770,331,143,,,,,U400 ,DA3ID,87028,, +305,ALS,,PEE,b,Peters Creek Talkeetna (AK),62.3125,-150.125,,0.025,,7126,348,144,,,,,L1020 ,81578,,, +305,USA,,OI,b,Tommi South Sioux City (NE),42.479167,-96.458333,,0.025,,7161,307,145,,,,10,L1020 U1037 6.45s,81575,,, +305,B,,MDD,b,Monte Dourado Almeirim (PA),-0.895833,-52.625,,0.1,,8042,244,147,,,,,,81570,,, +305,B,,NR,b,Ilha da Moela (SP),-24.0625,-46.291667,,0.5,,9893,227,150,,,,,,81574,,, +305,B,,CNB,b,Cana Brava (GO),-13.5625,-48.208333,,0.2,,8980,233,151,,,,,,81564,,, +305,USA,,LST,b,Lone Star (TX),32.9375,-94.708333,,0.025,,7867,299,152,,,,,L1022 U1017 3.5s,87027,,, +305,AFS,,MH,b,Mafikeng (NW),-25.729167,25.541667,,0.1,,8854,163,153,,,,,L394 11.8s,81571,,, +305,USA,,ONO,b,Ontario (OR),44.020833,-117.041667,,0.025,,8033,321,153,,,,1,L1025 U1019 8.4s,81576,,, +305,MYA,,MW,b,Magway,20.165833,94.938056,,0.025,,8154,78,155,,,,,,22100029,,, +305,USA,,RO,b,Topan Roswell (NM),33.354167,-104.458333,,0.025,,8390,306,157,,,,983,L1050 U1019 6.0s,81579,,, +305,B,,YLH,b,Ilhus (BA),-14.8125,-39.041667,,0.025,,8629,225,158,,,,,,86341,,, +305,B,,BDA,b,Boca do Acre (AM),-8.895833,-67.458333,,0.025,,9711,252,162,,,,,,86336,,, +305,ARG,,C,b,Ministro Pistarini (ba),-34.8125,-58.541667,,0.08,,11532,230,163,,,,,7.7s,81562,,, +305,CHL,,SER,b,La Florida La Serena (Coquimbo) (CO),-29.895833,-71.208333,,0.1,,11810,242,163,,,,,,81581,,, +305,INS,,SP,b,Sei Pakning,1.354167,102.125,,0.025,,10278,85,164,,,,0,L794 U794 ,81582,,, +305,ICO,,CC,b,Cocos Keeling Isl. (WA),-12.145833,96.791667,,0.025,,11096,97,167,,,,,,81563,,, +305,AUS,,GTH,b,Griffith (NSW),-34.270833,146.041667,,0.5,,16258,74,171,,,,,U400 8s,81567,,, +305.7,ISL,,DA,b,Dalatangi,65.270833,-13.541667,,0.1,,1846,330,85,,,,733,L997 U974 ,81586,,, +306,I,,PAR,b,Parma (pr),44.8125,10.291667,,0.04,,860,159,80,,,,3,L1028 U1020 ,ID+2 gap,81588,, +306,HNG,,TPS,b,Tpisp (Pes),47.479167,19.458333,,0.025,,1067,114,84,,,,998,L1024 U1020 10.0s,81589,,, +306,FIN,,L,b,Jyvskyl,62.395833,25.708333,,0.025,,1618,38,89,,,,0,L402 U408 ,81587,,, +306,GRL,,GN,b,Qeqertarsuaq=Godhavn (qaa-qeq),69.229167,-53.541667,,0.025,,3571,325,109,,,,,,87029,,, +306,CAN,,R4,b,Primrose (AB),55.395833,-111.125,,0.025,,6757,325,141,,,,,,87031,,, +306,USA,,MKO,b,Muskogee (OK),35.604167,-95.291667,,0.025,,7674,301,150,,,,,L1070 U~1024 ,87030,,, +306,CHN,,WX,b,Changshengqiao (CQ),29.520833,106.625,,0.025,,8106,64,154,,,,,U1026 ,81590,,, +306.5,F,,AV,b,Avord (18),46.895833,2.958333,,0.025,,631,205,79,,,,-306.5,U7 23.0s,ID+18 tone,81591,, +306.5,RUS,,MV,b,Morzhovskiy,66.729167,42.458333,,0.025,,2547,37,98,,,,-306.5,,81592,,, +306.5,RUS,,SC,b,Sosnovetskiy / Ostrov Sosnovets,66.479167,41.708333,,0.025,,2506,37,98,,,,-306.5,,81594,,, +306.5,RUS,,OK,b,Ostrov Kolguyev,69.520833,49.125,,0.025,,2914,33,102,,,,-306.5,,81593,,, +307,LUX,,DIK,b,Diekirch (die),49.854167,6.125,,0.025,,252,185,75,,,,,U1020 9.8s,81595,,, +307,RUS,,VA,b,Dobrinskoye,56.270833,40.625,,0.025,,2249,65,95,,,,,L1029 ,81606,,, +307,GRC,,THR,b,Santorini/Thira (seg-kik),36.395833,25.458333,,0.025,,2300,132,96,,,,,L500 ,ID+7 gap,81605,, +307,RUS,,LA,b,Lazarevskoye (KD),43.9375,39.291667,,0.025,,2582,97,99,,,,12,L850 U874 ,IDx2 + 5 gap,81598,, +307,RUS,,MA,b,Lebyazhye,50.1875,45.208333,,0.025,,2682,79,100,,,,,U1020 ,81600,,, +307,RUS,,NB,b,Lebyazhe,50.1875,45.208333,,0.025,,2682,79,100,,,,,,81603,,, +307,ISR,,JYG,b,Jericho,31.854167,35.458333,,0.025,,3252,122,105,,,,0,L1023 U1023 ,Cont. ID,81597,, +307,CAN,,M5,b,Manning (AB),56.9375,-117.625,,0.025,,6862,329,142,,,,,U396 10.18s,DAID,81599,, +307,USA,,LUX,b,Laurens (SC),34.520833,-81.958333,,0.025,,6950,292,142,,,,,U1030 ,87034,,, +307,CAN,,G,b,Sand Heads Light Station (BC),49.104167,-123.291667,,0.025,,7799,328,151,,,,,U400 ,DA3ID,87033,, +307,IND,,TR,b,Tiruchirapalli (TN),10.749722,78.688333,,0.025,,7859,97,152,,,,,,32200045,,, +307,CHN,,SL,b,Maguohe,25.4375,103.291667,,0.025,,8249,69,155,,,,,,86342,,, +307,CLM,,EJA,b,Barrancabermeja (sat),7.020833,-73.791667,,0.025,,8723,267,159,,,,,,81596,,, +307,USA,,AV,b,Avalon Harbor / Santa Catalina (CA),33.354167,-118.291667,,0.025,,9101,316,160,,,,,,87032,,, +307,AUS,,MJM,b,Manjimup (WA),-34.270833,116.125,,0.025,,14233,99,177,,,,,,81601,,, +307,FJI,,NA,b,Nausori (CE-NT),-18.0625,178.541667,,0.05,,16167,13,180,,,,,U1009 10.1s,81602,,, +307.5,E,,PA,b,Palma (PMI) (BAL-ML),39.604167,2.791667,,0.025,,1418,193,87,,,,-307.5,L1014,81607,,, +307.5,AFS,,RD,b,Rand (GT),-26.3125,28.125,,0.05,,8973,160,157,,,,500,L1118 U1118 10.1s,81608,,, +308,D,,DGPS Gro Mohrdorf,G,Klein Mohrdorf/Gnz (mev),54.374267,12.933819,,1,,502,57,62,,,,,,2000034,,, +308,MNE,,MOJ,b,Mojkovac (MK),42.9375,19.541667,,0.04,,1414,131,85,,,,1,L1005 U1031 10.0s,ID+5 tone,81616,, +308,BLR,,G,b,Minsk 2 (MI),53.854167,28.041667,,0.025,,1455,74,88,,,,,L1020 ,81611,,, +308,BLR,,V,b,Minsk 2 (MI),53.854167,28.041667,,0.025,,1455,74,88,,,,,U1022 6.2s,81624,,, +308,RUS,,QE,b,Sankt-Peterburg/Rzhevka (SP),59.979167,30.625,,0.025,,1725,50,90,,,,,,81622,,, +308,ISL,,GR,b,Grmsey (ne),66.520833,-17.958333,,0.025,,2089,329,94,,,,,U900 60.0s,IDx4 + 24 tone,81612,, +308,RUS,,L,b,Izhevsk (UD),56.854167,53.458333,,0.025,,3022,61,103,,,,,U1035 ,81614,,, +308,RUS,,M,b,Izhevsk (UD),56.8125,53.458333,,0.025,,3023,61,103,,,,,,81615,,, +308,PAK,,PS,b,Peshawar (kpk),33.995556,71.504167,,0.025,,5452,85,127,,,,,U1011 ,81620,,, +308,USA,,DST,b,Desmet Missoula (MT),46.9375,-114.125,,0.2,,7637,321,140,,,,,,87037,,, +308,CAN,,L6,b,Yo-Yo (BC),58.9375,-121.458333,,0.025,,6807,332,141,,,,,,87040,,, +308,USA,,EQZ,b,Captain Seymour (IN),38.854167,-85.958333,,0.025,,6852,298,141,,,,,7137s,81609,,, +308,CAN,,E,b,Edmonton (AB),53.270833,-113.625,,0.025,,7043,325,143,,,,,,87038,,, +308,CAN,,ZZD,b,Calmar (Edmonton Intl Apt) (AB),53.270833,-113.625,,0.025,,7043,325,143,,,,,U397 10.69s,DAID,81626,, +308,USA,,EVZ,b,Cartersville (GA),34.1875,-84.875,,0.025,,7161,294,145,,,,,,81610,,, +308,USA,,BVG,b,Enterprise (AL),31.354167,-85.958333,,0.025,,7462,292,148,,,,,,87036,,, +308,USA,,HIL,b,Hilyn Great Bend (KS),38.354167,-98.875,,0.025,,7643,306,149,,,,,,87039,,, +308,CHN,,Q,b,Beijing/Capital (BJ),40.104167,116.375,,0.025,,7743,50,150,,,,,,81621,,, +308,J,,OK,b,Okinawa (kyu-oki),26.104167,127.625,,0.4,,9616,50,150,,,,0,L1020 U1020 ,DAID,81617,, +308,USA,,PFL,b,Post Fort Sill (OK),34.604167,-98.375,,0.025,,7938,303,152,,,,,L1040 ,81619,,, +308,USA,,UTS,b,Huntsville (TX),30.729167,-95.625,,0.028,,8112,298,154,,,,,U1024 4.8s,81623,,, +308,USA,,AE,b,Albuquerque (NM),35.229167,-106.708333,,0.025,,8343,309,156,,,,,,87035,,, +308,AUS,,OOD,b,Oodnadatta (SA),-27.5625,135.458333,,0.025,,15021,77,180,,,,,L1020 10s,81618,,, +308,AUS,,MK,b,Mackay (QLD),-21.145833,149.208333,,0.025,,15324,57,181,,,,,U1020 8s,86344,,, +308.5,RUS,,OK,b,Smolensk (SM),54.8125,32.041667,,0.025,,1713,70,90,,,,-308.5,,81628,,, +308.5,NOR,,HLN,b,Honningsvg / Helnes,71.0625,26.208333,,0.025,,2328,18,96,,,,-308.5,L308 U309 10.0s,81627,,, +309,D,,MW,b,Berlin / Schnefeld (brb),52.354167,13.375,,0.025,,475,84,78,,,,,L1024 U1020 ,81634,,, +309,F,,DO,b,Dole / Tavaux (39),46.979167,5.291667,,0.025,,576,188,79,,,,,U6 ,ID+15 tone,81630,, +309,S,,LG,b,Satens / Tune,58.4375,12.708333,,0.025,,808,27,81,,,,0,L402 U402 5.1s,81633,,, +309,ISR,,BGN,b,Tel Aviv / Ben Gurion (tav),32.020833,34.958333,,0.025,,3208,123,105,,,,,,81629,,, +309,IRN,,ISR,b,Iranshahr (sib),27.229167,60.708333,,0.025,,5246,100,125,,,,,U1037 ,ID+8 gap,81632,, +309,USA,,EEX,b,Emanuel Co Swainsboro (GA),32.6875,-82.458333,,0.025,,7130,291,144,,,,2,L1017 U1019 4097s,81631,,, +309,CAN,,J,b,Race Rocks Light Station (BC),48.3125,-123.541667,,0.1,,7885,327,146,,,,,U400 ,DA3ID,87041,, +309.5,UKR,,OD,b,Odesskiy Lt. (OD),46.395833,30.708333,,0.025,,1864,100,92,,,,-309.5,,81637,,, +309.5,UKR,,WR,b,Vorontsovskiy Front Lt. (OD),46.520833,30.791667,,0.025,,1863,100,92,,,,-309.5,,81641,,, +309.5,UKR,,TR,b,Mys Tarkhankutskiy Lt.,45.354167,32.541667,,0.025,,2045,101,93,,,,-309.5,,81639,,, +309.5,UKR,,EYA,b,Mys Yevpatoriyskiy,45.15,33.27,,0.025,,2105,101,94,,,,-309.5,U6,81636,,, +309.5,UKR,,SW,b,Mys Khersones Lt.,44.5625,33.375,,0.025,,2147,102,94,,,,-309.5,,81638,,, +309.5,RUS,,UR,b,Mys Chernyy,68.354167,38.625,,0.025,,2480,31,98,,,,-309.5,,81640,,, +310,SVK,,DBV,b,Dubov (ZA),48.854167,18.791667,,2,,946,108,63,,,,15,L1058 U1081 6.0s,ID+8 gap,81650,, +310,XOE,,TRL,b,Troll Platform,60.645833,3.708333,,0.025,,963,351,83,,,,0,L402 U405 ,81661,,, +310,FIN,,KUR,b,Kuopio / Kurki,62.9375,27.875,,0.025,,1743,38,90,,,,1,L406 8.5s,81653,,, +310,RUS,,BU,b,Smolensk (SM),54.854167,32.041667,,0.025,,1713,70,90,,,,,,81647,,, +310,RUS,,OK,b,Smolensk (SM),54.854167,32.041667,,0.025,,1713,70,90,,,,,L1044 15.0s,IDx2,81656,, +310,UKR,,BI,b,Kiev / Boryspil (KY),50.395833,30.875,,0.025,,1705,87,90,,,,,L1036 ,81646,,, +310,UKR,,NO,b,Kiev / Borispol (KY),50.270833,30.875,,0.025,,1709,87,90,,,,,L1023 ,ID+6 gap,81655,, +310,E,,AMN,b,Almera (AND-AL),36.854167,-2.375,,0.025,,1831,206,91,,,,59,L1010 U1010 ,ID+8 gap,81645,, +310,FIN,,C,b,Oulu,64.9375,25.375,,0.025,,1787,30,91,,,,2,L410 U414 ,81648,,, +310,S,,A,b,Gllivare,67.145833,20.875,,0.025,,1849,20,91,,,,,,81643,,, +310,CNR,,LZ,b,Lanzarote (LPM-LA),28.9375,-13.625,,0.3,,3061,220,93,,,,,U1011 14.5s,ID+11 gap,81654,, +310,ISL,,SB,b,Selardalur,65.770833,-23.958333,,0.025,,2271,324,96,,,,,L1038 9.6s,ID+7 gap,81658,, +310,TUR,,SIV,b,Sivas (ica-siv),39.770833,36.875,,0.025,,2697,108,100,,,,998,L1025 U1022 ,ID+5 gap,81659,, +310,LBY,,VA,b,Amal V12 (wah),29.479167,21.041667,,0.025,,2790,149,101,,,,0,L400 U400 ,ID+2 gap,81664,, +310,IRN,,GGN,b,Gorgan (gsn),36.895833,54.375,,0.025,,4071,95,114,,,,,L1021 ,ID+4 gap,81651,, +310,MTN,,AA,b,Aioun El Atrouss,16.6875,-9.625,,0.025,,4184,206,115,,,,,,81644,,, +310,TJK,,PR,b,Oktyabrsky (ntc),38.533056,68.401667,,0.025,,4912,82,122,,,,,,34200006,,, +310,CAN,,8A,b,Carlyle (SK),49.645833,-102.291667,,0.025,,6862,316,142,,,,,U1015 ,DAID,81642,, +310,CUB,,UOC,b,Cayo Coco (ca),22.4375,-78.291667,,0.025,,7705,280,150,,,,,,81663,,, +310,B,,CN,b,Canivete (PA),0.520833,-50.375,,0.025,,7773,243,151,,,,,L1014 U1030 7.3s,81649,,, +310,B,,SW,b,Santa Marta (SC),-28.604167,-48.791667,,0.5,,10455,226,152,,,,,,81660,,, +310,B,,PSN,b,Pirassununga (SP),-21.979167,-47.375,,0.2,,9746,228,153,,,,,,81657,,, +310,MYA,,DWI,b,Dawei,14.115278,98.202778,,0.025,,8894,80,159,,,,,,22100017,,, +310,B,,MCL,b,Montes Claros (MG),-16.6875,-43.791667,,0.025,,9049,228,160,,,,,,86345,,, +310,ARG,,Z,b,Cataratas del Igauz (mn),-25.729167,-54.458333,,0.025,,10475,232,165,,,,,7s,86348,,, +310,NZL,,HK,b,Hokitika,-42.729167,170.958333,,0.25,,18459,54,181,,,,,L1020 4s,81652,,, +310.5,EGY,,DA,b,Damietta Mouth East (dyt),31.520833,31.875,,0.025,,3082,128,104,,,,-310.5,,81665,,, +311,D,,LMA,b,Lima / Brggen (nrw),51.354167,6.375,,0.025,,84,182,50,,,,999,L1021 U1015 10.1s,81678,,, +311,D,,CEL,b,Celle (nds),52.604167,10.125,,0.025,,258,76,76,,,,0,L1020 U1020 ,81669,,, +311,D,,NSN,b,Niederstetten (bw),49.395833,9.958333,,0.025,,392,139,77,,,,,L1038 U1020 ,ID+12 tone,81679,, +311,GRC,,KOS,b,Kos/Ippokratis (seg-dod),36.8125,27.125,,0.025,,2349,128,96,,,,998,L1025 U1020 ,ID+12 gap,81677,, +311,RUS,,BV,b,Elista (KX),46.354167,44.375,,0.025,,2796,88,101,,,,,,81668,,, +311,IRN,,ILM,b,Ilam (ilm),33.604167,46.375,,0.025,,3783,107,111,,,,996,L1051 U1052 ,Cont. ID,81676,, +311,CAN,,HY,b,Hay River (NT),60.770833,-115.708333,,0.025,,6454,331,138,,,,,,81675,,, +311,USA,,DVK,b,Goodall Danville (KY),37.5625,-84.791667,,0.025,,6884,296,142,,,,0,L1018 U1025 6.11s,81671,,, +311,CAN,,9Y,b,Pincher Creek (AB),49.520833,-113.958333,,0.05,,7395,322,144,,,,,U393 10.5s,DAID,81666,, +311,USA,,FET,b,Fremont (NE),41.4375,-96.541667,,0.025,,7252,306,145,,,,,U1005 ,81673,,, +311,USA,,AFT,b,Fort Smith (AR),35.3125,-94.458333,,0.025,,7650,301,149,,,,,,87042,,, +311,USA,,GK,b,Jembo Fort Smith (AR),35.3125,-94.458333,,0.025,,7650,301,149,,,,0,L1036 U1031 7.0s,81674,,, +311,USA,,MVI,b,Monte Vista (CO),37.520833,-106.041667,,0.025,,8102,310,154,,,,,U1040 6.0s,87044,,, +311,USA,,BFE,b,Brownfield (TX),33.1875,-102.208333,,0.025,,8280,305,156,,,,,U1015 6.9s,81667,,, +311,PNR,,TBG,b,Panama City (Isla de Taboga) (pnm),8.770833,-79.541667,,0.025,,8963,272,160,,,,,3.0/10.17s,81680,,, +311,AUS,,NTN,b,Normanton (QLD),-17.6875,141.041667,,0.025,,14523,63,178,,,,,U1023 9s,86349,,, +311,AUS,,CFS,b,Coffs Harbour (NSW),-30.3125,153.125,,0.05,,16379,61,181,,,,,L400 U400 8s,81670,,, +311,AUS,,CH,b,Coffs Harbour (NSW),-30.3125,153.125,,0.05,,16379,61,181,,,,,L400 U400 9.0s,87043,,, +311,AUS,,EDN,b,Edinburgh (SA),-34.6875,138.625,,0.025,,15794,82,182,,,,,U1034 10s,TWEB,81672,, +311.5,POL,,ML,b,Cewice,54.395833,17.791667,,0.025,,798,67,81,,,,504,L1012 U1010 5.9s,ID+6 gap,81681,, +312,SUI,,MUR,b,Muri for Bern / Belp (be),46.9375,7.458333,,0.025,,580,172,79,,,,0,L400 U400 ,81688,,, +312,S,,KBG,b,Karlsborg (vg),58.479167,14.375,,0.025,,868,32,82,,,,0,L400 U398 ,81686,,, +312,I,,TAQ,b,Tarquinia (vt),42.229167,11.708333,,0.025,,1169,158,85,,,,2,L1017 U1023 ,ID+4.5 gap,81690,, +312,S,,DJ,b,stersund/Froson,63.1875,14.375,,0.025,,1317,18,86,,,,,L402 U403 6.1s,81685,,, +312,MNE,,DAN,b,Danilvograd for Podgorica (DG),42.5625,19.125,,0.025,,1426,133,87,,,,995,L949 U947 10.0s,ID+7 tone,81684,, +312,BUL,,BOZ,b,Bozhurishte (sof),42.770833,23.208333,,0.025,,1629,123,89,,,,10,L1029 U1040 8.1s,ID+3 gap,81683,, +312,RUS,,S,b,Shenkursk,62.104167,42.875,,0.025,,2423,49,97,,,,,,81689,,, +312,RUS,,XT,b,Ryazanskaya (RY),44.979167,39.541667,,0.025,,2539,95,98,,,,3,L396 U402 ,ID+7 gap,81693,, +312,LBN,,BAB,b,Beirut International (bei),33.854167,35.458333,,0.025,,3078,120,104,,,,,U1030 ,ID+4 gap,81682,, +312,CAN,,L5,b,Spirit River (AB),55.770833,-118.791667,,0.05,,7010,329,140,,,,,U1020 ,87045,,, +312,CAN,,UNT,b,Naramata (Penticton) (BC),49.604167,-119.625,,0.025,,7614,326,149,,,,,U409 10.0s,DAID,81692,, +312,B,,UI,b,Chu (RS),-33.729167,-53.375,,0.5,,11168,227,154,,,,,,81691,,, +312,MYA,,MS,b,Mong-Hsat,20.534167,99.2625,,0.025,,8410,75,157,,,,,,22100032,,, +312,TWN,,MR,b,Kueijen (TN),22.979167,120.291667,,0.025,,9502,58,161,,,,,4s,81687,,, +312.5,UKR,,AT,b,Mys Aytodorskiy,44.270833,34.041667,,0.025,,2209,102,95,,,,-312.5,,IDx4 + tone,81695,, +312.5,RUS,,VR,b,Mys Zheleznyy Rog,45.104167,36.708333,,0.025,,2340,97,96,,,,-312.5,,81701,,, +312.5,RUS,,AP,b,Mys Anapskiy,44.895833,37.291667,,0.025,,2391,97,97,,,,-312.5,,81694,,, +312.5,RUS,,DB,b,Doobskiy / Mys Doob,44.645833,37.875,,0.025,,2445,97,97,,,,-312.5,,IDx5 + tone,81698,, +312.5,RUS,,SW,b,Mys Syatonosskiy,68.145833,39.791667,,0.025,,2510,32,98,,,,-312.5,,81700,,, +312.5,SYR,,KML,b,Qamishli (has),37.020833,41.208333,,0.025,,3182,108,105,,,,500,L395 U395 ,ID+6 gap,81699,, +313,AUT,,AB,b,Innsbruck / Absam,47.270833,11.541667,,0.025,,652,144,79,,,,2,L1021 U1020 10.0s,81702,,, +313,AUT,,KI,b,Klagenfurt,46.645833,14.375,,0.025,,837,133,81,,,,2,L1021 U1021 ,81704,,, +313,HNG,,NT,b,Kecskemt/Titan (BaK),46.9375,19.708333,,0.025,,1116,116,84,,,,,,IDx2,81705,, +313,HNG,,TN,b,Kecskemt/Titan (BaK),46.895833,19.791667,,0.025,,1124,116,84,,,,,U1015 15.0s,IDx2 + 4 gap,81708,, +313,UKR,,G,b,Uzhgorod (ZH),48.645833,22.208333,,0.025,,1182,103,85,,,,,,81703,,, +313,GTM,,RBN,b,Rabinal (bvp),15.020833,-90.458333,,0.025,,9154,285,160,,,,,,81707,,, +313.5,D,,DGPS Mauken (Elbe),G,Mauken (san),51.718875,12.823531,,1,,442,93,61,,,,-313.5,,2000035,,, +314,BEL,,OZ,b,Brussels National (bru),50.8125,4.458333,,0.025,,198,224,75,,,,691,L402 U397 10.0s,DAID,81716,, +314,GRC,,FIS,b,Fiska (cmc-kil),41.104167,22.958333,,0.025,,1752,128,90,,,,998,L400 U400 ,ID+10 gap,81711,, +314,GRC,,KRC,b,Karpathos (seg-dod),35.4375,27.125,,0.025,,2473,130,98,,,,,L1025 ,ID+12 gap,81715,, +314,GRL,,GH,b,Nuuk=Godthb (Kitaa) (sms-nuk),64.1875,-51.708333,,0.025,,3514,315,108,,,,0,L405 U402 ,81713,,, +314,CAN,,ZN,b,Portage La Prairie CFB (MB),49.770833,-98.041667,,0.32,,6646,314,128,,,,,U1020 ,87050,,, +314,CAN,,4J,b,Knee Lake (MB),54.895833,-94.791667,,0.05,,6089,316,131,,,,,U387 10.0s,DAID,81709,, +314,CAN,,YN,b,Swift Current (SK),50.270833,-107.708333,,0.1,,7058,319,138,,,,,,87049,,, +314,CAN,,H,b,Langara Island Light Station (BC),54.270833,-133.041667,,0.15,,7606,336,141,,,,,U400 ,DA3ID,87048,, +314,USA,,POH,b,Pocahontas (IA),42.729167,-94.625,,0.025,,7040,306,143,,,,,,81717,,, +314,ALS,,SPY,b,Saint Paul Island (AK),57.145833,-170.208333,,0.15,,7862,358,144,,,,,U1022 ,81719,,, +314,USA,,EIW,b,Libourne / New Madrid County (MO),36.520833,-89.625,,0.025,,7262,298,146,,,,,U1015 ,87046,,, +314,USA,,VTN,b,Valentine (NE),42.854167,-100.541667,,0.025,,7348,310,146,,,,,U1025 5.45s,81720,,, +314,USA,,CVY,b,Cavalry Fort Riley (KS),39.020833,-96.791667,,0.025,,7470,305,148,,,,,U1031 8033s,81710,,, +314,USA,,GGU,b,Prague (OK),35.520833,-96.708333,,0.025,,7763,302,151,,,,,U1019 5.6s,81712,,, +314,USA,,F,b,Farallon Island Light Station (CA),37.6875,-122.958333,,0.15,,8892,322,152,,,,,U1010 ,87047,,, +314,CHN,,HZ,b,Tianmen (HU),30.645833,113.125,,0.025,,8396,58,157,,,,,,81714,,, +314,NZL,,RD,b,Miranda,-37.1875,175.291667,,0.025,,18142,32,190,,,,,4.06s,81718,,, +314.5,D,,DGPS Bad Abbach (Donau),G,Gundelshausen Schleuse (bay),48.947078,12.013356,,0.2,,529,129,69,,,,-314.5,,2000036,,, +314.5,FIN,,DGPS605,b,Marjaniemi (pp),65.039611,24.560694,,0.025,,1768,29,91,,,,-314.5,tx ID: 405,2600004,,, +315,D,,PAH,b,Parchim (mev),53.395833,11.625,,0.025,,379,66,77,,,,995,L1022 U1021 ,ID+6 gap,81741,, +315,F,,HOL,b,Villacoublay / Vlizy (78),48.729167,1.791667,,0.025,,498,223,78,,,,,U4 19.8s,ID+14 tone,81731,, +315,AUT,,TF,b,Trausdorf / Wiener Neustadt East,47.854167,16.291667,,0.025,,849,120,81,,,,0,L1044 U1041 10.2s,81748,,, +315,F,,MIL,b,Millau / Larzac (12),43.9375,3.208333,,0.025,,939,196,82,,,,,U4 20.0s,ID+15 tone,81736,, +315,I,,SPO,b,Marina di Ravenna (ra),44.479167,12.291667,,0.025,,953,151,83,,,,6,L1020 U1032 ,ID+4 gap,81747,, +315,UKR,,LO,b,Lviv (LV),49.854167,23.875,,0.025,,1245,95,85,,,,0,L1009 U1011 ,IDx2 +5 gap,81734,, +315,UKR,,LV,b,Lviv (LV),49.8125,23.958333,,0.025,,1252,95,85,,,,2,L1036 U1040 ,IDx2 + 6 gap,81735,, +315,FIN,,D,b,Tampere / Pirkkala / ijl,61.395833,23.541667,,0.025,,1460,38,88,,,,,L412 U412 4.1s,81724,,, +315,FIN,,Q,b,Kajaani / Rmpsl,64.270833,27.625,,0.025,,1820,34,91,,,,0,L405 U408 4.2s,81743,,, +315,RUS,,M,b,Girvas,62.479167,33.791667,,0.025,,1985,44,93,,,,,L398 U402 ,ID+3 gap,86353,, +315,MRC,,FEZ,b,Fes / Saiss,33.895833,-4.958333,,0.025,,2220,209,95,,,,0,L1020 U1020 10.06s,81727,,, +315,RUS,,RG,b,Tunosha (YA),57.5625,40.208333,,0.025,,2222,61,95,,,,0,L1020 U1021 ,81745,,, +315,TUR,,EN,b,Izmir / Adnan Merendes (ege-izm),38.270833,27.125,,0.025,,2222,126,95,,,,,U1020 ,Cont. ID,81726,, +315,TUR,,GBI,b,Ankara / Esenboga / Golbasi (ica-ank),39.729167,32.791667,,0.025,,2440,114,97,,,,,U1060 ,Cont. ID,81729,, +315,RUS,,CK,b,Kusshevskaya (KD),46.520833,39.541667,,0.025,,2457,91,98,,,,,15.5s,IDx2 + 4 gap,81723,, +315,RUS,,MYU,b,Kusshevskaya (KD),46.520833,39.541667,,0.025,,2457,91,98,,,,,,IDx2 + 6 gap,81737,, +315,RUS,,G,b,Astrakhan / Narimanovo (AS),46.270833,48.041667,,0.025,,3050,86,103,,,,,,81728,,, +315,KAZ,,TY,b,Atyrau (aty),47.145833,51.791667,,0.025,,3260,81,106,,,,,U394 10.0s,ID+7 gap,81750,, +315,KAZ,,YR,b,Atyrau (aty),47.0625,51.875,,0.025,,3270,81,106,,,,,U400 10.0s,ID+6 gap,81753,, +315,RUS,,TM,b,Roschino / Tyumen (TY),57.229167,65.375,,0.025,,3712,57,110,,,,,U381 ,81749,,, +315,B,,BL,b,Salinpolis (PA),-0.604167,-47.375,,0.5,,7699,240,137,,,,,L1006 U1050 6.9s,81722,,, +315,USA,,AT,b,Bruny Dayton (OH),39.854167,-84.375,,0.025,,6677,298,140,,,,998,L1023 U1020 8.59s,81721,,, +315,CLM,,UPI,b,Barranca de Upa (met),4.5625,-72.958333,,1,,8882,264,143,,,,,,81752,,, +315,CAN,,M,b,Sisters Islets Light Station (BC),49.479167,-124.458333,,0.1,,7805,329,145,,,,,U400 ,DA3ID,87051,, +315,B,,IH,b,Ilha Rasa (RJ),-23.0625,-43.125,,0.5,,9641,225,149,,,,,,81732,,, +315,CUB,,UBR,b,Cayo Las Brujas (ss),22.604167,-79.125,,0.025,,7747,281,150,,,,975,L1017 U1044 4750s,81751,,, +315,CUB,,USR,b,Ciego de vila (ca),21.729167,-78.791667,,0.025,,7798,280,151,,,,,,87052,,, +315,AFS,,PJ,b,Port St Johns (EC),-31.645833,29.541667,,0.25,,9582,160,152,,,,,U1027 8.52s,81742,,, +315,CLN,,CNL,b,Bandaranaike Intl (gmp),7.268333,79.950833,,0.025,,8250,99,155,,,,,,34700019,,, +315,B,,ORH,b,Ourinhos (SP),-22.979167,-49.875,,0.1,,9971,230,157,,,,,,81740,,, +315,TWN,,NK,b,Nangan (LC),26.151389,119.954444,,0.025,,9192,56,160,,,,,6.5s,81738,,, +315,ARG,,L,b,El Palomar (ba),-34.604167,-58.625,,0.08,,11518,230,163,,,,,1.7s,81733,,, +315,WAL,,HO,b,Wallis (wal),-13.229167,-176.208333,,0.025,,15685,4,182,,,,,20.0s,81730,,, +315.5,EGY,,KAB,b,Ras El Nakab (sin),29.604167,34.708333,,0.025,,3412,126,107,,,,-315.5,10.0s,81754,,, +315.5,EGY,,TAB,b,Taba (sin),29.604167,34.708333,,0.025,,3412,126,107,,,,-315.5,,81756,,, +315.5,EGY,,TBA,b,Taba (sin),29.604167,34.708333,,0.025,,3412,126,107,,,,-315.5,U1020 ,81757,,, +316,XOE,,CP,b,Amoco Leman,53.0625,2.208333,,0.025,,303,292,76,,,,,,86358,,, +316,XOE,,PA,b,Shell / Esso Leman Platform,53.0625,2.041667,,0.025,,313,291,76,,,,986,L420 U404 3.9s,81769,,, +316,DNK,,IN,b,Snderborg (sdk),55.020833,9.708333,,0.025,,390,33,77,,,,983,L435 U400 8.0s,81763,,, +316,XOE,,MUK,b,Conoco / Murdoch,54.270833,2.291667,,0.025,,365,313,77,,,,,L401 U390 6.0s,86360,,, +316,G,,EPM,b,Epsom for Heathrow (EN-SUR),51.3125,-0.375,,0.025,,476,262,78,,,,995,L405 U391 5.6s,81761,,, +316,IRL,,OE,b,Dublin (D),53.4375,-6.458333,,0.025,,877,285,82,,,,3,L399 U400 8.4s,81768,,, +316,NOR,,BGU,b,Bergerud,59.854167,11.291667,,0.025,,912,17,82,,,,3,L375 U382 ,81758,,, +316,G,,BRR,b,Barra (SC-WIL),57.020833,-7.458333,,0.025,,1045,307,83,,,,983,L431 U372 6.0s,81760,,, +316,HRV,,TNJ,b,Tounj (ka),45.270833,15.375,,0.025,,1004,136,83,,,,7,L1038 U1041 ,ID+5 gap,81773,, +316,I,,TEA,b,Teano (ce),41.3125,13.958333,,0.025,,1330,152,86,,,,0,L1046 U1043 8.0s,ID+5 gap,81772,, +316,SRB,,JA,b,Beograd/Jajinci (Srb-gbg),44.742917,20.4753,,0.025,,1318,123,86,,,,2,L1020 U1028 ,ID+6 gap,81764,, +316,ISL,,RE,b,Reykjanesskoli,65.9375,-22.458333,,0.025,,2220,325,95,,,,,U1030 6.0s,81770,,, +316,NOR,,BJO,b,Bjrnya / Bear Isl (bj),74.520833,19.125,,0.05,,2558,9,96,,,,2,L397 U401,81759,,, +316,KWT,,MG,b,Madinat al-Kuwayt (kuw),29.145833,48.041667,,0.025,,4254,110,116,,,,,,81766,,, +316,USA,,M,b,South Pass (LA),28.979167,-89.125,,0.15,,7861,293,144,,,,,,87053,,, +316,USA,,FF,b,Pecat Peachtree City (GA),33.3125,-84.458333,,0.025,,7206,293,145,,,,,L1003 5121s,81762,,, +316,USA,,MII,b,Caddo Mills (TX),33.020833,-96.208333,,0.025,,7949,300,152,,,,0,L1015 U1014 3.8s,81767,,, +316,THA,,MS,b,Mae Sot ,16.701667,98.539722,,0.025,,8693,78,159,,,,,,32900030,,, +316,THA,,SM,b,Samui (stn),9.5625,100.041667,,0.025,,9416,81,161,,,,,,81771,,, +316,MHL,,MAJ,b,Majuro Atoll (Dalap Island),7.0625,171.291667,,0.025,,13280,17,174,,,,2,L987 U1042 8.6s,81765,,, +317,F,,VS,b,Valenciennes / Denain (59),50.354167,3.375,,0.025,,288,228,76,,,,,L405 U406 10.0s,ID+8 gap,81793,, +317,XOE,,LEA,b,Leman 27A / Perenco UK Ltd Platform,53.0625,2.208333,,0.025,,303,292,76,,,,,L404 ,81784,,, +317,F,,MM,b,Montceau-les-Mines (71),46.604167,4.291667,,0.025,,631,195,79,,,,,U42 ,DAID,81785,, +317,SVK,,PPD,b,Poprad / Tatry (PO),49.0625,20.375,,0.025,,1041,103,83,,,,7,L1050 U1036 ,ID+3 gap,81787,, +317,EST,,OZ,b,Kardla (Hii),58.9375,22.875,,0.025,,1279,47,86,,,,6,L1018 U1077 ,81786,,, +317,NOR,,HG,b,Hegra,63.479167,11.041667,,0.025,,1293,10,86,,,,2,L387 U394 6.0s,81778,,, +317,NOR,,STT,b,Bod/Stott (no),66.9375,13.458333,,0.025,,1693,11,90,,,,5,L381 U389 ,81790,,, +317,RUS,,MU,b,Moskva/Gorodskaya Klinicheskaya Bolnitsa (MV),55.729167,37.458333,,0.025,,2054,66,94,,,,,,86362,,, +317,LBY,,STF,b,Twenty Nine Charly (srt),29.729167,17.958333,,0.025,,2663,155,100,,,,998,L1045 U1040 ,ID+2 gap,81789,, +317,CNR,,TES,b,Tenerife Sur / Reina Sofia (STC-TF),28.0625,-16.541667,,0.025,,3281,224,106,,,,,L1027 U1064 16.3s,81791,,, +317,LBY,,KFR,b,Al-Kufrah (kfr),24.229167,23.291667,,0.025,,3414,149,107,,,,0,L1029 U1026 ,ID+5 gap,81783,, +317,IRN,,HAM,b,Hamadan (hmd),34.520833,48.291667,,0.025,,3838,104,111,,,,995,L1031 U1031 4.4s,Cont. ID,81777,, +317,CAN,,ZMX,b,Janvier / Mirabel (Montreal) (QC),45.729167,-73.958333,,0.2,,5609,297,120,,,,,U421 10.0s,DAID,81794,, +317,CAN,,VC,b,La Ronge (SK),55.104167,-105.291667,,0.5,,6543,322,125,,,,983,L410 U372 10.0s,DAID,81792,, +317,CAN,,I,b,Montral/Mirabel (QC),45.729167,-73.958333,,0.025,,5609,297,129,,,,,,87056,,, +317,CAN,,ZZR,b,Trenton (Apt) Severn (ON),44.0625,-77.625,,0.05,,5950,297,129,,,,986,L1032 U1007 9213s,DAID,81795,, +317,CAN,,R,b,Trenton (ON),44.0625,-77.625,,0.025,,5950,297,132,,,,,,87058,,, +317,USA,,CBE,b,Cumberland (MD),39.645833,-78.708333,,0.025,,6345,294,136,,,,1,L1017 U1019 5373s,81774,,, +317,USA,,IN,b,Reeno Winston Salem (NC),36.0625,-80.208333,,0.025,,6717,292,140,,,,996,L1037 U1033 5793s,81780,,, +317,CAN,,A5,b,Chinchaga (AB),57.5625,-119.125,,0.025,,6857,330,142,,,,,,87054,,, +317,USA,,MBT,b,Murfreesboro (TN),35.9375,-86.375,,0.025,,7112,296,144,,,,,,87057,,, +317,USA,,EVU,b,Emville Maryville (MO),40.354167,-94.875,,0.025,,7250,305,145,,,,0,L1022 U1022 ,81775,,, +317,USA,,FTT,b,Guthrie Fulton (MO),38.854167,-92.041667,,0.025,,7212,302,145,,,,,U1020 ,81776,,, +317,USA,,INY,b,Independence County Batesville (AR),35.6875,-91.791667,,0.028,,7460,299,147,,,,,U1020 ,81781,,, +317,USA,,CVP,b,Capitol Helena (MT),46.604167,-111.958333,,0.025,,7573,319,149,,,,,,87055,,, +317,USA,,IBM,b,Kimball (NE),41.1875,-103.708333,,0.025,,7656,311,150,,,,0,L1015 U1015 ,81779,,, +317,COM,,HA,b,Prince Said Abrahim,-11.515,43.276667,,0.025,,7906,142,152,,,,,,10000003,,, +317,USA,,K,b,Ediz Hook Port Angeles (WA),48.145833,-123.375,,0.025,,7895,327,152,,,,,U1020 ,DA25ID,81782,, +317,CHN,,BH,b,Gaoyao,23.0625,112.458333,,0.025,,9029,63,160,,,,,,86361,,, +317,AUS,,RTI,b,Rottnest Island (WA),-32.020833,115.541667,,0.025,,14021,98,176,,,,,,81788,,, +317.5,I,,TRP,b,Marsala (tp),37.895833,12.458333,,0.025,,1649,161,89,,,,500,L1015 U1022 7.5s,ID+3 gap,81796,, +318,D,,HIG,b,Bremen (bre),53.020833,8.541667,,0.025,,176,54,75,,,,0,L1016 U1017 ,ID+1 gap,81808,, +318,LUX,,LE,b,Luxembourg-Est (lux),49.645833,6.291667,,0.025,,274,182,76,,,,0,L1025 U1038 ,ID+8 gap,81810,, +318,D,,AGB,b,Augsburg (bay),48.4375,10.958333,,0.025,,521,140,78,,,,0,L1025 U1019 ,81798,,, +318,G,,BPL,b,Blackpool (EN-LNC),53.770833,-3.041667,,0.025,,659,290,80,,,,,L376 U425 ,ID+3.5 gap,86364,, +318,S,,LP,b,Ronneby / Kallinge,56.354167,15.291667,,0.025,,745,47,80,,,,2,L401 U403 5.2s,81811,,, +318,F,,BE,b,Bordeaux / Mrignac (33),44.854167,-0.375,,0.025,,948,214,82,,,,,U3 20.2s,ID+16 tone,81801,, +318,HNG,,CP,b,Ppa/Prduc (Ves),47.4375,17.458333,,0.025,,947,119,82,,,,,L992 U992 29.5s,IDx2 + 18 gap,81804,, +318,I,,GEN,b,Genova (ge),44.4375,9.041667,,0.025,,875,166,82,,,,2,L1021 U1019 10.0s,ID+7 gap,81807,, +318,MDR,,MAD,b,Funchal (md),32.729167,-16.708333,,2,,2846,230,82,,,,0,L1024 U1021 7.06s,81812,,, +318,HNG,,PC,b,Ppa/Prduc (Ves),47.3125,17.541667,,0.025,,960,119,83,,,,993,L1045 U1041 30.0s,IDx2 + 18 gap,81815,, +318,HRV,,KLP,b,Dubrovnik / Kolocep (du),42.6875,18.041667,,0.05,,1362,136,84,,,,0,L1026 U1035 8.0s,ID+4 gap,81809,, +318,FIN,,B,b,Pori (st),61.479167,21.791667,,0.025,,1394,36,87,,,,998,L400 U407 4.2s,81800,,, +318,ROU,,OTR,b,Bucuresti / Otopeni (BU),44.604167,26.208333,,0.025,,1676,112,90,,,,990,L1037 U1041 ,ID+1 gap,81814,, +318,NOR,,FOR,b,Hammerfest / Forsol (fi),70.729167,23.791667,,0.05,,2248,17,92,,,,,L318 U318 ,81806,,, +318,FIN,,A,b,Sodankyla,67.395833,26.625,,0.025,,2021,25,93,,,,2,L405 U408 ,81797,,, +318,KAZ,,AK,b,Astana / Akmola (ast),51.0625,71.541667,,0.025,,4346,65,116,,,,,,81799,,, +318,KAZ,,MO,b,Astana / Akmola (ast),50.979167,71.375,,0.025,,4340,65,116,,,,,,81813,,, +318,CAN,,5C,b,Cromer (MB),49.729167,-101.708333,,0.2,,6827,316,132,,,,,,87059,,, +318,USA,,HFY,b,Indianapolis / Greenwood (IN),39.645833,-86.125,,0.025,,6799,299,141,,,,,,87060,,, +318,ALS,,UT,b,Cape Decision LS (Kuiu Island) (AK),56.020833,-134.125,,0.025,,7459,337,148,,,,,U1010 ,87061,,, +318,BRU,,BR,b,Brunei (bmu),4.895833,114.875,,0.025,,10815,72,166,,,,1,L1020 U1027 7s,81803,,, +318,BRU,,EBR,b,Brunei (bmu),4.895833,114.875,,0.025,,10815,72,166,,,,0,L1020 U1020 ,81805,,, +318.5,RUS,,JW,b,Voronezh/Baltimor (VN),51.604167,39.125,,0.025,,2228,78,95,,,,529,L940 U997 7.3s,ID+3 gap,81816,, +318.5,RUS,,KA,b,Voronezh / Baltimor (VN),51.8125,39.208333,,0.025,,2228,78,95,,,,476,L1054 U1007 ,81817,,, +319,NOR,,VAR,b,Stavanger / Sola / Varhaug (ro),58.645833,5.625,,0.025,,728,356,80,,,,998,L400 U397 8.1s,ID+4 gap,81825,, +319,CZE,,C,b,Prerov (OL),49.395833,17.291667,,0.025,,822,107,81,,,,14,L1050 U1061 4.3s,ID+3 gap,81818,, +319,E,,ECV,b,Colmenar Viejo (MAD-M),40.6875,-3.791667,,0.05,,1488,215,85,,,,10,L1021 U1018 ,ID+3 gap,81819,, +319,FIN,,G,b,Halli / Laajakallio,61.9375,24.708333,,0.025,,1546,38,88,,,,5,L405 U415 ,81820,,, +319,ISL,,GF,b,Grof,64.145833,-21.958333,,0.025,,2106,320,94,,,,,U1028 ,81821,,, +319,ISL,,HJ,b,Akureyri/Hjalteyri (ne),65.854167,-18.208333,,0.025,,2053,327,94,,,,,U1015 7.0s,81822,,, +319,TUR,,MUS,b,Mus (dad-mus),38.729167,41.625,,0.025,,3083,105,104,,,,,L1088 ,Cont. ID,81823,, +320,D,,HA,b,Hannover / East (nds),52.479167,9.791667,,0.025,,234,79,75,,,,0,L1020 U1025 6.6s,81832,,, +320,XOE,,PBCD,b,F2A - Hanze Platform,54.9375,4.625,,0.025,,336,340,76,,,,0,L395 U396 8.5s,ID+2 gap,81846,, +320,F,,TY,b,Troyes / Barberey (10),48.395833,4.041667,,0.025,,446,203,77,,,,994,U24 ,ID+14 tone,81851,, +320,G,,CAE,b,Caernarfon (WA-GWY),53.104167,-4.375,,0.025,,736,283,80,,,,0,L398 U402 10.2s,81828,,, +320,F,,HMI,b,Limoges / Bellegarde (87),45.770833,1.125,,0.025,,803,211,81,,,,,U15 ,ID+15 tone,81833,, +320,F,,LSU,b,Limoges / Bellegarde (87),45.770833,1.125,,0.025,,803,211,81,,,,,U15 ,ID+15 tone,81837,, +320,F,,VE,b,Valence / Chabeuil (26),44.854167,4.958333,,0.015,,814,188,83,,,,,L398 U400 10.0s,ID+9 gap,81852,, +320,HRV,,VL,b,Pula / Valtura (pa),44.895833,13.875,,0.025,,971,143,83,,,,3,L1047 U1050 ,ID+2.5 gap,81853,, +320,SRB,,PZ,b,Batajnica (Srb-gbg),44.9375,20.208333,,0.025,,1288,123,86,,,,,L1045 U1090 10.0s,ID+7 tone,86368,, +320,S,,OL,b,Lycksele,64.479167,18.791667,,0.025,,1548,23,88,,,,0,L400 U400 ,81844,,, +320,NOR,,IL,b,Bod/Ilstad (no),67.270833,14.708333,,0.025,,1745,12,90,,,,0,L380 U380 ,81835,,, +320,ISL,,DO,b,Djupivogur,64.645833,-14.291667,,0.025,,1827,328,91,,,,999,L1030 U1025 8.0s,81831,,, +320,RUS,,SHS,b,Kimry / Borki,56.8125,37.291667,,0.025,,2044,63,93,,,,,,86369,,, +320,RUS,,DM,b,Moskva/Domodedovo (MV),55.4375,37.875,,0.025,,2082,67,94,,,,10,L1018 U1019 ,IDx3 + 6 gap,81830,, +320,RUS,,M,b,Moskva/Domodedovo (MV),55.4375,37.875,,0.025,,2082,67,94,,,,,U980 15.1s,IDx2,81838,, +320,RUS,,O,b,Moskva/Domodedovo (MV),55.395833,37.875,,0.025,,2082,67,94,,,,,U400 ,81843,,, +320,RUS,,RN,b,Rostov-na-Donu / Rostov East (RO),47.229167,39.791667,,0.025,,2440,89,97,,,,997,L1020 U1014 ,IDx2 + 8 gap,81847,, +320,RUS,,RW,b,Rostov-na-Donu / Rostov East (RO),47.229167,39.791667,,0.025,,2440,89,97,,,,7,L1007 U1020 ,IDx2 + 21 gap,81848,, +320,ALG,,BBS,b,Beni Abbes (6),30.020833,-2.208333,,0.025,,2556,199,99,,,,,L388 U391 ,ID+3 gap,81826,, +320,RUS,,N,b,Samara / Bezymyanka (SA),53.270833,50.375,,0.025,,2919,70,102,,,,,U900 ,81841,,, +320,USA,,HTN,b,Horton Miles City (MT),46.395833,-105.958333,,0.1,,7314,316,140,,,,990,L1047 U1033 8141s,81834,,, +320,CAN,,YQF,b,Red Deer (AB),52.145833,-113.875,,0.05,,7154,324,142,,,,,U394 10.3s,DAID,81854,, +320,USA,,OM,b,Gerfi Omaha (NE),41.354167,-95.958333,,0.05,,7227,306,142,,,,0,L1020 U1030 6.46s,81845,,, +320,B,,JPS,b,Joo Pessoa (PB),-7.145833,-34.958333,,0.1,,7667,225,144,,,,1,L1029 U1029 7.6s,81836,,, +320,ALS,,HCR,b,Holy Cross (AK),62.1875,-159.791667,,0.025,,7248,353,145,,,,,,87064,,, +320,CAN,,AE,b,Point Atkinson Light Station (BC),49.3125,-123.291667,,0.1,,7779,328,145,,,,,U420 ,87062,,, +320,B,,YTC,b,Itacoatiara (AM),-3.104167,-58.458333,,0.25,,8609,248,148,,,,,L1043 U1033 6692s,81855,,, +320,B,,NX,b,Domel (PR),-25.479167,-48.291667,,0.5,,10129,227,150,,,,,,81842,,, +320,MYA,,BM,b,Banmaw,24.267222,97.246111,,0.025,,7958,74,153,,,,,,22100016,,, +320,USA,,CLK,b,Clinton (OK),35.520833,-98.958333,,0.02,,7892,304,153,,,,,U1022 7.25s,81829,,, +320,USA,,TY,b,Tyler / Indoo (TX),32.395833,-95.458333,,0.025,,7958,299,153,,,,994,L1036 U1030 5.9s,81850,,, +320,CLN,,BAT,b,Batticaloa AB (bcl),7.703611,81.68,,0.025,,8328,97,156,,,,,,34700018,,, +320,B,,MRN,b,Maring (PR),-23.479167,-52.041667,,0.05,,10133,231,160,,,,,,81840,,, +320,THA,,PCK,b,Prachuap,11.79,99.806667,,0.025,,9205,80,160,,,,,,32900032,,, +320,B,,BAG,b,Barra do Garas (MT),-15.854167,-52.375,,0.025,,9430,236,161,,,,,,86366,,, +320,CLM,,FLA,b,Florencia (caq),1.520833,-75.541667,,0.025,,9325,265,161,,,,,,87063,,, +320,B,,MNG,b,Maring (PR),-23.4375,-51.875,,0.025,,10120,231,163,,,,,,81839,,, +320,AUS,,BRM,b,Broome (WA),-17.9375,122.208333,,0.05,,13324,81,171,,,,0,L1021 U404 8s,81827,,, +321,D,,GL,b,Berlin / Tegel / East (brb),52.5625,13.458333,,0.05,,481,81,75,,,,997,L1020 U1016 ,81864,,, +321,F,,ABY,b,Albert / Bray (80),49.979167,2.791667,,0.025,,347,228,76,,,,,L405 10.3s,81858,,, +321,XOE,,BVH,b,K2B-A Platform,53.9375,3.625,,0.025,,276,319,76,,,,,,81860,,, +321,DNK,,VO,b,Vojens/Skrydstrup (sdk),55.229167,9.291667,,0.025,,395,28,77,,,,0,L400 U400 5.3s,ID+2 gap,81871,, +321,F,,TL,b,Tarbes / Ossun / Lourdes (65),43.270833,0.041667,,0.1,,1091,208,78,,,,,U5 ,ID+16 tone,81870,, +321,G,,STM,b,St Mary (Isles of Scilly) (EN-CNW),49.895833,-6.291667,,0.025,,921,260,82,,,,3,L394 U392 7.5s,81869,,, +321,IRL,,CRN,b,Galway / Carnmore (G),53.3125,-8.958333,,0.025,,1042,283,83,,,,2,L413 U396 7.8s,81861,,, +321,E,,ABT,b,Albacete (CAM-AB),38.9375,-1.958333,,0.05,,1601,207,86,,,,48,L975 U1075 ,ID+4 gap,81857,, +321,BLR,,GK,b,Minsk (MI),53.895833,27.458333,,0.025,,1417,74,87,,,,,U1020 ,81863,,, +321,BLR,,NE,b,Minsk 1 (MI),53.520833,27.375,,0.025,,1412,75,87,,,,,U400 ,81866,,, +321,BUL,,BU,b,Burgas (bur),42.520833,27.458333,,0.025,,1901,116,92,,,,5,L1025 U1040 8.4s,ID+6 gap,81859,, +321,IRN,,ZAJ,b,Zanjan (znj),36.770833,48.375,,0.025,,3675,101,110,,,,5,L1025 U1034 ,ID+4 gap,81873,, +321,CAN,,YSY,b,Sachs Harbour (NT),71.979167,-125.291667,,0.025,,5714,343,130,,,,,U432 9.8s,DAID,81872,, +321,USA,,UR,b,Burln Covington (Burlington) (KY),39.0625,-84.791667,,0.025,,6765,297,141,,,,,L1040 ,87065,,, +321,USA,,FT,b,Skipi Bennett (Denver) (CO),39.8125,-104.458333,,0.025,,7816,310,151,,,,995,L1040 U1033 6.0s,81862,,, +321,BES,,PJB,b,Bonaire (bnr),12.132778,-68.280833,,0.025,,7903,265,152,,,,,L1036 ,81868,,, +321,CHN,,K,b,Shenyang/Taoxian (LN),41.645833,123.458333,,0.025,,7961,45,153,,,,,L1088 ,81865,,, +322,G,,LCY,b,London / City (EN-GTL),51.520833,0.041667,,0.025,,442,264,77,,,,969,L401 U422 6.5s,81878,,, +322,F,,ORS,b,Orlans / St Denis De LHotel (45),47.9375,2.208333,,0.025,,552,215,78,,,,,U2 ,DAID,81881,, +322,F,,TLN,b,Hyres / Le Palyvestre (83),43.020833,6.125,,0.05,,1011,181,80,,,,,L17 U9 ,ID+11 tone,81885,, +322,POL,,GDN,b,Gdansk,54.354167,18.625,,0.025,,849,68,81,,,,,L1033 U1031 8.1s,ID+4.5 gap,86371,, +322,F,,RL,b,La Rochelle / Ile De R (17),46.1875,-1.125,,0.025,,856,223,82,,,,,U3 ,ID+16 tone,81883,, +322,XOE,,ALNG,b,ALNG GBS Vessel,45.104167,12.625,,0.025,,902,147,82,,,,2,L860 U875 7.0s,ID+2 gap,81874,, +322,S,,OU,b,Stockholm / Bromma,59.3125,18.041667,,0.025,,1080,38,84,,,,2,L404 U403 ,81882,,, +322,FIN,,KOR,b,Helsinki / Malmi / Korso,60.354167,25.041667,,0.025,,1463,44,88,,,,0,L404 U407 8.4s,81877,,, +322,S,,OD,b,rnsksldsvik,63.4375,18.875,,0.025,,1455,25,88,,,,3,L400 U399 ,81880,,, +322,POR,,MIO,b,Montijo (lis),38.729167,-9.041667,,0.025,,1907,225,92,,,,26,L1017 U1020 9.77s,81879,,, +322,GRC,,IKA,b,Ikaria (neg-sam),37.6875,26.375,,0.025,,2232,128,95,,,,0,L400 U400 ,ID+6 gap,81876,, +322,TKM,,RP,b,Daşoguz (dgz),41.770833,59.791667,,0.025,,4111,84,114,,,,,U1103 ,IDx2 + 5 gap,81884,, +322,TKM,,VH,b,Daşoguz (dgz),41.770833,59.875,,0.025,,4117,84,114,,,,80,L880 U1045 7.7s,ID+3 gap,81887,, +322,PAK,,DG,b,Dera Ghazi Khan (pjb),29.961944,70.490278,,0.025,,5692,89,130,,,,,,31500048,,, +322,CHN,,QK,b,Gengma,23.533056,99.4,,0.025,,8161,73,155,,,,,,36201268,,, +322,CHN,,MA,b,Lianshengwei,22.229167,113.458333,,0.025,,9165,63,160,,,,,,86373,,, +323,BEL,,ONC,b,Charleroi / Gosselies (wal-hnt),50.479167,4.541667,,0.025,,223,216,75,,,,999,L403 U398 10.1s,81908,,, +323,XOE,,AY,b,Pentacom / Platform,53.520833,4.208333,,0.025,,216,318,75,,,,,U~1020 ,81891,,, +323,XOE,,EK,b,Petroland A Platform,53.604167,4.125,,0.025,,226,318,75,,,,,U~1020 ,81896,,, +323,XOE,,KZ,b,K6-D / Pentacon F Platform,53.6875,3.791667,,0.025,,248,316,75,,,,,,81905,,, +323,XOE,,LB,b,L8-G / Pentacon,53.5625,4.625,,0.025,,201,324,75,,,,,U416 ,81906,,, +323,XOE,,ZD,b,K6-DN Platform,53.729167,3.791667,,0.025,,251,317,75,,,,,,81920,,, +323,XOE,,ZP,b,K6-PC / Pentacon F Platform,53.6875,3.875,,0.025,,244,317,75,,,,,U394 ,ID+3 gap,81921,, +323,D,,GT,b,Hamburg / North (ham),53.729167,9.958333,,0.025,,298,51,76,,,,1,L1023 U1024 5.2s,81898,,, +323,G,,SBL,b,Sherburn-in-Elmet (EN-NYK),53.770833,-1.208333,,0.025,,543,293,78,,,,7,L375 U417 7.6s,81910,,, +323,G,,WPL,b,Welshpool (WA-POW),52.645833,-3.125,,0.025,,649,279,79,,,,1,L412 U414 6.6s,81919,,, +323,I,,CAM,b,Cameri (no),45.4375,8.708333,,0.025,,761,166,81,,,,0,L1016 U1024 ,ID+2 gap,81892,, +323,F,,AB,b,Albi / Le Sequestre (81),43.895833,2.041667,,0.025,,969,201,83,,,,,U5 ,DAID,81888,, +323,XOE,,DX,b,Shell / Esso Dunlin A Platform,61.270833,1.625,,0.025,,1059,346,84,,,,,,81894,,, +323,CAN,,UWP,b,Argentia (NL),47.3125,-53.958333,,1,,4246,288,99,,,,,U415 10.0s,DAID,81916,, +323,AZR,,SMA,b,Vila do Porto (stm),36.979167,-25.208333,,0.025,,2981,248,103,,,,5,L1018 U1028 8.5s,ID+6 gap,81911,, +323,ISR,,HFA,b,Haifa (haf),32.8125,35.041667,,0.025,,3144,122,104,,,,,U1020 ,ID+6.5 gap,81901,, +323,KAZ,,AT,b,Aktyubinsk (aqt),50.270833,57.125,,0.025,,3468,73,108,,,,7,L400 U414 15.0s,IDx2,81890,, +323,KAZ,,TU,b,Aktyubinsk (aqt),50.229167,57.291667,,0.025,,3480,73,108,,,,,U400 15.2s,IDx2,81915,, +323,CAN,,KR,b,Squaw Schefferville (QC),54.8125,-66.791667,,0.25,,4631,304,109,,,,,U402 10.2s,81904,,, +323,QAT,,WK,b,Doha Int. (wak),25.1875,51.616667,,0.025,,4818,111,121,,,,,,81918,,, +323,CAN,,W4,b,Jenpeg (MB),54.520833,-98.041667,,0.063,,6269,318,132,,,,998,L412 U404 10.3s,DAID,81917,, +323,UGA,,SO,b,Soroti (sor),1.729167,33.625,,0.025,,6146,146,134,,,,3,L1027 U1034 ,ID+6 gap,81912,, +323,USA,,GTN,b,Georgetown (VA),38.9375,-77.125,,0.025,,6299,292,136,,,,,,81899,,, +323,USA,,UT,b,Calcasieu Pass (LA),29.770833,-93.375,,0.5,,8058,296,141,,,,,,87067,,, +323,USA,,EBS,b,Webster City (IA),42.4375,-93.875,,0.025,,7022,306,143,,,,,U1022 4301s,81895,,, +323,USA,,OUK,b,Calhoun (GA),34.395833,-84.958333,,0.024,,7149,294,145,,,,,U1027 6074s,81909,,, +323,USA,,HJH,b,Hebron (NE),40.145833,-97.625,,0.025,,7421,306,147,,,,,U1023 5675s,81903,,, +323,USA,,LTY,b,Chester (MT),48.520833,-110.958333,,0.025,,7356,320,147,,,,997,L1045 U1038 8.6s,81907,,, +323,ALS,,AIX,b,Nanwak Mekoryuk (AK),60.395833,-166.208333,,0.025,,7488,356,148,,,,,U1033 ,81889,,, +323,TRD,,TAB,b,Crown Point,11.145833,-60.875,,0.025,,7488,259,148,,,,998,L410 U403 8399s,81913,,, +323,USA,,SRC,b,Searcy (AR),35.229167,-91.708333,,0.025,,7494,299,148,,,,,U1020 ,87066,,, +323,USA,,HHW,b,Hugo (OK),34.020833,-95.541667,,0.025,,7823,301,151,,,,0,L1015 U1019 6.4s,81902,,, +323,USA,,GR,b,Starn Fort Hood (Kileen) (TX),31.1875,-97.875,,0.025,,8206,300,155,,,,993,L1024 U1009 6.00s,81897,,, +323,AUS,,CAR,b,Carnarvon (WA),-24.895833,113.708333,,0.025,,13328,93,174,,,,,L1023 U1023 ,81893,,, +323,AUS,,TMO,b,The Monument (QLD),-21.8125,139.958333,,0.025,,14825,68,179,,,,,L500 6s,81914,,, +323,AUS,,HBK,b,Holbrook (NSW),-35.604167,147.458333,,0.025,,16454,75,184,,,,,U403 9s,81900,,, +324,F,,MOU,b,Moulins (03),46.6875,3.625,,0.05,,636,200,76,,,,,U8 19.5s,DAID,81927,, +324,DNK,,ML,b,Aarhus (arh),56.3125,10.458333,,0.025,,536,28,78,,,,2,L407 U405 5.7s,ID+3 gap,81926,, +324,NOR,,HE,b,Notodden / Heddal,59.604167,9.041667,,0.025,,849,10,81,,,,3,L378 U378 ,81923,,, +324,XOE,,MP,b,Total Elf / Frigg Fergus MCPC01 Platform,58.8125,-0.291667,,0.025,,856,333,82,,,,,,81928,,, +324,S,,ON,b,Norrkping/Saab,58.604167,16.375,,0.025,,956,37,83,,,,0,L400 U400 4.0s,81930,,, +324,I,,PTC,b,Salerno / Pontecagnano (sa),40.604167,14.875,,0.025,,1433,150,87,,,,1,L1020 U1018 ,ID+6 gap,81931,, +324,NOR,,MS,b,Mosjoen,65.8125,13.291667,,0.025,,1572,12,89,,,,0,L385 U385 ,81929,,, +324,FIN,,AS,b,Kemi / Tornio,65.6875,24.375,,0.025,,1814,27,91,,,,1,L407 U409 ,81922,,, +324,ISL,,TO,b,Akureyri/Torfur (ne),65.520833,-18.125,,0.025,,2028,327,93,,,,,L1040 U1027 6.4s,81933,,, +324,TUR,,KFK,b,Afyon (ege-afy),38.8125,30.541667,,0.025,,2374,119,97,,,,985,L1038 U1055 ,Cont. ID,81925,, +324,RUS,,RF,b,Ladozhskaya,45.270833,39.958333,,0.025,,2551,94,98,,,,35,L1015 U1012 ,ID+4 gap,81932,, +324,PAK,,GT,b,Gilgit (ggb),35.920278,74.335,,0.025,,5500,81,128,,,,,,31500045,,, +324,ALS,,J,b,Guard Island Light Station (AK),55.4375,-131.875,,0.2,,7456,336,139,,,,,,87068,,, +324,USA,,ID,b,Uconn Idaho Falls (ID),43.604167,-111.958333,,0.025,,7845,317,151,,,,998,L1024 U1019 6.0s,81924,,, +324,CHN,,CJ,b,Hangzhou,30.3125,120.125,,0.025,,8822,54,159,,,,,,86376,,, +324,AUS,,EML,b,Emerald (QLD),-23.5625,148.208333,,0.025,,15487,60,181,,,,,L400 8s,86377,,, +325,D,,DP,b,Diepholz (nds),52.604167,8.458333,,0.025,,150,68,74,,,,2,L1045 U1047 16.0s,81938,,, +325,G,,OF,b,Filton (EN-GLO),51.520833,-2.625,,0.025,,624,268,79,,,,1,L398 U401 8.3s,81951,,, +325,S,,PG,b,Trollhttan/Vnersborg,58.270833,12.458333,,0.025,,785,27,81,,,,13,L386 U413 5.7s,81954,,, +325,S,,DH,b,Oskarshamn,57.3125,16.458333,,0.025,,865,44,82,,,,0,L396 U397 ,81937,,, +325,HRV,,VG,b,Zagreb / Pleso / Velika Gorica (zg),45.729167,16.041667,,0.025,,998,132,83,,,,998,L1025 U1026 8.5s,ID+5.6 gap,81960,, +325,I,,RCA,b,Reggio di Calabria (rc),38.020833,15.625,,0.11,,1722,152,84,,,,4,L1016 U1025 ,ID+6 gap,81956,, +325,F,,FA,b,Figari / Sud Corse (20A),41.604167,9.291667,,0.025,,1188,168,85,,,,,U2 ,81940,,, +325,E,,AST,b,Asturias (AST-O),43.5625,-6.041667,,0.025,,1326,229,86,,,,995,L1008 U1012 ,ID+5 gap,81936,, +325,S,,NUT,b,Hemavan,65.854167,15.041667,,0.025,,1603,14,89,,,,,L422 ,81949,,, +325,TUN,,TS,b,Tunis / Carthage (tun),36.9375,10.291667,,0.025,,1714,168,90,,,,0,L337 U363 ,ID+2 gap,81959,, +325,FIN,,JOE,b,Joensuu,62.6875,29.458333,,0.025,,1796,40,91,,,,2,L404 U401 8.0s,ID+4 gap,81942,, +325,ISL,,NF,b,Nordfjordur,65.145833,-13.708333,,0.025,,1842,330,91,,,,0,L1044 U1048 ,81947,,, +325,S,,OG,b,Gllivare,67.104167,20.958333,,0.025,,1847,20,91,,,,2,L400 U403 ,81952,,, +325,RUS,,NU,b,Bryansk (BR),53.1875,34.208333,,0.025,,1867,75,92,,,,,L1050 U1051 ,81948,,, +325,RUS,,OD,b,Bryansk (BR),53.145833,34.125,,0.025,,1862,75,92,,,,,L998 U1007 ,81950,,, +325,ISL,,RH,b,Reykholt,64.645833,-21.291667,,0.025,,2103,322,94,,,,,U1040 ,ID+1 gap,81957,, +325,RUS,,WD,b,Gumrak,48.770833,44.375,,0.025,,2683,83,100,,,,915,L885 U890 ,IDx2 + 6 tone,81963,, +325,RUS,,WG,b,Volgograd / Gumrak (VG),48.8125,44.291667,,0.025,,2675,83,100,,,,316,L1007 U1007 ,IDx2 + 4 tone,81964,, +325,RUS,,MC,b,Bugulma (TS),54.645833,52.791667,,0.025,,3033,66,103,,,,,,81946,,, +325,IRN,,KLH,b,Kalaleh (gsn),37.395833,55.458333,,0.025,,4110,94,114,,,,,,86382,,, +325,CAN,,LN,b,Lumsden (SK),50.6875,-104.958333,,0.08,,6899,318,137,,,,,,87069,,, +325,ALS,,BVK,b,Buckland (AK),65.979167,-161.125,,0.025,,6842,354,141,,,,,L1047 U1040 ,86379,,, +325,KNA,,SKB,b,Bradshaw (spb),17.3125,-62.708333,,0.025,,7078,265,144,,,,,U1021 8.33s,81958,,, +325,DOM,,LRN,b,La Romana (rom),18.4375,-68.958333,,0.025,,7408,270,147,,,,,U1020 ,81945,,, +325,J,,XM,b,Kowa (chu-aic),34.770833,136.9125,,0.5,,9226,39,147,,,,,L1020 ,DAID (5 sec),81965,, +325,CAN,,YJQ,b,Bella Bella (Campbell Island) (BC),52.1875,-128.125,,0.025,,7665,332,150,,,,,U396 10.61s,DAID,81966,, +325,CHN,,LG,b,Beijing (BJ),40.145833,116.541667,,0.025,,7748,50,150,,,,,L1006 ,81944,,, +325,ZMB,,LE,b,Lusaka (lsk),-15.354167,28.541667,,0.025,,7800,157,151,,,,0,L1019 U1019 8.66s,81943,,, +325,B,,PP,b,Pororoca (GO),-16.145833,-48.875,,0.2,,9264,233,152,,,,,,81955,,, +325,B,,PAF,b,Paulo Afonso (BA),-9.395833,-38.208333,,0.025,,8050,227,153,,,,,,86384,,, +325,B,,VGH,b,Varginha (MG),-21.604167,-45.458333,,0.1,,9612,227,156,,,,,,81961,,, +325,CLM,,VUP,b,Valledupar (ces),10.4375,-73.208333,,0.025,,8386,268,157,,,,,,81962,,, +325,SNG,,AG,b,Sembawang (nw),1.4375,103.791667,,0.025,,10384,83,164,,,,,U968 ,81934,,, +325,ARG,,PDI,b,Punta Indio (ba),-35.354167,-57.291667,,0.025,,11517,229,168,,,,,7.0s,81953,,, +325.5,J,,OB,b,Obihiro (hok),42.645833,143.291667,,0.025,,8693,31,159,,,,-325.5,L1011 U1020 7.5s,DAID,81967,, +325.5,NCL,,NW,b,La Tontouta (sud),-21.9375,166.041667,,0.025,,16233,35,184,,,,-325.5,20s,86385,,, +326,HOL,,LLS,b,Lelystad (fle),52.479167,5.541667,,0.025,,72,305,46,,,,993,L438 U430 6.7s,81990,,, +326,F,,LM,b,Le Mans / Arnage (72),47.895833,0.208333,,0.05,,645,226,76,,,,,U2 20.0s,DAID,81991,, +326,XOE,,YW,b,Tyra West Platform,55.4375,4.458333,,0.025,,392,342,77,,,,2,L398 U405 5.0s,82021,,, +326,XOE,,SYR,b,Sevan Voyageur FPSO,57.895833,1.375,,0.025,,719,336,80,,,,,,86387,,, +326,F,,RH,b,Brive / La Roche (19),45.104167,1.541667,,0.025,,857,207,82,,,,,U4 ,DAID,82002,, +326,IRL,,RSH,b,Dublin / Rush (D),53.520833,-6.125,,0.025,,856,286,82,,,,954,L459 U409 4.5s,82005,,, +326,POL,,KTW,b,Katowice / Pyrzowice,50.479167,19.125,,0.025,,901,97,82,,,,12,L1015 U1010 ,81989,,, +326,S,,KK,b,Karlskoga,59.395833,14.541667,,0.025,,955,29,83,,,,,L400 U400 ,81987,,, +326,S,,OG,b,Gvle / Sandviken,60.645833,16.958333,,0.025,,1147,30,84,,,,999,L400 U395 4.5s,ID+1 gap,82000,, +326,HNG,,C,b,Debrecen (HaB),47.479167,21.625,,0.025,,1204,109,85,,,,6,L1037 U1047 6.2s,ID+2 gap,81973,, +326,NOR,,TO,b,Trondheim / Vaernes / Malvik (st),63.4375,10.708333,,0.025,,1284,10,86,,,,,L387 U387 ,82011,,, +326,S,,KG,b,Kramfors / Bjartra,63.104167,17.708333,,0.025,,1391,24,87,,,,0,L397 U396 ,81985,,, +326,FIN,,SUI,b,Tampere / Pirkkala / Suinu,61.520833,24.041667,,0.025,,1490,39,88,,,,996,L406 U400 8.0s,82009,,, +326,NOR,,FSK,b,Fauske,67.270833,15.125,,0.025,,1751,12,90,,,,3,L380 U380 ,81983,,, +326,GRC,,SKC,b,Skiathos (the-mag),39.1875,23.541667,,0.025,,1949,131,92,,,,992,L401 U385 ,ID+6 gap,82007,, +326,RUS,,N,b,Kubinka,55.604167,36.625,,0.025,,2003,67,93,,,,,15.0s,IDx2 + 12 gap,81996,, +326,UKR,,NL,b,Mykolaivka (KR),44.979167,33.625,,0.025,,2139,101,94,,,,993,L972 U1248 ,IDx2,81998,, +326,GRC,,NXO,b,Naxos (seg-kik),37.0625,25.375,,0.025,,2235,131,95,,,,995,L420 U410 ,ID+3 gap,81999,, +326,RUS,,AL,b,Ivanovo / Yuzhny,56.9375,40.958333,,0.025,,2267,63,96,,,,,,86386,,, +326,RUS,,DD,b,Ivanovo / Yuzhny (IV),56.9375,41.041667,,0.025,,2272,63,96,,,,1,L1019 U1021 20.0s,IDx2,81977,, +326,LBY,,KH,b,Hateiba (wah),29.729167,19.708333,,0.025,,2718,151,100,,,,,,81986,,, +326,CAN,,FC,b,Fredericton (NB),45.9375,-66.625,,1.6,,5141,293,106,,,,,U401 9975s,DAID,81981,, +326,JOR,,AQC,b,Aqaba (aqb),29.895833,35.125,,0.025,,3408,125,107,,,,,L1055 ,ID+2.5 gap,81969,, +326,KAZ,,T,b,Aktau (mgg),43.854167,51.125,,0.025,,3393,88,107,,,,,,82010,,, +326,TKM,,UT,b,Chardzhev for Trkmenabat (leb),39.020833,63.625,,0.025,,4554,85,119,,,,,,82014,,, +326,CAN,,VV,b,Wiarton (ON),44.6875,-81.208333,,0.4,,6119,300,122,,,,0,L400 U405 10.1s,DAID,82017,, +326,CAN,,YQK,b,Kenora (ON),49.8125,-94.458333,,0.2,,6462,312,129,,,,,U402 10.11s,DAID,82020,, +326,CAN,,DC,b,Princeton (BC),49.479167,-120.541667,,0.5,,7661,326,137,,,,997,L407 U402 10.0s,DAID,81976,, +326,CAN,,VQ,b,Norman Wells (NT),65.270833,-126.708333,,0.025,,6364,339,137,,,,,U~400 ,82015,,, +326,CAN,,XJ,b,Fort St. John (BC),56.270833,-120.875,,0.1,,7035,330,137,,,,,U409 10.46s,DAID,82019,, +326,USA,,PKZ,b,Pickens Pensacola (FL),30.4375,-87.208333,,0.4,,7618,292,137,,,,991,L1049 U1033 7.8s,82001,,, +326,USA,,BKT,b,Blackstone (VA),37.145833,-78.041667,,0.025,,6495,291,138,,,,995,L1039 U1034 7990s,81971,,, +326,USA,,EK,b,Nepco Wisconsin Rapids (WI),44.270833,-89.875,,0.025,,6651,305,139,,,,,U1033 5157s,81978,,, +326,USA,,RUV,b,Rushsylvania (OH),40.479167,-83.708333,,0.025,,6588,298,139,,,,,U1022 ,87072,,, +326,USA,,ZEF,b,Zephyr Elkin (NC),36.3125,-80.708333,,0.025,,6729,292,140,,,,3,L1031 U1038 5728s,82022,,, +326,USA,,CI,b,Cindy Cedar Rapids (IA),41.895833,-91.791667,,0.025,,6949,304,142,,,,999,L1030 U1028 ,81974,,, +326,USA,,ETH,b,Wheaton (MN),45.770833,-96.541667,,0.025,,6894,310,142,,,,988,L1030 U30 30s,TWEB,81980,, +326,USA,,SIV,b,Sullivan (IN),39.104167,-87.458333,,0.025,,6922,299,142,,,,2,L1006 U1033 6.53s,82006,,, +326,USA,,UOT,b,Union County Union (SC),34.6875,-81.625,,0.025,,6916,292,142,,,,13,L417 U417 6372s,82013,,, +326,ALS,,UMM,b,Summit (AK),63.3125,-149.125,,0.025,,7005,348,143,,,,,U1035 ,82012,,, +326,USA,,LTU,b,Little Sioux Spencer (IA),43.145833,-95.125,,0.025,,7033,307,143,,,,1,L1020 U1019 8600s,81992,,, +326,BAH,,BHF,b,Freeport (Grand Bahama Island) (fpt),26.5625,-78.625,,0.04,,7383,283,145,,,,993,L1048 U1033 ,81970,,, +326,USA,,MA,b,Farly Midland (TX),31.979167,-102.291667,,0.4,,8392,304,145,,,,993,L1049 U1034 6.2s,81993,,, +326,USA,,SU,b,Snoop Saint Louis (MO),38.645833,-90.791667,,0.025,,7156,301,145,,,,,U1020 8600s,82008,,, +326,USA,,COO,b,Covington (TN),35.604167,-89.625,,0.025,,7337,298,146,,,,,U1020 ,81975,,, +326,USA,,FO,b,Riply Topeka (KS),38.895833,-95.541667,,0.025,,7410,304,147,,,,986,L1046 U1023 5.9s,81982,,, +326,USA,,RRX,b,Darr Lexington (NE),40.854167,-99.875,,0.025,,7483,308,148,,,,,L1024 U1025 7.5s,82003,,, +326,USA,,LCY,b,Logan County (OK),35.854167,-97.375,,0.025,,7773,303,151,,,,,U1040 ,87071,,, +326,USA,,BVP,b,Houston (TX),29.979167,-95.208333,,0.025,,8152,298,154,,,,2,L1020 U1021 8.7s,81972,,, +326,USA,,JY,b,Nixin Houston (TX),29.979167,-95.208333,,0.025,,8152,298,154,,,,,U1020 ,87070,,, +326,USA,,MCY,b,Desert Rock Mercury (NV),36.604167,-116.041667,,0.05,,8685,316,156,,,,0,L1040 U1040 9.0s,81994,,, +326,MDG,,VSJ,b,Mahajanga (mhj),-15.6875,46.375,,0.025,,8465,140,158,,,,,,82016,,, +326,AUS,,ESP,b,Esperance (WA),-33.6875,121.791667,,0.025,,14573,95,178,,,,,L400 U403 7s,81979,,, +326,NZL,,WR,b,Whangarei (NTL),-35.770833,174.375,,0.13,,17965,32,182,,,,,L1020 U1020 4s,82018,,, +326,AUS,,NHL,b,Nhill (VIC),-36.3125,141.625,,0.025,,16117,81,183,,,,,L400 U400 9s,81997,,, +326,AUS,,MSO,b,Mount Sandon (NSW),-31.395833,151.375,,0.025,,16366,65,184,,,,,U400 9s,81995,,, +327,D,,LV,b,Kln / Bonn (nrw),50.8125,7.208333,,0.025,,155,159,75,,,,10,L1022 U1016 ,82032,,, +327,F,,MVC,b,Merville / Calonne (59),50.5625,2.625,,0.025,,314,238,76,,,,,U12 20.7s,DAID,82034,, +327,G,,TNL,b,Tatenhill (EN-SFS),52.8125,-1.791667,,0.025,,561,281,79,,,,990,L403 U397 10.0s,82039,,, +327,XOE,,BNF,b,Ramfrmm Banff / Atlantic Floating Prod.,57.020833,1.291667,,0.025,,638,331,79,,,,,,86388,,, +327,AUT,,LNZ,b,Linz / Hrsching,48.229167,14.291667,,0.025,,707,124,80,,,,2,L1020 U1016 10.0s,ID+6 gap,82031,, +327,XOE,,ALW,b,Total Fina Elf Exploration / North Alwyn,60.8125,1.708333,,0.025,,1009,345,83,,,,,U390 ,ID+6 gap,82023,, +327,XOE,,CRA,b,Clair Fixed Platform,60.770833,-2.708333,,0.025,,1112,334,84,,,,,U392 5.8s,ID+2 gap,86389,, +327,I,,OST,b,Roma / Ostia (rm),41.8125,12.208333,,0.025,,1226,157,85,,,,,L1019 U1022 ,ID+7 gap,86390,, +327,S,,Y,b,Sveg,62.0625,14.375,,0.025,,1205,20,85,,,,0,L399 U402 ,82043,,, +327,POR,,POR,b,Porto (prt),41.354167,-8.708333,,0.025,,1654,230,90,,,,0,L1021 U1021 8.48s,ID+4 gap,82037,, +327,E,,EEC,b,Sevilla / El Copero (AND-SE),37.3125,-6.041667,,0.025,,1911,215,92,,,,,L1023 U1020 4.77s,82027,,, +327,GRC,,KHR,b,Kavala/Megas Alexandros (emc-kav),40.9375,24.625,,0.025,,1857,125,92,,,,2,L402 U405 12.0s,ID+6 gap,82030,, +327,RUS,,XI,b,Torzhok (TV),57.0625,35.041667,,0.025,,1909,62,92,,,,,L1040 U1040 15.0s,IDx2 + 7 gap,82042,, +327,RUS,,U,b,Nizhny Novgorod / Strigino (NN),56.270833,43.791667,,0.025,,2444,64,97,,,,,,82040,,, +327,LBY,,NC8,b,Hamada NC-8 (jgh),29.520833,12.875,,0.025,,2568,166,99,,,,0,L386 U383 ,Cont. ID,82035,, +327,UAE,,RNZ,b,Arzanah (abd),24.8,52.558333,,0.025,,4912,110,122,,,,,,82038,,, +327,CAN,,MG,b,West Arm (Cambridge Bay) (NU),69.104167,-105.125,,0.025,,5442,334,127,,,,,U396 ,82033,,, +327,CAN,,G8,b,Maniwaki (QC),46.270833,-75.958333,,0.025,,5693,298,130,,,,,,87074,,, +327,GUF,,FXC,b,Cayenne (973),4.8125,-52.375,,0.3,,7501,247,137,,,,999,L327 U1 10.38s,DAID,82028,, +327,USA,,JMR,b,Mora (MN),45.895833,-93.291667,,0.025,,6711,308,140,,,,994,L1028 U1011 40.9s,82029,,, +327,MOZ,,BR,b,Beira (sfl),-19.770833,34.875,,0.025,,8456,152,158,,,,999,L1019 U1017 3.67s,82024,,, +327,USA,,PDG,b,Pajar Watsonville (CA),36.895833,-121.791667,,0.025,,8919,320,159,,,,,U996 6.0s,82036,,, +327,USA,,AY,b,Watsonville (CA),35.895833,-121.791667,,0.025,,9016,320,160,,,,,,87073,,, +327,HWA,,VYI,b,Valley Island Kahului (HI),20.895833,-156.458333,,0.025,,11728,343,169,,,,990,L1042 U1022 8.0s,82041,,, +328,E,,HIG,b,San Sebastin (PVA-SS),43.395833,-1.791667,,0.2,,1145,215,75,,,,3,L1049 U1052 ,ID+20 gap,82055,, +328,XOE,,TMA,b,Arco / Thames Alpha,53.104167,2.541667,,0.025,,284,294,76,,,,,,86398,,, +328,DNK,,VJ,b,Stauning (mjy),55.979167,8.458333,,0.025,,450,16,77,,,,996,L396 U404 8.0s,82065,,, +328,F,,ORG,b,Orange / Caritat (84),44.145833,4.875,,0.08,,893,188,77,,,,,U3 ,DAID,86397,, +328,G,,BLK,b,Blackbushe (EN-HPS),51.3125,-0.875,,0.025,,509,263,78,,,,22,L366 U415 8.1s,82047,,, +328,CZE,,VRI,b,Vrchlabi (KR),50.354167,15.625,,0.025,,670,103,80,,,,,U1144 ,ID+3.7 gap,82066,, +328,G,,CL,b,Carlisle (EN-CUM),54.9375,-2.791667,,0.025,,684,301,80,,,,1,L395 U397 8.5s,82050,,, +328,XOE,,BAF,b,Marathon / Brae Alpha,58.6875,1.291667,,0.025,,799,338,81,,,,,U402 ,82046,,, +328,G,,IVR,b,Inverness (SC-HIL),57.520833,-4.041667,,0.025,,898,316,82,,,,998,L402 U400 5.5s,82057,,, +328,SVN,,KAM,b,Ljubljana / Brnik / Dolsko (lj),46.104167,14.708333,,0.025,,899,135,82,,,,1,L1022 U1017 ,82058,,, +328,POL,,NRA,b,Radom,51.395833,21.291667,,0.025,,1026,89,83,,,,,L1000 U999 ,ID+4 gap,86396,, +328,SRB,,SMR,b,Sremska Mitrovica (Voj-srm),44.999433,19.60965,,0.025,,1249,124,85,,,,29,L922 U980 ,ID+10 gap,82063,, +328,S,,DK,b,Vilhemina,64.604167,16.708333,,0.025,,1509,19,88,,,,998,L395 U402 ,82051,,, +328,FIN,,KIT,b,Kittila,67.604167,24.875,,0.025,,1990,23,93,,,,998,L410 U405 ,82059,,, +328,TUR,,CEK,b,Cekmece (mam-ist),41.020833,28.541667,,0.025,,2080,118,94,,,,,L1020 ,ID+2.5 gap,82049,, +328,CYP,,PHA,b,Pafos (kyp-pap),34.729167,32.458333,,0.025,,2828,123,101,,,,,L400 U398 ,ID+7 gap,82062,, +328,GRL,,HB,b,Sisimuit Holsteinborg (Kitaa) (qqa-sis),66.9375,-53.708333,,0.025,,3583,320,109,,,,0,L394 U400 9726s,82054,,, +328,CAN,,YTL,b,Big Trout Lake (ON),53.8125,-89.875,,1,,5930,313,116,,,,,U401 10.3s,DAID,82067,, +328,USA,,LC,b,Blnap Laconia (NH),43.520833,-71.541667,,0.025,,5613,293,129,,,,993,L1044 U1032 8218s,82061,,, +328,USA,,BZJ,b,Bellgrove Indiantown Gap (PA),40.4375,-76.541667,,0.025,,6149,293,134,,,,998,L1045 U1059 9288s,82048,,, +328,CAN,,5J,b,Coronation (AB),52.0625,-111.458333,,0.14,,7063,323,136,,,,,U400 10.2s,DAID,82045,, +328,USA,,LAC,b,Lacomas Fort Lewis (WA),47.020833,-122.541667,,0.025,,7972,326,153,,,,990,L1050 U1030 8.0s,82060,,, +328,CHN,,LQ,b,Shilong,23.104167,113.875,,0.025,,9112,62,160,,,,,,86395,,, +328,THA,,HY,b,Hat Yai (sgk),6.9375,100.375,,0.025,,9669,83,162,,,,,,ID+7 gap,82056,, +328.5,G,,EGT,b,Londonderry/Eglinton (NI-LDR),55.0625,-7.125,,0.025,,950,296,82,,,,500,L390 U390 4.79s,82068,,, +329,G,,JW,b,Jersey (JER),49.1875,-2.208333,,0.025,,688,245,80,,,,5,L399 U407 10.17s,ID+7 gap,82087,, +329,S,,VX,b,Vxj/Kronoberg,56.854167,14.708333,,0.025,,751,42,80,,,,2,L399 U402 4.5s,82104,,, +329,HNG,,HA,b,Budapest/Ferenc Liszt Int. (Bud),47.479167,19.125,,0.025,,1046,114,83,,,,997,L1023 U1021 ,ID+8 gap,82081,, +329,EST,,IB,b,Tallinn (Har),59.395833,24.625,,0.025,,1391,47,87,,,,2,L404 U411 8.0s,82084,,, +329,NOR,,NMS,b,Namsos,64.479167,11.791667,,0.025,,1410,11,87,,,,8,L370 U387 ,82091,,, +329,S,,WU,b,Umea,63.729167,20.458333,,0.025,,1528,27,88,,,,998,L399 U399 ,82105,,, +329,I,,PRS,b,Cinisi / Punta Raisi (pa),38.1875,13.125,,0.025,,1633,159,89,,,,,L1019 U1023 ,ID+3 gap,86403,, +329,ISL,,HS,b,Husavik,65.9375,-17.458333,,0.025,,2031,328,93,,,,,L1072 ,86401,,, +329,TUR,,RA,b,Lara (akd-ant),36.877153,30.805667,,0.025,,2549,122,98,,,,0,L1025 U1020 ,ID+8 gap,82099,, +329,CAN,,YEK,b,Arviat (NU),61.104167,-94.041667,,1,,5607,322,113,,,,,U425 10.2s,DAID,82107,, +329,CAN,,YHN,b,Hornepayne (ON),49.229167,-84.625,,0.5,,5984,306,120,,,,,U406 10.2s,DAID,82108,, +329,CAN,,2T,b,Pokemouche (NB),47.729167,-64.875,,0.025,,4918,294,122,,,,,U1020 ,DAID,82069,, +329,CAN,,OU,b,Sainte-Foy (QC),46.770833,-71.291667,,0.025,,5376,296,127,,,,990,L418 U400 9970s,DAID,82094,, +329,USA,,CH,b,Ashly Charleston (SC),32.979167,-80.125,,0.4,,6957,289,131,,,,992,L1048 U1027 6.1s,82076,,, +329,USA,,BK,b,Plein Utica (NY),43.229167,-75.458333,,0.025,,5877,295,132,,,,,,82074,,, +329,CAN,,PJ,b,Robinson (Whitehorse) (YT),60.4375,-134.875,,0.25,,7034,340,133,,,,,U400 ,82096,,, +329,USA,,IA,b,Kathi Niagara Falls (NY),43.104167,-78.875,,0.025,,6096,297,134,,,,0,L1034 U1035 6080s,82083,,, +329,USA,,AMN,b,Alma (MI),43.3125,-84.791667,,0.025,,6434,301,137,,,,995,L1048 U1038 5.5s,82073,,, +329,USA,,OR,b,Ingle Norfolk (VA),36.854167,-76.291667,,0.025,,6405,290,137,,,,987,L1043 U1014 6117s,82093,,, +329,USA,,AAU,b,Ashland (OH),40.979167,-82.291667,,0.025,,6463,297,138,,,,998,L1022 U1019 4175s,82071,,, +329,USA,,LLE,b,Kettle Moraine West Bend (WI),43.4375,-88.125,,0.025,,6617,303,139,,,,986,L1046 U1018 4638s,82088,,, +329,USA,,BUY,b,Burlington (NC),36.0625,-79.458333,,0.025,,6669,291,140,,,,,,87076,,, +329,USA,,IWH,b,Wabash (IN),40.770833,-85.791667,,0.025,,6690,299,140,,,,993,L1030 U1016 ,82086,,, +329,USA,,RS,b,Mingo Rochester (MN),43.854167,-92.375,,0.025,,6824,306,141,,,,,L1020 ,82100,,, +329,CAN,,X2,b,Athabasca (AB),54.729167,-113.208333,,0.025,,6897,325,142,,,,,L400 U386 10479s,DAID,82106,, +329,USA,,AAA,b,Abraham Lincoln (IL),40.145833,-89.375,,0.025,,6951,301,142,,,,4,L1012 U1028 4523s,TWEB,82070,, +329,USA,,RVN,b,Rogersville (TN),36.4375,-82.875,,0.025,,6855,294,142,,,,2,L1010 U1008 5842s,82101,,, +329,USA,,ISM,b,Kissimmee Orlando (FL),28.270833,-81.458333,,0.049,,7428,287,144,,,,,U1025 6760s,82085,,, +329,MRT,,FOF,b,Fort-de-France (972),14.604167,-61.041667,,0.025,,7198,261,145,,,,,U405 10.2s,ID+6 gap,86400,, +329,USA,,AEY,b,Waverly (TN),36.104167,-87.708333,,0.025,,7180,297,145,,,,0,L1026 U1022 5439s,82072,,, +329,USA,,PMV,b,Plattsmouth (NE),40.9375,-95.875,,0.025,,7257,306,146,,,,,U1021 7.5s,82097,,, +329,USA,,TAD,b,Trinidad (CO),37.3125,-104.375,,0.15,,8033,309,146,,,,991,L1043 U1022 8.0s,82103,,, +329,USA,,SMY,b,Soyya Marianna (FL),30.854167,-85.208333,,0.025,,7456,291,148,,,,994,L1051 U1049 7694s,82102,,, +329,USA,,AMD,b,Bozeman (MT),45.770833,-111.125,,0.025,,7610,318,149,,,,,,87075,,, +329,USA,,BQP,b,Bastrop (LA),32.770833,-91.875,,0.025,,7711,297,150,,,,993,L1043 U1028 7835s,82075,,, +329,USA,,OWU,b,West Woodward Woodward (OK),36.4375,-99.541667,,0.025,,7845,305,151,,,,999,L1020 U1024 7700s,82095,,, +329,CAN,,D,b,Carmanah (BC),48.604167,-124.791667,,0.025,,7902,328,152,,,,,,87077,,, +329,USA,,LXY,b,Mexia (TX),31.645833,-96.541667,,0.025,,8087,300,154,,,,3,L1014 U1025 9.4s,82089,,, +329,USA,,HMA,b,Hondo (TX),29.354167,-99.208333,,0.025,,8445,300,157,,,,996,L1027 U1024 5.0s,82082,,, +329,USA,,FIA,b,Florida Socorro (NM),34.104167,-106.875,,0.025,,8454,308,158,,,,,U1020 ,82078,,, +329,AUS,,CVM,b,Caversham (WA),-31.895833,115.958333,,0.025,,14040,97,176,,,,,,82077,,, +329,AUS,,NAR,b,Naranderra (NSW),-34.6875,146.541667,,0.025,,16323,74,184,,,,,L398 U398 9s,82090,,, +330,HOL,,SO,b,Eelde / Groningen (gro),53.229167,6.791667,,0.015,,127,12,68,,,,2,L400 U400 6.4s,82152,,, +330,DNK,,SB,b,Snderborg (sdk),54.5625,9.458333,,0.025,,340,35,76,,,,2,L403 U406 9.0s,82147,,, +330,D,,ABU,b,Altenburg / Nobitz (th),50.993889,12.521111,,0.025,,440,104,77,,,,3,L1027 U1033 ,82113,,, +330,F,,MB,b,Montbeliard / Courcelles (25),47.520833,6.958333,,0.025,,512,175,78,,,,,U4 ,ID+17 tone,82129,, +330,D,,HC,b,Heringsdorf (mev),53.854167,14.208333,,0.025,,557,67,79,,,,0,L1021 U1020 ,ID+6 gap,82123,, +330,I,,SRN,b,Saronno (va),45.645833,9.041667,,0.025,,744,164,80,,,,2,L1026 U1027 7.2s,82153,,, +330,XOE,,DGL,b,BHP Petroleum / Douglas,53.520833,-3.541667,,0.025,,686,287,80,,,,,L400 U400 6.2s,86405,,, +330,S,,SKS,b,Karlstad,59.395833,13.291667,,0.025,,916,25,82,,,,998,L410 U405 5.0s,82151,,, +330,SVK,,OB,b,Bratislava / M.R Stefanik / South (BA),48.104167,17.291667,,0.025,,893,116,82,,,,999,L1025 U1020 10.0s,ID+7 gap,82135,, +330,XOE,,CWP,b,Texaco / Captain Protector,58.3125,-1.791667,,0.025,,863,326,82,,,,,L394 U400 ,86404,,, +330,E,,LEN,b,Len / Virgen Del Camino (CAL-LE),42.604167,-5.625,,0.05,,1389,225,84,,,,239,L818 U1253 5.60s,ID+8 gap,82127,, +330,HRV,,ZRA,b,Zadar / Kakman (zd),43.979167,15.458333,,0.025,,1125,140,84,,,,310,L410 U1012 6.0s,ID+2 gap,82156,, +330,IRL,,NSM,b,Inishmaan Isl. (G),53.0625,-9.541667,,0.025,,1081,282,84,,,,,U375 4.7s,82130,,, +330,S,,LNA,b,Lena,59.520833,17.375,,0.025,,1069,35,84,,,,997,L406 U400 ,82128,,, +330,E,,G,b,Girona / Costa Brava (CAT-GI),41.9375,2.791667,,0.025,,1164,195,85,,,,2,L1016 U940 ,82120,,, +330,HNG,,NY,b,Nyregyhza (SSB),47.9375,21.708333,,0.025,,1184,107,85,,,,0,L1018 U1019 ,82131,,, +330,E,,RMA,b,Mlaga (AND-MA),36.645833,-4.458333,,0.08,,1919,211,87,,,,9983,L1033 U1021 ,ID+7 gap,82144,, +330,SRB,,ML,b,Kraljevo (Srb-rsk),43.770833,20.625,,0.025,,1403,126,87,,,,,L980 U870 ,ID+3 gap,86407,, +330,UKR,,RD,b,Rivne (RI),50.604167,26.125,,0.025,,1375,89,87,,,,952,U1024 7.0s,ID+5 gap,82142,, +330,UKR,,RW,b,Rivne (RI),50.645833,26.125,,0.025,,1374,89,87,,,,473,L1047 U1046 6.5s,ID+5 gap,82146,, +330,E,,AI,b,Alicante=Alacant (VAL-A),38.3125,-0.625,,0.025,,1628,202,89,,,,996,L356 U440 ,ID+6 gap,82114,, +330,ISL,,HN,b,Hornafjrur (au),64.270833,-15.208333,,0.025,,1835,326,91,,,,,U1020 8.0s,82124,,, +330,RUS,,PB,b,Moskva/Tushino (MV),55.8125,37.458333,,0.025,,2054,66,94,,,,,,86408,,, +330,UKR,,HA,b,Kharkiv / Osmova (KA),49.5625,36.208333,,0.025,,2097,86,94,,,,986,L1077 U980 ,ID+2 gap,82122,, +330,UKR,,HR,b,Kharkov / Osnova (KA),49.9375,36.208333,,0.025,,2083,85,94,,,,977,L1046 U962 ,ID+4 gap,82125,, +330,ISL,,RF,b,Rif,64.895833,-23.791667,,0.025,,2221,321,95,,,,,U1042 ,ID+4 gap,82143,, +330,NOR,,TV,b,Alta / Talvik,70.0625,22.958333,,0.025,,2168,17,95,,,,,,82154,,, +330,TUR,,KAD,b,Izmir/Kadifekale (ege-izm),38.413611,27.148333,,0.025,,2211,125,95,,,,983,L1053 U1020 ,Cont. ID,82126,, +330,RUS,,NZ,b,Ust-Labinsk (KD),45.229167,39.708333,,0.025,,2537,94,98,,,,0,L980 U980 30.0s,ID+26 gap,82133,, +330,LBY,,OA,b,Samah / Warehouse 59 (wah),28.104167,19.041667,,0.025,,2868,154,102,,,,0,L407 U406 5.0s,ID+2 gap,82134,, +330,RUS,,PM,b,Pechora (KO),65.104167,57.125,,0.025,,3159,43,105,,,,14,L948 U938 7.0s,82137,,, +330,MLI,,BO,b,Bamako / Senou (bam),12.520833,-8.041667,,0.025,,4588,202,119,,,,,U400 ,ID+3 gap,82116,, +330,XON,,2C,b,Panuke Platform, Offshore Nova Scotia,43.8125,-60.708333,,0.025,,4899,287,122,,,,,,DAID,82110, +330,CAN,,A9,b,Liverpool (NS),44.229167,-64.875,,0.025,,5141,290,124,,,,,U1002 10520s,DAID,82112,, +330,USA,,BH,b,Surry Bar Harbor (ME),44.520833,-68.291667,,0.025,,5339,292,126,,,,992,L1043 U1033 6.3s,82115,,, +330,CAN,,2A,b,South Indian Lake (MB),56.8125,-98.875,,0.05,,6129,320,131,,,,,U384 8999s,DBID,82109,, +330,USA,,SO,b,Suomi Marquette (MI),46.270833,-87.375,,0.025,,6356,305,137,,,,,L395 U401 ,87079,,, +330,KEN,,TH,b,Athi River (eas),-1.501944,37.020556,,0.025,,6615,144,139,,,,,,8300008,,, +330,CAN,,3G,b,Peggo (BC),59.270833,-120.125,,0.025,,6734,332,140,,,,,U397 7.3s,82111,,, +330,USA,,PWC,b,Pine River (MN),46.729167,-94.375,,0.025,,6702,309,140,,,,997,L1036 U1025 8015s,82140,,, +330,USA,,BWX,b,Starr-Browning (MT),48.604167,-113.125,,0.05,,7442,321,144,,,,,,87078,,, +330,PTR,,SJ,b,Patty (PR),18.395833,-66.125,,0.025,,7218,268,145,,,,998,L1037 U1035 5.98s,82149,,, +330,B,,PAG,b,Porto Alegre (RS),-29.979167,-51.208333,,1,,10706,227,149,,,,,L1023 U853 6564s,82136,,, +330,USA,,GLE,b,Gainesville (TX),33.729167,-97.208333,,0.025,,7946,302,152,,,,12,L1045 U7 6.0s,82121,,, +330,B,,RPR,b,Ribeiro Preto (SP),-21.145833,-47.791667,,0.2,,9687,229,153,,,,,,82145,,, +330,B,,YLA,b,Ilha (RJ),-22.770833,-43.208333,,0.2,,9616,225,153,,,,,,82155,,, +330,B,,CNA,b,Carolina (MA),-7.3125,-47.458333,,0.025,,8340,236,156,,,,,U1021 7123s,82117,,, +330,MEX,,CZM,b,Cozumel (qui),20.520833,-86.941667,,0.025,,8444,285,157,,,,55,L1181 U1290 7.4s,82119,,, +330,MYA,,MM,b,Mawlamyine,16.441389,97.657778,,0.025,,8656,79,159,,,,,,22100030,,, +330,USA,,MF,b,Missi Mc Allen (TX),26.270833,-98.291667,,0.025,,8663,297,159,,,,,U1024 8600s,86406,,, +330,CLM,,SIS,b,Puerto Ass (put),0.520833,-76.541667,,0.025,,9481,265,161,,,,0,L1033 U1033 8421s,82148,,, +330,INS,,NZ,b,Banda Aceh (AC-bac),5.520833,95.458333,,0.025,,9458,87,161,,,,0,,ID+6 gap,82132,, +330,TWN,,SK,b,Kaohsiung (KHS),22.580556,120.291667,,0.025,,9539,58,161,,,,0,9s,82150,,, +330,B,,PP,b,Metro (SP),-23.645833,-46.625,,0.025,,9869,227,163,,,,,,82139,,, +330,BOL,,R,b,La Paz (lpz),-16.520833,-68.208333,,0.025,,10443,248,164,,,,,,82141,,, +331,G,,GST,b,Gloucester (EN-GLO),51.895833,-2.208333,,0.05,,590,271,76,,,,995,L395 U382 5.3s,82162,,, +331,XOE,,JDY,b,Philips Peroleum / Judy,56.6875,2.375,,0.025,,572,334,79,,,,,,82164,,, +331,G,,GLW,b,Glasgow (SC-REN),55.854167,-4.458333,,0.025,,822,305,81,,,,997,L398 U397 6.3s,82160,,, +331,F,,TUR,b,Tours / Val De Loire (37),47.5625,0.791667,,0.015,,646,221,82,,,,,L398 U402 10.1s,ID+7 gap,82171,, +331,I,,DEC,b,Decimomannu (ca),39.354167,8.958333,,0.04,,1432,171,85,,,,998,L1020 U1072 ,ID+3.4 gap,82157,, +331,I,,GRT,b,Grottaglie (ta),40.4375,17.458333,,0.025,,1547,143,88,,,,0,L1020 U1020 ,ID+7 gap,82161,, +331,ALG,,HRM,b,Hassi R.Mel / Tilrempt / Oued Irarra (3),32.9375,3.291667,,0.025,,2147,188,94,,,,3,L1031 U1038 ,ID+5 gap,82163,, +331,AZR,,SC,b,Santa Cruz das Flores (flo),39.270833,-31.041667,,0.025,,3193,258,105,,,,1,L1025 U1024 8.0s,ID+6 gap,82169,, +331,GRL,,FH,b,Paamuit=Frederikshb (Kitaa) (kuj-nnt),61.979167,-49.625,,0.025,,3438,311,107,,,,998,L398 U402 8135s,82159,,, +331,ALS,,BZP,b,Bishop Galena (AK),64.729167,-156.791667,,1,,6943,352,126,,,,,L1040 U~1010 8.3s,87080,,, +331,USA,,JV,b,Catch Jeffersonville (IN),38.479167,-85.708333,,0.025,,6867,297,142,,,,994,L1034 U1027 5941s,82165,,, +331,USA,,PS,b,Dunez Pasco (WA),46.354167,-119.041667,,0.025,,7897,324,152,,,,0,L1030 U1028 6.2s,82168,,, +331,CLM,,UTI,b,tica (Zipaquir) (cun),5.1875,-74.475,,0.1,,8931,266,153,,,,,L1050 ,82172,,, +331,CHN,,DO,b,Qingzhou (FJ),26.5625,117.958333,,0.025,,9041,57,160,,,,993,L1038 U1024 ,82158,,, +331,SLV,,LAN,b,Amatecampo (San Salvadore) (ssl),13.395833,-89.125,,0.025,,9208,283,160,,,,974,L1032 U1036 4327s,82166,,, +331.5,F,,TLF,b,Toulouse / Francazal (31),43.604167,1.208333,,0.025,,1022,204,83,,,,-331.5,U6 28.0s,ID+23 tone,82173,, +332,HOL,,NV,b,Amsterdam / Schiphol (nho),52.145833,4.791667,,0.015,,111,273,62,,,,2,L432 U418 5.9s,82206,,, +332,F,,LL,b,Lille / Lesquin (59),50.5625,3.208333,,0.025,,281,234,76,,,,5,L400 U404 10.5s,82201,,, +332,XOE,,WHF,b,F16-A Platform,54.0625,4.041667,,0.025,,269,325,76,,,,,L398 U398 6.2s,ID+2 gap,82226,, +332,G,,SHM,b,Shoreham-by-Sea (EN-WSU),50.8125,-0.291667,,0.025,,486,255,78,,,,991,L406 U388 7.9s,82219,,, +332,I,,PDA,b,Padova (pd),45.395833,11.875,,0.025,,847,150,81,,,,,L1022 U1019 10.0s,ID+7 gap,86414,, +332,G,,OY,b,Aldergrove (NI-ANT),54.6875,-6.125,,0.025,,878,294,82,,,,17,L380 U414 11.0s,82207,,, +332,MNE,,RO,b,Tivat (TV),42.4375,18.541667,,0.025,,1408,135,87,,,,998,L1042 U1044 8.2s,ID+6 gap,82213,, +332,E,,EAL,b,Almagro (CAM-CR),38.9375,-3.791667,,0.025,,1663,212,90,,,,997,L1021 U1018 ,ID+4 gap,82186,, +332,POR,,FAR,b,Faro (agv),37.020833,-7.958333,,0.025,,2019,219,93,,,,0,L1024 U1026 7421s,ID+4 gap,82187,, +332,MRC,,SBI,b,Rabat / Sale (rsz),34.1875,-6.625,,0.025,,2248,213,95,,,,4,L815 U825 ,Cont. ID,82216,, +332,RUS,,LS,b,Ulyanovsk / Vostochny (UL),54.3125,48.291667,,0.025,,2758,68,101,,,,,L390 U393 ,IDx2,82202,, +332,RUS,,MR,b,Ulyanovsk / Vostochny (UL),54.229167,48.208333,,0.025,,2755,68,101,,,,620,L1160 U400 ,82205,,, +332,CAN,,YFM,b,La Grande 4 (QC),53.729167,-73.708333,,2,,5080,305,105,,,,0,L400 U406 10.2s,DAID,82229,, +332,IRN,,RSR,b,Ramsar (mzd),36.895833,50.708333,,0.025,,3823,98,111,,,,,U1020 9.0s,82215,,, +332,RUS,,RM,b,Tsentralny / Omsk (OM),54.9375,73.208333,,0.025,,4257,58,116,,,,,,82212,,, +332,CAN,,QT,b,Thunder Bay (ON),48.354167,-89.458333,,1,,6312,308,120,,,,997,L410 U404 10.2s,DAID,82211,, +332,CAN,,YTE,b,Cape Dorset (NU),64.229167,-76.541667,,0.025,,4667,320,120,,,,,U403 10.0s,ID+6 tone,82230,, +332,CAN,,VT,b,Buffalo Narrows (SK),55.854167,-108.458333,,0.5,,6611,324,126,,,,,U400 10.3s,DAID,82223,, +332,USA,,BE,b,Bedds Bedford (MA),42.479167,-71.375,,0.025,,5675,292,130,,,,2,L1035 U1040 5.53s,82174,,, +332,PAK,,BW,b,Bahawalpur (pjb),29.349722,71.718889,,0.025,,5824,89,131,,,,,,31500047,,, +332,USA,,BG,b,Smite Binghamton (NY),42.104167,-75.875,,0.025,,5985,294,133,,,,977,L1053 U1024 5942s,82175,,, +332,USA,,LG,b,Peths (NY),40.729167,-73.958333,,0.025,,5965,292,133,,,,988,L1045 U1021 6.06s,82199,,, +332,USA,,LGN,b,Peths New York (City) (NY),40.729167,-73.958333,,0.025,,5965,292,133,,,,,,82200,,, +332,USA,,DC,b,Oxonn Oxon Hill (Fort Foote Park) (MD),38.770833,-77.041667,,0.025,,6306,292,136,,,,985,L1055 U1028 5180s,82183,,, +332,USA,,PH,b,Phurn Port Huron (MI),42.854167,-82.625,,0.025,,6340,299,136,,,,,L1035 U1038 8201s,82208,,, +332,USA,,SG,b,Depre Green Bay (WI),44.395833,-88.125,,0.025,,6543,304,138,,,,985,L1047 U1023 6017s,82218,,, +332,USA,,DKA,b,Kenan Kenansville (NC),35.0625,-77.958333,,0.025,,6652,290,139,,,,995,L1014 U1053 5043s,82184,,, +332,USA,,LH,b,Landcaster (OH),39.729167,-82.541667,,0.025,,6575,296,139,,,,,,87083,,, +332,USA,,DN,b,Julip Danville (IL),40.270833,-87.541667,,0.025,,6834,300,141,,,,990,L1058 U1043 5979s,82185,,, +332,USA,,HK,b,Tawba Hickory (NC),35.770833,-81.291667,,0.025,,6808,292,141,,,,5,L1017 U1020 4.55s,82193,,, +332,USA,,VK,b,Vikor Devils Lake (ND),48.020833,-98.791667,,0.025,,6825,313,141,,,,998,L1030 U1025 8.7s,82222,,, +332,CAN,,XH,b,Medicine Hat (AB),50.020833,-110.791667,,0.05,,7215,321,142,,,,998,L396 U390 10.2s,DAID,82227,, +332,USA,,SBU,b,Blue Earth (MN),43.604167,-94.125,,0.025,,6941,307,142,,,,986,L1033 U1022 8.21s,82217,,, +332,USA,,VVV,b,Ortonville (MN),45.3125,-96.458333,,0.025,,6927,309,142,,,,,L1020 32.0s,AWOS-3,82224,, +332,USA,,CUL,b,Carmi (IL),38.104167,-88.125,,0.025,,7042,299,143,,,,2,L1015 U1018 6658s,82180,,, +332,USA,,FFL,b,Fairfield (IA),41.020833,-91.958333,,0.025,,7030,303,143,,,,5,L1018 U1017 6179s,82189,,, +332,USA,,ULH,b,Burwi Tullahoma (TN),35.479167,-86.208333,,0.025,,7139,295,144,,,,998,L1011 U1015 4186s,82221,,, +332,ALS,,MND,b,Mendenhall (AK),58.354167,-134.625,,0.025,,7237,339,145,,,,,,82203,,, +332,USA,,BVN,b,Alaby Albion (NE),41.729167,-98.041667,,0.025,,7310,308,146,,,,,U1048 6.3s,82177,,, +332,USA,,HEG,b,Herlong Jacksonville (FL),30.270833,-81.791667,,0.025,,7285,288,146,,,,,U1015 ,87081,,, +332,USA,,PL,b,Palee Tallahassee (FL),30.395833,-84.208333,,0.025,,7430,290,147,,,,,,82209,,, +332,CAN,,XT,b,Terrace (BC),54.354167,-128.541667,,0.025,,7466,333,148,,,,,U403 10.0s,DAID,82228,, +332,USA,,FCY,b,Forrest City (AR),34.9375,-90.791667,,0.025,,7463,298,148,,,,2,L1036 U1039 ,82188,,, +332,USA,,XDT,b,Tac X Stagefield Fort Rucker/Samson (AL),31.145833,-85.958333,,0.025,,7480,292,148,,,,,L1030 U1034 8.19s,86417,,, +332,USA,,IC,b,Piche Wichita (KS),37.5625,-97.458333,,0.025,,7631,304,149,,,,993,L1043 U1036 5895s,82195,,, +332,CAN,,WC,b,White Rock (Abbotsford) (BC),49.020833,-122.791667,,0.025,,7789,327,151,,,,,U369 10.4s,DAID,82225,, +332,USA,,FIS,b,Fish Hook Key West (FL),24.5625,-81.791667,,0.025,,7759,284,151,,,,988,L1052 U1032 8.5s,82190,,, +332,USA,,RPF,b,Carthage (TX),32.1875,-94.291667,,0.025,,7906,298,152,,,,17,L998 U1000 5664s,82214,,, +332,USA,,CAO,b,Clayton (NM),36.4375,-103.125,,0.025,,8043,307,153,,,,0,L1015 U1018 6.4s,82178,,, +332,CHN,,JA,b,Dexin (JL),42.854167,129.375,,0.025,,8121,40,154,,,,997,L1056 U1120 8s,82196,,, +332,USA,,IA,b,Laker Portland (OR),45.520833,-122.458333,,0.025,,8113,325,154,,,,,L1051 U1022 5.9s,87082,,, +332,USA,,LBH,b,Laker Portland (OR),45.520833,-122.458333,,0.025,,8113,325,154,,,,983,L1053 U1020 6.5s,82198,,, +332,USA,,CZX,b,Crosbyton (TX),33.604167,-101.208333,,0.025,,8186,304,155,,,,1,L1020 U1025 6853s,82181,,, +332,USA,,GUO,b,Georgetown (TX),30.6875,-97.708333,,0.025,,8240,300,155,,,,0,L1026 U1018 5643s,82191,,, +332,J,,HR,b,Hateruma (kyu-oki),24.0625,123.791667,,0.025,,9600,54,162,,,,,L1020 ,DAID,82194,, +332,HWA,,POA,b,Pahoa (HI),19.5625,-154.958333,,0.025,,11843,342,169,,,,0,L1018 U1018 8.5s,82210,,, +332,AUS,,MNE,b,Mount Keith (WA),-27.270833,120.541667,,0.05,,13987,90,173,,,,,,82204,,, +332,AUS,,DBY,b,Derby (WA),-17.354167,123.708333,,0.025,,13375,79,174,,,,,U1006 9.8s,82182,,, +332,AUS,,BHI,b,Broken Hill (NSW),-31.979167,141.458333,,0.1,,15776,76,176,,,,,L1020 U1020 9s,82176,,, +332,AUS,,BAR,b,Barcaldine (QLD),-23.5625,145.291667,,0.025,,15311,64,180,,,,,L1020 9.5s,86412,,, +332,AUS,,CAS,b,Casino (NSW),-28.854167,153.041667,,0.05,,16246,60,181,,,,997,L407 U400 9.1s,82179,,, +332,AUS,,KII,b,King Island (TAS),-39.895833,143.875,,0.025,,16521,84,184,,,,,L400 U400 9s,TWEB,82197,, +332.5,G,,CAM,b,Cambridge (EN-CAM),52.229167,0.208333,,0.025,,423,274,77,,,,502,L396 U404 9.9s,ID+6 gap,82233,, +332.5,J,,TS,b,Tokushima (shi-tok),34.145833,134.616667,,0.025,,9186,41,160,,,,500,L1000 U1021 20s,82234,,, +333,XOE,,SHO,b,Shell / Esso Sean A Platform,53.1875,2.875,,0.025,,267,298,76,,,,998,L423 U397 ,ID+5 gap,82246,, +333,D,,PI,b,Schwerin / Parchim (mev),53.479167,11.875,,0.025,,398,65,77,,,,1,L1031 U1033 ,82244,,, +333,XOE,,GFC,b,Statoil Gullfaks C Platform,61.229167,2.291667,,0.05,,1044,348,80,,,,3,L405 U415 ,82237,,, +333,G,,PH,b,Penzance Heliport (EN-CNW),50.145833,-5.541667,,0.025,,861,260,82,,,,,,82243,,, +333,S,,LE,b,Vsters/Hasslo,59.645833,16.708333,,0.025,,1053,33,84,,,,0,L397 U403 ,82239,,, +333,FIN,,G,b,Kemi-Tornio / Marttala,65.770833,24.541667,,0.025,,1826,27,91,,,,2,L406 U408 ,82236,,, +333,GRC,,KAO,b,Kassos (seg-dod),35.4375,26.958333,,0.025,,2464,131,98,,,,2,L397 U400 ,ID+12 gap,82238,, +333,RUS,,M,b,Maykop (AD),44.645833,40.125,,0.025,,2597,95,99,,,,,,IDx2,82240,, +333,AZE,,T,b,Nakhchivan (nxc),39.1875,45.458333,,0.025,,3306,100,106,,,,,,82249,,, +333,BFA,,OUA,b,Ouagadougou (kad),12.354167,-1.541667,,0.05,,4478,192,115,,,,,,82242,,, +333,CPV,,SVT,b,So Vicente (svc-slz),16.8125,-25.041667,,0.025,,4796,227,121,,,,,,82248,,, +333,VEN,,SFD,b,San Fernando de Apure (apu),7.895833,-67.458333,,1,,8217,262,139,,,,,U1015 ,82245,,, +333,USA,,HQU,b,Thomson Mcduffie (GA),33.520833,-82.541667,,0.025,,7068,291,144,,,,,U1045 ,87084,,, +333,USA,,STI,b,Sturgeon Mountain Home (ID),43.104167,-115.625,,0.025,,8057,320,154,,,,0,L1014 U1021 8.5s,82247,,, +333,CHN,,NS,b,Nanxiong (GD),25.104167,114.291667,,0.05,,8958,61,157,,,,,,82241,,, +333.5,I,,VOG,b,Voghera (pv),44.979167,8.958333,,0.025,,815,166,81,,,,500,L1020 U1020 10.0s,ID+5 gap,82252,, +333.5,XOE,,HRD,b,Harding B Platform,59.145833,1.291667,,0.025,,845,340,81,,,,500,L411 U409 ,82251,,, +334,D,,HDM,b,Coleman (rlp),49.520833,8.375,,0.025,,319,154,76,,,,993,L1039 U1022 8.9s,82262,,, +334,XOE,,ZT,b,F15-A Platform,54.229167,4.791667,,0.025,,259,336,76,,,,,,82282,,, +334,F,,BGW,b,Paris / Le Bourget (93),48.9375,2.291667,,0.025,,457,221,78,,,,2,L400 U400 10.2s,82257,,, +334,DNK,,FAU,b,Bornholm / Ronne / Fauna,55.020833,14.875,,0.025,,645,57,79,,,,,L408 U410 9.0s,82259,,, +334,SVN,,MR,b,Maribor (mb),46.354167,15.791667,,0.049,,933,130,79,,,,5,L388 U417 4.3s,ID+2gap,82267,, +334,F,,SAL,b,Salon De Provence (13),43.604167,5.125,,0.025,,951,186,82,,,,,U5 ,82274,,, +334,IRL,,GMN,b,Gormanston (MH),53.645833,-6.220833,,0.025,,863,286,82,,,,983,L417 U421 5.0s,82260,,, +334,NOR,,OPA,b,Oslo / Gardermoen / Oppaker (os),60.1875,11.541667,,0.025,,952,17,82,,,,14,L361 U390 7.7s,82268,,, +334,F,,YN,b,La Roche Sur Yon (85),46.6875,-1.291667,,0.015,,820,226,83,,,,,U5 ,DAID,82280,, +334,F,,DX,b,Dax/Seyresse (40),43.687778,-1.076389,,0.025,,1089,214,84,,,,,,2500015,,, +334,IRL,,KER,b,Kerry / Farranfore (KY),52.1875,-9.541667,,0.025,,1086,277,84,,,,2,L407 U400 5.4s,82264,,, +334,UKR,,VI,b,Verchnie Vysotske,48.9375,23.041667,,0.025,,1224,100,85,,,,15,L1059 U1044 ,IDx2 + 23 gap,82278,, +334,I,,AME,b,Manfredonia / Amendola (fg),41.520833,15.875,,0.025,,1378,145,87,,,,0,L1018 U1023 ,ID+6 gap,82255,, +334,FIN,,S,b,Kuopio / Jl,63.020833,27.791667,,0.025,,1744,38,90,,,,,U400 ,82273,,, +334,ISL,,AR,b,Akureyri (ne),65.770833,-18.125,,0.025,,2044,327,93,,,,,L952 U1050 5.0s,ID+3 gap,82256,, +334,RUS,,A,b,Arkhangelsk / Talagi (AR),64.604167,40.708333,,0.025,,2389,41,97,,,,,,82253,,, +334,RUS,,K,b,Arkhangelsk / Talagi (AR),64.604167,40.791667,,0.025,,2393,41,97,,,,,L1026 U1025 ,82263,,, +334,LBY,,OXY,b,Alpha 103 (wah),29.020833,20.791667,,0.025,,2828,150,101,,,,0,L1020 U1020 ,ID+2 gap,82269,, +334,IRN,,SRS,b,Sarakhs (rkh),36.495278,61.073889,,0.025,,4557,90,119,,,,,,82275,,, +334,CAN,,YER,b,Fort Severn (ON),55.979167,-87.625,,0.2,,5666,314,121,,,,,U408 10.2s,DAID,82279,, +334,SEN,,SZR,b,Ziguinchor (zig),12.5625,-16.291667,,0.025,,4844,213,121,,,,,,82276,,, +334,USA,,RM,b,Noxks Rockland (ME),44.104167,-69.208333,,0.025,,5425,292,127,,,,990,L1055 U1037 ,82272,,, +334,CAN,,YSH,b,Smiths Falls Montague (ON),44.895833,-76.041667,,0.025,,5794,297,131,,,,,U402 10.19s,DAID,82281,, +334,USA,,BNR,b,Benton Ridge Findlay (OH),41.020833,-83.625,,0.025,,6541,298,138,,,,0,L1040 U1035 8219s,82258,,, +334,USA,,LH,b,Egrow Bloomington (IL),40.5625,-88.875,,0.025,,6889,301,142,,,,999,L1041 U1051 5946s,82265,,, +334,CAN,,P2,b,Wetaskiwin (AB),52.979167,-113.375,,0.025,,7059,324,144,,,,,U389 10.4s,DAID,82270,, +334,USA,,UU,b,Seyer Corinth (MS),35.020833,-88.625,,0.025,,7325,297,146,,,,995,L1033 U1057 8524s,82277,,, +334,ALS,,HCP,b,Kulik Lake Nonvianuk Lake (AK),59.020833,-155.625,,0.025,,7552,350,148,,,,,,86422,,, +334,HND,,PIC,b,Picacho (fmz),14.145833,-87.208333,,0.05,,9014,282,157,,,,,U1021 ,82271,,, +334,NZL,,HD,b,Whitford,-36.9375,175.041667,,0.25,,18108,32,180,,,,,U1038 8.12s,82261,,, +335,E,,TON,b,Torralba de Aragon (ARA-HU),41.9375,-0.541667,,0.3,,1246,208,75,,,,3,L1007 U1012 ,ID+7 gap,82336,, +335,F,,MC,b,Montlucon / Domerat (03),46.354167,2.458333,,0.05,,701,206,77,,,,,U15 ,DAID,82318,, +335,XOE,,CVH,b,Cavendish,54.479167,1.708333,,0.025,,409,312,77,,,,,,82300,,, +335,G,,WCO,b,Westcott (EN-BKS),51.854167,-0.958333,,0.025,,505,270,78,,,,997,L403 U405 6.8s,82340,,, +335,SUI,,BER,b,Bern / Belp (be),46.895833,7.541667,,0.025,,585,172,79,,,,0,L398 U400 10.1s,ID+6 gap,82288,, +335,S,,AC,b,Hultsfred,57.520833,15.791667,,0.025,,849,41,81,,,,,U390 ,82283,,, +335,XOE,,SCO,b,Amerada Hess / Scott Platform,58.270833,0.208333,,0.025,,789,333,81,,,,10,L402 U421 9.6s,82332,,, +335,HNG,,BL,b,Budapest/Ferenc Liszt Int. (Bud),47.479167,19.208333,,0.025,,1051,114,83,,,,485,L1022 U~1020 10.0s,ID+8 gap,82290,, +335,S,,NAK,b,Stockholm / Bromma / Nacka,59.270833,18.208333,,0.025,,1084,38,84,,,,1,L399 U401 ,82323,,, +335,MNE,,POD,b,Podgorica (PG),42.395833,19.291667,,0.025,,1449,133,87,,,,,U1077 ,ID+7 gap,82326,, +335,E,,L,b,Madrid / Getafe (MAD-M),40.270833,-3.708333,,0.025,,1526,214,88,,,,,U1023 ,ID+2 gap,82313,, +335,E,,Z,b,Ibiza=Eivissa (BAL-IB),38.895833,1.375,,0.025,,1520,197,88,,,,,U1019,82344,,, +335,ISL,,EL,b,Ellidavatn,64.0625,-21.791667,,0.1,,2095,320,88,,,,2,L1028 U1031 ,ID+2 gap,82305,, +335,NOR,,LR,b,Mosjoen / Laksfors,65.604167,13.291667,,0.025,,1550,12,88,,,,17,L352 U384 ,82316,,, +335,BUL,,S,b,Sofia (sof),42.6875,23.458333,,0.025,,1649,123,89,,,,,U1020 ,82331,,, +335,MDA,,CA,b,Marculest,47.895833,28.291667,,0.025,,1625,98,89,,,,,,82292,,, +335,BUL,,G,b,Gorna Oryahovitsa (vlt),43.154444,25.685833,,0.025,,1746,117,90,,,,,U1140 ,ID+6s gap + tone,82309,, +335,I,,PAN,b,Pantelleria (tp),36.8125,11.958333,,0.025,,1756,163,91,,,,0,L1021 U1019 10.0s,ID+5 gap,82325,, +335,BUL,,B,b,Burgas (bur),42.5625,27.458333,,0.025,,1898,116,92,,,,,U1020 ,ID+3 gap,82285,, +335,BUL,,W,b,Varna (vrn),43.229167,27.791667,,0.025,,1870,113,92,,,,7,L1020 U1032 5.8s,ID+4 gap,82339,, +335,ISL,,VA,b,Egilsstair/Vad (au),65.104167,-14.625,,0.025,,1871,329,92,,,,,U1020 ,82338,,, +335,RUS,,FV,b,Venev,54.354167,38.208333,,0.025,,2113,71,94,,,,,L1020 ,2xID + 20,82308,, +335,UKR,,DP,b,Dnipopetrovsk (DP),48.354167,35.041667,,0.025,,2065,90,94,,,,2,L1037 U1041 ,IDx2 + 20 gap, also 2h on 671 kHz,82302, +335,UKR,,DR,b,Dnipropetrovsk (DP),48.354167,35.208333,,0.025,,2076,90,94,,,,997,L945 U1055 ,IDx2 + 6 gap,82304,, +335,CAN,,FK,b,Junction (Deer Lake) (NL),49.270833,-57.291667,,0.025,,4352,292,116,,,,,U400 10.6s,ID+6 tone,82306,, +335,CAN,,YUT,b,Repulse Bay (NU),66.520833,-86.208333,,0.025,,4953,325,123,,,,,U404 10.33s,DAID,82343,, +335,CAN,,YLD,b,Chapleau (ON),47.770833,-83.375,,0.1,,6019,304,127,,,,2,L400 U408 10.4s,DAID,82342,, +335,USA,,PV,b,Rench Providenence (RI),41.645833,-71.458333,,0.025,,5740,291,130,,,,998,L1044 U1040 ,82327,,, +335,USA,,SW,b,Neely Newburgh (NY),41.479167,-74.208333,,0.025,,5926,293,132,,,,1,L1012 U1025 8.53s,82335,,, +335,CAN,,K,b,Kilo / Waterloo Rgnl (ON),43.479167,-80.291667,,0.025,,6154,298,135,,,,,,87086,,, +335,CAN,,YXO,b,Carmi (BC),49.479167,-119.041667,,0.5,,7603,325,136,,,,,,87087,,, +335,CAN,,ZKF,b,Kitchener (Wellington) (ON),43.479167,-80.291667,,0.015,,6154,298,137,,,,995,L396 U394 10.18s,DAID,82345,, +335,USA,,COQ,b,Cloquet (MN),46.6875,-92.541667,,0.025,,6608,308,139,,,,995,L1038 U1028 7898s,82298,,, +335,USA,,MDZ,b,Medford (WI),45.104167,-90.291667,,0.025,,6609,306,139,,,,,U1014 7692s,82319,,, +335,USA,,LUK,b,Cincinnati (OH),39.145833,-84.375,,0.025,,6733,297,140,,,,2,L1032 U1035 7903s,82317,,, +335,USA,,MK,b,Suzze Marion (VA),36.9375,-81.208333,,0.025,,6711,293,140,,,,947,L77 U978 4.78s,82321,,, +335,USA,,RWN,b,Winamac (IN),41.104167,-86.625,,0.025,,6713,300,140,,,,,U1020 ,82330,,, +335,USA,,FEP,b,Freeport (IL),42.229167,-89.625,,0.025,,6799,303,141,,,,,U1020 ,87085,,, +335,USA,,FL,b,Alcot Florence (SC),34.1875,-79.875,,0.025,,6844,290,141,,,,1,L1017 U1022 8600s,82307,,, +335,CAN,,B3,b,Jedney Airstrip (Pink Mountain) (BC),57.229167,-122.208333,,0.025,,6990,332,143,,,,,U400 ,82286,,, +335,USA,,CK,b,Snuff Clarksville (TN),36.520833,-87.375,,0.025,,7126,297,144,,,,993,L1040 U1029 6035s,82295,,, +335,USA,,CNC,b,Chariton (IA),41.020833,-93.375,,0.025,,7110,304,144,,,,,U1030 5.8s,82296,,, +335,USA,,MEY,b,Mapleton (IA),42.1875,-95.791667,,0.025,,7149,307,144,,,,1,L1030 U1035 7.35s,82320,,, +335,USA,,SV,b,Wassa Savannah (GA),32.020833,-80.958333,,0.025,,7088,289,144,,,,996,L1027 U1028 6000s,82333,,, +335,USA,,AWS,b,Lawson Columbus (GA),32.3125,-85.041667,,0.025,,7325,292,146,,,,998,L1056 U1046 9808s,82284,,, +335,B,,URP,b,Urubupung (SP),-20.770833,-51.541667,,1,,9849,232,147,,,,,L1036 ,82337,,, +335,USA,,BDX,b,Broadus (MT),45.4375,-105.375,,0.025,,7369,315,147,,,,5,L1020 U1033 6.3s,82287,,, +335,USA,,LEE,b,Leesburg (FL),28.8125,-81.791667,,0.025,,7405,287,147,,,,998,L1031 U1033 4458s,82314,,, +335,USA,,BV,b,Almnd Batesville (AR),35.6875,-91.791667,,0.025,,7460,299,148,,,,998,L1032 U1027 7974s,82291,,, +335,USA,,CNK,b,Concordia (KS),39.5625,-97.625,,0.025,,7470,306,148,,,,10,L1061 U1008 6.9s,82297,,, +335,USA,,CVP,b,Capitol Helena (MT),46.604167,-111.958333,,0.025,,7573,319,149,,,,6,L1027 U1040 7.8s,82301,,, +335,USA,,ID,b,Jeffe Independence (KS),37.0625,-95.791667,,0.025,,7579,303,149,,,,995,L1020 U1010 8.6s,82310,,, +335,USA,,CDH,b,Camden (AR),33.604167,-92.791667,,0.025,,7696,298,150,,,,,U1060 ,82294,,, +335,USA,,RQO,b,El Reno (OK),35.479167,-98.041667,,0.025,,7843,303,151,,,,,U1019 6.2s,82329,,, +335,USA,,IHS,b,Ironhorse Fort Carson (CO),38.6875,-104.791667,,0.025,,7933,310,152,,,,986,L1054 U1032 8.0s,82311,,, +335,USA,,OPL,b,St Landry Opelousas (LA),30.645833,-92.125,,0.025,,7906,296,152,,,,998,L1045 U1035 7739s,82324,,, +335,COM,,FXZ,b,Grande Glorieuse,-11.551389,47.283611,,0.025,,8087,138,154,,,,,,10000004,,, +335,MYA,,BGN,b,Bagan,21.180833,94.928056,,0.025,,8067,78,154,,,,,,22100015,,, +335,SEY,,COE,b,Coetivy,-7.145833,56.278056,,0.025,,8102,127,154,,,,,,11500013,,, +335,USA,,CV,b,Hisan Clovis (NM),34.354167,-103.208333,,0.025,,8232,306,155,,,,0,L1040 U1038 6.0s,82299,,, +335,TWN,,LK,b,Taipei (TPS),25.0625,121.458333,,0.05,,9377,56,158,,,,14,L1016 U1044 ,82315,,, +335,USA,,DR,b,Kotti Del Rio (TX),29.4375,-100.958333,,0.025,,8541,301,158,,,,997,L1020 U1016 8.6s,82303,,, +335,CHN,,JF,b,Shengxian (ZJ),29.604167,120.791667,,0.025,,8923,53,159,,,,,7s,82312,,, +335,USA,,CC,b,Kanan Concord (CA),38.0625,-122.041667,,0.025,,8817,321,159,,,,0,L1026 U1030 6.3s,82293,,, +335,AUS,,BHI,b,Broken Hill (NSW),-31.979167,141.458333,,0.1,,15776,76,176,,,,,,82289,,, +335,AUS,,AS,b,Alice Springs (NT),-23.777953,133.873522,,0.025,,14600,75,178,,,,,U1000 20s,86423,,, +335,AUS,,YAS,b,Yass (NSW),-34.8125,149.041667,,0.025,,16496,72,184,,,,,L400 U404 9s,82341,,, +336,XOE,,HWB,b,Harald B Platform,56.354167,4.291667,,0.025,,492,345,78,,,,5,L400 U411 6.0s,82354,,, +336,S,,LT,b,Halmstad,56.979167,12.875,,0.025,,683,35,80,,,,0,L406 U404 ,82356,,, +336,G,,AQ,b,Aberdeen (SC-ABC),57.145833,-2.375,,0.025,,795,318,81,,,,994,L404 U394 7.0s,82348,,, +336,NOR,,BTA,b,Bergen / Flesland / Bratta (ho),60.0625,5.291667,,0.025,,887,356,82,,,,1,L399 U402 8.0s,82351,,, +336,NOR,,RS,b,Roros,62.5625,11.291667,,0.025,,1198,12,85,,,,991,L383 U381 ,82364,,, +336,FIN,,M,b,Mikkeli,61.6875,27.125,,0.025,,1635,41,89,,,,,,82357,,, +336,POR,,MTL,b,Monte Real (lei),39.895833,-8.875,,0.025,,1792,227,91,,,,0,L1130 U940 ,82360,,, +336,TUR,,HTY,b,Hatay (akd-hat),36.354167,36.291667,,0.025,,2922,115,102,,,,,,82353,,, +336,GRL,,AA,b,Aasiaat (qaa-aas),68.729167,-52.791667,,0.025,,3541,324,108,,,,,,82347,,, +336,GRL,,QQ,b,Qaanaaq=Thule (qaa-qaq),77.479167,-69.291667,,0.025,,4065,339,114,,,,,L405 5.8s,82362,,, +336,CAN,,BV,b,Champlain (QC),46.854167,-71.291667,,0.025,,5370,297,127,,,,,U403 10282s,DAID,82352,, +336,USA,,PV,b,Naada Atlantic City (NJ),39.479167,-74.708333,,0.025,,6105,291,134,,,,,U1050 ,82361,,, +336,CAN,,LF,b,La Salle (MB),49.645833,-97.291667,,0.05,,6618,313,136,,,,5,L397 U394 9.5s,DAID,82355,, +336,USA,,BDB,b,Accomack Melfa (VA),37.5625,-75.791667,,0.025,,6319,290,136,,,,,U1024 5334s,82350,,, +336,USA,,MA,b,Wexford Cadillac (MI),44.229167,-85.541667,,0.025,,6407,302,137,,,,,L1036 U1025 6013s,86429,,, +336,USA,,AZS,b,Azalea Park Charlottesville (VA),38.020833,-78.541667,,0.025,,6459,292,138,,,,2,L1020 U1021 8600s,82349,,, +336,USA,,MCZ,b,Williamston (NC),35.854167,-77.208333,,0.025,,6542,290,138,,,,0,L1026 U1027 6586s,82359,,, +336,USA,,RS,b,Muffe Fort Meyers (FL),26.479167,-81.875,,0.025,,7604,286,149,,,,991,L1046 U1033 8012s,82363,,, +336,TZA,,MT,b,Mtwara (mtw),-10.332222,40.184444,,0.025,,7657,144,150,,,,,,11400007,,, +337,D,,LHR,b,Lahr / Schwarzwald (bw),48.354167,7.791667,,0.025,,429,166,77,,,,998,L1024 U1016 8.0s,ID+5 gap,82374,, +337,G,,WTN,b,Warton (EN-LNC),53.770833,-2.875,,0.025,,648,290,79,,,,993,L408 U391 8.4s,82381,,, +337,G,,EX,b,Exeter (EN-DVN),50.770833,-3.291667,,0.025,,688,261,80,,,,14,L392 U421 9.6s,82368,,, +337,I,,RMG,b,Romagnano Sesia (no),45.645833,8.375,,0.025,,733,168,80,,,,36,L1022 U1032 ,ID+4 gap,82378,, +337,S,,OZ,b,Sderhamn / Skallen,61.229167,17.208333,,0.025,,1206,29,85,,,,997,L404 U395 ,82377,,, +337,I,,AH,b,Alghero (ss),40.6875,8.291667,,0.025,,1278,173,86,,,,2,L1019 U1020 8.0s,ID+6 gap,82367,, +337,FRO,,MY,b,Myggenaes (vgo),62.106875,-7.587767,,0.025,,1390,328,87,,,,990,L429 U409 12.0s,ID+6 gap,82375,, +337,SRB,,VRN,b,Vranje (Srb-pcn),42.555342,21.911581,,0.04,,1573,126,87,,,,18,L986 U1023 10.0s,ID+7 tone,82380,, +337,FIN,,KAJ,b,Kajaani / Koutaniemi,64.270833,27.541667,,0.025,,1816,34,91,,,,2,L406 U410 ,82373,,, +337,RUS,,UP,b,Zenzeli,45.9375,47.041667,,0.025,,2999,87,103,,,,985,L1050 U1020 ,IDx2 + 20 gap,82379,, +337,IRN,,IFN,b,Esfahan / Shahid Beheshti Intl (esf),32.729167,51.875,,0.025,,4215,103,115,,,,3,L702 U663 4.6s,Cont. ID,82372,, +337,CAN,,1Z,b,Kerrobert (SK),51.854167,-109.041667,,0.2,,6979,321,134,,,,,,87088,,, +337,CAN,,7D,b,Hudson Bay (SK),52.854167,-102.208333,,0.025,,6593,318,139,,,,,L413 U414 8172s,82366,,, +337,USA,,FF,b,Hamre Fergus Falls (MN),46.229167,-96.041667,,0.025,,6830,310,141,,,,998,L1050 U1040 6.0s,82369,,, +337,CAN,,1Q,b,Testlantlints Rock (BC),54.1875,-132.958333,,0.025,,7612,336,149,,,,,U420 ,DAID,82365,, +337,USA,,NA,b,Maagg Santa Ana (CA),33.6875,-117.875,,0.025,,9049,316,160,,,,0,L1040 U1038 6.0s,82376,,, +337,J,,HM,b,Haneda (kan-tok),35.5625,139.791667,,0.025,,9268,37,161,,,,0,L1020 U1000 5s,82371,,, +337.5,XOE,,GNT,b,Shell / Esso Gannet A Platform,57.1875,0.958333,,0.025,,664,330,80,,,,505,L400 U410 ,82382,,, +337.5,AFS,,RA,b,Rand (GT),-26.4375,28.291667,,0.1,,8991,160,154,,,,-337.5,U1023 7.44s,82383,,, +338,XOE,,IAP,b,Inde 23 A / Perenco UL Ltd Platform,53.3125,2.541667,,0.025,,293,299,76,,,,2,L398 U402 5.5s,82403,,, +338,G,,FNY,b,Robin Hood / Doncaster / Finningley (EN-SYK),53.479167,-1.041667,,0.025,,523,290,78,,,,2,L414 U403 6.5s,82395,,, +338,D,,MNW,b,Mnchen (bay),48.374167,11.914167,,0.025,,570,135,79,,,,2,L1020 U1022 5.3s,ID+1 gap,82411,, +338,F,,NC,b,Nice / Cote Dazur (06),43.604167,7.125,,0.04,,947,177,80,,,,,U2 ,ID+16 tone,82414,, +338,S,,OA,b,Jnkping,57.8125,14.125,,0.025,,802,35,81,,,,999,L399 U399 ,82415,,, +338,F,,GU,b,Brest / Guipavas (29),48.479167,-4.291667,,0.025,,860,246,82,,,,,U3 ,ID+16 tone,82397,, +338,MDR,,PST,b,Porto Santo / Ilheu De Baixo (pst),33.0625,-16.375,,2,,2798,230,82,,,,1,L1030 U1016 7.1s,ID+3 gap,82420,, +338,NOR,,RST,b,Rst (no),67.520833,12.125,,0.025,,1741,8,90,,,,998,L400 U396 9.97s,82423,,, +338,RUS,,VU,b,Khotilovo / Novyj,57.645833,34.125,,0.025,,1861,60,92,,,,0,L868 U869 ,IDx2 + 6.5 gap,82433,, +338,NOR,,SA,b,Bardufoss / Sorreisa,69.104167,18.208333,,0.025,,1988,14,93,,,,0,L400 U400 9.95s,82425,,, +338,RUS,,M,b,Moskva/Sheremetyevo (MV),55.979167,37.375,,0.025,,2049,66,93,,,,,L1010 ,ID+5 gap,82408,, +338,RUS,,A,b,Moskva/Sheremetyevo (MV),55.979167,37.458333,,0.025,,2054,66,94,,,,,,82385,,, +338,TUR,,ES,b,Ankara / Esenboga (ica-ank),40.1875,33.041667,,0.025,,2421,113,97,,,,988,L1040 U1020 ,Cont. ID,82391,, +338,TUR,,EZS,b,Elazig LTCA (dad-ela),38.596792,39.283958,,0.025,,2939,108,102,,,,17,L1020 U1055 ,Cont. ID,82393,, +338,CAN,,YPX,b,Puvirnituq (QC),60.0625,-77.291667,,0.5,,4909,315,109,,,,,U400 10.2s,DAID,82436,, +338,CAN,,5Y,b,Trenton (NS),45.604167,-62.625,,0.025,,4908,290,122,,,,199,L~400 U398 10.35s,DAID,82384,, +338,CAN,,ZEM,b,Eastmain (QC),52.229167,-78.541667,,0.025,,5441,306,127,,,,,U393 10.4s,DAID,82437,, +338,ALS,,CMQ,b,Campbell Lake (Anchorage) (AK),61.1875,-150.041667,,1,,7245,348,129,,,,0,L1032 U1028 6.0s,TWEB,82388,, +338,PAK,,LO,b,Lahore (pjb),31.444444,74.403889,,0.025,,5844,85,131,,,,,,31500035,,, +338,USA,,YN,b,Fetch Youngstown / Warren (OH),41.1875,-80.625,,0.025,,6346,296,136,,,,983,L1063 U1026 5602s,82435,,, +338,USA,,DE,b,Madds Detroit (MI),42.479167,-83.125,,0.025,,6399,299,137,,,,998,L1047 U1047 5841s,82390,,, +338,USA,,POB,b,Pope Fayetteville (NC),35.229167,-78.958333,,0.05,,6703,290,137,,,,543,L1032 U1018 7760s,82418,,, +338,USA,,HE,b,Shebb Sheboygan (WI),43.854167,-87.791667,,0.025,,6566,303,139,,,,994,L1020 U1018 5966s,82399,,, +338,USA,,LH,b,Caser Lancaster (OH),39.729167,-82.541667,,0.025,,6575,296,139,,,,998,L1006 U1035 4.58s,82405,,, +338,USA,,MS,b,Kinte New Orleans (LA),30.020833,-90.375,,0.4,,7851,294,139,,,,,L1035 8166s,82413,,, +338,USA,,AP,b,Vagey Minneapolis (MN),44.8125,-93.291667,,0.025,,6798,307,141,,,,510,L~1000 U1020 ,82386,,, +338,USA,,LM,b,Oblio St Louis (MO),38.8125,-90.458333,,0.05,,7123,301,141,,,,991,L1039 U1055 6258s,82406,,, +338,USA,,UMP,b,Metropolitan Indianapolis (IN),39.9375,-86.041667,,0.025,,6771,299,141,,,,998,L1022 U1021 6.15s,82431,,, +338,CAN,,XG,b,Lakeshore (Watson Lake) (YT),60.104167,-128.791667,,0.025,,6912,337,142,,,,,,82434,,, +338,USA,,VTI,b,Garrison Vinton (IA),42.229167,-92.041667,,0.025,,6937,304,142,,,,991,L1037 U1020 4.6s,82432,,, +338,CAN,,ZU,b,Whitecourt (AB),54.0625,-115.458333,,0.025,,7043,326,143,,,,,U392 10196s,DAID,82438,, +338,USA,,GY,b,Dyana Greenville (SC),34.6875,-82.458333,,0.025,,6969,292,143,,,,,U1023 6051s,82398,,, +338,USA,,GFZ,b,Greenfield (IA),41.3125,-94.458333,,0.025,,7147,305,144,,,,,L1024 U1025 6335s,82396,,, +338,USA,,SHL,b,Sheldon (IA),43.229167,-95.875,,0.025,,7067,307,144,,,,21,L1024 U1008 4821s,82426,,, +338,USA,,PBT,b,Proberta Red Bluff (CA),40.104167,-122.208333,,0.5,,8626,322,145,,,,990,L1045 U1023 7.5s,82417,,, +338,USA,,CYR,b,Caidy Cairo (GA),30.895833,-84.125,,0.025,,7384,291,147,,,,0,L1025 U1023 7381s,82389,,, +338,USA,,FJ,b,Luuce (FL),27.479167,-80.458333,,0.025,,7428,285,147,,,,990,L1052 U1039 6028s,82394,,, +338,USA,,GGY,b,Gragg-Wade (AL),32.854167,-86.625,,0.025,,7380,294,147,,,,,U1021 6.77s,86434,,, +338,USA,,JZ,b,Newbn Lawrence (KS),38.895833,-95.125,,0.025,,7386,304,147,,,,987,L1060 U1041 6010s,82404,,, +338,USA,,PSS,b,Prosser Hastings (NE),40.6875,-98.458333,,0.025,,7420,307,147,,,,0,L1035 U1046 8.08s,82419,,, +338,USA,,RYN,b,Ryan Tucson (AZ),32.145833,-111.125,,0.4,,8858,310,147,,,,995,L1041 U1021 8.6s,82424,,, +338,USA,,BL,b,Benza Bellingham (WA),48.895833,-122.541667,,0.05,,7792,327,148,,,,996,L1028 U1020 8.55s,82387,,, +338,USA,,TT,b,Stutt Stuttgart (AR),34.520833,-91.541667,,0.025,,7543,298,148,,,,,L1042 U1027 6.0s,82429,,, +338,USA,,HIL,b,Hilyn Great Bend (KS),38.354167,-98.875,,0.025,,7643,306,149,,,,,U1014 5.5s,82400,,, +338,USA,,ESY,b,Yellowstone West Yellowstone (MT),44.6875,-111.125,,0.025,,7708,318,150,,,,16,L1025 U1038 ,82392,,, +338,USA,,MRK,b,Molly Ridge Rayville (LA),32.395833,-91.791667,,0.025,,7737,297,150,,,,995,L1032 U1015 7917s,82412,,, +338,USA,,TU,b,Oillr Tulsa (OK),36.104167,-95.875,,0.025,,7665,302,150,,,,989,L1046 U1027 6568s,82430,,, +338,CUB,,K,b,Santiago de Cuba (sc),19.979167,-75.958333,,0.025,,7755,277,151,,,,,,87090,,, +338,USA,,K,b,Ediz Hook Port Angeles (WA),48.145833,-123.375,,0.025,,7895,327,152,,,,,L1027 U1013 ~4.8s,86436,,, +338,CHN,,PA,b,Qingdao / Liuting (SD),36.104167,120.458333,,0.025,,8313,50,156,,,,999,L1048 U1043 ,82416,,, +338,USA,,LSA,b,Lamesa (TX),32.770833,-101.875,,0.025,,8298,304,156,,,,,L1013 U1010 5.5s,82407,,, +338,USA,,CVB,b,Castroville (TX),29.354167,-98.875,,0.025,,8426,300,157,,,,,U1045 ,87089,,, +338,USA,,HR,b,Sebas Harlingen (TX),26.3125,-97.625,,0.025,,8618,297,158,,,,985,L1052 U1022 8134s,82402,,, +338,CHN,,HKG,b,Hong Kong,22.229167,114.291667,,0.025,,9215,63,160,,,,,L1029 U1030 ,TWEB, female voice,86435, +338,THA,,SR,b,Surat Thani (stn),9.133056,99.145278,,0.025,,9393,82,161,,,,,,82427,,, +338,AUS,,MA,b,Mount Isa (QLD),-20.6875,139.458333,,0.025,,14694,67,178,,,,,L1020 U1022 9s,82409,,, +338,AUS,,ROC,b,Rockdale (VIC),-37.604167,144.791667,,0.025,,16424,80,184,,,,999,L400 U400 9s,82422,,, +338,AUS,,MCO,b,Mallacoota (VIC),-37.604167,149.708333,,0.025,,16752,75,185,,,,0,L412 U414 9s,82410,,, +339,D,,HOS,b,Hamburg (ham),53.6875,10.125,,0.025,,305,53,76,,,,0,L1019 U1022 ,82448,,, +339,XOE,,OH,b,Conoco Viking AR Platform,52.520833,2.291667,,0.025,,284,281,76,,,,,,82453,,, +339,F,,GI,b,Amiens / Glisy (80),49.854167,2.458333,,0.025,,373,229,77,,,,,U2 11.0s,82447,,, +339,F,,NE,b,Nancy / Essey (54),48.5625,6.125,,0.025,,395,183,77,,,,,L5 ,ID+17 tone,82452,, +339,G,,BIA,b,Bournemouth (EN-DOR),50.770833,-1.875,,0.04,,593,259,77,,,,986,L425 U403 9.2s,82441,,, +339,DNK,,SD,b,Sindal (njy),57.520833,10.125,,0.025,,647,20,79,,,,0,L400 U403 4.0s,ID+2 gap,82459,, +339,F,,FG,b,Montpellier / Mediterranee (34),43.5625,4.041667,,0.025,,967,191,83,,,,,L400 U405 ,82445,,, +339,IRL,,OL,b,Shannon (CE),52.729167,-8.791667,,0.025,,1031,280,83,,,,4,L1016 U1021 9.0s,82454,,, +339,NOR,,LS,b,Forde / Bringeland / Langeneset,61.395833,5.875,,0.025,,1033,358,83,,,,2,L386 U385 ,82450,,, +339,S,,EA,b,Stockholm / Arlanda,59.6875,18.125,,0.025,,1112,36,84,,,,2,L403 U404 ,82444,,, +339,FIN,,V,b,Kokkola / Kruunupyy,63.6875,23.125,,0.025,,1612,31,89,,,,0,L402 U403 ,82462,,, +339,RUS,,WK,b,Velikiye Luki (PS),56.3125,30.541667,,0.025,,1628,64,89,,,,2,L865 U870 ,82463,,, +339,GRC,,ROS,b,Rhodos/Diagoras (seg-dod),36.4375,28.125,,0.025,,2436,127,97,,,,,L1020 ,ID+8 gap,82458,, +339,ALG,,TDF,b,Tindouf (37),27.6875,-8.125,,0.025,,2973,210,103,,,,,16.0s,ID+11 tone,82460,, +339,CAN,,YFT,b,Makkovik (NL),55.0625,-59.208333,,0.025,,4182,301,115,,,,,U406 10.1s,DAID,82464,, +339,UAE,,RA,b,Ras al-Khaimah (rak),25.645833,55.958333,,0.025,,5061,106,124,,,,,,82457,,, +339,CAN,,6X,b,York Landing (MB),56.104167,-96.125,,0.025,,6060,318,134,,,,,U400 11041s,DAID,82439,, +339,USA,,LQX,b,Carbon Lehighton (PA),40.8125,-75.791667,,0.025,,6074,293,134,,,,5,L1010 U1019 6.47s,82449,,, +339,USA,,MKR,b,Milk River Glasgow (MT),48.1875,-106.625,,0.025,,7190,317,145,,,,3,L1015 U1022 6.0s,cont ID,82451,, +339,USA,,OP,b,Yates Thomaston (GA),32.9375,-84.208333,,0.025,,7221,292,145,,,,2,L1019 U1027 5.6s,82455,,, +339,CUB,,A,b,La Habana (ch),22.979167,-82.458333,,0.1,,7937,284,146,,,,126,L1025 U1030 8250s,82440,,, +339,IND,,TJ,b,Teju (AR),27.916944,96.162778,,0.025,,7580,72,149,,,,,,32200040,,, +339,CUB,,UCU,b,Santiago de Cuba (sc),19.979167,-75.791667,,0.025,,7743,277,150,,,,5,L1066 U2101 6.76s,82461,,, +339,CHN,,CG,b,Tianjin (TJ),39.0625,117.375,,0.025,,7887,50,152,,,,5,L1028 U1026 ,82443,,, +339,HWA,,BSF,b,Bradshaw Camp Pohakuloa (HI),19.770833,-155.625,,0.05,,11834,342,166,,,,997,L1040 U1034 ,82442,,, +340,G,,LSH,b,Lashenden / Headcorn (EN-KNT),51.145833,0.625,,0.04,,413,257,75,,,,986,L409 U384 14.0s,82482,,, +340,D,,ZIG,b,Leipzig (sac),51.4375,12.291667,,0.025,,411,98,77,,,,0,L1019 U1019 ,ID+6 gap,82506,, +340,E,,PND,b,Valncia / Pinedo (VAL-V),39.4375,-0.375,,0.3,,1503,203,77,,,,0,L1035 U1020 14.8s,ID+12 gap,82490,, +340,G,,HAW,b,Hawarden (WA-FLI),53.1875,-2.958333,,0.025,,643,284,79,,,,998,L400 U399 10.2s,82474,,, +340,I,,FOG,b,Foggia (fg),41.4375,15.541667,,0.1,,1373,146,81,,,,0,L1023 U1018 ,ID+6 gap,82471,, +340,I,,ISA,b,Istrana (tv),45.6875,12.208333,,0.025,,830,147,81,,,,995,L1025 U1035 ,82477,,, +340,BIH,,BLK,b,Banja Luka (srp),45.104167,17.291667,,0.04,,1114,130,82,,,,7,L976 U979 10.3s,ID+5 tone,82467,, +340,E,,SEO,b,Seo de Urgel (CAT-L),42.229167,1.375,,0.025,,1162,201,85,,,,5,L1015 U1020 ,ID+6 gap,82498,, +340,EST,,W,b,Kuressaare (Saa),58.229167,22.541667,,0.025,,1225,50,85,,,,114,L1020 U1248 5.9s,82502,,, +340,XOE,,HEI,b,Heidrun,65.3125,7.291667,,0.05,,1469,2,85,,,,0,L399 U404 ,82475,,, +340,FIN,,KAI,b,Utti / Kaipi,60.895833,27.125,,0.025,,1592,44,89,,,,7,L407 U414 ,82480,,, +340,GRC,,IOA,b,Ioannina (epi-ioa),39.6875,20.791667,,0.04,,1767,136,89,,,,0,L411 U397 ,ID+6 gap,82476,, +340,FIN,,O,b,Oulu / Mustaniemi,64.9375,25.291667,,0.025,,1784,30,91,,,,5,L400 U409 10.0s,82486,,, +340,UKR,,RG,b,Lozovatka / Kryvyi Rih (DP),48.104167,33.208333,,0.025,,1950,93,92,,,,7,L1020 U1033 ,ID+5 gap,82496,, +340,UKR,,RO,b,Lozovatka / Kryvyi Rih (DP),48.104167,33.208333,,0.025,,1950,93,92,,,,5,L1018 U1028 ,IDx2 + 6 gap,82497,, +340,FIN,,KS,b,Kuusamo / Oivanki,66.0625,29.125,,0.025,,1999,31,93,,,,2,L400 U403 ,82481,,, +340,RUS,,QD,b,Petrozavodsk / Besovets (KR),61.9375,34.208333,,0.025,,1982,46,93,,,,,L938 U943 ,82494,,, +340,RUS,,XO,b,Petrozavodsk / Besovets (KR),61.8125,34.125,,0.025,,1973,46,93,,,,,,IDx2,82504,, +340,TUR,,ST,b,Istanbul / Atatrk (mam-ist),40.979167,28.791667,,0.025,,2098,117,94,,,,,L1020 ,82500,,, +340,ISL,,GJ,b,Gjogur,65.979167,-21.291667,,0.025,,2177,326,95,,,,,U1020 6.5s,82472,,, +340,EGY,,OCT,b,October (gzh),29.8125,30.791667,,0.025,,3184,132,105,,,,14,L380 U405 ,ID+5 gap,82487,, +340,CAN,,YY,b,Mont-Joli (QC),48.5625,-68.291667,,0.5,,5077,297,111,,,,,U401 10.4s,DAID,82505,, +340,ARS,,MUZ,b,Muzayrah,23.520833,41.458333,,0.025,,4349,123,116,,,,,,82484,,, +340,CAN,,J,b,Stephenville/Harmon (NL),48.5625,-58.375,,0.025,,4460,292,118,,,,,,87091,,, +340,CAN,,ZJT,b,Stephenville/Harmon (NL),48.5625,-58.375,,0.025,,4460,292,118,,,,,U387 10597s,DAID,82507,, +340,UZB,,HA,b,Sherabad (sux),37.683056,67.033056,,0.025,,4879,84,122,,,,,,34500013,,, +340,USA,,GN,b,Brindl Lexington (KY),38.104167,-84.541667,,0.025,,6825,296,141,,,,995,L1038 U1029 5.9s,82473,,, +340,B,,OIA,b,Oiapoque (AP),3.854167,-51.791667,,0.1,,7552,246,142,,,,13,L1030 U1049 6.32s,82488,,, +340,USA,,JES,b,Slover Jessup (GA),31.5625,-81.875,,0.025,,7185,289,145,,,,998,L1021 U1041 5169s,82479,,, +340,USA,,BIJ,b,Early County Blakely (GA),31.4375,-84.791667,,0.025,,7381,291,147,,,,,L1020 6.6s,82466,,, +340,USA,,IWJ,b,Early County Blakely (GA),31.4375,-84.791667,,0.025,,7381,291,147,,,,6,L1015 U1027 ,82478,,, +340,MYA,,PT,b,Putao,27.320556,97.437778,,0.025,,7713,72,150,,,,,,22100040,,, +340,MLA,,SN,b,Sandakan (sbh),5.895833,118.041667,,0.5,,10929,69,153,,,,,U1024 8ss,82499,,, +340,CHL,,CTN,b,Constitucin (ML),-35.3125,-72.375,,1,,12345,239,155,,,,,L1030 ,82470,,, +340,B,,PNG,b,Paranagu (PR),-25.520833,-48.541667,,0.1,,10146,228,157,,,,,,82491,,, +340,B,,PTP,b,Ponta Por (MS),-22.5625,-55.708333,,0.1,,10247,235,158,,,,,,82492,,, +340,CHN,,OF,b,Banj,32.645833,118.541667,,0.025,,8523,53,158,,,,,,86441,,, +340,B,,MAN,b,Manaus (AM),-3.0625,-60.041667,,0.025,,8706,249,159,,,,,L1022 ,82483,,, +340,CLM,,BOG,b,Bogot D. C. (bdc),4.854167,-74.291667,,0.025,,8947,266,159,,,,0,L1023 U1029 8.44s,82468,,, +340,B,,BRS,b,Braslia (DF),-15.854167,-48.041667,,0.025,,9191,232,160,,,,,,82469,,, +340,B,,PTS,b,Pelotas (RS),-31.729167,-52.291667,,0.1,,10926,227,160,,,,,7.8s,82493,,, +340,GTM,,REU,b,Retalhuleu (ret),14.520833,-91.708333,,0.025,,9280,285,161,,,,12,L387 U414 10142s,82495,,, +340,J,,HC,b,Hachijojima (kan-tok),33.104167,139.791667,,0.025,,9512,38,161,,,,,L1000 U1018 5s,DAID,86439,, +340,TWN,,WK,b,Hsinshie (TC),24.229167,120.791667,,0.025,,9416,57,161,,,,,,82503,,, +340,J,,MY,b,Miyakojima (kyu-oki),24.770833,125.291667,,0.025,,9617,53,162,,,,0,L1000 U1020 5s,DAID,82485,, +340,PRU,,YMS,b,Yurimaguas (lor),-5.895833,-76.041667,,0.025,,10013,260,163,,,,,L1081 U1133 6.84s,86442,,, +340,AUS,,PEA,b,Pearce (WA),-31.645833,116.041667,,0.025,,14026,97,176,,,,,U1028 ,82489,,, +341,F,,AMB,b,Amboise (37),47.4375,1.041667,,0.05,,647,219,76,,,,,U12 18.0s,ID+14 tone,82511,, +341,DNK,,LO,b,Billund (sdk),55.729167,9.291667,,0.025,,444,24,77,,,,1,L394 U401 12.2s,ID+6 gap,82542,, +341,D,,ALG,b,Memmingen / Allgu (bay),47.979167,10.291667,,0.025,,536,147,78,,,,,L1022 ,ID+5 gap,82510,, +341,G,,PMB,b,Pembrey (WA-CAR),51.729167,-4.291667,,0.025,,734,271,80,,,,0,L~400 U~400,82548,,, +341,F,,IS,b,Ajaccio / Campo del Oro (20A),41.895833,8.625,,0.05,,1148,171,81,,,,,L397 U400 ,ID+19 tone,82539,, +341,G,,EDN,b,Edinburgh (SC-COE),55.979167,-3.291667,,0.025,,765,308,81,,,,993,L400 U391 7.0s,82528,,, +341,S,,NKS,b,Karlstad,59.520833,13.458333,,0.025,,933,25,82,,,,996,L410 U409 ,82544,,, +341,F,,BZ,b,Biarritz / Bayonne / Anglet (64),43.479167,-1.375,,0.025,,1121,214,84,,,,,L400 U404 ,82516,,, +341,FIN,,POR,b,Pori (st),61.520833,21.708333,,0.025,,1394,35,87,,,,2,L407 U411 ,82549,,, +341,AZR,,GP,b,Lajes / Vila Da Praia Da Vitoria (tce),38.770833,-27.125,,0.025,,2970,253,103,,,,3,L1025 U1033 8.2s,ID+5 gap,82536,, +341,GRL,,SM,b,Sisimiut (qqa-sis),66.9375,-53.708333,,0.025,,3583,320,109,,,,,L396 ,82554,,, +341,IRN,,BUZ,b,Bushehr (bus),28.979167,50.791667,,0.025,,4445,108,117,,,,0,L1024 U1022 ,ID+6 gap,82514,, +341,CAN,,YFN,b,Cree Lake (SK),57.354167,-107.125,,2,,6432,324,118,,,,,,87097,,, +341,CAN,,YYU,b,Kapuskasing (ON),49.479167,-82.541667,,0.5,,5850,305,119,,,,,U409 9.9s,DAID,82557,, +341,CPV,,BVT,b,Rabli (bvs),16.145833,-22.875,,0.025,,4757,224,121,,,,,,82515,,, +341,CAN,,GF,b,Aylesford (Greenwood) (NS),45.020833,-64.791667,,0.025,,5084,291,124,,,,5,L1000 U1012 8395s,DAID,82535,, +341,CAN,,YCS,b,Chesterfield Inlet (NU),63.354167,-90.708333,,0.025,,5319,323,126,,,,,U375 10622s,82556,,, +341,CAN,,ZLP,b,Toronto (Meadowvale / Mississauga) (ON),43.645833,-79.708333,,0.04,,6106,298,132,,,,991,L403 U389 10426s,DAID,82558,, +341,CAN,,DB,b,Burwash (YT),61.354167,-138.958333,,0.2,,7031,342,134,,,,687,L1031 U1040 6.3s,DAID,82523,, +341,CAN,,T,b,Toronto (ON),43.645833,-79.708333,,0.025,,6106,298,134,,,,,U400 ,87096,,, +341,ALS,,CD,b,Elfee Cold Bay (AK),55.3125,-162.791667,,1,,8029,354,137,,,,998,L1035 U1030 ,82519,,, +341,ALS,,ELF,b,Elfee Cold Bay (AK),55.3125,-162.791667,,1,,8029,354,137,,,,998,L1037 U1032 8.0s,82531,,, +341,USA,,EGV,b,Eagle River (WI),45.9375,-89.291667,,0.025,,6489,306,138,,,,999,L1024 U1024 5509s,82529,,, +341,USA,,LDM,b,Ludington (MI),43.979167,-86.375,,0.025,,6475,302,138,,,,,U1030 4808s,82541,,, +341,USA,,ORB,b,Orr (MN),48.020833,-92.875,,0.025,,6521,309,138,,,,996,L1030 U1028 7801s,82546,,, +341,CAN,,1X,b,Loreburn (SK),51.1875,-106.541667,,0.05,,6928,319,139,,,,,,87093,,, +341,USA,,CCJ,b,Clark Co Springfield (OH),39.854167,-83.791667,,0.025,,6642,297,139,,,,998,L1042 U1040 7481s,82518,,, +341,USA,,SB,b,Misha South Bend (IN),41.6875,-86.208333,,0.025,,6643,300,139,,,,5,L1040 U1052 5902s,82552,,, +341,USA,,DB,b,Zilom Dubuque (IA),42.3125,-90.625,,0.025,,6849,303,141,,,,687,L1030 U1040 6266s,82524,,, +341,USA,,HVS,b,Hartsville (SC),34.395833,-80.125,,0.025,,6844,290,141,,,,7,L1008 U1033 5769s,82538,,, +341,USA,,DXX,b,Dawson/Madison Madison (MN),44.979167,-96.208333,,0.025,,6941,309,142,,,,993,L967 U1050 29.13s,AWOS-3,82526,, +341,USA,,PRG,b,Paris (IL),39.6875,-87.708333,,0.025,,6890,300,142,,,,992,L1016 U1003 6833s,82550,,, +341,USA,,FO,b,Barro Fort Dodge (IA),42.520833,-94.291667,,0.025,,7039,306,143,,,,995,L1055 U1035 ,82534,,, +341,USA,,OW,b,Higuy Owensboro (KY),37.645833,-87.125,,0.025,,7019,298,143,,,,,L1020 U1020 8.60s,82547,,, +341,USA,,AA,b,Cedar (GA),33.520833,-82.625,,0.025,,7073,291,144,,,,993,L1038 U1029 6015s,82508,,, +341,USA,,CQN,b,Daisy Chattanooga (TN),35.145833,-85.125,,0.025,,7099,294,144,,,,997,L1041 U1030 8.7s,82521,,, +341,USA,,GIG,b,Gering Scottsbluff (NE),41.9375,-103.708333,,0.05,,7591,311,146,,,,,L970 U1022 ,87095,,, +341,USA,,RBE,b,Rock Co Bassett (NE),42.5625,-99.541667,,0.025,,7320,309,146,,,,0,L1022 U1027 4.4s,82551,,, +341,USA,,AOV,b,Bilmart Ava (MO),36.979167,-92.708333,,0.025,,7407,301,147,,,,999,L1034 U1032 ,82512,,, +341,USA,,MYZ,b,Marysville (KS),39.854167,-96.625,,0.025,,7390,305,147,,,,0,L1020 U1020 8.5s,82543,,, +341,USA,,CKM,b,Clarksdale (MS),34.3125,-90.541667,,0.025,,7500,297,148,,,,,U1020 6317s,82520,,, +341,USA,,FM,b,Caloo Fort Meyers (FL),26.520833,-81.958333,,0.025,,7606,286,149,,,,,L1018 U1020 8600s,82533,,, +341,USA,,OIN,b,Oberlin (KS),39.8125,-100.541667,,0.025,,7608,308,149,,,,995,L1036 U1015 7.5s,82545,,, +341,USA,,EI,b,Garfy Enid (OK),36.270833,-97.791667,,0.025,,7761,304,151,,,,,L1051 6.0s,82530,,, +341,USA,,CZJ,b,Amason Center (TX),31.8125,-94.125,,0.025,,7928,298,152,,,,989,L1019 U1009 7635s,82522,,, +341,USA,,DNI,b,Denison (TX),33.8125,-96.708333,,0.025,,7910,301,152,,,,1,L1023 U2043 6.5s,82525,,, +341,USA,,JHN,b,Bear Creek Johnson (KS),37.645833,-101.708333,,0.025,,7860,307,152,,,,3,L1004 U1010 5915s,82540,,, +341,MYT,,FJO,b,Dzaoudzi Pamandzi (976),-12.8125,45.291667,,0.025,,8125,140,154,,,,,,82532,,, +341,USA,,HRX,b,Hereford (TX),34.854167,-102.291667,,0.025,,8137,306,154,,,,,L1030 U1020 6.42s,82537,,, +341,USA,,BMQ,b,Burnet (TX),30.729167,-98.208333,,0.025,,8266,300,156,,,,2,L1045 U1017 6015s,82513,,, +341,USA,,SG,b,Doman Santa Fe (NM),35.5625,-106.125,,0.025,,8282,309,156,,,,997,L1040 U1040 7.0s,82553,,, +341,USA,,ALM,b,Alamogordo (NM),32.854167,-105.958333,,0.025,,8517,307,158,,,,,U1030 ,87094,,, +341,USA,,AK,b,Roray Oakland (CA),37.729167,-122.208333,,0.025,,8856,321,159,,,,997,L1037 U1028 6.5s,82509,,, +341,AUS,,TW,b,Tamworth (NSW),-31.0625,150.791667,,0.1,,16301,65,178,,,,,L400 U400 7s,82555,,, +341,AUS,,CBP,b,Coober Pedy (SA),-29.020833,134.708333,,0.025,,15089,79,180,,,,,L400 U400 8s,82517,,, +341,AUS,,ECH,b,Echuca (VIC),-36.145833,144.791667,,0.025,,16317,78,184,,,,,L400 U400 8s,82527,,, +341.5,POL,,JAS,b,Rzeszow-Jasionka,50.104167,22.041667,,0.025,,1112,95,84,,,,502,L1028 U1029 6.0s,ID+2.5 gap,82559,, +342,POL,,NAL,b,Miroslawiec,53.354167,16.125,,0.025,,668,74,80,,,,,,82565,,, +342,S,,SL,b,Gteborg/Landvetter (vg),57.604167,12.208333,,0.025,,714,29,80,,,,2,L397 U401 4.5s,82571,,, +342,F,,VA,b,Vannes / Meucon (56),47.770833,-2.625,,0.025,,806,237,81,,,,,U3 ,ID+16 tone,82575,, +342,NOR,,LL,b,Leirin / Fagernes,61.020833,9.291667,,0.025,,1006,9,83,,,,989,L395 U404 9.9s,82563,,, +342,I,,PES,b,Pescara (pe),42.4375,14.208333,,0.025,,1224,148,85,,,,0,L1018 U1020 ,ID+7 gap,82567,, +342,E,,VLD,b,Valladolid (CAL-VA),41.770833,-4.708333,,0.025,,1423,220,87,,,,31,L1011 U1019 13.6s,ID+10 gap,82577,, +342,S,,SUT,b,Hemavan,65.729167,15.208333,,0.025,,1593,15,89,,,,0,L400 U400 ,82573,,, +342,ALG,,OA,b,Algiers / Houari Boumedienne (16),36.770833,3.375,,0.025,,1722,189,90,,,,995,L37 U34 8.8s,ID+7 gap,82566,, +342,RUS,,PK,b,Sankt-Peterburg (SP),59.8125,30.125,,0.025,,1693,50,90,,,,0,L395 U401 ,82569,,, +342,MRC,,RG,b,Meknes / Bassatine,33.895833,-5.375,,0.025,,2234,210,95,,,,0,L400 U400 ,82570,,, +342,NOR,,VD,b,Vadso,70.0625,29.875,,0.025,,2328,22,96,,,,,L366 U400 ,82576,,, +342,GEO,,VP,b,Tbilissi / Lochini (tbi),41.729167,44.875,,0.025,,3097,96,104,,,,2,L395 U400 ,ID+5.5 gap,82578,, +342,GEO,,TO,b,Tsnori (kah),41.645833,46.041667,,0.025,,3181,96,105,,,,0,L1020 U1020 ,IDx2,82574,, +342,SYR,,DAL,b,Damascus International / Aateibe (dim),33.479167,36.625,,0.025,,3180,119,105,,,,,L1021 ,ID+2 gap,82562,, +342,USA,,MTN,b,Martin Baltimore (MD),39.3125,-76.375,,0.025,,6223,292,135,,,,,U~1000 5.3s,82564,,, +342,USA,,CXE,b,Chase City (VA),36.770833,-78.541667,,0.025,,6555,291,139,,,,,U1024 ,87098,,, +342,USA,,PFT,b,Piney Pinecreek (MN),48.979167,-95.958333,,0.025,,6605,312,139,,,,995,L1034 U1018 7.8s,82568,,, +342,USA,,ST,b,Hussk St Cloud (MN),45.479167,-93.958333,,0.025,,6780,308,141,,,,993,L1053 U1039 6086s,82572,,, +342,CHN,,WA,b,Wongyuan,24.354167,114.125,,0.025,,9015,61,160,,,,,L1044 U1025 ,86447,,, +342,NCL,,BL,b,le Art (nor),-19.729167,163.625,,0.025,,15909,37,182,,,,,20s,86446,,, +342.5,G,,NWI,b,Norwich (EN-NFK),52.6875,1.291667,,0.005,,353,282,83,,,,495,L411 U400 4.5s,82580,,, +342.5,J,,JB,b,Omura (kyu-nag),32.9375,129.958333,,0.1,,9085,45,154,,,,500,L1020 U1021 14s,2xID,82579,, +343,D,,SBN,b,Saarbrcken / Ensheim (saa),49.229167,7.125,,0.025,,324,171,76,,,,0,L1019 U1021 6.4s,82596,,, +343,F,,CGO,b,Paris / Charles de Gaulle (95),48.979167,2.375,,0.025,,450,221,77,,,,24,L379 U421 8.2s,ID+4 gap,82583,, +343,XOE,,HBC,b,Halfdan B / Maersk,55.520833,5.041667,,0.025,,390,347,77,,,,1,L937 U933 ,82589,,, +343,XOE,,RLF,b,Rolf A Platform,55.354167,4.291667,,0.025,,387,340,77,,,,997,L410 U404 ,82595,,, +343,G,,YVL,b,Yeovil / Westland (EN-SOM),50.9375,-2.625,,0.025,,638,262,79,,,,10,L389 U410 8.0s,82600,,, +343,LTU,,KUS,b,Kaunas / Karmelava (Kau),54.979167,24.125,,0.1,,1209,68,79,,,,2,L398 U402 ,ID+7 gap,82590,, +343,F,,AR,b,Aurillac (15),44.9375,2.375,,0.025,,851,202,81,,,,,L403 U403 10.0s,ID+8 gap,82582,, +343,F,,MS,b,Marseille / Provence (13),43.395833,5.291667,,0.025,,973,185,83,,,,,U4 ,82593,,, +343,HNG,,A,b,Budapest/Ferenc Liszt Int. (Bud),47.4375,19.208333,,0.025,,1054,114,84,,,,2,L1013 U1023 ,ID+7 gap,82581,, +343,I,,GRA,b,Grazzanise (ce),41.0625,14.125,,0.025,,1361,151,87,,,,5,L1025 U1023 6.9s,ID+3 gap,82588,, +343,ROU,,E,b,Craiova (DJ),44.3125,23.958333,,0.025,,1557,117,89,,,,0,L1020 U1020 1.5s,Cont. ID,82587,, +343,CYP,,DKA,b,Dhekelia (kyp),34.979167,33.708333,,0.025,,2879,121,102,,,,0,L397 U395 ,ID+7 gap,82584,, +343,BHR,,SI,b,Sheikh Isa (ajn),25.894444,50.603611,,0.025,,4693,111,120,,,,,,82597,,, +343,CAN,,YGO,b,Gods Lake Narrows (MB),54.5625,-94.458333,,0.2,,6098,316,125,,,,,U407 10.0s,DAID,82599,, +343,CAN,,6R,b,Bromont / East Farnham (QC),45.229167,-72.791667,,0.025,,5572,296,129,,,,,,87099,,, +343,CAN,,ZBM,b,Bromont (QC),45.229167,-72.791667,,0.025,,5572,296,129,,,,,U412 10.2s,DAID,82602,, +343,OMA,,MR,b,Masirah (shq),20.6875,58.875,,0.025,,5675,107,130,,,,2,L1039 U1045 ,ID+6 gap,82592,, +343,CAN,,YZH,b,Slave Lake (AB),55.3125,-114.791667,,0.28,,6906,327,132,,,,0,L400 U395 10.0s,DAID,82601,, +343,USA,,DNT,b,Nally Dunston Dyersburg (TN),35.979167,-89.375,,0.025,,7291,298,146,,,,,L1030 U1030 ,87100,,, +343,USA,,DMD,b,Dimmit County Carrizo Springs (TX),28.520833,-99.791667,,0.025,,8553,300,158,,,,,U1022 6526s,82586,,, +343,INS,,DM,b,Dumai (RI-dum),1.645833,101.458333,,0.025,,10207,85,164,,,,,L1000 ,82585,,, +344,D,,CB,b,Cochstedt / Scheidlingen (san),51.854167,11.458333,,0.025,,347,93,76,,,,,L1026 U1015 ,86450,,, +344,D,,HN,b,Hohn (shs),54.3125,9.708333,,0.025,,329,41,76,,,,0,L1043 U1032 8.2s,ID+2 gap + 4 tone,82617,, +344,F,,TR,b,Villefranche (69),45.9375,4.625,,0.025,,699,191,80,,,,,L403 U406 10.0s,ID+8 gap,82636,, +344,G,,WCK,b,Wick (SC-HIL),58.4375,-3.041667,,0.025,,922,323,82,,,,998,L405 U400 7.0s,82641,,, +344,E,,MN,b,Menorca (BAL-MN),39.854167,4.208333,,0.06,,1373,188,83,,,,20,L1055 U1070 ,ID+9 gap,82628,, +344,HRV,,VAR,b,Varadin (vz),46.3125,16.375,,0.025,,968,128,83,,,,,L1017 U1026 ,ID+5 gap,82639,, +344,FIN,,HEK,b,Heka For Helsinki / Vantaa,60.270833,25.458333,,0.025,,1478,45,88,,,,2,L406 U410 ,ID+6 gap,82616,, +344,E,,ARM,b,Armilla (AND-GR),37.0625,-3.791667,,0.025,,1854,210,92,,,,5,L1020 U1031 ,ID+4 gap,82605,, +344,FIN,,L,b,Kittil / Hukkakumpu,67.729167,24.875,,0.025,,2001,23,93,,,,0,L410 U410 ,82622,,, +344,ISL,,LA,b,Saudarkrokur / Langholt,65.5625,-19.458333,,0.025,,2081,326,94,,,,,U1018 ,ID+3.5 gap,82623,, +344,LBY,,LQ,b,Labraq (jak),32.8125,21.958333,,0.025,,2484,144,98,,,,998,L400 U396 10.0s,ID+7 gap,82625,, +344,CAN,,YGV,b,Havre St Pierre (QC),50.270833,-63.625,,0.025,,4691,297,120,,,,,U392 10.4s,DAID,82644,, +344,USA,,LNT,b,Milnot Millinocket (ME),45.645833,-68.541667,,0.1,,5280,294,120,,,,995,L1042 U1029 7865s,82624,,, +344,CAN,,ZSB,b,Noranda (Sudbury) (ON),46.6875,-80.708333,,0.1,,5944,301,126,,,,,U399 10241s,DAID,82650,, +344,USA,,CL,b,Harri Cleveland (OH),41.354167,-81.958333,,0.25,,6414,297,127,,,,,L1030 U1025 5.62s,87102,,, +344,CAN,,ZOW,b,Moody Nepean (Ottawa) (ON),45.270833,-75.708333,,0.04,,5747,297,128,,,,3,L400 U402 10.0s,DAID,82649,, +344,PAK,,RN,b,Islamabad (ict),33.613056,73.081667,,0.025,,5588,84,129,,,,,,31500033,,, +344,CAN,,O,b,#NAME?,45.270833,-75.708333,,0.025,,5747,297,130,,,,,,87104,,, +344,ALS,,SIT,b,Sitka (Biorka Island) (AK),56.854167,-135.541667,,1,,7411,338,131,,,,,,87105,,, +344,USA,,AVN,b,Avon Rochester (NY),43.020833,-77.791667,,0.025,,6036,296,133,,,,3,L1028 U1041 6338s,82606,,, +344,USA,,JA,b,Dinns Jacksonville (FL),30.479167,-81.791667,,0.4,,7268,289,134,,,,968,L1067 U1009 7.45s,82619,,, +344,USA,,PIX,b,Picture Rocks (PA),41.270833,-76.708333,,0.025,,6098,294,134,,,,4,L1047 U1046 7.53s,82629,,, +344,USA,,ES,b,Pikle Escanaba (MI),45.729167,-87.208333,,0.025,,6388,304,137,,,,990,L1056 U1039 6007s,82612,,, +344,USA,,SLY,b,Seeley Hayward (WI),46.104167,-91.375,,0.025,,6590,307,139,,,,998,L1012 U1020 4.61s,82635,,, +344,USA,,UNU,b,Juneau (WI),43.4375,-88.708333,,0.025,,6651,303,139,,,,990,L1040 U1004 6194s,82638,,, +344,USA,,BKU,b,Timber Baker (MT),46.354167,-104.291667,,0.08,,7237,315,140,,,,15,L1004 U1003 6.4s,82608,,, +344,CAN,,YOP,b,Rainbow Lake (AB),58.4375,-119.291667,,0.025,,6783,331,141,,,,,U394 10.0s,DAID,82646,, +344,USA,,BFR,b,Bedford (IN),38.854167,-86.458333,,0.025,,6882,298,142,,,,,U1022 ,87101,,, +344,USA,,RFE,b,Rutherford Rutherfordton (NC),35.354167,-81.958333,,0.025,,6884,292,142,,,,964,L1075 U1002 4928s,82632,,, +344,USA,,DS,b,Forem Des Moines (IA),41.479167,-93.541667,,0.025,,7082,305,144,,,,987,L1049 U1031 6.00s,82611,,, +344,USA,,PPQ,b,Pittsfield (IL),39.645833,-90.791667,,0.025,,7075,301,144,,,,41,L949 U1030 ,82631,,, +344,USA,,VI,b,Opery Nashville (TN),36.1875,-86.625,,0.025,,7107,296,144,,,,3,L1015 U1022 ,82640,,, +344,CAN,,YC,b,Calgary (AB),51.0625,-113.875,,0.025,,7252,323,145,,,,2,L402 U397 10.2s,DAID,82643,, +344,USA,,FT,b,Flanc Atlanta (GA),33.770833,-84.625,,0.025,,7179,293,145,,,,981,L1029 U1027 5921s,82614,,, +344,USA,,MK,b,Kenzy Kansas City (MO),39.229167,-94.541667,,0.025,,7325,304,146,,,,0,L1030 U1023 6172s,82626,,, +344,USA,,AJX,b,Ash Flat (AR),36.1875,-91.625,,0.025,,7409,299,147,,,,,U1035 7201s,82604,,, +344,USA,,BIJ,b,Early County Blakely (GA),31.4375,-84.791667,,0.025,,7381,291,147,,,,,L1018 ,82607,,, +344,USA,,CQL,b,CARBONDALE (CO),39.395833,-107.125,,0.1,,7990,312,147,,,,,L1050 ,87103,,, +344,USA,,FCH,b,Chandler Fressno (CA),36.729167,-119.875,,0.4,,8850,319,147,,,,991,L1041 U1024 8.3s,82613,,, +344,USA,,IWJ,b,Early County Blakely (GA),31.4375,-84.791667,,0.025,,7381,291,147,,,,2,L1016 U1025 6.77s,82618,,, +344,USA,,SE,b,Pollk (Selma) (AL),32.270833,-86.958333,,0.025,,7449,294,147,,,,,L1020 8600s,86453,,, +344,USA,,JL,b,Lunns Joplin (MO),37.1875,-94.541667,,0.025,,7496,302,148,,,,,L1023 5682s,82621,,, +344,USA,,SL,b,Flory Salina (KS),38.6875,-97.625,,0.025,,7544,305,148,,,,,L1021 8.55s,82634,,, +344,USA,,POY,b,Powell (WY),44.854167,-108.791667,,0.025,,7584,316,149,,,,993,L1035 U1030 8.0s,82630,,, +344,IND,,LP,b,Lengpui (MZ),23.834722,92.6225,,0.025,,7688,78,150,,,,,,32200043,,, +344,USA,,TV,b,Savry Vicksburg / Tallulah (LA),32.229167,-91.041667,,0.025,,7706,296,150,,,,995,L1049 U1038 5982s,82637,,, +344,CAN,,XX,b,Abbotsford (BC),49.020833,-122.458333,,0.025,,7777,327,151,,,,5,L400 U405 10.2s,DAID,82642,, +344,USA,,ML,b,Wampa Mc Alester (OK),34.8125,-95.791667,,0.025,,7770,301,151,,,,993,L1047 U1031 8170s,82627,,, +344,USA,,CGQ,b,Powell Corsicana (TX),32.0625,-96.458333,,0.025,,8046,300,153,,,,990,L1048 U1012 7255s,82610,,, +344,USA,,JAS,b,Jasper (TX),30.9375,-94.041667,,0.025,,7998,297,153,,,,,L1033 U1018 4.9s,82620,,, +344,USA,,SKB,b,Scotland Wichita Falls (TX),33.770833,-98.458333,,0.025,,8015,302,153,,,,,L1022 U1020 7.27s,82633,,, +344,CYM,,ZIY,b,George Town (Grand Cayman Island),19.270833,-81.375,,0.025,,8180,280,155,,,,0,L1039 U1040 8.35s,ID+4 gap,82648,, +344,USA,,BYY,b,Bay City (TX),28.979167,-95.875,,0.025,,8279,297,156,,,,,U1019 10295s,82609,,, +344,USA,,GNC,b,Gaines County Seminole (TX),32.6875,-102.625,,0.025,,8347,305,156,,,,990,L1042 U1014 5.1s,82615,,, +344,J,,YZ,b,Yaizu (chu-shi),34.8125,138.291667,,0.025,,9280,38,161,,,,,L1000 U1020 5s,DAID,82647,, +344,AUS,,DN,b,Darwin (NT),-12.4375,130.958333,,0.025,,13418,69,174,,,,,,86451,,, +344,AUS,,YOL,b,Yolla A Platform,-39.854167,145.791667,,0.1,,16649,82,179,,,,,,82645,,, +344.8,RUS,,UPM Amderma R,c,Amderma (NE),69.766667,61.666667,,1,,3393,34,91,,????-????,1234567,-344.8,,19901329,,, +345,D,,EMD,b,Emden (nds),53.229167,7.125,,0.025,,133,21,68,,,,2,L1022 U1026 10.0s,82663,,, +345,D,,IGL,b,Ingolstadt (bay),48.729167,11.625,,0.025,,527,133,78,,,,,L954 30.0s,ID+24 tone,82672,, +345,G,,LUT,b,London/Luton (EN-HTS),51.895833,-0.208333,,0.025,,454,270,78,,,,993,L403 U396 7.6s,82679,,, +345,NOR,,BN,b,Kristiansand / Kjevik / Birkeland,58.3125,8.208333,,0.025,,699,9,80,,,,3,L370 U374 ,ID+7 gap,82656,, +345,F,,LN,b,Lannion / Servel (22),48.729167,-3.291667,,0.025,,783,245,81,,,,,U4 19.9s,82678,,, +345,I,,TZO,b,Trezzo sullAdda (mi),45.5625,9.541667,,0.025,,763,161,81,,,,0,L1030 U1030 10.0s,ID+6 gap,82693,, +345,POL,,NB,b,Malbork (PM),54.035833,19.215278,,0.025,,881,71,82,,,,2,L398 U403 5.0s,ID+3 gap,82682,, +345,E,,VI,b,Vigo (GAL-PO),42.3125,-8.625,,0.1,,1568,232,83,,,,4,L1038 U1040 12.0s,ID+21 gap,82696,, +345,F,,CS,b,Carcassonne / Salvaza (11),43.229167,2.208333,,0.025,,1036,199,83,,,,,U2 19.9s,82661,,, +345,NOR,,FT,b,Forde / Bringeland / Fleten,61.354167,5.541667,,0.025,,1029,357,83,,,,5,L370 U379 ,82665,,, +345,S,,HT,b,Hagfors,60.104167,13.541667,,0.025,,992,24,83,,,,,L404 U406 ,82671,,, +345,MNE,,TAZ,b,Tivat (TV),42.270833,18.791667,,0.05,,1436,135,84,,,,5,L1012 U1020 10.0s,ID+7 tone,82691,, +345,E,,VTA,b,Vitoria (PVA-VI),42.9375,-2.708333,,0.025,,1226,217,85,,,,0,L1020 U1019 10.1s,82697,,, +345,I,,FW,b,Fiumicino (rm),41.895833,12.208333,,0.025,,1217,157,85,,,,0,L1016 U1022 ,ID+3 gap,82666,, +345,E,,ATR,b,Murcia / Alcantarilla (MUR-MU),37.9375,-1.208333,,0.05,,1684,204,87,,,,,U1031 ,ID+3 gap,82654,, +345,FIN,,SUS,b,Kauhava / Susi,63.229167,23.041667,,0.025,,1574,32,89,,,,0,L407 U412 ,82689,,, +345,NOR,,STM,b,Strommen / Mo I Rana,66.270833,13.791667,,0.025,,1627,12,89,,,,2,L400 U403 8.0s,82688,,, +345,GRC,,THS,b,Thessaloniki/Makedonia (cmc-tsk),40.604167,22.958333,,0.025,,1795,129,91,,,,9,L347 U371 6.5s,ID+4 gap,82692,, +345,UKR,,CC,b,Cherkasy (CK),49.354167,32.041667,,0.025,,1820,89,91,,,,,,82660,,, +345,RUS,,K,b,Tsakalovskij,55.895833,38.041667,,0.025,,2090,66,94,,,,,,82676,,, +345,RUS,,L,b,Tsakalovskij,55.854167,38.041667,,0.025,,2090,66,94,,,,,,82677,,, +345,RUS,,YAT,b,Tula / Klokovo (TL),54.229167,37.625,,0.025,,2077,71,94,,,,,U920 ,IDx2,82699,, +345,RUS,,ZM,b,Tula / Klokovo (TL),54.229167,37.625,,0.025,,2077,71,94,,,,,,86459,,, +345,ISL,,HL,b,Vestmannaeyjar/Helgafell (sl),63.4375,-20.291667,,0.015,,1998,319,95,,,,,U1020 7.0s,82670,,, +345,NOR,,BNR,b,Banak,70.0625,24.958333,,0.025,,2210,19,95,,,,,L345 U345 ,82658,,, +345,MRC,,CSD,b,Daouarat,32.9375,-8.041667,,0.025,,2429,214,97,,,,2,L1019 U1018 10.0s,ID+7 gap,82662,, +345,RUS,,QN,b,Tikhoretsk (KD),45.895833,40.125,,0.025,,2529,92,98,,,,,L1076 15.0s,IDx2,86458,, +345,RUS,,PW,b,Syktyvkar (KO),61.604167,50.791667,,0.025,,2830,51,101,,,,,L344 U346 ,82686,,, +345,RUS,,SR,b,Syktyvkar (KO),61.6875,50.875,,0.025,,2834,51,101,,,,,U955 ,82687,,, +345,RUS,,X,b,Perm / Bolshoe Savino (PR),57.9375,56.041667,,0.025,,3154,58,105,,,,,,82698,,, +345,RUS,,Z,b,Khanty-Mansiysk (KY),61.020833,69.125,,0.025,,3806,50,111,,,,,,82700,,, +345,RUS,,MB,b,Yamburg,68.020833,75.041667,,0.025,,3931,37,112,,,,,,82681,,, +345,CAN,,3J,b,Davis Inlet (NL),55.895833,-60.958333,,0.025,,4246,303,115,,,,,,DAID,82651,, +345,QAT,,AK,b,Al Khor,25.645833,51.541667,,0.025,,4774,110,121,,,,,,82653,,, +345,KAZ,,US,b,Ust-Kamenogorsk (sgq),50.0625,82.458333,,0.025,,5066,61,124,,,,,,82694,,, +345,USA,,FOZ,b,Bigfork (MN),47.770833,-93.625,,0.025,,6580,310,139,,,,988,L1037 U1011 40.9s,AWOS-3,82664,, +345,AFS,,LW,b,Langebaanweg (WC),-32.979167,18.125,,3,,9530,170,141,,,,,L1025 8.57s,ID+6 gap,82680,, +345,USA,,GF,b,Hiser Grand Forks (ND),47.854167,-97.208333,,0.025,,6759,312,141,,,,991,L1062 U1043 6091s,82668,,, +345,USA,,PUF,b,Puff Estherville (IA),43.354167,-94.708333,,0.025,,6993,307,143,,,,,U1032 7959s,82685,,, +345,BRB,,BGI,b,Bridgetown (smi),13.0875,-59.4625,,0.025,,7223,259,145,,,,0,L1016 U1016 10.0s,DAID,82655,, +345,B,,PTL,b,Petrolina (PE),-9.354167,-40.541667,,0.2,,8164,229,146,,,,,L1071 U1117 7331s,82684,,, +345,CHN,,JX,b,Weixian (HB),36.354167,114.958333,,0.025,,7996,53,153,,,,,14s,2xID,82675,, +345,AFS,,VAL,b,Val (MP),-26.8125,28.958333,,0.1,,9047,160,154,,,,,U1012 3.62s,82695,,, +345,CHN,,JB,b,Dongying (SD),37.604167,118.791667,,0.025,,8091,50,154,,,,1,L1012 U1015 ,82674,,, +345,B,,ADA,b,Aldeia (RJ),-22.8125,-42.125,,0.1,,9568,224,156,,,,,,82652,,, +345,CHN,,SV,b,Changasha (HN),28.1875,113.208333,,0.025,,8618,60,158,,,,995,L1140 U1125 ,82690,,, +345,B,,IP,b,Guaba (RS),-29.979167,-51.291667,,0.025,,10710,227,165,,,,,,82673,,, +345,NIU,,NU,b,Niue,-19.0625,-169.958333,,0.025,,16327,354,184,,,,,,86457,,, +345.5,CZE,,CF,b,Caslav (ST),49.903889,15.432778,,0.025,,677,108,80,,,,526,L1030 U1076 7.5s,ID+4 gap,82701,, +346,DNK,,AU,b,Stauning (mjy),55.604167,8.208333,,0.025,,406,16,77,,,,,U405 4.5s,82703,,, +346,F,,LHO,b,Le Havre / Octeville (76),49.604167,0.208333,,0.025,,517,240,78,,,,5,L403 U405 10.2s,82717,,, +346,LUX,,WLU,b,Luxembourg (lux),49.5625,6.041667,,0.015,,284,185,78,,,,997,L1040 U1020 10.0s,ID+5 gap,82730,, +346,F,,CH,b,Chambery / Aix-Les-Bains (73),45.604167,5.875,,0.025,,724,183,80,,,,,L398 U404 ,ID+8 gap,82705,, +346,XOE,,KTW,b,Shell / Esso Kittiwake Platform,57.479167,0.541667,,0.025,,705,330,80,,,,200,L~400 U400 ,82715,,, +346,F,,OC,b,Cognac / Chateaubernard (16),45.729167,-0.125,,0.025,,854,216,82,,,,,U10 21.7s,ID+19 tone,82723,, +346,S,,GS,b,Gvle / Sandviken,60.5625,16.958333,,0.025,,1140,30,84,,,,995,L405 U395 ,ID+1 gap,82709,, +346,HNG,,Y,b,Nyregyhza (SSB),47.979167,21.708333,,0.025,,1182,107,85,,,,,U1030 ,82731,,, +346,FIN,,MI,b,Mikkeli / Korpikoski,61.729167,27.041667,,0.025,,1634,41,89,,,,0,L~400 U409 8.0s,82720,,, +346,S,,TG,b,Gllivare,67.145833,20.708333,,0.025,,1845,20,91,,,,,U400 ,82726,,, +346,ALG,,TLM,b,Tlemcen / Zenata (13),35.020833,-1.375,,0.025,,1998,201,93,,,,,20.2s,82728,,, +346,TUR,,DAL,b,Dalaman / Mugla (ege-mug),36.6875,28.791667,,0.025,,2451,126,97,,,,995,L1020 U1010 ,ID+5 gap,82707,, +346,CAN,,1D,b,Charlottetown (NL),52.770833,-56.125,,0.025,,4103,297,114,,,,,U395 10.0s,DAID,82702,, +346,IRN,,BRD,b,Bojnurd (nkh),37.479167,57.291667,,0.025,,4229,92,115,,,,15,L1055 U1044 6.0s,82704,,, +346,CAN,,YXL,b,Sioux Lookout (ON),50.104167,-91.875,,1,,6307,311,120,,,,0,L426 U424 9.1s,DAID,82732,, +346,IRN,,LAM,b,Lamerd (frs),27.354167,53.208333,,0.025,,4737,107,120,,,,,L1020 ,82716,,, +346,USA,,LI,b,Hullz Boston (MA),42.3125,-70.958333,,0.025,,5661,292,130,,,,993,L1052 U1040 6.13s,82718,,, +346,USA,,IA,b,Tille Chantilly (VA),38.854167,-77.458333,,0.025,,6326,292,136,,,,973,L1059 U1004 7.90s,82712,,, +346,USA,,LW,b,Bushi Lewisburg (WV),37.770833,-80.458333,,0.025,,6599,293,139,,,,0,L1019 U1021 8600s,82719,,, +346,USA,,VU,b,Aller Albemarle (NC),35.479167,-80.041667,,0.025,,6752,291,140,,,,1,L1026 U1030 5.03s,82729,,, +346,USA,,GHW,b,Glenwood (MN),45.645833,-95.291667,,0.025,,6838,309,141,,,,,L1029 U30 34.95s,AWOS-3,82708,, +346,USA,,JXT,b,Jefferson Morristown (TN),36.104167,-83.458333,,0.025,,6918,294,142,,,,,L1025 U1028 4599s,82713,,, +346,CAN,,N9,b,Tumbler Tumbler Ridge (BC),55.020833,-120.958333,,0.025,,7155,330,145,,,,999,L409 U403 8.1s,DAID,82722,, +346,ALS,,OLT,b,Soldotna (AK),60.479167,-150.875,,0.025,,7333,348,146,,,,,U1022 ,82724,,, +346,USA,,HHY,b,Pinhook Savannah (TN),35.270833,-88.208333,,0.025,,7279,297,146,,,,9,L993 U1012 ,82710,,, +346,USA,,PCM,b,Plant City (FL),28.020833,-82.125,,0.025,,7492,287,148,,,,995,L1037 U1032 7.75s,82725,,, +346,USA,,THJ,b,Tallahala Laurel (MS),31.6875,-89.208333,,0.025,,7638,295,149,,,,921,L1005 U1010 4202s,82727,,, +346,CHN,,D,b,Wuhan / tianhe (HU),30.770833,114.208333,,0.025,,8447,57,157,,,,,L1038 U1034 ,82706,,, +346,J,,KN,b,Kansai (kns-osk),34.454167,135.241667,,0.025,,9184,40,160,,,,,L1020 U1019 ,82714,,, +346,NZL,,TG,b,Tauranga (BOP),-37.6875,176.208333,,0.025,,18225,30,190,,,,,L1040 U1041 4.2s,86460,,, +346,NZL,,MO,b,Manapouri,-45.479167,167.708333,,0.025,,18466,69,191,,,,,6.88s,82721,,, +346.5,D,,HIG,b,Bremen (bre),53.0493,8.908769,,0.025,,199,57,75,,,,-346.5,,2000060,,, +347,F,,CVT,b,Chalons / Vatry (51),48.770833,4.291667,,0.025,,400,203,77,,,,,U4 19.8s,ID+15 tone,82741,, +347,G,,MTN,b,Manston (EN-KNT),51.354167,1.375,,0.025,,357,258,77,,,,0,L403 U404 5.0s,82752,,, +347,XOE,,JAD,b,Jade Platform,56.520833,2.125,,0.025,,563,332,79,,,,,U400 ,82746,,, +347,G,,NQY,b,Newquay (EN-CNW),50.4375,-4.958333,,0.025,,811,261,81,,,,1,L400 U400 8.2s,82753,,, +347,NOR,,MSK,b,Morskogen,60.4375,11.291667,,0.025,,973,16,83,,,,2,L398 U402 10.1s,82750,,, +347,XOE,,IA,b,Shell Expro / Brent Alpha,61.020833,1.708333,,0.025,,1031,346,83,,,,,3.7s,86461,,, +347,TUR,,SAB,b,Sabiha Gokcen (mam-ist),40.895833,29.291667,,0.025,,2135,117,94,,,,0,L400 U400 ,ID+7 gap,82757,, +347,CAN,,YG,b,Charlottetown (PE),46.1875,-63.125,,1.6,,4904,291,104,,,,,U405 10.2s,DAID,82763,, +347,CAN,,Z8,b,Rivire-Ouelle (QC),47.4375,-69.958333,,0.1,,5251,296,119,,,,,,87108,,, +347,CAN,,UJ,b,Lady Franklin Point (NT),68.479167,-113.208333,,0.1,,5724,336,124,,,,,,87107,,, +347,USA,,PNJ,b,Paterson (NJ),40.9375,-74.125,,0.025,,5960,292,133,,,,,U1019 8.0s,87106,,, +347,CAN,,4Q,b,Brochet (MB),57.895833,-101.708333,,0.025,,6167,322,135,,,,,L1028 U1026 10.47s,82733,,, +347,USA,,AIG,b,Antigo (WI),45.145833,-89.125,,0.025,,6541,305,138,,,,7,L1017 U1036 6.31s,82735,,, +347,USA,,ANQ,b,Angola (IN),41.645833,-85.125,,0.025,,6582,300,139,,,,2,L1035 U1031 5600s,82738,,, +347,CAN,,PA,b,Prince Albert (SK),53.229167,-105.791667,,0.025,,6721,320,140,,,,,U390 11.0s,DAID,82755,, +347,ALS,,DJN,b,Delta Junction (AK),64.020833,-145.708333,,0.025,,6878,347,142,,,,2,L1035 U1036 ,82743,,, +347,USA,,MT,b,Zebre Mattoon / Charleston (IL),39.4375,-88.208333,,0.025,,6940,300,142,,,,0,L1019 U1021 8600s,82751,,, +347,USA,,AIK,b,Aiken (SC),33.645833,-81.708333,,0.025,,7005,291,143,,,,998,L1029 U1029 5286s,82736,,, +347,USA,,AJR,b,Habersham Cornelia (GA),34.520833,-83.541667,,0.025,,7050,293,143,,,,8,L1010 U1032 6128s,82737,,, +347,USA,,VER,b,Viertel Boonville (MO),39.9375,-92.708333,,0.025,,7162,303,145,,,,,U1001 4924s,82762,,, +347,USA,,YK,b,Cagur Yankton (SD),42.854167,-97.291667,,0.025,,7175,308,145,,,,3,L1048 U1054 9415s,82764,,, +347,ALS,,TNC,b,Tin CIty (AK),62.3125,-173.375,,0.025,,7292,360,146,,,,0,L1040 U1035 ,82761,,, +347,USA,,AFK,b,Nebraska City (NE),40.604167,-95.875,,0.025,,7285,305,146,,,,981,L1058 U1017 7.0s,82734,,, +347,USA,,SBX,b,Shelby (MT),48.520833,-111.875,,0.025,,7396,321,147,,,,10,L1037 U1052 5.0s,82758,,, +347,USA,,CO,b,Leeny Coeur dAlene (ID),47.729167,-116.958333,,0.025,,7683,323,150,,,,986,L1050 U1026 ,82740,,, +347,USA,,LEN,b,Post Falls Leeny (ID),47.4375,-116.541667,,0.025,,7693,323,150,,,,,L1050 U1027 8.0s,86462,,, +347,USA,,GC,b,Pieve Garden City (KS),37.8125,-100.708333,,0.025,,7790,307,151,,,,988,L1051 U1029 7.9s,82744,,, +347,USA,,MKV,b,Marksville (LA),31.104167,-92.041667,,0.025,,7862,296,152,,,,0,L1037 U1034 7.8s,82749,,, +347,USA,,HLR,b,Hood Fort Hood (Killeen) (TX),31.145833,-97.708333,,0.025,,8200,300,155,,,,5,L1036 U1048 8065s,82745,,, +347,USA,,JPA,b,Sanjac La Porte (TX),29.6875,-95.041667,,0.025,,8167,297,155,,,,3,L1019 U1012 6836s,82747,,, +347,USA,,LFA,b,Merrill Klamath Lake (CA),41.979167,-121.625,,0.045,,8420,323,155,,,,993,L1045 U1026 10.0s,82748,,, +347,USA,,TKB,b,Kleberg Co Kingsville (TX),27.604167,-98.125,,0.025,,8535,298,158,,,,,U1022 5.3s,82760,,, +347,GTM,,BAR,b,Puerto Barrios (izb),15.729167,-88.541667,,0.025,,8965,284,160,,,,10,L1007 U1028 8821s,82739,,, +347,AUS,,RIC,b,Richmond (NSW),-33.604167,150.791667,,1,,16512,68,168,,,,,L1020 U1020 10s,TWEB,86465,, +347,AUS,,NSM,b,Norseman (WA),-32.1875,121.791667,,0.025,,14459,93,178,,,,,U1022 ,82754,,, +347.5,G,,TD,b,Teeside (EN-DUR),54.5625,-1.291667,,0.025,,579,301,79,,,,494,L406 U405 10.5s,82765,,, +348,G,,FOS,b,Fairoaks (EN-SUR),51.354167,-0.541667,,0.025,,486,263,78,,,,3,L385 U395 9.2s,82772,,, +348,E,,ZZA,b,Zaragoza (ARA-Z),41.604167,-0.875,,0.1,,1291,208,80,,,,998,L956 U951 5.6s,ID+3 gap,82798,, +348,G,,ATF,b,Aberdeen / Dyce (SC-ABS),57.0625,-2.125,,0.025,,777,318,81,,,,2,L400 U401 7.7s,82766,,, +348,F,,CL,b,Cahors / Lalbenque (46),44.395833,1.458333,,0.025,,932,205,82,,,,,U3 ,ID+15 tone,82770,, +348,F,,SCL,b,Apt / St Christol (84),44.0625,5.541667,,0.025,,897,184,82,,,,,U7 ,82787,,, +348,HNG,,SVR,b,Sgvr (Som),46.8125,18.125,,0.025,,1029,120,83,,,,7,L1019 U1020 9.0s,ID+6 gap,82789,, +348,HRV,,ZK,b,Zadar (zd),44.104167,15.375,,0.025,,1110,140,84,,,,999,L1024 U1023 8.0s,ID+5.5 gap,82796,, +348,S,,WA,b,Stockholm / Arlanda,59.645833,17.958333,,0.025,,1102,36,84,,,,962,L441 U359 ,82795,,, +348,FRO,,VG,b,Vgar (vgo),62.043333,-7.195556,,0.025,,1371,329,87,,,,,U391 4.5s,82793,,, +348,SRB,,TPL,b,Topola (Srb-sum),44.145833,20.708333,,0.025,,1378,124,87,,,,1,L1088 U1072 9.3s,ID+6 tone,82791,, +348,RUS,,SH,b,Ostrov / Veretje,57.3125,28.458333,,0.025,,1521,59,88,,,,,,86469,,, +348,S,,GUN,b,Storuman / Gunnam,64.895833,17.791667,,0.025,,1562,20,89,,,,990,L409 U391 ,82773,,, +348,NOR,,SAD,b,Leknes / Sandsund,68.104167,13.625,,0.025,,1820,10,91,,,,998,L374 U375 ,82786,,, +348,ISL,,HA,b,Vopnafjrdhur / Hofsa,65.645833,-15.041667,,0.025,,1925,330,92,,,,19,L1020 U1059 6.0s,82774,,, +348,UKR,,OD,b,Odesa/Central (OD),46.479167,30.625,,0.025,,1854,100,92,,,,,L1006 U1007 ,82780,,, +348,UKR,,OE,b,Odesa/Central (OD),46.395833,30.708333,,0.025,,1864,100,92,,,,,U1051 ,82781,,, +348,GRC,,KTA,b,Kalamata (pel-mes),37.0625,22.041667,,0.025,,2072,138,94,,,,,U400 ,ID+6 gap,82777,, +348,ISL,,PA,b,Patreksfjrur (vf),65.5625,-23.958333,,0.025,,2261,323,96,,,,,U1054 6.0s,82784,,, +348,NOR,,BX,b,Batsfjord,70.604167,29.708333,,0.025,,2368,21,97,,,,,L348 U348 ,82768,,, +348,RUS,,OR,b,Borisoglebsk (VN),51.354167,42.208333,,0.025,,2442,78,97,,,,,,82783,,, +348,RUS,,SW,b,Borisoglebsk (VN),51.354167,42.208333,,0.025,,2442,78,97,,,,,U1045 15.0s,IDx2,82790,, +348,ARM,,SVN,b,Sevan (grk),40.520833,44.958333,,0.025,,3182,98,105,,,,,,82788,,, +348,IRN,,OMD,b,Omidiyeh (kuz),30.854167,49.541667,,0.025,,4210,107,115,,,,,,82782,,, +348,IRN,,BY,b,Kharg/Bahram (bus),29.258333,50.316667,,0.025,,4391,108,117,,,,,,82769,,, +348,CAN,,M,b,Rockland / Dorval (QC),45.520833,-73.625,,0.1,,5603,296,123,,,,,,87115,,, +348,CAN,,ZUL,b,Rockland / Dorval (Montreal) (QC),45.520833,-73.625,,0.1,,5603,296,123,,,,,U400 9924s,DAID,82797,, +348,PAK,,QT,b,Quetta (blc),30.25,66.933056,,0.025,,5427,92,127,,,,999,L1043 U1041 ,IDx2 + 10 tone,82785,, +348,USA,,BUP,b,Burnham Pittsfield (ME),44.6875,-69.375,,0.025,,5396,293,127,,,,997,L1043 U1028 7.90s,82767,,, +348,USA,,DKG,b,Don Scott Columbus (OH),40.0625,-83.041667,,0.025,,6580,297,139,,,,,L1020 U1022 6.2s,87110,,, +348,USA,,MC,b,Surff Mason City (IA),43.0625,-93.291667,,0.025,,6939,306,142,,,,990,L1043 U1020 6191s,82778,,, +348,USA,,LDF,b,Lame Deer (MT),45.645833,-106.708333,,0.05,,7415,316,144,,,,,,87114,,, +348,CUB,,UHA,b,La Habana (ch),22.9375,-82.458333,,0.1,,7941,284,146,,,,68,L890 U1027 4.6s,82792,,, +348,USA,,VLX,b,Wilcox Mountain View (AR),35.854167,-92.125,,0.025,,7466,300,148,,,,2,L1015 U1020 ,82794,,, +348,CUB,,K,b,Santiago de Cuba (sc),19.979167,-75.958333,,0.025,,7755,277,151,,,,,L404 ,82776,,, +348,USA,,DC,b,Buffs Greeley (CO),40.354167,-104.625,,0.025,,7777,311,151,,,,990,L1051 U1026 6.2s,82771,,, +348,USA,,DCI,b,Greeley (CO),40.354167,-104.625,,0.025,,7777,311,151,,,,,L~1050 U1020 6.2s,87109,,, +348,USA,,GX,b,Greeley (CO),40.354167,-104.625,,0.025,,7777,311,151,,,,,,87111,,, +348,USA,,GZ,b,Greeley (CO),40.4375,-104.791667,,0.025,,7778,311,151,,,,,,87112,,, +348,USA,,GZW,b,Greeley (CO),40.4375,-104.791667,,0.025,,7778,311,151,,,,,L1040 U1030 ,87113,,, +348,USA,,MNC,b,Mason Co Shelton (WA),47.229167,-123.125,,0.025,,7974,327,153,,,,1,L1016 U1028 5.7s,82779,,, +348,USA,,NID,b,China Lake Naval Air Weapons Station (CA),35.6875,-117.708333,,0.025,,8851,317,159,,,,,,87116,,, +348,SLM,,HN,b,Honiara (cth),-9.4375,160.041667,,0.025,,14704,36,178,,,,,L1022 U1018 8.0s,82775,,, +349,D,,KAS,b,Kassel / Calden (hes),51.464842,9.457397,,0.1,,222,108,69,,,,7,L1016 U1032 5.5s,ID+1 gap, ex KSL (08/2012),82809, +349,XOE,,DNF,b,Dan Duc DF Platform,55.479167,5.125,,0.025,,384,348,77,,,,945,L464 U348 30.0s,82803,,, +349,G,,KMB,b,Kemble (EN),51.6875,-2.041667,,0.025,,581,269,79,,,,,L406 U403 4.9s,86470,,, +349,F,,RS,b,Rennes / St Jacques (35),48.0625,-1.625,,0.025,,728,235,80,,,,,U4 19.9s,ID+17 tone,82813,, +349,XOE,,SPA,b,Sleipner A platform,58.354167,1.875,,0.025,,751,339,80,,,,998,L405 U399 6.0s,82815,,, +349,S,,JX,b,Vxj/Kronoberg,56.979167,14.791667,,0.025,,764,42,81,,,,7,L393 U407 ,82808,,, +349,NOR,,TAR,b,Orland / Tarva,63.8125,9.458333,,0.025,,1313,7,86,,,,994,L402 U397 ,82816,,, +349,ROU,,OPE,b,Bucuresti / Otopeni (BU),44.5625,26.208333,,0.025,,1679,112,90,,,,0,L1020 U1004 ,ID+6 gap,82810,, +349,TUR,,IPT,b,Isparta/Suleyman Demirel LTFC (akd-isp),37.851,30.358486,,0.025,,2442,121,97,,,,0,L1020 U1020 ,Cont. ID,82807,, +349,CAN,,1E,b,Black Tickle (Island of Ponds) (NL),53.479167,-55.791667,,0.025,,4050,298,113,,,,,10.2s,DAID,82800,, +349,CPV,,PRA,b,Praia/Francisco Mendes (san-pra),14.941667,-23.479167,,0.025,,4905,224,122,,,,,,82812,,, +349,UZB,,UP,b,Kokand (fag),40.479167,71.041667,,0.025,,4955,78,123,,,,,,82818,,, +349,USA,,SF,b,Sanfd Sanford (ME),43.354167,-70.791667,,0.025,,5577,293,129,,,,985,L1059 U1033 ,82814,,, +349,USA,,APG,b,Aberdeen Aberdeen Proving Grounds (MD),39.520833,-76.125,,0.025,,6192,292,135,,,,7,L1051 U1037 7899s,82802,,, +349,USA,,ER,b,Esmer Erie (PA),42.020833,-80.291667,,0.025,,6263,297,136,,,,0,L1022 U1020 5.96s,82804,,, +349,USA,,FV,b,Larez Indianapolis (IN),39.770833,-86.208333,,0.025,,6794,299,141,,,,,U1050 6.3s,82805,,, +349,USA,,AAF,b,Apalachicola (FL),29.729167,-85.041667,,0.025,,7539,290,148,,,,,L1033 U1033 5.41s,82801,,, +349,USA,,GW,b,Teock Greenwood (MS),33.604167,-90.125,,0.025,,7534,297,148,,,,990,L405 U385 7.9s,82806,,, +349.5,G,,LPL,b,Liverpool (EN-MER),53.354167,-2.708333,,0.025,,629,286,79,,,,521,L388 U432 6.9s,82819,,, +349.5,F,,SZA,b,Solenzara (20A),41.9375,9.375,,0.025,,1153,168,85,,,,-349.5,U2 11.3s,ID+8 tone,82820,, +350,D,,FU,b,Hamburg West (ham),53.604167,9.958333,,0.025,,290,54,76,,,,,L405 U395 ,86474,,, +350,D,,SPM,b,Speyer (rlp),49.3125,8.458333,,0.025,,343,154,76,,,,,L1023 U1027 ,82869,,, +350,I,,BLA,b,Cerrione (bi),45.479167,8.125,,0.025,,748,170,80,,,,0,L1019 U1019 10.0s,ID+6 gap,82826,, +350,F,,MUT,b,Muret / Lherm (31),43.479167,1.208333,,0.025,,1035,204,83,,,,,L4 20.7s,ID+15 tone,82852,, +350,HRV,,SK,b,Zagreb / Pleso / S. Kraljevec (zg),45.8125,16.125,,0.025,,995,131,83,,,,2,L1030 U1031 8.5s,ID+6 gap,82867,, +350,EST,,WA,b,Kuressaare (Saa),58.270833,22.541667,,0.025,,1227,50,85,,,,2,L1030 U1031 10.1s,IDx2 + 7 gap,82879,, +350,E,,L,b,Albacete (CAM-AB),38.9375,-1.875,,0.025,,1598,207,89,,,,,U1051 3.0s,ID+2 gap,82844,, +350,RUS,,MYU,b,Kretsenichy,58.604167,31.375,,0.025,,1722,55,90,,,,0,L1015 U1015 ,IDx2,82853,, +350,RUS,,MÜ,b,Kretsenichy,58.604167,31.375,,0.025,,1722,55,90,,,,,,82850,,, +350,RUS,,WN,b,Krechevitsy,58.604167,31.375,,0.025,,1722,55,90,,,,992,L1026 U1013 ,IDx2 + 7 gap,82880,, +350,FIN,,LAA,b,Oulu / Laanila,64.979167,25.208333,,0.025,,1785,30,91,,,,2,L408 U408 ,ID+5 gap,82845,, +350,XOE,,VGA,b,Vega,36.520833,14.625,,0.025,,1850,156,91,,,,,L1015 U1030 ,86477,,, +350,BUL,,DWN,b,Devnya for Varna (vrn),43.229167,27.625,,0.025,,1860,114,92,,,,5,L1025 U1039 8.1s,ID+5 gap,82836,, +350,E,,GM,b,Mlaga (AND-MA),36.729167,-4.541667,,0.025,,1914,211,92,,,,982,L1034 U1025 ,82839,,, +350,RUS,,UK,b,Yukhnov,54.729167,35.208333,,0.025,,1917,70,92,,,,,L387 30.0s,IDx2,82875,, +350,NOR,,TIL,b,Bardufoss / Mlselv / Tiller,68.979167,19.125,,0.025,,1991,15,93,,,,0,L400 U400 10.0s,82873,,, +350,RUS,,A,b,Belgorod (BE),50.645833,36.541667,,0.025,,2083,82,94,,,,996,L1055 U1047 15.0s,IDx2,82822,, +350,RUS,,B,b,Belgorod (BE),50.645833,36.625,,0.025,,2088,82,94,,,,998,L974 U959 30.0s,82823,,, +350,TUR,,HAY,b,Haymana (ica-ank),39.4375,32.541667,,0.025,,2447,115,97,,,,,L1035 U1040 ,Cont. ID,82840,, +350,CAN,,RB,b,Resolute Bay (NU),74.729167,-94.958333,,3,,4799,338,100,,,,,U410 ,DAID,82864,, +350,CAN,,DF,b,Deer Lake (NL),49.1875,-57.458333,,1,,4367,292,101,,,,0,L410 U388 10.0s,DAID,82834,, +350,RUS,,N,b,Nalchik (KB),43.520833,43.625,,0.025,,2901,94,102,,,,,,82854,,, +350,TKM,,CO,b,Trkmenbaşy (bal),40.104167,52.958333,,0.025,,3753,92,111,,,,,,82829,,, +350,CAN,,F2,b,Searose FPSO / Grand Banks (NL),46.770833,-48.041667,,0.025,,3887,283,112,,,,997,L406 U400 5.5s,82838,,, +350,RUS,,XV,b,Novy Vasyugan,58.604167,76.541667,,0.025,,4283,52,116,,,,0,L1045 U1045 ,IDx2,82881,, +350,USA,,LE,b,Leevy Raleigh (NC),35.9375,-78.708333,,0.4,,6631,291,127,,,,986,L1046 U1022 7485s,82846,,, +350,USA,,ME,b,Deana Chicago (IL),41.979167,-88.041667,,0.4,,6727,302,128,,,,980,L1060 U1020 5843s,82851,,, +350,CAN,,J5,b,Loon River (AB),57.145833,-115.041667,,0.2,,6751,328,131,,,,,,87118,,, +350,CAN,,5O,b,Gods River (MB),54.854167,-94.041667,,0.025,,6056,316,134,,,,993,L400 U405 8.55s,DAID,82821,, +350,CAN,,D7,b,Kincardine (ON),44.1875,-81.625,,0.025,,6181,300,135,,,,987,L1051 U1000 6189s,82832,,, +350,CAN,,NY,b,Enderby (BC),50.645833,-118.958333,,0.5,,7491,326,135,,,,1,L403 U407 10.0s,DAID,82857,, +350,USA,,BFW,b,Silver Bay (MN),47.270833,-91.375,,0.025,,6499,308,138,,,,995,L1015 U1015 37.0s,AWOS,82825,, +350,CAN,,N4,b,Swan River (MB),52.104167,-101.208333,,0.025,,6608,317,139,,,,,U1030 10.2s,DAID,82855,, +350,USA,,CBG,b,Cambridge (MN),45.5625,-93.291667,,0.025,,6737,308,140,,,,996,L1042 U1030 8.0s,82827,,, +350,USA,,HBC,b,Mohall (ND),48.770833,-101.541667,,0.025,,6899,315,142,,,,,,87117,,, +350,ALS,,VTR,b,Takotna River McGrath (AK),62.9375,-155.541667,,0.025,,7125,351,144,,,,996,L1021 U1020 8.4s,82877,,, +350,B,,VTR,b,Vitria (ES),-20.1875,-40.208333,,1,,9218,223,144,,,,996,L1012 U1070 7.6s,82878,,, +350,USA,,CP,b,Acore Cahokia / St Louis (IL),38.520833,-90.041667,,0.025,,7123,300,144,,,,990,L1056 U1036 6258s,82830,,, +350,USA,,DNS,b,Denison (IA),41.979167,-95.375,,0.025,,7143,306,144,,,,,L1021 U1020 5.69s,82835,,, +350,USA,,BEP,b,Bay Creek Perry (GA),32.4375,-83.791667,,0.025,,7236,291,145,,,,7,L1013 U1015 4746s,AWOS-3,82824,, +350,USA,,CWH,b,Capshaw Huntsville (AL),34.770833,-86.791667,,0.025,,7233,295,145,,,,990,L1045 U1024 8.0s,82831,,, +350,USA,,IUI,b,Hicks Blytheville (AR),35.9375,-89.875,,0.025,,7325,298,146,,,,,U1034 5.1s,82842,,, +350,MEX,,PM2,b,Abkatum 5 (cam),19.270833,-92.125,,0.2,,8891,289,150,,,,,,82863,,, +350,USA,,RG,b,Gally Oklahoma City (OK),35.3125,-97.625,,0.025,,7834,303,151,,,,988,L1045 U1023 5.9s,82865,,, +350,USA,,TUF,b,Stuckey Ruston (LA),32.395833,-92.625,,0.025,,7788,297,151,,,,990,L1041 U1018 8.9s,82874,,, +350,USA,,SWU,b,Sweden Idaho Falls (ID),43.4375,-112.125,,0.025,,7868,317,152,,,,996,L1025 U1018 8.0s,82871,,, +350,USA,,LF,b,Flufy Lufkin (TX),31.229167,-94.791667,,0.025,,8019,298,153,,,,995,L1054 U1036 6.00s,82847,,, +350,PNR,,DAV,b,David (Chiriqui) (chq),8.395833,-82.458333,,0.1,,9195,274,154,,,,979,L1036 U995 10.5s,82833,,, +350,B,,ULD,b,Uberlndia (MG),-18.895833,-48.208333,,0.1,,9492,231,155,,,,,,82876,,, +350,MYA,,MKT,b,Meiktila Air Base,20.934167,95.913056,,0.025,,8153,77,155,,,,,,22100045,,, +350,B,,STM,b,Santarm (PA),-2.4375,-54.791667,,0.025,,8318,245,156,,,,0,L1020 U1020 ,ID+5 gap,82870,, +350,CLN,,RM,b,Ratmalana (Colombo) (col),6.833611,79.885278,,0.025,,8283,99,156,,,,,,34700016,,, +350,USA,,OKT,b,Yoakum (TX),29.3125,-97.125,,0.025,,8325,299,156,,,,,L1036 U1015 5.4s,82861,,, +350,USA,,ON,b,Agget Newport (OR),44.6875,-124.041667,,0.025,,8254,326,156,,,,995,L1037 U1028 ~6.0s,82862,,, +350,USA,,NUC,b,San Clemente San Clemente Island (CA),33.020833,-118.541667,,0.025,,9144,316,160,,,,994,L1050 U1038 8.7s,82856,,, +350,B,,SCB,b,Sorocaba (SP),-23.479167,-47.458333,,0.025,,9895,228,163,,,,,U1020 ,82866,,, +350,B,,IL,b,Cariano (SC),-27.645833,-48.541667,,0.025,,10350,227,164,,,,,,82841,,, +350,BOL,,LPZ,b,La Paz (lpz),-16.520833,-68.208333,,0.025,,10443,248,164,,,,0,L1173 U1172 7.66s,82849,,, +350,AUS,,ESL,b,East Sale (VIC),-38.104167,147.125,,2,,16616,78,166,,,,,L1050 9s,TWEB,86473,, +350,INS,,OC,b,Semarang (JT-sem),-6.979167,110.375,,0.025,,11571,83,168,,,,,,82859,,, +350,AUS,,CIN,b,Curtin (WA),-17.5625,123.791667,,0.025,,13398,79,174,,,,1,L1022 U1024 8.95s,82828,,, +350,FJI,,OI,b,Ono-i-Lau Island (EA-LU),-20.636111,-178.722222,,0.025,,16487,9,184,,,,,L1035 ,82860,,, +350,NZL,,SY,b,Surrey,-37.229167,175.208333,,0.025,,18143,32,190,,,,,U1010 8s,82872,,, +350,NZL,,KI,b,Kaikoura,-42.4375,173.708333,,0.025,,18579,47,191,,,,,U1020 8s,82843,,, +350.5,HOL,,ROT,b,Rotterdam (zho),51.895833,4.541667,,0.015,,130,260,69,,,,517,L400 U400 8.2s,82883,,, +350.5,XOE,,AMZ,b,Aoka Mizu FPSO,57.895833,0.625,,0.025,,741,333,80,,,,-350.5,L395 U398 6.1s,86478,,, +351,F,,DSA,b,Dieppe / St Aubin (76),49.895833,1.041667,,0.025,,449,239,77,,,,,L398 U400 10.0s,82891,,, +351,DNK,,KP,b,Karup,56.1875,8.541667,,0.025,,474,16,78,,,,0,L411 U410 5.3s,82892,,, +351,F,,BSC,b,Brive-Valle de la Dordogne (46),45.041667,1.482778,,0.025,,865,207,82,,,,,A2A AM,2500016,,, +351,F,,OSA,b,Ouessant (29),48.479167,-5.041667,,0.025,,907,248,82,,,,,U7 20.0s,ID+15 tone,82896,, +351,E,,CST,b,Costix (PMI) (BAL-ML),39.645833,2.875,,0.065,,1412,192,83,,,,0,L1025 U1020 15.5s,ID+11 gap,82890,, +351,S,,OV,b,Visby,57.729167,18.375,,0.025,,985,46,83,,,,5,L398 U402 5.0s,ID+2 gap,82897,, +351,F,,PL,b,Perpignan / Rivesaltes (66),42.6875,2.958333,,0.025,,1079,195,84,,,,,U1 ,82900,,, +351,I,,POM,b,Pomigliano dArco (na),40.9375,14.375,,0.05,,1382,151,84,,,,993,L1020 U1020 10.0s,ID+6 gap,82901,, +351,FIN,,SAV,b,Savonlinna,61.979167,28.791667,,0.025,,1727,42,90,,,,0,L407 U405 ,82902,,, +351,LBN,,BOD,b,Beirut International (bei),33.895833,35.458333,,0.5,,3075,120,91,,,,,U1020 ,ID+5 gap,82889,, +351,GRC,,ALP,b,Alexandroupoli (emc-evr),40.854167,25.958333,,0.025,,1940,122,92,,,,0,L400 U400 ,ID+4 gap,82886,, +351,ISL,,BL,b,Blonduos,65.6875,-20.291667,,0.025,,2121,326,94,,,,,L930 U880 4.8s,ID+2 gap,82888,, +351,AZR,,PD,b,Ponta Delgada (smg),37.729167,-25.708333,,0.025,,2955,250,103,,,,997,L1036 U1043 8.3s,ID+5 gap,82898,, +351,CAN,,YKQ,b,Waskaganish (QC),51.479167,-78.708333,,0.5,,5500,305,115,,,,,U405 10.4s,DAID,82904,, +351,ATG,,ANU,b,V C Bird (atg),17.145833,-61.791667,,0.15,,7030,264,136,,,,,U1016 8583s,82887,,, +351,USA,,MSQ,b,Culpeper (VA),38.4375,-77.875,,0.025,,6385,292,137,,,,,L1035 U1040 6309s,82893,,, +351,USA,,PH,b,Bayye Mosinee (WI),44.6875,-89.625,,0.025,,6605,305,139,,,,0,L1022 U1020 4.7s,82899,,, +351,USA,,SI,b,Covington / Addys (KY),39.145833,-84.708333,,0.025,,6753,297,141,,,,,,87119,,, +351,USA,,NO,b,Reno (NV),39.520833,-119.791667,,0.05,,8579,320,155,,,,991,L1040 U1028 6.0s,82894,,, +351,USA,,AE,b,Dudle Albuquerque (NM),35.229167,-106.708333,,0.025,,8343,309,156,,,,993,L1046 U1020 6.0s,82885,,, +351,KOR,,CW,b,Seongmu (ccb),36.5625,127.458333,,0.025,,8622,45,158,,,,,L1016 U1015 ,86481,,, +351.5,HRV,,PLA,b,Pula (pa),44.895833,13.804167,,2,,969,143,64,,,,512,L1000 U1024 10.0s,ID+6 tone,82905,, +352,D,,LAA,b,Niederrhein (nrw),51.020833,6.208333,,0.045,,122,187,61,,,,998,L1023 U1019 ,82913,,, +352,G,,WOD,b,Woodley (EN-BER),51.4375,-0.875,,0.025,,507,264,78,,,,2,L403 U405 6.3s,82923,,, +352,NOR,,TRF,b,Tyrifjord,59.9375,10.291667,,0.025,,903,14,82,,,,0,L400 U400 ,82921,,, +352,IRL,,ENS,b,Ennis For Shannon (CE),52.895833,-8.958333,,0.025,,1042,281,83,,,,993,L400 U400 4.0s,82911,,, +352,S,,CG,b,Stockholm / Arlanda,59.520833,17.958333,,0.025,,1092,37,84,,,,3,L400 U402 ,82910,,, +352,FIN,,PSJ,b,Seinajoki,62.645833,22.958333,,0.025,,1526,33,88,,,,999,L406 U409 ,82917,,, +352,TUR,,BRY,b,Yenisehir (mam-bur),40.270833,29.625,,0.025,,2203,117,95,,,,,L1027 ,ID+2 gap,82908,, +352,BHR,,BI,b,Bahrain (muh),26.270833,50.625,,0.025,,4662,111,120,,,,,U1020 ,ID+12 gap,82907,, +352,CHN,,OY,b,Urumqi / Diwopu / Fukang (XJ),43.895833,87.458333,,0.025,,5779,65,131,,,,990,L1048 U1027 ,IDx2 + 8 gap,82915,, +352,CAN,,Q4,b,Unity (SK),52.479167,-109.208333,,0.05,,6932,322,139,,,,,,87120,,, +352,CAN,,B2,b,Hamburg (AB),57.354167,-119.791667,,0.025,,6899,330,142,,,,,U1030 5.58s,82906,,, +352,USA,,HIX,b,Honey Grove Hopkinsville (KY),36.895833,-87.375,,0.025,,7095,297,144,,,,515,L~1000 U1030 ,82912,,, +352,USA,,BVG,b,Boll Weevil Enterprise (AL),31.354167,-85.958333,,0.025,,7462,292,148,,,,,L1048 8043s,82909,,, +352,USA,,VM,b,Meana, Mena Intermountain Municipal (AR),34.520833,-94.041667,,0.025,,7692,300,150,,,,989,L1038 U1018 5.9s,82922,, +352,REU,,SP,b,Pierrefonds / Etang (974),-21.270833,55.375,,0.025,,9437,135,161,,,,,,82920,,, +352,AUS,,PRL,b,Parkerville (WA),-31.854167,116.125,,0.025,,14048,97,176,,,,0,L1028 U1028 ,82916,,, +352,AUS,,TPB,b,Temple Bar (NT),-23.729167,133.791667,,0.025,,14591,75,178,,,,,U1020 9s,86483,,, +352.5,BEL,,DD,b,Oostende (vlg-wvl),51.1875,2.875,,0.1,,265,249,70,,,,498,L400 U400 10.0s,82924,,, +353,D,,KIL,b,Kiel / Holtenau (shs),54.354167,10.125,,0.025,,351,43,76,,,,995,L403 U396 ,82945,,, +353,F,,BN,b,Bale-Mulhouse / Habsheim (68),47.645833,7.458333,,0.025,,502,171,78,,,,7,L396 U405 ,ID+8 gap,82930,, +353,XOE,,SRW,b,Shell Shearwater Platform,57.020833,1.958333,,0.025,,617,334,79,,,,998,L415 U395 ,82969,,, +353,POL,,P,b,Poznan / Lawica,52.395833,16.875,,0.025,,712,83,80,,,,0,L1020 U1020 ,82960,,, +353,F,,SB,b,St. Brieuc / Armor (22),48.5625,-2.791667,,0.025,,762,242,81,,,,,L2 U2 20.7s,ID+17 tone,82966,, +353,POL,,KRT,b,Kartuzy,54.3125,18.208333,,0.025,,822,68,81,,,,,L988 U1020 ,82946,,, +353,POL,,KRW,b,Krakow / Balice (MP),50.104167,19.875,,0.025,,965,98,83,,,,5,L990 U1059 6.0s,ID+3 gap,82947,, +353,XOE,,OBA,b,Oseberg A platform,60.479167,2.791667,,0.025,,957,348,83,,,,7,L404 U417 8.5s,ID+3 gap,82959,, +353,ALG,,BNA,b,Beni Amrane (35),36.645833,3.625,,0.1,,1733,188,84,,,,,U30 6.3s,ID+4 tone,82931,, +353,GRC,,PAK,b,Preveza (epi-pre),38.9375,20.791667,,0.025,,1837,137,91,,,,0,L400 U400 ,ID+8 gap,82961,, +353,NOR,,MH,b,Mehamn,71.020833,27.791667,,0.025,,2358,19,97,,,,,L353 U353 ,82955,,, +353,GEO,,BT,b,Ali (sdk),42.104167,43.625,,0.025,,2988,97,103,,,,10,L1020 U1040 ,ID+6 gap,82932,, +353,USA,,LLX,b,Lyndonville (VT),44.520833,-72.041667,,0.025,,5574,294,129,,,,,U1020 7.1s,82952,,, +353,CAN,,F7,b,Georgian Bay (Parry Sound) (ON),45.270833,-79.875,,0.05,,5997,300,130,,,,0,L406 U411 8334s,DAID,82938,, +353,CAN,,K4,b,Legend Lake (AB),57.1875,-112.875,,0.2,,6668,327,131,,,,,U405 ,DAID,82944,, +353,USA,,IN,b,Raize International Falls (MN),48.479167,-93.291667,,0.1,,6507,310,132,,,,0,L1046 U1029 6.0s,TWEB,82941,, +353,USA,,MG,b,Otims Montgomery (NY),41.4375,-74.291667,,0.025,,5934,293,132,,,,0,L1000 U1026 8.60s,82954,,, +353,CAN,,4G,b,Cross Lake (MB),54.604167,-97.791667,,0.025,,6251,317,135,,,,,U400 10.14s,DAID,82925,, +353,CUB,,UHG,b,Holgun (ho),20.729167,-76.375,,0.8,,7719,278,135,,,,983,L951 U924 8354s,82971,,, +353,VEN,,HOT,b,Higuerote (mir),10.479167,-66.125,,1,,7900,263,136,,,,2,L968 U960 7839s,82939,,, +353,CAN,,QG,b,Saint Clair Beach (Windsor) (ON),42.3125,-82.875,,0.025,,6396,299,137,,,,993,L400 U389 10.7s,DAID,82964,, +353,USA,,LI,b,Lasky Little Rock (AR),34.6875,-92.291667,,0.4,,7574,299,137,,,,993,L1030 U1025 6.3s,82950,,, +353,CAN,,ZES,b,Cape Scott (BC),50.770833,-128.625,,0.5,,7821,332,138,,,,,,87125,,, +353,USA,,LWT,b,Lewistown (MT),47.0625,-108.375,,0.2,,7369,318,138,,,,,L1050 U1030 8.0s,87123,,, +353,CAN,,PG,b,Portage (MB),49.854167,-98.208333,,0.025,,6647,314,139,,,,,U1028 10123s,DAID,82962,, +353,USA,,DV,b,Auney Davenport (IA),41.6875,-90.625,,0.025,,6900,303,142,,,,995,L1053 U1035 5.9s,82936,,, +353,CAN,,X,b,Whitehorse (YT),60.645833,-135.041667,,0.025,,7017,340,143,,,,,,87124,,, +353,CAN,,ZXY,b,Klondike (Whitehorse) (SK),60.645833,-135.041667,,0.025,,7017,340,143,,,,,U402 ,82973,,, +353,USA,,ABC,b,Jackson (MN),43.645833,-94.958333,,0.025,,6983,307,143,,,,,,87121,,, +353,USA,,FOA,b,Elm River Flora (IL),38.6875,-88.458333,,0.025,,7015,299,143,,,,,L1030 U1010 ,87122,,, +353,USA,,MJQ,b,Jackson (MN),43.645833,-94.958333,,0.025,,6983,307,143,,,,9,L1015 U1026 36239s,82956,,, +353,USA,,TY,b,Benfi Knoxville (TN),35.729167,-84.041667,,0.025,,6984,294,143,,,,995,L1051 U1038 6025s,82970,,, +353,CAN,,5F,b,Fox Creek (AB),54.395833,-116.791667,,0.025,,7063,327,144,,,,,U394 10.47s,DAID,82926,, +353,USA,,DI,b,Noson Dickinson (ND),46.6875,-102.708333,,0.025,,7131,314,144,,,,993,L1058 U1045 6399s,82935,,, +353,USA,,VV,b,Junne Greensboro (GA),33.645833,-83.041667,,0.025,,7090,292,144,,,,998,L1006 U1012 4.84s,82972,,, +353,USA,,ICL,b,Clarinda (IA),40.729167,-95.041667,,0.025,,7228,305,145,,,,995,L1015 U1015 6.20s,82940,,, +353,USA,,JUK,b,Mc Kinnon Brunswick (GA),31.145833,-81.375,,0.025,,7186,289,145,,,,,U1030 ,82943,,, +353,CUB,,J,b,San Julin (pr),22.104167,-84.208333,,0.1,,8128,284,148,,,,,U950 ,82942,,, +353,USA,,DWL,b,Willow Gothenburg (NE),40.854167,-100.041667,,0.025,,7492,308,148,,,,2,L1028 U1024 6.25s,82937,,, +353,USA,,SO,b,Sawcy Winfield / Arkansas City (KS),37.104167,-97.041667,,0.025,,7647,304,149,,,,,U1058 ,82968,,, +353,USA,,BX,b,Carma Bogalusa (LA),30.895833,-89.875,,0.025,,7746,295,150,,,,995,L1042 U1016 6.0s,82933,,, +353,USA,,CY,b,Horse Cheyenne (WY),41.145833,-104.708333,,0.025,,7711,311,150,,,,995,L1038 U1030 6.0s,82934,,, +353,USA,,GVB,b,Bogalusa George R Carr Memorial Airfield (LA),30.895833,-89.875,,0.025,,7746,295,150,,,,,L1040 U1026 7899s,86485,,, +353,USA,,AL,b,Trina Walla Walla (WA),46.1875,-118.208333,,0.025,,7879,323,152,,,,985,L1050 U1035 ,82928,,, +353,USA,,RNT,b,Renton (WA),47.479167,-122.208333,,0.025,,7915,326,152,,,,10,L1000 U1025 4.5s,82965,,, +353,USA,,LC,b,Keyli Lake Charles (LA),30.1875,-93.291667,,0.025,,8017,296,153,,,,0,L1039 U1024 6.1s,82949,,, +353,USA,,AB,b,Tomhi Abilene (TX),32.3125,-99.708333,,0.025,,8214,302,155,,,,990,L1045 U1020 5.7s,82927,,, +353,USA,,BKS,b,Brooks Co Falfurrias (TX),27.1875,-98.125,,0.025,,8572,298,158,,,,2,L1021 U1020 7227s,82929,,, +353,J,,OM,b,Ominato (toh-aom),41.229167,141.125,,0.025,,8756,33,159,,,,,L1000 20s,86487,,, +353,CHN,,XK,b,Pingzhou,23.020833,113.208333,,0.025,,9079,63,160,,,,,,86489,,, +353,EQA,,LAG,b,Lago Agrio (suc),0.0625,-76.875,,0.025,,9544,265,161,,,,993,L871 U858 4128s,82948,,, +353,HWA,,LLD,b,Lanai (HI),20.770833,-156.958333,,0.025,,11752,344,169,,,,0,L400 U402 8.5s,82951,,, +353,AUS,,SLS,b,Shellys (NSW),-34.6875,150.041667,,0.5,,16551,70,172,,,,,,82967,,, +353,OCE,,NH,b,Nuku Hiva,-8.8125,-140.208333,,0.025,,14331,316,177,,,,,19.66s,DAID,86486,, +353,AUS,,LRE,b,Longreach (QLD),-23.4375,144.291667,,0.025,,15238,65,180,,,,988,L1023 U1000 8s,82953,,, +353,AUS,,MTP,b,Mount Hope (SA),-34.145833,135.375,,0.025,,15533,84,181,,,,,L1020 U1020 8s,82957,,, +353.5,G,,EME,b,East Midlands (EN-NHS),52.8125,-1.208333,,0.025,,522,282,78,,,,501,L400 U398 4.6s,82974,,, +354,D,,PAD,b,Paderborn / Lippstadt (nrw),51.604167,8.625,,0.025,,162,109,75,,,,2,L1035 U1032 ,82984,,, +354,F,,MTZ,b,Metz / Nancy-Lorraine (57),49.270833,6.208333,,0.025,,316,183,76,,,,,19.5s,82982,,, +354,F,,CGC,b,Cognac / Chateaubernard (16),45.6875,-0.291667,,0.05,,865,217,79,,,,,L12 ,DAID,82976,, +354,XOE,,BHM,b,Bleo Holm / Bluewater Engineering,58.104167,-1.458333,,0.025,,832,326,81,,,,989,L407 U385 ,82975,,, +354,F,,NG,b,Nimes / Garons (30),43.854167,4.375,,0.025,,930,190,82,,,,,,82983,,, +354,HNG,,GYR,b,Győr (GMS),47.645833,17.708333,,0.025,,948,117,82,,,,6,L1021 U1026 8.2s,ID+3 gap,82980,, +354,E,,PP,b,Pamplona (NAV-NA),42.854167,-1.708333,,0.025,,1195,214,85,,,,23,L1021 U1066 7.5s,ID+4 gap,82985,, +354,I,,FE,b,Fiumicino (rm),41.8125,12.375,,0.025,,1230,156,85,,,,2,L1019 U1020 10.0s,ID+5 gap,82978,, +354,FIN,,G,b,Ivalo / Palotievanniemi,68.604167,27.458333,,0.025,,2144,23,94,,,,5,L408 U411 ,82979,,, +354,CAN,,Z,b,Monoghan / Sept Iles (QC),50.229167,-66.291667,,0.12,,4855,298,115,,,,,,87127,,, +354,CAN,,ZZV,b,Monoghan (Sept-Iles) (QC),50.229167,-66.291667,,0.12,,4855,298,115,,,,,U390 ,DAID,82986,, +354,USA,,DVZ,b,Davie Mocksville (NC),35.895833,-80.458333,,0.025,,6746,292,140,,,,,L968 U1007 ,87126,,, +354,USA,,MKS,b,Moncks Corner (SC),33.1875,-80.041667,,0.025,,6935,289,142,,,,990,L1036 U1015 7430s,82981,,, +354,CHN,,DK,b,Beijing (BJ),40.020833,116.541667,,0.025,,7759,50,151,,,,,17s,82977,,, +354,NCL,,FND,b,La Tontouta (sud),-22.020833,166.208333,,0.025,,16248,35,184,,,,,20s,DAID,86491,, +354,NZL,,NR,b,Napier (HKB),-39.479167,176.875,,0.13,,18431,31,184,,,,,U1020 4s,86492,,, +355,BEL,,ONW,b,Antwerpen / Deurne (vlg-ant),51.1875,4.541667,,0.025,,165,232,75,,,,999,L400 U400 10.0s,83009,,, +355,D,,KNG,b,Bad Knig for Frankfurt / Main (hes),49.770833,9.125,,0.025,,322,143,76,,,,996,L1028 U1016 ,83002,,, +355,SVN,,MI,b,Maribor (mb),46.479167,15.708333,,0.075,,919,129,77,,,,2,L402 U407 3.8s,83005,,, +355,XOE,,DON,b,Donna Dan B Platform,55.479167,5.125,,0.025,,384,348,77,,,,490,L1020 U~1020 ,82995,,, +355,XOE,,DONNA,b,Donna Dan B Platform,55.479167,5.125,,0.025,,384,348,77,,,,,L400 U400 ,82996,,, +355,D,,DRW,b,Drewitz / Cottbus (brb),51.895833,14.541667,,0.025,,557,89,79,,,,11,L1020 U1042 ,82997,,, +355,BIH,,MA,b,Mostar (hgn),43.229167,17.875,,0.1,,1305,135,80,,,,0,L1020 U349 ,ID+8 gap,83004,, +355,G,,PIK,b,Prestwick (SC-SAY),55.520833,-4.541667,,0.025,,812,302,81,,,,1,L402 U406 6.0s,83011,,, +355,I,,VIL,b,Villafranca di Verona (vr),45.3125,10.791667,,0.025,,821,155,81,,,,2,L1020 U1025 ,ID+3 gap,83018,, +355,SRB,,OBR,b,Obrenovac/Zvečka (Srb-gbg),44.642378,20.139094,,0.05,,1307,124,83,,,,998,L1025 U1028 8.2s,ID+4 gap,83008,, +355,BLR,,KI,b,Ivenets (MI),53.520833,26.458333,,0.025,,1352,75,86,,,,,L389 38.5s,83000,,, +355,BLR,,KN,b,Ivenets (MI),53.520833,26.458333,,0.025,,1352,75,86,,,,5,L384 U394 36.6s,IDx2 + 35 gap,83001,, +355,FIN,,J,b,Varkaus,62.1875,27.875,,0.025,,1698,40,90,,,,998,L405 U412 4.2s,82999,,, +355,NOR,,KT,b,Narvik / Framnes / Skatnes,68.4375,17.291667,,0.025,,1905,14,92,,,,,,83003,,, +355,MRC,,ARW,b,Nador / Arwi (otl),34.979167,-3.041667,,0.025,,2047,205,93,,,,997,L1054 U1052 ,Cont. ID,82990,, +355,ISL,,RK,b,Reykjavk (ho),64.145833,-22.041667,,0.025,,2110,320,94,,,,2,L1027 U1027 5.5s,ID+3 gap,83013,, +355,IRN,,ARB,b,Ardabil (ard),38.3125,48.375,,0.025,,3564,99,109,,,,894,L1130 U940 10.0s,ID+6 gap,82989,, +355,UZB,,MZ,b,Samarqand (saq),39.6875,66.958333,,0.025,,4734,82,120,,,,,,83006,,, +355,CAN,,YWP,b,Webequie (ON),52.979167,-87.375,,0.1,,5862,311,126,,,,0,L405 U408 10.2s,DAID,83019,, +355,CAN,,WP,b,Webequie (ON),52.979167,-87.375,,0.025,,5862,311,132,,,,,U402 10160s,DAID,87129,, +355,UGA,,EM,b,Entebbe (wak),0.138333,32.424444,,0.025,,6268,148,136,,,,,,8500003,,, +355,USA,,CGE,b,Cambridge (MD),38.520833,-76.041667,,0.025,,6262,291,136,,,,998,L1018 U1020 5802s,82993,,, +355,USA,,CS,b,Fenix Columbus (GA),32.4375,-85.041667,,0.025,,7315,292,146,,,,986,L1048 U1028 6393s,82994,,, +355,J,,IK,b,Ikishima (kyu-nag),33.7625,129.7875,,0.5,,8999,45,147,,,,0,L1023 U1022 ,DAID,82998,, +355,ALS,,AK,b,Saldo King Salmon (AK),58.729167,-156.791667,,0.025,,7597,351,149,,,,,L1038 U1025 ,87128,,, +355,ALS,,AUB,b,Saldo King Salmon (AK),58.729167,-156.791667,,0.025,,7597,351,149,,,,993,L1039 U1023 ,82991,,, +355,ALS,,AUD,b,Saldo King Salmon (AK),58.729167,-156.791667,,0.025,,7597,351,149,,,,,,82992,,, +355,B,,PAI,b,Barra do Pirai (RJ),-22.4375,-43.875,,0.2,,9615,225,153,,,,,,83010,,, +355,CLM,,SOG,b,Sogamoso (boy),5.6875,-72.958333,,0.1,,8783,265,153,,,,,L1031 U1038 4.66s,83015,,, +355,B,,ACJ,b,Aracaju (SE),-10.979167,-37.041667,,0.025,,8150,225,154,,,,,L1070 ,82988,,, +355,CHL,,SNO,b,Santo Domingo (VS),-33.645833,-71.625,,1,,12159,240,154,,,,,U874 3.78s,83014,,, +355,HND,,TGU,b,Tegucigalpa (Central District) (fmz),13.9375,-87.208333,,0.1,,9032,281,154,,,,998,L1050 U1045 ,Cont ID,83016,, +355,B,,URC,b,Coar (AM),-4.895833,-65.375,,0.025,,9216,253,160,,,,,L1056 ,86494,,, +355,B,,RBC,b,Rio Branco (AC),-9.854167,-67.875,,0.025,,9824,252,162,,,,1,L1006 U1014 7.19s,83012,,, +355,NRU,,NI,b,Nauru,-0.5625,166.958333,,0.025,,14003,24,176,,,,0,L1024 U1024 8.4s,83007,,, +355.5,I,,PAL,b,Palermo (pa),38.020833,13.208333,,0.025,,1653,159,90,,,,-355.5,L1024 U1018 10.1s,ID+6 gap,86495,, +356,E,,SGO,b,Sagunto (VAL-V),39.6875,-0.208333,,0.3,,1472,203,77,,,,12,L1120 U1140 ,ID+10 gap,83052,, +356,F,,RSY,b,Paris / Charles de Gaulle (77),49.020833,2.708333,,0.025,,432,219,77,,,,2,L402 U407 12.9s,ID+10 gap,83050,, +356,G,,WBA,b,Wolwerhampton (EN-WMD),52.520833,-2.291667,,0.025,,593,278,79,,,,0,L404 U398 5.8s,83061,,, +356,AUT,,SU,b,Salzburg,47.895833,12.958333,,0.025,,662,132,80,,,,0,L402 U399 ,83055,,, +356,F,,CVU,b,Castres / Mazamet (81),43.645833,2.208333,,0.025,,992,200,83,,,,,U3 22.4s,ID+15 tone,83027,, +356,BUL,,BGS,b,Burgas (bur),42.645833,27.625,,0.025,,1902,115,92,,,,998,L1024 U1017 10.0s,ID+6.5 gap,83025,, +356,TUR,,ANK,b,Ankara / Esenboga (ica-ank),39.9375,32.791667,,0.025,,2424,113,97,,,,31,L984 U1069 ,Cont. ID,83021,, +356,CAN,,AY,b,Saint Anthony (NL),51.395833,-56.125,,0.025,,4169,295,115,,,,200,L415 U406 10.3s,DAID,83024,, +356,CAN,,ZF,b,Yellowknife (NT),62.395833,-114.458333,,1,,6272,331,120,,,,,U425 10.2s,DAID,83063,, +356,CAN,,YBG,b,Bagotville (QC),48.354167,-71.125,,0.025,,5262,298,126,,,,983,L1027 U1005 8302s,DAID,83062,, +356,USA,,SUH,b,Sprucehead Rockland (ME),44.0625,-69.125,,0.025,,5423,292,127,,,,998,L1022 U1018 8600s,83056,,, +356,CAN,,YZD,b,Downsview Millitary Airfield (ON),43.770833,-79.458333,,0.063,,6082,298,130,,,,,U1028 ,DAID,87135,, +356,USA,,AR,b,Armin Providence (RI),41.8125,-71.375,,0.025,,5723,291,130,,,,995,L1035 U1025 6039s,83023,,, +356,CAN,,ZYQ,b,Polar Bear Churchill (MB),58.770833,-94.208333,,0.025,,5778,320,131,,,,,U399 ,86499,,, +356,USA,,HEU,b,Hunter Schenectady (NY),42.854167,-73.958333,,0.025,,5811,294,131,,,,990,L1035 U1015 8.51s,83033,,, +356,USA,,RD,b,Shapp Reading (PA),40.3125,-75.958333,,0.025,,6122,293,134,,,,997,L1027 U1020 6009s,83049,,, +356,GUY,,TIM,b,Timehri (Georgetown) (dem),6.520833,-58.208333,,0.5,,7721,253,137,,,,,,83057,,, +356,USA,,GR,b,Famis Green Bay (WI),44.4375,-88.208333,,0.025,,6544,304,138,,,,993,L1041 U1040 5993s,83032,,, +356,USA,,RCX,b,Rusk County Ladysmith (WI),45.520833,-91.041667,,0.025,,6618,306,139,,,,2,L1040 U1036 7041s,83048,,, +356,ALS,,HHM,b,Hotham Kotzebue (AK),66.895833,-162.541667,,0.025,,6750,355,140,,,,997,L1026 U1025 8.5s,83034,,, +356,CAN,,RN,b,Barchane (AB),53.895833,-113.375,,0.05,,6978,325,140,,,,,,87133,,, +356,CAN,,ZXE,b,Barnes (Saskatoon) (SK),52.145833,-106.541667,,0.039,,6846,320,140,,,,,U390 10.5s,DAID,83064,, +356,USA,,IUL,b,La Porte (IN),41.479167,-86.791667,,0.025,,6694,300,140,,,,0,L1038 U1025 5238s,83037,,, +356,USA,,VES,b,Versailles (OH),40.1875,-84.541667,,0.025,,6661,298,140,,,,,U1020 6500s,83060,,, +356,ALS,,FOX,b,Fox (AK),64.979167,-147.541667,,0.025,,6805,348,141,,,,483,L1035 U~1020 ,83030,,, +356,CAN,,T,b,Saskatoon (SK),52.145833,-106.541667,,0.025,,6846,320,141,,,,,,87134,,, +356,USA,,AQP,b,Appleton (MN),45.229167,-96.041667,,0.025,,6912,309,142,,,,974,L1027 U995 34.95s,AWOS-3,83022,, +356,USA,,PI,b,Tungg Peoria (IL),40.604167,-89.625,,0.025,,6929,302,142,,,,0,L1031 U1035 6034s,83044,,, +356,USA,,BXG,b,Burke County Waynesboro (GA),33.0625,-82.041667,,0.025,,7073,291,144,,,,,U1022 6478s,83026,,, +356,USA,,HIX,b,Honey Grove (KY),36.895833,-87.375,,0.025,,7095,297,144,,,,0,L1012 U1023 5.7s,83035,,, +356,USA,,SKI,b,Sac City (IA),42.395833,-94.958333,,0.025,,7086,306,144,,,,,U1017 7458s,83054,,, +356,USA,,UUV,b,Sullivan (MO),38.229167,-91.125,,0.025,,7210,301,145,,,,2,L991 U1006 ,83059,,, +356,USA,,ODX,b,Ord (NE),41.604167,-98.958333,,0.025,,7370,308,147,,,,997,L1020 U1014 7.0s,83041,,, +356,USA,,LLU,b,Spring River Lamar (MO),37.479167,-94.291667,,0.025,,7457,302,148,,,,2,L1035 U1042 5.9s,83038,,, +356,USA,,PB,b,Rubin West Palm Beach (FL),26.6875,-80.208333,,0.025,,7477,285,148,,,,2,L1037 U1041 6502s,83043,,, +356,CAN,,ON,b,Okanagan Penticton (BC),49.354167,-119.541667,,0.025,,7634,326,149,,,,,U392 10.5s,DAID,83042,, +356,USA,,ME,b,Savoy Meridian (MS),32.229167,-88.791667,,0.025,,7567,295,149,,,,985,L1050 U1020 6303s,83039,,, +356,USA,,PTT,b,Pratt (KS),37.729167,-98.708333,,0.025,,7687,305,150,,,,994,L1020 U1026 5.40s,83047,,, +356,CHN,,DK,b,Beijing / Capital (BJ),40.020833,116.541667,,0.025,,7759,50,151,,,,,L1007 ,83028,,, +356,USA,,OPZ,b,Lopez Island (WA),48.479167,-122.958333,,0.025,,7847,327,151,,,,,U~1060 6.5s,87132,,, +356,USA,,FWX,b,Hazer New Roads (LA),30.645833,-91.458333,,0.025,,7865,295,152,,,,,L1045 U1031 7.62s,86496,,, +356,USA,,HZ,b,Hazer New Roads (LA),30.645833,-91.458333,,0.025,,7865,295,152,,,,990,L1043 U1023 5925s,83036,,, +356,USA,,GMZ,b,Grindstone Mountain Bowie (TX),33.604167,-97.791667,,0.025,,7991,302,153,,,,,L1025 U1032 6.5s,83031,,, +356,USA,,HI,b,Abate Portland (OR),45.645833,-123.041667,,0.025,,8123,326,154,,,,,L1049 U1040 6.35s,87131,,, +356,USA,,PND,b,Abate Portland (OR),45.645833,-123.041667,,0.025,,8123,326,154,,,,990,L1053 U1040 6.5s,83045,,, +356,USA,,FR,b,Medford (OR),42.395833,-122.875,,0.025,,8431,324,157,,,,,,87130,,, +356,USA,,MEF,b,Medford (OR),42.395833,-122.875,,0.025,,8431,324,157,,,,998,L1035 U1040 8.2s,83040,,, +356,USA,,SJ,b,Woole San Angelo (TX),31.270833,-100.541667,,0.025,,8354,302,157,,,,984,L1046 U1013 6.31s,83053,,, +356,USA,,SA,b,Execc Sacramento (CA),38.4375,-121.541667,,0.025,,8759,321,159,,,,983,L1060 U1027 6.0s,83051,,, +356,AUS,,TN,b,Tindal (NT),-14.520833,132.375,,0.025,,13695,69,175,,,,,L1020 9s,83058,,, +356,AUS,,HID,b,Horn Island (QLD),-10.604167,142.291667,,0.025,,13939,57,176,,,,,L1020 8s,86497,,, +356,AUS,,EN,b,Essendon (VIC),-37.729167,144.875,,0.025,,16439,80,184,,,,,L1020 U1020 20s,83029,,, +356.5,SUI,,SHU,b,Schupberg for Bern / Belp (be),47.020833,7.375,,0.025,,570,173,79,,,,519,L380 U419 ,ID+4 gap,83066,, +356.5,ALG,,OU,b,Ouargla (30),31.9375,5.458333,,0.025,,2244,182,95,,,,-356.5,U5 17.5s,ID+14 tone,83065,, +357,HOL,,VZ,b,Eelde / Groningen (gro),53.020833,6.375,,0.025,,101,359,56,,,,995,L410 U397 6.1s,83085,,, +357,D,,DWI,b,Dortmund / Wickede (nrw),51.520833,7.625,,0.025,,106,128,58,,,,999,L1018 U1016 ,83070,,, +357,D,,TEST,b,Dortmund (DWI) (nrw),51.520833,7.625,,0.025,,106,128,58,,,,,L1022 U1024 4.02s,86504,,, +357,E,,BGS,b,Burgos (CAL-BU),42.354167,-3.625,,0.3,,1321,219,75,,,,,U~1020 ,ID+16 gap,83068,, +357,D,,SKZ,b,Leipzig / Halle (sac),51.395833,12.291667,,0.025,,412,99,77,,,,993,L404 U396 ,83083,,, +357,DNK,,KD,b,Kolding/Vamdrup (sdk),55.4375,9.375,,0.025,,418,27,77,,,,997,L403 U397 3.9s,83076,,, +357,D,,NRG,b,Neubrandenburg (mev),53.604167,13.375,,0.025,,496,68,78,,,,19,L1044 U1074 ,83080,,, +357,XOE,,FRN,b,Franklin JP Plarform,56.979167,1.875,,0.025,,615,333,79,,,,0,L400 U400 5.9s,83072,,, +357,F,,LP,b,Cholet / Le Pontreau (49),47.145833,-0.875,,0.025,,761,226,81,,,,,U403 ,ID+8 gap,83078,, +357,I,,CAS,b,Caselle Torinese (to),45.104167,7.625,,0.025,,784,173,81,,,,4,L1019 U1031 6.8s,83069,,, +357,HNG,,L,b,Budapest/Ferenc Liszt Int. (Bud),47.4375,19.208333,,0.025,,1054,114,84,,,,,U1018 ,Cont. ID,83077,, +357,I,,SME,b,Olbia / Costa Smeralda (ss),40.895833,9.541667,,0.04,,1269,168,84,,,,5,L1018 U1024 7.0s,ID+3.5 gap,83084,, +357,EST,,I,b,Tallinn (Har),59.395833,24.791667,,0.025,,1399,47,87,,,,7,L395 U410 ,83074,,, +357,FIN,,SEP,b,Vaasa / Seppi,63.145833,21.708333,,0.025,,1520,30,88,,,,1,L408 U407 ,83082,,, +357,FIN,,R,b,Rovaniemi / Lamminpervaara,66.604167,25.875,,0.025,,1935,26,92,,,,4,L400 U408 ,83081,,, +357,ISL,,HV,b,Hvammur,65.645833,-18.041667,,0.025,,2033,327,93,,,,,,83073,,, +357,LBY,,RJ,b,Tripoli / Mitiga (tbl),32.895833,13.375,,0.025,,2209,163,95,,,,,L1025 U1019 ,ID+5 gap,86502,, +357,CPV,,NCL,b,So Nicolau (snc-rbv),16.5625,-24.291667,,0.025,,4784,226,121,,,,,,83079,,, +357,GHA,,SN,b,Sunyani (bra),7.377222,-2.299444,,0.025,,5037,192,123,,,,,,3000003,,, +357,PAK,,SS,b,Saidu Sharif (kpk),34.808889,72.351944,,0.025,,5448,83,127,,,,,,31500043,,, +357,CAN,,HS,b,Standard (AB),51.0625,-112.958333,,0.1,,7214,323,139,,,,,,87136,,, +357,USA,,IM,b,Keans Asheville (NC),35.520833,-82.625,,0.025,,6912,293,142,,,,990,L1039 U1027 5839s,83075,,, +357,USA,,EYA,b,Eastport Jacksonville (FL),30.4375,-81.625,,0.025,,7260,288,146,,,,998,L1005 U1000 6657s,83071,,, +357,NCG,,CIS,b,Corn Island (ats),12.1875,-83.041667,,0.025,,8904,277,159,,,,,L3025 U1005 3.85s,86500,,, +357,J,,RB,b,Eda (kan-kgw),35.5625,139.541667,,0.025,,9258,37,161,,,,,L1000 5s,DAID,86501,, +357.5,I,,FAL,b,Falconara Marittima (an),43.645833,13.375,,0.025,,1074,148,84,,,,501,L1019 U1021 10.0s,ID+6 gap,83086,, +357.5,BIH,,KG,b,Sarajevo / Butmir / Kobiljaca (sar),43.895833,18.208333,,0.025,,1264,132,86,,,,501,L1021 U1021 ,ID+2 gap,83087,, +358,POR,,BRG,b,Braganca (bgc),41.8125,-6.708333,,2,,1513,226,69,,,,5,L406 U405 4.6s,Cont. ID,83091,, +358,D,,HW,b,Hannover / West (nds),52.479167,9.541667,,0.025,,217,78,75,,,,10,L1010 U1030 ,83098,,, +358,XOE,,HF,b,Unocal Helder A Platform,52.9375,4.125,,0.025,,180,302,75,,,,,,83097,,, +358,XOE,,HO,b,Unicorn Hoorn-A,52.9375,4.125,,0.025,,180,302,75,,,,,,86505,,, +358,XOE,,KR,b,Conoco Kotter Platform,53.0625,3.958333,,0.025,,197,304,75,,,,,,83100,,, +358,XOE,,MB,b,Camelot A - P6A (Mobil),52.770833,3.791667,,0.025,,192,294,75,,,,2,L402 U407 4.5s,83103,,, +358,XOE,,TF,b,Rijn B Platform,52.3125,3.791667,,0.025,,180,278,75,,,,0,L~400 U~400 ,ID+25 tone,83116,, +358,XOE,,WC,b,Nam / FA1 Platform,53.5625,4.291667,,0.025,,215,319,75,,,,4,L390 U395 5.0s,ID+2 gap,83122,, +358,XOE,,DIV,b,Gaz de France - D15 FA1 Platform,54.1875,2.541667,,0.025,,346,313,76,,,,,L1030 ,ID+2.5 gap,83094,, +358,F,,LT,b,Le Touquet / Paris-Plage (62),50.520833,1.625,,0.025,,376,244,77,,,,,L402 U407 ,83102,,, +358,D,,MSE,b,Mnchen (bay),48.333333,11.652778,,0.025,,561,136,79,,,,994,L1020 U1007 4.5s,ID+2 gap,83106,, +358,F,,RNN,b,Roanne / Renaison (42),46.104167,4.041667,,0.025,,690,195,80,,,,,L398 U402 10.1s,ID+7 gap,83113,, +358,AUT,,TUN,b,Tulln for Schwechat,48.3125,15.958333,,0.025,,799,118,81,,,,0,L1021 U1020 10.0s,ID+7 gap,83120,, +358,HNG,,TO,b,Zalaegerszeg/Andrshida (Zal),46.854167,16.791667,,0.025,,949,124,82,,,,,L986 ,ID+2 gap,83119,, +358,NOR,,LF4H,b,Heimdal Platform,59.5625,2.208333,,0.025,,869,344,82,,,,,,83101,,, +358,F,,BRS,b,Biscarosse / Parentis (40),44.354167,-1.125,,0.025,,1026,216,83,,,,,19.7s,ID+15 tone,83092,, +358,NOR,,GRK,b,Trondheim / Vaernes / Grakallen (st),63.4375,10.291667,,0.025,,1280,9,86,,,,4,L375 U381 ,83096,,, +358,S,,AS,b,Arvidsjaur,65.5625,19.375,,0.025,,1664,21,90,,,,,,83090,,, +358,ALG,,ELO,b,El Oued / Guemar (39),33.520833,6.791667,,0.025,,2067,179,94,,,,0,L400 U400 ,83095,,, +358,NOR,,ALA,b,Alta,69.979167,23.291667,,0.025,,2167,17,95,,,,8,L415 U391 ,83089,,, +358,RUS,,W,b,Arkhangelsk /Vaskovo (AR),64.479167,40.375,,0.025,,2369,41,97,,,,,,83121,,, +358,RUS,,K,b,Stavropol / Shopakovskoye (ST),45.104167,42.125,,0.025,,2708,92,100,,,,,U1045 ,83099,,, +358,RUS,,O,b,Stavropol / Shopakovskoye (ST),45.104167,42.125,,0.025,,2708,92,100,,,,,U1020 ,83109,,, +358,ALG,,TAM,b,Tamanrasset / Aguenar (11),22.8125,5.458333,,0.05,,3259,182,103,,,,,L7 ,ID+12 tone,83115,, +358,CAN,,YKG,b,Kangiqsujuaq (QC),61.604167,-71.958333,,1,,4574,315,103,,,,,U403 10.3s,DAID,83123,, +358,SYR,,MEZ,b,Damascus International / Mezzeh (dim),33.479167,36.208333,,0.025,,3155,119,105,,,,0,L1020 U1020 ,ID+7 gap,83104,, +358,CAN,,NL,b,Saint John's/Signal Hill (NL),47.5625,-52.708333,,0.025,,4151,287,114,,,,,L398 U393 10693s,DAID,83107,, +358,USA,,OG,b,Ogive Ogdensburg (NY),44.6875,-75.375,,0.025,,5768,297,131,,,,994,L1040 U1033 5.41s,83111,,, +358,USA,,CKC,b,Cook County Grand Marais (MN),47.854167,-90.375,,0.025,,6400,308,137,,,,1,L1028 U1030 7006s,83093,,, +358,USA,,TNY,b,Kelso Fayetteville (TN),35.145833,-86.541667,,0.025,,7187,295,145,,,,998,L1025 U1024 5.5s,83118,,, +358,USA,,TKX,b,Kennett (MO),36.229167,-90.041667,,0.025,,7311,298,146,,,,994,L1049 U1028 8247s,83117,,, +358,ALS,,SIT,b,Sitka (AK),56.854167,-135.541667,,0.025,,7411,338,147,,,,966,L1057 U992 ,83114,,, +358,USA,,AC,b,Coffi Waco (TX),31.6875,-97.208333,,0.025,,8123,300,154,,,,,L1042 4737s,83088,,, +358,CHN,,OX,b,Bose (GX),23.895833,106.625,,0.025,,8594,67,158,,,,,,83112,,, +358,NZL,,NL,b,Newlands,-41.229167,174.791667,,0.05,,18519,41,188,,,,,L1200 7s,83108,,, +358,NZL,,MI,b,Mosgiel,-45.854167,170.291667,,0.025,,18653,66,192,,,,,6.94s,83105,,, +359,F,,LOR,b,Lorient / Lann Bihoue (56),47.770833,-3.458333,,0.1,,854,240,76,,,,,U19 19.5s,ID+14 tone,83145,, +359,S,,LK,b,Lidkping/Ekgrden,58.4375,13.125,,0.025,,821,28,81,,,,996,L414 U386 4.5s,83144,,, +359,XOE,,BUZ,b,Buzzard / Nexen Platform,57.854167,-1.041667,,0.025,,795,326,81,,,,2,L405 U410 8.2s,ID+4 gap,83131,, +359,G,,RWY,b,Ronaldsway (IOM),54.0625,-4.625,,0.02,,767,291,82,,,,0,L400 U402 10.0s,83155,,, +359,E,,AL,b,Salamanca (CAL-SA),41.020833,-5.458333,,0.025,,1527,221,88,,,,2,L1027 U1017 ,ID+6 gap,83125,, +359,POR,,CA,b,Cascais (lis),38.729167,-9.375,,0.025,,1923,226,92,,,,2,L1022 U1027 9.97s,ID+7 gap,83132,, +359,GRL,,NA,b,Narsarsuaq (Kitaa) (kuj-nrq),61.1875,-45.375,,0.025,,3225,309,105,,,,0,L399 U398 9.8s,83150,,, +359,CAN,,2I,b,Florenceville (NB),46.395833,-67.625,,0.2,,5174,294,116,,,,,U~400 ,DAID,83124,, +359,USA,,AS,b,Chern Nashua (NH),42.8125,-71.625,,0.025,,5668,293,130,,,,0,L1049 U1032 6417s,83129,,, +359,USA,,MS,b,Monga Monticello (NY),41.770833,-74.958333,,0.025,,5952,294,132,,,,490,L1020 U~1000 8.6s,83148,,, +359,ALS,,ANI,b,Aniak (AK),61.604167,-159.625,,0.25,,7310,353,136,,,,,U1035 8.4s,83128,,, +359,USA,,GYG,b,Grayling (MI),44.729167,-84.791667,,0.025,,6326,302,136,,,,983,L1050 U1019 8805s,83142,,, +359,USA,,YI,b,Yipps Detroit (MI),42.1875,-83.625,,0.025,,6451,299,137,,,,0,L1032 U1040 8.0s,83160,,, +359,USA,,SDY,b,Sidney (MT),47.729167,-104.208333,,0.1,,7115,316,138,,,,990,L1020 U1022 5.9s,83157,,, +359,USA,,UES,b,Waukesha (WI),43.0625,-88.208333,,0.025,,6652,303,139,,,,998,L1015 U1012 4.7s,83158,,, +359,USA,,AMT,b,West Union (OH),38.854167,-83.541667,,0.025,,6705,296,140,,,,995,L1010 U1014 5057s,83127,,, +359,USA,,BO,b,Ustik Boise (ID),43.604167,-116.291667,,0.4,,8039,320,141,,,,14,L1026 U1048 5.91s,83130,,, +359,USA,,LXL,b,Little Falls (MN),45.9375,-94.375,,0.025,,6766,309,141,,,,500,L1014 U2020 37s,AWOS-3,83146,, +359,USA,,RSY,b,Robeson Lumberton (NC),34.604167,-79.041667,,0.025,,6758,290,141,,,,996,L1021 U1012 6409s,83154,,, +359,USA,,CZB,b,Casey (IL),39.3125,-88.041667,,0.025,,6940,300,142,,,,986,L1048 U1023 7674s,83134,,, +359,USA,,FXY,b,Forest City (IA),43.229167,-93.625,,0.025,,6944,306,142,,,,,U1017 7.83s,83138,,, +359,USA,,DO,b,Dotte Kansas City (MO),39.229167,-94.708333,,0.05,,7334,304,143,,,,0,L1018 U1018 8.60s,83135,,, +359,MEX,,TPX,b,Tepexpan (mex),19.604167,-98.958333,,1,,9296,294,145,,,,,L1010 ,87138,,, +359,CAN,,YQZ,b,Quesnel (BC),52.979167,-122.458333,,0.025,,7399,329,147,,,,0,L400 U402 10.0s,DAID,83161,, +359,USA,,LYZ,b,Willis Bainbridge (GA),30.979167,-84.541667,,0.025,,7403,291,147,,,,5,L1021 U1033 8.66s,83147,,, +359,GUF,,CW,b,Saint-Laurent-du-Maroni (973),5.479167,-54.041667,,0.025,,7546,249,148,,,,,15s,83133,,, +359,USA,,GGF,b,Grant (NE),40.854167,-101.708333,,0.025,,7581,309,149,,,,21,L972 U1002 6.0s,83140,,, +359,USA,,MTQ,b,Metcalf Greenville (MS),33.4375,-90.958333,,0.025,,7599,297,149,,,,990,L1040 U1020 ,83149,,, +359,USA,,JWG,b,Watonga (OK),35.854167,-98.458333,,0.025,,7834,304,151,,,,,L1035 U1034 ,87137,,, +359,CAN,,YAZ,b,Tofino (BC),49.0625,-125.708333,,0.025,,7890,329,152,,,,991,L400 U383 10.5s,DAID,83159,, +359,USA,,DUA,b,Durant (OK),33.9375,-96.375,,0.025,,7880,301,152,,,,998,L965 U960 ,83136,,, +359,USA,,GUV,b,Gator Fort Polk (LA),31.020833,-93.208333,,0.025,,7941,297,152,,,,2,L1039 U1024 8161s,83141,,, +359,USA,,SDR,b,Snyder (TX),32.6875,-100.958333,,0.025,,8253,303,156,,,,512,L1 U1018 5.8s,83156,,, +359,USA,,HHH,b,Devine (TX),29.145833,-98.958333,,0.025,,8449,300,157,,,,3,L1010 U1007 5.8s,83143,,, +359,USA,,EMT,b,El Monte (CA),34.104167,-118.041667,,0.025,,9017,316,160,,,,993,L1023 U1010 5.2s,83137,,, +359,AUS,,AMB,b,Amberley (QLD),-27.645833,152.708333,,2,,16119,59,164,,,,0,L400 U400 10s,TWEB,83126,, +359,MHL,,NDJ,b,Kwajalein/Bucholz AAF,8.719444,167.719444,,0.025,,13020,21,173,,,,0,L1020 U1024 ,83151,,, +359,AUS,,GEL,b,Geraldton (WA),-28.8125,114.708333,,0.025,,13712,95,175,,,,998,L1023 U1020 9.2s,83139,,, +359,AUS,,NWA,b,Nowra (NSW),-34.9375,150.541667,,0.025,,16603,70,185,,,,,L400 U400 10s,TWEB,86506,, +359.5,XOE,,RVN,b,Hamilton / Ravenspurn North Platform,54.020833,1.125,,0.025,,412,303,77,,,,700,L~400 U400 ,83164,,, +359.5,F,,CDN,b,Chateaudun (28),48.0625,1.375,,0.025,,576,221,79,,,,-359.5,U9 29.0s,ID+25 tone,83163,, +360,D,,SR,b,Saarbrcken / Ensheim (saa),49.229167,7.208333,,0.025,,325,170,76,,,,2,L1017 U1020 7.1s,ID+5 gap,83200,, +360,NOR,,ASK,b,Bergen / Flesland / Askoey (ho),60.4375,5.208333,,0.05,,929,356,79,,,,3,L400 U400 9.9s,83166,,, +360,S,,OS,b,Gteborg/Save (vg),57.8125,11.875,,0.025,,723,27,80,,,,1,L399 U402 ,83190,,, +360,S,,DL,b,Stockholm / Arlanda,59.729167,17.958333,,0.025,,1108,36,84,,,,,L400 ,83174,,, +360,ROU,,O,b,Oradea (BH),47.0625,21.875,,0.025,,1245,111,85,,,,11,L1047 U1058 ,ID+1 gap,83188,, +360,SRB,,LA,b,Kraljevo (Srb-rsk),43.854167,20.541667,,0.025,,1392,126,87,,,,,L1083 U956 ,ID+8 tone,86511,, +360,NOR,,ULV,b,Bronnoysund / Ulvingen,65.645833,12.125,,0.025,,1539,10,88,,,,176,L382 U372 6.9s,83205,,, +360,POR,,COV,b,Covilha (cab),40.3125,-7.458333,,0.025,,1685,224,90,,,,2,L390 U395 ,83173,,, +360,UKR,,KI,b,Kiev / Zhulyany (KY),50.229167,30.208333,,0.025,,1665,88,90,,,,983,L952 U1058 ,IDx2 + 8 gap,83183,, +360,UKR,,KV,b,Kiev / Zhulyany (KY),50.395833,30.541667,,0.025,,1682,87,90,,,,0,L1021 U1025 ,IDx2 + 5.5 gap,83185,, +360,ISL,,SL,b,Svinafell for Hornafjrdhur,64.395833,-15.375,,0.025,,1850,326,91,,,,976,L1068 U1020 5.0s,83199,,, +360,S,,OP,b,Kiruna,67.895833,20.458333,,0.025,,1911,18,92,,,,,U400 ,83189,,, +360,RUS,,BD,b,Bogdanovo,57.104167,37.708333,,0.025,,2070,62,94,,,,2,L1018 U1017 ,IDx2 + 20 gap,83169,, +360,RUS,,TS,b,Zadonsk (LI),52.395833,38.958333,,0.025,,2197,76,95,,,,0,L400 U398 40.0s,IDx3 + 29 gap,83202,, +360,LBY,,LOR,b,Dahra / Warehouse 32 (srt),29.479167,17.958333,,0.025,,2690,155,100,,,,2,L408 U407 6.4s,ID+2.5 gap,83186,, +360,AZR,,HT,b,Horta (fai),38.520833,-28.625,,0.025,,3086,255,104,,,,5,L1030 U1031 8.2s,ID+7 gap,83178,, +360,AZE,,BA,b,Baku / Bina (bak),40.479167,50.041667,,0.025,,3529,94,108,,,,,L1020 ,83168,,, +360,AZE,,BN,b,Baku / Bina (bak),40.4375,50.041667,,0.025,,3532,94,108,,,,,U1020 ,83171,,, +360,CAN,,PN,b,Port-Menier / Ile Anticosti (QC),49.854167,-64.375,,0.5,,4761,296,108,,,,,U400 10.3s,DAID,83193,, +360,KAZ,,RP,b,Petropavl (skq),54.770833,69.208333,,0.025,,4029,60,113,,,,,,83195,,, +360,KAZ,,IM,b,Shymkent=Şımkent (okq),42.354167,69.541667,,0.025,,4730,77,120,,,,,,83179,,, +360,ASC,,ASN,b,Ascension/Wideawake (asc),-7.9375,-14.375,,2,,6964,203,124,,,,993,L1018 U1020 10.3s,ID+8 gap,83167,, +360,USA,,LYS,b,Olean (NY),42.270833,-78.375,,0.025,,6127,296,134,,,,,,83187,,, +360,USA,,RW,b,Kirbe Camp Springs (Brandywine) (MD),38.6875,-76.875,,0.025,,6302,292,136,,,,1,L1025 U1022 8.53s,83197,,, +360,JMC,,KIN,b,Kingston (kgs),17.979167,-76.875,,1,,7987,276,137,,,,997,L1027 U1020 ,ID+6 gap,83184,, +360,VRG,,BFI,b,The Mill (Beef Island) (bee),18.4375,-64.541667,,0.1,,7107,267,138,,,,,L1039 U1025 8.53s,83170,,, +360,USA,,SW,b,Roadd Warroad (MN),48.854167,-95.208333,,0.025,,6576,311,139,,,,998,L1043 U1025 6004s,83201,,, +360,USA,,HIT,b,Kaolin Field Sandersville (GA),33.020833,-82.958333,,0.025,,7135,291,144,,,,999,L1024 U1020 4.8s,83177,,, +360,CAN,,U6,b,Creston (BC),49.0625,-116.458333,,0.025,,7539,324,148,,,,,U1022 10.0s,DAID,83203,, +360,J,,KC,b,Nagoya (chu-aic),35.270833,136.875,,0.4,,9175,39,148,,,,,L1000 U1010 5s,DAID,83182,, +360,USA,,PI,b,Capok St Petersburg / Clearwater (FL),27.979167,-82.708333,,0.025,,7534,287,148,,,,997,L1023 U1020 8600s,83192,,, +360,USA,,GP,b,Bayou Gulfport (MS),30.479167,-89.125,,0.025,,7735,294,150,,,,998,L1027 U1022 8.6s,83175,,, +360,CUB,,G,b,Ciego de vila (ca),22.020833,-78.791667,,0.025,,7773,280,151,,,,,,87139,,, +360,CUB,,UCV,b,Ciego de vila (ca),22.020833,-78.791667,,0.025,,7773,280,151,,,,5,L1377 U1248 7856s,83204,,, +360,B,,BRT,b,Barretos (SP),-20.5625,-48.625,,0.2,,9674,230,153,,,,,,83172,,, +360,MYA,,HHO,b,Heho,20.7425,96.792778,,0.025,,8228,77,155,,,,,,22100018,,, +360,B,,JAC,b,Jacareacanga (PA),-6.229167,-57.791667,,0.025,,8854,245,159,,,,7,L1035 U1039 7.15s,83180,,, +360,HND,,SAP,b,San Pedro Sula (Cortes) (cor),15.520833,-87.875,,0.025,,8939,283,159,,,,,U1020 ,83198,,, +360,CLM,,JDN,b,Jardin Caramanto (ant),5.604167,-75.625,,0.025,,8972,267,160,,,,995,L1028 U1018 6.2s,83181,,, +360,THA,,PU,b,Phuket (puk),8.104167,98.291667,,0.025,,9425,84,161,,,,,U1044 ,ID+6 gap,83194,, +360,B,,RR,b,So Vicente (SP),-23.9375,-46.291667,,0.025,,9881,227,163,,,,,,83196,,, +360,B,,TQA,b,Taquara (RS),-29.6875,-50.791667,,0.025,,10658,227,165,,,,,,86513,,, +360,CHL,,TCO,b,Temuco (AR),-38.770833,-72.625,,0.025,,12651,237,172,,,,,U1023 10.14s,86512,,, +360,ATA,,IRJ,b,Isla Rey Jorge=King George Island (ssi),-62.1875,-58.958333,,0.025,,13938,211,176,,,,,,86510,,, +360.5,BEL,,MAK,b,Mackel for Brussels Ntl (bru),50.979167,3.458333,,0.025,,240,240,75,,,,500,L399 U401 10.0s,ID+7 gap,83206,, +361,XOE,,SRN,b,South Arne Platform,56.0625,4.208333,,0.025,,462,343,78,,,,0,L~400 U~400 5.0s,83216,,, +361,G,,GUY,b,Guernsey (GUE),49.4375,-2.625,,0.025,,701,248,80,,,,4,L400 U409 6.5s,ID+2 gap,83209,, +361,IRL,,CFN,b,Donegal / Carrickfin (DL),55.0625,-8.333333,,0.05,,1025,294,80,,,,2,L407 U410 8.1s,ID+4 gap,83207,, +361,F,,NB,b,Bordeaux / Merignac (33),45.145833,-0.541667,,0.025,,927,216,82,,,,,U4 ,ID+17 tone,83214,, +361,FIN,,LIE,b,Turku / Lieto,60.520833,22.458333,,0.025,,1355,40,87,,,,0,L403 U402 8.6s,83212,,, +361,FIN,,RO,b,Kauhava,63.020833,23.041667,,0.025,,1557,32,89,,,,995,L410 U408 ,83215,,, +361,RUS,,NQ,b,Vyazma / Dvoevka,55.145833,34.375,,0.025,,1862,68,92,,,,,,86517,,, +361,CAN,,HI,b,Holman (NT),70.770833,-117.791667,,0.025,,5653,339,130,,,,,U409 10.1s,DAID,83211,, +361,USA,,HB,b,Himun Burlington (NC),35.979167,-79.625,,0.025,,6686,291,140,,,,993,L1042 U1025 7053s,83210,,, +361,CAN,,E3,b,Wabasca (AB),55.979167,-113.791667,,0.025,,6809,327,141,,,,,U399 10.4s,DAID,83208,, +361,USA,,MNV,b,Madisonville (TN),35.5625,-84.375,,0.025,,7018,294,143,,,,31,L973 U981 3917s,83213,,, +361,CHN,,LZ,b,Liling,27.645833,113.541667,,0.025,,8686,60,159,,,,,U1021 ,86516,,, +361,VUT,,BA,b,Bauerfield (sef),-17.6875,168.291667,,0.025,,15872,29,182,,,,,L1020 5s,86514,,, +361,XOE,,ZWH,b,North Sea,,,-,,,?,?,400,,,,,L401 U403 6.6,9900092,,, +362,XOE,,SUN,b,Saturn ND / Conocophillips UK Ltd Platform,53.729167,1.875,,0.025,,353,302,77,,,,,,83265,,, +362,I,,BZO,b,Bolzano (bz),46.479167,11.291667,,0.04,,719,149,78,,,,0,L1020 U1020 10.0s,ID+3 gap,83230,, +362,XOE,,SRN,b,South Arne Platform,56.0625,4.208333,,0.025,,462,343,78,,,,,U400 ,ID+2 gap,83264,, +362,CZE,,L,b,Nměť nad Oslavou (VY),49.229167,16.208333,,0.025,,760,111,81,,,,961,L1064 U988 4.5s,83248,,, +362,CZE,,X,b,Nměť nad Oslavou (VY),49.1875,16.125,,0.025,,757,112,81,,,,950,L1040 U940 4.8s,83271,,, +362,XOE,,BBV,b,Marathon / Brae bravo,58.8125,1.375,,0.025,,810,339,81,,,,,,83222,,, +362,HNG,,VS,b,Szentkirlyszabadja (Ves),47.020833,17.958333,,0.025,,1005,120,83,,,,,8.0s,ID+3 gap,83268,, +362,IRL,,OB,b,Cork (CO),51.770833,-8.458333,,0.025,,1018,274,83,,,,507,L1023 U1013 9.0s,83255,,, +362,S,,NN,b,Eskilstuna / Kjula,59.395833,16.708333,,0.025,,1033,34,83,,,,0,L402 U398 ,83254,,, +362,NOR,,BVK,b,Orsta-Volda / Hovden / Baatvik,62.229167,5.791667,,0.025,,1126,358,84,,,,2,L399 U398 10.0s,83229,,, +362,I,,ORF,b,Oristano / Fenosu (or),39.895833,8.625,,0.025,,1369,172,87,,,,,L1021 ,ID+4 gap,86519,, +362,GRC,,LSA,b,Larissa (the-lar),39.645833,22.458333,,0.025,,1853,132,92,,,,933,L286 U844 4.5s,Cont. ID,83249,, +362,NOR,,JAN,b,Jan Mayen (jm),70.979167,-8.541667,,0.05,,2228,346,92,,,,997,L388 U382 9s,83245,,, +362,ISL,,HE,b,Saudarkrokur / Hegranes,65.770833,-19.541667,,0.025,,2097,326,94,,,,,5.3s,86518,,, +362,NOR,,KV,b,Tromso / Langnes / Kvalsund,69.8125,19.041667,,0.025,,2073,14,94,,,,,,83247,,, +362,UKR,,BP,b,Sevastopol' (KR),44.6875,33.541667,,0.025,,2150,102,94,,,,1,L1030 U1032 ,IDx2 + 5 gap,83228,, +362,UKR,,RU,b,Sevastopol'/Belbek (KR),44.6875,33.625,,0.025,,2156,102,95,,,,995,L1020 U1010 10.7s,IDx2 + 7 gap,83259,, +362,LBY,,BN,b,Benghazi / Benina (bga),32.1875,20.208333,,0.025,,2481,148,98,,,,993,L1020 U1020 10.0s,ID+8 gap,83225,, +362,RUS,,W,b,Armavir / Tsentralny (KD),44.9375,41.125,,0.025,,2649,94,99,,,,,,83269,,, +362,CAN,,ZS,b,Coral Harbour (NU),64.145833,-83.291667,,3,,4963,322,102,,,,,,87145,,, +362,CAN,,YZS,b,Coral Harbour (NU),64.145833,-83.291667,,0.71,,4963,322,108,,,,,U396 10.0s,DAID,83272,, +362,IRN,,DNZ,b,Sari/Dasht-e Naz (mzd),36.6875,53.208333,,0.025,,4007,96,113,,,,,U1057 10.0s,ID+4 tone,83236,, +362,CAN,,SB,b,Sudbury (ON),46.645833,-80.958333,,0.4,,5962,302,121,,,,0,L405 U398 9.8s,DAID,83261,, +362,CAN,,C7,b,Geraldton (ON),49.770833,-86.958333,,0.25,,6072,308,124,,,,,U394 ,DBID,83231,, +362,CAN,,SC,b,Sherbrooke (QC),45.479167,-71.791667,,0.025,,5493,295,128,,,,995,L403 U360 10.67s,DAID,83262,, +362,ALS,,HBK,b,Hinchinbrook (AK),60.395833,-146.125,,1,,7267,345,130,,,,,L~1040 U1011 ,87143,,, +362,USA,,FM,b,Falmouth OTIS (MA),41.729167,-70.458333,,0.025,,5670,291,130,,,,994,L1036 U1016 7230s,83239,,, +362,USA,,FMH,b,Otis Falmouth (MA),41.729167,-70.458333,,0.025,,5670,291,130,,,,,L1027 U1025 ,87142,,, +362,CAN,,4K,b,St. Theresa Point (MB),53.854167,-94.875,,0.05,,6171,315,132,,,,,U394 10.5s,DAID,83218,, +362,USA,,JWE,b,Clera Osford (CT),41.395833,-73.125,,0.025,,5864,292,132,,,,991,L1050 U1032 8065s,83246,,, +362,USA,,OX,b,Clera Oxford (CT),41.395833,-73.125,,0.025,,5864,292,132,,,,,L1051 U1033 6062s,87144,,, +362,USA,,AK,b,Akron (OH),41.0625,-81.375,,0.025,,6401,297,137,,,,993,L1040 U1030 4372s,83220,,, +362,USA,,MT,b,Manitowac (WI),44.1875,-87.708333,,0.025,,6535,303,138,,,,992,L1051 U1032 5886s,83252,,, +362,USA,,EW,b,Katfi New Bern (NC),35.020833,-77.041667,,0.025,,6596,289,139,,,,991,L1048 U1032 6052s,83238,,, +362,USA,,LYL,b,Lima (OH),40.6875,-84.041667,,0.025,,6592,298,139,,,,491,L1017 U~1000 ,83250,,, +362,USA,,MZH,b,Moose Lake (MN),46.395833,-92.791667,,0.025,,6644,308,139,,,,990,L1038 U1010 38s,83253,,, +362,GRD,,GND,b,Point Salines (Grand Anse) (sgg),12.006944,-61.791667,,0.15,,7474,260,140,,,,,L1030 U1030 10467s,83241,,, +362,USA,,BCK,b,Black River Falls (WI),44.270833,-90.875,,0.025,,6707,305,140,,,,0,L1029 U1020 6699s,83223,,, +362,USA,,RZL,b,Rensselaer (IN),40.9375,-87.208333,,0.025,,6761,300,141,,,,993,L1025 U1022 8021s,83260,,, +362,USA,,CA,b,Murry Columbia (SC),33.979167,-81.208333,,0.025,,6946,291,142,,,,992,L1042 U1037 7720s,83232,,, +362,CAN,,6T,b,Foremost (AB),49.479167,-111.458333,,0.041,,7292,321,144,,,,,U398 10.35s,DAID,83219,, +362,USA,,BL,b,Belleville (IL),38.479167,-89.791667,,0.025,,7111,300,144,,,,,L1050 U1030 5.9s,87140,,, +362,USA,,EE,b,Merle Ames (IA),41.895833,-93.625,,0.025,,7053,305,144,,,,992,L1048 U1030 5.1s,83237,,, +362,USA,,GMH,b,Muhlenburg Greenville (KY),37.229167,-87.125,,0.025,,7053,297,144,,,,,U1035 5.64s,83240,,, +362,USA,,SUR,b,Fitzgerald (GA),31.604167,-83.291667,,0.025,,7272,290,146,,,,,U1022 5427s,83266,,, +362,USA,,AWM,b,West Memphis (AR),35.145833,-90.208333,,0.025,,7411,298,147,,,,988,L1043 U1020 ,83221,,, +362,USA,,EZB,b,Oakland (East Bay) (CA),37.770833,-122.208333,,0.4,,8852,321,147,,,,,,87141,,, +362,USA,,RPX,b,Round Up (MT),46.479167,-108.541667,,0.025,,7428,317,147,,,,1,L1028 U1026 8.4s,83258,,, +362,USA,,TC,b,Tuske Tuscaloosa (AL),33.145833,-87.708333,,0.025,,7423,295,147,,,,991,L1054 U1032 5.8s,83267,,, +362,USA,,CD,b,Dawes Chadron (NE),42.770833,-103.208333,,0.025,,7493,311,148,,,,990,L1041 U1020 5.8s,83233,,, +362,USA,,CYW,b,Clay Center (KS),39.395833,-97.125,,0.025,,7456,305,148,,,,,L982 U1017 7.0s,83235,,, +362,USA,,HPC,b,Hope (AR),33.729167,-93.625,,0.025,,7735,299,150,,,,998,L1018 U1014 6.7s,83244,,, +362,USA,,OWP,b,William Pogue Sand Springs (OK),36.1875,-96.125,,0.025,,7672,302,150,,,,,U1022 6.2s,83256,,, +362,USA,,BF,b,Nolla Seattle (WA),47.645833,-122.375,,0.025,,7905,326,152,,,,983,L1060 U1027 5.8s,83224,,, +362,USA,,BNH,b,Brenham (TX),30.229167,-96.375,,0.025,,8200,299,155,,,,,U1018 ,83226,,, +362,TWN,,HL,b,Houlung (ML),24.645833,120.791667,,0.05,,9378,56,158,,,,,8ss,83243,,, +362,MLA,,MC,b,Malacca,2.1875,102.208333,,0.05,,10211,84,161,,,,990,L1040 U1020 ,83251,,, +362,AUS,,SPG,b,Simpsons Gap (NT),-23.729167,133.708333,,0.025,,14585,75,178,,,,,U1010 9s,86520,,, +362,AUS,,BOL,b,Bolinda - Melbourne (VIC),-37.479167,144.791667,,0.025,,16415,80,184,,,,795,L400 U400 9s,83227,,, +362,AUS,,HB,b,Hobart (TAS),-42.8125,147.458333,,0.025,,16953,86,186,,,,,L1020 U1020 10s,83242,,, +362,NZL,,WK,b,Whakatane (BOP),-37.9375,176.875,,0.025,,18274,29,190,,,,,U1020 6s,83270,,, +362.5,G,,SND,b,Southend-on-Sea (EN-ESX),51.5625,0.708333,,0.025,,396,263,77,,,,506,L400 U400 5.1s,83273,,, +363,F,,PI,b,Poitiers / Biard (37),46.6875,0.375,,0.05,,744,218,77,,,,,L396 U404 10.0s,83281,,, +363,S,,OEM,b,Kristianstad / Everod,55.979167,14.125,,0.025,,662,46,80,,,,998,L410 U406 5.5s,83280,,, +363,EST,,MA,b,Kuressaare (Saa),58.229167,22.541667,,0.025,,1225,50,85,,,,,U937 10.0s,83279,,, +363,TUR,,CIG,b,Izmir / Cigli / Kaklic (ege-izm),38.520833,27.041667,,0.025,,2196,125,95,,,,0,L1033 U1028 8.3s,ID+4 gap,83275,, +363,LBY,,ZEL,b,Zelten (wah),28.9375,19.791667,,0.025,,2804,152,101,,,,,U1070 ,Cont. ID,83286,, +363,SYR,,HAS,b,Al-Hasakah (has),36.479167,40.708333,,0.025,,3191,109,105,,,,997,L402 U395 ,ID+7 gap,83277,, +363,IRN,,SHD,b,Maragheh/Sahand (eaz),37.354167,46.125,,0.025,,3482,102,108,,,,,U1023 ,ID+3 gap,83284,, +363,CAN,,1F,b,Manta Bathhurst (NB),47.645833,-65.708333,,0.13,,4975,294,116,,,,0,L407 U408 8358s,DAID,83274,, +363,USA,,RNB,b,Rainbow Millville (NJ),39.4375,-75.125,,0.05,,6135,291,131,,,,990,L1045 U1020 8.0s,83283,,, +363,CAN,,D3,b,Ponoka (AB),52.6875,-113.625,,0.025,,7095,324,144,,,,,U395 ,83276,,, +363,GTM,,POP,b,Poptun (pet),16.3125,-89.458333,,0.5,,8975,285,147,,,,26,L991 U1046 9.7s,83282,,, +363,CAN,,T6,b,Pemberton (BC),50.3125,-122.791667,,0.025,,7665,328,150,,,,,U385 10.4s,DAID,83285,, +363,USA,,IOM,b,Mc Call (ID),44.8125,-116.125,,0.025,,7920,321,152,,,,991,L1048 U1032 8.0s,83278,,, +363.5,F,,LXI,b,Luxeuil / St Sauveur (70),47.8125,6.375,,0.025,,478,180,78,,,,478,L403 U401 15.4s,ID+8 tone,83289,, +363.5,G,,CT,b,Coventry (EN-WMD),52.395833,-1.375,,0.025,,531,277,78,,,,505,L402 U395 9.5s,ID+7 gap,83288,, +363.5,XOE,,ETP,b,ETAP Platform,57.3125,1.625,,0.025,,655,334,80,,,,-363.5,,86523,,, +363.5,I,,BRD,b,Brindisi (br),40.604167,18.041667,,0.025,,1556,141,89,,,,503,L1016 U1034 9.0s,ID+4 gap,83287,, +364,F,,RSO,b,Paris / Charles de Gaulle (95),49.020833,2.375,,0.025,,446,221,77,,,,952,L511 U294 10.5s,ID+7 gap,83300,, +364,I,,MAL,b,Gallarate / Malpensa (va),45.5625,8.791667,,0.025,,749,166,80,,,,967,L1012 U1013 ,83295,,, +364,IRL,,KNK,b,Connaught (MO),53.895833,-8.958333,,0.025,,1045,287,83,,,,1,L1012 U1016 8.1s,ID+4 gap,83294,, +364,S,,NW,b,Stockholm / Skavsta / Nykping,58.770833,16.791667,,0.025,,986,37,83,,,,991,L374 U424 4.34s,83297,,, +364,F,,PU,b,Pau / Pyrenees (64),43.3125,-0.291667,,0.025,,1098,210,84,,,,,U6 20.0s,ID+17 tone,83299,, +364,S,,VNA,b,Vanja,63.8125,19.875,,0.025,,1518,26,88,,,,995,L413 U402 ,83302,,, +364,FIN,,B,b,Kittil / Pahtajnk,67.6875,24.875,,0.025,,1997,23,93,,,,,U408 ,83292,,, +364,ISL,,KN,b,Kristnes,65.604167,-18.041667,,0.025,,2030,327,93,,,,,U1033 ,86525,,, +364,ISL,,OK,b,Keflavk (sn),64.0625,-22.625,,0.025,,2131,320,94,,,,,U1120 ,83298,,, +364,RUS,,V,b,Harkiv / Sokolniki,50.020833,36.291667,,0.025,,2086,84,94,,,,,,86527,,, +364,CAN,,2B,b,Springdale (NL),49.479167,-56.208333,,0.04,,4273,292,114,,,,0,L407 10557s,DAID,83290,, +364,CAN,,G,b,Halifax (NS),44.8125,-63.625,,0.025,,5023,290,123,,,,,,87147,,, +364,CAN,,ZHZ,b,Split Crow Halifax (NS),44.8125,-63.625,,0.025,,5023,290,123,,,,,U383 10.3s,DAID,83303,, +364,USA,,TZ,b,Cogan Winchester (VA),39.104167,-78.041667,,0.025,,6344,293,136,,,,,U1028 3.7s,87148,,, +364,USA,,MHA,b,Manitowish Manitowish Waters (WI),46.104167,-89.875,,0.025,,6508,306,138,,,,998,L1028 U1036 5761s,83296,,, +364,CAN,,4D,b,Helmet (BC),59.4375,-120.791667,,0.025,,6740,332,140,,,,,U411 7.3s,DAID,83291,, +364,USA,,FQ,b,Fairmont (MN),43.645833,-94.375,,0.025,,6951,307,142,,,,,,87146,,, +364,CHN,,CZ,b,Tonglu (ZJ),29.8125,119.708333,,0.025,,8844,54,159,,,,,L1049 U1042 21s,2xID,83293,, +364,AUS,,CS,b,Cairns (QLD),-16.854167,145.708333,,0.025,,14723,58,179,,,,,L400 U400 8s,86524,,, +364,FJI,,MI,b,Momi (WE-NN),-17.895833,177.291667,,0.025,,16128,15,183,,,,,L1041 U1025 8s,86526,,, +365,D,,LJ,b,Kln / Bonn (nrw),50.9375,7.041667,,0.025,,138,161,70,,,,2,L1019 U1022 7.7s,83325,,, +365,CZE,,L,b,Karlovy Vary / Vrata (KA),50.1875,12.958333,,0.025,,504,113,78,,,,692,L404 U400 10.0s,ID+9 gap,83324,, +365,G,,KIM,b,Kirmington (EN-LIN),53.5625,-0.375,,0.025,,483,292,78,,,,998,L401 U399 13.4s,83322,,, +365,F,,RB,b,Ajaccio / Campo del Oro (20A),41.9375,8.791667,,0.025,,1145,170,84,,,,,,83339,,, +365,E,,VGD,b,Vitigudino (CAL-SA),41.020833,-6.458333,,0.06,,1573,223,85,,,,14,L1020 U1060 ,ID+4 gap,83349,, +365,S,,WS,b,Sderhamn,61.3125,16.958333,,0.025,,1206,28,85,,,,5,L394 U405 ,83353,,, +365,ROU,,SAT,b,Satu Mare (SM),47.729167,22.875,,0.025,,1272,106,86,,,,2,L1031 U1038 ,ID+4 gap,83340,, +365,FIN,,VS,b,Tampere / Pirkkala / Vesilahti,61.395833,23.458333,,0.025,,1457,38,88,,,,5,L407 U405 ,83351,,, +365,UKR,,I,b,Lymanske,46.6875,30.041667,,0.025,,1804,100,91,,,,,L400 U400 ,86530,,, +365,ISL,,ES,b,Egilsstair (au),65.229167,-14.458333,,0.025,,1875,329,92,,,,998,L1027 U1024 5.5s,83312,,, +365,NOR,,ODD,b,Harstad / Narvik / Evenes / Odden,68.395833,16.125,,0.025,,1883,12,92,,,,997,L392 U365 7.36s,83333,,, +365,LBY,,G,b,Tripoli / Golf (tbl),32.645833,13.208333,,0.025,,2233,163,95,,,,2,L1020 U1023 10.0s,ID+9 gap,83316,, +365,CNR,,VR,b,Las Palmas (LPM-GC),27.854167,-15.458333,,0.2,,3250,222,96,,,,0,L941 U1049 ,ID+6 gap,83350,, +365,RUS,,AD,b,Sochi (KD),43.395833,39.958333,,0.025,,2660,98,100,,,,993,L385 U386 ,ID+6 gap,83305,, +365,SYR,,MER,b,Aleppo (alp),36.1875,37.291667,,0.025,,2997,114,103,,,,2,L1020 U1024 ,ID+2 gap,83328,, +365,RUS,,HC,b,Makhachkala / Uytash (DA),42.854167,47.625,,0.025,,3214,92,105,,,,,L1048 U1047 ,83318,,, +365,CAN,,YGZ,b,Grise Fiord (NU),76.4375,-82.875,,0.1,,4419,338,111,,,,,U414 ,DAID,83355,, +365,CAN,,MA,b,Mayo (YT),63.645833,-135.875,,0.5,,6734,342,127,,,,,U405 10228s,DAID,83327,, +365,USA,,FIT,b,Fitchburg (MA),42.5625,-71.791667,,0.025,,5696,292,130,,,,999,L1018 U1014 6014s,83313,,, +365,ALS,,ANV,b,Anvik (AK),62.645833,-160.208333,,0.4,,7201,353,133,,,,999,L1022 U1020 8.5s,83308,,, +365,USA,,AA,b,Kenie Fargo (MN),47.020833,-96.791667,,0.1,,6805,311,135,,,,991,L1045 U1025 5.98s,83304,,, +365,USA,,TV,b,Gwenn Traverse City (MI),44.729167,-85.458333,,0.03,,6364,302,136,,,,988,L1049 U1024 7699s,83347,,, +365,USA,,JN,b,Balll Muncie (IN),40.1875,-85.291667,,0.025,,6706,298,140,,,,1,L397 U403 8600s,83321,,, +365,ALS,,SHH,b,Shishmaref (AK),66.270833,-166.041667,,0.025,,6836,357,141,,,,,,83341,,, +365,USA,,MRJ,b,Mineral Point (WI),42.895833,-90.208333,,0.025,,6779,304,141,,,,3,L1020 U1027 7771s,83331,,, +365,B,,CVL,b,Caravelas (BA),-17.645833,-39.208333,,1,,8918,224,143,,,,998,L1024 U1023 7.0s,83310,,, +365,USA,,DYB,b,Dorchester Co Summerville (SC),33.0625,-80.291667,,0.025,,6961,290,143,,,,971,L1026 U1007 7306s,83311,,, +365,USA,,SYZ,b,Shelbyville (IL),39.395833,-88.875,,0.025,,6983,300,143,,,,981,L1052 U1017 6.4s,83344,,, +365,AFS,,KM,b,Kimberley (NC),-28.8125,24.791667,,1,,9175,164,144,,,,993,L1107 U1094 10.9s,83323,,, +365,USA,,FKV,b,Flowery Branch Gainesville (GA),34.1875,-83.875,,0.025,,7098,293,144,,,,20,L983 U981 6471s,83314,,, +365,USA,,AIO,b,Atlantic (IA),41.395833,-95.041667,,0.025,,7173,305,145,,,,,U1018 ,83307,,, +365,USA,,PBC,b,Maury Co Columbia / Mount Pleasant (TN),35.604167,-87.125,,0.025,,7185,296,145,,,,0,L1003 U1005 6717s,83336,,, +365,USA,,MNF,b,Mountain View (MO),36.979167,-91.708333,,0.025,,7348,300,146,,,,484,L55 U1022 7.13s,83330,,, +365,B,,LON,b,Londrina (PR),-23.3125,-51.125,,1,,10069,231,147,,,,,L1052 ,83326,,, +365,CHN,,HD,b,Tumurtai,41.854167,113.125,,0.025,,7420,51,147,,,,,L10 ,DA2ID,86529,, +365,CHN,,MF,b,Yinchuan/Hedong (NX),38.104167,106.375,,0.025,,7362,58,147,,,,,,83329,,, +365,USA,,TO,b,Blood Troy (AL),31.8125,-86.125,,0.025,,7435,293,147,,,,999,L1042 U1037 6268s,83345,,, +365,USA,,PTS,b,Pittsburg (KS),37.4375,-94.708333,,0.025,,7485,302,148,,,,,U1047 ,83338,,, +365,B,,PNB,b,Parnaba (PI),-2.895833,-41.708333,,0.025,,7596,233,149,,,,998,L1020 U1016 ,83337,,, +365,USA,,ADT,b,Atwood (KS),39.854167,-101.041667,,0.025,,7632,308,149,,,,998,L1018 U1021 3.75s,83306,,, +365,USA,,JA,b,Allen Jackson (MS),32.395833,-90.125,,0.025,,7635,296,149,,,,481,L1038 U1015 6550s,83320,,, +365,USA,,DPY,b,Deer Park (WA),47.979167,-117.458333,,0.025,,7681,323,150,,,,,L1035 U1035 7.5s,86528,,, +365,USA,,SFF,b,Felts Spokane (WA),47.6875,-117.291667,,0.025,,7701,323,150,,,,,L1040 U1030 ,87150,,, +365,USA,,HQG,b,Hugoton (KS),37.145833,-101.375,,0.025,,7885,307,152,,,,972,L1070 U1016 7.9s,83319,,, +365,CHN,,KY,b,Wangbingou,41.6875,123.708333,,0.025,,7969,44,153,,,,,L1300 U1081 10s,86532,,, +365,USA,,FT,b,Mufin Fort Worth (TX),32.895833,-97.375,,0.025,,8028,301,153,,,,998,L1032 U1020 7.5s,83315,,, +365,MEX,,CZM,b,San Miguel de Cozumel (qui),20.520833,-86.941667,,0.025,,8444,285,157,,,,,,87149,,, +365,MYA,,PA,b,Hpa-An,16.892778,97.674444,,0.025,,8618,78,158,,,,,,22100019,,, +365,B,,TPQ,b,Tapurquara (AM),-0.4375,-65.041667,,0.025,,8794,255,159,,,,,U1028 ,83346,,, +365,B,,SMA,b,Santa Maria (RS),-29.6875,-53.708333,,0.1,,10806,229,160,,,,,,83342,,, +365,THA,,SN,b,Saka Nakhon (snk),17.1875,104.125,,0.025,,9020,73,160,,,,,L1023 ,83343,,, +365,EQA,,PAL,b,Palma (gua),-2.020833,-79.791667,,0.025,,9926,266,163,,,,1,L1018 U1015 7.35s,83335,,, +365,INS,,NX,b,Jambi (JA-jam),-1.645833,103.625,,0.025,,10644,85,165,,,,993,L1013 U1000 ,83332,,, +365,INS,,CA,b,Cirebon (JB-cir),-6.6875,108.541667,,0.025,,11421,85,168,,,,,U1050 ,83309,,, +365,INS,,OL,b,Balikpapan (KI-bal),-1.270833,116.875,,0.025,,11500,74,168,,,,996,L1025 U1017 8.40s,83334,,, +365,AUS,,WLM,b,Williamtown (NSW),-32.8125,151.791667,,0.025,,16510,66,184,,,,,L1020 U1020 30s,TWEB,86534,, +366,S,,KM,b,Kalmar,56.729167,16.291667,,0.025,,819,47,81,,,,0,L407 U400 4.5s,83365,,, +366,S,,SF,b,Falkping,58.0625,13.291667,,0.025,,793,31,81,,,,988,L415 U386 ,83369,,, +366,F,,ADC,b,Aerodrome du Castellet (83),43.270833,5.791667,,0.025,,984,183,83,,,,,U2 ,DAID,83358,, +366,S,,UP,b,Uppsala,59.979167,17.791667,,0.025,,1122,34,84,,,,,U400 ,83374,,, +366,NOR,,UTH,b,Orland / Uthaug,63.729167,9.541667,,0.025,,1305,7,86,,,,997,L404 U397 ,83375,,, +366,EST,,U,b,Tartu (Tar),58.3125,26.708333,,0.025,,1453,54,88,,,,,U1015 ,83373,,, +366,E,,COR,b,Crdoba (AND-CO),37.854167,-4.875,,0.02,,1812,213,92,,,,2,L1020 U1028 10.32s,ID+6 gap,83360,, +366,ISL,,HK,b,Holmavik,65.645833,-21.458333,,0.025,,2164,325,95,,,,,U1016 6.5s,83363,,, +366,TUR,,SB,b,Ankara / Esenboga (ica-ank),40.145833,33.041667,,0.025,,2424,113,97,,,,,L1025 ,Cont. ID,83368,, +366,IRN,,SNJ,b,Sanandaj (kdn),35.270833,47.041667,,0.025,,3698,104,110,,,,,L1037 U1030 ,ID+6.5 gap,83371,, +366,CAN,,3R,b,Postville (NL),54.895833,-59.791667,,0.025,,4224,301,115,,,,,U420 ,83357,,, +366,CAN,,YMW,b,Maniwaki (QC),46.1875,-75.958333,,0.5,,5699,298,117,,,,0,L400 U402 10.3s,DAID,83377,, +366,CAN,,M,b,Lewisville / Moncton (NB),46.104167,-64.791667,,0.05,,5015,292,120,,,,,,87153,,, +366,CAN,,ZMN,b,Lewisville (Moncton) (NB),46.104167,-64.791667,,0.025,,5015,292,123,,,,,L401 U395 ,DAID,83378,, +366,USA,,AU,b,Dunns Augusta (ME),44.395833,-69.875,,0.025,,5448,293,127,,,,990,L1030 U1000 8600s,83359,,, +366,USA,,IS,b,Lokks Islip (NY),40.729167,-73.208333,,0.025,,5917,291,132,,,,,L1047 U1019 5269s,83364,,, +366,USA,,CYO,b,Circleville (OH),39.520833,-82.958333,,0.025,,6617,296,139,,,,,U1000 ,87152,,, +366,USA,,EOK,b,Keokuk (IA),40.479167,-91.458333,,0.025,,7045,303,143,,,,998,L1022 U1017 5.5s,83361,,, +366,CAN,,5Z,b,Oyen (AB),51.354167,-110.458333,,0.025,,7083,322,144,,,,,,87151,,, +366,USA,,EZM,b,Eastman (GA),32.145833,-83.125,,0.025,,7217,291,145,,,,2,L1027 U1026 5.4s,83362,,, +366,IND,,AZ,b,Aizawl (MZ),23.742778,92.802778,,0.025,,7708,78,150,,,,,,32200042,,, +366,USA,,PLV,b,Aurora (OR),45.270833,-122.791667,,0.025,,8150,325,154,,,,,,87154,,, +366,J,,TN,b,Shin-Tachikawa (kan-tok),35.729167,139.375,,0.025,,9234,37,160,,,,,L1020 U1000 20s,DA2ID,86535,, +366,FSM,,PNI,b,Pohnpei (pnp),6.979167,158.208333,,0.025,,12920,32,173,,,,999,L1016 U1012 8.5s,83367,,, +366,NZL,,SF,b,Springfield,-35.895833,174.375,,0.05,,17977,32,186,,,,988,L1020 U1041 8.5s,83370,,, +366,NZL,,TU,b,Timaru (CAN),-44.3125,171.208333,,0.025,,18598,58,191,,,,,6.94s,83372,,, +366.5,XOE,,NOL,b,Jackup Rig Noble Lynda Bossler Platform,52.8125,4.291667,,0.025,,163,299,75,,,,500,L1020 U1020 ,83380,,, +366.5,G,,CAR,b,Ronaldsway / Carnane (IOM),54.145833,-4.458333,,0.025,,759,292,81,,,,503,L403 U405 8.1s,83379,,, +367,F,,VAT,b,Chalon / Vatry (51),48.8125,4.041667,,0.025,,403,205,77,,,,,U5 ,ID+15 tone,83397,, +367,F,,CF,b,Clermont-Ferrand / Auvergne (63),45.8125,3.375,,0.025,,734,199,80,,,,,L400 U406 10.0s,ID+7 gap,83383,, +367,HRV,,ZAG,b,Zagreb (zg),45.895833,16.291667,,0.05,,997,130,80,,,,999,L1020 U1018 9.4s,ID+6 tone,83398,, +367,XOE,,OQ,b,Total / Elf Frigg QP Platform,59.520833,2.041667,,0.025,,868,343,82,,,,,,83391,,, +367,E,,SBD,b,Sabadell (CAT-B),41.520833,2.125,,0.025,,1221,197,85,,,,990,L1034 U1028 15.0s,ID+11 gap,83395,, +367,POR,,PG,b,Porto (prt),41.0625,-8.625,,0.025,,1676,229,90,,,,990,L986 U949 9.83s,ID+6 gap,83392,, +367,GRC,,AML,b,Andravida / Amalias (wgr-ili),37.770833,21.375,,0.025,,1974,138,93,,,,7,L1020 U1035 8.0s,ID+5 gap,83382,, +367,CAN,,6F,b,Port Hope / Simpson (NL),52.520833,-56.291667,,0.25,,4124,296,104,,,,,U394 10.21s,DAID,83381,, +367,GRL,,JV,b,Ilulissat (Jakobshavn) (Kitaa) (qaa-ili),69.229167,-51.041667,,0.025,,3473,325,108,,,,,L402 U403 ~9.9s,83387,,, +367,RUS,,K,b,Chelyabinsk / Balandino (CB),55.3125,61.541667,,0.025,,3550,62,108,,,,,,83388,,, +367,CAN,,R5,b,Pukatawagan (MB),55.729167,-101.291667,,0.025,,6320,320,136,,,,,U1023 10.06s,DAID,86537,, +367,USA,,FVX,b,Farmville (VA),37.354167,-78.458333,,0.025,,6505,292,138,,,,,U1018 5.8s,83384,,, +367,USA,,GR,b,Doone Fayetteville (NC),34.895833,-78.958333,,0.025,,6729,290,140,,,,998,L1039 U1039 5891s,83385,,, +367,USA,,PRI,b,Perrine Farmington (MO),37.770833,-90.458333,,0.025,,7209,300,145,,,,994,L974 U1025 5572s,83393,,, +367,USA,,RD,b,Lassn Redding (CA),40.395833,-122.291667,,0.025,,8601,322,158,,,,5,L1031 U2014 ,83394,,, +367,USA,,MO,b,Wowar Modesto (CA),37.5625,-120.875,,0.025,,8814,320,159,,,,980,L1060 U1014 6.0s,83389,,, +367.5,G,,OX,b,Oxford / Kidlington (EN-OXF),51.8125,-1.291667,,0.025,,528,269,78,,,,502,L397 U401 8.1s,83399,,, +367.5,I,,PNZ,b,Ponza (lt),40.895833,12.958333,,0.04,,1343,156,84,,,,500,L1023 10.0s,ID+5 gap,83400,, +368,D,,BYC,b,Bckeburg (nds),52.270833,9.125,,0.025,,186,83,75,,,,0,L1046 U1049 ,83405,,, +368,DNK,,RK,b,Kbenhavn/Roskilde (kbh),55.604167,11.958333,,0.025,,532,41,78,,,,1,L404 U402 9.0s,83426,,, +368,CZE,,BNO,b,Brno / Turany (JM),49.145833,16.791667,,0.025,,802,110,81,,,,0,L399 U400 10.1s,83404,,, +368,G,,UW,b,Edinburgh (SC-WLN),55.895833,-3.541667,,0.025,,774,307,81,,,,20,L374 U422 8.40s,83437,,, +368,NOR,,FN,b,Finndal / Skien,59.145833,9.541667,,0.025,,806,13,81,,,,995,L388 U384 7.3s,83409,,, +368,IRL,,WTD,b,Waterford (WD),52.1875,-7.041667,,0.025,,917,276,82,,,,2,L400 U403 5.3s,ID+2 gap,83441,, +368,F,,TLB,b,Toulouse / Blagnac (31),43.9375,1.458333,,0.025,,980,204,83,,,,,U4 ,ID+15 tone,83435,, +368,S,,OY,b,Sveg,62.0625,14.291667,,0.025,,1203,20,85,,,,2,L395 U405 ,83422,,, +368,NOR,,GR,b,Mo I Rana / Rossvold / Gruben,66.3125,14.208333,,0.025,,1637,12,89,,,,5,L379 U388 ,83412,,, +368,FIN,,SK,b,Sodankyl / Sattanen,67.479167,26.541667,,0.025,,2026,25,93,,,,2,L408 U408 8.5s,83431,,, +368,RUS,,G,b,Kursk (KU),51.770833,36.208333,,0.025,,2029,79,93,,,,,,83410,,, +368,RUS,,W,b,Kursk (KU),51.729167,36.291667,,0.025,,2035,79,93,,,,,,83440,,, +368,TUR,,EDR,b,Edremit-Korfez LTFD (mam-bal),39.550722,27.005167,,0.025,,2107,123,94,,,,,L1013 ,Cont. ID,83407,, +368,KWT,,NR,b,Madinat al-Kuwayt (kuw),29.3125,47.958333,,0.025,,4234,110,115,,,,5,L396 U406 ,ID+8 gap,83419,, +368,CAN,,YZH,b,Slave Lake (AB),55.3125,-114.791667,,0.5,,6906,327,129,,,,,,87157,,, +368,USA,,IMR,b,Marshfield (MA),42.104167,-70.708333,,0.025,,5659,291,130,,,,,U1022 4998s,83415,,, +368,CAN,,L,b,Lima / Toronto (ON),43.604167,-79.541667,,0.025,,6099,298,134,,,,,U370 ,DAID,87155,, +368,CAN,,SX,b,Skookum (Cranbrook) (BC),49.9375,-115.791667,,0.5,,7432,324,134,,,,13,L385 U405 10.5s,DAID,83433,, +368,CAN,,ZYZ,b,Toronto (The Queensway) (ON),43.604167,-79.541667,,0.025,,6099,298,134,,,,998,L372 U401 10.5s,DAID,83445,, +368,CAN,,4H,b,Points North Landing (SK),58.270833,-104.041667,,0.025,,6233,324,135,,,,,U1020 ,83401,,, +368,CAN,,VX,b,Dafoe (SK),51.854167,-104.541667,,0.08,,6781,319,136,,,,,L389 U389 10.5s,DAID,83439,, +368,USA,,TEC,b,Tech Blacksburg (VA),37.1875,-80.375,,0.025,,6639,293,139,,,,997,L1027 U1027 4811s,83434,,, +368,CAN,,YJF,b,Fort Liard (NT),60.229167,-123.458333,,0.025,,6748,334,140,,,,202,L~400 U405 ,DAID,83442,, +368,USA,,OH,b,Leama Arlington Heights (Chicago) (IL),42.0625,-87.958333,,0.025,,6716,302,140,,,,990,L1040 U1020 ,83421,,, +368,USA,,VIQ,b,Neillsville (WI),44.5625,-90.541667,,0.025,,6666,305,140,,,,,U1020 8.15s,83438,,, +368,ALS,,DRF,b,Drift River Kenai (AK),60.604167,-152.125,,0.09,,7337,349,141,,,,,U1010 ,83406,,, +368,USA,,PNM,b,Princeton (MN),45.5625,-93.625,,0.025,,6755,308,141,,,,7,L1046 U1042 7.2s,TWEB,83424,, +368,USA,,RRJ,b,Oranj French Lick (IN),38.520833,-86.541667,,0.025,,6914,298,142,,,,,U~1000 ,83428,,, +368,USA,,IFA,b,Iowa Falls (IA),42.479167,-93.291667,,0.025,,6986,305,143,,,,,L1020 U1017 7.0s,83414,,, +368,MEX,,GYM,b,Guaymas (Sonora) (son),27.9375,-110.958333,,1,,9239,308,144,,,,17,L1030 U1023 8.5s,DA3ID,83413,, +368,USA,,SA,b,Mavis Savannah (GA),32.145833,-81.291667,,0.025,,7100,290,144,,,,988,L1048 U1029 5903s,83429,,, +368,USA,,SOY,b,Sioux Center (IA),43.145833,-96.208333,,0.025,,7092,307,144,,,,990,L1050 U1024 8.1s,83432,,, +368,USA,,EU,b,Murey Murray (KY),36.729167,-88.291667,,0.025,,7164,298,145,,,,993,L1053 U1035 ,83408,,, +368,USA,,SIR,b,Sinclair (WY),41.8125,-107.125,,0.1,,7774,313,145,,,,989,L1046 U1024 8.0s,83430,,, +368,USA,,BEQ,b,Bessemer (AL),33.3125,-86.958333,,0.025,,7363,294,147,,,,,U1015 ,83403,,, +368,USA,,IX,b,Dustt Olathe (KS),38.729167,-94.875,,0.025,,7386,303,147,,,,982,L1067 U1031 7.3s,83416,,, +368,USA,,PHG,b,Phillipsburg (KS),39.6875,-99.291667,,0.025,,7551,307,148,,,,999,L1026 U1018 6.6s,83423,,, +368,USA,,TP,b,Cosme Tampa (FL),28.104167,-82.541667,,0.025,,7513,287,148,,,,988,L1045 U1025 6.32s,83436,,, +368,USA,,NVK,b,Allentown Milton (FL),30.770833,-87.041667,,0.025,,7579,292,149,,,,,,83420,,, +368,CAN,,ZP,b,Sandspit (BC),53.1875,-131.791667,,0.025,,7678,335,150,,,,12,L409 U398 10.0s,DAID,83443,, +368,CAN,,V,b,Vancouver (BC),49.1875,-123.208333,,0.025,,7788,328,151,,,,,,87156,,, +368,USA,,ROQ,b,Ruston (LA),32.604167,-92.625,,0.025,,7770,298,151,,,,991,L1044 U1031 7825s,83427,,, +368,CAN,,ZVR,b,Sea Island (Vancouver) (BC),49.1875,-123.208333,,0.02,,7788,328,152,,,,,U396 10384s,DAID,83444,, +368,USA,,PPA,b,Pampa (TX),35.604167,-100.958333,,0.025,,7997,305,153,,,,996,L1055 U1048 7.5s,83425,,, +368,USA,,GDE,b,Goodhue Beaumont (TX),30.0625,-94.208333,,0.025,,8084,297,154,,,,,L1030 ,83411,,, +368,USA,,LAM,b,Los Alamos (NM),35.895833,-106.291667,,0.025,,8261,309,156,,,,,U1035 ,83418,,, +368,USA,,AN,b,Alamo San Antonio (TX),29.604167,-98.541667,,0.025,,8384,300,157,,,,985,L1052 U1024 5.8s,83402,,, +368,J,,CU,b,Otsu (kns-shi),35.0625,135.875,,0.025,,9152,40,160,,,,,L1010 U1010 7.5s,DAID,86539,, +368,PNG,,KAV,b,Kavieng (nir),-2.604167,150.791667,,0.025,,13601,44,175,,,,,,86540,,, +368,PNG,,PY,b,Port Moresby (ncd),-9.479167,147.208333,,0.025,,14102,51,177,,,,,L1000 7s,86541,,, +368.5,LUX,,ELU,b,Luxembourg-Berg (lux),49.6875,6.375,,0.015,,269,181,78,,,,500,L1020 U1020 9.7s,ID+7 gap,83446,, +368.5,G,,WHI,b,Whitegate for Hawarden (EN-CHE),53.1875,-2.625,,0.025,,621,285,79,,,,500,L400 U405 5.5s,83447,,, +369,G,,RCH,b,Rochester (EN-KNT),51.354167,0.541667,,0.025,,413,261,77,,,,9,L375 U404 5.0s,83461,,, +369,HOL,,PS,b,Rotterdam Locator (zho),51.854167,4.208333,,0.015,,153,260,77,,,,987,L400 U402 8.1s,83460,,, +369,XOE,,RFB,b,British Gas / Rough B Platform,53.8125,0.458333,,0.025,,441,298,77,,,,9,L395 U412 10.0s,83462,,, +369,DNK,,KA,b,Karup (mjy),56.3125,9.208333,,0.025,,501,20,78,,,,983,L400 U389 4.5s,83454,,, +369,F,,GL,b,Nantes / Atlantique (44),47.0625,-1.708333,,0.05,,810,229,78,,,,,L403 U405 10.0s,ID+7 gap,83452,, +369,D,,MNE,b,Mnchen (bay),48.355278,11.676111,,0.025,,561,136,79,,,,2,L1019 U1022 4.0s,83455,,, +369,S,,NL,b,Gteborg/Landvetter (vg),57.729167,12.375,,0.025,,731,29,80,,,,992,L417 U416 4.4s,83456,,, +369,F,,CM,b,Avignon / Caumont (84),43.895833,4.875,,0.025,,920,188,82,,,,,U8 ,83449,,, +369,HRV,,VRS,b,Vrsar (pa),45.229167,13.625,,0.025,,930,143,82,,,,2,L1031 U1033 8.2s,ID+5 gap,83465,, +369,F,,BP,b,Bastia / Poretta (20B),42.4375,9.541667,,0.025,,1101,166,84,,,,,,ID+16s tone,83448,, +369,NOR,,STG,b,Stegen,61.854167,6.375,,0.025,,1084,360,84,,,,197,L402 U407 10.0s,83463,,, +369,S,,OO,b,rnsksldsvik,63.354167,19.125,,0.025,,1455,26,88,,,,3,L400 U406 ,83457,,, +369,S,,OS,b,Skellefte,64.604167,21.208333,,0.025,,1627,26,89,,,,,,83458,,, +369,LBY,,ZUE,b,Zuetina (wah),30.854167,20.125,,0.025,,2615,149,99,,,,,L1020 U980 ,ID+2 gap,83467,, +369,ATG,,ZDX,b,Coolidge Saint Johns (atg),17.145833,-61.791667,,1.2,,7030,264,127,,,,996,L1023 U1015 10103s,83466,,, +369,USA,,TT,b,Trenn Trenton (NJ),40.229167,-74.875,,0.025,,6060,292,134,,,,995,L1038 U1026 5983s,83464,,, +369,ALS,,GAM,b,Gambell (AK),63.770833,-171.708333,,0.025,,7129,359,144,,,,,,83451,,, +369,USA,,HDI,b,Hardwick Cleveland (TN),35.145833,-84.875,,0.025,,7083,294,144,,,,998,L1024 U1020 5307s,83453,,, +369,USA,,CXU,b,Camilla (GA),31.229167,-84.208333,,0.025,,7361,291,147,,,,9,L1099 U927 5631s,83450,,, +369,COM,,AJ,b,Ouani,-12.131944,44.428333,,0.025,,8018,141,153,,,,,,10000001,,, +369,CHN,,ZF,b,Hekou,31.5625,114.458333,,0.025,,8391,57,157,,,,,L1025 U1008 ,86546,,, +369,CHN,,PK,b,Nanxiang (SH),31.270833,121.291667,,0.025,,8797,52,159,,,,,14s,2xID,83459,, +369.5,J,,NI,b,Sado (chu-nii),38.0625,138.375,,0.025,,8963,36,160,,,,-369.5,L1000 U1019 5s,DAID,83468,, +370,D,,PSA,b,Spessart (bay),49.854167,9.375,,0.025,,326,139,76,,,,999,L1017 U1021 7.1s,83496,,, +370,G,,KS,b,Kinloss (SC-MOR),57.645833,-3.625,,0.1,,888,318,76,,,,998,L400 U399 10.0s,83484,,, +370,F,,CGZ,b,Paris / Charles de Gaulle (77),49.020833,2.708333,,0.025,,432,219,77,,,,5,L395 U418 13.6s,ID+10 gap,83472,, +370,F,,BSV,b,Besancon / La Veze (25),47.270833,6.208333,,0.025,,538,182,78,,,,,L3 U2 19.8s,DAID,83471,, +370,G,,CUL,b,Culdrose RNAS (EN),50.0625,-5.291667,,0.025,,847,259,81,,,,,L399 U400 10.0s,ID+6 gap,86547,, +370,S,,DC,b,Oskarshamn,57.395833,16.541667,,0.025,,875,44,82,,,,0,L400 U400 ,83473,,, +370,BIH,,GAC,b,Gacko (srp),43.145833,18.541667,,0.04,,1346,133,84,,,,995,L1008 U1016 9.9s,83475,,, +370,S,,OHT,b,Stockholm / Arlanda,59.5625,17.875,,0.025,,1092,36,84,,,,996,L407 U401 ,83492,,, +370,S,,L,b,Lycksele,64.520833,18.708333,,0.025,,1550,22,88,,,,,U400 ,83485,,, +370,ALG,,SMR,b,Algiers / Houari Boumedienne / Semmar (16),36.6875,3.125,,0.025,,1734,190,90,,,,998,L1025 U1025 ,ID+4 gap,83498,, +370,FIN,,JR,b,Varkaus / Joroinen,62.145833,27.875,,0.025,,1695,41,90,,,,2,L400 U400 8.5s,83482,,, +370,ROU,,OTL,b,Bucuresti / Otopeni (BU),44.5625,26.041667,,0.025,,1669,112,90,,,,8,L1052 U1057 ,Cont. ID,83493,, +370,E,,O,b,Murcia / San Javier (MUR-MU),37.770833,-0.791667,,0.02,,1690,202,91,,,,34,L1020 U1054 ,ID+5 gap,83491,, +370,ISL,,NS,b,Reykjavk/Nes (ho),64.145833,-21.958333,,0.025,,2106,320,94,,,,,,86550,,, +370,RUS,,RT,b,Moskva/Ramenskoe (MV),55.520833,38.208333,,0.025,,2102,67,94,,,,10,L995 U1015 ,83497,,, +370,LBY,,GNS,b,Naser (but),31.854167,23.958333,,0.025,,2663,141,100,,,,,,83476,,, +370,RUS,,NA,b,Nizhnekamsk / Begishevo,55.520833,52.375,,0.025,,2985,64,103,,,,,,83489,,, +370,RUS,,NK,b,Nizhnekamsk / Begishevo,55.604167,52.125,,0.025,,2968,64,103,,,,,U1060 ,IDx2,83490,, +370,RUS,,UL,b,Usinsk (KO),65.979167,57.375,,0.025,,3176,41,105,,,,,L400 15.0s,IDx2,83502,, +370,RUS,,YT,b,Usinsk (KO),65.979167,57.375,,0.025,,3176,41,105,,,,,,86552,,, +370,IRN,,UMH,b,Urumiyeh=Urmia (waz),37.645833,45.041667,,0.025,,3388,103,107,,,,17,L1020 U1052 ,ID+6 gap,83503,, +370,RUS,,KO,b,Yekaterinburg / Koltsovo (SV),56.729167,60.708333,,0.025,,3456,60,108,,,,,,83483,,, +370,RUS,,KU,b,Ekaterinburg / Koltsovo (SV),56.729167,60.875,,0.025,,3466,60,108,,,,,,86549,,, +370,CAN,,GR,b,Grindstone (Iles de la Madeleine) (QC),47.395833,-61.875,,0.025,,4750,292,120,,,,,U390 10.5s,DAID,83478,, +370,USA,,DXT,b,Dalton (MA),42.479167,-73.208333,,0.025,,5791,293,131,,,,994,L1040 U1030 8.53s,83474,,, +370,CAN,,YBV,b,Berens River (MB),52.354167,-97.041667,,0.05,,6391,315,134,,,,988,L400 U370 10.4s,DAID,83506,, +370,USA,,MQI,b,Manteo (NC),35.895833,-75.708333,,0.025,,6442,289,137,,,,997,L1023 U1031 4125s,83487,,, +370,CUB,,UCM,b,Camagey (cm),21.395833,-77.958333,,0.35,,7770,279,139,,,,620,L1208 U1165 7989s,83501,,, +370,USA,,HYW,b,Horry Conway (SC),33.8125,-79.125,,0.025,,6826,289,141,,,,0,L1009 U1013 6898s,83479,,, +370,USA,,VOF,b,Alcovy Covington (GA),33.645833,-83.791667,,0.025,,7137,292,144,,,,998,L1030 U1061 5979s,AWOS-3,83505,, +370,B,,GOI,b,Goinia (GO),-16.645833,-49.208333,,1,,9330,233,145,,,,,U1087 6.59s,83477,,, +370,CHN,,PM,b,Potou (HB),38.0625,116.541667,,0.05,,7931,51,149,,,,,L1120 6s,83495,,, +370,USA,,OUN,b,Norman (OK),35.229167,-97.458333,,0.025,,7831,303,151,,,,,L1034 U1027 7.9s,86551,,, +370,MYA,,LSO,b,Lashio,22.979167,97.754444,,0.025,,8101,74,154,,,,,,22100027,,, +370,B,,MRB,b,Marab (PA),-5.354167,-49.125,,0.025,,8250,239,155,,,,,,83488,,, +370,HND,,LMS,b,San Pedro Sula (Cortes) (cor),15.479167,-87.875,,0.05,,8942,283,156,,,,998,L1023 U1034 5.75s,83486,,, +370,PRU,,TYL,b,Talara (Piura) (piu),-4.5625,-81.291667,,0.15,,10251,265,156,,,,,,83500,,, +370,TWN,,SN,b,Taichung (TC),24.145833,120.625,,0.049,,9414,57,158,,,,,8.5s,83499,,, +370,MOZ,,VL,b,Vilankulo (ihb),-21.979167,35.291667,,0.025,,8703,153,159,,,,,L1017 5.26s,83504,,, +370,USA,,PAI,b,Pacoima (CA),34.270833,-118.375,,0.025,,9017,317,160,,,,0,L50 U955 4.5s,83494,,, +370,B,,IK,b,Bento (SP),-22.9375,-47.208333,,0.025,,9830,228,162,,,,,,83481,,, +370,B,,IC,b,Gisa (PR),-25.479167,-49.208333,,0.025,,10176,228,164,,,,,,83480,,, +370,INS,,BM,b,Batam (KR-bat),1.104167,104.125,,0.025,,10436,83,164,,,,,4.5s,83470,,, +370.5,D,,GW,b,Berlin / Gatow (brb),52.479167,13.125,,0.025,,458,82,78,,,,-370.5,U403 ,87158,,, +370.5,S,,LB,b,Angelholm / Barkakra,56.354167,12.791667,,0.025,,628,39,79,,,,500,L408 U407 ,83508,,, +370.5,G,,AP,b,Aberporth (WA-CDN),52.104167,-4.541667,,0.025,,747,274,80,,,,514,L393 U411 8.5s,83507,,, +371,D,,MYN,b,Mnster / Osnabrck (nrw),52.145833,7.791667,,0.025,,94,87,54,,,,1,L1026 U1021 ,83535,,, +371,XOE,,AME,b,Amoco Rijn P15-E Platform,52.1875,3.875,,0.025,,173,274,75,,,,0,L400 U400 ,83511,,, +371,XOE,,AMO,b,Amoco Rijn P15-G Platform,52.229167,3.708333,,0.025,,185,275,75,,,,,U400 ,83512,,, +371,XOE,,WB,b,Nam / FA1,53.4375,3.375,,0.025,,252,307,75,,,,,,86556,,, +371,XOE,,NQ,b,Penman K8-FA-3 Platform,53.5625,3.458333,,0.025,,256,310,76,,,,2,L395 U400 ,ID+2.5 gap,83536,, +371,BEL,,OKT,b,Kortijk / Wevelgem (vlg-wvl),50.8125,3.208333,,0.015,,265,238,78,,,,5,L1013 U1028 ,83538,,, +371,F,,MLX,b,Morlaix / Ploujean (29),48.645833,-3.791667,,0.025,,819,246,81,,,,,U4 29.9s,ID+25 tone,83534,, +371,I,,LEV,b,Savigliano / Levaldigi (cn),44.5625,7.625,,0.025,,844,173,81,,,,2,L1067 U1068 ,83530,,, +371,I,,RIV,b,Codroipo / Rivolto (ud),45.9375,12.958333,,0.025,,835,143,81,,,,1,L1020 U1020 ,ID+6 gap,83542,, +371,NOR,,BRS,b,Bremsnes for Kristiansund / Kvernberget,63.104167,7.625,,0.05,,1225,3,82,,,,0,L402 U402 ,83515,,, +371,NOR,,HAA,b,Hamar / Stafsberg,60.8125,11.041667,,0.025,,1008,14,83,,,,990,L384 U374 ,ID+5 gap,83525,, +371,I,,FRS,b,Frosinone (fr),41.645833,13.291667,,0.025,,1274,153,86,,,,5,L1020 U1032 ,ID+5 gap,83522,, +371,I,,CAG,b,Elmas (ca),39.229167,9.125,,0.025,,1447,171,87,,,,995,L1025 U1015,83516,,, +371,UKR,,CE,b,Chernigov,51.395833,31.208333,,0.025,,1701,83,90,,,,,,83517,,, +371,TUN,,JER,b,Djerba / Zarzis (med),33.895833,10.791667,,0.05,,2055,168,91,,,,991,L1035 U1020 ,ID+3 gap,83529,, +371,POR,,STR,b,Sintra (lis),38.895833,-9.375,,0.025,,1908,226,92,,,,20,L983 U1017 9.79s,ID+5 gap,83546,, +371,MRC,,CNU,b,Oujda / Angads (otl),34.8125,-1.875,,0.025,,2033,202,93,,,,2,L403 U402 5.6s,ID+2 gap,83518,, +371,NOR,,SM,b,Bardufoss / Fossmo,69.0625,18.625,,0.025,,1991,14,93,,,,985,L400 U369 ,83544,,, +371,TUR,,TZK,b,Nevsehir (ica-nev),38.770833,34.541667,,0.025,,2623,113,99,,,,993,L1035 U1020 ,ID+5 gap,83550,, +371,MRC,,AZR,b,Inezgane,30.354167,-9.458333,,0.025,,2745,214,100,,,,,L1030 U1028 ,83514,,, +371,AZR,,MGL,b,Ponta Delgada (smg),37.729167,-25.625,,0.025,,2950,250,102,,,,,L1037 U1033 8291s,ID+4 gap,87161,, +371,CAN,,GW,b,Jarpik Kuujjuarapik (QC),55.270833,-77.791667,,0.5,,5209,309,112,,,,,U410 10.0s,DAID,83524,, +371,USA,,FND,b,Ellicott Baltimore (MD),39.270833,-76.791667,,0.025,,6253,292,136,,,,,L1058 7833s,83520,,, +371,CAN,,E1,b,Beaverskin (BC),58.020833,-120.291667,,0.05,,6854,331,139,,,,,,87159,,, +371,USA,,AZ,b,Austn Vicksburg (MI),42.145833,-85.541667,,0.025,,6568,300,139,,,,985,L1055 U1027 6008s,83513,,, +371,USA,,PKF,b,Park Falls (WI),45.9375,-90.458333,,0.025,,6553,306,139,,,,,U1016 7670s,83540,,, +371,USA,,AI,b,Video Anderson (IN),40.0625,-85.541667,,0.025,,6731,299,140,,,,998,L1050 U1047 6155s,83510,,, +371,USA,,MD,b,Bunan Bemidji (MN),47.4375,-94.875,,0.025,,6672,310,140,,,,999,L1057 U1058 7597s,83532,,, +371,USA,,RYV,b,Rock River Watertown (WI),43.1875,-88.708333,,0.025,,6670,303,140,,,,998,L1004 U1009 6761s,83543,,, +371,USA,,TOX,b,Siler City (NC),35.770833,-79.458333,,0.025,,6692,291,140,,,,998,L1012 U1017 6386s,83547,,, +371,USA,,MKA,b,Miller (Municipal) (SD),44.520833,-98.958333,,0.05,,7124,310,141,,,,,,87162,,, +371,USA,,ACQ,b,Waseca (MN),44.0625,-93.541667,,0.025,,6872,307,142,,,,10,L1011 U1032 ,83509,,, +371,USA,,ITU,b,Truly Great Falls (MT),47.354167,-111.375,,0.1,,7479,319,142,,,,987,L1045 U1025 5858s,83528,,, +371,USA,,LTD,b,Litchfield (IL),39.145833,-89.708333,,0.025,,7052,300,143,,,,998,L1001 U1003 5.5s,83531,,, +371,USA,,TZT,b,Belle Plaine (IA),41.895833,-92.291667,,0.025,,6978,304,143,,,,3,L1016 U1018 5472s,83551,,, +371,USA,,FQW,b,Walter Hill Murfreesboro (TN),35.979167,-86.375,,0.025,,7109,296,144,,,,998,L1017 U1016 6780s,83521,,, +371,USA,,MLE,b,Millard Omaha (NE),41.1875,-96.125,,0.025,,7250,306,145,,,,,U1036 5884s,83533,,, +371,USA,,PUR,b,Marshall (MO),39.0625,-93.208333,,0.025,,7263,303,146,,,,988,L1046 U1028 7.4s,TWEB,83541,, +371,BAH,,ZPI,b,Paradise Island,25.0625,-77.291667,,0.025,,7418,281,147,,,,,,83555,,, +371,USA,,TS,b,Memphis (Elvis Intl) (TN),34.9375,-89.958333,,0.025,,7413,297,147,,,,,,87163,,, +371,USA,,GT,b,Truly- Great Falls (MT),47.354167,-111.375,,0.025,,7479,319,148,,,,,,87160,,, +371,USA,,XED,b,Medford (Municipal) (OK),36.8125,-97.791667,,0.025,,7714,304,150,,,,,,87164,,, +371,ALS,,PDN,b,Port Heiden (AK),56.9375,-158.625,,0.025,,7813,351,151,,,,2,L1029 U1033 8.0s,83539,,, +371,USA,,FNA,b,Florenville Slidell (LA),30.395833,-89.791667,,0.025,,7783,294,151,,,,991,L1037 U1025 7773s,83519,,, +371,USA,,HNO,b,Henderson (TX),32.1875,-94.875,,0.025,,7941,299,152,,,,997,L1029 U1024 7.8s,83526,,, +371,USA,,YK,b,Donny Yakima (WA),46.520833,-120.375,,0.025,,7935,324,152,,,,993,L1056 U1035 6.2s,83554,,, +371,USA,,GHX,b,Graham (TX),33.145833,-98.458333,,0.025,,8069,302,154,,,,998,L1010 U1005 ,83523,,, +371,USA,,TVY,b,Tooele (UT),40.604167,-112.375,,0.025,,8139,316,154,,,,0,L1030 U1029 6.0s,83549,,, +371,USA,,SOA,b,Sonora (TX),30.5625,-100.625,,0.025,,8422,302,157,,,,,U1020 7.86s,83545,,, +371,USA,,UK,b,Kearn Laughlin (CA),39.270833,-123.208333,,0.025,,8748,323,159,,,,990,L1042 U1023 6.0s,83552,,, +371,PLW,,ROR,b,Koror (kor),7.354167,134.541667,,0.025,,11783,54,169,,,,,L1035 7s,86555,,, +371,AUS,,WHA,b,Whyalla (SA),-33.0625,137.541667,,0.1,,15598,81,175,,,,,L400 7s,83553,,, +371,AUS,,HUG,b,Hughenden (QLD),-20.8125,144.208333,,0.025,,14998,62,179,,,,997,L1050 U1022 10s,83527,,, +371,AUS,,TRE,b,Taree (NSW),-31.895833,152.541667,,0.025,,16480,64,184,,,,,L400 U400 8s,83548,,, +371.5,FIN,,U,b,Helsinki / Vantaa,60.3125,24.958333,,0.025,,1457,44,88,,,,503,L402 U407 ,83556,,, +372,D,,NDO,b,Nordholz (nds),53.770833,8.791667,,0.03,,244,40,75,,,,0,L1035 U1036 8.3s,83571,,, +372,CZE,,L,b,Praha / Ruzyne / Liboc (PR),50.104167,14.291667,,0.025,,593,109,79,,,,5,L395 U399 15.0s,83569,,, +372,NOR,,ODR,b,Kristiansand / Kjevik / Odderoy,58.145833,7.958333,,0.025,,678,8,80,,,,7,L398 U400 8.4s,83573,,, +372,F,,PY,b,Le Puy / Loudes (43),45.020833,3.791667,,0.025,,811,195,81,,,,,L405 U399 ,ID+7 gap,83575,, +372,HRV,,CE,b,Osijek / Cepin (os),45.520833,18.541667,,0.05,,1149,125,81,,,,0,L1020 U1024 ,ID+6 gap,83559,, +372,F,,CSM,b,Castelsarrasin (82),44.0625,1.125,,0.025,,977,206,83,,,,,U10 ,ID+15 tone,83561,, +372,GRC,,KSO,b,Kastori/Aristotelis (wmc-kas),40.4375,21.291667,,0.025,,1723,133,90,,,,5,L435 U433 9.0s,ID+5 gap,83568,, +372,RUS,,BC,b,Sesha,53.729167,33.375,,0.025,,1806,74,91,,,,,,83558,,, +372,RUS,,TJ,b,Sesha,53.729167,33.375,,0.025,,1806,74,91,,,,,,83578,,, +372,GRC,,KIT,b,Kithira (att-kit),36.270833,23.041667,,0.025,,2193,137,95,,,,10,L380 U395 ,ID+15 gap,83567,, +372,TUR,,ESR,b,Eskisehir / Anadolu (ica-esk),39.8125,30.541667,,0.025,,2295,117,96,,,,0,L1020 U1020 ,ID+5 gap,83562,, +372,GRL,,OZN,b,Prins Christian Sund / Kitaa (kuj-nnt),60.0625,-43.125,,0.025,,3115,306,104,,,,2,L398 U404 ,ID+5 gap,83574,, +372,RUS,,NH,b,Tobolsk (TY),58.145833,68.208333,,0.025,,3843,55,111,,,,,U1040 ,83572,,, +372,RUS,,ZL,b,Mys Kamenny,68.520833,73.541667,,0.025,,3863,36,112,,,,,,86559,,, +372,CAN,,YCO,b,Coppermine Kugluktuk (NU),67.8125,-115.125,,1,,5832,336,115,,,,0,L375 U416 9.7s,DAID,83582,, +372,TJK,,FN,b,Dushanbe (dsb),38.543056,68.754722,,0.025,,4935,82,122,,,,,not 420 kHz!!,84966,,, +372,USA,,CQD,b,Cascade Erie (PA),42.104167,-80.125,,0.025,,6246,297,135,,,,986,L1052 U1026 8092s,83560,,, +372,USA,,MF,b,Manns Mansfield (OH),40.770833,-82.458333,,0.025,,6490,297,138,,,,978,L1050 U1017 5853s,83570,,, +372,CAN,,A,b,Glass / Prince Albert (SK),53.229167,-105.541667,,0.025,,6710,320,140,,,,,U~380 ,DAID,87165,, +372,CAN,,ZPA,b,Glass (Prince Albert) (SK),53.229167,-105.541667,,0.025,,6710,320,140,,,,,U399 10.2s,DAID,83583,, +372,USA,,UQN,b,Onyun Vidalia (GA),32.229167,-82.291667,,0.025,,7157,290,145,,,,994,L983 U1016 5823s,83580,,, +372,ALS,,FPN,b,Fredericks Point (AK),56.8125,-132.791667,,0.025,,7344,337,146,,,,988,L1048 U1018 ~7.0s,83563,,, +372,CHN,,FX,b,Hobbot / Baita (NM),40.854167,111.791667,,0.025,,7434,52,147,,,,,,83565,,, +372,AUS,,GIG,b,Gingin (WA),-31.479167,115.875,,1,,14002,97,160,,,,998,L1033 U1033 10s,83566,,, +372,AUS,,WYM,b,Wyndham (WA),-15.520833,128.125,,0.025,,13508,74,175,,,,,U1010 9.95s,83581,,, +372,OCE,,UK,b,Ua Huka,-8.9375,-139.541667,,0.025,,14311,315,177,,,,,~20s,DAID,86557,, +372,AUS,,WAY,b,Wallaby (NT),-23.854167,134.041667,,0.025,,14618,75,178,,,,,,86558,,, +372,OCE,,RU,b,Raiatea (Iles Sous le Vent) (slv),-16.729167,-151.458333,,0.05,,15627,325,179,,,,,U2 20.0s,DAID,83576,, +372.5,SYR,,KTN,b,Al-Qaryatayn (him),34.229167,37.208333,,0.025,,3152,117,104,,,,496,L1027 U1013 8.1s,ID+5 gap,83585,, +372.5,AFS,,GC,b,Grand Central (GT),-25.979167,28.125,,0.1,,8937,160,153,,,,503,L1099 U1106 4.31s,83584,,, +373,HOL,,NW,b,Maastricht/Beek (Sittard) (lim),51.019389,5.878369,,0.015,,127,197,68,,,,7,L400 U400 8.0s,ID+1 gap,83602,, +373,F,,MP,b,Cherbourg / Maupertus (50),49.645833,-1.375,,0.025,,611,246,79,,,,,U3 20.1s,83601,,, +373,F,,LCT,b,Le Luc / Le Cannet (83),43.395833,6.375,,0.025,,969,180,83,,,,,L2 ,83598,,, +373,ROU,,D,b,Trgu Mureş (MS),46.479167,24.375,,0.025,,1440,109,87,,,,949,L862 U948 ,ID+7 gap,83591,, +373,FIN,,KEM,b,Kemi-Tornio / Hirmula,65.854167,24.625,,0.025,,1836,27,91,,,,0,L405 U408 8.5s,ID+6 gap,83597,, +373,ROU,,H,b,Tulcea / Cataloi (TL),45.0625,28.708333,,0.025,,1808,107,91,,,,7,L1040 U1034 7.0s,ID+4 gap,83594,, +373,I,,LPD,b,Lampedusa (ag),35.520833,12.625,,0.025,,1909,163,92,,,,,L1020 U1017 ,ID+6 gap,86560,, +373,ISL,,TN,b,Thorshofn,66.229167,-15.291667,,0.025,,1977,331,93,,,,,U1042 6.0s,83608,,, +373,ALG,,SAH,b,In Salah (11),27.270833,2.541667,,0.025,,2781,188,101,,,,,5.8s,86561,,, +373,IRN,,VR,b,Teheran / Mehrabad / Varamin (thr),35.354167,51.625,,0.025,,3998,100,113,,,,,,83609,,, +373,CAN,,1A,b,Williams Harbor (NL),52.5625,-55.791667,,0.025,,4092,296,114,,,,5,L400 U405 8.2s,DAID,83586,, +373,CAN,,YXK,b,Rimouski (QC),48.479167,-68.541667,,0.025,,5098,297,124,,,,989,L411 U377 10.7s,DAID,83610,, +373,CAN,,2Q,b,Mont-Laurier (QC),46.604167,-75.458333,,0.025,,5640,299,129,,,,1,L410 U411 8.4s,DAID,83588,, +373,CAN,,2R,b,Tyendinaga (ON),44.1875,-77.125,,0.025,,5911,297,132,,,,,,87166,,, +373,USA,,EZ,b,Lizah Elizabeth (Newark) (NJ),40.604167,-74.208333,,0.025,,5990,292,133,,,,985,L413 U382 5961s,83593,,, +373,USA,,JF,b,Conda New York (NY),40.604167,-73.791667,,0.025,,5964,292,133,,,,0,L1020 U1020 ,83596,,, +373,CAN,,2P,b,Fox Creek (Chevron) (AB),54.104167,-116.625,,0.2,,7084,327,135,,,,,U424 ,DAID,83587,, +373,CAN,,ZFM,b,Fort McPherson (NT),67.395833,-134.875,,0.025,,6340,343,136,,,,,U381 ,83611,,, +373,USA,,AEA,b,Jones South Hill (VA),36.604167,-78.041667,,0.025,,6537,291,138,,,,,U1012 5101s,83589,,, +373,USA,,PMH,b,Portsmouth (OH),38.770833,-82.875,,0.025,,6670,296,140,,,,,L1039 6002s,83603,,, +373,J,,PQ,b,Tateyama (kan-chi),34.979167,139.875,,2,,9329,37,142,,,,997,L1010 U1019 5s,DAID,83604,, +373,CAN,,EP,b,Estevan Point (BC),49.395833,-126.541667,,0.1,,7886,330,146,,,,,,83592,,, +373,SEY,,SEY,b,Seychelles,-4.6175,55.439444,,0.025,,7812,127,151,,,,,,11500014,,, +373,USA,,TF,b,Aruba Pueblo (CO),38.270833,-104.375,,0.025,,7948,309,152,,,,993,L1046 U1029 7335s,83607,,, +373,USA,,MF,b,Pumie Medford (OR),42.4375,-122.875,,0.025,,8427,324,157,,,,989,L1045 U1028 7.5s,83600,,, +373,HWA,,HHI,b,Wheeler Wahiawa (HI),21.479167,-158.041667,,0.1,,11694,345,163,,,,0,L1053 U1060 8.0s,83595,,, +373,INS,,RN,b,Ranai,3.895833,108.375,,0.025,,10476,78,165,,,,,U1020 ,83605,,, +374,XOE,,CPR,b,Shell / Esso Clipper Platform,53.479167,1.708333,,0.025,,351,298,76,,,,2,L384 U391 ,83620,,, +374,D,,FS,b,Dresden (sac),51.1875,13.875,,0.025,,525,98,78,,,,0,L1020 U1015 10.0s,83626,,, +374,DNK,,TU,b,Aarhus / Tistrup (arh),56.270833,10.791667,,0.025,,543,30,78,,,,0,L403 U401 ,83635,,, +374,AUT,,KFT,b,Klagenfurt,46.604167,14.541667,,0.025,,849,133,81,,,,0,L1018 U1022 20.1s,ID+6 gap,83628,, +374,G,,CBN,b,Cumbernauld (SC-NLA),55.979167,-3.958333,,0.025,,801,307,81,,,,5,L398 U395 5.8s,83619,,, +374,F,,BGC,b,Bergerac / Roumanire (24),44.8125,0.625,,0.025,,916,210,82,,,,,L398 U403 10.0s,ID+6 gap,83613,, +374,NOR,,BL,b,Forde / Bringeland,61.395833,5.791667,,0.025,,1033,358,83,,,,0,L400 U396 7.0s,ID+6 gap,83615,, +374,HNG,,BKS,b,Bks (Bek),46.8125,21.041667,,0.025,,1207,113,85,,,,5,L1022 U1023 ,ID+6 gap,83614,, +374,FIN,,S,b,Mikkeli,61.645833,27.291667,,0.025,,1641,42,89,,,,0,L400 U400 8.0s,83631,,, +374,NOR,,FLV,b,Bod/Fleinvaer (no),67.145833,13.791667,,0.025,,1720,11,90,,,,3,L379 U385 8.3s,83624,,, +374,MRC,,TAN,b,Tanger / Ibn Batouta (ttn),35.729167,-5.791667,,0.025,,2061,213,94,,,,2,L1016 U1019 3.0s,Cont. ID,83632,, +374,UKR,,DT,b,Saki,45.104167,33.625,,0.025,,2132,101,94,,,,,U1022 ,86563,,, +374,TUR,,KHM,b,Kahramanmaras LTCN (akd-kah),37.540111,36.952931,,0.025,,2869,112,102,,,,,L1020 ,ID+6 gap,83629,, +374,CAN,,SA,b,Sable Island (NS),43.9375,-60.041667,,0.025,,4847,287,121,,,,,U400 ,87170,,, +374,USA,,EE,b,Tamie Alexandria (MN),45.8125,-95.291667,,0.025,,6825,309,141,,,,992,L1051 U1030 6184s,83622,,, +374,USA,,OVO,b,North Vernon (IN),39.0625,-85.625,,0.025,,6815,298,141,,,,,U1025 ,87169,,, +374,USA,,LW,b,Lewistown (Manno) (ID),46.354167,-116.875,,0.2,,7808,322,142,,,,,,87168,,, +374,CAN,,1R,b,Kemess Mines Cassiar LAnd District (BC),56.9375,-126.708333,,0.025,,7159,334,145,,,,,U~400 ,83612,,, +374,USA,,BOD,b,Bowman (ND),46.1875,-103.458333,,0.025,,7211,314,145,,,,998,L1025 U1015 31.0s,AWOS-3,83617,, +374,USA,,FLZ,b,Fort Rucker Florala Airport (AL),31.0625,-86.291667,,0.025,,7508,292,148,,,,985,L1050 U1021 7562s,83625,,, +374,CAN,,EX,b,Rutland (Kelowna) (BC),49.9375,-119.375,,0.025,,7573,326,149,,,,,U406 10.2s,DAID,83623,, +374,USA,,HY,b,Nette Hays (KS),38.770833,-99.208333,,0.025,,7625,306,149,,,,991,L1042 U1026 6.6s,83627,,, +374,USA,,LV,b,Reiga Livermore (CA),37.6875,-121.708333,,0.05,,8838,321,156,,,,0,L1037 U1035 4.48s,83630,,, +374,USA,,EKG,b,Carlsbad (CA),33.145833,-117.125,,0.025,,9065,315,160,,,,,,87167,,, +374,AUS,,TEF,b,Telfer (WA),-21.729167,122.208333,,0.025,,13645,84,175,,,,,U1020 7s,83633,,, +374,AUS,,BML,b,Bromelton (QLD),-27.979167,152.875,,0.025,,16159,59,183,,,,990,L400 U400 8s,83616,,, +374,AUS,,WLG,b,Walgett (NSW),-30.020833,148.125,,0.025,,16047,67,183,,,,,L400 U400 8s,83637,,, +374,AUS,,WJS,b,Wee Jasper (NSW),-35.270833,148.625,,0.025,,16504,73,184,,,,,L400 U400 9s,83636,,, +374,AUS,,TTR,b,Tea Tree (TAS),-42.6875,147.291667,,0.025,,16934,86,186,,,,,L400 8s,83634,,, +374,NZL,,BU,b,Burnham,-43.604167,172.375,,0.025,,18608,53,191,,,,,7.00s,83618,,, +374.5,I,,ANC,b,Ancona (an),43.604167,13.458333,,0.035,,1081,148,82,,,,500,L1019 U1022 10.0s,ID+4 gap,83638,, +375,XOE,,TR,b,Phillips / Tor E Platform,56.645833,3.291667,,0.05,,543,339,75,,,,2,L415 U416 17.8s,IDx2,83698,, +375,BEL,,OO,b,Oostende (vlg-wvl),51.1875,2.875,,0.025,,265,249,76,,,,998,L402 U401 10.0s,ID+2 gap,83683,, +375,E,,CCH,b,Calamocha (ARA-TE),40.895833,-1.291667,,0.25,,1377,208,77,,,,995,L1012 U1010 13.2s,ID+9 gap,83652,, +375,F,,BRG,b,Bourges (18),47.020833,2.291667,,0.025,,639,209,79,,,,,L1027 U1035 ,ID+ gap,83648,, +375,POL,,CHO,b,Chociwel,53.479167,15.291667,,0.025,,616,72,79,,,,998,L1016 U1018 6.6s,ID+3 gap,83654,, +375,S,,KD,b,Kristanstad / Everod,55.895833,14.041667,,0.025,,652,47,79,,,,0,L391 U390 4.0s,83674,,, +375,SUI,,GLA,b,Gland for Geneva / Cointrain (vd),46.395833,6.208333,,0.025,,636,181,79,,,,5,L399 U410 10.2s,ID+6 gap,83667,, +375,F,,CV,b,Calvi / Ste Catherine (20B),42.5625,8.791667,,0.04,,1077,170,82,,,,,L397 U401 10.0s,ID+7 gap,83658,, +375,S,,RB,b,rebro,59.145833,15.041667,,0.025,,950,31,82,,,,5,L395 U405 ,83687,,, +375,POL,,AY,b,Warzaw / Okecie / Piaseczno,52.1875,20.958333,,0.025,,991,84,83,,,,998,L1022 U1025 ,83643,,, +375,XOE,,KGA,b,Kinsale A,51.354167,-7.958333,,0.025,,991,271,83,,,,,L1020 U1020 8.3s,ID+4 gap,86566,, +375,XOE,,SNR,b,Snorre,61.4375,2.125,,0.025,,1069,348,84,,,,810,L375 6.0s,ID+2 gap,83695,, +375,BIH,,SAR,b,Sarajevo (sar),43.9375,18.458333,,0.025,,1273,131,86,,,,2,L398 U396 10.3s,ID+7 gap,83691,, +375,FIN,,FR,b,Pori / Vanhakyl (st),61.4375,21.958333,,0.025,,1398,36,87,,,,2,L408 U408 ,83664,,, +375,ISL,,VM,b,Vestmannaeyjar (sl),63.395833,-20.291667,,0.1,,1996,319,87,,,,2,L1047 U1061 7.7s,ID+3 tone,83702,, +375,TUN,,ZN,b,Tozeur / Nefta (toz),33.9375,8.041667,,0.05,,2025,176,90,,,,12,L376 U405 6.5s,ID+4 gap,83705,, +375,BUL,,R,b,Varna (vrn),43.270833,27.875,,0.025,,1873,113,92,,,,,U1020 ,ID+3.5 gap,83686,, +375,FIN,,HET,b,Enontekio / Hetta,68.4375,23.541667,,0.025,,2030,20,93,,,,0,L406 U411 8.5s,83670,,, +375,GRC,,SMO,b,Samos (neg-sam),37.6875,26.875,,0.05,,2259,127,93,,,,39,L348 U427 ,ID+5.5 gap,83694,, +375,RUS,,DB,b,Pochinok,57.729167,38.958333,,0.025,,2148,60,94,,,,,U400 ,83659,,, +375,RUS,,B,b,Krasnodar / Pashkovsky (KD),45.0625,39.208333,,0.025,,2512,95,98,,,,,,83644,,, +375,RUS,,BW,b,Balakovo (SR),51.854167,47.791667,,0.025,,2795,74,101,,,,,L373 U376 ,IDx2 + 11 gap,83651,, +375,CAN,,YZG,b,Salluit (QC),62.1875,-75.708333,,1,,4725,317,104,,,,,U412 10.4s,ID+5 tone,83704,, +375,ETH,,GN,b,Gondar (amh),12.520833,37.458333,,0.025,,5202,136,125,,,,,8.0s,83668,,, +375,GHA,,TI,b,Takoradi (wst),4.913056,-1.764722,,0.025,,5302,191,126,,,,,,3000001,,, +375,CAN,,FS,b,Fort Simpson (NT),61.770833,-121.291667,,0.28,,6541,334,128,,,,,U406 10.2s,DAID,83665,, +375,USA,,JRV,b,Morrisville / Stowe Morrisville (VT),44.5625,-72.625,,0.025,,5608,295,129,,,,,U1026 6154s,83673,,, +375,USA,,BO,b,Miltt Boston (MA),42.270833,-71.041667,,0.025,,5669,292,130,,,,990,L1056 U1040 5942s,83647,,, +375,USA,,ELM,b,Elmira (NY),42.145833,-76.958333,,0.025,,6049,295,133,,,,,,87171,,, +375,CAN,,7B,b,St. Thomas (ON),42.770833,-81.125,,0.025,,6257,298,136,,,,,U400 10.51s,DAID,83640,, +375,USA,,GL,b,Gaylord (MI),45.020833,-84.791667,,0.025,,6304,302,136,,,,995,L1022 U1017 8600s,83666,,, +375,USA,,OGM,b,Ontonagon (MI),46.854167,-89.375,,0.025,,6423,306,137,,,,,U1015 8086s,83680,,, +375,USA,,PJS,b,Henry Newport News (VA),37.145833,-76.458333,,0.025,,6394,290,137,,,,989,L1045 U1026 8314s,83684,,, +375,USA,,SH,b,Staut Staunton / Waynesboro / Harrisonburg (VA),38.1875,-78.958333,,0.025,,6472,293,138,,,,999,L1019 U1019 8600s,83693,,, +375,USA,,USE,b,Fulton Wauseon (OH),41.604167,-84.125,,0.025,,6526,299,138,,,,5,L1006 U1012 4817s,83701,,, +375,CAN,,8H,b,Saint Paul (AB),53.979167,-111.375,,0.05,,6891,324,139,,,,,U395 10.5s,DAID,83641,, +375,CAN,,BM,b,Balmoral (MB),50.145833,-97.291667,,0.025,,6578,314,139,,,,,U395 10.5s,DAID,83646,, +375,USA,,UBE,b,Cumberland (WI),45.520833,-91.958333,,0.025,,6668,307,140,,,,10,L990 U1010 4702s,83700,,, +375,USA,,RCZ,b,Roscoe Rockingham (NC),34.854167,-79.708333,,0.025,,6781,291,141,,,,5,L1050 U1022 6518s,83688,,, +375,USA,,CCY,b,Charles City (IA),43.0625,-92.625,,0.025,,6902,305,142,,,,2,L1015 U1008 6307s,83653,,, +375,CAN,,BD,b,Baildon (Moose Jaw) (SK),50.3125,-105.458333,,0.025,,6953,318,143,,,,988,L1035 U985 9.83s,DAID,83645,, +375,CAN,,YMJ,b,Moose Jaw (SK),50.3125,-105.458333,,0.025,,6953,318,143,,,,,U1048 ,87173,,, +375,USA,,LQ,b,Licol Springfield (IL),39.895833,-89.625,,0.025,,6986,301,143,,,,998,L1049 U1042 6100s,83676,,, +375,CLM,,BUN,b,Buenaventura (val),3.8125,-76.958333,,1,,9220,267,144,,,,514,L~1000 U1028 10s,83650,,, +375,USA,,AT,b,Catta Atlanta (GA),33.645833,-84.541667,,0.025,,7184,293,145,,,,,L1039 6.20s,83642,,, +375,USA,,CHT,b,Chillicothe (MO),39.770833,-93.458333,,0.025,,7218,303,145,,,,995,L1025 4.0s,83655,,, +375,USA,,VMR,b,Vermillion (SD),42.770833,-96.958333,,0.025,,7164,308,145,,,,1,L1015 U1050 5416s,83703,,, +375,USA,,DS,b,Searcy (AR),35.104167,-91.791667,,0.025,,7509,299,148,,,,995,L1042 U1030 6.03s,83660,,, +375,USA,,CP,b,Johno Casper (WY),42.895833,-106.541667,,0.025,,7649,314,149,,,,993,L1042 U1026 5.8s,83656,,, +375,CHN,,HO,b,Changwu (SX),35.1875,107.791667,,0.025,,7690,59,150,,,,,,83671,,, +375,USA,,DW,b,Owaso Tulsa (OK),36.3125,-95.875,,0.02,,7647,302,150,,,,988,L1054 U1035 6.0s,83661,,, +375,USA,,RYB,b,Raymond (MS),32.3125,-90.375,,0.025,,7658,296,150,,,,978,L991 U1000 6.1s,83690,,, +375,USA,,SPH,b,Springhill (LA),32.9375,-93.375,,0.025,,7787,298,151,,,,995,L1043 U1024 7.80s,83696,,, +375,USA,,LF,b,Laffs Lafayette (LA),30.270833,-91.875,,0.025,,7923,296,152,,,,,L1023 8600s,83675,,, +375,USA,,PSN,b,Palestine (TX),31.770833,-95.708333,,0.025,,8027,299,153,,,,995,L1023 U1019 6.8s,83685,,, +375,B,,SAT,b,Santos (SP),-23.979167,-46.291667,,0.2,,9885,227,154,,,,,,83692,,, +375,USA,,HPL,b,Hopkins Nucla (CO),38.229167,-108.541667,,0.025,,8167,312,155,,,,,,83672,,, +375,GTM,,GUA,b,Guatemala City (gut),14.604167,-90.541667,,0.05,,9196,284,157,,,,974,L1047 U948 7.1s,DA3ID,83669,, +375,USA,,EMC,b,Winnemucca (NV),40.979167,-117.875,,0.025,,8356,320,157,,,,,,83662,,, +375,MYA,,TL,b,Tachileik,20.470278,99.930556,,0.025,,8459,74,158,,,,,,22100043,,, +375,B,,BRR,b,Barreiras (BA),-12.0625,-44.958333,,0.025,,8659,231,159,,,,25,L1020 U1070 ,83649,,, +375,GTM,,TGE,b,?,14.604167,-90.541667,,0.025,,9196,284,160,,,,,,87172,,, +375,B,,MAR,b,Marlim (RJ),-22.354167,-40.125,,0.025,,9430,222,161,,,,,,86567,,, +375,THA,,RN,b,Ranong (rng),9.778611,98.583889,,0.025,,9298,82,161,,,,,,ID+2 gap3,83689,, +375,TWN,,NN,b,Hsikang (TN),23.104167,120.208333,,0.025,,9486,58,161,,,,,8s,83679,,, +375,INS,,ON,b,Medan (SU-med),3.5625,98.708333,,0.025,,9852,86,162,,,,,,slow ID+7 gap,83682,, +375,B,,CUB,b,Corumb (MS),-19.020833,-57.625,,0.025,,10027,238,163,,,,984,L1042 U1010 ,83657,,, +375,INS,,OJ,b,Hasanuddin,-5.0625,119.541667,,0.025,,12015,74,170,,,,988,L1042 U1020 10s,83681,,, +375,FSM,,TKK,b,Truk (Weno Island) (chu),7.4375,151.875,,0.025,,12626,38,172,,,,997,L1027 U1020 8.4s,83697,,, +376,HOL,,WP,b,Amsterdam / Schipol / Weesp (nho),52.3125,5.041667,,0.025,,96,284,55,,,,0,L410 U390 6.8s,83723,,, +376,D,,HAN,b,Hahn (rlp),49.979167,7.291667,,0.025,,245,165,75,,,,5,L1039 U1046 8.3s,83711,,, +376,DNK,,HP,b,Esbjerg (sdk),55.520833,8.375,,0.025,,401,18,77,,,,991,L421 U404 4.0s,83713,,, +376,F,,BS,b,Bale-Mulhouse (68),47.5625,7.541667,,0.025,,512,170,78,,,,0,L407 U401 10.4s,83710,,, +376,S,,LN,b,Hultsfred,57.479167,15.958333,,0.025,,854,42,82,,,,5,L394 U405 ,83716,,, +376,EST,,R,b,Prnu (Pae),58.479167,24.458333,,0.025,,1338,51,86,,,,,L389 U371 8.4s,IDx2,83720,, +376,POR,,BJA,b,Beja (bej),38.145833,-7.958333,,0.025,,1911,221,92,,,,0,L399 U400 6.5s,ID+2 gap,83709,, +376,CNR,,HIE,b,Valverde (STC-HI),27.8125,-17.875,,0.025,,3370,226,107,,,,9,L1012 U1012 4.4s,ID+2 gap,83712,, +376,CNR,,HR,b,Valverde (STC-HI),27.8125,-17.875,,0.025,,3370,226,107,,,,,U1020 11.0s,87175,,, +376,IRN,,SKD,b,Shahr-e Kord (cbk),32.3125,50.875,,0.025,,4181,104,115,,,,4,L1020 U1026 ,ID+5 gap,83721,, +376,NIG,,AO,b,Kano (kno),11.979167,8.541667,,0.025,,4466,177,118,,,,,,83707,,, +376,ALS,,PVQ,b,Put River Deadhorse (AK),70.229167,-148.458333,,0.26,,6262,350,125,,,,0,L1039 U1034 ,83719,,, +376,BAH,,ZIN,b,Matthew Town (Great Inagua Island),20.979167,-73.708333,,0.4,,7518,276,136,,,,988,L1050 U1027 8.3s,83725,,, +376,CAN,,YAG,b,Fort Frances (ON),48.6875,-93.541667,,0.04,,6503,310,136,,,,,U396 10.0s,DAID,83724,, +376,GLP,,MG,b,Marie-Galante (971),15.854167,-61.291667,,0.15,,7107,262,136,,,,,L6 18.0s,DAID,83717,, +376,USA,,LC,b,Pickl Columbus (OH),39.895833,-82.875,,0.049,,6583,297,136,,,,990,L1038 U1024 5930s,83715,,, +376,CAN,,4Y,b,Key Lake (SK),57.270833,-105.625,,0.025,,6378,323,137,,,,,U388 ,DAID,83706,, +376,CAN,,BI,b,Fort St. John (BC),56.270833,-120.625,,0.02,,7027,330,144,,,,,,87174,,, +376,CAN,,K2,b,Olds-Didsbury (AB),51.729167,-114.125,,0.025,,7202,324,145,,,,,U1046 10.12s,DAID,83714,, +376,USA,,BHC,b,Baxley (GA),31.729167,-82.375,,0.025,,7203,290,145,,,,998,U1019 GAs,83708,,, +376.5,I,,ORI,b,Orio al Serio (bg),45.645833,9.875,,0.025,,762,159,81,,,,500,L1015 U1021 5.8s,ID+1 gap,83727,, +376.5,J,,NA,b,Naganuma (hok),43.020833,141.625,,0.1,,8596,32,152,,,,500,L1000 U1011 5s,DAID,83726,, +377,D,,MGB,b,Mnchengladbach (nrw),51.227328,6.505003,,0.025,,98,176,55,,,,,U1008 ,83741,,, +377,XOE,,RTR,b,P11-B (De Ruyter) / Petro Canada Platform,52.354167,3.375,,0.025,,208,279,75,,,,,,83746,,, +377,F,,PNT,b,Pontivy (56),48.0625,-2.791667,,0.025,,795,239,81,,,,,U5 19.8s,DAID,83744,, +377,S,,KN,b,Norrkping / Kungsangen,58.604167,17.375,,0.025,,999,39,83,,,,0,L403 U407 ,83737,,, +377,S,,SM,b,Mora / Siljan,60.895833,14.375,,0.025,,1091,23,84,,,,2,L398 U400 ,83747,,, +377,SRB,,BLC,b,Blace (Srb-top),43.246528,21.367417,,0.025,,1487,126,88,,,,5,L885 U940 ,ID+10 gap,83729,, +377,FIN,,B,b,Kuopio,62.979167,27.791667,,0.025,,1742,38,90,,,,,,83728,,, +377,S,,OL,b,Lulea / Kallax,65.604167,21.958333,,0.025,,1736,24,90,,,,,,83742,,, +377,FIN,,PA,b,Rovaniemi / Niskaper,66.479167,25.625,,0.025,,1917,26,92,,,,0,L404 U409 8.0s,83743,,, +377,ISL,,GA,b,Husavik / Gardur,65.895833,-17.458333,,0.025,,2028,328,93,,,,,U1020 ,83735,,, +377,GRL,,DA,b,Kulusuk (Tunu) (sms-taq),65.5625,-37.208333,,0.025,,2838,319,101,,,,5,L400 U390 8.3s,83732,,, +377,CAN,,YRR,b,Greely (Ottawa) (ON),45.270833,-75.541667,,0.025,,5737,297,130,,,,997,L410 U394 10.4s,DAID,83750,, +377,USA,,HWS,b,Central Wisconsin Mosinee (WI),44.770833,-89.708333,,0.025,,6603,305,139,,,,,U1010 ,83736,,, +377,USA,,MCX,b,White Co Monticello (IN),40.729167,-86.791667,,0.025,,6753,300,141,,,,,U1060 ,83740,,, +377,USA,,CWI,b,Clinton (IA),41.8125,-90.291667,,0.025,,6871,303,142,,,,19,L994 U1031 5.6s,83731,,, +377,USA,,AIZ,b,Kaiser Kaiser / Lake Ozark (MO),38.104167,-92.541667,,0.025,,7303,301,146,,,,,U1010 6.8s,87176,,, +377,USA,,BUB,b,Burwell (NE),41.770833,-99.125,,0.025,,7365,308,147,,,,2,L1022 U1030 7.4s,83730,,, +377,USA,,EHA,b,Elkhart (KS),37.020833,-101.875,,0.025,,7923,307,152,,,,999,L1025 U1025 4.5s,83733,,, +377,AUS,,VRD,b,Victoria River Downs (NT),-16.395833,131.041667,,0.025,,13776,72,175,,,,,L1020 U1020 10s,83748,,, +377,AUS,,LEO,b,Leonora (WA),-28.895833,121.291667,,0.025,,14168,90,177,,,,,U1001 ,83738,,, +377,AUS,,WP,b,Weipa (QLD),-12.645833,141.875,,0.025,,14107,59,177,,,,,,83749,,, +377,AUS,,MBY,b,Modbury (SA),-34.8125,138.708333,,0.025,,15809,82,182,,,,,U425 10s,83739,,, +377,AUS,,ROM,b,Roma (QLD),-26.5625,148.791667,,0.025,,15790,62,182,,,,,L400 U400 8s,83745,,, +377,AUS,,EPP,b,Epping - Melbourne (VIC),-37.6875,145.041667,,0.025,,16447,80,184,,,,991,L417 U441 10s,83734,,, +377.5,OCE,,MO,b,Teavaro (Moorea Island) (Iles du Vent) (idv),-17.479167,-149.791667,,0.1,,15637,323,176,,,,-377.5,18.0s,DAID,83751,, +378,NOR,,RSY,b,Stavanger / Sola / Rennesoy (ro),59.145833,5.625,,0.025,,784,357,81,,,,2,L380 U382 8.4s,83768,,, +378,HRV,,TRI,b,Split / Trogir (st),43.495833,16.204167,,0.05,,1203,139,82,,,,0,L1011 U1009 7.4s,ID+6 tone,83772,, +378,IRL,,KLY,b,Killiney for Dublin (D),53.270833,-6.125,,0.025,,853,284,82,,,,5,L413 U416 7.2s,ID+3 gap,83760,, +378,F,,LU,b,Le Luc / Le Cannet (83),43.395833,6.541667,,0.025,,969,179,83,,,,,L4 18.8s,DAID,83762,, +378,ROU,,TA,b,Timisoara / Giarmata (TM),45.854167,21.208333,,0.025,,1281,117,86,,,,6,L995 U1020 ,ID+2 gap,83769,, +378,S,,OS,b,Sundsvall / Hrnsand,62.479167,17.458333,,0.025,,1326,25,86,,,,2,L400 U403 ,ID+2 gap,83765,, +378,FIN,,D,b,Kauhava / Menp,63.145833,23.041667,,0.025,,1567,32,89,,,,,L400 ,83755,,, +378,ROU,,ZZ,b,Constanta / Mihail Kogalniceanu (CT),44.4375,28.458333,,0.025,,1831,109,91,,,,,U1055 5.6s,ID+3 gap,83775,, +378,NOR,,HTK,b,Sorkjosen / Hestvik,69.9375,21.041667,,0.025,,2120,15,94,,,,,,83758,,, +378,GRC,,MLO,b,Milos (seg-kik),36.6875,24.458333,,0.025,,2223,133,95,,,,962,L420 U345 ,ID+3.5 gap,83763,, +378,CAN,,UX,b,Hall Beach (NU),68.770833,-81.291667,,0.4,,4657,327,108,,,,999,L407 U407 10372s,DAID,83773,, +378,CAN,,RJ,b,Roberval (QC),48.5625,-72.291667,,0.5,,5319,299,113,,,,0,L410 U400 10.2s,DAID,83767,, +378,CAN,,HO,b,Hopedale (NL),55.4375,-60.208333,,0.025,,4224,302,115,,,,0,U402 10392s,DAID,83757,, +378,CAN,,ZFA,b,Faro (YT),62.229167,-133.375,,0.025,,6819,340,141,,,,,U419 10.0s,83774,,, +378,USA,,TGC,b,Gibson Trenton (TN),35.9375,-88.875,,0.025,,7264,297,146,,,,0,L1029 U1030 5.9s,83770,,, +378,USA,,LXV,b,Leadville (CO),39.4375,-106.875,,0.1,,7974,312,147,,,,,L1064 U1035 ,87177,,, +378,CAN,,AP,b,Active Pass (Mayne Island) (BC),48.854167,-123.291667,,0.025,,7823,327,151,,,,,U405 9.5s,DAID,83752,, +378,MWI,,LH,b,Lilongwe (lgw),-13.854167,33.875,,0.025,,7797,152,151,,,,2,L1018 U1022 7.82s,83761,,, +378,USA,,CN,b,Leroi Waco (TX),31.729167,-97.041667,,0.025,,8110,300,154,,,,997,L1022 U1016 8.6s,83753,,, +378,USA,,OT,b,Emire North Bend (OR),43.395833,-124.291667,,0.025,,8390,325,157,,,,979,L1055 U1014 7.2s,83766,,, +378,USA,,CPM,b,Compton (CA),33.895833,-118.208333,,0.025,,9045,316,160,,,,1,L1020 U1022 8.2s,83754,,, +378,NZL,,HL,b,Henley,-45.9375,170.125,,0.1,,18648,66,186,,,,,U1020 6s,83756,,, +378.5,G,,NN,b,Northampton / Sywell (EN-NHA),52.3125,-0.791667,,0.025,,491,275,78,,,,500,L400 U401 10.0s,ID+7 gap,83776,, +379,NOR,,REK,b,Reksten,61.5625,4.875,,0.1,,1055,356,78,,,,5,L395 U406 9.0s,83794,,, +379,F,,EB,b,St Etienne / Boutheon (42),45.645833,4.291667,,0.025,,735,193,80,,,,,L400 U406 10.0s,ID+8 gap,83781,, +379,I,,VEN,b,Venezia (ve),45.4375,12.291667,,0.025,,857,148,82,,,,2,L1022 U1027 ,ID+4 gap,83801,, +379,I,,PIS,b,Pisa (pi),43.604167,10.291667,,0.025,,989,162,83,,,,0,L1016 U1024 ,ID+3 gap,83791,, +379,POL,,KRA,b,Krakw / Balice (MP),50.0625,19.791667,,0.025,,960,98,83,,,,5,L1014 U990 ,ID+3 gap,83786,, +379,I,,LAT,b,Latina (lt),41.520833,12.958333,,0.025,,1277,155,86,,,,3,L1066 U1019 ,ID+3 gap,83787,, +379,ISL,,SA,b,Reykjavk/Skagi (ho),64.3125,-21.958333,,0.025,,2114,321,94,,,,,4.1s,83796,,, +379,CAN,,CM,b,Channel-Port Aux Basques (NL),47.5625,-59.208333,,0.025,,4571,291,119,,,,,,87178,,, +379,USA,,GKQ,b,Linden, Newark (NJ),40.6875,-74.208333,,0.4,,5984,292,121,,,,,L1040 ,87180,, +379,CAN,,YBE,b,Uranium City (SK),59.5625,-108.541667,,0.5,,6304,327,123,,,,,U404 9.8s,ID+5 tone,83802,, +379,ALS,,IWW,b,Wildwood Kenai (AK),60.604167,-151.208333,,1,,7324,348,130,,,,998,L1043 U1037 ,83785,,, +379,USA,,IVV,b,White River Lebanon (Hartland, VT) (NH),43.5625,-72.458333,,0.025,,5667,294,130,,,,988,L1035 U1005 ,83784,, +379,CAN,,YPQ,b,Peterborough (ON),44.229167,-78.458333,,0.025,,5988,298,133,,,,1,L387 U387 10.5s,DAID,83803,, +379,USA,,TL,b,Wakul Tallahassee (FL),30.3125,-84.375,,0.4,,7448,290,135,,,,991,L1035 U1018 6.3s,83798,,, +379,USA,,FZI,b,Fostoria (OH),41.1875,-83.375,,0.025,,6513,298,138,,,,,U1011 6773s,83783,,, +379,USA,,CNQ,b,Callahan Roanoke (VA),37.270833,-80.125,,0.025,,6617,293,139,,,,998,L1022 U1017 ,83779,,, +379,USA,,DL,b,Pykla Duluth (MN),46.854167,-92.375,,0.025,,6586,308,139,,,,983,L1057 U1019 5904s,TWEB,83780,, +379,USA,,MDE,b,Madeira Cincinnati (OH),37.229167,-80.375,,0.025,,6636,293,139,,,,2,L1020 U1025 8.6s,83789,,, +379,CAN,,ZEG,b,Nisku (Edmonton Intl) (AB),53.395833,-113.458333,,0.05,,7025,325,140,,,,,U396 10462s,DAID,83804,, +379,USA,,ACZ,b,Pendy Wallace (NC),34.729167,-78.041667,,0.025,,6683,289,140,,,,998,L1019 U1008 6349s,83777,,, +379,USA,,UG,b,Wauke Waukegan (Chicago) (IL),42.479167,-87.791667,,0.025,,6673,302,140,,,,0,L1019 U1023 8600s,83799,,, +379,USA,,OW,b,Tonna Owatonna (MN),44.0625,-93.125,,0.025,,6849,306,141,,,,983,L1055 U1037 6.1s,83790,,, +379,USA,,BRA,b,Broad River Asheville (NC),35.270833,-82.458333,,0.025,,6922,293,142,,,,0,L1042 U1031 7980s,83778,,, +379,CAN,,G,b,Edmonton (AB),53.395833,-113.458333,,0.025,,7025,325,143,,,,,,87179,,, +379,USA,,PSH,b,Parshall (ND),47.9375,-102.125,,0.025,,6997,314,143,,,,,U1030 ,83792,,, +379,USA,,ML,b,Milledgeville (GA),33.145833,-83.208333,,0.025,,7141,292,144,,,,,,87182,,, +379,USA,,UNE,b,Union County Creston (IA),40.9375,-94.375,,0.025,,7174,305,145,,,,997,L1037 U1035 4.34s,83800,,, +379,USA,,FSK,b,Fort Scott (KS),37.8125,-94.791667,,0.025,,7458,303,148,,,,29,L971 U1068 7188s,83782,,, +379,USA,,RUE,b,Russellville (AR),35.270833,-93.125,,0.025,,7575,300,149,,,,2,L1015 U1018 5.74s,83795,,, +379,USA,,LRR,b,Allen Parish Oakdale (LA),30.645833,-92.708333,,0.025,,7942,296,152,,,,991,L1043 U1027 7.9s,83788,,, +379,USA,,HS,b,Marbe Houston (TX),30.0625,-95.375,,0.025,,8154,298,155,,,,,L1010 ,87181,,, +379,USA,,PUU,b,Pulliam Flagstaff (AZ),35.145833,-111.708333,,0.049,,8610,312,155,,,,981,L1052 U1014 8.0s,83793,,, +379,USA,,SF,b,Brijj San Francisco (CA),37.5625,-122.291667,,0.025,,8876,321,159,,,,990,L1050 U1030 6.0s,83797,,, +380,XOE,,UTS,b,P-9A (Horizon) / Unocal Platform,52.5625,3.708333,,0.025,,190,286,75,,,,,,83845,,, +380,XOE,,ULA,b,Ula / BP Platform,57.104167,2.875,,0.05,,600,339,76,,,,5,L408 U405 7.3s,83843,,, +380,F,,HO,b,Colmar / Houssen (68),48.145833,7.375,,0.025,,446,171,77,,,,,L401 U406 10.1s,83827,,, +380,D,,FLB,b,Flensburg / Wielenberg (shs),54.750419,9.492075,,0.015,,358,34,79,,,,38,L970 U1045 ,ID+6 gap,83822,, +380,G,,WFD,b,Manchester / Woodford (EN-CHE),53.354167,-2.125,,0.025,,591,287,79,,,,0,L400 U400 10.0s,83847,,, +380,E,,CAC,b,Cceres (EXT-CC),39.520833,-6.458333,,0.25,,1713,220,80,,,,3,L1020 U1030 6.70s,ID+2 gap,83811,, +380,S,,LF,b,Ronneby / Kallinge,56.1875,15.208333,,0.025,,730,48,80,,,,2,L398 U404 ,83829,,, +380,F,,RQ,b,Quimper / Pluguffan (29),47.979167,-3.958333,,0.025,,870,242,82,,,,,U2 20.0s,DAID,83837,, +380,G,,CBL,b,Campbeltown (SC-AGB),55.4375,-5.708333,,0.025,,877,300,82,,,,986,L422 U393 6.5s,83812,,, +380,S,,F,b,Falkping,58.6875,13.625,,0.025,,861,29,82,,,,995,L405 U395 ,83819,,, +380,NOR,,FLR,b,Trondheim / Vaernes / Flornes (st),63.479167,11.375,,0.05,,1297,11,83,,,,6,L389 U389 ,83823,,, +380,E,,VNV,b,Vilanova i la Geltr (CAT-B),41.229167,1.708333,,0.025,,1261,198,86,,,,0,L1023 U1032 ,ID+6 gap,83846,, +380,SRB,,KN,b,Beograd/Krnjeevci (Voj-srm),44.895833,20.125,,0.025,,1287,123,86,,,,998,L1020 U1015 ,ID+8 gap,83828,, +380,FIN,,PHS,b,Pyhsalmi,63.270833,25.875,,0.025,,1683,35,90,,,,2,L406 U410 8.0s,83836,,, +380,UKR,,MH,b,Voznesensk,47.520833,31.291667,,0.025,,1846,96,91,,,,,,83831,,, +380,RUS,,NL,b,Moskva/Sheremetyevo (MV),55.9375,37.291667,,0.025,,2043,66,93,,,,,U1020 ,83833,,, +380,FIN,,TOL,b,Ivalo / Tolo,68.5625,27.208333,,0.025,,2134,23,94,,,,,L380 U380 ,83839,,, +380,RUS,,BW,b,Moskva/Sheremetyevo (MV),55.979167,37.541667,,0.025,,2059,66,94,,,,,U1012 ,83810,,, +380,TUR,,ES,b,Istanbul / Atatrk (mam-ist),40.979167,28.791667,,0.025,,2098,117,94,,,,0,L1020 ,83818,,, +380,MRC,,CNL,b,Kenitra,34.270833,-6.625,,0.025,,2240,213,95,,,,3,L1013 U1014 7.83s,ID+4 gap,83814,, +380,UKR,,A,b,Mariupol' (DO),47.0625,37.458333,,0.025,,2288,92,96,,,,,,83805,,, +380,RUS,,ZCH,b,Kryazh,53.104167,50.125,,0.025,,2908,70,102,,,,,,83850,,, +380,AZR,,FIL,b,Horta (fai),38.520833,-28.708333,,0.025,,3092,255,104,,,,2,L1017 U1020 13.5s,ID+10 gap,83821,, +380,RUS,,DT,b,Dyurtyuli,55.479167,54.875,,0.025,,3140,64,104,,,,,,83817,,, +380,IRN,,MM,b,Tehran / Mehrabad (thr),35.6875,51.375,,0.025,,3956,99,113,,,,,,83832,,, +380,RUS,,SCH,b,Tomsk (TO),56.4375,85.291667,,0.025,,4858,52,122,,,,,15.0s,IDx2 + 2.5 gap,83838,, +380,CAN,,UB,b,Tuktoyaktuk (NT),69.4375,-133.041667,,0.025,,6105,344,134,,,,,U404 10s,DAID,87183,, +380,CAN,,YUB,b,Tuktoyaktuk (NT),69.4375,-133.041667,,0.025,,6105,344,134,,,,,U403 10511s,DAID,83849,, +380,USA,,UMB,b,Culvr Milledgeville (GA),33.145833,-83.125,,0.025,,7136,292,144,,,,995,L1017 U1006 5.3s,83844,,, +380,USA,,GC,b,Deryk Gillette (WY),44.270833,-105.541667,,0.05,,7479,314,145,,,,979,L1058 U1045 6.0s,83824,,, +380,USA,,UBX,b,Cuba (MO),38.0625,-91.458333,,0.025,,7244,301,145,,,,,U1061 6.95s,83841,,, +380,CUB,,UCY,b,Cayabo Cayajabos (pr),22.854167,-82.875,,0.1,,7975,284,147,,,,844,L804 U812 7.2s,83842,,, +380,USA,,GR,b,Sancy Grand Island (NE),40.854167,-98.291667,,0.025,,7397,307,147,,,,0,L1019 U1020 8600s,83825,,, +380,USA,,ALU,b,Alliance (NE),42.0625,-102.791667,,0.025,,7533,311,148,,,,975,L1038 U1010 6.2s,83806,,, +380,CHN,,OB,b,Beijing / Capital / Huairou (BJ),40.270833,116.541667,,0.025,,7737,50,150,,,,,,IDx2,83834,, +380,USA,,OEL,b,Oakley (KS),39.104167,-100.791667,,0.025,,7683,307,150,,,,36,L955 U1022 6.0s,83835,,, +380,B,,BKO,b,Boko (SC),-27.604167,-48.625,,0.2,,10350,227,155,,,,,U1066 8.36s,83808,,, +380,USA,,BBD,b,Brady (TX),31.1875,-99.291667,,0.025,,8289,301,156,,,,983,L1055 U1019 6.0s,83807,,, +380,B,,BRU,b,Bauru (SP),-22.3125,-49.125,,0.1,,9868,230,157,,,,,,83809,,, +380,CTR,,COL,b,Barra Del Colorado (Limon) (lmn),10.770833,-83.541667,,0.025,,9061,277,160,,,,998,L962 U988 7253s,DA3ID,83815,, +380,TWN,,YU,b,Hualien (HL),24.020833,121.625,,0.025,,9483,56,161,,,,,8ss,83848,,, +380,B,,CIA,b,Cuiab (MT),-15.645833,-56.125,,0.025,,9626,239,162,,,,,L1062 7.2s,83813,,, +380,INS,,FA,b,Torea,-2.9375,132.208333,,0.025,,12624,62,172,,,,,L1020 U1020 9s,83820,,, +380,AUS,,GV,b,Gove (NT),-12.270833,136.791667,,0.025,,13768,64,175,,,,,L400 U400 8.5s,83826,,, +380,AUS,,COR,b,Corowa (NSW),-35.979167,146.375,,0.12,,16410,76,177,,,,,L400 U400 8s,83816,,, +380,AUS,,MC,b,Maroochydore (QLD),-26.604167,153.125,,0.025,,16050,57,183,,,,3,L400 U400 8.13s,83830,,, +380,AUS,,SU,b,Sunshine Coast (QLD),-26.604167,153.125,,0.025,,16050,57,183,,,,,L400 U400 8s,86570,,, +381,E,,LCZ,b,Murcia / San Javier / Los Alcazares (MUR-MU),37.6875,-0.958333,,0.2,,1703,203,81,,,,990,L1039 U1020 ,ID+15 gap,83855,, +381,NOR,,RG,b,Rygge / Tune,59.3125,11.041667,,0.025,,851,18,81,,,,998,L404 U396 ,83861,,, +381,HNG,,R,b,Budapest/Ferenc Liszt Int. (Bud),47.4375,19.291667,,0.025,,1059,114,84,,,,1,L1020 U1026 ,Cont. ID,83859,, +381,I,,AQP,b,L'Aquila / Preturo (aq),42.395833,13.291667,,0.025,,1197,152,85,,,,,L1027 U1020 ,86573,,, +381,BIH,,AS,b,Sarajevo (sar),43.8125,18.291667,,0.025,,1275,132,86,,,,,L1031 U1032 ,ID+8 gap,86574,, +381,FIN,,ESP,b,Helsinki / Vantaa / Espoo,60.229167,24.791667,,0.025,,1444,44,87,,,,2,L406 U409 ,ID+3 gap,83853,, +381,ROU,,SIB,b,Sibiu / Turnisor (SB),45.770833,24.125,,0.025,,1468,112,88,,,,974,L1150 U707 ,ID+9 gap,83862,, +381,RUS,,AG,b,Agoy (KD),44.145833,39.041667,,0.025,,2553,97,99,,,,0,L1024 U1020 ,IDx2 + 10 gap,83851,, +381,TUR,,KHD,b,Kahta / Adiyaman (gda-ady),37.729167,38.458333,,0.025,,2951,110,102,,,,,L1020 ,Cont. ID,83854,, +381,USA,,MNI,b,Manning (SC),33.604167,-80.208333,,0.025,,6912,290,142,,,,2,U1023 5595s,83857,,, +381,USA,,MSA,b,Mount Pleasant (TX),33.145833,-94.958333,,0.025,,7864,300,152,,,,,U1020 ,83858,,, +381,KOR,,RE,b,Pyeongtaek (gye),36.979167,127.041667,,0.05,,8563,45,155,,,,,,83860,,, +381,CHN,,LM,b,Ningbo/Lishe,29.8125,121.458333,,0.025,,8940,53,159,,,,,,86576,,, +381,J,,JC,b,Hachinohe (toh-aom),40.5625,141.458333,,0.025,,8835,33,159,,,,,U1021 29.5s,DA2ID,86575,, +381,PRG,,MCL,b,Mariscal Estigarribia (bqn),-22.020833,-60.625,,0.025,,10478,239,165,,,,,L1027 ,83856,,, +381.5,USA,,SJX,b,St James Beaver Island (MI),45.6875,-85.541667,,0.025,,6297,303,136,,,,-381.5,U1029 7489s,86577,,, +382,AUT,,SBG,b,Salzburg / Oberndorf,47.979167,12.875,,0.05,,651,132,76,,,,0,L1020 U1019 10.0s,ID+6 gap,83892,, +382,D,,FW,b,Frankfurt / Raunheim (hes),50.020833,8.458333,,0.025,,273,148,76,,,,964,L1056 U982 ,83877,,, +382,G,,SLP,b,Sleap (EN-SHP),52.854167,-2.791667,,0.025,,628,281,79,,,,5,L400 U405 6.2s,83894,,, +382,I,,GAZ,b,Gazoldo degli Ippoliti (mn),45.1875,10.625,,0.025,,829,156,81,,,,9,L1031 U1039 ,ID+3 gap,83879,, +382,F,,CAA,b,Cazaux (33),44.5625,-1.125,,0.025,,1006,216,83,,,,,U5 18.5s,DAID,83873,, +382,I,,ALG,b,Alghero (ss),40.645833,8.291667,,0.04,,1283,173,84,,,,,U1020 ,86578,,, +382,FIN,,IJ,b,Ilmajoki (ep),62.674444,22.868889,,0.025,,1525,33,88,,,,0,L409 U405,83881,,, +382,GRC,,EGN,b,Aegina (Athnai) (att-pir),37.770833,23.458333,,0.04,,2073,134,92,,,,10,L383 U405 ,ID+5 gap,83876,, +382,ISL,,MN,b,Mynes,65.3125,-14.375,,0.025,,1878,329,92,,,,,,83888,,, +382,POR,,LAR,b,Arruda (lis),38.979167,-9.041667,,0.025,,1884,225,92,,,,2,L1020 U1017 8.34s,ID+5 gap,83886,, +382,ISL,,SU,b,Stykkishlmur (ve),65.0625,-22.791667,,0.025,,2187,322,95,,,,,6.0s,83896,,, +382,GRL,,SF,b,Sondrostrom / Kangerlussuaq (qqa-sis),66.979167,-50.958333,,0.025,,3463,320,108,,,,0,L398 U400 8.4s,83893,,, +382,CAN,,YPL,b,Pickle Lake (ON),51.4375,-90.208333,,1,,6120,311,118,,,,996,L400 U408 9.8s,DAID,83905,, +382,CAN,,YSR,b,Nanisivik (NU),72.979167,-84.541667,,0.025,,4589,334,119,,,,,U408 10.4s,DAID,83907,, +382,CAN,,7P,b,Iroquois Falls (ON),48.729167,-80.708333,,0.1,,5799,303,125,,,,,U1025 8948s,DAID,83865,, +382,CAN,,EA,b,Empress (AB),50.9375,-109.958333,,1,,7099,321,128,,,,,,87184,,, +382,USA,,BT,b,Herro Burlington (VT),44.520833,-73.208333,,0.025,,5647,295,129,,,,997,L398 U400 6.24s,83872,,, +382,USA,,LQ,b,Lyndy Boston (MA),42.4375,-70.958333,,0.025,,5652,292,129,,,,2,L1020 5504s,83887,,, +382,CAN,,XU,b,London (ON),43.104167,-81.208333,,0.05,,6237,298,132,,,,997,L398 U389 10221s,DAID,83903,, +382,TRD,,TRI,b,Piarco Port of Spain (pos),10.604167,-61.458333,,1.2,,7575,259,132,,,,999,L1012 U1016 8125s,DAID,83897,, +382,CAN,,2Z,b,Diavik (Diavik Mine Site) (NT),64.520833,-110.291667,,0.025,,5958,331,133,,,,,U~400 ,83864,,, +382,CAN,,YE,b,Fort Nelson (BC),58.8125,-122.708333,,0.1,,6858,333,136,,,,,U399 10.2s,DAID,83904,, +382,USA,,BHU,b,Benje Latrobe (PA),40.395833,-79.291667,,0.025,,6324,295,136,,,,996,L1045 U1033 6862s,83870,,, +382,USA,,IQK,b,Louisa (VA),38.020833,-77.875,,0.025,,6416,292,137,,,,998,L1046 U1041 ,83882,,, +382,USA,,IRS,b,Sturgis (MI),41.8125,-85.458333,,0.025,,6589,300,139,,,,7,L1002 U1020 6906s,83883,,, +382,USA,,PCZ,b,Waupaca (WI),44.3125,-89.041667,,0.025,,6601,304,139,,,,991,L1030 U1012 7499s,83890,,, +382,USA,,RD,b,Greon Raleigh / Durham (NC),35.8125,-78.875,,0.025,,6652,291,139,,,,,,83891,,, +382,USA,,AL,b,Price Waterloo (IA),42.604167,-92.541667,,0.025,,6934,305,142,,,,993,L1050 U1030 5.9s,83866,,, +382,USA,,BM,b,Claye Bloomington (IN),39.0625,-86.625,,0.025,,6875,298,142,,,,998,L403 U405 8600s,83871,,, +382,USA,,VCY,b,Valley City (ND),46.895833,-97.875,,0.023,,6871,311,142,,,,114,L778 U1006 6864s,83899,,, +382,USA,,SP,b,Huskk Springfield (IL),39.770833,-89.791667,,0.025,,7006,301,143,,,,974,L1041 U1025 6.2s,83895,,, +382,ALS,,JNR,b,North River Unalakleet (AK),63.895833,-160.791667,,0.025,,7068,354,144,,,,999,L1032 U1029 ,83884,,, +382,USA,,APT,b,Jasper (TN),35.0625,-85.625,,0.025,,7137,295,144,,,,39,L944 U1027 7.9s,83868,,, +382,USA,,LRJ,b,Le Mars (IA),42.770833,-96.208333,,0.025,,7123,307,144,,,,,,87185,,, +382,USA,,MW,b,Jonny Marion (IL),37.854167,-88.958333,,0.025,,7113,299,144,,,,2,L1014 U1025 8.6s,83889,,, +382,USA,,DER,b,Alexander City (AL),32.895833,-85.958333,,0.025,,7335,293,146,,,,,U1042 4351s,83875,,, +382,USA,,XGV,b,Fadette (Fort Rucker) (AL),31.020833,-85.541667,,0.025,,7464,292,148,,,,2,L1030 U1046 8148s,83902,,, +382,TRD,,POS,b,Port of Spain (pos),10.604167,-61.458333,,0.025,,7575,259,149,,,,,L1050 U1062 10s,DAID,87186,, +382,USA,,AW,b,Waton Arlington (WA),48.0625,-122.125,,0.05,,7856,326,149,,,,975,L1052 U1014 6.0s,83869,,, +382,CUB,,UCC,b,Jardines del Ray (ca),22.479167,-78.291667,,0.025,,7701,280,150,,,,14,L1161 U1215 18792s,83898,,, +382,CUB,,UPA,b,Pueblo Punta Alegre (ca),22.354167,-78.791667,,0.025,,7745,281,150,,,,,,87187,,, +382,USA,,VKS,b,Vicksburg (MS),32.229167,-90.958333,,0.025,,7701,296,150,,,,988,L1028 U1005 6.4s,83900,,, +382,CAN,,YPW,b,Powell River (BC),49.854167,-124.541667,,0.025,,7772,329,151,,,,,U397 10.5s,DAID,83906,, +382,USA,,CR,b,Conor Chorpus Christi (TX),27.854167,-97.541667,,0.025,,8478,298,158,,,,4,L1030 U1039 4.8s,83874,,, +382,J,,KI,b,Kikai (kyu-kag),28.3125,129.958333,,0.025,,9526,47,161,,,,,,83885,,, +382,MEX,,GRN,b,Guerrero Negro (Baja California) (bcs),28.020833,-114.041667,,0.025,,9395,310,161,,,,17,L1016 U1050 10.4s,DBID,83880,, +382,REU,,FXR,b,Saint Denis / Gillot (974),-20.895833,55.541667,,0.025,,9408,135,161,,,,,,83878,,, +382,NZL,,WU,b,Wanganui (MWT),-39.979167,175.041667,,0.13,,18410,37,184,,,,0,L1020 U1020 4s,83901,,, +383,G,,ALD,b,Alderney (GUE),49.729167,-2.208333,,0.05,,659,250,77,,,,10,L394 U411 5.5s,83908,,, +383,G,,SHD,b,Scotstown Head (SC-ABS),57.5625,-1.791667,,0.025,,801,322,81,,,,995,L407 U407 5.5s,83926,,, +383,POL,,GDB,b,Gdansk / Rebiechowo,54.354167,18.541667,,0.025,,844,68,81,,,,,L1020 U1027 ,ID+3 gap,86581,, +383,BIH,,NA,b,Banja Luka (srp),44.9375,17.291667,,0.04,,1128,131,82,,,,19,L986 U1026 ,ID+7 tone,83918,, +383,F,,MAR,b,Marseille / Provence (13),43.479167,5.125,,0.025,,964,186,83,,,,,U22 19.5s,ID+15 tone,83916,, +383,S,,ERK,b,Erken,59.895833,18.375,,0.025,,1138,36,84,,,,998,L404 U401 ,83912,,, +383,HNG,,EN,b,Debrecen (HaB),47.520833,21.708333,,0.025,,1207,109,85,,,,996,L1046 U1036 3.0s,ID+2 gap,83911,, +383,ALG,,TIO,b,Timimoun (1),29.229167,0.291667,,0.1,,2594,194,93,,,,,U4 ,ID+9 tone,83927,, +383,CAN,,D9,b,Huntsville (Deerhurst Resort) (ON),45.354167,-79.125,,0.025,,5947,299,132,,,,,U415 ,87189,,, +383,USA,,BZK,b,Brookfield (MO),39.770833,-93.125,,0.025,,7199,303,145,,,,,,87188,,, +383,USA,,PGR,b,Paragould (AR),36.0625,-90.541667,,0.025,,7355,299,147,,,,996,L1026 U1019 6.42s,83922,,, +383,THA,,NP,b,Nakhon Phanom (npn),17.395833,104.625,,0.4,,9034,73,148,,,,,,83919,,, +383,USA,,CNP,b,Chappell (NE),41.0625,-102.458333,,0.025,,7602,310,149,,,,2,L1015 U1021 6478s,83910,,, +383,USA,,EQA,b,El Dorado (KS),37.770833,-96.791667,,0.025,,7576,304,149,,,,,L1020 U1014 ,87190,,, +383,THA,,NT,b,Narathiwat (nwt),6.520833,101.708333,,0.4,,9795,82,150,,,,,,2xID+44 gap,83920,, +383,USA,,LB,b,Panck Liberal (KS),36.979167,-100.958333,,0.025,,7877,306,152,,,,998,L1018 U1022 8600s,83915,,, +383,USA,,MM,b,Minne Mc Minnville Municipal Airport (OR),45.229167,-123.041667,,0.05,,8163,325,152,,,,978,L1065 U1020 6.9s,83917,,, +383,USA,,PI,b,Tyhee Pocatello (ID),42.979167,-112.541667,,0.025,,7929,317,152,,,,983,L1055 U1030 6.0s,83923,,, +383,AUS,,WLU,b,Wiluna (WA),-26.604167,120.208333,,0.025,,13910,89,176,,,,,U400 9s,83928,,, +383,AUS,,HM,b,Hamilton Island (QLD),-20.354167,148.958333,,0.025,,15236,57,180,,,,,L1020 U1020 8s,83913,,, +383,AUS,,SGE,b,St. George (QLD),-28.0625,148.625,,0.049,,15911,64,180,,,,,U1020 9s,83925,,, +383,AUS,,WON,b,Wonthaggi (VIC),-38.479167,145.625,,0.07,,16542,80,180,,,,,U425 10s,83929,,, +383,AUS,,PAG,b,Port Augusta (SA),-32.520833,137.708333,,0.025,,15567,80,181,,,,,L1020 U1020 8s,83921,,, +383,AUS,,BTH,b,Bathurst (NSW),-33.395833,149.625,,0.025,,16421,69,184,,,,,L400 U400 8s,83909,,, +383.5,HOL,,GUL,b,Gulpen (lim),50.8125,5.875,,0.015,,149,195,76,,,,529,L400 U400 8.1s,83931,,, +383.5,G,,LE,b,Leicester (EN-LEI),52.604167,-1.041667,,0.025,,509,279,78,,,,493,L415 U415 7.6s,83932,,, +383.5,TUR,,ARF,b,Arifiye / Topel (mam-koc),40.729167,30.125,,0.025,,2199,116,95,,,,502,L1020 U1026 ,Cont. ID,83930,, +384,F,,AT,b,Annecy / Meythet (74),45.854167,6.041667,,0.025,,696,182,80,,,,,L400 U403 10.0s,ID+9 gap,83936,, +384,S,,NS,b,Skvde,58.229167,14.041667,,0.025,,834,32,81,,,,945,L453 U344 ,83943,,, +384,IRL,,SLG,b,Sligo (SO),54.279167,-8.6,,0.025,,1026,290,83,,,,2,L405 U410 8.0s,83949,,, +384,S,,TY,b,Torsby / Fryklanda,60.104167,13.041667,,0.025,,978,22,83,,,,993,L408 U392 ,83950,,, +384,F,,PMR,b,Pamiers / Les Pujols (09),43.104167,1.625,,0.025,,1063,202,84,,,,,L20 ,ID+18 tone,83946,, +384,E,,ADX,b,Andratx (PMI) (BAL-ML),39.5625,2.375,,0.025,,1429,194,87,,,,985,L1011 U1025 11.4s,ID+4 gap,83934,, +384,ROU,,F,b,Iasi (IS),47.1875,27.625,,0.025,,1615,101,89,,,,67,L471 U867 ,ID+6 gap,83939,, +384,RUS,,OL,b,Staryj Oskol (BE),51.3125,37.791667,,0.025,,2147,80,94,,,,,,83944,,, +384,UKR,,AL,b,Alushta (KR),44.6875,34.375,,0.025,,2206,101,95,,,,,L1020 ,IDx2 + 18 gap,83935,, +384,MRC,,ORZ,b,Ouarzazate (smd),30.9375,-6.875,,0.025,,2592,210,99,,,,,,83945,,, +384,UAE,,RK,b,Ras al-Khaimah (rak),25.604167,55.958333,,0.025,,5064,106,124,,,,,,83948,,, +384,CAN,,F8,b,Victoriaville (QC),46.104167,-71.958333,,0.025,,5461,296,128,,,,,U387 10.2s,DAID,83940,, +384,CAN,,3F,b,Ile-a-la-crosse (SK),55.479167,-107.958333,,0.025,,6623,323,139,,,,0,L1032 U1035 8.13s,83933,,, +384,USA,,JB,b,Jigel Lumberton (NC),34.5625,-79.125,,0.025,,6766,290,141,,,,1,L1013 U1003 4654s,83942,,, +384,USA,,PVJ,b,Pauls Valley (OK),34.729167,-97.208333,,0.025,,7860,302,152,,,,,U1044 8.2s,83947,,, +384,CHL,,ERO,b,Quintero (Valparaso) (VS),-32.729167,-71.458333,,1,,12070,240,154,,,,,,83938,,, +384,OCE,,BB,b,Faanui (Bora Bora Island) (Iles Sous le Vent) (slv),-16.4375,-151.791667,,0.05,,15609,326,178,,,,,U4 20.0s,DAID,83937,, +384.5,SEN,,MA,b,Matam / Ouro-Sogui (mtm),15.645833,-13.208333,,0.05,,4409,210,114,,,,-384.5,20.0s,IDx2 + DAID,83951,, +385,F,,OAN,b,Orleans / Bricy (45),48.020833,1.791667,,0.025,,561,218,79,,,,,U3 9.6s,DAID,83988,, +385,G,,WL,b,Barrow-in-Furness/Walney Island (EN-CUM),54.145833,-3.291667,,0.025,,685,293,80,,,,209,L402 U397 5.0s,84005,,, +385,HRV,,BO,b,Zadar / Bokanjac (zd),44.1875,15.291667,,0.04,,1098,140,82,,,,2,L1036 U1040 8.0s,ID+5 gap,83961,, +385,POL,,NWT,b,Leczyca,51.979167,19.208333,,0.025,,874,86,82,,,,998,L401 U404 5.0s,ID+2.5 gap,83986,, +385,F,,CSC,b,Cannes / Ile de Leirins (06),43.520833,7.041667,,0.025,,956,177,83,,,,,U4 ,ID+16 tone,83964,, +385,SVK,,K,b,Kosice / Haniska (KE),48.395833,21.125,,0.025,,1122,106,84,,,,,U1056 ,ID+4 gap,83976,, +385,LTU,,AVN,b,Vilnius (Vil),54.645833,25.291667,,0.025,,1280,70,86,,,,0,L1020 U1021 ,83956,,, +385,FIN,,KV,b,Halli / Talasniemi,61.854167,24.958333,,0.025,,1551,39,88,,,,1,L407 U411 8.4s,83977,,, +385,E,,TLD,b,Toledo (CAM-TO),39.979167,-4.375,,0.025,,1581,216,89,,,,,L1020 U1020 ,87194,,, +385,ROU,,B,b,Bucuresti / Baneasa west (BU),44.479167,26.041667,,0.025,,1674,113,90,,,,,,83957,,, +385,UKR,,JA,b,Yahotyn,50.270833,31.791667,,0.025,,1771,87,91,,,,998,L1138 U937 30.0s,IDx2 + 21 gap,83974,, +385,ISL,,IS,b,safjrur (vf),66.104167,-23.041667,,0.025,,2252,325,95,,,,,U1025 ,83973,,, +385,IRN,,MSD,b,Mashhad (rkh),36.228333,59.636944,,0.5,,4478,92,105,,,,873,L1020 U889 ,ID+3 gap,83982,, +385,CAN,,NA,b,Natashquan (QC),50.229167,-61.875,,0.5,,4586,296,106,,,,,U400 10.0s,DAID,83985,, +385,RUS,,OR,b,Orsk (OB),51.0625,58.708333,,0.025,,3536,71,108,,,,,,83991,,, +385,RUS,,SF,b,Orsk (OB),51.0625,58.541667,,0.025,,3525,71,108,,,,,,83997,,, +385,TJK,,PF,b,Istaravshan=Uroteppa (sgd),40.0625,68.958333,,0.025,,4844,80,121,,,,,,86586,,, +385,CAN,,J,b,#NAME?,44.979167,-63.458333,,0.025,,5001,290,123,,,,,,87193,,, +385,CAN,,ZNS,b,Midtown Halifax (NS),44.979167,-63.458333,,0.025,,5001,290,123,,,,,U394 10.5s,DAID,84008,, +385,CAN,,YNC,b,Wemindji (QC),53.020833,-78.791667,,0.025,,5404,307,127,,,,993,L397 U388 10.5s,DAID,84006,, +385,CAN,,ZDH,b,Toronto/Rexdale Riverhead Park (ON),43.729167,-79.541667,,0.05,,6090,298,131,,,,1,L394 U390 10535s,DAID,84007,, +385,USA,,UR,b,Orchy New York (NY),40.854167,-73.791667,,0.025,,5945,292,132,,,,3,L1031 U1049 5.73s,84001,,, +385,CAN,,QV,b,Yorkton (SK),51.229167,-102.541667,,0.1,,6742,317,134,,,,,U400 10.5s,DAID,83995,, +385,CAN,,X,b,Toronto (ON),43.729167,-79.541667,,0.025,,6090,298,134,,,,,U399 ,DAID,87195,, +385,CAN,,WL,b,Williams Lake (BC),52.145833,-121.958333,,0.5,,7461,329,135,,,,209,L~400 U416 9.8s,DAID,84004,, +385,USA,,GAI,b,Gaithersburg (MD),39.1875,-77.125,,0.025,,6280,293,136,,,,0,L1017 U1025 5195s,83969,,, +385,USA,,EVO,b,East Liverpool (OH),40.6875,-80.625,,0.025,,6384,296,137,,,,,,87191,,, +385,USA,,HYX,b,Browne Saginaw (MI),43.4375,-83.875,,0.025,,6370,300,137,,,,,U1010 5463s,83972,,, +385,ALS,,LUR,b,Cape Lisburne (AK),68.854167,-166.041667,,0.025,,6550,357,138,,,,1,L1033 U1035 8.2s,83979,,, +385,USA,,SCG,b,Scott Crane Lake (MN),48.270833,-92.458333,,0.025,,6479,309,138,,,,0,L1019 U1020 31s,83996,,, +385,USA,,EOP,b,Waverly Pike County Airport (OH),39.1875,-82.958333,,0.025,,6643,296,139,,,,0,L1019 U1017 6106s,83968,,, +385,USA,,LY,b,Bojar Evington (VA),37.270833,-79.208333,,0.025,,6559,292,139,,,,2,L1018 U1021 8600s,83980,,, +385,USA,,UWL,b,New Castle (IN),39.895833,-85.291667,,0.025,,6729,298,140,,,,997,L1018 U1008 6464s,84002,,, +385,USA,,BA,b,Babco St Paul (MN),44.854167,-92.958333,,0.025,,6776,307,141,,,,,L1016 8.60s,83958,,, +385,USA,,EMR,b,Emory Augusta (GA),33.479167,-81.958333,,0.025,,7034,291,143,,,,983,L1045 U1028 7775s,83967,,, +385,ALS,,EHM,b,Cape Newenham (AK),58.645833,-162.041667,,0.1,,7655,354,144,,,,2,L1037 U1035 8.5s,83966,,, +385,CAN,,3M,b,Drayton Valley Industrial (AB),53.270833,-114.958333,,0.025,,7095,325,144,,,,,U406 10479s,DAID,83952,, +385,GLP,,PTP,b,Pointe--Pitre (971),16.270833,-61.625,,0.025,,7093,263,144,,,,,U4 19910s,DAID,83993,, +385,USA,,JD,b,Gooey Belleville (IL),38.479167,-89.708333,,0.025,,7106,300,144,,,,986,L1060 U1036 6092s,83975,,, +385,ALS,,OCC,b,Ocean Cape Yakutat (AK),59.5625,-139.708333,,0.025,,7231,342,145,,,,1,L1030 U1032 8.3s,TWEB,83989,, +385,USA,,LN,b,Potts Lincoln (NE),40.729167,-96.791667,,0.025,,7326,306,146,,,,982,L1061 U1025 5966s,83978,,, +385,USA,,HO,b,Hossy Hot Springs (AR),34.4375,-93.208333,,0.025,,7650,299,149,,,,979,L1050 U1014 6.0s,83971,,, +385,USA,,DR,b,Idder De Ridder (LA),30.770833,-93.375,,0.025,,7972,297,153,,,,993,L1041 U1025 6011s,83965,,, +385,USA,,DXB,b,De Ridder (LA),30.770833,-93.375,,0.025,,7972,297,153,,,,,L1043 U1026 6.0s,86585,,, +385,MYA,,AN,b,Ann,19.770278,94.04,,0.025,,8127,79,154,,,,,,22100042,,, +385,VEN,,PRG,b,Paraguana,11.776667,-70.139167,,0.025,,8060,267,154,,,,,,31300005,,, +385,USA,,COM,b,Coleman (TX),31.854167,-99.375,,0.025,,8235,302,155,,,,,U1020 ,83962,,, +385,USA,,GYB,b,Lee County Giddings (TX),30.1875,-96.958333,,0.025,,8239,299,155,,,,1,L1023 U1025 ,83970,,, +385,B,,BGC,b,Bragana Paulista (SP),-22.979167,-46.541667,,0.1,,9800,227,156,,,,,,83960,,, +385,USA,,MR,b,Munso Monterey (CA),36.604167,-121.958333,,0.05,,8954,320,157,,,,983,L1047 U1015 4.4s,83981,,, +385,USA,,CPZ,b,Chaparrosa Ranch La Pryor (TX),28.895833,-100.041667,,0.025,,8535,300,158,,,,19,L983 U1017 8.0s,83963,,, +385,USA,,BF,b,Niley Bakersfield (CA),35.354167,-118.958333,,0.025,,8940,318,159,,,,974,L1058 U1007 8.0s,83959,,, +385,AFS,,MT,b,Meyerton (GT),-26.5625,28.041667,,0.025,,8998,160,160,,,,10,L1014 U1015 3.42s,83984,,, +385,GTM,,FLS,b,-,16.9375,-89.875,,0.025,,8948,285,160,,,,,,87192,,, +385,GTM,,TKL,b,Tikal Santa Elena Y Flores (Peten) (pet),16.895833,-89.875,,0.025,,8951,285,160,,,,,U1015 4287s,84000,,, +385,B,,PAT,b,Patos de Minas (MG),-18.6875,-46.458333,,0.025,,9380,229,161,,,,,,83992,,, +385,B,,PVH,b,Porto Velho (RO),-8.6875,-63.875,,0.025,,9462,249,161,,,,,,83994,,, +385,CLM,,ARA,b,Araracuara (caq),-0.604167,-72.375,,0.025,,9298,261,161,,,,991,L1026 U1018 8525s,83955,,, +385,INS,,TI,b,Tanjung Pinang (KR-tjp),0.9375,104.541667,,0.025,,10479,83,165,,,,993,L1036 U1022 10.5s,83999,,, +385,GUM,,AJA,b,MT Macajna (GU),13.4375,144.708333,,0.025,,11700,42,169,,,,990,L1051 U1025 8.01s,83953,,, +385,INS,,OK,b,Kupang (NT-kpg),-10.1875,123.708333,,0.025,,12747,74,172,,,,,U1023 8.65s,83990,,, +385,FJI,,AL,b,Malolo (WE-BA),-17.8125,177.375,,0.025,,16120,15,183,,,,2,L1020 U1025 8s,83954,,, +385.5,XOE,,MLE,b,BP Miller B Platform,58.4375,1.208333,,0.025,,776,337,81,,,,300,L400 U~400 ,84010,,, +386,G,,BZ,b,Brize Norton (EN-OXF),51.729167,-1.625,,0.05,,552,269,75,,,,1,L400 U400 10.0s,84017,,, +386,HOL,,STD,b,Stad aan het Haringvliet (zho),51.729167,4.208333,,0.025,,157,255,75,,,,8,L400 U402 4.5s,84039,,, +386,EST,,LK,b,Tallinn/lemiste (Har),59.395833,24.958333,,0.3,,1408,48,76,,,,0,L401 U407 8.1s,ID+5 gap,84029,, +386,D,,EH,b,Egelsbach (hes),49.979167,8.625,,0.015,,283,146,78,,,,5,L1038 U1050 ,84022,,, +386,XOE,,AK,b,Shell Esso / Auk A Platform,56.229167,2.041667,,0.025,,539,330,78,,,,,,84013,,, +386,CZE,,RAK,b,Rakovnik (ST),50.104167,13.708333,,0.025,,556,111,79,,,,45,L403 U397 11.8s,84037,,, +386,XOE,,FM,b,Shell / Fulmar A Platform,56.479167,2.125,,0.025,,560,332,79,,,,998,L402 U402 3.0s,84023,,, +386,I,,LIN,b,Milano / Linate (mi),45.354167,9.291667,,0.025,,780,163,81,,,,993,L1069 U1069 ,84028,,, +386,HNG,,PTB,b,Pusztaszabolcs (Fej),47.145833,18.708333,,0.025,,1042,117,83,,,,2,L1017 U1020 8.0s,84035,,, +386,XOE,,BDL,b,Shell / Esso Brent D Platform,61.0625,1.458333,,0.025,,1040,345,83,,,,,U400 ,ID+5 gap,84014,, +386,XOE,,IC,b,Shell Expro / Brent C,61.104167,1.708333,,0.025,,1040,346,83,,,,0,L400 U400 9.5s,84027,,, +386,E,,NO,b,Pamplona (NAV-NA),42.750183,-1.631553,,0.025,,1202,213,85,,,,14,L1030 U1038 10.7s,ID+6 gap,84032,, +386,GRC,,PAO,b,Paros (seg-kik),37.020833,25.125,,0.025,,2226,132,95,,,,0,L418 U411 ,84034,,, +386,NOR,,HK,b,Hasvik,70.479167,22.125,,0.025,,2192,16,95,,,,998,L404 U400 ,84026,,, +386,GRL,,CP,b,Constable Pynt / Nerlerit Inaat (sms-itt),70.729167,-22.625,,0.025,,2530,336,98,,,,996,L407 U401 9.5s,ID+6 gap,84018,, +386,SPM,,SP,b,Saint-Pierre (975),46.770833,-56.208333,,0.025,,4424,288,117,,,,0,L400 U407 10123s,DAID,84038,, +386,CAN,,D8,b,Dolbeau (QC),48.770833,-72.458333,,0.1,,5315,299,120,,,,2,U401 8.8s,DAID,84020,, +386,CAN,,4N,b,Oxford House (MB),54.9375,-95.291667,,0.2,,6109,317,125,,,,,U393 10.5s,DAID,84011,, +386,USA,,GMA,b,Mahn Whitefield (NH),44.354167,-71.708333,,0.025,,5565,294,129,,,,0,L1028 U1033 5.5s,84024,,, +386,CAN,,4X,b,Lac Du Bonnet (MB),50.270833,-96.041667,,0.1,,6506,313,132,,,,,U1046 ,DAID,84012,, +386,USA,,BTN,b,Britton (SD),45.8125,-97.708333,,0.025,,6952,310,142,,,,,U1034 5.6s,84016,,, +386,USA,,OQW,b,Maquoketa (IA),42.0625,-90.708333,,0.025,,6874,303,142,,,,,U1023 ,84033,,, +386,USA,,SZY,b,Sibley Selmer (TN),35.229167,-88.541667,,0.025,,7303,297,146,,,,,U1013 6663s,84041,,, +386,USA,,HAU,b,Hauser Helena (MT),46.5625,-111.791667,,0.025,,7569,319,149,,,,983,L1059 U1031 8.0s,84025,,, +386,USA,,LYO,b,Lyons (KS),38.354167,-98.208333,,0.025,,7605,305,149,,,,993,L1026 U1017 7.2s,84031,,, +386,USA,,SYF,b,St. Francis (KS),39.729167,-101.791667,,0.025,,7683,309,150,,,,3,L1015 U1023 5.7s,84040,,, +386,AUS,,BLN,b,Busselton (WA),-33.6875,115.375,,0.025,,14138,99,177,,,,,,84015,,, +386,AUS,,WTN,b,Winton (QLD),-22.354167,143.125,,0.025,,15070,65,180,,,,,L1100 8s,86590,,, +386,AUS,,TWB,b,Toowoomba (QLD),-27.5625,151.875,,0.025,,16063,60,183,,,,,L1020 U1020 9s,86589,,, +386,AUS,,CRG,b,Corryong (VIC),-36.145833,147.875,,0.025,,16522,75,184,,,,,L400 U400 9s,84019,,, +386,AUS,,QDI,b,Quirindi (NSW),-31.479167,150.541667,,0.025,,16321,66,184,,,,,L400 U400 8s,84036,,, +386,NZL,,LX,b,Alexandra (OTA),-45.145833,169.458333,,0.025,,18554,65,191,,,,,U1004 6s,84030,,, +386.5,BEL,,SLV,b,Spa / La Sauvenire (wal-lge),50.479167,5.875,,0.015,,185,192,77,,,,496,L404 U398 10.04s,84042,,, +387,D,,SLT,b,Sylt / Westerland (shs),54.854167,8.375,,0.025,,332,22,76,,,,2,L970 U960 30.0s,DAID,84060,, +387,F,,ING,b,St. Inglevert (62),50.895833,1.708333,,0.025,,352,249,76,,,,,L405 U402 10.0s,84051,,, +387,IRL,,CML,b,Clonmel (TA),52.4375,-7.458333,,0.05,,943,278,79,,,,7,L393 U410 5.3s,84049,,, +387,F,,BGP,b,Brest Guipavas (29),48.4375,-4.375,,0.025,,867,246,82,,,,,U5 20.0s,84045,,, +387,F,,RZ,b,Rodez / Marcillac (12),44.4375,2.458333,,0.025,,902,200,82,,,,,U15 ,DAID,84058,, +387,NOR,,SOK,b,Oslo / Gardermoen / Sokna (os),60.229167,9.875,,0.025,,928,12,82,,,,995,L414 U395 10.0s,84061,,, +387,I,,CEV,b,Cervia (ra),44.270833,12.208333,,0.025,,971,152,83,,,,7,L1019 U1030 6.5s,ID+2 gap,84048,, +387,F,,CT,b,Ajaccio / Campo del Oro (20A),41.8125,8.708333,,0.025,,1158,170,85,,,,,U1013 ,84050,,, +387,E,,AV,b,Asturias / Aviles (AST-O),43.520833,-5.958333,,0.02,,1325,229,87,,,,0,L398 U392 7.0s,ID+5 gap,84044,, +387,SRB,,AD,b,Kraljevo (Srb-rsk),43.770833,20.625,,0.025,,1403,126,87,,,,,L914 U940 12.0s,ID+10 gap,86591,, +387,FIN,,JL,b,Kuopio,63.0625,27.708333,,0.025,,1744,38,90,,,,0,L412 U412 8.0s,84053,,, +387,RUS,,MA,b,Kasimovo,60.1875,30.375,,0.025,,1720,49,90,,,,0,L1055 U1055 ,IDx2,84054,, +387,ISL,,NB,b,Akureyri/Botn (ne),65.3125,-18.291667,,0.025,,2021,326,93,,,,,U1017 ,ID+3 tone,84056,, +387,RUS,,KM,b,Kamyshin,50.0625,45.458333,,0.025,,2704,79,100,,,,,L1037 U1039 ,86593,,, +387,CAN,,6E,b,Grand Manan (NB),44.729167,-66.791667,,0.05,,5231,292,122,,,,,U395 10.5s,DAID,84043,, +387,PAK,,MT,b,Multan (pjb),30.196667,71.423889,,0.025,,5738,88,130,,,,998,L1047 U1041 ,ID+7 gap,84055,, +387,USA,,CAV,b,Clarion (IA),42.729167,-93.791667,,0.025,,6994,306,143,,,,,L1038 U1030 6.4s,84047,,, +387,ALS,,BOB,b,Bruck Anchorage (AK),61.1875,-150.208333,,0.025,,7247,348,145,,,,985,L1050 U1023 ,84046,,, +387,TCA,,PV,b,Providenciales (ncs),21.770833,-72.291667,,0.025,,7355,275,147,,,,993,L1047 U1032 5.9s,84057,,, +387,USA,,LQP,b,Fort Collins (CO),40.5625,-105.041667,,0.025,,7780,311,151,,,,,,87196,,, +387,CHN,,SG,b,Yijun,34.395833,111.125,,0.025,,7952,57,152,,,,,,84059,,, +387,COM,,FXM,b,Iconi,-11.688333,43.246389,,0.025,,7922,142,152,,,,,,10000002,,, +388,F,,LOU,b,Metz / Nancy-Lorraine / Louvigny (57),48.979167,6.208333,,0.025,,348,182,76,,,,,U1 20.9s,84082,,, +388,F,,BR,b,Lyon / Bron (69),45.604167,4.958333,,0.025,,731,189,80,,,,,L398 U408 10.0s,ID+8 gap,84066,, +388,POL,,BDG,b,Bydgoszcz / Szwederowo,53.104167,18.041667,,0.025,,792,77,81,,,,,L1030 U1030 ,ID+6 gap,86594,, +388,SVN,,PZ,b,Portoroz,45.479167,13.625,,0.025,,906,142,82,,,,3,L1023 U1030 ,ID+7 gap,84094,, +388,S,,COR,b,Corner for Bromma,59.270833,17.458333,,0.025,,1053,37,84,,,,0,L396 U394 6.5s,84070,,, +388,I,,GUI,b,Guidonia (rm),41.979167,12.708333,,0.025,,1222,155,85,,,,5,L1016 U1029 ,ID+1 gap,84074,, +388,FIN,,KRU,b,Kokkola-Pietarsaari / Kruunupyy,63.8125,23.208333,,0.025,,1625,30,89,,,,5,L408 U412 9.0s,84081,,, +388,PAK,,PG,b,Panjgur (blc),26.9375,64.125,,0.025,,5500,97,128,,,,,L1037 ,86598,,, +388,USA,,BD,b,Chupp Windsor Locks (CT),41.895833,-72.791667,,0.025,,5806,292,131,,,,,,84065,,, +388,CAN,,MM,b,Fort McMurray (AB),56.645833,-111.375,,0.13,,6658,326,132,,,,,U417 9.9s,DAID,84086,, +388,CAN,,H7,b,Manitoulin East (Manitowaning) (ON),45.854167,-81.875,,0.025,,6073,301,134,,,,,U388 10337s,DAID,84075,, +388,USA,,NXX,b,Willow Grove (PA),40.1875,-75.125,,0.025,,6079,292,134,,,,995,L1054 U1043 7436s,84088,,, +388,USA,,UN,b,Penue State College (PA),40.895833,-77.708333,,0.025,,6188,294,135,,,,999,L1020 U1018 8.59s,84097,,, +388,USA,,AM,b,Picny Tampa (FL),27.854167,-82.541667,,0.4,,7533,287,136,,,,988,L1050 U1025 5.9s,84064,,, +388,USA,,MFV,b,Melfa (VA),37.645833,-75.791667,,0.025,,6313,290,136,,,,,,87198,,, +388,USA,,DT,b,Revup Detroit (MI),42.104167,-83.458333,,0.025,,6447,299,137,,,,996,L1028 U1020 8.6s,84071,,, +388,USA,,OCQ,b,Oconto (WI),44.895833,-87.875,,0.025,,6490,304,138,,,,,U1015 9131s,84089,,, +388,USA,,PK,b,Versi parkersburg (WV),39.270833,-81.458333,,0.025,,6544,295,138,,,,999,L1016 U1019 8600s,84093,,, +388,USA,,OLG,b,Solon Springs (WI),46.3125,-91.791667,,0.025,,6597,307,139,,,,,U1019 ,87199,,, +388,USA,,RNW,b,Chocowinity (NC),35.520833,-77.125,,0.025,,6562,289,139,,,,996,L1031 U1024 5418s,84095,,, +388,USA,,ISZ,b,Cincinnati-Blue Ash Cincinnati (OH),39.229167,-84.375,,0.025,,6726,297,140,,,,1,L1065 U1067 6003s,84078,,, +388,USA,,CFJ,b,Crawfordsville (IN),39.979167,-86.875,,0.025,,6817,299,141,,,,1,L1012 U1022 7424s,84068,,, +388,USA,,MAO,b,Marion (SC),34.1875,-79.291667,,0.025,,6807,290,141,,,,0,U1014 7869s,84083,,, +388,USA,,CDX,b,Cumberland River Somerset (KY),36.979167,-84.708333,,0.025,,6925,296,142,,,,993,L1054 U1041 7866s,84067,,, +388,CAN,,MS,b,McInnes Island (BC),52.270833,-128.708333,,0.1,,7676,332,144,,,,,U1036 6.92/10.25s,DAID,84087,, +388,USA,,MD,b,Cabbi Carbondale / Murphysboro (IL),37.854167,-89.208333,,0.025,,7127,299,144,,,,998,L1015 U1014 8600s,84084,,, +388,USA,,OYD,b,Floyd Rome (GA),34.3125,-85.125,,0.025,,7167,294,145,,,,986,L1044 U1015 8209s,84092,,, +388,CAN,,3Z,b,Taber (Muni Apt) (AB),49.8125,-112.208333,,0.025,,7295,322,146,,,,,U380 10.5s,DAID,84063,, +388,USA,,GLY,b,Golden Valley Clinton (MO),38.354167,-93.708333,,0.025,,7350,302,146,,,,979,L1070 U1028 7.4s,84073,,, +388,CAN,,JW,b,Pigeon Jumping Pound Creek (AB),51.0625,-114.625,,0.015,,7282,324,148,,,,,U398 10.5s,DAID,84080,, +388,USA,,CRK,b,Phort Spokane (WA),47.6875,-117.458333,,0.025,,7708,323,150,,,,,U1025 ,86596,,, +388,USA,,GE,b,Phort Spokane (WA),47.6875,-117.458333,,0.025,,7708,323,150,,,,990,L1043 U1023 5.6s,84072,,, +388,USA,,OK,b,Preso Preston (Okmulgee) (OK),35.770833,-95.958333,,0.025,,7698,302,150,,,,988,L1052 U1025 8208s,84091,,, +388,USA,,HAH,b,Natchez-Adams Co Natchez (MS),31.6875,-91.291667,,0.025,,7767,296,151,,,,2,L1017 U1021 8.96s,84076,,, +388,USA,,OFZ,b,Trail Fort Sill (OK),34.770833,-98.375,,0.025,,7923,303,152,,,,986,L1041 U1013 7.8s,84090,,, +388,USA,,SGR,b,Hull Houston (TX),29.645833,-95.625,,0.05,,8206,298,152,,,,999,L1025 U1023 5.7s,84096,,, +388,USA,,JUG,b,Jecca Seagoville (TX),32.6875,-96.541667,,0.025,,7997,300,153,,,,998,L1034 U1034 7.5s,84079,,, +388,CHN,,W,b,Changsha / Huanghua (HN),28.1875,113.208333,,0.025,,8618,60,158,,,,,,84098,,, +388,CLM,,SVA,b,Saravena (ara),6.9375,-71.875,,0.025,,8600,265,158,,,,,L372 U1492 7.96s,86599,,, +388,USA,,IMP,b,Marathon (TX),30.270833,-103.208333,,0.025,,8596,303,158,,,,,,84077,,, +388,USA,,MF,b,Missi Mc Allen (TX),26.270833,-98.291667,,0.025,,8663,297,159,,,,,L1020 8.6s,84085,,, +388,ICO,,CIL,b,Cocos Island Locator (WA),-12.1875,96.791667,,0.025,,11100,97,167,,,,,,86595,,, +388,JON,,APO,b,Apollo Johnston Atoll,16.729167,-169.541667,,0.025,,12350,356,171,,,,,L1040 U1060 ,87197,,, +388,NCL,,MR,b,Mar (ily),-21.479167,168.041667,,0.025,,16261,32,184,,,,,20s,DAID,86597,, +388.5,HOL,,CH,b,Buitenkaag/Lisserdijk 5 (zho),52.22,4.558333,,0.025,,127,276,66,,,,503,L392 U398 6s,84100,,, +388.5,G,,CDF,b,Cardiff (WA-CDF),51.395833,-3.375,,0.025,,678,267,80,,,,495,L410 U397 7.9s,84099,,, +389,E,,ZRZ,b,Zaragoza (ARA-Z),41.729167,-1.208333,,0.3,,1290,209,75,,,,3,L1030 U1029 15.0s,84128,,, +389,NOR,,MR,b,Skien / Geiteryggen / Myra,59.270833,9.541667,,0.025,,820,13,81,,,,3,L375 U383 7.5s,84117,,, +389,F,,PX,b,Perigueux / Bassillac (24),45.1875,0.875,,0.025,,870,210,82,,,,,L396 U405 ,DAID,84120,, +389,I,,CMO,b,Camogli (ge),44.354167,9.208333,,0.025,,887,165,82,,,,10,L1017 U1042 ,ID+4 gap,84106,, +389,NOR,,HN,b,Orsta-Volda / Hovden,62.145833,6.041667,,0.025,,1116,359,84,,,,982,L420 U374 8.5s,84111,,, +389,MDA,,B,b,Balti,47.8125,27.791667,,0.025,,1596,99,89,,,,,L1021 ,ID+12 gap,84101,, +389,MDA,,L,b,Balti,47.854167,27.791667,,0.025,,1594,99,89,,,,,,84113,,, +389,UKR,,SH,b,Shyriaieve,47.395833,30.291667,,0.025,,1785,98,91,,,,,L1072 U1020 ,IDx2 + 8 gap,84122,, +389,ALG,,TRB,b,Tiaret / Bou Chekif (14),35.354167,1.541667,,0.025,,1903,194,92,,,,,U23 ,ID+17 tone,84123,, +389,POR,,CP,b,Lisboa / Caparica (lis),38.645833,-9.208333,,0.025,,1923,225,92,,,,1,L1020 U1020 7670s,ID+5 gap,84107,, +389,TUR,,BDR,b,Bodrum / Milas (ege-mug),37.270833,27.708333,,0.025,,2341,126,96,,,,,L398 U400 ,ID+6 gap,84102,, +389,CNR,,BX,b,La Palma (STC-LP),28.604167,-17.791667,,0.15,,3290,227,98,,,,7,L1027 U1031 15.0s,ID+12 gap,84105,, +389,USA,,PVC,b,Provincetown (MA),42.0625,-70.208333,,0.025,,5631,291,129,,,,993,L1046 U1032 8036s,84119,,, +389,CAN,,Q1,b,Tadoule Lake (MB),58.729167,-98.541667,,0.025,,5969,322,133,,,,,L1035 U1037 8.32s,84121,,, +389,USA,,EN,b,Codee Kenosha (WI),42.5625,-88.041667,,0.025,,6681,302,140,,,,982,L1050 U1022 8.0s,84109,,, +389,USA,,IL,b,Wlmar Willmar (MN),45.104167,-94.958333,,0.025,,6864,308,142,,,,,L1070 U1040 8.25s,87200,,, +389,USA,,LCG,b,Wayne (NE),42.229167,-96.958333,,0.025,,7209,307,145,,,,985,L1050 U1011 8.1s,84114,,, +389,USA,,LDS,b,Leeds Havre (MT),48.5625,-109.708333,,0.025,,7297,319,146,,,,988,L1050 U1025 6.6s,84115,,, +389,USA,,CSB,b,Harry Strunk Cambridge (NE),40.3125,-100.125,,0.025,,7543,308,148,,,,,U1026 6.9s,84108,,, +389,CAN,,WB,b,Kelowna (BC),49.8125,-119.625,,0.025,,7595,326,149,,,,,,87201,,, +389,CAN,,YWB,b,Kelowna (BC),49.8125,-119.625,,0.025,,7595,326,149,,,,,U403 10.1s,DAID,84126,, +389,CAN,,YXB,b,Kelowna (BC),49.8125,-119.625,,0.025,,7595,326,149,,,,,,87202,,, +389,USA,,MEJ,b,Meade (KS),37.270833,-100.375,,0.025,,7819,306,151,,,,,U1020 ,84116,,, +389,USA,,TW,b,Strik Twin Falls (ID),42.479167,-114.375,,0.025,,8059,318,154,,,,998,L1020 U1020 8.0s,84124,,, +389,J,,JD,b,Nikko (kan-toc),36.479167,139.875,,0.05,,9180,36,157,,,,,L1000 20s,84112,,, +389,AUS,,BIU,b,Ballidu (WA),-30.604167,116.791667,,0.025,,13996,95,176,,,,,U1039 8s,84103,,, +389,AUS,,PLC,b,Port Lincoln (SA),-34.604167,135.875,,0.025,,15601,84,181,,,,,U1034 10s,84118,,, +389,AUS,,BKE,b,Bourke (NSW),-30.0625,145.958333,,0.025,,15913,69,182,,,,,L400 U400 9s,84104,,, +389,AUS,,GFN,b,Grafton (NSW),-29.770833,153.041667,,0.025,,16327,61,184,,,,999,L400 U400 10s,84110,,, +389,AUS,,WWL,b,West Wyalong (NSW),-33.9375,147.208333,,0.025,,16308,73,184,,,,,L400 U400 10s,84125,,, +389,AUS,,YWE,b,Yarrowee (VIC),-37.729167,143.791667,,0.025,,16366,81,184,,,,,L400 9s,84127,,, +389.5,XOE,,TSA,b,Amoco / Leman AP Platform,53.020833,2.125,,0.025,,307,291,76,,,,500,L410 U410 9.5s,84129,,, +390,POL,,BBM,b,Babimost,52.145833,15.791667,,0.025,,640,86,79,,,,997,L1023 U1018 6.0s,84133,,, +390,F,,DR,b,Dinard / Pleurtuit-St Malo (35),48.479167,-2.041667,,0.025,,723,239,80,,,,,20.0s,ID+17 tone,84139,, +390,I,,AVI,b,Aviano (pn),45.9375,12.458333,,0.035,,815,145,80,,,,996,L1035 U1035 8.5s,ID+5 gap,84132,, +390,S,,SS,b,Skvde,58.3125,13.875,,0.025,,836,31,81,,,,0,L402 U407 3.5s,84160,,, +390,XOE,,GPR,b,Global Producer III FPSO,58.354167,0.875,,0.025,,777,335,81,,,,,L398 U405 7.0s,86603,,, +390,S,,LV,b,Arvika,59.645833,12.625,,0.025,,922,22,82,,,,0,L399 U402 ,84149,,, +390,HNG,,SAG,b,Sajhdvg (BAZ),47.979167,20.958333,,0.025,,1133,108,84,,,,2,L1016 ,ID+5 gap,84158,, +390,SRB,,VAL,b,Valjevo (Srb-kba),44.3125,19.875,,0.025,,1318,126,86,,,,10,L1008 U1022 10.0s,ID+5 tone,84163,, +390,E,,SO,b,Santiago de Compostela (GAL-C),42.979167,-8.458333,,0.025,,1503,233,88,,,,7,L1021 U1025 12.1s,ID+8 gap,84159,, +390,E,,MA,b,Madrid/Barajas (MAD-M),36.895833,-2.208333,,0.025,,1822,205,91,,,,60,L970 U1089 ,ID+7s gap,84150,, +390,S,,PAJ,b,Pajala,67.270833,22.958333,,0.025,,1911,22,92,,,,997,L403 U397 ,84155,,, +390,LBY,,PE,b,Tripoli / Gazala (tbl),32.6875,13.208333,,0.025,,2228,163,95,,,,3,L1019 U1020 ,ID+8 gap,84156,, +390,MRC,,KNT,b,Kenitra (Tentative),34.3125,-6.625,,0.025,,2235,213,95,,,,7,L1012 U1028 6.44s,ID+4 gap,84146,, +390,RUS,,NF,b,Severomorsk 1 (MU),69.0625,33.375,,0.025,,2351,27,96,,,,,U700 6.4s,84151,,, +390,UKR,,DN,b,Donetsk (DO),48.0625,37.708333,,0.025,,2259,89,96,,,,0,L992 U1040 ,IDx2 + 8 gap,84137,, +390,UKR,,DO,b,Donetsk (DO),48.0625,37.791667,,0.025,,2265,89,96,,,,,L1039 U1039 ,IDx2 + 5 gap,84138,, +390,TUR,,KNY,b,Konya (ica-kon),37.979167,32.541667,,0.025,,2561,117,99,,,,,L1030 ,ID+2 gap,84147,, +390,LBY,,OV,b,Nafoora M4 (wah),29.229167,21.541667,,0.025,,2833,148,101,,,,0,L417 U418 ,ID+7 gap,84153,, +390,CAN,,VP,b,Kuujjuaq / Kujack (QC),58.0625,-68.458333,,1,,4561,309,103,,,,,U399 10.2s,DAID,84164,, +390,CAN,,JT,b,Stephenville (NL),48.5625,-58.791667,,0.45,,4487,292,105,,,,,U394 10406s,DAID,84145,, +390,MRC,,AI,b,El Aaaiun,27.145833,-13.208333,,0.025,,3222,218,105,,,,,,86601,,, +390,UZB,,U,b,Buxoro=Bukhara (bux),39.770833,64.458333,,0.025,,4559,84,119,,,,,,84161,,, +390,RUS,,RL,b,Krasnoyarsk (KN),56.145833,92.625,,0.025,,5261,49,126,,,,,,84157,,, +390,J,,HK,b,Kagoshima (kyu-kag),31.645833,130.541667,,2,,9237,45,141,,,,994,L1022 U1020 5s,DAID,84142,, +390,ALS,,AES,b,Nabesna Northway (AK),62.979167,-141.875,,0.025,,6921,344,142,,,,0,L1034 U1028 ~4.0s,84130,,, +390,USA,,BR,b,Burns Burlington (IA),40.645833,-91.125,,0.025,,7013,302,143,,,,3,L1032 U1034 6131s,84134,,, +390,USA,,OWC,b,Coffee County Douglas (GA),31.395833,-82.958333,,0.025,,7268,290,146,,,,0,L1022 U1030 6624s,84154,,, +390,B,,CRT,b,Curitiba (PR),-25.520833,-49.208333,,1,,10180,228,148,,,,,,84135,,, +390,CUB,,UCA,b,Ciego de vila (ca),21.979167,-78.875,,0.025,,7783,280,151,,,,,L1068 ,84162,,, +390,ALS,,HBT,b,Sand Point (Borland) (AK),55.3125,-160.541667,,0.025,,8010,352,153,,,,998,L1036 U1035 8.5s,84141,,, +390,B,,FUR,b,Furnas (MG),-20.6875,-46.375,,0.2,,9570,228,153,,,,,,84140,,, +390,MYA,,EL,b,Naypyidaw (mdy),19.624444,96.1975,,0.025,,8284,78,156,,,,,,22100037,,, +390,CHN,,LC,b,Hongkong Airport,22.3125,113.875,,0.025,,9183,63,160,,,,,,86605,,, +390,TWN,,DC,b,Kaohsiung (KHS),22.604167,120.291667,,0.025,,9537,58,161,,,,,9s,84136,,, +390,INS,,OU,b,Banjarmasin (KS-kbm),-3.4375,114.791667,,0.025,,11556,77,168,,,,,,84152,,, +390,CHL,,BAL,b,Balmaceda,-45.9375,-71.708333,,0.025,,13191,231,174,,,,,L1053 8343s,86602,,, +390,NZL,,HN,b,Hamilton (WKO),-37.854167,175.291667,,0.13,,18209,33,183,,,,0,L1020 U1020 4s,84143,,, +390.5,F,,ITR,b,Istres / Le Tub (13),43.520833,4.958333,,0.025,,961,187,83,,,,-390.5,L9 19.2s,ID+16 tone,84165,, +391,SVK,,OKR,b,Bratislava / M.R Stefanik / North (BA),48.229167,17.291667,,2,,886,115,63,,,,4,L1020 U1022 10.0s,84190,,, +391,F,,BV,b,Beauvais / Tille (80),49.479167,2.041667,,0.02,,424,228,78,,,,,L395 U409 10.1s,84171,,, +391,XOE,,SIR,b,Siri Platform,56.479167,4.875,,0.025,,496,349,78,,,,995,L400 U390 6.0s,84195,,, +391,F,,CC,b,Chalon / Champforgueuil (71),46.729167,4.875,,0.025,,608,191,79,,,,,L400 U406 ,ID+7 gap,84172,, +391,ROU,,IAS,b,Iasi (IS),47.229167,27.541667,,0.025,,1608,101,89,,,,13,L1064 U1095 ,ID+1 gap,84183,, +391,JOR,,JYO,b,Amman/Marka International (amn),32.020833,36.041667,,0.025,,3271,121,106,,,,,U1090 ,84184,,, +391,GRL,,MA,b,Maniitsoq (Kitaa) (qqa-maq),65.395833,-52.958333,,0.025,,3561,318,109,,,,0,L400 U400 ,84186,,, +391,IRN,,MIS,b,Masjed Soleiman (kuz),31.9375,49.291667,,0.025,,4106,106,114,,,,0,L1019 U1020 ,ID+6 tone,84188,, +391,CAN,,3B,b,Brockville (ON),44.6875,-75.708333,,0.1,,5789,297,125,,,,993,L411 U403 9.7s,DAID,84166,, +391,PTR,,DDP,b,San Juan / Dorado / Luiz Munoz Marin Intl (PR),18.479167,-66.375,,2,,7228,268,126,,,,7,L1031 U1045 10.5s,ID+6 gap,84175,, +391,CAN,,4W,b,Kelsey (MB),56.020833,-96.541667,,0.025,,6085,318,134,,,,,U391 10.3s,DAID,84167,, +391,CAN,,OO,b,Oshawa (ON),43.9375,-78.875,,0.007,,6035,298,139,,,,995,L405 U404 10223s,DAID,84191,, +391,USA,,CM,b,Sumie Columbus (OH),39.979167,-82.791667,,0.025,,6571,297,139,,,,996,L1042 U1040 8003s,84173,,, +391,ALS,,EAV,b,Evansville Bettles (AK),66.895833,-151.541667,,0.025,,6653,350,140,,,,2,L1026 U1026 8.2s,84176,,, +391,CAN,,D5,b,Melfort (SK),52.854167,-104.791667,,0.025,,6709,320,140,,,,,,84174,,, +391,CAN,,D9,b,Melfort (SK),52.854167,-104.791667,,0.025,,6709,320,140,,,,,U986 10458s,86607,,, +391,USA,,CPB,b,Culver (IN),41.229167,-86.375,,0.025,,6689,300,140,,,,,L1040 U1015 7.4s,86606,,, +391,CAN,,G6,b,La Biche River (YT),60.145833,-124.041667,,0.025,,6773,334,141,,,,,U300 6.37s,NO DAID,84181,, +391,TZA,,AR,b,Arusha (ars),-3.367778,36.620278,,0.025,,6793,145,141,,,,,,11400001,,, +391,ALS,,EEF,b,Elephant Sisters Island (AK),58.1875,-135.291667,,0.025,,7270,339,146,,,,995,L1040 U1031 8.4s,84177,,, +391,USA,,BHN,b,Buckhorn Fort Leonard Wood (MO),37.6875,-92.125,,0.025,,7314,301,146,,,,976,L1058 U1010 8.2s,84170,,, +391,USA,,MQD,b,Mc Dowell Creek Manhattan (KS),39.104167,-96.625,,0.025,,7453,305,148,,,,,U1039 6.6s,84189,,, +391,USA,,AEE,b,Antlers (OK),34.1875,-95.625,,0.025,,7814,301,151,,,,,L1135 U1012 4028s,84168,,, +391,USA,,EBY,b,Neah Bay (WA),48.354167,-124.541667,,0.025,,7917,328,152,,,,,,87203,,, +391.5,G,,EAS,b,Southampton / Eastleigh (EN-HPS),50.9375,-1.375,,0.025,,554,259,79,,,,512,L391 U419 4.5s,84200,,, +392,D,,RW,b,Berlin / Tegel / West (brb),52.5625,13.125,,0.05,,459,81,75,,,,2,L1022 U1022 10.0s,84226,,, +392,F,,AS,b,Angers / Avrill (49),47.520833,-0.625,,0.025,,717,227,80,,,,,L405 U400 10.0s,ID+9 gap,84203,, +392,FIN,,GDY,b,Mariehamn / Godby,60.1875,19.958333,,0.025,,1225,38,85,,,,0,L411 U400 8.0s,ID+4 gap,84212,, +392,FIN,,RAN,b,Lappeenranta / Ranta,61.020833,28.041667,,0.025,,1642,44,89,,,,997,L403 U409 8.0s,84225,,, +392,ALG,,BO,b,Annaba / El Mellah (23),36.8125,7.791667,,0.025,,1704,176,90,,,,,,84205,,, +392,GRC,,KOR,b,Korinthos for Athnai (pel-kor),37.9375,22.958333,,0.04,,2033,134,91,,,,0,L400 U400 ,ID+11 gap,84217,, +392,ISL,,KF,b,Keflavk (sn),63.979167,-22.708333,,0.025,,2131,319,94,,,,7,L1013 U1017 ,DAID,84216,, +392,RUS,,YU,b,Buturlinovka Air Base,50.8125,40.625,,0.025,,2353,80,97,,,,,L1020 15.0s,IDx2,86610,, +392,LBY,,LAB,b,Labraq / El Beida (jak),32.770833,21.958333,,0.025,,2489,144,98,,,,998,L400 U397 ,ID+5 tone,84218,, +392,TUR,,AKC,b,Trabzon (kdz-tbz),41.104167,39.458333,,0.025,,2773,103,101,,,,,U1025 ,ID+6 gap,84202,, +392,RUS,,PG,b,Buguruslan / Severnyj (OB),53.729167,52.375,,0.025,,3033,68,103,,,,,15.0s,IDx2 + 4 gap,84223,, +392,RUS,,L,b,Chelyabinsk / Balandino,55.3125,61.458333,,0.025,,3545,62,108,,,,,,86609,,, +392,CAN,,ML,b,Charlevoix (QC),47.604167,-70.291667,,0.5,,5260,297,113,,,,997,U404 10.3s,DAID,84219,, +392,USA,,MM,b,Moree Morristown (NJ),40.895833,-74.375,,0.025,,5979,292,133,,,,,L1042 U1037 5487s,84221,,, +392,CAN,,ZFN,b,Tulita (NT),64.895833,-125.541667,,0.05,,6370,338,134,,,,,U399 10.2s,DAID,84232,, +392,USA,,CVX,b,Charlevoix (MI),45.3125,-85.291667,,0.025,,6311,303,136,,,,0,L1023 U1028 7402s,AWOS-3,84209,, +392,USA,,CF,b,Pubbs Chesterfield (VA),37.3125,-77.458333,,0.025,,6445,291,137,,,,,U1026 ,84208,,, +392,USA,,HIB,b,Hibbing / Chrisholm (MN),47.3125,-92.708333,,0.025,,6567,309,139,,,,,,87206,,, +392,USA,,XVG,b,Longville (MN),46.979167,-94.208333,,0.025,,6673,309,140,,,,,L1012 U1044 5.03s,84231,,, +392,CAN,,W1,b,Hardisty (AB),52.645833,-111.375,,0.025,,7008,323,143,,,,,U~404 ,DAID,84230,, +392,USA,,BKO,b,Barnwell (SC),33.354167,-81.458333,,0.025,,7012,291,143,,,,,U1020 ,87204,,, +392,USA,,JNM,b,Monroe (GA),33.729167,-83.708333,,0.025,,7125,292,144,,,,9,L1010 U1041 13.98s,84214,,, +392,USA,,VEP,b,Vero Beach (FL),27.645833,-80.458333,,0.049,,7414,286,144,,,,990,L1045 U1026 7816s,84229,,, +392,USA,,AGZ,b,Wagner (SD),43.0625,-98.291667,,0.025,,7211,309,145,,,,,U1001 7.3s,84201,,, +392,USA,,HEI,b,Hettinger (ND),46.020833,-102.625,,0.025,,7184,313,145,,,,,,87205,,, +392,USA,,FMZ,b,Beklof Fairmont (NE),40.604167,-97.541667,,0.025,,7377,306,147,,,,,U1030 7.2s,84211,,, +392,USA,,EUR,b,Eureka (MT),48.979167,-115.125,,0.025,,7492,323,148,,,,,U1023 6.5s,84210,,, +392,USA,,BAJ,b,Batten Sterling (CO),40.520833,-103.208333,,0.025,,7689,310,150,,,,991,L1046 U1022 7.8s,84204,,, +392,USA,,ML,b,Sabar Monroe (LA),32.4375,-92.125,,0.025,,7754,297,151,,,,997,L1037 U1031 5770s,84220,,, +392,USA,,PNA,b,Wenz Pinedale (WY),42.8125,-109.791667,,0.025,,7815,316,151,,,,990,L1055 U1033 8.0s,84224,,, +392,BLZ,,BZE,b,Belize City (bz),17.520833,-88.291667,,0.025,,8792,285,159,,,,877,L1017 U1020 5601s,84206,,, +392.5,I,,TOP,b,Torino / Poirino (to),44.9375,7.875,,0.025,,805,172,81,,,,500,L1018 U1021 10.0s,ID+6 gap,84233,, +393,XOE,,EKP,b,K5-ACP Platform,53.6875,3.375,,0.025,,269,312,76,,,,998,L1025 U1020 ,84243,,, +393,D,,EGG,b,Eggenfelden (bay),48.395833,12.708333,,0.025,,609,130,79,,,,6,L1016 U1021 10.3s,ID+7 gap,84242,, +393,XOE,,LOM,b,Amoco / Lomond,57.270833,2.208333,,0.025,,634,336,79,,,,,,86613,,, +393,XOE,,ARA,b,Amoco / Arbroath A Platform,57.354167,1.375,,0.025,,666,333,80,,,,,L399 U402 9.5s,86611,,, +393,XOE,,NET,b,North Everest Platform,57.770833,1.791667,,0.025,,695,337,80,,,,0,L400 U400 10.0s,84249,,, +393,G,,EMW,b,East Midlands (EN-DRB),52.8125,-1.458333,,0.015,,538,281,81,,,,19,L396 U423 9.8s,84244,,, +393,F,,BD,b,Bordeaux / Merignac (33),44.9375,-0.541667,,0.025,,947,215,82,,,,,L399 U409 10.0s,ID+8 gap,84237,, +393,F,,BX,b,Mende / Brenoux (48),44.479167,3.541667,,0.025,,874,195,82,,,,,L5 ,84239,,, +393,S,,AB,b,Hagfors,59.9375,13.625,,0.025,,978,24,83,,,,999,L400 U403 4.0s,84236,,, +393,NOR,,TAT,b,Molde / Aro / Tautra,62.6875,6.875,,0.025,,1176,1,85,,,,0,L372 U377 8.0s,84251,,, +393,E,,VL,b,Valladolid (CAL-VA),41.729167,-4.791667,,0.025,,1430,221,87,,,,986,L1057 U1028 7.4s,ID+4 gap,84255,, +393,ISL,,VP,b,Vopnafjordhur / Hofsa,65.729167,-14.875,,0.025,,1926,330,92,,,,,U1030 ,84256,,, +393,IRN,,RST,b,Rasht (gln),37.3125,49.625,,0.025,,3720,99,110,,,,995,L1027 U1028 ,ID+5 gap,84250,, +393,CAN,,2M,b,Opapimiskan Lake (Musselwhite Mine) (ON),52.604167,-90.375,,0.025,,6043,312,133,,,,1,L390 U395 10441s,DAID,84234,, +393,USA,,FGP,b,Fort Bragg (NC),35.145833,-78.791667,,0.04,,6699,290,138,,,,978,L1060 U1020 7152s,84245,,, +393,USA,,LA,b,Artda Lansing (MI),42.770833,-84.458333,,0.025,,6456,300,138,,,,994,L1040 U1028 8143s,84248,,, +393,CAN,,8N,b,Edson (AB),53.5625,-116.458333,,0.05,,7127,326,141,,,,,U389 10.4s,DAID,84235,, +393,USA,,XYC,b,Seco Irvine (KY),37.770833,-84.041667,,0.025,,6821,296,141,,,,,,87207,,, +393,ALS,,TOG,b,Togiak Togiak Village (AK),59.0625,-160.375,,0.05,,7596,353,146,,,,,L1060 ,84252,,, +393,USA,,BZ,b,Fossi Clinton (OK),35.4375,-99.208333,,0.025,,7913,304,152,,,,0,L1048 U1037 5.9s,84240,,, +393,USA,,BR,b,Depoo Brownsville (TX),25.979167,-97.541667,,0.025,,8643,297,158,,,,999,L1033 U1035 5836s,84238,,, +393,THA,,KN,b,Khon Kaen (kkn),16.479167,102.791667,,0.025,,8994,75,160,,,,,,84247,,, +393,FSM,,UKS,b,Kosrae Island (ksa),5.354167,162.958333,,0.025,,13250,27,174,,,,0,L982 U1023 ,84253,,, +394,D,,LYE,b,Lubeck / Blanckensee (shs),53.8125,10.708333,,0.025,,344,55,76,,,,0,L1022 U1016 ,ID+2 gap,84267,, +394,E,,IZA,b,Ibiza=Eivissa (BAL-IB),38.895833,1.458333,,0.25,,1518,197,78,,,,3,L1010 U1016 8.8s,ID+5 gap,84265,, +394,F,,NV,b,Nevers / Fourchambault (58),46.9375,3.208333,,0.025,,620,203,79,,,,,U5 20.0s,ID+17 tone,84271,, +394,G,,DND,b,Dundee (SC-PEK),56.4375,-3.125,,0.025,,783,312,81,,,,991,L408 U385 ,84258,,, +394,SVN,,MEL,b,Metlika,45.645833,15.291667,,0.04,,967,134,81,,,,5,L1027 U1028 8.2s,ID+5 gap,84268,, +394,XOE,,BCE,b,BP / Bruce Alpha,59.729167,1.708333,,0.025,,896,343,82,,,,,,86614,,, +394,S,,NB,b,Bromma,59.395833,17.791667,,0.025,,1076,37,84,,,,30,L400 U409 4.0s,84270,,, +394,FIN,,JOK,b,Kauhajoki,62.479167,22.625,,0.025,,1501,34,88,,,,0,L407 U410 8.6s,84266,,, +394,GRC,,GDA,b,Alexandreia (cmc-ima),40.645833,22.458333,,0.025,,1765,130,91,,,,0,,ID+3 gap,84263,, +394,CAN,,PS,b,Greenwood (NS),44.479167,-64.625,,0.025,,5109,290,124,,,,,,87209,,, +394,CAN,,YB,b,North Bay (ON),46.395833,-79.458333,,0.15,,5892,301,124,,,,,U428 9.82s,DAID,87211,, +394,USA,,PW,b,Orham Portland (ME),43.645833,-70.458333,,0.025,,5536,293,128,,,,,L~1000 ,87210,,, +394,USA,,PWM,b,Orham Portland (ME),43.645833,-70.458333,,0.025,,5536,293,128,,,,,L~1000 ,84272,,, +394,USA,,AI,b,Video Anderson (IN),40.0625,-85.541667,,0.025,,6731,299,140,,,,,L1052 U1040 6.10s,86819,,, +394,USA,,OR,b,Chstr (IL),42.0625,-88.041667,,0.025,,6721,302,140,,,,,,87208,,, +394,CAN,,DQ,b,Dawson Creek (BC),55.729167,-120.041667,,0.05,,7057,330,141,,,,,U409 10.4s,DAID,84259,, +394,USA,,RGK,b,Red Wing (MN),44.604167,-92.458333,,0.025,,6769,306,141,,,,,,84273,,, +394,USA,,SP,b,Snore Spencer (IA),43.229167,-95.291667,,0.025,,7035,307,143,,,,5,L395 U410 5338s,84276,,, +394,USA,,DTE,b,Mark Anton Dayton (TN),35.479167,-84.958333,,0.025,,7062,295,144,,,,0,L1015 U1011 4614s,84260,,, +394,USA,,EZZ,b,Cameron (MO),39.729167,-94.291667,,0.025,,7269,304,146,,,,0,L1030 U1025 4.9s,84262,,, +394,USA,,MK,b,Mersy Jackson (TN),35.520833,-88.958333,,0.025,,7304,297,146,,,,4,L1017 U1027 8.6s,84269,,, +394,USA,,RO,b,Roeby Birmingham (AL),33.604167,-86.708333,,0.025,,7323,294,146,,,,986,L1054 U1026 5698s,84274,,, +394,ALS,,RWO,b,Woody Island Kodiak (AK),57.770833,-152.291667,,0.025,,7645,348,149,,,,993,L1035 U1025 8.6s,TWEB,84275,, +394,USA,,ENZ,b,Nogales (AZ),31.4375,-110.875,,0.1,,8910,310,153,,,,985,L1050 U1022 8009s,84261,,, +395,HOL,,OA,b,Amsterdam / Schiphol / Assendelft (nho),52.479167,4.791667,,0.015,,117,291,64,,,,989,L442 U419 ,84306,,, +395,DNK,,GE,b,Billund (sdk),55.4375,9.041667,,0.025,,408,24,77,,,,5,L395 U406 9.8s,84291,,, +395,MLT,,MLT,b,Malta (mt),35.8125,14.541667,,0.4,,1923,157,80,,,,31,L1024 U1026 7.3s,ID+4.5 gap,84304,, +395,F,,GSG,b,Gourin (56),48.145833,-3.625,,0.025,,839,242,81,,,,,U3 ,ID+15 tone,84292,, +395,IRL,,FOY,b,Foynes for Shannon (LK),52.5625,-9.208333,,0.05,,1060,279,81,,,,10,L390 U400 6.1s,ID+3 gap,84288,, +395,F,,FC,b,Figeac / Livernon (46),44.6875,1.791667,,0.025,,893,204,82,,,,,L46 ,DAID,84287,, +395,G,,LAY,b,Islay (SC-AGB),55.6875,-6.208333,,0.025,,916,301,82,,,,0,L412 U401 ,84300,,, +395,F,,OB,b,Marseille / Provence (13),43.229167,5.625,,0.025,,989,184,83,,,,,L405 U403 10.0s,84307,,, +395,HNG,,BR,b,Budapest/Ferenc Liszt Int. (Bud),47.395833,19.375,,0.025,,1067,114,84,,,,998,L1024 U1017 ,ID+8gap,84282,, +395,E,,B,b,Bilbao (PVA-BI),43.354167,-3.041667,,0.025,,1201,220,85,,,,994,L1008 U1010 7.4s,ID+9 gap,84281,, +395,UKR,,LE,b,Krasnolesye / Tchervonolissia,44.854167,34.291667,,0.025,,2191,100,95,,,,964,L1020 U949 ,IDx2 + 23 gap,84302,, +395,MRC,,SFI,b,Safi (dka),32.3125,-9.125,,0.025,,2534,216,98,,,,,U400 9.16s,84312,,, +395,LBY,,PRC,b,Zella 74 (juf),28.5625,17.291667,,0.025,,2769,157,101,,,,995,L1030 U1020 6.6s,ID+2 gap,84311,, +395,TUR,,ADA,b,Adana-Sakirpasa LTAF (akd-ada),36.970972,35.261514,,0.025,,2809,115,101,,,,0,L1025 U1020 ,ID+7 gap,84279,, +395,ARM,,ZR,b,Yerevan / Zvarnots (erv),40.145833,44.291667,,0.025,,3162,100,105,,,,,,84322,,, +395,CAN,,YL,b,Lynn Lake (MB),56.8125,-101.041667,,1.6,,6223,321,117,,,,,U408 10.3s,DAID,84321,, +395,IRN,,TBS,b,Tabas (skh),33.645833,56.875,,0.025,,4481,97,118,,,,994,L1024 U1020 ,ID+8 gap,84315,, +395,USA,,SL,b,Briel Saranac Lake (NY),44.479167,-74.125,,0.025,,5706,296,130,,,,998,L1020 U1018 8600s,84313,,, +395,USA,,GBR,b,Great Barrington (MA),42.1875,-73.375,,0.025,,5822,293,131,,,,999,L1024 U1026 5524s,84289,,, +395,CAN,,L7,b,Estevan (SK),49.229167,-102.875,,0.25,,6925,316,132,,,,,U428 9.9s,DAID,84299,, +395,CAN,,H7,b,#NAME?,53.979167,-91.041667,,0.025,,5976,314,133,,,,,,87212,,, +395,USA,,TSO,b,Tolson Carrollton (OH),40.5625,-81.041667,,0.025,,6419,296,137,,,,999,L1028 U1027 5.30s,84316,,, +395,USA,,OS,b,Pober Oshkosh (WI),43.854167,-88.541667,,0.025,,6609,303,139,,,,3,L1020 U1040 6014s,84308,,, +395,USA,,XEN,b,Xenia (OH),39.729167,-83.958333,,0.025,,6662,297,140,,,,985,L1090 U1060 5648s,84320,,, +395,CAN,,5V,b,Drumheller (AB),51.520833,-112.791667,,0.05,,7166,323,142,,,,,U400 10.46s,DBID,84278,, +395,USA,,JM,b,Sabon Jamestown (ND),46.854167,-98.541667,,0.025,,6909,312,142,,,,975,L1059 U1019 6.07s,84295,,, +395,USA,,TAZ,b,Taylorville (IL),39.520833,-89.291667,,0.025,,6997,300,143,,,,9,L1024 U1025 5891s,TWEB,84314,, +395,USA,,CWV,b,Claxton (GA),32.1875,-81.875,,0.025,,7134,290,144,,,,992,L1071 U1078 6275s,84286,,, +395,MEX,,GD,b,Guadalajara (Jalisco) (jal),20.479167,-103.208333,,1,,9479,298,145,,,,26,L909 U1037 7.0s,DB3ID,84290,, +395,USA,,HR,b,Bakky Harrison (AR),36.145833,-93.125,,0.025,,7501,300,148,,,,,L1042 U1032 5.9s,86820,,, +395,USA,,CA,b,Harvs Newton (KS),38.145833,-97.291667,,0.025,,7572,305,149,,,,5,L1042 U1050 6.3s,84283,,, +395,USA,,ULS,b,Ulysses (KS),37.604167,-101.375,,0.025,,7845,307,151,,,,0,L1015 U1012 7.60s,84317,,, +395,USA,,HU,b,Tutte Houston (TX),29.604167,-95.375,,0.025,,8194,298,155,,,,12,L1035 U1060 ,84293,,, +395,CLN,,KG,b,Koggala (gle),5.994722,80.323056,,0.025,,8387,99,157,,,,,,34700021,,, +395,CLM,,CU,b,Ccuta (nsa),8.020833,-72.541667,,0.025,,8551,266,158,,,,997,L1036 U1030 7.32s,84285,,, +395,B,,PNC,b,Porto Nacional (TO),-10.729167,-48.375,,0.025,,8718,235,159,,,,,L1022 U1113 ,84310,,, +395,CTR,,PAR,b,Parrita,9.520833,-84.291667,,0.025,,9221,276,160,,,,,U1009 7163s,86821,,, +395,AUS,,MOG,b,Mount Magnet (WA),-28.0625,117.875,,0.025,,13868,92,176,,,,,L1020 8s,84305,,, +395,AUS,,PMQ,b,Port MacQuarie (NSW),-31.4375,152.875,,0.025,,16461,63,184,,,,,L400 U400 8s,84309,,, +396,XOE,,EUP,b,Europa EZ,53.229167,2.291667,,0.025,,304,296,76,,,,,L405 U397 5.4s,86618,,, +396,NOR,,YG,b,Rygge / Enge,59.354167,10.791667,,0.025,,850,17,81,,,,0,L399 U401 10.0s,84350,,, +396,F,,ROC,b,Rochefort / St Agnant (17),45.895833,-0.958333,,0.025,,874,221,82,,,,,U5 ,ID+14 tone,84344,, +396,I,,RON,b,Ronchi dei Legionari (go),45.8125,13.375,,0.025,,865,141,82,,,,12,L1020 U1045 ,ID+4.5 gap,84345,, +396,ROU,,SCV,b,Suceava / Salcea (SV),47.645833,26.375,,0.025,,1508,101,88,,,,4,L1020 U1020 4.6s,Cont. ID,84346,, +396,POR,,AI,b,Aveiro (avo),40.604167,-8.708333,,0.025,,1720,228,90,,,,0,L1020 U1020 ,84323,,, +396,NOR,,FS,b,Harstad / Narvik / Evenes / Fjellstad,68.604167,16.708333,,0.025,,1913,13,92,,,,993,L399 U405 ,84331,,, +396,TUR,,IS,b,Istanbul (mam-ist),41.0625,28.791667,,0.025,,2092,117,94,,,,936,L1100 U972 ,Cont. ID,84336,, +396,GRL,,MV,b,Mestersvig (neg),72.229167,-23.958333,,0.025,,2673,338,100,,,,,U400 ,84341,,, +396,MRC,,ALS,b,Agadir / Al Massira (smd),30.3125,-9.291667,,0.025,,2743,214,100,,,,0,L400 U399 10.4s,ID+7 gap,84325,, +396,CAN,,JC,b,Rigolet (NL),54.1875,-58.458333,,0.5,,4178,300,102,,,,2,L400 U394 10.4s,DAID,84337,, +396,SYR,,ALE,b,Aleppo (alp),36.1875,37.208333,,0.025,,2992,114,103,,,,0,L409 U400 ,ID+7 gap,84324,, +396,CAN,,PH,b,Inukjuak (QC),58.4375,-78.125,,0.5,,5040,313,110,,,,,L400 U400 10.2s,DAID,87215,, +396,CAN,,YPH,b,Inukjuak (QC),58.4375,-78.125,,0.5,,5040,313,110,,,,2,L400 U401 10249s,DAID,84351,, +396,USA,,NEL,b,Lakehurst (NJ),40.0625,-74.375,,0.025,,6040,292,133,,,,33,L1002 U1070 6262s,84342,,, +396,USA,,APH,b,Fort A P Hill (VA),38.104167,-77.291667,,0.025,,6373,292,137,,,,0,L1038 U1040 7992s,84326,,, +396,USA,,LNL,b,Land O Lakes (WI),46.145833,-89.208333,,0.025,,6468,306,138,,,,5,L1010 U1016 6246s,84340,,, +396,USA,,UV,b,Bales Martinsville (VA),36.604167,-79.958333,,0.025,,6658,292,140,,,,997,L1025 U1019 4183s,84348,,, +396,USA,,JJO,b,Mountain City (TN),36.395833,-81.791667,,0.025,,6790,293,141,,,,996,L1028 U1017 7881s,84338,,, +396,USA,,GOI,b,Godman Fort Knox (KY),37.979167,-85.958333,,0.025,,6922,297,142,,,,987,L1041 U1021 8192s,84332,,, +396,USA,,BKO,b,Barnwell (SC),33.354167,-81.458333,,0.025,,7012,291,143,,,,997,L1022 U1016 ,84327,,, +396,ALS,,CMJ,b,Clam Cove Ketchikan (AK),55.354167,-131.708333,,0.025,,7460,336,148,,,,993,L1047 U1034 ,84328,,, +396,BAH,,ZBB,b,South Bimini,25.729167,-79.291667,,0.025,,7496,283,148,,,,,,87216,,, +396,USA,,HDE,b,Holdrege (NE),40.4375,-99.375,,0.025,,7492,307,148,,,,983,L1070 U1025 4571s,84333,,, +396,USA,,CQB,b,Tilghman Chandler (OK),35.729167,-96.791667,,0.025,,7750,303,150,,,,,U998 5.83s,84329,,, +396,BGD,,CB,b,Cox's Bazar (cgg),21.452778,91.965556,,0.025,,7845,80,151,,,,,,36300003,,, +396,USA,,PA,b,Ritts Everett (WA),48.0625,-122.291667,,0.025,,7862,326,152,,,,980,L1055 U1020 5.88s,84343,,, +396,USA,,CRS,b,Corsicana (TX),32.020833,-96.375,,0.025,,8045,300,153,,,,993,L1021 U1018 6.5s,84330,,, +396,USA,,BNO,b,Burns (OR),43.5625,-118.958333,,0.025,,8158,322,155,,,,,U1032 ,87213,,, +396,USA,,IEW,b,Winters (TX),31.9375,-99.958333,,0.025,,8262,302,156,,,,7,L1010 U1005 4.60s,84335,,, +396,USA,,GOL,b,Gold Beach (Muni) (OR),42.4375,-124.458333,,0.025,,8490,325,158,,,,,,87214,,, +396.5,G,,PY,b,Plymouth / City (EN-DVN),50.4375,-4.125,,0.025,,755,260,81,,,,501,L396 U402 7.7s,ID+5 gap,84352,, +397,HOL,,EHN,b,Eindhoven/EHEH (nbr),51.467944,5.394861,,0.015,,100,225,58,,,,5,L400 U411,84364,,, +397,F,,BLB,b,Blois / Le Breuil (41),47.6875,1.208333,,0.025,,617,219,79,,,,,L407 U400 10.0s,ID+6 gap,84356,, +397,POL,,OL,b,Szczecin / Golienow,53.5625,14.958333,,0.025,,596,71,79,,,,2,L1015 U1015 5.5s,84374,,, +397,G,,LZD,b,Lydd (EN-KNT),50.979167,0.958333,,0.012,,397,254,80,,,,10,L397 U412 6.5s,84371,,, +397,F,,EG,b,Grenoble / St Geoirs (38),45.354167,5.375,,0.025,,755,186,81,,,,,L400 U404 10.3s,ID+8 gap,84363,, +397,S,,NF,b,Falkping,58.229167,13.625,,0.025,,819,31,81,,,,990,L410 U392 4.2s,84373,,, +397,BIH,,LU,b,Banja Luka (srp),44.979167,17.291667,,0.04,,1125,131,82,,,,983,L1053 U1040 ,ID+6 tone,84369,, +397,F,,ZR,b,Beziers / Vias (34),43.3125,3.291667,,0.025,,1005,195,83,,,,,L1 U28 ,DAID,84383,, +397,F,,PO,b,Pau / Pyrnes (64),43.3125,-0.125,,0.025,,1093,209,84,,,,,U5 ,84377,,, +397,IRL,,OP,b,Dublin (D),53.395833,-6.125,,0.015,,854,285,84,,,,998,L402 U404 9.8s,84375,,, +397,S,,LM,b,Borlnge / Rommehed / Falun,60.395833,15.625,,0.025,,1081,28,84,,,,995,L400 U390 5.0s,84368,,, +397,HRV,,CV,b,Dubrovnik / Cavtat (du),42.604167,18.208333,,0.025,,1377,135,87,,,,1,L1038 U1018 ,ID+5 gap,84362,, +397,ALG,,CHE,b,Cherchell (42),36.604167,2.208333,,0.04,,1755,192,88,,,,988,L1045 U1027 ,84358,,, +397,EST,,UM,b,Tartu/Ulenurme (Tar),58.3125,26.791667,,0.025,,1457,54,88,,,,3,L796 U798 7.5s,84379,,, +397,ALG,,CNE,b,Constantine / Ain-El-Bey (25),36.1875,6.708333,,0.025,,1771,179,91,,,,,U31 12.7s,ID+11 tone,84361,, +397,BUL,,WN,b,Varna (vrn),43.229167,27.708333,,0.025,,1865,114,92,,,,994,L1025 U1041 ,ID+4 gap,84381,, +397,GRC,,LVO,b,Mitilini/Odysses Elytis (neg-les),39.0625,26.595833,,0.025,,2125,125,94,,,,991,L343 U300 ,ID+6 gap,84370,, +397,ISL,,SE,b,Selfoss,63.9375,-21.041667,,0.025,,2056,320,94,,,,,,86621,,, +397,CNR,,FV,b,Fuerteventura (LPM-FU),28.395833,-13.875,,0.02,,3126,220,105,,,,,L1034 U1027 14.2s,84366,,, +397,TUR,,VAN,b,Van (dad-van),38.479167,43.375,,0.025,,3217,103,105,,,,983,L1065 U1030 ,Cont. ID,84380,, +397,IRN,,AA,b,Tehran / Mehrabad / Aliabad (thr),35.645833,51.458333,,0.025,,3965,99,113,,,,,,84353,,, +397,CAN,,J,b,Alpine / Saint John (NB),45.229167,-65.958333,,0.05,,5145,292,121,,,,,,87220,,, +397,CAN,,ZST,b,Alpine Saint John (NB),45.229167,-65.958333,,0.05,,5145,292,121,,,,,U419 10300s,DAID,84385,, +397,USA,,OW,b,Stoge Norwood (MA),42.104167,-71.125,,0.025,,5686,292,130,,,,988,L1058 U1036 6.13s,84376,,, +397,CAN,,3I,b,Mobil Sierra Fort Nelson (BC),58.8125,-121.375,,0.2,,6816,332,132,,,,,U407 10.0s,DAID,87217,, +397,CAN,,A,b,Hamilton (ON),43.1875,-80.041667,,0.014,,6160,298,137,,,,,,87218,,, +397,CAN,,ZHA,b,Ancaster (Hamilton) (ON),43.1875,-80.041667,,0.014,,6160,298,137,,,,998,L401 U401 10264s,DAID,84382,, +397,USA,,BE,b,Mally Benton Harbour (MI),42.145833,-86.291667,,0.025,,6612,301,139,,,,983,L1045 U1035 5894s,84355,,, +397,USA,,AIT,b,Aitkin (MN),46.5625,-93.708333,,0.025,,6680,309,140,,,,13,L978 U1046 7171s,84354,,, +397,CAN,,E,b,Saskatoon (SK),52.229167,-106.708333,,0.025,,6846,320,141,,,,,U390 ,DAID,87219,, +397,CAN,,ZSS,b,Yellowhead (Saskatoon) (SK),52.229167,-106.708333,,0.025,,6846,320,141,,,,,U397 10.5s,DAID,84384,, +397,USA,,MXO,b,Monticello (IA),42.1875,-91.125,,0.025,,6888,304,142,,,,,U1035 ,84372,,, +397,USA,,CIN,b,Carroll (IA),42.0625,-94.791667,,0.025,,7104,306,144,,,,,U1016 5.0s,84359,,, +397,USA,,EJK,b,Greensboro (GA),33.604167,-83.125,,0.025,,7098,292,144,,,,,,84365,,, +397,USA,,CIR,b,Cairo (IL),37.0625,-89.208333,,0.025,,7192,299,145,,,,,L1016 U1022 6.3s,84360,,, +397,USA,,JE,b,Algoa Jefferson City (MO),38.5625,-92.041667,,0.025,,7236,301,145,,,,999,L1052 U1050 5928s,84367,,, +397,USA,,LLJ,b,Challis (ID),44.520833,-114.208333,,0.05,,7863,319,149,,,,,,87221,,, +397,USA,,BWK,b,Bunkie (LA),30.854167,-92.208333,,0.025,,7894,296,152,,,,988,L1053 U1027 7.8s,84357,,, +397,USA,,SB,b,Petis San Bernardino (CA),34.0625,-117.375,,0.05,,8990,316,157,,,,965,L1056 U988 6.0s,84378,,, +397,MYA,,MDS,b,Mingaladon (Yangon) (ygn),16.874444,96.109722,,0.025,,8515,80,158,,,,,,22100014,,, +397.5,XOE,,NIA,b,Brittania Platform,58.0625,1.125,,0.025,,742,335,80,,,,500,L~400 U~400 ,84386,,, +398,XOE,,KCH,b,Ketch / Shell Uk Ltd Platform,54.0625,2.458333,,0.025,,342,311,76,,,,,L388 U391 ,86622,,, +398,F,,LRN,b,Lorquin / Xouaxange (57),48.6875,6.958333,,0.025,,383,174,77,,,,,U10 ,84401,,, +398,F,,MT,b,St Nazaire / Montoir (44),47.354167,-2.041667,,0.05,,804,232,78,,,,,L398 U402 ,84404,,, +398,DNK,,GL,b,Aalborg (njy),57.104167,9.708333,,0.025,,594,20,79,,,,999,L364 U363 5.0s,84395,,, +398,F,,LPD,b,Montlucon / Gueret (03),46.3125,2.375,,0.025,,708,206,80,,,,,U37 ,ID+17 tone,84400,, +398,IRL,,OK,b,Connaught (MO),53.9375,-8.708333,,0.025,,1029,287,83,,,,1,L1021 U1026 ,ID+5 gap,84407,, +398,S,,PEO,b,Stockhlom / Skavsta / Peola,58.8125,17.041667,,0.025,,1000,38,83,,,,997,L401 U394 ,84410,,, +398,I,,PRU,b,Perugia / San Egidio (pg),43.104167,12.541667,,0.025,,1101,153,84,,,,999,L1019 U1020 ,ID+6 gap,84411,, +398,NOR,,AL,b,Alesund / Vigra,62.604167,6.208333,,0.025,,1167,359,85,,,,2,L396 U388 7.5s,84388,,, +398,FIN,,ESS,b,Kokkola-Pietarsaari /Kruunupyy / Esse,63.645833,23.125,,0.025,,1609,31,89,,,,3,L405 U409 8.5s,84393,,, +398,MDA,,LD,b,Chişinău (CU),46.9375,29.041667,,0.025,,1723,100,90,,,,0,L400 U400 ,84399,,, +398,MDA,,RG,b,Chişinău (CU),46.9375,28.875,,0.025,,1712,101,90,,,,0,L1050 U1050 ,IDx2,84412,, +398,RUS,,L,b,Korenovsk,45.4375,39.458333,,0.025,,2508,94,98,,,,,L413 U405 ,IDX2 + 10 gap,86623,, +398,UZB,,NO,b,Termez (sux),37.299722,67.364722,,0.025,,4928,84,122,,,,,,84406,,, +398,CHN,,RM,b,Urumqi / Diwopu (XJ),43.9375,87.625,,0.025,,5786,65,131,,,,,U1035 14.05s,IDx2 + 10 gap,84413,, +398,CAN,,G,b,Golf / Windsor (ON),42.229167,-83.041667,,0.025,,6413,299,137,,,,,,87222,,, +398,CAN,,ZQG,b,La Salle (Windsor) (ON),42.229167,-83.041667,,0.025,,6413,299,137,,,,,U403 10.5s,DAID,87223,, +398,CAN,,3D,b,Cumberland House (SK),53.9375,-102.291667,,0.025,,6508,319,138,,,,,U405 8.14s,84387,,, +398,USA,,TGQ,b,Elizabethtown (NC),34.520833,-78.541667,,0.025,,6732,290,140,,,,0,L1023 U1024 4482s,84414,,, +398,CAN,,YOD,b,Cold Lake (AB),54.395833,-110.291667,,0.025,,6811,324,141,,,,976,L1048 U1000 8.4s,DAID,84415,, +398,KEN,,RA,b,Manyani (coa),-3.102222,38.500833,,0.025,,6841,143,141,,,,,,8300007,,, +398,USA,,HFY,b,Greenwood Indianapolis (IN),39.645833,-86.125,,0.025,,6799,299,141,,,,983,L1021 U1024 6790s,84396,,, +398,AUS,,BOU,b,Boulia (QLD),-22.895833,139.875,,0.025,,14914,69,179,,,,,L400 U400 8s,84391,,, +398,NZL,,OT,b,Westpoint (AUK),-37.0625,174.625,,0.13,,18105,33,183,,,,997,L1040 U1020 8s,84409,,, +399,D,,WBD,b,Wiesbaden (hes),50.0625,8.291667,,0.05,,263,149,73,,,,989,L1045 U1023 8.2s,84431,,, +399,G,,NGY,b,New Galloway for Prestwick (SC-DGA),55.1875,-4.208333,,0.08,,778,300,76,,,,991,L416 U401 6.0s,ID+2 gap,84425,, +399,S,,FM,b,Trollhttan/Vnersborg,58.354167,12.291667,,0.025,,787,26,81,,,,0,L398 U406 5.0s,84420,,, +399,E,,MTN,b,Salamanca / Matacan (CAL-SA),40.979167,-5.291667,,0.1,,1523,220,82,,,,989,L1033 U1011 11.7s,ID+8 gap,84424,, +399,E,,EAG,b,Logroo / Agoncillo (RIO-LO),42.4375,-2.291667,,0.025,,1258,215,86,,,,,L1082 U1020 7.3s,ID+5 gap,86624,, +399,FIN,,O,b,Rovaniemi / Somerharju,66.5625,25.791667,,0.025,,1929,26,92,,,,996,L408 U400 ,84426,,, +399,NOR,,BV,b,Berlevg (fi),70.854167,29.041667,,0.025,,2373,20,97,,,,5,L278 U481 ,84418,,, +399,JOR,,MDB,b,Amman / Queen Alia Intl / Madaba (amn),31.729167,35.875,,0.06,,3287,122,102,,,,0,L1027 U1030 ,ID+3 gap,84423,, +399,GRL,,UP,b,Upernavik (Kitaa) (qaa-upk),72.8125,-56.125,,0.025,,3681,331,110,,,,44,L362 U463 9.2s,84430,,, +399,UAE,,AIN,b,Al Ain Int. (abd),24.229167,55.625,,0.025,,5159,108,125,,,,,,84417,,, +399,USA,,RL,b,Bracy Waterville (ME),44.479167,-69.708333,,0.025,,5431,293,127,,,,995,L1024 U1015 8600s,84427,,, +399,CAN,,4M,b,Red Sucker Lake (MB),54.1875,-93.541667,,0.05,,6082,315,131,,,,,U442 10.04s,DAID,84416,, +399,CAN,,D,b,Delta / Dryden (ON),49.8125,-92.625,,0.025,,6368,311,137,,,,,,87225,,, +399,CAN,,ZHD,b,Thunder Dryden (ON),49.8125,-92.625,,0.025,,6368,311,137,,,,0,L400 U405 10.5s,DAID,84432,, +399,CAN,,C1,b,Airdrie (AB),51.270833,-113.958333,,0.025,,7236,323,145,,,,,,87224,,, +399,ALS,,SRI,b,Pribilof St George (AK),56.5625,-169.625,,0.05,,7926,358,149,,,,999,L1049 U1049 7.86s,84429,,, +399.5,BEL,,ONO,b,Oostende (vlg-wvl),51.229167,2.958333,,0.025,,257,249,76,,,,503,L400 U1022 13.5s,84433,,, +400,HRV,,BRZ,b,Rijeka / Krk / Breza (ri),45.4375,14.375,,2,,943,139,63,,,,1,L1024 U1027 ,ID+4 gap,84442,, +400,D,,MSW,b,Mnchen (bay),48.3525,11.903889,,0.1,,572,135,73,,,,,U1027 5.5s,84462,,, +400,XOE,,CLW,b,Maersk Curlew FPSO,56.729167,1.291667,,0.025,,611,329,79,,,,,,86627,,, +400,NOR,,NTD,b,Notodden,59.604167,9.125,,0.025,,850,10,81,,,,993,L376 U379 ,84465,,, +400,F,,AG,b,Agen / La Garenne (47),44.145833,0.708333,,0.025,,981,208,83,,,,,U5 19.8s,ID+16 tone,84437,, +400,S,,EN,b,rebro,59.270833,15.041667,,0.025,,961,31,83,,,,2,L398 U392 ,84446,,, +400,XOE,,NS,b,Kerr Mc Gee / Chevron Ninian South Platform,60.8125,1.458333,,0.025,,1014,345,83,,,,,U1020 ,84464,,, +400,HNG,,BC,b,Bkscsaba (Bek),46.6875,21.125,,0.025,,1220,114,85,,,,993,L1041 U1033 ,ID+2 gap,84441,, +400,E,,B,b,Valncia / Manises (VAL-V),39.479167,-0.458333,,0.025,,1500,203,88,,,,0,L999 U1020 ,ID+3 tone,84440,, +400,ISL,,OG,b,safjrur/Ogur (vf),66.0625,-22.708333,,0.025,,2237,325,95,,,,,U1010 8.4s,86629,,, +400,RUS,,I,b,Lipetsk (LI),52.6875,39.541667,,0.025,,2229,75,95,,,,,15.0s,IDx2 + 12 tone,86628,, +400,CAN,,ZYG,b,Covehead (Charlottetown) (PE),46.354167,-63.125,,0.05,,4893,291,119,,,,,U420 ,DAID,84485,, +400,CAN,,G,b,Charlottetown / Covehead (PE),46.354167,-63.125,,0.025,,4893,291,122,,,,,,DAID,87227,, +400,USA,,PTD,b,Potsdam (NY),44.729167,-74.875,,0.025,,5735,296,130,,,,0,L1015 U1010 5759s,84470,,, +400,USA,,FO,b,Squir Westhampton Beach (NY),40.895833,-72.541667,,0.025,,5863,291,132,,,,,U1019 4804s,84451,,, +400,B,,NTL,b,Natal (RN),-5.895833,-35.208333,,1,,7554,225,133,,,,,U1018 ,84466,,, +400,USA,,RO,b,Breit Rochester (NY),43.145833,-77.541667,,0.025,,6011,296,133,,,,981,L1055 U1016 6232s,84473,,, +400,USA,,AB,b,Leehi Allentown (PA),40.604167,-75.541667,,0.025,,6074,293,134,,,,,L1032 ,84436,,, +400,CAN,,7F,b,Collins Bay (SK),58.229167,-103.708333,,0.025,,6223,323,135,,,,998,L399 U400 8.19s,84435,,, +400,USA,,CI,b,Koloe Sault Ste. Marie (MI),46.3125,-84.541667,,0.025,,6193,303,135,,,,984,L1050 U1018 5735s,84444,,, +400,USA,,NHK,b,Patuxent Patuxent River (MD),38.270833,-76.375,,0.025,,6302,291,136,,,,974,L1050 U1012 8.50s,84463,,, +400,USA,,SLW,b,Smithville (OH),40.895833,-81.791667,,0.025,,6439,297,137,,,,,,84476,,, +400,CAN,,1L,b,Fort Mackay/Firebag (AB),57.270833,-110.958333,,0.025,,6589,326,139,,,,,L402 U400 8.10s,DAID,84434,, +400,USA,,CKN,b,Crookston (MN),47.854167,-96.625,,0.025,,6729,311,140,,,,2,L1005 U1024 34000s,AWOS-3,84445,, +400,USA,,FGX,b,Flemingsburg (KY),38.520833,-83.708333,,0.025,,6741,296,140,,,,,,84449,,, +400,USA,,MS,b,Monah Madison (WI),43.0625,-89.375,,0.025,,6718,303,140,,,,2,L1028 U1030 6376s,84461,,, +400,USA,,XW,b,Flmng Mason (KY),38.5625,-83.625,,0.025,,6733,296,140,,,,988,L1013 U1007 5.14s,84483,,, +400,USA,,PPI,b,Hopey St Paul (MN),44.854167,-92.958333,,0.025,,6776,307,141,,,,,L1048 U1015 8390s,84469,,, +400,USA,,LKR,b,Lancaster (SC),34.729167,-80.875,,0.025,,6865,291,142,,,,995,L1030 U1023 5.73s,84458,,, +400,USA,,SLO,b,Salem (IL),38.645833,-88.958333,,0.025,,7048,300,143,,,,1,L1023 U1012 7633s,84475,,, +400,USA,,AFD,b,Watford City (ND),47.8125,-103.291667,,0.025,,7064,315,144,,,,,L1052 ,87226,,, +400,USA,,MDS,b,Wentworth Madison (SD),44.020833,-97.125,,0.025,,7069,309,144,,,,307,U1020 6.2s,84459,,, +400,USA,,UWI,b,Whitfield Dalton (GA),34.770833,-84.958333,,0.025,,7119,294,144,,,,997,L1024 U1020 3.55s,84479,,, +400,USA,,TRX,b,Trenton (MO),40.0625,-93.625,,0.025,,7204,304,145,,,,973,U1018 6.0s,84478,,, +400,B,,CAX,b,Duque de Caxias (RJ),-22.770833,-43.375,,1,,9624,225,146,,,,0,L1029 U1030 ,84443,,, +400,USA,,AHQ,b,Wahoo (NE),41.229167,-96.625,,0.025,,7274,306,146,,,,9,L1021 U1039 6.0s,84438,,, +400,USA,,OHY,b,Coney Cordele (GA),31.979167,-83.875,,0.025,,7279,291,146,,,,997,L1023 U1023 7.32s,84467,,, +400,USA,,EWP,b,Newport (AR),35.645833,-91.208333,,0.025,,7429,299,147,,,,,U1020 7.5s,84448,,, +400,USA,,LKO,b,Logan Billings (MT),45.770833,-108.375,,0.025,,7483,317,148,,,,,,87229,,, +400,CAN,,QQ,b,Comox (BC),49.770833,-124.958333,,0.025,,7795,329,151,,,,3,L409 U414 10.0s,DAID,84471,, +400,USA,,FN,b,Colln Fort Collins / Loveland (CO),40.354167,-104.958333,,0.025,,7794,311,151,,,,983,L1070 U1026 6.0s,84450,,, +400,IND,,MD,b,Madurai (TN),9.841944,78.099444,,0.025,,7899,98,152,,,,,,32200046,,, +400,USA,,AI,b,Addmo Ardmore (OK),34.229167,-96.958333,,0.025,,7888,302,152,,,,977,L1056 U1025 6.1s,84439,,, +400,USA,,HHF,b,Hemphill County Canadian (TX),35.895833,-100.375,,0.025,,7939,305,152,,,,20,L1010 U1050 ,84453,,, +400,USA,,ROB,b,Robinson Waco (TX),31.520833,-97.041667,,0.025,,8128,300,154,,,,985,L1054 U1018 10.0s,84474,,, +400,USA,,VQ,b,Besaq Alamosa (CO),37.354167,-105.958333,,0.025,,8113,310,154,,,,988,L1057 U1048 7.8s,84480,,, +400,XON,,RCF,b,Oil Platform,27.520833,-90.208333,,0.025,,8054,292,154,,,,990,L1020 U1000 ,84472,,, +400,CLN,,VNA,b,Vavuniya (vav),8.739444,80.488056,,0.025,,8157,97,155,,,,,,34700025,,, +400,MYA,,KG,b,Kengtung,21.3025,99.6325,,0.025,,8368,74,157,,,,,,22100023,,, +400,USA,,RBG,b,Roseburg (OR),43.229167,-123.375,,0.025,,8370,325,157,,,,,,87231,,, +400,CLM,,PIE,b,Piedecuesta (sat),6.895833,-73.125,,0.025,,8689,266,159,,,,996,L1044 U1026 8505s,84468,,, +400,USA,,HU,b,Lanee Sacramento (CA),38.604167,-121.625,,0.025,,8746,321,159,,,,,L1040 U1040 8.0s,87228,,, +400,MEX,,ENS,b,Ensenada (Baja California) (bcn),31.8125,-116.625,,0.025,,9167,314,160,,,,9,L985 U912 7.4s,DA3ID,84447,, +400,USA,,LPC,b,Lompoc (CA),34.6875,-120.458333,,0.025,,9073,318,160,,,,,,87230,,, +400,B,,GJM,b,Guajar-Mirim (RO),-10.770833,-65.291667,,0.025,,9740,249,162,,,,,L1022 U993 6882s,84452,,, +400,EQA,,OLM,b,Olmedo (pic),0.145833,-78.041667,,0.025,,9616,266,162,,,,,U1132 7.16s,86824,,, +400,MDW,,MDY,b,Midway Gooneyville (Sand Island),28.1875,-177.375,,0.025,,11079,3,167,,,,0,L402 U401 6.29s,84460,,, +400.5,DNK,,EJ,b,Esbjerg (sdk),55.5625,8.708333,,0.025,,412,21,77,,,,500,L406 U405 3.3s,84487,,, +400.5,I,,COD,b,Codogno (lo),45.229167,9.541667,,0.025,,799,162,81,,,,496,L1020 U1018 ,ID+5 gap,84486,, +401,E,,COA,b,La Corua (GAL-C),43.354167,-8.291667,,0.25,,1464,234,78,,,,2,L1033 U1031 21.4s,ID+18 gap,84494,, +401,E,,LRA,b,La Corua (GAL-C),43.354167,-8.291667,,0.25,,1464,234,78,,,,,L1020 U1020 ,87232,,, +401,F,,LA,b,Laval / Entrammes (53),47.979167,-0.708333,,0.025,,685,231,80,,,,986,U5 ,DAID,84503,, +401,G,,BBA,b,Benbecula (SC-WIL),57.479167,-7.375,,0.025,,1063,310,84,,,,0,L405 U403 5.7s,84491,,, +401,NOR,,RBU,b,Roros / Rambu,62.520833,11.541667,,0.025,,1197,13,85,,,,,L405 U395 ,86634,,, +401,E,,PTC,b,Porto Colom (PMI) (BAL-ML),39.4375,3.291667,,0.025,,1429,191,87,,,,29,L966 U1109 ,ID+11 gap,84507,, +401,I,,BPL,b,Bari / Palese (ba),41.104167,16.541667,,0.025,,1445,144,87,,,,990,L1017 U1020 ,ID+2.5 gap,84492,, +401,FIN,,JP,b,Joensuu / Marjosrkk,62.645833,29.791667,,0.025,,1809,41,91,,,,2,L402 U406 ,ID+5 gap,84500,, +401,POR,,LO,b,Lisbon / Caparica (lis),38.854167,-9.125,,0.025,,1899,225,92,,,,2,L1018 U1020 8.07s,84504,,, +401,MRC,,ALU,b,Al Hocema/Cherif Al Idrissi,35.1875,-3.875,,0.025,,2051,207,93,,,,998,L1017 U1020 ,84488,,, +401,UKR,,D,b,Dzhankoi (KR),45.6875,34.375,,0.025,,2149,98,94,,,,,,84495,,, +401,GRC,,MKO,b,Mikonos (seg-kik),37.4375,25.375,,0.025,,2201,130,95,,,,0,L410 U412 ,ID+6 gap,84506,, +401,RUS,,AN,b,Anapa / Vityazevo (KD),44.979167,37.291667,,0.025,,2386,97,97,,,,,L1030 U1050 ,IDx2 + 11 gap,86630,, +401,RUS,,AP,b,Anapa / Vityazevo (KD),45.020833,37.375,,0.025,,2389,97,97,,,,,L1010 U1023 ,86631,,, +401,KAZ,,AY,b,Atyrau (aty),47.145833,51.791667,,0.025,,3260,81,106,,,,,,84490,,, +401,CAN,,Y8,b,Drummondville (QC),45.854167,-72.375,,0.13,,5504,296,121,,,,,U392 9.47s,DAID,84509,, +401,CAN,,YPO,b,Peawanuck (ON),54.979167,-85.458333,,0.13,,5626,312,122,,,,,U388 10.32s,DAID,84510,, +401,USA,,IS,b,Stals Kingston (NC),35.229167,-77.708333,,0.025,,6623,290,139,,,,,,84499,,, +401,USA,,LA,b,Earle Lafayette (IN),40.4375,-87.041667,,0.025,,6791,300,141,,,,986,L1040 U1017 6070s,84502,,, +401,USA,,GGK,b,Mayfield (KY),36.6875,-88.625,,0.025,,7188,298,145,,,,980,L1052 U1012 7.9s,84497,,, +401.5,D,,BET,b,Rheine / Bentlage (nrw),52.270833,7.375,,0.025,,68,74,44,,,,502,L1036 U1041 16.0s,84511,,, +402,BEL,,OP,b,Brussels National (bru),50.5625,4.375,,0.025,,223,220,75,,,,998,L403 U397 10.0s,84530,,, +402,XOE,,AA,b,K14-FA-1C/Pentacon A Platform,53.270833,3.625,,0.025,,228,306,75,,,,0,L400 U400 ,84512,,, +402,XOE,,AI,b,Nam / Noordwinning FA1 Platform,53.145833,3.625,,0.025,,220,303,75,,,,0,L400 U400 ,84513,,, +402,XOE,,KB,b,Placid K12-B Platform,53.354167,3.875,,0.025,,220,310,75,,,,998,L394 U397 5.0s,ID+3 gap,84522,, +402,XOE,,NAM,b,Nam FA1 Platform,53.3125,4.791667,,0.025,,173,321,75,,,,,U400 ,84528,,, +402,XOE,,NO,b,Nam / Noordwinning / Zanddijk FB-1 Platform,53.270833,3.875,,0.025,,214,308,75,,,,0,L1020 U1020 ,84529,,, +402,XOE,,WG,b,Nam Platform,54.854167,4.708333,,0.025,,325,340,76,,,,0,L1020 U1020 ,84538,,, +402,UKR,,TM,b,Tomakivka,47.8125,34.708333,,1,,2066,92,78,,,,994,L975 U961 9.5s,ID+6 gap,84537,, +402,XOE,,TAA,b,Talisman / Tartan Alpha,58.354167,0.041667,,0.025,,802,332,81,,,,,,84535,,, +402,F,,DA,b,Ales / Deaux (30),44.0625,4.125,,0.025,,911,192,82,,,,,L24 21.0s,ID+19 tone,84519,, +402,IRL,,FNR,b,Finner Army Camp / Bundoran (DL),54.479167,-8.208333,,0.025,,1005,291,83,,,,962,L425 U350 5.0s,84520,,, +402,S,,LX,b,Eskilstuna / Kjula,59.270833,16.708333,,0.025,,1023,35,83,,,,9769,L418 U380 ,84525,,, +402,S,,TH,b,Torsby,60.1875,12.875,,0.025,,982,21,83,,,,10,L390 U400 ,84536,,, +402,BIH,,ZV,b,Tuzla (tuz),44.479167,18.625,,0.025,,1237,128,85,,,,999,L1017 U1024 9.7s,ID + 5 tone,84541,, +402,I,,CAR,b,Villasimius / Capo Carbonara (ca),39.104167,9.541667,,0.04,,1466,169,86,,,,0,L1020 U1020 ,ID+4 gap,84516,, +402,MRC,,AML,b,Agadir / Al Massira (smd),30.3125,-9.458333,,0.025,,2750,214,100,,,,2,L404 U395 ,ID+5 gap,84514,, +402,CAN,,X7,b,Nain (Voisey Apt) (NL),56.354167,-62.125,,0.025,,4292,304,116,,,,,U1026 8s,84539,,, +402,IRN,,YZD,b,Yazd Shahid Sadooghi (yzd),31.895833,54.291667,,0.025,,4441,101,117,,,,,U950 ,84540,,, +402,SPM,,MQ,b,Miquelon (Grande Miquelon) (975),47.104167,-56.375,,0.025,,4415,289,117,,,,4,L401 U407 10148s,84527,,, +402,CAN,,L4,b,Nipawin (SK),53.354167,-104.041667,,0.2,,6634,320,130,,,,,U983 10328s,DAID,84523,, +402,USA,,LW,b,Haget Lawrence (MA),42.645833,-71.208333,,0.025,,5653,292,130,,,,995,L1028 U1027 4951s,84524,,, +402,CAN,,M3,b,Kindersley (SK),51.520833,-109.208333,,0.025,,7015,321,143,,,,,U1034 10.22s,DBID,84526,, +402,CUB,,C,b,Camagey (cm),21.395833,-77.875,,0.025,,7764,279,151,,,,728,L1110 U932 4005s,84515,,, +402,USA,,IFJ,b,Winnfield (LA),31.979167,-92.625,,0.025,,7823,297,151,,,,990,L1059 U1030 7926s,84521,,, +402,USA,,SYG,b,Sandy Point Houston (TX),29.520833,-95.458333,,0.025,,8206,298,155,,,,,U1032 ,84534,,, +402,USA,,CV,b,Carlz Carlsbad (NM),32.270833,-104.375,,0.025,,8483,306,158,,,,22,L1023 U1015 6.0s,84517,,, +402,CLM,,SJE,b,San Jos del Guaviare (guv),2.5625,-72.625,,0.025,,9035,263,160,,,,,,84533,,, +402,MEX,,CVJ,b,Cuernavaca (mor),18.8125,-99.291667,,0.025,,9388,294,161,,,,,U952 7.4s,84518,,, +402.5,G,,LBA,b,Leeds / Bradford (EN-WYK),53.854167,-1.625,,0.045,,571,293,76,,,,505,L403 U410 10.0s,84542,,, +403,SUI,,LPS,b,Les Eplatures (ne),47.0625,6.791667,,0.025,,562,177,79,,,,0,L395 U403 ss,ID+6 gap,84550,, +403,E,,TOB,b,Villatobas (CAM-TO),39.770833,-3.458333,,0.2,,1567,213,80,,,,5,L1019 U1015 14.2s,ID+3 gap,84559,, +403,F,,VZ,b,Vichy / Charmeil (03),46.145833,3.375,,0.025,,699,200,80,,,,,L400 U400 10.0s,ID+7 gap,84561,, +403,S,,OJ,b,Jnkping,57.6875,14.041667,,0.025,,788,35,81,,,,1,L397 U402 ,84556,,, +403,HNG,,M,b,Budapest/Ferenc Liszt Int. (Bud),47.4375,19.291667,,0.025,,1059,114,84,,,,998,L1021 U1020 ,ID+3 gap,84551,, +403,S,,NM,b,Mora / Slijan,61.020833,14.458333,,0.025,,1105,23,84,,,,6,L394 U406 ,84555,,, +403,FIN,,H,b,Helsinki / Vantaa,60.354167,24.958333,,0.025,,1459,44,88,,,,998,L411 U411 ,84547,,, +403,GRC,,KEK,b,Kerkyra / Ioannis Kapodistrias (ion-ker),39.604167,19.875,,0.015,,1732,138,93,,,,0,L401 U405 ,ID+3 gap,84549,, +403,LBY,,MB,b,Marsa al-Brega (wah),30.395833,19.541667,,0.025,,2643,151,99,,,,998,L1025 U1018 ,Cont. ID,84552,, +403,TUR,,TKT,b,Tokat (kdz-tok),40.3125,36.375,,0.025,,2626,108,99,,,,999,L1031 U1029 ,ID+6 gap,84558,, +403,TUR,,MRD,b,Mardin (gda-mar),37.229167,40.625,,0.025,,3129,108,104,,,,,U25 3.5s,Cont. ID,84554,, +403,ALS,,AMF,b,Ambler (AK),67.104167,-157.875,,0.4,,6694,353,128,,,,,L1025 U1040 ,TWEB,84543,, +403,CAN,,R,b,Romeo / Toronto (ON),43.729167,-79.708333,,0.04,,6100,298,132,,,,,,87235,,, +403,CAN,,ZTO,b,Woodhill / Brampton (Toronto) (ON),43.729167,-79.708333,,0.04,,6100,298,132,,,,0,L394 U393 10.4s,DAID,84562,, +403,USA,,PO,b,Meier Poughkeepsie (NY),41.5625,-73.958333,,0.025,,5904,293,132,,,,,,87234,,, +403,TZA,,MZ,b,Mwanza (mwz),-2.441944,32.923889,,0.025,,6558,149,139,,,,,,11400006,,, +403,USA,,MRT,b,Marysville (OH),40.229167,-83.375,,0.025,,6587,297,139,,,,,L1000 U1005 5.3s,87233,,, +403,USA,,BPO,b,Piney Grove Oneida (TN),36.520833,-84.458333,,0.025,,6947,295,142,,,,1,L1023 U1023 6888s,84546,,, +403,USA,,AXA,b,Algona (IA),43.0625,-94.291667,,0.025,,6994,306,143,,,,993,L1020 U998 6009s,84544,,, +403,VCT,,SV,b,E T Joshua Kingstown (sge),13.145833,-61.208333,,0.025,,7336,260,146,,,,,L1038 U1039 8310s,86825,,, +403,USA,,AZC,b,Colorado City (AZ),36.979167,-113.041667,,0.04,,8506,314,156,,,,995,L1020 U1022 7.0s,84545,,, +403,USA,,MFS,b,Horseshoe Bay Resort Marble Falls (TX),30.520833,-98.375,,0.025,,8294,300,156,,,,,U1021 6906s,84553,,, +403,SMA,,TUT,b,Tafuna (Tutuila Island) (AS),-14.3125,-170.708333,,2,,15804,355,163,,,,995,L1030 U1004 10.4s,84560,,, +403.5,XOE,,LNL,b,Lancelot A Platform,53.395833,1.375,,0.025,,368,295,77,,,,510,L400 U420 9.5s,84563,,, +404,SVK,,ZLA,b,Zilina (ZA),49.1875,18.541667,,2,,914,106,63,,,,998,L1022 U1015 ,ID+6 gap,84600,, +404,LUX,,LW,b,Luxembourg (lux),49.604167,6.208333,,0.05,,279,183,73,,,,926,L1090 U967 ,84586,,, +404,E,,LRD,b,Lleida=Lrida (CAT-L),41.5625,0.625,,0.25,,1252,203,76,,,,4,L1020 U1020 ,ID+6 gap,84584,, +404,F,,MRV,b,Merville / Calonne (59),50.6875,2.708333,,0.025,,302,240,76,,,,,L400 U402 ,84589,,, +404,F,,CNE,b,Caen / Carpiquet (14),49.104167,-0.291667,,0.025,,579,237,79,,,,,U39 ,84571,,, +404,F,,AGO,b,Angoulme / Brie Champniers (16),45.6875,0.458333,,0.025,,836,214,81,,,,,U5 ,DAID,84565,, +404,NOR,,DA,b,Torp / Dalen / Sandefjord,59.270833,10.291667,,0.025,,832,15,81,,,,3,L374 U379 ,84574,,, +404,G,,OBN,b,North Connell / Oban (SC-AGB),56.479167,-5.375,,0.025,,904,307,82,,,,0,L401 U403 8.0s,84592,,, +404,NOR,,VNG,b,Vangsnes,61.145833,6.625,,0.025,,1005,1,83,,,,997,L403 U397 ,84596,,, +404,S,,LA,b,Stockholm / Arlanda,59.729167,17.958333,,0.025,,1108,36,84,,,,4,L381 U404 9.0s,84583,,, +404,ROU,,BMR,b,Baia Mare (MM),47.6875,23.375,,0.025,,1307,105,86,,,,33,L1017 U1023 ,84568,,, +404,FIN,,JAN,b,Halli / Janne,61.854167,24.625,,0.025,,1537,38,88,,,,3,L403 U412 8.0s,84580,,, +404,FIN,,Y,b,Kemi-Tornio / Ketolanper,65.8125,24.625,,0.025,,1832,27,91,,,,7,L411 U415 4.0s,84598,,, +404,NOR,,KG,b,Stokmarknes / Kjerringnes,68.645833,15.458333,,0.025,,1900,11,92,,,,9,L368 U377 ,84582,,, +404,JOR,,AQ,b,Aqaba (aqb),29.580161,35.007017,,0.3,,3430,126,97,,,,,U1020 3.4s,ID+1 gap,84566,, +404,CAN,,YSL,b,St. Leonard (NB),47.1875,-67.875,,1,,5139,295,108,,,,,U391 10178s,DAID,84599,, +404,CAN,,Y,b,North Bay/Yankee (ON),46.3125,-79.541667,,0.05,,5903,300,129,,,,,U~400 ,87238,,, +404,CAN,,ZYB,b,Yellek / North Bay (ON),46.3125,-79.541667,,0.05,,5903,300,129,,,,990,L401 U396 10547s,DAID,84602,, +404,CAN,,ZR,b,Sarnia (ON),42.9375,-82.208333,,0.05,,6309,299,133,,,,,U402 10460s,DAID,84601,, +404,USA,,IUB,b,Institute Baltimore (MD),39.270833,-76.625,,0.025,,6242,292,135,,,,,U978 ,84579,,, +404,USA,,OLF,b,Wolf Point (MT),48.104167,-105.625,,0.1,,7150,317,138,,,,0,L1020 U1023 6.6s,84593,,, +404,USA,,LVV,b,Lake Lawn Delavan (WI),42.6875,-88.625,,0.025,,6705,303,140,,,,21,L990 U1032 7728s,84585,,, +404,USA,,IMS,b,Madison (IN),38.770833,-85.458333,,0.025,,6828,297,141,,,,,U1030 5.5s,87237,,, +404,USA,,XCR,b,Ripley Little Falls (MN),46.0625,-94.375,,0.025,,6756,309,141,,,,999,L1032 U1033 7948s,84597,,, +404,USA,,CKI,b,Kingstree (SC),33.729167,-79.875,,0.025,,6881,290,142,,,,994,U1017 6447s,84570,,, +404,USA,,BMW,b,Barrow Co Winder (GA),33.9375,-83.625,,0.025,,7103,292,144,,,,996,L1038 U1042 5.65s,84569,,, +404,USA,,ST,b,Zumay St Louis (MO),38.770833,-90.291667,,0.025,,7117,301,144,,,,980,L1064 U1014 2985s,84595,,, +404,ALS,,GCR,b,Glacier River Cordova (AK),60.479167,-145.458333,,0.025,,7247,345,145,,,,0,L1045 U1044 ,84576,,, +404,USA,,BAV,b,Hardeman Bolivar (TN),35.229167,-89.041667,,0.025,,7333,297,146,,,,997,L1025 U1018 5749s,84567,,, +404,USA,,FNB,b,Brenner Falls City (NE),40.0625,-95.625,,0.025,,7317,305,146,,,,,L1010 6.2s,84575,,, +404,USA,,SG,b,Coole Springfield (MO),37.1875,-93.458333,,0.025,,7433,301,147,,,,979,L1054 U1016 5773s,84594,,, +404,USA,,HEQ,b,Heginbotham Holyoke (CO),40.5625,-102.291667,,0.025,,7637,309,149,,,,990,L1045 U1025 ,84577,,, +404,USA,,HU,b,Saltt Hutchinson (KS),38.104167,-97.958333,,0.025,,7613,305,149,,,,995,L1040 U1029 6.0s,84578,,, +404,USA,,ABG,b,Ambassador Big Sandy (TX),32.604167,-95.125,,0.025,,7920,299,152,,,,995,L1033 U1024 7.56s,84564,,, +404,USA,,MOG,b,Montague (CA),41.729167,-122.458333,,0.025,,8479,323,158,,,,988,L1050 U1026 8.0s,84587,,, +404,USA,,CUF,b,Columbia (CA),38.020833,-120.375,,0.01,,8748,320,163,,,,,8.4s,87236,,, +404.5,HOL,,RR,b,Rotterdam Locator (zho),52.020833,4.791667,,0.015,,111,266,62,,,,536,L400 U400 ,84603,,, +405,D,,GRW,b,Grafenwhr (bay),49.6875,11.958333,,0.025,,473,123,78,,,,990,L1050 U1023 8.7s,84619,,, +405,AUT,,KW,b,Klagenfurt,46.6875,14.208333,,0.04,,825,134,79,,,,999,L1020 U1021 10.0s,84622,,, +405,F,,BIC,b,Briare / Chatillon (45),47.604167,2.791667,,0.025,,564,209,79,,,,,U22 ,DAID,84609,, +405,S,,AV,b,Gteborg/Save (vg),57.729167,11.875,,0.025,,715,27,80,,,,4,L438 U363 4.0s,84607,,, +405,XOE,,HMI,b,Sevan Hummingbird FPSO,57.979167,1.208333,,0.025,,731,335,80,,,,,L400 U400 ,86638,,, +405,SRB,,JST,b,Ni/Justic (Srb-nsv),43.4375,21.625,,0.05,,1486,124,85,,,,992,L1029 U993 ,ID+5 tone,84621,, +405,BIH,,IL,b,Sarajevo / Ilidza (sar),43.8125,18.375,,0.025,,1279,131,86,,,,475,U975 18.0s,ID+15 tone,84620,, +405,I,,VIE,b,Vieste (fg),41.895833,16.041667,,0.025,,1348,144,86,,,,997,L1024 U1016 este.s,ID+6 gap,84640,, +405,ROU,,S,b,Sibiu / Turnisor (SB),45.770833,24.125,,0.025,,1468,112,88,,,,,L744 U743 ,84634,,, +405,UKR,,B,b,Kiev / Borispol (KY),50.354167,30.875,,0.025,,1706,87,90,,,,,L1018 ,IDx2,84608,, +405,UKR,,E,b,Kyiv / Boryspil (KY),50.3125,30.875,,0.025,,1708,87,90,,,,,,84616,,, +405,GRC,,MGR,b,Megara (att-wst),37.979167,23.375,,0.025,,2050,133,93,,,,0,L400 U400 ,ID+4 gap,84627,, +405,ISL,,RL,b,Reykjahlia,65.604167,-16.958333,,0.025,,1991,328,93,,,,,U992 ,84633,,, +405,RUS,,UM,b,Ivanovskoye,55.854167,36.875,,0.025,,2018,66,93,,,,,L1018 U1019 7.0s,84637,,, +405,RUS,,FP,b,Cherepovets (VO),59.270833,38.041667,,0.025,,2112,55,94,,,,,L1048 U1047 ,84617,,, +405,RUS,,OW,b,Cherepovets (VO),59.270833,38.041667,,0.025,,2112,55,94,,,,,L403 U407 ,84630,,, +405,TUR,,ME,b,Izmir / Adnan Menderes (ege-izm),38.1875,27.208333,,0.025,,2234,126,95,,,,,L1020 ,Cont. ID,84626,, +405,TUN,,BMA,b,El Borma (tat),31.6875,9.208333,,0.025,,2282,173,96,,,,,L17 ,84612,,, +405,RUS,,NC,b,Volgograd/Marinovka (VG),48.645833,43.791667,,0.025,,2648,83,99,,,,,L990 U1044 ,84628,,, +405,RUS,,OM,b,Volgograd/Marinovka (VG),48.645833,43.791667,,0.025,,2648,83,99,,,,,,84629,,, +405,LBY,,VG,b,Edibb V7 (juf),28.979167,17.625,,0.025,,2734,156,100,,,,0,L400 U400 5.0s,ID+6.5 gap,84639,, +405,LBN,,RA,b,Kleyate / Rene Mouawad,34.604167,36.041667,,0.025,,3050,118,103,,,,,,84632,,, +405,RUS,,SU,b,Dikson (KN),73.520833,80.375,,0.025,,4047,27,113,,,,,L1038 U1035 ,84635,,, +405,CAN,,YXL,b,Sioux Lookout (ON),50.104167,-91.875,,1,,6307,311,120,,,,,,87240,,, +405,IRN,,BJD,b,Birjand (skh),32.903056,59.256944,,0.025,,4699,96,120,,,,998,L1045 U1042 ,84611,,, +405,CAN,,7L,b,La Sarre (QC),48.895833,-79.208333,,0.025,,5702,303,130,,,,,U392 10350s,DAID,84605,, +405,CAN,,9G,b,Sundre (AB),51.770833,-114.708333,,0.5,,7221,324,132,,,,,U384 10208s,DAID,84606,, +405,USA,,AKT,b,Appleton (WI),44.270833,-88.375,,0.025,,6567,304,139,,,,,,87239,,, +405,CAN,,2K,b,Camrose (AB),53.020833,-112.791667,,0.025,,7032,324,143,,,,,U397 10.6s,DAID,84604,, +405,J,,MD,b,Minamidaito (kyu-oki),25.840583,131.245828,,1,,9828,48,146,,,,,U1020 5s,DAID,84625,, +405,USA,,UTX,b,United Jupiter (FL),26.895833,-80.375,,0.025,,7471,285,148,,,,,U1070 ,84638,,, +405,B,,FRC,b,Franca (SP),-20.604167,-47.375,,0.2,,9613,229,153,,,,,L1033 U1023 7.14s,84618,,, +405,B,,BVI,b,Boa Vista (RR),2.854167,-60.708333,,0.025,,8214,253,155,,,,0,L1043 U1040 6892s,84613,,, +405,PRG,,CON,b,Concepcion (cnc),-23.4375,-57.458333,,0.2,,10427,236,155,,,,1,L1023 U1025 8460s,84614,,, +405,B,,CRY,b,Cricima (SC),-28.729167,-49.458333,,0.2,,10500,227,156,,,,,,84615,,, +405,USA,,AGH,b,Pekks Laredo (TX),27.645833,-99.458333,,0.025,,8611,299,158,,,,,U1021 8.6s,86826,,, +405,USA,,LR,b,Pekks Laredo (TX),27.645833,-99.458333,,0.025,,8611,299,158,,,,0,L1020 U1019 8.6s,84623,,, +406,D,,HOZ,b,Holzdorf (san),51.770833,13.125,,0.025,,462,92,78,,,,2,L1039 U1040 16.7s,84646,,, +406,G,,BHX,b,Birmingham (EN-WMD),52.4375,-1.791667,,0.025,,559,277,79,,,,0,L400 U400 8.2s,ID+3 gap,84642,, +406,F,,MJ,b,Marseille / Provence (13),43.4375,5.208333,,0.025,,968,186,83,,,,,L398 U406 10.0s,ID+7 gap,84648,, +406,F,,TW,b,Toulouse / Blagnac (31),43.520833,1.041667,,0.015,,1035,205,86,,,,,U5 ,DAID,84653,, +406,S,,NV,b,Vilhelmina,64.5625,17.041667,,0.025,,1513,20,88,,,,998,L420 U415 4.0s,84649,,, +406,RUS,,Q,b,Sankt-Peterburg/Rzhevka (SP),59.979167,30.625,,0.025,,1725,50,90,,,,,15.2s,IDx2,84651,, +406,FIN,,V,b,Ivalo / Pajakoski,68.604167,27.375,,0.025,,2142,23,94,,,,0,L406 U408 ,84654,,, +406,RUS,,CHI,b,Balashov (SR),51.520833,43.291667,,0.025,,2509,77,98,,,,,,84643,,, +406,RUS,,LO,b,Balashov (SR),51.520833,43.291667,,0.025,,2509,77,98,,,,,,84647,,, +406,CAN,,D5,b,McArthur River (SK),57.770833,-105.041667,,0.025,,6314,324,136,,,,,U408 9620s,DAID,84644,, +406,USA,,TT,b,Leeco Sanford (NC),35.479167,-79.125,,0.025,,6694,291,140,,,,988,L1058 U1025 3568s,84652,,, +406,CAN,,2S,b,High Prairie (AB),55.395833,-116.458333,,0.025,,6960,328,143,,,,,L339 U428 10434s,DAID,84641,, +406,CAN,,YLJ,b,Meadow Lake (SK),54.145833,-108.625,,0.015,,6764,323,143,,,,,U401 10.5s,DAID,84655,, +406,USA,,OK,b,Tuloo Tulakes (OK),35.479167,-97.625,,0.025,,7819,303,151,,,,982,L1056 U1020 6.4s,84650,,, +406.5,D,,BOT,b,Bottrop (nrw),51.5625,7.041667,,0.025,,75,144,47,,,,500,L1016 U1021 7.6s,84656,,, +407,D,,LUP,b,Laupheim (bw),48.229167,9.875,,0.03,,497,149,77,,,,2,L1043 U1047 16.73s,ID+11 tone,84685,, +407,IRL,,GAR,b,Dublin / Garristown (D),53.520833,-6.458333,,0.05,,878,285,79,,,,3,L373 U404 5.5s,84672,,, +407,S,,KA,b,Karlskoga,59.3125,14.458333,,0.025,,945,29,82,,,,991,L409 U392 3.0s,84681,,, +407,LTU,,PN,b,Palanga (Kla),55.979167,21.125,,0.025,,1050,60,83,,,,2,L1018 U1021 10.07s,ID+8 gap,84690,, +407,I,,CTF,b,Catania (ct),37.270833,15.041667,,0.025,,1783,154,91,,,,0,L1020 U1016 8.04s,ID+4 gap,84669,, +407,ALG,,BCR,b,Bchar (8),31.6875,-2.208333,,0.025,,2376,200,97,,,,,U19 ,ID+10 tone,84660,, +407,LBY,,SRT,b,Surt=Sirte (srt),31.1875,16.625,,0.025,,2471,156,98,,,,10,L1015 U1038 8.43s,ID+6 gap,84696,, +407,TUR,,KSR,b,Kayseri / Erkilet (ica-kay),38.770833,35.541667,,0.025,,2686,112,100,,,,0,L1070 U1070 ,ID+2 gap,84682,, +407,CAN,,H,b,Hauts-bois / St Hubert (QC),45.5625,-73.375,,0.095,,5585,296,123,,,,,,87243,,, +407,CAN,,ZHU,b,Hauts-Bois / St Hubert (Montreal) (QC),45.5625,-73.375,,0.095,,5585,296,123,,,,,U420 10.4s,ID+5 tone,84699,, +407,USA,,ISS,b,Wiscasset (ME),43.979167,-69.625,,0.025,,5460,293,128,,,,,U1010 ,84680,,, +407,USA,,FR,b,Frikk Farmingdale (NY),40.770833,-73.458333,,0.025,,5930,292,132,,,,983,L1049 U1017 6.47s,84670,,, +407,USA,,OX,b,Landy Ocean City (MD),38.354167,-75.208333,,0.025,,6221,291,135,,,,1,L1039 U1051 4.66s,84688,,, +407,USA,,RV,b,Stroh Reedsville (PA),40.604167,-77.708333,,0.025,,6210,294,135,,,,994,L1026 U1014 8.59s,84692,,, +407,USA,,HAI,b,Three Rivers (MI),41.979167,-85.625,,0.04,,6586,300,137,,,,2,L1040 U1045 ,84677,,, +407,USA,,RXW,b,Watersmeet (MI),46.270833,-89.291667,,0.025,,6463,306,138,,,,,L1020 ,84694,,, +407,USA,,RZZ,b,Rapids Roanoke Rapids (NC),36.4375,-77.708333,,0.025,,6528,291,138,,,,1,Ras,84695,,, +407,HND,,SWA,b,Islas del Cisne (Swan Islands),17.395833,-83.958333,,2,,8515,281,139,,,,,,87247,,, +407,USA,,AQ,b,Kooky Appleton (WI),44.229167,-88.375,,0.025,,6570,304,139,,,,988,L1066 U1040 5994s,84659,,, +407,CLM,,LET,b,Leticia (ama),-4.1875,-69.958333,,3,,9454,257,140,,,,993,L1028 U1014 8.48s,84683,,, +407,USA,,IL,b,Airbo Wilmington (OH),39.479167,-83.708333,,0.025,,6666,297,140,,,,999,L1028 U1038 6399s,84679,,, +407,USA,,GYL,b,Glencoe (MN),44.770833,-94.125,,0.025,,6846,307,141,,,,38,L995 U1040 34371s,84676,,, +407,USA,,CM,b,Veals Champaign / Urbana (IL),39.979167,-88.208333,,0.025,,6896,300,142,,,,981,L1048 U1022 5940s,84666,,, +407,USA,,BNW,b,Boone (IA),42.0625,-93.875,,0.025,,7053,305,144,,,,,L1025 U1020 5211s,84662,,, +407,USA,,BZ,b,Bullo Statesboro (GA),32.4375,-81.625,,0.025,,7097,290,144,,,,2,L1015 U1023 5.52s,84664,,, +407,USA,,IBU,b,Statesboro (GA),32.395833,-81.625,,0.025,,7101,290,144,,,,,,87244,,, +407,USA,,RVB,b,Riverbend Mobridge (SD),45.5625,-100.375,,0.025,,7110,312,144,,,,9,L1047 U1066 6181s,84693,,, +407,USA,,CO,b,Zodia Columbia (MO),38.729167,-92.291667,,0.025,,7237,302,145,,,,983,L1049 5.16s,84668,,, +407,USA,,PLT,b,Platte Center Columbus (NE),41.479167,-97.375,,0.025,,7295,307,146,,,,5,L1062 U1018 8475s,84689,,, +407,USA,,BNS,b,Sheridan (County - Banstow) (WY),44.645833,-106.791667,,0.025,,7507,315,148,,,,,,87241,,, +407,USA,,HRU,b,Herington (KS),38.6875,-96.791667,,0.025,,7498,305,148,,,,988,L1044 U1024 7.9s,84678,,, +407,USA,,BVV,b,Brookhaven (MS),31.604167,-90.375,,0.025,,7717,295,150,,,,,,84663,,, +407,USA,,NUW,b,Whidbey Island NAS (Ault) (WA),48.354167,-122.708333,,0.025,,7850,327,151,,,,,,87246,,, +407,USA,,EMM,b,Kemmerer (WY),41.8125,-110.541667,,0.025,,7941,315,152,,,,,,87242,,, +407,USA,,IE,b,Campi Natchitoches (LA),31.645833,-93.041667,,0.025,,7877,297,152,,,,,L1055 U1028 5.70s,87245,,, +407,USA,,OOC,b,Campi Natchitoches (LA),31.645833,-93.041667,,0.025,,7877,297,152,,,,990,L1045 U1034 8.0s,84687,,, +407,USA,,AD,b,Brons Dallas (TX),33.0625,-96.875,,0.025,,7984,301,153,,,,,L1062 ,84657,,, +407,USA,,AKL,b,Haskell (TX),33.1875,-99.708333,,0.025,,8138,303,154,,,,,L1009 U1022 6.3s,84658,,, +407,USA,,CHD,b,Chandler (AZ),33.270833,-111.791667,,0.049,,8788,311,156,,,,990,L1059 U1047 6.5s,84665,,, +407,USA,,PRZ,b,Portales (NM),34.145833,-103.375,,0.025,,8260,306,156,,,,0,L1019 U1029 6.0s,84691,,, +407,AUS,,WDH,b,Windorah (QLD),-25.395833,142.625,,0.025,,15306,68,180,,,,,L400 U400 6s,84698,,, +408,I,,CHI,b,Chioggia (ve),45.0625,12.291667,,0.04,,894,149,80,,,,995,L1024 U1015 10.0s,ID+7 gap,84701,, +408,AUT,,BRK,b,Wien / Schwechat / Bruck,48.0625,16.708333,,0.025,,860,117,82,,,,1,L1020 U1020 10.1s,ID+6 gap,84700,, +408,NOR,,SD,b,Sandane / Anda,61.854167,6.041667,,0.025,,1084,359,84,,,,800,L400 U~400 7.0s,84713,,, +408,ROU,,TSR,b,Timisoara / Giarmata (TM),45.479167,21.208333,,0.025,,1307,118,86,,,,5,L1034 U1036 4.84s,84717,,, +408,FIN,,F,b,Helsinki / Malmi,60.270833,25.041667,,0.025,,1458,44,88,,,,1,L406 U407 ,84702,,, +408,FIN,,O,b,Ilmajoki (ep),62.6875,22.791667,,0.025,,1523,33,88,,,,2,L409 U414 ,84711,,, +408,FIN,,H,b,Enontekio,68.395833,23.375,,0.025,,2022,20,93,,,,,U410 ,84704,,, +408,RUS,,KW,b,Krymsk,44.979167,38.041667,,0.025,,2437,96,97,,,,7,L390 U406 15.0s,IDx2 + 5 gap,84707,, +408,RUS,,UL,b,Ulyanovsk / Vostochny (UL),54.354167,48.791667,,0.025,,2789,68,101,,,,,U1009 ,84718,,, +408,RUS,,WN,b,Ulyanovsk / Vostochny (UL),54.4375,48.875,,0.025,,2792,68,101,,,,,,84719,,, +408,IRN,,SAV,b,Saveh for Mehrabad Intl (mrk),35.020833,50.375,,0.025,,3939,101,112,,,,,L1035 ,ID+5 gap,84712,, +408,IRN,,LEN,b,Bandar-e Lengeh (hrg),26.520833,54.875,,0.025,,4916,106,122,,,,,,86641,,, +408,USA,,HBD,b,Hubbard (OH),41.145833,-80.541667,,0.025,,6344,296,136,,,,969,L1060 U1041 7740s,84705,,, +408,CAN,,SN,b,Saint Catharines (ON),43.145833,-79.291667,,0.014,,6118,297,137,,,,0,L398 U390 10.5s,DAID,84715,, +408,CAN,,Z7,b,Claresholm (AB),50.020833,-113.625,,0.05,,7335,322,143,,,,,U421 10.36s,DAID,84720,, +408,USA,,LQK,b,Lake Keowee Pickins (SC),34.8125,-82.708333,,0.025,,6974,293,143,,,,998,L1045 U1045 8168s,84708,,, +408,USA,,SFB,b,Sanford (FL),28.770833,-81.208333,,0.025,,7370,287,147,,,,993,L1008 U994 7.41s,84714,,, +408,USA,,JDM,b,Wheatfield Colby (KS),39.520833,-101.041667,,0.025,,7660,308,150,,,,996,L1027 U1027 6.34s,84706,,, +408,USA,,MW,b,Pelly Moses Lake (WA),47.104167,-119.291667,,0.025,,7837,324,151,,,,5,L1030 U1040 8.0s,84709,,, +408,USA,,TMZ,b,Houston (TX),30.0625,-94.541667,,0.025,,8104,297,154,,,,,,84716,,, +409,S,,SG,b,Stens / Tune,58.395833,12.708333,,0.025,,804,27,81,,,,998,L402 U397 4.42s,84729,,, +409,HNG,,NCS,b,Nagycserkesz (SSB),47.979167,21.541667,,0.025,,1171,107,85,,,,3,L1020 U1016 9.24s,ID+5 gap,84728,, +409,FIN,,Z,b,Pyhsalmi,63.729167,25.958333,,0.025,,1719,34,90,,,,998,L405 U407 ,84734,,, +409,GRC,,SUD,b,Khania / Souda (krt-kha),35.520833,24.125,,0.025,,2316,136,96,,,,4,L400 U400 ,ID+5.5 gap,84731,, +409,TUR,,SRT,b,Siirt (dad-sii),37.979167,41.875,,0.025,,3154,106,105,,,,995,L1030 U1020 ,ID+5.5 gap,84730,, +409,GHA,,AA,b,Accra (gac),5.676111,-0.137778,,0.05,,5198,189,122,,,,,,84721,,, +409,CAN,,YTA,b,Pembroke (ON),45.8125,-77.208333,,0.025,,5800,299,131,,,,0,L391 U400 10.4s,ID+5 tone,84733,, +409,USA,,CQW,b,Cheraw (SC),34.729167,-79.875,,0.025,,6801,291,141,,,,,U1018 8139s,84722,,, +409,USA,,TM,b,Tifto Tifton (GA),31.354167,-83.458333,,0.025,,7303,290,146,,,,,L1014 U998 3.69s,84732,,, +410,XOE,,F3FA,b,F3FA,54.979167,4.875,,0.025,,335,343,76,,,,,L393 U405 ,86645,,, +410,XOE,,ZDJN3,b,Sanco Spirit,54.9375,0.208333,,0.025,,516,310,78,,,,,L422 U428 ,86653,,, +410,XOE,,SGUF,b,Loke Viking - Towing vessel,55.854167,12.791667,,0.025,,589,43,79,,,,,U398 ,86652,,, +410,AUT,,SI,b,Salzburg,47.8125,12.958333,,0.025,,669,133,80,,,,2,L400 U400 10.08s,ID+9 gap,84764,, +410,F,,ETN,b,Etain / Rouvres (55),49.229167,5.708333,,0.01,,324,189,80,,,,,U2 19.8s,DAID,84746,, +410,XOE,,3EHY8,b,Bibby Topaz,57.395833,-1.458333,,0.025,,774,322,81,,,,,L421 U417 ,86642,,, +410,XOE,,3YVE,b,Rem Vision,56.6875,-2.458333,,0.025,,766,315,81,,,,,L398 U402 8.1s,86643,,, +410,XOE,,C6NO5,b,Saipem 7000 Platform,59.854167,2.041667,,0.025,,902,344,82,,,,,L421 U425 ,84740,,, +410,XOE,,LMKL,b,Havila Troll / Offshore Tug,60.395833,5.041667,,0.025,,925,355,82,,,,,,84756,,, +410,XOE,,LXUB,b,Simon Stevin,60.479167,4.958333,,0.025,,935,355,82,,,,,L429 U428 ,86650,,, +410,XOE,,2BKQ8,b,Stena Carron - Rig Fleet,60.5625,-0.958333,,0.025,,1042,337,83,,,,91,L400 U400 11299s,84735,,, +410,XOE,,JWLN,b,Island Wellserver,65.104167,6.708333,,0.025,,1445,1,87,,,,,L395 U405 ,86648,,, +410,E,,C,b,La Corua (GAL-C),43.3125,-8.375,,0.025,,1472,234,88,,,,996,L1032 U1026 9.14s,ID+8 gap,84739,, +410,RUS,,SF,b,Cherusti,55.5625,40.041667,,0.025,,2217,67,95,,,,309,L400 U1020 ,84763,,, +410,CNR,,TX,b,Tenerife Norte / Los Rodeos (STC-TF),28.4375,-16.291667,,0.2,,3233,224,96,,,,502,L~1020 U1003 ,84768,,, +410,LBY,,VH,b,Hofra V10 (srt),29.354167,18.041667,,0.025,,2706,155,100,,,,2,L1025 U1030 ,ID+7 gap,84770,, +410,JOR,,QA,b,Amman / Queen Alia Intl (amn),31.729167,36.125,,0.06,,3301,122,102,,,,0,L1018 U1016 11.0s,ID+8 gap,84761,, +410,RUS,,US,b,Ekaterinburg / Aramil / Uktus (SV),56.6875,60.791667,,0.025,,3462,60,108,,,,0,L394 U400 15.0s,IDx2 + 8 gap,84769,, +410,PAK,,KE,b,Chor (shd),25.520833,69.791667,,0.4,,6000,94,121,,,,994,L1033 U1018 ,84755,,, +410,USA,,CYE,b,Crystal Lake Wilkes-Barre (PA),41.229167,-75.791667,,0.025,,6044,294,133,,,,986,L1047 U1019 6061s,84741,,, +410,USA,,SO,b,Suomi Marquette (MI),46.270833,-87.375,,0.025,,6356,305,137,,,,984,L1058 U1029 6103s,84766,,, +410,CAN,,6Z,b,La Loche (SK),56.479167,-109.375,,0.025,,6595,325,139,,,,993,L407 U408 ,84736,,, +410,USA,,GDV,b,Glendive (MT),47.145833,-104.791667,,0.1,,7193,315,139,,,,992,L1030 U1015 6.2s,84749,,, +410,USA,,MK,b,Cappy Milwaukee (WI),42.854167,-87.875,,0.025,,6649,302,139,,,,983,L1055 U1020 7.5s,84757,,, +410,USA,,BA,b,Clifs Columbus (IN),39.3125,-85.791667,,0.025,,6805,298,141,,,,993,L1060 U1040 5479s,84737,,, +410,USA,,JU,b,Ashee West Jefferson (NC),36.4375,-81.291667,,0.025,,6756,293,141,,,,,U1015 3915s,84753,,, +410,USA,,EGQ,b,Emmetsburg (IA),43.104167,-94.708333,,0.025,,7014,307,143,,,,8,L1010 U1022 6.8s,84745,,, +410,USA,,BQ,b,Jeffi Brunswick (GA),31.229167,-81.541667,,0.025,,7190,289,145,,,,,L1019 ,84738,,, +410,USA,,TIQ,b,Trainer Paris (TN),36.229167,-88.375,,0.025,,7210,297,145,,,,10,L1019 U1040 5588s,84767,,, +410,USA,,MSB,b,Monarch Iola (KS),37.770833,-95.375,,0.025,,7495,303,148,,,,988,L1065 U1050 5.5s,84758,,, +410,USA,,XBR,b,Brantley Fort Rucker (Ozark) (AL),31.5625,-86.291667,,0.025,,7466,293,148,,,,981,L1043 U1004 8349s,84771,,, +410,B,,FOZ,b,Foz do Iguau (PR),-25.520833,-54.541667,,1,,10460,232,149,,,,,U1064 7s,84748,,, +410,USA,,MPJ,b,Morrilton (AR),35.104167,-92.958333,,0.025,,7579,300,149,,,,,,87248,,, +410,USA,,HMM,b,Hamilton (MT),46.270833,-114.125,,0.025,,7698,320,150,,,,35,L1010 U1080 7.4s,84751,,, +410,CLM,,ECB,b,Uribia (El Cabo) (lag),12.1875,-72.125,,0.05,,8160,269,152,,,,146,L828 U822 7.35s,DB3ID,84744,, +410,MYA,,MKA,b,Myitkyina,25.350556,97.279444,,0.025,,7868,73,152,,,,,,22100035,,, +410,USA,,GG,b,Veels Longview (TX),32.4375,-94.791667,,0.025,,7915,299,152,,,,995,L1035 U1026 5.90s,84750,,, +410,USA,,DQU,b,De Quincy (LA),30.4375,-93.458333,,0.025,,8006,297,153,,,,0,L1057 U1015 7.8s,84743,,, +410,USA,,OIP,b,Old Rip Eastland (TX),32.395833,-98.791667,,0.025,,8154,302,155,,,,998,L1026 U1020 6370s,84759,,, +410,B,,PEL,b,Manaus/Ponta Pelada (AM),-3.145833,-59.958333,,0.025,,8708,249,159,,,,999,L1026 U1025 7067s,ID+4 gap,84760,, +410,USA,,DAO,b,Dragoo Fort Huachuca (Sierra Vista) (AZ),31.604167,-110.375,,0.025,,8868,309,159,,,,0,L1064 U990 7.0s,84742,,, +410,CHN,,FO,b,Baiyun,23.145833,113.208333,,0.025,,9068,63,160,,,,,,86647,,, +410,USA,,NZJ,b,Santa Ana (USMC) (CA),33.6875,-117.708333,,0.025,,9041,316,160,,,,,,87249,,, +411,USA,,VFU,b,Stanley Van Wert (OH),40.854167,-84.625,,0.025,,6614,299,139,,,,998,L1037 U1030 8.7s,84779,,, +411,USA,,RD,b,Bodey Redmond (OR),44.3125,-121.041667,,0.4,,8172,324,143,,,,982,L1062 U1022 6.0s,84777,,, +411,USA,,HAE,b,Hannibal (MO),39.729167,-91.458333,,0.025,,7107,302,144,,,,4,L1042 U1040 5159s,84772,,, +411,CAN,,RM,b,Rocky Mountain House (AB),52.354167,-115.041667,,0.025,,7182,325,145,,,,,,87250,,, +411,CHN,,PK,b,Eren (NM),43.645833,111.958333,,0.025,,7207,50,145,,,,,U13 ,IDx2 + 30 tone,84776,, +411,USA,,SDA,b,Shenandoah (IA),40.770833,-95.375,,0.025,,7243,305,145,,,,24,L981 U1040 4.6s,84778,,, +411,ALS,,ILI,b,Iliamna (AK),59.729167,-154.875,,0.025,,7466,350,148,,,,5,L1030 U1040 ,TWEB,84774,, +411,USA,,HDL,b,Holdenville (OK),35.104167,-96.375,,0.025,,7779,302,151,,,,,L1015 U1019 6.2s,84773,,, +412,E,,GRN,b,Girona (CAT-GI),42.020833,2.791667,,0.25,,1154,195,75,,,,2,L1040 U1039 11.03s,ID+8 gap,84788,, +412,F,,SE,b,Strasbourg / Entzheim (67),48.604167,7.708333,,0.025,,401,166,77,,,,,L400 U406 ,84796,,, +412,SVK,,FS,b,Sliač (BB),48.5625,19.125,,0.025,,983,109,83,,,,0,L1060 U1071 ,84786,,, +412,HNG,,PP,b,Pcs (Pec),46.0625,18.291667,,0.025,,1094,123,84,,,,995,L1020 U1023 8.17s,ID+6 gap,84794,, +412,HRV,,HUM,b,Humac (st),43.270833,16.708333,,0.025,,1247,138,85,,,,1,L1040 U1047 8.23s,ID+5 tone,84790,, +412,I,,CIA,b,Ciampino (rm),41.854167,12.541667,,0.025,,1231,156,85,,,,,,ID+27 tone,84782,, +412,SRB,,DAK,b,Amiko / Dakovica,45.4375,20.458333,,0.025,,1265,120,86,,,,0,L1023 U1025 7.0s,ID+2.5 gap,84785,, +412,FIN,,I,b,Halli / Markkulanmki,61.854167,24.875,,0.025,,1547,38,88,,,,0,L408 U410 ,84791,,, +412,E,,GRA,b,Granada (AND-GR),37.1875,-3.708333,,0.025,,1838,209,91,,,,11,L1019 U1041 15.88s,ID+13 gap,84787,, +412,I,,SIG,b,Sigonella (ct),37.395833,14.958333,,0.025,,1767,154,91,,,,3,L1017 U1031 7.0s,ID+3 gap,84797,, +412,RUS,,KS,b,Balandino,55.3125,61.625,,0.025,,3555,62,109,,,,997,L993 ,84793,,, +412,KAZ,,LS,b,Krayniy (byq),45.645833,63.208333,,0.025,,4106,77,114,,,,,,86654,,, +412,AFG,,HRT,b,Herat (her),34.229167,62.208333,,0.025,,4800,92,121,,,,,L1016 U1027 ,84789,,, +412,CAN,,1W,b,Sandy Bay (SK),55.5625,-102.291667,,0.025,,6377,320,137,,,,305,L410 U1030 no das,84780,,, +412,USA,,CTZ,b,Clinton (NC),34.979167,-78.375,,0.025,,6685,290,140,,,,4,L1007 U1022 8543s,84784,,, +412,USA,,CMY,b,Mc Coy Sparta (WI),43.9375,-90.625,,0.01,,6720,305,144,,,,975,L1061 U1014 8634s,84783,,, +412,USA,,JHH,b,Griffin (GA),33.1875,-84.208333,,0.025,,7201,292,145,,,,7,L1019 U1025 6.5s,84792,,, +412,CUB,,UNG,b,Nueva Gerona (ij),21.770833,-82.875,,0.1,,8068,283,148,,,,930,L1211 U1217 6002s,84799,,, +412,USA,,BWR,b,Brewster Co Alpine (TX),30.4375,-103.625,,0.025,,8605,304,158,,,,998,L1013 U1015 6.0s,84781,,, +412,VUT,,SON,b,Santo / Pekoa (sam),-15.520833,167.208333,,0.025,,15607,30,181,,,,0,L1100 U1021 6s,84798,,, +412.5,CLM,,MTU,b,Mit (vau),1.270833,-70.208333,,0.025,,8986,260,160,,,,-412.5,L13 11.1s,84801,,, +413,AUT,,KTI,b,Innsbruck / Khtai,47.229167,11.041667,,0.025,,637,147,79,,,,999,L1020 U1019 10.03s,84810,,, +413,I,,BOA,b,Bologna (bo),44.5625,11.208333,,0.04,,911,155,80,,,,2,L1014 U1021 8.84s,ID+4 gap,84805,, +413,F,,ALM,b,Aix Les Milles (13),43.520833,5.375,,0.025,,958,185,83,,,,,U8 20.0s,DAID,84803,, +413,ALG,,MCH,b,Mecheria (45),33.5625,-0.208333,,0.05,,2130,197,91,,,,,L13 12.5s,ID+9 tone,84812,, +413,TUR,,GEY,b,Antalya (akd-ant),36.895833,30.458333,,0.025,,2528,123,98,,,,,L1025 ,ID+4 gap,84808,, +413,XON,,6C,b,Henry Goodrich Platform,46.479167,-48.458333,,0.025,,3931,283,112,,,,,L401 U400 5.6s,84802,,, +413,CAN,,YHD,b,Dryden (ON),49.854167,-92.875,,0.25,,6378,311,127,,,,14,L400 U405 10.5s,DAID,84819,, +413,MEX,,TAM,b,Tampico (tam),22.270833,-97.875,,1,,8991,295,144,,,,62,L930 U1055 ,84817,,, +413,USA,,MC,b,Ferni Mc Comb (MS),31.270833,-90.541667,,0.025,,7756,295,151,,,,999,L402 U405 8599s,84811,,, +413,USA,,CBC,b,Anahuac (TX),29.770833,-94.625,,0.025,,8134,297,154,,,,983,L1054 U1019 8501s,84807,,, +413,USA,,OEG,b,Golden Eagle Yuma Proving Ground (AZ),32.854167,-114.458333,,0.049,,8962,313,157,,,,976,L1055 U1008 8.2s,84814,,, +413.5,D,,DLS,b,Berlin / Tempelhof / Lbars (brb),52.604167,13.375,,0.05,,476,81,75,,,,4999,L1020 U1020 5.67s,ID+1 gap,84820,, +414,XOE,,GFB,b,Statoil Gullfaks B Platform,51.1875,2.208333,,0.025,,307,252,76,,,,,L397 U400 ,84834,,, +414,G,,BRI,b,Bristol / Filton (EN-BRI),51.395833,-2.708333,,0.025,,632,266,79,,,,5,L400 U413 10.3s,84826,,, +414,NOR,,SLB,b,Oslo / Gardermoen / Solberg (os),60.020833,10.958333,,0.025,,923,16,82,,,,998,L402 U399 10.0s,84858,,, +414,SVN,,ILB,b,Bistrica,45.5625,14.208333,,0.025,,924,139,82,,,,2,L1018 U1022 20.1s,ID+17 gap,84842,, +414,XOE,,GFA,b,Statoil Gullfaks A Platform,61.1875,2.208333,,0.025,,1041,347,83,,,,,,84833,,, +414,XOE,,STC,b,Statfjord C,61.1875,1.541667,,0.025,,1052,346,83,,,,,L411 U392 8.7s,86658,,, +414,XOE,,STA,b,Stafjord A Platform,61.270833,1.875,,0.025,,1055,347,84,,,,,L411 U404 9.5s,ID+6 gap,86829,, +414,HRV,,GR,b,Dubrovnik / Gruda (du),42.520833,18.291667,,0.025,,1389,135,87,,,,991,L1045 U1022 11.0s,ID+8 gap,84836,, +414,NOR,,HD,b,Sandnessjen / Stokka / Hestad (no),66.0625,12.541667,,0.025,,1589,10,89,,,,7,L374 U385 8.0s,84838,,, +414,NOR,,SJA,b,Bardufoss / Senja,69.145833,17.791667,,0.025,,1986,13,93,,,,0,L390 U413 ,84856,,, +414,TUR,,USK,b,Usak (ege-usk),38.6875,29.458333,,0.025,,2320,121,96,,,,993,L1035 U1020 4.0s,Cont.ID,84864,, +414,RUS,,SB,b,Sambek,47.770833,39.791667,,0.025,,2415,88,97,,,,30,L1012 U1020 31.0s,ID+26 gap,84855,, +414,SYR,,LTK,b,Latakia / Basel Al-Assad Intl (lat),35.479167,35.958333,,0.025,,2972,117,103,,,,,L1024 U1018 ,ID+2 gap,84847,, +414,CAN,,BC,b,Baie-Comeau (QC),49.104167,-68.291667,,0.5,,5044,297,110,,,,,U387 10.1s,DAID,84825,, +414,CAN,,3U,b,Gatineau (QC),45.520833,-75.541667,,0.085,,5720,297,125,,,,999,L395 U394 10550s,DAID,84821,, +414,USA,,OGY,b,Bridge New York (NY),40.5625,-73.875,,0.025,,5972,292,133,,,,0,L1030 U1041 7968s,84852,,, +414,USA,,SUE,b,Sturgeon Bay (WI),44.854167,-87.458333,,0.025,,6469,304,138,,,,998,L1030 U1027 ,84861,,, +414,USA,,CSS,b,Court House Washington Court House (OH),39.604167,-83.375,,0.025,,6636,297,139,,,,999,L1020 U1020 Cos,84828,,, +414,ALS,,OQK,b,Noatak (AK),67.5625,-162.958333,,0.025,,6679,355,140,,,,,L1050 U1035 ,86828,,, +414,USA,,IA,b,Taffs Chicago (IL),41.979167,-87.791667,,0.025,,6713,301,140,,,,973,L1065 U1010 ,84840,,, +414,CAN,,8M,b,Elk Point (AB),53.895833,-110.791667,,0.025,,6874,324,142,,,,,U384 10.43s,DBID,84822,, +414,CAN,,Y,b,Brophy / Regina (SK),50.4375,-104.791667,,0.025,,6912,318,142,,,,,U400 ,DAID,87252,, +414,USA,,FDW,b,Winnsboro (SC),34.3125,-81.125,,0.025,,6914,291,142,,,,0,L1014 U999 5659s,84832,,, +414,USA,,LK,b,Laang Louisville (KY),38.145833,-85.625,,0.025,,6888,297,142,,,,2,L1047 U1050 5.69s,84846,,, +414,CAN,,ZRG,b,Brophy (Regina) (SK),50.4375,-104.791667,,0.02,,6912,318,143,,,,0,L394 U400 10.3s,DAID,84866,, +414,USA,,HZE,b,Hazen (ND),47.3125,-101.541667,,0.025,,7021,314,143,,,,,U990 6.0s,84839,,, +414,USA,,LYI,b,Libby (MT),48.3125,-115.458333,,0.1,,7567,322,143,,,,995,L1029 U1016 5.92s,84848,,, +414,USA,,OOA,b,Oskaloosa (IA),41.229167,-92.458333,,0.025,,7041,304,143,,,,0,L1025 U1020 6949s,84853,,, +414,USA,,SU,b,Salix Sioux City (IA),42.3125,-96.291667,,0.04,,7166,307,143,,,,983,L1065 U1003 6.0s,84860,,, +414,USA,,JUE,b,Lebanon (TN),36.1875,-86.291667,,0.025,,7086,296,144,,,,3,L1011 U1016 5.6s,84844,,, +414,USA,,AZE,b,Hazlehurst (GA),31.895833,-82.625,,0.025,,7205,290,145,,,,0,L1022 U1016 5.14s,84824,,, +414,ALS,,IME,b,Mount Edgecumbe Sitka (AK),57.0625,-135.375,,0.025,,7386,338,147,,,,966,L1072 U1005 ,84843,,, +414,USA,,GRN,b,Gordon (NE),42.8125,-102.208333,,0.025,,7438,311,147,,,,998,L1035 U1035 6.4s,84837,,, +414,USA,,IEB,b,Lebanon (MO),37.5625,-92.625,,0.025,,7353,301,147,,,,0,L1030 U1037 8.1s,84841,,, +414,USA,,SPQ,b,Spain Memphis (TN),35.1875,-90.041667,,0.025,,7397,298,147,,,,2,L1015 U1020 ,84859,,, +414,USA,,EGT,b,Wellington (KS),37.3125,-97.375,,0.025,,7648,304,149,,,,92,L1020 U1022 5.0s,84830,,, +414,USA,,NWH,b,Walnut Hill (FL),30.8125,-87.541667,,0.025,,7607,293,149,,,,,L1020 ,84850,,, +414,USA,,GL,b,Shugr Goodland (KS),39.3125,-101.625,,0.025,,7710,308,150,,,,7,L1021 U1037 6.7s,84835,,, +414,USA,,MSD,b,Mansfield (LA),32.0625,-93.791667,,0.025,,7887,298,152,,,,4,L1042 U1016 8.0s,84849,,, +414,USA,,PYD,b,Area 19 Groom Lake (NV),37.1875,-115.958333,,0.1,,8627,316,152,,,,985,L1061 U1030 8.0s,84854,,, +414,USA,,DUX,b,Durrett Dumas (TX),35.854167,-102.041667,,0.025,,8035,306,153,,,,514,L1010 U2038 ,84829,,, +414,USA,,HQ,b,Abern Hoquiam (WA),46.979167,-123.791667,,0.025,,8023,327,153,,,,,L1080 ,87251,,, +414,CHN,,FC,b,Fujiazhuang (LN),38.854167,121.625,,0.025,,8124,47,154,,,,,,84831,,, +414,USA,,SKX,b,Ski Taos (NM),36.4375,-105.708333,,0.025,,8182,309,155,,,,999,L1022 U1020 5.3s,84857,,, +414,USA,,ATS,b,Artesia (NM),32.854167,-104.458333,,0.025,,8435,306,157,,,,2,L1017 U1018 4.5s,84823,,, +414,THA,,UP,b,Rayong/U-Taphao Int. (ryg),12.645833,100.958333,,0.025,,9207,79,160,,,,,U1034 8s,ID+6 gap,84863,, +414.5,USA,,RPB,b,Republican Belleville (KS),39.8125,-97.625,,0.025,,7449,306,147,,,,510,L1005 U1029 6.0s,84867,,, +415,D,,RTB,b,Nrnberg / Rothenbach (bay),49.479167,11.291667,,0.025,,451,129,77,,,,997,L1023 U1018 ,84886,,, +415,S,,OL,b,Linkping/Saab,58.395833,15.791667,,0.025,,916,37,82,,,,998,L402 U406 ,84882,,, +415,F,,TOE,b,Toulouse / Blagnac (31),43.479167,1.708333,,0.015,,1021,202,85,,,,,U5 ,ID+17 tone,84890,, +415,UKR,,WI,b,Vinnitsa (VI),49.270833,28.625,,0.025,,1590,93,89,,,,11,L1046 U1049 7.5s,ID+4 gap,84891,, +415,UKR,,WN,b,Vinnitsa (VI),49.229167,28.625,,0.025,,1591,93,89,,,,2,L370 U374 ,84892,,, +415,BUL,,RUS,b,Russe (rus),43.645833,25.958333,,0.025,,1727,115,90,,,,998,L1022 U1018 7.9s,ID+8 gap,84887,, +415,ALG,,ON,b,Oran / Es Senia (31),35.729167,-0.375,,0.025,,1899,199,92,,,,,U27 ,ID+11 tone,84883,, +415,ISL,,OE,b,Akureyri (ne),65.6875,-18.041667,,0.025,,2036,327,93,,,,,U1015 ,84880,,, +415,RUS,,DR,b,Skurygino,55.229167,37.375,,0.025,,2052,68,93,,,,980,L402 U405 14.9s,IDx2 + 6 gap,84873,, +415,RUS,,LM,b,Tsentralny / Orenburg (OB),51.8125,55.541667,,0.025,,3301,71,106,,,,,U385 ,84877,,, +415,RUS,,WP,b,Tsentralny / Orenburg (OB),51.8125,55.375,,0.025,,3290,71,106,,,,,,84893,,, +415,GHA,,TL,b,Tamale (nth),9.571667,-0.849167,,0.025,,4776,191,121,,,,,,3000004,,, +415,CYM,,CBC,b,West End (Cayman Brac),19.6875,-79.875,,1,,8044,280,137,,,,3,L1014 U1024 8.5s,84870,,, +415,USA,,ASJ,b,Ahoskie (NC),36.3125,-77.208333,,0.025,,6506,290,138,,,,79,L965 U1123 7573s,84869,,, +415,LCA,,SLU,b,Castries (cts),14.020833,-61.041667,,0.1,,7248,261,139,,,,,U1019 ,84889,,, +415,USA,,DJD,b,Canton (GA),34.270833,-84.458333,,0.025,,7128,293,144,,,,0,L1018 U1029 5.81s,84872,,, +415,B,,ANP,b,Anpolis (GO),-16.3125,-49.041667,,1,,9289,233,145,,,,,U1071 6604s,84868,,, +415,USA,,LO,b,Targy West Yellowstone (MT),44.5625,-111.208333,,0.05,,7723,318,147,,,,978,L1070 U1023 5.9s,84878,,, +415,USA,,HJM,b,Rayburn Bonham (TX),33.604167,-96.208333,,0.025,,7898,301,152,,,,,U1020 ,84874,,, +415,CLN,,AN,b,Anuradhapura AB (adp),8.303333,80.429444,,0.025,,8191,98,155,,,,,,34700017,,, +415,B,,PCL,b,Poos de Caldas (MG),-21.854167,-46.541667,,0.1,,9691,228,156,,,,995,L1029 U1020 ,84884,,, +415,CLM,,CJN,b,Cerrejn (lag),11.229167,-72.541667,,0.025,,8272,268,156,,,,,U1023 ,84871,,, +415,MYA,,PTN,b,Pathein,16.801111,94.779722,,0.025,,8432,81,157,,,,,,22100039,,, +415,XON,,IEE,b,Platform Irene 25,34.604167,-120.708333,,0.03,,9093,318,159,,,,,U1028 4.0s,84875,,, +415,TWN,,KW,b,Hengchun (PT),21.9375,120.875,,0.025,,9632,58,162,,,,,U1020 ,84876,,, +415,EQA,,SLS,b,Salinas (Guayas) (gua),-2.1875,-80.958333,,0.025,,10020,267,163,,,,12,L993 U1005 7.1s,84888,,, +415.5,XOE,,ANR,b,BP / Andrew,58.0625,1.375,,0.025,,735,336,80,,,,-415.5,,86659,,, +416,XOE,,CRC,b,Carrack QA,53.604167,2.791667,,0.025,,294,306,76,,,,,L1022 U1020 7.0s,86660,,, +416,CZE,,V,b,Vodochody / Pan Brezany (ST),50.229167,14.458333,,0.025,,598,107,79,,,,43,L981 U1048 9.0s,84911,,, +416,F,,ULT,b,Ussel / Thalamy (19),45.520833,2.458333,,0.025,,787,203,81,,,,,L3 ,ID+17 tone,84910,, +416,CZE,,KUN,b,Kunovice (ZL),49.104167,17.541667,,0.025,,853,109,82,,,,,L1038 U1036 ,84900,,, +416,E,,SA,b,Santander (CNT-S),43.4375,-3.875,,0.05,,1231,222,82,,,,,L1015 U1023 ,ID+4 gap,84908,, +416,S,,R,b,Arvika,59.645833,12.625,,0.025,,922,22,82,,,,3,L395 U404 ,84906,,, +416,TUR,,Samsun Turk Radyo,c,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,????-????,1234567,,,19901442,,, +416,HNG,,KD,b,Taszr (Som),46.4375,17.875,,0.025,,1042,123,83,,,,690,L1020 U400 ,IDx2 + 20 gap,84899,, +416,SRB,,POZ,b,Beograd/Poarevac (Srb-brn),44.604167,21.125,,0.04,,1366,122,85,,,,974,L1070 U1020 ,ID+4 tone,84905,, +416,S,,BCS,b,Baccus,62.5625,17.041667,,0.025,,1322,24,86,,,,996,L401 U403 ,84895,,, +416,MLT,,LQA,b,Malta/Luqa (mt),35.895833,14.541667,,0.08,,1914,157,87,,,,,U1030 16.0s,87253,,, +416,ALG,,MAR,b,Algiers / Houari Boumedienne (16),36.6875,2.791667,,0.025,,1738,191,90,,,,5,L1020 U1021 ,ID+7 gap,84902,, +416,FIN,,TOR,b,Rovaniemi / Toramo,66.645833,25.958333,,0.025,,1941,26,92,,,,2,L403 U414 ,84909,,, +416,USA,,BKL,b,Burke Lakefront Cleveland (OH),41.520833,-81.625,,0.025,,6381,297,137,,,,6,L1048 U1060 7.2s,84897,,, +416,RUS,,UFO Kholmsk R,c,Kholmsk (SL),47.023556,142.045056,,1,,8212,30,139,,????-????,1234567,,,19901341,,, +416,CLM,,HKC Buenaventura R,c,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900408,,, +416,MDG,,5RT Toliara R,c,Toliara=Tular (tlr),-23.35,43.666667,,1,,9138,146,144,,????-????,1234567,,,19901068,,, +416,USA,,LB,b,Panbe North Platte (NE),41.0625,-100.541667,,0.05,,7501,309,145,,,,983,L1052 U1024 7.5s,84901,,, +416,USA,,RN,b,Huggy Kansas City (MO),39.3125,-94.875,,0.025,,7337,304,146,,,,5,L1019 U1024 8.5s,84907,,, +416,AUS,,MTI,b,Mornington Island (QLD),-16.645833,139.208333,,0.025,,14316,64,177,,,,,U1049 9.32s,84903,,, +417,D,,LI,b,Dsseldorf (nrw),51.354167,6.875,,0.025,,90,159,52,,,,981,L1018 U1046 4.3s,ID+6 gap,84924,, +417,D,,HDL,b,Heidelberg (bw),49.395833,8.625,,0.025,,340,152,76,,,,976,L1062 U1015 8.4s,ID+5gap,84920,, +417,G,,ND,b,Great Yarmouth / North Denes (EN-NFK),52.645833,1.708333,,0.025,,325,282,76,,,,5,L406 U412,84925,,, +417,F,,AX,b,Auxerre / Branches (89),47.9375,3.541667,,0.025,,507,205,78,,,,,L398 U406 10.0s,84914,,, +417,E,,SNO,b,Santiago de Compostela (GAL-C),42.895833,-8.458333,,0.2,,1510,233,79,,,,15,L1010 U1019 13.5s,ID+10 gap,84929,, +417,S,,AH,b,Angelholm / Barkakra,56.270833,12.875,,0.025,,625,40,79,,,,9988,L405 U408 4.0s,84913,,, +417,I,,VIC,b,Vicenza (vi),45.645833,11.708333,,0.025,,816,150,81,,,,999,L1020 U1022 8.0s,ID+4 gap,84932,, +417,S,,R,b,Gvle / Sandviken,60.604167,16.958333,,0.025,,1143,30,84,,,,995,L404 U393 ,84927,,, +417,E,,ACD,b,Alcobendas (MAD-M),40.604167,-3.708333,,0.025,,1493,215,88,,,,7,L1016 U1025 10.5s,ID+6 gap,84912,, +417,ROU,,EA,b,Craiova (DJ),44.3125,23.958333,,0.025,,1557,117,89,,,,7,L787 U817 14.5s,ID+13 gap,84915,, +417,GRC,,SYR,b,Syros (seg-kik),37.4375,24.958333,,0.025,,2179,131,95,,,,0,L400 U400 ,ID+4 gap,84930,, +417,USA,,EK,b,Gozzr Worchester (MA),42.270833,-71.708333,,0.025,,5711,292,130,,,,983,L1062 U1031 6.01s,84916,,, +417,VEN,,YVG La Guaira R,c,La Guaira (vgs),10.6,-66.933333,,1,,7944,263,136,,????-????,1234567,,,19901614,,, +417,ALS,,GBH,b,Galbraith Lake (AK),68.479167,-149.458333,,0.025,,6459,350,138,,,,,U1018 ,84919,,, +417,USA,,HHG,b,Huntington (IN),40.854167,-85.458333,,0.025,,6664,299,140,,,,5,L1052 U1042 6.59s,84921,,, +417,USA,,HQT,b,Harnett Coats (NC),35.4375,-78.708333,,0.025,,6670,290,140,,,,5,L1022 U1030 5247s,84922,,, +417,USA,,IY,b,Chukk Charles City (IA),43.145833,-92.708333,,0.025,,6900,305,142,,,,990,L1022 U1039 4.27s,84923,,, +417,USA,,SLP,b,First River Shelby (NC),35.270833,-81.625,,0.025,,6869,292,142,,,,993,L1008 U1005 6146s,84928,,, +417,USA,,EVB,b,New Smyrna Beach (FL),29.0625,-80.958333,,0.025,,7330,287,146,,,,998,L1020 U1018 5.30s,84918,,, +417,USA,,EOG,b,Greensboro (AL),32.604167,-87.625,,0.025,,7463,294,148,,,,,U1009 ,84917,,, +417.5,KRE,,Ch'ongjin R,c,Ch'ongjin (hab),41.775,129.777778,,1,,8240,40,139,,????-????,1234567,-417.5,,19901001,,, +418,F,,MK,b,Calais / Dunkerque (62),50.8125,2.041667,,0.025,,335,246,76,,,,,U36 ,DAID,84941,, +418,AUT,,ZW,b,Zeltweg,47.1875,14.791667,,0.05,,814,129,78,,,,,U1013 ,84949,,, +418,I,,SVC,b,Aosta (ao),45.729167,7.708333,,0.025,,716,172,80,,,,,U1019 10.0s,84947,,, +418,SVK,,PW,b,Poprad / Tatry West (PO),49.0625,20.041667,,0.025,,1018,104,83,,,,,U1018 ,84943,,, +418,F,,SAL,b,Sainte Leocadie (66),42.4375,2.041667,,0.025,,1124,199,84,,,,,L4 ,84945,,, +418,HRV,,DVN,b,Split / Drvenik (st),43.4375,16.125,,0.025,,1205,139,85,,,,990,L1020 U995 ,84937,,, +418,ROU,,ORA,b,Oradea (BH),47.104167,21.958333,,0.025,,1248,110,85,,,,995,L1035 U1045 30.0s,IDx2 + 18 gap,84942,, +418,EST,,L,b,Tallinn/lemiste (Har),59.395833,24.875,,0.025,,1404,48,87,,,,3,L408 U412 ,ID+7 gap,84940,, +418,E,,BAI,b,Bailen (AND-J),38.145833,-3.625,,0.025,,1737,211,90,,,,982,L1043 U1014 7.8s,ID+5 gap,84935,, +418,E,,BLN,b,Bailen (AND-J),38.145833,-3.625,,0.025,,1737,211,90,,,,,,87254,,, +418,GRC,,ELF,b,Elefsis (att-wst),38.0625,23.541667,,0.025,,2051,133,93,,,,5,L1000 U1010 ,ID+4.5 gap,84939,, +418,JOR,,AQA,b,Aqaba (aqb),30.229167,35.208333,,0.025,,3383,125,107,,,,,U1020 ,ID+3 gap,84934,, +418,KAZ,,SP,b,Semipalatinsk (sgq),50.354167,80.291667,,0.025,,4919,61,122,,,,,,84946,,, +418,USA,,EL,b,Lados El Dorado (AR),33.270833,-92.708333,,0.025,,7719,298,150,,,,0,L1019 U1021 8.13s,84938,,, +418,USA,,CW,b,Mossy Lake Charles (LA),30.3125,-93.208333,,0.025,,8001,296,153,,,,983,L1046 U1012 6.0s,84936,,, +418,USA,,PYF,b,Pyramid Fairfield (TX),31.854167,-96.208333,,0.025,,8049,300,153,,,,,,84944,,, +418,EQA,,TLC,b,Tulcan (Carchi) (car),0.8125,-77.708333,,0.025,,9535,266,161,,,,997,L1039 U1023 7258s,84948,,, +419,D,,WUN,b,Wunstorf (nds),52.479167,9.458333,,0.025,,211,78,75,,,,0,L1037 U1040 8.5s,84961,,, +419,F,,EMT,b,Epinal / Mirecourt (88),48.3125,6.208333,,0.025,,423,182,77,,,,,L399 U404 ,ID+8 gap,84951,, +419,XOE,,RA,b,Tyra East A Platform,55.4375,4.458333,,0.025,,392,342,77,,,,998,L407 U401 4.0s,84956,,, +419,S,,RD,b,Vsters/Hasslo,59.520833,16.625,,0.025,,1040,34,83,,,,3,L395 U401 ,84957,,, +419,FIN,,HY,b,Vaasa / Lngskog,62.979167,21.791667,,0.025,,1509,31,88,,,,1,L406 U412 ,84953,,, +419,GRC,,LRO,b,Leros (seg-dod),37.1875,26.791667,,0.025,,2298,128,96,,,,0,L375 U345 ,ID+4.5 gap,84954,, +419,USA,,RYS,b,Grosse Ile Detroit / Grosse Ile (MI),42.104167,-83.125,,0.025,,6427,299,137,,,,8,L1012 U1027 5.5s,84958,,, +419,USA,,TX,b,Gwnet Lawrenceville (GA),34.020833,-83.875,,0.025,,7112,293,144,,,,978,L1060 U1016 8.0s,84960,,, +419,USA,,GB,b,Babsy Great Bend (KS),38.270833,-98.875,,0.025,,7650,306,149,,,,988,L1045 U1020 6.8s,84952,,, +420,XOE,,LGS,b,Conoco Loggs Platform,53.395833,2.041667,,0.025,,327,298,76,,,,3,L398 U402 8.1s,84978,,, +420,AUT,,INN,b,Innsbruck,47.229167,11.375,,0.04,,649,145,77,,,,998,L1020 U1017 10.0s,84974,,, +420,I,,ABN,b,Albenga (sv),44.0625,8.208333,,0.04,,905,171,80,,,,,L2 ,84963,,, +420,XOE,,LTR,b,Talisman / Saltire Alpha,58.395833,0.291667,,0.025,,799,333,81,,,,0,L420 U420 ,84980,,, +420,XOE,,PF,b,Talisman / Piper Bravo Platform,58.479167,0.208333,,0.025,,809,334,81,,,,,,84983,,, +420,F,,LMT,b,Auch / Lamothe (32),43.729167,0.625,,0.025,,1026,207,83,,,,,,84979,,, +420,HRV,,GS,b,Pula (pa),44.895833,13.875,,0.025,,971,143,83,,,,985,L1043 U987 9.5s,ID+7 tone,84971,, +420,LBY,,5AL Tobruk=Tubruq R,c,Tobruk=Tubruq (but),32.086111,24.005556,,1,,2643,141,83,,????-????,1234567,,,19901024,,, +420,HNG,,HM,b,Budapest/Ferenc Liszt Int. (Bud),47.395833,19.291667,,0.025,,1061,114,84,,,,995,L1020 U1020 ,84973,,, +420,E,,SPP,b,Sevilla / San Pablo (AND-SE),37.4375,-5.791667,,0.1,,1889,215,86,,,,996,L1014 U1018 11.19s,ID+6 gap,84988,, +420,SRB,,BT,b,Batajnica (Srb-gbg),44.979167,20.208333,,0.025,,1285,123,86,,,,,L1016 U1043 ,ID+7 tone,86662,, +420,SRB,,EK,b,Batajnica (Srb-gbg),44.895833,20.291667,,0.025,,1296,123,86,,,,,,86664,,, +420,MNE,,GO,b,Podgorica (PG),42.3125,19.291667,,0.025,,1456,133,88,,,,5,L1026 U1029 ,ID+5 gap,84970,, +420,RUS,,KN,b,Kobona,60.020833,31.541667,,0.025,,1775,50,91,,,,680,L908 U904 30.0s,IDx2 + 23 gap,84977,, +420,RUS,,LZ,b,Michurinsk,52.9375,40.375,,0.025,,2278,74,96,,,,,7.5s,ID+3.5 gap,86665,, +420,RUS,,DV,b,Dzhubga,44.3125,38.708333,,0.025,,2520,97,98,,,,,L400 U400 ,IDx2,86663,, +420,AZR,,PI,b,Madalena (pic),38.5625,-28.375,,0.025,,3067,254,104,,,,0,L1017 U1020 ,ID+2 gap,84984,, +420,RUS,,SHF,b,Orsk (OB),51.270833,58.625,,0.025,,3522,70,108,,,,,7.5s,ID+2.5s gap,84987,, +420,KAZ,,AB,b,Atbasar (aqm),51.895833,68.375,,0.025,,4109,65,114,,,,,,ID+7.5 tone,84962,, +420,TJK,,WG,b,Dushanbe (dsb),38.543056,68.885,,0.025,,4944,82,122,,,,,,34200008,,, +420,RUS,,UBR6 Nevelsk R,c,Nevelsk,46.666667,141.866667,,1,,8242,30,139,,????-????,1234567,,,19901358,,, +420,USA,,GAS,b,Gallipolis (OH),38.8125,-82.125,,0.025,,6621,295,139,,,,,U1020 ,84969,,, +420,CLM,,HKB Barranquilla R,c,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900402,,, +420,RUS,,UBT6 Severo-Kurilsk R,c,Severo-Kurilsk (SL),45.233333,147.883333,,1,,8582,27,142,,????-????,1234567,,,19901365,,, +420,USA,,CFY,b,Evans Lake City (SC),33.854167,-79.791667,,0.025,,6865,290,142,,,,0,L1020 U1020 5667s,84965,,, +420,USA,,FQ,b,Montz Fairmont (MN),43.645833,-94.375,,0.025,,6951,307,142,,,,975,L1081 U1026 8.0s,84968,,, +420,USA,,CEK,b,Crete (NE),40.604167,-96.958333,,0.025,,7345,306,146,,,,,L~1081 U1040 ,87255,,, +420,USA,,PK,b,Olathe (KS),38.770833,-94.708333,,0.025,,7373,303,147,,,,0,L1038 U1038 5.56s,84985,,, +420,USA,,TU,b,Veron Tupelo (MS),34.1875,-88.791667,,0.025,,7404,296,147,,,,990,L1060 U1035 6085s,84990,,, +420,CUB,,V,b,Varder Varadero, Santo Domingo (ma),23.01995,-81.458183,,0.025,,7867,283,152,,,,3,L1167 U1169 9.76s,84991,, +420,CLM,,PTE,b,Uribia (Baha Portete) (lag),12.229167,-71.966667,,0.025,,8146,268,154,,,,3,L1068 U1075 7.3s,84986,,, +420.5,IND,,VWZ Ratnagiri R,c,Ratnagiri (MH),16.983333,73.3,,1,,6955,98,127,,????-????,1234567,-420.5,,19900693,,, +420.5,J,,Sapporo R,c,Sapporo (hok),43.05,141.35,,1,,8583,32,142,,????-????,1234567,-420.5,,19900913,,, +421,G,,BUR,b,Burnham (EN-BER),51.520833,-0.708333,,0.025,,493,265,78,,,,3,L397 U400 6.0s,84994,,, +421,S,,MF,b,Halmstad,56.645833,12.791667,,0.025,,652,37,79,,,,9957,L405 U408 4.5s,84998,,, +421,HRV,,SAL,b,Zadar / Sali (zd),43.9375,15.208333,,0.04,,1118,141,82,,,,0,L1010 U1015 ,84999,,, +421,S,,T,b,Linkping/Saab,58.395833,15.708333,,0.025,,913,36,82,,,,0,L400 U404 1.0s,85000,,, +421,S,,BL,b,Borlnge / Rommehed / Falun,60.479167,15.375,,0.025,,1080,27,84,,,,989,L407 U392 4.5s,84992,,, +421,I,,FN,b,Fiumicino (rm),41.895833,12.208333,,0.025,,1217,157,85,,,,6,L1022 U1019 ,ID+8 gap,84996,, +421,AZR,,CUG So Miguel R,c,So Miguel (smg),37.766667,-25.5,,1,,2939,250,86,,????-????,1234567,,,19900229,,, +421,E,,GE,b,Madrid / Grinon (MAD-M),40.1875,-3.875,,0.025,,1541,215,88,,,,2,L1020 U1034 9399s,ID+8 gap,84997,, +421,S,,TRU,b,Trundon,65.395833,21.791667,,0.025,,1713,25,90,,,,,,85001,,, +421,ALG,,BTN,b,Batna (5),35.5625,6.125,,0.025,,1840,181,91,,,,,U1035 ,84993,,, +421,GNB,,J5M Bissau R,c,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,,,19900597,,, +421,STP,,S9M So Tom R,c,So Tom (sao),0.345833,6.7375,,1,,5756,180,115,,????-????,1234567,,,19901386,,, +421,USA,,EF,b,Fluet Mc Kinney (TX),33.270833,-96.625,,0.025,,7952,301,152,,,,985,L1035 U1004 6.0s,84995,,, +421.5,XOE,,EGN,b,Elgin Platform,57.020833,1.875,,0.025,,619,334,79,,,,500,L400 U400 ,85002,,, +421.5,URG,,CWA Cerrito R,c,Cerrito (mo),-34.866667,-56.166667,,1,,11415,228,152,,????-????,1234567,-421.5,,19901481,,, +422,XOE,,NAL,b,L9-FF-1,53.604167,4.958333,,0.025,,193,330,75,,,,,L1025 U1022 ,86668,,, +422,CZE,,UR,b,Hradec Krlov/Upir (KR),50.1875,15.875,,0.05,,693,104,77,,,,70,L967 U1076 9.0s,85012,,, +422,E,,PAM,b,Pamplona (NAV-NA),42.714211,-1.639039,,0.1,,1206,213,79,,,,3,L1037 U1052 8.5s,ID+4 gap,85008,, +422,HRV,,OSJ,b,Osijek (os),45.4375,18.958333,,0.1,,1179,124,79,,,,2,L1022 U1026 8.4s,ID+4 gap,85007,, +422,HNG,,O,b,Szolnok / Opera (JNS),47.145833,20.208333,,0.025,,1134,114,84,,,,,15.0s,IDx2,85006,, +422,ROU,,TLC,b,Tulcea / Cataloi (TL),44.979167,28.708333,,0.025,,1813,107,91,,,,2,L1025 U1033 6.09s,ID+3 gap,85011,, +422,TUR,,CNK,b,Canakkale (mam-can),40.145833,26.458333,,0.025,,2027,123,93,,,,15,L990 U1015 ,Cont. ID,85004,, +422,GRC,,ATL,b,Astypalaia (seg-dod),36.5625,26.375,,0.025,,2332,130,96,,,,16,L380 U412 ,ID+5 gap,85003,, +422,RUS,,SA,b,Plesetsk (AR),62.6875,40.375,,0.025,,2311,46,96,,,,,,85010,,, +422,RUS,,RQ,b,Plesetsk (AR),44.3125,38.708333,,0.025,,2520,97,98,,,,,,85009,,, +422,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901006,,, +422,GUY,,8RB Demerara R,c,Georgetown (dem),6.816667,-58.158333,,1,,7692,254,134,,????-????,1234567,,,19900633,,, +422,USA,,EA,b,Anoke Kearney (NE),40.645833,-99.041667,,0.025,,7456,307,148,,,,996,L1025 U1015 8.0s,85005,,, +422.5,I,,ALS,b,Alessandria (al),44.895833,8.625,,0.025,,819,168,81,,,,-422.5,,85013,,, +422.5,J,,Shimonoseki R,c,Shimonoseki (chg-yam),33.95,130.95,,1,,9036,44,144,,????-????,1234567,-422.5,,19900919,,, +423,DNK,,FE,b,Odense / Beldringe (sdk-fyn),55.520833,10.458333,,0.025,,463,33,78,,,,9986,U405 4.0s,85020,,, +423,POL,,M,b,Cewice,54.4375,17.791667,,0.025,,799,67,81,,,,,L1012 U1010 ,ID+2.5 gap,85022,, +423,E,,SCA,b,Salamanca (CAL-SA),40.9375,-5.625,,0.1,,1542,221,82,,,,18,L994 U1033 11.0s,ID+7 gap,85025,, +423,POL,,NT,b,Lask,51.5625,19.208333,,0.025,,880,89,82,,,,,L1022 U1003 ,ID+2 gap,86670,, +423,I,,FOR,b,Forli (fc),44.229167,11.958333,,0.025,,967,153,83,,,,2,L1010 U1030 8.0s,85021,,, +423,F,,TS,b,Toulouse / Blagnac (31),43.520833,1.458333,,0.015,,1024,203,85,,,,,U6 ,DAID,85027,, +423,G,,CWL,b,Cranwell (EN-LIN),53.020833,-0.458333,,0.005,,475,285,85,,,,993,L405 U394 10.0s,85018,,, +423,ALG,,BJA,b,Bjaa / Soummam (6),36.6875,5.041667,,0.04,,1718,184,88,,,,,U37 ,ID+15 tone,85015,, +423,SRB,,ZO,b,Ni/Zitoradja (Srb-nsv),43.1875,21.708333,,0.025,,1510,125,88,,,,22,L1135 U900 9.0s,ID+5 tone,85028,, +423,USA,,PCW,b,Port Clinton (OH),41.520833,-82.875,,0.025,,6457,298,138,,,,2,L1011 U1016 6894s,85024,,, +423,USA,,SIF,b,Slammer Reidsville (NC),36.395833,-79.791667,,0.025,,6664,292,140,,,,,L1014 U1024 5417s,85026,,, +423,USA,,CKP,b,Pilot Rock Cherokee (IA),42.729167,-95.541667,,0.025,,7090,307,144,,,,998,L1045 U1031 7.0s,85017,,, +423,USA,,AU,b,Opole Auburn (AL),32.520833,-85.458333,,0.025,,7334,293,146,,,,985,L1008 U1033 6.43s,85014,,, +423,USA,,DXE,b,Dexter (MO),36.770833,-89.958333,,0.025,,7261,299,146,,,,1,L1018 U1020 ,85019,,, +423,USA,,OC,b,Jumpi Ocala (FL),29.0625,-82.208333,,0.025,,7411,288,147,,,,988,L1030 U1013 6091s,85023,,, +423.5,XOE,,EDR,b,Shell Expro / Eider Platform,61.354167,1.291667,,0.025,,1073,345,84,,,,-423.5,,85029,,, +424,E,,RUS,b,Reus (CAT-T),41.145833,1.125,,0.2,,1283,200,77,,,,19,L1010 U1028 21.0s,ID+18 gap,85035,, +424,F,,PHG,b,Phalsbourg / Bourscheid (57),48.770833,7.208333,,0.025,,376,171,77,,,,,U4 ,85033,,, +424,XOE,,FPS,b,Shell Expro / Teal FPSO,57.270833,0.791667,,0.025,,678,330,80,,,,,,86671,,, +424,F,,LOE,b,Limoges / Bellegarde (87),46.020833,1.375,,0.025,,770,210,81,,,,,U5 20.0s,DAID,85031,, +424,HRV,,PIS,b,Zagreb / Pleso / Pisarovina (zg),45.604167,15.875,,0.025,,1000,133,83,,,,967,L986 U905 9.5s,ID+6 tone,85034,, +424,E,,RES,b,Reus (CAT-T),41.145833,1.125,,0.025,,1283,200,86,,,,,,87256,,, +424,ALG,,GRS,b,Ghriss (29),35.229167,0.125,,0.025,,1942,197,92,,,,,U15 ,85030,,, +424,TUR,,SEL,b,Efes / Selcuk (ege-izm),37.9375,27.375,,0.025,,2264,126,96,,,,0,L1020 U1020 ,ID+6 gap,85037,, +424,USA,,RVJ,b,Prison Reidsville (GA),32.0625,-82.125,,0.025,,7160,290,145,,,,,U1020 6.1s,85036,,, +425,D,,ERT,b,Erfurt (th),50.979167,10.875,,0.025,,333,110,76,,,,927,L1028 U1016 5.8s,85042,,, +425,RUS,,UZS Onega R,c,Onega (AR),63.916667,38.083333,,1,,2244,42,79,,????-????,1234567,,,19901360,,, +425,BIH,,DNC,b,Mostar (hgn),43.145833,17.875,,0.1,,1313,135,80,,,,998,L405 U395 10.0s,ID+6 gap,85041,, +425,I,,MMP,b,Gallarate / Malpensa (va),45.645833,8.708333,,0.025,,738,166,80,,,,974,L1040 U990 10.0s,ID+6 gap,85047,, +425,SVK,,KE,b,Kosice (KE),48.604167,21.208333,,0.025,,1117,105,84,,,,9,L1017 U986 ,ID+6 gap,85046,, +425,EST,,RC,b,Prnu (Pae),58.479167,24.541667,,0.025,,1342,51,86,,,,2,L1020 U1024 15s,IDx2,85052,, +425,UKR,,JL,b,Kolomya (IF),48.520833,25.125,,0.025,,1383,99,87,,,,,,85045,,, +425,S,,OU,b,Umea,63.854167,20.208333,,0.025,,1531,26,88,,,,999,L405 U408 4.5s,85048,,, +425,POR,,EVR,b,Evora (evo),38.520833,-7.875,,0.05,,1872,222,89,,,,999,L404 U404 4.99s,85043,,, +425,UKR,,PI,b,Pii,49.854167,31.125,,0.025,,1740,88,90,,,,164,L328 U657 ,IDx2 + 22 gap,85051,, +425,RUS,,BQ,b,Malino,55.104167,38.125,,0.025,,2100,68,94,,,,,L1006 U1007 ,IDx2,85039,, +425,TUR,,BUK,b,Ankara / Cubuk (ica-ank),40.229167,33.125,,0.025,,2423,112,97,,,,,U1024 ,Cont. ID,85040,, +425,RUS,,HJ,b,Mamadysh (TS),55.729167,51.375,,0.025,,2919,64,102,,,,,U960 ,85044,,, +425,KAZ,,AW,b,Aralsk (qzy),46.8125,61.625,,0.025,,3935,76,112,,,,,,85038,,, +425,DOM,,PCA,b,Salvalon de Higey (alt),18.5625,-68.375,,0.025,,7358,270,147,,,,985,L1042 U1012 10521s,85049,,, +425,GTM,,SGA,b,San Jose (Escuintla) (esl),13.9375,-90.875,,0.2,,9276,284,152,,,,3,L982 U987 7056s,DA3ID,85053,, +425,USA,,PFL,b,Fort Sill (OK),34.604167,-98.375,,0.025,,7938,303,152,,,,991,L1050 U1037 7.75s,85050,,, +426,AUT,,GBG,b,Gleichenberg for Graz (ste),46.895833,15.791667,,0.1,,890,127,76,,,,9975,L1022 U1018 7.4s,ID+5 gap,85060,, +426,XOE,,HWQ,b,Hewett A Platform,53.020833,1.791667,,0.025,,328,290,76,,,,0,L398 U402 10.0s,85061,,, +426,D,,MIQ,b,Mike for Ingolstadt (bay),48.5625,11.625,,0.025,,541,135,78,,,,2,L1025 U1020 7.3s,85063,,, +426,G,,SH,b,Shobdon (EN-HER),52.229167,-2.875,,0.025,,633,275,79,,,,206,L410 U402,85066,,, +426,E,,TJA,b,Madrid / Torrejon De Ardoz (MAD-M),40.5625,-3.375,,0.1,,1485,214,82,,,,,U1053 7.8s,ID+6 gap,85068,, +426,F,,CTS (Dax airport, mil.),b,Castets/Pouin (40),43.9375,-1.125,,0.025,,1066,215,84,,,,,,DAID,85057, +426,I,,SOR,b,Sorrento (na),40.5625,14.375,,0.025,,1420,152,87,,,,0,L1020 U1018 10.0s,ID+6 gap,85067,, +426,ROU,,BC,b,Bacau (BC),46.479167,26.958333,,0.025,,1609,105,89,,,,0,L1034 U1037 ,ID+3 gap,85054,, +426,POR,,CB,b,Coimbra (coi),40.145833,-8.458333,,0.025,,1749,226,90,,,,0,L397 U404 9.8s,85055,,, +426,RUS,,Q,b,Petrozavosk (KR),61.895833,34.125,,0.025,,1977,46,93,,,,,,85065,,, +426,TUR,,CRL,b,Tekirdag / Corlu (mam-tek),41.145833,27.958333,,0.025,,2035,118,93,,,,5,L1020 U1040 ,ID+2 gap,85056,, +426,BAH,,C6N Nassau R,c,Nassau (npr),25.05,-77.333333,,1,,7422,281,131,,????-????,1234567,,,19900245,,, +426,USA,,San Francisco R,c,San Francisco (CA),37.766667,-122.416667,,1,,8861,321,143,,????-????,1234567,,,19901555,,, +426,USA,,EN,b,Rikky Council Bluffs (IA),41.229167,-95.791667,,0.025,,7228,306,145,,,,978,L1048 U1007 5.9s,85058,,, +426,USA,,FTP,b,Fort Payne (AL),34.520833,-85.708333,,0.025,,7186,294,145,,,,986,L1043 U56 5427s,85059,,, +426,USA,,IZS,b,Montezuma (GA),32.354167,-84.041667,,0.025,,7258,292,146,,,,991,L1030 U1011 6.1s,85062,,, +426,USA,,UV,b,Tunng Oxford (MS),34.395833,-89.625,,0.025,,7438,297,147,,,,971,L1065 U999 6.1s,85069,,, +426.5,J,,Oita R,c,Oita (kyu-oit),33.233333,131.6,,1,,9135,44,144,,????-????,1234567,-426.5,,19900910,,, +427,D,,BRU,b,Braunschweig (nds),52.3125,10.625,,0.025,,288,84,76,,,,,L1033 U1034 ,85072,,, +427,XOE,,HDY,b,Halfdan Platform / Maersk,55.520833,5.041667,,0.025,,390,347,77,,,,998,L400 U397 6.6s,85075,,, +427,I,,FER,b,Ferrara (fe),44.8125,11.625,,0.04,,897,153,80,,,,0,L1020 U1018 10.0s,ID+7 gap,85074,, +427,F,,AUB,b,Aubenas / Val-Lanas (07),44.4375,4.375,,0.025,,866,191,82,,,,,L395 U407 10.0s,ID+7 gap,85071,, +427,F,,RY,b,Royan / Medis (17),45.354167,-0.541667,,0.025,,907,217,82,,,,,U406 19.9s,DAID,85080,, +427,S,,LUE,b,Kramfors / Lunde,62.895833,17.791667,,0.025,,1374,25,87,,,,5,L393 U406 ,85076,,, +427,RUS,,DK,b,Saratov / Tsentralny (SR),51.5625,46.125,,0.025,,2695,75,100,,,,,,85073,,, +427,RUS,,OH,b,Saratov / Tsentralny (SR),51.604167,45.958333,,0.025,,2683,75,100,,,,,U836 ,85078,,, +427,USA,,MMT,b,Mc Entire Columbia (SC),33.9375,-80.791667,,0.025,,6923,291,142,,,,983,L1035 U1001 8239s,85077,,, +427.5,XOE,,TTN,b,Triton / Kvaerner Platform,57.020833,0.958333,,0.025,,649,329,79,,,,-427.5,,85082,,, +428,F,,CTX,b,Chateauroux / Deols (36),46.9375,1.791667,,0.05,,664,212,77,,,,,L401 U407 10.0s,ID+6 gap,85087,, +428,F,,MUS,b,Nice / Cte dAzur (83),43.395833,6.625,,0.04,,969,179,81,,,,,U5 ,85091,,, +428,F,,BST,b,Lanveoc / Poulmic (29),48.270833,-4.458333,,0.025,,882,245,82,,,,,U34 18.0s,ID+12 tone,85085,, +428,AZR,,GC,b,Santa Cruz de Graciosa (gci),39.104167,-28.041667,,2,,3006,255,84,,,,995,L1023 U1019 ,85088,,, +428,E,,MNF,b,Sevilla / Moron De La Frontera (AND-SE),37.3125,-5.541667,,0.1,,1892,214,86,,,,,U1058 6.2s,ID+3 gap,85090,, +428,SRB,,BS,b,Camp Bondsteel Army Heliport (Kos),42.354167,21.208333,,0.04,,1552,128,86,,,,0,L1051 U1026 ,ID+4 gap,85084,, +428,ROU,,TGM,b,Targu Mures / Vidrasau (MS),46.4375,24.291667,,0.025,,1437,109,87,,,,955,L1032 U894 10.0s,ID+5 gap,85094,, +428,USA,,COG,b,Orange (VA),38.229167,-78.125,,0.025,,6416,292,137,,,,,,87257,,, +428,KRE,,Ch'ongjin R,c,Ch'ongjin (hab),41.775,129.777778,,1,,8240,40,139,,????-????,1234567,,,19901002,,, +428,USA,,EEJ,b,Lee Co Sanford (NC),35.354167,-79.208333,,0.025,,6709,291,140,,,,,,87258,,, +428,USA,,POH,b,Pocahontas (IA),42.729167,-94.625,,0.025,,7040,306,143,,,,17,L1000 U1025 6.5s,85092,,, +428,USA,,SYW,b,Cash Greenville (TX),32.979167,-96.041667,,0.025,,7942,300,152,,,,997,L1026 U1025 6.0s,85093,,, +428,TON,,A3A Nuku'alofa R,c,Nuku'alofa (ttp),-21.141667,-175.177778,,1,,16569,3,169,,????-????,1234567,,,19901409,,, +428.5,RUS,,UCI Dikson R,c,Dikson (KN),73.5,80.55,,1,,4053,27,98,,????-????,1234567,-428.5,,19901337,,, +429,LVA,,UNI Ventspils R,c,Ventspils (Ven),57.390278,21.533333,,1,,1131,53,68,,????-????,1234567,,,19901045,,, +429,D,,GBL,b,Giebelstadt (bay),49.645833,9.958333,,0.025,,370,136,77,,,,990,L1040 U1020 6.0s,85099,,, +429,D,,OBI,b,Oberpfaffenhofen (bay),48.0625,11.291667,,0.025,,569,140,79,,,,999,L1024 U1022 8.0s,85105,,, +429,CZE,,B,b,Brno / Turany / Borek (JM),49.145833,16.708333,,0.025,,797,110,81,,,,5,L399 U400 ,ID+10 gap,85095,, +429,HRV,,LOS,b,Loinj (ri),44.520833,14.458333,,0.04,,1031,142,81,,,,988,L1047 U995 9797s,ID+5 tone,85103,, +429,SVK,,D,b,Bratislava / M.R Stefanik (BA),48.1875,17.208333,,0.025,,883,115,82,,,,5,L1023 U1019 10.0s,85098,,, +429,GRC,,LIO,b,Limnos (neg-les),39.9375,25.208333,,0.025,,1974,126,93,,,,0,L330 U390 ,ID+5.5 gap,85102,, +429,LBY,,KDR,b,Kadra (mqb),32.354167,13.625,,0.025,,2273,162,96,,,,2,L1025 U1028 8.0s,ID+4.5 gap,85101,, +429,ALS,,DGG,b,Red Dog Mine (AK),68.020833,-162.875,,0.025,,6628,355,139,,,,,L1009 U1016 6.5s,86830,,, +429,USA,,IKY,b,Springfield (KY),37.645833,-85.208333,,0.025,,6903,296,142,,,,998,L1011 U1008 5.58s,85100,,, +429,ALS,,BTS,b,Wood River Dillingham (AK),58.979167,-158.541667,,0.025,,7588,352,149,,,,983,L1055 U1021 ,85096,,, +429,MAU,,AGG,b,Agalega,-10.366667,56.599722,,0.025,,8432,129,157,,,,,,20800003,,, +430,G,,NOT,b,Nottingham / Tollerton (EN-NHS),52.9375,-1.041667,,0.025,,512,283,78,,,,2,L400 U405 7.6s,85118,,, +430,F,,SN,b,St.Yan (71),46.3125,4.125,,0.025,,666,195,80,,,,,L397 U407 10.3s,ID+9 gap,85121,, +430,XOE,,CD,b,Shell Expro / Cormorant Alpha,61.104167,1.041667,,0.025,,1052,344,83,,,,,,85113,,, +430,HNG,,BUG,b,Bugac (BaK),46.6875,19.708333,,0.025,,1133,117,84,,,,998,L1019 U1019 8.0s,ID+6 gap,85112,, +430,RUS,,AJ,b,Staritza (TV),56.520833,34.958333,,0.025,,1900,64,92,,,,0,L1020 U1019 ,85110,,, +430,RUS,,QD,b,Petrozavodsk (KR),61.895833,34.125,,0.025,,1977,46,93,,,,,,85120,,, +430,UKR,,LI,b,Lykhacheve,49.3125,36.291667,,0.025,,2112,87,94,,,,22,L1008 U1066 ,ID+27 gap,85115,, +430,RUS,,OG,b,Onega (AR),63.895833,38.125,,0.025,,2245,42,95,,,,5,L394 U416 30.0s,IDx2,85119,, +430,RUS,,MB,b,Chemukha,55.604167,43.791667,,0.025,,2451,66,97,,,,,U926 ,IDx2,85117,, +430,GEO,,LU,b,Batumi (aja),41.604167,41.625,,0.025,,2885,100,102,,,,0,L400 U402 8.0s,ID+6 gap,85116,, +430,KAZ,,L,b,Almaty (alm),43.354167,77.041667,,0.025,,5157,71,125,,,,,,85114,,, +430,USA,,AYB,b,Auburn (NE),40.4375,-95.791667,,0.025,,7294,305,146,,,,5,L1015 U1024 6.5s,85111,,, +430,INS,,Teluk Bayur R,c,Teluk Bayur,2.15,117.4,,1,,11227,72,151,,????-????,1234567,,,19900790,,, +430,CUB,,VA,b,Varadero (ma),22.979167,-81.541667,,0.025,,7876,283,152,,,,5,L1030 U1039 6.4s,85123,,, +430,INS,,Surabaya R,c,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,,,19900785,,, +430,INS,,PKK Kupang R,c,Kupang (NT-kpg),-10.166667,123.583333,,1,,12737,74,156,,????-????,1234567,,,19900740,,, +430,NRU,,C2N Nauru R,c,Nauru,-0.533333,166.911111,,1,,13998,24,160,,????-????,1234567,,,19901131,,, +430,B,,TBE,b,Taubat (SP),-23.0625,-45.541667,,0.025,,9758,226,162,,,,3,L1057 U1064 ,85122,,, +431,D,,KBA,b,Karlsruhe / Baden Baden (bw),48.8125,8.125,,0.025,,386,161,77,,,,,L1026 U1013 14.9s,85128,,, +431,XOE,,DPP,b,Morecambe Platform,53.979167,-3.708333,,0.025,,707,291,80,,,,0,L~400 U~400 ,ID+5 gap,85126,, +431,G,,SAY,b,Stornoway (SC-WIL),58.229167,-6.291667,,0.025,,1052,315,83,,,,0,L403 U403 5.8s,85130,,, +431,GRC,,HER,b,Heraklion / Nikos Kazantzakis (krt-ira),35.354167,25.208333,,0.025,,2384,134,97,,,,10,L400 U421 15.0s,ID+10 gap,85127,, +432,D,,RO,b,Rothenburg (sac),51.354167,14.958333,,0.025,,594,95,79,,,,998,L1135 U1040 12.7s,85146,,, +432,CZE,,PK,b,Pardubice / Prvek (PA),50.020833,15.791667,,0.025,,695,106,80,,,,995,L1003 U1042 9.5s,ID+2 gap,85144,, +432,XOE,,MDA,b,Armada Platform,57.5625,1.541667,,0.025,,681,335,80,,,,0,L400 U400 ,85142,,, +432,F,,PRD (Dax Airport, mil.),b,Peyrehorade (40),43.513667,-1.109111,,0.025,,1107,213,84,,,,,U4 ,DAID,85145, +432,UKR,,BB,b,Bibrka,49.645833,24.291667,,0.025,,1281,95,86,,,,0,L1015 U1013 ,IDx2 + 25 gap,85132,, +432,EST,,G,b,mari (Har),59.270833,24.208333,,0.025,,1364,47,87,,,,993,L408 U395 3.0s,ID+1 gap,85134,, +432,SYR,,YKM7 Latakia R,c,Latakia (lat),35.508333,35.766667,,1,,2958,117,87,,????-????,1234567,,,19901392,,, +432,MKD,,IZD,b,Ohrid / Izdeglavlje (SW),41.354167,20.791667,,0.025,,1616,132,89,,,,0,L1066 U1020 14.1s,ID+8 tone,85139,, +432,ROU,,D,b,Deveselu,44.104167,24.375,,0.025,,1597,117,89,,,,,,85133,,, +432,ALG,,HMB,b,Hammam Bou Hadjar for Oran (46),35.354167,-0.958333,,0.025,,1952,200,92,,,,,U6 19.8s,ID+15 tone,85137,, +432,FIN,,AKU,b,Ivalo / Akujrvi,68.6875,27.625,,0.025,,2156,23,95,,,,3,L407 U410 ,85131,,, +432,CYP,,LCA,b,Larnaca (kyp-lar),34.8125,33.541667,,0.025,,2884,121,102,,,,999,U400 ,ID+4 gap,85141,, +432,TUR,,GAZ,b,Gaziantep / Oguzeli (gda-gaz),36.9375,37.458333,,0.025,,2948,113,102,,,,1,L1020 U1022 ,ID+3 gap,85135,, +432,USA,,IZN,b,Lincolnton (NC),35.520833,-81.125,,0.025,,6818,292,141,,,,4,L1006 U1014 5.0s,85140,,, +432,USA,,MHP,b,Metter (GA),32.354167,-82.125,,0.025,,7136,290,144,,,,1,L1021 U1023 5.6s,85143,,, +432,CHN,,GO,b,Jinan / Yaoqiang (SD),36.854167,117.208333,,0.025,,8074,52,154,,,,,,IDx2,85136,, +432,OCE,,FJA Mahina R,c,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,????-????,1234567,,,19901272,,, +433,E,,VON,b,Vigo (GAL-PO),42.1875,-8.625,,0.2,,1578,232,80,,,,993,L1027 U1021 17.7s,85156,,, +433,HRV,,CRE,b,Cres (ri),44.895833,14.458333,,0.04,,996,140,81,,,,38,L960 U939 9.8s,ID+5 tone,85152,, +433,EGY,,SUP Port Said R,c,Bur Said=Port Said (pts),31.266667,32.3,,1,,3128,128,88,,????-????,1234567,,,19900507,,, +433,RUS,,P,b,Pskov (PS),57.770833,28.375,,0.025,,1529,57,88,,,,,,85155,,, +433,E,,JER,b,Jerez de la Frontera (AND-CA),36.854167,-6.041667,,0.05,,1957,215,90,,,,998,L1016 U1022 8.6s,ID+5 tone,85153,, +433,E,,JRZ,b,Jerez de la Frontera (AND-CA),36.854167,-6.041667,,0.05,,1957,215,90,,,,,L1020 U1020 ,87259,,, +433,RUS,,BO,b,Ermolino,55.229167,36.625,,0.025,,2004,68,93,,,,,L1030 U940 15.2s,IDx2 + 5 gap,85149,, +433,RUS,,MI,b,Ermolino,55.229167,36.625,,0.025,,2004,68,93,,,,0,L1045 U1045 15.0s,ID+3 tone,85154,, +433,RUS,,BW,b,Rybinsk / Staroselje (YA),58.104167,38.958333,,0.025,,2151,59,94,,,,,,IDx2+19gap,85150,, +433,TUR,,CRD,b,Cardak / Denizli (ege-dzl),37.770833,29.708333,,0.025,,2411,122,97,,,,991,L1025 U1007 ,ID+4 gap,85151,, +433.5,G,,HEN,b,Henton (EN-BKS),51.770833,-0.791667,,0.025,,495,268,78,,,,497,L404 U405 4.8s,85157,,, +433.5,ARG,,LPZ Trelew R,c,Trelew (ch),-43.25,-65.3,,1,,12632,229,156,,????-????,1234567,-433.5,,19900058,,, +434,XOE,,JL,b,Skjold C Platform,55.520833,4.875,,0.025,,392,346,77,,,,,U603 4.3s,85162,,, +434,F,,MV,b,Melun / Villaroche (77),48.5625,2.958333,,0.025,,464,213,78,,,,,L407 U400 10.1s,ID+8 gap,85164,, +434,CZE,,KNE,b,Kunovice (ZL),49.0625,17.458333,,0.025,,849,109,81,,,,490,L974 U989 9.00s,85163,,, +434,ROU,,A,b,Baneasa East,44.520833,26.125,,0.025,,1677,112,90,,,,35,L1082 U1086 ,Cont. ID,85158,, +434,RUS,,GR,b,Gorka,59.8125,32.375,,0.025,,1812,52,91,,,,2,L748 U752 ,85160,,, +434,TUR,,ER,b,Erzurum / Mudurge (dad-erz),39.979167,41.291667,,0.025,,2972,103,103,,,,,L17 ,ID+8 gap,85159,, +434,KRE,,Namp'o R,c,Namp'o (pyn),38.719444,125.386111,,1,,8322,45,140,,????-????,1234567,,,19901005,,, +434,CLM,,HKB Barranquilla R,c,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900403,,, +434,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900941,,, +434,USA,,SLB,b,Storm Lake (IA),42.604167,-95.208333,,0.025,,7082,306,144,,,,994,L1033 U1030 5.41s,85166,,, +434,CHL,,CBX Bahia Felix R,c,Baha Felix,-52.958611,-74.072778,,1,,13862,226,160,,????-????,1234567,,,19900317,,, +435,UKR,,UTT Odesa R,c,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,????-????,1234567,,,19901467,,, +435,UKR,,Kerch R,c,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,????-????,1234567,,,19901459,,, +435,SRB,,BR,b,Brdjani,43.9375,20.458333,,0.025,,1380,126,87,,,,,L1060 U963 9.5s,ID+6 tone,86681,, +435,UKR,,SM,b,Semenivka,52.1875,32.541667,,0.025,,1773,79,91,,,,976,L642 U592 15.0s,IDx2 + 6 gap,85177,, +435,LBY,,D,b,Tripoli / Delta (tbl),32.645833,13.125,,0.025,,2231,163,95,,,,0,L1019 U1013 10.0s,ID+9 gap,85169,, +435,RUS,,ER,b,Yegorlykskaya,46.604167,40.708333,,0.025,,2533,90,98,,,,998,L1016 U1015 30.0s,ID+8 gap,85170,, +435,CYP,,GKE,b,Gecitkale/Gazimagosa International (kib),35.229167,33.708333,,0.025,,2858,120,102,,,,0,L1020 U1021 ,ID+7 gap,85172,, +435,LBY,,GHT,b,Ghat (ght),25.1875,10.125,,0.025,,3010,173,103,,,,998,L1022 U1028 8.3s,ID+5 gap,85171,, +435,CPV,,D4D Praia R,c,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900423,,, +435,RUS,,BI,b,Bisert (SV),56.854167,59.041667,,0.025,,3354,60,107,,,,,U1015 30.6s,IDx2,85168,, +435,ALG,,IGZ,b,In Guezzam (11),19.5625,5.791667,,0.025,,3620,181,109,,,,,U24 ,ID+16 tone,85174,, +435,UZB,,ZR,b,Nukus (qrp),42.4375,59.625,,0.025,,4058,84,114,,,,,U1012 ,85178,,, +435,KAZ,,GN,b,Jezqazğan=Zhezkazgan (qar),47.729167,67.791667,,0.025,,4289,71,116,,,,,U1020 ,85173,,, +435,USA,,IIY,b,Washington-Wilkes Co Washington (GA),33.770833,-82.791667,,0.025,,7064,292,144,,,,993,L1030 U1017 5.0s,85175,,, +435.5,EGY,,SUK Al-Qusair R,c,Al-Qusayr=Quseir (bar),26.110889,34.280083,,1,,3714,130,94,,????-????,1234567,-435.5,,19900502,,, +436,BUL,,LZL Burgas R,c,Burgas (bur),42.5,27.472222,,1,,1903,116,76,,????-????,1234567,,,19900276,,, +436,POL,,S,b,Darlowo,54.395833,16.375,,0.025,,709,65,80,,,,995,L986 U1000 4.0s,85181,,, +436,HNG,,SME,b,Srmellk / Balaton (Zal),46.645833,17.208333,,0.025,,988,124,83,,,,5,L1036 U1030 5.65s,ID+2 gap,85182,, +436,ARS,,HZH Jeddah R,c,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,,,19900062,,, +436,RUS,,UFV Vladivostok R,c,Vladivostok (PM),43.133333,131.9,,1,,8204,38,139,,????-????,1234567,,,19901369,,, +437,POL,,NP,b,Tomaszow-Mazowiecki / Porter,51.5625,20.125,,0.025,,943,88,82,,,,,L400 U404 ,ID+2 gap,86682,, +437,MDR,,CTQ Porto Santo R Naval,c,Porto Santo (pst),33.066278,-16.355417,,1,,2797,230,85,,????-????,1234567,,,19901073,,, +437,RUS,,DE,b,Moskva/Domodedovo (MV),55.354167,37.958333,,0.025,,2088,68,94,,,,,L1016 U1011 30.0s,IDx2,85183,, +437,RUS,,DW,b,Moskva/Domodedovo (MV),55.4375,37.875,,0.025,,2082,67,94,,,,7,L1000 U1000 ,85184,,, +437,ARG,,Prefectura Naval Buenos Aires,c,Buenos Aires/Prefectura Naval (df),-34.583333,-58.666667,,1,,11518,230,152,,????-????,1234567,,,19900037,,, +437,ARG,,Prefectura Naval Mar del Plata,c,Mar del Plata/Prefectura Naval (ba),-38,-57.55,,1,,11772,227,153,,????-????,1234567,,,19900045,,, +437,ARG,,Prefectura Naval Recalada Rio de Plata,c,Recalada Rio de Plata/Prefectura Naval,-38.5,-63,,1,,12098,231,154,,????-????,1234567,,,19900048,,, +437,ARG,,Prefectura Naval Comodoro Rivadavia,c,Comodoro Rivadavia/Prefectura Naval (ch),-45.866667,-67.5,,1,,12966,228,157,,????-????,1234567,,,19900040,,, +438,CZE,,K,b,Praha Kbely / Kalda (PR),50.145833,14.541667,,0.025,,608,108,79,,,,979,L1065 U991 5.4s,85187,,, +438,SVK,,B,b,Bratislava / M.R Stefanik / Barka (BA),48.145833,17.208333,,0.025,,886,116,82,,,,0,L1021 U1020 ,85186,,, +438,HRV,,KO,b,Rijeka / Krk / Kozala (ri),45.354167,14.458333,,0.025,,954,139,83,,,,996,L1035 U1038 8.0s,ID+5 gap,85188,, +438,SVK,,PE,b,Poprad / Tatry East (PO),49.0625,20.458333,,0.025,,1046,103,83,,,,37,L1007 U1061 9.0s,85190,,, +438,LBY,,DUF,b,Jufra ? (ID JFR) (juf),29.1875,16.041667,,0.025,,2670,159,100,,,,,L390 U386 ,IDx2 + 2 gap,86683,, +438,LBY,,JUF,b,Jufra ? (ID JFR) (juf),29.1875,16.041667,,0.025,,2670,159,100,,,,,L400 U400 ,IDx2,86684,, +438,RUS,,OR,b,Kirov / Pobedilovo (KV),58.3125,49.208333,,0.025,,2750,59,100,,,,,U975 15.1s,IDx2,85189,, +438,RUS,,XA,b,Kirov (KV),58.479167,49.375,,0.025,,2759,58,101,,,,,L1033 ,85191,,, +438,RUS,,RSSZ/UNB4,c,Korsakov (SL),46.633333,142.783333,,1,,8276,29,140,,????-????,1234567,,,19901345,,, +438,J,,Niigata R,c,Niigata (chu-nii),37.916667,139.05,,1,,9005,36,144,,????-????,1234567,,,19900907,,, +438,INS,,Sabang R,c,Sabang (AC-sab),5.9,95.316667,,1,,9416,87,145,,????-????,1234567,,,19900770,,, +438,INS,,PKM Bitung R,c,Bitung (SA-bit),1.441667,125.15,,1,,11785,66,153,,????-????,1234567,,,19900717,,, +438,CHL,,CBV Valparaso Playa Ancha R,c,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,19900372,,, +438.5,UKR,,UWD9 Yalta Krymskoi R,c,Yalta (KR),44.5,34.166667,,1,,2203,102,79,,????-????,1234567,-438.5,,19901479,,, +438.5,EGY,,SUZ Ismailia R,c,Ismailia (ism),30.470311,32.36675,,1,,3205,129,89,,????-????,1234567,-438.5,,19900504,,, +438.5,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,-438.5,,19900428,,, +439,TKM,,MP,b,Mary (mry),37.571667,61.899444,,0.025,,4537,88,118,,,,,,11900007,,, +439,CHN,,WD,b,Zhonghao / Taiyuan / Wusu,37.645833,112.791667,,0.025,,7764,54,151,,,,,14s,2xID,86685,, +440,I,,PIA,b,San Giorgio Piacentino (pc),44.854167,9.791667,,0.025,,844,162,81,,,,3,L1020 U1020 6.0s,ID+2 gap,85197,, +440,HNG,,N,b,Kecskemt/Titan (BaK),46.9375,19.708333,,0.025,,1116,116,84,,,,,,85195,,, +440,POL,,OR,b,Rzeszow / Jasionka,50.104167,21.958333,,0.025,,1106,95,84,,,,0,L1020 U1020 4.5s,85196,,, +440,SYR,,YKM5 Baniyas R,c,Baniyas (tat),35.183333,35.95,,1,,2996,117,87,,????-????,1234567,,,19901393,,, +440,ARS,,HZY Ras Tannurah R,c,Ras Tannurah (shy),26.707056,50.10025,,1,,4591,111,103,,????-????,1234567,,,19900072,,, +440,RUS,,PT,b,Berezniki (PR),59.520833,56.875,,0.025,,3174,55,105,,,,,U1020 ,85198,,, +440,KAZ,,PW,b,Pavlodar (pav),52.229167,77.125,,0.025,,4623,61,119,,,,,,85199,,, +440,KAZ,,WL,b,Pavlodar (pav),52.145833,77.041667,,0.025,,4623,61,119,,,,,U380 ,86686,,, +440,PNR,,CHE,b,Chitre (her),7.979167,-80.375,,0.025,,9089,272,160,,,,993,L1010 U996 5471s,85192,,, +441,EST,,ESP Prnu R,c,Prnu (Pae),58.375,24.516667,,1,,1336,52,70,,????-????,1234567,,,19900515,,, +441,CZE,,CK,b,Prerov (OL),49.395833,17.375,,0.05,,827,107,78,,,,15,L985 U1002 11.5s,ID+9 gap,85202,, +441,RUS,,UZS Onega R,c,Onega (AR),63.916667,38.083333,,1,,2244,42,79,,????-????,1234567,,,19901361,,, +441,MRC,,CNP Casablanca R,c,Casablanca (gcb),33.6,-7.633333,,1,,2346,214,80,,????-????,1234567,,,19901113,,, +441,TUR,,Iskenderun R,c,Iskenderun,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901437,,, +441,EST,,O,b,Kardla (Hii),58.979167,22.875,,0.025,,1281,47,86,,,,913,L1040 U1040 5.7s,85205,,, +441,UKR,,P,b,Simferopol (KR),45.020833,33.958333,,0.025,,2159,100,95,,,,,,85206,,, +441,RUS,,CN,b,Savasleyka,55.4375,42.291667,,0.025,,2360,67,97,,,,1,L990 U992 20.0s,IDx2,85203,, +441,RUS,,LT,b,Savasleyka,55.4375,42.291667,,0.025,,2360,67,97,,,,,L1025 14.8s,IDx2 + 8 gap,85204,, +441,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900429,,, +441,RUS,,AL,b,Turukharnsk (KN),65.729167,87.875,,0.025,,4538,38,118,,,,,,85201,,, +441,MDG,,5RO Mahajanga R,c,Mahajanga (mhj),-15.716667,46.316667,,1,,8465,140,142,,????-????,1234567,,,19901054,,, +441,CLM,,HKC Buenaventura R,c,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900409,,, +442,LVA,,YLQ Riga R,c,Riga (Rig),56.95,24.066667,,1,,1255,58,70,,????-????,1234567,,,19901043,,, +442,IRQ,,YIR Basrah Control,c,Al-Baṣrah (bsr),30.5,47.816667,,1,,4127,109,98,,????-????,1234567,,,19900819,,, +442,KAZ,,SK,b,Uralsk / Podstepniy (btq),51.104167,51.458333,,0.025,,3063,74,104,,,,0,L1010 U1011 ,IDx2 + 7 gap,85208,, +442,KAZ,,UR,b,Uralsk / Podstepniy (btq),51.1875,51.625,,0.025,,3070,74,104,,,,,U1018 ,ID+7 gap,85209,, +442,IND,,VWP Port Blair R,c,Port Blair (AN),11.666667,92.75,,1,,8738,86,143,,????-????,1234567,,,19900690,,, +442,J,,Naha (Nansei Shoto) R,c,Naha (kyu-oki),26.2,127.666667,,1,,9609,50,146,,????-????,1234567,,,19900906,,, +442.5,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,-442.5,,19901280,,, +443,KAZ,,AL,b,Almaty (alm),43.395833,77.125,,0.025,,5160,71,125,,,,0,L1030 U1029 ,ID+6 gap,85211,, +444,POL,,NRD,b,Inowrocław (KP),52.844722,18.365,,0.05,,813,80,78,,,,9997,,6400032,,, +444,MDR,,CUB Madeira R,c,Funchal (md),32.641944,-16.9175,,1,,2865,230,86,,????-????,1234567,,,19901075,,, +444.5,ARG,,General Pacheco R,c,Buenos Aires/General Pacheco (df),-34.440556,-58.62,,1,,11503,230,152,,????-????,1234567,-444.5,,19900043,,, +445,BIH,,TU,b,Tuzla (tuz),44.479167,18.458333,,0.05,,1228,129,82,,,,996,L1000 U1030 9.7s,ID+7 tone,85223,, +445,UKR,,WS,b,Starokonstantinov,49.729167,27.291667,,0.025,,1482,92,88,,,,0,L974 U972 ,ID+4 gap,85224,, +445,UKR,,ZU,b,Starokonstantinov,49.4375,27.208333,,0.025,,1487,93,88,,,,5,L973 U985 ,ID+4.5 gap,85226,, +445,RUS,,CG,b,Pribylovo,60.4375,28.708333,,0.025,,1646,47,89,,,,836,L405 U402 ,85215,,, +445,RUS,,RF,b,Pribylovo,60.4375,28.708333,,0.025,,1646,47,89,,,,,L700 U700 ,85221,,, +445,RUS,,KM,b,Kem (KR),64.9375,34.458333,,0.025,,2133,37,94,,,,5,L1017 U1025 20.0s,IDx2 +11 gap,85218,, +445,RUS,,CM,b,Kichmengskiy / Gorodok,59.979167,45.791667,,0.025,,2552,54,98,,,,,,85216,,, +445,RUS,,OK,b,Zernograd,46.854167,40.375,,0.025,,2498,90,98,,,,,L1029 U1018 15.0s,ID+5 gap,86687,, +445,LBY,,SAH,b,Sahil (wah),29.520833,20.208333,,0.025,,2756,150,101,,,,,L3 ,86688,,, +445,RUS,,RD,b,Bazarnye Mataky (TS),54.895833,49.958333,,0.025,,2850,66,101,,,,,L1014 U1014 ,85220,,, +445,TKM,,RJ,b,Gyzylarbat / Arvat / Serdar (bal),39.020833,56.291667,,0.025,,4054,91,114,,,,,,85222,,, +445,CHN,,XSV Tianjin R,c,Tianjin (TJ),39.15,117.183333,,1,,7869,50,136,,????-????,1234567,,,19900393,,, +445,RUS,,UAD2 Kholmsk R,c,Kholmsk (SL),47.05,142.05,,1,,8210,30,139,,????-????,1234567,,,19901343,,, +445,CHN,,XSQ Guangzhou R,c,Guangzhou (GD),23.15,113.483333,,1,,9084,63,144,,????-????,1234567,,,19900381,,, +445,PNR,,HPP Panam Intelmar R,c,Ciudad de Panam (pnm),8.966667,-79.533333,,1,,8946,272,144,,????-????,1234567,,,19901287,,, +445,CHN,,LS,b,Shuiquan (HL),45.4375,126.041667,,0.025,,7735,41,150,,,,9,L1000 U1000 2s,85219,,, +445.3,ARS,,HZH Jeddah R,c,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-445.3,,19900063,,, +446,ARS,,HZH Jeddah R,c,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,,,19900064,,, +446,CUB,,Nuevitas R,c,Nuevitas (cm),21.55,-77.266667,,1,,7710,279,134,,????-????,1234567,,,19900447,,, +446,AUS,,TNG,b,Thangool (QLD),-24.479167,150.541667,,0.025,,15707,58,182,,,,,L1020 U1020 10s,85227,,, +446.5,ROU,,YQI Constanţa R,c,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-446.5,,19901327,,, +447,MRC,,CNW Tanger R,c,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,????-????,1234567,,,19901120,,, +447,UKR,,UTM Feodosiya R,c,Feodosiya (KR),45.033333,35.383333,,1,,2254,99,80,,????-????,1234567,,,19901457,,, +447,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900430,,, +447,IRN,,ASL,b,Asaluyeh (bus),27.479167,52.625,,0.025,,4689,107,120,,,,,,85228,,, +447,MDG,,5RL Antsiranana R,c,Antsiranana (ats),-12.266667,49.283333,,1,,8252,136,140,,????-????,1234567,,,19901052,,, +447,KOR,,HLY Yeosu R,c,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19900995,,, +448,D,,LQ,b,Landsberg (bay),48.104167,11.041667,,0.025,,554,142,79,,,,1,L1031 U1034 16.5s,ID+13 tone,85230,, +448,UKR,,Mariupol' R,c,Mariupol' (DO),47.1,37.55,,1,,2293,92,80,,????-????,1234567,,,19901464,,, +448,CZE,,HLV,b,Holesov (ZL),49.3125,17.541667,,0.025,,842,107,81,,,,31,L995 U395 11.5s,85229,,, +448,ARS,,HZH Jeddah R,c,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,,,19900065,,, +448,ARS,,HZY Ras Tannurah R,c,Ras Tannurah (shy),26.707056,50.10025,,1,,4591,111,103,,????-????,1234567,,,19900073,,, +448,INS,,PKP Dumai R,c,Dumai (RI-dum),1.683333,101.45,,1,,10203,85,148,,????-????,1234567,,,19900726,,, +449,RUS,,MV,b,Tver / Migalovo (TV),56.8125,35.708333,,0.025,,1948,63,92,,,,,,85232,,, +449,RUS,,MW,b,Tver / Migalovo (TV),56.8125,35.708333,,0.025,,1948,63,92,,,,235,L750 U1220 ,85233,,, +449,RUS,,KU,b,Tver (TV),56.854167,35.875,,0.025,,1958,63,93,,,,33,L1036 U1040 14.6s,IDx2,85231,, +450,EST,,ESA Tallinn R,c,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,????-????,1234567,,,19900518,,, +450,GEO,,UFF Sukhumi R,c,Sukhumi=Aqwa (abk),42.983333,40.972222,,1,,2754,98,85,,????-????,1234567,,,19900586,,, +450,BUL,,PDV,b,Plovdiv (pld),42.020833,24.875,,0.025,,1784,122,91,,,,0,L1017 U1040 8.1s,ID+4 gap,85237,, +450,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901007,,, +450,RUS,,WU,b,Sosnovka (MU),54.145833,46.625,,0.025,,2656,69,100,,,,2,L1014 U1021 ,85240,,, +450,LBY,,AOO,b,El Sharara ? (ROO) (wdh),26.5625,12.208333,,0.025,,2882,168,102,,,,,L1025 U1017 10.0s,ID+6 gap,86689,, +450,LBN,,RA,b,Kleyate,34.604167,36.041667,,0.025,,3050,118,103,,,,,,85239,,, +450,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900431,,, +450,CPV,,D4D Praia R,c,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900424,,, +450,IRN,,PAD,b,Parsabad-Moghan (ard),39.5625,47.958333,,0.025,,3449,97,107,,,,,L1087 U982 10.2s,ID+6 gap,86834,, +450,IRN,,EQJ Chah Bahar R,c,Chah Bahar (sib),25.3,60.633333,,1,,5399,102,111,,????-????,1234567,,,19900814,,, +450,RUS,,JH,b,Nizhnevartovsk,60.895833,76.375,,0.025,,4185,48,115,,,,,U391 ,85235,,, +450,RUS,,NZ,b,Nizhnevartovsk,60.979167,76.541667,,0.025,,4191,48,115,,,,,,85236,,, +450,SOM,,6OY Berbera R,c,Berbera (woq),10.433333,45.016667,,1,,5788,129,115,,????-????,1234567,,,19901384,,, +450,SOM,,6OR Mogadishu R,c,Mogadishu=Muqdisho (ban),2.023611,45.330556,,1,,6632,133,123,,????-????,1234567,,,19901385,,, +450,DOM,,PPA,b,San Felipe de Puerto Plata (ppl),19.770833,-70.541667,,0.025,,7404,273,147,,,,3,L985 U992 8.2s,85238,,, +450,CUB,,USC,b,Santa Clara (vc),22.479167,-79.958333,,0.025,,7813,282,151,,,,,,87260,,, +450,ATA,,RUZU Molodezhnaya R,c,Molodezhnaya Station [RUS] (aat),-67.666667,45.840056,,1,,13716,163,159,,????-????,1234567,,,19900112,,, +450,ATA,,UDY Novolazarevskaya R,c,Novolazarevskaya Station [RUS] (dml),-70.776667,11.823058,,1,,13671,178,159,,????-????,1234567,,,19900115,,, +450,CHL,,CBM Magallanes R,c,Punta Arenas (MA),-52.948111,-71.056944,,1,,13714,225,159,,????-????,1234567,,,19900347,,, +450,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900079,,, +450,ATA,,UBA Mirnyy R,c,Mirnyy Station [RUS] (aat),-66.558981,93.002239,,1,,15033,146,164,,????-????,1234567,,,19900109,,, +451,XOE,,OUEU,b,Thetis / Stanflex 3000 Vessel,49.645833,-3.458333,,0.025,,744,252,80,,,,998,L400 U397 36.0s,IDx3 + 12 tone,85242,, +451,KAZ,,KU,b,Yubileinyi (byq),46.020833,63.208333,,0.025,,4085,76,114,,,,,L399 U401 ,85241,,, +451.5,RUS,,UCT2 Beringovskiy R,c,Beringovskiy,63.05,179.316667,,1,,7195,4,129,,????-????,1234567,-451.5,,19901334,,, +452,D,,ANS,b,Ansbach (bay),49.3125,10.625,,0.025,,430,135,77,,,,978,L1075 U1020 7.2s,ID+5 gap,85243,, +452,BLR,,GP,b,Grodno / Obukhovo (HR),53.645833,24.541667,,0.025,,1225,75,85,,,,5,L1008 U1016 15.0s,85244,,, +452,BLR,,WF,b,Grodno / Obukhovo (HR),53.5625,24.041667,,0.025,,1192,75,85,,,,2,L1008 U1012 15.0s,85247,,, +452,RUS,,H,b,Primorsko Ahtar,46.0625,38.208333,,0.025,,2390,94,97,,,,,,86691,,, +452,IRN,,EQM Bushehr R,c,Bushehr (bus),28.962225,50.822794,,1,,4448,108,101,,????-????,1234567,,,19900812,,, +452,RUS,,LB,b,Balandino,55.3125,61.458333,,0.025,,3545,62,108,,,,,,85246,,, +452,CHN,,XSU Yantai R,c,Yantai (SD),37.533333,121.4,,1,,8232,48,139,,????-????,1234567,,,19900395,,, +452,INS,,PKB20 Lhokseumawe R,c,Lhokseumawe (AC-lho),5.166667,97.133333,,1,,9604,86,146,,????-????,1234567,,,19900745,,, +452,INS,,Plaju R,c,Plaju (SS-pal),-2.983333,104.833333,,1,,10844,85,150,,????-????,1234567,,,19900763,,, +452,INS,,PKI2,c,Jakarta (JK),-6.166667,106.833333,,1,,11259,86,151,,????-????,1234567,,,19900731,,, +452,CHN,,JS,b,Tianjin / Binhai (TJ),39.104167,117.375,,0.025,,7884,50,152,,,,,,85245,,, +452,INS,,PKN7 Bontang R,c,Bontang (KI-bon),0.133333,117.5,,1,,11415,73,152,,????-????,1234567,,,19900718,,, +452.5,INS,,Pangkal Balam R,c,Pangkal Balam (BB-pan),-2.091667,106.15,,1,,10855,84,150,,????-????,1234567,-452.5,,19900758,,, +453,SVK,,CN,b,Piestany (TT),48.5625,17.791667,,0.025,,898,112,82,,,,,U988 ,85248,,, +454,IRN,,EQL Bandar Anzali R,c,Bandar Anzali (gln),37.477778,49.466667,,1,,3697,99,94,,????-????,1234567,,,19900805,,, +454,RUS,,T,b,Moskva/Bykovo (MV),55.645833,38.041667,,0.025,,2091,67,94,,,,,,86692,,, +454,RUS,,U,b,Moskva/Bykovo (MV),55.645833,38.041667,,0.025,,2091,67,94,,,,,L1006 U1007 ,86693,,, +454,RUS,,W,b,Moskva/Bykovo (MV),55.604167,38.125,,0.025,,2097,67,94,,,,7,L1010 U1025 13.0s,IDx2,85250,, +455,XOE,,MWT,b,Millom West / Burlington Platform,54.020833,-3.875,,0.025,,719,291,80,,,,,U400 ,IDx3 + 10 gap,85255,, +455,UKR,,NS,b,Chuguyev,49.854167,36.625,,0.025,,2114,85,94,,,,,,85256,,, +455,UKR,,UH,b,Chuguyev,49.854167,36.625,,0.025,,2114,85,94,,,,35,L970 U1040 ,85257,,, +455,RUS,,AZ,b,Lipetsk-2 (LI),52.645833,39.458333,,0.025,,2224,75,95,,,,993,L967 U959 ,ID+5 gap,85251,, +455,RUS,,BK,b,Lipetsk-2 (LI),52.395833,39.291667,,0.025,,2219,76,95,,,,2,L951 U960 ,85252,,, +455,RUS,,KZ,b,Kizliar (DA),43.854167,46.708333,,0.025,,3092,91,104,,,,983,L1016 U1016 15.0s,ID+10 gap,85254,, +455,RUS,,DJ,b,Sterlitamak (BA),53.3125,55.458333,,0.025,,3241,68,105,,,,,,85253,,, +455.5,IW,,General purpose DSC Channel,c,-,,,-,,,?,?,400,,????-????,1234567,-455.5,,19900859,,, +456,HNG,,SEG,b,Szeged (Cso),46.270833,20.125,,0.025,,1187,118,85,,,,,L1021 U1026 10.0s,ID+7 gap,86694,, +456,UKR,,W,b,Simferopol / Zavodskoe (KR),44.895833,34.041667,,0.025,,2172,101,95,,,,,,85259,,, +456,KAZ,,BA,b,Balkhash=Balqaş (qar),46.854167,74.958333,,0.025,,4800,69,121,,,,,L1011 ,85258,,, +456,INS,,PKG Banjarmasin R,c,Banjarmasin (KS-kbm),-3.333333,114.583333,,1,,11533,78,152,,????-????,1234567,,,19900706,,, +456,INS,,Semarang R,c,Semarang (JT-kse),-6.966667,110.416667,,1,,11573,83,152,,????-????,1234567,,,19900777,,, +456.5,PNR,,HPP Panam Intelmar R,c,Ciudad de Panam (pnm),8.966667,-79.533333,,1,,8946,272,144,,????-????,1234567,-456.5,,19901288,,, +457,BLR,,OM,b,Machulishchi (MI),53.8125,27.375,,0.025,,1412,74,87,,,,,,85260,,, +457,KRE,,Hungnam R,c,Hungnam (han),39.833333,127.616667,,1,,8324,43,140,,????-????,1234567,,,19901003,,, +458,BLR,,QM,b,Minsk/Mačuličy (MI),53.8125,27.541667,,0.025,,1423,74,87,,,,995,L774 U765 4.5s,ID+1 gap,85263,, +458,BLR,,WN,b,Minsk/Mačuličy (MI),53.729167,27.625,,0.025,,1428,74,87,,,,5,L1030 U1034 ,IDx2 + 8 gap,85264,, +458,RUS,,UIS9 Magdan R,c,Magdan,53.616667,105.3,,1,,6073,46,118,,????-????,1234567,,,19901349,,, +458,CHN,,XSG Shanghai R,c,Shanghai (SH),31.108889,121.544167,,1,,8826,52,143,,????-????,1234567,,,36201267,,, +458,KOR,,HLU Ulleung R,c,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900990,,, +458,MDG,,5RD Tlanaro R,c,Tlanaro=Fort-Dauphin (tln),-25.033333,47,,1,,9442,144,145,,????-????,1234567,,,19901066,,, +458,CBG,,XUK Sihanoukville R,c,Sihanoukville=Kmpng Sam (kps),10.633333,103.508333,,1,,9555,78,146,,????-????,1234567,,,19900313,,, +458,INS,,Sorong R,c,Sorong (PB-srg),-0.883333,131.25,,1,,12374,62,155,,????-????,1234567,,,19900783,,, +458,CHL,,CBS San Pedro R,c,San Pedro,-47.7,-74.883333,,1,,13500,231,159,,????-????,1234567,,,19900364,,, +458,INS,,Merauke R,c,Merauke (PA-mer),-8.461111,140.333333,,1,,13623,58,159,,????-????,1234567,,,19900755,,, +460,ALB,,ZAV Vlor R,c,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900008,,, +460,POL,,SK,b,Swidnik,51.229167,22.708333,,0.025,,1126,89,84,,,,0,L700 U700 15.0s,IDx2,85269,, +460,RUS,,GB,b,Volchanka,52.5625,49.958333,,0.025,,2914,72,102,,,,13,L1014 U1040 30.0s,85267,,, +460,IRN,,EQI Bandar-e Abbas R,c,Bandar-e Abbas (hrg),27.161022,56.225378,,1,,4952,104,107,,????-????,1234567,,,19900809,,, +460,IND,,VWN Cochin R,c,Cochin (KL),9.966667,76.233333,,1,,7762,100,135,,????-????,1234567,,,19900681,,, +460,CUB,,CLC Cienfuegos R,c,Cienfuegos (cf),22.15,-80.433333,,1,,7873,282,136,,????-????,1234567,,,19900440,,, +460,CLM,,HKB Barranquilla R,c,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900404,,, +460,MYA,,XYR Yangon R,c,Yangon=Rangoon (ygn),16.866667,96.166667,,1,,8519,80,142,,????-????,1234567,,,19900275,,, +460,CHN,,GF,b,Xian / Xianyang / Fenghuo / Douma (SA),34.5625,108.625,,0.025,,7793,59,151,,,,,,85268,,, +461,MRC,,CND Agadir R,c,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,????-????,1234567,,,19901108,,, +461,IRQ,,YIU Umm Qasr R,c,Umm Qasr (bsr),30.033333,47.933333,,1,,4173,110,99,,????-????,1234567,,,19900820,,, +461,SHN,,ZHH Saint Helena R,c,Jamestown (shl),-15.919444,-5.716667,,1,,7655,193,134,,????-????,1234567,,,19901381,,, +461,MDG,,5RO Mahajanga R,c,Mahajanga (mhj),-15.716667,46.316667,,1,,8465,140,142,,????-????,1234567,,,19901055,,, +461,CHL,,CBT Talcahuano R,c,Talcahuano (BI),-36.715056,-73.108,,1,,12506,239,155,,????-????,1234567,,,19900366,,, +462,UKR,,VI,b,Zhitomir (ZH),50.0625,28.458333,,0.025,,1551,90,88,,,,938,L1201 U268 4.1s,ID+2 gap,85272,, +462,UKR,,VR,b,Zhitomir (ZH),50.1875,28.708333,,0.025,,1564,89,89,,,,0,L1060 U1060 ,85273,,, +462,RUS,,L,b,Sasovo,54.354167,41.958333,,0.025,,2354,70,97,,,,,,86696,,, +462,RUS,,M,b,Sasovo,54.354167,41.958333,,0.025,,2354,70,97,,,,,U1021 14.3s,IDx2,86697,, +462,IND,,VWY Paradip R,c,Paradip (OR),20.316667,86.616667,,1,,7579,85,133,,????-????,1234567,,,19900688,,, +462,CHN,,XSZ Dalian R,c,Dalian (LN),38.845244,121.518056,,1,,8120,48,138,,????-????,1234567,,,19900377,,, +462,CHN,,XSJ Zhanjiang R,c,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,????-????,1234567,,,19900397,,, +463,RUS,,BZ,b,Severomorsk 3 (MU),68.854167,33.708333,,0.025,,2347,27,96,,,,,L987 15.0s,IDx2 + 5 gap,85275,, +463,RUS,,YAN,b,Severomorsk 3 (MU),68.854167,33.708333,,0.025,,2347,27,96,,,,,L999 U995 15.0s,IDx2 + 7 gap,86698,, +464,DJI,,J2A Djibouti R,c,Djibouti (djb),11.608333,43.15,,1,,5576,130,113,,????-????,1234567,,,19900475,,, +464,VEN,,YVG La Guaira R,c,La Guaira (vgs),10.6,-66.933333,,1,,7944,263,136,,????-????,1234567,,,19901615,,, +464,KOR,,HLC Incheon R,c,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900957,,, +464,PAQ,,CBV3 Hanga Roa R,c,Hanga Roa (vlp),-27.151389,-109.438333,,1,,14095,272,161,,????-????,1234567,,,19901317,,, +465,LBY,,5AB Benghazi R,c,Benghazi (bga),32.116667,20.066667,,1,,2483,148,82,,????-????,1234567,,,19901015,,, +465,POL,,NDE,b,Deblin,51.520833,21.958333,,0.025,,1069,87,84,,,,,L998 U1001 ,ID+5 gap,86699,, +465,POL,,NED,b,Deblin,51.5625,21.791667,,0.025,,1057,87,84,,,,,U1000 ,86700,,, +465,BUL,,U,b,Burgas (bur),42.604167,27.541667,,0.025,,1900,115,92,,,,0,L1020 U1045 ,ID+2 gap,85282,, +465,TUR,,SIN,b,Sinop (kdz-sin),42.020833,35.041667,,0.025,,2420,106,97,,,,994,L1025 U1020 10.0s,ID+8 gap,85281,, +465,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901008,,, +465,INS,,PKF Makassar R,c,Makassar (SN-mak),2.45,99.783333,,1,,10023,86,147,,????-????,1234567,,,19900747,,, +465,INS,,Pontianak R,c,Pontianak (KB-ptk),-0.033333,109.333333,,1,,10888,80,150,,????-????,1234567,,,19900764,,, +465,INS,,PNK Jayapura R,c,Jayapura (PA-jyp),-2.533333,140.7,,1,,13077,54,157,,????-????,1234567,,,19900735,,, +466,PAK,,ASK Karachi R,c,Karachi (shd),24.851944,67.0425,,1,,5868,97,116,,????-????,1234567,,,19901282,,, +466,BGD,,S3D Chittagong R,c,Chittagong (cgg),22.366667,91.8,,1,,7757,79,135,,????-????,1234567,,,19900264,,, +468,D,,FTZ,b,Fritzlar (hes),51.104167,9.291667,,0.025,,228,118,75,,,,3,L1035 U1039 16.5s,ID+12 tone,85283,, +468,SRB,,VTN,b,Kraljevo/Vitanovac (Srb-rsk),43.729167,20.791667,,0.05,,1416,125,84,,,,995,L1015 U1005 10.0s,ID+6 tone,85284,, +468,ARG,,Prefectura Naval Recalada Rio de Plata,c,Recalada Rio de Plata/Prefectura Naval,-38.5,-63,,1,,12098,231,154,,????-????,1234567,,,19900049,,, +470,SRB,,UZ,b,Uice/Ponikve (Srb-zlb),43.854167,19.875,,0.025,,1355,127,87,,,,60,L945 U1040 9.5s,DAID,85292,, +470,UKR,,CD,b,Mirgorod,49.9375,33.625,,0.025,,1907,86,92,,,,,L905 15.0s,IDx2 + 5 gap,85287,, +470,UKR,,GA,b,Mirgorod,49.9375,33.625,,0.025,,1907,86,92,,,,,,IDx2 + 7 gap,85288,, +470,TUR,,BRI,b,Balikesir (mam-bal),39.645833,27.958333,,0.025,,2154,122,95,,,,0,L1020 U1020 ,ID+2 gap,85286,, +470,RUS,,QL,b,Taganrog (RO),47.270833,38.875,,0.025,,2375,90,97,,,,995,L1020 U1010 ,IDx2 + 5 gap,85290,, +470,RUS,,TN,b,Taganrog Centr. (RO),47.270833,38.875,,0.025,,2375,90,97,,,,,L1037 ,IDx2 + 10 gap,85291,, +470,LBY,,WF,b,Wafa (nlt),28.895833,10.125,,0.025,,2599,172,99,,,,,L400 U400 10.0s,ID+8 gap,86702,, +470,TUR,,BAT,b,Batman (gda-bat),37.9375,41.125,,0.025,,3108,107,104,,,,,L1025 ,8000013,,, +470,AZE,,BI,b,Baku / Bina (bak),40.520833,50.041667,,0.025,,3527,94,108,,,,,L1020 9.5s,ID+8 gap,85285,, +470,UZB,,HK,b,Nurata (nwo),40.5625,65.708333,,0.025,,4591,82,119,,,,,,85289,,, +470,KOR,,HLM Mokpo R,c,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900976,,, +470,CHN,,XSM4 Quanzhou R,c,Quanzhou,24.916667,118.583333,,1,,9227,58,144,,????-????,1234567,,,19900389,,, +470,INS,,PKX Jakarta R,c,Jakarta (JK),-6.166667,106.833333,,1,,11259,86,151,,????-????,1234567,,,19900732,,, +470,KIR,,T3C Tarawa R,c,Tarawa Atoll/Takaronga,1.361111,173.155561,,1,,13941,16,160,,????-????,1234567,,,19900939,,, +471,CHN,,XSQ Guangzhou R,c,Guangzhou (GD),23.15,113.483333,,1,,9084,63,144,,????-????,1234567,,,19900382,,, +472,EGY,,SUT El Tur R,c,El Tur=At Tur (jsn),28.233333,33.616667,,1,,3479,129,92,,????-????,1234567,,,19900503,,, +472,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901009,,, +472,TGO,,5VA Lom R,c,Lom (mar),6.139522,1.27935,,1,,5133,187,108,,????-????,1234567,,,19901402,,, +472,MYT,,FJN Dzaoudzi R,c,Dzaoudzi (976),-12.782222,45.233889,,1,,8120,140,138,,????-????,1234567,,,19901129,,, +472,CHL,,CBF Juan Fernndez R,c,Juan Fernndez,-33.66475,-78.932167,,1,,12601,245,156,,????-????,1234567,,,19900342,,, +472,CHL,,CBN Cabo de Hornos R,c,Cabo de Hornos,-55.972778,-67.270556,,1,,13775,220,159,,????-????,1234567,,,19900322,,, +473,D,,FHA,b,Friedrichshafen / Lwental (bw),47.6875,9.541667,,0.025,,540,154,78,,,,988,L1020 U1020 6.5s,ID+2 gap,85294,, +473,MDA,,L,b,Chişinău (CU),46.9375,28.958333,,0.025,,1718,101,90,,,,,U400 ,85295,,, +473,MDA,,R,b,Chişinău (CU),46.9375,28.875,,0.025,,1712,101,90,,,,,,85297,,, +473,MDA,,CAH,b,Cahul,45.520833,28.291667,,0.025,,1753,106,91,,,,,L1047 U1037 ,86703,,, +473,RUS,,MG,b,Rzhev (TV),56.270833,34.375,,0.025,,1863,65,92,,,,,15.0s,2xID,85296,, +474,POL,,BIA,b,Rzeszow / Jasionka,50.104167,22.125,,0.025,,1117,95,84,,,,2,L1031 U1034 ,ID+2.5 gap,85298,, +474,POL,,RZ,b,Rzeszow / Jasionka,50.104167,22.125,,0.025,,1117,95,84,,,,,L1015 U1010 5.0s,ID+2.5 gap,87261,, +474,IND,,VWV Vishakhapatnam R,c,Vishakhapatnam (AP),17.7,83.3,,1,,7575,89,133,,????-????,1234567,,,19900699,,, +474,CHN,,XSN Ningbo R,c,Ningbo,29.883333,121.55,,1,,8939,53,143,,????-????,1234567,,,19900387,,, +474,INS,,PKB Belawan R,c,Belawan (SU-med),3.783333,98.683333,,1,,9831,86,146,,????-????,1234567,,,19900710,,, +474,INS,,Sibolga R,c,Sibolga (SU-sib),1.75,98.8,,1,,10017,87,147,,????-????,1234567,,,19900781,,, +474,INS,,Samarinda R,c,Samarinda (KI-sam),-0.5,117.15,,1,,11449,74,152,,????-????,1234567,,,19900772,,, +474.5,POL,,SA,b,Darlowo,54.4375,16.375,,0.025,,711,65,80,,,,502,L1020 U1023 5.5s,ID+3 gap,85299,, +475,UKR,,CN,b,Kanatovo,48.645833,32.375,,0.025,,1870,92,92,,,,,,85302,,, +475,RUS,,ZG,b,Petrovskoye (TA),51.729167,40.208333,,0.025,,2297,78,96,,,,1,L1014 U1018 ,IDx3 + 13 gap,85304,, +475,RUS,,F,b,Egorlykskaya,46.5625,40.625,,0.025,,2529,90,98,,,,,,86704,,, +475,RUS,,AM,b,Kazan (TS),55.645833,49.208333,,0.025,,2787,65,101,,,,,U~1020 ,85300,,, +475,RUS,,BL,b,Kazan (TS),55.5625,49.375,,0.025,,2799,65,101,,,,0,L400 U400 ,85301,,, +475,TJK,,JD,b,Fayzobod (ntc),38.543056,69.313056,,0.025,,4973,82,123,,,,,,34200007,,, +475,CHN,,JR,b,Beijing / Liangxiang (BJ),39.729167,116.125,,0.025,,7763,50,151,,,,,L1000 U1000 3s,85303,,, +475.5,RUS,,CL,b,Kotelnikovo,47.604167,43.125,,0.025,,2650,86,99,,,,-475.5,L900 U880 7.5s,ID+3 gap,86705,, +475.5,RUS,,UCH,b,Kotelnikovo,47.645833,43.125,,0.025,,2648,86,99,,,,-475.5,,85305,,, +476,LBY,,5AT Tarabulus=Tripoli R,c,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901019,,, +476,UKR,,UXO Sevastopol' Krymskoi R,c,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901472,,, +476,CPV,,D4D Praia R,c,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900425,,, +476,YEM,,7OA Aden R,c,Aden (adn),12.766111,45.052861,,1,,5565,127,113,,????-????,1234567,,,19901622,,, +476,CUB,,CLA La Habana R,c,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,????-????,1234567,,,19900443,,, +476,CHN,,XSB48 Dandong R,c,Dandong (LN),40.133333,124.4,,1,,8144,45,138,,????-????,1234567,,,19900379,,, +476,CLM,,HKB Barranquilla R,c,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900405,,, +476,KOR,,HLK Gangneung R,c,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900966,,, +476,MDG,,5RO Mahajanga R,c,Mahajanga (mhj),-15.716667,46.316667,,1,,8465,140,142,,????-????,1234567,,,19901056,,, +476,MDG,,5RS Toamasina R,c,Toamasina=Tamatave (toa),-18.166667,49.383333,,1,,8849,139,143,,????-????,1234567,,,19901064,,, +476,MDG,,5RT Toliara R,c,Toliara=Tular (tlr),-23.35,43.666667,,1,,9138,146,144,,????-????,1234567,,,19901069,,, +477,SVK,,RP,b,Malacky/Kuchyňa (BA),48.479167,17.125,,0.025,,860,114,82,,,,1,L1018 U1022 10.0s,85306,,, +477,BLR,,CHA,b,Baranovichy (BR),53.145833,26.041667,,0.025,,1326,77,86,,,,,15.0s,IDx2,86706,, +477,BLR,,DE,b,Baranovichy (BR),53.145833,26.041667,,0.025,,1326,77,86,,,,,15.0s,IDx2,86707,, +478,TUR,,Bandirma Turk Radyo,c,Bandirma,40.361111,27.988889,,1,,2098,120,78,,????-????,1234567,,,19901431,,, +478,POL,,GA,b,Powidz / Rozniaty,52.729167,18.291667,,0.025,,808,80,81,,,,,,85308,,, +478,POL,,NGT,b,Powidz,52.354167,17.958333,,0.025,,786,83,81,,,,0,L1018 U1002 5.0s,ID+2 gap,85310,, +478,POL,,NTG,b,Powidz,52.354167,17.875,,0.025,,780,83,81,,,,0,L1020 U1020 ,ID+2 gap,85311,, +478,RUS,,MF,b,Larionovo,56.020833,39.625,,0.025,,2188,65,95,,,,952,L1057 U1024 29.0s,IDx2,85309,, +479,SYR,,YKI Tartus R,c,Tartus (tat),34.883333,35.883333,,1,,3017,118,87,,????-????,1234567,,,19901397,,, +479,RUS,,SA,b,Saratov / Tsentralny (SR),51.5625,46.041667,,0.025,,2690,75,100,,,,,,85312,,, +480,I,,VIB,b,Viterbo (vt),42.4375,12.041667,,0.025,,1156,156,85,,,,5,L1020 U1020 7.0s,ID+3 gap,85321,, +480,UKR,,KJ,b,Chortkov (TE),48.979167,25.708333,,0.025,,1403,97,87,,,,0,L~1020 U~1020 ,85316,,, +480,RUS,,K,b,Tambov (TA),52.6875,41.375,,0.025,,2350,74,96,,,,,,86708,,, +480,TUR,,CLD,b,Aydin / Cildir (ege-ayd),37.8125,27.875,,0.025,,2303,125,96,,,,992,L1040 U1024 ,ID+4 gap,85314,, +480,RUS,,C,b,Cheboksary (CV),56.104167,47.375,,0.025,,2666,64,100,,,,,,85313,,, +480,TKM,,NS,,Mary (mry),37.571667,61.898056,,1,,4537,88,102,,,,,,11900008,,, +480,IRQ,,RER,b,Arbil=Erbil=Hewlr (arb),36.270833,43.958333,,0.025,,3419,106,107,,,,0,L400 U400 ,ID+7 gap,85319,, +480,RUS,,CP,b,Magnitogorsk (CB),53.4375,58.791667,,0.025,,3447,66,107,,,,,U1003 15.0s,IDx2,85315,, +480,RUS,,RF,b,Magnitogorsk (CB),53.354167,58.708333,,0.025,,3445,67,107,,,,995,L385 U389 ,85320,,, +480,J,,Kobe Sea Patrol R,c,Kobe (kns-hyo),34.683333,135.166667,,1,,9158,40,144,,????-????,1234567,,,19900883,,, +480,J,,Moji Sea Patrol R,c,Moji (kyu-fuk),33.95,130.966667,,1,,9037,44,144,,????-????,1234567,,,19900895,,, +480,J,,Sasebo Sea Patrol R,c,Sasebo (kyu-nag),33.166667,129.716667,,1,,9052,45,144,,????-????,1234567,,,19900916,,, +480,J,,Yokohama Sea Patrol R,c,Yokohama (kan-kgw),35.433333,139.633333,,1,,9274,37,145,,????-????,1234567,,,19900924,,, +482,RUS,,NN,b,Kozhevnikovo (TO),56.229167,83.958333,,0.025,,4797,53,121,,,,,,85323,,, +482,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,0553-0600,1234567,,,19900414,,, +482,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,1323-1330,1234567,,,19900414,,, +483,J,,Sapporo R,c,Sapporo (hok),43.05,141.35,,1,,8583,32,142,,????-????,1234567,,,19900914,,, +484,D,,HOF,b,Hof (bay),50.270833,11.791667,,0.025,,427,116,77,,,,2,L1035 U1037 13.0s,85324,,, +484,GUI,,3XC Conakry R,c,Conakry (cnk),9.508333,-13.711111,,1,,5075,208,108,,????-????,1234567,,,19900628,,, +484,PAK,,ASK Karachi R,c,Karachi (shd),24.851944,67.0425,,1,,5868,97,116,,????-????,1234567,,,19901283,,, +484,BGD,,S3E Khulna R,c,Khulna (khu),22.825,89.55,,1,,7567,81,133,,????-????,1234567,,,19900266,,, +484,BGD,,S3D Chittagong R,c,Chittagong (cgg),22.366667,91.8,,1,,7757,79,135,,????-????,1234567,,,19900265,,, +484,KOR,,HLN Gunsan R,c,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900971,,, +484,CLM,,HKC Buenaventura R,c,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900410,,, +485,SRB,,IA,b,Inđija (Voj-srm),45.0625,20.041667,,0.06,,1269,123,82,,,,998,L1040 U1044 12.1s,85330,,, +485,BLR,,B,b,Brest (BR),52.104167,23.875,,0.025,,1190,83,85,,,,,U1020 15.0s,85325,,, +485,BLR,,C,b,Brest (BR),52.104167,23.875,,0.025,,1190,83,85,,,,,,85327,,, +485,BLR,,CO,b,Mogilyov (MA),53.9375,30.125,,0.025,,1591,73,89,,,,,U1020 ,85328,,, +485,BLR,,UF,b,Mogilyov (MA),53.979167,30.041667,,0.025,,1586,73,89,,,,,,ID+4 gap,85337,, +485,UKR,,KH,b,Kakhnovka,46.8125,33.541667,,0.025,,2034,96,93,,,,2,L1037 U1040 15.0s,IDx2,85331,, +485,RUS,,CW,b,Krasnaya Gorbatka,55.854167,41.708333,,0.025,,2319,66,96,,,,0,L767 U771 ,IDx2 + 20 gap,85329,, +485,RUS,,BR,b,Kotlas / Satvatiya (AR),61.020833,46.791667,,0.025,,2613,52,99,,,,999,L1032 U1030 ,85326,,, +485,RUS,,MW,b,Kotlas / Satvatiya (AR),60.979167,46.958333,,0.025,,2622,52,99,,,,,,85333,,, +485,RUS,,HU,b,Engels-2,51.479167,46.208333,,0.025,,2703,76,100,,,,,L1013 U1014 ,86709,,, +485,RUS,,ZK,b,Engels,51.479167,46.208333,,0.025,,2703,76,100,,,,,,86712,,, +485,UZB,,N,b,Urgench (xoz),41.5625,60.625,,0.025,,4181,84,115,,,,,U400 ,85334,,, +485,KAZ,,ZU,b,Ayagoz (sgq),47.9375,80.458333,,0.025,,5077,64,124,,,,,U1013 ,85339,,, +485,IND,,VWM Chennai R,c,Chennai=Madras (TN),13.082778,80.287222,,1,,7765,95,135,,????-????,1234567,,,19900684,,, +485,ATA,,RUZU Molodezhnaya R,c,Molodezhnaya Station [RUS] (aat),-67.666667,45.840056,,1,,13716,163,159,,????-????,1234567,,,19900113,,, +485,ATA,,UDY Novolazarevskaya R,c,Novolazarevskaya Station [RUS] (dml),-70.776667,11.823058,,1,,13671,178,159,,????-????,1234567,,,19900116,,, +485,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900080,,, +485,ATA,,UBA Mirnyy R,c,Mirnyy Station [RUS] (aat),-66.558981,93.002239,,1,,15033,146,164,,????-????,1234567,,,19900110,,, +486,RUS,,KL,b,Krasnyy Sulin,47.895833,40.125,,0.025,,2432,88,97,,,,90,L960 U1015 ,ID+6 gap,85340,, +486,KAZ,,KZ,b,Kyzylorda=Qızılorda (qzy),44.6875,65.625,,0.025,,4323,77,116,,,,,,85341,,, +486,KAZ,,OR,b,Kyzylorda=Qızılorda (qzy),44.6875,65.625,,0.025,,4323,77,116,,,,,U1018 ,86713,,, +486,ARG,,LPG Rio Gallegos R,c,Ro Gallegos (sc),-51.633333,-69.216667,,1,,13522,225,159,,????-????,1234567,,,19900051,,, +487,TUN,,3VX Tunis R,c,Tunis (tun),36.8,10.183333,,1,,1728,169,74,,????-????,1234567,,,19901424,,, +487,UKR,,UHZ Kherson R,c,Kherson (KE),46.633333,32.6,,1,,1979,97,77,,????-????,1234567,,,19901461,,, +487,NOR,,LJN Ny-lesund R,c,Ny-lesund (sp),78.918425,11.892033,,1,,2989,2,87,,????-????,1234567,,,19901144,,, +487,TUR,,BEY,b,Beypazari (ica-ank),40.145833,31.958333,,0.025,,2356,114,97,,,,995,L1049 U1030 ,Cont. ID,85343,, +487,BHR,,A9M Bahrain R,c,Hamala (shm),26.157167,50.47665,,1,,4662,111,104,,????-????,1234567,,,19900268,,, +487,STP,,S9M So Tom R,c,So Tom (sao),0.345833,6.7375,,1,,5756,180,115,,????-????,1234567,,,19901387,,, +487,IND,,VWT Tuticorin R,c,Tuticorin (TN),8.783333,78.133333,,1,,7994,99,137,,????-????,1234567,,,19900696,,, +487.5,J,,Sapporo R,c,Sapporo (hok),43.05,141.35,,1,,8583,32,142,,????-????,1234567,-487.5,,19900915,,, +487.5,INS,,PKD5 Benoa R,c,Benoa (BA-den),-8.766667,115.216667,,1,,12056,80,154,,????-????,1234567,-487.5,,19900712,,, +488,D,,ILM,b,Illesheim (bay),49.479167,10.375,,0.025,,404,135,77,,,,966,L1063 U1012 7.5s,ID+5 gap,85344,, +488,POL,,NPR,b,Tomaszow-Mazowiecki / Porter,51.5625,20.125,,0.025,,943,88,82,,,,,L400 U400 6.0s,ID+2 gap,86714,, +488,SUR,,PZN Paramaribo R,c,Paramaribo (pmb),5.866667,-55.166667,,1,,7583,250,133,,????-????,1234567,,,19901390,,, +488,USA,,Silvana R,c,Silvana (WA),48.2,-122.25,,1,,7847,327,135,,????-????,1234567,,,19901564,,, +489,D,,SIL,b,Siegen / Siegerland (nrw),50.6875,8.125,,0.025,,198,142,75,,,,999,L1038 U1043 ,85349,,, +489,POL,,NK,b,Poznan / Krzesiny / Kamera,52.3125,16.958333,,0.025,,718,84,80,,,,,L1022 U1021 ,85348,,, +489,GEO,,AV,b,Sukhumi / Babushara (abk),42.854167,41.125,,0.025,,2772,98,101,,,,5,L1130 U1139 ,IDx2 +5 tone,85345,, +489,ERI,,ETC Assab R,c,Assab=Aseb (dkb),13.016667,42.741667,,1,,5417,130,111,,????-????,1234567,,,19900509,,, +489,RUS,,NC,b,Kemerovo (KE),55.3125,86.208333,,0.025,,4970,53,123,,,,,,85347,,, +489,MDG,,5RN Nosy B R,c,Nosy B (ats),-13.333333,48.25,,1,,8311,138,140,,????-????,1234567,,,19901062,,, +489,CLM,,HKC Buenaventura R,c,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900411,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0010-0020,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0410-0420,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0410-0820,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1210-1220,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1610-1620,1234567,,,800002,,, +490,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,2010-2020,1234567,,,800002,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0150-0200,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0550-0600,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0950-1000,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1350-1400,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1750-1800,1234567,,,2000041,,, +490,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,2150-2200,1234567,,,2000041,,, +490,G,,GCC Cullercoats R,,East Hartley (EN-TYW),55.0732,-1.463233,,1,,615,306,63,,,,,,2800042,,, +490,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,,,,,2800043,,, +490,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,,,,,2800044,,, +490,G,,GPK Portpatrick R,,Portpatrick (SC-DGA),54.844044,-5.124478,,1,,820,296,65,,,,,,2800041,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0040-0100,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0440-0500,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0840-0900,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1240-1300,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1640-1700,1234567,,,2500012,,, +490,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,2040-2100,1234567,,,2500012,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0300-0320,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0700-0720,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1100-1120,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1500-1520,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1900-1920,1234567,,,2500013,,, +490,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,2300-2320,1234567,,,2500013,,, +490,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,,,,,4100051,,, +490,I,,IQM,,Mondolfo (pu),43.75,13.1,,1,,1054,149,68,,,,,,4000047,,, +490,I,,ICH,,La Maddalena (ot),41.214722,9.4075,,1,,1233,168,69,,,,,,4000049,,, +490,E,,EAR La Corua R,,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,,,,,2200028,,, +490,E,,EAV,,Cumbre del Sol (VAL-A),38.723258,0.161367,,1,,1565,200,73,,,,,,2200027,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0330-0340,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0730-0740,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1130-1140,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1530-1540,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1930-1940,1234567,,,200014,,, +490,ALG,,7TA,,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,2330-2340,1234567,,,200014,,, +490,I,,ICI,,Sellia Marina (cz),38.905,16.743056,,1,,1671,147,74,,,,,,4000048,,, +490,POR,,CTV Monsanto R,,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,,,,,6500003,,, +490,ROU,,YQV Constanţa R,,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,,,,,6600007,,, +490,UKR,,UTT Odesa R,,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,,,,,8100017,,, +490,E,,EAC Tarifa R,,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,,,,,2200029,,, +490,ISL,,TFA Reykjavk R,,Sauanes (ne),66.2465,-15.264172,,1,,1977,331,77,,,,,,4200015,,, +490,ISL,,TFA Reykjavk R,,Grindavk (sn),63.850969,-22.451883,,1,,2114,319,78,,,,,,4200014,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,0010-0020,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,0410-0420,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,0810-0820,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,1210-1220,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,1610-1620,1234567,,,8000015,,, +490,TUR,tu,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,2010-2020,1234567,,,8000015,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,0020-0030,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,0420-0430,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,0820-0830,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,1220-1230,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,1620-1630,1234567,,,8000019,,, +490,TUR,tu,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,2020-2030,1234567,,,8000019,,, +490,UKR,,Kerch R,,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,,,,,8100016,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,0000-0010,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,0400-0410,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,0800-0810,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,1200-1210,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,1600-1610,1234567,,,8000021,,, +490,TUR,tu,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,2000-2010,1234567,,,8000021,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,0030-0040,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,0430-0440,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,0830-0840,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,1230-1240,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,1630-1640,1234567,,,8000017,,, +490,TUR,tu,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,2030-2040,1234567,,,8000017,,, +490,MDR,,CTQ Porto Santo R Naval,,Porto Santo (pst),33.066278,-16.355417,,1,,2797,230,85,,,,,,5500001,,, +490,AZR,,CTH Marinha Horta,,Horta (fai),38.529872,-28.628922,,1,,3086,255,88,,,,,,700013,,, +490,BUL,,WAK,b,Vakarel (sof),42.5625,23.708333,,0.025,,1674,123,90,,,,0,L1026 U1048 ,ID+8 gap,85358,, +490,CNR,,EAL Las Palmas R,,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,,,,,1500015,,, +490,UKR,,KO,b,Koshany,50.9375,30.958333,,0.025,,1695,85,90,,,,5,L1073 U1008 30.0s,IDx2 + 25 gap,85353,, +490,RUS,,FI,b,Golitsyno,53.604167,44.125,,0.025,,2508,71,98,,,,14,L1000 U1029 ,85352,,, +490,CAN,,VFF Iqaluit Coastguard,,Iqaluit (NU),63.731389,-68.543167,,1,,4325,317,100,,,,,,20109278,,, +490,CAN,,VCO Sydney Coastguard,,Glace Bay (NS),46.185739,-59.893275,,1,,4697,289,104,,,,,,20109277,,, +490,ARM,,SVN,b,Sevan (grk),40.534167,44.954722,,0.025,,3180,98,105,,,,,,85355,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0035-0045,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0435-0445,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0835-0845,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1235-1245,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1635-1645,1234567,,,20109275,,, +490,CAN,fr,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,2035-2045,1234567,,,20109275,,, +490,CPV,,D4A So Vicente R,,Ribeira de Vinha (svc-slz),16.853228,-25.003197,,1,,4790,227,105,,,,,,1600001,,, +490,RUS,,SE,b,Serov (SV),59.5625,60.541667,,0.025,,3378,54,107,,,,,U1037 ,85354,,, +490,CAN,,VAR3 Yarmouth Coastguard,,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,,,,,20109280,,, +490,UZB,,SW,b,Karakhtay (tos),40.9375,69.791667,,0.025,,4841,79,121,,,,,,85356,,, +490,KRE,,HMH,,Hungnam (han),39.833172,127.6856,,1,,8327,43,140,,,,,,31700008,,, +490,KRE,,HMZ,,Pyongyang (pyo),38.916667,125.716667,,1,,8320,45,140,,,,,,31700007,,, +490,TWN,,XSY,,Yenliaoken (HL),23.9,121.6,,1,,9493,56,145,,,,,,21800035,,, +490,EQA,,XXXX,,Ayora (gal),-0.75,-90.316667,,1,,10532,275,149,,,,,,32600010,,, +490,URG,,CWM27,,La Paloma (ro),-34.666667,-54.15,,1,,11294,227,151,,,,,,31200003,,, +490,ARG,,L2B,,Buenos Aires (df),-34.6,-58.366667,,1,,11504,230,152,,,,,,33000027,,, +490,ARG,,L2P,,Mar del Plata (ba),-38.05,-57.533333,,1,,11776,227,153,,,,,,33000026,,, +490,ARG,,L2I,,Baha Blanca (ba),-38.716667,-62.1,,1,,12070,230,154,,,,,,33000028,,, +490,ARG,,L2W,,Comodoro Rivadavia (ch),-45.85,-67.416667,,1,,12961,228,157,,,,,,33000029,,, +490,ARG,,L3D,,Ro Gallegos (sc),-51.616667,-69.216667,,1,,13521,225,159,,,,,,33000030,,, +490,ARG,,L3K,,Ushuaia (tf),-54.8,-68.3,,1,,13729,222,159,,,,,,33000031,,, +492,CZE,,TBV,b,Moravska / Trebova (PA),49.8125,16.708333,,0.025,,764,105,81,,,,5,L400 U401 10.0s,ID+7 gap,85360,, +492,CAN,,E8,b,Natuashish / Davis Inlet (NL),55.895833,-61.208333,,0.025,,4261,303,116,,,,,U407 8407s,ID+4 tone,85359,, +493,I,,TOM,b,Tombolo (pd),45.645833,11.791667,,0.025,,819,149,81,,,,,L640 U645 ,ID+7 gap,86717,, +493,HNG,,P,b,Ppa (Ves),47.354167,17.541667,,0.025,,957,119,83,,,,,L1039 U986 30.0s,IDx2 + 24 gap,85363,, +493,RUS,,RW,b,Maryino,55.6875,38.208333,,0.025,,2101,66,94,,,,0,L1020 U1016 28.0s,IDx3,85364,, +493,RUS,,KR,b,Krasnodar (KD),45.020833,39.125,,0.025,,2508,95,98,,,,0,L385 U388 15.0s,ID+6 gap,85361,, +493,RUS,,LD,b,Krasnodar / Pashkhovsky (KD),45.0625,39.208333,,0.025,,2512,95,98,,,,2,L1010 U1031 ,IDx2 + 6 gap,85362,, +494,POL,,KN,b,Oksywie,54.5625,18.541667,,0.025,,849,66,81,,,,0,L1025 U1022 4.5s,ID+2 gap,85365,, +494,POL,,NK,b,Oksywie,54.604167,18.458333,,0.025,,845,66,81,,,,996,L1028 U1020 4.4s,85366,,, +495,SRB,,PA,b,Pančevo (Voj-jbn),44.895833,20.625,,0.05,,1315,122,83,,,,949,L1084 U910 9.5s,ID+6 tone,85369,, +495,RUS,,ZF,b,Voronezh / Pridacha,51.645833,39.291667,,0.025,,2238,78,95,,,,,,86719,,, +495,RUS,,AW,b,Budjenovsk,44.8125,44.041667,,0.025,,2855,91,102,,,,,15.0s,IDx2 + 7 gap,85367,, +495,RUS,,BP,b,Budennovsk,44.8125,44.041667,,0.025,,2855,91,102,,,,,,86718,,, +496,ARM,,ER,b,Yerevan (erv),40.145833,44.458333,,0.025,,3173,100,105,,,,5,L1000 U997 ,IDx2 + 25 gap,85371,, +500,ROU,,YQI Constanţa R,c,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,,,6600008,,, +500,RUS,,UZT Mezen R,c,Mezen,65.85,44.233333,,1,,2588,39,83,,????-????,1234567,,,19901350,,, +500,KEN,,5ZF Mombasa R,c,Mombasa (coa),-4.066667,39.672222,,1,,6989,142,127,,????-????,1234567,,,19900937,,, +500,DOM,,HIA Santo Domingo Piloto R,c,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,????-????,1234567,,,19900493,,, +500,ARG,,Prefectura Naval Buenos Aires,c,Buenos Aires/Prefectura Naval (df),-34.583333,-58.666667,,1,,11518,230,152,,????-????,1234567,,,19900038,,, +500,ARG,,Prefectura Naval Mar del Plata,c,Mar del Plata/Prefectura Naval (ba),-38,-57.55,,1,,11772,227,153,,????-????,1234567,,,19900046,,, +500,ARG,,Prefectura Naval Bahia Blanca,c,Baha Blanca/Prefectura Naval (ba),-38.716667,-62.283333,,1,,12079,230,154,,????-????,1234567,,,19900036,,, +500,ARG,,Prefectura Naval Comodoro Rivadavia,c,Comodoro Rivadavia/Prefectura Naval (ch),-45.866667,-67.5,,1,,12966,228,157,,????-????,1234567,,,19900041,,, +500,ARG,,Prefectura Naval Rio Gallegos,c,Ro Gallegos/Prefectura Naval (sc),-51.633333,-69.216667,,1,,13522,225,159,,????-????,1234567,,,19900057,,, +500,ARG,,Prefectura Naval Ushuaia,c,Ushuaia/Prefectura Naval (tf),-54.8,-68.3,,1,,13729,222,159,,????-????,1234567,,,19900060,,, +505,XOE,,BD1,b,Al-Jurf Field,33.854167,12.041667,,0.025,,2079,165,94,,,,,U1026 ,ID+11 gap,86721,, +505,UKR,,S,b,Kerch (KR),45.354167,36.375,,0.025,,2303,97,96,,,,,,85374,,, +505,RUS,,GE,b,Saransk (MD),54.145833,45.208333,,0.025,,2566,69,99,,,,,,85373,,, +505,RUS,,SI,b,Saransk (MD),54.145833,45.208333,,0.025,,2566,69,99,,,,,,85375,,, +505,RUS,,WC,b,Kamensk-Uralskiy (SV),56.4375,61.958333,,0.025,,3538,60,108,,,,,L1050 U1027 ,85376,,, +505,TJK,,SX,b,Pugus (ntc),38.843056,68.839722,,0.025,,4920,82,122,,,,,,34200009,,, +505.18,D,,DI2AM,c,Rostock (mev),54.141917,12.086503,,0.018,,441,57,79,,,,-505.18,,2000042,,, +507,RUS,,ND,b,Bolshevik,45.770833,40.208333,,0.025,,2541,93,98,,,,4,L969 U974 ,ID+7 gap,85378,, +508,SVK,,Z,b,Zilina / Hlinik (ZA),49.229167,18.625,,0.025,,917,106,82,,,,995,L1016 U1016 10.0s,ID+9 gap,85379,, +509,UKR,,N,b,Chemivtsi (CV),48.270833,25.958333,,0.025,,1451,99,87,,,,,U998 ,IDx2,85383,, +509,UKR,,R,b,Chernivtsi (CV),48.229167,26.041667,,0.025,,1458,99,88,,,,,L1010 U1014 15.0s,IDx2 + 11 gap,85384,, +509,UKR,,I,b,Mykolaivka (MY),47.0625,31.875,,0.025,,1908,97,92,,,,,U1020 ,IDx2 + 15 gap,85380,, +509,UKR,,K,b,Mykolaivka (MY),47.0625,31.958333,,0.025,,1914,97,92,,,,,U1011 ,Cont.ID,85381,, +509,RUS,,D,b,Volgodonsk (RO),47.6875,42.041667,,0.025,,2572,87,99,,,,,,86722,,, +509,KAZ,,M,b,Taraz=Jambyl=Zhambyl (zha),42.854167,71.291667,,0.025,,4814,75,121,,,,,U1020 ,85382,,, +510,RUS,,LJ,b,Gromovo,60.729167,30.125,,0.025,,1730,47,90,,,,5,L402 U404 15.3s,IDx2 + 5 gap,85389,, +510,RUS,,WO,b,Zalesye,56.770833,35.125,,0.025,,1912,63,92,,,,,,86723,,, +510,UKR,,CE,b,Poltava (PO),49.645833,34.458333,,0.025,,1974,87,93,,,,7,L1005 U1020 15.0s,ID+9 gap,85385,, +510,RUS,,CR,b,Cheboksary (CV),56.104167,47.458333,,0.025,,2671,64,100,,,,923,L1020 U866 ,85386,,, +510,RUS,,LA,b,Cheboksary (CV),56.0625,47.291667,,0.025,,2662,64,100,,,,,,85388,,, +510,KAZ,,NK,b,Novokazalinsk (qzy),45.8125,62.125,,0.025,,4024,77,113,,,,988,L995 U900 15.0s,IDx2,85390,, +510,ALS,,FA,b,Wearr Fairbanks (AK),64.895833,-147.708333,,0.025,,6816,348,141,,,,,,85387,,, +510,USA,,OF,b,Carsy Norfolk (NE),41.895833,-97.458333,,0.025,,7264,307,146,,,,959,L1070 U993 7.4s,85391,,, +510.5,UKR,,UTT Odesa R,c,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,????-????,1234567,-510.5,,19901468,,, +511,BLR,,G,b,Gomel (GO),52.520833,30.958333,,0.025,,1661,79,90,,,,996,L1010 U1010 ,85392,,, +511,BLR,,M,b,Gomel (GO),52.520833,31.041667,,0.025,,1667,79,90,,,,997,L1013 U1012 ,85394,,, +511,ALG,,HKI,b,Hassi Khebi (37),29.1875,-5.291667,,0.025,,2725,205,100,,,,0,L4 20.0s,ID+15 tone,85393,, +512,MNE,,Bar R,c,Bar (BR),42.086111,19.075,,1,,1466,134,72,,????-????,1234567,,,19901100,,, +512,ALB,,ZAV Vlor R,c,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900009,,, +512,TUN,,3VX Tunis R,c,Tunis (tun),36.8,10.183333,,1,,1728,169,74,,????-????,1234567,,,19901425,,, +512,MRC,,CNW Tanger R,c,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,????-????,1234567,,,19901121,,, +512,LBY,,5AT Tarabulus=Tripoli R,c,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901020,,, +512,LBY,,5AB Benghazi R,c,Benghazi (bga),32.116667,20.066667,,1,,2483,148,82,,????-????,1234567,,,19901016,,, +512,AZR,,CUG So Miguel R,c,So Miguel (smg),37.766667,-25.5,,1,,2939,250,86,,????-????,1234567,,,19900230,,, +512,MDR,,CUB Madeira R,c,Funchal (md),32.641944,-16.9175,,1,,2865,230,86,,????-????,1234567,,,19901076,,, +512,IRN,,EQL Bandar Anzali R,c,Bandar Anzali (gln),37.477778,49.466667,,1,,3697,99,94,,????-????,1234567,,,19900806,,, +512,KWT,,9KK Kuwait R,c,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901010,,, +512,IRN,,EQI Bandar-e Abbas R,c,Bandar-e Abbas (hrg),27.161022,56.225378,,1,,4952,104,107,,????-????,1234567,,,19900810,,, +512,KAZ,,KT,b,Narimanovka / Kostanay (qos),53.145833,63.291667,,0.025,,3738,65,110,,,,2,L391 U1011 ,85396,,, +512,KAZ,,NA,b,Narimanovka / Qostanay (qos),53.104167,63.375,,0.025,,3745,65,110,,,,2,L1011 U1012 ,85397,,, +512,IRN,,EQJ Chah Bahar R,c,Chah Bahar (sib),25.3,60.633333,,1,,5399,102,111,,????-????,1234567,,,19900815,,, +512,DJI,,J2A Djibouti R,c,Djibouti (djb),11.608333,43.15,,1,,5576,130,113,,????-????,1234567,,,19900476,,, +512,YEM,,7OA Aden R,c,Aden (adn),12.766111,45.052861,,1,,5565,127,113,,????-????,1234567,,,19901623,,, +512,COD,,9PA Banana R,c,Banana,-6.002778,12.4,,1,,6487,173,122,,????-????,1234567,,,19900418,,, +512,IND,,VWZ Ratnagiri R,c,Ratnagiri (MH),16.983333,73.3,,1,,6955,98,127,,????-????,1234567,,,19900694,,, +512,IND,,VWG Goa R,c,Goa (GA),15.458333,73.802778,,1,,7120,98,128,,????-????,1234567,,,19900683,,, +512,IND,,VWL Mangalore R,c,Mangalore (KA),12.866667,74.883333,,1,,7417,99,131,,????-????,1234567,,,19900685,,, +512,BGD,,S3E Khulna R,c,Khulna (khu),22.825,89.55,,1,,7567,81,133,,????-????,1234567,,,19900267,,, +512,IND,,VWT Tuticorin R,c,Tuticorin (TN),8.783333,78.133333,,1,,7994,99,137,,????-????,1234567,,,19900697,,, +512,CHN,,XSZ Dalian R,c,Dalian (LN),38.845244,121.518056,,1,,8120,48,138,,????-????,1234567,,,19900378,,, +512,RUS,,UBW Yuzhno-Sakhalinsk R,c,Yuzhno-Sakhalinsk (SL),46.966667,142.733333,,1,,8241,29,139,,????-????,1234567,,,19901372,,, +512,KRE,,Inch'on R,c,Inch'on,40.45,127.5,,1,,8261,43,140,,????-????,1234567,,,19901004,,, +512,KOR,,HLK Gangneung R,c,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900967,,, +512,KOR,,HLM Mokpo R,c,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900977,,, +512,KOR,,HLN Gunsan R,c,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900972,,, +512,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900942,,, +512,KOR,,HLU Ulleung R,c,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900991,,, +512,KOR,,HLY Yeosu R,c,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19900996,,, +512,CHN,,XSJ Zhanjiang R,c,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,????-????,1234567,,,19900398,,, +512,USA,,HMY,b,Muldrow Lexington (OK),35.020833,-97.208333,,0.025,,7835,302,151,,,,964,L1065 U996 7.70s,85395,,, +512,ATA,,RUZU Molodezhnaya R,c,Molodezhnaya Station [RUS] (aat),-67.666667,45.840056,,1,,13716,163,159,,????-????,1234567,,,19900114,,, +512,ATA,,UDY Novolazarevskaya R,c,Novolazarevskaya Station [RUS] (dml),-70.776667,11.823058,,1,,13671,178,159,,????-????,1234567,,,19900117,,, +512,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900081,,, +512,ATA,,UBA Mirnyy R,c,Mirnyy Station [RUS] (aat),-66.558981,93.002239,,1,,15033,146,164,,????-????,1234567,,,19900111,,, +513,TUR,,Istanbul R,c,Istanbul,38.55,35,,1,,2668,113,84,,,,,,19901438,,, +513,USA,,PP,b,Flick Crescent (IA),41.395833,-95.875,,0.025,,7219,306,145,,,,980,L1007 U1061 6009s,85398,,, +514.5,CZE,,LA,b,Nměť nad Oslavou (VY),49.145833,16.208333,,0.025,,765,112,81,,,,455,L1020 U1116 8.0s,85401,,, +515,RUS,,T,b,Vologda (VO),59.3125,39.958333,,0.025,,2220,56,95,,,,,15.0s,IDx2 + tone,85410,, +515,RUS,,U,b,Vologda (VO),59.270833,39.958333,,0.025,,2220,56,95,,,,,15.1s,IDx2 + tone,85411,, +515,RUS,,NV,b,Rostov Na Donu (RO),47.270833,39.625,,0.025,,2426,90,97,,,,10,L1000 U1020 30.0s,IDx2 + 7 gap,85404,, +515,RUS,,XS,b,Rostov Na Donu (RO),47.270833,39.625,,0.025,,2426,90,97,,,,,,85412,,, +515,RUS,,SL,b,Sukhodol,53.895833,51.208333,,0.025,,2954,68,103,,,,4,L1029 U1040 30.0s,85409,,, +515,AZE,,BU,b,Baku / Bina (bak),40.3125,50.041667,,0.025,,3540,94,108,,,,3,L405 U410 15.2s,ID+2 gap,85402,, +515,IND,,VWM Chennai R,c,Chennai=Madras (TN),13.082778,80.287222,,1,,7765,95,135,,????-????,1234567,,,19900679,,, +515,USA,,OS,b,Fuler Columbus (OH),40.0625,-83.208333,,0.025,,6590,297,139,,,,0,L1019 U1023 8600s,85406,,, +515,MOZ,,C9C2 Beira R Metro,c,Beira (sfl),-19.85,34.833333,,1,,8463,153,142,,????-????,1234567,,,19901103,,, +515,USA,,RRQ,b,Rock Rapids (IA),43.4375,-96.208333,,0.025,,7068,308,144,,,,,L1050 U1050 ,87263,,, +515,USA,,ONH,b,Noah Jefferson City (MO),38.645833,-92.208333,,0.025,,7239,302,145,,,,984,L1044 U1018 5.9s,85405,,, +515,USA,,SAK,b,Smith Lake Kalispell (MT),48.104167,-114.458333,,0.025,,7545,322,148,,,,967,L1080 U1009 8.2s,85408,,, +515,USA,,PN,b,Ponca Ponca City (OK),36.8125,-97.125,,0.025,,7676,304,150,,,,3,L1016 U1025 8.6s,85407,,, +515,USA,,CL,b,Elwha Port Angeles (WA),48.145833,-123.708333,,0.025,,7907,327,152,,,,955,L1080 U988 5.98s,85403,,, +515,USA,,PKV,b,Port Lavaca (TX),28.645833,-96.708333,,0.025,,8358,298,157,,,,,L1020 U1021 6434s,87262,,, +516,MNE,,Bar R,c,Bar (BR),42.086111,19.075,,1,,1466,134,72,,????-????,1234567,,,19901101,,, +516,UKR,,UXO Sevastopol' Krymskoi R,c,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901473,,, +516,CPV,,D4A So Vicente R,c,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900432,,, +516,CAN,,YWA,b,Petawawa (ON),45.895833,-77.291667,,0.025,,5799,299,131,,,,974,L1050 U1000 8.2s,DAID,85414,, +516,USA,,GCT,b,Guthrie Center (IA),41.6875,-94.458333,,0.025,,7116,305,144,,,,3,L1015 U1020 6.4s,85413,,, +517,HNG,,JBR,b,Jaszbereny (JNS),47.479167,19.875,,0.025,,1093,113,84,,,,0,L1021 U1018 8.5s,ID+4 gap,85418,, +517,ROU,,ARD,b,Arad (AR),46.1875,21.125,,0.025,,1253,116,86,,,,3,L980 U968 5.5s,ID+2.5 gap,85415,, +517,USA,,FN,b,Hillz Clinton (IA),41.770833,-90.375,,0.025,,6879,303,142,,,,957,L1080 U997 6063s,85416,,, +517,USA,,GKB,b,Norge Kansas City (MO),39.0625,-94.625,,0.025,,7344,303,146,,,,0,L1075 U1075 8.0s,85417,,, +517,USA,,GQ,b,Norge (MO),39.0625,-94.625,,0.025,,7344,303,146,,,,,L1071 ,87264,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,0230-0240,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,0630-0640,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,1030-1040,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,1430-1440,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,1830-1840,1234567,,,3800012,,, +518,HOL,,PBK,u,Den Helder (nho),52.964011,4.78135,,1,,145,311,56,,2230-2240,1234567,,,3800012,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0200-0210,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0310-0320,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0600-0610,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,0710-0720,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1000-1010,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1110-1120,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1400-1410,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1510-1520,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1800-1810,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,1910-1920,1234567,,,800004,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,2200-2210,1234567,,,800003,,, +518,BEL,,OST Oostende R,u,Middelkerke/TG1 (vlg-wvl),51.182278,2.806539,,1,,269,249,60,,2310-2320,1234567,,,800004,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0300-0310,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0700-0710,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1100-1110,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1500-1510,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,1900-1910,1234567,,,2000040,,, +518,D,,DDH47,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,2300-2310,1234567,,,2000040,,, +518,G,,GCC Cullercoats R,,East Hartley (EN-TYW),55.0732,-1.463233,,1,,615,306,63,,,,,,2800039,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0040-0050,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0140-0150,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0440-0450,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0540-0550,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0840-0850,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,0940-0950,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,1240-1250,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,1340-1350,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,1640-1650,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,1740-1750,1234567,,,2800040,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,2040-2050,1234567,,,2800038,,, +518,G,,GNI Niton R,,Niton (EN-IOW),50.581836,-1.294983,,1,,561,255,63,,2140-2150,1234567,,,2800040,,, +518,S,,SAA Stockholm R,,Gislvshammar (sn),55.488917,14.314222,,1,,640,51,63,,,,,,6800015,,, +518,NOR,,LGQ Rogaland R,,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,,,,,6300032,,, +518,S,,SAS Stockholm R,,Grimeton (ha),57.103056,12.385556,,1,,675,32,64,,,,,,6800016,,, +518,G,,GPK Portpatrick R,,Portpatrick (SC-DGA),54.844044,-5.124478,,1,,820,296,65,,,,,,2800045,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0000-0020,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0400-0420,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0800-0820,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1200-1220,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1600-1620,1234567,,,2500010,,, +518,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,2000-2020,1234567,,,2500010,,, +518,I,,IQX Trieste R,,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,,,,,4000053,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0340-0350,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0740-0750,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1140-1150,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1540-1550,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1940-1950,1234567,,,2500011,,, +518,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,2340-2350,1234567,,,2500011,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0240-0250,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0640-0650,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1040-1050,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1440-1450,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1840-1850,1234567,,,4100052,,, +518,IRL,,EJM Malin Head Coastguard R,,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,2240-2250,1234567,,,4100052,,, +518,I,,IQM,,Mondolfo (pu),43.75,13.1,,1,,1054,149,68,,,,,,4000052,,, +518,IRL,,EJK Valentia Coastguard R,,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,,,,,4100053,,, +518,HRV,,9AS Split R,,Split (st),43.501872,16.473711,,1,,1215,138,69,,,,,,3900004,,, +518,I,,ICH,,La Maddalena (ot),41.214722,9.4075,,1,,1233,168,69,,,,,,4000050,,, +518,NOR,,LFO rlandet R,,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,,,,,6300031,,, +518,EST,,ESA Tallinn R,,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,,,,,2400004,,, +518,FRO,,OXJ Trshavn R,,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,,,,,2700003,,, +518,I,,IDC Cagliari R,,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,,,,,4000046,,, +518,E,,EAR La Corua R,,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,,,,,2200031,,, +518,E,,EAV,,Cumbre del Sol (VAL-A),38.723258,0.161367,,1,,1565,200,73,,,,,,2200032,,, +518,NOR,,LGP Bod R,,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,,,,,6300030,,, +518,S,,SAH Stockholm R,,Bjurklubb (vb),64.461639,21.591833,,1,,1626,27,73,,,,,,6800017,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0010-0020,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0410-0420,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,0810-0820,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1210-1220,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,1610-1620,1234567,,,200010,,, +518,ALG,en,7TA,u,Algiers/7TA (16),36.733333,3.18,,1,,1728,190,74,,2010-2020,1234567,,,200010,,, +518,GRC,,SVK Kerkyra R,,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,,,,,3400036,,, +518,I,,ICI,,Sellia Marina (cz),38.905,16.743056,,1,,1671,147,74,,,,,,4000051,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,0020-0030,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,0420-0430,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,0820-0830,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,1220-1230,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,1620-1630,1234567,,,7900004,,, +518,TUN,,3VL Klibia R,,Klibia (nab),36.85,11.1,,1,,1736,166,74,,2020-2030,1234567,,,7900004,,, +518,I,,IQA Augusta R,,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,,,,,4000045,,, +518,BUL,,LZW Varna R,,Varna/Bolyartsi (vrn),43.068056,27.786111,,1,,1881,114,76,,,,,,1300003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,0220-0230,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,0620-0630,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,1020-1030,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,1420-1430,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,1820-1830,1234567,,,5800003,,, +518,MLT,,9HD Malta R,,Benghisa (mt),35.815211,14.526911,,1,,1922,157,76,,2220-2230,1234567,,,5800003,,, +518,POR,,CTV251 Monsanto R,,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,,,,,6500004,,, +518,UKR,,UTT Odesa R,,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,,,,,8100019,,, +518,E,,EAC Tarifa R,,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,,,,,2200030,,, +518,GRC,,SVL Limnos R,,Limnos (neg-les),39.866667,25.066667,,1,,1972,126,77,,,,,,3400035,,, +518,ISL,,TFA Reykjavk R,,Sauanes (ne),66.2465,-15.264172,,1,,1977,331,77,,,,,,4200016,,, +518,ISL,,TFA Reykjavk R,,Grindavk (sn),63.850969,-22.451883,,1,,2114,319,78,,,,,,4200017,,, +518,TUR,en,TAH Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,,,,,8000014,,, +518,TUR,en,TAN Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,,,,,8000018,,, +518,MRC,,CNP Casablanca R,,Casablanca (gcb),33.6,-7.633333,,1,,2346,214,80,,,,,,5900004,,, +518,RUS,,UHS,,Murmansk (MU),68.782778,32.981667,,1,,2319,27,80,,,,,,6700124,,, +518,UKR,,Kerch R,,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,,,,,8100018,,, +518,GRC,,SVH Iraklion Kritis R,,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,,,,,3400037,,, +518,NOR,,LGV Vard R,,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,,,,,6300029,,, +518,RUS,,UGE,,Arkhangelsk (AR),64.556278,40.550028,,1,,2380,41,81,,,,,,6700123,,, +518,LBY,,5A?,,Surt=Sirte (srt),31.2,16.59,,1,,2468,156,82,,,,,,4800006,,, +518,RUS,,UDN,,Novorossiysk (KD),44.599111,37.964417,,1,,2453,97,82,,,,,,6700126,,, +518,TUR,en,TAF Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,,,,,8000020,,, +518,TUR,en,TAL Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,,,,,8000016,,, +518,CYP,,5BA Cyprus R,,Nicosia (kyp-nic),35.048278,33.283628,,1,,2849,121,85,,,,,,1800001,,, +518,NOR,,LGS Bod R,,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,,,,,6300028,,, +518,EGY,,SUH Al-Iskandariya R,,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,,,,,2300011,,, +518,RUS,,UJB,,Astrakhan (AS),46.296694,47.997778,,1,,3046,85,87,,,,,,6700125,,, +518,AZR,,CTH Marinha Horta,,Horta (fai),38.529872,-28.628922,,1,,3086,255,88,,,,,,700014,,, +518,ISR,,4XO Haifa R,,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,,,,,4300010,,, +518,EGY,,SUZ Ismailia R,,Ismailia (ism),30.470311,32.36675,,1,,3205,129,89,,,,,,2300013,,, +518,CNR,,EAL Las Palmas R,,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,,,,,1500016,,, +518,GRL,,OXF,,Simiutaq (kuj-qqt),60.683333,-46.6,,1,,3297,308,90,,,,,,3500021,,, +518,UKR,,OI,b,Nezhin,51.104167,31.875,,0.025,,1753,84,91,,,,996,L315 U492 ,ID+1 gap,85422,, +518,GRL,,OXI,,Nuuk=Godthb/Telegrafoen (sms-nuk),64.070167,-52.012611,,1,,3530,315,92,,,,,,3500019,,, +518,EGY,,SUK Al-Qusair R,,Al-Qusayr=Quseir (bar),26.110889,34.280083,,1,,3714,130,94,,,,,,2300012,,, +518,GRL,,XXX,,Upernavik (qaa-upk),72.770833,-56.125,,1,,3681,331,94,,,,,,3500020,,, +518,IRN,,EQO,,Nowshahr (mzd),36.658333,51.501389,,1,,3894,98,96,,,,,,10800023,,, +518,CAN,,VOK Labrador Coastguard,,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,,,,,20109287,,, +518,CAN,,VON Saint John's Coastguard,,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,,,,,20109284,,, +518,CAN,,VFF Iqaluit Coastguard,,Iqaluit (NU),63.731389,-68.543167,,1,,4325,317,100,,,,,,20109282,,, +518,ARS,,HZH Jeddah R,,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0705-0715,1234567,,,10600011,,, +518,ARS,,HZH Jeddah R,,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1305-1315,1234567,,,10600011,,, +518,ARS,,HZH Jeddah R,,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1905-1915,1234567,,,10600011,,, +518,IRN,,EQM Bushehr R,,Bushehr (bus),28.962225,50.822794,,1,,4448,108,101,,,,,,10800022,,, +518,ARS,,HZG,,Dammam (shy),26.433333,50.1,,1,,4614,111,103,,,,,,10600010,,, +518,BHR,,A9M Bahrain R,,Hamala (shm),26.157167,50.47665,,1,,4662,111,104,,,,,,10900019,,, +518,CAN,,VCO Sydney Coastguard,,Glace Bay (NS),46.185739,-59.893275,,1,,4697,289,104,,,,,,20109281,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0010-0020,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0410-0420,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0810-0820,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1210-1220,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1610-1620,1234567,,,20109274,,, +518,CAN,en,VCK Rivire-au-Renard Coastguard,,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,2010-2020,1234567,,,20109274,,, +518,IRN,,EQI Bandar-e Abbas R,,Bandar-e Abbas (hrg),27.161022,56.225378,,1,,4952,104,107,,,,,,10800021,,, +518,CAN,,VAR9 Saint John Coastguard,,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,,,,,20109286,,, +518,OMA,,A4M Wattayah R,,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,,,,,11700002,,, +518,KAZ,,AR,b,Arlakyk (qos),50.3125,66.958333,,0.025,,4098,68,114,,,,,,85419,,, +518,USA,,NMF USCG Boston,,Camp Edwards (MA),41.709833,-70.498353,,1,,5674,291,114,,,,,,20016121,,, +518,USA,,NMN USCG Chesapeake,,Pungo (VA),36.729167,-76.008333,,5,,6397,290,114,,,,,,20016119,,, +518,PAK,,ASK Karachi R,,Karachi (shd),24.851944,67.0425,,1,,5868,97,116,,,,,,31500028,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,0010-0020,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,0410-0420,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,0810-0820,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,1210-1220,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,1610-1620,1234567,,,36000002,,, +518,BER,,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1,,5982,278,117,,2010-2020,1234567,,,36000002,,, +518,CAN,,VBR/XMJ329,,Barrow Bay (ON),44.937111,-81.233467,,1,,6102,300,118,,,,,,20109283,,, +518,CAN,,VBA/XLJ895 Thunder Bay Coastguard,,Thunder Bay (ON),48.563514,-88.656311,,1,,6253,308,120,,,,,,20109285,,, +518,IND,,VWB Mumbai R,,Mumbai=Bombay (MH),19.083239,72.834033,,1,,6744,96,124,,,,,,32200039,,, +518,USA,,NMA USCG Miami,,Miami (FL),25.626225,-80.383411,,5,,7577,284,126,,,,,,20016123,,, +518,USA,,NME USCG Savannah,,Savannah (GA),32.139625,-81.696822,,1,,7126,290,128,,,,,,20016122,,, +518,RUS,,UIB,,Magadan (MA),59.683333,150.15,,1,,7167,19,129,,,,,,6700127,,, +518,PTR,,NMR USCG San Juan,,Isabela (PR),18.466683,-67.071819,,1,,7277,269,130,,,,,,20016124,,, +518,CAN,,VAJ Prince Rupert Coastguard,,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,,,,,20109288,,, +518,ALS,,NOJ USCG Kodiak,,Kodiak/Buskin River (AK),57.781606,-152.537594,,1,,7647,348,133,,,,,,20016112,,, +518,ALS,,NOJ USCG Kodiak,,Kodiak/Buskin River (AK),57.781606,-152.537594,,1,,7647,348,133,,,,,,20016113,,, +518,IND,,VWM Chennai R,,Chennai=Madras (TN),13.082778,80.287222,,1,,7765,95,135,,,,,,32200038,,, +518,USA,,NMG USCG New Orleans,,Belle Chasse (LA),29.884656,-89.945611,,1,,7836,294,135,,,,,,20016120,,, +518,CAN,,XLK835 Tofino Coastguard,,Amphitrite Point (BC),48.925478,-125.540314,,1,,7897,329,136,,,,,,20109289,,, +518,CUW,,PJC,,Curaao (cao),12.173197,-68.864919,,1,,7939,266,136,,,,,,35000001,,, +518,RUS,,UBE2,,Petropavlovsk (KM),53.247778,158.419472,,1,,8014,17,137,,,,,,6700128,,, +518,CHN,,XSZ Dalian R,,Dalian (LN),38.845244,121.518056,,1,,8120,48,138,,,,,,36201119,,, +518,USA,,NMW USCG Astoria,,Astoria (OR),46.203989,-123.955639,,1,,8104,327,138,,,,,,20016116,,, +518,RUS,,UFO Kholmsk R,,Kholmsk (SL),47.023556,142.045056,,1,,8212,30,139,,,,,,6700129,,, +518,RUS,,UIK,,Vladivostok (PM),43.381472,131.899861,,1,,8180,38,139,,,,,,6700130,,, +518,KRE,,HMH,,Hungnam (han),39.833172,127.6856,,1,,8327,43,140,,,,,,31700006,,, +518,KRE,,HMZ,,Pyongyang (pyo),38.916667,125.716667,,1,,8320,45,140,,,,,,31700005,,, +518,NMB,,V5W,,Walvis Bay (ego),-23.05665,14.624333,,1,,8396,172,141,,,,,,20200001,,, +518,J,,JNL,,Otaru (hok),43.2,141,,1,,8556,32,142,,,,,,31400031,,, +518,CHN,,XSG Shanghai R,,Shanghai (SH),31.108889,121.544167,,1,,8826,52,143,,,,,,36201118,,, +518,J,,JNX,,Kushiro (hok),42.983333,144.383333,,1,,8697,30,143,,,,,,31400030,,, +518,USA,,NMC USCG Point Reyes,,Bolinas (CA),37.925739,-122.734056,,1,,8859,322,143,,,,,,20016118,,, +518,VTN,,XVG Hải Phng R,,Hải Phng (hpg),20.850817,106.733811,,1,,8867,69,143,,,,,,33200014,,, +518,CHN,,XSL,,Fuzhou (FJ),26.028544,119.305469,,1,,9167,57,144,,,,,,36201117,,, +518,CHN,,XSQ Guangzhou R,,Guangzhou (GD),23.15,113.483333,,1,,9084,63,144,,,,,,36201116,,, +518,HKG,,VRX Hong Kong R,,Cape d'Aguillar (sou),22.209167,114.256111,,1,,9215,63,144,,,,,,33800007,,, +518,J,,JNR,,Moji (kyu-fuk),33.95,130.966667,,1,,9037,44,144,,,,,,31400033,,, +518,THA,,HSA Bangkok R,,Phetchaburi (pbr),13.024444,100.019733,,1,,9111,79,144,,,,,,32900027,,, +518,USA,,GCT,b,Guthrie Center (IA),41.6875,-94.458333,,0.025,,7116,305,144,,,,3,L1015 U1020 6.4s,85421,,, +518,USA,,NMQ,,Cambria (CA),35.524297,-121.061922,,1,,9019,319,144,,,,,,20016117,,, +518,AFS,,ZSD Durban R,,Durban (KZN),-29.804833,30.815633,,1,,9414,159,145,,,,,,20300025,,, +518,CHN,,XSI,,Sanya (HA),18.232222,109.495833,,1,,9274,69,145,,,,,,36201115,,, +518,J,,JGC,,Yokohama (kan-kgw),35.433333,139.633333,,1,,9274,37,145,,,,,,31400032,,, +518,MAU,,3BM Mauritius R,,Port Louis (mau),-20.167089,57.478161,,1,,9432,133,145,,,,,,20800002,,, +518,VTN,,XVT Đ Nẵng R,,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,,,,,33200015,,, +518,AFS,,ZSC Cape Town R,,Klipheuwel (WC),-33.685128,18.712961,,1,,9615,170,146,,,,,,20300023,,, +518,AFS,,ZSQ,,Port Elizabeth (EC),-34.036722,25.555833,,1,,9759,164,146,,,,,,20300024,,, +518,J,,JNB,,Naha (kyu-oki),26.15,127.766667,,1,,9619,50,146,,,,,,31400034,,, +518,MLA,,9MG,,Penang (pen),5.425,100.403056,,1,,9803,84,146,,,,,,32800006,,, +518,VTN,,XVS Hồ Ch Minh R,,Hồ Ch Minh (hcm),10.703317,106.729139,,1,,9762,75,146,,,,,,33200013,,, +518,EQA,,HCG,,Guayaquil (gua),-2.283333,-80.016667,,1,,9964,266,147,,,,,,32600009,,, +518,PHL,,DZS,,Manila (ncr),14.583333,121.05,,1,,10320,62,148,,,,,,33300024,,, +518,PRU,,OBY2,,Paita (piu),-5.083333,-81.116667,,1,,10285,265,148,,,,,,37000056,,, +518,SNG,,9VG,,Singapore (sw),1.333333,103.7,,1,,10387,83,148,,,,,,33100004,,, +518,PRU,,OBC3,,Callao,-12.5,-77.15,,1,,10669,257,149,,,,,,37000055,,, +518,PRU,,OBF4,,Matarani (are),-17.016667,-72.016667,,1,,10730,251,149,,,,,,37000054,,, +518,MLA,,9WH21,,Sandakan (sbh),5.895886,118.00305,,1,,10927,69,150,,,,,,32800008,,, +518,MLA,,9WW21,,Miri (swk),4.438,114.020889,,1,,10801,73,150,,,,,,32800007,,, +518,CHL,,CBA Antofagasta R,,Antofagasta (AN),-23.65,-70.4,,1,,11214,245,151,,,,,,36800001,,, +518,INS,,PKX Jakarta R,,Jakarta (JK),-6.116667,106.866667,,1,,11257,85,151,,,,,,35400117,,, +518,URG,,CWM27,,La Paloma (ro),-34.666667,-54.15,,1,,11294,227,151,,,,,,31200004,,, +518,ARG,,L2B,,Buenos Aires (df),-34.6,-58.366667,,1,,11504,230,152,,,,,,33000037,,, +518,ARG,,L2P,,Mar del Plata (ba),-38.05,-57.533333,,1,,11776,227,153,,,,,,33000036,,, +518,GUM,,NRV USCG Guam,,Barrigada (GU),13.47445,144.844408,,1,,11703,42,153,,,,,,20016114,,, +518,HWA,,NMO USCG Honolulu,,Maili/Tower Drive (HI),21.437019,-158.143214,,1,,11700,345,153,,,,,,20016115,,, +518,ARG,,L2I,,Baha Blanca (ba),-38.716667,-62.1,,1,,12070,230,154,,,,,,33000035,,, +518,CHL,en,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0410-0420,1234567,,,36800002,,, +518,CHL,en,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1210-1220,1234567,,,36800002,,, +518,CHL,en,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2010-2020,1234567,,,36800002,,, +518,CHL,es,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0010-0020,1234567,,,36800002,,, +518,CHL,es,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0810-0820,1234567,,,36800002,,, +518,CHL,es,CBV Valparaso Playa Ancha R,,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1610-1620,1234567,,,36800002,,, +518,INS,,PKF,,Makassar (SN-mak),-5.1,119.433333,,1,,12012,75,154,,,,,,35400118,,, +518,CHL,,CBT Talcahuano R,,Talcahuano (BI),-36.715056,-73.108,,1,,12506,239,155,,,,,,36800003,,, +518,INS,,PKE,,Ambon (MA-amb),-3.7,128.2,,1,,12448,66,155,,,,,,35400119,,, +518,ARG,,L2W,,Comodoro Rivadavia (ch),-45.85,-67.416667,,1,,12961,228,157,,,,,,33000034,,, +518,CHL,,CBP Puerto Montt R,,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,,,,,36800004,,, +518,INS,,PNK,,Jayapura (PA-jyp),-2.516667,140.716667,,1,,13076,54,157,,,,,,35400120,,, +518,ARG,,L3D,,Ro Gallegos (sc),-51.616667,-69.216667,,1,,13521,225,159,,,,,,33000033,,, +518,ARG,,L3K,,Ushuaia (tf),-54.8,-68.3,,1,,13729,222,159,,,,,,33000032,,, +518,CHL,,CBM Magallanes R,,Punta Arenas (MA),-52.948111,-71.056944,,1,,13714,225,159,,,,,,36800005,,, +518,PAQ,,CBY Isla de Pascua R,,Hanga Roa (vlp),-27.15,-109.416667,,1,,14093,272,161,,,,,,21700001,,, +519,UKR,,UTT Odesa R,c,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,????-????,1234567,,,19901469,,, +519,CME,,TJC5 Douala R,c,Douala,4.033333,9.7,,1,,5355,176,111,,????-????,1234567,,,19900415,,, +519,MDG,,5RS Toamasina R,c,Toamasina=Tamatave (toa),-18.166667,49.383333,,1,,8849,139,143,,????-????,1234567,,,19901065,,, +520,POL,,NW,b,Leczyca,51.979167,19.208333,,0.025,,874,86,82,,,,3,L399 U400 4.5s,ID+2.5 gap,85434,, +520,HNG,,BS,b,Budars (Pes),47.4375,18.958333,,0.025,,1038,115,83,,,,992,L1025 U1011 7.5s,ID+5 gap,85428,, +520,BLR,,OM,b,Ross (HR),53.3125,24.375,,0.025,,1214,77,85,,,,3,L1015 U1020 15.0s,IDx2 + 6 gap,85436,, +520,ROU,,B,b,Bacau (BC),46.5625,26.875,,0.025,,1599,105,89,,,,43,L1000 U1061 ,ID+2 gap,85426,, +520,RUS,,DO,b,Shaykovka,54.395833,34.625,,0.025,,1881,71,92,,,,,,86728,,, +520,RUS,,OO,b,Shaykovka,54.229167,34.375,,0.025,,1866,72,92,,,,928,L550 U1026 7.5s,IDx2 + 3 gap,85438,, +520,RUS,,YUR,b,Shaykovka,54.229167,34.375,,0.025,,1866,72,92,,,,0,L1018 U900 ,85439,,, +520,RUS,,O,b,Ortol,53.020833,35.791667,,0.025,,1975,75,93,,,,,L1039 U1018 ,ID+6 gap,85435,, +520,GEO,,DF,b,Mukhrani (mmt),41.895833,44.541667,,0.025,,3064,96,104,,,,153,L380 U380 30.0s,IDx2 + 21 gap,85429,, +520,RUS,,AB,b,Kumertau,52.895833,55.791667,,0.025,,3277,69,106,,,,,U918 ,86727,,, +520,NIG,,5OZ Port Harcourt R,c,Port Harcourt (riv),4.769444,7.055556,,1,,5264,179,110,,????-????,1234567,,,19901134,,, +520,CAN,,F9,b,Chatham (Miramichi) (NB),47.020833,-65.458333,,0.12,,4999,294,116,,,,,U404 10563s,DAID,85430,, +520,UZB,,M,b,Samarqand (saq),39.6875,66.958333,,0.025,,4734,82,120,,,,,L1025 U1027 ,85433,,, +520,USA,,BF,b,Seattle (Boeing Field) (WA),47.645833,-122.375,,0.4,,7905,326,140,,,,,,87265,,, +520,B,,BHZ,b,Belo Horizonte (MG),-19.854167,-43.958333,,1,,9367,227,145,,,,0,L1018 U1012 7012s,Fast ID,85427,, +520,USA,,IQS,b,Sallisaw (OK),35.395833,-94.791667,,0.025,,7662,301,150,,,,3,L1010 U1016 5.8s,85431,,, +521,ROU,,BSW,b,Bucuresti / Baneasa (BU),44.479167,25.958333,,0.025,,1669,113,90,,,,982,L1021 U1028 4.5s,ID+1 gap,85440,, +521,RUS,,PO,b,Pretoriya,52.270833,54.291667,,0.025,,3203,70,105,,,,1,L398 U403 ,IDx2 + 19 gap,85446,, +521,USA,,GF,b,Hogaf Cleveland (OH),41.5625,-81.458333,,0.025,,6368,297,137,,,,999,L1025 U1022 8.7s,85442,,, +521,USA,,INE,b,Konna Missoula (MT),47.104167,-114.375,,0.4,,7633,321,137,,,,961,L1071 U996 8.0s,85444,,, +521,USA,,FEU,b,Arnold (KY),38.229167,-84.791667,,0.025,,6831,297,141,,,,,L1005 U1010 5.5s,87266,,, +521,USA,,TVX,b,Greencastle (IN),39.729167,-86.791667,,0.025,,6832,299,141,,,,976,L1050 U1005 4.9s,85448,,, +521,USA,,RPK,b,Middlesboro-Bell (KY),36.604167,-83.708333,,0.025,,6893,295,142,,,,,L1006 U1008 6.62s,86837,,, +521,USA,,GM,b,Judky Greenville (SC),34.770833,-82.375,,0.025,,6957,292,143,,,,955,L1078 U990 6136s,85443,,, +521,USA,,ORC,b,Orange City (IA),42.979167,-96.041667,,0.025,,7097,307,144,,,,19,L1045 U1029 8.3s,85445,,, +521,USA,,TO,b,Biloy Topeka (KS),39.104167,-95.708333,,0.025,,7402,304,147,,,,951,L1080 U986 5886s,85447,,, +521,USA,,DWH,b,David Hooks Houston (TX),30.145833,-95.541667,,0.025,,8157,298,155,,,,511,L~1030 U1021 6.08s,85441,,, +521,FJI,,3DP Suva R,c,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,????-????,1234567,,,19900535,,, +521.5,RUS,,UDK Murmansk R,c,Murmansk (MU),68.966667,33.083333,,1,,2335,27,80,,????-????,1234567,-521.5,,19901353,,, +521.5,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,-521.5,,19901281,,, +522,HNG,,P,b,Nyregyhza (SSB),48.020833,21.708333,,0.025,,1180,107,85,,,,7,L1010 U1023 3.0s,ID+1 gap,85451,, +522,ARS,,HZY Ras Tannurah R,c,Ras Tannurah (shy),26.707056,50.10025,,1,,4591,111,103,,????-????,1234567,,,19900074,,, +522,RUS,,DW,b,Vorkuta (KO),67.479167,63.958333,,0.025,,3471,39,108,,,,105,L1007 U1003 15.0s,IDx2,85449,, +522,RUS,,KZ,b,Vorkuta (KO),67.479167,63.958333,,0.025,,3471,39,108,,,,,L1010 15.2s,IDx2,85450,, +522.5,CHN,,XSG21 Shanghai R,c,Shanghai (SH),31.108889,121.544167,,1,,8826,52,143,,????-????,1234567,-522.5,,19900391,,, +523,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901025,,, +523,RUS,,BK,b,Lunino (PZ),53.5625,45.208333,,0.025,,2579,71,99,,,,3,L380 U400 ,IDx2 + 6 gap,85452,, +523,USA,,JJH,b,Johnstown (NY),42.979167,-74.291667,,0.025,,5823,294,131,,,,15,L1021 U1048 5.72s,85453,,, +523,TWN,,XSY Hualien R,c,Hualien (HL),23.983333,121.6,,1,,9485,56,145,,????-????,1234567,,,19901449,,, +523.5,ROU,,YQI Constanţa R,c,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-523.5,,19901328,,, +524,TUR,,Izmir Turk Radyo,c,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,????-????,1234567,,,19901439,,, +524,TUR,,TAR Zonguldak Turk R,c,Zonguldak (kdz-zon),41.45,31.758333,,1,,2247,112,79,,????-????,1234567,,,19901446,,, +524,TUR,,Canakkale R,c,Canakkale,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901433,,, +524,TUR,,Trabzon R,c,Trabzon,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901445,,, +524,BLR,,UU,b,Vitsebsk/Vostochny (VI),55.145833,30.458333,,0.025,,1613,68,89,,,,,L1006 U1011 8.0s,85461,,, +524,BLR,,WS,b,Vitsebsk/Vostochny (VI),55.104167,30.291667,,0.025,,1602,69,89,,,,,L1020 ,85462,,, +524,RUS,,LV,b,Klin (MO),56.354167,36.708333,,0.025,,2007,64,93,,,,,L1020 ,85457,,, +524,RUS,,PT,b,Klin (MO),56.354167,36.708333,,0.025,,2007,64,93,,,,,L1000 ,IDx2,85459,, +524,COG,,TNA Pointe-Noire R,c,Pointe-Noire,-4.794444,11.836111,,1,,6348,174,120,,????-????,1234567,,,19900420,,, +524,KEN,,5ZF Mombasa R,c,Mombasa (coa),-4.066667,39.672222,,1,,6989,142,127,,????-????,1234567,,,19900938,,, +524,USA,,HEH,b,Newark (OH),40.020833,-82.458333,,0.025,,6547,297,138,,,,,U1019 4168s,85455,,, +524,USA,,AJG,b,Mt Carmel (IL),38.604167,-87.708333,,0.025,,6977,299,143,,,,2,L1016 U1020 7259s,85454,,, +524,USA,,UOC,b,Hawkeye Iowa City (IA),41.645833,-91.541667,,0.025,,6955,303,143,,,,0,L1020 U1020 ,85460,,, +524,ALS,,MNL,b,Mineral Creek Valdez (AK),61.104167,-146.375,,0.025,,7197,346,145,,,,965,L1066 U996 ,85458,,, +524,USA,,HRD,b,Hardin County Kountze / Silsbee (TX),30.354167,-94.291667,,0.025,,8064,297,154,,,,998,L1032 U1015 5.91s,85456,,, +524.5,AZR,,CTH Marinha Horta,c,Horta (fai),38.529872,-28.628922,,1,,3086,255,88,,????-????,1234567,-524.5,,19900227,,, +525,POR,,CTV Algs Rnaval,c,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,????-????,1234567,,,19901292,,, +525,POL,,WRW,b,Wroclaw / Strachowice,51.0625,16.958333,,0.025,,737,95,80,,,,8,L1011 U1015 ,ID+2.5 gap,85470,, +525,UKR,,CH,b,Chernyakhov,50.4375,28.708333,,0.025,,1556,88,89,,,,991,L963 U989 30.0s,IDx2 + 22 gap,85463,, +525,RUS,,PL,b,Sankt-Peterburg/Pulkovo (SP),59.770833,30.375,,0.025,,1705,51,90,,,,,L398 10.0s,ID+6.5 gap,85467,, +525,RUS,,WN,b,Poliarny (MU),66.354167,112.041667,,0.025,,5444,31,127,,,,,,85469,,, +525,ALS,,ICW,b,Ice Pool Nenana (AK),64.5625,-149.041667,,0.025,,6871,348,142,,,,995,L1027 U1019 8.5s,85465,,, +525.5,UKR,,USO6 Izmail R,c,Izmail (OD),45.345822,28.875161,,1,,1802,106,75,,????-????,1234567,-525.5,,19901458,,, +526,XOE,,AES,b,Atlantic Rotterdam,55.604167,4.791667,,0.025,,403,345,77,,,,,L1035 U1043 ,86733,,, +526,XOE,,MKE,b,Maersk Enhancher / Tyra Sea Platform,55.854167,4.541667,,0.025,,434,344,77,,,,12,L385 U409 ,ID+2 gap,85473,, +526,BUL,,O,b,Gorna Oryahovitsa (vlt),43.148611,25.741389,,0.025,,1750,117,90,,,,,U986 ,ID+5s gap,85474,, +526,BUL,,WR,b,Varna (vrn),43.229167,27.875,,0.025,,1876,113,92,,,,979,L1024 U982 ,ID+8 gap,85477,, +526,BAH,,ZLS,b,Stella Maris, Long Island,23.5625,-75.291667,,0.025,,7409,279,147,,,,975,L1040 U990 10.2s,85478,, +526,USA,,OJ,b,Furor Olathe (KS),38.9375,-94.708333,,0.025,,7359,303,147,,,,960,L1077 U1002 7.0s,85475,,, +526,USA,,RWE,b,Camp Roberts (CA),35.895833,-120.708333,,0.025,,8968,319,160,,,,957,L1088 U1007 8.0s,85476,,, +527,RUS,,TE,b,Terbuny (LI),52.145833,38.291667,,0.025,,2159,77,95,,,,996,L1015 U1007 ,IDx3 + 12 gap,85480,, +527,RUS,,PT,b,Ufa (BA),54.604167,55.791667,,0.025,,3221,65,105,,,,,,85479,,, +528,RUS,,UH,b,Tikhoretsk (KD),45.854167,40.125,,0.025,,2531,92,98,,,,996,L1037 ,ID+8 gap,85482,, +529,BUL,,SF,b,Sofia (sof),42.6875,23.291667,,0.025,,1640,123,89,,,,,,85485,,, +529,ALS,,SQM,b,Sumner Strait Level Island (AK),56.479167,-133.125,,0.4,,7386,337,135,,,,0,L1037 U1035 ?s,85486,,, +529,USA,,LYQ,b,Morristown (TN),36.1875,-83.375,,0.1,,6906,294,136,,,,0,L1021 U1020 24.3s,NDB,85484,, +529,ALS,,FDV,b,Fort Davis (AK),64.479167,-165.291667,,0.025,,7031,356,143,,,,,L1030 ,85483,,, +530,TCA,es,R Visin Cristiana,,South Caicos (scs),21.563889,-71.497222,,40,,7318,275,114,,,,11,,46792,,, +530,CAN,xx,CIAO,,Brampton (ON),43.590278,-79.888611,,0.25,,6121,298,124,,,,9989,,36114,,, +530,CUB,es,R Enciclopedia,,Villa Mara (ch),23.1,-82.283333,,10,,7915,284,126,,,,0,,31600015,,, +530,CAN,en,CKML,,Chalk River (ON),46.044444,-77.393056,,0.03,,5794,299,130,,,,,,35964,,, +530,CTR,,TICAL R Sinfonola,,Cartago (ctg),9.866667,-83.916667,,18,,9166,276,132,,,,,,40573,,, +530,USA,en,WNUE384,,Concord (NH),43.2,-71.533333,,0.01,,5635,293,133,,,,,,20010391,,, +530,CUB,es,R Rebelde,,Guantnamo/CTOM3 (gu),20.110272,-75.218842,,1,,7693,276,134,,,,0,,31600075,,, +530,USA,en,WNUE384,,Tyngsborough (NH),42.666667,-71.416667,,0.01,,5665,292,134,,,,,,20010346,,, +530,USA,en,WPHG709,,Auburn/3 Bancroft St. (MA),42.202028,-71.826194,,0.01,,5723,292,134,,,,,,20010058,,, +530,USA,en,WPHG709,,Charlton (MA),42.133972,-72.041194,,0.01,,5742,292,134,,,,,,20010057,,, +530,USA,en,WPHG709,,Westborough (MA),42.262306,-71.567,,0.01,,5703,292,134,,,,,,20010059,,, +530,USA,en,WPHG709,,Weston (MA),42.33925,-71.263389,,0.01,,5678,292,134,,,,,,20010060,,, +530,USA,en,WPSK539,,Boston (MA),42.366667,-71.066667,,0.01,,5664,292,134,,,,,,20010177,,, +530,USA,en,WQFV858,,Boston (MA),42.377639,-71.06,,0.01,,5662,292,134,,,,,,20010138,,, +530,USA,en,WQFV858,,East Boston/Logan Int.Airport (MA),42.366917,-71.027083,,0.01,,5661,292,134,,,,,,20010154,,, +530,USA,en,WQFV858,,Roxbury (MA),42.339167,-71.064722,,0.01,,5665,292,134,,,,,,20010153,,, +530,USA,en,WPBX693,,New London/111 Union St. (CT),41.365111,-72.093694,,0.01,,5800,291,135,,,,,,20010321,,, +530,USA,en,KPD627,,Harriman (NY),41.3125,-74.127361,,0.01,,5933,293,136,,,,,,20010347,,, +530,USA,en,WNYG610,,Hillburn (NY),41.126472,-74.16625,,0.01,,5949,292,136,,,,,,20010340,,, +530,USA,en,WNYG610,,Spring Valley (NY),41.098417,-74.054306,,0.01,,5944,292,136,,,,,,20010330,,, +530,USA,en,WNYG610,,Suffern (NY),41.116472,-74.112361,,0.01,,5946,292,136,,,,,,20010394,,, +530,USA,en,WNYG610,,Tarrytown/Nysta Toll Plz 9 (NY),41.065083,-73.864861,,0.01,,5934,292,136,,,,,,20010374,,, +530,USA,en,WPFD964,,White Plains (NY),41.025111,-73.72875,,0.01,,5929,292,136,,,,,,20010337,,, +530,USA,en,WPKW701,,Mamoroneck (NY),40.962611,-73.735694,,0.01,,5934,292,136,,,,,,20010016,,, +530,USA,en,WPKW701,,New York (NY),40.884556,-73.824028,,0.01,,5945,292,136,,,,,,20010017,,, +530,USA,en,WPKW701,,Yonkers (NY),40.977333,-73.85875,,0.01,,5940,292,136,,,,,,20010018,,, +530,USA,en,KNNI707,,Elmwood Park (NJ),40.899833,-74.127639,,0.01,,5963,292,137,,,,,,20010275,,, +530,USA,en,KNNI707,,Paramus (NJ),40.929,-74.07125,,0.01,,5957,292,137,,,,,,20010274,,, +530,USA,en,KNNI707,,Parsippany (NJ),40.859833,-74.367361,,0.01,,5981,292,137,,,,,,20010277,,, +530,USA,en,KNNI707,,Parsippany (NJ),40.8665,-74.441833,,0.01,,5985,292,137,,,,,,20010278,,, +530,USA,en,KNNI707,,Wayne (NJ),40.897611,-74.245694,,0.01,,5971,292,137,,,,,,20010276,,, +530,USA,en,KNNS693,,New Brunswick (NJ),40.519278,-74.432361,,0.01,,6010,292,137,,,,,,20010318,,, +530,USA,en,WNDF923,,Newark/Airport (NJ),40.694,-74.18625,,0.01,,5982,292,137,,,,,,20010312,,, +530,USA,en,WNYG610,,West Nyack/201 N Rt 303 (NY),41.100917,-74.952389,,0.01,,6000,293,137,,,,,,20010342,,, +530,USA,en,WPAS759,,Woodbridge (NJ),40.55,-74.283333,,0.01,,5999,292,137,,,,,,20010343,,, +530,USA,en,WPBG740,,Harrisburg (PA),41.437583,-75.616306,,0.01,,6017,294,137,,,,,,20010327,,, +530,USA,en,WPNY936,,Moosic (PA),41.358417,-75.686306,,0.01,,6028,294,137,,,,,,20010041,,, +530,USA,en,WPRT265,,Harrisburg (PA),41.227778,-75.870833,,0.01,,6049,294,137,,,,,,20010181,,, +530,USA,en,WPFJ882,,Ocean City (MD),39.960989,-75.142111,,0.01,,6097,292,138,,,,,,20010345,,, +530,USA,en,WPGX842,,Philadelphia (PA),39.910667,-75.165167,,0.01,,6102,292,138,,,,,,20010066,,, +530,USA,en,WPHD215,,Cherry Hill (NJ),39.933333,-75.033333,,0.01,,6092,292,138,,,,,,20010065,,, +530,USA,en,WPRS936,,Harrisburg (PA),40.943056,-76.024444,,0.01,,6079,293,138,,,,,,20010182,,, +530,USA,en,WPSQ343,,Vineland (NJ),39.448889,-75.061111,,0.01,,6130,291,138,,,,,,20010176,,, +530,USA,en,KNJX865,,Baltimore (MD),39.283333,-76.616667,,0.01,,6241,292,139,,,,,,20010279,,, +530,USA,en,WNAL786,,Kent Narrows (MD),38.966667,-76.233333,,0.01,,6240,292,139,,,,,,20010313,,, +530,USA,en,WNHC787,,Saint Ignace (MI),45.866667,-84.733333,,0.01,,6237,303,139,,,,,,20010309,,, +530,USA,en,WNQA285,,Piney Grove (MD),39.183333,-76.083333,,0.01,,6215,292,139,,,,,,20010228,,, +530,USA,en,WNQA286,,Severna Park (MD),39.014556,-76.408861,,0.01,,6248,292,139,,,,,,20010227,,, +530,USA,en,WNQA288,,Denton (MD),38.883333,-75.833333,,0.01,,6221,291,139,,,,,,20010225,,, +530,USA,en,WNQA290,,Easton (MD),38.797056,-76.0605,,0.01,,6242,291,139,,,,,,20010223,,, +530,USA,en,WNRZ656,,Dover (DE),39.15,-75.516667,,0.01,,6181,291,139,,,,,,20010261,,, +530,USA,en,WNVP741,,Ellicott City (MD),39.302056,-76.82525,,0.01,,6252,292,139,,,,,,20010382,,, +530,USA,en,WNVP742,,Baltimore (MD),39.497056,-76.668306,,0.01,,6228,292,139,,,,,,20010369,,, +530,USA,en,WNVY509,,Bradshaw (MD),39.427056,-76.388861,,0.01,,6215,292,139,,,,,,20010375,,, +530,USA,en,WPDX548,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010362,,, +530,USA,en,WPEA856,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010360,,, +530,USA,en,WPEP712,,Elkton (MD),39.638722,-75.804944,,0.01,,6163,292,139,,,,,,20010358,,, +530,USA,en,WPEW742,,Reisterstown (MD),39.473722,-76.840528,,0.01,,6240,293,139,,,,,,20010356,,, +530,USA,en,WPHG707,,Oxon Hill (MD),38.961022,-75.427889,,0.01,,6190,291,139,,,,,,20010061,,, +530,USA,en,WPUN696,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010216,,, +530,USA,en,WPUN745,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010214,,, +530,USA,en,WPUN745,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010215,,, +530,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010133,,, +530,USA,en,WQHB708,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010147,,, +530,USA,en,WQIN410,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010140,,, +530,USA,en,WQIN410,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010141,,, +530,USA,en,KNIC273,,Rockville (MD),39.077656,-77.164972,,0.01,,6291,292,140,,,,,,20010284,,, +530,USA,en,WNAL785,,Baltimore (MD),38.960986,-77.493889,,0.01,,6321,293,140,,,,,,20010296,,, +530,USA,en,WNQA284,,Cumberland (MD),39.65675,-78.748083,,0.01,,6346,294,140,,,,,,20010229,,, +530,USA,en,WNQA287,,Myersville (MD),39.5,-77.566667,,0.01,,6284,293,140,,,,,,20010226,,, +530,USA,en,WNQA289,,Queenstown (MD),38.95,-76.966667,,0.01,,6288,292,140,,,,,,20010224,,, +530,USA,en,WNQI569,,Berwyn (MD),39.061778,-76.92025,,0.01,,6277,292,140,,,,,,20010258,,, +530,USA,en,WNRZ820,,Dargan (MD),39.375667,-77.723889,,0.01,,6304,293,140,,,,,,20010245,,, +530,USA,en,WNRZ820,,Downsville (MD),39.55,-77.8,,0.01,,6295,293,140,,,,,,20010260,,, +530,USA,en,WNRZ820,,Four Locks (MD),39.110389,-77.194361,,0.01,,6290,292,140,,,,,,20010259,,, +530,USA,en,WNSL337,,Hancock (MD),39.7,-78.183333,,0.01,,6308,294,140,,,,,,20010254,,, +530,USA,en,WNSL338,,Williamsport (MD),39.410944,-77.543611,,0.01,,6290,293,140,,,,,,20010253,,, +530,USA,en,WNVY506,,Dorsey (MD),39.195944,-76.764417,,0.01,,6257,292,140,,,,,,20010378,,, +530,USA,en,WNVY507,,Rockville (MD),39.016222,-77.118861,,0.01,,6293,292,140,,,,,,20010377,,, +530,USA,en,WNVY508,,Largo (MD),38.917889,-76.852472,,0.01,,6283,292,140,,,,,,20010400,,, +530,USA,en,WNVY510,,Frederick (MD),39.405389,-77.433583,,0.01,,6283,293,140,,,,,,20010381,,, +530,USA,en,WNXE972,,Gillespie Gap (NC),39.294322,-77.211028,,0.01,,6277,293,140,,,,,,20010393,,, +530,USA,en,WPED444,,Cambridge (MD),38.554278,-75.994389,,0.01,,6256,291,140,,,,,,20010359,,, +530,USA,en,WPEZ462,,Washington/Nat. Airport (DC),38.856222,-77.046083,,0.01,,6300,292,140,,,,,,20010350,,, +530,USA,en,WPGS990,,Bowie (MD),38.960389,-76.689694,,0.01,,6270,292,140,,,,,,20010071,,, +530,USA,en,WPHZ553,,Thurmont (MD),39.652611,-77.406667,,0.01,,6263,293,140,,,,,,20010105,,, +530,USA,en,WPMN714,,Marysville (MI),42.916667,-82.483333,,0.01,,6327,299,140,,,,,,20010042,,, +530,USA,en,WPQE998,,Dulles/Int. Aiport (VA),38.962889,-77.440278,,0.01,,6317,293,140,,,,,,20010186,,, +530,USA,en,WPSG988,,Youngstown (OH),41.1,-80.65,,0.01,,6354,296,140,,,,,,20010179,,, +530,USA,en,KNJR837,,Norfolk (VA),36.83875,-76.287722,,0.01,,6406,290,141,,,,,,20010270,,, +530,USA,en,KNJR838,,Chesapeake (VA),36.736806,-76.241333,,0.01,,6411,290,141,,,,,,20010282,,, +530,USA,en,KNJR839,,Hampton (VA),37.040417,-76.393833,,0.01,,6397,290,141,,,,,,20010294,,, +530,USA,en,KNJR840,,Virginia Beach (VA),36.810972,-76.218,,0.01,,6404,290,141,,,,,,20010280,,, +530,USA,en,WNQM849,,Canton/2141 George Halas Dr (OH),40.8,-81.383333,,0.01,,6422,297,141,,,,,,20010233,,, +530,USA,en,WNZZ263,,Virginia Beach (VA),36.847917,-75.986583,,0.01,,6386,290,141,,,,,,20010336,,, +530,USA,en,WPBM597,,New Market (VA),38.664,-78.669194,,0.01,,6417,293,141,,,,,,20010326,,, +530,USA,en,WPDF247,,Richmond (VA),37.55,-77.466667,,0.01,,6427,291,141,,,,,,20010365,,, +530,USA,en,WPGG905,,Keysers Ridge (MD),39.683417,-79.24975,,0.01,,6376,294,141,,,,,,20010079,,, +530,USA,en,WPHF941,,Gloucester Point (VA),37.394861,-76.522167,,0.01,,6378,291,141,,,,,,20010064,,, +530,USA,en,WPHF945,,Yorktown (VA),37.190972,-76.488833,,0.01,,6392,290,141,,,,,,20010063,,, +530,USA,en,WPHH450,,Big Rapids (MI),43.7,-85.483333,,0.01,,6444,302,141,,,,,,20010097,,, +530,USA,en,WPLX293,,Richmond (VA),37.55,-77.466667,,0.01,,6427,291,141,,,,,,20010007,,, +530,USA,en,WPSG988,,Akron (OH),41.083333,-81.516667,,0.01,,6408,297,141,,,,,,20010166,,, +530,USA,en,WPTJ992,,Solon (OH),41.383333,-81.433333,,0.01,,6380,297,141,,,,,,20010171,,, +530,USA,en,WQEL633,,Duck (NC),36.1943,-75.760975,,0.01,,6422,289,141,,,,,,20010158,,, +530,USA,en,WNMQ279,,Holland (MI),42.783333,-86.116667,,0.01,,6552,301,142,,,,,,20010308,,, +530,USA,en,WPPD478,,Marinette (WI),45.1,-87.633333,,0.01,,6460,304,142,,,,,,20010032,,, +530,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20010115,,, +530,USA,en,WQCJ503,,Lansing/312 N.Cedar Street (MI),42.743531,-84.546389,,0.01,,6463,300,142,,,,,,20010163,,, +530,USA,en,KZV876,,Oshkosh (WI),44.016667,-88.55,,0.01,,6596,304,143,,,,,,20010315,,, +530,USA,en,WNQD828,,Superior (WI),46.716667,-92.1,,0.01,,6582,308,143,,,,,,20010222,,, +530,USA,en,WPAM594,,Oshtemo (MI),42.266667,-85.683333,,0.01,,6567,300,143,,,,,,20010320,,, +530,USA,en,WPGU595,,Hilliard/3800 Municipal Way (OH),40.033333,-83.15,,0.01,,6589,297,143,,,,,,20010056,,, +530,USA,en,WPGU846,,Greenville (NC),35.6,-77.366667,,0.01,,6572,290,143,,,,,,20010082,,, +530,USA,en,WPMN477,,Auburn (IN),41.366667,-85.066667,,0.01,,6600,299,143,,,,,,20010003,,, +530,USA,en,WPMN477,,Fort Wayne (IN),41.133333,-85.133333,,0.01,,6622,299,143,,,,,,20010040,,, +530,USA,en,WPNY205,,Fremont (IN),41.733333,-84.916667,,0.01,,6563,300,143,,,,,,20010048,,, +530,USA,en,WQFG868,,New Bern (NC),35.116667,-77.05,,0.01,,6589,289,143,,,,,,20010157,,, +530,USA,en,WNIE334,,Chicago (IL),41.830556,-87.705833,,0.01,,6719,301,144,,,,,,20010303,,, +530,USA,en,WNIE334,,Chicago (IL),41.840833,-87.6625,,0.01,,6716,301,144,,,,,,20010304,,, +530,USA,en,WNPP716,,Poynette (WI),43.383333,-89.4,,0.01,,6695,304,144,,,,,,20010236,,, +530,USA,en,WNPT254,,Woodridge (IL),41.75,-88.05,,0.01,,6746,301,144,,,,,,20010244,,, +530,USA,en,WNQD828,,Hurley (WI),41.793083,-87.760969,,0.01,,6726,301,144,,,,,,20010256,,, +530,USA,en,WNRW907,,Mauston (WI),43.84775,-90.101528,,0.01,,6698,304,144,,,,,,20010262,,, +530,USA,en,WNZG592,,Madison (WI),43.066667,-89.4,,0.01,,6720,303,144,,,,,,20010338,,, +530,USA,en,WNZG592,,Madison (WI),43.066667,-89.4,,0.01,,6720,303,144,,,,,,20010367,,, +530,USA,en,WPCC899,,Michigan City (IN),41.769725,-86.769725,,0.01,,6669,301,144,,,,,,20010332,,, +530,USA,en,WPCM815,,Merrillville (IN),41.469236,-87.324472,,0.01,,6726,301,144,,,,,,20010366,,, +530,USA,en,WPDJ629,,Chesterton (IN),41.616667,-87.066667,,0.01,,6699,301,144,,,,,,20010363,,, +530,USA,en,WPGS214,,Cincinnati (OH),39.166667,-84.45,,0.01,,6736,297,144,,,,,,20010073,,, +530,USA,en,WPGU847,,Wrightsville Beach (NC),34.216667,-77.8,,0.01,,6708,289,144,,,,,,20010067,,, +530,USA,en,WPHF976,,Hammond (IN),41.583333,-87.5,,0.01,,6727,301,144,,,,,,20010062,,, +530,USA,en,WPKW672,,Greensboro (IN),39.8445,-85.542472,,0.01,,6748,298,144,,,,,,20010021,,, +530,USA,en,WPMN477,,Markle (IN),40.833333,-85.333333,,0.01,,6658,299,144,,,,,,20010002,,, +530,USA,en,WPNT302,,Centerville (IN),39.816667,-85,,0.01,,6718,298,144,,,,,,20010051,,, +530,USA,en,WPNY208,,Hillsboro (IN),39.966667,-85.333333,,0.01,,6726,298,144,,,,,,20010047,,, +530,USA,en,WPNY208,,Indianapolis (IN),41.793083,-87.760969,,0.01,,6726,301,144,,,,,,20010045,,, +530,USA,en,WPPC695,,Demotte (IN),41.2,-87.2,,0.01,,6740,300,144,,,,,,20010035,,, +530,USA,en,WQHC969,,Carol Stream (IL),41.909667,-88.144361,,0.01,,6739,302,144,,,,,,20010146,,, +530,FLK,en,Falkland Islands R Service,,Port Stanley (efl),-51.698056,-57.841111,,15,,13010,219,145,,,,,,52403,,, +530,USA,en,WNNV615,,Charlotte (NC),35.20375,-80.92925,,0.01,,6831,292,145,,,,,,20010242,,, +530,USA,en,WNPD487,,Kieler (WI),42.583333,-90.6,,0.01,,6826,304,145,,,,,,20010239,,, +530,USA,en,WNPD487,,Prairie du Chien (WI),43.05,-91.133333,,0.01,,6819,304,145,,,,,,20010240,,, +530,USA,en,WNPM473,,Frankfort/Coffee Tree Road (KY),38.2,-84.866667,,0.01,,6838,297,145,,,,,,20010237,,, +530,USA,en,WNPT254,,Joliet (IL),41.533333,-88.083333,,0.01,,6765,301,145,,,,,,20010232,,, +530,USA,en,WNPT254,,Morris (IL),41.388889,-88.423611,,0.01,,6796,301,145,,,,,,20010221,,, +530,USA,en,WNPT254,,Utica (IL),41.35,-88.983333,,0.01,,6832,302,145,,,,,,20010234,,, +530,USA,en,WNWM881,,West Fargo (ND),46.866667,-96.9,,0.01,,6823,311,145,,,,,,20010373,,, +530,USA,en,WNXE972,,Ingalls (NC),35.966667,-82.016667,,0.01,,6839,293,145,,,,,,20010401,,, +530,USA,en,WNXE972,,Spruce Pine (NC),35.914556,-82.069556,,0.01,,6846,293,145,,,,,,20010399,,, +530,USA,en,WNZM463,,Saint Paul (MN),44.982472,-93.262167,,0.01,,6782,307,145,,,,,,20010376,,, +530,USA,en,WPAL378,,Monticello (MN),45.259972,-93.700528,,0.01,,6784,308,145,,,,,,20010333,,, +530,USA,en,WPBX286,,Saint Paul (MN),44.95,-93.1,,0.01,,6776,307,145,,,,,,20010323,,, +530,USA,en,WPFZ722,,Lexington (KY),37.983333,-84.483333,,0.01,,6831,296,145,,,,2,,20010013,,, +530,USA,en,WPGS214,,Erlanger (OH),39.016667,-84.6,,0.01,,6757,297,145,,,,,,20010072,,, +530,USA,en,WPJQ653,,Dixon (IL),41.833333,-89.483333,,0.01,,6822,302,145,,,,,,20010089,,, +530,USA,en,WPKJ778,,Kingsport/613 Industry Dr. (TN),36.55,-82.566667,,0.01,,6827,294,145,,,,,,20010068,,, +530,USA,en,WPKW675,,Indianapolis (IN),39.766667,-86.15,,0.01,,6791,299,145,,,,,,20010020,,, +530,USA,en,WPLR621,,Columbus (IN),39.2,-85.916667,,0.01,,6822,298,145,,,,,,20010027,,, +530,USA,en,WPML861,,Sandwich (IL),41.666667,-88.633333,,0.01,,6786,302,145,,,,,,20010004,,, +530,USA,en,WPNQ974,,Dayton (IN),40.366667,-86.766667,,0.01,,6780,300,145,,,,,,20010052,,, +530,USA,en,WPNT302,,Shelbyville (IN),39.516667,-85.783333,,0.01,,6789,298,145,,,,,,20010050,,, +530,USA,en,WPNY208,,Clayton (IN),39.683333,-86.516667,,0.01,,6819,299,145,,,,,,20010044,,, +530,USA,en,WPNY208,,Cloverdale (IN),39.516667,-86.8,,0.01,,6850,299,145,,,,,,20010043,,, +530,USA,en,WPNY208,,Jamestown (IN),39.933333,-86.633333,,0.01,,6806,299,145,,,,,,20010046,,, +530,USA,en,WPPC694,,Wolcott (IN),40.75,-87.05,,0.01,,6766,300,145,,,,,,20010036,,, +530,USA,en,WPPD729,,Hudson (WI),44.966667,-92.75,,0.01,,6756,307,145,,,,,,20010031,,, +530,USA,en,WPPU365,,Manteno (IL),41.25,-87.833333,,0.01,,6773,301,145,,,,,,20010029,,, +530,USA,en,WPTZ502,,Noblesville (IN),39.991472,-85.922667,,0.01,,6759,299,145,,,,,,20010167,,, +530,USA,en,WPTZ502,,Whitestown (IN),39.985472,-86.393944,,0.01,,6788,299,145,,,,,,20010205,,, +530,USA,en,WNPQ955,,Louisville (KY),38.207306,-85.748028,,0.01,,6891,297,146,,,,,,20010235,,, +530,USA,en,WPAX200,,Beaumont (TX),43.133583,-93.361008,,0.01,,6937,306,146,,,,,,20010329,,, +530,USA,en,WPCC677,,Elizabethtown (KY),37.71,-85.826944,,0.01,,6935,297,146,,,,,,20010357,,, +530,USA,en,WPFZ730,,East Peoria (IL),40.666667,-89.583333,,0.01,,6922,302,146,,,,,,20010081,,, +530,USA,en,WPIV306,,Asheville (NC),35.6,-82.55,,0.01,,6901,293,146,,,,,,20010083,,, +530,USA,en,WPKM208,,Columbus (NC),35.25,-82.2,,0.01,,6907,293,146,,,,,,20010023,,, +530,USA,en,WPNY208,,West Terre Haute (IN),39.466667,-87.45,,0.01,,6892,299,146,,,,,,20010028,,, +530,USA,en,WPPG236,,Henry (IL),41.116667,-89.35,,0.01,,6872,302,146,,,,,,20010030,,, +530,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010084,,, +530,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010189,,, +530,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010190,,, +530,USA,en,WQEL352,,Arcola (IL),39.6825,-88.2875,,0.01,,6925,300,146,,,,,,20010160,,, +530,USA,en,WQFX538,,Ashville (NC),35.555,-82.609333,,0.01,,6909,293,146,,,,,,20010151,,, +530,USA,en,WQFX538,,Columbus (NC),35.244319,-82.210189,,0.01,,6908,293,146,,,,,,20010165,,, +530,ARG,es,R de las Madres,,San Justo (ba),-34.666667,-58.55,,3,,11520,230,147,,,,,,47111,,, +530,USA,en,WNKW629,,Charleston (SC),32.783333,-79.933333,,0.01,,6960,289,147,,,,,,20010300,,, +530,USA,en,WPMP251,,Evansville (IN),37.966667,-87.55,,0.01,,7019,298,147,,,,,,20010015,,, +530,USA,en,WPUS402,,Bismarck/Devils Lake (ND),46.8,-100.783333,,0.01,,7026,313,147,,,,,,20010212,,, +530,USA,en,WPVB565,,Beaufort (SC),32.433333,-80.666667,,0.01,,7036,289,147,,,,,,20010204,,, +530,USA,en,WPZW904,,Sylva (NC),35.366667,-83.233333,,0.01,,6963,293,147,,,,,,20010117,,, +530,USA,en,WPJJ548,,Dupo (IL),38.516667,-90.216667,,0.01,,7133,300,148,,,,,,20010091,,, +530,USA,en,WPJJ548,,Pontoon Beach (IL),38.733333,-90.083333,,0.01,,7108,300,148,,,,,,20010092,,, +530,USA,en,WPQX600,,Watkinsville (GA),33.866667,-83.416667,,0.01,,7095,292,148,,,,,,20010184,,, +530,USA,en,WPUV594,,Alpharetta/2970 Webb Bridge Road (GA),34.077647,-84.310983,,0.01,,7135,293,148,,,,,,20010211,,, +530,USA,en,WQBJ215,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20010114,,, +530,USA,en,WXB219,,Stone Mountain (GA),33.814,-84.142694,,0.01,,7146,293,148,,,,,,20010139,,, +530,USA,en,WPQB293,,Brunswick/157 Public Safety Blvd (GA),31.15,-81.483333,,0.01,,7193,289,149,,,,,,20010187,,, +530,USA,en,WPWK972,,Atlanta (GA),33.75,-84.383333,,0.01,,7166,293,149,,,,,,20010132,,, +530,USA,en,WQII416,,Guntersville (AL),34.35,-86.3,,0.01,,7237,295,149,,,,,,20010143,,, +530,ALS,en,WPTR456,,Whittier (AK),60.776917,-148.693167,,0.01,,7269,347,150,,,,,,20012314,,, +530,USA,en,WNMY250,,Lake City (FL),30.183333,-82.633333,,0.01,,7346,289,150,,,,,,20010271,,, +530,USA,en,WPGR772,,Jacksonville (FL),30.333333,-81.65,,0.01,,7271,288,150,,,,,,20010074,,, +530,USA,en,WPOX587,,Jackson (TN),35.616667,-88.816667,,0.01,,7287,297,150,,,,,,20010038,,, +530,USA,en,WPUQ404,,Hoover (AL),33.4,-86.816667,,0.01,,7347,294,150,,,,,,20010213,,, +530,USA,en,WQIM209,,Alexander City (AL),32.95,-85.95,,0.01,,7330,293,150,,,,,,20010142,,, +530,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010243,,, +530,USA,en,WPBR674,,Tallahassee/Stadium Drive (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010324,,, +530,USA,en,WPGF910,,Grand Island (NE),40.933333,-98.35,,0.01,,7394,307,151,,,,,,20010080,,, +530,USA,en,WPZH604,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20010119,,, +530,USA,en,WPZS817,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010118,,, +530,USA,en,WNXC873,,Gillette (WY),44.283333,-105.5,,0.01,,7476,314,152,,,,,,20010403,,, +530,USA,en,WPAC338,,Florida City (FL),27.994292,-82.026194,,0.01,,7488,287,152,,,,,,20010335,,, +530,USA,en,WPGU770,,Crow Agency (MT),45.6,-107.466667,,0.01,,7456,316,152,,,,,,20010069,,, +530,USA,en,WPSR307,,Eureka (MT),48.883333,-115.05,,0.01,,7498,323,152,,,,,,20010175,,, +530,USA,en,WQFV245,,Joplin (MO),37.078333,-94.178333,,0.01,,7484,302,152,,,,,,20010155,,, +530,USA,en,WNNV876,,Ogallala/200 Stagecoach Trail (NE),41.133333,-101.716667,,0.01,,7557,309,153,,,,,,20010241,,, +530,USA,en,WNYA375,,Saint Regis (MT),47.3,-115.1,,0.01,,7646,322,153,,,,,,20010396,,, +530,USA,en,WPEY666,,Bozeman (MT),45.683333,-111.033333,,0.01,,7614,318,153,,,,,,20010353,,, +530,USA,en,WPEY666,,Butte (MT),45.961306,-112.474194,,0.01,,7654,319,153,,,,,,20010368,,, +530,USA,en,WPEY666,,Livingston (MT),45.666667,-110.566667,,0.01,,7594,318,153,,,,,,20010354,,, +530,USA,en,WPEY666,,Whitehall (MT),45.866667,-112.1,,0.01,,7646,319,153,,,,,,20010352,,, +530,USA,en,WPHN567,,Laclede (ID),48.166667,-116.75,,0.01,,7634,323,153,,,,,,20010107,,, +530,USA,en,WPSR809,,Troy (MT),48.466667,-115.883333,,0.01,,7571,323,153,,,,,,20010174,,, +530,USA,en,WPUA224,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010180,,, +530,USA,en,WPUW403,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010209,,, +530,USA,en,WPUY239,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010208,,, +530,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010193,,, +530,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010206,,, +530,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010220,,, +530,USA,en,WPXZ439,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010120,,, +530,USA,en,WQAL914,,Helena (MT),46.6,-112.033333,,0.01,,7576,319,153,,,,,,20010116,,, +530,USA,en,WQBU260,,Julesburg (CO),40.977636,-102.246194,,0.01,,7598,310,153,,,,,,20010150,,, +530,USA,en,WQFU757,,Libby/952 East Spruce St (MT),48.393506,-115.542778,,0.01,,7563,323,153,,,,,,20010156,,, +530,USA,en,WNHV296,,Los Angeles/Century Blvd (CA),33.945278,-118.379528,,0.1,,9048,316,154,,,,,,20010305,,, +530,USA,en,WPLP689,,Cheyenne (WY),41.133333,-104.816667,,0.01,,7718,311,154,,,,,,20010014,,, +530,USA,en,WPMF438,,Twisp (WA),48.366667,-120.116667,,0.01,,7750,325,154,,,,,,20010005,,, +530,USA,en,WPNZ308,,Spokane (WA),47.666667,-117.433333,,0.01,,7709,323,154,,,,,,20010055,,, +530,USA,en,WPQZ500,,Cheyenne (WY),41.133333,-104.816667,,0.01,,7718,311,154,,,,,,20010183,,, +530,USA,en,WQBJ353,,Liberty Lake (WA),47.677653,-117.110639,,0.01,,7694,323,154,,,,,,20010113,,, +530,USA,en,KNNU861,,Peshastin (WA),47.558167,-120.589528,,0.01,,7845,325,155,,,,,,20010317,,, +530,USA,en,WNKX209,,Kenner (LA),30,-90.25,,0.01,,7845,294,155,,,,,,20010299,,, +530,USA,en,WNSV510,,Aurora (CO),39.733333,-104.833333,,0.01,,7842,311,155,,,,,,20010247,,, +530,USA,en,WNSV510,,Aurora (CO),39.733333,-104.833333,,0.01,,7842,311,155,,,,,,20010250,,, +530,USA,en,WNSV510,,Brighton (CO),39.983333,-104.816667,,0.01,,7819,311,155,,,,,,20010249,,, +530,USA,en,WNSV510,,Broomfield (CO),39.916667,-105.066667,,0.01,,7838,311,155,,,,,,20010248,,, +530,USA,en,WNSV510,,Thornton (CO),39.866667,-104.966667,,0.01,,7838,311,155,,,,,,20010246,,, +530,USA,en,WNVQ844,,Moses Lake (WA),47.103056,-119.279167,,0.01,,7836,324,155,,,,,,20010380,,, +530,USA,en,WNWU499,,Oklahoma City (OK),35.466667,-97.516667,,0.01,,7814,303,155,,,,,,20010372,,, +530,USA,en,WPCB931,,Loveland (CO),40.4,-105.066667,,0.01,,7796,311,155,,,,,,20010355,,, +530,USA,en,WPDF598,,Denver (CO),39.733333,-104.983333,,0.01,,7850,311,155,,,,,,20010364,,, +530,USA,en,WPEZ424,,Friday Harbor/State Ferry Terminal (WA),48.533333,-123.016667,,0.01,,7844,327,155,,,,,,20010351,,, +530,USA,en,WPFP950,,Denver (CO),39.733333,-104.983333,,0.01,,7850,311,155,,,,,,20010314,,, +530,USA,en,WPHZ556,,Lynden (WA),48.95,-122.45,,0.01,,7783,327,155,,,,,,20010104,,, +530,USA,en,WPIG302,,Estes Park (CO),40.383333,-105.516667,,0.01,,7820,311,155,,,,,,20010103,,, +530,USA,en,WPIW323,,Roberts (ID),43.716667,-112.133333,,0.01,,7843,318,155,,,,,,20010096,,, +530,USA,en,WPLX284,,Denver (CO),39.733333,-104.983333,,0.01,,7850,311,155,,,,,,20010008,,, +530,USA,en,WPMF432,,Pateros (WA),48.054861,-119.8995,,0.01,,7771,325,155,,,,,,20010006,,, +530,USA,en,WPPZ800,,Fort Collins/505 Peterson St. (CO),40.583333,-105.083333,,0.01,,7780,311,155,,,,,,20010188,,, +530,USA,en,WPTZ990,,Oklahoma City (OK),35.521389,-97.477556,,0.01,,7807,303,155,,,,,,20010207,,, +530,USA,en,WPUJ624,,Mead (CO),40.233333,-105,,0.01,,7807,311,155,,,,,,20010218,,, +530,USA,en,WPVW624,,Anacortes (WA),48.462139,-122.577669,,0.01,,7835,327,155,,,,,,20010178,,, +530,USA,en,WPXP711,,Ritzville (WA),47.111528,-118.414417,,0.01,,7800,324,155,,,,,,20010122,,, +530,USA,en,WQHL398,,Wenatchee (WA),47.416667,-120.316667,,0.01,,7848,325,155,,,,,,20010144,,, +530,USA,en,KNCL518,,Tukwila (WA),47.466667,-122.266667,,0.01,,7918,326,156,,,,,,20010291,,, +530,USA,en,KNEZ390,,Bellevue (WA),47.616667,-122.2,,0.01,,7901,326,156,,,,,,20010288,,, +530,USA,en,KNEZ390,,Seattle (WA),47.6,-122.333333,,0.01,,7908,326,156,,,,,,20010285,,, +530,USA,en,KNEZ390,,Seattle (WA),47.6,-122.333333,,0.01,,7908,326,156,,,,,,20010286,,, +530,USA,en,KNEZ390,,Seattle (WA),47.6,-122.333333,,0.01,,7908,326,156,,,,,,20010287,,, +530,USA,en,KNNN871,,Vail/Booth Falls (CO),39.633333,-106.366667,,0.01,,7930,311,156,,,,,,20010281,,, +530,USA,en,KNNN871,,Vail/Potato Patch (CO),39.633333,-106.366667,,0.01,,7930,311,156,,,,,,20010283,,, +530,USA,en,WNFN793,,Edwards (CO),39.65,-106.6,,0.01,,7941,312,156,,,,,,20010311,,, +530,USA,en,WNHC789,,Lynnwood (WA),47.830639,-122.262917,,0.01,,7883,326,156,,,,,,20010295,,, +530,USA,en,WNLB703,,Breckenridge (CO),39.483333,-106.033333,,0.01,,7927,311,156,,,,,,20010298,,, +530,USA,en,WNRI857,,Vashon (WA),47.45,-122.466667,,0.01,,7927,326,156,,,,,,20010267,,, +530,USA,en,WNSV510,,Golden (CO),39.75,-105.216667,,0.01,,7861,311,156,,,,,,20010231,,, +530,USA,en,WPAN862,,Cascade (ID),44.516667,-116.05,,0.01,,7944,321,156,,,,,,20010331,,, +530,USA,en,WPBN521,,Black Hawk (CO),39.8,-105.5,,0.01,,7871,311,156,,,,,,20010325,,, +530,USA,en,WPDY708,,Newport (WA),47.566667,-122.183333,,0.01,,7906,326,156,,,,,,20010361,,, +530,USA,en,WPIW323,,Idaho Falls (ID),43.466667,-112.033333,,0.01,,7861,317,156,,,,,,20010110,,, +530,USA,en,WPJR991,,Bakerville (CO),39.683333,-105.8,,0.01,,7897,311,156,,,,,,20010087,,, +530,USA,en,WPJR991,,Dillon (CO),39.633333,-106.05,,0.01,,7914,311,156,,,,,,20010085,,, +530,USA,en,WPJR991,,Dumont (CO),39.766667,-105.6,,0.01,,7879,311,156,,,,,,20010088,,, +530,USA,en,WPJR991,,Frisco (CO),39.566667,-106.1,,0.01,,7923,311,156,,,,,,20010086,,, +530,USA,en,WPJR991,,Winter Park (CO),39.883333,-105.766667,,0.01,,7877,311,156,,,,,,20010054,,, +530,USA,en,WPJT288,,Baton Rouge (LA),30.45,-91.15,,0.01,,7863,295,156,,,,,,20010109,,, +530,USA,en,WPKW677,,Federal Way (WA),47.210181,-122.297778,,0.01,,7944,326,156,,,,,,20010019,,, +530,USA,en,WPKZ237,,Manitou Springs (CO),38.866667,-104.916667,,0.01,,7923,310,156,,,,,,20010001,,, +530,USA,en,WPLS671,,Upper Preston (WA),47.5,-121.9,,0.01,,7901,326,156,,,,,,20010011,,, +530,USA,en,WPNZ308,,Spokane (WA),47.310997,-122.576694,,0.01,,7945,326,156,,,,,,20010039,,, +530,USA,en,WPOX738,,Baton Rouge (LA),30.526306,-91.190111,,0.01,,7859,295,156,,,,,,20010037,,, +530,USA,en,WPTR238,,Shine (WA),47.866472,-122.640972,,0.01,,7894,327,156,,,,,,20010170,,, +530,USA,en,WPUL478,,Liberty (WA),47.327669,-122.312167,,0.01,,7933,326,156,,,,,,20010217,,, +530,USA,en,WPVW565,,Selah (WA),46.677361,-120.479639,,0.01,,7924,325,156,,,,,,20010194,,, +530,USA,en,WPVW567,,Ellensburg (WA),46.960967,-120.510989,,0.01,,7899,325,156,,,,,,20010164,,, +530,USA,en,WPVW628,,Bothel (WA),47.760964,-122.194344,,0.01,,7887,326,156,,,,,,20010135,,, +530,USA,en,WPXG660,,Baton Rouge (LA),30.45,-91.15,,0.01,,7863,295,156,,,,,,20010129,,, +530,USA,en,WQHF576,,Lakewood (CO),39.712444,-105.194389,,0.01,,7863,311,156,,,,,,20010145,,, +530,ALS,,ADK,b,Mount Moffett Adak Island (AK),51.854167,-176.708333,,0.025,,8451,2,157,,,,999,L1035 U1035 8.4s,85487,,, +530,USA,en,WNFN793,,Newcastle (CO),39.566667,-107.533333,,0.01,,7996,312,157,,,,,,20010310,,, +530,USA,en,WNVA814,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010389,,, +530,USA,en,WNVS403,,Pueblo (CO),38.25,-104.616667,,0.01,,7962,309,157,,,,,,20010392,,, +530,USA,en,WPET783,,Twin Falls (ID),42.566667,-114.466667,,0.01,,8055,318,157,,,,,,20010344,,, +530,USA,en,WPVW568,,Lacey (WA),47.061008,-122.810986,,0.01,,7978,326,157,,,,,,20010123,,, +530,USA,en,WPWZ972,,Lakewood (WA),47.162917,-122.481306,,0.01,,7956,326,157,,,,,,20010131,,, +530,USA,en,WPXF406,,Olympia (WA),47.042833,-122.979111,,0.01,,7986,326,157,,,,,,20010130,,, +530,USA,en,WQBJ354,,Rochester (WA),46.844294,-122.994325,,0.01,,8006,326,157,,,,,,20010112,,, +530,USA,en,WQBU866,,Baker City/3410 K Street (OR),44.79435,-117.848833,,0.01,,7995,322,157,,,,,,20010152,,, +530,USA,en,WQBV586,,Napavine (WA),46.54775,-122.877389,,0.01,,8030,326,157,,,,,,20010125,,, +530,USA,en,WNPH810,,Montrose (CO),38.461111,-107.872833,,0.01,,8112,312,158,,,,,,20010238,,, +530,USA,en,WNSQ450,,Government Camp (OR),45.3,-121.75,,0.01,,8106,325,158,,,,,,20010252,,, +530,USA,en,WNVF736,,Alta (UT),40.583333,-111.633333,,0.01,,8106,315,158,,,,,,20010387,,, +530,USA,en,WNVF736,,Alta (UT),40.583333,-111.633333,,0.01,,8106,315,158,,,,,,20010388,,, +530,USA,en,WNWU971,,Raton (NM),36.9,-104.433333,,0.01,,8072,308,158,,,,,,20010406,,, +530,USA,en,WPAF800,,Jewell (OR),45.933333,-123.5,,0.01,,8113,326,158,,,,,,20010334,,, +530,USA,en,WPBX496,,Astoria (OR),46.183333,-123.833333,,0.01,,8101,326,158,,,,,,20010322,,, +530,USA,en,WPHG710,,Portland (OR),45.516667,-122.683333,,0.01,,8122,325,158,,,,,,20010095,,, +530,USA,en,WPSH445,,Orem (UT),40.3,-111.7,,0.01,,8135,315,158,,,,,,20010192,,, +530,USA,en,WPVS690,,Ridgefield (WA),45.816056,-122.694328,,0.01,,8093,326,158,,,,,,20010200,,, +530,USA,en,WPWA752,,Syracuse (UT),41.089167,-112.194353,,0.01,,8086,316,158,,,,,,20010134,,, +530,USA,en,WPXY406,,Rainier (WA),46.098528,-122.965806,,0.01,,8077,326,158,,,,,,20010121,,, +530,USA,en,WNLV768,,Langtry (TX),29.761019,-95.094358,,0.01,,8164,297,159,,,,,,20010297,,, +530,USA,en,WNLZ915,,Houston (TX),29.766667,-95.366667,,0.01,,8180,298,159,,,,,,20010268,,, +530,USA,en,WNVI202,,Deer Park/1410 Center St (TX),29.703556,-95.158556,,0.01,,8172,297,159,,,,,,20010384,,, +530,USA,en,WNWU971,,Cuervo (NM),35.033333,-104.416667,,0.01,,8238,307,159,,,,,,20010413,,, +530,USA,en,WNWU971,,Pojoaque (NM),35.9,-106.016667,,0.01,,8246,309,159,,,,,,20010412,,, +530,USA,en,WNWU971,,Portales (NM),34.183333,-103.333333,,0.01,,8254,306,159,,,,,,20010410,,, +530,USA,en,WNWU971,,San Juan (NM),36.05,-106.066667,,0.01,,8235,309,159,,,,,,20010411,,, +530,USA,en,WNWU971,,Taos (NM),36.4,-105.566667,,0.01,,8177,309,159,,,,,,20010409,,, +530,USA,en,WPIW517,,Texas City (TX),29.383333,-94.9,,0.01,,8184,297,159,,,,,,20010094,,, +530,USA,en,WPTI700,,Caldwell (TX),30.533333,-96.7,,0.01,,8193,299,159,,,,,,20010172,,, +530,USA,en,WPXK767,,Wells (NV),41.112361,-114.977644,,0.01,,8213,318,159,,,,,,20010111,,, +530,USA,en,WQEK910,,Camp Sherman (OR),44.416389,-121.754722,,0.01,,8191,324,159,,,,,,20010162,,, +530,USA,en,WQEL629,,Tucumcari (NM),35.149167,-103.781167,,0.01,,8193,307,159,,,,,,20010159,,, +530,USA,en,KNNN851,,Bastrop/300 Water Street (TX),30.116667,-97.316667,,0.01,,8266,299,160,,,,,,20010272,,, +530,USA,en,WNRO290,,Santa Fe (NM),35.683333,-105.933333,,0.01,,8261,309,160,,,,,,20010266,,, +530,USA,en,WNSQ948,,Walterville (OR),44.066667,-122.8,,0.01,,8266,325,160,,,,,,20010251,,, +530,USA,en,WNVF737,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010385,,, +530,USA,en,WNVF737,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010386,,, +530,USA,en,WNVN277,,Newport (OR),44.632056,-124.051222,,0.01,,8260,326,160,,,,,,20010383,,, +530,USA,en,WNWU970,,Aztec (NM),36.867222,-107.952833,,0.01,,8260,311,160,,,,,,20010407,,, +530,USA,en,WNWU970,,Bloomfield (NM),36.716667,-107.983333,,0.01,,8276,311,160,,,,,,20010408,,, +530,USA,en,WNWU970,,Kirtland (NM),36.733333,-108.366667,,0.01,,8294,311,160,,,,,,20010402,,, +530,USA,en,WNWU972,,Taiban (NM),34.433333,-104.016667,,0.01,,8269,307,160,,,,,,20010414,,, +530,USA,en,WPHZ492,,Austin/Fire Station (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010106,,, +530,USA,en,WPKL874,,Alameda (NM),35.183333,-106.616667,,0.01,,8342,309,160,,,,,,20010316,,, +530,USA,en,WPKL874,,Albuquerque (NM),35.083333,-106.65,,0.01,,8353,309,160,,,,,,20010024,,, +530,USA,en,WPKL874,,Albuquerque (NM),35.083333,-106.65,,0.01,,8353,309,160,,,,,,20010025,,, +530,USA,en,WPTI468,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010173,,, +530,USA,en,WPVW333,,Alameda (NM),35.173611,-106.582222,,0.01,,8342,309,160,,,,,,20010197,,, +530,USA,en,WPVW333,,Albuquerque (NM),35.06,-106.643522,,0.01,,8355,309,160,,,,,,20010196,,, +530,USA,en,WPVW333,,Albuquerque (NM),35.093556,-106.539167,,0.01,,8346,309,160,,,,,,20010198,,, +530,USA,en,WPVW333,,Albuquerque (NM),35.127647,-106.627647,,0.01,,8348,309,160,,,,,,20010195,,, +530,USA,en,WPXK223,,Battle Mountain (NV),40.626722,-116.927675,,0.01,,8347,319,160,,,,,,20010128,,, +530,USA,en,WPXK767,,Winnemucca (NV),40.994294,-117.744347,,0.01,,8349,320,160,,,,,,20010137,,, +530,USA,en,KNNJ348,,Odessa (TX),31.85,-102.366667,,0.01,,8407,304,161,,,,,,20010273,,, +530,USA,en,WNKS900,,Port Aransas/613 W Cotter St. (TX),27.833333,-97.066667,,0.01,,8451,298,161,,,,,,20010301,,, +530,USA,en,WNWU970,,Grants (NM),35.15,-107.85,,0.01,,8411,310,161,,,,,,20010370,,, +530,USA,en,WNWU970,,La Mesita Negra (NM),35.029444,-106.948333,,0.01,,8374,309,161,,,,,,20010371,,, +530,USA,en,WNWU970,,Wingate (NM),35.516667,-108.55,,0.01,,8414,310,161,,,,,,20010379,,, +530,USA,en,WNWU972,,Roswell (NM),33.4,-104.516667,,0.01,,8389,306,161,,,,,,20010405,,, +530,USA,en,WPKL874,,Atrisco Grant (NM),35.1,-106.75,,0.01,,8357,309,161,,,,,,20010026,,, +530,USA,en,WPVW333,,Atrisco Grant (NM),35.093539,-106.745,,0.01,,8357,309,161,,,,,,20010199,,, +530,USA,en,WPXK767,,Mill City (NV),40.677139,-118.077681,,0.01,,8393,320,161,,,,,,20010124,,, +530,USA,en,WPFM427,,Carson City (NV),39.166667,-119.766667,,0.01,,8612,320,162,,,,,,20010349,,, +530,USA,en,WPJK465,,Gold Beach/29821 Colvin St. (OR),42.4,-124.416667,,0.01,,8492,325,162,,,,,,20010090,,, +530,USA,en,WPLX255,,Incline Village (NV),39.25,-119.966667,,0.01,,8612,320,162,,,,,,20010010,,, +530,USA,en,WPLX255,,South Lake Tahoe (NV),38.933333,-119.983333,,0.01,,8643,320,162,,,,,,20010009,,, +530,USA,en,WPMQ285,,Laredo (TX),27.5,-99.5,,0.01,,8627,299,162,,,,,,20010053,,, +530,USA,en,WPPW586,,Uvalde (TX),29.216667,-99.783333,,0.01,,8491,300,162,,,,,,20010136,,, +530,USA,en,WPPY836,,Carson City (NV),39.166667,-119.766667,,0.01,,8612,320,162,,,,,,20010219,,, +530,USA,en,WPXK223,,Fernley (NV),39.614111,-119.2335,,0.01,,8545,320,162,,,,,,20010127,,, +530,USA,en,WPXK223,,Lovelock (NV),40.194328,-118.464861,,0.01,,8456,320,162,,,,,,20010126,,, +530,USA,en,WQEL335,,Norden/58450 Donner Pass Rd (CA),39.313611,-120.339167,,0.01,,8622,321,162,,,,,,20010161,,, +530,USA,en,KNEC996,,Sacramento (CA),38.583333,-121.5,,0.01,,8743,321,163,,,,,,20010289,,, +530,USA,en,WNIG247,,Sacramento/Metropolitan Airport (CA),38.684917,-121.589972,,0.01,,8737,321,163,,,,,,20010302,,, +530,USA,en,WNPZ947,,San Jose/Int. Airport (CA),37.376889,-121.946333,,0.01,,8879,321,163,,,,9939,,51936,,, +530,USA,en,WNSA851,,Sunnyvale (CA),37.446889,-122.127694,,0.01,,8880,321,163,,,,,,20010257,,, +530,USA,en,WNSA852,,Oakland (CA),37.010994,-121.560997,,0.01,,8898,320,163,,,,,,20010269,,, +530,USA,en,WNSD328,,Brisbane (CA),36.862417,-121.579333,,0.01,,8913,320,163,,,,,,20010255,,, +530,USA,en,WNUT422,,Los Altos/10 Almond Ave (CA),37.384667,-122.113583,,0.01,,8885,321,163,,,,,,20010390,,, +530,USA,en,WNXY857,,Livermore (CA),37.737694,-121.614111,,0.01,,8830,321,163,,,,,,20010398,,, +530,USA,en,WNXY861,,Livermore (CA),37.744639,-121.602444,,0.01,,8828,321,163,,,,,,20010397,,, +530,USA,en,WNYD244,,Tehachapi (CA),35.133333,-118.45,,0.01,,8938,317,163,,,,,,20010395,,, +530,USA,en,WPFK507,,San Joaquin (CA),36.436056,-120.393778,,0.01,,8902,319,163,,,,,,20010348,,, +530,USA,en,WPFK507,,South Dos Palos (CA),36.778,-120.723528,,0.01,,8883,320,163,,,,,,20010339,,, +530,USA,en,WPGR287,,Friant (CA),36.815222,-119.749861,,0.01,,8836,319,163,,,,,,20010077,,, +530,USA,en,WPGR287,,Oakhurst (CA),38.111017,-121.294358,,0.01,,8780,321,163,,,,,,20010078,,, +530,USA,en,WPGR287,,Prather (CA),37.0455,-119.475694,,0.01,,8802,319,163,,,,,,20010076,,, +530,USA,en,WPGR291,,Bakersfield (CA),35.346639,-119.039833,,0.01,,8945,318,163,,,,,,20010075,,, +530,USA,en,WPIN400,,Chowchilla (CA),37.083278,-120.208778,,0.01,,8831,319,163,,,,,,20010098,,, +530,USA,en,WPIN400,,Earlimart (CA),35.877722,-119.270944,,0.01,,8905,318,163,,,,,,20010102,,, +530,USA,en,WPIN400,,Fresno (CA),36.689111,-119.754306,,0.01,,8849,319,163,,,,,,20010100,,, +530,USA,en,WPIN400,,Kingsburg (CA),36.452167,-119.490139,,0.01,,8859,319,163,,,,,,20010101,,, +530,USA,en,WPIN400,,Madera (CA),36.851611,-119.947389,,0.01,,8842,319,163,,,,,,20010099,,, +530,USA,en,WPJV572,,Novato/7025 Redwood Blvd (CA),38.099639,-122.566361,,0.01,,8835,322,163,,,,,,20010191,,, +530,USA,en,WPKN315,,Tehachapi (CA),35.159694,-118.645083,,0.01,,8945,317,163,,,,,,20010022,,, +530,USA,en,WPLS326,,Pharr (TX),26.2,-98.183333,,0.01,,8662,297,163,,,,,,20010012,,, +530,USA,en,WPNV219,,Roseville/Saugstead Park (CA),38.7435,-121.283278,,0.01,,8718,321,163,,,,,,20010049,,, +530,USA,en,WPPD286,,Cordes Junction (AZ),34.333333,-112.116667,,0.01,,8706,312,163,,,,,,20010033,,, +530,USA,en,WPPD286,,Tolleson (AZ),33.45,-112.266667,,0.01,,8795,312,163,,,,,,20010034,,, +530,USA,en,WPQI768,,Phoenix (AZ),33.45,-112.066667,,0.01,,8785,312,163,,,,,,20010185,,, +530,USA,en,WPTR552,,Martinez/2251 Harborview Drive (CA),38.006583,-122.126167,,0.01,,8826,321,163,,,,73,,52596,,, +530,USA,en,WPUV620,,San Mateo/1949 Pacific Blvd (CA),37.55,-122.305556,,0.01,,8878,321,163,,,,20,,20000003,,, +530,USA,en,WPVQ738,,Fresno (CA),36.761019,-119.710992,,0.01,,8840,319,163,,,,,,20010203,,, +530,USA,en,WPVQ743,,Mariposa (CA),37.493833,-119.977672,,0.01,,8781,319,163,,,,,,20010202,,, +530,USA,en,WPVQ900,,Willow Springs (CA),37.99575,-120.277675,,0.01,,8746,320,163,,,,,,20010201,,, +530,USA,en,WQBH490,,Moraga/Orinda Fire Dept. (CA),37.835556,-122.132778,,0.01,,8842,321,163,,,,267,,51937,,, +530,USA,en,WQGH873,,Jackson (CA),38.474167,-120.543572,,0.01,,8712,320,163,,,,,,20010149,,, +530,USA,en,WQGT278,,Stockton (CA),37.933333,-121.266667,,0.01,,8796,321,163,,,,,,20010148,,, +530,USA,en,KNCN250,,San Bernardino (CA),34.136389,-117.195861,,0.01,,8974,316,164,,,,,,20010290,,, +530,USA,en,KNNN867,,Descanso/Paso Picacho (CA),32.958944,-116.579472,,0.01,,9056,315,164,,,,,,20010306,,, +530,USA,en,WNCN749,,Burbank/Bob Hope Airport (CA),34.2,-118.35,,0.01,,9023,317,164,,,,,,20000025,,, +530,USA,en,WNHI810,,Simi Valley/3200 Cochran St. (CA),34.278333,-118.734806,,0.01,,9033,317,164,,,,,,20010307,,, +530,USA,en,WNHV296,,Los Angeles/LAX (CA),33.937222,-118.397028,,0.01,,9050,316,164,,,,,,20010319,,, +530,USA,en,WNRS426,,Escondido (CA),33.128361,-117.103639,,0.01,,9065,315,164,,,,,,20010265,,, +530,USA,en,WNRS427,,Vista (CA),33.186139,-117.232528,,0.01,,9066,315,164,,,,,,20010264,,, +530,USA,en,WNRS428,,Oceanside (CA),33.181139,-117.353639,,0.01,,9072,315,164,,,,,,20010263,,, +530,USA,en,WNWZ660,,Castaic/Visitors Center (CA),34.509722,-118.61925,,0.01,,9006,317,164,,,,,,20010404,,, +530,USA,en,WPHJ953,,Lancaster (CA),34.776639,-118.16925,,0.01,,8959,317,164,,,,,,20010108,,, +530,USA,en,WPHJ953,,Palmdale (CA),34.581389,-118.134806,,0.01,,8976,317,164,,,,,,20010070,,, +530,USA,en,WE2XFZ,,Flying Horse/Felix Canyon Road (NM),33.002222,-105.048333,,0.001,,8454,306,171,,,,,,20010292,,, +530,HWA,en,WPIW528,,Honolulu (HI),21.366,-157.889472,,0.01,,11704,345,173,,,,,,20012316,,, +530,USA,en,WD2XUM,,El Centro NAF (CA),32.89,-115.787222,,0.001,,9024,314,174,,,,,,20010293,,, +531,ALG,ar,Jil FM,,F'Kirina (4),35.739722,7.347778,,300,,1822,177,51,,0000-2400,1234567,7,,57,,, +531,FRO,fo,Kringvarp Froya,,Akraberg (sdr),61.4,-6.691111,,25,,1301,328,56,,0700-2310,1234567,99995,,62,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0625-0630,12345..,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0650-0700,12345..,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0800-0815,1234567,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1208-1300,12345..,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1230-1300,.....67,999,,61,,, +531,E,es,RNE Asturias,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1400-1415,12345..,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0815-1208,12345..,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0815-1230,.....67,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1300-1400,12345..,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1300-2300,.....67,999,,61,,, +531,E,es,RNE R 5,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,1415-2300,12345..,999,,61,,, +531,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0630-0650,12345..,999,,61,,, +531,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,0700-0800,12345..,999,,61,,, +531,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,2300-0625,1234..7,999,,61,,, +531,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,20,,1331,228,57,,2300-0800,....56.,999,,61,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0625-0630,12345..,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0650-0700,12345..,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0800-0815,1234567,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1208-1300,12345..,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1230-1300,.....67,999,,59,,, +531,E,es,RNE Galicia,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1400-1415,12345..,999,,59,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0625-0630,12345..,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0650-0700,12345..,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0800-0815,1234567,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1208-1300,12345..,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1230-1300,.....67,,,58,,, +531,E,es,RNE Navarra,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1400-1415,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0630-0650,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0700-0800,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0815-1208,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0815-1230,.....67,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1300-1400,12345..,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1300-2300,.....67,,,58,,, +531,E,es,RNE R 5,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,1415-2300,12345..,,,58,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0700-0800,12345..,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0815-1208,12345..,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0815-1230,.....67,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1300-1400,12345..,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1300-2300,.....67,999,,59,,, +531,E,es,RNE R 5,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,1415-2300,12345..,999,,59,,, +531,E,es,RNE R Nacional,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,2300-0625,1234..7,,,58,,, +531,E,es,RNE R Nacional,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,2300-0800,....56.,,,58,,, +531,E,es,RNE R Nacional,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0630-0650,12345..,999,,59,,, +531,E,es,RNE R Nacional,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,2300-0625,1234..7,999,,59,,, +531,E,es,RNE R Nacional,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,2300-0800,....56.,999,,59,,, +531,ROU,ro,SRR R Romnia Actualităţi,,Petroşani/Aninoasa (HD),45.375111,23.343056,,14,,1445,115,60,,0000-2400,1234567,9988,,67,,, +531,G,en,R Caroline,,Tilbury/Port (EN-ESX),51.461111,0.344444,,1,,423,263,61,,0000-2400,9999999,,,2800032,,, +531,ROU,ro,SRR Antena Satelor,,Urziceni (IL),44.709772,26.61085,,14,,1695,111,63,,0000-2400,1234567,999,,1919,,, +531,IRN,fa,IRIB R Iran,,Azarshahr (eaz),37.875778,45.837322,,500,,3425,102,64,,0000-2400,1234567,2,,63,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0625-0630,12345..,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0650-0700,12345..,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0800-0815,1234567,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1208-1300,.....67,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1208-1300,12345..,996,,60,,, +531,E,es,RNE Andaluca,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1400-1415,12345..,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0815-1208,.....67,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0815-1208,12345..,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1300-1400,12345..,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1300-2300,.....67,996,,60,,, +531,E,es,RNE R 5,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,1415-2300,12345..,996,,60,,, +531,E,es,RNE R Nacional,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0630-0650,12345..,996,,60,,, +531,E,es,RNE R Nacional,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,0700-0800,12345..,996,,60,,, +531,E,es,RNE R Nacional,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,2300-0625,1234..7,996,,60,,, +531,E,es,RNE R Nacional,,Crdoba/La Soledad (AND-CO),37.913789,-4.860706,,10,,1805,213,65,,2300-0800,....56.,996,,60,,, +531,POL,pl,Twoje R Żywiec,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,0700-0800,1234567,,,6400004,,, +531,POL,pl,Twoje R Żywiec,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,1700-1800,1234567,,,6400004,,, +531,POL,pl,Twoje R Żywiec,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,2300-2400,1234567,,,6400004,,, +531,POL,pl,Twoje R,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,0000-0700,1234567,,,6400004,,, +531,POL,pl,Twoje R,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,0800-1700,1234567,,,6400004,,, +531,POL,pl,Twoje R,,Żywiec/Komin EKOTERM (SL),49.685556,19.218056,,0.8,,936,102,67,,1800-2300,1234567,,,6400004,,, +531,POL,pl,Twoje R Włodawa,,Włodawa/miasto (LU),51.553333,23.546111,,0.8,,1176,86,70,,0700-0800,1234567,,,6400003,,, +531,POL,pl,Twoje R Włodawa,,Włodawa/miasto (LU),51.553333,23.546111,,0.8,,1176,86,70,,1700-1800,1234567,,,6400003,,, +531,POL,pl,Twoje R,,Włodawa/miasto (LU),51.553333,23.546111,,0.8,,1176,86,70,,0800-1700,1234567,,,6400003,,, +531,POL,pl,Twoje R,,Włodawa/miasto (LU),51.553333,23.546111,,0.8,,1176,86,70,,1800-0700,1234567,,,6400003,,, +531,ISR,he,IBA Reshet Aleph (A),,Tel Aviv/Yavne (tav),31.902444,34.758917,,50,,3208,123,72,,0000-2400,1234567,0,,65,,, +531,IRN,fa,IRIB R Iran/IRIB WS,,Iranshahr (sib),27.234811,60.4828,,600,,5230,100,82,,0200-1630,1234567,,,1769,,, +531,IRN,fa,IRIB R Iran/IRIB WS,,Iranshahr (sib),27.234811,60.4828,,600,,5230,100,82,,1630-2300,1234567,,,1769,,, +531,IND,,AIR North,,Jodhpur A (RJ),26.328611,72.970556,,300,,6151,91,94,,0020-1740,1234567,0,,47351,,, +531,ARS,ar,BSKSA Al-Quran al-Karim,,Bisha=Qal'at Bishah (asr),19.838394,42.622008,,10,,4757,125,95,,0000-2400,1234567,,,10600008,,, +531,BOT,,R Botswana,,Maun (nw),-20.031972,23.442556,,50,,8191,163,122,,0000-2400,1234567,,,2287,,, +531,RUS,ru,Avtor,,Yuzhno-Sakhalinsk (SL),46.962222,142.748889,,5,20,8242,29,132,,2000-1300,1234567,,,47011,,, +531,CHN,,Zhejiang zhi Sheng,,Jinhua (ZJ),29.1075,119.586944,,10,133,8902,55,133,,2130-1605,1234567,,,47350,,, +531,J,,JOQG NHK R 1,,Morioka (toh-iwa),39.629167,141.135,,10,,8916,34,133,,0000-2400,1234567,1,,47353,,, +531,THA,,Sor. Wor. Thor. (R Thailand),,Mahasarakham (msk),16.140278,103.251944,,10,,9054,75,134,,2200-1600,1234567,,,47363,,, +531,TWN,,BCC Hakka Channel,,New Taipei City/Panchiao (TP),25.006867,121.465544,,10,,9383,56,135,,2000-1800,1234567,,,48145,,, +531,TWN,,BCC Hakka Channel,,New Taipei City/Panchiao (TP),25.006867,121.465544,,10,,9383,56,135,,2000-2200,1234567,,,48145,,, +531,PHL,,DYDW-AM Radyo Diwa,,Tacloban City (lyt),11.2125,125.011944,,10,,10870,60,140,,????-1500,1234567,,,47361,,, +531,PHL,tl,DZBR-AM Radyo Balisong,,Batangas City/Capitol Hills (btg),13.765278,121.065278,,5,,10397,62,141,,,,,,47358,,, +531,CHN,,Zhejiang zhi Sheng,,Kaihua/Huanbiwu (ZJ),29.141667,118.372222,,1,,8831,55,143,,,,,,36200158,,, +531,CHN,,Zhejiang zhi Sheng,,Quzhou (ZJ),28.981778,118.833222,,1,,8871,55,143,,,,,,36200806,,, +531,CHN,,Zhejiang zhi Sheng,,Xinchang/Kexia Cun (ZJ),29.503889,120.872306,,1,,8936,53,143,,,,,,36200807,,, +531,CHN,,Zhejiang zhi Sheng,,Taishun (ZJ),27.568611,119.73,,1,,9050,55,144,,,,,,36200159,,, +531,CHN,,Zhejiang zhi Sheng,,Yunhe (ZJ),28.113889,119.575,,1,,8992,55,144,,,,,,36200160,,, +531,PHL,,DXGH-AM (r:666 DZRH-AM),,General Santos City (sco),6.143333,125.169167,,5,,11351,63,144,,,,,,47359,,, +531,J,,NHK R 1,,Nago (kyu-oki),26.674572,128.018644,,1,,9583,50,146,,0000-2400,1234567,,,47354,,, +531,J,,NHK R 1,,Niihama (shi-ehi),33.966667,133.316667,,0.5,,9144,42,147,,0000-2400,1234567,,,48558,,, +531,AUS,en,6DL ABC Midwest & Wheatbelt,,Dalwallinu (WA),-30.288833,116.609333,,10,,13958,95,150,,0000-2400,1234567,3,,47346,,, +531,INS,id,R Palanta,,Tangerang/Jatake (BT-tan),-6.2,106.575,,1,,11245,86,151,,2100-1500,1234567,,,35400016,,, +531,J,,NHK R 1,,Imari (kyu-sag),33.266667,129.883333,,0.1,,9050,45,154,,0000-2400,1234567,,,47352,,, +531,AUS,,4KZ,,Innisfail (QLD),-17.530417,146.055833,,5,,14806,58,156,,0000-2400,1234567,9986,,47347,,, +531,AUS,en,2PM,,Kempsey (NSW),-31.106194,152.835111,,5,,16430,63,161,,0000-2400,1234567,998,,47348,,, +531,AUS,en,3GG,,Warragul (VIC),-38.103222,145.925444,,5,,16536,80,162,,0000-2400,1234567,,,47349,,, +531,NZL,,1XPI R 531 PI,,Auckland/Henderson (AUK),-36.849089,174.629694,,5,,18083,33,167,,0000-2400,1234567,5,,47357,,, +531,AUS,it,5RTI R Italiana,,Adelaide/Wingfield (SA),-34.837106,138.570833,,0.5,,15802,82,169,,0000-2400,1234567,,,47345,,, +531,NZL,en,4XA More FM,,Alexandra (OTA),-45.207222,169.419167,,2,,18555,65,172,,,,,,47356,,, +534,NOR,,LF6A,b,Amoco Valhall Platform,56.270833,3.458333,,0.025,,501,339,78,,,,,L398 U387 ,86735,,, +534,NOR,,LF6W,b,Grane / Norsk Hydro Platform,59.145833,2.458333,,0.025,,820,344,81,,,,,L412 U397 ,85490,,, +534,CZE,,R,b,Ostrava / Mosnov / Rada (MO),49.6875,18.125,,0.025,,863,104,82,,,,0,L400 U400 10.0s,ID+6 gap,85491,, +534,NOR,,LFEX,b,Songa Trym,60.9375,3.625,,0.025,,996,351,83,,,,,U403 ,86736,,, +534,UKR,,LC,b,Gostomel / Antonov,50.645833,30.125,,0.025,,1647,86,89,,,,999,L1011 U1008 ,IDx2,85489,, +535,RUS,,KE,b,Kikerino,59.4375,29.458333,,0.025,,1644,51,89,,,,,L394 U402 30.0s,IDx2,85493,, +535,UKR,,RB,b,Gvardeyskoye,45.104167,33.958333,,0.025,,2154,100,95,,,,,U698 ,ID+2.5 gap,85494,, +535,UKR,,UE,b,Gvardeyskoe,45.104167,33.958333,,0.025,,2154,100,95,,,,993,L396 U382 ,85495,,, +535.4,G,,LF4I,b,Byford Dolphin (SC-SHE),61.5,1.6,,0.1,,1084,346,78,,,,-535.4,,2800052,,, +537,BUL,,P,b,Plovdiv (pld),42.0625,24.875,,0.025,,1781,122,91,,,,16,L1018 U1050 ,ID+7 gap,85497,, +537,RUS,,GW,b,Tretyakovo/Luhovitsi (MO),54.895833,39.125,,0.025,,2165,69,95,,,,,,85496,,, +537,RUS,,RJ,b,Tretyakovo/Luhovitsi (MO),54.9375,38.958333,,0.025,,2154,69,95,,,,,,85498,,, +538.5,RUS,,VA,b,Murmansk / Kippyavr (MU),69.104167,32.458333,,0.025,,2326,26,96,,,,-538.5,,85499,,, +540,HNG,hu,MR1 Kossuth Rdi,,Solt (BaK),46.834333,19.031528,,2000,,1082,118,35,,0225-2210,1234567,0,,74,,, +540,E,es,Onda Cero,,Barcelona/EAJ15 (CAT-B),41.471958,2.214119,,50,,1225,197,52,,0000-2400,1234567,30,,73,,, +540,MRC,,SNRT Al Ida Al-Watania,,Sidi Bennour (dka),32.726222,-8.287972,,300,,2459,215,57,,0000-2400,1234567,999,,2293,,, +540,KWT,ar,R Kuwait Main Arabic,,Kabd/Sulaibiyah (jah),29.133856,47.765483,,600,,4237,111,72,,0000-2400,1234567,9972,,76,,, +540,IRN,fa,IRIB R Iran,,Mashhad/Gaem (rkh),36.465528,59.496069,,200,,4451,91,79,,0000-2400,1234567,9964,,75,,, +540,NIG,,Rima R,,Sokoto (sok),12.971389,5.289944,,50,,4353,182,84,,0430-2315,1234567,,,2294,,, +540,SDN,,SRTC Sudan Nat. R,,Nyala (sdf),12.014556,24.894944,,50,,4757,153,88,,,,,,2295,,, +540,CAN,en,CBT,,Grand Falls (NL),48.950833,-55.625,,10,,4264,291,90,,,,0,,35797,,, +540,CAN,fr,CBGA-1,,Grande-Anse (NB),47.815817,-65.146853,,10,,4930,294,96,,,,5,,20109264,,, +540,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Voi (coa),-3.411092,38.620739,,100,,6878,143,106,,0200-2110,1234567,,,2290,,, +540,CAN,en,CBK,,Watrous (SK),51.68,-105.447778,,50,,6837,319,108,,,,998,,35784,,, +540,USA,en,WFLF,,Pine Hills (FL),28.481389,-81.661944,,46,,7424,287,115,,,,4,,41396,,, +540,CHN,,Haixi RGD,,Da Qaidam/QHTS917 (QH),37.371111,97.386944,,10,,6885,64,116,,,,,,47366,,, +540,CHN,zh,CNR 1,,Xianyang/SATS3 (SA),34.303889,108.705556,,50,,7819,59,118,,2025-1805,1234567,,,36200147,,, +540,CHN,zh,CNR 1,,Jagdaqi (HL),50.421389,124.158056,,10,,7203,39,119,,2025-1805,1234567,,,36201010,,, +540,CHN,zh,CNR 1,,Baiyin (GS),36.539356,104.187778,,10,,7364,60,121,,2025-1805,1234567,,,36200157,,, +540,CHN,zh,CNR 1,,Bayanhushu/NMTS077 (NM),45.719722,118.812222,,10,,7375,45,121,,2025-1805,1234567,,,36201021,,, +540,CHN,zh,CNR 1,,Fuyuan/Tongjiang Xiang (HL),48.349167,134.391111,,25,,7807,34,121,,2025-1805,1234567,,,36201013,,, +540,CHN,zh,CNR 1,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,10,,7431,54,121,,2025-1805,1234567,,,36201000,,, +540,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705972,,20,,7702,78,121,,0025-0400,1234567,,,47371,,, +540,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705972,,20,,7702,78,121,,0700-0930,1234567,,,47371,,, +540,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705972,,20,,7702,78,121,,1130-1630,1234567,,,47371,,, +540,CHN,zh,CNR 1,,Bei'an/HLTS918 (HL),48.254722,126.489444,,10,,7497,39,122,,2025-1805,1234567,,,36201020,,, +540,CHN,zh,CNR 1,,Weifang (SD),36.731389,119.136667,,50,,8187,50,122,,2025-1805,1234567,,,36200148,,, +540,CUB,es,R Rebelde,,Mais (gu),20.244444,-74.152778,,10,,7610,276,123,,,,11,,31600078,,, +540,MEX,es,XEWA-AM W R,,San Luis Potos (slp),22.157228,-100.9254,,150,,9189,297,123,,0000-2400,1234567,9978,,45009,,, +540,USA,es,WLIE,,Islip (NY),40.751667,-73.213889,,0.22,,5916,291,123,,,,1,,42168,,, +540,CHN,zh,CNR 1,,Shenyang/SARFT033 (LN),41.625278,123.300556,,20,,7955,45,124,,2025-1805,1234567,,,47370,,, +540,USA,,WWCS,,Canonsburg (PA),40.289444,-80.185278,,0.5,,6387,295,124,,,,,,43365,,, +540,CHN,zh,CNR 1,,Fujin/HLTS916 (HL),47.226667,131.950833,,10,,7819,36,125,,2025-1805,1234567,,,36201014,,, +540,CHN,zh,CNR 1,,Hefei/Sanshitou (AH),31.987667,117.329028,,50,,8515,55,125,,1200-1805,1234567,,,36200153,,, +540,CHN,zh,CNR 1,,Hefei/Sanshitou (AH),31.987667,117.329028,,50,,8515,55,125,,2025-2400,1234567,,,36200153,,, +540,CHN,zh,CNR 1,,Jiamusi (HL),46.755556,130.265,,10,,7794,37,125,,2025-1805,1234567,,,36201009,,, +540,CHN,bo,CNR 11,,Nyalam=Nielamu (XZ),27.991111,85.983889,,1,,6901,79,126,,2155-1605,1234567,,,36201230,,, +540,CHN,zh,CNR 1,,Mohe (HL),53.475278,122.348056,,1,,6859,37,126,,2025-1805,1234567,,,36201002,,, +540,CHN,zh,CNR 1,,Qitaihe (HL),45.779167,131.041944,,10,,7918,37,126,,2025-1805,1234567,,,36200998,,, +540,MWI,en,MBC R 1,,Mangochi (mgc),-14.455667,35.226667,,10,,7905,150,126,,0253-2200,1234567,,,2291,,, +540,USA,,WETC,,Wendell-Zebulon (NC),35.869167,-78.432222,,0.5,,6619,291,126,,,,,,41332,,, +540,USA,,WGOP,,Pocomoke City (MD),38.053056,-75.569722,,0.243,,6267,291,126,,,,,,41548,,, +540,CAN,en,CBMM,,Senneterre (QC),48.378333,-77.224444,,0.04,,5623,301,127,,,,,,20109073,,, +540,CHN,zh,CNR 1,,Hulin/HLTS923 (HL),45.766667,133,,10,,7999,36,127,,2025-1805,1234567,,,36201011,,, +540,CHN,zh,CNR 1,,Muling/HLTS917 (HL),44.783611,130.539444,,10,,7990,38,127,,2025-1805,1234567,,,36201001,,, +540,CHN,zh,CNR 1,,Tengchong (YN),25.059167,98.499444,,10,,7973,72,127,,2025-1805,1234567,,,36200996,,, +540,USA,,WAUK,,Jackson (WI),43.333333,-88.153056,,0.4,,6627,303,127,,,,,,42911,,, +540,VEN,,YVOV R Perija,,La Villa del Rosario (zul),10.333333,-72.216667,,20,,8327,267,127,,0900-0400,1234567,,,45415,,, +540,VEN,,YVUR LV de Manapiare,,San Juan de Manapiare (amz),5.283333,-66.033333,,25,,8351,259,127,,,,,,45479,,, +540,CHN,,Genhe RGD,,Genhe (NM),50.805556,121.518611,,1,,7056,40,128,,,,,,47367,,, +540,CHN,bo,CNR 11,,Gyangz=Jiangzi (XZ),28.904722,89.598889,,1,,7068,76,128,,2155-1605,1234567,,,36201229,,, +540,CHN,zh,CNR 1,,Kuandian (LN),40.733333,124.783333,,10,,8108,44,128,,2025-1805,1234567,,,36201007,,, +540,CHN,zh,CNR 1,,Yulong/YNTS704 (YN),27.716667,104.366667,,10,,8121,66,128,,2025-1805,1234567,,,36200991,,, +540,CHN,zh,CNR 1,,Zhuanghe (LN),39.755278,122.950278,,10,,8108,46,128,,2025-1805,1234567,,,36200989,,, +540,CHN,zh,CNR 1,,Changle/Gushanmiaocun (SD),36.752778,118.829167,,10,,8169,51,129,,2025-1805,1234567,,,36201019,,, +540,CHN,zh,CNR 1,,Chongyang (HU),31.483333,111.383333,,10,,8220,59,129,,2025-1805,1234567,,,36201017,,, +540,CHN,zh,CNR 1,,Fuyang (AH),32.929167,115.804167,,10,,8346,55,130,,2025-1805,1234567,,,36200154,,, +540,CHN,zh,CNR 1,,Jining (SD),35.466667,116.583333,,7.5,,8164,53,130,,2025-1805,1234567,,,36200151,,, +540,CHN,zh,CNR 1,,Linyi (SD),35.078333,118.328056,,10,,8293,52,130,,2025-1805,1234567,,,36200150,,, +540,CHN,zh,CNR 1,,Wuhai (NM),39.730833,106.813611,,1,,7252,56,130,,2025-1805,1234567,,,36200994,,, +540,CHN,zh,CNR 1,,Linxia/Luojiabao (GS),35.572222,103.170833,,1,,7384,62,131,,2025-1805,1234567,,,36201005,,, +540,CHN,zh,CNR 1,,Xingyi/GZTS718 (GZ),25.05,104.983333,,10,,8390,68,131,,2025-1805,1234567,,,36200993,,, +540,USA,en,WXYG,,Sauk Rapids (MN),45.605,-94.139167,,0.25,,6780,308,131,,,,,,20000063,,, +540,CHN,zh,CNR 1,,Maguan (YN),23.033333,104.4,,10,,8528,69,132,,2025-1805,1234567,,,36201004,,, +540,CHN,zh,CNR 1,,Malipo (YN),23.15,104.733333,,10,,8539,69,132,,2025-1805,1234567,,,36201003,,, +540,DOM,,HICM R ABC,,Santo Domingo (sdo),18.466667,-69.816667,,1,,7464,271,132,,0900-0400,1234567,,,37231,,, +540,GRD,en,GBN Klassic AM,,St. George's/Morne Rouge (sgg),12.0165,-61.766483,,1,,7472,260,132,,0000-2400,1234567,,,2179,,, +540,KOR,,HLCZ KBS 1 R,,Hongseong (ccb),36.598611,126.651667,,10,,8580,45,132,,0000-2400,1234567,,,47381,,, +540,CHN,zh,CNR 1,,Huangshan/Tunxi (AH),29.690833,118.308889,,10,,8777,55,133,,2025-1805,1234567,,,36200152,,, +540,CHN,zh,CNR 1,,Ji'an/JXTS802 (JX),26.824422,114.978739,,10,,8844,59,133,,2025-1805,1234567,,,36201008,,, +540,CHN,zh,CNR 1,,Shanghai/SHTS806 (SH),31.199444,121.416944,,10,,8811,52,133,,2025-1805,1234567,,,47369,,, +540,CHN,zh,CNR 1,,Xuancheng/Wuligang (AH),30.930556,118.745833,,10,,8689,54,133,,2025-1805,1234567,,,36200145,,, +540,EQA,,HCFA2 R Tropicana Canal 540,,Guayaquil (gua),-2.166667,-79.916667,,25,,9947,266,133,,1100-0600,1234567,999,,36927,,, +540,PNR,es,HOPU R Lder 540 AM,,Pedregal/San Jos (pnm),9.101878,-79.425964,,10,,8926,272,133,,1000-0400,1234567,,,52295,,, +540,USA,en,WYNN,,Florence (SC),34.218056,-79.808333,,0.166,,6838,290,133,,,,,,43537,,, +540,B,pt,ZYJ924 Rdio Jornal AM,,Aracaj (SE),-10.890967,-37.064178,,2.5,,8143,225,134,,,,,,36901013,,, +540,CHN,zh,CNR 1,,Xinzhou (SX),38.416667,112.733333,,1,,7694,54,134,,2025-1805,1234567,,,36200146,,, +540,CLM,es,HJKA R Autntica,,Bogot D. C. (bdc),4.583333,-74.066667,,10,,8956,265,134,,0000-2400,1234567,,,37521,,, +540,NCG,es,YNOW R Corporacin,,Managua/Tipitata (mng),12.229358,-86.088433,,10,,9106,280,134,,0900-0600,1234567,183,,45183,,, +540,SLV,,YSHV R Restauracion,,San Salvador (ssl),13.816667,-89.15,,10,,9173,283,134,,,,,,45280,,, +540,THA,th,Yaan Kraw haa-sii-suun 540,,Bangkok/Samsen Road (bmp),13.793661,100.519792,,10,,9078,78,134,,0000-2400,1234567,,,47390,,, +540,USA,,WGTH,,Richlands (VA),37.083611,-81.782778,,0.097,,6735,294,134,,,,,,41571,,, +540,USA,en,WPKW969,,Providence (RI),41.682333,-71.444306,,0.01,,5736,291,134,,,,,,20010421,,, +540,CHN,zh,CNR 1,,Linfen (SX),36.083611,111.577222,,1,,7832,56,135,,2025-1805,1234567,,,36201006,,, +540,CUB,es,R Rebelde,,Sancti Spritus/CTOM2 (ss),21.912044,-79.430931,,1,,7826,281,135,,,,,,31600113,,, +540,USA,,KWMT,,Fort Dodge (IA),42.495833,-94.209167,,0.17,,7036,306,135,,,,9990,,39732,,, +540,USA,,WPFI377,,Albany/50 Wolf Road (NY),42.713056,-73.814444,,0.01,,5812,294,135,,,,,,20000071,,, +540,USA,,WRGC,,Sylva (NC),35.393056,-83.193889,,0.14,,6958,293,135,,,,,,42843,,, +540,USA,en,WPFI377,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010419,,, +540,B,pt,ZYJ450 Fluminense AM,,Niteri/Rua Projetada (RJ),-22.776822,-43.045522,,10,,9609,225,136,,,,,,36901012,,, +540,CHN,zh,CNR 1,,Changzhi/Nanzhuang (SX),36.08,113.081389,,1,,7916,55,136,,2025-1805,1234567,,,36200156,,, +540,USA,en,WPPU697,,Utica (NY),43.112028,-75.211006,,0.01,,5870,295,136,,,,,,20010420,,, +540,B,pt,ZYH894 Rdio Guajajara,,Barra do Corda (MA),-5.527383,-45.261306,,1,,8046,235,137,,,,,,36901005,,, +540,CHN,zh,CNR 1,,Fushun/LNTS205 (LN),41.85,123.883333,,1,,7963,44,137,,2025-1805,1234567,,,36200155,,, +540,CHN,zh,CNR 1,,Yingkou/LNTS314 (LN),40.5125,122.205,,1,,8003,46,137,,2025-1805,1234567,,,36200992,,, +540,J,,JOJG NHK1,,Yamagata (toh-yam),38.279167,140.326111,,5,,9019,35,137,,0000-2400,1234567,,,47380,,, +540,PHL,,DZWT-AM R Veritas,,Baguio City/Mount Beckel (bgt),16.438056,120.625833,,10,,10124,61,137,,,,,,47388,,, +540,USA,,KDFT,,Ferris (D) (TX),32.513056,-96.574444,,1,,8014,300,137,,,,,,20012543,,, +540,USA,en,WQFI219,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20010423,,, +540,CHN,zh,CNR 1,,Dandong/LNTS311 (LN),40.182778,124.370833,,1,,8138,45,138,,2025-1805,1234567,,,36201015,,, +540,CHN,zh,CNR 1,,Zhaotong/YNTS697 (YN),27.330556,103.694722,,1,,8112,67,138,,2025-1805,1234567,,,36200990,,, +540,J,,JOMG NHK1,,Miyazaki (kyu-miy),31.952778,131.44,,5,,9251,44,138,,0000-2400,1234567,,,47378,,, +540,B,pt,ZYH610 Rdio Jornal,,Canind (CE),-4.357636,-39.326811,,0.25,,7610,230,139,,,,,,36901016,,, +540,MEX,es,XESURF-AM R Zion,,Tijuana (bcn),32.512467,-117.111194,,3.5,,9124,315,139,,0000-2400,1234567,999,,44825,,, +540,CHN,zh,CNR 1,,Anshun/GZTS859 (GZ),26.25,105.916667,,1,,8345,66,140,,2025-1805,1234567,,,36201022,,, +540,CHN,zh,CNR 1,,Qujing/YNTS691 (YN),25.470556,103.788611,,1,,8278,68,140,,2025-1805,1234567,,,36200997,,, +540,CHN,zh,CNR 1,,Zunyi/GZTS691 (GZ),27.533333,106.833333,,1,,8290,65,140,,2025-1805,1234567,,,36200988,,, +540,CHN,zh,CNR 1,,Guiyang (GZ),26.416667,106.6,,1,,8373,66,141,,2025-1805,1234567,,,36201012,,, +540,MEX,es,XEHS-AM La Norteita,,Los Mochis (sin),25.838333,-109.062889,,2.5,,9329,305,141,,,,,,44139,,, +540,MEX,es,XEWF-AM,,Tlalmanalco (mex),19.170356,-98.847053,,2.5,,9328,294,141,,,,,,34900005,,, +540,USA,en,WKFN,,Clarksville (TN),36.541944,-87.325556,,0.055,,7121,297,141,,,,,,41921,,, +540,ARG,,LRA25 R Nacional,,Tartagal (sa),-22.516667,-63.816667,,5,,10712,241,142,,1000-0400,1234567,,,39945,,, +540,B,pt,ZYI914 Rdio Primeiro de Julho,,gua Branca (PI),-5.894439,-42.645956,,0.25,,7937,232,142,,,,,,36901003,,, +540,CHN,zh,CNR 1,,Changsha/HNTS203 (HN),28.211544,113.051339,,1,,8607,60,142,,2025-1805,1234567,,,36201018,,, +540,INS,,RRI Pro-1,,Bandung/Gede Bage (JB-ban),-6.953667,107.688328,,10,,11387,85,142,,2200-1700,1234567,0,,47372,,, +540,CHN,zh,CNR 1,,Ningbo (ZJ),29.887778,121.486667,,1,,8935,53,143,,2025-1805,1234567,,,47368,,, +540,CHN,zh,CNR 1,,Suichang (ZJ),28.583333,119.266667,,1,,8931,55,143,,2025-1805,1234567,,,36200149,,, +540,KOR,,HLSC KBS 1 R,,Jeomcheon (gsb),36.605,128.209167,,1,,8654,44,143,,0000-2400,1234567,,,47383,,, +540,KOR,ko,HLSM KBS 1 R,,Jangheung (jen),34.683611,126.916389,,1,,8772,46,143,,0000-2400,1234567,,,47382,,, +540,KOR,ko,HLSN KBS 1 R,,Jangsu (jeb),35.730278,127.588889,,1,,8707,45,143,,0000-2400,1234567,,,52086,,, +540,MEX,es,XEWA-AM W R,,Monterrey (nvl),25.668544,-100.312378,,1,,8838,299,143,,0000-2400,1234567,,,45011,,, +540,USA,,KDFT,,Ferris (N) (TX),32.514444,-96.573889,,0.25,,8014,300,143,,,,,,38257,,, +540,USA,en,WQAC662,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010424,,, +540,CAN,en,CBYW,,Wells (BC),53.106944,-121.545833,,0.04,,7355,329,144,,,,,,20109074,,, +540,CHN,zh,CNR 1,,Changle/FJTS303 (FJ),25.946944,119.491111,,1,,9185,57,144,,2025-1805,1234567,,,36201315,,, +540,CHN,zh,CNR 1,,Dabu (GD),22.366667,113.45,,1,,9152,63,144,,2025-1805,1234567,,,36201016,,, +540,CHN,zh,CNR 1,,Pingliang (GS),35.555,136.616667,,1,,9136,39,144,,2025-1805,1234567,,,36200999,,, +540,CHN,zh,CNR 1,,Wenzhou (ZJ),28.1,120.6,,1,,9050,54,144,,2025-1805,1234567,,,36200995,,, +540,GTM,,R Cobn,,Cobn (avp),15.466667,-90.366667,,1,,9109,285,144,,,,,,52126,,, +540,J,,JOSG NHK1,,Matsumoto (chu-nag),36.216667,137.95,,1,,9127,38,144,,0000-2400,1234567,,,47377,,, +540,J,,JOSK NHK1,,Kitakyushu (kyu-fuk),33.933889,130.805278,,1,,9031,44,144,,0000-2400,1234567,,,47376,,, +540,J,,NHK R 1,,Nanao (chu-ish),37.033333,137,,1,,9007,38,144,,0000-2400,1234567,,,47379,,, +540,MEX,es,XEMIT-AM R IMER,,Comitn de Domnguez (cps),16.208883,-92.115756,,1,,9159,287,144,,1100-0700,1234567,,,44382,,, +540,USA,,WDAK,,Columbus (GA),32.432778,-84.950556,,0.038,,7309,292,144,,,,,,41120,,, +540,ARG,es,LRA14 R Nacional,,Santa F (sf),-31.649444,-60.716111,,5,,11361,233,145,,0700-0300,1234567,,,39934,,, +540,B,pt,ZYH755 Rdio Riviera,,Goinia (GO),-16.715833,-49.245128,,1,,9338,233,145,,,,,,36901010,,, +540,B,pt,ZYL331 Rdio Ipanema,,Ipanema (MG),-19.790278,-41.708889,,1,,9250,225,145,,,,,,36901006,,, +540,MEX,es,XETX-AM,,Nuevo Casas Grandes (chi),30.425,-107.911389,,0.7,,8844,307,145,,,,,,44877,,, +540,J,ja,NHK R 1,,Ishigaki (kyu-oki),24.363889,124.157778,,1,,9593,54,146,,0000-2400,1234567,,,47375,,, +540,USA,,KRXA,,Carmel Valley (CA),36.66,-121.541389,,0.5,,8931,320,146,,,,90,,38893,,, +540,USA,en,WPUN647,,Terre Haute (IL),39.446944,-87.446111,,0.01,,6894,299,146,,,,,,20010426,,, +540,B,pt,ZYH481 Rdio Regional de Irec,,Irec (BA),-11.275308,-41.861767,,0.25,,8420,229,147,,,,,,36901008,,, +540,USA,en,WPUN647,,Springfield (IL),39.8,-89.65,,0.01,,6996,301,147,,,,,,20010427,,, +540,B,pt,ZYJ778 Rdio Mirador AM,,Rio do Sul/Rua Pouso Redondo (SC),-27.253333,-49.698056,,1,,10371,228,148,,,,,,36901014,,, +540,PRU,es,OCX2D R San Antonio,,Trujillo (lal),-8.116667,-79.033333,,1,,10410,261,148,,,,,,52284,,, +540,ARG,,LU17 R Golfo Nuevo,,Puerto Madryn (ch),-42.766667,-65.016667,,5,,12576,229,149,,0000-2400,1234567,,,40211,,, +540,B,pt,ZYK322 Rdio Sep Tiaraj,,Santo ngelo (RS),-28.283333,-54.266667,,1,,10704,231,149,,,,,,36901011,,, +540,CAN,en,CBKO,,Coal Harbour (BC),50.601111,-127.573056,,0.04,,7803,331,149,,,,,,20109076,,, +540,PRU,es,OBX4E R Inca del Per,,Lima (lim),-12.05,-77.05,,1,,10622,257,149,,0000-2400,1234567,,,52283,,, +540,CAN,en,CBXQ,,Ucluelet (BC),48.945556,-125.551944,,0.04,,7896,329,150,,,,,,20109075,,, +540,PHL,tl,DYRB-AM Radyo Asenso,,Cebu City/Mambaling (ceb),10.283508,123.875539,,1,,10888,62,150,,????-1200,1234567,,,47387,,, +540,USA,,KMLB,,Monroe (LA),32.621944,-92.064167,,0.026,,7735,297,150,,,,,,39007,,, +540,USA,,WASG,,Daphne (AL),30.745556,-88.094444,,0.019,,7648,293,151,,,,,,40748,,, +540,B,pt,ZYK226 Rdio Real,,Canoas (RS),-29.912778,-51.206389,,0.5,,10700,227,152,,,,,,36901007,,, +540,B,pt,ZYK697 Rdio Uirapuru,,Birigui (SP),-21.326394,-50.354489,,0.25,,9838,231,152,,,,,,36901001,,, +540,B,pt,ZYK734 Rdio Nova Sumar,,Sumar/Avenida Soma (SP),-22.824853,-47.258933,,0.25,,9821,228,152,,,,,,36901009,,, +540,USA,en,WPJM930,,Chanute/2030 W 14th St. (KS),37.677633,-95.478583,,0.01,,7509,303,152,,,,,,20010428,,, +540,AUS,en,4QL ABC Western Queensland,,Longreach (QLD),-23.389261,144.223489,,10,,15230,65,154,,0000-2400,1234567,5,,47364,,, +540,B,pt,ZYJ322 Rdio Nova Era,,Borrazpolis (PR),-23.933333,-51.5875,,0.25,,10152,231,154,,,,,,36901004,,, +540,CHL,,CB54 R Ignacio Serrano,,Melipilla (RM),-33.663669,-71.257383,,1,,12139,239,154,,1100-0400,1234567,,,35752,,, +540,CLN,,KTK,b,Bandaranaike Intl (Katunayake) (gmp),7.183333,79.883333,,0.025,,8252,99,155,,,,51,,34700024,,, +540,USA,en,WPDI548,,Denver (CO),39.844361,-104.727697,,0.01,,7827,311,155,,,,,,20010418,,, +540,USA,en,WPVT605,,Bellingham (WA),48.782861,-122.494306,,0.01,,7801,327,155,,,,,,20010425,,, +540,CHL,,CD54 R Calle Saval,,Valdivia (LL),-39.766667,-73.216667,,1,,12768,236,156,,1000-0400,1234567,,,35900,,, +540,USA,,KNMX,,Las Vegas (NM),35.573611,-105.171389,,0.02,,8230,308,156,,,,155,,39002,,, +540,USA,en,WNPZ394,,Georgetown (CO),39.721111,-105.6925,,0.01,,7888,311,156,,,,,,20010417,,, +540,USA,en,WQIH850,,Burien (WA),47.477639,-122.344314,,0.01,,7920,326,156,,,,,,20010416,,, +540,USA,en,WQJW697 Sammanish Advisory R,,Sammanish/Beaver Lake Park SE corner of 244 Avenue SE and SE 24th Street (WA),47.585417,-122.012333,,0.01,,7897,326,156,,,,,,20016255,,, +540,USA,en,WQJW697 Sammanish Advisory R,,Sammanish/NE Sammamish Park NW corner of Sahalle Way NE and NE 36th Street (WA),47.642556,-122.056333,,0.01,,7893,326,156,,,,,,20016254,,, +540,USA,en,KYAH,,Delta (UT),39.336667,-112.555833,,0.013,,8264,315,158,,,,,,38960,,, +540,USA,en,WQBQ728,,Castle Rock (WA),46.293547,-122.910983,,0.01,,8056,326,158,,,,,,20010422,,, +540,GTM,,R Amistad,,San Pedro La Laguna (sol),14.683333,-91.266667,,0.025,,9237,285,160,,,,,,52127,,, +540,USA,,KVIP,,Redding (CA),40.623611,-122.280278,,0.014,,8578,323,161,,,,99935,,39628,,, +540,SMO,,2AP SBC R 1,,Apia/Mulinu'u (tum),-13.81745,-171.780253,,2.5,,15754,357,162,,1600-1000,123456,,,47389,,, +540,SMO,,2AP SBC R 1,,Apia/Mulinu'u (tum),-13.81745,-171.780253,,2.5,,15754,357,162,,2000-1000,......7,,,47389,,, +540,AUS,,7SD,,Scottsdale (TAS),-41.110167,147.544722,,5,,16851,83,163,,0000-2400,1234567,,,47365,,, +540,NZL,en,1XC NZs Rhema,,Tauranga/Papamoa (BOP),-37.722222,176.339444,,5,,18233,30,167,,0000-2400,1234567,,,47385,,, +540,NZL,en,2XV NZs Rhema,,New Plymouth/Kaimata (TKI),-39.183333,174.266667,,4,,18301,38,168,,0000-2400,1234567,,,47384,,, +540,USA,en,WE2XDB,,Wichita (KS),37.6875,-97.220833,,0.0001,,7607,304,173,,,,,,20010415,,, +540,USA,en,WE2XFZ,,Chilocco (OK),36.937222,-97.071389,,0.0001,,7663,304,174,,,,,,20010429,,, +544,NOR,,LF5N,b,Phillips / Ekofisk 2 / 4K,56.5625,3.208333,,0.025,,537,339,78,,,,,L428 ,86737,,, +544,NOR,,LF5U,b,Ekofisk 2,56.520833,3.208333,,0.025,,532,338,78,,,,,L400 U400 ,86738,,, +544,NOR,,LF5E,b,Huldra Platform,60.854167,2.625,,0.025,,999,348,83,,,,,L397 U407 7.5s,85500,,, +544,NOR,,LFAA,b,West Venture,60.729167,3.541667,,0.025,,974,351,83,,,,,,86739,,, +544,XOE,,WPH,b,West Phoenix,60.520833,2.041667,,0.025,,973,346,83,,,,,,86741,,, +544,NOR,,LFFM,b,Songa Delta,61.645833,2.125,,0.025,,1091,348,84,,,,,,86740,,, +549,D,de,Deutschlandfunk,,Nordkirchen/Piekenbrock (nrw),51.755,7.538611,,100,,87,117,15,,0000-2400,1234567,0,,82,,, +549,D,de,Deutschlandfunk,,Thurnau/Tannfeld (bay),49.9875,11.376667,,100,,420,122,41,,0000-2400,1234567,0,,83,,, +549,ALG,ar,Jil FM,,Sidi Hamadouche (22),35.287778,-0.5825,,300,,1951,199,52,,0000-2400,1234567,0,,79,,, +549,IRL,en,Spirit R,,Carrickroe (MN),54.349717,-7.04385,,25,,928,291,52,,0000-2400,1234567,2,,4100002,,, +549,SVN,sl,R Koper,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,0500-2300,1234567,9,,94,,, +549,SVN,sl,R Slovenija 1,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,0300-0500,.2.....,9,,94,,, +549,SVN,sl,R Slovenija 1,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,2300-0500,0.234567,9,,94,,, +549,ARS,ar,BSKSA Idha'atu-i Riyadh,,Qurayyat (jwf),31.428722,37.380028,,2000,148,3401,120,58,,0300-1500,1234567,,,80,,, +549,UKR,uk,UR 1 Persha Prog.,,Mykolaiv/Luch (MY),46.813222,32.203561,,55,,1943,97,59,,0300-2100,1234567,2,,98,,, +549,AZE,az,Azərbaycan R,,Gəncə=Gnc (gan),40.61475,46.333783,,70,90,3268,97,71,,0200-2000,1234567,,,81,,, +549,IRN,fa,IRIB R Iran,,Sirjan (krm),29.613625,55.804639,,400,,4724,102,78,,0000-2400,1234567,60,,85,,, +549,ARS,ar,BSKSA Idha'atu-i Riyadh,,Rafha/Al-Jumaimah (hsh),29.589222,43.594611,,20,,3936,115,83,,0300-2300,1234567,,,47058,,, +549,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar Rass (qsm),25.869089,43.530711,,10,,4257,119,90,,0300-2300,1234567,,,10600007,,, +549,TJK,ru,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,0600-0800,1234567,,,47096,,, +549,TJK,ru,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,1400-1600,1234567,,,47096,,, +549,TJK,tg,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,0300-0600,1234567,,,47096,,, +549,TJK,tg,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,0800-1400,1234567,,,47096,,, +549,TJK,tg,Tojikiston R.3 Sado-ye Dushanbe,,Dushanbe (dsb),38.592428,68.784136,,40,,4934,82,90,,1600-1900,1234567,,,47096,,, +549,NIG,xx,Voice of Ekiti,,Ado-Ekiti (ekt),7.633333,5.216667,,25,,4947,182,93,,0500-2300,1234567,,,6200008,,, +549,GAB,fr,RTG Chine 2,,Oyem (wnt),1.614394,11.580617,,20,,5635,173,100,,0430-0630,1234567,,,2296,,, +549,GAB,fr,RTG Chine 2,,Oyem (wnt),1.614394,11.580617,,20,,5635,173,100,,1030-1430,1234567,,,2296,,, +549,GAB,fr,RTG Chine 2,,Oyem (wnt),1.614394,11.580617,,20,,5635,173,100,,1600-2230,1234567,,,2296,,, +549,ARS,ar,BSKSA Idha'atu-i Riyadh,,Jizan=Gizan (jzn),16.867956,42.567561,,1,,5036,127,107,,0300-2300,1234567,,,47057,,, +549,IND,,AIR East,,Ranchi A (BR),23.407778,85.226944,,100,,7226,83,109,,0025-0410,1234567,,,47396,,, +549,IND,,AIR East,,Ranchi A (BR),23.407778,85.226944,,100,,7226,83,109,,0700-0950,1234567,,,47396,,, +549,IND,,AIR East,,Ranchi A (BR),23.407778,85.226944,,100,,7226,83,109,,1130-1741,1234567,,,47396,,, +549,CHN,,CNR 5 Zhonghua zhi Sheng,,Putian/SARFT824 (FJ),25.465056,119.165833,,1200,125,9210,57,114,,2055-1705,1234567,9996,,47392,,, +549,CHN,zh,Alxa Zuoqi RGD,,Alxa Zuoqi=Alashan Zuoqi/NMTS782 (NM),38.821944,105.688333,,10,,7263,58,120,,,,,,47393,,, +549,VTN,vi,VOV2,,My Van/Bần Yn Nhn-VN3 (hyn),20.913717,106.077211,,200,,8820,70,120,,2145-1700,1234567,,,47411,,, +549,THA,th,Sor. Wor. Sor.,,Lampang/Chiang Mai Road (lpg),18.308417,99.413944,,100,,8612,76,122,,2130-1640,1234567,,,47408,,, +549,CHN,,Chifeng RGD,,Chifeng/NMTS915 (NM),42.339722,118.878889,,10,,7675,47,124,,2130-1430,1234567,,,47394,,, +549,CHN,zh,Zhengzhou RGD Xinwen,,Zhengzhou/HETS804 (HE),34.778056,113.579444,,10,,8058,55,128,,2150-1700,1234567,,,47395,,, +549,CHN,zh,Chifeng RGD,,Daban/NMTS805 (NM),43.533333,118.666667,,1,,7559,46,133,,,,,,36200987,,, +549,CHN,zh,Chifeng RGD,,Tianshan/NMTS806 (NM),43.865278,120.081944,,1,,7599,45,133,,,,,,36200986,,, +549,CHN,zh,Chifeng RGD,,Wudan/NMTS804 (NM),42.933333,119.016667,,1,,7629,47,133,,,,,,36200985,,, +549,THA,,Sor. Wor. Thor. (R Thailand),,Mukdahan (mdn),16.545,104.680556,,10,,9112,73,134,,????-1510,1234567,,,47409,,, +549,J,,JOAP NHK1,,Naha/Tomigusuku (kyu-oki),26.178333,127.704167,,10,,9613,50,136,,0000-2400,1234567,3,,47397,,, +549,PHL,,DXHM-AM Radyo Totoo,,Mati City/Madang (dvo),6.955556,126.216667,,5,,11339,62,144,,2000-1300,1234567,,,47402,,, +549,AUS,,2CR ABC Central West NSW,,Cumnock/Orange (NSW),-32.934083,148.711083,,50,,16325,70,151,,0000-2400,1234567,6,,47391,,, +549,INS,id,R Inyong,,Depok (JB-kde),-6.433333,106.823611,,1,,11282,86,151,,2145-1800,1234567,,,35400017,,, +549,NZL,en,2XC LiveSPORT,,Napier/Opapa (HKB),-39.797222,176.675,,5,67,18456,32,168,,0000-2400,1234567,,,47399,,, +549,NZL,en,NZs Rhema,,Kaitaia/Awanui (NTL),-35.063056,173.258333,,2,,17851,34,170,,0000-2400,1234567,,,47400,,, +549,NZL,en,R Sport,,Nelson/Stoke (NSN),-41.329167,173.215278,,2,,18455,45,172,,0000-2400,1234567,,,47401,,, +550,USA,,WSAU,,Wausau (WI),44.857222,-89.586944,,20,,6589,305,110,,,,,,42952,,, +550,USA,en,WGR,,Buffalo (NY),42.769722,-78.843611,,5,,6119,297,111,,,,7,,41555,,, +550,USA,en,WDEV,,Waterbury (VT),44.354722,-72.751944,,1,,5630,295,113,,,,,,41153,,, +550,USA,en,WSJW,i,Pawtucket (D) (RI),41.905556,-71.398889,,1,,5717,291,114,,,,,,41142,,, +550,USA,en,WSJW,i,Pawtucket (N) (RI),41.905,-71.399444,,0.5,,5718,291,117,,,,,,20016063,,, +550,VEN,,YVKE Mundial,,Caracas (dcf),10.536303,-66.925836,,100,,7949,263,117,,0000-2400,1234567,,,45352,,, +550,USA,,KFYR,,Bismarck (ND),46.853333,-100.543611,,5,,7010,313,120,,,,999,,38451,,, +550,USA,,KTRS,,St. Louis (MO),38.6625,-90.128611,,5,,7116,300,121,,,,9975,,39537,,, +550,USA,,WSVA,,Harrisonburg (VA),38.451111,-78.908056,,1,,6449,293,121,,,,,,43083,,, +550,ALS,,KTZN,,Anchorage (AK),61.166111,-149.826111,,5,,7244,348,122,,0000-2400,1234567,1,,39557,,, +550,PTR,es,WPAB,,Ponce (PR),17.990833,-66.63,,5,,7287,268,123,,0000-2400,1234567,,,42640,,, +550,USA,,WKRC,,Cincinnati (OH),39.008056,-84.444167,,1,,6748,297,124,,,,,,42062,,, +550,USA,en,WDUN,,Gainesville (GA),34.335556,-83.792222,,2.5,,7081,293,124,,,,,,41215,,, +550,CLM,es,HJZQ R Nacional de Colombia,,Neiva (hui),2.933333,-75.333333,,50,,9187,265,127,,,,,,35901353,,, +550,CUB,es,R Rebelde,,Pinar del Ro/CTOM1 (pr),22.368153,-83.739372,,12,,8074,284,127,,,,2,,31600026,,, +550,B,pt,ZYI796 R Meridional AM,,Garanhuns/Fazenda Bela Vista (PE),-8.865111,-36.499389,,5,,7913,225,129,,,,,,36901022,,, +550,CLM,es,HJHF R Nacional de Colombia,,Marinilla (ant),6.15,-75.366667,,25,,8907,267,129,,,,2,,37469,,, +550,USA,,WIOZ,,Pinehurst (NC),35.151111,-79.477778,,0.26,,6742,291,130,,,,,,41787,,, +550,CTR,,TISCL R Santa Clara,,Ciudad Quesada (alj),10.333333,-84.433333,,20,,9160,277,131,,1100-0300,1234567,,,52141,,, +550,USA,en,KARI,,Blaine (WA),48.954167,-122.743333,,2.5,,7794,327,131,,,,9983,,37964,,, +550,EQA,,HCGB1,,Quito (pic),-0.166667,-78.5,,25,,9675,266,132,,,,,,36946,,, +550,USA,,KOAC,,Corvallis (OR),44.636667,-123.1925,,5,,8227,325,132,,,,9996,,39043,,, +550,NCG,,YNCH R 19 de Julio La 19,,Chinandega (cnd),13.016667,-86.9,,10,,9092,281,134,,1000-0200,1234567,,,52182,,, +550,USA,,KBOW,,Butte (MT),45.975,-112.571667,,1,,7657,319,134,,,,,,38077,,, +550,USA,,KTSA,,San Antonio (D) (TX),29.494722,-98.414444,,5,,8386,300,134,,,,,,20016069,,, +550,USA,,KTSA,,San Antonio (N) (TX),29.496111,-98.415,,5,,8386,300,134,,,,,,39540,,, +550,B,pt,ZYL263 R.Sociedade Norte de Minas,,Montes Claros (MG),-16.761111,-43.896389,,5,,9061,228,137,,,,,,36901025,,, +550,USA,,KLLV,,Breen (CO),37.183889,-108.081667,,1.8,,8238,311,137,,,,,,38828,,, +550,USA,,KUZZ,,Bakersfield (CA),35.340278,-118.938611,,5,,8941,318,137,,,,9999,,39607,,, +550,USA,en,WQEY242,,Brooklyn/241 37th Street (NY),40.666778,-73.983472,,0.01,,5971,292,137,,,,,,20010432,,, +550,USA,en,WQEY242,,New York (NY),40.731778,-73.877661,,0.01,,5960,292,137,,,,,,20010433,,, +550,B,pt,ZYI429 RCN 550 AM-R.Capital do Norte,,Sinop (MT),-11.910586,-55.525028,,5,,9242,240,138,,,,,,36901017,,, +550,B,pt,ZYJ331 Rdio Banda B,,Curitiba (PR),-25.356944,-49.05,,10,,10156,228,138,,,,,,36901024,,, +550,USA,,WAME,,Statesville (NC),35.793333,-80.854167,,0.053,,6779,292,138,,,,,,40705,,, +550,B,pt,ZYI907 Rdio Globo,,Parnaba/Ilha do Tabuleiro (PI),-2.938611,-41.786111,,0.25,,7604,233,139,,,,,,36901026,,, +550,PRG,,ZP16 R Parque,,Ciudad del Este (apa),-25.466667,-54.716667,,10,,10464,232,139,,,,,,45512,,, +550,USA,,KRAI,,Craig (CO),40.545833,-107.531111,,0.5,,7908,313,139,,,,,,39217,,, +550,B,pt,ZYH644 Rdio Vale do Quino,,Acopiara (CE),-6.091961,-39.465306,,0.25,,7788,229,141,,,,,,36901027,,, +550,USA,,KCRS,,Midland (TX),32.069444,-102.029444,,1,,8369,304,141,,,,,,38205,,, +550,USA,,KFRM,,Salina (KS),39.434444,-97.660278,,0.11,,7483,306,141,,,,,,38426,,, +550,URG,es,CW1 R Colonia,,Colonia del Sacramento (co),-34.368139,-57.841472,,10,,11455,230,142,,0000-2400,1234567,,,36740,,, +550,USA,,WAYR,,Orange Park (FL),30.0725,-81.79,,0.065,,7301,288,142,,,,,,40787,,, +550,USA,,KFYI,i,Phoenix (AZ),33.388056,-112.006111,,1,,8788,312,143,,,,2,,38448,,, +550,HND,,HRH,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37763,,, +550,B,pt,ZYI902 Rdio Serra da Capivara,,So Raimundo Nonato (PI),-9.000072,-42.689978,,0.25,,8241,231,145,,,,,,36901019,,, +550,MEX,es,XEQW-AM Mexicansima,,Mrida (yuc),20.905,-89.585278,,0.5,,8583,288,145,,,,,,44639,,, +550,MEX,es,XEZK-AM Poder 55,,Tepatitln de Morelos (jal),20.845811,-102.736944,,1,,9417,298,145,,,,,,45144,,, +550,HWA,en,KNUI,,Wailuku (DN) (HI),20.890556,-156.488889,,5,,11729,343,146,,,,,,20016300,,, +550,HWA,en,KNUI,,Wailuku (U) (HI),20.891389,-156.489722,,5,,11729,343,146,,0000-2400,1234567,0,,38946,,, +550,MEX,es,XEACD-AM Los 40 Principales,,Acapulco (gue),16.844817,-99.913592,,1,,9603,293,146,,,,,,43690,,, +550,FLK,en,BFBS R,,Bush Rincon (efl),-51.807056,-58.299611,,10,,13039,219,147,,0000-2400,1234567,,,52404,,, +550,SLV,,YSFG,,Sonsonate (ssn),13.716667,-89.716667,,0.5,,9219,283,147,,,,,,45275,,, +550,B,pt,ZYL225 Rdio Cataguases,,Cataguases (MG),-21.384956,-42.695958,,0.5,,9455,225,148,,,,,,36901028,,, +550,B,pt,ZYK578 Rdio Mantiqueira,,Cruzeiro (SP),-22.556089,-44.932983,,0.5,,9679,226,149,,,,,,36901023,,, +550,MEX,es,XEHLL-AM Los 40 Principales,,Salina Cruz (oax),16.239478,-95.212853,,0.25,,9357,289,151,,,,,,44125,,, +550,B,pt,ZYK700 Super Rdio Educao e Cultura,,Sertozinho (SP),-21.165656,-47.910892,,0.25,,9695,229,152,,,,,,36901018,,, +550,MEX,es,XEPL-AM,,Ciudad Cuauhtmoc (chi),28.414183,-106.917281,,0.15,,8973,305,152,,,,,,44558,,, +550,USA,en,WPUA238,,North Little Rock (AR),34.777056,-92.277628,,0.01,,7566,299,153,,,,,,20010430,,, +550,MEX,es,XETNC-AM R Aztln,,Tepic (nay),21.520333,-104.87,,0.15,,9484,300,154,,,,,,44840,,, +550,B,pt,ZYK287 Rdio Santa Cruz do Sul,,Santa Cruz do Sul (RS),-29.730556,-52.45,,0.25,,10746,228,155,,,,,,36901021,,, +550,PRG,,ZP48,,Mariscal Estigarribia (bqn),-22.016667,-60.966667,,0.25,,10498,239,155,,,,,,45544,,, +550,CHL,,CD55 R LV de la Tierra,,Angol (AI),-45.416667,-72.716667,,1,,13203,232,158,,,,,,35903,,, +550,USA,en,WQHK896,,Long Beach/575 Pier T Ave (CA),33.761028,-118.227644,,0.01,,9059,316,164,,,,,,20010431,,, +553,XOE,,RGV,b,Rowan Gorilla V,57.020833,1.875,,0.025,,619,334,79,,,,,L411 U389 ,86742,,, +554,RUS,,OG,b,Russky Kameshkir,52.854167,46.125,,0.025,,2656,72,100,,,,,L399 ,85502,,, +555,RUS,,JC,b,Kozelsk,54.0625,35.791667,,0.025,,1960,72,93,,,,,15.0s,IDx2 +3 gap,85503,, +555,RUS,,MZ,b,Mezen,65.854167,44.208333,,0.025,,2588,39,99,,,,,U1041 ,85504,,, +558,ROU,ro,SRR R Romnia Actualităţi,,Trgu Jiu (GJ),45.017778,23.292556,,400,145,1466,116,46,,0600-2200,1234567,1,,108,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0625-0630,12345..,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0650-0700,12345..,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0800-0815,1234567,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1208-1300,12345..,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1230-1300,.....67,,,101,,, +558,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1400-1415,12345..,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0815-1208,12345..,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0815-1230,.....67,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1300-1400,12345..,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1300-2300,.....67,,,101,,, +558,E,es,RNE R 5,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1415-2300,12345..,,,101,,, +558,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0630-0650,12345..,,,101,,, +558,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0700-0800,12345..,,,101,,, +558,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,2300-0625,1234..7,,,101,,, +558,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,2300-0800,....56.,,,101,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0625-0630,12345..,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0650-0700,12345..,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0800-0815,1234567,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1208-1300,12345..,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1230-1300,.....67,0,,102,,, +558,E,es,RNE Com. Valenciana,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1400-1415,12345..,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0815-1208,12345..,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0815-1230,.....67,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1300-1400,12345..,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1300-2300,.....67,0,,102,,, +558,E,es,RNE R 5,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,1415-2300,12345..,0,,102,,, +558,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0630-0650,12345..,0,,102,,, +558,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,0700-0800,12345..,0,,102,,, +558,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,2300-0625,1234..7,0,,102,,, +558,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.297917,-0.326361,,50,,1516,203,55,,2300-0800,....56.,0,,102,,, +558,SVN,hu,Muravidki Magyar Rdi,,Murska Sobota/Nemčavci (ms),46.685639,16.173722,,10,,928,127,56,,0445-2300,1234567,9987,,110,,, +558,SVN,sl,R Slovenija 1,,Murska Sobota/Nemčavci (ms),46.685639,16.173722,,10,,928,127,56,,2300-0445,1234567,9987,,110,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0625-0630,12345..,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0650-0700,12345..,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0800-0815,1234567,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1208-1300,12345..,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1230-1300,.....67,47,,100,,, +558,E,es,RNE Galicia,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1400-1415,12345..,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0815-1208,12345..,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0815-1230,.....67,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1300-1400,12345..,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1300-2300,.....67,47,,100,,, +558,E,es,RNE R 5,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,1415-2300,12345..,47,,100,,, +558,E,es,RNE R Nacional,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0630-0650,12345..,47,,100,,, +558,E,es,RNE R Nacional,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,0700-0800,12345..,47,,100,,, +558,E,es,RNE R Nacional,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,2300-0625,1234..7,47,,100,,, +558,E,es,RNE R Nacional,,La Corua/Monte Pastoriza (GAL-C),43.339181,-8.4727,,24,,1475,235,58,,2300-0800,....56.,47,,100,,, +558,G,,Israel R,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2330-2400,.....6.,9996,,105,,, +558,G,,KBS World R,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2300-2330,.....6.,9996,,105,,, +558,G,,R Fatima,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0600-0700,1234567,9996,,105,,, +558,G,,Tikkun Spectrum,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1500-1530,12345..,9996,,105,,, +558,G,ar,Arabic Spectrum,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1530-1600,12345..,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0000-0400,......7,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0700-1300,.....6.,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0700-1500,12345..,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0700-1600,......7,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1400-1600,.....6.,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2300-0400,12345..,9996,,105,,, +558,G,ar,Sawt Al-Khaleej,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2300-2400,......7,9996,,105,,, +558,G,en,China R Int.,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1600-1800,1234567,9996,,105,,, +558,G,en,China R Int.,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2100-2200,1234567,9996,,105,,, +558,G,ga,Irish Spectrum,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0000-0200,1......,9996,,105,,, +558,G,ga,Irish Spectrum,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1300-1400,.....6.,9996,,105,,, +558,G,sh,Amrit Vela,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0400-0600,1234567,9996,,105,,, +558,G,ta,ILC Tamil,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,1800-2100,1234567,9996,,105,,, +558,G,zh,China R Int.,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,2200-2300,1234567,9996,,105,,, +558,IRN,fa,IRIB R Farhang,,Gheslagh (qzv),36.019525,50.392556,,1000,,3865,100,66,,0000-2400,1234567,9902,,106,,, +558,ALG,ar,R Ouargla,,Touggourt (30),33.151389,6.065278,,10,,2108,181,68,,0800-1600,1234567,,,781,,, +558,EGY,,ERTU Educational,,Abu Za'bal (qlb),30.277667,31.368417,,100,,3170,130,69,,0400-2200,1234567,,,103,,, +558,ARS,,BSKSA R Saudi Int.,,Jeddah/Al-Nuzla (mkh),21.380875,39.420933,,50,,4436,128,84,,0500-2100,1234567,,,47059,,, +558,CHN,ug,Xinjiang RGD Uighur/CNR 13,,rmqi/Hutubi-XJTS631 (XJ),44.160694,86.923014,,120,,5727,65,94,,2300-1805,1234567,2,,47422,,, +558,SSD,,Southern Sudan R,,Bentiu (uni),9.251033,29.798289,,10,,5215,148,99,,,,,,9400009,,, +558,IND,,AIR Asmita Channel,,Mumbai B=Bombay (MH),19.186944,72.8115,,100,,6734,96,104,,1130-1840,123456,54,,47424,,, +558,IND,,AIR Asmita Channel,,Mumbai B=Bombay (MH),19.186944,72.8115,,100,,6734,96,104,,1200-1840,......7,54,,47424,,, +558,IND,,AIR Asmita Channel,,Mumbai B=Bombay (MH),19.186944,72.8115,,100,,6734,96,104,,2355-1035,1234567,54,,47424,,, +558,KEN,,KBC Western,,Kapsimotwa (rif),0.081111,35.146944,,20,,6376,145,108,,0300-2005,1234567,,,2298,,, +558,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Guma=Pishan/XJTS8110 (XJ),37.580278,78.273333,,3,,5642,77,109,,2300-1805,1234567,,,36200142,,, +558,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Kashgar=Kashi/XJTS635 (XJ),39.409722,75.921944,,1,,5355,76,111,,2300-1805,1234567,,,36200984,,, +558,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Yutian=Keriya/XJTS8111 (XJ),36.867778,81.648889,,3,,5918,75,111,,2300-1805,1234567,,,36200139,,, +558,BGD,,Bangladesh Betar,,Khulna/Noapara (Jessore) (khu),23.048872,89.379644,,100,,7537,81,112,,0000-0400,1234567,,,47418,,, +558,BGD,,Bangladesh Betar,,Khulna/Noapara (Jessore) (khu),23.048872,89.379644,,100,,7537,81,112,,0600-1710,1234567,,,47418,,, +558,KOR,ko,HLQH KBS 2 R,,Yeong-il (dae),36.081944,129.554444,,250,,8767,44,119,,1950-1800,1234567,,,47434,,, +558,BOT,,R Botswana,,Muchenje (nw),-17.953083,24.696753,,50,,7990,162,120,,0000-2400,1234567,,,20600001,,, +558,CHN,,Baotou RGD,,Baotou/NMTS530 (NM),40.614417,109.839978,,10,,7348,54,121,,2155-1600,1234567,,,47419,,, +558,MWI,en,MBC R 1,,Karonga (krg),-9.950097,33.916733,,10,,7385,150,121,,0253-2200,1234567,,,2299,,, +558,VTN,vi,VOV2,,Hồ Ch Minh/Qun Tre (hcm),10.848333,106.629167,,100,,9743,75,126,,2145-1700,1234567,,,47443,,, +558,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Jianyang/FJTS801 (FJ),27.316667,118.136111,,50,,8983,57,127,,,,,,36200143,,, +558,THA,th,Sor. Wor. Sor.,,Songkhla/Ko Yo Road (sgk),7.143611,100.571389,,50,,9664,82,129,,2130-1640,1234567,,,47441,,, +558,CHN,zh,Zalantun RGD,,Zalantun/NMTS696 (NM),48,122.741667,,1,,7357,41,131,,,,,,47421,,, +558,J,ja,JOCR CRK R Kansai,,Kobe (kns-hyo),34.548611,134.999722,,20,45,9164,41,131,,0000-1800,......7,16,,47432,,, +558,J,ja,JOCR CRK R Kansai,,Kobe (kns-hyo),34.548611,134.999722,,20,45,9164,41,131,,0000-2400,123456,16,,47432,,, +558,J,ja,JOCR CRK R Kansai,,Kobe (kns-hyo),34.548611,134.999722,,20,45,9164,41,131,,2000-2400,......7,16,,47432,,, +558,PHL,,DZXL-AM Radyo Mo-RMN News,,Obando/Paco (ncr),14.736944,120.915556,,40,,10298,62,132,,0000-2400,1234567,9996,,47436,,, +558,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Xiapu/FJTS904 (FJ),26.883333,120,,10,,9128,56,134,,,,,,36200141,,, +558,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Longyan/FJTS601 (FJ),25.061633,117.028256,,10,,9123,59,134,,,,,,36200208,,, +558,THA,,Sor. Wor. Thor. (R Thailand),,Kanchanaburi (knb),14.063333,99.486944,,10,,8985,79,134,,2200-1600,1234567,,,47440,,, +558,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Pingtan/FJTS302 (FJ),25.516667,119.783333,,10,,9241,57,135,,2155-1600,1234567,,,47420,,, +558,CHN,,Hebei RGD Nongcun Pindao,,Baoding/HBTS662 (HB),38.932778,115.443056,,1,,7796,51,135,,,,,,36200144,,, +558,CHN,,Hebei RGD Nongcun Pindao,,Shijiazhuang/HBTS717 (HB),37.830833,114.468889,,1,,7840,53,135,,,,,,36200140,,, +558,CHN,,Nujiang RGD,,Lushui/Liuku Zhen (YN),25.966667,98.833333,,1,,7918,72,136,,,,,,36200983,,, +558,AUS,en,6WA ABC Great Southern WA,,Wagin/Arthur River Road (WA),-33.336389,117.092389,,50,,14227,98,144,,0000-2400,1234567,9993,,47417,,, +558,TWN,,Fu Hsing Kuangpo Tientai 1,,Taipei (TPS),25.090206,121.511994,,1,,9378,56,145,,0000-2400,1234567,,,47442,,, +558,INS,id,R.Diantara Vita Kharisma (DVK),,Kebumen (JT-keb),-7.683889,109.670833,,0.5,,11585,84,155,,2100-1700,1234567,,,47428,,, +558,AUS,,4AM,,Atherton/Mareeba (QLD),-17.023667,145.479194,,5,,14726,58,156,,0000-2400,1234567,,,47414,,, +558,FJI,fj,R Fiji 1,,Naulu (CE-NT),-18.069833,178.532122,,12,,16168,13,157,,0000-2400,1234567,,,47423,,, +558,AUS,en,4GY Classic Hits 558,,Gympie/Wolvi (QLD),-26.170556,152.824722,,5,,15993,57,160,,0000-2400,1234567,9975,,47416,,, +558,AUS,,7BU,,Burnie/Table Cape (TAS),-40.962233,145.723206,,2,,16718,84,166,,0000-2400,1234567,,,47415,,, +558,NZL,en,R Sport,,Invercargill/Dacre (STL),-46.320278,168.621389,,5,,18577,70,168,,0000-2400,1234567,,,47435,,, +560,USA,,WGAN,,Portland (ME),43.69,-70.318056,,5,,5524,293,105,,,,0,,41473,,, +560,USA,,WFIL,,Philadelphia (PA),40.095,-75.277222,,5,,6095,292,111,,,,9983,,41386,,, +560,USA,,WHYN,,Springfield (MA),42.193611,-72.683889,,1,,5778,293,115,,,,,,41705,,, +560,USA,,WEBC,,Duluth (MN),46.643611,-91.985833,,5,,6581,308,116,,,,,,41240,,, +560,USA,,WIND,,Chicago (IL),41.565,-87.419722,,5,,6724,301,117,,,,,,41766,,, +560,CAN,en,CFOS,,Owen Sound (ON),44.544444,-80.901944,,1,,6112,300,118,,,,4,,35994,,, +560,USA,en,WXBT,,Columbia (SC),34.031944,-81.141944,,5,,6938,291,119,,,,,,43324,,, +560,USA,,WNSR,,Brentwood (D) (TN),35.908889,-86.770278,,4.5,,7138,296,122,,,,,,42510,,, +560,USA,,WGAI,,Elizabeth City (NC),36.337778,-76.246944,,0.5,,6442,289,124,,,,,,41472,,, +560,CLM,es,HJPF,,Maicao (lag),11.383333,-72.25,,25,,8238,268,125,,,,,,35901356,,, +560,CUB,es,R Rebelde,,Ciego de vila/CTOM1 (ca),21.866892,-78.720875,,10,,7782,280,125,,,,0,,36539,,, +560,USA,,KMON,,Great Falls (MT),47.424722,-111.288889,,5,,7469,319,125,,,,996,,38922,,, +560,USA,,KWTO,,Springfield (MO),36.944444,-93.221389,,4,,7440,301,125,,,,,,39761,,, +560,USA,,WRDT,,Monroe (D) (MI),41.891111,-83.4275,,0.5,,6462,299,125,,,,,,42829,,, +560,GUY,en,NCN Voice of Guyana/BBC WS,,Vreed en Hoop (dem),6.765928,-58.233056,,7,,7701,254,126,,0000-2400,1234567,,,35665,,, +560,B,pt,ZYH887 Rdio Educadora do Maranho Rural,,So Lus/S Viana (MA),-2.557817,-44.299372,,5,,7707,236,127,,,,993,,36901042,,, +560,USA,,WJLS,,Beckley (WV),37.758889,-81.186667,,0.47,,6645,294,127,,,,,,41895,,, +560,USA,,KLZ,,Denver (CO),39.843333,-104.953889,,5,,7839,311,128,,,,0,,38869,,, +560,USA,en,KPQ,,Wenatchee (WA),47.453333,-120.328611,,5,,7845,325,128,,,,6,,39158,,, +560,CAN,xx,CBDN,,Dawson (YT),64.055833,-139.413611,,0.4,,6764,344,129,,,,,,20109300,,, +560,NCG,,R 5-60 La Poderosa,,Managua (mng),12.15,-86.283333,,30,,9126,280,129,,,,,,52183,,, +560,USA,,WCKL,,Catskill (NY),42.200833,-73.835833,,0.043,,5850,293,129,,,,,,41016,,, +560,USA,,KLVI,,Beaumont (D) (TX),30.045278,-93.870833,,5,,8065,297,131,,,,,,20012579,,, +560,USA,,KLVI,,Beaumont (N) (TX),30.045556,-93.868611,,5,,8064,297,131,,,,,,38855,,, +560,USA,,WHBQ,,Memphis (TN),35.253333,-90.0475,,1,,7392,298,131,,,,9977,,41610,,, +560,ALS,,KVOK,,Kodiak (AK),57.775833,-152.535278,,1,,7648,348,133,,0000-2400,1234567,991,,39651,,, +560,B,pt,ZYK761 Paulista AM,,So Paulo/Santa Isabel (SP),-23.489167,-46.332778,,20,,9839,227,133,,,,,,36901040,,, +560,CLM,es,HJGS,,Tunja (boy),5.566667,-73.366667,,10,,8822,265,133,,,,,,37462,,, +560,EQA,es,HCRN2 C.R.E. Satelital,,Guayaquil (gua),-2.2,-79.866667,,25,,9947,266,133,,,,,,36865,,, +560,USA,,WFRB,,Frostburg (MD),39.683889,-78.965833,,0.055,,6358,294,133,,,,,,41432,,, +560,USA,en,WQAM,,Miami (FL),25.743333,-80.153889,,1,,7552,284,133,,,,,,42760,,, +560,GTM,,TGRV R 5-60,,Ciudad de Guatemala (gut),14.666667,-90.65,,10,,9198,285,134,,1200-0500,1234567,,,40540,,, +560,USA,,KSFO,,San Francisco (CA),37.745556,-122.377778,,5,,8862,321,136,,,,99841,,39349,,, +560,USA,,WMIK,,Middlesboro (KY),36.627222,-83.714444,,0.088,,6892,295,136,,,,,,42328,,, +560,VEN,es,YVRH R Nacional,,Ciudad Guayana (blv),8.35,-62.65,,1,,7853,258,136,,,,,,31300003,,, +560,CAN,xx,CBDD,,Elsa (YT),63.926111,-135.514722,,0.04,,6698,342,138,,,,,,20109077,,, +560,B,pt,ZYH456 Rdio Jornal de Itabuna,,Itabuna (BA),-14.855047,-39.349311,,2.5,,8648,225,139,,,,,,36901035,,, +560,B,pt,ZYH604 Rdio Educadora Jaguaribana,,Limoeiro do Norte (CE),-5.151917,-38.104681,,0.25,,7625,229,139,,,,,,36901031,,, +560,B,pt,ZYI695 Rdio Mana,,Mamanguape (PB),-6.817778,-35.131389,,0.25,,7643,225,139,,,,,,36901033,,, +560,PNR,es,HOH2 RPC R,,Ro Alejandro (clo),9.381969,-79.786606,,3,,8927,273,139,,,,,,37686,,, +560,USA,,WNSR,,Brentwood (N) (TN),36.141111,-86.756389,,0.075,,7119,296,139,,,,,,20012599,,, +560,USA,,WRDT,,Monroe (N) (MI),42.453611,-83.163889,,0.014,,6403,299,140,,,,,,20012575,,, +560,B,pt,ZYI395 Rdio Emissora Aruan,,Barra do Garas (MT),-15.932647,-52.283761,,2.5,,9432,236,141,,,,,,36901039,,, +560,USA,,WOOF,,Dothan (AL),31.218056,-85.352778,,0.118,,7435,292,141,,,,,,42612,,, +560,ARG,es,LRA16 R Nacional,,La Quiaca (jy),-22.118933,-65.599494,,5,,10783,243,143,,0855-0400,1234567,,,39936,,, +560,MEX,es,XEQAA-AM La Poderosa,,Chetumal (qui),18.494167,-88.298889,,1,,8708,285,143,,,,,,44597,,, +560,HND,,HRPX,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37826,,, +560,MEX,es,XESRD-AM La Tremenda,,Santiago Papasquiaro (dur),25.062306,-105.340289,,1,,9189,302,144,,,,,,44767,,, +560,MEX,es,XEXZ-AM Ke Buena,,Zacatecas (zac),22.770217,-102.631281,,1,,9237,299,144,,,,,,45078,,, +560,USA,en,KBLU,,Yuma (AZ),32.723333,-114.642778,,1,,8983,313,144,,,,,,38058,,, +560,GTM,,R Quetzal,,Malacatn (sms),14.9,-92.05,,1,,9269,286,145,,,,,,52128,,, +560,ARG,,LT15 R del Litoral,,Concordia (er),-31.383333,-58.016667,,3,,11191,232,146,,0900-0500,1234567,,,40167,,, +560,B,pt,ZYI419 Rdio Pioneira,,Tangar da Serra/Chcara So Joo (MT),-14.638883,-57.481289,,1,,9612,241,146,,,,,,36901038,,, +560,MEX,es,XEMZA-AM,,Cihuatln (jal),19.189933,-104.613436,,1,,9680,298,146,,,,,,44427,,, +560,PRU,es,OBZ4L R Oriente,,Lima (lim),-11.966667,-77.5,,2,,10645,258,146,,1000-0500,123456,,,40418,,, +560,PRU,es,OBZ4L R Oriente,,Lima (lim),-11.966667,-77.5,,2,,10645,258,146,,1100-2300,......7,,,40418,,, +560,B,pt,ZYJ214 Rdio Londrina,,Londrina/Fazenda Tres Bocas (PR),-23.438333,-51.133333,,1,,10081,231,147,,,,,,36901032,,, +560,ARG,es,LV1 R Colon,,San Juan (sj),-31.52,-68.545278,,3,,11794,239,148,,0000-2400,1234567,,,40235,,, +560,MEX,es,XEOC-AM La Mejor,,Mxico D.F/Av. Chapultepec 473 (dif),19.421967,-99.172228,,0.5,,9326,294,148,,,,,,44478,,, +560,MEX,es,XEYO-AM,,Huatabampo (son),26.755094,-109.624933,,0.5,,9276,306,148,,,,,,45103,,, +560,PRU,es,OBX1H Rmar,,Chiclayo (lam),-6.766667,-79.85,,1,,10347,263,148,,,,,,52286,,, +560,ARG,es,LRA13 R Nacional,,Baha Blanca (ba),-38.709167,-62.316667,,3,,12080,230,149,,0900-0400,1234567,,,39933,,, +560,B,pt,ZYH769 Emissora Sul Goinia AM,,Quirinpolis (GO),-18.438422,-50.453289,,0.5,,9568,233,149,,,,,,36901037,,, +560,B,pt,ZYK231 Rdio So Francisco AM,,Caxias do Sul (RS),-29.127778,-51.173056,,1,,10624,228,149,,,,,,36901043,,, +560,MEX,es,XEGIK-AM La Acerera,,Monclova (coa),26.925,-101.441667,,0.25,,8793,300,149,,,,,,34900011,,, +560,B,pt,ZYH289 Rdio Educao Rural,,Coar (AM),-4.093828,-63.137525,,0.25,,8999,251,150,,,,,,36901030,,, +560,MEX,es,XEIN-AM La Voz del Valle,,Cintalapa (cps),16.691189,-93.709461,,0.25,,9220,288,150,,,,,,44170,,, +560,B,pt,ZYL277 Rdio Difusora AM 560,,Patrocnio (MG),-18.889294,-47.075206,,0.25,,9432,230,151,,,,,,36901036,,, +560,ARG,es,LRA9 R Nacional,,Esquel (ch),-42.920011,-71.344603,,3,,12925,233,152,,1000-0400,1234567,,,39965,,, +560,B,pt,ZYJ496 Rdio Costa do Sol,,Araruama (RJ),-22.865556,-42.277128,,0.25,,9581,224,152,,,,,,36901029,,, +560,B,pt,ZYJ281 Cultura AM,,Guarapuava (PR),-25.351389,-51.422222,,0.25,,10278,230,154,,,,,,36901034,,, +561,NOR,,LF3E,b,Rudok / Draupner Platform,58.1875,2.458333,,0.025,,721,341,80,,,,,,85505,,, +561,NOR,,LF5S,b,West Epsilon,58.4375,1.708333,,0.025,,764,339,81,,,,,,86743,,, +561,NOR,,LF5V,b,Songa Dee,59.479167,1.958333,,0.025,,865,343,82,,,,,U372 ,86744,,, +561,NOR,,LF6T,b,Osebereg Sor (South),60.395833,2.791667,,0.025,,948,348,82,,,,,,86746,,, +561,NOR,,LF5B,b,Oseberg C,60.604167,2.791667,,0.025,,970,348,83,,,,2,L399 U403 ,85506,,, +561,NOR,,LF6S,b,Oseberg East,60.6875,2.958333,,0.025,,977,349,83,,,,,L404 U406 7.3s,86745,,, +562,UKR,,KN,b,Kremenchug / Velyka Kohnovka,49.104167,33.458333,,0.025,,1926,89,92,,,,,,86747,,, +562,RUS,,KO,b,Kostomuksha (KR),64.604167,30.708333,,0.025,,1961,36,93,,,,,L400 U400 ,86748,,, +563,CZE,,XU,b,Nměť nad Oslavou (VY),49.1875,16.041667,,0.025,,752,112,80,,,,,U1018 ,85508,,, +563,EGY,,DJ,b,Alexandria / Borg el Arab (aik),30.895833,29.708333,,0.025,,3027,132,103,,,,4,L397 U395 ,IDx2 + 5 gap,85507,, +564,RUS,,OK,b,Lyskovo,56.020833,45.041667,,0.025,,2524,65,98,,,,,U1055 ,85509,,, +565,RUS,,KS,b,Opalikha,55.854167,37.291667,,0.025,,2044,66,93,,,,1,L1044 U1055 30.0s,IDx2,85510,, +565,MLA,,RTM Sabah FM,,Tenom (sbh),5.133333,115.95,,10,,10864,71,140,,0230-1040,1234567,,,47445,,, +567,ROU,ro,SRR R Romnia Actualităţi,,Satu Mare (SM),47.85475,22.974222,,50,120,1272,105,53,,0000-2400,1234567,22,,124,,, +567,ROU,ro,SRR R Romnia Actualităţi,,Braşov/Bod Colonie (BV),45.753639,25.607,,50,040 200,1564,109,56,,0000-2400,1234567,,,123,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0625-0630,12345..,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0650-0700,12345..,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0800-0815,1234567,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1208-1300,12345..,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1230-1300,.....67,9990,,115,,, +567,E,es,RNE Murcia,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1400-1415,12345..,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0815-1208,12345..,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0815-1230,.....67,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1300-1400,12345..,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1300-2300,.....67,9990,,115,,, +567,E,es,RNE R 5,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,1415-2300,12345..,9990,,115,,, +567,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0630-0650,12345..,9990,,115,,, +567,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,0700-0800,12345..,9990,,115,,, +567,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,2300-0625,1234..7,9990,,115,,, +567,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,50,,1675,204,57,,2300-0800,....56.,9990,,115,,, +567,SYR,ar,SRTV 1 Dimashk,,Damascus/'Adrā (dim),33.60875,36.595583,,1000,,3167,119,59,,0000-2400,1234567,,,128,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0200-0310,12345..,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0200-0610,......7,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0200-2200,.....6.,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0357-0600,12345..,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0700-0910,12345..,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0700-2200,......7,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,1000-1233,12345..,9999,,125,,, +567,RUS,ru,R Rossii,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,1410-2200,12345..,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0310-0357,12345..,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0600-0700,12345..,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0610-0700,......7,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,0910-1000,12345..,9999,,125,,, +567,RUS,ru,Volgogradskoye R,,Volgograd (VG),48.674667,44.414222,,250,,2689,83,60,,1233-1410,12345..,9999,,125,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0625-0630,12345..,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0650-0700,12345..,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0800-0815,1234567,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1208-1300,12345..,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1230-1300,.....67,9994,,114,,, +567,E,es,RNE Mlaga/Marbella,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1400-1415,12345..,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0815-1208,12345..,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0815-1230,.....67,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1300-1400,12345..,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1300-2300,.....67,9994,,114,,, +567,E,es,RNE R 5,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,1415-2300,12345..,9994,,114,,, +567,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0630-0650,12345..,9994,,114,,, +567,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0700-0800,12345..,9994,,114,,, +567,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,2300-0625,1234..7,9994,,114,,, +567,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,2300-0800,....56.,9994,,114,,, +567,NIG,,Zamfara State R,,Gusau (zmf),12.1453,6.729394,,50,,4444,180,85,,0500-2300,1234567,,,47135,,, +567,ARS,ar,BSKSA Al-Quran al-Karim,,Afif (riy),23.860489,42.901022,,15,,4401,121,89,,0000-2400,1234567,,,47062,,, +567,NIG,,FRCN Ibadan,,Alaho (oyo),7.166667,3.8,,50,,5003,184,90,,0430-2305,1234567,,,2302,,, +567,NIG,,Imo BC,,Owerri (imo),5.521044,7.061844,,50,,5181,179,92,,0500-2300,1234567,,,47134,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0000-0110,1234567,,,46866,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0900-1110,1234567,,,46866,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,1200-1310,1234567,,,46866,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,1400-1700,1234567,,,46866,,, +567,RUS,ru,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,2100-2310,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0110-0200,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0810-0900,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,1110-1200,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,1310-1400,1234567,,,46866,,, +567,RUS,tv,GTRK Tyva,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,2310-2400,1234567,,,46866,,, +567,RUS,tv,R Rossii,,Kyzyl/RV890 (TU),51.688931,94.607611,,150,,5655,53,92,,0200-0810,1234567,,,46866,,, +567,ARS,ar,BSKSA Al-Quran al-Karim,,Abha (asr),18.289317,42.599239,,5,,4902,126,99,,0000-2400,1234567,,,47060,,, +567,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Garissa (nea),-0.521472,39.533556,,50,,6619,141,106,,0200-2110,1234567,,,2301,,, +567,IND,,AIR Northeast,,Dibrugarh (AS),27.366389,94.872778,,300,,7542,73,108,,0000-0505,1234567,,,47455,,, +567,IND,,AIR Northeast,,Dibrugarh (AS),27.366389,94.872778,,300,,7542,73,108,,0630-0930,1234567,,,47455,,, +567,IND,,AIR Northeast,,Dibrugarh (AS),27.366389,94.872778,,300,,7542,73,108,,1000-1740,1234567,,,47455,,, +567,LAO,en,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,1415-1430,12.....,,,47460,,, +567,LAO,fr,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,1415-1430,..34...,,,47460,,, +567,LAO,hm,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,0600-0700,1234567,,,47460,,, +567,LAO,hm,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,2200-2230,1234567,,,47460,,, +567,LAO,km,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,0700-0800,1234567,,,47460,,, +567,LAO,km,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,2230-2300,1234567,,,47460,,, +567,LAO,lo,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,,2300-0600,1234567,,,47460,,, +567,LAO,lo,Lao National R,,Vientiane/Km 49 (vin),18.3425,102.45,,200,,8809,74,120,SEA,0900-1600,1234567,,,47460,,, +567,J,ja,JOIK NHK1,,Sapporo (hok),43.089444,141.590833,,100,,8588,32,122,,0000-2400,1234567,5,,47458,,, +567,KOR,ko,HLKF KBS 1 R,,Jeonju/Baeksan (jeb),35.822167,126.882944,,100,,8664,46,123,,0000-2400,1234567,,,47459,,, +567,CHN,,Tianjin RGD Xiangsheng Guangbo,,Yangliuqing (TJ),39.139406,117.026567,,10,,7862,50,126,,2155-1800,1234567,,,47452,,, +567,CHN,,Zhoukou JGD,,Zhoukou (HE),33.633333,114.633333,,10,,8218,55,129,,,,,,36200982,,, +567,CHN,zh,CNR 1,,Lianyungang (JS),34.6645,119.153944,,10,,8374,52,131,,2025-1805,1234567,,,36200209,,, +567,HKG,en,RTHK R 3,,Golden Hill (stn),22.3675,114.153889,,20,,9195,63,131,,0000-2400,1234567,12,,47454,,, +567,AFS,en,Cape Talk,,Klipheuwel (WC),-33.700444,18.707778,,25,,9617,170,132,,0000-2400,1234567,25,,20300001,,, +567,THA,th,Jor. Sor. 5,,Chaiyaphum (cyp),15.85,102.066667,,5,,9001,76,137,,2200-1600,1234567,,,47467,,, +567,PHL,,DWRP-AM Radyo ng Bayan,,Naga City (cas),13.628611,123.1975,,10,,10537,61,139,,,,,,47464,,, +567,GUM,en,KGUM,,Agana (GU),13.389167,144.759444,,10,,11708,42,143,,0000-2400,1234567,,,38517,,, +567,PHL,,DXCH-AM (r:666 DZRH-AM),,Cotabato City (mag),7.216667,124.233333,,5,,11195,63,144,,,,,,47463,,, +567,AUS,,4JK ABC Northwest QLD,,Julia Creek (QLD),-20.651181,141.820903,,10,,14838,65,153,,0000-2400,1234567,1,,47447,,, +567,NZL,en,RNZ National,,Wellington/Titahi Bay (WGN),-41.096111,174.842778,,50,,18509,40,158,,0000-2400,1234567,,,47461,,, +567,AUS,,6PN ABC Northwest WA,,Pannawonica (WA),-21.661736,116.343778,,0.1,,13240,88,168,,0000-2400,1234567,,,47450,,, +567,AUS,,6PU ABC Northwest WA,,Paraburdoo (WA),-23.216578,117.665583,,0.1,,13460,89,168,,0000-2400,1234567,,,47451,,, +567,AUS,,6TP ABC Northwest WA,,Tom Price/Spur Road (WA),-22.699361,117.774583,,0.1,,13424,88,168,,0000-2400,1234567,,,47449,,, +567,AUS,,2BH,,Broken Hill (NSW),-31.939567,141.44295,,0.5,,15771,76,169,,0000-2400,1234567,10,,47446,,, +567,AUS,,6MN ABC Northwest WA,,Newman/ABC Tower (WA),-23.355433,119.715278,,0.1,,13611,87,169,,0000-2400,1234567,,,47448,,, +568,RUS,,CSH,b,Monchegorsk (MU),67.979167,33.041667,,0.025,,2265,29,96,,,,,U1055 ,85511,,, +570,NOR,,LF5F,b,Balder FPU,59.1875,2.375,,0.025,,826,344,81,,,,,U405 ,ID+1 gap,86749,, +570,NOR,,LF6Z,b,Ringhorne / Exxon Mobil Platform,59.270833,2.458333,,0.025,,834,344,81,,,,0,L398 U398 8.8s,85514,,, +570,NOR,,LF5W,b,Transocean Searcher,61.479167,4.041667,,0.025,,1052,353,83,,,,,,86750,,, +570,NOR,,LF6R,b,Visund,61.354167,2.458333,,0.025,,1055,348,84,,,,,L397 U390 ,86751,,, +570,UKR,,FU,b,Uzin,49.854167,30.458333,,0.025,,1694,89,90,,,,,,85513,,, +570,RUS,,FE,b,Oktyabrsky,54.229167,38.875,,0.025,,2157,71,95,,,,,L1035 ,85512,,, +570,CAN,en,CFCB,,Corner Brook (NL),48.936944,-57.991111,,1,,4415,292,101,,,,0,,35939,,, +570,CAN,en,CKGL,,Kitchener (ON),43.290278,-80.3525,,10,,6171,298,109,,,,2,,36108,,, +570,USA,,WSYR,,Syracuse (NY),42.986944,-76.1525,,5,,5938,295,109,,,,0,,43095,,, +570,USA,,WMCA,,New York/Kearny [NJ] (NY),40.752778,-74.104167,,5,,5972,292,110,,,,0,,42287,,, +570,CAN,en,CBNK,,Cartwright (NL),53.708611,-57.011667,,0.04,,4113,298,112,,,,,,20109078,,, +570,USA,,WKBN,,Youngstown (D) (OH),40.985,-80.6,,5,,6360,296,114,,,,,,20016066,,, +570,USA,,WKBN,,Youngstown (N) (OH),40.985278,-80.600556,,5,,6360,296,114,,,,,,41966,,, +570,CAN,,CKSW,,Swift Current (SK),50.160833,-107.816944,,10,,7073,319,118,,,,1,,36403,,, +570,USA,,WWNC,,Asheville (NC),35.596944,-82.606667,,5,,6905,293,119,,,,,,43410,,, +570,USA,,WSPZ,,Bethesda (MD),39.134167,-77.303889,,1,,6295,293,120,,,,,,43187,,, +570,VEN,es,R Villa,,Villa de Cura (arg),10.05,-67.5,,50,,8031,263,120,,0000-2400,1234567,,,45375,,, +570,CUB,es,R Reloj,,Santa Clara/CTOM1 (vc),22.447306,-79.891306,,25,,7811,281,121,,,,0,,36491,,, +570,USA,en,WNAX,,Yankton (SD),42.913056,-97.316111,,5,,7171,308,122,,,,6,,42432,,, +570,HTI,,Vision 2000,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52093,,, +570,CLM,es,HJND R Nacional de Colombia,,El Rosal (cun),4.854822,-74.266736,,100,,8946,266,124,,,,0,,37582,,, +570,USA,en,WTBN,,Pinellas Park (FL),28.211111,-82.529444,,5,,7503,287,125,,,,9998,,43112,,, +570,CAN,en,CBML,,Val-d'Or (QC),48.109722,-77.785833,,0.04,,5674,301,128,,,,,,20109079,,, +570,USA,en,KVI,,Seattle (WA),47.421944,-122.428889,,5,,7929,326,129,,,,9997,,39625,,, +570,USA,en,KLIF,,Dallas (TX),32.944444,-96.990278,,5,,8001,301,130,,,,9970,,38815,,, +570,USA,,KNRS,,Salt Lake City (UT),40.819167,-111.932222,,5,,8098,316,131,,,,17,,39014,,, +570,CAN,en,CKWL,,Williams Lake (BC),52.091389,-122.175556,,1,,7474,329,132,,,,,,36420,,, +570,DOM,,HIMS R Cristal,,Santo Domingo (sdo),18.475,-69.833333,,1,,7465,271,132,,1000-0400,1234567,,,37278,,, +570,USA,,WAAX,,Gadsden (AL),33.979167,-86.0025,,0.5,,7249,294,132,,,,,,40621,,, +570,USA,,WKYX,,Paducah (KY),37.014722,-88.612778,,0.5,,7160,298,132,,,,,,42108,,, +570,USA,,WMAM,,Marinette (WI),45.100556,-87.625,,0.1,,6460,304,132,,,,,,42272,,, +570,CTR,,TICDL R Libertad,,Desamparados (sjs),9.9,-84.066667,,10,,9173,276,134,,0000-2400,1234567,,,52142,,, +570,SLV,es,YSKT R Exus,,San Salvador (ssl),13.766667,-89.166667,,10,,9178,283,134,,,,,,45290,,, +570,CUB,es,R Rebelde,,Piln (gr),19.900169,-77.361178,,1,,7856,278,136,,,,,,52612,,, +570,B,pt,ZYH244 Rdio Novo Nordeste,,Arapiraca/Estrada da Canafstula (AL),-9.765761,-36.642294,,1,,8010,225,137,,,,,,36901056,,, +570,CHL,es,CB57 R Agricultura,,Santiago/Calera de Tango (RM),-33.583344,-70.800978,,50,,12105,239,137,,1000-0400,1234567,,,35753,,, +570,NCG,,R 5-70/R Veritas,,Chinandega (cnd),13.016667,-86.9,,5,,9092,281,137,,1030-0250,1234567,,,52184,,, +570,USA,,KLAC,,Los Angeles (CA),34.069722,-118.193333,,5,,9028,316,137,,,,7,,38770,,, +570,USA,en,WFNL,,Raleigh (NC),35.793056,-78.761389,,0.04,,6646,291,137,,,,,,41192,,, +570,B,pt,ZYH614 Rdio Uirapuru,,Itapipoca (CE),-3.488119,-39.569289,,0.25,,7538,231,138,,,,,,36901046,,, +570,B,pt,ZYL261 Rdio Capital,,Belo Horizonte (MG),-20.000878,-44.044606,,5,,9385,227,138,,,,,,36901059,,, +570,MEX,es,XEME-AM La Poderosa,,Valladolid (yuc),20.707,-88.202411,,2.5,,8510,287,138,,,,,,44367,,, +570,B,pt,ZYH890 R.Imperatriz Cidade Esperana,,Imperatriz (MA),-5.488031,-47.497317,,1,,8169,237,139,,,,,,36901054,,, +570,SLV,es,YSKT R Exus,,Santa Ana (sta),14.316667,-89.583333,,3,,9158,284,139,,,,,,45291,,, +570,MEX,es,XEVX-AM,,Comalcalco (tab),18.236203,-93.209261,,2.5,,9052,289,140,,,,,,45000,,, +570,SLV,es,YSKT R Exus,,Ahuachapn (smg),13.916667,-89.833333,,3,,9209,283,140,,,,,,45292,,, +570,USA,,WIDS,,Russell Springs (KY),37.094167,-85.080278,,0.042,,6939,296,140,,,,,,41732,,, +570,MEX,es,XEOA-AM La Mexicana,,Oaxaca (oax),17.0615,-96.759461,,2.5,,9384,291,141,,,,,,44471,,, +570,PRG,,ZP15 R LV del Amambay,,Pedro Juan Caballero (amm),-22.516667,-55.716667,,5,,10243,235,141,,0930-0100,1234567,,,45511,,, +570,B,pt,ZYH613 Rdio Verde Vale do Cariri,,Juazeiro do Norte (CE),-7.264706,-39.335436,,0.25,,7896,229,142,,,,,,36901055,,, +570,MEX,es,XELQ-AM R 570,,Morelia (mic),19.698867,-101.141022,,1.7,,9423,296,143,,,,,,44321,,, +570,PNR,es,HOS R Soberana Civilista,,Felipillo (pnm),9.071008,-79.295983,,1,,8920,272,143,,1000-0300,1234567,,,37724,,, +570,GTM,,TGPA R Palmeras,,Escuintla (esl),14.3,-90.766667,,1,,9237,284,144,,,,,,40522,,, +570,MEX,es,XETJ-AM La Mexicana,,Gmez Palacio (dur),25.566625,-103.466997,,1,,9034,301,144,,,,,,34900012,,, +570,MEX,es,XEVJP-AM R Xicotepec,,Xicotepec de Jurez (pue),20.262056,-97.956872,,1,,9175,294,144,,,,,,44969,,, +570,MEX,es,XETD-AM R RED,,Tecuala (nay),22.404086,-105.459433,,1,,9438,301,145,,,,,,44805,,, +570,B,pt,ZYK672 Rdio Difusora Taubat,,Taubat (SP),-23.033333,-45.55,,1,,9756,226,146,,,,,,36901057,,, +570,B,pt,ZYN407 Rdio Jornal,,So Jos dos Quatro Marcos (MT),-15.630556,-58.204722,,1,,9747,241,146,,,,,,36901045,,, +570,EQA,,HCRM1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,37091,,, +570,MEX,es,XEBJB-AM La Sabrosita,,San Nicols de los Garza (nvl),25.763833,-100.252883,,0.5,,8826,299,146,,,,,,43781,,, +570,B,pt,ZYJ349 Rdio Continental,,Palotina (PR),-23.866667,-53.083333,,1,,10226,232,148,,,,,,36901049,,, +570,PRU,es,OAU1M R UNPRG,,Lambayeque (lam),-6.7,-79.9,,1,,10344,263,148,,,,,,52288,,, +570,PRU,es,OCU2B,,Huamachuco (lal),-7.8,-78.066667,,1,,10317,261,148,,,,,,37000018,,, +570,MEX,es,XEUK-AM,,Caborca (son),30.725392,-112.163697,,0.25,,9044,310,150,,,,,,44907,,, +570,PRG,,ZP15 R.San Roque Gonzalez de Santa Cruz,,Ayolas (mis),-27.416667,-57,,1,,10770,233,150,,0830-0200,1234567,,,51732,,, +570,USA,,KSNM,,Las Cruces (NM),32.309167,-106.823333,,0.155,,8614,307,150,,,,,,39393,,, +570,B,pt,ZYH750 Rdio Cultura,,Catalo (GO),-18.162933,-47.956156,,0.25,,9408,231,151,,,,,,36901051,,, +570,ARG,,R Argentina,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,90,,51828,,, +570,ARG,es,R Argentina,,Lomas del Mirador (ba),-34.65,-58.533333,,1,,11517,230,152,,,,,,47112,,, +570,B,pt,ZYJ735 R.Difusora Eldorado Catarinense,,Cricima (SC),-28.695556,-49.325,,0.5,,10490,227,152,,,,,,36901058,,, +570,B,pt,ZYK267 R Dirio da Manh,,Passo Fundo/Rua Livramento 601 (RS),-28.267778,-52.416944,,0.5,,10606,229,152,,,,,,36901052,,, +570,B,pt,ZYK698 Rdio Jornal,,Nhandeara (SP),-20.684228,-50.051397,,0.25,,9761,231,152,,,,,,36901050,,, +570,B,pt,ZYK717 Bariri Rdio Clube,,Bariri (SP),-22.087244,-48.745433,,0.25,,9827,230,152,,,,,,36901047,,, +570,HWA,en,KQNG (KONG),,Eleele (DN) (HI),21.991944,-159.405833,,1,,11661,346,152,,,,,,20016301,,, +570,HWA,en,KQNG (KONG),,Lihue (U) (HI),21.9925,-159.406667,,1,,11661,346,152,,0000-2400,1234567,3,,39201,,, +570,B,pt,ZYK595 Rdio Clube de Itapeva,,Itapeva/Fazenda Boa Vista (SP),-23.958611,-48.893056,,0.25,,10014,229,153,,,,,,36901061,,, +570,B,pt,ZYJ794 Rdio Fronteira Oeste,,Dionsio Cerqueira (SC),-26.262222,-53.62,,0.25,,10480,231,155,,,,,,36901048,,, +570,USA,,KCFJ,,Alturas (CA),41.305556,-120.513889,,0.042,,8439,322,155,,,,9990,,38141,,, +570.5,XOE,,NKO,b,Noble Kolskaya Platform,56.0625,4.208333,,0.025,,462,343,78,,,,-570.5,U1020 ,85515,,, +571,SVK,,P,b,Preov/Kapusany (PO),49.0625,21.375,,0.025,,1107,102,84,,,,12,L1040 U1049 10.0s,ID+8 gap,85516,, +572,UKR,,C,b,Khmelnytskyi (KM),49.354167,26.958333,,0.025,,1473,94,88,,,,,L1057 U1027 6.0s,ID+4gap,86752,, +572,UKR,,M,b,Khmelnytskyi (KM),49.395833,26.958333,,0.025,,1471,94,88,,,,,L725 U750 3.5s,ID+2 gap,86753,, +572,RUS,,O,b,Sankt-Peterburg/Pulkovo (SP),59.770833,30.291667,,0.025,,1700,51,90,,,,0,L399 U398 10.2s,85517,,, +574,RUS,,UPM Amderma R,c,Amderma (NE),69.766667,61.666667,,1,,3393,34,91,,????-????,1234567,,,19901330,,, +575,RUS,,VQ,b,Kharkiv / Sokolniki,50.020833,36.291667,,0.025,,2086,84,94,,,,,15.0s,IDx2 + 6 gap,86754,, +576,BUL,bg,BNR Horizont,,Vidin/Gramada (RPS2) (vdn),43.839944,22.715,,400,,1517,121,46,,0000-2400,1234567,1,,131,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0625-0630,12345..,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0650-0700,12345..,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0800-0815,1234567,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1208-1300,12345..,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1230-1300,.....67,3,,134,,, +576,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1400-1415,12345..,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0815-1208,12345..,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0815-1230,.....67,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1300-1400,12345..,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1300-2300,.....67,3,,134,,, +576,E,es,RNE R 5,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,1415-2300,12345..,3,,134,,, +576,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0630-0650,12345..,3,,134,,, +576,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,0700-0800,12345..,3,,134,,, +576,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,2300-0625,1234..7,3,,134,,, +576,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,100,,1216,197,49,,2300-0800,....56.,3,,134,,, +576,ALG,ar,R Bchar,,Kenadsa (Bchar) (8),31.561667,-2.337778,,400,230,2393,201,55,,0800-1600,1234567,,,129,,, +576,IRN,ar,IRIB WS,,Bandar-e Mahshahr (kuz),30.612667,49.201667,,300,230,4207,108,74,ME,0230-1530,1234567,998,,135,,, +576,IRN,fa,IRIB R Iran,,Bandar-e Mahshahr (kuz),30.612667,49.201667,,300,230,4207,108,74,,1530-0230,1234567,998,,135,,, +576,CNR,es,RNE R Nacional,,Mesas de Galaz (RNE) (LPM-GC),28.016275,-15.516425,,25,,3237,223,75,,0000-2400,1234567,997,,132,,, +576,IRN,,IRIB R.Markaze Azerbaijaneh Gharb,,Maku (waz),39.363017,44.390867,,10,,3222,101,79,,0000-2400,1234567,,,10800033,,, +576,NIG,,FRCN Ibadan,,Ibadan/Moniya (oyo),7.523333,3.910556,,25,,4963,184,93,,0430-2305,1234567,,,2303,,, +576,OMA,,R Sultanate Oman,,Haima (wus),19.947311,56.454344,,100,,5583,110,93,,0000-2400,1234567,,,136,,, +576,ARS,ar,BSKSA Al-Quran al-Karim,,Jizan=Gizan (jzn),16.86745,42.566344,,20,,5036,127,94,,0000-2400,1234567,,,47061,,, +576,SDN,,SRTC Sudan Nat. R,,Omdurman/Al-Aitahab (kha),15.588722,32.447556,,7,,4666,141,95,,0300-0600,1234567,,,9400001,,, +576,UGA,lg,UBC Star FM,,Mawagga (mty),0.377639,32.14,,100,,6233,148,99,,0300-1200,12345..,,,2307,,, +576,UGA,lg,UBC Star FM,,Mawagga (mty),0.377639,32.14,,100,,6233,148,99,,0345-2100,.....67,,,2307,,, +576,UGA,lg,UBC Star FM,,Mawagga (mty),0.377639,32.14,,100,,6233,148,99,,1300-2100,12345..,,,2307,,, +576,NPL,,R Nepal,,Surkhet (bhe),28.605022,81.591156,,100,,6555,82,103,,2315-1720,1234567,,,47486,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,0020-0400,123456,9967,,47475,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,0020-1030,......7,9967,,47475,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,0630-0930,1234567,9967,,47475,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,1100-1740,......7,9967,,47475,,, +576,IND,,AIR South,,Allapuzha (KL),9.556944,76.325833,,200,,7804,100,112,,1115-1740,123456,9967,,47475,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Kunming/Longquan (YN),25.120672,102.752439,,100,,8242,69,119,,2215-1605,1234567,,,47471,,, +576,MYA,en,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0700-0730,1234567,,,47485,,, +576,MYA,en,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,1530-1600,1234567,,,47485,,, +576,MYA,my,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0030-0230,1234567,,,47485,,, +576,MYA,my,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0230-0330,.....67,,,47485,,, +576,MYA,my,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0330-0700,1234567,,,47485,,, +576,MYA,my,Myanmar R-National,,Yangon/Yay Kuu (ygn),16.868389,96.159519,,200,,8519,80,119,SEA,0930-1530,1234567,,,47485,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Lincang (YN),23.9,100.033333,,20,,8171,72,126,,,,,,36200976,,, +576,AFS,en,R Veritas,,Meyerton (GT),-26.583986,28.170017,,50,,9004,160,127,,0000-2400,1234567,998,,2304,,, +576,CHN,,Luoyang RGD Xinwen,,Luoyang (HE),34.660833,112.476111,,10,,8006,56,127,,????-1600,1234567,,,47472,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Dali/SARFT653 (YN),25.716667,100.166667,,10,,8025,71,127,,2215-1600,1234567,,,47470,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Dongchuan/YNTS696 (YN),26.0825,103.191111,,10,,8187,68,129,,,,,,36200979,,, +576,VTN,vi,VOV2,,Nha Trang/Đồng Đế (kho),12.284539,109.186839,,50,,9783,72,129,,2200-1600,1234567,,,47499,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Funing (YN),23.616667,105.633333,,10,,8555,68,132,,,,,,36200978,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Wenshan/YNTS703 (YN),23.335278,104.298889,,10,,8495,69,132,,,,,,36200973,,, +576,J,,JOHG NHK1,,Kagoshima/Kirishima-Shi (kyu-kag),31.726389,130.735278,,10,,9238,45,135,,0000-2400,1234567,,,47478,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Ruili (YN),24.020556,97.873333,,1,,8020,74,137,,,,,,36200974,,, +576,THA,th,Tor. Chor. Dor.,,Bangkok/Bang Khen (bmp),13.683333,100.55,,5,,9089,78,137,,????-1700,1234567,,,47496,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Baoshan/YNTS702 (YN),26.366667,104.5,,1,,8246,67,139,,,,,,36200981,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Chuxiong/YNTS692 (YN),25.020511,101.555006,,1,,8174,70,139,,,,,,36200980,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Simao/YNTS655 (YN),22.81,100.978333,,1,,8326,72,140,,,,,,50571,,, +576,PHL,,DYMR-AM Radyo ng Bayan,,Cebu City/CSCST Compound (ceb),10.3,123.883333,,10,,10887,62,140,,2100-1300,1234567,,,47488,,, +576,PHL,,DZHR-AM (r:666 DZRH-AM),,Tuguegarao City (cag),17.6,121.75,,5,,10083,59,140,,,,,,47491,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Jinping (YN),24.05,104.2,,1,,8427,69,141,,,,,,36200977,,, +576,PHL,tl,DXMF-AM Bombo Radyo,,Davao City (dvs),7.05,125.583333,,10,,11292,62,141,,????-1415,1234567,,,47490,,, +576,PHL,tl,DZMQ-AM Radyo ng Bayan,,Dagupan City (pgs),16.033333,120.333333,,5,,10144,61,141,,????-1007,1234567,,,47489,,, +576,CHN,,Yunnan RGD Xinwen Guangbo,,Mengla (YN),21.466667,101.583333,,1,,8481,73,142,,,,,,36200975,,, +576,KOR,,HLKZ KBS 3 R,,Suncheon (jen),34.926111,127.520556,,1,,8779,46,143,,2000-1800,1234567,,,47481,,, +576,CHN,,Quanzhou RGD Xinwen Pindao,,Quanzhou/FJTS401 (FJ),24.882722,118.596917,,1,,9230,58,144,,2200-1805,1234567,,,47473,,, +576,CHN,,Zhejiang zhi Sheng,,Linhai (ZJ),28.85,121.116667,,1,,9010,54,144,,,,,,36200805,,, +576,CHN,,Zhejiang zhi Sheng,,Taizhou (ZJ),28.612222,121.415278,,1,,9048,54,144,,,,,,47474,,, +576,J,ja,JODG NHK1,,Hamamatsu (chu-shi),34.674167,137.764167,,1,,9272,38,145,,0000-2400,1234567,,,47477,,, +576,J,,NHK R 1,,Ofunato (toh-iwa),39.091389,141.714722,,0.5,,8992,34,147,,0000-2400,1234567,,,47479,,, +576,INS,id,R Hutama Buana Swara,,Tangerang/Ciledug (BT-tan),-6.234444,106.704167,,1,,11257,86,151,,2150-1700,1234567,,,35400122,,, +576,AUS,en,2RN ABC National,,Sydney/Prestons (NSW),-33.942097,150.885556,,50,,16545,68,152,,0000-2400,1234567,0,,47469,,, +576,NZL,en,1XLR Southern Star,,Hamilton/Greenhill Road (WKO),-37.74295,175.306458,,2,,18199,33,171,,0000-2400,1234567,,,47487,,, +579,RUS,,TH,b,Takhtalym,55.895833,61.708333,,0.025,,3541,61,108,,,,,U303 ,85521,,, +580,UKR,,HS,b,Kacha,44.770833,33.541667,,0.025,,2145,102,94,,,,,L910 U908 15.0s,IDx2,85522,, +580,UKR,,KC,b,Kacha,44.729167,33.541667,,0.025,,2148,102,94,,,,,U1015 ,IDx2 + 5 gap,85523,, +580,CAN,en,CFRA,,Ottawa (ON),45.201389,-75.723889,,10,,5753,297,105,,,,1,,36002,,, +580,USA,,WTAG,i,Worcester (MA),42.336944,-71.820833,,5,,5714,292,107,,,,0,,43100,,, +580,USA,,WHP,i,Harrisburg (PA),40.303056,-76.951944,,5,,6185,293,112,,,,9993,,41683,,, +580,USA,en,WCHS,,Charleston (WV),38.364167,-81.768056,,5,,6634,295,116,,,,,,41002,,, +580,PTR,es,WKAQ,,San Juan (PR),18.432222,-66.135833,,10,,7216,268,119,,0000-2400,1234567,98,,41953,,, +580,USA,,WGAC,,Augusta (D) (GA),33.512222,-82.08,,5,,7039,291,120,,,,,,20012549,,, +580,USA,en,WTCM,,Traverse City (MI),44.721667,-85.705,,1.1,,6379,303,120,,,,9965,,43120,,, +580,VEN,,YVMJ LV de la Fe,,Maracaibo (zul),10.666667,-71.716667,,50,,8264,267,123,,0000-2400,1234567,,,45381,,, +580,CAN,en,CKWW,,Windsor (ON),42.172778,-83.048056,,0.5,,6418,299,124,,,,,,36421,,, +580,USA,,WIBW,,Topeka (KS),39.084722,-95.782778,,5,,7407,304,124,,,,,,41722,,, +580,USA,en,WDBO,,Orlando (FL),28.619722,-81.409722,,5,,7396,287,124,,,,9991,,41129,,, +580,B,pt,ZYI776 RBN-Rdio Boas Novas,,Recife (PE),-8.066667,-34.883333,,10,,7756,224,125,,,,995,,36901073,,, +580,USA,,KMJ,,Fresno (CA),36.659167,-119.346389,,50,,8833,319,126,,,,4,,38909,,, +580,USA,,WKTY,,La Crosse (WI),43.740278,-91.205833,,0.74,,6768,305,126,,,,,,42082,,, +580,DOM,es,HIAS R Montecristi,,San Fernando de Montecristi (mci),19.835675,-71.638142,,3,,7473,273,127,,0000-2400,1234567,2,,52227,,, +580,USA,,WGAC,,Augusta (N) (GA),33.524722,-81.908611,,0.84,,7027,291,128,,,,,,41470,,, +580,B,pt,ZYJ465 Rdio Relgio 580 AM,,Rio de Janeiro/So Gonalo (RJ),-22.778467,-42.993639,,50,,9606,225,129,,,,9992,,36901075,,, +580,CUB,es,R Rebelde,,Mabujabo (gu),20.360681,-74.521503,,2.5,,7625,276,129,,,,,,36597,,, +580,CLM,es,HJHP R Nacional de Colombia,,Cali/Jamund (val),3.263356,-76.503172,,25,,9238,266,131,,,,,,37477,,, +580,PRU,,OAX2E R Maran,,Jan/Fila Alta (caj),-5.7345,-78.792114,,50,,10184,263,131,,1000-0200,.....6.,,,40280,,, +580,PRU,,OAX2E R Maran,,Jan/Fila Alta (caj),-5.7345,-78.792114,,50,,10184,263,131,,1000-0400,12345..,,,40280,,, +580,PRU,,OAX2E R Maran,,Jan/Fila Alta (caj),-5.7345,-78.792114,,50,,10184,263,131,,1100-1800,......7,,,40280,,, +580,USA,,KIDO,,Nampa (ID),43.559722,-116.400556,,5,,8048,320,131,,,,,,38584,,, +580,B,pt,ZYI905 Rdio Itamaraty,,Piripiri (PI),-4.299514,-41.766872,,1,,7735,232,134,,,,,,36901074,,, +580,USA,,KJMJ,,Alexandria (LA),31.308333,-92.415833,,1,,7868,297,136,,,,9990,,38678,,, +580,USA,,WILL,,Urbana (IL),40.080833,-88.236111,,0.1,,6890,300,136,,,,,,41754,,, +580,EQA,,HCPC2,,Guayaquil (gua),-2.2,-79.9,,10,,9949,266,137,,,,,,37059,,, +580,USA,,KZMX,,Hot Springs (SD),43.456667,-103.476111,,0.31,,7447,312,137,,,,,,39895,,, +580,ARG,es,LW1 R Universidad Nacional,,Crdoba (cb),-31.325,-64.225,,25,,11528,236,138,,0800-0500,1234567,,,47113,,, +580,BOL,es,CP91 R Panamricana,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1100-0400,123456,,,36719,,, +580,BOL,es,CP91 R Panamricana,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1100-2400,......7,,,36719,,, +580,MEX,es,XEMU-AM,,Piedras Negras (coa),28.737772,-100.514144,,2.5,,8577,301,138,,,,,,44417,,, +580,PRU,es,OAX4M R Maria,,Lima/Comas (lim),-11.915278,-77.061111,,12,,10611,258,138,,1100-0400,1234567,,,37000002,,, +580,USA,,KUBC,,Montrose (CO),38.425556,-107.8825,,1,,8116,312,138,,,,,,39563,,, +580,USA,,WKSK,,West Jefferson (NC),36.410833,-81.496111,,0.034,,6771,293,139,,,,,,42070,,, +580,USA,en,WACQ,,Tuskegee (AL),32.376667,-85.657778,,0.139,,7359,293,139,,,,,,40859,,, +580,B,pt,ZYH785 Rdio Tocantins AM,,Porto Nacional (TO),-10.7,-48.416667,,2,,8718,235,140,,,,,,36901070,,, +580,USA,,WYHM,,Rockwood (TN),35.827778,-84.655278,,0.049,,7015,295,140,,,,,,42569,,, +580,USA,,KANA,,Anaconda (MT),46.128611,-112.923611,,0.197,,7658,320,141,,,,,,37947,,, +580,USA,,WELO,,Tupelo (MS),34.238056,-88.695278,,0.095,,7394,296,141,,,,,,41289,,, +580,USA,en,KTMT,,Ashland (OR),42.164167,-122.647778,,1,,8444,324,141,,,,,,39513,,, +580,USA,en,WLVA,,Lynchburg (VA),37.420833,-79.115278,,0.014,,6541,292,141,,,,,,42250,,, +580,B,pt,ZYK318 Rdio Ftima,,Vacaria (RS),-28.4725,-50.926944,,5,,10549,228,142,,,,,,36901071,,, +580,USA,en,WPGU472,,Columbus (OH),39.966667,-83,,0.01,,6585,297,143,,,,,,20010435,,, +580,GTM,,TGY R Progreso,,Ciudad de Guatemala (gut),14.566667,-90.616667,,1,,9204,284,144,,1100-0600,1234567,,,40559,,, +580,HND,,HRZQ R Tegucigalpa,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37892,,, +580,MEX,es,XEHP-AM La Mas Prendida,,Ciudad Victoria (tam),23.718869,-99.131328,,1,,8940,297,144,,,,,,44133,,, +580,NCG,,YNEA R 5-80,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,1000-0400,1234567,,,52185,,, +580,PNR,es,HOH4 RPC R,,Quiteo (chq),8.463844,-82.401131,,1,,9185,274,144,,,,,,37688,,, +580,B,pt,ZYH799 Rdio Serra Azul,,Caiapnia/Fazenda Santa Luzia (GO),-16.972156,-51.810994,,1,,9504,235,145,,,,,,36901064,,, +580,B,pt,ZYJ327 Rdio Auriverde de Pitanga,,Pitanga (PR),-24.770278,-51.750556,,2,,10240,231,145,,,,,,36901063,,, +580,MEX,es,XEAV-AM Canal 58,,Guadalajara (jal),20.612989,-103.298678,,1,,9472,298,145,,,,,,43742,,, +580,MEX,es,XEFI-AM,,Chihuahua (chi),28.609906,-106.050269,,0.7,,8907,305,145,,,,,,44008,,, +580,USA,,KRFE,,Lubbock (TX),33.533333,-101.820556,,0.29,,8227,305,145,,,,,,39239,,, +580,B,pt,ZYI387 Rdio Imaculada Conceio,,Campo Grande (MS),-20.423644,-54.613583,,1,,9986,235,147,,,,,,36901069,,, +580,MEX,es,XEYI-AM Mix,,Cancn (qui),21.164267,-86.843011,,0.25,,8382,286,147,,,,,,45092,,, +580,USA,,KSAZ,,Marana (AZ),32.453056,-111.284444,,0.39,,8837,311,147,,,,9962,,39326,,, +580,B,pt,ZYL328 Rdio Amrica,,Uberlndia (MG),-18.843328,-48.255625,,0.5,,9489,231,148,,,,,,36901062,,, +580,PRU,,OCY2L R El Sol,,La Esperanza (lal),-8.083333,-79.05,,1,,10408,261,148,,,,,,37000019,,, +580,USA,en,WPVV612,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20010434,,, +580,ARG,es,LU20 R Chubut La 20,,Trelew (ch),-43.280672,-65.295261,,5,,12634,229,149,,0800-0500,1234567,,,40215,,, +580,B,pt,ZYH477 Rdio Difusora,,Teixeira de Freitas/Fazenda Caraipe (BA),-17.507222,-39.726667,,0.25,,8929,224,149,,,,,,36901065,,, +580,MEX,,XEHO-AM,,Ciudad Obregn (son),27.576194,-109.942606,,0.25,,9217,307,150,,,,,,44131,,, +580,MEX,es,XEUAQ-AM R Universidad,,Quertaro (que),20.590422,-100.412364,,0.25,,9298,296,151,,,,,,44888,,, +580,B,pt,ZYK540 Rdio Voc,,Americana (SP),-22.714789,-47.303606,,0.25,,9813,228,152,,,,,,36901067,,, +580,B,pt,ZYK724 Som Lider Rdio Regional,,Palmital (SP),-22.790519,-50.205444,,0.25,,9970,230,153,,,,,,36901066,,, +580,PRG,,ZP61,,Neembuco (neb),-27,-58,,0.5,,10786,234,153,,,,,,45553,,, +580,ARG,es,R Andina,,San Rafael (mz),-34.616667,-68.333333,,1,,12051,237,154,,,,,,33000059,,, +580,B,pt,ZYJ330 Rdio Grande Lago,,Santa Helena (PR),-24.873056,-54.298889,,0.25,,10386,232,154,,,,,,36901076,,, +580,URG,,CX58 R Clarin,,Montevideo (mo),-34.783333,-56.216667,,0.5,,11410,228,155,,0000-2400,1234567,,,36823,,, +580,B,pt,ZYK299 Rdio So Gabriel,,So Gabriel (RS),-30.3,-54.305556,,0.25,,10895,230,156,,,,,,36901068,,, +581,RUS,,DM,b,Moskva/Ramenskoe (MV),55.604167,38.041667,,0.025,,2091,67,94,,,,,L580 U582 14.8s,IDx2,85525,, +583,RUS,,RMP Russian Navy R,c,Kaliningrad/Baltic Fleet (KA),54.716667,20.5,,1,,976,67,67,,????-????,1234567,,,19901340,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0625-0630,12345..,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0650-0700,12345..,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0800-0815,1234567,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1208-1300,12345..,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1230-1300,.....67,9999,,141,,, +585,E,es,RNE Madrid,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1400-1415,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0630-0650,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0700-0800,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0815-1208,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,0815-1230,.....67,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1300-0620,......7,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1300-0800,.....6.,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1300-1400,12345..,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1415-0620,1234...,9999,,141,,, +585,E,es,RNE R Nacional,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,600,,1512,215,44,,1415-0800,....5..,9999,,141,,, +585,TUN,ar,RTT R Nationale,,Gafsa (gaf),34.469556,8.836417,,200,,1971,173,54,,0400-2400,1234567,9999,,147,,, +585,G,en,BBC R Scotland,,Dumfries (SC-DGA),55.028056,-3.479444,,2,,728,300,61,,0600-2400,1234567,0,,143,,, +585,G,en,BBC WS,,Dumfries (SC-DGA),55.028056,-3.479444,,2,,728,300,61,,0000-0600,1234567,0,,143,,, +585,CVA,Ang,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1100-1130,......7,999,,140,,, +585,CVA,Aud,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0920-1000,..3....,999,,140,,, +585,CVA,L,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0630-0700,123456,999,,140,,, +585,CVA,Ros,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1940-2000,1234567,999,,140,,, +585,CVA,en,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0730-0745,1234567,999,,140,,, +585,CVA,en,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1715-1730,1234567,999,,140,,, +585,CVA,fr,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0715-0730,1234567,999,,140,,, +585,CVA,fr,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1200-1215,123456,999,,140,,, +585,CVA,fr,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1700-1715,1234567,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0700-0715,123456,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,0830-0930,......7,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1100-1115,123456,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1300-1330,1234567,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1630-1700,1234567,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,1830-1900,1234567,999,,140,,, +585,CVA,it,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,SEu,2200-2315,1234567,999,,140,,, +585,RUS,ru,R Rossii,,Sylva (PR),58.022778,56.734444,,150,,3192,58,67,,2300-1900,1234567,0,,146,,, +585,IRN,fa,IRIB R Quran,,Tehran (thr),35.592278,51.244569,,600,,3954,100,69,,0000-2400,1234567,0,,144,,, +585,ARS,ar,BSKSA Idha'atu-i Riyadh/Idha'atu Nedaa al-Islam,,Ar-Riyad (riy),24.826139,46.879111,,1200,218,4552,116,72,,0300-2300,1234567,0,,139,,, +585,IND,,AIR West,,Nagpur (MH),21.200833,79.145556,,300,,6996,90,102,,0200-0500,1234567,0,,47516,,, +585,IND,,AIR West,,Nagpur (MH),21.200833,79.145556,,300,,6996,90,102,,0700-0900,123456,0,,47516,,, +585,IND,,AIR West,,Nagpur (MH),21.200833,79.145556,,300,,6996,90,102,,1130-1740,123456,0,,47516,,, +585,IND,,AIR West,,Nagpur (MH),21.200833,79.145556,,300,,6996,90,102,,1200-1740,......7,0,,47516,,, +585,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Chumbum (zbw),-6.151667,39.217028,,10,,7185,143,119,,0300-0600,1234567,,,2310,,, +585,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Chumbum (zbw),-6.151667,39.217028,,10,,7185,143,119,,0900-2100,1234567,,,2310,,, +585,CHN,,Zhongguo Dongnan GG,,Fuzhou/Wenshanzhou (FJ),25.972333,119.288506,,200,135,9171,57,121,,2255-1650,1234567,,,47507,,, +585,CHN,,Jinchang RGD,,Jinchang (GS),38.533056,102.213611,,3,,7083,60,123,,,,,,47509,,, +585,CHN,zh,Jiangsu RGD Gushi Guangbo,,Nanjing/Gulizhen (JS),31.861022,118.673067,,50,,8601,54,125,,2130-1700,1234567,,,47512,,, +585,CHN,zh,Langfang RGD Gushi Pindao,,Langfang (HB),39.528056,116.731667,,10,,7812,50,125,,2055-1700,1234567,,,36200968,,, +585,CHN,,Changchun RGD,,Changchun (JL),43.8,125.4,,10,,7855,42,126,,,,,,36200971,,, +585,CHN,,Jincheng RGD Xinwen Pindao,,Jincheng (SX),35.511711,112.857272,,10,,7953,55,127,,,,,,47511,,, +585,CHN,zh,Nanyang RGD,,Nanyang (HE),32.975278,112.498333,,10,,8155,57,129,,2155-1600,1234567,,,47514,,, +585,CHN,zh,Jingzhou RGD Jiankang,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,2100-1600,1234567,,,36200969,,, +585,LAO,lo,LNR Savannakht R,,Savannakht (skt),16.578089,104.746494,,20,,9114,73,131,,2200-1230,1234567,,,47524,,, +585,J,,JOPG NHK1,,Kushiro (hok),42.990278,144.4125,,10,,8697,30,133,,0000-2400,1234567,,,47521,,, +585,INS,id,RRI Pro-4,,Surabaya (JI-ksu),-7.500833,112.523611,,50,,11763,82,136,,2130-1700,1234567,0,,47517,,, +585,THA,th,Thor. Phor. Saam,,Phrae/Rat Uthit Road (pre),18.145833,100.156944,,5,,8675,76,136,,????-1400,1234567,,,47534,,, +585,CHN,,Henan RGD Xinxi Guangbo,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,,,,,36200972,,, +585,THA,th,Wor. Por. Thor. 15,,Chumphon/Fort Khet Udomsak (cpn),10.511111,99.109722,,5,,9270,81,138,,,,,,47533,,, +585,CHN,ko,Yanbian RGD,,Hunchun (JL),42.866667,130.35,,1,,8163,39,139,,,,,,36200970,,, +585,PHL,,DXCP-AM Radyo Totoo,,General Santos City (sco),6.119444,125.187222,,5,,11354,63,144,,2000-1500,1234567,,,47528,,, +585,PHL,tl,DYLL-AM Radyo ng Bayan,,Iloilo City/Molo (ilo),10.716667,122.566667,,2,,10769,63,147,,,,,,47529,,, +585,PNG,,NBC Kundu-R Sandaun,,Vanimo (san),-2.7,141.283333,,10,,13125,53,147,,1930-1200,12345..,,,51416,,, +585,J,ja,NHK R 1,,Koza (kns-wak),33.515556,135.830833,,0.5,,9301,40,148,,0000-2400,1234567,,,47520,,, +585,J,,NHK R 1,,Iwakuni (chg-yam),34.161389,132.233611,,0.3,,9076,43,149,,0000-2400,1234567,,,47518,,, +585,AUS,en,6PB ABC Newsr,,Perth/Hamersley (WA),-31.853592,115.8228,,10,,14027,97,150,,0000-2400,1234567,,,47505,,, +585,PNG,,NBC Karai National R,,Port Moresby/Waigani (ncd),-9.429722,147.184444,,10,,14096,51,151,,1930-1400,1234567,,,47531,,, +585,J,ja,NHK R 1,,Maizuru (kns-kyo),35.475556,135.390556,,0.1,,9091,40,154,,0000-2400,1234567,,,47522,,, +585,AUS,,2WEB Outback R,,Bourke/Mitchell St (NSW),-30.099722,145.982833,,10,,15918,69,157,,0000-2400,1234567,9970,,47503,,, +585,SMA,,KJAL,,Tafuna (AS),-14.357778,-170.776667,,5,,15810,356,159,,????-1000,1234567,,,38655,,, +585,AUS,en,7RN ABC National,,Hobart/Ralphs Bay (TAS),-42.925367,147.498578,,10,,16963,86,160,,0000-2400,1234567,,,47504,,, +585,NZL,mi,2XR R Ngati Porou,,Ruatoria (GIS),-37.887222,178.321111,,2,,18313,25,171,,0000-2400,1234567,,,47526,,, +588,UKR,,SF,b,Simferopol (KR),45.104167,33.958333,,0.025,,2154,100,95,,,,4,L1014 U1018 ,ID+8 gap,85528,, +588,UKR,,SK,b,Simferopol (KR),45.020833,33.958333,,0.025,,2159,100,95,,,,,,85529,,, +588,UKR,,SN,b,Simferopol (KR),45.020833,33.958333,,0.025,,2159,100,95,,,,997,L1025 U1020 ,ID+8 gap,85530,, +588,RUS,,W,b,Kurumoch / Samara,53.520833,50.125,,0.025,,2896,69,102,,,,,,86755,,, +590,CAN,en,VOCM,,Saint John's (NL),47.543889,-52.777778,,20,,4157,287,86,,,,999,,40615,,, +590,UKR,,GO,b,Gostomel,50.5625,30.208333,,0.025,,1655,87,90,,,,,L1017 ,IDx2 + 5 gap,85532,, +590,RUS,,FR,b,Kaluga / Trabtsevo (KL),54.604167,36.291667,,0.025,,1987,70,93,,,,,L1052 ,85531,,, +590,CAN,en,CJCL,,Toronto/Grimsby (ON),43.151017,-79.536697,,50,,6133,298,101,,,,1,,36157,,, +590,USA,,WEZE,,Boston (MA),42.406667,-71.087222,,5,,5662,292,107,,,,999,,41347,,, +590,USA,,WARM,,Scranton (PA),41.478889,-75.880833,,5,,6031,294,110,,,,,,40742,,, +590,CAN,en,CJCW,,Sussex (NB),45.685,-65.523889,,0.25,,5088,292,114,,,,,,36160,,, +590,USA,,WROW,,Albany (NY),42.573611,-73.786667,,1,,5820,294,115,,,,9973,,42904,,, +590,USA,,WKZO,,Kalamazoo (MI),42.348611,-85.563333,,5,,6553,300,116,,,,,,42113,,, +590,VEN,es,YVKL R Continente,,Caracas (dcf),10.49565,-66.963319,,50,,7956,263,120,,0000-2400,1234567,989,,45356,,, +590,CAN,,CFAR,,Flin Flon (MB),54.801111,-101.853056,,1,,6419,320,121,,,,,,35931,,, +590,USA,,WMBS,,Uniontown (PA),39.859722,-79.745556,,1,,6393,295,121,,,,,,42285,,, +590,CUB,es,R Musical Nacional,,La Julia (Bataban) (my),22.805239,-82.244911,,25,,7938,283,122,,,,9998,,31600049,,, +590,USA,,KXSP,,Omaha (DN) (NE),41.315278,-95.997778,,5,,7233,306,122,,,,2,,39086,,, +590,USA,,KXSP,,Omaha (U) (NE),41.316667,-95.997778,,5,,7233,306,122,,,,,,20016202,,, +590,USA,,WDWD,,Atlanta (GA),33.845278,-84.644444,,4.5,,7175,293,122,,,,,,41222,,, +590,USA,,WJMS,,Ironwood (MI),46.423611,-90.208333,,1,,6502,307,122,,,,,,20016043,,, +590,ALS,en,KHAR,,Anchorage (AK),61.12,-149.895278,,5,,7250,348,123,,0000-2400,1234567,2,,38526,,, +590,CUB,es,R Rebelde,,Guantnamo/CTOM1 (gu),20.1419,-75.254311,,10,,7693,276,124,,,,,,36590,,, +590,USA,,WVLK,,Lexington (KY),38.111667,-84.5775,,1,,6827,296,125,,,,9941,,43306,,, +590,CLM,es,HJCR W R,,Medelln (ant),6.306169,-75.593011,,50,,8909,268,126,,,,1,,37377,,, +590,USA,en,KQNT,,Spokane (WA),47.615278,-117.249167,,5,,7706,323,127,,,,,,39203,,, +590,USA,,KFNS,,Wood River (IL),38.928611,-90.085556,,1,,7092,301,128,,,,,,38414,,, +590,USA,en,WDIZ,,Panama City (FL),30.172222,-85.613611,,2.5,,7539,291,128,,0000-2400,1234567,,,41164,,, +590,B,pt,ZYJ700 Rdio Roraima AM,,Boa Vista (RR),2.816667,-60.666667,,10,,8215,253,129,,,,,,36901085,,, +590,DOM,es,HIDV R Santa Maria,,Concepcin de La Vega (veg),19.263069,-70.531539,,1,,7446,272,131,,0900-0300,1234567,,,37241,,, +590,CAN,en,CFTK,,Terrace (BC),54.501111,-128.515556,,1,,7451,333,132,,,,986,,36014,,, +590,USA,,WCAB,,Rutherfordton (NC),35.393056,-81.923056,,0.228,,6878,292,132,,,,,,40943,,, +590,HTI,,R Ti Moun,,Port-au-Prince (oue),18.516667,-72.316667,,1,,7631,273,133,,,,,,52094,,, +590,USA,,KUGN,,Eugene (OR),44.100833,-123.051667,,5,,8273,325,133,,,,9909,,39567,,, +590,B,pt,ZYH445 Rdio Cruzeiro da Bahia,,Salvador/Ilha de Itaparica (BA),-12.921853,-38.631039,,5,,8421,225,134,,,,,,36901090,,, +590,USA,,KSUB,,Cedar City (D) (UT),37.6975,-113.181111,,5,,8446,315,134,,,,11,,39427,,, +590,USA,en,WLES,,Lawrenceville/Bon Air (VA),37.514444,-77.507778,,0.058,,6432,291,134,,,,,,42155,,, +590,B,pt,ZYL249 Rdio Cultura de Monlevade,,Joo Monlevade (MG),-19.821719,-43.17275,,10,,9325,226,135,,,,,,36901087,,, +590,MEX,es,XEPH-AM Sabrosita 590,,Mxico D.F/Iztacalco (dif),19.388756,-99.125003,,10,,9326,294,135,,,,,,44547,,, +590,USA,,KID,,Idaho Falls (ID),43.559722,-111.920833,,1,,7847,317,135,,,,,,38582,,, +590,USA,en,WAFC,,Clewiston (FL),26.729722,-80.913333,,0.47,,7520,285,135,,,,,,40662,,, +590,B,pt,ZYI213 Rdio Tribuna,,Cariacica (ES),-20.260189,-40.348211,,5,,9232,224,137,,,,86,,36901083,,, +590,CTR,,TIRN R Nacional,,San Jos (sjs),9.933333,-84.016667,,5,,9166,276,137,,0000-2400,1234567,,,40603,,, +590,GTM,,TGRQ R Quich,,Santa Cruz del Quich (qch),15.037483,-91.153853,,5,,9198,285,137,,1100-0400,1234567,,,40535,,, +590,USA,,KCSJ,,Pueblo (CO),38.358333,-104.636944,,1,,7954,310,137,,,,,,38209,,, +590,USA,en,WPFP979,,Fort Lee (NJ),40.877653,-74.010992,,0.01,,5957,292,137,,,,,,20010444,,, +590,USA,en,WPFP980,,Jersey City (NJ),40.710983,-74.077658,,0.01,,5974,292,137,,,,,,20010443,,, +590,ARG,es,LS9 R Continental,,Buenos Aires (df),-34.884694,-58.670861,,25,,11546,230,138,,0000-2400,1234567,4,,40159,,, +590,USA,,KGLE,,Glendive (MT),47.097222,-104.785833,,0.111,,7197,315,138,,,,,,38489,,, +590,USA,,WWLX,,Lawrenceburg (TN),35.203333,-87.3275,,0.133,,7230,296,138,,,,,,43404,,, +590,B,pt,ZYI420 Rdio CBN Cuiab,,Cuiab (MT),-15.660839,-55.988928,,5,,9619,239,139,,,,,,36901089,,, +590,B,pt,ZYI692 Rdio Serrana,,Araruna (PB),-6.516667,-35.733333,,0.25,,7642,226,139,,,,,,36901078,,, +590,MEX,es,XECJU-AM,,Jarretaderas (nay),20.699578,-105.269714,,5,,9582,299,139,,,,,,43848,,, +590,USA,,KLBJ,,Austin (TX),30.237778,-97.629722,,1,,8274,300,140,,,,,,38779,,, +590,USA,en,WNVY510,,Frederick (MD),39.410989,-77.433583,,0.01,,6283,293,140,,,,,,20010437,,, +590,USA,en,WPBJ222,,Bethesda (MD),39.015389,-77.127694,,0.01,,6293,292,140,,,,,,20010441,,, +590,USA,en,WPBJ222,,Clarksburg (MD),39.2315,-77.294358,,0.01,,6287,293,140,,,,,,20010446,,, +590,USA,en,WPBJ222,,Germantown (MD),39.144325,-77.209417,,0.01,,6289,293,140,,,,,,20010442,,, +590,USA,en,WPBJ222,,Potomac (MD),38.995111,-77.164694,,0.01,,6297,292,140,,,,,,20010440,,, +590,USA,en,WPBJ222,,Rockville (MD),39.077656,-77.164972,,0.01,,6291,292,140,,,,,,20010438,,, +590,USA,en,WPBJ222,,Rockville (MD),39.127656,-77.177472,,0.01,,6288,292,140,,,,,,20010439,,, +590,B,pt,ZYH627 Rdio Vale do Rio Poty,,Crates (CE),-5.193233,-40.639256,,0.25,,7761,231,141,,,,,,36901077,,, +590,B,pt,ZYJ234 Rdio Difusora AM,,Curitiba/Quatro Barras (PR),-25.401372,-49.053836,,5,,10161,228,141,,,,,,36901086,,, +590,USA,,KSUB,,Cedar City (N) (UT),37.697222,-113.183056,,1,,8446,315,141,,,,11,,20016051,,, +590,HND,,HRLP9,,Juticalpa (ola),14.666667,-86.216667,,1,,8902,281,143,,,,,,37794,,, +590,USA,en,WPCF719,,Appleton/3433 W College Ave (WI),44.2625,-88.460992,,0.01,,6572,304,143,,,,,,20010436,,, +590,ARG,es,LV12 R Independencia,,San Miguel del Tucumn (tm),-26.816667,-65.216667,,5,,11182,239,144,,0000-2400,1234567,,,40238,,, +590,B,pt,ZYJ240 Rdio Difusora Regional,,Cruzeiro do Oeste (PR),-23.781944,-53.834722,,2.7,,10258,233,144,,,,,,36901080,,, +590,CHL,es,CA59 R.Santa Maria de Guadalupe,,Antofagasta (AN),-23.466667,-70.4,,5,,11198,245,144,,1000-0430,1234567,,,35703,,, +590,EQA,,HCFA4,,Portoviejo (man),-0.916667,-80.45,,2,,9874,267,144,,,,,,36928,,, +590,HND,,HRLP8,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37793,,, +590,HWA,en,KSSK,,Honolulu (HI),21.323889,-157.875556,,7.5,,11708,345,144,,0000-2400,1234567,2,,39415,,, +590,MEX,es,XEBH-AM La Mejor,,Hermosillo (son),29.079692,-110.922669,,1,,9131,308,144,,,,,,43777,,, +590,MEX,es,XEE-AM R Frmula 1,,Durango (dur),24.054564,-104.622661,,1,,9239,301,144,,,,,,43950,,, +590,NCG,,La Voz de Chontales,,Juigalpa (cht),12.083333,-85.4,,1,,9073,279,144,,,,,,33700009,,, +590,PNR,es,HOH3 RPC R,,Chitr (her),8.001672,-80.441544,,1,,9092,272,144,,,,,,37687,,, +590,USA,en,KTIE,,San Bernardino (CA),34.072222,-117.297778,,0.96,,8985,316,144,,,,8,,39487,,, +590,B,pt,ZYH798 Rdio Manchester,,Anpolis (GO),-16.328889,-48.98795,,1,,9287,233,145,,,,,,36901091,,, +590,MEX,es,XEZZZ-AM Triple Z,,Tapachula (cps),14.928764,-92.271108,,1,,9281,286,145,,,,,,45169,,, +590,PRG,,ZP32 R Ycuamandyyu,,Villa de San Pedro (spd),-24.116667,-57,,2.5,,10464,235,145,,0900-0200,1234567,,,45529,,, +590,USA,en,KZHS,,Hot Springs (AR),34.498611,-92.979167,,0.067,,7631,299,145,,,,,,38031,,, +590,B,pt,ZYK643 Rdio 79,,Ribeiro Preto (SP),-21.198322,-47.856106,,1,,9695,229,146,,,,,,36901079,,, +590,EQA,,HCSP1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,37135,,, +590,MEX,es,XEFD-AM La Mejor,,Ro Bravo (tam),25.978611,-98.070278,,0.5,,8675,297,146,,,,,,43999,,, +590,USA,,KTHO,,South Lake Tahoe (CA),38.916667,-119.962778,,0.5,,8644,320,146,,,,5,,39483,,, +590,B,pt,ZYK534 Rdio Atlntica AM,,Santos/Guaruj (SP),-23.948917,-46.269222,,1,,9881,227,147,,,,,,36901088,,, +590,ARG,es,LRA30 R Nacional,,San Carlos de Bariloche (rn),-41.133406,-71.274447,,5,,12772,234,149,,0855-0400,1234567,,,39951,,, +590,B,pt,ZYJ901 Rdio Progresso AM,,Descanso (SC),-26.8175,-53.513333,,1,,10526,231,149,,,,,,36901084,,, +590,CHL,es,CD59 R Chilena Solonoticias,,Punta Arenas/Cerro Mirador (MA),-53.159475,-70.975044,,10,,13727,225,149,,1000-0430,1234567,,,35905,,, +590,PRU,,OCX6V R Catedral,,Miraflores (are),-16.366667,-71.333333,,1,,10628,250,149,,,,,,37000020,,, +590,MEX,es,XEGTO-AM,,Guanajuato (gua),21.100556,-101.398056,,0.25,,9312,297,151,,,,,,44084,,, +590,B,pt,ZYK210 Rdio Difusora Alegretense,,Alegrete (RS),-29.791667,-55.769444,,0.5,,10924,231,153,,,,,,36901092,,, +590,B,pt,ZYK612 Rdio Clube Mirandpolis,,Mirandpolis (SP),-21.175,-51.061111,,0.25,,9862,232,153,,,,,,36901081,,, +590,CHL,,CC59 R Hebron,,Concepcin (BI),-36.816667,-73.033333,,1,,12511,238,155,,0000-2400,1234567,,,35832,,, +590,USA,en,WPJM932,,Mill Valley/300 E Blithedale Ave (CA),37.911011,-122.544364,,0.01,,8853,321,163,,,,,,20010445,,, +591,RUS,,RN,b,Penza (PZ),53.104167,45.041667,,0.025,,2579,72,99,,,,995,L1020 U1000 ,IDx2,85533,, +591,RUS,,WH,b,Penza (PZ),53.104167,45.041667,,0.025,,2579,72,99,,,,,L1020 ,IDx2 + 6 gap,85534,, +592,RUS,,AG,b,Morozovsk (RO),48.354167,41.791667,,0.025,,2525,85,98,,,,,L420 ,IDx2 + 7 gap,85535,, +592,RUS,,CS,b,Morozovsk (RO),48.354167,41.791667,,0.025,,2525,85,98,,,,,L404 15.0s,IDx2 + 6 gap,85536,, +592,UZB,,GR,b,Guzar (qas),38.618056,66.238056,,0.025,,4759,84,121,,,,,,34500014,,, +594,POR,pt,Rdio Sim,,Muge (san),39.092167,-8.695889,,60,,1857,225,58,,0000-2400,1234567,11,,157,,, +594,ARS,ar,BSKSA Idha'atu-i Riyadh/Idha'atu Nedaa al-Islam,,Duba (tbk),27.449167,35.591111,,2000,300,3658,127,61,,0245-1500,1234567,4,,148,,, +594,MRC,ar,SNRT Al Ida Al-Watania,,Oujda (otl),34.663,-1.908194,,50,,2050,202,61,,0400-0100,1234567,986,,156,,, +594,SYR,ar,SRTV 2 Sawt al-Sha'ab,,Saraqeb (idl),35.872722,36.799,,100,,2992,115,67,,0400-2000,1234567,9991,,162,,, +594,SVN,sl,R Odmev,,Cerkno (go),46.116667,13.983333,,0.6,,864,137,68,,1400-1800,1234567,,,161,,, +594,SVN,sl,R Primorski Val,,Cerkno (go),46.116667,13.983333,,0.6,,864,137,68,,1800-1400,1234567,,,161,,, +594,RUS,ru,R Rossii,,Izhevsk (UD),57.146811,53.140961,,40,,2998,61,71,,0200-2200,1234567,9993,,159,,, +594,IRN,fa,IRIB R Fars,,Shiraz/Dehnow (frs),29.450194,52.645556,,400,,4528,105,76,,0000-2400,1234567,9982,,155,,, +594,NIG,ha,FRCN Kaduna,,Kaduna/Jaji (kdn),10.821183,7.567514,,100,,4592,178,83,,0400-2305,1234567,0,,2313,,, +594,ARS,ar,BSKSA Idha'atu-i Riyadh,,Makkah (mkh),21.372511,39.690175,,50,,4451,127,85,,0000-2400,1234567,,,10600006,,, +594,IRQ,,People's (Al-Nas) R,,Baghdad (bgh),33.35,44.383333,,5,,3674,110,87,,0400-1500,1234567,,,47310,,, +594,ETH,,ERTA Ethiopia National R,,Bahir Dar (amh),11.592722,37.366778,,100,,5291,137,90,,0300-0600,1234567,,,46831,,, +594,ETH,,ERTA Ethiopia National R,,Bahir Dar (amh),11.592722,37.366778,,100,,5291,137,90,,0800-2100,1234567,,,46831,,, +594,ARS,ar,BSKSA Idha'atu-i Riyadh,,Al-Hofuf=Al-Hufuf (shy),25.273611,49.581944,,10,,4681,113,94,,0300-2300,1234567,,,10600003,,, +594,AFG,,R Faryab,,Maimana (fyb),35.916667,64.75,,7,,4850,88,97,,1230-1430,1234567,,,46809,,, +594,IND,,AIR East/AIR G.O.S.,,Chinsurah/Magra (WB),23.027528,88.353056,,1000,,7469,81,102,,0130-0535,1234567,0,,47546,,, +594,IND,,AIR East/AIR G.O.S.,,Chinsurah/Magra (WB),23.027528,88.353056,,1000,,7469,81,102,,0800-1100,1234567,0,,47546,,, +594,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.6488,91.253056,,300,,7116,74,103,,2250-1700,1234567,,,47543,,, +594,MYA,en,Myanmar R/Padauk Myay R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.182172,96.140722,,200,,8233,77,116,SEA,1530-1600,1234567,,,22100002,,, +594,MYA,my,Myanmar R/Padauk Myay R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.182172,96.140722,,200,,8233,77,116,SEA,0230-0330,.....67,,,22100002,,, +594,MYA,my,Myanmar R/Padauk Myay R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.182172,96.140722,,200,,8233,77,116,SEA,0930-1530,1234567,,,22100002,,, +594,MYA,my,Myanmar R/Padauk Myay R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.182172,96.140722,,200,,8233,77,116,SEA,2300-0230,1234567,,,22100002,,, +594,J,,JOAK NHK1,,Shobu/Kuki (kan-sai),36.070833,139.624722,,300,,9211,36,120,,0000-2400,1234567,9998,,47548,,, +594,MWI,en,MBC R 1,,Lilongwe (lgw),-14.003667,33.751806,,30,,7809,152,120,,0253-2200,1234567,,,2311,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Jinan (SD),36.700278,117.089444,,50,,8081,52,121,,2100-1600,1234567,,,47542,,, +594,CHN,bo,Xizang RGD,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,2100-1805,1234567,,,36201231,,, +594,CHN,bo,Xizang RGD,,Nagarz=Langkazi (XZ),28.963,90.398306,,1,,7116,75,128,,2100-1805,1234567,,,36201232,,, +594,VTN,vi,VOV1,,Đ Nẵng (dan),16.083889,108.231111,,50,,9384,71,128,,2145-1700,1234567,,,47561,,, +594,CHN,bo,Xizang RGD,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,2100-1805,1234567,,,36201331,,, +594,CHN,bo,Xizang RGD,,Qonggyai=Qiongjie (XZ),29.029167,91.683333,,1,,7195,75,129,,2100-1805,1234567,,,47545,,, +594,CHN,bo,Xizang RGD,,Zhanang (XZ),29.323611,91.686111,,1,,7171,74,129,,2100-1805,1234567,,,36201333,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Jining (SD),35.466667,116.583333,,10,,8164,53,129,,2100-1600,1234567,,,36200966,,, +594,KOR,,HLAG KBS 1 R,,Yeongju (gsb),36.845278,128.61,,10,,8651,44,133,,0000-2400,1234567,,,47549,,, +594,PHL,,DZBB-AM Super Radyo,,Obando/Panghulo (bul),14.697739,120.944744,,20,,10304,62,135,,0000-2400,1234567,10,,47553,,, +594,TWN,,Fu Hsing Kuangpo Tientai 1,,Kaohsiung/Niaosun (KH),22.649553,120.3471,,10,,9536,58,135,,0000-2400,1234567,,,47558,,, +594,TWN,,Fu Hsing Kuangpo Tientai 2,,Taipei (TPS),25.090206,121.511994,,10,,9378,56,135,,0000-2400,1234567,,,47560,,, +594,THA,th,Phon Por. Tor. Or.,,Bangkok/Kiak Kai Junction (bmp),13.797694,100.523736,,5,,9078,78,137,,????-1745,1234567,,,47557,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Zibo (SD),36.8,118.05,,1,,8124,51,138,,2100-1600,1234567,,,36201334,,, +594,TWN,,Fu Hsing Kuangpo Tientai 2,,Taichung (TC),24.136983,120.598661,,5,,9414,57,138,,0000-2400,1234567,,,47559,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Yantai (SD),37.5675,121.360556,,1,,8227,48,139,,2100-1600,1234567,,,36200965,,, +594,CHN,zh,Shandong RGD Jingji Pindao,,Qingdao (SD),36.05,120.333333,,1,,8312,50,140,,2100-1600,1234567,,,36201332,,, +594,PHL,tl,DYWR-AM Bombo Radyo,,Tacloban City (lyt),11.216667,125,,10,,10869,60,140,,,,,,47554,,, +594,PHL,,DXDB-AM Radyo Totoo,,Malaybalay (buk),8.133333,125.116667,,5,,11163,62,144,,2000-1200,1234567,,,47552,,, +594,AUS,en,3WV ABC Western Victoria,,Horsham/Dooen (VIC),-36.640528,142.255417,,50,,16184,81,150,,0000-2400,1234567,7,,47539,,, +594,INS,id,R SBY-Sekuntum Bunga Yonina,,Jakarta (JK),-6.201667,106.851389,,1,,11264,86,151,,,,,,47811,,, +594,NZL,,3XL NZs Rhema,,Timaru/Saint Andrews (CAN),-44.515556,171.198333,,5,,18613,59,168,,0000-2400,1234567,,,47550,,, +594,NZL,en,NZs Rhema,,Wanganui/Cameron Rd W (MWT),-39.902222,174.979722,,2,,18400,37,172,,0000-2400,1234567,,,47551,,, +595,RUS,,G,b,Moskva/Vnukovo (MV),55.604167,37.208333,,0.025,,2039,67,93,,,,,U596 ,85537,,, +595,RUS,,O,b,Moskva/Vnukovo (MV),55.604167,37.291667,,0.025,,2044,67,93,,,,0,L1020 U1020 14.66s,85539,,, +595,RUS,,I,b,Kirovsk / Apatity (MU),67.479167,33.625,,0.025,,2252,30,95,,,,,15.1s,85538,,, +595,RUS,,W,b,Chertovitskoye / Vorenezh (VN),51.8125,39.208333,,0.025,,2228,78,95,,,,,,85540,,, +596,RUS,,KD,b,Sankt-Peterburg/Pushkin (SP),59.6875,30.375,,0.025,,1702,51,90,,,,,U1090 14.8s,IDx2,86756,, +597.5,XOE,,OPR,b,UNID - Ocean Princess ???,56.395833,2.041667,,0.025,,554,331,79,,,,-597.5,L412 U380 6.7s,86757,,, +597.5,XOE,,DPA,b,Morecambe British Gas Platform,53.854167,-3.625,,0.025,,699,290,80,,,,500,L~400 U~400 ,85542,,, +598,NOR,,LF4Q,b,Snorre B,60.854167,3.458333,,0.025,,989,351,83,,,,0,L407 U401 8.5s,85546,,, +598,NOR,,LF4Y,b,Polar Pioneer,60.729167,3.541667,,0.025,,974,351,83,,,,,,86758,,, +598,NOR,,LF6K,b,Troll C / Norsk Hydro Platform,60.895833,3.625,,0.025,,992,351,83,,,,,L433 U376 ,86759,,, +598,UKR,,F,b,Ivano-Frankovsk (IF),48.895833,24.708333,,0.025,,1339,98,86,,,,,L1057 ,IDx2 + 8.6 tone,85543,, +599,RUS,,GL,b,Nishnyaya Pesha,66.770833,47.791667,,0.025,,2770,38,101,,,,,30.3s,IDx2,85547,, +600,CAN,en,CBNA,,Saint Anthony (NL),51.367778,-55.615556,,10,,4138,294,88,,,,5,,35791,,, +600,UKR,,KR,b,Tchervonobirka,50.604167,29.291667,,0.025,,1591,87,89,,,,,L1040 U1020 30.0s,IDx2,85550,, +600,RUS,,GO,b,Andreapol (TV),56.645833,32.291667,,0.025,,1739,63,90,,,,0,L996 U998 15.0s,IDx2 + 4.5 gap,85549,, +600,RUS,,PQ,b,Andreapol (TV),56.645833,32.291667,,0.025,,1739,63,90,,,,997,L981 U976 15.0s,IDx2 + 3 gap,85551,, +600,CAN,en,CKAT,,North Bay (ON),46.179167,-79.463333,,5,,5908,300,109,,,,83,,35941,,, +600,USA,,WCAO,i,Baltimore (MD),39.429722,-76.761667,,5,,6239,292,112,,,,9984,,40945,,, +600,CAN,en,CJWW,,Saskatoon (SK),52.073611,-106.810833,,8,,6864,320,117,,,,996,,36240,,, +600,CUB,es,R Rebelde,,Urbano Noris/San Germn (ho),20.590286,-76.146736,,50,,7716,277,117,,,,9999,,36564,,, +600,USA,,WSJS,,Winston-Salem (NC),36.116667,-80.357222,,5,,6722,292,117,,,,,,43010,,, +600,USA,,WFST,,Caribou (ME),46.886667,-68.045556,,0.127,,5168,295,118,,,,,,41442,,, +600,USA,,KSJB,,Jamestown (ND),46.8175,-98.709444,,5,,6920,312,119,,,,0,,39368,,, +600,USA,,WICC,,Bridgeport (CT),41.16,-73.164722,,0.5,,5883,292,119,,,,9984,,41724,,, +600,USA,en,WMT,,Cedar Rapids (IA),42.061111,-91.545,,5,,6922,304,119,,,,2,,42398,,, +600,CAN,en,CBAX,,McAdam (NB),45.580556,-67.3425,,0.04,,5209,293,123,,,,,,20109081,,, +600,PTR,es,WYEL,,Mayaguez (PR),18.1775,-67.170833,,5,,7308,269,123,,,,997,,40659,,, +600,USA,,WBOB,,Jacksonville (D) (FL),30.3,-81.759444,,5,,7280,288,123,,,,,,40930,,, +600,USA,,WREC,,Memphis (TN),35.194722,-90.01,,5,,7395,298,124,,,,0,,42832,,, +600,CLM,es,HJHJ R Libertad,,Barranquilla (atl),10.916667,-74.766667,,50,,8451,270,125,,,,123,,37472,,, +600,CUB,es,R Progreso,,Santiago de Cuba/CTOM2 (sc),20.100044,-75.8203,,5,,7735,277,127,,,,,,31600039,,, +600,USA,,WBOB,,Jacksonville (N) (FL),30.3,-81.758056,,1.8,,7280,288,127,,,,,,20016038,,, +600,USA,,WSNL,,Flint (MI),42.9075,-83.835278,,0.25,,6408,300,127,,,,,,43036,,, +600,B,pt,ZYK278 Rdio Gacha,,Porto Alegre/BR-116 (RS),-29.999278,-51.287833,,100,,10712,227,129,,,,9998,,36901098,,, +600,CAN,en,CBLV,,Bancroft (ON),45.05,-77.858056,,0.04,,5893,298,130,,,,,,20109080,,, +600,USA,,WCHT,,Escanaba (MI),45.805278,-87.170278,,0.134,,6380,304,130,,,,,,41003,,, +600,VEN,,YVSW R Alto Llano,,Santa Brbara de Barinas (bns),7.8125,-71.179722,,15,,8476,265,130,,0900-0500,1234567,,,51649,,, +600,DOM,,R Studio 600 AM,,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,,,,,52228,,, +600,USA,,KGEZ,,Kalispell (MT),48.161111,-114.280833,,1,,7532,322,132,,,,,,38468,,, +600,USA,,WFRM,,Coudersport (PA),41.753056,-78.000833,,0.046,,6142,295,132,,,,,,41435,,, +600,B,pt,ZYH287 Rdio Municipal,,So Gabriel da Cachoeira (AM),-0.12715,-67.089222,,10,,8902,257,133,,,,,,36901096,,, +600,USA,,KTBB,,Tyler (TX),32.271667,-95.206389,,2.5,,7954,299,133,,,,,,39455,,, +600,B,pt,ZYH920 Rdio Mirante AM,,So Lus (MA),-2.577256,-44.302506,,1,,7709,236,134,,,,,,36901093,,, +600,NCG,es,YNLD La Nueva R Ya,,Managua (mng),12.077778,-86.031944,,10,,9116,279,134,,0000-2400,.....67,,,52186,,, +600,NCG,es,YNLD La Nueva R Ya,,Managua (mng),12.077778,-86.031944,,10,,9116,279,134,,1000-0600,12345..,,,52186,,, +600,USA,,WSOM,,Salem (OH),40.829722,-80.930278,,0.045,,6392,296,134,,,,,,43043,,, +600,USA,,KROD,,El Paso (TX),31.915556,-106.3925,,5,,8626,307,135,,,,,,39279,,, +600,USA,en,WVAR,,Richwood (WV),38.230556,-80.546944,,0.055,,6568,294,135,,,,,,43279,,, +600,USA,,KOGO,i,San Diego (CA),32.721111,-117.069444,,5,,9103,315,137,,,,0,,39063,,, +600,B,pt,ZYH617 Rdio Cultura,,Aracati/Rua So Pedro (CE),-4.555403,-37.761378,,0.25,,7549,229,138,,,,,,36901095,,, +600,GTM,,TGRC Emisoras Unidas Campesina,,Escuintla (esl),14.266667,-91.366667,,5,,9280,285,138,,,,,,40526,,, +600,USA,,KCOL,,Wellington (CO),40.65,-105.0475,,0.5,,7773,311,138,,,,9996,,38193,,, +600,USA,,WKYH,,Paintsville (KY),37.789167,-82.784444,,0.043,,6742,295,138,,,,,,42105,,, +600,BOL,,CP190 R ACLO,,Sucre (cqs),-19.062336,-65.281231,,10,,10488,244,139,,0900-0200,1234567,,,51961,,, +600,SLV,,YSNK,,San Salvador (ssl),13.666667,-89.2,,3,,9189,283,140,,,,,,45302,,, +600,MEX,es,XETA-AM 600 Solo Hits,,Heroica Zitcuaro (mic),19.4325,-100.356944,,2.5,,9398,295,141,,,,,,44785,,, +600,ARG,,LU5 R Neuquen,,Neuqun (nq),-38.872783,-68.108792,,20,,12406,234,142,,0900-0500,1234567,,,51789,,, +600,B,pt,ZYI789 Cardeal Arcoverde AM,,Arcoverde (PE),-8.422689,-37.04025,,0.25,,7896,226,142,,,,,,36901099,,, +600,MEX,es,XEZ-AM R Frmula 2,,Mrida (yuc),21.048667,-89.635019,,1,,8574,288,142,,,,,,45115,,, +600,B,pt,ZYH486 Rdio Vale do Rio Grande AM,,Barreiras/Fazenda Venha (BA),-12.129758,-44.999294,,1,,8668,231,143,,,,45,,36901097,,, +600,HND,,HRLP13,,Choluteca (cho),13.266667,-87.166667,,1,,9088,281,144,,,,,,37780,,, +600,MEX,es,XECV-AM,,Ciudad Valles (slp),21.975561,-99.005775,,1,,9087,295,144,,,,,,43889,,, +600,USA,,WCVP,,Murphy (NC),35.066667,-83.999444,,0.02,,7035,294,144,,,,,,41110,,, +600,B,pt,Rdio Difusora de Rio Real,,Rio Real (BA),-11.444722,-37.869722,,0.25,,8237,225,145,,,,,,36901094,,, +600,CLM,es,HJZ95,,Barbacoas (nar),1.65,-78.166667,,1,,9493,267,145,,,,,,35901362,,, +600,MEX,es,XEHW-AM La Kaona,,El Rosario (sin),22.863056,-105.978333,,1,,9426,301,145,,,,,,44150,,, +600,MEX,es,XEBB-AM La Comadre,,Acapulco (gue),16.793889,-99.815833,,1,,9601,293,146,,,,,,43760,,, +600,MEX,es,XEMN-AM La Regiomontana,,Monterrey (nvl),25.720942,-100.264467,,0.5,,8830,299,146,,,,,,44392,,, +600,MEX,es,XEOCH-AM K'in R,,Ococingo (cps),16.908056,-92.0975,,0.5,,9096,287,147,,,,,,44481,,, +600,BOL,,Remisoras del Recobro,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,,,,,51962,,, +600,PRU,,OBX2B R Star,,Trujillo (lal),-8.116667,-79.033333,,1,,10410,261,148,,0000-2400,1234567,,,37000021,,, +600,MEX,es,XELAZ-AM La Mejor,,Sayula (jal),19.899181,-103.524433,,0.5,,9550,298,149,,,,,,44283,,, +600,MEX,es,XEDN-AM R Noticias,,Gmez Palacio (dur),25.566625,-103.466997,,0.25,,9034,301,150,,,,,,43924,,, +600,USA,,WVOG,,New Orleans (LA),29.956944,-90.159167,,0.031,,7843,294,150,,,,,,43326,,, +600,CHL,,CD60 R Tricolor,,Osorno (LL),-40.566667,-73.116667,,2.5,,12828,236,152,,1000-0500,1234567,,,35906,,, +600,USA,,KERB,,Kermit (TX),31.834722,-103.136111,,0.091,,8452,304,152,,,,,,38336,,, +600,USA,en,WPKJ773,,Bartow (FL),27.9,-81.85,,0.01,,7484,287,152,,,,,,20010447,,, +600,CHL,es,CB60 R Monumental,,Santiago (RM),-33.213156,-70.793889,,1,,12073,239,154,,0000-2400,1234567,,,35754,,, +600,PRU,,OAX6S R Cultura Toquepala,,Ilabaya (tac),-17.5,-70.5,,0.25,,10676,249,155,,,,,,40341,,, +600,PRU,,OCX6D R Cultural,,Ilabaya (tac),-17.416667,-70.516667,,0.25,,10669,249,155,,,,,,37000022,,, +600,USA,,KVNA,,Flagstaff (AZ),35.200556,-111.613611,,0.048,,8600,312,156,,,,,,39642,,, +602,YEM,ar,YGCRT Yemen R,,Hizyaz (sna),15.225,44.25,,1,,5285,127,110,,????-2300,1234567,0,,12000001,,, +603,F,fr,France Info,,Lyon/Tramoyes (01),45.875833,4.950833,,300,,701,189,39,,0000-2400,1234567,2,,169,,, +603,ROU,ro,SRR R Romnia Actualităţi,,Botoşani (BT),47.725444,26.673461,,50,50,1525,101,55,,0000-2400,1234567,0,,176,,, +603,ROU,de,SRR R Bukarest,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,0820-0830,......7,,,177,,, +603,ROU,de,SRR R Bukarest,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,1200-1300,123456,,,177,,, +603,ROU,ro,SRR Antena Satelor,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,0600-0820,......7,,,177,,, +603,ROU,ro,SRR Antena Satelor,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,0600-1200,123456,,,177,,, +603,ROU,ro,SRR Antena Satelor,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,0830-2200,......7,,,177,,, +603,ROU,ro,SRR Antena Satelor,,Bucureşti/Herăstrău (BU),44.477033,26.051619,,50,175,1675,113,57,,1300-2200,123456,,,177,,, +603,ROU,ro,SRR R Romnia Actualităţi,,Oradea/Rontău (BH),46.999403,22.005028,,14,,1257,111,58,,0000-2400,1234567,0,,175,,, +603,E,es,RNE R 5,,Sevilla/La Corchuela (AND-SE),37.230933,-5.978653,,50,,1917,215,59,,0000-2400,1234567,18,,167,,, +603,G,en,BBC R 4,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,2,,613,304,60,,0600-0100,1234567,0,,170,,, +603,G,en,BBC WS,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,2,,613,304,60,,0100-0600,1234567,0,,170,,, +603,ROU,ro,SRR R Oltenia-Craiova,,Drobeta-Turnu Severin (MH),44.645556,22.638656,,14,65,1453,118,60,,0000-2400,1234567,40,,174,,, +603,G,en,Gold,,Littlebourne (EN-KNT),51.2875,1.158611,,1,,373,258,61,,0000-2400,1234567,9996,,171,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0625-0630,12345..,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0650-0700,12345..,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0800-0815,1234567,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1208-1300,12345..,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1230-1300,.....67,,,166,,, +603,E,es,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1400-1415,12345..,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0815-1208,12345..,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0815-1230,.....67,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1300-1400,12345..,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1300-2300,.....67,,,166,,, +603,E,es,RNE R 5,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,1415-2300,12345..,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0630-0650,12345..,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0700-0800,12345..,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0711-0800,.....67,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,2300-0625,1234..7,,,166,,, +603,E,es,RNE R Nacional,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,2300-0710,....56.,,,166,,, +603,E,pt,RNE Castilla y Len,,Palencia/Monte Viejo (CAL-P),41.945556,-4.527222,,5,,1398,220,64,,0710-0711,.....67,,,166,,, +603,S,,R Nord,,Sala (MW) (vm),59.91185,16.649844,,1,,1073,32,68,,0000-2400,9999999,,,6800008,,, +603,CYP,el,CyBC-RIK Trito Prog.,,Nicosia (kyp-nic),35.053092,33.296217,,10,,2849,121,76,,0000-2400,1234567,7,,164,,, +603,EGY,ar,ERTU Al-Barnameg al-Aam/ERTU Al-Quran al-Karim,,Baranis (bar),23.928417,35.418111,,100,,3981,131,77,,0000-2400,1234567,,,168,,, +603,IRQ,ar,Republic of Iraq R,,Mosul=Msil (nnw),36.353944,43.231556,,20,,3365,107,78,,0130-2315,1234567,996,,2359,,, +603,IRQ,en,Republic of Iraq R,,Mosul=Msil (nnw),36.353944,43.231556,,20,,3365,107,78,,2315-0130,1234567,996,,2359,,, +603,NIG,,BRTV Borno R,,Maiduguri (brn),11.721044,13.298433,,50,,4534,170,85,,0400-2305,1234567,,,2323,,, +603,IRN,fa,IRIB R Khorasan-e Razavi,,Bajgiran (rkh),37.620989,58.41105,,10,,4295,91,90,,,,,,10800035,,, +603,IRN,fa,IRIB R Iran/IRIB R Quran,,Zahedan (sib),29.481339,60.862711,,50,,5075,98,91,,0200-2130,1234567,9895,,172,,, +603,NIG,,OGBC R,,Abeokuta (ogu),7.168614,3.301706,,25,,5005,184,93,,0400-2400,1234567,,,2474,,, +603,IND,,AIR North,,Ajmer (RJ),26.518889,74.716111,,200,,6255,89,97,,0025-0415,1234567,,,47594,,, +603,IND,,AIR North,,Ajmer (RJ),26.518889,74.716111,,200,,6255,89,97,,0700-0940,1234567,,,47594,,, +603,IND,,AIR North,,Ajmer (RJ),26.518889,74.716111,,200,,6255,89,97,,1130-1740,1234567,,,47594,,, +603,CHN,ug,Yili RGD,,Yining=Gulja (XJ),43.916667,81.466667,,1,,5403,68,111,,,,,,47591,,, +603,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar=Haila'er/NMTS763 (NM),49.301111,119.804167,,50,,7110,42,111,,0210-0700,1.34567,,,47572,,, +603,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar=Haila'er/NMTS763 (NM),49.301111,119.804167,,50,,7110,42,111,,0900-1440,1234567,,,47572,,, +603,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar=Haila'er/NMTS763 (NM),49.301111,119.804167,,50,,7110,42,111,,2130-0210,1234567,,,47572,,, +603,CHN,,CNR 2/rmqi JGD,,Karamay/XJTS7605 (XJ),45.606111,84.845833,,1,,5499,64,112,,,,,,47585,,, +603,CHN,,Shihezi RGD Wenyi Pinl,,Shihezi/XJTS7606 (XJ),44.2925,86.058333,,1,,5665,65,114,,,,,,47583,,, +603,CHN,zh,CNR 3,,rmqi (XJ),43.583333,87.5,,1,,5804,65,115,,,,,,36200948,,, +603,KOR,ko,HLSA KBS 2 R,,Namyang (seo),37.252133,126.748236,,500,,8524,45,115,,2000-1805,1234567,1,,47600,,, +603,CHN,,China R Int.,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,,1100-1200,1234567,2,,47568,,, +603,CHN,vi,China R Int.,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,,0400-0600,1234567,2,,47568,,, +603,CHN,vi,China R Int.,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,,1300-1600,1234567,2,,47568,,, +603,CHN,vi,China R Int.,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,,2300-0100,1234567,2,,47568,,, +603,CHN,vi,Voice of Russia,,Dongfang/SARFT871 (HA),18.893,108.655683,,600,288,9162,69,117,SEA,1200-1300,1234567,2,,47568,,, +603,TZA,sw,TBC Taifa,,Dodoma (ddo),-5.899678,35.680194,,10,,7021,147,117,,0200-2100,1234567,,,2316,,, +603,CHN,,Henan RGD Xinxi Guangbo,,Zhengzhou (HE),34.7,113.7,,100,,8072,55,118,,0000-2400,1234567,,,47593,,, +603,CHN,zh,Shanxi RGD Nongcun Guangbo,,Taiyuan/Gaohuacun (SX),37.532778,112.453056,,50,,7755,54,118,,2100-1600,1234567,,,36200949,,, +603,CHN,,Shaanxi JGD Fortune R.,,Xi'an/Caotan-SATS1 (SA),34.385556,108.950556,,25,,7827,59,121,,2200-1610,1234567,,,47587,,, +603,CHN,mn,Ordos RGD Mongyol,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,10,,7431,54,121,,,,,,47569,,, +603,CHN,,Ordos RGD,,Ulanhot (NM),46.083333,122.083333,,10,,7497,43,122,,,,,,36200136,,, +603,IND,,AIR FM Gold,D,Chinsurah/Magra (WB),23.027528,88.353056,,10,,7469,81,122,,,,,,32200050,,, +603,CHN,zh,CNR 1,,Yumen (GS),40.266667,97.033333,,1,,6635,62,123,,2025-1805,1234567,,,36200940,,, +603,CHN,bo,Qinghai RGD/CNR 11,,Golmud/SARFT916 (QH),36.418189,94.996833,,1,,6813,67,125,,2250-1600,1234567,,,36201281,,, +603,CHN,zh,Beijing RGD Gushi,,Beijing/BJTS804 (BJ),39.953928,116.495494,,10,,7763,50,125,,2130-1600,1234567,,,47565,,, +603,CHN,zh,CNR 1,,Jiuquan (GS),39.759722,98.515,,1,,6764,62,125,,2025-1805,1234567,,,36200956,,, +603,CHN,,Sanmenxia RGD Xinwen,,Sanmenxia (HE),34.795278,111.189444,,10,,7921,57,126,,,,,,47581,,, +603,CHN,en,CNR 2,,Xining (QH),36.583333,101.833333,,1,,7220,62,129,,1000-1602,1234567,,,36200945,,, +603,CHN,zh,CNR 1,,Erenhot=Erlian/NMTS872 (NM),43.618056,111.999722,,1,,7211,50,129,,2025-1805,1234567,,,36200960,,, +603,CHN,zh,Hubei RGD Chutian Xinwen,,Enshi/Sanhe Cun (HU),30.333333,109.466667,,10,,8207,61,129,,,,,,36200961,,, +603,CHN,zh,CNR 1,,Serxu=Shiqu (SC),32.983333,98.066667,,1,,7283,67,130,,2025-1805,1234567,,,36200133,,, +603,CHN,zh,Qingdao JGD 2 Kuaile 603,,Qingdao/SDTS135 (SD),36.121589,120.350533,,10,,8306,50,130,,,,,,47579,,, +603,CHN,,Guizhou JGD,,Guiyang (GZ),26.416667,106.6,,10,,8373,66,131,,,,,,47571,,, +603,CHN,zh,CNR 1,,Hohhot/NMTS610 (NM),40.736944,111.475278,,1,,7427,53,131,,2025-1805,1234567,,,36200129,,, +603,CHN,,Wuhan RGD Jiaotong Wangluo,,Wuhan (HU),30.6,114.333333,,10,,8470,58,132,,2225-1300,1234567,,,47586,,, +603,CHN,zh,Anhui RGD Shenghuo Guangbo,,Hefei/Sanshitou (AH),31.986667,117.3275,,10,,8515,55,132,,2100-1800,1234567,,,36200959,,, +603,CHN,zh,CNR 1,,Dingxi/Zhongchuan Cun (GS),35.558889,104.596944,,1,,7470,61,132,,2025-1805,1234567,,,36200963,,, +603,CHN,,Ji'an RGD Jinggang zhi Sheng,,Ji'an (JX),27.133333,114.983333,,10,,8817,59,133,,,,,,47574,,, +603,CHN,,Shanghai Dongfang GD di yi Caijing Pinl,,Shanghai/Yangpu (SH),31.280083,121.526233,,10,,8809,52,133,,2200-1600,1234567,,,47582,,, +603,CHN,zh,Zhangjiakou RGD Voice of the Earth,,Zhangjiakou (HB),40.816667,114.85,,1,,7601,51,133,,,,,,36201299,,, +603,CHN,,Guangdong RGD Wenti,,Guangzhou/SARFT808 (GD),23.106389,113.26,,10,,9074,63,134,,,,,,47570,,, +603,CHN,,Jilin RGD Gonggong Shenghuo,,Songyuan (JL),45.1625,124.849778,,1,,7706,42,134,,,,,,36200950,,, +603,CHN,,Yan'an RGD,,Yan'an (SA),36.6,109.483333,,1,,7668,57,134,,,,,,47590,,, +603,CHN,zh,CNR 1,,Baoji/Xiamaying (SA),34.344167,107.231111,,1,,7729,60,134,,2025-1805,1234567,,,36200126,,, +603,CHN,zh,Ningbo RGD Traffic & Music,,Ningbo (ZJ),29.887778,121.486667,,10,,8935,53,134,,,,,,47578,,, +603,THA,th,Wor. Por. Thor. 12,,Khon Kaen/140 Kasikon Thungsang Rd (kkn),16.441111,102.840556,,10,,9001,75,134,,????-1700,1234567,,,47608,,, +603,CHN,,Yangquan RGD,,Yangquan (SX),37.872222,113.566667,,1,,7787,53,135,,,,,,47588,,, +603,CHN,,Yunnan RGD Xinwen Guangbo,,Shangrila=Xianggelila (YN),27.82,99.686389,,1,,7816,70,135,,,,,,36200952,,, +603,CHN,,Jilin Shi JGD Qin'ai 603,,Jilin Shi (JL),43.8,126.5,,1,,7905,41,136,,,,,,47575,,, +603,CHN,,Nantong JGD,,Nantong (JS),31.855833,121.010556,,5,,8729,52,136,,0925-1400,1234567,,,47577,,, +603,CHN,,Nantong JGD,,Nantong (JS),31.855833,121.010556,,5,,8729,52,136,,2130-0500,1234567,,,47577,,, +603,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,1000-1805,1234567,,,36200954,,, +603,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,2025-2200,1234567,,,36200954,,, +603,CHN,zh,CNR 1,,Suzhou (JS),31.412778,120.693056,,5,,8752,52,136,,2025-1805,1234567,,,36200134,,, +603,CHN,zh,Hebei RGD Lyou yu Wenhua,,Shijiazhuang (HB),37.833333,114.666667,,1,,7851,53,136,,,,,,47584,,, +603,CHN,zh,Hengshui RGD Traffic Information,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,36201302,,, +603,CHN,zh,Qinhuangdao zhi Sheng,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,,,,,47580,,, +603,J,,JOOG NHK1,,Obihiro (hok),42.981389,143.199444,,5,,8656,31,136,,0000-2400,1234567,,,47598,,, +603,CHN,,Yingkou RGD Story & Leisure,,Yingkou/LNTS314 (LN),40.5125,122.205,,1,,8003,46,137,,,,,,36200943,,, +603,CHN,zh,CNR 2,,Dali/SARFT653 (YN),25.716667,100.166667,,1,,8025,71,137,,2100-1602,1234567,,,47566,,, +603,J,,JOKK NHK1,,Okayama (chg-oka),34.612222,133.898333,,5,,9108,41,137,,0000-2400,1234567,,,47599,,, +603,CHN,ko,Yanbian RGD,,Yanji=Yeon'gil (JL),42.9,129.5,,1,,8122,40,138,,,,,,36200138,,, +603,CHN,zh,Shandong RGD Xinwen Pindao,,Zibo/Ximenwai (SD),36.8,118.05,,1,,8124,51,138,,2125-1700,1234567,,,36200938,,, +603,CHN,zh,CNR 3,,Kunming/Longquan (YN),25.120672,102.752439,,1,,8242,69,139,,,,,,36200132,,, +603,PHL,,DZLL-AM PBS DZ Double-L,,Naga City (cas),13.566667,123.316667,,10,,10550,60,139,,,,,,47603,,, +603,CHN,,Anhui RGD Shenghuo Guangbo,,Huaibei (AH),33.956944,116.783444,,1,,8309,54,140,,2100-1430,1234567,,,50818,,, +603,CHN,,Yunnan RGD Jiaotong zhi Sheng,,Yuxi/YNTS693 (YN),24.402556,102.513944,,1,,8288,70,140,,,,,,36200939,,, +603,CHN,,Zaozhuang JGD,,Zaozhuang (SD),34.841667,117.578222,,1,,8273,53,140,,,,,,47592,,, +603,PHL,tl,DZVV-AM Bombo Radyo,,Vigan City (ils),17.561389,120.386389,,5,,10006,61,140,,,,,,47530,,, +603,CHN,zh,CNR 1,,Duyun/GZTS854 (GZ),26.266667,107.516667,,1,,8443,65,141,,2025-1805,1234567,,,36200962,,, +603,CHN,zh,Anhui RGD Shenghuo Guangbo,,Chuzhou (AH),32.285167,118.346917,,1,,8545,54,142,,2100-1800,1234567,,,36200127,,, +603,CHN,zh,CNR 1,,Huaihua (HN),27.55,109.966667,,1,,8481,63,142,,2025-1805,1234567,,,36200957,,, +603,CHN,,Jiangxi RGD Minsheng Guangbo,,Shangrao/JXTS821 (JX),28.470278,117.979167,,1,,8869,56,143,,,,,,36200953,,, +603,CHN,,Jiangxi RGD Nongcun Guangbo,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,,,,,36200131,,, +603,CHN,,Wuxi RGD Jiangnan zhi Sheng,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,,,,,36200137,,, +603,CHN,,Zhejiang RGD Lyou zhi Sheng,,Hangzhou/Gouzhuang (ZJ),30.379444,120.092222,,1,,8814,54,143,,,,,,47573,,, +603,CHN,zh,Anhui RGD Shenghuo Guangbo,,Huangshan (AH),30.15,118.266667,,1,,8733,55,143,,2100-1800,1234567,,,36200128,,, +603,CHN,zh,CNR 1,,Chenzhou (HN),25.8,113.033333,,1,,8820,61,143,,2025-1805,1234567,,,36200964,,, +603,CHN,zh,CNR 1,,Hengyang/Hudong Cun (HN),26.895278,112.659167,,1,,8700,61,143,,2025-1805,1234567,,,36200958,,, +603,CHN,zh,CNR 1,,Yongzhou (HN),26.416667,111.616667,,1,,8680,62,143,,2025-1805,1234567,,,36200942,,, +603,CHN,zh,CNR 1,,Yulin (GX),22.666667,110.2,,1,,8925,65,143,,2025-1805,1234567,,,36200941,,, +603,CHN,zh,Guangxi RGD Jiaotong Sijia Che 930,,Wuzhou (GX),23.482222,111.293611,,1,,8921,64,143,,,,,,36200946,,, +603,CHN,,Zhejiang RGD Lyou zhi Sheng,,Wenzhou (ZJ),28.1,120.6,,1,,9050,54,144,,,,,,36200947,,, +603,CHN,zh,CNR 1,,Shaoguan (GD),24.783333,113.533333,,1,,8941,62,144,,2025-1805,1234567,,,36200951,,, +603,PHL,,DXPR-AM Radyo Mo-RMN News,,Pagadian City/Balangasan (zds),7.8325,123.428889,,5,,11088,64,144,,0000-2400,1234567,,,47604,,, +603,INS,id,PM4DUI R Riwut Malawen,,Buntok (KT-bas),-1.7,114.8,,1,,11402,76,152,,,,,,47595,,, +603,AUS,en,6PH ABC Northwest WA,,Port Hedland (WA),-20.399222,118.675194,,2,,13293,86,155,,0000-2400,1234567,,,47564,,, +603,AUS,,4CH ABC Western Queensland,,Charleville (QLD),-26.254347,146.304278,,10,,15610,65,156,,0000-2400,1234567,9983,,47562,,, +603,AUS,,2RN ABC National,,Nowra/Basin View (NSW),-35.086944,150.553694,,10,,16615,70,159,,0000-2400,1234567,3,,47563,,, +603,NZL,mi,R Waatea,,Auckland/Henderson (AUK),-36.849089,174.629694,,5,,18083,33,167,,0000-2400,1234567,,,47602,,, +608,UKR,,DE,b,Velyki Derdakaly,50.020833,26.041667,,0.025,,1387,92,87,,,,,,85554,,, +608,UKR,,A,b,Zaporizhzhia / Mokraya (ZP),47.854167,35.291667,,0.025,,2104,91,94,,,,,,86760,,, +608,UKR,,P,b,Zaporizhzhia / Mokraya (ZP),47.895833,35.291667,,0.025,,2102,91,94,,,,,,86761,,, +610,RUS,,IO,b,Joshkar-Ola (ME),56.729167,47.875,,0.025,,2688,63,100,,,,982,L1009 U980 ,ID+2 gap,85555,, +610,CAN,,CKTB,,Saint Catharines (ON),43.036667,-79.166389,,5,,6118,297,111,,,,1,,36405,,, +610,USA,en,WIP,i,Philadelphia (PA),39.865278,-75.109444,,5,,6102,292,111,,,,0,,41788,,, +610,USA,,WGIR,,Manchester (NH),43.015833,-71.48,,1,,5644,293,113,,,,999,,41522,,, +610,CAN,xx,CKOK,,Nain (NL),56.541667,-61.698889,,0.04,,4260,304,114,,,,,,20109082,,, +610,CAN,en,CKYL,,Peace River (AB),56.177778,-117.183611,,10,,6916,328,116,,,,2,,36436,,, +610,USA,,KDAL,,Duluth (MN),46.720556,-92.176667,,5,,6585,308,116,,,,63,,38235,,, +610,USA,,WTVN,,Columbus (OH),39.876111,-82.980278,,5,,6591,297,116,,,,5,,43233,,, +610,USA,,WSNG,,Torrington (CT),41.757778,-73.051667,,0.5,,5833,292,118,,,,,,43033,,, +610,CAN,,CHTM,,Thompson (MB),55.702222,-97.882222,,1,,6170,318,119,,,,,,36096,,, +610,CLM,es,HJD90,,Uribia (lag),11.716667,-72.266667,,50,,8211,268,122,,,,,,35901364,,, +610,VEN,es,YVSE R Cristal,,Barquisimeto (lar),10.079917,-69.227517,,50,,8146,265,122,,,,,,45454,,, +610,USA,,WVBE,,Roanoke (VA),37.303056,-80.0425,,1,,6609,293,123,,,,,,20012600,,, +610,USA,en,WXVA,,Winchester (N) (VA),39.198056,-78.220278,,0.5,,6348,293,123,,,,,,43129,,, +610,VTN,vi,Voice of Hồ Ch Minh,,Hồ Ch Minh (hcm),10.851667,106.792778,,200,,9753,75,123,,2100-1700,1234567,,,47610,,, +610,USA,,KCSP,,Kansas City (MO),38.984167,-94.628333,,5,,7350,303,124,,,,,,38210,,, +610,CAN,en,CHNL,,Kamloops (BC),50.647222,-120.271944,,5,,7541,327,125,,,,9955,,36065,,, +610,CUB,es,R Rebelde,,Bueycito/Entronque (gr),20.292661,-76.775808,,10,,7783,278,125,,,,0,,31600067,,, +610,USA,en,WFNZ,,Charlotte (NC),35.300833,-80.888333,,1,,6820,292,125,,,,,,41421,,, +610,USA,en,WIOD,,Miami (FL),25.849444,-80.155,,5,,7543,284,125,,,,9992,,41779,,, +610,USA,en,WXVA,,Winchester (D) (VA),39.123889,-78.212222,,0.38,,6353,293,125,,,,,,20012551,,, +610,VEN,es,YVXY R Centro 6-10,,Cantaura (azg),9.312244,-64.385278,,10,,7885,260,126,,,,997,,51650,,, +610,CAN,en,CKRW,,Whitehorse (YT),60.692222,-134.971389,,1,,7010,340,127,,,,,,36387,,, +610,CUB,es,R Rebelde,,Guane (pr),22.197833,-84.124033,,10,,8114,284,128,,,,999,,52610,,, +610,CLM,es,HJKL La Cariosa,,Bogot D. C. (bdc),4.583333,-74.066667,,30,,8956,265,129,,,,0,,37526,,, +610,EQA,,HCMJ1,,Quito/Cerro Lumbis (pic),-0.238889,-78.466667,,50,,9679,266,129,,,,,,37027,,, +610,PTR,,WEXS,,Patillas (PR),18.01,-66.024444,,1,,7244,268,129,,,,,,41344,,, +610,USA,en,KONA,,Kennewick-Richland (WA),46.173056,-119.068611,,5,,7915,323,129,,,,,,39090,,, +610,USA,,KOJM,,Havre (MT),48.58,-109.648333,,1,,7293,319,130,,,,,,39070,,, +610,USA,en,WAGG,,Birmingham (AL),33.494444,-86.875,,1,,7343,294,130,,,,,,41349,,, +610,B,pt,ZYL268 Rdio Itatiaia,,Belo Horizonte (MG),-20.006111,-43.967561,,25,0,9382,227,131,,,,,,36901113,,, +610,USA,,KILT,,Houston (TX),29.917778,-95.425833,,5,,8170,298,132,,,,,,38610,,, +610,B,pt,ZYH321 Super Rdio Boa Vontade,,Iranduba (AM),-3.172739,-60.097222,,10,,8720,249,133,,,,,,36901108,,, +610,B,pt,ZYH249 Imperial AM,,Marechal Deodoro (AL),-9.736111,-35.904167,,2,,7972,224,134,,,,,,36901101,,, +610,CTR,,TIRSU R Maria,,San Jos (sjs),9.933333,-84.066667,,10,,9170,277,134,,,,,,52143,,, +610,HND,es,HRLD R Amrica,,Tegucigalpa (fmz),14.066667,-87.216667,,10,,9022,282,134,,,,,,37778,,, +610,PNR,es,HOHM RPC R,,Llano Bonito (pnm),9.016039,-79.443908,,10,,8935,272,134,,0000-2400,1234567,,,37690,,, +610,SLV,es,YSSS R.Nacional de El Salvador,,Morazan (mzn),13.566667,-88.033333,,10,,9120,282,134,,,,,,45315,,, +610,USA,,KNML,,Albuquerque (D) (NM),35.032222,-106.658889,,5,,8358,309,134,,,,,,20016065,,, +610,USA,,KNML,,Albuquerque (N) (NM),35.033056,-106.662222,,5,,8358,309,134,,,,,,39001,,, +610,USA,,KRTA,,Medford (OR),42.3875,-122.769722,,5,,8428,324,134,,,,,,39300,,, +610,URG,es,CX4 R Rural,,Santiago Vzquez (mo),-34.835917,-56.401556,,50,,11424,228,135,,0800-0600,1234567,,,36816,,, +610,USA,,WPLO,,Grayson (GA),33.953056,-83.970833,,0.225,,7123,293,135,,,,,,42707,,, +610,CUB,es,R Rebelde,,Cienfuegos (cf),22.135789,-80.448861,,1,,7875,282,136,,,,,,31600062,,, +610,CUB,es,R Reloj,,Trinidad (ss),21.788014,-79.986067,,1,,7873,281,136,,,,,,36511,,, +610,USA,,KARV,,Russellville (AR),35.298889,-93.1525,,0.5,,7574,300,136,,,,,,37969,,, +610,USA,,KEAR,,San Francisco (CA),37.849444,-122.295556,,5,,8848,321,136,,,,14,,38425,,, +610,GTM,,TGGA R Alianza,,Ciudad de Guatemala (gut),14.616667,-90.616667,,5,,9200,285,137,,1130-0300,1234567,,,40493,,, +610,HTI,,4VJS,,Delmas (oue),18.55,-72.316667,,0.4,,7628,273,137,,,,,,35647,,, +610,USA,,KVNU,,Logan (UT),41.675,-111.935,,1,,8020,316,137,,,,,,39647,,, +610,B,pt,ZYI425 Rdio Celeste,,Sinop (MT),-11.910586,-55.525028,,5,,9242,240,138,,,,,,36901114,,, +610,USA,en,KAVL,,Lancaster (CA),34.706111,-118.176667,,4,,8966,317,138,,,,,,37986,,, +610,USA,en,WCEH,,Hawkinsville (GA),32.280556,-83.443611,,0.126,,7226,291,138,,,,,,41874,,, +610,B,pt,ZYJ746 Super Cond AM 610,,Chapec (SC),-27.080556,-52.619444,,10,,10504,230,139,,,,,,36901110,,, +610,HTI,,R L'Eternal est Grand,,Port-au-Prince (oue),18.516667,-72.316667,,0.2,,7631,273,140,,,,,,52095,,, +610,USA,,WRUS,,Russellville (KY),36.844444,-86.9225,,0.059,,7072,297,140,,,,,,42932,,, +610,USA,en,WPKU226,,Washington (DC),38.875667,-76.976361,,0.01,,6294,292,140,,,,,,20010450,,, +610,B,pt,ZYH786 Rdio Mega AM,,Luzinia (GO),-16.234814,-47.9487,,2,,9222,232,141,,,,,,36901111,,, +610,B,pt,ZYI678 Rdio Progresso de Souza,,Sousa (PB),-6.784167,-38.265128,,0.25,,7794,228,141,,,,,,36901102,,, +610,PRU,,OCY2I R Santa Monica,,Chota (caj),-6.35,-78.65,,5,,10229,262,141,,1100-0100,1234567,,,37000024,,, +610,USA,,KCSR,,Chadron (NE),42.832222,-103.016667,,0.118,,7478,311,141,,,,,,38211,,, +610,USA,,WVTJ,,Pensacola (FL),30.4525,-87.240556,,0.157,,7618,292,141,,,,,,43345,,, +610,USA,en,KNJR841,,Newport News (VA),37.094328,-76.461022,,0.01,,6398,290,141,,,,,,20010449,,, +610,USA,en,KNJR841,,Norfolk (VA),36.844331,-76.294356,,0.01,,6406,290,141,,,,,,20010451,,, +610,USA,,KVLE,,Vail (CO),39.579722,-106.415,,0.217,,7938,311,143,,,,,,39634,,, +610,CHL,,CD61 R Puerto Aysen,,Puerto Aysn (AI),-45.416667,-72.716667,,25,,13203,232,144,,,,,,35907,,, +610,HND,,HRLP4,,Santa Rosa de Copan (cop),14.766667,-88.766667,,1,,9064,283,144,,,,,,37791,,, +610,MEX,es,XEEL-AM,,Fresnillo (zac),23.18305,-102.879811,,1,,9214,299,144,,,,,,43966,,, +610,ARG,,R General San Martin,,Villa Lynch (ba),-34.6,-58.45,,5,,11508,230,145,,,,,,51791,,, +610,MEX,es,XEGS-AM La Ley GS,,Guasave (sin),25.534411,-108.4876,,1,,9325,305,145,,,,,,44082,,, +610,MEX,es,XEUF-AM La Z,,Uruapan/El Mirador (mic),19.435958,-102.075156,,1,,9504,296,145,,,,,,44898,,, +610,MEX,es,XEBX-AM La Primera,,Sabinas (coa),27.877389,-101.142017,,0.5,,8690,301,146,,,,,,43799,,, +610,B,pt,ZYK502 Rdio Presidente Venceslau,,Presidente Venceslau (SP),-21.862875,-51.846406,,1,,9969,232,147,,,,,,36901105,,, +610,MEX,es,XEKZ-AM La Poderosa,,Santo Domingo Tehuantepec (oax),16.345678,-95.210578,,0.5,,9348,289,148,,,,,,44281,,, +610,MEX,es,XEUM-AM Candela,,Valladolid (yuc),20.676194,-88.204942,,0.25,,8513,287,148,,,,,,44913,,, +610,PRU,,OBU1E R Santa Rosa,,Sullana (piu),-4.9,-80.683333,,1,,10239,265,148,,,,,,37000023,,, +610,MEX,es,XESAC-AM R Lobo,,Saltillo (coa),25.373522,-100.997856,,0.25,,8905,299,149,,,,,,44727,,, +610,PRG,,ZP30 LV del Chaco Paraguayo,,Filadelfia (bqn),-22.316667,-60.033333,,1,,10471,238,149,,0900-0200,1234567,,,45527,,, +610,ARG,,LRK201 R Solidaridad,,Anatuya (se),-28.433333,-62.816667,,1,,11188,237,151,,1000-2200,123456,,,51790,,, +610,ARG,,LRK201 R Solidaridad,,Anatuya (se),-28.433333,-62.816667,,1,,11188,237,151,,1000-2400,......7,,,51790,,, +610,USA,en,WQEN596,,Orlando (FL),28.533333,-81.383333,,0.01,,7401,287,151,,,,,,20010448,,, +610,B,pt,ZYK532 Rdio CBN,,Moji-Mirim (SP),-22.459978,-46.976564,,0.25,,9772,228,152,,,,,,36901103,,, +610,B,pt,ZYK577 Rdio Bandeirantes,,Catanduva/Rua Wilson Orsi 10 (SP),-21.106344,-48.945161,,0.25,,9743,230,152,,,,,,36901104,,, +610,B,pt,ZYK589 Super Rdio Piratininga,,Guaratinguet (SP),-22.790578,-45.180653,,0.25,,9714,226,152,,,,,,36901107,,, +610,B,pt,ZYK726 Rdio Paranapanema,,Piraju/Chcara Ana Maria (SP),-23.218583,-49.374333,,0.25,,9968,229,153,,,,,,36901106,,, +612,LTU,be,Polskie R,,Vilnius/Virulikes (Vil),54.701681,25.226442,,50,,1276,70,53,BLR,2100-2200,1234567,0,,186,,, +612,LTU,be,R Liberty,,Vilnius/Virulikes (Vil),54.701681,25.226442,,50,,1276,70,53,BLR,0300-0500,1234567,0,,186,,, +612,LTU,be,R Liberty,,Vilnius/Virulikes (Vil),54.701681,25.226442,,50,,1276,70,53,BLR,1500-2100,1234567,0,,186,,, +612,LTU,ru,Voice of Russia,,Vilnius/Virulikes (Vil),54.701681,25.226442,,50,,1276,70,53,EEu,1200-1500,1234567,0,,186,,, +612,MRC,ar,SNRT Al Ida Al-Watania,,Seba-Aioun (mkt),33.896481,-5.3876,,140,,2234,210,58,,0400-0100,1234567,999,,187,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0625-0630,12345..,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0650-0700,12345..,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0800-0815,12345..,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1208-1300,12345..,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1230-1300,.....67,993,,183,,, +612,E,ca,RNE Rdio 4,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1400-1415,12345..,993,,183,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0625-0630,12345..,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0650-0700,12345..,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0800-0815,12345..,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1208-1300,12345..,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1230-1300,.....67,0,,182,,, +612,E,es,RNE Pas Vasco,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1400-1415,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0000-0625,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0000-1230,.....67,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0630-0650,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0700-0800,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0815-1208,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1300-1400,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1300-2400,.....67,993,,183,,, +612,E,es,RNE R Nacional,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,1415-2400,12345..,993,,183,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0000-0625,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0000-1230,.....67,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0630-0650,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0700-0800,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0815-1208,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1300-1400,12345..,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1300-2400,.....67,0,,182,,, +612,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1415-2400,12345..,0,,182,,, +612,RUS,ru,Islamskaya Volna,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,..3....,0,,188,,, +612,RUS,ru,Kanal Blagoveshenie,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,...45.7,0,,188,,, +612,RUS,ru,Narodnoye R,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0400-1600,1234567,0,,188,,, +612,RUS,ru,R Alef,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1700-1800,...4...,0,,188,,, +612,RUS,ru,R Kala Aturaya,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,.....6.,0,,188,,, +612,RUS,ru,R Radonezh,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1700-2000,123.567,0,,188,,, +612,RUS,ru,R Radonezh,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1800-2000,...4...,0,,188,,, +612,RUS,ru,Yevangelskiye Chteniya,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,12.....,0,,188,,, +612,JOR,ar,JRTV R Jordan,,Shobak (man),30.531978,35.615,,200,,3378,124,68,,0000-2400,1234567,,,185,,, +612,IRN,ar,IRIB WS,,Qasr-e Shirin (ksh),34.448189,45.616767,,300,280,3667,107,69,,0125-0430,1234567,39,,184,,, +612,IRN,ar,IRIB WS,,Qasr-e Shirin (ksh),34.448189,45.616767,,300,280,3667,107,69,ME,0530-1530,1234567,39,,184,,, +612,IRN,ku,IRIB WS,,Qasr-e Shirin (ksh),34.448189,45.616767,,300,280,3667,107,69,,0430-0530,1234567,39,,184,,, +612,BHR,ar,Bahrain FM,,Abu Hayan (ajn),26.037556,50.623889,,100,,4682,111,84,,0300-1700,1234567,,,179,,, +612,BHR,ar,Bahrain Holy Quran,,Abu Hayan (ajn),26.037556,50.623889,,100,,4682,111,84,,1700-2100,1234567,,,179,,, +612,KGZ,xx,KTRK Kyrgyz Rsu/TNK Beles,,Krasnaya Rechka (cuy),42.881094,74.995478,,100,,5056,73,88,,0000-1200,......7,,,34300004,,, +612,KGZ,xx,KTRK Kyrgyz Rsu/TNK Beles,,Krasnaya Rechka (cuy),42.881094,74.995478,,100,,5056,73,88,,0000-1800,123456,,,34300004,,, +612,NIG,,R Kwara,,Ilorin/Budo Efo (kwa),8.438939,4.60995,,50,,4859,183,89,,0400-2300,1234567,999,,2263,,, +612,ARS,ar,BSKSA Al-Quran al-Karim,,Ha'il (hal),27.466667,41.726528,,5,,4007,119,90,,0000-2400,1234567,,,47063,,, +612,ARS,ar,BSKSA Al-Quran al-Karim,,Al-Aflaj/Layla (riy),22.287778,46.696944,,15,,4768,118,93,,0000-2400,1234567,,,47064,,, +612,IRQ,,Kull al-Iraq R,,An Nasiriya (dqr),31.033333,46.266667,,0.5,,3983,110,100,,,,,,10500003,,, +612,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Nairobi/Ngong (nai),-1.325694,36.675,,100,,6583,144,103,,0200-2110,1234567,,,2317,,, +612,PAK,,PBC Saut-ul Quran,,Karachi/PBC Colony (shd),24.853444,67.219806,,10,,5880,97,106,,0215-0700,1234567,,,51618,,, +612,PAK,,PBC Saut-ul Quran,,Karachi/PBC Colony (shd),24.853444,67.219806,,10,,5880,97,106,,0900-1645,1234567,,,51618,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,0025-0435,123456,9944,,47617,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,0025-0530,......7,9944,,47617,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,0630-0930,......7,9944,,47617,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,0700-0935,123456,9944,,47617,,, +612,IND,,AIR South,,Bengaluru A (KA),13.064444,77.783889,,200,,7597,97,110,,1200-1740,1234567,9944,,47617,,, +612,TWN,zh,R France Int.,,Lukang (CH),24.066556,120.4215,,1000,315,9410,57,115,FE,2200-2400,1234567,,,47609,,, +612,TWN,zh,R Taiwan Int.,,Lukang (CH),24.066556,120.4215,,1000,315,9410,57,115,FE,1000-1700,1234567,,,47609,,, +612,J,ja,JOLK NHK1,,Fukuoka (kyu-fuk),33.532778,130.445833,,100,,9052,44,124,,0000-2400,1234567,,,47626,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Chaoyang/LNTS328 (LN),41.574167,120.374722,,10,,7817,47,125,,,,,,36200937,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Xifeng (LN),42.733333,124.716667,,10,,7921,43,126,,,,,,36200927,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Neijiang/SCTS521 (SC),29.61,105.077222,,10,,8003,65,127,,,,,,36200124,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Yibin/SCTS524 (SC),28.766667,104.616667,,10,,8047,66,127,,,,,,36200125,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Dandong (LN),40.116667,124.366667,,10,,8144,45,128,,,,,,47613,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Luzhou/SCTS518 (SC),28.883333,105.45,,10,,8088,65,128,,,,,,36200122,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,10,,8055,69,128,,,,,,36200121,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Ma'erkang=Barkam/SCTS510 (SC),31.915339,102.191114,,3,,7629,65,129,,,,,,36200931,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Kangding=Dardo/SCTS515 (SC),29.9969,101.952628,,3,,7776,67,130,,,,,,36200932,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Rangtang=Zamtang/SCTS548 (SC),32.3,100.966667,,1,,7521,66,132,,,,,,36200929,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Ruoergai=Zoig/SCTS538 (SC),33.582794,102.959994,,1,,7537,63,132,,,,,,36200928,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Batang/SCTS543 (SC),30.017967,99.109822,,1,,7595,69,133,,2155-1605,1234567,,,47614,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Jiuzhaigou/SCTS547 (SC),33.233333,104.183333,,1,,7641,63,133,,,,,,36200933,,, +612,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Ningde/FJTS901 (FJ),26.733222,119.57125,,10,,9117,56,134,,2155-1600,1234567,,,47615,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Daocheng/SCTS544 (SC),29.033333,100.316667,,1,,7754,68,135,,,,,,36200936,,, +612,THA,th,Mor. Kor.,,Chiang Mai (cmi),18.877222,99.043611,,5,,8538,76,135,,0000-2400,1234567,,,47636,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Meishan (SC),30.05,103.85,,1,,7890,65,136,,,,,,36200123,,, +612,THA,th,Wor. Sor. Por. Hok-Neung-Song 612,,Lop Buri/Fort Phahonyothin (lpb),14.883333,100.9,,5,,9008,77,137,,2120-1700,1234567,,,47637,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Huanren/LNTS310 (LN),41.277778,125.328611,,1,,8083,44,138,,,,,,36200934,,, +612,CHN,,Liaoning RGD Xinwen Tai,,Donggang/LNTS333 (LN),39.883333,124.15,,1,,8155,45,139,,,,,,36200935,,, +612,PHL,,DWSP-AM (r:666 DZRH-AM),,Itogon/Tuding (bgt),16.411389,120.641667,,5,,10127,61,140,,,,,,47632,,, +612,PHL,,DYHP-AM Radyo Mo-RMN News,,Cebu City (ceb),10.25,123.85,,10,,10890,62,140,,2100-1600,1234567,,,47631,,, +612,CHN,zh,Sichuan RGD Xinwen Guangbo,,Mianyang (SC),30.183333,113.216667,,1,,8442,59,141,,,,,,36200930,,, +612,INS,id,PM7CLG R.Swara Betung Indah,,Betung (SS),-1.866667,103.266667,,1,,10639,86,149,,,,,,47619,,, +612,AUS,,6RN ABC National,,Dalwallinu (WA),-30.288833,116.609333,,10,,13958,95,150,,0000-2400,1234567,,,47612,,, +612,AUS,en,4QR ABC Brisbane,,Brisbane/Bald Hills (QLD),-27.311586,153.017467,,50,,16107,58,150,,0000-2400,1234567,31,,47611,,, +612,INS,,R Yatofa,,Praya/Bodak (NB-lte),-8.7,116.283333,,1,,12121,80,154,,,,,,35400123,,, +612,NZL,en,3XG NZs Rhema,,Christchurch/Marshland (CAN),-43.489747,172.637478,,2,,18613,52,172,,0000-2400,1234567,,,47628,,, +615,XOE,,OM,b,Gorm C Platform,55.354167,4.458333,,0.025,,383,341,77,,,,996,L407 U405 7.5s,ID+3Tone,85556,, +615,XOE,,STB,b,Statfjord B Platform,61.1875,1.791667,,0.025,,1047,346,83,,,,928,L396 U325 8.5s,ID+6 gap,85557,, +617,UKR,,SV,b,Stebliv,49.395833,31.041667,,0.025,,1750,90,90,,,,990,L1063 U1047 ,IDx2 + 23 gap,85559,, +617,UKR,,G,b,Lugansk (LU),48.395833,39.375,,0.025,,2359,87,97,,,,,,85558,,, +618,POL,,FT,b,Pruszcz / Gdanski,54.229167,18.708333,,0.025,,852,69,81,,,,995,L707 U720 ,85560,,, +620,RUS,,N,b,Pskov (PS),57.8125,28.375,,0.025,,1530,57,88,,,,,L1050 U1016 ,IDx3 + 14 gap,85561,, +620,RUS,,P,b,Pskov (PS),57.770833,29.375,,0.025,,1586,58,89,,,,55,L645 U755 ,85562,,, +620,CAN,,CKCM,,Grand Falls (NL),48.944167,-55.641944,,10,,4265,291,90,,,,1,,36283,,, +620,USA,,WZON,,Bangor (ME),44.828889,-68.785556,,5,,5350,293,104,,,,0,,43586,,, +620,USA,,WVMT,,Burlington (VT),44.534444,-73.220833,,5,,5647,295,107,,,,71,,43313,,, +620,USA,,WSNR,,Jersey City (NJ),40.798056,-74.106667,,7.6,,5969,292,108,,,,62,,43038,,, +620,USA,,WHEN,,Syracuse (D) (NY),43.092222,-76.189444,,5,,5932,295,109,,,,,,20012555,,, +620,USA,,WTMJ,,Milwaukee (WI),42.707778,-88.065833,,10,,6671,302,114,,,,1,,43174,,, +620,CAN,en,CKRM,,Regina (SK),50.326667,-104.621111,,10,,6914,318,116,,,,0,,36279,,, +620,USA,,WHEN,,Syracuse (N) (NY),43.092778,-76.188056,,1,,5932,295,116,,,,9992,,41623,,, +620,USA,,WRJZ,,Knoxville (TN),35.99,-83.8375,,5,,6951,294,120,,,,998,,42864,,, +620,B,pt,ZYH590 Rdio Globo,,Fortaleza (CE),-3.765128,-38.584539,,10,,7513,230,122,,,,5,,36901120,,, +620,CUB,es,R Rebelde,,Coln (ma),22.733281,-80.918831,,25,,7856,282,122,,,,9997,,36474,,, +620,USA,,WDNC,,Durham (NC),36.034167,-78.963056,,1,,6640,291,123,,,,,,41186,,, +620,USA,en,WDAE,,St. Petersburg (D) (FL),27.876944,-82.590556,,5.6,,7535,287,125,,,,,,41118,,, +620,USA,en,WDAE,,St. Petersburg (N) (FL),27.876944,-82.590278,,5.5,,7535,287,125,,,,,,20016081,,, +620,VEN,es,YVZC R Fe y Alegria,,Guasdualito (apu),7.25,-70.733333,,50,,8495,264,125,,0900-0400,1234567,,,51651,,, +620,ALS,,KGTL,,Homer (AK),59.684167,-151.630833,,2.5,,7429,348,127,,0000-2400,1234567,9996,,38514,,, +620,NCG,,YNN R Nicaragua,,Managua (mng),12.183333,-85.916667,,50,,9099,279,127,,0955-0600,1234567,,,45188,,, +620,VEN,,YVNO R Libertad,,Cabimas (zul),10.4,-71.466667,,20,,8270,267,127,,0900-0400,1234567,,,45396,,, +620,DOM,,HISD R Television Dominicana,,Santo Domingo (sdo),18.5,-69.916667,,2.5,,7468,271,128,,0900-0400,1234567,,,52230,,, +620,USA,,KPOJ,,Portland (OR),45.422222,-122.565833,,10,,8126,325,128,,,,85,,39154,,, +620,USA,,KMNS,,Sioux City (IA),42.373611,-96.448056,,1,,7169,307,129,,,,,,38919,,, +620,USA,es,WTUV,,Louisville (KY),38.316389,-85.702222,,0.5,,6879,297,129,,,,,,43179,,, +620,B,pt,ZYK521 Rdio Jovem Pan,,So Paulo/Res. Billings (SP),-23.7025,-46.660556,,50,,9876,227,130,,,,9987,,36901121,,, +620,EQA,,HCXY1,,Loja (loj),-4,-79.166667,,50,,10057,264,130,,,,,,37188,,, +620,USA,,KMKI,,Plano (TX),33.242778,-96.541389,,4.5,,7949,301,130,,,,,,38912,,, +620,DOM,,HISD R Television Dominicana,,Santa Cruz de El Seibo (sey),18.766667,-69.05,,1,,7387,271,131,,,,,,37298,,, +620,CLM,es,HJVP,,Cartagena (bol),10.4,-75.516667,,10,,8547,270,132,,,,,,35901365,,, +620,DOM,,HISD R Television Dominicana,,San Juan de la Maguana (jua),18.8,-71.233333,,1,,7533,272,132,,,,,,52231,,, +620,DOM,,HISD R Television Dominicana,,Pedernales (pnl),18.016667,-71.716667,,1,,7632,272,133,,,,,,37300,,, +620,DOM,,HISD R Television Dominicana,,Santa Cruz de Barahona (bh),18.2,-71.1,,1,,7575,272,133,,,,,,52233,,, +620,USA,,WJDX,,Jackson (MS),32.382222,-90.190556,,1,,7640,296,133,,,,,,41862,,, +620,CLM,es,HJVP Colmundo,,Cali (val),3.5,-76.583333,,10,,9222,267,134,,????-0300,1234567,3,,37414,,, +620,USA,,KWAL,,Wallace (ID),47.508056,-116.004722,,1,,7664,322,134,,,,,,39685,,, +620,USA,,WKHB,,Irwin (PA),40.288889,-79.701111,,0.05,,6357,295,134,,,,,,42012,,, +620,ARG,es,LT17 R Provincia de Misiones,,Posadas (mn),-27.419875,-55.892683,,25,,10710,232,135,,0900-0500,1234567,,,51792,,, +620,BOL,,CP63 R San Gabriel,,La Paz (lpz),-16.5,-68.116667,,20,,10435,248,135,,0900-0200,1234567,,,36709,,, +620,USA,,WGCV,,Cayce (SC),33.959444,-81.041111,,0.126,,6937,291,135,,,,,,41490,,, +620,USA,,KTAR,,Phoenix (AZ),33.478889,-112.001667,,5,,8779,312,136,,,,9989,,39452,,, +620,GTM,,TGPQ R 6-20,,San Cristbal (qzt),14.908725,-91.448036,,5,,9229,285,137,,1200-0400,1234567,,,40548,,, +620,MEX,es,XESS-AM ESPN Deportes,,Puerto Nuevo (bcn),32.249539,-116.946836,,5,,9141,315,137,,,,9862,,44769,,, +620,ARG,es,LRA28 R Nacional,,La Rioja (lr),-29.42615,-66.873114,,25,,11511,239,138,,0900-0400,1234567,,,39948,,, +620,MEX,es,XENK-AM R 6.20,,Guadalupe del Monte (mex),19.562931,-99.077806,,5,,9307,294,138,,,,,,44447,,, +620,PRU,es,OBU4B R Ovacion,,Villa El Salvador (lim),-12.191717,-76.965239,,10,,10629,257,139,,,,,,37000004,,, +620,USA,,WTRP,,La Grange (GA),33.059167,-85.027778,,0.127,,7263,293,139,,,,,,43207,,, +620,USA,,WWNR,,Beckley (WV),37.755,-81.236667,,0.025,,6649,294,139,,,,,,43414,,, +620,USA,es,WJHX,,Lexington (AL),34.976944,-87.369444,,0.099,,7251,296,140,,,,,,41877,,, +620,ARG,,LRA26 R Nacional,,Resistencia (cc),-27.433333,-59,,5,,10882,235,143,,0830-0300,1234567,,,39946,,, +620,B,pt,ZYJ332 Rdio Cidade Jandaia AM,,Jandaia do Sul (PR),-23.595278,-51.656944,,2.5,,10124,231,143,,,,,,36901117,,, +620,HWA,en,KHNU,,Kalaoa (HI),19.736667,-156.032222,,10,,11846,343,143,,,,,,38627,,, +620,MEX,es,XEBU-AM La Norteita,,Chihuahua (chi),28.6894,-106.120111,,1,,8903,305,143,,,,,,43792,,, +620,USA,,KIGS,,Hanford (CA),36.326389,-119.566389,,1,,8875,319,143,,,,99934,,38592,,, +620,HND,,HRDP5,,La Esperanza (int),14.566667,-87.816667,,1,,9018,282,144,,,,,,37748,,, +620,HND,,HRLP17,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37783,,, +620,MEX,es,XEHGR-AM R Frmula,,Villahermosa (tab),17.930625,-93.0037,,1,,9065,288,144,,,,,,44115,,, +620,MEX,es,XEOO-AM W R,,Tepic (nay),21.509147,-104.881475,,1,,9485,300,145,,,,,,44501,,, +620,PRG,,ZP40 R Nasaindy,,San Estanislao (spd),-24.566667,-56.416667,,2.5,,10473,234,145,,,,,,45536,,, +620,HWA,en,KHNU,,Hilo (HI),19.850556,-155.085278,,5,,11814,342,146,,,,,,38629,,, +620,HWA,en,KHNU,,Naalehu (HI),19.005,-155.676944,,5,,11919,342,146,,,,,,38628,,, +620,MEX,es,XECK-AM,,Durango (dur),24.051667,-104.621667,,0.5,,9239,301,147,,,,,,43849,,, +620,MEX,es,XEWZ-AM R Novedades,,Soledad Diez Gutirrez (slp),22.166667,-100.916667,,0.5,,9187,297,147,,,,,,45042,,, +620,CHL,,CC62 R Bio-Bio,,Concepcin (BI),-36.85,-73.016667,,5,,12512,238,148,,0000-2400,1234567,,,35833,,, +620,MEX,es,XEGH-AM La Lupe,,Ro Bravo (tam),25.993744,-98.132292,,0.25,,8677,297,149,,,,,,44059,,, +620,USA,,KJOL,,Grand Junction (CO),39.126389,-108.636944,,0.079,,8091,313,149,,,,,,38685,,, +620,B,pt,ZYK270 Rdio Pelotense,,Pelotas/Estrada do Laranjal (RS),-31.751389,-52.249722,,1,,10926,227,150,,,,,,36901119,,, +620,B,,ZYH293,,Lbrea (AM),-7.266667,-64.783333,,0.25,,9391,251,151,,,,,,45594,,, +620,B,,ZYL240,,Ibi (MG),-19.466667,-46.516667,,0.25,,9459,229,151,,,,,,46666,,, +620,B,pt,ZYL357 Rdio Catua,,Manhuau (MG),-20.273333,-42.056944,,0.25,,9315,225,151,,,,,,36901115,,, +620,ARG,es,LRA18 R Nacional,,Ro Turbio (sc),-51.666667,-72.066667,,5,,13664,226,152,,0845-0400,1234567,,,39938,,, +620,PRU,,OAX2M R Chepen,,Chepen (lal),-8.15,-79,,0.4,,10411,261,152,,,,,,40283,,, +620,CHL,,CA62 R Norte Verde,,Ovalle (CO),-30.616667,-71.316667,,1,,11879,241,153,,1100-0400,1234567,,,35704,,, +620,ARG,es,LV4 R San Rafael,,San Rafael (mz),-34.646417,-68.359947,,1,,12055,237,154,,1000-0400,1234567,,,40254,,, +620,B,pt,ZYJ779 Super Difusora Alto Vale,,Rio do Sul/Serra Canoas (SC),-27.197778,-49.693889,,0.25,,10365,228,154,,,,,,36901118,,, +620,B,pt,ZYK315 Rdio Municipal de Tenente Portel,,Tenente Portela (RS),-27.333333,-53.766667,,0.25,,10588,231,155,,,,,,36901116,,, +620,USA,,KMJC,,Mount Shasta (CA),41.319167,-122.309722,,0.029,,8512,323,157,,,,,,38910,,, +620,USA,en,WPBY639,,Santa Ana (CA),33.727631,-117.844306,,0.01,,9044,316,164,,,,,,20010460,,, +620,USA,en,WPET710,,Long Beach (CA),33.794294,-118.094222,,0.01,,9049,316,164,,,,,,20010453,,, +620,USA,en,WPET710,,Norwalk (CA),33.916139,-118.110969,,0.01,,9038,316,164,,,,,,20010452,,, +620,USA,en,WPFK505,,Beaumont (CA),33.932528,-116.994297,,0.01,,8984,315,164,,,,,,20010457,,, +620,USA,en,WPFK505,,Corona (CA),33.878917,-117.566167,,0.01,,9016,316,164,,,,,,20010456,,, +620,USA,en,WPFK505,,Murrieta (CA),33.560958,-117.18225,,0.01,,9028,315,164,,,,,,20010455,,, +620,USA,en,WPFK505,,San Bernardino (CA),34.222778,-117.410056,,0.01,,8976,316,164,,,,,,20010454,,, +620,USA,en,WPFS414,,Inglewood (CA),33.960278,-118.344314,,0.01,,9045,316,164,,,,,,20010462,,, +620,USA,en,WPGR273,,Newbury Park (CA),34.193489,-118.912306,,0.01,,9049,317,164,,,,,,20010459,,, +620,USA,en,WPGR279,,Eagle Rock (CA),34.146111,-118.227028,,0.01,,9022,316,164,,,,,,20010458,,, +620,USA,en,WPGR279,,Pomona (CA),34.073056,-117.794303,,0.01,,9008,316,164,,,,,,20010461,,, +621,BEL,fr,RTBF International,,Wavre (wal-bra),50.745467,4.585564,,300,,198,221,34,,0400-2215,12345.7,9992,,194,,, +621,BEL,fr,RTBF International,,Wavre (wal-bra),50.745467,4.585564,,300,,198,221,34,,0400-2400,.....6.,9992,,194,,, +621,MDA,ru,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.278247,29.442828,,160,,1733,99,52,,0400-0900,12345..,,,201,,, +621,MDA,ru,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.278247,29.442828,,160,,1733,99,52,,1600-2100,12345..,,,201,,, +621,EGY,ar,ERTU Sawt al-Arab,,Batrah (dqh),31.170167,31.434833,,1000,105,3091,129,58,,0000-2400,1234567,14,,199,,, +621,E,es,RNE R Nacional,,Palma/Marratx (BAL-ML),39.633539,2.669078,,10,,1417,193,61,,0000-2400,1234567,998,,197,,, +621,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0000-2400,1234567,5,,196,,, +621,E,es,RNE R Nacional,,Jan/Las Lagunillas (AND-J),37.795017,-3.772844,,10,,1778,210,65,,0000-2400,1234567,2,,198,,, +621,RUS,ru,R Rossii,,Syktyvkar/Ezhva (KO),61.81925,50.690694,,50,,2825,50,68,,0200-2200,1234567,0,,203,,, +621,CNR,es,RNE R Nacional,,Las Mesas (RNE) (STC-TF),28.482833,-16.268569,,100,,3227,224,69,,0000-2400,1234567,999,,195,,, +621,RUS,xx,R Rossii,,Makhachkala (DA),42.976706,47.342375,,50,,3187,92,72,,0100-2100,1234567,,,202,,, +621,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Birjand (skh),32.8152,59.333931,,200,,4711,96,81,,0000-2400,1234567,29,,200,,, +621,AFG,ps,R Mashaal,,Tani-Khost (kho),33.340156,69.960781,,200,,5396,87,88,PAK,0400-1300,1234567,,,11000001,,, +621,AFG,ps,VoA Deewa R,,Tani-Khost (kho),33.340156,69.960781,,200,,5396,87,88,PAK,0100-0400,1234567,,,11000001,,, +621,AFG,ps,VoA Deewa R,,Tani-Khost (kho),33.340156,69.960781,,200,,5396,87,88,PAK,1300-1900,1234567,,,11000001,,, +621,IRN,fa,IRIB R Khalij-e Fars,,Bandar-e Abbas (hrg),27.255167,56.413556,,50,,4957,104,90,,0000-2400,1234567,,,10800017,,, +621,NIG,,ABS Anambra R,,Awka=Ọka (ana),6.181489,6.996669,,20,,5107,179,95,,0500-2300,1234567,,,2320,,, +621,AFG,,RTA R Paktia,,Gardez (pia),33.6,69.219444,,7,,5326,87,102,,0230-0430,1234567,,,46811,,, +621,AFG,,RTA R Paktia,,Gardez (pia),33.6,69.219444,,7,,5326,87,102,,1330-1430,1234567,,,46811,,, +621,IND,,AIR East,,Patna A (BR),25.532778,85.284722,,100,,7055,82,108,,0025-0445,1234567,9946,,47649,,, +621,IND,,AIR East,,Patna A (BR),25.532778,85.284722,,100,,7055,82,108,,0630-1000,1234567,9946,,47649,,, +621,IND,,AIR East,,Patna A (BR),25.532778,85.284722,,100,,7055,82,108,,1130-1742,1234567,9946,,47649,,, +621,KRE,de,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1600-1700,1234567,970,,47656,,, +621,KRE,ja,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,J,0700-1300,1234567,970,,47656,,, +621,KRE,ja,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,J,2100-2400,1234567,970,,47656,,, +621,KRE,ko,KCBS Pyongyang Pangsong,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1300-1400,1234567,970,,47656,,, +621,KRE,ko,KCBS Pyongyang Pangsong,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1800-2000,1234567,970,,47656,,, +621,KRE,ko,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,2000-2100,1234567,970,,47656,,, +621,KRE,ru,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1400-1600,1234567,970,,47656,,, +621,KRE,ru,KCBS Voice of Korea,,Ch'ongjin (hab),41.759167,129.706,,500,125,8239,40,112,,1700-1800,1234567,970,,47656,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Harbin/HLTS904 (HL),45.693006,126.822556,,100,45,7746,40,115,,0855-1500,1234567,,,47646,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Harbin/HLTS904 (HL),45.693006,126.822556,,100,45,7746,40,115,,2100-0600,1234567,,,47646,,, +621,RUS,ru,R Rossii,,Khabarovsk (KH),48.512889,135.119528,,50,63,7819,33,118,,0000-1500,1234567,,,46877,,, +621,RUS,ru,R Rossii,,Khabarovsk (KH),48.512889,135.119528,,50,63,7819,33,118,,1900-2400,1234567,,,46877,,, +621,TZA,sw,TBC Taifa,,Mbeya (mby),-8.934389,33.383583,,10,,7259,150,120,,0200-2100,1234567,,,2321,,, +621,BOT,,R Botswana,,Selebi Phikwe (ce),-22.000647,27.806278,,100,,8499,160,122,,0000-2400,1234567,,,2318,,, +621,THA,th,Sor. Wor. Sor.,,Khon Kaen (kkn),16.476556,102.957444,,100,,9005,75,124,,2130-1640,1234567,,,47669,,, +621,CHN,zh,Shandong RGD,,Liaocheng (SD),36.433333,115.966667,,10,,8044,53,127,,0000-2400,1234567,,,36200115,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Dongning (HL),44.056667,131.102778,,10,,8083,38,128,,0855-1500,1234567,,,36200112,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Dongning (HL),44.056667,131.102778,,10,,8083,38,128,,2100-0600,1234567,,,36200112,,, +621,CHN,,Guangyuan RGD,,Guangyuan/SCTS527 (SC),32.433333,105.816667,,3,,7807,62,130,,,,,,47645,,, +621,CHN,,Yichang RGD News,,Yichang (HU),30.703056,111.228889,,10,,8280,60,130,,,,,,47647,,, +621,HKG,zh,RTHK Putonghua Channel,,Golden Hill (stn),22.3675,114.153889,,20,,9195,63,131,,0000-2400,1234567,8,,47648,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,0855-1500,1234567,,,36200117,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,2100-0600,1234567,,,36200117,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jiayin (HL),48.8875,130.416667,,1,,7602,36,133,,0855-1500,1234567,,,36200113,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jiayin (HL),48.8875,130.416667,,1,,7602,36,133,,2100-0600,1234567,,,36200113,,, +621,KOR,ko,HLCF KBS 1 R,,Seogwipo (jej),33.243056,126.616667,,10,,8892,47,133,,0000-2400,1234567,,,47657,,, +621,KOR,ko,HLSJ KBS 1 R,,Taebaek (gan),37.165278,128.989167,,10,,8639,43,133,,0000-2400,1234567,,,47658,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Hegang/HLTS919 (HL),47.316944,130.213333,,1,,7740,37,134,,0855-1500,1234567,,,36200110,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Hegang/HLTS919 (HL),47.316944,130.213333,,1,,7740,37,134,,2100-0600,1234567,,,36200110,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Tongjiang (HL),47.631794,132.506544,,1,,7802,35,135,,0855-1500,1234567,,,36200119,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Tongjiang (HL),47.631794,132.506544,,1,,7802,35,135,,2100-0600,1234567,,,36200119,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Baoqing (HL),46.333333,132.216667,,1,,7914,36,136,,0855-1500,1234567,,,36200111,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Baoqing (HL),46.333333,132.216667,,1,,7914,36,136,,2100-0600,1234567,,,36200111,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Raohe (HL),46.785,133.9975,,1,,7941,35,136,,0855-1500,1234567,,,36200118,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Raohe (HL),46.785,133.9975,,1,,7941,35,136,,2100-0600,1234567,,,36200118,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jixi (HL),45.298056,130.938611,,1,,7959,38,137,,0855-1500,1234567,,,36200114,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jixi (HL),45.298056,130.938611,,1,,7959,38,137,,2100-0600,1234567,,,36200114,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mudanjiang (HL),44.588889,129.585278,,1,,7968,39,137,,0855-1500,1234567,,,36200116,,, +621,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mudanjiang (HL),44.588889,129.585278,,1,,7968,39,137,,2100-0600,1234567,,,36200116,,, +621,J,,JOCG NHK1,,Asahikawa (hok),43.763056,142.414444,,3,,8550,31,137,,0000-2400,1234567,,,47652,,, +621,CHN,,Zhaotong RGD,,Zhaotong/YNTS697 (YN),27.330556,103.694722,,1,,8112,67,138,,,,,,36200120,,, +621,PHL,,DZTG-AM Radyo Ronda,,Tuguegarao City (cag),17.6,121.75,,5,,10083,59,140,,,,,,47666,,, +621,PHL,,DXDC-AM Radyo Agong,,Davao City (dvs),7.05,125.583333,,10,,11292,62,141,,2100-1600,1234567,,,47664,,, +621,PHL,,DZBU-AM Radyo ng Bayan,,Legazpi City (aby),13.133333,123.733333,,5,,10615,60,142,,,,,,47665,,, +621,KOR,ko,HLAY KBS 1 R,,Yeongdong (jeb),36.180556,127.770833,,1,,8673,45,143,,0000-2400,1234567,,,47659,,, +621,J,,JOOK NHK1,,Kyoto (kns-kyo),35.0175,135.746111,,1,,9151,40,144,,0000-2400,1234567,9973,,47654,,, +621,J,,NHK R 1,,Iida (chu-nag),35.6625,137.853611,,1,,9178,38,144,,0000-2400,1234567,,,47653,,, +621,J,,NHK R 1,,Nobeoka (kyu-miy),32.575,131.687222,,1,,9203,44,144,,0000-2400,1234567,,,47655,,, +621,TWN,,Taiwan Guangbo Gongsi,,Daxi=Ta-Hsi (TY),24.878083,121.301861,,1,,9385,56,145,,0000-2400,1234567,,,47671,,, +621,PHL,,DZVC-AM,,Virac (ctd),13.585278,124.208889,,1,,10601,60,149,,,,,,47667,,, +621,INS,id,PM2DRL R Kijang Berantai,,Sambas (KB),1.333333,109.25,,1,,10762,79,150,,,,,,47623,,, +621,AUS,en,3RN ABC National,,Melbourne/Delahey (VIC),-37.72055,144.784044,,50,,16432,80,151,,0000-2400,1234567,9995,,47642,,, +621,TUV,,T2U2 R Tuvalu,,Funafuti,-8.52,179.2,,5,,15124,10,157,,0000-2400,1234567,,,47670,,, +621,AUS,,6EL Spirit R,,Bunbury/Wireless Road (WA),-33.339822,115.752556,,2,,14137,99,158,,0000-2400,1234567,,,47641,,, +621,NZL,en,NZs Rhema,,Whangarei/Maungakaramea (NTL),-35.820833,174.245833,,2,,17965,33,170,,0000-2400,1234567,,,47663,,, +621,NZL,en,4XG NZs Rhema,,Dunedin (OTA),-45.846933,170.444536,,2,,18662,65,173,,0000-2400,1234567,,,47662,,, +625,RUS,,U,b,Sankt-Peterburg/Pulkovo (SP),59.8125,30.125,,0.025,,1693,50,90,,,,,U400 ,85572,,, +625,UKR,,DW,b,Buyalyk,46.895833,30.708333,,0.025,,1838,99,91,,,,,,85564,,, +625,UKR,,SE,b,Sumy (SU),50.854167,34.791667,,0.025,,1958,83,93,,,,,,85570,,, +625,UKR,,SU,b,Sumy (SU),50.854167,34.791667,,0.025,,1958,83,93,,,,,,85571,,, +625,RUS,,NW,b,Ostafievo,55.520833,37.541667,,0.025,,2060,67,94,,,,,,85567,,, +625,RUS,,PS,b,Ostafievo,55.520833,37.541667,,0.025,,2060,67,94,,,,,L625 U400 ,85569,,, +625,RUS,,MB,b,Krasnodar (KD),45.104167,38.958333,,0.025,,2492,95,98,,,,,,85566,,, +625,RUS,,OCH,b,Krasnodar (KD),45.104167,38.958333,,0.025,,2492,95,98,,,,,,idX2,85568,, +625,RUS,,AW,b,Yoshkar-Ola / Danilovo,56.645833,48.041667,,0.025,,2699,63,100,,,,,L1020 U1020 15.0s,IDx2,86763,, +629,RUS,,UL,b,Uglerod,48.145833,40.041667,,0.025,,2415,87,97,,,,,,85573,,, +630,ROU,,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1400-1430,......7,999,,214,,, +630,ROU,bg,SRR R Timishoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1700-1800,......7,999,,214,,, +630,ROU,cs,SRR Rdio Temevr,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1430-1500,......7,999,,214,,, +630,ROU,de,SRR R Temeswar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1100-1200,1234567,999,,214,,, +630,ROU,hu,SRR Rdi Temesvr,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1200-1300,1234567,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1405-2200,...4...,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1510-2200,12..5..,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1700-2200,..3..6.,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1800-2200,......7,999,,214,,, +630,ROU,ro,SRR R Timişoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,2200-1100,1234567,999,,214,,, +630,ROU,sk,SRR Rdio Temevr,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1500-1600,......7,999,,214,,, +630,ROU,sr,SRR R Temivar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1300-1400,......7,999,,214,,, +630,ROU,sr,SRR R Temivar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1300-1405,...4...,999,,214,,, +630,ROU,sr,SRR R Temivar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1300-1510,12..5..,999,,214,,, +630,ROU,sr,SRR R Temivar,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1300-1700,..3..6.,999,,214,,, +630,ROU,uk,SRR R Timishoara,,Timişoara/Orţişoara (TM),45.967128,21.215467,,400,125,1274,117,44,,1600-1700,......7,999,,214,,, +630,TUN,,RTT R Nationale,,Tunis/Djedeida (tun),36.836556,9.929472,,300,,1721,169,50,,0000-2400,1234567,0,,216,,, +630,ROU,ro,SRR Antena Satelor,,Voineşti (DB),45.056833,25.261667,,50,135,1586,112,56,,0000-2400,1234567,,,213,,, +630,TUR,ar,TRT 1 Radyo Bir,,Mersin-Kazanli (Cukurova) (akd-mer),36.824889,34.741292,,300,,2788,116,60,,1800-2000,1234567,,,217,,, +630,TUR,tr,TRT ukurova Radyosu,,Mersin-Kazanli (Cukurova) (akd-mer),36.824889,34.741292,,300,,2788,116,60,,0800-1100,1234567,,,217,,, +630,G,en,BBC R Cornwall,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0000-2400,1234567,0,,207,,, +630,POR,pt,Antena 1,,Miranda do Douro (bgc),41.495889,-6.284167,,10,,1521,224,62,,0000-2400,1234567,,,211,,, +630,POR,pt,Antena 1,,Chaves (vrl),41.760739,-7.436833,,10,,1554,228,63,,0000-2400,1234567,,,210,,, +630,POR,pt,Antena 1,,Montemor-o-Velho/Carapinheira (coi),40.202833,-8.633417,,10,,1752,227,65,,0000-2400,1234567,,,212,,, +630,G,,BBC Asian Network,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,2100-0100,12345..,0,,206,,, +630,G,,BBC Three Counties R./BBC Asian Network,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,1905-2100,12345..,0,,206,,, +630,G,en,BBC Three Counties R.,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,0000-1905,1......,0,,206,,, +630,G,en,BBC Three Counties R.,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,0000-2400,.....67,0,,206,,, +630,G,en,BBC Three Counties R.,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.2,,472,270,69,,0100-1905,.2345..,0,,206,,, +630,KWT,ar,R Kuwait Quran Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.184106,48.04545,,100,,4251,110,80,,0000-2400,1234567,,,208,,, +630,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jizan=Gizan (jzn),16.86745,42.566344,,20,,5036,127,94,,0300-2200,1234567,,,47065,,, +630,PAK,,PBC Hayya alal-Falah,,Lahore 1 (pjb),31.403333,74.154444,,100,,5830,85,95,,0045-0405,1234.67,951,,47691,,, +630,PAK,,PBC Hayya alal-Falah,,Lahore 1 (pjb),31.403333,74.154444,,100,,5830,85,95,,0045-0820,....5..,951,,47691,,, +630,PAK,,PBC Hayya alal-Falah,,Lahore 1 (pjb),31.403333,74.154444,,100,,5830,85,95,,0800-1900,1234.67,951,,47691,,, +630,PAK,,PBC Hayya alal-Falah,,Lahore 1 (pjb),31.403333,74.154444,,100,,5830,85,95,,1000-1900,....5..,951,,47691,,, +630,ARS,ar,BSKSA Al-Quran al-Karim,,Najran (njn),17.590306,44.063389,,10,,5050,125,98,,0000-2400,1234567,,,47066,,, +630,RUS,,QT,b,Belokholunitsky (KV),58.895833,50.875,,0.025,,2842,57,101,,,,,,85574,,, +630,USA,,WPRO,i,Providence (RI),41.774444,-71.323056,,5,,5722,291,107,,,,996,,42730,,, +630,CAN,,CHED,,Edmonton (AB),53.399444,-113.397222,,50,,7023,325,110,,,,1,,36039,,, +630,BGD,,Bangladesh Betar,,Dhaka B/Savar (dha),23.862994,90.265553,,100,,7528,79,112,,0000-0145,1234567,,,47678,,, +630,BGD,,Bangladesh Betar,,Dhaka B/Savar (dha),23.862994,90.265553,,100,,7528,79,112,,0300-1710,1234567,,,47678,,, +630,BGD,,Bangladesh Betar,,Dhaka B/Savar (dha),23.862994,90.265553,,100,,7528,79,112,,1800-2100,1234567,,,47678,,, +630,CHN,zh,CNR 2,,Bachu/XJTS2041 (XJ),39.815278,78.535833,,1,,5499,74,112,,2300-1602,1234567,,,36200926,,, +630,CAN,en,CFCO,,Chatham (ON),42.334167,-82.281389,,6,,6359,298,113,,,,9948,,35942,,, +630,USA,,WMAL,i,Washington (DC),39.015278,-77.141667,,5,,6294,292,113,,,,9,,42271,,, +630,IND,,AIR South,,Thrissur (KL),10.562222,76.227222,,100,,7709,100,114,,0025-0345,1234567,9979,,47682,,, +630,IND,,AIR South,,Thrissur (KL),10.562222,76.227222,,100,,7709,100,114,,0625-0900,1234567,9979,,47682,,, +630,IND,,AIR South,,Thrissur (KL),10.562222,76.227222,,100,,7709,100,114,,1130-1735,1234567,9979,,47682,,, +630,CHN,zh,CNR 2,,rmqi/XJTS904 (XJ),43.715833,87.595,,1,,5800,65,115,,2300-1602,1234567,,,36200924,,, +630,CHN,zh,CNR 2,,Xingyang/SARFT554 (HE),34.811211,113.38945,,100,,8044,55,117,,2100-1602,1234567,,,36200109,,, +630,CHN,zh,CNR 2,,Yinchuan (NX),38.563056,106.310278,,20,,7320,58,117,,2100-1602,1234567,,,47680,,, +630,CHN,zh,CNR 2,,Nanchang/SARFT561 (JX),28.616975,116.052756,,200,,8746,57,120,,2100-1602,1234567,,,36200107,,, +630,VEN,es,YVKA RNV Canal Informativo,,Caracas (dcf),10.431028,-66.941444,,50,,7960,263,120,,0000-2400,1234567,277,,45350,,, +630,ALS,,KIAM,,Nenana (AK),64.478611,-149.086111,,3.1,,6880,348,121,,0000-2400,1234567,,,38574,,, +630,USA,en,KYFI,,St. Louis (MO),38.671667,-90.114444,,5,,7115,300,121,,,,,,38697,,, +630,USA,es,WREY,,Saint Paul (MN),44.866944,-92.900556,,2.5,,6772,307,121,,,,19,,41158,,, +630,VTN,vi,VOV1,,Đồng Hới (qbh),17.465833,106.610833,,200,,9157,71,121,,2155-1700,1234567,987,,47699,,, +630,PTR,es,WUNO,,San Juan (PR),18.431183,-66.273172,,5,,7225,268,122,,0000-2400,1234567,998,,43264,,, +630,CHN,zh,CNR 2,,Rongcheng (SD),37.134722,122.406944,,50,,8320,48,123,,2100-1602,1234567,,,36200925,,, +630,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.951167,47.44475,,75,,8843,141,124,,1500-1900,12345..,,,2322,,, +630,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.951167,47.44475,,75,,8843,141,124,,1500-2200,.....67,,,2322,,, +630,USA,,WMFD,,Wilmington (NC),34.271944,-77.974444,,1,,6715,289,124,,,,,,42309,,, +630,B,pt,ZYH924 Rdio Maracu,,Viana (MA),-3.192183,-45.018472,,10,,7808,236,125,,,,,,36901138,,, +630,USA,,WLAP,,Lexington (KY),38.123611,-84.445833,,1,,6818,296,125,,,,9967,,42122,,, +630,B,pt,ZYH422 Rdio Difusora Amap,,Macap (AP),0.011694,-51.06505,,10,,7862,243,126,,,,,,36901137,,, +630,CUB,es,R Progreso,,Camagey/CTOM2 (cm),21.350153,-77.872003,,5,,7768,279,128,,,,4,,36523,,, +630,USA,,KHOW,,Denver (CO),39.91,-104.913889,,5,,7831,311,128,,,,9998,,38555,,, +630,ALS,,KJNO,,Juneau (AK),58.329722,-134.471389,,1,,7236,339,129,,0000-2400,1234567,,,38680,,, +630,USA,en,KCIS,,Edmonds (D) (WA),47.768333,-122.351944,,5,,7893,326,129,,,,,,20016218,,, +630,B,pt,ZYJ920 Rdio Aperipe,,Aracaj (SE),-10.890967,-37.064178,,5,,8143,225,131,,,,,,36901131,,, +630,PHL,,DZMM-AM Radyo Patrol,,Obando (bul),14.710556,120.933056,,50,,10302,62,131,,0000-2400,1234567,0,,47692,,, +630,USA,,KFXD,,Boise (ID),43.515556,-116.328611,,5,,8049,320,131,,,,0,,38442,,, +630,CHN,,CNR 2,,several locations,34.95,104.5,,1,,7515,61,132,,2058-1602,1234567,,,47679,,, +630,CHN,zh,CNR 2,,Weifang (SD),36.716667,119.1,,5,,8187,50,132,,2100-1602,1234567,,,36200923,,, +630,CLM,es,HJE69,,Puerto Inirida (gui),3.866667,-67.916667,,10,,8602,260,132,,,,,,35901369,,, +630,USA,,WEJL,,Scranton (PA),41.409444,-75.666944,,0.032,,6023,294,132,,,,,,41274,,, +630,USA,en,KCIS,,Edmonds (N) (WA),47.85,-122.160556,,2.5,,7878,326,132,,,,,,38160,,, +630,VEN,,YVJA,,San Fernando de Apure (apu),7.816667,-67.416667,,5,,8221,262,132,,,,,,45340,,, +630,HTI,,Voix des ODS,,Port-au-Prince (oue),18.516667,-72.316667,,1,,7631,273,133,,,,,,52097,,, +630,KOR,,HLCY KBS 1 R,,Yeosu (jen),34.723611,127.700556,,10,,8807,46,133,,0000-2400,1234567,,,47689,,, +630,MEX,es,XEFB-AM,,Monterrey (nvl),25.713344,-100.198394,,10,,8827,299,133,,,,,,43993,,, +630,CLM,es,HJFD,,Manizales (cal),5.083333,-75.5,,10,,9010,267,134,,,,,,37429,,, +630,HTI,,Rdiffusion Jeremienne,,Jrmie (gan),18.640639,-74.115281,,1,,7743,274,134,,,,,,52096,,, +630,SLV,es,YSLN FM Monumental,,San Salvador (ssl),13.716667,-89.25,,10,,9188,283,134,,,,,,45294,,, +630,USA,,KSLR,,San Antonio (D) (TX),29.391389,-98.35,,5,,8391,299,134,,,,,,20016196,,, +630,USA,,KSLR,,San Antonio (N) (TX),29.530556,-98.120278,,4.3,,8365,299,134,,,,,,39385,,, +630,KOR,,HLSE KBS 1 R,,Inje (gan),38.056667,128.173333,,5,,8516,43,135,,0000-2400,1234567,,,47688,,, +630,TWN,,BCC News Network,,Yilan (YL),24.7338,121.802389,,10,,9427,55,135,,0000-2400,1234567,,,47697,,, +630,ARG,,LW8 R San Salvador de Jujuy,,San Salvador de Jujuy (jy),-24.183333,-65.316667,,25,,10952,241,136,,0900-0400,1234567,,,40264,,, +630,CHN,zh,CNR 2,,Shijiazhuang (HB),37.833333,114.666667,,1,,7851,53,136,,2100-1602,1234567,,,36200108,,, +630,TWN,,Taiwan Guangbo Gongsi,,Sungling (NT),23.84,120.631944,,8,,9443,57,136,,,,,,47698,,, +630,USA,,WJAW,,St. Marys (WV),39.395,-81.230278,,0.037,,6520,295,136,,,,,,41840,,, +630,INS,id,RRI Pro-1,,Makassar (SN-mak),-5.269722,119.4225,,50,,12026,75,137,,2055-1600,1234567,0,,47683,,, +630,THA,th,Mor. Thor. Bor. Sip-Et 11,,Bangkok/145 Rama V Road (bmp),13.785542,100.523778,,5,,9079,78,137,,????-1700,1234567,,,47696,,, +630,ARG,es,LS5 R Rivadavia,,Buenos Aires/Bella Vista (df),-34.577833,-58.679528,,25,,11518,230,138,,0000-2400,1234567,,,40160,,, +630,USA,,WAIZ,,Hickory (NC),35.722778,-81.278056,,0.057,,6811,292,138,,,,,,40679,,, +630,B,pt,ZYH636 Rdio Cidade,,Campos Sales (CE),-7.078794,-40.359414,,0.5,,7931,230,139,,,,,,36901123,,, +630,B,pt,ZYI384 Difusora Bom Jesus,,Cuiab (MT),-15.6,-56.1,,5,,9620,239,139,,,,,,36901136,,, +630,EQA,,HCHA2,,Quevedo (gua),-1.016667,-79.616667,,5,,9826,266,139,,,,,,36962,,, +630,PNR,es,HOJ35 R Provincias,,Chitr (her),7.955947,-80.432117,,2,,9095,272,141,,,,,,37695,,, +630,USA,,KTKK,,Sandy (UT),40.691667,-111.925,,0.5,,8110,316,141,,,,,,39495,,, +630,USA,,WBMQ,,Savannah (GA),32.075278,-81.071389,,0.047,,7091,289,141,,,,9992,,40883,,, +630,USA,,WNEG,,Toccoa (GA),34.567778,-83.323889,,0.044,,7033,293,141,,,,,,20016053,,, +630,MEX,es,XEJR-AM Coral,,San Jeronimito (gue),17.568594,-101.353919,,2.5,,9628,295,142,,,,,,34900025,,, +630,USA,,KPLY,,Reno (NV),39.573611,-119.846667,,1,,8576,320,142,,,,99987,,39174,,, +630,ARG,es,LU4 R Dif. Patagonia Argentina,,Comodoro Rivadavia (ch),-45.874578,-67.503625,,25,,12967,228,143,,0900-0500,1234567,,,40232,,, +630,CHN,zh,CNR 2,,Hangzhou/ZJTS4 (ZJ),30.266667,120.133333,,1,,8826,54,143,,2100-1602,1234567,,,36200106,,, +630,GTM,,TGEL R El Porvenir,,Santa Elena (pet),17.05,-89.166667,,1,,8891,285,143,,1000-0400,1234567,,,52129,,, +630,GUM,en,KUAM,,Agana (GU),13.448056,144.756111,,10,,11701,42,143,,0000-2400,1234567,,,39559,,, +630,HND,,HRLP7,,La Ceiba (atl),15.75,-86.816667,,1,,8848,282,143,,,,,,37792,,, +630,PHL,,DYAG-AM Cadiz RTV Network,,Cadiz (noc),10.833333,123.3,,5,,10803,62,143,,2100-1400,1234567,,,47693,,, +630,USA,,KIDD,,Monterey (CA),36.691111,-121.8,,1,,8939,320,143,,,,99705,,38583,,, +630,MEX,es,XECCQ-AM Frecuencia Turquesa,,Cancn (qui),21.163125,-86.850736,,0.5,,8382,286,144,,,,,,43827,,, +630,B,pt,ZYH777 Rdio 620 AM,,Pires do Rio/Fazenda Brejo (GO),-17.2952,-48.301481,,1,,9343,232,145,,,,,,36901133,,, +630,USA,,WAVU,,Albertville (AL),34.238611,-86.166389,,0.028,,7238,294,145,,,,,,40779,,, +630,USA,,WJDB,,Thomasville (AL),31.882778,-87.745,,0.049,,7531,294,145,,,,,,41859,,, +630,MEX,es,XEFU-AM La Nueva Voz,,Cosamaloapan (vcz),18.359061,-95.815281,,0.75,,9208,291,146,,,,,,44034,,, +630,AUS,en,4QN ABC North Queensland,,Townsville/Brandon (QLD),-19.509986,147.341583,,50,,15065,58,147,,0000-2400,1234567,32,,47677,,, +630,B,pt,ZYN603 Rdio IPB-Novo Tempo,,Campo Grande (MS),-20.560128,-54.636194,,1,,10000,235,147,,,,,,36901139,,, +630,CHL,es,CB63 R Stella Maris,,Valparaso/Cerro Mariposa (VS),-33.073689,-71.624489,,5,,12110,240,147,,1100-0500,1234567,,,35755,,, +630,USA,en,KTRW,,Opportunity (WA),47.608611,-117.373611,,0.053,,7712,323,147,,,,,,39800,,, +630,MEX,es,XEJB-AM,,Guadalajara (jal),20.700317,-103.390967,,0.5,,9470,298,148,,,,,,44199,,, +630,PRU,,OBU7I R Chaski,,Urubamba/Cerro Sacro (cus),-13.359139,-72.111694,,1,,10412,253,148,,,,,,37000118,,, +630,B,pt,ZYL299 Rdio Difusora de Uberaba,,Uberaba (MG),-19.769461,-47.930628,,0.5,,9561,230,149,,,,,,36901127,,, +630,BOL,,CP204 R Tarija,,Tarija (trj),-21.55,-64.333333,,1,,10655,242,149,,0900-0130,1234567,,,51963,,, +630,CAN,en,CBKU,,Sayward (BC),50.388056,-125.961944,,0.04,,7770,330,149,,,,,,20109083,,, +630,INS,id,R Samhan,,Jakarta/Duren Sawit (JK-kjt),-6.237778,106.921389,,1.5,,11272,86,149,,,,,,35400023,,, +630,B,pt,ZYK289 Rdio Santamariense,,Santa Maria/Rua Candida Vargas (RS),-29.690278,-53.825,,1,,10813,229,150,,,,,,36901126,,, +630,MEX,es,XEFX-AM Doble X,,Guaymas (son),27.894628,-110.908111,,0.25,,9240,308,150,,,,,,44038,,, +630,USA,,KVMA,,Magnolia (AR),33.299722,-93.2325,,0.03,,7748,299,150,,,,,,39639,,, +630,B,pt,ZYJ284 Rdio Educativa do Paran,,Curitiba/Colnia Penal Agrcola (PR),-25.41625,-49.085444,,0.5,,10164,228,151,,,,,,36901134,,, +630,MEX,es,XEOPE-AM Exa,,Mazatln (sin),23.220422,-106.384167,,0.25,,9417,302,151,,,,,,44828,,, +630,B,pt,ZYK259 Rdio Cacique,,Lagoa Vermelha (RS),-28.223889,-51.526667,,0.5,,10556,229,152,,,,,,36901130,,, +630,B,pt,ZYK613 Rdio Difusora de Mirassol,,Mirassol (SP),-20.837869,-49.480447,,0.25,,9745,231,152,,,,,,36901129,,, +630,MEX,es,XEERO-AM R Tamaulipas,,Esteros (tam),22.534961,-98.124408,,0.15,,8983,295,152,,,,,,43976,,, +630,USA,,KLEA,,Lovington (NM),32.941667,-103.32,,0.069,,8364,305,152,,,,,,38795,,, +630,B,pt,ZYK635 Rdio Cidade,,Presidente Prudente (SP),-22.106944,-51.401667,,0.25,,9969,232,153,,,,,,36901124,,, +630,B,pt,ZYJ300 Rdio Educadora AM,,Marechal Cndido Rondon (PR),-24.515556,-54.037222,,0.25,,10338,232,154,,,,,,36901132,,, +630,B,pt,ZYJ800 Rdio Doze de Maio AM,,So Loureno do Oeste (SC),-26.380833,-52.837222,,0.25,,10450,231,154,,,,,,36901125,,, +630,PRG,,ZP50,,General Eugenio A Garay (bqn),-20.516667,-62.366667,,0.25,,10443,241,154,,,,,,45546,,, +630,USA,,KWRO,,Coquille (OR),43.171389,-124.198333,,0.046,,8408,325,154,,,,,,39751,,, +630,AUS,en,6AL ABC Great Southern WA,,Albany/Gledhow Rd S (WA),-35.011903,117.824194,,5,,14403,99,155,,0000-2400,1234567,,,47674,,, +630,USA,en,WQIW791,,Chalmette (LA),29.95,-89.966667,,0.01,,7832,294,155,,,,,,20010463,,, +630,AUS,en,2PB ABC Newsr,,Sydney/Prestons (NSW),-33.941906,150.887611,,10,,16545,68,159,,0000-2400,1234567,,,47676,,, +630,CKH,,ZK1KC R Cook Islands,,Matavera (rtg),-21.218061,-159.735844,,2.5,,16379,336,164,,1630-0930,1234...,,,47681,,, +630,CKH,,ZK1KC R Cook Islands,,Matavera (rtg),-21.218061,-159.735844,,2.5,,16379,336,164,,1630-1030,....56.,,,47681,,, +630,CKH,,ZK1KC R Cook Islands,,Matavera (rtg),-21.218061,-159.735844,,2.5,,16379,336,164,,1730-0930,......7,,,47681,,, +630,NZL,en,RNZ National,,Napier/Opapa (HKB),-39.797222,176.675,,10,045 225,18456,32,165,,0000-2400,1234567,,,47690,,, +630,AUS,,7RN ABC National,,Queenstown (TAS),-42.044167,145.528889,,0.4,,16774,86,173,,0000-2400,1234567,,,47675,,, +635,BLR,,VX,b,Minsk 2 (MI),53.9375,27.958333,,0.025,,1450,73,87,,,,,U1018 ,85581,,, +635,BLR,,GH,b,Minsk 2 (MI),53.854167,28.125,,0.025,,1461,74,88,,,,,U1020 ,85575,,, +635,RUS,,KO,b,Kotly,59.354167,28.458333,,0.025,,1587,51,89,,,,,U400 30.4s,IDx2,85576,, +635,UKR,,KD,b,Kirovograd,48.5625,32.291667,,0.025,,1868,92,92,,,,,,86765,,, +635,RUS,,BO,b,Dobrynskoye,56.229167,40.541667,,0.025,,2244,65,95,,,,,15.0s,IDx2 + 4 gap,86764,, +635,RUS,,PF,b,Murmansk / Murmashi South (MU),68.8125,32.708333,,0.025,,2313,27,96,,,,,,85579,,, +635,RUS,,RD,b,Murmansk / Murmashi South (MU),68.729167,32.791667,,0.025,,2309,27,96,,,,,U1045 ,85580,,, +635,RUS,,MD,b,Izhevsk (UD),53.8125,47.458333,,0.025,,2717,70,100,,,,,,85578,,, +635,RUS,,LV,b,Izhevsk (UD),56.895833,53.458333,,0.025,,3021,61,103,,,,,U1020 15.0s,IDx2 + 6 gap,85577,, +638,NIG,,Kaduna State Media Corp.,,Katabu (kdn),10.695661,7.520694,,25,,4606,178,89,,0430-2305,1234567,9,,1754,,, +639,CZE,cs,ČRo Dvojka,,Praha/Liblice (PR),50.0625,14.886667,,750,,634,108,35,,0300-1500,12345..,9996,,220,,, +639,CZE,cs,ČRo Dvojka,,Praha/Liblice (PR),50.0625,14.886667,,750,,634,108,35,,0400-1500,.....67,9996,,220,,, +639,CZE,cs,ČRo Plus,,Praha/Liblice (PR),50.0625,14.886667,,750,,634,108,35,,1500-2300,1234567,9996,,220,,, +639,E,es,RNE R Nacional,,La Corua/Mesn do Vento (GAL-C),43.152653,-8.377661,,300,,1485,234,47,,0000-2400,1234567,1,,225,,, +639,CZE,cs,ČRo Dvojka,,Ostrava/Svinov (MO),49.810833,18.191667,,30,,863,103,51,,0300-1500,12345..,,,219,,, +639,CZE,cs,ČRo Dvojka,,Ostrava/Svinov (MO),49.810833,18.191667,,30,,863,103,51,,0400-1500,.....67,,,219,,, +639,CZE,cs,ČRo Plus,,Ostrava/Svinov (MO),49.810833,18.191667,,30,,863,103,51,,1500-2300,1234567,,,219,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0625-0630,12345..,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0650-0700,12345..,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0800-0815,12345..,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1208-1300,12345..,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1230-1300,.....67,,,223,,, +639,E,es,RNE Pas Vasco,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1400-1415,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0000-0625,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0000-1230,.....67,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0630-0650,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0700-0800,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,0815-1208,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1300-1400,12345..,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1300-2400,.....67,,,223,,, +639,E,es,RNE R Nacional,,Bilbao/Ganguren (RNE) (PVA-BI),43.258089,-2.856508,,40,,1202,219,53,,1415-2400,12345..,,,223,,, +639,E,es,RNE R Nacional,,Zaragoza/Cuarte Torrero (RNE) (ARA-Z),41.623267,-0.891094,,50,,1290,208,53,,0000-2400,1234567,1,,224,,, +639,CYP,ar,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.616556,33.000622,,500,180,2869,122,59,ME,1800-2100,1234567,,,218,,, +639,CYP,ar,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.616556,33.000622,,500,180,2869,122,59,NAf,0300-0700,1234567,,,218,,, +639,E,es,RNE R Nacional,,Albacete/El Palo (RNE) (CAM-AB),38.984308,-1.919122,,12,,1595,207,62,,0000-2400,1234567,,,221,,, +639,E,es,RNE R Nacional,,Almera/Roquetas de Mar (RNE) (AND-AL),36.729925,-2.641589,,25,,1852,206,62,,0000-2400,1234567,0,,222,,, +639,IRN,fa,IRIB R Iran,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,0530-1330,1234567,20,,226,,, +639,IRN,fa,IRIB R Iran,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,1630-1830,1234567,20,,226,,, +639,IRN,fa,IRIB R Iran,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,2000-0330,1234567,20,,226,,, +639,IRN,ku,IRIB WS,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,0430-0530,1234567,20,,226,,, +639,IRN,ku,IRIB WS,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,1330-1630,1234567,20,,226,,, +639,IRN,tr,IRIB WS,,Bonab (eaz),37.306792,46.045711,,100,,3480,102,72,,1830-2000,1234567,20,,226,,, +639,RUS,ru,R Rossii,,Omsk/RV49 (OM),55.026556,73.228611,,75,,4254,58,81,,2300-1900,1234567,,,46881,,, +639,OMA,ar,R Sultanate Oman,,Mahda (buy),24.246944,55.88975,,100,135,5174,107,89,,0000-2400,1234567,,,11700020,,, +639,SDN,,SRTC Sudan Nat. R,,Al-Ubayyid=El Obeid (kn),13.21255,30.282678,,10,,4821,145,95,,,,,,2327,,, +639,UGA,xx,UBC West,,Kampala/Bugolobi (kmp),0.311453,32.614339,,50,,6257,148,103,,0300-1200,12345..,,,2329,,, +639,UGA,xx,UBC West,,Kampala/Bugolobi (kmp),0.311453,32.614339,,50,,6257,148,103,,0345-2100,.....67,,,2329,,, +639,UGA,xx,UBC West,,Kampala/Bugolobi (kmp),0.311453,32.614339,,50,,6257,148,103,,1300-2100,12345..,,,2329,,, +639,KEN,,KBC English Service,,Garissa (nea),-0.523444,39.538944,,50,,6619,141,106,,0200-2010,12345..,,,2325,,, +639,KEN,,KBC English Service,,Garissa (nea),-0.523444,39.538944,,50,,6619,141,106,,0200-2110,.....6.,,,2325,,, +639,KEN,,KBC English Service,,Garissa (nea),-0.523444,39.538944,,50,,6619,141,106,,0230-2110,......7,,,2325,,, +639,CHN,zh,CNR 1,,Artux=Atushi/XJTS8108 (XJ),39.706783,76.184928,,1,,5351,76,111,,2025-1805,1234567,,,36201148,,, +639,CHN,zh,CNR 1,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,1,,5377,67,111,,2025-1805,1234567,,,36201149,,, +639,CHN,zh,CNR 1,,Beijing/SARFT542 (BJ),39.754111,116.172728,,200,,7763,50,112,,2025-1805,1234567,,,47704,,, +639,CHN,zh,CNR 1,,Shache=Yarkant/SARFT8107 (XJ),38.417222,77.225833,,1,,5512,76,112,,2025-1805,1234567,,,36200909,,, +639,CHN,zh,CNR 1,,Xinyuan=Knes/SARFT8117 (XJ),43.46,83.263611,,1,,5548,68,112,,2025-1805,1234567,,,36201164,,, +639,CHN,zh,CNR 1,,Kuqa=Kuche/SARFT8106 (XJ),41.717222,82.895278,,1,,5646,70,113,,2025-1805,1234567,,,36201156,,, +639,CHN,zh,CNR 1,,Chengdu/SCTS520 (SC),30.906086,104.124883,,100,,7834,64,115,,2025-1805,1234567,,,36200095,,, +639,MYA,,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,0430-0630,1234567,,,22100053,,, +639,MYA,en,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,0130-0200,1234567,,,22100053,,, +639,MYA,en,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,1430-1500,1234567,,,22100053,,, +639,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,1030-1430,1234567,,,22100053,,, +639,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.016456,96.548,,200,,8103,76,115,,2330-0130,1234567,,,22100053,,, +639,IND,,AIR Northeast,,Kohima (NL),25.719167,94.038611,,50,,7625,75,116,,0700-0850,1234567,,,47707,,, +639,IND,,AIR Northeast,,Kohima (NL),25.719167,94.038611,,50,,7625,75,116,,1000-1630,1234567,,,47707,,, +639,IND,,AIR Northeast,,Kohima (NL),25.719167,94.038611,,50,,7625,75,116,,2359-0510,1234567,,,47707,,, +639,CHN,bo,Xizang RGD,,Ga'er/Shiquanhe (XZ),32.494639,80.087611,,1,,6147,80,118,,2100-1805,1234567,,,36201154,,, +639,CHN,zh,CNR 1,,Hami=Kumul/XJTS761 (XJ),42.872778,93.511667,,1,,6223,62,119,,2025-1805,1234567,,,36200096,,, +639,CHN,zh,CNR 1,,Ruoqiang=Qarkilik/SARFT8105 (XJ),39.042222,88.170278,,1,,6179,69,119,,2025-1805,1234567,,,36201160,,, +639,CHN,bo,Xizang RGD,,Burang=Pulan (XZ),30.298667,81.172861,,1,,6392,81,121,,2100-1805,1234567,,,36201150,,, +639,CHN,bo,Xizang RGD,,Chagyab=Chaya (XZ),30.298667,81.172833,,1,,6392,81,121,,2100-1805,1234567,,,36201151,,, +639,CHN,zh,CNR 1,,Shuangliao (JL),43.5,123.5,,10,,7795,43,125,,2025-1805,1234567,,,36200908,,, +639,LSO,,LNBS R Lesotho,,Maseru/Lancer's Gap (msr),-29.31075,27.555947,,100,,9285,162,125,,0000-2400,1234567,7,,11600002,,, +639,CHN,zh,CNR 1,,Guilin/GXTS240 (GX),25.396278,110.323667,,50,,8692,64,126,,2025-1805,1234567,,,36200915,,, +639,CHN,zh,CNR 1,,Liuzhou/GXTS238 (GX),24.39875,109.344889,,50,,8719,65,126,,2025-1805,1234567,,,36200913,,, +639,CHN,zh,CNR 1,,Panjin/LNTS315 (LN),41.203278,122.029139,,10,,7932,46,126,,2025-1805,1234567,,,36200098,,, +639,CHN,bo,Xizang RGD,,Nagqu=Naqu (XZ),31.472389,92.042306,,1,,7020,72,127,,2100-1805,1234567,,,36201158,,, +639,CHN,bo,Xizang RGD,,Xigaz (XZ),29.291111,88.881267,,1,,6989,76,127,,2100-1805,1234567,,,36201163,,, +639,CHN,zh,CNR 1,,Meihekou (JL),42.513611,125.7025,,10,,7987,43,127,,2025-1805,1234567,,,36200911,,, +639,CHN,zh,CNR 1,,Yulin/GXTS241 (GX),22.673889,110.195,,50,,8924,65,127,,2025-1805,1234567,,,36200104,,, +639,CHN,bo,Xizang RGD,,Yadong (XZ),27.5175,88.963056,,1,,7139,78,128,,2100-1805,1234567,,,36201165,,, +639,CHN,zh,CNR 1,,Lchun (YN),23.005611,102.354056,,20,,8398,71,128,,2025-1805,1234567,,,36200912,,, +639,CHN,zh,CNR 1,,Yanji=Yeon'gil (JL),42.933689,129.502983,,10,,8119,40,128,,2025-1805,1234567,,,36200903,,, +639,CHN,bo,Xizang RGD,,Gongbo'gyamda (XZ),29.886111,93.244444,,1,,7228,73,129,,2100-1805,1234567,,,36201155,,, +639,CHN,bo,Xizang RGD,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,2100-1805,1234567,,,36201161,,, +639,CHN,zh,CNR 1,,Changbai (JL),41.416667,128.2,,10,,8203,42,129,,2025-1805,1234567,,,36200919,,, +639,CHN,bo,Xizang RGD,,Cona=Cuona (XZ),27.996111,91.964389,,1,,7299,75,130,,2100-1805,1234567,,,36201152,,, +639,CHN,bo,Xizang RGD,,Dngqn=Dingqing (XZ),31.413333,95.5985,,1,,7255,70,130,,2100-1805,1234567,,,36201153,,, +639,CHN,bo,Xizang RGD,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2100-1805,1234567,,,36201159,,, +639,CHN,zh,CNR 1,,Suizhou (HU),31.715,113.344722,,10,,8314,58,130,,2025-1805,1234567,,,36200907,,, +639,CHN,bo,Xizang RGD,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2100-1805,1234567,,,36200920,,, +639,CHN,zh,CNR 1,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,2025-1805,1234567,,,36200914,,, +639,CHN,zh,CNR 1,,Zhongning (NX),37.516122,105.704756,,1,,7372,59,131,,2025-1805,1234567,,,36200902,,, +639,CHN,zh,CNR 1,,Ganzi=Garz/SCTS532 (SC),31.619792,99.999333,,1,,7517,67,132,,2025-1805,1234567,,,36200916,,, +639,CHN,zh,CNR 1,,Qichun/Caohe (HU),30.233333,115.416667,,10,,8565,57,132,,2025-1805,1234567,,,36200099,,, +639,THA,th,Sor. Wor. Thor. (R Thailand),,Lamphun (cmi),18.568333,99.041389,,10,,8564,76,132,,2200-1600,1234567,,,47721,,, +639,CHN,bo,Xizang RGD,,Markam=Mangkang (XZ),29.679836,98.598306,,1,,7590,69,133,,2100-1805,1234567,,,36201157,,, +639,CHN,zh,CNR 1,,Aba=Ngawa/SCTS536 (SC),31.933333,101.716667,,1,,7598,65,133,,2025-1805,1234567,,,36200922,,, +639,CHN,zh,CNR 1,,Bayanhushu (NM),45.057222,121.489722,,1,,7561,44,133,,2025-1805,1234567,,,36200921,,, +639,CHN,zh,CNR 1,,Changzhou (JS),31.763611,119.776944,,10,,8670,53,133,,2025-1805,1234567,,,36200094,,, +639,CHN,zh,CNR 1,,Fangcheng (GX),21.766667,108.383333,,10,,8891,67,133,,2025-1805,1234567,,,47705,,, +639,CHN,zh,CNR 1,,Nanning/GXTS101 (GX),22.792222,108.191667,,10,,8789,67,133,,2200-1000,1234567,,,36200097,,, +639,CHN,zh,CNR 1,,Pingxiang (GX),22.097778,106.752278,,10,,8759,68,133,,2025-1805,1234567,,,36200910,,, +639,CHN,zh,CNR 1,,Zhangjiakou/HBTS109 (HB),40.600556,115.0925,,1,,7632,51,133,,2025-1805,1234567,,,36200105,,, +639,CHN,zh,CNR 1,,Fuzhou/FJTS103 (FJ),26.073889,119.339722,,10,,9164,57,134,,2025-1805,1234567,,,36200917,,, +639,CHN,zh,CNR 1,,Tongliao/NMTS729 (NM),43.666667,122.216667,,1,,7719,44,134,,2025-1805,1234567,,,36200103,,, +639,J,,JOPB NHK2,,Shizuoka (chu-shi),34.950278,138.418056,,10,,9272,38,135,,2030-1500,1.....7,,,47713,,, +639,J,,JOPB NHK2,,Shizuoka (chu-shi),34.950278,138.418056,,10,,9272,38,135,,2030-1635,.2345..,,,47713,,, +639,J,,JOPB NHK2,,Shizuoka (chu-shi),34.950278,138.418056,,10,,9272,38,135,,2030-1640,.....6.,,,47713,,, +639,THA,,Sor. Wor. Thor. (R Thailand),,Nakhon Si Thammarat (ntm),8.416667,99.966667,,10,,9511,82,135,,2200-1600,1234567,,,47722,,, +639,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,2200-1000,1234567,,,36200100,,, +639,CHN,zh,CNR 1,,Tangshan (HB),39.666667,118.285333,,1,,7881,49,136,,2025-1805,1234567,,,36200101,,, +639,CHN,zh,CNR 1,,Tianjin (TJ),39.15,117.15,,1,,7868,50,136,,2025-1805,1234567,,,36200102,,, +639,J,ja,JOWN STV Sapporo TV Hoso,,Hakodate (hok),41.818033,140.745675,,5,,8683,33,136,,0000-2400,1234567,3,,47711,,, +639,J,,JOIP NHK1,,Oita (kyu-oit),33.248056,131.575,,5,,9133,44,137,,0000-2400,1234567,,,47712,,, +639,CHN,zh,CNR 1,,Fengcheng/LNTS313 (LN),40.45,124.066667,,1,,8099,45,138,,2025-1805,1234567,,,36200918,,, +639,CHN,zh,CNR 1,,Tonghua (JL),41.683333,125.75,,1,,8066,43,138,,2025-1805,1234567,,,36200906,,, +639,CHN,zh,CNR 1,,Xiangfan/Pangongci (HU),32.027778,112.176389,,1,,8219,58,139,,2025-1805,1234567,,,36200904,,, +639,CHN,zh,CNR 1,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,2025-1805,1234567,,,36200329,,, +639,CHN,zh,CNR 1,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,1,,9229,58,144,,2025-1805,1234567,,,36201162,,, +639,PHL,,DXKR-AM RMN Marbel,,Koronadal=Marbel (sco),6.5,124.85,,5,,11299,63,144,,0000-2400,1234567,,,47718,,, +639,J,,CBC Chubu-Nippon Hoso,,Gifu/Kakamigahara-Shi (chu-gif),35.365278,136.805,,0.5,,9163,39,147,,0000-2400,1234567,,,47710,,, +639,PHL,,DZRL-AM,,Batac (iln),18.058611,120.558611,,1,,9971,60,147,,,,,,47717,,, +639,AUS,,5CK ABC North & West SA,,Port Pirie/Crystal Brook (SA),-33.344806,138.253847,,10,,15667,81,156,,0000-2400,1234567,,,47703,,, +639,AUS,,8RN ABC National,,Katherine (NT),-14.396139,132.180472,,2,,13672,69,156,,0000-2400,1234567,,,47701,,, +639,AUS,,2HC,,Coffs Harbour/Raleigh (NSW),-30.47,153.031389,,5,,16387,62,161,,0000-2400,1234567,23,,47700,,, +639,AUS,,4MS ABC Far North QLD,,Mossman (QLD),-16.414167,145.389444,,1,,14664,58,162,,0000-2400,1234567,10,,47702,,, +639,NZL,en,RNZ National,,Alexandra (OTA),-45.163867,169.393642,,2,,18551,65,172,,0000-2400,1234567,,,47715,,, +640,CAN,en,CBN,,Saint John's (NL),47.568889,-52.811389,,10,,4157,287,89,,,,1,,35790,,, +640,UKR,,I,b,Kiev / Boryspil (KY),50.354167,30.875,,0.025,,1706,87,90,,,,,U1034 ,85582,,, +640,UKR,,O,b,Kiev / Borispol (KY),50.3125,30.875,,0.025,,1708,87,90,,,,,U1031 9.0s,ID+7 gap,85583,, +640,CAN,,CFMJ,,Richmond Hill/Beamsville (ON),43.178389,-79.432333,,50,,6124,297,101,,,,9990,,35985,,, +640,GLP,fr,Guadeloupe 1re,,Pointe--Pitre (971),16.225144,-61.593494,,50,,7095,263,111,,0000-2400,1234567,998,,51731,,, +640,USA,en,WNNZ,,Westfield (MA),42.179444,-72.751389,,1,,5784,293,115,,,,,,42490,,, +640,USA,,WWJZ,,Mount Holly (NJ),39.996944,-74.719722,,0.95,,6067,292,118,,,,9975,,43394,,, +640,CUB,es,R Progreso,,Guanabacoa/CTOM1 (ch),23.108225,-82.284803,,50,,7915,284,119,,,,9981,,36457,,, +640,VEN,,YVQO Union R Portenas,,Puerto La Cruz (azg),10.066667,-64.766667,,50,,7844,261,119,,0000-2400,1234567,4,,45430,,, +640,ALS,,KYUK,,Bethel (AK),60.7825,-161.883333,,10,,7419,354,121,,0000-2400,1234567,33,,39873,,, +640,CAN,xx,CBIA,,Gjoa Haven (NU),68.626667,-95.8725,,0.04,,5180,331,123,,,,,,20109084,,, +640,CUB,es,R Progreso,,Victoria de las Tunas/CTOM2 (lt),20.93105,-76.909467,,10,,7739,278,124,,,,998,,36579,,, +640,USA,,WHLO,,Akron (OH),41.079722,-81.645833,,0.5,,6416,297,124,,,,,,41659,,, +640,USA,en,WFNC,,Fayetteville (NC),35.079444,-78.932778,,1,,6713,290,124,,,,,,41413,,, +640,B,pt,ZYJ590 Rdio Globo,,Natal/Fazenda Regomoleiro (RN),-5.785444,-35.278389,,5,,7547,226,126,,,,,,36901148,,, +640,EQA,,HCXY1,,Quito (pic),-0.166667,-78.5,,100,,9675,266,126,,,,,,37189,,, +640,USA,en,WXSM,,Blountville (TN),36.521944,-82.423611,,0.81,,6820,294,126,,,,,,41542,,, +640,GTM,,TGW R Nacional LV de Guatemala,,Ciudad de Guatemala (gut),14.566667,-90.566667,,50,,9201,284,127,,,,,,40555,,, +640,USA,,WOI,,Ames (IA),41.992778,-93.690833,,1,,7048,305,127,,,,9991,,42576,,, +640,USA,en,KFI,i,Los Angeles (CA),33.879722,-118.013056,,50,,9037,316,127,,,,1,,38389,,, +640,USA,,WMFN,,Zeeland (MI),42.816389,-85.956667,,0.23,,6540,301,129,,,,,,42312,,, +640,USA,en,WGST,,Atlanta (GA),33.761944,-84.458056,,1,,7170,293,129,,,,,,41568,,, +640,VEN,,YVMU R Carora,,Carora (lar),10.166667,-70.066667,,10,,8195,266,129,,1000-0400,1234567,,,51652,,, +640,CLM,es,HJBJ,,Santa Marta (mag),11.216667,-74.2,,10,,8386,270,131,,,,,,37348,,, +640,MEX,es,XENQ-AM,,Tulancingo de Bravo (hid),20.058611,-98.471389,,25,,9225,294,131,,,,,,44455,,, +640,B,pt,ZYK277 Rdio Band AM,,Porto Alegre/Matias Velho (RS),-29.897978,-51.215164,,50,,10699,227,132,,,,,,36901152,,, +640,USA,,WVLG,,Wildwood (FL),28.904444,-81.96,,0.86,,7408,288,132,,,,,,43305,,, +640,B,pt,ZYL320 Rdio Educadora de Porteirinha,,Porteirinha (MG),-15.760928,-43.038794,,10,,8920,228,133,,,,,,36901154,,, +640,B,pt,ZYI924 Rdio Cruzeiro de Pedro II,,Pedro II (PI),-4.428333,-41.441322,,1,,7730,232,134,,,,,,36901153,,, +640,CTR,,TIAD R Rica,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1130-0400,1234567,,,52144,,, +640,NCG,es,YNLN R.Ranchera La Mera Mera,,Managua (mng),12.15,-86.283333,,10,,9126,280,134,,1000-????,1234567,,,52187,,, +640,USA,,WCRV,,Collierville (TN),34.993056,-89.899444,,0.48,,7405,297,134,,,,9958,,41080,,, +640,B,pt,ZYI204 Rdio Vitria,,Vitria (ES),-20.3,-40.316667,,10,,9235,223,135,,,,,,36901147,,, +640,USA,,KWPN,,Moore (OK),35.289167,-97.502222,,1,,7829,303,135,,,,,,43403,,, +640,USA,en,WMEN,,Royal Palm Beach (FL),26.755,-80.366667,,0.46,,7482,285,135,,,,7,,41903,,, +640,MEX,es,XEJUA-AM Milenio R,,Ciudad Jurez (chi),31.7416,-106.483217,,5,,8647,307,136,,,,,,44229,,, +640,USA,en,KTIB,,Thibodaux (LA),29.851389,-90.913333,,1,,7899,295,136,,,,,,39485,,, +640,B,pt,ZYI406 Rdio Progresso AM,,Alta Floresta (MT),-9.870556,-56.101481,,5,,9087,242,137,,,,,,36901142,,, +640,B,pt,ZYH757 Rdio Difusora,,Goinia (GO),-16.737561,-49.409761,,5,,9349,233,138,,,,,,36901151,,, +640,PNR,es,R Panam,,La Palma (drn),8.372222,-78.149722,,2.5,,8903,271,139,,,,,,52297,,, +640,PRG,,ZP19 R Caaguazu,,Coronel Oviedo (cgz),-25.416667,-56.433333,,10,,10553,234,139,,0830-0300,1234567,,,45514,,, +640,PRU,es,OAZ4K Pacfico R,,Lima/El Agustino (lim),-12.038833,-76.98175,,10,,10617,257,139,,1030-0430,1234567,,,40368,,, +640,ARG,,LV15 R Villa Mercedes,,Villa Mercedes (sl),-33.666667,-65.466667,,10,,11806,235,143,,0900-0300,1234567,,,40239,,, +640,PNR,es,HOK22 R CPR,,Coln (clo),9.363056,-79.905556,,1,,8936,273,143,,,,,,37696,,, +640,B,pt,ZYJ751 RBN-Rdio Brasil Novo,,Jaragu do Sul (SC),-26.476667,-49.039722,,2.5,,10263,228,144,,,,,,36901141,,, +640,HND,,HRNN4,,Tegucigalpa (fmz),14.083333,-87.216667,,1,,9020,282,144,,,,,,37817,,, +640,MEX,es,XEHHI-AM R Uno,,Hidalgo del Parral (chi),26.950939,-105.718506,,1,,9039,303,144,,,,,,44116,,, +640,MEX,es,XEYQ-AM La Tremenda,,Fresnillo (zac),23.13125,-102.834333,,1,,9216,299,144,,,,,,45106,,, +640,MEX,es,XEHDL-AM Aro,,Huajuapan de Len (oax),17.806944,-97.786111,,1,,9383,292,145,,,,,,44104,,, +640,USA,en,WPHU966,,La Salle (IL),41.366694,-89.110083,,0.01,,6838,302,145,,,,,,20010464,,, +640,B,pt,ZYH458 Rdio Difusora Sul da Bahia,,Itabuna (BA),-14.781939,-39.291583,,0.5,,8638,225,146,,,,,,36901150,,, +640,B,pt,ZYI424 Rdio Tangar,,Tangar da Serra/Chcara do Cafe (MT),-14.633333,-57.483333,,1,,9612,241,146,,,,,,36901149,,, +640,B,pt,ZYK547 Rdio Morada do Sol,,Araraquara (SP),-21.757994,-48.144519,,1,,9764,229,146,,,,,,36901146,,, +640,B,pt,ZYJ262 Rdio Auriverde,,Londrina (PR),-23.233333,-51.141667,,1,,10062,231,147,,,,,,36901145,,, +640,EQA,es,R Morena,,Guayaquil (gua),-2.183333,-79.866667,,1,,9945,266,147,,,,,,1988,,, +640,ARG,es,LU18 R El Valle 640 AM,,General Roca (rn),-39.038278,-67.505542,,5,,12387,233,148,,0900-0300,1234567,,,40212,,, +640,CHL,es,CD64 R.Temuco Cooperativa AM,,Temuco (AR),-38.692417,-72.673428,,5,,12647,237,149,,1000-0430,1234567,,,35908,,, +640,MEX,es,XETAM-AM Ke Buena,,Ciudad Victoria (tam),23.709922,-99.122519,,0.25,,8940,297,150,,,,,,44792,,, +640,B,pt,ZYL308 Rdio Santa Cruz,,Par de Minas (MG),-19.881256,-44.59155,,0.25,,9401,227,151,,,,,,36901143,,, +640,ARG,es,LRA24 R Nacional,,Ro Grande (tf),-53.797522,-67.694389,,5,,13623,222,152,,0000-2400,1234567,,,39944,,, +640,B,pt,ZYJ489 Rdio Agulhas Negras,,Resende (RJ),-22.465308,-44.378417,,0.25,,9643,226,152,,,,,,36901144,,, +640,USA,en,KG2XAJ,,San Antonio (TX),29.446667,-98.608056,,0.0001,,8402,300,181,,,,,,20010465,,, +641,RUS,,WS,b,Vesely,47.104167,40.708333,,0.025,,2508,89,98,,,,,,85584,,, +642,RUS,,KN,b,Moskva/Kostino (MV),56.3125,37.708333,,0.025,,2069,65,94,,,,30,L400 U400 ,85585,,, +643,UKR,,TP,b,Topchyne,48.9375,34.791667,,0.025,,2024,89,93,,,,66,L978 U1110 ,ID+10 gap,85588,, +643,RUS,,RZ,b,Sharanga,57.1875,46.541667,,0.025,,2602,62,99,,,,,L1011 U1008 ,85587,,, +644,RUS,,SL,b,Solodniki (AS),48.395833,45.291667,,0.025,,2761,83,101,,,,1,L1010 U1013 ,85589,,, +645,POL,,RO,b,Radom,51.395833,21.291667,,0.025,,1026,89,83,,,,,L1020 ,85591,,, +645,UKR,,UG,b,Uzhgorod (ZH),48.645833,22.208333,,0.025,,1182,103,85,,,,,,ID+9 tone,85592,, +645,UKR,,UO,b,Uzghorod (ZH),48.645833,22.291667,,0.025,,1187,103,85,,,,,L1046 30.0s,IDx2,85593,, +645,RUS,,NT,b,Nizhnyaya Zolotitsa,65.6875,40.125,,0.025,,2406,38,97,,,,,,85590,,, +648,SVN,sl,R Murski Val,,Murska Sobota/Nemčavci (ms),46.685639,16.173722,,10,,928,127,56,,0000-2400,1234567,1,,240,,, +648,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0000-2400,1234567,2,,234,,, +648,ARS,ar,BSKSA Idha'atu-i Riyadh/Idha'atu-i Jeddah,,Jeddah/Sumaymah (mkh),21.239194,39.162894,,2000,130,4435,128,68,,0000-2400,1234567,,,231,,, +648,TJK,,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,AFG,1200-1400,1234567,6,,47759,,, +648,TJK,en,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,CAs,0100-0400,1234567,6,,47759,,, +648,TJK,en,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,CAs,1400-1500,1234567,6,,47759,,, +648,TJK,en,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,CAs,1700-1900,1234567,6,,47759,,, +648,TJK,fa,Voice of Russia,,Orzu (ktl),37.531611,68.789444,,1000,230,5009,83,77,IRN,1500-1700,1234567,6,,47759,,, +648,IRN,fa,IRIB R.Chahar Mahal & Bakhtiari,,Shahr-e Kord (cbk),32.170994,51.182694,,50,280,4213,104,82,,,,999,,236,,, +648,IND,,AIR West,,Indore A (MP),22.645556,75.821111,,200,,6648,91,101,,0023-0405,1234567,9989,,47731,,, +648,IND,,AIR West,,Indore A (MP),22.645556,75.821111,,200,,6648,91,101,,0405-0630,......7,9989,,47731,,, +648,IND,,AIR West,,Indore A (MP),22.645556,75.821111,,200,,6648,91,101,,0630-0935,1234567,9989,,47731,,, +648,IND,,AIR West,,Indore A (MP),22.645556,75.821111,,200,,6648,91,101,,1130-1740,1234567,9989,,47731,,, +648,NPL,,R Nepal,,Dhankuta (kos),26.796044,87.285847,,100,,7086,79,108,,2315-1720,1234567,,,47751,,, +648,RUS,en,Voice of Russia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,,0900-1000,1234567,3,,2283,,, +648,RUS,en,Voice of Russia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,,1400-1445,1234567,3,,2283,,, +648,RUS,ko,R Free Asia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,FE,1500-1900,1234567,3,,2283,,, +648,RUS,ko,R Free Asia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,FE,2100-2200,1234567,3,,2283,,, +648,RUS,ko,Voice of America,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,FE,1900-2100,1234567,3,,2283,,, +648,RUS,zh,Voice of Russia,,Razdolnoye/RV445 (PM),43.541944,131.93,,1000,230,8166,38,109,FE,1000-1400,1234567,3,,2283,,, +648,CHN,zh,Kashi RGD,,Kashgar=Kashi (XJ),39.416667,76,,1,,5359,76,111,,,,,,47729,,, +648,CHN,,Guangdong Weixing Guangbo,,Guangzhou/SARFT522 (GD),23.407494,113.240722,,150,,9046,63,122,,2200-1900,1234567,,,47727,,, +648,BOT,,R Botswana,,Mopipi (ce),-21.230389,24.898361,,50,,8351,162,124,,0000-2400,1234567,,,2330,,, +648,CHN,zh,CNR 1,,Binzhou (SD),37.366667,118.016667,,10,,8071,51,128,,2025-1805,1234567,,,36200901,,, +648,CHN,zh,CNR 1,,Jinan/Daqiao (SD),36.791389,117.015556,,10,,8069,52,128,,2025-1805,1234567,,,36200090,,, +648,VTN,vi,VOV1,,An Nhơn (Bnh Định) (bdh),13.893167,109.109689,,50,,9635,72,129,,2145-1700,1234567,,,47761,,, +648,CHN,,Chaoyang RGD Chengshi,,Chaoyang (LN),41.566667,120.466667,,3,,7822,47,130,,,,,,47726,,, +648,THA,,Sor. Wor. Thor. (R Thailand),,Khon Kaen (kkn),16.568822,102.820039,,25,,8988,75,130,,2200-1700,1234567,,,47758,,, +648,TWN,,BCC News Network,,New Taipei City/Panchiao (TP),25.006867,121.465544,,20,,9383,56,132,,0000-2400,1234567,,,47788,,, +648,CHN,,Shanghai RGD Jiaotong Pinl,,Shanghai/SHTS806 (SH),31.199444,121.416944,,10,,8811,52,133,,2155-1600,1234567,,,47730,,, +648,CHN,,Changchun RGD,,Changchun (JL),43.8,125.4,,1,,7855,42,136,,,,,,36200092,,, +648,J,en,AFN Okinawa-Surf 648,,Urasoe/Camp Kinser (kyu-oki),26.270133,127.707172,,10,,9605,50,136,,0000-2400,1234567,0,,47746,,, +648,CHN,,Liaoyang RGD Pingshu Xiqu Guangbo,,Liaoyang (LN),41.235556,123.183056,,1,,7985,45,137,,,,,,36200900,,, +648,J,,JOIG NHK1,,Toyama (chu-toy),36.720578,137.247681,,5,,9049,38,137,,0000-2400,1234567,,,47747,,, +648,PHL,,DWRH-AM (r:666 DZRH-AM),,Santiago City (isa),16.683333,121.533333,,10,,10155,60,138,,,,,,47754,,, +648,PHL,,DWRM-AM Radyo ng Bayan,,Puerto Princesa (plw),9.736111,118.738889,,10,,10623,66,139,,2057-????,1234567,,,47753,,, +648,CHN,,Huainan RGD,,Huainan (AH),32.656839,116.963722,,1,,8435,54,141,,,,,,47728,,, +648,CHN,zh,Anhui RGD Shenghuo Guangbo,,Wuhu (AH),31.3,118.4,,1,,8637,54,143,,2100-1800,1234567,,,36200091,,, +648,CHN,zh,CNR 1,,Xiangshan (ZJ),29.8,120.35,,1,,8881,54,143,,2025-1805,1234567,,,36200899,,, +648,KOR,,HLSL KBS 1 R,,Boseong (jeb),34.763333,127.090833,,1,,8773,46,143,,0000-2400,1234567,,,47748,,, +648,PHL,,DYRC-AM Aksyon Radyo,,Talisay (ceb),10.740833,122.970278,,5,,10791,62,143,,2000-1500,......7,,,47755,,, +648,PHL,,DYRC-AM Aksyon Radyo,,Talisay (ceb),10.740833,122.970278,,5,,10791,62,143,,2000-1600,123456,,,47755,,, +648,CHN,,Guangdong Weixing Guangbo,,Dabu (GD),22.366667,113.45,,1,,9152,63,144,,,,,,36200093,,, +648,CHN,zh,CNR 1,,Yuhuan (ZJ),28.133333,121.233333,,1,,9082,54,144,,2025-1805,1234567,,,36200898,,, +648,PHL,,DXMB-AM,,Malaybalay (buk),8.116667,125.116667,,5,,11165,62,144,,2100-1600,1234567,,,47752,,, +648,INS,id,R REM/R SSK,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400024,,, +648,INS,id,PM5DXY R Ajisatria,,Banyumas/Ajibarang (JT-ban),-7.416667,109.066667,,1,,11521,85,152,,,,,,49472,,, +648,INS,id,R.Santo Bernardus Duta Suara,,Pekalongan (JT),-6.883333,109.666667,,1,,11515,84,152,,,,,,47742,,, +648,AUS,,2NU ABC New England NW,,Tamworth/Manilla (NSW),-30.781167,150.7435,,10,,16275,65,158,,0000-2400,1234567,45,,47725,,, +648,AUS,,6GF ABC Goldfields-Esperance,,Kalgoorlie (WA),-30.782444,121.404083,,2,,14324,92,158,,0000-2400,1234567,,,47724,,, +648,NZL,en,NZs Rhema,,Gisborne/Mahia (GIS),-39.098056,177.9525,,2,,18428,28,172,,,,,,32500015,,, +650,UKR,,L,b,Lviv (LV),49.8125,23.958333,,0.025,,1252,95,85,,,,,U1020 ,85596,,, +650,UKR,,O,b,Lviv (LV),49.8125,23.958333,,0.025,,1252,95,85,,,,,L978 U979 15.4s,IDx2,85597,, +650,UKR,,V,b,Lviv (LV),49.8125,23.958333,,0.025,,1252,95,85,,,,,,IDx2,85601,, +650,RUS,,OS,b,Osmino,59.354167,29.125,,0.025,,1623,51,89,,,,1,L407 U410 ,85598,,, +650,CAN,,CKGA,,Gander (NL),48.960278,-54.660278,,5,,4202,290,92,,,,3,,52552,,, +650,RUS,,R,b,Yaroslavl / Tunoshna (YA),57.5625,40.208333,,0.025,,2222,61,95,,,,,,85600,,, +650,RUS,,BJ,b,Astrakhan / Narimanovo (AS),46.270833,48.041667,,0.025,,3050,86,103,,,,,,85594,,, +650,RUS,,GV,b,Astrakhan / Narimanovo (AS),46.270833,47.958333,,0.025,,3044,86,103,,,,,U1013 ,85595,,, +650,USA,,WSM,,Nashville/Blaw-Knox Mast (TN),35.997222,-86.792222,,50,,7133,296,111,,,,100,,43023,,, +650,ALS,,KENI,,Anchorage (AK),61.166111,-149.826111,,50,,7244,348,113,,0000-2400,1234567,9998,,38329,,, +650,CAN,en,CKOM,,Saskatoon (SK),52.079167,-106.511389,,10,,6850,320,116,,,,,,36357,,, +650,USA,,WNMT,,Nashwauk (MN),47.375278,-93.015556,,1,,6579,309,123,,,,,,42484,,, +650,CAN,en,CISL,,Richmond (BC),49.143889,-123.061389,,9,,7787,328,125,,,,,,36134,,, +650,CUB,es,R Progreso,,Ciego de vila/CTOM2 (ca),21.857528,-78.732478,,10,,7783,280,125,,,,0,,31600058,,, +650,USA,pt,WSRO,,Ashland (MA),42.288056,-71.431944,,0.062,,5692,292,126,,,,999,,43063,,, +650,CAN,fr,CBF-3,,Lebel-sur-Quvillon (QC),49.049444,-76.979722,,0.04,,5563,302,127,,,,,,20109085,,, +650,CUB,es,R Rebelde,,Santiago de Cuba/CTOM1 (sc),20.055531,-75.804389,,5,,7738,277,127,,,,,,36549,,, +650,URG,es,CX6 RNU Clsica AM,,Santiago Vzquez (mo),-34.810528,-56.361194,,200,,11419,228,129,,0000-2400,1234567,,,36824,,, +650,HND,,HRVW,,San Pedro Sula (cor),15.5,-88.016667,,20,,8950,283,131,,,,,,37868,,, +650,DOM,,HIAT R Universal,,Santo Domingo (sdo),18.566667,-69.833333,,1,,7457,271,132,,0000-2400,1234567,,,37211,,, +650,NCG,,YNRI R Septentrion,,Matagalpa (mgp),12.883333,-85.95,,12,,9040,280,133,,1100-0100,1234567,,,52188,,, +650,CLM,es,HJKH RCN Antena 2,,Bogot D. C. (bdc),4.566667,-74.066667,,10,,8957,265,134,,0000-2400,1234567,998,,37518,,, +650,PNR,es,HOS22 R Mia,,La Loma (pnm),9.025581,-79.490922,,10,,8938,272,134,,0000-2400,1234567,,,37726,,, +650,B,pt,ZYI672 Rdio Alto Piranhas,,Cajazeiras (PB),-6.905144,-38.560861,,1,,7821,228,135,,,,,,36901160,,, +650,B,pt,ZYL200 Rdio Princesa,,Lagoa Formosa (MG),-18.638358,-46.457961,,10,,9375,229,135,,,,,,36901167,,, +650,B,pt,ZYI414 Rdio Educadora,,Colder (MT),-10.824856,-55.47485,,5,,9138,241,137,,,,,,36901163,,, +650,BOL,,CP263 R Dif. Integracion,,El Alto (lpz),-16.5,-68.166667,,15,,10438,248,137,,0900-0130,1234567,,,51964,,, +650,PRG,,ZP4 R Uno,,Asuncin (asu),-25.266667,-57.616667,,15,,10605,235,137,,0900-0300,.....67,,,51733,,, +650,PRG,,ZP4 R Uno,,Asuncin (asu),-25.266667,-57.616667,,15,,10605,235,137,,0900-0400,12345..,,,51733,,, +650,PRU,,OAU9D,,Nieva/Pampa Hermosa (ama),-4.586667,-77.857222,,10,,10020,263,137,,,,,,37000077,,, +650,USA,,KGAB,,Orchard Valley (WY),41.053056,-104.8325,,0.5,,7726,311,137,,,,3,,38453,,, +650,B,pt,ZYI540 Tropical AM,,Santarm (PA),-2.454686,-54.693433,,1,,8314,245,140,,,,,,36901169,,, +650,B,pt,ZYK518 Rdio Tupi,,Santos (SP),-24.003056,-46.519083,,5,,9898,227,140,,,,9,,36901164,,, +650,EQA,,HCFD4,,Manta (man),-1,-80.766667,,5,,9903,267,140,,,,,,36935,,, +650,USA,,KMTI,,Manti (UT),39.294167,-111.636944,,0.9,,8224,315,140,,,,,,38937,,, +650,USA,en,WPCV564,,Alexandria (VA),38.776222,-77.082472,,0.01,,6309,292,140,,,,,,20010470,,, +650,USA,en,WPCV564,,Fairfax (VA),38.85,-77.3,,0.01,,6317,292,140,,,,,,20010471,,, +650,USA,en,WPCV564,,Fairfax (VA),38.860983,-77.380556,,0.01,,6321,292,140,,,,,,20010475,,, +650,USA,en,WPCV564,,Lorton (VA),38.710986,-77.225806,,0.01,,6323,292,140,,,,,,20010472,,, +650,USA,en,WPCV564,,McLean/977 Balls Hill Road (VA),38.960986,-77.192472,,0.01,,6302,292,140,,,,,,20010473,,, +650,USA,en,WPCV564,,Springfield/6800a Industrial Drive (VA),38.799278,-77.179417,,0.01,,6313,292,140,,,,,,20010469,,, +650,USA,en,WPFG387,,Fairfax City/3613 Jermantown Road (VA),38.863444,-77.3277,,0.01,,6317,292,140,,,,,,20010474,,, +650,USA,en,WPFG387,,Manassas (VA),38.960986,-77.493889,,0.01,,6321,293,140,,,,,,20010468,,, +650,B,pt,ZYI920 Rdio Tapuio,,Miguel Alves (PI),-4.170833,-42.888889,,0.25,,7784,234,141,,,,,,36901156,,, +650,B,pt,ZYJ250 Rdio Colmia,,Cascavel (PR),-24.923056,-53.411667,,5,,10343,232,141,,,,,,36901168,,, +650,MEX,es,XERCG-AM Vida 650,,Ciudad Acua (coa),29.305556,-100.927778,,1,,8551,301,142,,,,,,43700,,, +650,HWA,,KPRP,,Honolulu (HI),21.445278,-158.063611,,10,,11698,345,143,,0000-2400,1234567,1,,38550,,, +650,USA,,KSTE,,Rancho Cordova (CA),38.479722,-121.277222,,0.92,,8743,321,143,,,,99945,,39421,,, +650,USA,en,WPIZ762,,Durham (NC),36.016806,-78.908611,,0.01,,6638,291,143,,,,,,20010466,,, +650,HND,,HRLK,,Comayagua (cmy),14.316667,-87.5,,1,,9019,282,144,,,,,,37777,,, +650,NCG,,YNRD R Diriangn La Super D,,Granada (gnd),11.933333,-85.95,,1,,9123,279,144,,0950-2300,1234567,,,52189,,, +650,NCG,es,R Muzun,,Somotillo (cnd),13.041111,-86.953611,,1,,9094,281,144,,,,,,33700005,,, +650,B,pt,ZYH462 Rdio Clube de Valena,,Valena (BA),-13.324889,-39.023689,,0.5,,8480,226,145,,,,,,36901161,,, +650,B,pt,ZYL372 Rdio Itatiaia,,Timteo (MG),-19.528267,-42.662761,,1,,9271,226,145,,,,,,36901166,,, +650,MEX,es,XETNT-AM,,Los Mochis (sin),25.815556,-109.063056,,1,,9332,305,145,,,,,,44842,,, +650,MEX,es,XEVG-AM R Frmula 1,,Mrida (yuc),21.048667,-89.635019,,0.5,,8574,288,145,,,,,,44962,,, +650,MEX,es,XEZM-AM La Zamorana,,Zamora/Av. 5 de Mayo 501 (mic),19.98,-102.283333,,1,,9467,297,145,,,,,,45146,,, +650,USA,,KIKK,,Pasadena (TX),29.688333,-95.174722,,0.25,,8175,297,145,,1300-0100,1234567,,,38602,,, +650,USA,en,WPIQ674,,Indianapolis (IN),39.766667,-86.15,,0.01,,6791,299,145,,,,,,20010467,,, +650,ARG,es,R Belgrano,,Florida (ba),-34.516667,-58.5,,3,,11503,230,147,,,,,,51793,,, +650,B,pt,ZYL309 Rdio Veredas,,Una (MG),-16.338764,-46.901,,0.5,,9176,231,147,,,,,,36901162,,, +650,MEX,es,XEVILL-AM 650 Noticias,,Villahermosa (tab),17.936028,-92.916931,,0.5,,9059,288,147,,,,,,44968,,, +650,PRU,,OAX2N R Regional del Norte,,Trujillo (lal),-8.116667,-79.5,,1,,10441,262,148,,1100-0500,1234567,,,40284,,, +650,B,pt,ZYJ202 Rdio Banda B Norte Pioneiro,,Cambar (PR),-23.044444,-50.068611,,0.5,,9987,230,150,,,,,,36901157,,, +650,B,pt,ZYH790 Rdio Cultural do Araguaia,,Jussara/Alto da Boa Vista (GO),-15.877117,-50.854019,,0.25,,9347,234,151,,,,,,36901158,,, +650,MEX,es,XECHH-AM Capital Mxima,,Zumpango del Ro (gue),17.638111,-99.527142,,0.25,,9507,293,151,,,,,,43840,,, +650,B,pt,ZYK238 Rdio Difuso AM,,Erechim (RS),-27.625,-52.247222,,0.5,,10536,229,152,,,,,,36901155,,, +650,B,pt,ZYK524 Rdio Difusora de Piracicaba,,Piracicaba (SP),-22.722267,-47.673828,,0.25,,9833,228,152,,,,,,36901165,,, +650,MEX,es,XEPX-AM La Voz de ngel,,Puerto Angel (oax),15.658611,-96.500833,,0.2,,9492,290,152,,,,,,44588,,, +650,B,pt,ZYK508 Rdio Andradina,,Andradina (SP),-20.8825,-51.365556,,0.25,,9850,232,153,,,,,,36901159,,, +650,MEX,es,XEIY-AM Espectacular,,Ro Verde (slp),21.931336,-100.0115,,0.1,,9153,296,154,,,,,,44191,,, +650,MEX,es,XEVSS-AM R Trece,,Villa de Seris (son),29.049283,-111.007133,,0.1,,9139,308,154,,,,,,44991,,, +652,RUS,,ON,b,Peski / Peschanka,48.1875,28.875,,0.025,,1652,96,89,,,,,,85602,,, +657,I,it,RAI R1,,Pisa/Coltano (pi),43.637653,10.421389,,100,,988,161,47,,0000-2400,1234567,0,,4000003,,, +657,I,it,RAI Toscana,,Pisa/Coltano (pi),43.637653,10.421389,,100,,988,161,47,,0620-0630,123456,0,,4000003,,, +657,I,it,RAI Toscana,,Pisa/Coltano (pi),43.637653,10.421389,,100,,988,161,47,,1110-1130,123456,0,,4000003,,, +657,I,it,RAI Toscana,,Pisa/Coltano (pi),43.637653,10.421389,,100,,988,161,47,,1140-1200,......7,0,,4000003,,, +657,E,es,RNE R 5,,Madrid/Majadahonda (MAD-M),40.485236,-3.874347,,100,,1512,215,52,,0000-2400,1234567,47,,242,,, +657,RUS,ru,GTRK Murman,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0310-0400,12345..,0,,251,,, +657,RUS,ru,GTRK Murman,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0610-0700,123456,0,,251,,, +657,RUS,ru,GTRK Murman,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0810-0900,12345..,0,,251,,, +657,RUS,ru,GTRK Murman,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,1410-1500,123456,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0100-0310,12345..,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0100-0610,.....6.,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0100-2100,......7,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0400-0610,12345..,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0700-0810,12345..,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0700-1410,.....6.,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,0900-1410,12345..,0,,251,,, +657,RUS,ru,R Rossii,,Murmansk (MU),69.016389,32.932556,,150,,2334,27,59,,1500-2100,123456,0,,251,,, +657,G,en,BBC R Wales,,Wrexham/Bryn Moel (WA-WRE),53.038889,-3.025972,,2,340,645,283,60,,0600-2400,1234567,0,,243,,, +657,G,en,BBC WS,,Wrexham/Bryn Moel (WA-WRE),53.038889,-3.025972,,2,340,645,283,60,,0000-0600,1234567,0,,243,,, +657,G,en,BBC R Cornwall,,Bodmin (EN-CNW),50.481361,-4.685806,,0.5,,792,261,68,,0000-2400,1234567,,,244,,, +657,ISR,he,IBA Reshet Bet (B),,Tel Aviv/Yavne (tav),31.905,34.7545,,100,,3207,123,69,,0000-2400,1234567,13,,250,,, +657,RUS,ce,Rkanal Kavkaz,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,0300-0600,1234567,,,252,,, +657,RUS,ce,Rkanal Kavkaz,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,1200-1600,1234567,,,252,,, +657,RUS,ru,Voice of Russia,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,0600-1200,1234567,,,252,,, +657,RUS,ru,Voice of Russia,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,1600-0300,1234567,,,252,,, +657,IRN,fa,IRIB R Gilan,,Kiashahr (gln),37.412644,49.998753,,100,,3738,98,74,,0000-2400,1234567,,,10800003,,, +657,ARS,ar,BSKSA Al-Quran al-Karim,,Rafha/Al-Jumaimah (hsh),29.587667,43.598444,,20,,3936,115,83,,0000-2400,1234567,28,,47067,,, +657,NIG,,FRCN Ibadan,,Ibadan/Moniya (oyo),7.523022,3.910294,,100,,4963,184,87,,0430-2305,1234567,,,2333,,, +657,IRN,,IRIB R Zahedan,,Zahedan (sib),29.478744,60.861106,,100,,5075,98,88,,0040-2030,1234567,9974,,1776,,, +657,UAE,ur,Asianet R,,Al-Dhabbaya (abd),24.23025,54.405306,,100,,5079,109,88,,0000-2400,1234567,,,9700001,,, +657,IRQ,,Republic of Iraq R,,Kirkuk (krk),35.466667,44.4,,1,,3509,107,92,,,,,,10500004,,, +657,IND,,AIR East,,Kolkata A (WB),22.361111,88.284167,,200,,7521,82,109,,0025-0430,1234567,,,47772,,, +657,IND,,AIR East,,Kolkata A (WB),22.361111,88.284167,,200,,7521,82,109,,0730-1000,1234567,,,47772,,, +657,IND,,AIR East,,Kolkata A (WB),22.361111,88.284167,,200,,7521,82,109,,1130-1830,1234567,,,47772,,, +657,KRE,,KCBS Pyongyang Pangsong,,Kangnam (pyo),38.866667,125.633333,,1500,,8320,45,109,,2100-2030,1234567,963,,47774,,, +657,TZA,sw,TBC Taifa,,Dar es Salaam/Kunduchi (des),-6.697272,39.194086,,50,,7241,144,112,,0200-2100,1234567,,,2335,,, +657,CHN,en,Henan RGD Xinwen Guangbo,,Zhengzhou/HETS104 (HE),34.743611,113.858056,,300,,8077,55,113,,2130-2200,1234567,0,,47771,,, +657,CHN,zh,Henan RGD Xinwen Guangbo,,Zhengzhou/HETS104 (HE),34.743611,113.858056,,300,,8077,55,113,,0000-1600,......7,0,,47771,,, +657,CHN,zh,Henan RGD Xinwen Guangbo,,Zhengzhou/HETS104 (HE),34.743611,113.858056,,300,,8077,55,113,,2125-1600,123456,0,,47771,,, +657,KOR,,HLKM KBS 1 R,,Chuncheon (gan),37.921333,127.725611,,50,,8508,44,125,,0000-2400,1234567,,,47775,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Sanmenxia (HE),34.795278,111.189444,,10,,7921,57,126,,,,,,36200894,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Yongcheng (HE),33.933333,116.366667,,25,,8288,54,126,,,,,,36200890,,, +657,VTN,vi,VOV1,,Hồ Ch Minh/Qun Tre (hcm),10.848333,106.629167,,100,,9743,75,126,,2145-1700,1234567,,,47789,,, +657,AFS,af,R Pulpit/Rkansel,,Meyerton (GT),-26.583986,28.170017,,50,,9004,160,127,,0000-2400,1234567,0,,2334,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Huangchuan (HE),32.133333,115.033333,,10,,8373,56,131,,,,,,36200897,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Xixia (HE),33.283333,111.466667,,3,,8068,58,133,,,,,,36200891,,, +657,MLA,,RTM Perak FM,,Gerik=Grik (prk),5.408056,101.124667,,20,,9854,83,134,,2200-1600,1234567,,,47776,,, +657,TWN,,Cheng Sheng BC 2,,Taichung (TCS),24.126722,120.700444,,10,,9420,57,135,,0000-2400,1234567,,,47787,,, +657,THA,th,Jor. Sor. 1,,Bangkok/Saphan Daeng (bmp),13.783333,100.516667,,5,,9078,78,137,,????-1700,1234567,,,47786,,, +657,CHN,,Baishan RGD,,Baishan (JL),41.95,126.433333,,1,,8073,42,138,,,,,,36200089,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Puyang (HE),35.7,115,,1,,8056,54,138,,,,,,36200895,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Nanyang (HE),32.975278,112.498333,,1,,8155,57,139,,,,,,36200896,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Shangqiu (HE),34.45,115.65,,1,,8202,54,139,,,,,,36200893,,, +657,CHN,,Henan RGD Xinwen Guangbo,,Xinyang (HE),32.099722,114.070833,,1,,8322,57,140,,,,,,36200892,,, +657,PHL,,DWRN-AM,,Naga City/Queborac (cas),13.643056,123.180556,,5,,10535,61,142,,,,,,47780,,, +657,PHL,,DYVR-AM Radyo Agong,,Roxas City (cpz),11.583333,122.75,,5,,10700,62,142,,2100-1600,1234567,,,47782,,, +657,CHN,,Jiaxing RGD News,,Jiaxing (ZJ),30.770833,120.8125,,1,,8817,53,143,,,,,,47768,,, +657,PHL,,DXDD-AM R Veritas,,Ozamis City (moc),8.133333,123.816667,,5,,11084,63,144,,,,,,47781,,, +657,PHL,,DZLU-AM,,San Fernando (lun),16.616667,120.3,,1,,10088,61,147,,,,,,47783,,, +657,PHL,,DYES-AM Radyo ng Bayan,,Borongan (sam),11.6,125.416667,,1,,10858,60,150,,,,,,47779,,, +657,AUS,,8RN ABC National,,Darwin/Ludmilla (NT),-12.425117,130.850167,,2,,13410,69,155,,0000-2400,1234567,,,47766,,, +657,AUS,,2BY ABC Western Plains,,Byrock (NSW),-30.6535,146.423389,,10,,15992,69,157,,0000-2400,1234567,9998,,47765,,, +657,AUS,it,6?? Rete Italia,,Perth/Landsdale (WA),-31.797361,115.889333,,2,,14027,97,157,,0000-2400,1234567,,,47767,,, +657,NZL,en,2YC Southern Star/RNZ Parliament,,Wellington/Titahi Bay (WGN),-41.096111,174.842778,,50,,18509,40,158,,0000-2400,1234567,0,,47777,,, +657,NZL,en,Southern Star/RNZ Parliament,,Tauranga/Paengaroa (BOP),-37.810833,176.412778,,0.4,,18245,30,178,,,,,,32500014,,, +659,ROU,,S,b,Timisoara / Giarmata (TM),45.8125,21.375,,0.025,,1294,117,86,,,,,,85606,,, +659,ROU,,LL,b,Bucuresti / Otopeni (BU),44.5625,26.041667,,0.025,,1669,112,90,,,,,U1239 ,85604,,, +659,RUS,,DO,b,Moskva/Domodedovo (MV),55.354167,37.958333,,0.025,,2088,68,94,,,,0,,IDx2,85603,, +659,RUS,,N,b,Rostov-na-donu / Rostov East (RO),47.229167,39.791667,,0.025,,2440,89,97,,,,,,85605,,, +660,RUS,,J,b,Voronezh / Baltimore (VN),51.604167,39.125,,0.025,,2228,78,95,,,,,U1029 14.4s,IDx2,85608,, +660,USA,,WFAN,,New York/High Island (NY),40.859722,-73.785833,,50,,5944,292,100,,,,0,,41355,,, +660,USA,,WLFJ,,Greenville (SC),34.886111,-82.4675,,50,,6953,292,110,,1200-2400,1234567,,,42160,,, +660,CAN,en,CFFR,,Calgary (AB),50.7575,-114.062778,,50,,7287,323,113,,,,1,,35953,,, +660,ALS,,KFAR,,Fairbanks (AK),64.808056,-147.492778,,10,,6822,348,115,,0000-2400,1234567,996,,38374,,, +660,USA,en,WAMO,,Wilkinsburg (PA),40.413056,-79.853889,,1.4,,6357,295,119,,1200-2400,1234567,,,42758,,, +660,USA,,KEYZ,,Williston (ND),48.238889,-103.650278,,5,,7045,316,120,,,,1,,38363,,, +660,USA,,WMIC,,Sandusky (MI),43.392778,-82.8325,,1,,6312,300,120,,,,,,42325,,, +660,VEN,es,YVNA Ondas de los Medanos,,Coro (flc),11.416667,-70.05,,50,,8085,266,121,,0900-0400,1234567,997,,45390,,, +660,USA,,KTNN,,Window Rock (AZ),35.895,-109.141389,,50,,8410,311,124,,,,10,,39517,,, +660,USA,,WXIC,,Waverly (OH),39.130556,-83.012778,,1,,6651,296,124,,,,,,43468,,, +660,CUB,es,R Progreso,,Jovellanos (ma),22.802833,-81.169097,,12,,7866,283,125,,,,13,,31600009,,, +660,HTI,,4VI,,Mnlas (oue),18.602778,-72.336111,,4.9,,7625,273,126,,,,,,35642,,, +660,HTI,,R Lumire,,Port-au-Prince (oue),18.516667,-72.316667,,5,,7631,273,126,,1000-0200,1234567,,,52098,,, +660,VEN,,YVQZ R Anaco,,Anaco (azg),9.5,-64.466667,,10,,7874,261,126,,0900-0400,1234567,2,,51653,,, +660,USA,en,WLOY,,Rural Retreat (VA),36.921389,-81.242778,,0.55,,6714,293,127,,,,,,41078,,, +660,CLM,es,HJQS,,Ccuta (nsa),7.883333,-72.5,,25,,8560,266,128,,,,,,35901375,,, +660,DOM,,HIAM R Vision Cristiana,,Santiago de los Caballeros (sto),19.416667,-70.7,,2,,7444,272,128,,,,,,37205,,, +660,USA,,WBHR,,Sauk Rapids (MN),45.605,-94.139167,,0.5,,6780,308,128,,,,9985,,40854,,, +660,USA,en,WORL,,Altamonte Springs (FL),28.693056,-81.349167,,1,,7386,287,131,,,,,,42621,,, +660,B,pt,ZYK777 Rdio Mundial,,So Paulo/Avenida River (SP),-23.442833,-46.390694,,20,,9837,227,133,,,,,,36901178,,, +660,CLM,es,HJJM R Autntica,,Cali (val),3.466667,-76.616667,,10,,9227,267,134,,,,,,37510,,, +660,SLV,es,YSSS R.Nacional de El Salvador,,San Salvador (ssl),13.666667,-89.216667,,10,,9190,283,134,,,,,,45316,,, +660,USA,en,WXQW,,Fairhope (AL),30.5975,-87.8825,,0.85,,7647,293,134,,,,,,41177,,, +660,B,pt,ZYI787 Rdio Jornal,,Limoeiro (PE),-7.85,-35.333333,,1,,7756,225,135,,,,,,36901173,,, +660,MEX,es,XEEY-AM La Consentida,,Aguascalientes (agu),21.920122,-102.266594,,10,,9291,298,135,,,,,,44884,,, +660,USA,en,KAPS,,Mount Vernon (WA),48.438611,-122.344167,,1,,7828,327,135,,,,,,37961,,, +660,USA,en,KWVE r:KWVE-FM 107.9,,Oildale (CA),35.452778,-118.944444,,6,,8930,318,136,,,,99925,,38463,,, +660,VEN,,RNV Canal Informativo,,El Callao (blv),7.35,-61.816667,,1,,7886,257,136,,,,,,51654,,, +660,CHL,,CB66 R Chilena Solonoticias,,Santiago/Lampa (RM),-33.276972,-70.760917,,50,,12076,239,137,,0000-2400,1234567,,,35756,,, +660,EQA,,HCLG2,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,37009,,, +660,PNR,es,La Nueva Exitosa,,Sabana Grande (ccl),7.8525,-80.3175,,5,,9096,272,137,,,,,,35100001,,, +660,B,pt,ZYH619 Rdio Rio das Garas,,Itarema/Sitio Betsaida (CE),-2.918889,-39.928611,,0.25,,7502,231,138,,,,,,36901176,,, +660,B,pt,ZYJ673 Rdio Boas Novas,,Porto Velho (RO),-8.776644,-63.882433,,5,,9470,249,138,,,,,,36901186,,, +660,USA,,KSKY,,Balch Springs (TX),33.040833,-96.9475,,0.7,,7990,301,138,,,,,,39374,,, +660,PRU,es,OCX4R La Inolvidable,,Lima (lim),-12,-77,,10,,10615,257,139,,,,,,37000005,,, +660,B,pt,ZYI925 Rdio Tacarijus,,So Miguel do Tapuio (PI),-5.516728,-41.311494,,0.25,,7829,231,141,,,,,,36901179,,, +660,PRG,,ZP26 R Itapiru,,Ciudad del Este (apa),-25.466667,-54.716667,,5,,10464,232,142,,0800-0100,1234567,,,45521,,, +660,USA,,KCRO,,Omaha (NE),41.313056,-96.01,,0.054,,7233,306,142,,,,,,38204,,, +660,B,pt,ZYI795 Rdio da Grande Serra,,Araripina (PE),-7.570772,-40.526128,,0.25,,7988,230,143,,,,,,36901174,,, +660,HND,,HRNN18,,La Ceiba (atl),15.816667,-86.716667,,1,,8836,282,143,,,,,,37808,,, +660,MEX,es,XEACB-AM R 660,,Ciudad Delicias (chi),28.176397,-105.521228,,1,,8916,304,143,,,,,,43686,,, +660,MEX,es,XEFZ-AM ABC R 660,,San Nicols de los Garza (nvl),25.763833,-100.252883,,1,,8826,299,143,,,,,,44039,,, +660,MEX,es,XEAR-AM La Mexicana,,Pueblo Viejo (vcz),22.196061,-97.835578,,1,,8995,295,144,,,,,,43728,,, +660,NCG,,R Mxima,,Masaya (msy),11.966667,-86.1,,1,,9130,279,144,,,,,,33700013,,, +660,PNR,es,HOF33 RPC R,,Bocas del Toro (bct),9.344039,-82.251267,,1,,9098,275,144,,0000-2400,1234567,,,37682,,, +660,B,pt,Rdio Planalto,,Euclides da Cunha (BA),-10.516956,-38.990839,,0.25,,8200,227,145,,,,,,36901171,,, +660,B,pt,ZYJ472 Rdio Nova Friburgo,,Nova Friburgo/Rua Eugenio Gritt 2 (RJ),-22.289117,-42.526275,,1,,9536,224,145,,,,88,,36901187,,, +660,GTM,,TGQ R Nacional LV de Quetzaltenango,,Quetzaltenango (qzt),14.516667,-91.516667,,1,,9268,285,145,,1100-0400,1234567,,,40524,,, +660,MEX,es,XEDTL-AM R Ciudadana,,Mxico D.F/San Lorenzo Tezonco (dif),19.309406,-99.059247,,1,,9329,294,145,,,,,,43941,,, +660,MEX,es,XEWX-AM La Mexicana,,Durango (dur),24.051706,-104.627767,,0.5,,9239,301,147,,,,,,45040,,, +660,B,pt,ZYI552 Rdio Xinguara,,Xinguara (PA),-7.110025,-49.930406,,0.25,,8463,238,148,,,,,,36901177,,, +660,BOL,,R ABC,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,0915-0500,1234567,,,51965,,, +660,MEX,es,XEYG-AM R 660,,Matas Romero (oax),16.880719,-95.031439,,0.5,,9289,289,148,,,,,,45088,,, +660,B,pt,ZYH465 Rdio Jornal de Itapetinga,,Itapetinga (BA),-15.256611,-40.264861,,0.25,,8732,226,149,,,,,,36901172,,, +660,B,pt,ZYH480 Bom Jesus AM,,Bom Jesus da Lapa (BA),-13.262572,-43.472078,,0.25,,8698,229,149,,,,,,36901181,,, +660,B,pt,ZYH794 Rdio Alvorada,,Quirinpolis (GO),-18.461667,-50.453428,,0.5,,9571,233,149,,,,,,36901175,,, +660,B,pt,ZYI401 Juventude AM,,Rondonpolis (MT),-16.466667,-54.633333,,0.5,,9616,237,149,,,,,,36901184,,, +660,B,pt,ZYK639 Rdio Clube Ribeiro Preto,,Ribeiro Preto (SP),-21.140278,-47.754722,,0.5,,9684,229,149,,,,,,36901185,,, +660,PRU,,OCX4L R Chinchaycocha,,Junn (jun),-12.166667,-75.216667,,1,,10511,256,149,,,,,,40431,,, +660,B,pt,ZYH778 Rdio Primavera,,Itapuranga (GO),-15.571533,-49.951103,,0.25,,9268,234,151,,,,,,36901180,,, +660,B,pt,ZYL206 Rdio Clube de Curvelo,,Curvelo (MG),-18.740994,-44.4135,,0.25,,9281,228,151,,,,,,36901182,,, +660,MEX,es,XECPR-AM R.Chan Santa Cruz,,Felipe Carrillo Puerto (qui),19.589972,-88.036536,,0.15,,8596,286,151,,,,,,43868,,, +660,USA,,KXOR,,Junction City (OR),44.21,-123.182222,,0.075,,8267,325,151,,,,22,,39912,,, +660,USA,en,WPQD502,,Ocala (FL),29.19525,-82.179806,,0.01,,7399,288,151,,,,,,20010476,,, +660,ARG,,LT41 R LV del Sur Entrerriano,,Gualeguaychu (er),-33.016667,-58.516667,,1,,11367,231,152,,0900-0300,1234567,,,40193,,, +660,ARG,,R Popular,,Claypole (ba),-34.8,-58.333333,,1,,11520,230,152,,,,,,51794,,, +660,ARG,xx,R Amplitud,,Lomas del Mirador (ba),-34.65,-58.533333,,1,,11517,230,152,,,,,,51803,,, +660,MEX,es,XESJC-AM Cabo 660,,San Jos del Cabo (bcs),23.070567,-109.664928,,0.25,,9619,304,152,,,,,,44750,,, +660,B,pt,ZYK319 Rdio Cano Nova,,Vacaria (RS),-28.4725,-50.926944,,0.25,,10549,228,155,,,,,,36901183,,, +660,B,pt,ZYK286 Rdio Maraj AM,,Rosrio do Sul (RS),-30.2375,-54.922778,,0.25,,10921,230,156,,,,,,36901170,,, +662,RUS,,SM,b,Smolenskaya,44.770833,38.791667,,0.025,,2500,96,98,,,,998,L393 U389 15.0s,IDx2,85609,, +666,E,es,SER,,Barcelona/Sant Boi (EAJ1) (CAT-B),41.349967,2.002328,,50,,1242,197,52,,0000-2400,1234567,40,,257,,, +666,POR,pt,Antena 1,,Vila Real/Vila Nova de Baixo (vrl),41.276278,-7.728139,,10,,1611,227,63,,0000-2400,1234567,,,266,,, +666,POR,pt,Antena 1,,Covilh/Mata Mouros (cab),40.245889,-7.498667,,10,,1693,224,64,,0000-2400,1234567,,,264,,, +666,POR,pt,Antena 1,,Viseu (vis),40.646133,-7.921278,,10,,1677,226,64,,0000-2400,1234567,,,267,,, +666,G,en,BBC R York,,Fulford (EN-NYK),53.940028,-1.079944,,0.5,,540,295,65,,0000-2400,1234567,0,,258,,, +666,POR,pt,Antena 1,,Castanheira do Ribatejo/CEN (lis),38.980556,-8.957333,,10,,1880,225,66,,0000-2400,1234567,,,268,,, +666,POR,pt,Antena 1,,Bragana (bgc),41.808261,-6.779872,,2,,1517,226,69,,0000-2400,1234567,,,263,,, +666,SYR,ar,SRTV 2 Sawt al-Sha'ab,,Damascus/'Adrā (dim),33.612428,36.591683,,50,,3167,119,72,,0400-2000,1234567,999,,570,,, +666,ALG,ar,R Tindouf,,Tindouf (37),27.6625,-8.146111,,10,,2976,210,77,,0800-1600,1234567,5,,255,,, +666,IRN,fa,IRIB R Iran,,Shushtar (kuz),32.071928,48.846553,,50,,4066,106,81,,0000-2400,1234567,761,,261,,, +666,SDN,,SRTC Sudan Nat. R,,Kassala (kas),15.425356,36.366239,,10,,4860,136,96,,,,,,2339,,, +666,IND,,AIR Rajdhani Channel,,Delhi B (DL),28.768889,77.137222,,100,,6240,85,99,,0025-0440,1234567,,,47808,,, +666,IND,,AIR Rajdhani Channel,,Delhi B (DL),28.768889,77.137222,,100,,6240,85,99,,0630-0930,1234567,,,47808,,, +666,IND,,AIR Rajdhani Channel,,Delhi B (DL),28.768889,77.137222,,100,,6240,85,99,,1130-1835,1234567,,,47808,,, +666,CHN,,Qinghai RGD,,Xining/QHTS566 (QH),36.656528,101.572722,,200,260,7198,62,106,,0925-1505,1234567,998,,47806,,, +666,CHN,,Qinghai RGD,,Xining/QHTS566 (QH),36.656528,101.572722,,200,260,7198,62,106,,2220-0600,1234567,998,,47806,,, +666,CHN,,Haixia zhi Sheng Xinwen Shizheng Pindao,,Fuzhou/Songnancun (FJ),25.545833,119.8075,,600,130,9239,57,117,,2225-1700,1234567,,,47798,,, +666,CHN,zh,Tianjin RGD Xiaoshuo Pindao,,Yangliuqing (TJ),39.136539,117.025064,,50,,7862,50,119,,2155-1600,1234567,,,36200210,,, +666,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,unknown (NM),34.95,104.5,,10,,7515,61,122,,,,,,36201304,,, +666,J,ja,JOBK NHK1,,Osaka/Sakai-Shi (kns-osk),34.550556,135.566944,,100,,9189,40,124,,0000-2400,1234567,0,,47818,,, +666,CHN,,Jiamusi RGD,,Jiamusi (HL),46.755556,130.265,,10,,7794,37,125,,0855-1400,1234567,,,47802,,, +666,CHN,,Jiamusi RGD,,Jiamusi (HL),46.755556,130.265,,10,,7794,37,125,,2055-0530,1234567,,,47802,,, +666,CHN,,Siping RGD,,Siping/Shanmen Zhen (JL),43.101389,124.423333,,10,,7874,43,126,,0300-0600,1234567,,,47804,,, +666,CHN,,Siping RGD,,Siping/Shanmen Zhen (JL),43.101389,124.423333,,10,,7874,43,126,,0855-1300,1234567,,,47804,,, +666,CHN,,Siping RGD,,Siping/Shanmen Zhen (JL),43.101389,124.423333,,10,,7874,43,126,,2130-0030,1234567,,,47804,,, +666,CHN,,Qinghai RGD,,Madoi (QH),35.033333,96.383333,,1,,7010,67,127,,0925-1505,1234567,,,47795,,, +666,CHN,,Qinghai RGD,,Madoi (QH),35.033333,96.383333,,1,,7010,67,127,,2220-0600,1234567,,,47795,,, +666,CHN,,Qinghai RGD,,Yushu/QHTS920 (QH),33.001667,97.001944,,1,,7214,68,129,,0925-1505,1234567,,,47807,,, +666,CHN,,Qinghai RGD,,Yushu/QHTS920 (QH),33.001667,97.001944,,1,,7214,68,129,,2220-0600,1234567,,,47807,,, +666,VTN,vi,VOV1,,Nha Trang/Đồng Đế (kho),12.284539,109.186839,,50,,9783,72,129,,2145-1700,1234567,,,47829,,, +666,CHN,,Hefei RGD,,Hefei/Sanshitou (AH),31.987667,117.329028,,10,,8515,55,132,,2120-1600,1234567,,,47799,,, +666,REU,fr,Runion 1re,,Saint-Pierre (974),-21.326958,55.485789,,20,,9448,135,132,,0000-2400,1234567,0,,2338,,, +666,CHN,,Jingzhou RGD News,,Jinzhou (LN),41.116667,121.116667,,2,,7895,46,133,,2125-1500,1234567,,,47801,,, +666,CHN,,Wenzhou RGD,,Wenzhou (ZJ),28.1,120.6,,10,,9050,54,134,,2150-1600,1234567,,,47805,,, +666,PHL,tl,DZRH-AM,,Valenzuela/Malanday (ncr),14.725278,120.953611,,25,,10302,62,134,,0000-2400,1234567,9186,,47821,,, +666,THA,th,Thor. Phor. Saam,,Tak/Charot Withithong Rd (tak),16.883333,99.133333,,5,,8716,77,136,,,,,,47827,,, +666,THA,th,Thor. Phor. Song,,Surin/Fort Wirawatyothin (sur),14.868333,103.481944,,5,,9181,75,137,,????-1600,1234567,,,47826,,, +666,CHN,,Dongchuan RGD,,Dongchuan (YN),26.133333,103.3,,1,,8190,68,139,,,,,,47797,,, +666,CHN,,Anshun RGD,,Anshun/GZTS859 (GZ),26.25,105.916667,,1,,8345,66,140,,,,,,47796,,, +666,INS,id,R AM Stereo 666,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400124,,, +666,PHL,tl,DXRP-AM Radyo ng Bayan,,Davao City/Matina (dvs),7.066667,125.566667,,1,,11289,62,151,,2000-1105,1234567,,,47820,,, +666,INS,id,R Tunggul Suara Dirgantara,,Purbalingga (JT-pbl),-7.4,109.366667,,1,,11540,84,152,,,,,,47815,,, +666,NCL,fr,Nouvelle-Caldonie 1re,,Nouma/le N'Ga (sud),-22.298617,166.487106,,20,,16287,35,155,,0000-2400,1234567,,,47819,,, +666,AUS,,6LN,,Carnarvon (WA),-24.911328,113.720733,,1,,13330,93,158,,,,,,47793,,, +666,INS,id,PM4BJT R Ramakusala,,Surakarta (JT-ksu),-7.533333,110.833333,,0.25,,11651,83,158,,,,,,47817,,, +666,AUS,,4LM Zinc 666,,Mount Isa (QLD),-20.716161,139.510903,,2,,14700,67,160,,0000-2400,1234567,,,47794,,, +666,AUS,,2CN ABC Canberra,,Canberra/Gungahlin (ACT),-35.216958,149.120625,,5,,16533,72,162,,0000-2400,1234567,4,,47792,,, +666,AUS,,4CC/t,,Biloela (QLD),-24.392333,150.490139,,2,,15696,58,163,,0000-2400,1234567,9990,,47791,,, +668,RUS,,N,b,Bryansk (BR),53.1875,34.208333,,0.025,,1867,75,92,,,,,,85610,,, +670,UKR,,RS,b,Rashivka,50.229167,33.875,,0.025,,1915,85,92,,,,,,85616,,, +670,RUS,,ND,b,Kubinka,56.604167,36.625,,0.025,,2003,64,93,,,,,15.0s,IDx2,85614,, +670,RUS,,UA,b,Kubinka,56.604167,36.625,,0.025,,2003,64,93,,,,,,85618,,, +670,RUS,,GC,b,Vologda-Kipelovo (VO),59.1875,39.125,,0.025,,2171,56,95,,,,,,85612,,, +670,RUS,,PB,b,Vologda-Kipelovo (VO),59.1875,39.125,,0.025,,2171,56,95,,,,,,85615,,, +670,UKR,,LB,b,Lubimovka,45.645833,34.875,,0.025,,2185,98,95,,,,,30.0s,ID+25 gap,85613,, +670,RUS,,A,b,Ivanovo South / Yuzhny (IV),56.979167,40.875,,0.025,,2262,63,96,,,,,,85611,,, +670,RUS,,D,b,Ivanovo / Yuzhny,56.9375,40.958333,,0.025,,2267,63,96,,,,,,86768,,, +670,RUS,,UD,b,Bagaj / Baranovka,52.145833,46.958333,,0.025,,2731,74,100,,,,,,85619,,, +670,KAZ,,AU,b,Aktau (mgg),43.895833,51.041667,,0.025,,3385,88,107,,,,,L1018 10.0s,86767,,, +670,KAZ,,TA,b,Aktau (mgg),43.854167,51.125,,0.025,,3393,88,107,,,,,5.0s,ID,85617,, +670,USA,,WSCR,,Chicago (IL),41.933611,-88.073056,,50,,6733,302,107,,,,0,,42969,,, +670,USA,en,WIEZ,,Lewistown (PA),40.608333,-77.579167,,5.4,,6201,294,112,,,,9863,,41735,,, +670,CUB,es,R Rebelde,,Santa Clara/CTOM4 (vc),22.404711,-79.893633,,50,,7815,281,118,,,,,,31600123,,, +670,CUB,es,R Rebelde,,Arroyo Arenas/CTOM1 (ch),23.051889,-82.475583,,50,,7932,284,119,,,,0,,36455,,, +670,VEN,es,YVLL R Rumbos,,Caracas (dcf),10.48395,-66.997072,,50,,7959,263,120,,0000-2400,......7,1,,45367,,, +670,VEN,es,YVLL R Rumbos,,Caracas (dcf),10.48395,-66.997072,,50,,7959,263,120,,1000-0500,123456,1,,45367,,, +670,USA,,KBOI,i,Boise (ID),43.428889,-116.328611,,50,,8057,320,121,,,,0,,38074,,, +670,ALS,en,KDLG,,Dillingham (AK),59.045278,-158.451944,,10,,7580,352,123,,,,0,,38277,,, +670,USA,,WMTY,,Farragut (TN),35.886667,-84.246667,,2.5,,6984,294,123,,,,,,42407,,, +670,USA,en,....,,Portsmouth (VA),36.822222,-76.443889,,0.7,,6417,290,123,,0000-1200,1234567,,,20016089,,, +670,CUB,es,R Rebelde,,Cent Brasil (cm),21.833183,-77.963928,,10,,7734,280,124,,,,,,31600050,,, +670,CUB,es,R Rebelde,,El Coco (ho),20.541667,-75.222222,,10,,7657,277,124,,,,,,31600084,,, +670,CUB,es,R Rebelde,,Victoria de las Tunas/CTOM3 (lt),20.937361,-76.995933,,10,,7744,278,124,,,,,,31600088,,, +670,CUB,es,R Rebelde,,Camagey/CTOM3 (cm),21.333333,-77.866667,,10,,7769,279,125,,,,,,31600053,,, +670,USA,,WYLS,,York (AL),32.523333,-88.257778,,4.8,,7509,295,125,,,,,,43527,,, +670,B,pt,ZYH420 Rdio Globo,,Macap (AP),0.020225,-51.077,,10,,7862,243,126,,,,,,36901215,,, +670,USA,en,KHGZ,,Glenwood (AR),34.325556,-93.5575,,5,,7680,299,127,,1300-0100,1234567,,,39768,,, +670,CUB,es,R Rebelde,,Morn (ca),22.094497,-78.612742,,5,,7755,280,128,,,,,,31600059,,, +670,USA,en,KMZQ,,Las Vegas (D) (NV),36.384722,-115.351667,,30,,8673,316,128,,,,33,,38102,,, +670,CUB,es,R Rebelde,,Circunvalacin (ma),23.016667,-81.616667,,5,,7878,283,129,,,,,,31600089,,, +670,CUB,es,R Rebelde,,Baha Honda (pr),22.923986,-83.172664,,5,,7989,284,130,,,,,,31600111,,, +670,B,pt,ZYJ921 Rdio Cultura,,Aracaj (SE),-10.890967,-37.064178,,5,,8143,225,131,,,,,,36901207,,, +670,CLM,es,HJPL,,Medelln (ant),6.266667,-75.566667,,10,,8910,268,133,,,,,,37625,,, +670,CLM,es,HJR33,,Bucaramanga (sat),7.133333,-73.133333,,10,,8669,266,133,,,,,,35901377,,, +670,USA,es,WWFE,,Miami (FL),25.8575,-80.481111,,1,,7564,284,133,,,,1,,43369,,, +670,GTM,,TGRT Emisoras Unidas Central,,Ciudad de Guatemala (gut),14.716667,-90.616667,,10,,9191,285,134,,,,,,40538,,, +670,HND,,HRNN,,Tegucigalpa (fmz),14.066667,-87.083333,,10,,9013,281,134,,,,,,37805,,, +670,USA,,KLTT,,Commerce City (CO),39.955556,-104.730556,,1.4,,7817,311,134,,,,0,,38850,,, +670,B,pt,ZYH288 Rdio Mesoregional,,Tabatinga (AM),-4.249281,-69.936189,,10,,9458,257,135,,,,,,36901206,,, +670,CUB,es,R Enciclopedia,,Crdenas/CTOM1 (ma),23.045514,-81.204964,,1,,7848,283,135,,,,,,31600093,,, +670,MEX,es,XEQG-AM ABC R,,Quertaro (que),20.45,-100.4,,10,,9310,296,135,,,,,,44609,,, +670,CTR,,TIRM R Monumental,,San Jos (sjs),9.933333,-84.016667,,5,,9166,276,137,,0000-2400,1234567,,,52145,,, +670,CUB,es,R Rebelde,,Los Palacios (pr),22.653397,-83.224986,,1,,8016,284,137,,,,,,31600106,,, +670,DOM,es,HIBS R Dial,,San Pedro de Macors (pms),18.47435,-69.279269,,0.25,,7427,271,137,,0000-2400,1234567,,,37267,,, +670,B,pt,ZYI422 Rdio Transpantaneira,,Pocon (MT),-16.240117,-56.626753,,6,,9710,239,138,,,,,,36901214,,, +670,B,pt,ZYN600 Super Rdio Fronteira,,Ponta Por/Fazenda Tres Coxilhas (MS),-22.596414,-55.650767,,10,,10247,235,138,,,,,,36901208,,, +670,CUB,,R Rebelde,,Pinar del Ro (pr),22.416667,-83.7,,1,,8067,284,138,,,,,,31600122,,, +670,CUB,es,R Rebelde,,Santa Luca (pr),22.67345,-83.943017,,1,,8062,285,138,,,,,,31600109,,, +670,USA,fa,KIRN,,Simi Valley (CA),34.319444,-118.715556,,3,,9028,317,139,,,,9991,,38634,,, +670,B,pt,ZYL310 Rdio Educadora de Montes Claros,,Montes Claros/Distrito Industrial (MG),-16.678403,-43.852461,,2.5,,9051,228,140,,,,,,36901202,,, +670,B,pt,ZYH606 Rdio Cultura,,Vrzea Alegre (CE),-6.800222,-39.307706,,0.25,,7849,229,141,,,,,,36901198,,, +670,B,pt,ZYI927 Rdio Livramento,,Jos de Freitas (PI),-4.768611,-42.449167,,0.25,,7817,233,141,,,,,,36901195,,, +670,ARG,es,LT4 R Dif. Misiones,,Posadas (mn),-27.477697,-55.861861,,5,,10714,232,142,,0800-0200,1234567,,,40191,,, +670,B,pt,ZYI546 Tropical AM,,Paragominas (PA),-2.990289,-47.342283,,0.25,,7922,238,142,,,,,,36901212,,, +670,NCG,,YNRC R Caribe,,Puerto Cabezas=Bilwi (atn),14.033333,-83.383333,,1,,8767,279,143,,,,,,52190,,, +670,PNR,es,HOLY R Hogar,,Ciudad Radial (pnm),9.028406,-79.432594,,1,,8933,272,143,,0955-0300,1234567,,,37692,,, +670,HND,,HRNN25,,Santa Barbara (bar),14.866667,-88.216667,,1,,9019,283,144,,,,,,37813,,, +670,B,pt,Atitude AM,,Lucas do Rio Verde (MT),-13.063056,-55.945294,,1,,9374,240,145,,,,,,36901191,,, +670,B,pt,ZYH747 Rdio So Francisco,,Anpolis (GO),-16.394528,-48.978031,,1,,9293,233,145,,,,,,36901209,,, +670,B,pt,ZYI537 Rdio Rural de Altamira,,Altamira (PA),-3.1725,-52.170833,,0.25,,8226,242,145,,,,,,36901194,,, +670,B,pt,ZYJ248 Rdio Globo,,Curitiba/So Jos dos Pinhais (PR),-25.4925,-49.153333,,2,,10174,228,145,,,,,,36901204,,, +670,EQA,es,HCFF1 R Jess del Gran Poder,,Quito (pic),-0.166667,-78.5,,1.2,,9675,266,145,,,,,,36936,,, +670,USA,en,KMZQ,,Las Vegas (N) (NV),36.384444,-115.351389,,0.6,,8673,316,145,,,,,,20016193,,, +670,ARG,es,LRI209 R Mar del Plata,,Mar del Plata (ba),-38.071153,-57.656792,,5,,11784,227,146,,0000-2400,1234567,,,40054,,, +670,B,pt,ZYI408 Rdio Patriarca de Cassilndia,,Cassilndia (MS),-19.1275,-51.731389,,1,,9704,233,146,,,,,,36901200,,, +670,B,pt,ZYI539 Rdio Atalaia,,bidos (PA),-1.899006,-55.519531,,0.25,,8314,246,146,,,,,,36901199,,, +670,HWA,en,KPUA,,Hilo (HI),19.783889,-155.090278,,5,,11822,342,146,,0000-2400,1234567,4,,39175,,, +670,MEX,es,XEIS-AM La Rancherita,,Ciudad Guzmn (jal),19.717644,-103.473872,,1,,9564,297,146,,,,,,44181,,, +670,USA,en,WRJR,,Claremont (VA),37.174722,-76.896944,,0.003,,6419,291,146,,,,,,42713,,, +670,B,pt,ZYK296 Rdio Cultura de Jaguaro,,Santa Vitria do Palmar (RS),-33.510278,-53.363889,,2.5,,11147,227,147,,,,,,36901203,,, +670,MEX,es,XEOB-AM,,Pichucalco (cps),17.517294,-93.106781,,0.5,,9108,288,147,,,,,,44475,,, +670,B,pt,ZYH774 Rdio Independncia do Tocantins,,Paraso do Tocantins (TO),-10.166667,-48.9,,0.25,,8694,236,149,,,,,,36901190,,, +670,B,pt,ZYK574 Rdio Ocenica,,Caraguatatuba (SP),-23.632389,-45.439806,,0.5,,9809,226,149,,,,96,,36901189,,, +670,ARG,,LRA52 R Nacional,,Chos Malal (nq),-37.386106,-70.259444,,3,,12399,236,150,,0900-0300,1234567,,,39955,,, +670,B,pt,ZYK598 Rdio Emissora Conveno de Itu,,Itu/Rua Henrique Moretto (SP),-23.276161,-47.273164,,0.5,,9866,228,150,,,,,,36901193,,, +670,MEX,es,XETOR-AM R Ranchito,,Matamoros (coa),25.534322,-103.296075,,0.25,,9027,301,150,,,,,,44847,,, +670,B,pt,ZYH297 Rdio Vale do Rio Madeira,,Humait (AM),-7.528042,-63.039267,,0.25,,9303,249,151,,,,,,36901196,,, +670,B,pt,ZYL347 Rdio Montanhesa AM,,Ponte Nova (MG),-20.417225,-42.878939,,0.25,,9369,226,151,,,,,,36901192,,, +670,B,pt,ZYN202 Rdio Cidade,,Bambu/Fazenda Quarteis (MG),-19.996206,-45.986408,,0.25,,9483,228,151,,,,,,36901201,,, +670,B,pt,Rdio Difusora Sena Madureira,,Sena Madureira (AC),-9.057917,-68.664606,,0.25,,9804,253,152,,,,,,36901188,,, +670,B,pt,ZYL361 Rdio Uberaba,,Uberaba (MG),-19.737294,-47.892894,,0.25,,9556,230,152,,,,,,36901211,,, +670,B,pt,ZYJ231 Rdio Cano Nova,,Nova Esperana (PR),-23.161667,-52.202778,,0.25,,10112,232,153,,,,,,36901213,,, +670,B,pt,ZYK585 RCO AM-R.Centro Oeste Paulista,,Gara/Estncia Radioviso (SP),-22.229194,-49.621375,,0.25,,9886,230,153,,,,,,36901197,,, +670,B,pt,ZYK370 Rdio Gazeta,,Carazinho (RS),-28.274444,-52.765278,,0.25,,10624,229,155,,,,,,36901205,,, +670,ARG,es,LRA11 R Nacional,,Comodoro Rivadavia (ch),-45.890031,-67.5356,,1,,12970,228,157,,0000-2400,1234567,,,39931,,, +670,USA,en,WQBV749,,Bay City (TX),28.980278,-95.999944,,0.01,,8286,298,160,,,,,,20010477,,, +672,UKR,,RS,b,Rashivka,50.229167,33.875,,0.025,,1915,85,92,,,,0,L1014 U1013 30.0s,IDx2 + 22 gap,85624,, +672,RUS,,D,b,Volgograd / Gumrak (VG),48.770833,44.375,,0.025,,2683,83,100,,,,,,85620,,, +672,RUS,,KT,b,Kukushtan,57.645833,56.541667,,0.025,,3189,59,105,,,,,,IDx2 + 12 gap,85623,, +672,RUS,,F,b,Amderma (NE),69.770833,61.541667,,0.025,,3388,34,107,,,,,,85622,,, +675,HOL,nl,R Maria,,Lopik (utr),52.000469,5.045133,,60,,94,263,20,,0000-2400,1234567,3,,271,,, +675,LBY,ar,Sawt ul Libya al-Hurra,,Benghazi (bga),32.06975,20.072917,,100,,2488,148,62,,0500-2350,1234567,0,,273,,, +675,SRB,sr,R Beograd 1,,Bosilegrad/Letava (Srb-pcn),42.5035,22.485556,,1,,1609,125,73,,0000-2400,1234567,,,277,,, +675,QAT,ar,QBS Arabic,,Al-Arish (msm),26.065433,51.086883,,600,,4709,110,76,,0245-2130,1234567,0,,276,,, +675,IRN,fa,IRIB R Hamadan,,Hamadan (hmd),34.966111,48.580833,,50,,3823,103,78,,0430-1230,1234567,,,272,,, +675,IRN,fa,IRIB R Hamadan,,Hamadan (hmd),34.966111,48.580833,,50,,3823,103,78,,1430-0230,1234567,,,272,,, +675,IRN,fa,IRIB R Nejat,,Hamadan (hmd),34.966111,48.580833,,50,,3823,103,78,,0230-0430,1234567,,,272,,, +675,IRN,fa,IRIB R Nejat,,Hamadan (hmd),34.966111,48.580833,,50,,3823,103,78,,1230-1430,1234567,,,272,,, +675,ARS,ar,BSKSA Idha'atu-i Riyadh,,Afif (riy),23.857239,42.899428,,20,,4401,121,88,,0300-2300,1234567,,,47069,,, +675,RUS,,DS,b,Dedovici (PS),57.520833,30.041667,,0.025,,1619,59,89,,,,,,85625,,, +675,RUS,,NK,b,Dedovici (PS),57.520833,30.041667,,0.025,,1619,59,89,,,,,,85626,,, +675,IRQ,,Republic of Iraq R,,Baghdad (bgh),33.35,44.383333,,1,,3674,110,94,,0500-1510,1234567,,,249,,, +675,ARS,ar,BSKSA Idha'atu-i Riyadh,,Abha (asr),18.289233,42.594922,,5,,4902,126,99,,0300-2200,1234567,,,47068,,, +675,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Marsabit (eas),2.389611,38.046972,,50,,6257,141,103,,0200-2110,1234567,,,2340,,, +675,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Hohhot/NMTS610 (NM),40.736944,111.475278,,200,,7427,53,108,,2150-1605,1234567,,,47836,,, +675,IND,,AIR West,,Chhatarpur (MP),24.865,79.544722,,20,,6719,87,111,,0025-0435,123456,,,47842,,, +675,IND,,AIR West,,Chhatarpur (MP),24.865,79.544722,,20,,6719,87,111,,0025-0600,......7,,,47842,,, +675,IND,,AIR West,,Chhatarpur (MP),24.865,79.544722,,20,,6719,87,111,,0700-0945,1234567,,,47842,,, +675,IND,,AIR West,,Chhatarpur (MP),24.865,79.544722,,20,,6719,87,111,,1130-1740,1234567,,,47842,,, +675,CHN,zh,Xinjiang RGD 738 Zonghe,,Altay=Aletai/XJTS633 (XJ),47.771867,88.149189,,1,,5552,60,113,,2300-1800,1234567,,,36200088,,, +675,IND,,AIR Northeast,,Itanagar (AR),27.0775,94.591389,,100,,7548,74,113,,0025-0400,1234567,,,47843,,, +675,IND,,AIR Northeast,,Itanagar (AR),27.0775,94.591389,,100,,7548,74,113,,0700-0900,1234567,,,47843,,, +675,IND,,AIR Northeast,,Itanagar (AR),27.0775,94.591389,,100,,7548,74,113,,1000-1630,1234567,,,47843,,, +675,MWI,en,MBC R 1,,Ekwendeni (mzb),-11.504783,33.937086,,50,,7550,151,116,,0253-2200,1234567,,,2341,,, +675,VTN,vi,VOV1,,My Van/Bần Yn Nhn-VN3 (hyn),20.913717,106.077211,,500,,8820,70,116,,2145-1700,1234567,,,47860,,, +675,IND,,AIR South,,Bhadravathi (KA),13.817222,75.720278,,20,,7391,98,118,,0025-0435,1234567,167,,50577,,, +675,IND,,AIR South,,Bhadravathi (KA),13.817222,75.720278,,20,,7391,98,118,,1200-1735,1234567,167,,50577,,, +675,CHN,,Diqing RGD,,Shangrila=Xianggelila (YN),27.82,99.686389,,10,,7816,70,125,,,,,,36200330,,, +675,RUS,ru,R Radonezh,,Razdolnoye (PM),43.539444,131.936111,,20,,8167,38,126,,1000-1300,1234567,,,47014,,, +675,CHN,,Xinyu RGD,,Xinyu/JXTS804 (JX),27.8,114.933333,,10,,8754,59,133,,,,,,36200967,,, +675,KOR,ko,HLAS KBS 3 R,,Jeonju/Gunsan (jeb),35.940806,126.840489,,10,,8651,46,133,,2000-1800,1234567,,,47847,,, +675,J,,JOVK NHK1,,Hakodate (hok),41.811906,140.754967,,5,,8684,33,136,,0000-2400,1234567,1,,47845,,, +675,J,,JOUG NHK1,,Yamaguchi/Hofu-Shi (chg-yam),34.030556,131.510556,,5,,9055,43,137,,0000-2400,1234567,,,47846,,, +675,THA,th,Sor. Thor. Ror. 2,,Bangkok/Bang Na (bmp),13.667056,100.611389,,5,,9095,78,137,,0000-2400,1234567,,,47857,,, +675,TWN,,Cheng Sheng BC,,Peikang (YL),23.574167,120.285833,,5,,9448,57,138,,0000-2400,1234567,,,47858,,, +675,PHL,,DWLW-AM IBC R,,Laoag City/Nalbo (iln),18.188611,120.578056,,5,,9960,60,140,,,,,,47851,,, +675,CHN,,Gejiu RGD,,Gejiu/YNTS654 (YN),23.398333,103.161389,,1,,8417,70,141,,,,,,47835,,, +675,KOR,,HLQX KBS 1 R,,Jinbu (gan),37.366667,128.4,,1,,8592,44,142,,0000-2400,1234567,,,47848,,, +675,CHN,,Jinhua RGD,,Jinhua (ZJ),29.108056,119.586111,,1,,8902,55,143,,2145-1605,1234567,,,47837,,, +675,PHL,,DYKC-AM Radyo Ronda,,Mandaue City/Maguikay (ceb),10.333333,123.95,,5,,10888,62,143,,,,,,47852,,, +675,HKG,en,RTHK R 6 (BBC WS),,Peng Chau (isd),22.290633,114.043744,,1,,9195,63,144,HKG,0000-2400,1234567,20,,47840,,, +675,PNG,,NBC R East Sepik,,Wewak (ese),-3.583333,143.633333,,10,,13338,51,148,,1930-1400,1234567,,,47855,,, +675,PNG,,NBC R Morobe,,Lae/Bubia (mrb),-6.676572,146.906244,,10,,13813,50,150,,1930-1400,1234567,,,47854,,, +675,AUS,,6BE ABC Kimberley,,Broome (WA),-17.8885,122.263389,,5,,13323,81,151,,0000-2400,1234567,,,47832,,, +675,PHL,,DXGD-AM R Veritas,,Tawi-Tawi/Bongao (slu),5.016667,119.766667,,1,,11119,68,151,,,,,,47853,,, +675,AUS,,2CO ABC Riverina,,Corowa (NSW),-35.955806,146.415333,,10,,16411,76,158,,0000-2400,1234567,9995,,47833,,, +675,NZL,en,RNZ National,,Christchurch/Gebbies Pass (CAN),-43.695711,172.647842,,10,,18631,53,166,,0000-2400,1234567,,,47850,,, +678,UKR,,D,b,Rivne (RI),50.604167,26.208333,,0.025,,1381,89,87,,,,,,85628,,, +678,UKR,,W,b,Rivne (RI),50.604167,26.125,,0.025,,1375,89,87,,,,,,ID+3 gap,85630,, +678,UKR,,A,b,Kharkov / Osnova (KA),49.9375,36.291667,,0.025,,2089,85,94,,,,,U1015 ,ID+4 gap,85627,, +678,UKR,,R,b,Kharkiv (KA),49.9375,36.291667,,0.025,,2089,85,94,,,,991,L1035 U1018 ,ID+4 gap,85629,, +678,RUS,,WJ,b,Leshukonskoye,64.895833,45.791667,,0.025,,2629,42,99,,,,,,85631,,, +678,RUS,,Z,b,Pechora,65.104167,57.125,,0.025,,3159,43,105,,,,,L1170 U1170 ,86769,,, +680,UKR,,SK,b,Skadovsk,46.145833,32.958333,,0.025,,2029,98,93,,,,,,85635,,, +680,RUS,,BP,b,Chelobityevo (MO),55.895833,37.708333,,0.025,,2069,66,94,,,,,L1020 U1010 30.0s,IDx2,85632,, +680,USA,en,WRKO,,Boston (MA),42.490278,-71.218056,,50,,5665,292,97,,,,2,,42871,,, +680,CAN,en,CFTR,,Toronto/Grimsby (ON),43.213889,-79.608056,,50,,6132,298,101,,,,6,,36015,,, +680,RUS,,RK,b,Naryan-Mar (NE),67.645833,53.125,,0.025,,3016,37,103,,,,,L1020 14.8s,IDx2,85634,, +680,CAN,en,CJOB,,Winnipeg (MB),49.653889,-97.191944,,50,,6613,313,106,,,,9996,,36197,,, +680,RUS,,GA,b,Naryan-Mar (NE),47.645833,52.958333,,0.025,,3314,80,106,,,,,,85633,,, +680,USA,,WCBM,,Baltimore (MD),39.374167,-76.858056,,20,,6249,293,107,,,,,,40955,,, +680,USA,en,WPTF,,Raleigh (NC),35.793889,-78.761389,,50,,6646,291,107,,,,2,,42743,,, +680,ALS,en,KBRW,,Barrow (AK),71.256667,-156.525556,,10,,6231,353,109,,0000-2400,1234567,999,,38092,,, +680,RUS,,R,b,Tsentralny / Omsk (OM),54.979167,73.291667,,0.025,,4260,58,116,,,,,,86770,,, +680,USA,,WNZK,,Dearborn Heights (MI),42.098611,-83.33,,2.5,,6440,299,117,,0100-1300,1234567,,,20016140,,, +680,USA,en,WCNN,,North Atlanta (GA),33.961667,-84.263333,,10,,7141,293,118,,,,,,41048,,, +680,VEN,es,YVQR R Continente Cuman,,Cuman (suc),10.419822,-64.210656,,50,,7776,261,118,,1000-0500,1234567,993,,45432,,, +680,PTR,es,WAPA,,San Juan (D) (PR),18.402606,-65.947428,,10,,7206,268,119,,1100-2300,1234567,,,20012557,,, +680,PTR,es,WAPA,,San Juan (N) (PR),18.402722,-65.946906,,10,,7206,268,119,,2300-1100,1234567,0,,40733,,, +680,USA,,WINR,,Binghamton (NY),42.114722,-75.854444,,0.5,,5983,294,120,,,,9989,,41771,,, +680,USA,,WDBC,,Escanaba (MI),45.764722,-87.096667,,1,,6379,304,121,,,,,,41127,,, +680,USA,,KFEQ,,St. Joseph (MO),39.828611,-94.805556,,5,,7290,304,123,,,,,,38382,,, +680,USA,en,WMFS,,Memphis (TN),35.223056,-90.0425,,5,,7394,298,124,,,,30,,41853,,, +680,CLM,,HJBU,,Zambrano (bol),9.716667,-74.866667,,50,,8562,269,125,,,,,,37358,,, +680,CLM,es,HJZO R Nacional de Colombia,,Sabanagrande (atl),10.783333,-74.75,,50,,8461,270,125,,,,993,,35901379,,, +680,USA,,KKGR,,East Helena (MT),46.568889,-111.908889,,5,,7574,319,126,,,,,,38719,,, +680,USA,en,KNBR,,San Francisco (CA),37.547222,-122.233333,,50,,8875,321,126,,,,984,,38964,,, +680,B,pt,ZYH885 Rdio Difusora do Maranho,,So Lus/Vila Nova Bonfim (MA),-2.537833,-44.331111,,5,,7707,236,127,,,,,,36901232,,, +680,USA,,WCTT,,Corbin (KY),36.9025,-84.080556,,0.83,,6893,295,127,,,,,,41100,,, +680,USA,,WOGO,,Hallie (WI),44.889444,-91.384167,,0.5,,6687,306,127,,,,,,42571,,, +680,USA,en,KOMW,,Omak (WA),48.394444,-119.533333,,5,,7724,325,127,,,,,,39088,,, +680,USA,,WHBE,,Newburg (KY),38.091944,-85.682222,,0.45,,6896,297,129,,,,,,41205,,, +680,USA,,WKAZ,,Charleston (WV),38.318611,-81.541111,,0.221,,6623,295,130,,,,,,40949,,, +680,PRU,es,OCY2Y R San Luis,,Jan (caj),-5.681,-78.780075,,50,,10179,263,131,,,,,,37000066,,, +680,USA,,KKYX,,San Antonio (TX),29.500833,-98.831667,,10,,8410,300,131,,,,,,38767,,, +680,VEN,,YVZJ R Llanera R 1400,,Barinas (bns),8.566667,-70.316667,,10,,8352,265,131,,0900-0500,1234567,,,51655,,, +680,B,pt,ZYK275 Rdio Farroupilha,,Porto Alegre/BR-116 (RS),-29.998653,-51.287472,,50,,10712,227,132,,,,,,36901227,,, +680,PTR,es,WA2XPA r:WAPA,,Arecibo (PR),18.471667,-66.709722,,0.57,,7252,269,132,,0000-2400,1234567,,,40617,,, +680,B,pt,ZYJ452 Rdio Copacabana,,Rio de Janeiro/Fazenda do Codeco (RJ),-22.763611,-43.006944,,20,,9606,225,133,,,,,,36901229,,, +680,USA,,WISR,,Butler (PA),40.8775,-79.9025,,0.05,,6325,296,133,,,,,,41810,,, +680,NCG,,YNAM La Primerisima,,Managua (mng),12.15,-86.283333,,10,,9126,280,134,,1000-0400,1234567,,,52191,,, +680,SLV,es,YSSS R.Nacional de El Salvador,,Cabaas (cbn),13.866667,-88.65,,10,,9135,283,134,,,,,,45317,,, +680,PNR,es,La Voz Sin Fronteras,,Meteti (drn),8.455,-77.936389,,5,,8881,271,136,,1000-2400,1234567,,,52298,,, +680,PRU,es,OBX4A R Tigre,,Lima/Morro Solar (lim),-12.181944,-77.026667,,20,,10632,257,136,,,,,,37000014,,, +680,B,pt,ZYL296 Rdio Novo Tempo,,Governador Valadares (MG),-18.915706,-42.009514,,5,,9179,226,137,,,,2,,36901222,,, +680,PNR,es,HOF32 Mujer AM,,Alanje/Orilla del Ro (chq),8.363608,-82.509508,,5,,9201,274,137,,,,,,37681,,, +680,USA,en,WPQK416,,Cranford (NJ),40.660992,-74.294331,,0.01,,5991,292,137,,,,,,20010479,,, +680,USA,en,WPRF412,,Warren (NJ),40.6315,-74.511008,,0.01,,6007,292,137,,,,,,20010481,,, +680,USA,en,WPSH257,,Griggstown/1037 Canal Road (NJ),40.441111,-74.609444,,0.01,,6027,292,137,,,,,,20010478,,, +680,USA,en,WPSH257,,somerset/495 Demott Lane (NJ),40.499722,-74.526389,,0.01,,6018,292,137,,,,,,20010480,,, +680,BOL,,CP274 R Andina,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,0900-0300,1234567,,,36693,,, +680,DOM,,HIJX R Zamba,,San Ignacio de Sabaneta (srz),19.466667,-71.316667,,0.25,,7482,273,138,,0900-0300,1234567,,,37263,,, +680,MEX,es,XELG-AM La Grande,,Len/Santa Mara de Cementos (gua),21.076944,-101.682222,,5,,9332,297,138,,,,,,44303,,, +680,B,pt,ZYI793 Rdio do Grande Rio,,Petrolina (PE),-9.3699,-40.452561,,1,,8161,229,139,,,,,,36901226,,, +680,B,pt,ZYI683 Rdio Integrao do Brejo,,Bananeiras (PB),-6.744789,-35.634356,,0.25,,7660,225,140,,,,,,36901216,,, +680,CHL,,CA68 R Chilena Solonoticias,,Calama (AN),-22.45,-68.933333,,10,,11017,245,140,,1000-0400,1234567,,,35706,,, +680,MEX,es,XEKQ-AM La Mexicana,,Tapachula (cps),14.891911,-92.246403,,3,,9283,286,140,,,,,,44265,,, +680,B,pt,ZYJ362 Rdio Poema,,Pitanga (PR),-24.770278,-51.750556,,5,,10240,231,141,,,,,,36901228,,, +680,MEX,es,XECHG-AM Ke Buena,,Chilpancingo (gue),17.563661,-99.465172,,2.5,,9510,293,141,,,,,,43837,,, +680,USA,es,WGES,,St. Petersburg (FL),27.856667,-82.623889,,0.125,,7539,287,141,,,,,,42879,,, +680,MEX,es,XEPY-AM Retro 103,,Mrida (yuc),20.975,-89.622222,,1,,8580,288,142,,,,,,44591,,, +680,PRU,,OAX5E Emisora del Pacifico,,Ica (ica),-14.066667,-75.666667,,5,,10708,255,142,,1100-0600,1234567,,,40317,,, +680,USA,,KWKA,,Clovis (NM),34.363333,-103.218056,,0.5,,8232,306,142,,,,,,39718,,, +680,B,pt,ZYL270 Rdio Difusora AM Ouro Fino,,Ouro Fino (MG),-22.267167,-46.385689,,2,,9723,228,143,,,,,,36901218,,, +680,EQA,es,HCVP2 R Atalaya,,Guayaquil (gua),-2.2,-79.966667,,2.5,,9953,266,143,,,,98,,37175,,, +680,HND,,HRNN10,,Juticalpa (ola),14.616667,-86.216667,,1,,8907,281,143,,,,,,37807,,, +680,USA,en,KBRD,,Lacey (WA),47.062222,-122.830278,,0.25,,7979,326,143,,,,,,38082,,, +680,B,pt,ZYH787 Rdio Mantiqueira,,Niquelndia (GO),-14.478019,-48.457844,,1,,9081,233,144,,,,,,36901219,,, +680,GTM,,TGVP R Norte,,Cobn (avp),15.453094,-90.395619,,1,,9112,285,144,,1100-0400,1234567,,,40552,,, +680,HND,,HRN31,,Siguatepeque (cmy),14.566667,-87.783333,,1,,9016,282,144,,,,,,37803,,, +680,HND,,HRNN20,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37810,,, +680,HND,,HRNN7,,Danli (elp),14.166667,-86.583333,,1,,8971,281,144,,,,,,37818,,, +680,MEX,es,XESON-AM xtasis,,Hermosillo (son),29.061111,-110.9425,,1,,9134,308,144,,,,,,44762,,, +680,ARG,,LT3 R Cerealista AM 680,,Rosario (sf),-32.95,-60.666667,,5,,11476,233,145,,0000-2400,1234567,,,40182,,, +680,B,pt,ZYH471 Rdio Clube,,Santo Antnio de Jesus (BA),-12.954722,-39.252778,,0.5,,8454,226,145,,,,,,36901223,,, +680,B,pt,ZYL348 Rdio Ibi,,Ibi (MG),-19.466667,-46.55,,1,,9460,229,145,,,,,,36901221,,, +680,CHL,es,CC68 R Cooperativa,,Concepcin (BI),-36.834197,-73.0213,,10,,12511,238,145,,,,,,35834,,, +680,MEX,es,XEOAX-AM Aro,,Oaxaca (oax),17.063611,-96.721833,,1,,9381,291,145,,,,,,44472,,, +680,ARG,,LV6 R Nihuil,,Mendoza (mz),-32.883333,-68.816667,,5,,11928,238,146,,0000-2400,1234567,999,,40256,,, +680,B,pt,ZYI389 Rdio Cultura,,Campo Grande (MS),-20.513867,-54.623378,,1,,9995,235,147,,,,,,36901231,,, +680,B,pt,ZYL326 Rdio Unio de Joo Pinheiro,,Joo Pinheiro (MG),-17.736025,-46.160844,,0.5,,9273,230,148,,,,,,36901220,,, +680,MEX,es,XEORO-AM La Mera Jefa,,Guasave (sin),25.539094,-108.463369,,0.5,,9323,305,148,,,,,,44512,,, +680,MEX,es,XEFO-AM xtasis Digital,,Chihuahua (chi),28.670636,-106.082722,,0.25,,8903,305,149,,,,,,44016,,, +680,PRG,,ZP41,,Ypacarai (cet),-25.316667,-57.316667,,1,,10593,234,149,,,,,,45537,,, +680,ARG,,R Melody,,Remedios de Escalada (ba),-34.733333,-58.383333,,1,,11517,230,152,,,,,,51795,,, +680,ARG,es,LU12 R Ro Gallegos,,Ro Gallegos (sc),-51.619139,-69.275225,,5,,13524,225,152,,1000-0300,1234567,,,40205,,, +680,B,pt,ZYH765 Rdio Difusora de Jata,,Jata (GO),-17.869672,-51.721211,,0.25,,9584,234,152,,,,,,36901230,,, +680,B,pt,ZYK576 Rdio Difusora de Catanduva AM,,Catanduva/Rua Torrinha 120 (SP),-21.125767,-49.010361,,0.25,,9748,230,152,,,,,,36901224,,, +680,B,pt,ZYK628 Rdio Piratininga,,Piraju (SP),-23.185828,-49.392083,,0.25,,9966,229,153,,,,,,36901217,,, +680,URG,,CW68 R Young,,Young (rn),-32.7,-57.616667,,0.7,,11290,231,153,,0900-0300,1234567,,,51718,,, +680,MEX,es,XEFJ-AM La Consentida,,Teziutln (pue),19.815556,-97.358333,,0.1,,9177,293,154,,,,,,44010,,, +684,E,es,RNE R Nacional,,Sevilla/Los Palacios (AND-SE),37.209767,-5.926039,,300,,1917,215,51,,0000-2400,1234567,9990,,281,,, +684,SRB,sr,R Beograd 1,,Aleksinac/Bobovite (Srb-nsv),43.552367,21.669447,,30,,1479,124,57,,0000-2400,1234567,0,,284,,, +684,TUN,ar,RTT R Nationale,,Medenine/Harboub (med),33.238778,10.458472,,50,,2123,170,61,,0400-2400,1234567,0,,285,,, +684,RUS,ru,R Radonezh,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,1600-2000,1234567,17,,283,,, +684,IRN,fa,IRIB R Khorasan-e Razavi,,Mashhad/Gaem (rkh),36.46225,59.500458,,200,,4452,91,79,,,,9836,,282,,, +684,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jeddah/Al-Nuzla (mkh),21.3786,39.4254,,50,,4436,128,84,,0300-2200,1234567,,,47071,,, +684,IND,,AIR North,,Kargil A (JK),34.509383,76.133728,,200,,5727,81,91,,0020-1740,1234567,,,52627,,, +684,ARS,ar,BSKSA Idha'atu-i Jeddah,,Ar-Riyad (riy),24.816133,46.861264,,10,,4552,116,93,,0300-2200,1234567,,,47070,,, +684,ETH,,ERTA Ethiopia National R,,Metu (orm),8.275972,35.582917,,100,,5548,141,93,,0300-0600,1234567,,,2343,,, +684,ETH,,ERTA Ethiopia National R,,Metu (orm),8.275972,35.582917,,100,,5548,141,93,,0800-2100,1234567,,,2343,,, +684,NPL,,R Nepal,,Pokhara (gan),28.220589,83.980469,,100,,6748,81,105,,2315-1720,1234567,,,47899,,, +684,CHN,,Gansu RGD,,Lanzhou/GSTS535 (GS),36.086389,103.846111,,200,,7382,61,108,,2150-1605,1234567,,,36200888,,, +684,CHN,zh,Xinjiang RGD 738 Zonghe,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,3,,5777,76,110,,2300-1800,1234567,989,,36200086,,, +684,CHN,zh,CNR 1,,Akqi=Aheqi/XJTS8109 (XJ),40.935556,78.435,,1,,5413,73,111,,2025-1805,1234567,,,36201269,,, +684,CHN,zh,CNR 2,,Kashgar=Kashi/XJTS635 (XJ),39.409722,75.921944,,1,,5355,76,111,,2100-1602,1234567,,,36200087,,, +684,IND,,AIR South,,Kozhikode A=Calicut (KL),11.301944,75.764306,,100,,7613,99,113,,0025-0345,1234567,,,47876,,, +684,IND,,AIR South,,Kozhikode A=Calicut (KL),11.301944,75.764306,,100,,7613,99,113,,0630-0900,1234567,,,47876,,, +684,IND,,AIR South,,Kozhikode A=Calicut (KL),11.301944,75.764306,,100,,7613,99,113,,1115-1735,1234567,,,47876,,, +684,CHN,,CNR 6 Shenzhou zhi Sheng,,Putian/SARFT824 (FJ),25.459444,119.161278,,1200,130,9210,57,114,,2155-1605,1234567,,,47865,,, +684,CHN,,Gansu RGD,,Jiayuguan (GS),39.784722,98.254722,,10,,6746,62,114,,2150-1605,1234567,,,36200889,,, +684,KRE,,Echo of Unification,,Samgo (hwb),38.033333,126.533333,,250,,8441,45,118,,0400-0600,1234567,8,,47898,,, +684,KRE,,Echo of Unification,,Samgo (hwb),38.033333,126.533333,,250,,8441,45,118,,1200-1400,1234567,8,,47898,,, +684,KRE,,Echo of Unification,,Samgo (hwb),38.033333,126.533333,,250,,8441,45,118,,2200-2400,1234567,8,,47898,,, +684,KRE,,KCBS Pyongyang Pangsong,,Samgo (hwb),38.033333,126.533333,,250,,8441,45,118,,2100-2030,1234567,8,,47898,,, +684,CHN,,Mudanjiang RGD Xinwen,,Mudanjiang (HL),44.588889,129.585278,,50,,7968,39,120,,0855-1400,1234567,,,47871,,, +684,CHN,,Mudanjiang RGD Xinwen,,Mudanjiang (HL),44.588889,129.585278,,50,,7968,39,120,,2100-0800,1234567,,,47871,,, +684,CHN,en,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1200-1300,1234567,,,47867,,, +684,CHN,fr,R France Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1300-1400,1234567,,,47867,,, +684,CHN,km,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1030-1130,1234567,,,47867,,, +684,CHN,km,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1400-1500,1234567,,,47867,,, +684,CHN,km,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,2300-0100,1234567,,,47867,,, +684,CHN,vi,China R Int.,,Dongfang/SARFT871 (HA),18.886111,108.655,,300,189,9163,69,120,,1500-1700,1234567,,,47867,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,0700-0900,12345..,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,0700-1700,.....67,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,1030-1700,12345..,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,2355-0400,12345..,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,2355-0415,.....6.,,,47877,,, +684,IND,,AIR South,,Port Blair (AN),11.6125,92.751111,,100,,8743,86,123,,2355-0500,......7,,,47877,,, +684,CHN,,Gansu RGD,,Zhangye (GS),38.931111,100.476944,,1,,6948,61,126,,2150-1605,1234567,,,36200886,,, +684,CHN,,Tangshan RGD News,,Tangshan (HB),39.666667,118.285333,,10,,7881,49,126,,2150-1400,1234567,,,47873,,, +684,CHN,,Fushun RGD Xinwen,,Fushun (LN),41.85,123.883333,,10,,7963,44,127,,,,,,47868,,, +684,CHN,,Gansu RGD,,Jinchang (GS),38.533056,102.213611,,1,,7083,60,128,,2150-1605,1234567,,,47869,,, +684,RUS,ru,R 684,,Nakhodka (PM),42.849389,132.848006,,10,,8271,38,130,,1950-1500,1234567,,,47016,,, +684,CHN,,Gansu RGD,,Hezuo (GS),34.971111,102.908889,,1,,7418,62,131,,2150-1605,1234567,,,47976,,, +684,CHN,,Zhoushan RGD,,Zhoushan/ZMWS6945 (ZJ),30.051167,122.017389,,10,,8949,52,134,,2135-1400,1234567,,,47874,,, +684,MAU,en,VOA Music Mix,,Malherbes/MCML (mau),-20.311917,57.536097,,10,,9449,133,135,,1800-2400,1234567,998,,2344,,, +684,MAU,xx,R Maurice 1,,Malherbes/MCML (mau),-20.311917,57.536097,,10,,9449,133,135,,0000-1800,1234567,998,,2344,,, +684,TWN,,Han Sheng Kuangpo Tientai,,Taipei (TPS),25.086581,121.512736,,10,,9378,56,135,,2100-1600,1234567,,,47908,,, +684,J,,JODF IBC Iwate Hoso,,Morioka (toh-iwa),39.611939,141.127322,,5,,8917,34,136,,0000-2400,1234567,11,,47895,,, +684,THA,th,Yaan Kro,,Udon Thani (udt),17.3625,102.819722,,5,,8919,74,136,,????-1400,1234567,,,47906,,, +684,J,,JOAG NHK1,,Nagasaki (kyu-nag),32.720556,129.883889,,5,,9102,45,137,,0000-2400,1234567,0,,47896,,, +684,THA,th,Thor. Phor. Sii,,Nakhon Si Thammarat/Fort Vajiravudh (ntm),8.466667,99.966667,,5,,9507,82,138,,2130-1630,1234567,,,47905,,, +684,CHN,zh,Hubei RGD Chutian Weixing,,Jingmen (HU),31.033333,112.2,,1,,8308,59,140,,2000-1630,1234567,,,47870,,, +684,PHL,,DYEZ-AM Aksyon Radyo,,Bacolod City/Sumag (noc),10.596389,122.911944,,10,,10801,62,140,,1950-1600,1234567,,,47900,,, +684,PHL,tl,DWJJ-AM Radyo ng Pambansang,,Cabanatuan City (nve),15.466667,120.95,,5,,10233,61,141,,,,,,47901,,, +684,CHN,,Suzhou RGD,,Suzhou (JS),31.3,120.683333,,1,,8762,53,143,,,,,,47872,,, +684,CHN,zh,Anhui RGD Shenghuo Guangbo,,Xuancheng/Wuligang (AH),30.930556,118.745833,,1,,8689,54,143,,2100-1800,1234567,,,36200887,,, +684,J,ja,JOLO IBC Iwate Hoso,,Ofunato (toh-iwa),39.083333,141.716667,,1,,8992,34,144,,0000-2400,1234567,,,47894,,, +684,PHL,,DZCV-AM R Veritas,,Tuguegarao/Ugac Norte (cag),17.6,121.75,,1,,10083,59,147,,,,,,47903,,, +684,PHL,,DWGW-AM IBC R,,Legazpi City (aby),13.133333,123.733333,,1,,10615,60,149,,,,,,47902,,, +684,INS,id,PM3BHI R Angkasa Media,,Kadipaten (JB),-6.766667,108.166667,,1,,11403,85,152,,,,,,47883,,, +684,J,ja,IBC Iwate Hoso,,Iwaizumi (toh-iwa),39.85,141.8,,0.1,,8919,33,153,,,,,,31400055,,, +684,J,ja,IBC Iwate Hoso,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,,,,,31400056,,, +684,AUS,,6BS ABC Southwest WA,,Busselton/Kealy (WA),-33.659986,115.229306,,4,,14126,99,155,,0000-2400,1234567,2,,47862,,, +684,TMP,,R Timor-Leste,,Dili/Foho Kutulau (dil),-8.641944,125.375278,,1,,12717,72,156,,2045-1200,1234567,,,47907,,, +684,AUS,,2KP ABC Mid North Coast NSW,,Kempsey/Smithtown (NSW),-31.005944,152.948208,,10,,16428,62,158,,0000-2400,1234567,8,,47863,,, +684,AUS,,8RN ABC National,,Tennant Creek (NT),-19.669158,134.260533,,1,,14272,71,161,,0000-2400,1234567,,,47864,,, +687,UKR,,P,b,Dnipropetrovsk (DP),48.354167,35.041667,,0.025,,2065,90,94,,,,972,L1025 U970 ,IDx2 + 10 gap,85637,, +687,UKR,,R,b,Dnipropetrovsk (DP),48.354167,35.125,,0.025,,2070,90,94,,,,56,L1030 U1072 ,85638,,, +687,RUS,,VT,b,Eysk,46.645833,37.958333,,0.025,,2343,92,96,,,,1,L1020 U1023 5.0s,ID+2.5 gap,85639,, +687,RUS,,WU,b,Yeysk (KD),46.6875,38.208333,,0.025,,2358,92,97,,,,,15.0s,IDx2 + 6 gap,85640,, +688,RUS,,IP,b,Zakharovka,54.729167,36.625,,0.025,,2007,70,93,,,,,L397 U400 30.0s,IDx2 + 20 gap,85643,, +690,UKR,,SR,b,Seredne,48.520833,22.541667,,0.025,,1210,103,85,,,,,U1030 ,85647,,, +690,UKR,,DM,b,Dmytrivka,45.479167,35.041667,,0.025,,2206,98,95,,,,999,L1020 U1018 30.0s,IDx2 + 22 gap,85645,, +690,CAN,en,CKGM,,Montral/Mercier (QC),45.295278,-73.721667,,50,,5625,296,96,,,,0,,20109302,,, +690,RUS,,AZ,b,Arkhangelsk / Talagi (AR),64.604167,40.625,,0.025,,2385,41,97,,,,,U386 30.0s,IDx2,85644,, +690,RUS,,KM,b,Akhangelsk / Talagi (AR),64.604167,40.875,,0.025,,2396,41,97,,,,0,,85646,,, +690,USA,es,WADS,,Ansonia (CT),41.346111,-73.114167,,3.2,,5866,292,111,,,,,,40655,,, +690,USA,en,WOKV,,Jacksonville (D) (FL),30.132222,-81.7,,50,,7290,288,113,,1200-2400,1234567,6,,42589,,, +690,USA,en,WJOX,,Birmingham (D) (AL),33.448889,-86.921667,,50,,7349,294,114,,1200-2400,1234567,,,20012517,,, +690,USA,en,WOKV,,Jacksonville (N) (FL),30.307778,-81.939722,,25,,7291,289,116,,0000-1200,1234567,,,20012518,,, +690,USA,,WNZK,,Dearborn Heights (MI),42.098611,-83.33,,2.5,,6440,299,117,,1300-0100,1234567,,,42543,,, +690,CAN,en,CBU,,Vancouver (BC),49.137222,-123.201389,,50,,7793,328,118,,,,2,,35798,,, +690,USA,,WPHE,,Phoenixville (PA),40.135556,-75.560278,,1,,6110,292,118,,,,9969,,42685,,, +690,CAN,fr,CBKF-1,,Gravelbourg (SK),49.871111,-106.472778,,5,,7037,318,120,,,,0,,35785,,, +690,B,pt,ZYH587 Rdio Drago do Mar,,Fortaleza (CE),-3.815908,-38.56455,,10,,7517,230,122,,,,,,36901249,,, +690,HTI,,Voix des Travailleurs,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52099,,, +690,CUB,es,R Progreso,,Santa Clara/CTOM3 (vc),22.435008,-79.916175,,10,,7814,281,125,,,,9994,,36493,,, +690,VEN,,YVMR R Barquisimeto,,Barquisimeto (lar),10.066667,-69.266667,,25,,8149,265,125,,,,,,45385,,, +690,USA,,KGGF,,Coffeyville (KS),37.146389,-95.478333,,5,,7554,303,126,,,,,,38475,,, +690,MEX,es,XEWW-AM W R,,Tijuana/Popotla (bcn),32.297639,-117.031444,,50,,9141,315,127,,0000-2400,1234567,99,,44860,,, +690,B,pt,ZYI532 Rdio Clube do Par,,Belm/Ananindeua (PA),-1.404856,-48.414028,,5,,7836,240,128,,,,,,36901246,,, +690,B,pt,ZYL228 Rdio Mineira,,Belo Horizonte (MG),-20.033333,-44.083333,,50,,9390,227,128,,,,,,36901248,,, +690,USA,en,WQNO,,New Orleans (LA),29.964722,-89.958611,,5,,7830,294,128,,,,,,43146,,, +690,B,pt,ZYN661 Rdio Cano Nova,,Palmas (TO),-10.151389,-48.310833,,25,,8659,235,129,,,,,,36901247,,, +690,DOM,,HIAW R Guarachita,,Santo Domingo (sdo),18.475,-69.833333,,1,,7465,271,132,,0900-0400,1234567,,,37214,,, +690,EQA,,HCJB,,Quito (pic),-0.166667,-78.5,,25,,9675,266,132,,,,,,36979,,, +690,USA,,KTSM,,El Paso (TX),31.969722,-106.354167,,10,,8619,307,132,,,,,,39541,,, +690,USA,en,WJOX,,Birmingham (N) (AL),33.450556,-86.922222,,0.5,,7349,294,133,,0000-1200,1234567,,,41917,,, +690,CAN,en,CBES,,Ignace (ON),49.413611,-91.6625,,0.04,,6349,310,134,,,,,,20109086,,, +690,CAN,en,CBOI,,Ear Falls (ON),50.642778,-93.221111,,0.04,,6335,312,134,,,,,,20109087,,, +690,CAN,xx,CBQM,,Fort McPherson (NT),67.428333,-134.865278,,0.04,,6337,343,134,,,,,,20109089,,, +690,CLM,es,HJCZ W R,,Bogot D. C. (bdc),4.616667,-74.033333,,10,,8951,265,134,,,,997,,37384,,, +690,NCG,,YNRH R Hermanos,,Matagalpa (mgp),12.883333,-85.95,,10,,9040,280,134,,1000-0400,1234567,,,52192,,, +690,USA,,WVCY,,Oshkosh (WI),44.080833,-88.564722,,0.077,,6592,304,134,,,,,,43290,,, +690,CAN,xx,CBDO,,Fort Simpson (NT),61.871667,-121.380833,,0.04,,6534,334,136,,,,,,20109088,,, +690,PNR,es,R Evangelio Vivo,,Pacora (pnm),9.085,-79.2925,,5,,8919,272,136,,,,,,52299,,, +690,PNR,es,HOR43 R Veraguas,,Santiago/La Soledad (vrg),8.131156,-80.980489,,5,,9117,273,137,,1000-0300,1234567,,,37718,,, +690,SLV,,YSQR,,San Salvador (ssl),13.716667,-89.216667,,5,,9186,283,137,,,,,,45305,,, +690,MEX,es,XEN-AM La 69,,Mxico D.F/Emiliano Zapata (dif),19.333117,-98.988389,,5,,9322,294,138,,0000-2400,1234567,,,44431,,, +690,USA,en,WELD,,Fisher (WV),39.052222,-79.005833,,0.014,,6409,294,140,,,,,,41285,,, +690,ARG,,LU19 LV de Comahue,,Cipolletti (rn),-38.95,-68,,25,,12407,234,141,,0900-0500,1234567,,,40213,,, +690,CAN,xx,CBDM,,Beaver Creek (YT),62.380833,-140.885278,,0.04,,6964,344,141,,,,,,20109090,,, +690,MEX,es,XEMA-AM,,Fresnillo (zac),23.141383,-102.832706,,2,,9215,299,141,,1200-0600,1234567,,,44338,,, +690,URG,es,CX8 R Sarand,,Montevideo/Av. Luis Batlle Berres (mo),-34.840872,-56.261461,,10,,11417,228,142,,0000-2400,1234567,,,36826,,, +690,ARG,es,LRA4 R Nacional,,Salta (sa),-24.8153,-65.425494,,5,,11015,241,143,,0900-0400,1234567,,,39952,,, +690,CLM,es,HJZ73,,Apartado (ant),7.883333,-76.633333,,1,,8842,269,143,,,,,,35901380,,, +690,HND,,HRNN9A,,Tela (atl),15.75,-87.466667,,1,,8892,283,143,,,,,,37820,,, +690,HWA,en,KHNR,,Honolulu (HI),21.294722,-157.863611,,10,,11711,345,143,,0000-2400,1234567,0,,39099,,, +690,MEX,es,XERG-AM RG 690 La Deportiva,,Monterrey (nvl),25.655778,-100.2552,,1,,8835,299,143,,1200-0700,1234567,,,44674,,, +690,MEX,es,XEXL-AM La Ley,,Ptzcuaro (mic),19.544878,-101.613622,,1.5,,9466,296,143,,1200-0400,1234567,,,45055,,, +690,USA,,WZAP,,Bristol (VA),36.630833,-82.164722,,0.014,,6795,294,143,,,,,,43565,,, +690,CHL,es,CB69 R Santiago,,Santiago (RM),-33.505433,-70.787239,,10,,12097,239,144,,1000-0600,1234567,,,35757,,, +690,EQA,,HCFA4,,Portoviejo (man),-1.066667,-80.466667,,2,,9888,267,144,,,,,,36929,,, +690,GTM,,TGVB R Tamazulapa,,Jutiapa (jut),14.266667,-89.9,,1,,9183,284,144,,,,,,40554,,, +690,HND,,HRNN19,,Choluteca (cho),13.3,-87.2,,1,,9087,281,144,,,,,,37809,,, +690,USA,en,KEWI,,Benton (AR),34.5325,-92.571111,,0.073,,7604,299,144,,,,,,38350,,, +690,B,pt,ZYI451 Rdio Parecis de Diamantino,,Diamantino/Fazenda Buriti (MT),-14.422686,-56.441411,,1,,9530,240,145,,,,,,36901242,,, +690,USA,,KOAQ,,Terrytown (NE),41.848611,-103.667222,,0.065,,7596,311,145,,,,,,39046,,, +690,MEX,es,XECS-AM La Mejor,,Manzanillo (col),19.087789,-104.300867,,1,,9671,298,146,,0000-2400,1234567,,,43871,,, +690,USA,,KPET,,Lamesa (TX),32.7075,-101.936389,,0.25,,8307,304,146,,,,,,39136,,, +690,USA,,KSTL,,St. Louis (MO),38.616944,-90.171389,,0.0179,,7122,300,146,,,,,,39422,,, +690,USA,en,WNZL582,,West Branch (IA),41.666139,-91.346833,,0.01,,6943,303,146,,,,,,20010482,,, +690,B,pt,ZYH780 Rdio Sociedade de Ceres,,Ceres (GO),-15.3445,-49.613556,,0.5,,9227,234,147,,,,,,36901245,,, +690,B,pt,ZYI201 Rdio Amrica,,Cariacica (ES),-20.33975,-40.370892,,0.5,,9241,223,147,,,,,,36901243,,, +690,B,pt,ZYH453 Rdio Cultura de Ilhus,,Ilhus (BA),-14.778644,-39.058364,,0.25,,8626,225,148,,,,,,36901244,,, +690,USA,,KFXN,,Minneapolis (MN),45.023611,-93.382778,,0.004,,6786,307,149,,,,9998,,38443,,, +690,USA,,KBLI,,Blackfoot (ID),43.167778,-112.368889,,0.0429,,7904,317,150,,,,,,38055,,, +690,USA,,KRCO,,Prineville (OR),44.341111,-120.906667,,0.077,,8164,324,150,,,,5,,39226,,, +690,B,pt,ZYJ772 Rdio Clube de Lages AM,,Lages (SC),-27.774167,-50.302778,,0.5,,10451,228,151,,,,,,36901238,,, +690,MEX,es,XEST-AM La Invasora,,Mazatln (sin),23.231978,-106.393972,,0.25,,9417,302,151,,1000-0500,1234567,,,44771,,, +690,ARG,,R Maranatha en las Nubes,,Lomas del Mirador (ba),-34.65,-58.533333,,1,,11517,230,152,,,,,,51796,,, +690,ARG,es,K24 R,,Mariano Acosta (ba),-34.716667,-58.791667,,1,,11537,230,152,,,,,,33000015,,, +690,B,pt,ZYK561 RB-Rdio Bebedouro,,Bebedouro (SP),-20.941706,-48.462739,,0.25,,9702,230,152,,,,,,36901237,,, +690,B,pt,ZYK588 Rdio Clube de Guaratinguet,,Guaratinguet (SP),-22.819911,-45.204603,,0.25,,9718,226,152,,,,,,36901241,,, +690,B,pt,ZYK625 Rdio Cidade AM,,Pereira Barreto (SP),-20.632044,-51.107439,,0.25,,9813,232,152,,,,,,36901236,,, +690,B,pt,ZYK646 Rdio Brasil AM,,Santa Brbara d'Oeste (SP),-22.744706,-47.433056,,0.25,,9822,228,152,,,,,,36901233,,, +690,B,pt,ZYJ229 Rdio Difusora AM,,Londrina/Gleba Ribeiro Cafezal (PR),-23.338611,-51.222111,,0.25,,10076,231,153,,,,,,36901240,,, +690,CHL,,CD69 R Estrella del Mar,,Ancud (LL),-42.166667,-73.766667,,2.5,,12996,235,153,,1100-0330,1234567,,,35909,,, +690,USA,,KWRP,,Pueblo (CO),38.296667,-104.646389,,0.024,,7960,309,153,,,,,,39271,,, +690,B,pt,ZYI402 RCN-Rdio Cultura de Navira,,Navira (MS),-23.085669,-54.194833,,0.25,,10212,233,154,,,,,,36901234,,, +690,B,pt,ZYJ252 Rdio Difusora de Ponta Grossa,,Ponta Grossa (PR),-25.051667,-50.118056,,0.25,,10182,229,154,,,,,,36901235,,, +690,B,pt,ZYJ360 Rdio Voz do Sudoeste,,Coronel Vivida (PR),-25.953333,-52.566667,,0.25,,10395,231,154,,,,,,36901239,,, +690,B,pt,ZYK252 Rdio Progresso AM,,Iju (RS),-28.367778,-53.897222,,0.25,,10692,230,155,,,,,,36901250,,, +690,USA,,KRGS,,Rifle (CO),39.548889,-107.769722,,0.012,,8009,312,156,,,,,,39245,,, +690,USA,,KCEE,,Tucson (AZ),32.253056,-110.962222,,0.0032,,8839,310,168,,,,,,20016017,,, +693,G,en,BBC R 5 Live,,Droitwich/Mast A (EN-WOR),52.294556,-2.105694,,150,,580,275,41,,0000-2400,1234567,0,,301,,, +693,G,en,BBC R 5 Live,,Stagshaw (EN-NBD),55.032667,-2.022972,,50,,644,304,47,,0000-2400,1234567,0,,299,,, +693,G,en,BBC R 5 Live,,Start Point (EN-CNW),50.228389,-3.663944,,50,,732,257,47,,0000-2400,1234567,0,,300,,, +693,G,en,BBC R 5 Live,,Postwick (EN-NFK),52.626944,1.402778,,10,,345,282,50,,0000-2400,1234567,,,297,,, +693,G,en,BBC R 5 Live,,Burghead (SC-MOR),57.699056,-3.471806,,25,,885,318,52,,0000-2400,1234567,0,,298,,, +693,E,es,RNE R Nacional,,Boal (Asturias)/Pico Penouta (AST-O),43.451736,-6.823278,,20,,1376,231,58,,0000-2400,1234567,,,2200005,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0625-0630,12345..,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0650-0700,12345..,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0800-0815,12345..,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1208-1300,12345..,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1230-1300,.....67,991,,289,,, +693,E,ca,RNE Rdio 4,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1400-1415,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,20,,1579,215,60,,0000-2400,1234567,6,,290,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0000-0625,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0000-1230,.....67,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0630-0650,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0700-0800,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,0815-1208,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1300-1400,12345..,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1300-2400,.....67,991,,289,,, +693,E,es,RNE R Nacional,,Tortosa/Santa Brbara (CAT-T),40.737389,0.505097,,10,,1342,202,60,,1415-2400,12345..,991,,289,,, +693,G,en,BBC R 5 Live,,Bexhill-on-Sea (EN-ESU),50.838056,0.4475,,1,,436,253,61,,0000-2400,1234567,,,292,,, +693,G,en,BBC R 5 Live,,Folkestone (EN-KNT),51.105,1.220833,,1,,375,255,61,,0000-2400,1234567,,,295,,, +693,G,en,BBC R 5 Live,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,1,,482,256,62,,0000-2400,1234567,,,293,,, +693,G,en,BBC R 5 Live,,Barrow-in-Furness (EN-CUM),54.126278,-3.196389,,1,,679,293,64,,0000-2400,1234567,,,291,,, +693,G,en,BBC R 5 Live,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,1,,780,319,65,,0000-2400,1234567,0,,296,,, +693,G,en,BBC R 5 Live,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0000-2400,1234567,0,,294,,, +693,RUS,ru,R Rossii,,Ufa/Yazykovo (BA),54.673889,55.100833,,150,,3176,65,67,,2300-1900,1234567,,,306,,, +693,ALG,tz,Chane 2,,Aboudid (Ain El Hammam) (15),36.624722,4.219167,,4,,1730,187,68,,0400-2400,1234567,,,200003,,, +693,ALG,ar,R Adrar,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,0600-1930,1234567,,,279,,, +693,ALG,ar,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2000-2030,1234567,,,279,,, +693,ALG,ar,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2100-2130,1234567,,,279,,, +693,ALG,ar,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2230-2300,1234567,,,279,,, +693,ALG,ar,R Coran,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2300-0200,1234567,,,279,,, +693,ALG,en,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2130-2200,1234567,,,279,,, +693,ALG,es,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,1930-2000,1234567,,,279,,, +693,ALG,es,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2200-2230,1234567,,,279,,, +693,ALG,fr,R Algrie Int.,,Reggane (1),26.725556,0.180278,,10,,2870,193,76,,2030-2100,1234567,,,279,,, +693,GRC,,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400031,,, +693,AZR,pt,Antena 1,,Serra de Santa Brbara (tce),38.730147,-27.317444,,3,,2985,254,82,,0000-0530,123456,62,,287,,, +693,AZR,pt,Antena 1,,Serra de Santa Brbara (tce),38.730147,-27.317444,,3,,2985,254,82,,0000-0600,......7,62,,287,,, +693,AZR,pt,RDP Aores,,Serra de Santa Brbara (tce),38.730147,-27.317444,,3,,2985,254,82,,0530-2400,123456,62,,287,,, +693,AZR,pt,RDP Aores,,Serra de Santa Brbara (tce),38.730147,-27.317444,,3,,2985,254,82,,0600-2400,......7,62,,287,,, +693,IRN,fa,IRIB R Khalij-e Fars,,Bandar-e Lengeh (hrg),26.517817,54.625,,100,,4900,106,86,,,,200,,1777,,, +693,KGZ,,KTRK Birinchi R,,Osh (osh),40.533333,72.783333,,50,,5068,77,91,,,,,,47129,,, +693,SSD,xx,Southern Sudan R,,Juba (ceq),4.810706,31.630294,,100,,5748,147,95,,0345-0700,1234567,,,2328,,, +693,SSD,xx,Southern Sudan R,,Juba (ceq),4.810706,31.630294,,100,,5748,147,95,,1245-1820,1234567,,,2328,,, +693,BGD,,Bangladesh Betar,,Dhaka A/Dhamrai (dha),23.906389,90.199167,,1000,,7520,79,102,,0030-0610,1234567,3,,47919,,, +693,BGD,,Bangladesh Betar,,Dhaka A/Dhamrai (dha),23.906389,90.199167,,1000,,7520,79,102,,0830-1730,1234567,3,,47919,,, +693,CHN,,Shaanxi Xinwen Guangbo,,Xianyang/SATS3 (SA),34.303889,108.705556,,100,,7819,59,115,,2150-1710,1234567,,,47920,,, +693,SOM,,R Hargeisa,,Hargeisa=Hargaysa (woq),9.572783,44.060817,,1,,5822,130,115,,0330-0600,1234567,,,47139,,, +693,SOM,,R Hargeisa,,Hargeisa=Hargaysa (woq),9.572783,44.060817,,1,,5822,130,115,,1500-2000,1234567,,,47139,,, +693,J,,JOAB NHK2,,Shobu/Kuki (kan-sai),36.070833,139.624722,,500,,9211,36,117,,2030-1500,1.....7,5,,47925,,, +693,J,,JOAB NHK2,,Shobu/Kuki (kan-sai),36.070833,139.624722,,500,,9211,36,117,,2030-1635,.2345..,5,,47925,,, +693,J,,JOAB NHK2,,Shobu/Kuki (kan-sai),36.070833,139.624722,,500,,9211,36,117,,2030-1640,.....6.,5,,47925,,, +693,CHN,,Qiqihar RGD Life & Literary,,Qiqihar (HL),47.362778,123.981111,,10,,7469,41,122,,,,,,36200085,,, +693,BOT,,R Botswana,,Shakawe (nw),-18.42155,21.873878,,25,,7985,165,123,,0000-2400,1234567,,,47117,,, +693,CHN,,Shaanxi Xinwen Guangbo,,Ankang/Shuangquan (SX),32.733333,108.983333,,10,,7971,60,127,,,,,,36200082,,, +693,CHN,,Shaanxi Xinwen Guangbo,,Yulin (SA),38.299722,109.735,,1,,7538,56,132,,,,,,36200084,,, +693,TWN,,Han Sheng Kuangpo Tientai,,Chung-Li (TY),24.934167,121.225833,,10,,9376,56,135,,2100-1600,1234567,,,47933,,, +693,TWN,,Han Sheng Kuangpo Tientai,,Tainan (TNS),22.998011,120.246053,,10,,9498,58,135,,2100-1600,1234567,,,47934,,, +693,CHN,,Shaanxi Xinwen Guangbo,,Ganquan (SX),35.683333,111.85,,1,,7882,56,136,,,,,,36200083,,, +693,THA,th,Siang Adison=Voice of Adison,,Saraburi/Fort Adison (srb),14.516306,100.916506,,5,,9041,77,137,,2200-1700,1234567,,,47932,,, +693,PHL,,DYKX-AM (r:666 DZRH-AM),,Kalibo (akl),11.716667,122.35,,10,,10664,62,139,,,,,,47930,,, +693,PHL,tl,DYPH-AM (r:666 DZRH-AM),,Puerto Princesa (plw),9.736111,118.738889,,10,,10623,66,139,,,,,,47931,,, +693,PHL,,DZTP-AM,,Candon (ils),17.2,120.45,,5,,10043,61,140,,,,,,47928,,, +693,PHL,,DXBC-AM Radyo Agong,,Butuan City (agn),8.933333,125.516667,,5,,11113,61,144,,2100-1600,1234567,,,47927,,, +693,INS,id,R Muara,,Jakarta/Rawamangun (JK),-6.183333,106.9,,1,,11265,86,151,,2200-1700,1234567,,,35400125,,, +693,PHL,,DXDX-AM,,General Santos City (sco),6.1,125.166667,,1,,11355,63,151,,,,,,47929,,, +693,AUS,,6WR Waringarri R,,Kununurra (WA),-15.763778,128.733833,,5,,13570,74,152,,,,,,47915,,, +693,AUS,en,4KQ Classic Hits,,Brisbane/St. Helena Island (QLD),-27.379861,153.235083,,5,,16126,58,160,,0000-2400,1234567,2,,47913,,, +693,AUS,en,3AW,,Melbourne/Mount Cottrell (VIC),-37.798611,144.616778,,5,,16426,80,161,,0000-2400,1234567,,,50311,,, +693,AUS,,5SY ABC West Coast SA,,Streaky Bay (SA),-32.75725,134.1915,,2,,15348,84,162,,0000-2400,1234567,,,47917,,, +693,AUS,,4KZ/t,,Tully (QLD),-17.99595,145.938111,,0.5,,14843,58,166,,,,,,47918,,, +693,AUS,,4LM/t Zinc 666,,Cloncurry (QLD),-20.69735,140.500033,,0.5,,14760,66,166,,0000-2400,1234567,,,47914,,, +693,NZL,en,R Sport,,Dunedin/Highcliff (OTA),-45.885556,170.595,,5,,18674,65,169,,0000-2400,1234567,,,47926,,, +694,RUS,,AL,b,Algasovo (TA),53.6875,41.708333,,0.025,,2350,72,96,,,,,U1010 30.0s,IDx2,86772,, +694,RUS,,QL,b,Algasovo (TA),53.6875,41.708333,,0.025,,2350,72,96,,,,,U1007 ,IDx2,85648,, +695,SVK,,T,b,Trenčn (TN),48.854167,17.958333,,0.025,,892,109,82,,,,,7.0s,85649,,, +696,RUS,,BT,b,Alatyr (CV),54.8125,46.541667,,0.025,,2637,67,99,,,,,,85650,,, +697,UKR,,O,b,Lozovatka / Kryvyi Rih (DP),48.020833,33.208333,,0.025,,1954,93,93,,,,,,86773,,, +700,RUS,,K,b,Sankt-Peterburg/Pulkovo (SP),59.8125,30.208333,,0.025,,1697,50,90,,,,,,85653,,, +700,RUS,,MR,b,Moskva/Sheremetyevo (MV),55.979167,37.291667,,0.025,,2043,66,93,,,,9994,L1010 U1009 ,85654,,, +700,RUS,,Q,b,Petrozavodsk / Besovets (KR),61.895833,34.208333,,0.025,,1981,46,93,,,,8,L980 U995 14.9s,IDx2,85655,, +700,RUS,,X,b,Petrozavodsk / Besovets (KR),61.854167,34.125,,0.025,,1975,46,93,,,,,4.8s,85656,,, +700,RUS,,AD,b,Moskva/Sheremetyevo (MV),55.979167,37.541667,,0.025,,2059,66,94,,,,,L1040 ,85651,,, +700,RUS,,GSH,b,Alakurtti,66.979167,30.291667,,0.025,,2104,29,94,,,,,L1020 15.1s,IDx2,86775,, +700,USA,en,WLW,,Cincinnati/Tower Drive (U) (OH),39.353056,-84.325,,50,,6713,297,107,,,,0,,42257,,, +700,USA,,WTUB,,Orange-Athol (MA),42.585,-72.282222,,2.5,,5725,293,110,,,,998,,40948,,, +700,USA,,WDMV,,Walkersville (MD),39.4575,-77.324167,,5,,6272,293,113,,,,,,41185,,, +700,CAN,en,CJLI,,Calgary (AB),50.640833,-114.223333,,20,,7304,323,117,,,,,,20100024,,, +700,ALS,,KBYR,,Anchorage (AK),61.206944,-149.922222,,10,,7241,348,119,,0000-2400,1234567,998,,38114,,, +700,VEN,,YVMH R Popular,,Maracaibo (zul),10.65,-71.616667,,50,,8259,267,123,,1000-0400,1234567,,,45380,,, +700,USA,en,WZOO,,Asheboro (NC),35.763889,-79.834444,,1,,6717,291,124,,1200-2400,1234567,,,31600130,,, +700,B,pt,ZYI890 Rdio Clube de Teresina,,Teresina (PI),-5.168844,-42.764256,,10,,7873,233,126,,,,,,36901255,,, +700,CLM,es,HJCX W R,,Cali (val),3.466667,-76.5,,50,,9219,267,127,,,,28,,37382,,, +700,EQA,,HCRS2 R Sucre,,Guayaquil (gua),-2.2,-79.866667,,100,,9947,266,127,,,,993,,37111,,, +700,USA,,KALL,,North Salt Lake City (UT),40.891389,-111.941389,,10,,8092,316,128,,,,9926,,37937,,, +700,CLM,,HJNJ,,Vdel Canagua (ces),10.501467,-73.250706,,15,,8383,268,129,,,,,,37588,,, +700,USA,en,WCNF,,Dothan (AL),31.438611,-85.289444,,1.6,,7413,292,129,,1300-0100,1234567,,,41590,,, +700,VEN,,YVPQ R Sur,,Puerto Ordaz (blv),8.316667,-62.666667,,5,,7857,258,129,,0000-2400,1234567,95,,1993,,, +700,B,pt,ZYK686 Rdio Eldorado,,So Paulo/Avenida Guido Aliberti (SP),-23.645556,-46.577222,,50,,9866,227,130,,,,,,36901252,,, +700,B,pt,ZYH801 Rdio Pouso Alto AM,,Piracanjuba (GO),-17.318275,-48.981394,,25,,9382,232,131,,,,,,36901257,,, +700,B,pt,ZYI428 Rdio Sorriso,,Sorriso (MT),-12.554594,-55.721769,,20,,9314,240,132,,,,,,36901256,,, +700,GTM,,TGHR R Mundial,,Ciudad de Guatemala (gut),14.666667,-90.466667,,10,,9185,284,134,,1000-0600,1234567,,,40498,,, +700,NCG,,YNMM R Managua,,Managua (mng),12.15,-86.283333,,10,,9126,280,134,,1000-2400,1234567,,,52193,,, +700,SLV,es,YSJW R Mi Gente,,San Miguel/El Papaln (smg),13.462089,-88.118783,,10,,9135,282,134,,,,,,31100004,,, +700,SLV,es,YSJW R Mi Gente,,San Salvador/Los Jurez (ssl),13.764722,-89.222778,,10,,9182,283,134,,,,,,31100002,,, +700,SLV,es,YSJW R Mi Gente,,Santa Ana (sta),13.972778,-89.555,,10,,9186,283,134,,,,,,31100003,,, +700,MEX,es,XEXPUJ-AM,,Xpujil (cam),18.510833,-89.420556,,5,,8781,286,136,,,,,,45064,,, +700,USA,en,KXLX,,Spokane/Airway Heights (WA),47.608611,-117.373611,,0.6,,7712,323,136,,,,993,,39803,,, +700,B,pt,ZYJ225 Rdio Capital do Papel,,Telmaco Borba (PR),-24.355833,-50.605833,,10,,10141,230,137,,,,,,36901251,,, +700,CTR,,TIJC R Sonora,,San Jos (sjs),9.966667,-84.066667,,5,,9167,277,137,,1100-0400,1234567,,,40585,,, +700,HND,,HRKL,,Tegucigalpa (fmz),14.066667,-87.216667,,5,,9022,282,137,,,,,,37773,,, +700,USA,xx,KHSE,,Wylie (TX),33.033611,-96.298611,,0.92,,7953,300,137,,,,,,38563,,, +700,ARG,es,LV3 R Crdoba,,Crdoba (cb),-31.38805,-64.083133,,25,,11525,236,138,,0000-2400,1234567,2,,40253,,, +700,DOM,,HIDC R Mao,,Santa Cruz de Mao (vav),19.55,-71.066667,,0.25,,7458,273,138,,1000-0400,1234567,,,37237,,, +700,MEX,es,XEETCH-AM,,Etchojoa (son),26.922331,-109.627056,,5,,9261,306,138,,,,,,43981,,, +700,HND,,HRRH,,Santa Rosa de Copan (cop),14.716667,-88.816667,,3,,9072,283,139,,,,,,37836,,, +700,USA,,KSEV,,Tomball (TX),30.192778,-95.594444,,1,,8156,298,139,,,,,,39345,,, +700,PRG,,ZP12 R.Carlos Antonio Lopez-LV del Neembuco,,Pilar (neb),-26.866667,-58.366667,,10,,10794,234,140,,0900-0200,1234567,6,,45507,,, +700,B,pt,ZYH500 Rdio Cultura,,Feira de Santana (BA),-12.247317,-38.943711,,1,,8369,226,141,,,,,,36901258,,, +700,PRG,,ZP76,,Lagerenza (apg),-19.966667,-60.75,,5,,10297,240,141,,,,,,45559,,, +700,MEX,es,XEGD-AM La Poderosa,,Hidalgo del Parral (chi),26.921294,-105.650289,,1,,9038,303,144,,,,,,44049,,, +700,PRU,,OBU7K,,Urubamba/Cerro Sacro (cus),-13.359306,-72.112311,,3,,10412,253,144,,,,,,37000119,,, +700,USA,,KGRV,,Winston (OR),43.144444,-123.459167,,0.47,,8382,325,144,,,,9953,,38510,,, +700,USA,,KMBX,,Soledad (CA),36.464167,-121.297778,,0.7,,8939,320,145,,,,891,,38887,,, +700,MEX,es,XERV-AM R Capital,,Villahermosa (tab),17.930925,-92.978778,,0.5,,9063,288,147,,,,,,44721,,, +700,MEX,es,XELX-AM Ke Buena,,Heroica Zitcuaro (mic),19.445319,-100.341428,,0.5,,9396,295,148,,,,,,44332,,, +700,B,pt,ZYK247 Rdio Sideral AM,,Getlio Vargas (RS),-27.899444,-52.246111,,1,,10562,229,149,,,,,,36901253,,, +700,PRU,es,OBZ4H R Integridad,,San Miguel (lim),-12.016667,-77.066667,,1,,10621,257,149,,,,,,40416,,, +700,B,pt,ZYJ507 Rdio Aliana,,Italva (RJ),-21.437161,-41.682375,,0.25,,9412,224,151,,,,,,36901259,,, +700,CHL,,CA70 R Nibsan,,Copiap (AT),-27.866667,-70.866667,,1,,11613,243,152,,1030-0300,1234567,,,35707,,, +700,CHL,,CD70 R Magallanes,,Punta Arenas (MA),-53.133333,-71.016667,,5,,13727,225,152,,,,,,35910,,, +700,MEX,es,XEDKR-AM R RED,,Guadalajara (jal),20.641853,-103.340219,,0.15,,9472,298,153,,,,,,43914,,, +700,B,pt,ZYK356 Rdio Batovi AM,,So Gabriel (RS),-30.3,-54.305556,,0.25,,10895,230,156,,,,,,36901254,,, +700,CHL,,CD70 R Valdivia,,Valdivia (LL),-39.8,-73.25,,1,,12772,236,156,,1030-0500,1234567,,,35843,,, +702,MCO,fr,China R Int.,,Col de la Madone [F] (6),43.794406,7.416033,,200,,928,175,43,,0800-1300,1234567,5,,314,,, +702,MCO,fr,China R Int.,,Col de la Madone [F] (6),43.794406,7.416033,,200,,928,175,43,,1800-2300,1234567,5,,314,,, +702,MCO,it,China R Int.,,Col de la Madone [F] (6),43.794406,7.416033,,200,,928,175,43,,1500-1800,1234567,5,,314,,, +702,MCO,zh,China R Int.,,Col de la Madone [F] (6),43.794406,7.416033,,200,,928,175,43,,1300-1500,1234567,5,,314,,, +702,TUR,tr,TRT Trk,,Istanbul/atalca (mam-ist),41.184181,28.512111,,600,,2065,117,50,,0400-2300,1234567,9989,,322,,, +702,D,de,Funkhaus Europa,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,1500-1900,....5..,9975,,310,,, +702,D,de,Funkhaus Europa,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,1500-2000,1234...,9975,,310,,, +702,D,de,Hamburger Hafenkonzert,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0500-0700,......7,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0000-0730,1234567,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0700-0730,......7,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0745-1500,12345..,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0745-2105,.....67,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,1900-2400,....5..,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2000-2105,1234...,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2120-2305,1234.67,9975,,310,,, +702,D,de,NDR Info,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2320-2400,1234.67,9975,,310,,, +702,D,de,NDR Seewetterbericht,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,0730-0745,1234567,9975,,310,,, +702,D,de,NDR Seewetterbericht,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2105-2120,1234.67,9975,,310,,, +702,D,de,NDR Seewetterbericht,,Flensburg-Engelsby (shs),54.79185,9.503364,,7.5,,362,33,52,,2305-2320,1234.67,9975,,310,,, +702,SVK,hu,SRo 5 Rdio Patria Maďarsk,,Koice/Čiatice (KE),48.798653,21.400528,,5,,1121,103,61,,0500-1700,1234567,2,,7400002,,, +702,SVK,sk,SRo 3 Rdio Devn,,Koice/Čiatice (KE),48.798653,21.400528,,5,,1121,103,61,,1700-0500,1234567,2,,7400002,,, +702,ALG,ar,R Laghouat,,Laghouat (3),33.688333,2.914167,,25,,2067,189,64,,0800-1600,1234567,,,429,,, +702,IRN,,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1800-1830,1234567,998,,1780,,, +702,IRN,az,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,0330-0530,1234567,998,,1780,,, +702,IRN,az,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1430-1700,1234567,998,,1780,,, +702,IRN,en,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1030-1130,1234567,998,,1780,,, +702,IRN,he,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,,0230-0300,1234567,998,,1780,,, +702,IRN,ka,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1700-1800,1234567,998,,1780,,, +702,IRN,ru,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,0300-0330,1234567,998,,1780,,, +702,IRN,ru,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,Cau,1930-2030,1234567,998,,1780,,, +702,IRN,tr,IRIB WS,,Kiashahr (gln),37.410056,50.012389,,500,353,3739,98,67,,1830-1930,1234567,998,,1780,,, +702,SYR,ar,Idhaat al-Quds,,Homs=Hims (him),34.793456,36.714108,,100,,3075,117,68,,0300-2200,1234567,997,,321,,, +702,AZE,az,Azərbaycan R,,Baku (bak),40.398311,49.847022,,30,,3521,94,77,,0430-0530,1234567,4,,600002,,, +702,AZE,az,Azərbaycan R,,Baku (bak),40.398311,49.847022,,30,,3521,94,77,,1430-1700,1234567,4,,600002,,, +702,ARS,ar,BSKSA Idha'atu-i Jeddah,,Duba (tbk),27.438317,35.595681,,40,,3660,127,78,,0000-2400,1234567,,,47073,,, +702,IRN,fa,IRIB R Iran,,Bushehr (bus),28.936069,50.952239,,100,,4459,108,82,,0230-1430,1234567,1,,1778,,, +702,EGY,ar,ERTU Al-Shabab wal Riyadah/ERTU Al-Wadi al-Gaded,,El-Kharga (wjd),25.401194,30.553944,,10,,3597,136,83,,0400-2200,1234567,,,312,,, +702,OMA,ar,BBC WS,,A'Seela (shq),21.926333,59.625806,,800,290-340,5617,106,84,ME,1500-2100,1234567,0,,317,,, +702,EGY,ar,ERTU Janub Sa'id Misr,,Aswan (asn),24.074222,32.891583,,10,,3840,134,85,,0200-2200,1234567,,,311,,, +702,TJK,tg,Tojikiston R 1,,Orzu (ktl),37.539722,68.792583,,150,,5008,83,85,,2300-2000,1234567,,,47097,,, +702,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,0600-1215,1234567,982,,2348,,, +702,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,1700-1715,1234567,982,,2348,,, +702,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,1800-2330,1234567,982,,2348,,, +702,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,1215-1300,1234567,982,,2348,,, +702,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,1,,2986,209,87,,1715-1800,1234567,982,,2348,,, +702,IND,pa,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,0800-0830,1234567,1,,47947,,, +702,IND,pa,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,1130-1230,1234567,1,,47947,,, +702,IND,pa,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,1300-1430,1234567,1,,47947,,, +702,IND,sir,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,1230-1300,1234567,1,,47947,,, +702,IND,ur,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,0015-0430,1234567,1,,47947,,, +702,IND,ur,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,0830-1130,1234567,1,,47947,,, +702,IND,ur,All India R GOS,,Jalandhar A (PB),31.15,75.779722,,300,,5960,84,92,PAK,1430-1930,1234567,1,,47947,,, +702,ARS,ar,BSKSA Idha'atu-i Jeddah,,Bisha=Qal'at Bishah (asr),19.838394,42.622008,,10,,4757,125,95,,0300-2200,1234567,,,10600002,,, +702,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/XJTS904 (XJ),43.715833,87.595,,10,,5800,65,105,,0000-1600,1234567,,,47945,,, +702,AGL,,RNA Canal A,,Mulenvos/Baixo (lua),-8.856667,13.314722,,10,,6811,172,115,,0000-2400,1234567,,,47107,,, +702,CHN,zh,Jiangsu RGD Xinwen Pinl,,Nanjing/Gulizhen (JS),31.861022,118.673067,,200,,8601,54,119,,2000-1700,1234567,,,47943,,, +702,CHN,zh,Ulanqab RGD,,Jining/NMTS585 (NM),41.023056,113.073611,,10,,7489,52,122,,,,,,47941,,, +702,KRE,,KCBS Pyongyang Pangsong,,Ch'ongjin (hab),41.7646,129.708828,,50,,8238,40,122,,2100-1800,1234567,41,,47963,,, +702,CHN,,Jiangsu RGD Xinwen Pinl,,Nantong (JS),31.855833,121.010556,,50,,8729,52,126,,,,,,36200081,,, +702,CHN,,Jilin RGD Dazhong Shenghuo,,Jilin Shi (JL),43.8,126.5,,10,,7905,41,126,,,,,,36200077,,, +702,VTN,vi,VOV2,,Đ Nẵng (dan),16.083889,108.231111,,50,,9384,71,128,,2145-1700,1234567,983,,47971,,, +702,CHN,,Chaoyang RGD,,Lingyuan/LNTS331 (LN),41.233333,119.4,,3,,7799,47,130,,1000-1057,1234567,,,47939,,, +702,CHN,,Jiangsu RGD Xinwen Pinl,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,10,,8308,53,130,,,,,,36200885,,, +702,CHN,,Honghe RGD,,Gejiu/YNTS654 (YN),23.398333,103.161389,,10,,8417,70,131,,,,,,47940,,, +702,CHN,,Jiangsu RGD Xinwen Pinl,,Lianyungang (JS),34.666111,119.155278,,10,,8374,52,131,,,,,,36200079,,, +702,PHL,,DZAS-AM FEBC,,Bocaue (FEBC) (bul),14.8025,120.916111,,50,180,10292,62,131,,2045-1600,1234567,9981,,47967,,, +702,J,,JOKD NHK2,,Kitami (hok),44.002222,144.240556,,10,,8589,30,132,,2030-1500,1.....7,,,47961,,, +702,J,,JOKD NHK2,,Kitami (hok),44.002222,144.240556,,10,,8589,30,132,,2030-1635,.2345..,,,47961,,, +702,J,,JOKD NHK2,,Kitami (hok),44.002222,144.240556,,10,,8589,30,132,,2030-1640,.....6.,,,47961,,, +702,J,,JOFB NHK2,,Hiroshima (chg-hir),34.435833,132.47,,10,,9060,42,134,,2030-1500,1.....7,,,47960,,, +702,J,,JOFB NHK2,,Hiroshima (chg-hir),34.435833,132.47,,10,,9060,42,134,,2030-1635,.2345..,,,47960,,, +702,J,,JOFB NHK2,,Hiroshima (chg-hir),34.435833,132.47,,10,,9060,42,134,,2030-1640,.....6.,,,47960,,, +702,TWN,,Ching-Cha Kuangpo Tientai,,Taichung (TCS),24.153158,120.632389,,10,,9414,57,135,,2055-1400,1234567,,,47970,,, +702,CHN,,Neijiang RGD,,Neijiang/SCTS521 (SC),29.61,105.077222,,1,,8003,65,137,,,,,,47944,,, +702,CHN,,Jiangsu RGD Xinwen Pinl,,Changzhou (JS),31.783333,119.95,,1,,8678,53,143,,,,,,36200078,,, +702,CHN,zh,CRI News R,,Zhuhai/GDTS909 (GD),22.38255,113.557286,,1,,9157,63,144,,0000-2400,1234567,,,47946,,, +702,INS,id,PM3CEO R Barisan Nauli,,Sidikalang (SU),2.75,98.316667,,1,,9896,87,147,,,,,,35400026,,, +702,AUS,,6KP ABC Northwest WA,,Karratha (WA),-20.791833,116.893361,,10,,13205,87,148,,0000-2400,1234567,9993,,47937,,, +702,INS,id,R Tona 702 AM,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,60,,35400007,,, +702,AUS,en,2BL ABC Sydney,,Sydney/Prestons (NSW),-33.942097,150.885556,,50,,16545,68,152,,0000-2400,1234567,9966,,47938,,, +702,INS,id,R Suara Konco Tani,,Sleman/Sidokarto (YO-sle),-7.772778,110.304444,,1,,11636,84,152,,2130-1700,1234567,,,47957,,, +702,INS,id,RRI Pro-1,,Manokwari/Maripi (PB-man),-0.961022,134.00845,,2,,12545,59,152,,1957-1500,1234567,,,47955,,, +702,INS,id,RSKA-R.Suara Kasih Agung,,Jayapura (PA-jyp),-2.616667,140.65,,1,,13082,54,157,,,,,,47951,,, +702,NZL,,1XP R Live,,Auckland/Henderson (AUK),-36.844383,174.631153,,10,,18083,33,164,,,,,,47965,,, +702,NZL,en,R Sport,,Ashburton/Winchmore (CAN),-43.804167,171.704167,,1,,18587,56,175,,,,,,47966,,, +705,ROU,,RR,b,Bucuresti / Otopeni (BU),44.5625,26.125,,0.025,,1674,112,90,,,,10,L1020 U1040 ,ID+8.5 gap,85663,, +705,RUS,,KI,b,Chkalovskiy,55.895833,37.958333,,0.025,,2085,66,94,,,,,15.0s,IDx2,85657,, +705,RUS,,LG,b,Chkalovskiy,55.854167,38.125,,0.025,,2096,66,94,,,,,,85659,,, +705,RUS,,KP,b,Kargopol (AR),61.520833,38.958333,,0.025,,2208,49,95,,,,0,L400 U400 ,85658,,, +705,RUS,,MN,b,Manychsky,47.0625,40.375,,0.025,,2487,89,98,,,,0,L1007 U1006 ,85660,,, +705,RUS,,P,b,Syktyvkar (KO),61.604167,50.791667,,0.025,,2830,51,101,,,,,,85661,,, +705,RUS,,S,b,Syktyvkar (KO),61.645833,50.875,,0.025,,2834,51,101,,,,,,85664,,, +705,RUS,,PX,b,Perm / Bolshoye Savino (PR),57.9375,56.125,,0.025,,3158,58,105,,,,,,85662,,, +705,LAO,lo,LNR Luang Prabang Provincial R.,,Luang Prabang (lpb),19.864444,102.107778,,2.5,,8654,73,139,,1025-1500,1234567,,,47972,,, +705,LAO,lo,LNR Luang Prabang Provincial R.,,Luang Prabang (lpb),19.864444,102.107778,,2.5,,8654,73,139,,2200-0800,1234567,,,47972,,, +707,RUS,,BD,b,Khanty Mansiysk (KY),61.020833,68.958333,,0.025,,3798,50,111,,,,,U1010 ,IDx2 + 5 tone,85665,, +707,RUS,,ZJ,b,Khanty-Mansiysk (KY),61.0625,69.208333,,0.025,,3809,50,111,,,,,L707 U707 ,86776,,, +707,RUS,,YA,b,Yamburg,67.979167,75.125,,0.025,,3935,37,112,,,,,,85666,,, +708,RUS,,RD,b,Kurgan (KG),55.4375,65.375,,0.025,,3775,61,111,,,,,,85669,,, +708,RUS,,UN,b,Kurgan (KG),55.520833,65.458333,,0.025,,3777,60,111,,,,,U1038 ,85670,,, +710,CAN,,CKVO,,Clarenville (NL),48.143333,-53.961111,,10,,4201,289,89,,,,2,,36418,,, +710,USA,en,WOR,i,New York/Lyndhurst [NJ] (NY),40.797222,-74.09,,50,,5968,292,100,,,,1,,42617,,, +710,USA,,KXMR,,Bismarck (DC) (ND),46.834444,-100.521944,,50,,7011,313,110,,,,998,,39806,,, +710,CUB,es,R Rebelde,,Chambas/CTOM3 (ca),22.374244,-78.893294,,200,,7750,281,112,,,,,,31600055,,, +710,CUB,es,R Rebelde,,Mart (ma),22.996289,-80.918522,,200,,7833,283,112,,,,9998,,31600102,,, +710,USA,,WFNR,,Blacksburg (VA),37.133611,-80.355,,10,,6642,293,113,,,,,,41416,,, +710,USA,,WDSM,,Superior (WI),46.653611,-92.147222,,5,,6589,308,116,,,,,,41209,,, +710,USA,es,WAQI,,Miami (FL),25.968611,-80.378889,,50,,7548,284,116,,,,31,,40738,,, +710,CUB,es,R Rebelde,,Cacocm (ho),20.736878,-76.3294,,50,,7716,278,117,,,,,,52611,,, +710,CUB,es,R Rebelde,,Santa Clara/CTOM1 (vc),22.447306,-79.891306,,50,,7811,281,118,,,,,,36581,,, +710,CUB,es,R Rebelde,,La Julia (Bataban) (my),22.805239,-82.244911,,50,,7938,283,119,,,,0,,52588,,, +710,USA,en,KIRO,,Seattle (WA),47.398611,-122.433333,,50,,7931,326,119,,,,9994,,38635,,, +710,USA,,WEKC,,Williamsburg (KY),36.774444,-84.168056,,4.2,,6908,295,120,,,,,,41275,,, +710,USA,en,WEGG,,Rose Hill (NC),34.863333,-78.037778,,2.5,,6673,289,120,,1200-2400,1234567,,,41266,,, +710,VEN,,YVKY R Capital,,Caracas (dcf),10.462633,-67.072239,,50,,7966,263,120,,1000-0600,1234567,995,,45360,,, +710,CUB,es,R Rebelde,,Camagey/CTOM1 (cm),21.362211,-77.958222,,25,,7773,279,121,,,,,,36477,,, +710,USA,,KXMR,,Bismarck (N) (ND),46.668889,-100.775833,,4,,7037,313,121,,,,,,20012545,,, +710,USA,,KCMO,,Kansas City (MO),39.318889,-94.496667,,5,,7315,304,123,,,,,,38181,,, +710,CAN,fr,CBF-17,,Lac-douard (QC),47.664167,-72.276111,,0.04,,5377,298,125,,,,,,20109092,,, +710,USA,,WUFF,,Eastman (GA),32.221667,-83.217778,,2.5,,7217,291,125,,,,,,43254,,, +710,CAN,fr,CBF-18,,Parent (QC),47.924444,-74.612778,,0.04,,5499,299,126,,,,,,20109093,,, +710,USA,en,WPOG,,St. Matthews (SC),33.617778,-80.780556,,1,,6948,290,126,,1200-2400,1234567,,,42777,,, +710,CAN,fr,CBF-1,,Senneterre (QC),48.378333,-77.224444,,0.04,,5623,301,127,,,,,,20109091,,, +710,USA,,KGNC,,Amarillo (TX),35.419722,-101.556667,,10,,8046,306,127,,,,,,38498,,, +710,CAN,en,CBOM,,Maniwaki (QC),46.373611,-75.956389,,0.04,,5685,299,128,,,,,,20109094,,, +710,USA,,KEEL,,Shreveport (LA),32.676389,-93.859722,,5,,7839,299,128,,,,9998,,38316,,, +710,USA,,KNUS,,Denver (CO),39.955278,-104.850278,,5,,7824,311,128,,,,10,,39027,,, +710,USA,,KBMB,,Black Canyon City (D) (AZ),34.08,-112.154167,,22,,8731,312,129,,,,9992,,38903,,, +710,USA,,WROM,,Rome (GA),34.253056,-85.155278,,1,,7173,294,129,,,,,,42900,,, +710,USA,,WTPR,,Paris (TN),36.279722,-88.342222,,0.75,,7204,297,130,,,,,,43200,,, +710,PTR,,WKJB,,Mayaguez (PR),18.168889,-67.150833,,0.75,,7308,269,131,,0915-0400,1234567,,,42022,,, +710,DOM,,HIWP Onda del Caribe,,San Cristbal (cri),18.416667,-70.1,,1,,7488,271,132,,,,,,52234,,, +710,B,pt,ZYI534 Rdio Rural,,Santarm (PA),-2.445978,-54.731522,,5,,8316,245,133,,,,,,36901273,,, +710,CLM,es,HJNX R Red,,Medelln (ant),6.316667,-75.566667,,10,,8906,268,133,,,,997,,37600,,, +710,PNR,es,HOQ51 KW Continente,,Pedregal (pnm),9.079,-79.436039,,10,,8929,272,133,,0000-2400,1234567,,,37713,,, +710,USA,,WNTM,,Mobile (AL),30.720278,-88.059444,,1,,7648,293,133,,,,,,42714,,, +710,B,pt,ZYH891 Rdio Verdes Campos,,Pinheiro (MA),-2.533022,-45.079425,,1,,7749,236,134,,,,,,36901264,,, +710,USA,,WFCM,,Smyrna (TN),35.975278,-86.554444,,0.25,,7120,296,134,,,,,,41365,,, +710,USA,en,KSPN,,Los Angeles (IBOC) (CA),34.173889,-118.409722,,10,,9028,317,134,,,,0,,39405,,, +710,CUB,es,R Rebelde,,Yaguajay (ss),22.311972,-79.216556,,1,,7777,281,135,,,,,,31600116,,, +710,B,pt,ZYH240 Jornal AM 710,,Macei (AL),-9.516667,-35.733333,,1,,7942,224,136,,,,,,36901260,,, +710,B,pt,ZYJ451 Rdio Difusora Carioca,,Rio de Janeiro/Rua Mariano Pina (RJ),-22.794722,-43.053889,,10,,9611,225,136,,,,4,,36901277,,, +710,USA,en,WPGX948,,Syracuse (NY),43.095889,-76.164917,,0.01,,5930,295,136,,,,,,20010483,,, +710,CUB,es,R Guam,,La Palma (pr),22.746561,-83.551156,,1,,8029,284,137,,,,,,31600124,,, +710,PRU,,OCX7I R Nacional del Peru,,Puerto Maldonado (mdd),-12.416667,-69.166667,,10,,10137,251,137,,,,,,40435,,, +710,USA,,KBMB,,Black Canyon City (N) (AZ),34.080556,-112.153611,,3.9,,8731,312,137,,,,9992,,20016052,,, +710,BOL,,CP50 R Po XII,,Llallagua/Campamento Siglo XX (pts),-18.366667,-66.616667,,10,,10508,246,139,,0830-0230,1234567,,,36702,,, +710,USA,en,WPUP271,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010484,,, +710,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010485,,, +710,B,pt,ZYH628 Rdifusora Asa Branca,,Boa Viagem (CE),-5.1059,-39.775222,,0.25,,7707,230,140,,,,,,36901261,,, +710,B,pt,ZYH710 Rdio Nova Aliana,,Braslia/Parque Ceilndia (DF),-15.787225,-48.017389,,2.5,,9183,232,140,,,,,,36901274,,, +710,B,pt,ZYI933 Rdio Clube de Barras,,Barras (PI),-4.235106,-42.287956,,0.25,,7757,233,141,,,,,,36901263,,, +710,ARG,es,LRA19 R Nacional,,Puerto Iguaz (mn),-25.602322,-54.582639,,5,,10470,232,142,,0900-0300,1234567,,,39939,,, +710,B,pt,ZYI685 Rdio Educadora de Conceio,,Conceio (PB),-7.55,-38.5,,0.25,,7882,228,142,,,,,,36901269,,, +710,CLM,es,HJYD,,Paipa (boy),5.783333,-73.116667,,1,,8786,265,143,,,,,,35901384,,, +710,HND,,HRKN,,Catacamas (ola),14.816667,-85.916667,,1,,8869,281,143,,,,,,37774,,, +710,HND,,HRZE2,,Puerto Cortes (cor),15.816667,-87.916667,,1,,8916,283,143,,,,,,37891,,, +710,USA,,KFIA,,Carmichael (CA),38.832778,-121.3175,,1,,8711,321,143,,,,9996,,38390,,, +710,USA,,KURV,,Edinburg (D) (TX),26.328611,-98.159722,,1,,8649,297,143,,,,,,20016199,,, +710,USA,,KURV,,Edinburg (N) (TX),26.328333,-98.16,,0.91,,8650,297,143,,,,,,39594,,, +710,B,pt,ZYH910 Rdio Verdes Vales,,Graja (MA),-5.815253,-46.155339,,0.25,,8123,236,144,,,,,,36901266,,, +710,GTM,,TGXL R Tecn Umn,,Quetzaltenango (qzt),14.816667,-91.516667,,1,,9242,285,144,,1030-0400,1234567,,,40558,,, +710,MEX,es,XEOLA-AM Huasteca,,Ciudad Madero (tam),22.253167,-97.857808,,1,,8992,295,144,,,,,,44497,,, +710,PNR,es,HOB52 Ondas del Caribe,,Changuinola (bct),9.363611,-82.445,,1,,9109,275,144,,1000-0400,1234567,,,37676,,, +710,ARG,es,LRL202 R Diez,,Buenos Aires/San Martn (df),-34.5415,-58.598917,,5,,11511,230,145,,0000-2400,1234567,997,,51797,,, +710,B,pt,ZYI436 Rdio Nova Xavantina,,Nova Xavantina (MT),-14.6391,-52.359872,,1,,9314,236,145,,,,,,36901278,,, +710,B,pt,ZYI901 Rdio Alvorada do Serto,,So Joo do Piau (PI),-8.369167,-42.270917,,0.25,,8158,231,145,,,,,,36901262,,, +710,B,pt,ZYJ328 Rdio Alternativa,,Cndido de Abreu (PR),-24.582778,-51.336944,,1.8,,10200,230,145,,,,,,36901267,,, +710,MEX,es,XEMP-AM,,Los Picos de Iztacalco (dif),19.379792,-99.102561,,1,,9325,294,145,,,,,,44400,,, +710,MEX,es,XERK-AM R Korita,,Tepic (nay),21.522381,-104.922389,,1,,9487,300,145,,,,,,44679,,, +710,EQA,,Escuelas R Populares ERPE,,Riobamba (chi),-1.666667,-78.633333,,1,,9816,265,146,,,,,,32600001,,, +710,MEX,es,XERL-AM,,Colima (col),19.257867,-103.725008,,1,,9621,297,146,,,,,,44682,,, +710,ARG,es,LRA17 R Nacional,,Zapala (nq),-38.891133,-70.055758,,5,,12516,235,148,,0900-0300,1234567,,,39937,,, +710,MEX,es,XERPO-AM La Ley,,Oaxaca (oax),17.061842,-96.733306,,0.5,,9382,291,148,,,,,,44701,,, +710,MEX,es,XEYK-AM La Z,,Conkal (yuc),21.060514,-89.527792,,0.25,,8566,288,148,,,,,,45095,,, +710,B,pt,ZYH490 Rdio 21 News,,Eunpolis (BA),-16.374389,-39.614983,,0.25,,8811,225,149,,,,,,36901275,,, +710,B,pt,ZYI386 Rdio Cultura de Cuiab,,Cuiab (MT),-15.619094,-56.096931,,0.5,,9621,239,149,,,,,,36901279,,, +710,B,pt,ZYL219 Rdio Cancella,,Ituiutaba (MG),-18.975839,-49.506217,,0.5,,9569,232,149,,,,,,36901271,,, +710,PRU,,OAU6L R Amor,,Arequipa/Socabaya (are),-16.469444,-71.525,,1,,10650,250,149,,,,,,37000100,,, +710,MEX,es,XEDP-AM La Ranchera,,Ciudad Cuauhtmoc (chi),28.417956,-106.806081,,0.25,,8967,305,150,,,,,,43928,,, +710,MEX,es,XELZ-AM La Reina,,Torren (coa),25.554039,-103.454858,,0.25,,9034,301,150,,,,,,44335,,, +710,MEX,es,XEMAR-AM Amor 710,,Acapulco (gue),16.837222,-99.909722,,0.35,,9603,293,150,,,,,,44346,,, +710,MEX,es,XEPS-AM,,Empalme (son),27.962222,-110.809167,,0.25,,9229,308,150,,,,,,44577,,, +710,MEX,es,XESMR-AM R Frmula,,San Luis Potos (slp),22.152778,-100.973333,,0.25,,9192,297,150,,,,,,44756,,, +710,B,pt,ZYL258 Rdio Manhuau,,Manhuau/Alto da Rdio (MG),-20.258386,-42.047106,,0.25,,9313,225,151,,,,,,36901270,,, +710,B,pt,ZYL319 Planeta AM 710,,Carmo do Paranaba (MG),-18.9947,-46.311456,,0.25,,9402,229,151,,,,,,36901265,,, +710,MEX,es,XEBL-AM Ke Buena,,Culiacn/Col. Stase (sin),24.826558,-107.407353,,0.25,,9329,303,151,,,,,,43783,,, +710,B,pt,ZYL333 Rdio Difusora Pouso Alegre,,Pouso Alegre (MG),-22.252569,-45.9153,,0.25,,9698,227,152,,,,,,36901272,,, +710,B,pt,ZYK559 Rdio 710,,Bauru (SP),-22.319094,-49.093739,,0.25,,9867,230,153,,,,,,36901276,,, +710,B,pt,ZYJ793 Rdio Fraiburgo,,Fraiburgo (SC),-27.010833,-50.906944,,0.25,,10409,229,154,,,,,,36901268,,, +711,F,fr,France Info,,Rennes/Thourie (35),47.855278,-1.486389,,300,,736,233,40,,0000-2400,1234567,0,,327,,, +711,ROU,ro,SRR R Romnia Actualităţi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0000-2400,1234567,4,,332,,, +711,E,es,COPE,,Murcia (MUR-MU),37.9872,-1.162722,,10,,1677,204,64,,0000-2400,1234567,0,,325,,, +711,UKR,uk,UR 1 Persha Prog.,,Dokuchaievsk (DO),47.731883,37.687706,,40,,2273,90,64,,0400-0800,1234567,2,,335,,, +711,UKR,uk,UR 1 Persha Prog.,,Dokuchaievsk (DO),47.731883,37.687706,,40,,2273,90,64,,1500-2000,1234567,2,,335,,, +711,AOE,,SNRT Al Ida Al Amazighia,,Layoune=El Aain (lbs-laa),27.173278,-13.361167,,300,,3225,218,65,,0000-2400,1234567,11,,331,,, +711,EGY,ar,ERTU Al-Shabab wal Riyadah,,Tanta (ghb),30.818194,31.000181,,100,,3100,130,68,,0000-2400,1234567,9998,,326,,, +711,IRN,fa,IRIB R Ahwaz,,Ahwaz (kuz),31.248511,48.483444,,200,,4109,108,75,,1726-2300,1234567,62,,328,,, +711,RUS,ru,R Rossii,,Naryan-Mar (NE),67.647306,53.049361,,7,,3013,37,79,,0200-2200,1234567,,,333,,, +711,YEM,ar,YGCRT Sana'a R,,Sana'a (san),15.358333,44.216667,,200,,5270,127,87,,0255-2130,1234567,,,337,,, +711,PAK,,PBC R Pakistan,,Dera Ismail Khan (kpk),31.827225,70.848833,,100,,5572,87,93,,,,,,31500053,,, +711,IND,,AIR East,,Siliguri (WB),26.759722,88.440556,,200,,7166,79,106,,0025-0430,123456,,,47985,,, +711,IND,,AIR East,,Siliguri (WB),26.759722,88.440556,,200,,7166,79,106,,0025-0500,......7,,,47985,,, +711,IND,,AIR East,,Siliguri (WB),26.759722,88.440556,,200,,7166,79,106,,0630-0930,1234567,,,47985,,, +711,IND,,AIR East,,Siliguri (WB),26.759722,88.440556,,200,,7166,79,106,,1145-1742,1234567,,,47985,,, +711,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.237794,96.134022,,400,,8228,77,113,,0730-1000,1234567,,,22100006,,, +711,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.237794,96.134022,,400,,8228,77,113,,1130-1530,1234567,,,22100006,,, +711,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (MW) (mdy),20.237794,96.134022,,400,,8228,77,113,,2300-0130,1234567,,,22100006,,, +711,TZA,sw,TBC Taifa,,Kigoma (kgm),-4.830667,29.726036,,10,,6705,153,114,,0200-2100,1234567,,,2352,,, +711,CHN,,Qinghai RGD,,Golmud=Ge'ermu (QH),36.418333,94.763611,,10,,6798,67,115,,0925-1505,1234567,,,47978,,, +711,CHN,,Qinghai RGD,,Golmud=Ge'ermu (QH),36.418333,94.763611,,10,,6798,67,115,,2220-0600,1234567,,,47978,,, +711,KOR,ko,HLKA KBS 1 R,,Sorae (seo),37.409167,126.792222,,500,,8511,45,115,,0000-2400,1234567,0,,47988,,, +711,CHN,zh,CNR 1,,Huzhu/Duoshidai (QH),36.877778,101.956944,,10,,7203,62,119,,2025-1805,1234567,,,36201279,,, +711,VTN,vi,VOV1,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2145-1700,1234567,,,48003,,, +711,TWN,,Han Sheng GD Kuanghua zhi Sheng,,Hsinfeng (HC),24.92925,120.997342,,250,,9364,56,121,,0655-0105,1234567,0,,48000,,, +711,CHN,zh,Zhengzhou ZZR JGD,,Zhengzhou/HETS804 (HE),34.778056,113.579444,,10,,8058,55,128,,2150-1700,1234567,,,47984,,, +711,THA,th,Sor. Wor. Sor.,,Ubon Ratchathani/232 Somdet Rd (urt),15.269256,104.929028,,20,,9241,74,132,,2130-1700,1234567,,,47999,,, +711,THA,th,Wor. Por. Thor.,,Chiang Mai/Don Kaew Road (cmi),18.851667,98.970833,,5,,8535,76,135,,2245-1700,1234567,,,47997,,, +711,TWN,,BCC Country Network,,Tainan (TN),23.118367,120.151517,,10,,9482,58,135,,0000-2400,1234567,,,48001,,, +711,CHN,,Fuyang RGD Jiaotong,,Fuyang (AH),32.9,115.85,,3,,8351,55,136,,,,,,47977,,, +711,THA,th,Wor. Sor. Por. 711 Jed-Neung-Neung,,Lop Buri/Fort Phahonyothin (lpb),14.883333,100.9,,5,,9008,77,137,,2130-1700,1234567,,,47998,,, +711,CHN,,Panzhihua RGD,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,1,,8055,69,138,,1155-1505,1234567,,,47982,,, +711,CHN,,Panzhihua RGD,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,1,,8055,69,138,,2225-0530,1234567,,,47982,,, +711,CHN,zh,CNR 1,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,1200-1230,1234567,,,47983,,, +711,CHN,zh,CNR 1,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,2230-2300,1234567,,,47983,,, +711,CHN,zh,Quzhou RGD Xinwen Tai,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,1230-1500,1234567,,,47983,,, +711,CHN,zh,Quzhou RGD Xinwen Tai,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,2155-2230,1234567,,,47983,,, +711,CHN,zh,Quzhou RGD Xinwen Tai,,Quzhou (ZJ),28.981778,118.833222,,3,,8871,55,139,,2300-1200,1234567,,,47983,,, +711,PHL,,DZLW-AM Radyo Isarog,,Naga City/Haring (cas),13.65,123.166667,,10,,10533,61,139,,,,,,47994,,, +711,CHN,zh,Huaibei JGD,,Huaibei (AH),33.956972,116.783444,,1,,8309,54,140,,,,,,36201248,,, +711,PHL,,DZYI-AM Sonshine R,,Ilagan (isa),17.116667,121.883333,,5,,10136,60,140,,,,,,47991,,, +711,PHL,tl,DZVR-AM Bombo Radyo,,Laoag City (iln),18.183333,120.583333,,5,,9961,60,140,,,,,,47993,,, +711,CHN,,Mianyang RGD,,Mianyang/SCTS721 (SC),30.183333,113.216667,,1,,8442,59,141,,,,,,47981,,, +711,CHN,,Lu'an RGD,,Lu'an (AH),31.75,116.483333,,1,,8489,55,142,,,,,,36200076,,, +711,CHN,,Lishui RGD,,Lishui (ZJ),28.465411,119.958611,,1,,8981,55,144,,,,,,47979,,, +711,PHL,,DXIC-AM Radyo Agong,,Iligan City (ldn),8.234167,124.252778,,5,,11101,63,144,,,,,,47992,,, +711,PHL,,DXRD-AM Sonshine R,,Davao City (dvs),7.066667,125.6,,5,,11291,62,144,,????-1500,1234567,,,47990,,, +711,INS,id,RSPD Blora,,Blora (JT-blo),-6.95,111.416667,,0.5,,11639,82,155,,,,,,35400027,,, +711,AUS,en,4QW ABC Southern Queensland,,Roma/St.George (QLD),-27.997583,148.674633,,10,,15908,64,157,,0000-2400,1234567,20,,47974,,, +711,NZL,en,2XP LiveSPORT,,Wellington/Horokiwi (WGN),-41.21925,174.857589,,5,,18521,40,168,,,,,,47989,,, +713,RUS,,TV,b,Ostrov-Verete,57.3125,28.458333,,0.025,,1521,59,88,,,,0,L400 U400 ,85673,,, +713,RUS,,CHC,b,Kazan (TS),55.854167,49.125,,0.025,,2778,64,101,,,,,,85671,,, +713,RUS,,DO,b,Kazan (TS),55.854167,49.125,,0.025,,2778,64,101,,,,,,85672,,, +715,CZE,,C,b,Caslav (ST),49.9375,15.458333,,0.025,,677,107,80,,,,,L1090 ,85674,,, +715,CZE,,F,b,Caslav (ST),49.9375,15.375,,0.025,,671,108,80,,,,987,L1047 U1011 ,85677,,, +715,RUS,,SHA,b,Ostrov-Verete,57.3125,28.458333,,0.025,,1521,59,88,,,,,,85679,,, +715,RUS,,TV,b,Ostrov,57.3125,28.458333,,0.025,,1521,59,88,,,,,,85680,,, +715,UKR,,D,b,Odesa/Centram (OD),46.4375,30.708333,,0.025,,1862,100,92,,,,,L980 U980 ,IDx2 + 7.5 tone,85675,, +715,UKR,,E,b,Odesa (OD),46.395833,30.708333,,0.025,,1864,100,92,,,,,,85676,,, +718,UKR,,SL,b,Soloviivka,50.1875,29.541667,,0.025,,1621,88,89,,,,15,L997 U997 ,85683,,, +718,RUS,,AN,b,Belgorod (BE),50.645833,36.541667,,0.025,,2083,82,94,,,,,,85681,,, +718,RUS,,BX,b,Belgorod (BE),50.604167,36.625,,0.025,,2089,83,94,,,,,,85682,,, +718,RUS,,UR,b,Chkalovsky,55.854167,38.125,,0.025,,2096,66,94,,,,,L1020 U1020 10.0s,86778,,, +720,D,de,WDR 2/WDR Vera,,Langenberg/Rommelsweg (nrw),51.351111,7.138333,,64,,98,149,21,,0000-2400,1234567,9991,,340,,, +720,G,en,BBC R 4,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,10,,869,293,56,,0600-0100,1234567,0,,343,,, +720,G,en,BBC WS,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,10,,869,293,56,,0100-0600,1234567,0,,343,,, +720,CYP,ar,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.621694,33.002311,,500,105,2869,122,59,,1700-2100,1234567,,,339,,, +720,CYP,ar,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.621694,33.002311,,500,105,2869,122,59,ME,0300-0700,1234567,,,339,,, +720,CYP,en,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.621694,33.002311,,500,105,2869,122,59,,0700-0900,1234567,,,339,,, +720,CYP,en,BBC WS,,Limassol/Lady's Mile (kyp-lem),34.621694,33.002311,,500,105,2869,122,59,,2100-2300,1234567,,,339,,, +720,ROU,ro,SRR R Romnia Actualităţi,,Sinaia (PH),45.374389,25.549833,,14,,1584,111,61,,0000-2400,1234567,998,,355,,, +720,ROU,ro,SRR R Romnia Actualităţi,,Baia Mare (MM),47.660339,23.596903,,7,,1323,105,62,,0000-2400,1234567,,,353,,, +720,G,en,BBC R 4,,Crystal Palace (EN-GTL),51.424167,-0.074933,,0.75,,453,263,63,,0600-0100,1234567,,,342,,, +720,G,en,BBC WS,,Crystal Palace (EN-GTL),51.424167,-0.074933,,0.75,,453,263,63,,0100-0600,1234567,,,342,,, +720,POR,pt,Antena 1,,Mirandela/Carvalhais (bgc),41.515556,-7.173153,,10,,1562,226,63,,0000-2400,1234567,,,351,,, +720,POR,pt,Antena 1,,Castelo Branco (cab),39.824764,-7.524939,,10,,1733,223,64,,0000-2400,1234567,,,347,,, +720,POR,pt,Antena 1,,Guarda (gua),40.536678,-7.280472,,10,,1656,224,64,,0000-2400,1234567,,,350,,, +720,ROU,ro,SRR R Romnia Actualităţi,,Nufăru/Releul Delta (TL),45.150194,28.924583,,14,,1817,106,64,,0000-2400,1234567,,,354,,, +720,POR,pt,Antena 1,,Elvas/Caia (ple),38.885917,-7.129639,,10,,1804,221,65,,0000-2400,1234567,,,348,,, +720,POR,pt,Antena 1,,Faro/Meia-Lgua (agv),37.022028,-7.882889,,10,,2016,219,67,,0000-2400,1234567,,,352,,, +720,G,en,BBC R 4,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,0.25,,963,295,73,,0600-0100,1234567,2,,341,,, +720,G,en,BBC WS,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,0.25,,963,295,73,,0100-0600,1234567,2,,341,,, +720,CNR,es,RNE R 5,,La Laguna/Finca Espaa (STC-TF),28.47545,-16.29385,,25,,3229,224,75,,0000-2400,1234567,,,338,,, +720,IRN,ar,Sawt al-Mujahedin,,Mahidasht (ksh),34.264069,46.830617,,100,,3761,106,75,,0500-1500,1234567,20,,1781,,, +720,IRN,fa,IRIB R Iran,,Mahidasht (ksh),34.264069,46.830617,,100,,3761,106,75,,1500-0500,1234567,20,,1781,,, +720,IRN,dr,IRIB WS,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,0300-1500,1234567,,,344,,, +720,IRN,dr,Voice of Khorasan,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,1730-1930,1234567,,,344,,, +720,IRN,fa,IRIB R Iran,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,1930-0100,1234567,,,344,,, +720,IRN,tg,IRIB WS,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,0100-0230,1234567,,,344,,, +720,IRN,tg,Voice of Khorasan,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,1600-1730,1234567,,,344,,, +720,IRN,uz,IRIB WS,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,0230-0300,1234567,,,344,,, +720,IRN,uz,IRIB WS,,Taybad (rkh),34.738611,60.796944,,400,110,4666,92,78,,1500-1600,1234567,,,344,,, +720,RUS,,MS,b,Taganrog - South (RO),47.1875,38.791667,,0.025,,2373,90,97,,,,,,86779,,, +720,RUS,,UT,b,Taganrog - South (RO),47.1875,38.791667,,0.025,,2373,90,97,,,,,,85684,,, +720,USA,en,WGN,,Chicago (IL),42.011667,-88.035278,,50,,6724,302,107,,,,8,,41535,,, +720,USA,en,WGCR,,Pisgah Forest (NC),35.252778,-82.674444,,50,,6937,293,109,,1200-2400,1234567,,,41489,,, +720,CHN,ug,CNR 13,,Kashgar=Kashi (XJ),39.416667,76,,1,,5359,76,111,,0000-1800,1234567,,,36201092,,, +720,CHN,ug,CNR 13,,Yining=Gulja (XJ),43.916667,81.466667,,1,,5403,68,111,,0000-1800,1234567,,,36201093,,, +720,CHN,ug,CNR 13,,Akesu=Aksu/XJTS636 (XJ),41.185833,80.280833,,1,,5516,72,112,,0000-1800,1234567,,,36201094,,, +720,CHN,zh,CNR 2,,Beijing/SARFT491 (MW) (BJ),39.885722,116.577075,,200,,7773,50,112,,2058-1602,1234567,2,,48010,,, +720,IND,,AIR South,,Chennai A=Madras (TN),13.147778,80.128056,,200,220,7749,95,112,,0015-0410,123456,9991,,48014,,, +720,IND,,AIR South,,Chennai A=Madras (TN),13.147778,80.128056,,200,220,7749,95,112,,0015-0530,......7,9991,,48014,,, +720,IND,,AIR South,,Chennai A=Madras (TN),13.147778,80.128056,,200,220,7749,95,112,,0610-1840,......7,9991,,48014,,, +720,IND,,AIR South,,Chennai A=Madras (TN),13.147778,80.128056,,200,220,7749,95,112,,1130-1840,123456,9991,,48014,,, +720,KRE,ko,KCBS Pyongyang Pangsong,,Kanggye (cha),41.017625,126.652444,,500,,8169,43,112,,2000-1800,1234567,993,,48030,,, +720,TZA,sw,TBC Taifa,,Mwanza (mwz),-2.463364,32.9163,,10,,6560,149,113,,0200-2100,1234567,,,2354,,, +720,ALS,,KOTZ,,Kotzebue (AK),66.839444,-162.568056,,10,,6756,355,115,,0000-2400,1234567,999,,39110,,, +720,B,pt,ZYI770 Rdio Clube de Pernambuco,,Recife (PE),-8.066667,-34.883333,,100,,7756,224,115,,,,,,36901290,,, +720,USA,,WHYF,,Shiremanstown (PA),40.191111,-76.9525,,2,,6194,293,116,,,,,,43384,,, +720,VEN,,YVQE R Venezuela Oriente,,Porlamar (nes),10.938889,-64.208333,,50,,7730,261,117,,0000-2400,1234567,3,,45427,,, +720,USA,,WVCC,,Hogansville (GA),33.065,-84.956389,,8,,7258,293,121,,,,,,43285,,, +720,CHN,zh,CNR 2,,Tangshan (HB),39.666667,118.285333,,10,,7881,49,126,,2100-1602,1234567,,,36200073,,, +720,USA,en,KDWN,i,Las Vegas (NV),36.072778,-114.972222,,50,,8684,315,126,,,,5,,38300,,, +720,CHN,bo,Xizang RGD,,Namling=Nanmulin (XZ),29.683333,89.1,,1,,6972,76,127,,2100-1805,1234567,,,36201168,,, +720,CHN,zh,Anhui RGD Nongcun Guangbo,,Hefei/Sanshitou (AH),31.984181,117.32925,,30,,8516,55,127,,2100-1700,1234567,,,36200881,,, +720,CLM,es,HJAN,,Barranquilla (atl),10.990144,-74.767419,,30,,8444,270,127,,,,,,37330,,, +720,CHN,bo,Xizang RGD,,Gyangz=Jiangzi (XZ),28.904722,89.598889,,1,,7068,76,128,,2100-1805,1234567,,,36201167,,, +720,CHN,zh,CNR 2,,Dalian/LNTS303 (LN),39.087778,121.677778,,10,,8106,47,128,,2100-1602,1234567,,,36200071,,, +720,CHN,zh,CNR 2,,Xiamen=Amoy/FJTS202 (FJ),24.492694,118.03595,,50,,9233,58,128,,2100-1602,1234567,,,36200075,,, +720,B,pt,ZYK276 Rdio Guaba,,Guaba (720) (RS),-30.092786,-51.308817,,100,,10722,227,129,,,,,,36901289,,, +720,CUB,es,R Progreso,,Mabujabo (gu),20.360681,-74.521503,,2.5,,7625,276,129,,,,,,36594,,, +720,CLM,es,HJVO,,Armenia (qui),4.533333,-75.683333,,25,,9070,267,130,,,,,,35901386,,, +720,CHN,bo,Xizang RGD,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2100-1805,1234567,,,36201166,,, +720,VEN,,YVXE R Elorza,,Elorza (apu),7.066667,-69.5,,10,,8428,263,131,,,,,,51656,,, +720,HTI,,4VIA R Lumire,,Carrefour Paye (art),19.166667,-72.6,,1,,7595,274,133,,,,,,35643,,, +720,HTI,,R Lumire,,Petite Rivire de l'Artibonite (art),19.133333,-72.483333,,1,,7590,274,133,,,,,,52100,,, +720,CHN,zh,CNR 2,,Fuzhou/FJTS103 (FJ),26.073889,119.339722,,10,,9164,57,134,,2100-1602,1234567,,,36200072,,, +720,NCG,,YNRC R Catolica,,Managua (mng),12.083333,-86.216667,,10,,9128,280,134,,1100-0355,1234567,7,,45219,,, +720,PNR,es,HOB50 R Republica,,Los Santos (ccl),7.943036,-80.403822,,10,,9094,272,134,,1100-0300,1234567,,,37675,,, +720,SLV,,YSRA,,San Salvador (ssl),13.466667,-89.166667,,10,,9204,283,134,,,,,,45308,,, +720,B,pt,ZYI411 Rdio Difusora,,Barra do Garas (MT),-15.912217,-52.272239,,10,,9429,236,135,,,,,,36901287,,, +720,CHN,,Deyang RGD,,Deyang/SCTS522 (SC),31.133333,104.4,,1,,7831,64,135,,,,,,48011,,, +720,CHN,zh,CNR 2,,Chaoyang (LN),41.566667,120.466667,,1,,7822,47,135,,2100-1602,1234567,,,36200883,,, +720,THA,,Sor. Wor. Thor. (R Thailand),,Krabi (krb),8.061989,98.902342,,10,,9470,83,135,,2300-1405,1234567,,,48037,,, +720,TWN,,BCC News Network,,Taichung (TC),24.054139,120.681086,,10,,9426,57,135,,0000-2400,1234567,,,48039,,, +720,USA,en,WPEK966,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010486,,, +720,CHN,zh,CNR 2,,Tianjin (TJ),39.15,117.15,,1,,7868,50,136,,2100-1602,1234567,,,36200074,,, +720,VTN,vi,Dồng Nai R,,Hồ Ch Minh/Qun Tre (hcm),10.847778,106.626111,,10,,9743,75,136,,,,,,48040,,, +720,B,pt,ZYH202 Rdio Integrao,,Cruzeiro do Sul (AC),-7.617917,-72.656789,,10,,9939,257,137,,,,,,36901288,,, +720,DOM,,HIAQ R Norte,,Santiago de los Caballeros (sto),19.466667,-70.716667,,0.25,,7441,272,137,,0000-2400,1234567,,,37208,,, +720,GTM,,TGRO R Corona,,Morales (izb),15.5,-88.833333,,5,,9004,284,137,,0000-2400,1234567,,,40533,,, +720,SLV,,YSRA,,San Miguel (smg),13.466667,-88.166667,,5,,9138,282,137,,,,,,45311,,, +720,SLV,,YSRA,,Santa Ana (sta),14,-89.516667,,5,,9181,283,137,,,,,,45312,,, +720,THA,th,Sor. Thor. Ror. 5,,Sattahip (cbu),12.667694,100.896794,,5,,9201,79,137,,2300-1405,1234567,,,48038,,, +720,USA,en,WRZN,,Hernando (FL),28.9225,-82.3725,,0.25,,7434,288,137,,,,9904,,42943,,, +720,BOL,,CP27 R La Cruz del Sur,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,0930-0030,1234567,,,36687,,, +720,EQA,,HCJC1,,Quito (pic),-0.166667,-78.5,,5,,9675,266,139,,,,,,36980,,, +720,EQA,,HCCB4,,Portoviejo (man),-1.066667,-80.45,,5,,9887,267,140,,,,,,36874,,, +720,PHL,tl,DYOK-AM Aksyon Radyo,,Iloilo City (ilo),10.705278,122.564722,,10,,10770,63,140,,2000-1530,......7,,,48032,,, +720,PHL,tl,DYOK-AM Aksyon Radyo,,Iloilo City (ilo),10.705278,122.564722,,10,,10770,63,140,,2000-1600,123456,,,48032,,, +720,PHL,tl,DZSO-AM Bombo Radyo,,San Fernando (lun),16.616667,120.3,,5,,10088,61,140,,2100-1500,1234567,,,48034,,, +720,PHL,,DZJO-AM R Veritas,,Infanta (qzn),14.75,121.633333,,5,,10340,61,141,,2000-1130,1234567,,,48033,,, +720,USA,,KSAH,,Universal City (TX),29.530833,-98.1775,,0.89,,8369,299,141,,,,,,39324,,, +720,B,pt,ZYH281 Rdio Difusora de Itacoatiara,,Itacoatiara (AM),-3.137814,-58.431828,,1,,8611,248,142,,,,,,36901284,,, +720,CHN,zh,Anhui RGD Nongcun Guangbo,,Chaohu (AH),31.5888,117.830833,,1,,8579,54,142,,2100-1700,1234567,,,36200884,,, +720,CHN,zh,Anhui RGD Nongcun Guangbo,,Chuzhou (AH),32.285167,118.346917,,1,,8545,54,142,,2100-1700,1234567,,,36200882,,, +720,PRG,,ZP17 R Pai Puku,,Teniente Irala Fernandez (bqn),-22,-60.566667,,5,,10473,239,142,,,,,,45513,,, +720,AUS,en,6WF ABC Perth,,Perth/Hamersley (WA),-31.854731,115.819344,,50,,14027,97,143,,0000-2400,1234567,12,,48009,,, +720,HND,,HRNN3,,La Ceiba (atl),15.75,-86.816667,,1,,8848,282,143,,,,,,37815,,, +720,CHN,zh,CNR 2,,Dabu (GD),22.366667,113.45,,1,,9152,63,144,,2058-1602,1234567,,,48012,,, +720,J,,JOIL KBC Kyushu Asahi Hoso,,Kitakyushu (kyu-fuk),33.94,130.801389,,1,,9030,44,144,,0000-2400,1234567,,,48027,,, +720,NCG,,R Asuncin,,Juigalpa (cht),12.083333,-85.4,,1,,9073,279,144,,,,,,33700010,,, +720,SLV,,YSRA,,Sonsonate (ssn),13.716667,-89.7,,1,,9218,283,144,,,,,,45310,,, +720,SLV,,YSRA,,Usulutn (usu),13,-88.45,,1,,9197,282,144,,,,,,45309,,, +720,INS,id,RRI Pro-1,,Ambon/Paso (MA-amb),-3.625708,128.247828,,10,,12444,66,145,,0700-1500,1234567,,,48015,,, +720,MEX,xx,XECPQ-AM La Estrella Maya,,Felipe Carrillo Puerto (qui),19.556111,-88.041944,,0.5,,8599,286,145,,,,,,43866,,, +720,ARG,,LV10 R de Cuyo,,Mendoza (mz),-32.883333,-68.816667,,5,,11928,238,146,,0000-2400,1234567,,,40236,,, +720,HWA,en,KUAI,,Eleele (DN) (HI),21.893611,-159.5575,,5,,11674,347,146,,0000-2400,1234567,996,,39558,,, +720,EQA,,HCUE3 R Unica,,Machala (oro),-3.266667,-79.966667,,1,,10047,265,147,,,,3,,52501,,, +720,USA,,KFIR,,Sweet Home (OR),44.414167,-122.738333,,0.184,,8230,325,147,,,,114,,38393,,, +720,B,pt,ZYI390 Rdio Clube de Dourados,,Dourados (MS),-22.2,-54.883333,,1,,10167,234,148,,,,,,36901280,,, +720,B,pt,ZYL330 Rdio Divinpolis AM,,Divinpolis (MG),-20.115006,-44.901525,,0.5,,9439,227,148,,,,,,36901291,,, +720,MEX,es,XEVU-AM Magia,,Mazatln (sin),23.215256,-106.373725,,0.5,,9417,302,148,,,,,,44994,,, +720,PRU,,OAU1Q R Oceanica,,Chiclayo (lam),-6.766667,-79.85,,1,,10347,263,148,,,,,,37000051,,, +720,MEX,es,XEDE-AM La Kaliente,,Saltillo (coa),25.442833,-100.885356,,0.25,,8892,299,149,,,,,,43903,,, +720,MEX,es,XEQZ-AM Ritmo 720,,San Juan de los Lagos (jal),21.224639,-102.369778,,0.4,,9360,297,149,,,,,,44642,,, +720,INS,id,R Silaturahim,,Bekasi/Kalimanggis (JB-kbk),-6.38,106.913056,,1,,11284,86,151,,,,,,35400126,,, +720,B,pt,ZYK575 Rdio Difusora Casa Branca,,Casa Branca (SP),-21.777836,-47.0989,,0.25,,9712,228,152,,,,,,36901282,,, +720,B,pt,ZYK718 Rdio Cruzeiro do Vale,,Cruzeiro (SP),-22.570844,-44.972836,,0.25,,9682,226,152,,,,,,36901283,,, +720,B,pt,ZYK722 Rdio Menina,,Olmpia (SP),-20.717681,-48.917594,,0.25,,9704,230,152,,,,,,36901285,,, +720,B,pt,ZYK701 Rdio Sentinela,,Ourinhos (SP),-22.973525,-49.849456,,0.25,,9969,230,153,,,,,,36901281,,, +720,J,,GBS Gifu Hoso,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,,,,,31400057,,, +720,J,,JOZL GBS Gifu Hoso,,Takayama (chu-gif),36.15,137.266667,,0.1,,9105,38,154,,0000-2400,1234567,,,48029,,, +720,ARG,,LRA59 R Nacional,,Gobernador Gregores (sc),-48.766667,-70.266667,,2,,13345,228,155,,1100-2300,1234567,,,37893,,, +720,J,,CBC Chubu-Nippon Hoso,,Kumano (kns-mie),33.866667,136.083333,,0.1,,9278,40,155,,0000-2400,1234567,,,48028,,, +720,BOL,,CP148 R Yungas,,Chulumani (lpz),-16.366667,-67.466667,,0.15,,10382,247,156,,0900-1700,1234567,,,36650,,, +720,BOL,,CP148 R Yungas,,Chulumani (lpz),-16.366667,-67.466667,,0.15,,10382,247,156,,2000-0100,1234567,,,36650,,, +720,AUS,,4AT ABC Far North QLD,,Atherton/Yungaburra (QLD),-17.310258,145.555833,,4,,14757,58,157,,0000-2400,1234567,,,48006,,, +720,INS,id,R Lusiana Namberwan,,Semarang (JT-kse),-6.966667,110.483333,,0.25,,11578,83,158,,,,,,48021,,, +720,NZL,en,RNZ National,,Invercargill/Dacre (STL),-46.320278,168.621389,,10,,18577,70,165,,0000-2400,1234567,,,48031,,, +720,AUS,,3MT ABC Gippsland,,Omeo (VIC),-37.146389,147.656278,,2,,16582,77,166,,0000-2400,1234567,,,48008,,, +720,AUS,,2ML ABC North Coast NSW,,Murwillumbah/Terranora (NSW),-28.242722,153.511333,,0.4,,16219,59,171,,0000-2400,1234567,9896,,48007,,, +720,AUS,,2RN ABC National,,Armidale/Duval (NSW),-30.495875,151.664681,,0.1,,16307,63,178,,0000-2400,1234567,,,48005,,, +722,RUS,,O,b,Saratov / Tsentralny (SR),51.5625,46.041667,,0.025,,2690,75,100,,,,,U1020 10.0s,85685,,, +722,RUS,,YO,b,Biryucha Kosa,45.729167,47.625,,0.025,,3050,87,103,,,,,,85686,,, +729,E,es,RNE R Nacional,,Oviedo/El Naranco (RNE) (AST-O),43.386414,-5.852856,,100,,1331,228,50,,0000-2400,1234567,4,,365,,, +729,GRC,el,EDR Proto Programma,,Athnai/Agios Stefanos (att-est),38.150222,23.860444,,150,,2059,132,56,,0000-2400,1234567,12,,367,,, +729,E,es,RNE R Nacional,,Logroo/La Grajera (RNE) (RIO-LO),42.442831,-2.512136,,20,,1266,215,57,,0000-2400,1234567,,,364,,, +729,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0000-2400,1234567,0,,363,,, +729,D,de,Bayern Plus,,Wrzburg/Frankenwarte, BR (bay),49.780556,9.906389,,1,,356,135,61,,0000-2400,1234567,0,,359,, +729,E,es,RNE R Nacional,,Cuenca/Martinete (RNE) (CAM-CU),40.063153,-2.144075,,10,,1491,209,62,,0000-2400,1234567,,,361,,, +729,E,es,RNE R Nacional,,Mlaga/Sta. Rosala (RNE) (AND-MA),36.717311,-4.576356,,25,,1916,211,62,,0000-2400,1234567,2,,362,,, +729,E,es,RNE R Nacional,,Alicante/Bacarot (RNE) (VAL-A),38.317689,-0.552594,,10,,1626,202,63,,0000-2400,1234567,998,,360,,, +729,D,de,Bayern Plus,,Hof-Hohensass (bay),50.313056,11.875556,,0.2,,430,116,68,,0000-2400,1234567,,,358,,, +729,G,en,BBC Essex,,Manningtree (EN-ESX),51.923611,1.086111,,0.2,,365,269,68,,0300-2400,12345..,0,,366,,, +729,G,en,BBC Essex,,Manningtree (EN-ESX),51.923611,1.086111,,0.2,,365,269,68,,0500-2400,.....67,0,,366,,, +729,G,en,BBC R 5 Live,,Manningtree (EN-ESX),51.923611,1.086111,,0.2,,365,269,68,,0000-0300,12345..,0,,366,,, +729,G,en,BBC R 5 Live,,Manningtree (EN-ESX),51.923611,1.086111,,0.2,,365,269,68,,0000-0500,.....67,0,,366,,, +729,NIG,,Kano State BC,,Kano/Jogana (kno),12.029167,8.706111,,25,,4462,177,88,,0430-2320,1234567,,,2375,,, +729,UGA,xx,UBC Butebo Channel,,Butebo/Bulangira (mbe),1.142667,33.881056,,50,,6217,146,102,,0300-2105,12345..,,,2378,,, +729,UGA,xx,UBC Butebo Channel,,Butebo/Bulangira (mbe),1.142667,33.881056,,50,,6217,146,102,,0345-2105,.....67,,,2378,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0015-0415,123456,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0015-0450,......7,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0530-0930,......7,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0600-0930,123456,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0945-1700,12345.7,,,48045,,, +729,IND,,AIR Northeast,,Guwahati A (AS),26.155556,91.654972,,100,,7430,77,111,,0945-1741,.....6.,,,48045,,, +729,MYA,my,Myanmar R,,Yangon/Yay Kuu (ygn),16.864178,96.164072,,200,,8519,80,119,,0730-1500,1234567,,,22100003,,, +729,MYA,my,Myanmar R,,Yangon/Yay Kuu (ygn),16.864178,96.164072,,200,,8519,80,119,,2330-0530,1234567,,,22100003,,, +729,CHN,,Jiangxi RGD Xinwen Guangbo,,Nanchang/SARFT561 (JX),28.616375,116.047172,,200,,8746,57,120,,2000-1730,1234567,,,48043,,, +729,VTN,vn,VOV2,,Đồng Hới (qbh),17.465833,106.610833,,200,,9157,71,121,VTN,2155-1700,1234567,,,48062,,, +729,KRE,,KCBS Pyongyang Pangsong,,Sepo/Samo (kan),38.616667,127.366667,,50,,8426,44,124,,2100-2030,1234567,,,48049,,, +729,CHN,,Jiangxi RGD Xinwen Guangbo,,Ganzhou/JXTS851 (JX),25.8,114.9,,50,,8931,60,127,,2000-1730,1234567,,,36200069,,, +729,J,ja,JOCK NHK1,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,50,,9194,39,127,,0000-1600,......7,0,,48047,,, +729,J,ja,JOCK NHK1,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,50,,9194,39,127,,0000-2400,123456,0,,48047,,, +729,J,ja,JOCK NHK1,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,50,,9194,39,127,,1850-2400,......7,0,,48047,,, +729,CHN,,Shangqiu RGD Xinwen,,Shangqiu (HE),34.45,115.65,,10,,8202,54,129,,,,,,48044,,, +729,THA,th,Sor. Wor. Thor. (R Thailand),,Korat=Nakhon Ratchasima (nrt),14.936389,101.999722,,25,,9077,76,130,,2200-1700,1234567,,,48060,,, +729,AFS,af,R Pulpit/Rkansel,,Klipheuwel (WC),-33.700444,18.707778,,25,,9617,170,132,,0000-2400,1234567,,,2377,,, +729,CHN,,Jiangxi RGD Xinwen Guangbo,,Pingxiang/JXTS805 (JX),27.616667,113.85,,10,,8707,60,133,,2000-1730,1234567,,,36200070,,, +729,PHL,,DWPE-AM Radyo ng Bayan,,Tuguegarao City (cag),17.6,121.75,,10,,10083,59,137,,,,,,48059,,, +729,PHL,,DYEH-AM,,Narra (plw),9.283333,118.416667,,10,,10644,67,139,,,,,,48058,,, +729,PHL,,DXIF-AM Bombo Radyo,,Opol/Taboc (mor),8.516217,124.584914,,10,,11095,62,141,,2030-1350,1234567,4,,50004,,, +729,PHL,,DZGB-AM,,Legazpi City (aby),13.133333,123.75,,5,,10616,60,142,,,,,,48057,,, +729,CHN,,Jiangxi RGD Xinwen Guangbo,,Fuzhou/JXTS831 (JX),28.016667,116.333333,,1,,8816,58,143,,2000-1730,1234567,,,36200880,,, +729,PHL,,DXMY-AM,,Cotabato City (mag),7.194167,124.234444,,5,,11197,63,144,,2000-1500,1234567,,,48056,,, +729,TWN,,Shih Hsin BS,,Taipei (TPS),24.988917,121.546114,,0.5,,9389,56,148,,,,,,48061,,, +729,AUS,en,5RN ABC National,,Adelaide/Reynella (SA),-35.103903,138.518703,,50,,15818,83,149,,0000-2400,1234567,7,,48042,,, +729,NCL,fr,Nouvelle-Caldonie 1re,,Touho/Popomou (nor),-20.797444,165.228556,,20,,16084,36,154,,,,,,32700001,,, +729,INS,id,RRI Pro-1,,Nabire (PA-nab),-3.366667,135.483333,,1,,12859,59,156,,2000-1400,1234567,26,,35400028,,, +729,NZL,en,R Sport,,Whangarei/Otaika (NTL),-35.780556,174.319444,,2.5,,17964,32,169,,0000-2400,1234567,,,48053,,, +729,NZL,en,RNZ National,,Tokoroa/Wiltsdown (WKO),-38.165,175.793333,,2.5,,18259,32,170,,0000-2400,1234567,,,48052,,, +729,NZL,,4XX Classic Gold,,Ranfurly (OTA),-45.133333,170.083333,,0.25,,18591,63,181,,,,,,48051,,, +730,CAN,fr,CKAC,,Montral/Pointe-Calumet (QC),45.513889,-73.973333,,50,,5625,297,96,,,,996,,36257,,, +730,RUS,,WS,b,Arkhangels / Vaskovo (AR),64.4375,40.458333,,0.025,,2372,42,97,,,,,,85689,,, +730,RUS,,KT,b,Stavropol / Shopakovskoye (ST),45.104167,42.208333,,0.025,,2714,92,100,,,,,U959 5.8s,85687,,, +730,RUS,,OP,b,Stavropol / Shopakovskoye (ST),45.104167,42.041667,,0.025,,2702,92,100,,,,,U973 25;0s,IDx2,85688,, +730,CAN,en,CKDM,,Dauphin (MB),51.152222,-100.23,,5,,6640,316,116,,,,991,,36294,,, +730,CAN,en,CHMJ,,Vancouver (BC),49.132222,-123.006389,,50,,7786,327,118,,,,3,,36060,,, +730,TRD,,R Trinidad Inspirational 7-30 AM,,Caroni (cha),10.610356,-61.4252,,20,,7572,259,120,,0000-2400,1234567,,,51717,,, +730,VEN,,YVMT R Universo,,Barquisimeto (lar),10.066667,-69.316667,,50,,8153,265,122,,,,,,45386,,, +730,MEX,es,XEX-AM Est W,,Mxico D.F/Col. El Vergel (dif),19.313239,-99.074878,,100,,9329,294,125,,0000-2400,1234567,992,,1922,,, +730,USA,,WVFN,,East Lansing (D) (MI),42.645833,-84.560833,,0.5,,6471,300,125,,,,,,43294,,, +730,USA,,WJYM,,Bowling Green (OH),41.5325,-83.565278,,0.359,,6498,299,126,,,,,,41944,,, +730,CUB,es,R Progreso,,La Fe (ij),21.7136,-82.760747,,10,,8065,283,128,,,,0,,31600081,,, +730,CLM,es,HJCU Melodia R Lider,,Bogot D. C. (bdc),4.65,-74.116667,,25,,8953,265,130,,,,1,,37380,,, +730,CLM,es,HJTJ,,Montera (cor),8.75,-75.883333,,15,,8715,269,131,,,,,,35901388,,, +730,USA,en,KQPN,,West Memphis (AR),35.246111,-90.146944,,1,,7399,298,131,,,,10,,39428,,, +730,B,pt,ZYI780 Rdio Rural a Vz de So Francisc,,Petrolina (PE),-9.335464,-40.4717,,5,,8158,229,132,,,,,,36901303,,, +730,DOM,es,HIZ,,Santo Domingo (sdo),18.483333,-69.883333,,1,,7467,271,132,,1100-0500,1234567,,,37320,,, +730,MEX,es,XEPET-AM,,Peto (yuc),20.140833,-88.926944,,10,,8607,287,132,,,,,,44543,,, +730,PRU,es,OAX4G RPP Noticias,,Lima/Chorrillos (lim),-12.183333,-76.966667,,50,,10628,257,132,,,,,,37000006,,, +730,USA,,WJMT,,Merrill (WI),45.179167,-89.638889,,0.127,,6567,305,132,,,,,,41901,,, +730,USA,en,WZGV,,Cramerton (NC),35.250833,-81.056944,,0.19,,6835,292,133,,,,,,20012519,,, +730,GTM,,TGN R Cultural,,Ciudad de Guatemala/Cerro Anacoche (gut),14.65,-90.55,,10,,9192,284,134,,0000-2400,1234567,,,40520,,, +730,NCG,,YNNS R Segovia,,Ocotal (nsg),13.633333,-86.483333,,10,,9010,281,134,,1100-0200,1234567,,,52194,,, +730,USA,,WFMC,,Goldsboro (NC),35.373611,-78.011389,,0.094,,6631,290,134,,,,,,41405,,, +730,USA,,WFMW,,Madisonville (KY),37.358611,-87.495833,,0.215,,7065,298,134,,,,,,41411,,, +730,USA,,WJTO,,Bath (ME),43.8775,-69.846944,,0.006,,5481,293,134,,,,0,,41936,,, +730,USA,,WLIL,,Lenoir City (TN),35.77,-84.279722,,0.214,,6996,294,134,,,,,,42171,,, +730,USA,,KWOA,,Worthington (MN),43.63,-95.675556,,0.159,,7023,308,135,,,,,,39737,,, +730,USA,,WVFN,,East Lansing (N) (MI),42.645833,-84.560556,,0.05,,6471,300,135,,,,,,20012574,,, +730,B,pt,ZYH640 Rdio Sinal de Aracati,,Aracati (CE),-4.588175,-37.780111,,0.5,,7553,229,136,,,,,,36901302,,, +730,USA,,WACE,,Chicopee (MA),42.167222,-72.625278,,0.008,,5776,292,136,,,,992,,40640,,, +730,USA,,WTNT,,Alexandria (VA),38.745278,-77.099444,,0.025,,6312,292,136,,,,,,41984,,, +730,EQA,,HCMG2 R Guayaquil,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,857,,37024,,, +730,USA,,WDOS,,Oneonta (NY),42.457778,-75.005278,,0.008,,5905,294,137,,,,,,41198,,, +730,USA,,WPIT,,Pittsburgh (PA),40.483889,-79.992778,,0.024,,6361,295,137,,,,,,42695,,, +730,USA,en,WLTQ,,Charleston (SC),32.773333,-80.015556,,0.103,,6967,289,137,,,,0,,42964,,, +730,USA,en,WWTK,,Lake Placid (FL),27.406944,-81.432222,,0.34,,7498,286,137,,,,,,43435,,, +730,USA,es,WZMF,,Nanticoke (PA),41.219444,-75.991111,,0.012,,6057,294,137,,,,,,42425,,, +730,B,pt,ZYH759 Rdio 730 AM,,Goinia/St. Empresarial (GO),-16.6402,-49.313494,,5,,9335,233,138,,,,,,36901304,,, +730,USA,,KWRE,,Warrenton (MO),38.822222,-91.1375,,0.12,,7162,301,138,,,,,,39747,,, +730,USA,,KYYA,,Billings (MT),45.758056,-108.498056,,0.236,,7490,317,138,,,,,,39590,,, +730,USA,,WMNA,,Gretna (VA),36.925278,-79.330556,,0.028,,6594,292,138,,,,,,42356,,, +730,USA,,WUMP,,Madison (AL),34.696111,-86.738611,,0.129,,7236,295,138,,,,,,43261,,, +730,PNR,es,Asamblea Nacional,,Fuerte Sherman (clo),9.365217,-79.953728,,3,,8940,273,139,,,,,,35100002,,, +730,USA,,KKDA,,Grand Prairie (TX),32.764167,-96.990556,,0.5,,8017,301,140,,,,,,38710,,, +730,USA,en,KNFL,,Boise (ID),43.515556,-116.328611,,0.5,,8049,320,140,,,,,,38099,,, +730,B,pt,ZYH896 Rdio Eldorado,,Cod (MA),-4.442911,-43.895292,,0.25,,7865,234,142,,,,,,36901298,,, +730,B,pt,ZYI410 Rdio Jornal,,Cceres (MT),-16.049383,-57.673267,,2.5,,9754,240,142,,,,,,36901292,,, +730,PRG,,ZP7 R Cardinal,,Asuncin (asu),-25.266667,-57.616667,,5,,10605,235,142,,0000-2400,1234567,,,45554,,, +730,MEX,es,XEPQ-AM La Sabrosita,,Melchor Mzquiz (coa),27.875486,-101.467053,,1,,8710,301,143,,,,,,44572,,, +730,HND,,HRTG,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37849,,, +730,MEX,es,XEHB-AM Viva Villa,,Rancho Primero (chi),26.926967,-105.752514,,1,,9043,303,144,,,,,,44098,,, +730,B,pt,ZYL297 Rdio Manchester,,Juiz de Fora (MG),-21.778131,-43.400275,,1,,9528,225,145,,,,15,,36901306,,, +730,MEX,es,XEGDL-AM La Explosiva,,Tonal (jal),20.665389,-103.248772,,1,,9464,298,145,,,,,,44051,,, +730,MEX,es,XELBC-AM R Loreto,,Loreto (bcs),25.999044,-111.369792,,1,,9442,307,145,,,,,,44290,,, +730,ARG,es,LRA27 R Nacional,,San Fernando del Valle (ct),-28.464356,-65.701144,,3,,11357,239,147,,0930-0300,1234567,,,39947,,, +730,B,pt,ZYI217 Sim AM,,Cariacica (ES),-20.264803,-40.359678,,0.5,,9233,224,147,,,,,,36901299,,, +730,B,pt,ZYK610 Rdio Dirceu,,Marlia (SP),-22.223967,-49.881831,,1,,9899,230,147,,,,,,36901301,,, +730,CHL,es,CB73 R Cooperativa AM,,Valparaso/Alto del Puerto (VS),-33.085311,-71.616706,,5,,12110,240,147,,1000-0430,1234567,978,,35759,,, +730,USA,,WSTT,,Thomasville (GA),30.713056,-84.138889,,0.027,,7400,290,147,,,,,,43075,,, +730,BOL,,CP165 R Mensaje,,Montero (scz),-17.25,-63.25,,1,,10200,244,148,,,,,,36660,,, +730,MEX,es,XESOS-AM R Uno,,Agua Prieta (son),31.283333,-109.533333,,0.3,,8853,309,148,,,,,,44908,,, +730,URG,es,CX10 R Continente,,Montevideo (mo),-34.833333,-56.266667,,2.5,,11417,228,148,,0000-2400,1234567,,,36782,,, +730,B,pt,ZYK268 Rdio Planalto AM,,Passo Fundo (RS),-28.2425,-52.406389,,1,,10603,229,149,,,,,,36901297,,, +730,USA,,KSVN,,Ogden (UT),41.188056,-112.081111,,0.066,,8071,316,149,,,,,,39437,,, +730,ARG,es,LRA3 R Nacional,,Santa Rosa (lp),-36.624111,-64.268867,,2.5,,12000,233,150,,0900-0300,1234567,,,39950,,, +730,MEX,es,XEEBC-AM Ke Buena,,Ensenada (bcn),31.89335,-116.628156,,0.25,,9160,314,150,,,,,,43954,,, +730,USA,,KLOE,,Goodland (KS),39.334444,-101.757778,,0.02,,7715,308,151,,,,,,38837,,, +730,USA,en,KULE,,Ephrata (WA),47.316944,-119.562778,,0.029,,7827,324,151,,,,,,39576,,, +730,ARG,es,R Concepto (Red Federal),,Lans (ba),-34.716667,-58.4,,1,,11516,230,152,,,,,,51822,,, +730,B,pt,ZYK523 Rdio Cidade Jundia AM,,Jundia (SP),-23.169167,-46.932406,,0.25,,9838,228,152,,,,94,,36901300,,, +730,B,pt,ZYL287 Rdio Sociedade Tringulo Mineiro,,Uberaba (MG),-19.721267,-47.880411,,0.25,,9554,230,152,,,,,,36901295,,, +730,USA,,KDAZ,,Albuquerque (NM),35.008611,-106.714444,,0.076,,8363,309,152,,,,,,38239,,, +730,B,pt,ZYI452 Rdio Princesa do Vale,,Camapu (MS),-19.523736,-54.038633,,0.25,,9869,235,153,,,,,,36901293,,, +730,USA,,KEZX,,Medford (OR),42.31,-122.811389,,0.074,,8437,324,153,,,,38,,38367,,, +730,B,pt,ZYJ208 Rdio Marumby,,Curitiba/Campo Largo (PR),-25.433656,-49.392194,,0.25,,10181,228,154,,,,,,36901296,,, +730,B,pt,ZYJ323 Rural AM,,Campo Mouro (PR),-24.015833,-52.378889,,0.25,,10202,231,154,,,,,,36901294,,, +730,B,pt,ZYJ787 Rdio Tub AM,,Tubaro (SC),-28.508889,-49.006944,,0.25,,10456,226,155,,,,,,36901305,,, +730,CHL,,CD73B R Aysen,,Puerto Aysn (AI),-45.416667,-72.716667,,1,,13203,232,158,,1100-0400,1234567,,,35912,,, +730,ARG,es,LU23 Em. Lago Argentino,,El Calafate (sc),-50.348286,-72.265792,,1,,13571,228,159,,1000-0300,1234567,,,40219,,, +730,CHL,,CD73 R Camila,,Los Angeles (BI),-37.466667,-72.333333,,0.25,,12525,238,161,,,,,,51931,,, +732,UKR,,KP,b,Kamianets / Podolskiy (KM),48.6875,26.625,,0.025,,1477,97,88,,,,986,L1013 U986 30.7s,ID+24 gap,85691,, +732,UKR,,LS,b,Kamianets / Podilskyi (KM),48.6875,26.625,,0.025,,1477,97,88,,,,,,85693,,, +732,RUS,,FB,b,Soltchy,58.145833,30.291667,,0.025,,1649,57,89,,,,,,85690,,, +732,RUS,,KP,b,Soltchy,58.145833,30.291667,,0.025,,1649,57,89,,,,986,L400 U400 15.0s,IDx2 + 4 gap,85692,, +732,RUS,,AO,b,Aksinyino (TL),55.145833,38.291667,,0.025,,2110,68,94,,,,,,86781,,, +732,RUS,,QO,b,Aksinyino (TL),55.145833,38.291667,,0.025,,2110,68,94,,,,,U400 ,85694,,, +733,UKR,,I,b,Kiev / Zhuliany (KY),50.395833,30.458333,,0.025,,1677,87,90,,,,,L1015 15.0s,IDx2 + 11 tone,85696,, +733,UKR,,V,b,Kiev / Zhuliany (KY),50.395833,30.458333,,0.025,,1677,87,90,,,,,,85699,,, +733,RUS,,NP,b,Akhtubinsk (AS),48.3125,46.208333,,0.025,,2827,83,101,,,,,15.0s,IDx2 + 6 gap,85698,, +733,AZE,,N,b,Baku (bak),40.4375,50.041667,,0.025,,3532,94,108,,,,,L1020 4.2s,85697,,, +733,KAZ,,E,b,Shymkent=Şımkent (okq),42.354167,69.458333,,0.025,,4725,77,120,,,,,,85695,,, +735,RUS,,DW,b,Vyazama,55.145833,34.375,,0.025,,1862,68,92,,,,,,Cont. ID,86782,, +735,RUS,,N,b,Vyazma,55.1875,34.375,,0.025,,1861,68,92,,,,,L814 U1105 4.0s,86783,,, +735,UKR,,KW,b,Koviagi,49.895833,35.541667,,0.025,,2039,85,93,,,,964,L1040 U988 30.0s,IDX2 + 20 gap,85701,, +735,RUS,,FF,b,Tambov / Donskoye (TA),53.8125,41.458333,,0.025,,2331,71,96,,,,,L1017 ,85700,,, +735,RUS,,QCH,b,Tambov / Donskoye (TA),52.8125,41.458333,,0.025,,2352,74,96,,,,,,85702,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0625-0630,12345..,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0650-0700,12345..,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0800-0815,12345..,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1208-1300,12345..,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1230-1300,.....67,0,,372,,, +738,E,ca,RNE Rdio 4,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1400-1415,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0000-0625,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0000-1230,.....67,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0630-0650,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0700-0800,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,0815-1208,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1300-1400,12345..,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1300-2400,.....67,0,,372,,, +738,E,es,RNE R Nacional,,Barcelona/Palau de Plegamans (CAT-B),41.559172,2.189211,,600,,1216,197,41,,1415-2400,12345..,0,,372,,, +738,ISR,ar,IBA Reshet Dalet (D),,Haifa/'Akko (haf),32.911667,35.116667,,100,,3140,122,68,,0300-2000,1234567,,,4300005,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1100-1200,1234567,0,,2237,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1300-1400,1234567,0,,2237,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1500-1600,1234567,0,,2237,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1800-1900,1234567,0,,2237,,, +738,RUS,ru,China R Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2300-2345,1234567,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0230-0300,1234567,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0530-0600,1234567,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0800-0830,123456,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1630-1700,1234567,0,,2237,,, +738,RUS,ru,Islamskaya Kultura,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2130-2200,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0200-0230,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0630-0700,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1030-1100,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1400-1430,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1730-1800,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2000-2030,1234567,0,,2237,,, +738,RUS,ru,KBS World R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2230-2300,12345.7,0,,2237,,, +738,RUS,ru,NHK R Japan,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,EEu,0430-0500,1234567,0,,2237,,, +738,RUS,ru,NHK R Japan,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,EEu,1700-1730,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0030-0100,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0300-0330,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0600-0630,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0930-1000,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1230-1300,1234567,0,,2237,,, +738,RUS,ru,Polskie R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1900-1930,1234567,0,,2237,,, +738,RUS,ru,R Australia,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0500-0530,.....6.,0,,2237,,, +738,RUS,ru,R Australia,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0900-0930,....5..,0,,2237,,, +738,RUS,ru,R Australia,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1930-2000,....5..,0,,2237,,, +738,RUS,ru,R Australia,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2230-2300,.....6.,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0100-0130,123456,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0330-0400,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0700-0730,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0830-0900,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1000-1030,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1600-1630,1234567,0,,2237,,, +738,RUS,ru,R Prague,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2200-2230,1234567,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0000-0030,1234567,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0130-0200,1234567,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0500-0530,12345..,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0900-0930,1234.67,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1430-1500,1234567,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1930-2000,1234..7,0,,2237,,, +738,RUS,ru,R Slovakia Int.,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2100-2130,1234567,0,,2237,,, +738,RUS,ru,RNE R Exterior,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0130-0200,......7,0,,2237,,, +738,RUS,ru,RNE R Exterior,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0500-0530,......7,0,,2237,,, +738,RUS,ru,RNE R Exterior,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0800-0830,......7,0,,2237,,, +738,RUS,ru,RNE R Exterior,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1930-2000,.....6.,0,,2237,,, +738,RUS,ru,Rpanorama,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0715-0730,1......,0,,2237,,, +738,RUS,ru,Rpanorama,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0745-0800,......7,0,,2237,,, +738,RUS,ru,Rpanorama,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1215-1230,.....6.,0,,2237,,, +738,RUS,ru,Rpanorama,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2045-2100,.....6.,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0415-0430,0.234567,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0745-0800,123456,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1215-1230,12345.7,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2345-2400,1234567,0,,2237,,, +738,RUS,ru,Rsetka,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,RUS,2045-2100,12345.7,0,,2237,,, +738,RUS,ru,UN R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0400-0415,1234567,0,,2237,,, +738,RUS,ru,UN R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,0730-0745,1234567,0,,2237,,, +738,RUS,ru,UN R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,1200-1215,1234567,0,,2237,,, +738,RUS,ru,UN R,,Moskva/Kurkino (MV),55.881361,37.391611,,5,,2050,66,71,,2030-2045,1234567,0,,2237,,, +738,ALG,ar,R Illizi,,In Amenas (33),28.044444,9.569444,,10,,2689,173,74,,,,,,371,,, +738,RUS,ru,R Rossii,,Chelyabinsk/RV72 (CB),55.135903,61.382694,,40,,3546,62,76,,0000-2000,1234567,,,2238,,, +738,G,en,BBC R Hereford & Worcester,,Worcester (EN-WOR),52.169972,-2.226028,,0.037,,589,274,77,,0000-2400,1234567,0,,374,,, +738,IRN,fa,IRIB R Bushehr,,Dayyer (bus),27.843989,51.927717,,50,,4613,108,86,,,,,,1782,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Hutubi-XJTS631 (XJ),44.160694,86.923014,,120,,5727,65,94,,2300-1800,1234567,,,1887,,, +738,OMA,ar,R Sultanate Oman,,Salalah (dho),16.992689,54.031483,,40,,5694,115,98,,0200-2145,1234567,,,376,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,0020-0445,12345..,,,48071,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,0020-0505,.....67,,,48071,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,0610-0930,123456,,,48071,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,0610-1742,......7,,,48071,,, +738,IND,,AIR South,,Hyderabad A (AP),17.325,78.611667,,200,,7287,93,107,,1145-1742,123456,,,48071,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,Balikun=Barkol/XJTS8102 (XJ),43.597778,93.046111,,10,,6141,62,108,,0000-1600,1234567,,,48066,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,Guma=Pishan/XJTS8110 (XJ),37.580278,78.273333,,3,,5642,77,109,,2300-1800,1234567,,,36200067,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,Kashgar=Kashi/XJTS635 (XJ),39.409722,75.921944,,1,,5355,76,111,,2300-1800,1234567,,,36200066,,, +738,CHN,zh,Xinjiang RGD 738 Zonghe,,Yutian=Keriya/XJTS8111 (XJ),36.867778,81.648889,,3,,5918,75,111,,2300-1800,1234567,,,36200068,,, +738,CHN,zh,Jilin RGD,,Changchun (JL),43.756667,125.404444,,150,,7860,42,114,,2120-1505,1234567,4,,48067,,, +738,RUS,ru,R Rossii,,Palana (KM),59.0875,159.973611,,25,,7423,14,117,,1800-1400,1234567,,,46890,,, +738,CHN,,Hunan RGD Xiangcun zhi Sheng,,Changsha (HN),28.15,112.75,,200,,8594,60,119,,2130-1700,1234567,998,,48068,,, +738,CHN,zh,Jilin RGD,,Baicheng (JL),45.5755,122.794906,,20,,7575,43,120,,2120-1505,1234567,,,36200879,,, +738,RUS,ru,R Radonezh,,Tavrichanka (PM),43.340139,131.900694,,50,,8184,38,122,,1900-1400,1234567,,,47020,,, +738,KOR,,HLKG KBS 1 R,,Daegu/Gyeongsan (dae),35.898611,128.828333,,100,,8750,44,123,,0000-2400,1234567,,,48087,,, +738,TWN,,Taiwan Ch Yuyeh Kuangpo Tientai,,Baisha/Chiangmei Ts'un (PG),23.6297,119.594489,,100,,9403,58,125,,0000-2400,1234567,,,48096,,, +738,MOZ,,Rdio Moambique,,Maputo (mpc),-25.959083,32.455389,,50,,9044,156,127,,0250-2210,1234567,1,,2379,,, +738,CHN,zh,Jilin RGD,,Songjianghe/JLTS154 (JL),42.158839,127.475194,,10,,8101,42,128,,2120-1505,1234567,,,36200877,,, +738,CHN,,Hunan RGD Xiangcun zhi Sheng,,Fenghuang (HN),28.233889,109.671389,,10,,8403,62,131,,,,,,36200065,,, +738,PHL,tl,DZRB-AM Radyo ng Bayan,,Malolos (bul),14.859311,120.812656,,40,,10281,62,132,,0000-2400,1234567,9965,,48090,,, +738,MAC,,R Vila Verde,,Macau/Taipa (mac),22.155,113.546111,,10,,9177,63,134,,0000-2400,1234567,,,48088,,, +738,THA,th,Wor. Por. Thor. 2,,Chiang Mai/Fort Kawila (cmi),18.778153,99.010208,,5,,8544,76,135,,2130-1600,1234567,,,48094,,, +738,CHN,,Shaoxing RGD,,Shaoxing (ZJ),30.060556,120.601389,,5,,8871,53,136,,2130-1500,1234567,,,48069,,, +738,J,,JORR RBC Ryukyu Hoso,,Naha/Tomigusuku (kyu-oki),26.186111,127.701389,,10,,9612,50,136,,0000-2400,1234567,,,48084,,, +738,THA,th,Wor. Por. Thor. 5,,Hat Yai/5 Kanjanavanit Rd (sgk),7.037564,100.503533,,10,,9669,82,136,,????-1110,123456,,,48095,,, +738,J,,JOLR KNB Kita Nihon Hoso,,Toyama (chu-toy),36.720578,137.247681,,5,,9049,38,137,,0000-2400,1234567,0,,48086,,, +738,CHN,zh,Jilin RGD,,Helong (JL),42.55,129,,1,,8133,40,138,,2120-1505,1234567,,,36200876,,, +738,CHN,zh,Jilin RGD,,Changbai (JL),41.416667,128.2,,1,,8203,42,139,,2120-1505,1234567,,,36200878,,, +738,J,,KNB Kita Nihon Hoso,,Takaoka (chu-toy),36.782375,137.040739,,1,,9034,38,144,,0000-2400,1234567,999,,48085,,, +738,INS,id,PM2DRP R.Swara Pinoh Perkasa,,Sintang (KB-sin),0.066667,111.5,,1,,11025,78,150,,,,,,48080,,, +738,AUS,en,2NR ABC North Coast NSW,,Grafton/Lawrence (NSW),-29.492056,153.115375,,50,,16307,60,151,,0000-2400,1234567,9993,,48063,,, +738,OCE,fr,Polynsie 1re,,Mahina/Pointe de Vnus (idv),-17.500231,-149.484228,,20,,15626,322,153,,0000-2400,1234567,12,,48070,,, +738,AUS,,6MJ ABC Southwest WA,,Manjimup (WA),-34.321,116.145944,,5,,14238,99,154,,0000-2400,1234567,,,48064,,, +738,INS,id,PM3BFC R Bharata,,Tangerang (BT-tan),-6.234444,106.704167,,0.5,,11257,86,154,,????-1500,1234567,27,,48082,,, +738,INS,id,PM8DCU R Rina Bestari,,Rantepao (SN),-2.966667,119.9,,0.4,,11851,73,157,,,,,,48079,,, +738,NZL,,R Live,,Christchurch/Marshland (CAN),-43.481569,172.635014,,5,,18613,52,168,,,,3,,48089,,, +740,CAN,,CHCM,,Marystown (NL),47.144722,-55.271667,,10,,4341,288,90,,,,0,,36038,,, +740,RUS,,KB,b,Sankt-Peterburg/Siverskiy (LE),59.354167,30.041667,,0.025,,1672,52,90,,,,,U1020 14.8s,IDx2 + 6 gap,85704,, +740,UKR,,NE,b,Metilopol (ZP),46.854167,35.291667,,0.025,,2151,94,94,,,,,,85706,,, +740,RUS,,RT,b,Ivanovo (IV),57.0625,40.958333,,0.025,,2267,62,96,,,,0,L1020 U1020 15.0s,IDx2,85707,, +740,RUS,,SZ,b,Ivanovo North (IV),57.0625,40.958333,,0.025,,2267,62,96,,,,,,85708,,, +740,RUS,,TG,b,Armavir / Tsentralny (KD),44.979167,41.125,,0.025,,2647,94,99,,,,,,85709,,, +740,RUS,,WM,b,Armavir / Tsentralny (KD),44.979167,41.125,,0.025,,2647,94,99,,,,,,85710,,, +740,CAN,en,CFZM,,Toronto/Meadowvale (ON),43.575,-79.817222,,50,,6118,298,101,,,,1,,36106,,, +740,RUS,,H,b,Makhachkala / Uytash (DA),42.8125,47.625,,0.025,,3216,92,105,,,,,,85703,,, +740,CAN,en,CBX,,Edmonton (AB),53.319444,-113.446389,,50,,7032,325,110,,,,22,,35800,,, +740,CAN,en,CBNZ,,Nain (NL),56.541667,-61.698889,,0.04,,4260,304,114,,,,,,1871,,, +740,USA,en,WYGM,,Orlando (FL),28.481389,-81.661944,,50,,7424,287,114,,,,9983,,42799,,, +740,CAN,en,CHUG,,Stephenville (NL),48.552778,-58.561389,,0.04,,4473,292,116,,,,,,20109095,,, +740,PTR,es,WIAC,,San Juan (PR),18.356667,-66.234722,,10,,7229,268,119,,0000-2400,1234567,,,41709,,, +740,VEN,,YVNQ R Caroni Q-FM,,Puerto Ordaz (blv),8.316667,-62.666667,,50,,7857,258,119,,,,,,51658,,, +740,USA,,KRMG,,Tulsa (OK),36.080556,-96.285833,,25,,7691,302,120,,,,2,,39266,,, +740,B,pt,ZYH446 Rdio Sociedade da Bahia,,Salvador/Ilha de Itaparica (BA),-12.935806,-38.626383,,100,,8422,225,121,,,,8,,36901316,,, +740,USA,,KTRH,,Houston (TX),29.965833,-94.942222,,50,,8137,297,121,,,,,,39536,,, +740,USA,,WDGY,,Hudson (WI),44.968056,-92.666944,,2.5,,6751,307,121,,,,,,20016002,,, +740,VEN,es,YVNC CNB 740 R Maracaibo,,Maracaibo (zul),10.616667,-71.666667,,50,,8265,267,123,,0900-0400,1234567,0,,45391,,, +740,CLM,es,HJNS,,Valledupar (ces),10.616667,-73.216667,,50,,8371,268,124,,,,,,37596,,, +740,CUB,es,R Angulo,,Sagua de Tnamo (ho),20.582531,-75.226036,,10,,7654,277,124,,,,,,52608,,, +740,USA,en,KVOX,,Fargo (ND),46.974722,-96.503333,,0.94,,6794,311,125,,,,,,20000061,,, +740,USA,,KCBS,i,San Francisco (CA),38.139722,-122.529167,,50,,8830,322,126,,,,0,,38132,,, +740,NCG,,YNRS R Sandino La S Grande,,Managua (mng),13.316667,-86.366667,,50,,9030,280,127,,1025-0400,1234567,,,45238,,, +740,VTN,vi,VOV2,,An Nhơn (Bnh Định) (bdh),13.893167,109.109689,,50,,9635,72,129,,2145-1700,1234567,,,48097,,, +740,USA,es,WNYH,,Huntington (NY),40.851111,-73.437778,,0.043,,5923,292,130,,,,,,41565,,, +740,DOM,,HIEF R Cayacoa,,Salvalon de Higey (alt),18.616667,-68.7,,1,,7375,270,131,,0900-0400,1234567,,,52235,,, +740,MEX,es,XECAQ-AM R Frmula,,Puerto Morelos (qui),20.909939,-86.873522,,10,,8406,286,131,,,,0,,43816,,, +740,HTI,,R Lumire,,Pignon (nrd),19.336111,-72.116667,,1,,7548,273,132,,,,,,35644,,, +740,PRU,,OAX6C R Continental,,Paucarpata (are),-16.422222,-71.469444,,50,,10642,250,132,,0900-0300,1234567,,,40329,,, +740,USA,en,WSBR,,Boca Raton (FL),26.335,-80.265278,,0.94,,7510,285,132,,,,,,42959,,, +740,B,pt,ZYK650 Rdio Trianon,,So Paulo/Av Santa Ins (SP),-23.452889,-46.651278,,25,170,9851,227,133,,,,,,36901315,,, +740,USA,,KVOR,,Colorado Springs (CO),39.083889,-104.711389,,1.5,,7893,310,134,,,,,,39656,,, +740,CLM,es,HJHB,,Pasto (nar),1.183333,-77.266667,,10,,9472,266,135,,,,,,37466,,, +740,USA,,KCMC,,Texarkana (TX),33.438056,-94.1425,,1,,7790,299,135,,,,,,38179,,, +740,ARG,es,LRH251 R Chaco,,Resistencia (cc),-27.433333,-59,,25,,10882,235,136,,0800-0300,1234567,,,51800,,, +740,B,pt,ZYH206 Rdio Alvorada CBN,,Rio Branco/Estrada da Sobral (AC),-9.998319,-67.831117,,10,,9834,251,136,,,,,,36901307,,, +740,EQA,,HCGC1,,Quito (pic),-0.166667,-78.5,,10,,9675,266,136,,,,,,36953,,, +740,PNR,es,HON26 R Cristal,,San Pablo (chq),8.446583,-82.498289,,5,,9193,274,137,,,,,,37708,,, +740,USA,,WJIB,,Cambridge (MA),42.386944,-71.139167,,0.005,,5667,292,137,,,,1,,41878,,, +740,USA,,WRNR,,Martinsburg (WV),39.473611,-77.9325,,0.021,,6309,293,137,,,,,,42891,,, +740,USA,en,WMSP,,Montgomery (AL),32.421667,-86.164167,,0.233,,7387,293,137,,,,,,42393,,, +740,PNR,es,HOR44 La Exitosa de Chorrera,,La Chorrera (pnm),8.888792,-79.792978,,2.6,,8970,273,139,,0000-2400,1234567,,,37720,,, +740,PTR,es,WI2XAC r:WIAC,,Ponce (PR),18.024444,-66.726667,,0.1,,7291,268,140,,0000-2400,1234567,,,41706,,, +740,USA,,WVCH,,Chester (PA),39.877222,-75.406667,,0.006,,6120,292,140,,,,,,43288,,, +740,USA,en,WNOP,,Newport (KY),39.094722,-84.583056,,0.03,,6749,297,140,,,,,,42493,,, +740,PRU,es,OBX2U R Ilucan,,Cutervo/Cerro Pachallamas (caj),-6.375,-78.816667,,5,,10242,262,141,,,,,,37000068,,, +740,EQA,,HCSE4,,Chone (man),-0.7,-80.166667,,2,,9835,267,143,,,,,,37131,,, +740,USA,,WMBG,,Williamsburg (VA),37.281667,-76.796944,,0.007,,6405,291,143,,,,,,42280,,, +740,HND,,HRNN24,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37812,,, +740,HND,,HRQQ,,La Esperanza (int),14.3,-88.166667,,1,,9065,282,144,,,,,,37830,,, +740,MEX,es,XEKV-AM Exa,,Villahermosa (tab),17.987639,-92.911567,,1,,9054,288,144,,,,,,44275,,, +740,MEX,es,XEQN-AM R Frmula,,Torren (coa),25.486144,-103.345439,,1,,9034,301,144,,,,,,44620,,, +740,ARG,,R Cooperativa,,Buenos Aires (df),-34.616667,-58.466667,,5,,11511,230,145,,,,,,51799,,, +740,CAN,en,CBKR,,Parson (BC),51.067778,-116.631389,,0.04,,7362,325,145,,,,,,20109097,,, +740,GTM,,TGHF Emisoras Unidas Tacan,,San Marcos (sms),14.966667,-91.783333,,1,,9246,286,145,,,,,,40497,,, +740,MEX,es,XECW-AM R Variedades,,Los Mochis (sin),25.762367,-109.000283,,1,,9333,305,145,,,,,,43890,,, +740,MEX,es,XELTZ-AM Globo,,Aguascalientes (agu),21.8695,-102.297858,,1,,9298,298,145,,,,,,44326,,, +740,MEX,es,XEOF-AM,,Cortazar (gua),20.493619,-100.961186,,1,,9340,296,145,,,,,,44483,,, +740,MEX,es,XEPOR-AM La Explosiva,,Putla Villa de Guerrero (oax),17.005889,-97.924333,,1,,9463,292,145,,,,,,44570,,, +740,USA,,KVFC,,Cortez (CO),37.349444,-108.541389,,0.25,,8247,311,145,,,,,,39622,,, +740,USA,en,KATK,,Carlsbad (NM),32.450556,-104.213056,,0.5,,8457,306,145,,,,,,37979,,, +740,CAN,en,CBUI,,New Denver (BC),49.994444,-117.366389,,0.04,,7490,325,146,,,,,,20109099,,, +740,MEX,es,XEVAY-AM Amor,,Puerto Vallarta (jal),20.631275,-105.229503,,1,,9586,299,146,,,,,,44948,,, +740,USA,,WPAQ,,Mount Airy (NC),36.534444,-80.596667,,0.007,,6704,293,146,,,,,,42644,,, +740,USA,,WRPQ,,Baraboo (WI),43.455278,-89.753611,,0.006,,6709,304,146,,,,,,42909,,, +740,CAN,en,CBUN,,Salmo (BC),49.193611,-117.277778,,0.04,,7560,324,147,,,,,,20109098,,, +740,URG,,CW27 R Tabar,,Salto (sa),-31.366667,-57.916667,,2.5,,11184,232,147,,0900-0300,1234567,,,36766,,, +740,USA,,KBOE,,Oskaloosa (IA),41.320833,-92.645556,,0.01,,7045,304,147,,,,,,38073,,, +740,USA,en,WCXZ,,Harrogate (TN),36.561111,-83.655833,,0.007,,6894,295,147,,,,,,42936,,, +740,B,pt,ZYJ753 Rdio CBN,,Florianpolis (SC),-27.491111,-48.528056,,1,,10335,227,148,,,,,,36901313,,, +740,USA,,KIDR,,Phoenix (AZ),33.365278,-112.108333,,0.292,,8795,312,148,,,,9991,,38585,,, +740,USA,,WIRJ,,Humboldt (TN),35.814444,-88.914167,,0.016,,7277,297,148,,,,,,41799,,, +740,USA,,WVLN,,Olney (IL),38.700278,-88.081389,,0.007,,6992,299,148,,,,,,43307,,, +740,USA,en,WHMT,,Tullahoma (TN),35.343333,-86.2,,0.011,,7149,295,148,,,,,,41879,,, +740,B,pt,ZYN403 Rdio Cidade,,Alto Araguaia (MT),-17.328844,-53.226089,,0.5,,9617,236,149,,,,,,36901311,,, +740,USA,en,KBRT,i,Costa Mesa (CA),33.828889,-117.638333,,0.19,,9024,316,151,,,,,,38090,,, +740,B,pt,ZYK519 Rdio Assunco,,Jales/Rua Joo Pessoa 595 (SP),-20.242128,-50.561189,,0.25,,9746,232,152,,,,,,36901314,,, +740,B,pt,ZYK553 Rdio Cultura de Bariri,,Bariri (SP),-22.064722,-48.718611,,0.25,,9823,230,152,,,,,,36901308,,, +740,PRG,,ZP38,,Caazapa (czp),-26.183333,-56.366667,,0.5,,10621,233,152,,,,,,45534,,, +740,B,pt,ZYJ354 Rdio Placar,,Ortigueira (PR),-24.205556,-50.915556,,0.25,,10142,230,153,,,,,,36901309,,, +740,B,pt,ZYJ259 Rdio Goioer AM,,Goioer (PR),-24.179722,-53.031667,,0.25,,10252,232,154,,,,,,36901310,,, +740,ARG,es,R La Carretera,,Allen (rn),-38.977778,-67.827778,,1,,12400,234,155,,,,,,33000055,,, +740,B,pt,ZYK265 Rdio Palmeira AM,,Palmeira das Misses (RS),-27.9,-53.295833,,0.25,,10617,230,155,,,,,,36901317,,, +740,B,pt,ZYK283 Nativa AM,,Rio Grande (RS),-32.03,-52.09,,0.25,,10944,227,156,,,,,,36901312,,, +740,PRG,,ZP54,,Ita Cora Nee (neb),-27.166667,-58.166667,,0.25,,10811,234,156,,,,,,45550,,, +740,ARG,,LRA55 R Nacional,,Alto Ro Senguer (ch),-45.033333,-70.816667,,1,,13070,231,157,,0900-0300,1234567,,,39958,,, +740,ARG,,LRI200 R Puerto Deseado,,Puerto Deseado (sc),-47.75,-65.9,,1,,13044,226,157,,0000-2400,1234567,,,51801,,, +742,RUS,,GE,b,Kursk (KU),51.770833,36.208333,,0.025,,2029,79,93,,,,,L1032 U1032 ,85711,,, +742,RUS,,WA,b,Kursk (KU),51.729167,36.375,,0.025,,2041,79,93,,,,994,L1036 U1023 6.0s,ID+2 gap,85712,, +743,INS,id,RSPD Sumba Barat,,Waikabubak (NT-smb),-9.633333,119.416667,,0.3,,12413,77,160,,,,,,35400100,,, +745,UKR,,TR,b,Trypolie,50.104167,30.791667,,0.025,,1709,88,90,,,,,L1020 ,85715,,, +745,RUS,,BG,b,Karmanovo,55.854167,34.875,,0.025,,1893,66,92,,,,,L1043 ,85714,,, +745,RUS,,AD,b,Astrakhan (AS),46.354167,47.875,,0.025,,3034,85,103,,,,,,85713,,, +745,RUS,,YM,b,Astrakhan / Privolzhskij (AS),46.395833,47.875,,0.025,,3032,85,103,,,,,15.0s,IDx2 + 4 gap,85716,, +747,HOL,nl,NPO R 5,,Zeewolde (Flevoland) (fle),52.375167,5.417194,,100,,74,294,11,,0000-2400,1234567,9999,,383,,, +747,E,es,RNE R 5,,Cdiz/Puerto Santa Mara (AND-CA),36.586206,-6.224872,,10,,1991,215,67,,0000-2400,1234567,0,,382,,, +747,BUL,bg,BNR Horizont,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,0000-0600,1234567,,,379,,, +747,BUL,bg,BNR Horizont,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,0800-1300,1234567,,,379,,, +747,BUL,bg,BNR Horizont,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,1500-1830,1234567,,,379,,, +747,BUL,bg,BNR Horizont,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,2030-2400,1234567,,,379,,, +747,BUL,tr,R Bulgaria,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,0600-0800,1234567,,,379,,, +747,BUL,tr,R Bulgaria,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,1300-1500,1234567,,,379,,, +747,BUL,tr,R Bulgaria,,Salmanovo (shm),43.148672,26.9603,,5,,1824,115,68,,1830-2030,1234567,,,379,,, +747,CNR,es,RNE R 5,,Mesas de Galaz (RNE) (LPM-GC),28.016275,-15.516425,,25,,3237,223,75,,0000-2400,1234567,,,381,,, +747,IRN,fa,IRIB R Iran,,Gonbad-e Qabus (gsn),37.236806,55.050222,,150,,4093,94,76,,0000-2400,1234567,9948,,384,,, +747,IRN,fa,IRIB R Iran,,Kerman (krm),30.153433,57.049731,,100,,4764,101,85,,0000-2400,1234567,,,10800026,,, +747,NIG,xx,Nagarta R,,Katabu (kdn),10.704328,7.516436,,60,,4605,178,85,,,,,,6200007,,, +747,SDN,,SRTC Sudan Nat. R,,Bur Sudan=Port Sudan (rs),19.636383,37.223297,,7,,4488,132,93,,,,,,2305,,, +747,SDN,,Khartoum State R,,Khartoum (kha),15.720469,32.558317,,10,,4657,141,94,,0300-0700,1234567,,,2306,,, +747,SDN,,Khartoum State R,,Khartoum (kha),15.720469,32.558317,,10,,4657,141,94,,1300-1900,1234567,,,2306,,, +747,ARS,ar,BSKSA Idha'atu-i Riyadh,,Najran (njn),17.590306,44.063389,,10,,5050,125,98,,0300-2300,1234567,,,47074,,, +747,IND,,AIR North,,Lucknow A (UP),26.880903,81.044153,,300,,6657,84,99,,0025-0430,123456,9962,,48128,,, +747,IND,,AIR North,,Lucknow A (UP),26.880903,81.044153,,300,,6657,84,99,,0025-0940,......7,9962,,48128,,, +747,IND,,AIR North,,Lucknow A (UP),26.880903,81.044153,,300,,6657,84,99,,0630-0940,123456,9962,,48128,,, +747,IND,,AIR North,,Lucknow A (UP),26.880903,81.044153,,300,,6657,84,99,,1100-1741,1234567,9962,,48128,,, +747,KEN,,KBC English Service,,Nairobi/Ngong (nai),-1.325694,36.675,,100,,6583,144,103,,0200-2110,12345..,,,2382,,, +747,KEN,,KBC English Service,,Nairobi/Ngong (nai),-1.325694,36.675,,100,,6583,144,103,,0230-2110,.....67,,,2382,,, +747,CHN,zh,CNR 2,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,1,,5398,68,111,,2100-1605,1234567,,,36201233,,, +747,J,,JOIB NHK2,,Sapporo/Ebetsu (hok),43.092778,141.606111,,500,,8588,32,115,,2030-1500,1.....7,4,,48135,,, +747,J,,JOIB NHK2,,Sapporo/Ebetsu (hok),43.092778,141.606111,,500,,8588,32,115,,2030-1635,.2345..,4,,48135,,, +747,J,,JOIB NHK2,,Sapporo/Ebetsu (hok),43.092778,141.606111,,500,,8588,32,115,,2030-1640,.....6.,4,,48135,,, +747,CHN,,Shaanxi JGD Fortune R.,,Xi'an/Caotan-SATS1 (SA),34.385556,108.950556,,50,,7827,59,118,,2200-1700,1234567,,,48121,,, +747,CHN,zh,Tianjin RGD Binhai Guangbo,,Tianjin (TJ),39.114444,117.242222,,50,,7876,50,119,,,,,,48117,,, +747,CHN,,Ningxia JGD Wealth R.,,Yinchuan/Peng (NX),38.563056,106.310278,,10,,7320,58,120,,1230-1400,......7,,,48123,,, +747,CHN,,Ningxia JGD Wealth R.,,Yinchuan/Peng (NX),38.563056,106.310278,,10,,7320,58,120,,2220-1600,123456,,,48123,,, +747,CHN,,Ningxia JGD Wealth R.,,Yinchuan/Peng (NX),38.563056,106.310278,,10,,7320,58,120,,2330-0630,......7,,,48123,,, +747,CHN,,Xishuangbanna RGD,,Jinghong Xian (YN),22.016667,100.716667,,100,,8377,73,121,,,,,,48111,,, +747,KOR,,HLKH KBS 1 R,,Gwangju/Bia (gwa),35.198333,126.829722,,100,,8720,46,123,,0000-2400,1234567,,,48137,,, +747,CHN,,Henan RGD Nongcun Guangbo,,Xichuan (HE),33.133333,111.483333,,20,,8082,58,125,,,,,,36200857,,, +747,CHN,zh,Baoding RGD Traffic,,Baoding (HB),38.85,115.55,,10,,7809,51,125,,,,,,36201298,,, +747,CHN,zh,CNR Yule Guangbo,,Beijing/SARFT542 (BJ),39.754111,116.172728,,10,,7763,50,125,,,,,,48104,,, +747,CHN,,Henan RGD Nongcun Guangbo,,Nanyang (HE),32.975278,112.498333,,20,,8155,57,126,,,,,,36200863,,, +747,CHN,zh,CNR 1,,Jincheng (SX),35.511711,112.857272,,10,,7953,55,127,,2025-1805,1234567,,,36200868,,, +747,CHN,,Binzhou RGD,,Binzhou (SD),37.366667,118.016667,,10,,8071,51,128,,,,,,48105,,, +747,CHN,,Hubei RGD Sunshine FM,,Qichun (HU),30.233333,115.416667,,30,,8565,57,128,,,,,,36200862,,, +747,CHN,,Pingdingshan RGD,,Pingdingshan (HE),33.7,113.283333,,10,,8136,56,128,,,,,,48116,,, +747,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Wuhai (NM),39.730833,106.813611,,1,,7252,56,130,,,,,,48120,,, +747,CHN,zh,Rizhao PBS Jiaotong Shenghuo,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2130-1530,1234567,,,36200861,,, +747,CHN,,Henan RGD Nongcun Guangbo,,Lingbao/Cheyaocun (HE),34.534444,110.907222,,3,,7927,57,132,,,,,,36200865,,, +747,CHN,zh,CNR 1,,Haifeng (GD),22.966667,115.333333,,10,,9212,61,134,,2025-1805,1234567,,,36200873,,, +747,CHN,,Hubei RGD Sunshine FM,,Jingmen (HU),31.033333,112.2,,3,,8308,59,135,,,,,,48112,,, +747,CHN,,Weinan JGD,,Weinan (SA),34.607778,109.583611,,1,,7845,58,135,,,,,,48119,,, +747,CHN,,Hebei RGD Shenghuo Guangbo,,Shijiazhuang (HB),37.833333,114.666667,,1,,7851,53,136,,,,,,36200860,,, +747,CHN,,Hengshui RGD Wenxue,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,36200872,,, +747,THA,th,Thor. Phor. Song,,Udon Thani/Fort Yutthasin Prasit (udt),17.4,102.783333,,5,,8913,74,136,,????-1500,1234567,,,48143,,, +747,CHN,,Fushun RGD Yinyue,,Fushun (LN),41.85,123.883333,,1,,7963,44,137,,,,,,48108,,, +747,CHN,,Nanchong RGD,,Nanchong/SCTS513 (SC),30.8,106.083333,,1,,7963,63,137,,,,,,48114,,, +747,CHN,,Yibin RGD Jiudu Music,,Yibin/SCTS524 (SC),28.766667,104.616667,,1,,8047,66,137,,,,,,36200856,,, +747,CHN,,Yingkou JGD,,Yingkou/LNTS314 (LN),40.5125,122.205,,1,,8003,46,137,,,,,,48124,,, +747,PHL,tl,DZJC-AM Aksyon Radyo,,Laoag City/San Patricio (iln),18.190833,120.609444,,10,,9962,60,137,,1900-1600,1234567,,,48140,,, +747,THA,th,Ror. Dor. Jet-sii-jet 747,,Bangkok/2 Charoenkrung Rd (bmp),13.746892,100.495722,,5,,9080,78,137,,0000-2400,1234567,,,48142,,, +747,CHN,,Changshu RGD Traffic & Music,,Changshu (JS),31.65,120.733333,,3,,8733,52,138,,,,,,36200331,,, +747,CHN,,Changzhou RGD Traffic & Music,,Changzhou (JS),31.764444,119.7825,,3,,8671,53,138,,2130-1430,1234567,,,48106,,, +747,CHN,,Henan RGD Lyou Guangbo,,Zhengzhou (HE),34.7,113.7,,1,,8072,55,138,,,,,,36200855,,, +747,CHN,,Liaoning RGD Wenyi Guangbo,,Fengcheng/LNTS313 (LN),40.45,124.066667,,1,,8099,45,138,,,,,,36200874,,, +747,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Lichuan (HU),30.3,108.85,,1,,8173,62,139,,,,,,36200866,,, +747,CHN,,Yunnan RGD Jiaotong zhi Sheng,,Baoshan/YNTS702 (YN),26.366667,104.5,,1,,8246,67,139,,,,,,36200875,,, +747,CHN,,Yunnan RGD Yinyue-Binfen 97,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200867,,, +747,CHN,,Linyi RGD Chengshi zhi Sheng,,Linyi (SD),35.066667,118.333333,,1,,8294,52,140,,,,,,36200864,,, +747,CHN,,Zaozhuang RGD Traffic,,Zaozhuang (SD),34.866667,117.566667,,1,,8270,53,140,,,,,,48125,,, +747,PHL,,DYHB-AM,,Bacolod City (noc),10.683333,122.966667,,10,,10796,62,140,,2100-1600,1234567,,,48139,,, +747,CHN,,Henan RGD Nongcun Guangbo,,Huangchuan (HE),32.133333,115.033333,,1,,8373,56,141,,,,,,36200871,,, +747,CHN,zh,CNR 1,,Huizhou (GD),23.066667,114.416667,,2,,9148,62,141,,2025-1805,1234567,,,36200869,,, +747,CHN,,Hefei RGD Literary & Arts,,Hefei/Motancun (AH),31.794111,117.379889,,1,,8536,55,142,,,,,,48110,,, +747,CHN,,Hubei RGD Sunshine FM,,Huanggang (HU),30.45,114.8,,1,,8510,57,142,,,,,,36200870,,, +747,CHN,,Hubei RGD Sunshine FM,,Wuhan (HU),30.6,114.333333,,1,,8470,58,142,,,,,,36200858,,, +747,CHN,,Yancheng JGD Traffic,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,0655-1500,1234567,,,48122,,, +747,CHN,,Yancheng JGD Traffic,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,2155-0540,1234567,,,48122,,, +747,CHN,,Ganzhou RGD,,Ganzhou/JXTS851 (JX),25.8,114.9,,1,,8931,60,143,,2200-1500,1234567,,,48109,,, +747,CHN,,Ningbo JGD,,Ningbo (ZJ),29.866667,121.533333,,1,,8939,53,143,,,,,,48115,,, +747,CHN,zh,CNR 1,,Suzhou (JS),31.3,120.683333,,1,,8762,53,143,,2025-1805,1234567,,,36200080,,, +747,CHN,zh,CNR 2,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,2100-1602,1234567,,,36200859,,, +747,INS,id,RRI Pro-1,,Bengkulu/Desa Air Sebakul (BE-bku),-3.830906,102.363586,,5,,10750,88,143,,0915-1658,1234567,,,48129,,, +747,INS,id,RRI Pro-1,,Bengkulu/Desa Air Sebakul (BE-bku),-3.830906,102.363586,,5,,10750,88,143,,2130-0210,1234567,,,48129,,, +747,CHN,,Longyan RGD,,Longyan/FJTS601 (FJ),25.063333,117.027778,,1,,9123,59,144,,,,,,48113,,, +747,CHN,,Zhongshan RGD Happy R.,,Zhongshan/Muhejing (GD),22.564722,113.380556,,1,,9130,63,144,,,,,,36200854,,, +747,CHN,zh,CNR 1,,Shenzhen/Shiyan (GD),22.653392,113.895556,,1,,9153,63,144,,2025-1805,1234567,,,36200064,,, +747,PHL,,DXND-AM R Veritas,,Kidapawan/Daang Maharlika (nco),7,125.083333,,5,,11266,63,144,,,,,,48141,,, +747,AUS,,6SE R West,,Esperance (WA),-33.769167,121.876944,,5,,14585,95,155,,0000-2400,1234567,4,,48098,,, +747,AUS,,6FMS,,Exmouth (WA),-21.957792,114.129,,1,,13114,90,157,,,,,,48099,,, +747,AUS,en,4QS ABC Southern Queensland,,Toowoomba/Dalby (QLD),-27.144006,151.302706,,10,,15992,60,157,,0000-2400,1234567,9990,,48102,,, +747,SMO,,SBC R 2,,Apia/Mulinu'u (tum),-13.81745,-171.780253,,8,,15754,357,157,,1930-2200,1234567,,,48245,,, +747,AUS,en,7PB ABC Newsr,,Hobart/Ralphs Bay (TAS),-42.925444,147.497889,,6.3,,16963,86,162,,0000-2400,1234567,,,48100,,, +747,AUS,,8JB ABC Darwin,,Jabiru (NT),-12.656022,132.849583,,0.2,,13558,68,166,,0000-2400,1234567,,,48101,,, +747,NZL,en,Newstalk ZB,,Rotorua/Tihiotonga (BOP),-38.175,176.230833,,0.4,,18276,31,178,,,,,,32500013,,, +749,RUS,,U,b,Yekaterinburg (SV),56.729167,60.875,,0.025,,3466,60,108,,,,,14.3s,IDx2,85718,, +750,CAN,en,CBGY,,Bonavista Bay (NL),48.674167,-53.771944,,10,,4160,289,89,,,,3,,35781,,, +750,RUS,,AL,b,Dorokhovo,57.729167,36.625,,0.025,,2010,60,93,,,,,,85719,,, +750,RUS,,NZ,b,Dorokhovo,57.729167,36.625,,0.025,,2010,60,93,,,,,,85721,,, +750,RUS,,BA,b,Krasnodar / Pashkovsky (KD),45.0625,39.208333,,0.025,,2512,95,98,,,,,,85720,,, +750,RUS,,WP,b,Krasnodar / Pashkovsky (KD),45.020833,39.125,,0.025,,2508,95,98,,,,,,85722,,, +750,ALS,,KFQD,,Anchorage (AK),61.338333,-150.034167,,50,,7229,348,112,,0000-2400,1234567,5,,38423,,, +750,USA,,WNDZ,,Portage (IN),41.563611,-87.155,,15,,6708,301,112,,,,,,42453,,, +750,USA,,WSB,,Atlanta (GA),33.843889,-84.253333,,50,,7150,293,112,,,,9985,,42953,,, +750,CAN,en,CKJH,,Melfort (SK),52.6125,-104.505,,10,,6716,319,114,,,,9998,,36234,,, +750,USA,,WQOR,,Olyphant (PA),41.476111,-75.494722,,1.6,,6007,294,115,,,,9957,,42788,,, +750,CAN,en,CBMJ,,Murdochville (QC),48.958333,-65.500556,,0.04,,4882,296,120,,,,,,20109100,,, +750,USA,,KMMJ,,Grand Island (NE),41.134722,-97.993889,,11,,7357,307,120,,,,9999,,38915,,, +750,VEN,es,YVKS RCR 750 R Caracas,,Caracas (dcf),10.47625,-67.012653,,50,,7961,263,120,,0000-2400,1234567,9998,,45357,,, +750,USA,,WBMD,,Baltimore (MD),39.323889,-76.548889,,0.73,,6233,292,121,,,,,,40879,,, +750,USA,,WPDX,,Clarksburg (WV),39.244444,-80.384722,,1,,6480,295,122,,,,,,42662,,, +750,USA,,KBNN,,Lebanon (MO),37.686389,-92.693056,,5,,7347,301,124,,,,,,38069,,, +750,CAN,fr,CBFA-3,,Weymontachie (QC),47.899444,-73.777222,,0.04,,5451,299,125,,,,,,20109101,,, +750,USA,,WARD,,Petoskey (MI),45.334722,-84.926111,,0.33,,6288,303,125,,,,,,43396,,, +750,USA,en,KXTG,,Portland (OR),45.401389,-122.446389,,20,,8124,325,125,,,,4,,39798,,, +750,CUB,es,R Progreso,,Palmira (cf),22.244378,-80.385947,,10,,7861,282,126,,,,,,31600064,,, +750,USA,,WAUG,,New Hope (NC),35.791111,-78.619444,,0.5,,6637,291,126,,,,,,40770,,, +750,B,pt,ZYJ927 Rdio Progresso AM,,Lagarto/Fazenda Santa Terezinha (SE),-10.876944,-37.761389,,10,,8175,226,129,,,,,,36901328,,, +750,CLM,es,HJDK Caracol,,Medelln (ant),6.300872,-75.594425,,25,,8909,268,129,,,,0,,37391,,, +750,B,pt,ZYH709 Rdio Jovem Pan,,Braslia (DF),-15.8532,-48.000817,,25,,9188,232,130,,,,,,36901326,,, +750,USA,,KOAL,,Price (IBOC) (UT),39.567222,-110.798056,,6.8,,8158,314,130,,,,0,,39045,,, +750,DOM,,HIDB R Jess Internacional,,Santiago de los Caballeros (sto),19.466667,-70.666667,,1,,7438,272,131,,,,,,37236,,, +750,ARG,es,LRA7 R Nacional,,Crdoba (cb),-31.511122,-64.051853,,100,,11534,236,132,,0900-0500,1234567,,,39963,,, +750,USA,,WRIK,,Brookport (IL),37.141944,-88.649444,,0.5,,7152,298,132,,1300-0100,1234567,,,42527,,, +750,USA,,KERR,,Polson (MT),47.642778,-114.123611,,1,,7573,321,133,,,,92,,38339,,, +750,CHN,,Xinzhou RGD,,Xinzhou (SX),38.416667,112.733333,,1,,7694,54,134,,,,,,48151,,, +750,SLV,es,YSSS R.Nacional de El Salvador,,Santa Ana (sta),14.05,-89.7,,10,,9189,283,134,,,,,,45318,,, +750,MEX,es,XEJMN-AM,,Jess Mara (nay),22.254236,-104.525594,,10,,9396,300,135,,,,,,44216,,, +750,CLM,es,HJLH,,Yopal (cas),5.35,-72.4,,5,,8775,264,136,,,,,,35901394,,, +750,EQA,es,HCRC2 R Caravana,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,97,,36892,,, +750,PNR,es,R Inolvidable,,Santa Ana Abajo (her),7.946389,-80.374444,,5,,9092,272,137,,1000-2300,1234567,,,52300,,, +750,B,pt,ZYL213 Rdio Amrica,,Belo Horizonte/Contagem (MG),-20.011839,-44.015861,,5,,9385,227,138,,,,,,36901330,,, +750,GTM,,TGAJ R Tropicana Circuito Dos,,Escuintla (esl),14.3,-90.766667,,5,,9237,284,138,,,,,,40475,,, +750,B,pt,ZYI682 Rdio Panati,,Patos (PB),-6.9995,-37.263572,,0.25,,7765,227,141,,,,,,36901320,,, +750,B,pt,ZYI897 Rdio Liberdade AM,,Campo Maior (PI),-4.818267,-42.161556,,0.25,,7806,233,141,,,,,,36901323,,, +750,USA,,KKNO,,Gretna (LA),29.8875,-90.084167,,0.25,,7844,294,141,,,,,,38735,,, +750,USA,,KAMA,,El Paso (TX),31.775,-106.28,,1,,8632,307,142,,,,,,37943,,, +750,USA,,KSEO,,Durant (OK),34.036667,-96.426944,,0.22,,7874,301,142,,,,,,39343,,, +750,MEX,es,XERASA-AM Candela Pasin,,San Luis Potos (slp),22.149167,-100.995556,,1,,9194,297,144,,,,,,43973,,, +750,B,pt,Rdio Cantoense,,Canto do Buriti (PI),-8.117222,-42.960278,,0.25,,8170,232,145,,,,,,36901322,,, +750,B,pt,ZYH792 Rdio Tocantins,,Tocantinpolis (TO),-6.322222,-47.433611,,0.25,,8244,237,145,,,,,,36901321,,, +750,MEX,es,XEOH-AM La Pantera,,Ciudad Camargo (chi),27.663822,-105.186947,,0.75,,8944,303,145,,,,,,44486,,, +750,B,pt,ZYI541 Rdio Ximango AM,,Alenquer (PA),-1.944725,-54.725761,,0.25,,8269,245,146,,,,,,36901319,,, +750,B,pt,ZYK642 Rdio CMN,,Ribeiro Preto (SP),-21.212639,-47.773133,,1,,9692,229,146,,,,,,36901329,,, +750,B,pt,ZYK661 Super Rdio Piratininga,,So Jos dos Campos (SP),-23.232728,-45.908236,,1,,9793,227,146,,,,,,36901324,,, +750,PRU,,R Altura,,Cerro de Pasco (pas),-10.716667,-76.25,,1,,10452,258,148,,,,2,,37000057,,, +750,USA,,KHWG,,Fallon (NV),39.439167,-118.779722,,0.25,,8542,320,148,,,,9961,,38572,,, +750,PRG,,ZP42 LV de la Policia Nacional,,Asuncin (asu),-25.266667,-57.616667,,1,,10605,235,149,,0900-0200,1234567,,,51734,,, +750,B,pt,ZYK696 Rdio Difusora Atual,,Registro (SP),-24.509928,-47.851011,,0.5,,10014,228,150,,,,,,36901318,,, +750,MEX,es,XETI-AM R Fiesta,,Tempoal (vcz),21.522953,-98.381778,,0.25,,9089,295,150,,,,,,44822,,, +750,MEX,es,XECSI-AM Vida,,Culiacn/Col. Stase (sin),24.826558,-107.407353,,0.25,,9329,303,151,,,,,,43874,,, +750,MEX,es,XEURM-AM Fiesta Mexicana,,Uruapan (mic),19.390131,-102.006839,,0.25,,9504,296,151,,,,,,44927,,, +750,PRG,,ZP46,,Ype Hu (cyu),-23.916667,-55.5,,0.5,,10362,234,151,,,,,,45541,,, +750,MEX,es,XEKOK-AM La Poderosa,,Acapulco (gue),16.906867,-99.832794,,0.25,,9592,293,152,,,,,,44264,,, +750,B,pt,ZYK516 Rdio Clube de Osvaldo Cruz,,Osvaldo Cruz (SP),-21.783333,-50.866667,,0.25,,9909,231,153,,,,,,36901331,,, +750,MEX,es,XECORO-AM Ke Buena,,Loma Bonita (oax),18.085042,-95.904244,,0.1,,9238,291,154,,,,,,44606,,, +750,B,pt,ZYJ815 Rdio Aliana,,Concrdia (SC),-27.223056,-52.011389,,0.25,,10486,229,155,,,,,,36901332,,, +750,B,pt,ZYK264 Rdio Osrio,,Osrio (RS),-29.903333,-50.277222,,0.25,,10652,227,155,,,,,,36901325,,, +752,POL,,AT,b,Deblin,51.5625,21.875,,0.025,,1062,87,84,,,,,L1016 ,85723,,, +752,RUS,,BB,b,Beryozovo (KY),63.895833,64.958333,,0.025,,3538,45,108,,,,,15.0s,IDx2,85724,, +756,D,de,Deutschlandfunk,,Knigslutter/Scheppau Wohld (nds),52.293889,10.726944,,200,,295,84,37,,0000-2400,1234567,0,,387,,, +756,D,de,Deutschlandfunk,,Ravensburg-Horgenzell (bw),47.785556,9.519167,,100,,530,154,42,,0000-2400,1234567,0,,386,,, +756,ROU,ro,SRR R Romnia Actualităţi,,Lugoj/Boldur (TM),45.688594,21.79835,,400,190,1328,116,44,,0600-2200,1234567,9998,,395,,, +756,G,en,BBC R 4,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0600-0100,1234567,,,389,,, +756,G,en,BBC WS,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0100-0600,1234567,,,389,,, +756,G,en,BBC R Cumbria,,Carlisle/Brisco (EN-CUM),54.865111,-2.916639,,1,,688,300,64,,0000-2400,1234567,0,,390,,, +756,G,en,R Hafren,,Newtown (WA-POW),52.516833,-3.276972,,0.63,,660,278,66,,0000-2400,1234567,0,,391,,, +756,POR,pt,Antena 1,,Lamego (vrl),41.113972,-7.845778,,2,,1631,227,70,,0000-2400,1234567,,,394,,, +756,ISR,ar,Idaat ul Mashreq,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,0000-0400,1234567,13,,4300007,,, +756,ISR,ar,Idaat ul Mashreq,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,0500-1200,1234567,13,,4300007,,, +756,ISR,ar,Idaat ul Mashreq,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,1300-2400,1234567,13,,4300007,,, +756,ISR,ar,Rokn al-Sout al-Falasteniy,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,0400-0500,1234567,13,,4300007,,, +756,ISR,ar,Rokn al-Sout al-Falasteniy,,Metula (hzf),33.284333,35.58,,50,,3134,120,71,,1200-1300,1234567,13,,4300007,,, +756,IRN,fa,IRIB R Gilan,,Rasht (gln),37.293444,49.594272,,100,,3719,99,74,,,,,,1783,,, +756,EGY,ar,ERTU Janub Sa'id Misr,,Qena=Qina=Ena (qna),26.185111,32.737111,,10,,3628,132,83,,0200-2200,1234567,,,1828,,, +756,NIG,,Oyo State BC,,Ibadan (oyo),7.409167,3.932222,,100,,4976,183,87,,0400-2200,1234567,,,2385,,, +756,UZB,uz,MTRK R Toshkent,,Toshkent/Oʻrtaovul (tos),41.208156,69.131672,,50,,4778,79,88,,0000-2000,1234567,,,47167,,, +756,PAK,,PBC Hayya alal-Falah,,Quetta/Pishin (blc),30.491139,66.945667,,150,,5409,92,89,,0045-0805,1234567,,,48169,,, +756,PAK,,PBC Hayya alal-Falah,,Quetta/Pishin (blc),30.491139,66.945667,,150,,5409,92,89,,1000-1810,1234567,,,48169,,, +756,IRQ,ar,R Dar as-Salam,,Al-Baṣrah (bsr),30.5,47.833333,,2.5,,4128,109,94,,0400-2100,1234567,,,10500005,,, +756,YEM,ar,YGCRT Al-Mukallah R,,Al-Mukallah/Ash Shihr (hdm),14.7467,49.567233,,50,2,5631,121,96,,1500-2300,1234567,,,396,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,0025-0405,123456,9940,,48158,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,0025-0430,......7,9940,,48158,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,0600-0930,......7,9940,,48158,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,0630-0930,123456,9940,,48158,,, +756,IND,,AIR East,,Jagdalpur (OR),19.039722,81.929444,,100,,7368,89,111,,1130-1740,1234567,9940,,48158,,, +756,CHN,zh,CNR 1,,Harbin/HLTS904 (HL),45.696278,126.815333,,150,45,7745,40,113,,2025-1805,1234567,,,48156,,, +756,CHN,zh,CNR 1,,Wuwei/Yangxiaba (GS),38.0475,102.694722,,10,,7151,60,119,,2025-1805,1234567,,,36200838,,, +756,CHN,zh,CNR 1,,Shizuishan (NX),39.233333,106.766667,,10,,7291,57,120,,2025-1805,1234567,,,36200841,,, +756,KOR,ko,KBS 1 R,,Yeoju (gye),37.282778,127.551944,,100,,8559,44,122,,0000-2400,1234567,,,48167,,, +756,CHN,zh,CNR 1,,Yichun (HL),47.777222,128.843611,,10,,7640,37,123,,2025-1805,1234567,,,36200837,,, +756,MWI,,MBC R 1,,Blantyre (bly),-15.702994,35.027836,,25,,8030,151,123,,0253-2200,1234567,,,2383,,, +756,CHN,zh,CNR 1,,Yan'an/Dingquanbian (SA),36.602222,109.485833,,10,,7668,57,124,,2025-1805,1234567,,,36200050,,, +756,CHN,zh,CNR 1,,Hanzhong (SA),33.154944,106.962472,,10,,7815,61,125,,2025-1805,1234567,,,36200062,,, +756,CHN,zh,CNR 1,,Shuangyashan (HL),46.533333,131.083333,,10,,7849,37,126,,2025-1805,1234567,,,36200055,,, +756,CHN,zh,CNR 1,,Guangzhou/SARFT522 (GD),23.408406,113.236125,,50,,9046,63,127,,2025-1805,1234567,,,48155,,, +756,CHN,zh,CNR 1,,Mishan/SARFT914 (HL),45.644722,131.875278,,10,,7965,37,127,,2025-1805,1234567,,,36200845,,, +756,CHN,zh,CNR 1,,Zhuhai/GDTS909 (GD),22.382222,113.556778,,50,,9157,63,127,,2025-1805,1234567,,,36200049,,, +756,CHN,zh,CNR 1,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,2025-1805,1234567,,,36200061,,, +756,CHN,zh,CNR 1,,Suifenhe (HL),44.4,131.166667,,10,,8053,38,128,,2025-1805,1234567,,,36200840,,, +756,CHN,zh,CNR 1,,Laiyang (SD),36.983333,120.716667,,10,,8247,49,129,,2025-1805,1234567,,,36200060,,, +756,CHN,zh,CNR 1,,Qingdao/SDTS135 (SD),36.121589,120.350533,,10,,8306,50,130,,2025-1805,1234567,,,36200058,,, +756,CHN,zh,CNR 1,,Rongcheng (SD),37.134722,122.406944,,10,,8320,48,130,,2025-1805,1234567,,,36200057,,, +756,CHN,zh,CNR 1,,Bose/GXTS242 (GX),23.890278,106.608889,,10,,8593,67,132,,2025-1805,1234567,,,36200852,,, +756,CHN,zh,CNR 1,,Chizhou (AH),30.65,117.483333,,10,,8644,55,133,,2025-1805,1234567,,,36200063,,, +756,CHN,zh,CNR 1,,Ningming (GX),22.120278,106.999167,,10,,8773,68,133,,2025-1805,1234567,,,36200843,,, +756,CHN,zh,CNR 1,,Tianshui (GS),34.5,105.5,,1,,7613,61,133,,2025-1805,1234567,,,36200053,,, +756,CHN,zh,CNR 1,,Wuhu (AH),31.3,118.4,,10,,8637,54,133,,2025-1805,1234567,,,36200052,,, +756,CHN,zh,CNR 1,,Cheng Xian/Zhiqi Xiang (GS),33.7625,105.728333,,1,,7689,61,134,,2025-1805,1234567,,,36200851,,, +756,CHN,zh,CNR 1,,Jieyang (GD),23.565683,116.401333,,10,,9221,60,134,,2025-1805,1234567,,,36200847,,, +756,J,,JOGK NHK1,,Kumamoto (kyu-kum),32.84,130.727222,,10,,9132,44,134,,0000-2400,1234567,,,48166,,, +756,VTN,vi,Long An R,,Tn An (lan),10.533333,106.416667,,10,,9757,76,136,,0430-0525,1234567,,,48180,,, +756,VTN,vi,Long An R,,Tn An (lan),10.533333,106.416667,,10,,9757,76,136,,1000-1210,1234567,,,48180,,, +756,VTN,vi,Long An R,,Tn An (lan),10.533333,106.416667,,10,,9757,76,136,,2200-0030,1234567,,,48180,,, +756,CHN,zh,CNR 1,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,2025-1805,1234567,,,36200853,,, +756,CHN,zh,CNR 1,,Hebi (HE),35.9,114.2,,1,,7994,54,137,,2025-1805,1234567,,,36200848,,, +756,THA,th,Kor. Wor. Sor. 1,,Surin/Prasat Road (sur),14.865556,103.481944,,5,,9181,75,137,,2130-1700,1234567,,,48177,,, +756,CHN,zh,CNR 1,,Tai'an/SDTS616 (SD),36.199722,117.100833,,1,,8126,52,138,,2025-1805,1234567,,,36200839,,, +756,PHL,,DWCC-AM,,Tayug (pgs),16.033333,120.75,,10,,10169,61,138,,,,,,48173,,, +756,CHN,zh,CNR 1,,Zhumadian (HE),32.915,114.021389,,1,,8247,56,139,,2025-1805,1234567,,,36200834,,, +756,THA,xx,Sathaanii Witthayu 912 Kaoneung-song,,Narathiwat/13 Chan Uthit Rd (nwt),6.424722,101.811111,,5,,9811,82,139,,????-1505,1234567,,,48176,,, +756,CHN,zh,CNR 1,,Fuyang (AH),32.930944,115.798294,,1,,8346,55,140,,2025-1805,1234567,,,36200850,,, +756,CHN,zh,CNR 1,,Liuzhi/GZTS763 (GZ),26.216667,105.472222,,1,,8320,67,140,,2025-1805,1234567,,,36200846,,, +756,PHL,tl,DXBZ-AM Radyo Bagting,,Dumalinao (zds),7.816667,123.366667,,10,,11086,64,141,,????-1230,1234567,,,50782,,, +756,CHN,zh,CNR 1,,Napo (GX),23.733333,106.816667,,1,,8620,67,142,,2025-1805,1234567,,,36200844,,, +756,CHN,zh,CNR 1,,Shaoyang (HN),27,111.266667,,1,,8608,62,142,,2025-1805,1234567,,,36200842,,, +756,INS,id,RRI Pro-1,,Purwokerto/Jompo Kulon (JT),-7.438611,109.334167,,10,,11541,84,142,,2155-1700,1234567,,,48165,,, +756,PHL,,DWNW-AM IBC R,,Naga City (cas),13.566667,123.316667,,5,,10550,60,142,,,,,,48171,,, +756,CHN,zh,CNR 1,,Jinhua (ZJ),29.108056,119.586111,,1,,8902,55,143,,2025-1805,1234567,,,36200251,,, +756,CHN,zh,CNR 1,,Shaoxing (ZJ),30.060556,120.601389,,1,,8871,53,143,,2025-1805,1234567,,,36200056,,, +756,CHN,zh,CNR 1,,Suzhou (JS),31.412778,120.693056,,1,,8752,52,143,,2025-1805,1234567,,,36200054,,, +756,CHN,zh,CNR 1,,Xinchang/Kexia Cun (ZJ),29.503889,120.872306,,1,,8936,53,143,,2025-1805,1234567,,,36200051,,, +756,CHN,zh,CNR 1,,Haikou (HA),19.985,110.346944,,1,,9172,67,144,,2025-1805,1234567,,,36200849,,, +756,CHN,zh,CNR 1,,Ninghua/FJTS704 (FJ),26.233333,116.6,,1,,8992,59,144,,2025-1805,1234567,,,36200059,,, +756,CHN,zh,CNR 1,,Yunhe (ZJ),28.1,119.566667,,1,,8992,55,144,,2025-1805,1234567,,,36200836,,, +756,CHN,zh,CNR 1,,Zhoushan/ZMWS6945 (ZJ),30.051167,122.017389,,1,,8949,52,144,,2025-1805,1234567,,,36200835,,, +756,TWN,,Shengli chih Sheng,,Magong=Makung (PG),23.566417,119.562811,,1,,9407,58,145,,2200-1900,123456,,,48178,,, +756,TWN,,Shengli chih Sheng,,Magong=Makung (PG),23.566417,119.562811,,1,,9407,58,145,,2220-1600,......7,,,48178,,, +756,PHL,,DXJM-AM,,Butuan City (agn),8.933611,125.537778,,2,,11114,61,148,,,,,,48170,,, +756,PHL,tl,DWHL-AM Radyo Apo,,Olongapo City (zmb),14.816667,120.283333,,1,,10253,62,148,,,,,,48172,,, +756,INS,id,R Rodja,,Bogor/Cileungsi (JB-kbo),-6.395278,106.959167,,1,,11288,86,151,,2100-1630,1234567,,,35400030,,, +756,AUS,,6TZ R West,,Margaret River/1586 Bussell Hwy (WA),-33.803428,115.120961,,2,,14129,99,158,,0000-2400,1234567,,,48152,,, +756,AUS,en,3RN ABC National,,Wangaratta (VIC),-36.270778,146.311611,,10,,16428,77,158,,0000-2400,1234567,,,48154,,, +756,NZL,en,RNZ National,,Auckland/Henderson (AUK),-36.849089,174.629694,,10,,18083,33,164,,0000-2400,1234567,,,48168,,, +756,AUS,,2TR ABC Mid North Coast NSW,,Taree (NSW),-31.821389,152.413167,,2,,16465,64,165,,0000-2400,1234567,9993,,48153,,, +756,NZL,,Puketapu R,,Palmerston (OTA),-45.483333,170.716667,,0.7,,18654,63,177,,,,,,52599,,, +760,RUS,,R,b,Ramenskoe (MO),55.520833,38.208333,,0.025,,2102,67,94,,,,,L759 U761 ,85727,,, +760,RUS,,D,b,Kosubyevskoe,44.6875,41.791667,,0.025,,2709,94,100,,,,,U1030 15.0s,IDx2,86785,, +760,USA,,WVNE,,Leicester (MA),42.249167,-72.078056,,25,,5736,292,100,,1200-2400,1234567,,,43315,,, +760,USA,en,WJR,,Detroit (MI),42.168056,-83.215,,50,,6428,299,104,,,,9963,,41922,,, +760,USA,,WCIS,,Morganton (NC),35.794444,-81.72,,3.5,,6834,293,120,,,,,,41008,,, +760,B,pt,ZYH588 Rdio Uirapur,,Fortaleza (CE),-3.797553,-38.567694,,10,,7516,230,122,,,,5,,36901345,,, +760,HTI,,4VU,,Torbeck (sud),18.161111,-73.816667,,20,,7763,274,122,,,,,,35657,,, +760,VEN,es,YVQQ R Puerto,,Puerto La Cruz (azg),10.202778,-64.666667,,20,,7826,261,122,,0955-0300,1234567,,,45431,,, +760,PTR,,WORA,,Mayaguez (PR),18.191667,-67.157778,,5,,7306,269,123,,,,1,,42618,,, +760,USA,,KMTL,,Sherwood (AR),34.826111,-92.205278,,10,,7557,299,123,,,,,,38938,,, +760,USA,,WCPS,,Tarboro (NC),35.928889,-77.570278,,1,,6559,290,123,,,,,,41069,,, +760,USA,,WETR,,Knoxville (TN),35.988333,-83.843056,,2.4,,6951,294,123,,,,,,41333,,, +760,DOM,,HICO R Cordillera,,Santo Domingo (sdo),18.566667,-69.916667,,5,,7463,271,125,,,,,,37233,,, +760,B,pt,ZYH424 Marco Zero AM,,Macap (AP),0.046472,-51.068842,,10,,7859,243,126,,,,,,36901343,,, +760,USA,,KFMB,,San Diego (CA),32.8425,-117.025,,50,,9089,315,127,,,,99995,,38409,,, +760,CUB,es,R Progreso,,Guane (pr),22.197833,-84.124033,,10,,8114,284,128,,,,2,,31600104,,, +760,USA,,WENO,,Nashville (TN),36.141111,-86.756389,,1,,7119,296,128,,,,,,41308,,, +760,CLM,es,HJAJ RCN,,Barranquilla (atl),10.866667,-74.816667,,15,,8458,270,130,,,,9990,,37326,,, +760,USA,,WURL,,Moody (AL),33.586944,-86.471667,,1,,7310,294,130,,,,,,43268,,, +760,USA,es,WEFL,,Tequesta (FL),26.995278,-80.192778,,1.5,,7451,285,130,,,,,,41264,,, +760,VEN,,YVSO R Popular 760,,Trujillo (tjl),9.366667,-70.4,,10,,8288,265,130,,,,,,51659,,, +760,B,pt,ZYJ478 Rdio Manchete AM,,So Gonalo (RJ),-22.817722,-43.076325,,25,,9614,225,132,,,,,,36901344,,, +760,EQA,es,HCQR1 R Quito La Voz de la Capital,,Quito (pic),-0.166667,-78.5,,25,,9675,266,132,,,,3,,37068,,, +760,HTI,,R Lumire,,Les Cayes (sud),18.166667,-73.716667,,2,,7756,274,132,,,,,,52101,,, +760,USA,es,WLCC,,Brandon (FL),28.024722,-82.283889,,1,,7502,287,132,,,,,,42140,,, +760,USA,,WCHP,,Champlain (NY),44.945556,-73.43,,0.011,,5631,296,133,,,,14,,40999,,, +760,CAN,en,CFLD,,Burns Lake (BC),54.255278,-125.758333,,0.5,,7388,332,134,,,,18,,35969,,, +760,CTR,,TILX R Columbia,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,0000-2400,1234567,,,40588,,, +760,CUB,es,R Progreso,,Mayar Arriba (sc),20.418867,-75.536092,,1,,7689,277,134,,,,,,31600125,,, +760,GTM,,TGHB Nueva R Super,,Ciudad de Guatemala (gut),14.683333,-90.666667,,10,,9197,285,134,,1000-0500,1234567,,,40496,,, +760,CHL,es,CB76 R Cooperativa,,Santiago/Quilicura (RM),-33.337261,-70.746972,,75,,12080,239,135,,0000-2400,1234567,,,35760,,, +760,MEX,es,XEABC-AM,,San Sebastin Chimalpa (mex),19.379956,-98.959536,,10,,9316,294,135,,,,11,,43680,,, +760,USA,,KKZN,,Thornton (CO),40.009167,-104.939167,,1,,7824,311,135,,,,9970,,38768,,, +760,B,pt,ZYH461 Cidade AM 760,,Vitria da Conquista (BA),-14.908486,-40.820189,,5,,8725,226,136,,,,,,36901339,,, +760,BOL,,CP29 R Fides,,La Paz (lpz),-16.5,-68.116667,,18,,10435,248,136,,1000-0300,12345.7,,,36689,,, +760,BOL,,CP29 R Fides,,La Paz (lpz),-16.5,-68.116667,,18,,10435,248,136,,1000-0500,.....6.,,,36689,,, +760,PNR,es,HOXO La Voz del Istmo,,Pedregal/Rana de Oro (pnm),9.103542,-79.417939,,5,,8926,272,136,,1145-0300,1234567,,,37736,,, +760,USA,,KCCV,,Overland Park (KS),39.040556,-94.509444,,0.2,,7339,303,137,,,,,,38138,,, +760,ARG,es,LU6 R Atlntica,,Mar del Plata (ba),-37.944167,-57.732281,,25,,11776,228,139,,0000-2400,1234567,,,40234,,, +760,B,pt,ZYN408 Natureza AM,,Chapada dos Guimares (MT),-15.471344,-55.670383,,5,,9583,239,139,,,,,,36901333,,, +760,HND,,HRXW,,Tegucigalpa (fmz),14.116667,-87.216667,,3,,9017,282,139,,,,,,37876,,, +760,PNR,es,Asamblea Nacional,,Isla Coln (bct),9.405556,-82.255833,,3,,9093,275,139,,,,,,35100003,,, +760,PRG,es,ZP5 R Encarnacin,,Encarnacin (ita),-27.333333,-55.866667,,10,,10701,232,139,,,,,,45545,,, +760,USA,,KTKR,,San Antonio (TX),29.449444,-98.309167,,1,,8384,300,141,,,,,,39497,,, +760,B,pt,ZYH252 Delmiro 760 AM,,Delmiro Gouveia (AL),-9.384036,-37.989067,,0.25,,8038,226,143,,,,,,36901334,,, +760,HWA,en,KGU,,Honolulu (HI),21.294722,-157.863611,,10,,11711,345,143,,0000-2400,1234567,0,,38516,,, +760,MEX,es,XEES-AM Antena 760,,Chihuahua (chi),28.6894,-106.120111,,1,,8903,305,143,,,,,,43977,,, +760,MEX,es,XEEB-AM Preciosa 760,,Ciudad Obregn (son),27.514083,-109.952689,,1,,9224,307,144,,,,,,43952,,, +760,NCG,es,R Magic,,Managua (mng),12.182758,-86.091483,,1,,9110,279,144,,,,,,33700003,,, +760,MEX,es,XEYW-AM R Mara,,Mrida (yuc),21.040278,-89.604167,,0.5,,8573,288,145,,,,,,45111,,, +760,B,pt,ZYL360 Rdio Terra,,Montes Claros (MG),-16.768219,-43.874867,,0.5,,9061,228,147,,,,,,36901347,,, +760,MEX,es,XEDGO-AM La Mejor,,Durango (dur),24.045431,-104.599889,,0.5,,9238,301,147,,,,,,43906,,, +760,MEX,es,XERA-AM R Uno,,San Cristbal de las Casas (cps),16.709678,-92.623089,,0.5,,9148,287,147,,,,,,44646,,, +760,B,pt,ZYH775 Rdio Rio Claro,,Ipor (GO),-16.431108,-51.113639,,0.5,,9414,234,148,,,,,,36901348,,, +760,BOL,es,RKC-R Kawsachun Coca,,Shinahota (cbb),-16.991667,-65.244444,,1,,10299,245,148,,,,,,36500006,,, +760,PRU,,OBU5B,,Ocobamba/Tres Cruces (apu),-13.483333,-73.561111,,1,,10518,254,149,,,,,,37000096,,, +760,PRU,es,OBZ4X R Mar Plus,,Lima/Chorrillos (lim),-12.183333,-76.966667,,1,,10628,257,149,,0000-2400,1234567,,,40426,,, +760,B,pt,ZYK560 Rdio Jovem Auri Verde,,Bauru/Rua Araucria (SP),-22.291594,-49.062906,,0.5,,9863,230,150,,,,,,36901342,,, +760,B,pt,ZYH783 Rdio Pousada do Rio Quente,,Caldas Novas (GO),-17.736003,-48.605706,,0.25,,9402,232,151,,,,,,36901341,,, +760,B,pt,ZYL257 Rdio Difusora do Machado,,Machado (MG),-21.675261,-45.907197,,0.25,,9642,227,152,,,,,,36901338,,, +760,B,pt,ZYK541 Rdio Urubupung,,Andradina/Rua Cuiab (SP),-20.882475,-51.373947,,0.25,,9851,232,153,,,,,,36901335,,, +760,MEX,es,XENY-AM R Geny,,Nogales (son),31.330772,-110.955489,,0.1,,8924,310,153,,,,333,,44466,,, +760,B,pt,ZYJ343 Rdio Cacique,,Guarapuava (PR),-25.351389,-51.422222,,0.25,,10278,230,154,,,,,,36901336,,, +760,B,pt,ZYJ742 Rdio Nereu Ramos AM,,Blumenau (SC),-26.852778,-48.998889,,0.25,,10297,227,154,,,,,,36901346,,, +760,MEX,es,XEZZ-AM R Gallito,,Guadalajara (jal),20.731567,-103.318717,,0.13,,9462,298,154,,,,,,45166,,, +760,USA,,KTBA,,Tuba City (AZ),36.131667,-111.249722,,0.06,,8496,313,154,,,,,,20016073,,, +760,B,pt,ZYK351 Rdio Ametista,,Planalto (RS),-27.323889,-53.072778,,0.25,,10551,230,155,,,,,,36901337,,, +760,B,pt,ZYK222 Rdio Princesa do Jacu,,Candelria (RS),-29.666667,-52.783333,,0.25,,10757,229,156,,,,,,36901340,,, +760,USA,en,WQDE956,,Murray (UT),40.666694,-111.894306,,0.01,,8110,316,158,,,,,,20010487,,, +761,RUS,,SO,b,Sochi (KD),43.4375,39.875,,0.025,,2652,98,99,,,,,L1020 U1044 ,IDx2 + 6 gap,86786,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0410-0500,12345..,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0510-0600,.....6.,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0710-0800,.....6.,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0910-1000,.....6.,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1310-1400,1234567,45,,404,,, +765,RUS,ke,R Karelii=Karjalan,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1510-1600,1234567,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0155-0410,12345..,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0155-0510,.....6.,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0155-1310,......7,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0500-1110,12345..,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0600-0710,.....6.,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,0800-0910,.....6.,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1000-1310,.....6.,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1200-1310,12345..,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1400-1510,1234567,45,,404,,, +765,RUS,ru,R Rossii,,Pedasel'ga (KR),61.546233,34.721067,,150,,1993,47,55,,1600-2200,1234567,45,,404,,, +765,UKR,ru,Ukray R Maiak,,Petrivka (OD),46.991086,30.889344,,75,,1845,98,57,,1900-2300,1234567,3,,408,,, +765,UKR,uk,Ukray R Maiak,,Petrivka (OD),46.991086,30.889344,,75,,1845,98,57,,0658-1900,1234567,3,,408,,, +765,G,en,BBC Essex,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.5,,414,266,64,,0300-2400,12345..,0,,400,,, +765,G,en,BBC Essex,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.5,,414,266,64,,0500-2400,.....67,0,,400,,, +765,G,en,BBC R 5 Live,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.5,,414,266,64,,0000-0300,12345..,0,,400,,, +765,G,en,BBC R 5 Live,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.5,,414,266,64,,0000-0500,.....67,0,,400,,, +765,GRC,el,ERA Ioanninon,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0500-1100,12345..,9984,,401,,, +765,GRC,el,ERA Ioanninon,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0530-0900,......7,9984,,401,,, +765,GRC,el,ERA Ioanninon,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0700-0900,.....6.,9984,,401,,, +765,GRC,el,ERA Ioanninon,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,1400-1700,12345..,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0000-0700,.....6.,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0900-0500,......7,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,0900-0530,.....6.,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,1100-1400,12345..,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,1700-0500,1234...,9984,,401,,, +765,GRC,el,ERA,,Ioannna (epi-ioa),39.661392,20.860039,,10,,1773,136,65,,1700-2400,....5..,9984,,401,,, +765,SRB,sr,R Beograd 1,,Medveđa (Srb-jab),42.869264,21.554622,,1,,1528,126,72,,0000-2400,1234567,,,405,,, +765,ARS,ar,BSKSA Al-Quran al-Karim,,Qurayyat (jwf),31.415372,37.385722,,20,,3403,120,78,,0000-2400,1234567,0,,397,,, +765,IRN,fa,IRIB R Iran,,Shahr-e Kord (cbk),32.170994,51.182694,,50,280,4213,104,82,,,,9964,,10800006,,, +765,IRN,ar,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,0330-1030,1234567,9769,,403,,, +765,IRN,ar,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1830-2130,1234567,9769,,403,,, +765,IRN,en,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1030-1130,1234567,9769,,403,,, +765,IRN,fa,IRIB R Iran,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,2130-0100,1234567,9769,,403,,, +765,IRN,ps,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,0230-0330,1234567,9769,,403,,, +765,IRN,ps,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1130-1230,1234567,9769,,403,,, +765,IRN,ps,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1400-1530,1234567,9769,,403,,, +765,IRN,ur,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,0100-0230,1234567,9769,,403,,, +765,IRN,ur,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1300-1400,1234567,9769,,403,,, +765,IRN,ur,IRIB WS,,Chah Bahar (sib),25.478889,60.538333,,600,095 230,5378,102,83,,1530-1830,1234567,9769,,403,,, +765,G,en,BBC Essex,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0300-2400,12345..,,,399,,, +765,G,en,BBC Essex,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0500-2400,.....67,,,399,,, +765,G,en,BBC R 5 Live,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-0300,12345..,,,399,,, +765,G,en,BBC R 5 Live,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-0500,.....67,,,399,,, +765,SDN,ar,SRTC Sudan Nat. R,,Khartoum/Soba (kha),15.475339,32.620111,,50,,4685,141,87,,0000-1000,1234567,,,2389,,, +765,ARS,ar,BSKSA Al-Quran al-Karim,,Al-Aflaj/Layla (riy),22.287778,46.696944,,20,,4768,118,92,,0000-2400,1234567,0,,398,,, +765,ARS,ar,BSKSA Al-Quran al-Karim,,Al-Hofuf=Al-Hufuf (shy),25.273611,49.581944,,10,,4681,113,94,,0000-2400,1234567,,,10600004,,, +765,IND,,AIR South,,Dharwad A (KA),15.413889,75.041389,,200,,7208,97,106,,0025-0400,1234567,9988,,48195,,, +765,IND,,AIR South,,Dharwad A (KA),15.413889,75.041389,,200,,7208,97,106,,0630-1005,......7,9988,,48195,,, +765,IND,,AIR South,,Dharwad A (KA),15.413889,75.041389,,200,,7208,97,106,,0700-0935,123456,9988,,48195,,, +765,IND,,AIR South,,Dharwad A (KA),15.413889,75.041389,,200,,7208,97,106,,1200-1735,1234567,9988,,48195,,, +765,CHN,,CNR 5 Zhonghua zhi Sheng,,Fuzhou/SARFT552 (FJ),26.113278,119.625944,,600,130,9177,56,117,,2055-1705,1234567,,,48189,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Damao/NMTS863 (NM),41.712778,110.4075,,10,,7286,53,120,,2150-1605,1234567,,,36200831,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Saihan Tal/NMTS731 (NM),42.724,112.635611,,10,,7320,51,120,,2150-1605,1234567,,,48192,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Baotou/NMTS530 (NM),40.614417,109.839978,,10,,7348,54,121,,2150-1605,1234567,,,36200833,,, +765,MOZ,pt,Emisso Provincial de Nampula,,Nampula (nmp),-15.097,39.262944,,50,,8116,147,121,,0250-2215,1234567,,,2387,,, +765,KRE,,KCBS Chosun Jungang Pangsong,,Hyesan (yan),41.394778,128.174889,,50,,8204,42,122,,2000-1800,1234567,,,48204,,, +765,RUS,ru,R Vostok Rossii,,Khabarovsk (KH),48.5,135.1,,20,,7820,33,122,,2000-1200,1234567,,,6700114,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ergun=E'erguna/NMTS712 (NM),50.234667,120.164056,,3,,7045,41,123,,2150-1605,1234567,,,36201125,,, +765,RUS,ru,R Vostok Rossii,,Ekaterinoslav (KH),47.95,135.133333,,20,,7874,34,123,,2100-1000,1234567,,,48212,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ejin=Ejina/NMTS788 (NM),41.967978,101.070433,,1,,6740,58,124,,2150-1605,1234567,,,36201124,,, +765,RUS,ru,R Vostok Rossii,,Chegdomyn (KH),51.133333,133.05,,5,,7493,33,125,,2000-1200,1234567,,,6700112,,, +765,RUS,ru,R Vostok Rossii,,Bogorodskoye (KH),52.366667,140.45,,5,,7632,28,126,,2000-1200,1234567,,,6700111,,, +765,RUS,ru,R Vostok Rossii,,Nikolayevsk-na-Amure (KH),53.12615,140.858033,,5,,7571,27,126,,2000-1200,1234567,,,6700115,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Badain Jaran=Badanjilin/NMTS754 (NM),39.208333,101.653611,,1,,6995,60,127,,2150-1605,1234567,,,36201122,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Manzhouli/NMTS717 (NM),49.578056,117.497222,,1,,6980,43,127,,2150-1605,1234567,,,36201130,,, +765,RUS,ru,R Vostok Rossii,,De-Kastriy (KH),51.483056,140.776111,,5,,7729,28,127,,2000-1200,1234567,,,6700113,,, +765,RUS,ru,R Vostok Rossii,,Tsmimmermanovka (KH),51.338889,139.252778,,5,,7693,29,127,,2000-1200,1234567,,,6700119,,, +765,RUS,ru,R Vostok Rossii,,Yagodnyi (KH),51.066667,138.433333,,5,,7692,30,127,,2000-1200,1234567,,,6700121,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Kulun/NMTS715 (NM),42.714411,121.768375,,5,,7783,45,128,,2150-1605,1234567,,,36201128,,, +765,RUS,ru,R Vostok Rossii,,Troitskoye (KH),49.372556,136.587689,,5,,7791,32,128,,2000-1200,1234567,,,6700118,,, +765,RUS,ru,R Vostok Rossii,,Vysokogornyi (KH),50.1,139.133333,,5,,7810,30,128,,2000-1200,1234567,,,6700120,,, +765,CHN,,Guizhou RGD Xinwen Guangbo,,Bijie/Dalan Cun-GZTS927 (GZ),27.316667,105.3,,10,,8214,66,129,,,,,,36200832,,, +765,RUS,ru,R Vostok Rossii,,Ayan (KH),56.459722,138.175,,1,,7163,27,129,,2000-1200,1234567,,,6700122,,, +765,RUS,ru,R Vostok Rossii,,Pereyaslavka (KH),47.966667,135.05,,5,,7869,34,129,,2000-1200,1234567,,,6700116,,, +765,RUS,ru,R Vostok Rossii,,Viazemskii=Vyazemskiy (KH),47.522222,134.730556,,5,,7899,34,129,,2000-1200,1234567,,,48213,,, +765,CHN,,Guizhou RGD Xinwen Guangbo,,Zunyi/GZTS691 (GZ),27.533333,106.833333,,10,,8290,65,130,,2150-1605,1234567,,,48194,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Arxan=A'ershan/NMTS768 (NM),47.171944,119.932222,,1,,7301,43,130,,2150-1605,1234567,,,36201121,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Dong Wuzhumuqin Qi/NMTS732 (NM),45.493278,116.974444,,1,,7305,46,130,,2150-1605,1234567,,,36201123,,, +765,RUS,ru,R Vostok Rossii,,Bikin (KH),46.816667,134.241667,,5,,7948,35,130,,2100-1000,1234567,,,47021,,, +765,RUS,ru,R Vostok Rossii,,Sovetskaya Gavan (KH),48.935,140.239722,,5,,7962,30,130,,2000-1200,1234567,,,6700117,,, +765,CHN,,Guizhou RGD Xinwen Guangbo,,Guiyang (GZ),26.416667,106.6,,10,,8373,66,131,,2150-1605,1234567,,,48191,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Hangjin=Hanggin Qi/NMTS843 (NM),39.845389,108.713278,,1,,7350,55,131,,2150-1605,1234567,,,36201126,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Linxi/NMTS726 (NM),43.6,118.05,,1,,7523,47,132,,2150-1605,1234567,,,36200828,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ulanhot/NMTS825 (NM),46.126667,122.046444,,1,,7491,43,132,,2150-1605,1234567,,,36200826,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Zhengxiangbai Qi/NMTS851 (NM),42.313111,115.014194,,1,,7480,49,132,,2150-1605,1234567,,,36201133,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Lindong/NMTS739 (NM),43.977778,119.383333,,1,,7555,46,133,,2150-1605,1234567,,,36201129,,, +765,KOR,ko,HLCQ MBC,,Daejon=Daejeon (daj),36.409722,127.423611,,10,,8635,45,133,,0000-2400,1234567,,,48205,,, +765,CHN,,Shaoguan RGD Beijiang zhi Sheng,,Shaoguan/GDTS641 (GD),24.783333,113.533333,,10,,8941,62,134,,,,,,48193,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Kailu/NMTS727 (NM),43.640642,121.291567,,1,,7677,45,134,,2150-1605,1234567,,,36201127,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ke'erqin Zuoyi Zhong Qi/NMTS735 (NM),44.112058,123.24995,,1,,7728,43,134,,2150-1605,1234567,,,36200829,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Xinhui/NMTS716 (NM),42.284922,119.926686,,1,,7732,46,134,,2150-1605,1234567,,,36201132,,, +765,LAO,lo,LNR Khammouane R,,Tha Khek (kmm),17.392989,104.821058,,10,,9047,73,134,,,,,,22300001,,, +765,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Ningcheng/NMTS725 (NM),41.584089,119.321553,,1,,7764,47,135,,2150-1605,1234567,,,36201131,,, +765,THA,th,Neung Por. Nor.,,Lampang/Hang Chat Road (lpg),18.280833,99.382222,,5,,8612,76,135,,2200-1400,1234567,,,48214,,, +765,J,,JOJF YBS Yamanashi Hoso,,Kofu/Kai (chu-yam),35.680833,138.508611,,5,,9203,37,137,,0000-2400,1234567,,,48201,,, +765,J,,JOPF KRY Yamaguchi Hoso,,Tokuyama/Syunan (chg-yam),34.034467,131.710375,,5,,9064,43,137,,0000-2400,1234567,,,48203,,, +765,THA,th,Thor. Or. 02,,Lop Buri/Khao Phra (lpb),14.883333,100.65,,5,,8991,77,137,,2200-1700,1234567,,,48215,,, +765,CHN,,Guizhou RGD Xinwen Guangbo,,Liupanshui (GZ),26.566056,104.919944,,1,,8255,67,140,,,,,,36200827,,, +765,PHL,,DZYT-AM Sonshine R,,Tuguegarao City (cag),17.6,121.716667,,5,,10082,60,140,,,,,,48210,,, +765,CHN,,Bengbu RGD,,Bengbu (AH),32.95,117.383333,,1,,8432,54,141,,,,,,48190,,, +765,PHL,,DYAR-AM Sonshine R,,Cebu City (ceb),10.3,123.883333,,5,,10887,62,143,,,,,,48207,,, +765,J,,JOJL YBS Yamanashi Hoso,,Fujiyoshida (chu-yam),35.495833,138.811111,,1,,9234,37,144,,0000-2400,1234567,,,48200,,, +765,J,,YBS Yamanashi Hoso,,Otsuki/Uenohara (chu-yam),35.628056,139.038889,,1,,9231,37,144,,0000-2400,1234567,,,48202,,, +765,PHL,,DXGS-AM,,General Santos City (sco),6.1,125.183333,,5,,11356,63,145,,,,,,48208,,, +765,J,ja,KRY Yamaguchi Hoso,,Susatamagawa (chg-yam),34.4,131.4,,0.3,,9014,43,149,,,,,,31400059,,, +765,J,ja,KRY Yamaguchi Hoso,,Yamaguchi (chg-yam),34.15,131.466667,,0.3,,9041,43,149,,,,,,31400058,,, +765,INS,id,RRI Pro-1,,Tual (MA),-5.700278,132.739722,,1,,12913,63,157,,2000-1500,1234567,,,48199,,, +765,AUS,,5CC Classic Hits,,Port Lincoln/Tumby Bay (SA),-34.238556,136.20325,,5,,15596,84,158,,0000-2400,1234567,996,,48188,,, +765,AUS,,8HOT Hot FM,,Katherine (NT),-14.444556,132.27395,,0.5,,13682,69,162,,0000-2400,1234567,,,48185,,, +765,AUS,,2EC,,Bega/Kalaru (NSW),-36.74425,149.938,,3.5,,16703,73,164,,0000-2400,1234567,,,48183,,, +765,AUS,,4GC/t,,Hughenden (QLD),-20.85,144.175361,,0.5,,15000,62,167,,0000-2400,1234567,,,48184,,, +765,AUS,,6SAT Spirit R,,Paraburdoo (WA),-23.216578,117.665583,,0.1,,13460,89,168,,2130-1600,1234567,,,48187,,, +765,NZL,mi,2XT R Kahungunu,,Napier/Opapa (HKB),-39.797222,176.675,,2.5,,18456,32,171,,,,,,48206,,, +770,POL,,LR,b,Krakow / Balice (MP),50.0625,19.875,,0.025,,966,98,83,,,,10,L970 U1003 ,85731,,, +770,UKR,,HT,b,Khust (ZK),48.1875,23.541667,,0.025,,1293,103,86,,,,,,85729,,, +770,UKR,,KH,b,Khust (ZK),48.1875,23.541667,,0.025,,1293,103,86,,,,,,85730,,, +770,RUS,,B,b,Moskva/Sheremetyevo (MV),55.979167,37.458333,,0.025,,2054,66,94,,,,,U1020 ,85728,,, +770,RUS,,N,b,Sheremetyevo (MO),55.979167,37.458333,,0.025,,2054,66,94,,,,,,85735,,, +770,UKR,,MA,b,Mariupol' (DO),47.020833,37.458333,,0.025,,2290,92,96,,,,13,L994 U1020 9.8s,ID+6 gap,85732,, +770,UKR,,MR,b,Mariupol' (DO),47.104167,37.458333,,0.025,,2286,92,96,,,,3,L1010 U1015 ,ID+6 gap,85734,, +770,USA,,WABC,,New York/Lodi [NJ] (NY),40.880556,-74.069722,,50,,5961,292,100,,,,46,,40624,,, +770,RUS,,MI,b,Mikhaylovka,55.0625,57.041667,,0.025,,3284,64,106,,,,,,85733,,, +770,RUS,,QU,b,Mikhaylovka,55.0625,57.041667,,0.025,,3284,64,106,,,,,15.0s,IDx2,85736,, +770,USA,,WTOR,,Youngstown (NY),43.218056,-78.948056,,13,,6092,297,107,,,,,,43194,,, +770,CAN,,CHQR,,Calgary (AB),50.821111,-114.052222,,50,,7281,323,113,,,,9996,,36076,,, +770,USA,,WYRV,,Cedar Bluff (VA),37.084722,-81.768611,,5,,6734,294,117,,,,,,43546,,, +770,USA,,KUOM,,Minneapolis (MN),44.998333,-93.188333,,5,,6777,307,118,,,,,,39586,,, +770,USA,en,WLWL,,Rockingham (NC),34.925,-79.786389,,5,,6780,291,118,,1200-2400,1234567,,,42259,,, +770,ALS,en,KCHU,,Valdez (AK),61.111111,-146.260833,,9.7,,7194,346,119,,0000-2400,1234567,0,,38154,,, +770,USA,,WVNN,,Athens (D) (AL),34.749722,-86.798611,,7,,7235,295,121,,,,,,20012547,,, +770,VEN,es,YVKK RNV Canal Informativo,,Valencia (cbb),10.108578,-68.004261,,50,,8060,264,121,,,,5,,45355,,, +770,USA,,WKFB,,Jeannette (PA),40.288889,-79.701111,,0.75,,6357,295,122,,,,9999,,42001,,, +770,USA,,WAIS,,Buchtel (OH),39.432222,-82.200556,,1,,6577,296,123,,,,,,40677,,, +770,USA,en,KKOB,,Albuquerque (NM),35.2025,-106.611389,,50,,8340,309,123,,,,99838,,38741,,, +770,CUB,es,R Rebelde,,Victoria de las Tunas/CTOM1 (lt),20.924553,-76.899989,,10,,7738,278,124,,,,0,,36608,,, +770,USA,,WCGW,,Nicholasville (KY),37.885278,-84.529444,,1,,6842,296,125,,,,,,40988,,, +770,USA,en,WEW,,St. Louis (MO),38.621667,-90.076111,,1,,7116,300,128,,,,,,41340,,, +770,CLM,es,HJJX RCN,,Bogot D. C. (bdc),4.614167,-74.182728,,30,,8961,265,129,,,,8,,37525,,, +770,USA,en,KTTH,,Seattle/Maury Island (WA),47.393889,-122.423611,,5,,7931,326,129,,,,998,,39543,,, +770,USA,,KATL,,Miles City (MT),46.396111,-105.778889,,1,,7306,316,130,,,,,,37980,,, +770,B,pt,ZYJ922 Rdio Atalaia de Sergipe,,Aracaj (SE),-10.890967,-37.064178,,5,,8143,225,131,,,,,,36901360,,, +770,URG,es,CX12 R Oriental,,Montevideo (mo),-34.776389,-56.231667,,125,,11410,228,131,,0850-0600,1234567,,,36784,,, +770,DOM,,HIMD R Popular,,Tamboril (sto),19.466667,-70.566667,,0.5,,7431,272,134,,1000-0400,1234567,,,37271,,, +770,MEX,es,XEANT-AM,,Tancanhuitz de los Santos (slp),21.617222,-98.956667,,10,,9116,295,134,,,,,,43719,,, +770,PNR,es,HOL83 R Nacional,,El Ejido (her),7.913336,-80.365039,,10,,9094,272,134,,1100-0100,1234567,,,37703,,, +770,USA,,WVNN,,Athens (N) (AL),34.839167,-86.928889,,0.25,,7236,295,135,,,,,,43318,,, +770,USA,es,WJBX,,North Fort Myers (FL),26.775,-81.8475,,0.63,,7578,286,135,,,,,,43363,,, +770,EQA,es,HCMF2 R El Telgrafo,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,37022,,, +770,USA,,KAAM,,Garland (TX),33.032778,-96.575278,,1,,7969,301,137,,,,,,37901,,, +770,USA,en,KCBC,i,Manteca (CA),37.7975,-120.883611,,4.1,,8792,320,137,,,,0,,38126,,, +770,PRU,,OAX8M La Voz de la Selva,,Iquitos/Calle Abtao 255 (lor),-3.755,-73.255833,,5,,9636,260,139,,1000-0300,123456,,,40356,,, +770,PRU,,OAX8M La Voz de la Selva,,Iquitos/Calle Abtao 255 (lor),-3.755,-73.255833,,5,,9636,260,139,,1100-1700,......7,,,40356,,, +770,USA,,KJCB,,Lafayette (LA),30.298611,-91.991667,,0.5,,7928,296,139,,,,,,38661,,, +770,SLV,,YSKL La Poderosa,,San Salvador (ssl),13.716667,-89.166667,,2.5,,9182,283,140,,,,,,45284,,, +770,B,pt,ZYH609 Rdio Vale do Salgado,,Lavras da Mangabeira (CE),-6.716667,-38.983333,,0.25,,7824,229,141,,,,,,36901358,,, +770,B,pt,ZYH922 Rdio Vitria,,Coelho Neto (MA),-4.263247,-43.029911,,0.25,,7800,234,141,,,,,,36901354,,, +770,BOL,,CP116 R Cosmos,,Cochabamba (cbb),-17.366667,-66.166667,,5,,10390,246,141,,1100-0300,1234567,,,36632,,, +770,HND,,HRMV,,Coyoles (yor),15.466667,-86.666667,,1,,8863,282,143,,,,,,37802,,, +770,HND,,HRNN7,,Juticalpa (ola),14.616667,-86.2,,1,,8906,281,143,,,,,,37819,,, +770,MEX,es,XEACH-AM R Frmula,,Monterrey (nvl),25.670947,-100.185289,,1,,8830,299,143,,,,,,43693,,, +770,B,pt,ZYN404 Rdio Cidade de Matup,,Matup (MT),-10.179444,-54.924167,,1,,9045,241,144,,,,,,36901352,,, +770,GTM,,TGBX R Fraternidad,,Quetzaltenango (qzt),14.816667,-91.466667,,1,,9238,285,144,,1000-0600,1234567,,,40483,,, +770,HND,,HRNN21,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37811,,, +770,MEX,es,XEIH-AM La nica,,Fresnillo (zac),23.18305,-102.879811,,1,,9214,299,144,,,,,,44166,,, +770,MEX,es,XEML-AM La Ranchera,,Apatzingan (mic),19.064456,-102.345122,,1.5,,9554,296,144,,,,,,44386,,, +770,SLV,,YSKL La Poderosa,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,45288,,, +770,SLV,,YSKL La Poderosa,,Santa Ana (sta),13.966667,-89.516667,,1,,9184,283,144,,,,,,45286,,, +770,SLV,,YSKL La Poderosa,,Sonsonate (ssn),13.716667,-89.7,,1,,9218,283,144,,,,,,45285,,, +770,SLV,,YSKL La Poderosa,,Usulutn (usu),13.316667,-88.45,,1,,9170,282,144,,,,,,45287,,, +770,B,pt,ZYH745 Voz do Corao Imaculado,,Anpolis (GO),-16.315392,-48.895133,,1,,9281,233,145,,,,,,36901362,,, +770,B,pt,ZYI560 Rdio Clube AM,,Marab (PA),-5.326906,-49.107033,,0.25,,8246,239,145,,,,,,36901363,,, +770,MEX,es,XEHUA-AM Aro,,Santa Cruz Huatulco (oax),15.728889,-96.159167,,1,,9463,289,145,,,,,,44145,,, +770,MEX,es,XEMRO-AM Aro,,Matas Romero (oax),16.873333,-95.036389,,1,,9290,289,145,,,,,,44407,,, +770,MEX,es,XESUR-AM,,Chilapa (gue),17.588056,-99.168611,,1,,9489,293,145,,,,,,44776,,, +770,PRU,,OBX6H,,Cayma (are),-16.341667,-71.544444,,2.5,,10640,251,145,,,,,,37000101,,, +770,B,pt,ZYH491 Rdio Rio Corrente,,Santa Maria da Vitria (BA),-13.416722,-44.189461,,0.5,,8750,230,146,,,,,,36901356,,, +770,USA,en,KKOB,,Santa Fe (NM),35.682222,-105.9725,,0.23,,8263,309,146,,,,,,38742,,, +770,B,pt,ZYL302 Rdio Clube 770 AM,,Patos de Minas (MG),-18.561892,-46.540436,,0.5,,9372,229,148,,,,,,36901359,,, +770,B,pt,ZYK506 Rdio Mix,,Limeira (SP),-22.62895,-47.425378,,0.5,,9811,228,149,,,,,,36901349,,, +770,B,pt,ZYL315 Rdio Pontal do Triangulo Mineiro,,Iturama (MG),-19.754711,-50.193539,,0.5,,9680,232,149,,,,,,36901350,,, +770,B,pt,ZYI211 Rdio Nova Difusora,,Cachoeiro de Itapemirim (ES),-20.809833,-41.123306,,0.25,,9323,224,151,,,,,,36901357,,, +770,B,pt,ZYI412 Rdio Caius,,Dourados (MS),-22.264106,-54.757039,,0.5,,10166,234,151,,,,,,36902066,,, +770,B,pt,ZYL337 Rdio Itabira AM,,Itabira (MG),-19.623758,-43.217122,,0.25,,9307,226,151,,,,,,36901353,,, +770,B,pt,ZYL209 Rdio Cultura AM,,Lavras (MG),-21.253594,-45.014786,,0.25,,9556,227,152,,,,,,36901351,,, +770,B,pt,ZYJ344 Rdio Jovem Pan,,Camb (PR),-23.284722,-51.268056,,0.25,,10073,231,153,,,,,,36901364,,, +770,MEX,es,XEREV-AM Los 40 Principales,,Los Mochis (sin),25.817417,-109.015578,,0.1,,9329,305,155,,,,,,44032,,, +770,CHL,es,CD77 R Agricultura,,Temuco (AR),-38.759944,-72.695558,,1,,12654,237,156,,1000-0400,1234567,,,35915,,, +770,CHL,,CD77 R Cooperativa,,Castro (LL),-42.466667,-73.766667,,1,,13021,235,157,,,,,,51932,,, +770,USA,en,WPIV391,,La Porte (TX),29.761019,-95.094358,,0.01,,8164,297,159,,,,,,20010489,,, +770,USA,en,WPMU210,,El Monte (CA),34.065556,-118.010967,,0.01,,9019,316,164,,,,,,20010490,,, +770,USA,en,WQEA967,,Ontario/Int.Airport (CA),34.062,-117.610961,,0.01,,9001,316,164,,,,,,20010488,,, +774,D,de,WDR 2/WDR Vera,,Bonn/Venusberg (nrw),50.708056,7.096667,,5,,163,163,52,,0000-2400,1234567,9991,,410,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0625-0630,12345..,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0650-0700,12345..,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0800-0815,12345..,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1208-1300,12345..,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1230-1300,.....67,,,416,,, +774,E,es,RNE Pas Vasco,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1400-1415,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0000-0625,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0000-1230,.....67,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0630-0650,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0700-0800,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,0815-1208,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1300-1400,12345..,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1300-2400,.....67,,,416,,, +774,E,es,RNE R Nacional,,San Sebastin/Biribilondo-Zubieta (PVA-VI),43.247433,-2.054642,,50,,1170,216,52,,1415-2400,12345..,,,416,,, +774,E,es,RNE R Nacional,,Valncia/El Palmar (VAL-V),39.300917,-0.322389,,100,,1516,203,52,,0000-2400,1234567,998,,418,,, +774,E,es,RNE R Nacional,,Cceres/Aldea del Cano (RNE) (EXT-CC),39.346889,-6.337194,,50,,1725,220,57,,0000-2400,1234567,997,,417,,, +774,E,es,RNE R Nacional,,Ourense/Pereiro (RNE) (GAL-OU),42.355867,-7.8021,,25,,1521,230,58,,0000-2400,1234567,,,415,,, +774,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0000-2400,1234567,,,413,,, +774,EGY,ar,ERTU Al-Sharq al-Awsat,,Abis (bhy),31.135139,30.072333,,500,130 275,3023,131,60,,0000-2400,1234567,0,,419,,, +774,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0000-2400,1234567,,,412,,, +774,G,en,BBC R 5 Live,,Littlebourne (EN-KNT),51.2875,1.158611,,0.7,,373,258,62,,0000-0500,1234567,0,,422,,, +774,G,en,BBC R Kent,,Littlebourne (EN-KNT),51.2875,1.158611,,0.7,,373,258,62,,0500-2400,1234567,0,,422,,, +774,BIH,,R 7 Tuzla,,Tuzla/Bukovcici (tuz),44.542167,18.684169,,2.5,,1235,128,65,,0000-2400,1234567,,,46826,,, +774,E,es,RNE R Nacional,,Granada/Cllar Vega (AND-GR),37.159833,-3.688111,,10,,1840,209,65,,0000-2400,1234567,,,411,,, +774,G,en,BBC R 4,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,1,,756,260,65,,0600-0100,1234567,,,421,,, +774,G,en,BBC WS,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,1,,756,260,65,,0100-0600,1234567,,,421,,, +774,G,,BBC Asian Network,,New Farnley (EN-WYK),53.772139,-1.634611,,0.5,,569,292,66,,1800-0100,1234567,99993,,423,,, +774,G,en,BBC R Leeds,,New Farnley (EN-WYK),53.772139,-1.634611,,0.5,,569,292,66,,0100-1800,1234567,99993,,423,,, +774,E,es,RNE R Nacional,,La Lnea (RNE) (AND-CA),36.154056,-5.340656,,10,,2001,212,67,,0000-2400,1234567,,,414,,, +774,G,en,BBC R 4,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0600-0100,1234567,17,,420,,, +774,G,en,BBC WS,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0100-0600,1234567,17,,420,,, +774,G,en,Gold,,Cheltenham/Little Shurdington (EN-GLO),51.855972,-2.126972,,0.14,,585,271,71,,0000-2400,1234567,0,,424,,, +774,IRN,fa,IRIB R Markazi,,Arak (mrk),34.081667,49.883611,,100,,3977,103,77,,0000-2400,1234567,9693,,426,,, +774,IND,,AIR North,,Shimla (HP),31.168056,77.206667,,50,,6056,83,101,,0025-1740,......7,,,48225,,, +774,IND,,AIR North,,Shimla (HP),31.168056,77.206667,,50,,6056,83,101,,0045-0400,123456,,,48225,,, +774,IND,,AIR North,,Shimla (HP),31.168056,77.206667,,50,,6056,83,101,,0700-0940,1234567,,,48225,,, +774,IND,,AIR North,,Shimla (HP),31.168056,77.206667,,50,,6056,83,101,,1050-1740,123456,,,48225,,, +774,CHN,ug,Hotan RGD,,Hotan=Hetian (XJ),37.15,79.816667,,10,,5776,76,105,,,,,,36200338,,, +774,J,,JOUB NHK2,,Akita (toh-aki),39.9505,139.936028,,500,,8838,34,116,,2030-1500,1.....7,99996,,48236,,, +774,J,,JOUB NHK2,,Akita (toh-aki),39.9505,139.936028,,500,,8838,34,116,,2030-1635,.2345..,99996,,48236,,, +774,J,,JOUB NHK2,,Akita (toh-aki),39.9505,139.936028,,500,,8838,34,116,,2030-1640,.....6.,99996,,48236,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Wuhan/Dadongcun (HU),30.456111,114.036667,,200,,8465,58,119,,2125-1730,1234567,,,48224,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Yichang (HU),30.703056,111.228889,,50,,8280,60,123,,,,,,36200334,,, +774,CHN,,Beijing RGD R 774,,Beijing/BJTS804 (BJ),39.953178,116.496561,,10,,7763,50,125,,2200-1600,1234567,,,48220,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Shiyan (HU),32.613889,110.841944,,10,,8090,59,128,,,,,,36200332,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Enshi/Sanhe Cun (HU),30.333333,109.466667,,10,,8207,61,129,,,,,,36200336,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,,,,,36200333,,, +774,KOR,ko,HLAN MBC,,Chuncheon (gan),37.940278,127.7225,,10,,8506,44,132,,0000-2400,1234567,,,48237,,, +774,KOR,ko,HLAJ MBC,,Jeju=Cheju (jej),33.450833,126.473889,,10,,8865,47,133,,????-1702,1234567,,,48238,,, +774,PHL,,DWWW-AM,s,Valenzuela/Tagalag (ncr),14.717533,120.940986,,25,,10301,62,134,,2000-1630,1234567,,,48241,,, +774,TWN,,Hsien Sheng Guangbo Gongsi,,Taoyuan (TY),24.967861,121.269664,,10,,9375,56,135,,,,,,48249,,, +774,TWN,,Taiwan Guangbo Gongsi,,Taichung/Chungtai (TC),24.146717,120.576433,,10,,9412,57,135,,,,,,48248,,, +774,CHN,,Jinzhou JGD,,Jinzhou (LN),41.116667,121.116667,,1,,7895,46,136,,,,,,48221,,, +774,THA,th,Sor. Sor. Sor.,,Udon Thani/Nong Samrong Rd (udt),17.448194,102.786944,,5,,8909,74,136,,0000-2400,1234567,,,48247,,, +774,THA,th,Phon Mor. Song,,Rayong/Ban Khai Road (ryg),12.733889,101.279167,,5,,9221,78,137,,,,,,48246,,, +774,PHL,,DYRI-AM Radyo Agong,,Iloilo City (ilo),10.708567,122.583281,,10,,10771,63,140,,2100-1700,1234567,,,48242,,, +774,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Shashi (HU),30.3,112.25,,1,,8375,59,141,,,,,,36200337,,, +774,PHL,tl,DXSO-AM Radyo ng Bayan,,Marawi City/MSU Campus (lds),7.993928,124.256889,,10,,11124,63,141,,,,,,48244,,, +774,TWN,,Shengli chih Sheng,,Tainan (TN),22.942222,120.310756,,1,,9507,58,145,,,,,,48508,,, +774,AUS,en,3LO ABC Melbourne,,Melbourne/Delahey (VIC),-37.72055,144.784044,,50,,16432,80,151,,0000-2400,1234567,1,,48218,,, +774,INS,id,PM3BFY R Glest/R Klasik,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,0130-????,1234567,93,,35400009,,, +774,PHL,,DXSM-AM Radyo ng Bayan,,Jolo/Camp Asturias (slu),6.043611,121.0025,,1,,11103,67,151,,,,,,48243,,, +774,INS,id,R Swara Kenanga,,Yogyakarta (YO-yog),-7.827778,110.390833,,1,,11647,84,152,,,,,,35400032,,, +774,INS,id,RRI Pro-1,,Fak-Fak (PB-fak),-2.953311,132.352,,1,,12634,62,156,,2000-1400,1234567,,,48234,,, +774,AUS,en,4TO,,Townsville/Clevedon (QLD),-19.319222,147.032778,,5,,15029,58,157,,0000-2400,1234567,0,,48219,,, +774,NZL,,R Sport,,New Plymouth/Bell Block (TKI),-39.033111,174.131556,,5,,18280,38,167,,0000-2400,1234567,9848,,48240,,, +777,RUS,,ST,b,Sirotinskaya,49.270833,43.708333,,0.025,,2617,82,99,,,,,,85737,,, +778,UKR,,GR,b,Krasnograd,49.395833,35.458333,,0.025,,2052,87,93,,,,616,L400 U400 30.0s,ID+26 gap,85738,, +778,RUS,,L,b,Stary Oskol (BE),51.354167,37.791667,,0.025,,2146,80,94,,,,,,85739,,, +780,RUS,,N,b,Anapa / Vityazevo (KD),44.979167,37.291667,,0.025,,2386,97,97,,,,3,L995 U1000 ,85741,,, +780,RUS,,P,b,Anapa / Vityazevo (KD),45.020833,37.375,,0.025,,2389,97,97,,,,,U1000 15.0s,IDx2,85742,, +780,RUS,,FS,b,Ust - Tsilma (KO),65.395833,52.208333,,0.025,,2934,42,102,,,,11,L1002 U1024 ,85740,,, +780,USA,en,WBBM,,Chicago (IL),41.990556,-88.0275,,50,,6726,302,107,,,,0,,40811,,, +780,RUS,,WI,b,Uray (KY),60.104167,64.791667,,0.025,,3599,52,109,,,,,,85744,,, +780,USA,en,WAVA,,Arlington (VA),38.976389,-77.114444,,12,,6295,292,109,,1200-2400,1234567,9996,,40634,,, +780,VRG,en,ZBVI,,Tortola (ttl),18.424103,-64.604208,,20,,7112,267,115,,0930-0200,1234567,,,45495,,, +780,ALS,,KNOM,,Nome (AK),64.487778,-165.299444,,14,,7030,356,116,,0000-2400,1234567,9985,,39008,,, +780,USA,,WWOL,,Forest City (NC),35.350556,-81.901111,,10,,6880,292,116,,,,,,43419,,, +780,USA,en,WXME,,Monticello (ME),46.341667,-67.817778,,0.06,,5189,294,121,,,,,,42836,,, +780,HTI,,Eben-Ezer,,Mirebalais (cen),18.833333,-72.1,,10,,7589,273,123,,,,,,52102,,, +780,USA,,WZZX,,Lineville (AL),33.306111,-85.745,,5,,7288,293,123,,,,,,43604,,, +780,B,pt,ZYI771 Rdio Jornal do Comercio,,Recife (PE),-8.025222,-34.953817,,10,,7755,224,125,,,,,,36901375,,, +780,CLM,es,HJZW,,Riohacha (lag),11.583333,-72.866667,,30,,8263,269,125,,,,,,37669,,, +780,USA,,KKOH,,Reno (NV),39.678056,-119.801667,,50,,8564,320,125,,,,99940,,38743,,, +780,VEN,,YVOD Ecos del Torbes,,San Cristbal (tch),7.788706,-72.273017,,50,,8553,266,125,,0900-0400,12345..,,,45404,,, +780,VEN,,YVOD Ecos del Torbes,,San Cristbal (tch),7.788706,-72.273017,,50,,8553,266,125,,0900-0600,.....67,,,45404,,, +780,USA,en,WIIN,,Ridgeland (MS),32.426667,-90.205278,,5,,7638,296,126,,1300-0100,1234567,,,41741,,, +780,USA,,WPTN,,Cookeville (TN),36.158333,-85.520833,,1,,7041,295,127,,,,,,42746,,, +780,VEN,es,YVMN R Coro,,Coro (flc),11.395989,-69.754511,,10,,8067,266,128,,0000-2400,1234567,9990,,2000,,, +780,B,pt,ZYH919 Rdio Alvorada,,Z Doca (MA),-3.277436,-45.650772,,5,,7852,237,129,,,,,,36901373,,, +780,USA,,WTME,,Rumford (ME),44.514722,-70.516944,,0.018,,5480,294,129,,,,955,,43172,,, +780,USA,,WJAG,,Norfolk (NE),42.031667,-97.496389,,1,,7255,307,130,,,,,,41836,,, +780,CLM,es,HJZG La Voz del Valle,,Cali (val),3.466667,-76.466667,,15,,9217,267,133,,????-0300,1234567,,,37663,,, +780,CTR,,TIRA R Amrica,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1000-0400,......7,,,40601,,, +780,CTR,,TIRA R Amrica,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1000-0500,123456,,,40601,,, +780,B,pt,ZYL259 Rdio Manhumirim,,Manhumirim (MG),-20.334553,-41.977756,,10,,9317,225,135,,,,,,36901374,,, +780,MEX,es,XEGLO-AM,,Guelatao de Jurez (oax),17.307611,-96.492917,,10,,9345,291,135,,,,,,44065,,, +780,PRG,es,ZP70 R Primero de Marzo,,Mariano Roque Alonso (asu),-25.212058,-57.548128,,25,,10596,235,135,,0830-0400,1234567,997,,45555,,, +780,B,pt,ZYH292 Rdio Nacional,,Eirunep (AM),-6.655922,-69.866581,,10,,9668,255,136,,,,,,36901365,,, +780,B,pt,ZYK695 CBN So Paulo,,So Paulo/Rua Hilia Amaznica (SP),-23.605794,-46.538947,,10,,9861,227,137,,,,,,36901377,,, +780,HTI,,R Lumire,,Jrmie (gan),18.633333,-74.116667,,0.5,,7743,274,137,,,,,,35651,,, +780,PNR,es,Recuerdo 780,,Las Cumbres (pnm),9.111389,-79.569444,,5,,8935,272,137,,,,,,35100004,,, +780,PRU,es,OAX1K R Nacional del Per,,Tumbes (tum),-3.566667,-80.5,,10,,10110,265,137,,,,,,37000121,,, +780,B,,ZYH791,,Colinas do Tocantins (TO),-8.059167,-48.475,,2.5,,8469,237,138,,,,,,45758,,, +780,DOM,,HIBO R Constanza,,Constanza (veg),18.883333,-70.716667,,0.25,,7490,272,138,,1100-0200,1234567,,,37222,,, +780,USA,en,KCEG,,Fountain (CO),38.518611,-104.600833,,0.72,,7938,310,138,,,,0,,20016225,,, +780,PRU,es,OAZ7S R Nuevo Tiempo,,Juliaca (pun),-15.816667,-70.016667,,10,,10495,250,139,,,,,,37000123,,, +780,B,pt,ZYH657 Rdio Difusora Seara,,Nova Russas (CE),-4.711717,-40.564939,,0.25,,7710,231,140,,,,,,36901371,,, +780,USA,,KSPI,,Stillwater (OK),36.082222,-97.053611,,0.25,,7735,303,140,,,,,,39404,,, +780,ARG,,LRA12 R Nacional,,Santo Tome (cn),-28.55,-56.016667,,5,,10822,232,143,,0900-0300,1234567,,,39932,,, +780,HND,,HRSF,,Roatan (bah),16.316667,-86.5,,1,,8778,282,143,,,,,,37841,,, +780,MEX,es,XESFT-AM La Triple T,,San Fernando (tam),24.835339,-98.171033,,1,,8782,297,143,,,,,,44739,,, +780,B,pt,ZYH789 Rdio Sociedade Vera Cruz,,Goiansia (GO),-15.304914,-49.091506,,1,,9195,233,144,,,,,,36901372,,, +780,GTM,,TGCK R Sultana del Oriente,,Zacapa (zcp),14.966667,-89.516667,,1,,9096,284,144,,,,,,40485,,, +780,NCG,es,YNAD R Deportes,,Managua (mng),12.155472,-86.21645,,1,,9121,280,144,,,,,,52196,,, +780,PNR,es,HOB55 R Chiriqu,,Dolega (chq),8.586128,-82.423744,,1,,9176,274,144,,1100-2300,1234567,,,37677,,, +780,B,pt,ZYK279 Rdio Pampa,,Porto Alegre (RS),-29.962872,-51.285656,,2.5,,10709,227,145,,,,,,36901376,,, +780,B,pt,ZYL246 Rdio Educadora de Uberlndia,,Uberlndia (MG),-18.957006,-48.325367,,1,,9504,231,145,,,,,,36901378,,, +780,MEX,,XETKX,,Tekax (yuc),20.2125,-88.297778,,0.5,,8559,286,145,,,,,,44830,,, +780,MEX,es,XEXY-AM La Voz de Balsas,,Ciudad Altamirano (gue),18.374825,-100.682861,,1,,9513,295,145,,,,,,45076,,, +780,ARG,,LV8 R Libertador,,Mendoza (mz),-32.883333,-68.816667,,5,,11928,238,146,,0900-0500,1234567,,,39962,,, +780,CHL,es,CD78 R Sago AM,,Osorno/Pucoihue (LL),-40.597722,-73.283111,,10,,12840,236,146,,1000-0400,1234567,,,35917,,, +780,EQA,,HCCM1 Colon AM,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,1,,36828,,, +780,EQA,,HCRG4,,Mia (man),-0.95,-80.683333,,1,,9893,267,147,,,,,,37083,,, +780,MEX,es,XETS-AM Ke Buena,,Tapachula (cps),14.928764,-92.271108,,0.5,,9281,286,148,,,,,,44863,,, +780,ARG,,LRA10 R Nacional,,Ushuaia (tf),-54.830903,-68.336011,,10,,13734,222,149,,0000-2400,1234567,,,39930,,, +780,ARG,,LRF210 R Tres,,Trelew (ch),-43.25,-65.316667,,5,,12633,229,149,,0000-2400,1234567,968,,51804,,, +780,B,pt,ZYJ788 Marconi AM,,Urussanga/Morro do Padre (SC),-28.516167,-49.308722,,1,,10472,227,149,,,,,,36901366,,, +780,MEX,es,XELD-AM R Costa,,Autln de Navarro (jal),19.766183,-104.269208,,0.5,,9607,298,149,,,,,,44298,,, +780,MEX,es,XEWGR-AM Exa,,Monclova (coa),26.917892,-101.409708,,0.25,,8792,300,149,,,,,,45020,,, +780,PRU,,OAX4X R Victoria,,Lima (lim),-12.040556,-77.069444,,1,,10623,257,149,,0000-2400,1234567,997,,40314,,, +780,USA,,KAZM,,Sedona (AZ),34.860556,-111.819444,,0.25,,8642,312,149,,,,9842,,37998,,, +780,MEX,es,XEMTS-AM R Frmula,,Tampico (tam),22.235,-97.859444,,0.25,,8993,295,150,,,,,,44412,,, +780,MEX,es,XEZN-AM Exa,,Celaya (gua),20.527342,-100.770108,,0.25,,9326,296,151,,,,,,45147,,, +780,B,pt,ZYK619 Rdio Difusora Monte Aprazvel,,Monte Aprazvel/Rua Gois 126 (SP),-20.758183,-49.716644,,0.25,,9750,231,152,,,,,,36901367,,, +780,B,pt,ZYJ247 Rdio Porta Voz,,Cianorte (PR),-23.635,-52.573333,,0.25,,10176,232,154,,,,,,36901369,,, +780,B,pt,ZYJ305 Rdio Chopinzinho,,Chopinzinho (PR),-25.859722,-52.501389,,0.25,,10383,231,154,,,,,,36901379,,, +780,USA,en,WCKB,,Dunn (NC),35.283333,-78.596944,,0.001,,6675,290,154,,1200-2400,1234567,,,41011,,, +780,B,pt,ZYK229 Rdio Dirio da Manh,,Carazinho (RS),-28.274444,-52.765278,,0.25,,10624,229,155,,,,,,36901370,,, +783,E,es,COPE Miramar/Rock & Gol,,Barcelona/Ctra.Consera (EAJ39) (CAT-B),41.4675,2.2635,,50,,1224,196,52,,0000-2400,1234567,9997,,432,,, +783,SYR,ar,SRTV 1 Dimashk,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,0500-1600,1234567,9997,,435,,, +783,SYR,ar,SRTV 1 Dimashk,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,1900-0300,1234567,9997,,435,,, +783,SYR,he,SRTV R Damascus,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,0300-0500,1234567,9997,,435,,, +783,SYR,he,SRTV R Damascus,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,1600-1830,1234567,9997,,435,,, +783,SYR,ru,SRTV R Damascus,,Tartus/Besira (tat),34.958333,35.88,,300,,3011,118,62,,1830-1900,1234567,9997,,435,,, +783,ALG,ar,R El Oued Souf,,El Oued (39),33.372778,6.837778,,10,,2084,179,68,,0000-2400,1234567,,,200004,,, +783,ALG,ar,R Illizi,,Djanet (33),24.571111,9.465833,,5,,3073,174,81,,0000-2400,1234567,,,200005,,, +783,ARS,ar,BSKSA Idha'atu-i Jeddah,,Ras al-Khair (Ras al-Zawr) (shy),27.459483,49.304267,,100,,4476,111,82,,0300-2200,1234567,9986,,430,,, +783,MTN,ar,R Mauritanie,,Nouakchott (nkc),18.135556,-16.001667,,50,,4254,216,83,,0500-1800,1234567,,,1755,,, +783,MTN,ar,R Mauritanie,,Nouakchott (nkc),18.135556,-16.001667,,50,,4254,216,83,,1815-0100,1234567,,,1755,,, +783,MTN,fr,R Mauritanie,,Nouakchott (nkc),18.135556,-16.001667,,50,,4254,216,83,,1800-1815,1234567,,,1755,,, +783,IRN,,IRIB R Zahedan,,Iranshahr (sib),27.229889,60.476322,,300,,5230,100,85,,0000-2400,1234567,4,,1784,,, +783,SDN,ar,SRTC Nahr An-Nyl R,,Atbara (rnl),17.667456,33.986731,,5,,4525,137,95,,,,,,2394,,, +783,CHN,,Hebei RGD Shenghuo Guangbo,,Baoding/HBTS662 (HB),38.932778,115.443056,,100,,7796,51,115,,2130-1710,1234567,,,48253,,, +783,CHN,,Haixia zhi Sheng Minnanhua Pindao,,Fotan/Houxu Cun (FJ),24.156767,117.929594,,600,105,9258,59,117,,2130-1900,1234567,,,48254,,, +783,CHN,,Xizang RGD Khams,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,,,,,36201178,,, +783,VTN,vi,VOV2,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2155-1700,1234567,,,48271,,, +783,IND,,AIR Vividh Bharati,,Chennai C=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0025-0435,1234567,,,48257,,, +783,IND,,AIR Vividh Bharati,,Chennai C=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0900-1200,1234567,,,48257,,, +783,IND,,AIR Vividh Bharati,,Chennai C=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,1245-1730,1234567,,,48257,,, +783,CHN,,Hebei RGD Xinwen Guangbo,,Chengde/HBTS1084 (HB),40.966667,117.933333,,10,,7748,49,125,,,,,,36200335,,, +783,CHN,bo,CNR 11,,Xigaz (XZ),29.291111,88.881267,,1,,6989,76,127,,,,,,36201182,,, +783,CHN,bo,CNR 11,,Sog=Suo Xian (XZ),31.895278,93.782,,1,,7099,71,128,,,,,,36201181,,, +783,CHN,zh,Xizang RGD Hanyu,,Lhnz=Longzi (XZ),28.410639,92.45475,,1,,7297,74,130,,,,,,36201179,,, +783,CHN,zh,Xizang RGD Hanyu,,Mainling=Milan (XZ),29.213889,94.209722,,1,,7346,73,130,,,,,,36201180,,, +783,HKG,,RTHK R 5,,Golden Hill (stn),22.3675,114.153889,,20,,9195,63,131,,0000-2400,1234567,9959,,48256,,, +783,KOR,ko,HLCV KBS 1 R,,Yeongwol (gan),37.184722,128.476111,,10,,8613,44,132,,0000-2400,1234567,,,48261,,, +783,CHN,zh,Hebei RGD Shenghuo Guangbo,,Zhangjiakou/HBTS109 (HB),40.600556,115.0925,,1,,7632,51,133,,2100-1900,1234567,,,36201183,,, +783,CHN,zh,Hebei RGD Shenghuo Guangbo,,Langfang (HB),39.516667,116.7,,1,,7812,50,135,,2100-1900,1234567,,,36201184,,, +783,THA,,Sor. Wor. Thor. (R Thailand),,Ranong (rng),9.907778,98.627222,,10,,9290,82,135,,????-1500,1234567,,,48270,,, +783,CHN,zh,Hebei RGD Shenghuo Guangbo,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,2100-1900,1234567,,,36200824,,, +783,THA,th,Thor. Phor. Saam,,Kamphaeng Phet/Nakhon Chum (kpp),16.475556,99.509167,,5,,8777,77,136,,????-1100,1234567,,,48269,,, +783,CHN,,Hebei RGD Xinwen Guangbo,,Handan/Nanbao Xiang (HB),36.558056,114.522778,,1,,7954,54,137,,,,,,36200339,,, +783,PHL,,DZNL-AM Aksyon Radyo,,San Fernando/Pagdalagan (lun),16.579444,120.321667,,5,,10093,61,140,,2000-1600,1234567,,,48267,,, +783,PHL,,DXRA-AM Radyo Arangkada,,Davao City/Madapo Hills (dvs),7.075,125.6,,10,,11291,62,141,,????-1500,1234567,,,48265,,, +783,PHL,,DYME-AM Radyo Ukay,,Masbate City (msb),12.366667,123.616667,,5,,10679,61,142,,,,,,48266,,, +783,INS,id,R.Dakwah Mesjid Raya Sabilal Muhtadin,,Banjarmasin (KS-kbm),-3.32,114.590278,,1,,11532,78,152,,,,,,48258,,, +783,INS,id,RRI Pro-1,,Ende (NT-end),-8.837922,121.689956,,2,,12494,75,152,,0700-1400,1234567,,,48259,,, +783,INS,id,RRI Pro-1,,Ende (NT-end),-8.837922,121.689956,,2,,12494,75,152,,2000-0400,1234567,,,48259,,, +783,AUS,,6VA R West,,Albany (WA),-35.012125,117.849214,,2,,14404,99,159,,0000-2400,1234567,,,48251,,, +783,AUS,,8AL ABC Alice Springs,,Alice Springs/South Stuart Hwy (NT),-23.767533,133.872344,,2,,14599,75,159,,0000-2400,1234567,,,48252,,, +783,NZL,,2YB Access R./Samoan Capital R.,,Wellington/Titahi Bay (WGN),-41.094444,174.849722,,10,,18509,40,165,,0000-2400,1234567,,,48264,,, +786,RUS,,ED,b,Ekaterinburg / Koltsovo (SV),56.729167,60.875,,0.025,,3466,60,108,,,,,,85745,,, +786,RUS,,EL,b,Ekaterinburg / Koltsovo (SV),56.729167,60.708333,,0.025,,3456,60,108,,,,,,85746,,, +789,BLR,,JR,b,Osovtsy (BR),52.5625,24.875,,0.025,,1252,80,85,,,,,U1120 15.0s,IDx2 + 3 gap,85747,, +789,BLR,,OW,b,Osovtsy (BR),52.5625,24.875,,0.025,,1252,80,85,,,,987,L770 U745 15.5s,IDx2,85748,, +790,MDA,,RSH,b,Beltsy,47.8125,27.791667,,0.025,,1596,99,89,,,,,,85749,,, +790,USA,,WPRV,i,Providence (RI),41.834167,-71.365556,,5,,5720,291,107,,,,998,,43013,,, +790,CAN,en,CFCW,,Camrose (AB),52.960278,-112.959167,,50,,7044,324,111,,,,9,,35945,,, +790,USA,,WNIS,,Norfolk (VA),37.073611,-76.291944,,5,,6388,290,114,,,,,,42472,,, +790,USA,,WTNY,,Watertown (NY),43.945556,-75.948333,,1,,5856,296,116,,,,998,,43188,,, +790,USA,en,WAEB,,Allentown (PA),40.660278,-75.513889,,1.5,,6068,293,116,,,,2,,40657,,, +790,USA,,WAYY,,Eau Claire (WI),44.830833,-91.449444,,5,,6695,306,117,,,,,,40788,,, +790,USA,,KFGO,,Fargo (ND),46.718056,-96.801389,,5,,6830,311,118,,,,0,,38386,,, +790,ALS,,KCAM,,Glennallen (AK),62.114444,-145.535278,,5,,7076,346,121,,0000-2400,1234567,,,38122,,, +790,USA,,WSGW,,Saginaw (MI),43.461111,-83.813333,,1,,6365,300,121,,,,,,42997,,, +790,VEN,es,YVXM R.Minuto La Barquisimetana,,Barquisimeto (lar),10.066667,-69.316667,,50,,8153,265,122,,0000-2400,1234567,998,,51661,,, +790,VEN,,YVKC R Venezuela 7-90,,Caracas (dcf),10.466667,-66.783333,,25,,7946,263,123,,,,9982,,45351,,, +790,CUB,es,R Reloj,,Holgun (ho),20.859947,-76.272811,,10,,7701,278,124,,,,,,31600083,,, +790,CUB,es,R Reloj,,Pinar del Ro/CTOM2 (pr),22.433208,-83.662633,,25,,8063,284,124,,,,0,,2217,,, +790,USA,,WMC,,Memphis (TN),35.168611,-89.885,,5,,7389,298,124,,,,9942,,42286,,, +790,USA,en,WAXY,,South Miami (FL),25.756667,-80.639444,,5,,7583,284,126,,,,0,,40784,,, +790,USA,en,WKRD,,Louisville (KY),38.192778,-85.520556,,1,,6878,297,126,,,,,,43498,,, +790,USA,en,KJRB,,Spokane (WA),47.502222,-117.385,,3.8,,7722,323,128,,,,,,38693,,, +790,USA,,KGHL,,Billings (MT),45.824722,-108.410556,,1.8,,7480,317,129,,,,,,38479,,, +790,USA,,WQXI,,Atlanta (GA),33.811667,-84.353611,,1,,7159,293,129,,,,,,42803,,, +790,PRU,,OAX2I R Programas del Peru,,Trujillo (lal),-8.116667,-79.033333,,50,,10410,261,131,,0000-2400,1234567,,,40282,,, +790,USA,,WLBE,,Leesburg-Eustis (FL),28.828333,-81.786111,,1,,7403,287,131,,,,9963,,42130,,, +790,DOM,,HIL LV del Tropico,,Santo Domingo (sdo),18.466667,-69.916667,,1,,7471,271,132,,0000-2400,1234567,,,37266,,, +790,USA,,KBME,,Houston (TX),29.915,-95.461667,,5,,8172,298,132,,,,,,38059,,, +790,USA,,WLSV,,Wellsville (NY),42.076944,-77.929722,,0.041,,6114,296,132,,,,,,42238,,, +790,CAN,en,CFYI-1,,Caledon (ON),43.901667,-79.831111,,0.03,,6095,298,133,,,,,,20109102,,, +790,CLM,es,HJDC Caracol,,Medelln (ant),6.3017,-75.596878,,10,,8909,268,133,,,,,,37387,,, +790,USA,,WPIC,,Sharon (PA),41.219444,-80.473611,,0.058,,6334,296,133,,,,,,42690,,, +790,B,pt,ZYI679 Rdio Cultura,,Guarabira (PB),-6.868658,-35.500656,,1,,7666,225,134,,,,2,,36901388,,, +790,USA,,WSVG,,Mount Jackson (VA),38.770833,-78.621389,,0.04,,6406,293,135,,,,,,43084,,, +790,USA,en,KGMI,,Bellingham (WA),48.721944,-122.445278,,1,,7805,327,135,,,,20,,38493,,, +790,USA,en,KURM,,Rogers (AR),36.302778,-94.113056,,0.5,,7546,301,135,,,,,,39591,,, +790,PNR,es,R Panam,,Los Boquerones (vrg),8.080556,-80.861389,,6,,9113,273,136,,,,,,52301,,, +790,VEN,,RNV Canal Informativo,,Ciudad Bolivar (blv),8.133333,-63.55,,1,,7932,259,136,,,,,,51660,,, +790,MEX,es,XEVA-AM,,Villahermosa (tab),18.006647,-92.910419,,5,,9052,288,137,,,,,,44945,,, +790,USA,,WETB,,Johnson City (TN),36.328611,-82.410833,,0.072,,6834,294,137,,,,,,41331,,, +790,USA,,WVCD,,Bamberg-Denmark (SC),33.313889,-81.078611,,0.1,,6991,290,137,,,,,,43286,,, +790,USA,en,KABC,i,Los Angeles (CA),34.028056,-118.372778,,5,,9040,316,137,,,,0,,37904,,, +790,ARG,es,LR6 R Mitre AM,,Buenos Aires/Hurlingham (df),-34.580528,-58.669556,,25,,11518,230,138,,0000-2400,1234567,997,,39927,,, +790,B,pt,ZYJ337 RCC AM,,Mandirituba (PR),-25.624444,-49.319444,,10,,10195,228,138,,,,,,36901382,,, +790,MEX,es,XEBI-AM,,Aguascalientes (agu),21.887125,-102.333556,,5,,9298,298,138,,,,0,,43778,,, +790,USA,,KOSY,,Texarkana (AR),33.375,-94.016667,,0.5,,7788,299,138,,,,0,,39104,,, +790,USA,,WSFN,,Brunswick (GA),31.144444,-81.582222,,0.115,,7200,289,138,,,,,,42986,,, +790,USA,en,WHTH,,Heath (OH),40.051389,-82.468889,,0.026,,6546,297,138,,,,,,41693,,, +790,B,pt,ZYK674 Rdio Cultura,,Taubat (SP),-23.0007,-45.652278,,5,,9758,227,139,,,,,,36901383,,, +790,USA,,KFPT,,Clovis (CA),36.844167,-119.686944,,2.5,,8831,319,139,,,,99877,,39094,,, +790,USA,,KFYO,,Lubbock (TX),33.463889,-101.925,,1,,8239,305,139,,,,,,38450,,, +790,USA,,KWIL,,Albany (OR),44.631667,-123.015833,,1,,8220,325,139,,,,,,39713,,, +790,B,pt,ZYH904 Rio Turiau AM,,Santa Helena (MA),-2.230833,-45.301944,,0.25,,7733,237,140,,,,,,36901397,,, +790,GTM,,TGO R Festival,,Ciudad de Guatemala (gut),14.616667,-90.566667,,2.5,,9196,284,140,,1100-0400,1234567,,,40521,,, +790,USA,,WGRA,,Cairo (GA),30.902222,-84.234167,,0.11,,7390,291,140,,,,,,41556,,, +790,USA,,WRMS,,Beardstown (IL),40.003056,-90.3975,,0.055,,7023,302,140,,,,,,42884,,, +790,USA,es,WBLO,,Thomasville (NC),35.961389,-80.036944,,0.026,,6714,292,140,,,,,,43597,,, +790,B,pt,ZYH629 Rdio Jornal,,Iguatu (CE),-6.378508,-39.26045,,0.25,,7805,229,141,,,,,,36901399,,, +790,EQA,,HCOT1,,Santo Domingo de los Colorados (pic),-0.266667,-79.15,,3,,9728,266,141,,,,,,37051,,, +790,MEX,es,XEUP-AM Candela,,Tizimn (yuc),21.145506,-88.119636,,1,,8467,287,142,,,,,,44922,,, +790,ARG,,LRA22 R Nacional,,San Salvador de Jujuy (jy),-24.194411,-65.307942,,5,,10952,241,143,,0945-0500,1234567,,,39942,,, +790,B,pt,Rdio Rio Flores AM,,Tuntum (MA),-5.263889,-44.634722,,0.25,,7985,235,143,,,,,,36901390,,, +790,B,pt,ZYH484 Rdio Barreiras,,Barreiras (BA),-12.136761,-44.999461,,1,,8669,231,143,,,,,,36901400,,, +790,USA,,WPEI436,,Pittsburg (CA),38.033333,-121.883333,,1,,8813,321,143,,,,9935,,51939,,, +790,B,pt,ZYH915 Rdio Cultura de Aailndia,,Aailndia (MA),-4.889067,-47.512458,,0.25,,8112,237,144,,,,,,36901393,,, +790,B,pt,ZYI931 Rdio Mafrense,,Simplcio Mendes (PI),-7.854275,-41.907556,,0.25,,8088,231,144,,,,,,36901398,,, +790,B,pt,ZYJ316 Rdio Club de Faxinal,,Faxinal (PR),-23.988611,-51.315833,,2.5,,10143,231,144,,,,,,36901389,,, +790,CLM,es,HJNC,,Ibagu (tol),4.433333,-75.233333,,1,,9048,266,144,,,,,,35901402,,, +790,HND,,HRTG2,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37850,,, +790,MEX,es,XEGZ-AM W R,,Gmez Palacio (dur),25.566625,-103.466997,,1,,9034,301,144,,,,,,34900013,,, +790,MEX,es,XESU-AM,,Mexicali (bcn),32.643822,-115.506411,,1,,9033,314,144,,,,,,44774,,, +790,MEX,es,XEFE-AM La Fiesta,,Nuevo Laredo (tam),27.457222,-99.486944,,0.5,,8630,299,145,,,,,,44002,,, +790,MEX,es,XERC-AM Formato 21,,Mxico D.F/Granjas Mxico (dif),19.397756,-99.101222,,1,,9323,294,145,,,,,,44655,,, +790,USA,,WPNN,,Pensacola (FL),30.4525,-87.240556,,0.066,,7618,292,145,,,,,,42719,,, +790,B,pt,ZYH505 Rdio Regional de Serrinha,,Serrinha (BA),-11.685956,-38.992469,,0.25,,8316,226,146,,,,,,36901392,,, +790,B,pt,ZYI456 Rdio Regional,,Nortelndia (MT),-14.442547,-56.8126,,1,,9554,240,146,,,,,,36901394,,, +790,HWA,en,KKON,,Kealakekua (HI),19.519444,-155.918889,,5,,11868,343,146,,0000-2400,1234567,999,,38746,,, +790,USA,,KNST,,Tucson (AZ),32.248333,-111.008333,,0.5,,8842,310,146,,,,,,39020,,, +790,USA,en,WTSK,,Tuscaloosa (AL),33.188056,-87.589722,,0.036,,7413,295,146,,,,,,43215,,, +790,B,pt,ZYL311 Rdio Treze de Junho,,Mantena (MG),-18.769394,-40.980067,,0.5,,9114,225,147,,,,,,36901396,,, +790,MEX,es,XENT-AM R Frmula,,La Paz (bcs),24.163889,-110.315556,,0.75,,9554,305,147,,,,,,44460,,, +790,MEX,es,XERPC-AM R Ranchito,,Chihuahua (chi),28.609906,-106.050269,,0.4,,8907,305,147,,,,,,44699,,, +790,B,pt,ZYH761 Rdio Xavantes,,Ipameri (GO),-17.731647,-48.165894,,0.5,,9378,231,148,,,,,,36901387,,, +790,USA,,KBET,,Winchester (NV),36.11,-115.002222,,0.3,,8682,315,148,,,,,,38021,,, +790,ARG,,LT46 R Provincia,,Bernardo de Irigoyen (mn),-26.25,-53.616667,,1,,10479,231,149,,0900-0300,1234567,,,40198,,, +790,B,pt,ZYH771 Rdio Eldorado de Mineiros,,Mineiros (GO),-17.559878,-52.536606,,0.5,,9600,235,149,,,,,,36901386,,, +790,B,pt,ZYK546 Rdio Cultura Araraquara,,Araraquara (SP),-21.820144,-48.208444,,0.5,,9773,229,149,,,,,,36901384,,, +790,USA,,KSPD,,Boise (ID),43.565833,-116.336944,,0.061,,8045,320,150,,,,,,39403,,, +790,USA,,KXXX,,Colby (KS),39.393056,-101.001667,,0.024,,7669,308,150,,,,5,,39833,,, +790,B,pt,ZYL279 Rdio Sociedade Ponte Nova,,Ponte Nova (MG),-20.411928,-42.905008,,0.25,,9370,226,151,,,,,,36901385,,, +790,B,pt,ZYL314 Rdio Tropical,,Lagoa da Prata (MG),-20.002336,-45.523556,,0.25,,9460,228,151,,,,,,36901381,,, +790,MEX,es,XEGAJ-AM R Frmula 1,,Guadalajara (jal),20.666439,-103.360094,,0.25,,9471,298,151,,,,,,44043,,, +790,ARG,,LV19 R Malargue,,Malargue (mz),-35.466667,-69.566667,,1.5,,12195,237,152,,1100-0400,1234567,,,40242,,, +790,USA,en,KEJY,,Eureka (CA),40.8025,-124.138889,,0.11,,8637,324,152,,,,9969,,39759,,, +790,B,pt,ZYK538 Rdio Brasil,,Adamantina (SP),-21.703889,-51.064444,,0.25,,9912,232,153,,,,,,36901391,,, +790,B,pt,ZYJ789 Rdio Videira,,Videira (SC),-26.997222,-51.193611,,0.25,,10422,229,154,,,,,,36901380,,, +790,B,pt,ZYK285 Rio Pardo AM,,Rio Pardo (RS),-29.969444,-52.395,,0.25,,10765,228,156,,,,,,36901395,,, +790,USA,en,KNNV350,,Ovilla/105 Cockrell Hill Road (TX),32.527917,-96.889444,,0.01,,8031,300,157,,,,,,20010492,,, +790,USA,en,WQEV743,,South Lake/Bicentennial Park (TX),32.945,-97.154167,,0.01,,8011,301,157,,,,,,20010493,,, +790,USA,en,WPED339,,Richmond (CA),37.928528,-122.34275,,0.01,,8842,321,163,,,,,,20010491,,, +790,USA,en,WPEI436,,Pittsburg (CA),38.027681,-121.861022,,0.01,,8812,321,163,,,,,,20010494,,, +791,RUS,,SU,b,Belozersk / Ozyorsk,60.0625,37.708333,,0.025,,2108,53,94,,,,8,L393 U407 20.0s,IDx2,85750,, +792,D,de,Funkhaus Europa,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,1500-1900,....5..,9995,,438,,, +792,D,de,Funkhaus Europa,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,1500-2000,1234...,9995,,438,,, +792,D,de,Hamburger Hafenkonzert,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0500-0700,......7,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0000-0500,......7,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0000-1500,12345..,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0000-2400,.....6.,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,0700-2400,......7,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,1900-2400,....5..,9995,,438,,, +792,D,de,NDR Info,,Lingen-Damaschke (nds),52.535,7.353056,,5,,80,53,26,,2000-2400,1234...,9995,,438,,, +792,F,fr,France Info,,Limoges/Nieul (87),45.933056,1.161944,,300,,786,211,40,,0000-2400,1234567,0,,440,,, +792,E,es,SER,,Sevilla/EAJ5 (AND-SE),37.230833,-5.978889,,50,,1917,215,59,,0000-2400,1234567,9984,,439,,, +792,G,en,BBC R Foyle,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,1,,963,295,67,,0000-2400,1234567,9999,,441,,, +792,G,en,Gold,,Kempston (EN-BEF),52.106667,-0.489167,,0.28,,471,273,67,,0000-2400,1234567,9999,,442,,, +792,IRN,fa,IRIB R Zanjan,,Zanjan (znj),36.595472,48.686111,,50,,3708,101,77,,0230-2130,1234567,9,,1785,,, +792,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400025,,, +792,ARS,ar,BSKSA Al-Quran al-Karim/Pilgrimage,,Jeddah/Al-Nuzla (mkh),21.384222,39.420211,,50,,4435,128,84,,0000-2400,1234567,,,437,,, +792,YEM,ar,YGCRT Aden R,,Aden/Al-Hiswah (adn),12.8211,44.912839,,100,30,5552,128,93,,0300-0800,1234567,,,447,,, +792,YEM,ar,YGCRT Aden R,,Aden/Al-Hiswah (adn),12.8211,44.912839,,100,30,5552,128,93,,1100-2130,1234567,,,447,,, +792,RUS,ru,R Rossii,,Abakan/RV68 (RK),53.708889,91.475,,25,,5352,52,97,,2200-1800,1234567,986,,46892,,, +792,IND,,AIR West,,Pune A (MH),18.501111,73.947778,,100,105,6869,96,106,,0000-0500,1234567,,,48284,,, +792,IND,,AIR West,,Pune A (MH),18.501111,73.947778,,100,105,6869,96,106,,0700-1000,1234567,,,48284,,, +792,IND,,AIR West,,Pune A (MH),18.501111,73.947778,,100,105,6869,96,106,,1200-1740,1234567,,,48284,,, +792,NPL,,R Nepal,,Kathmandu (bag),27.646844,85.306042,,100,,6883,80,106,,2315-1722,1234567,,,48307,,, +792,CHN,,rmqi RGD,,rmqi/Hongguangshan (XJ),45.886389,87.602222,,1,,5648,63,113,,,,,,36200818,,, +792,RUS,ru,R Rossii,,Aleksandrovsk-Sachalinskiy (SL),50.890833,142.123056,,50,,7831,28,118,,1800-1400,1234567,,,46891,,, +792,CHN,zh,Guangxi RGD Xinwen,,Nanning/GXTS101 (GX),22.792222,108.191667,,100,,8789,67,123,,0000-2400,1234567,,,48280,,, +792,KOR,ko,HLSQ SBS Love FM,,Seoul/Goyang (seo),37.638889,126.801944,,50,,8490,45,125,,0000-2400,1234567,,,48306,,, +792,CHN,,Chengdu RGD News,,Chengdu/SCTS504 (SC),30.599722,104.098611,,10,,7858,65,126,,,,,,48277,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Guilin/GXTS240 (GX),25.396278,110.323667,,50,,8692,64,126,,0000-2400,1234567,,,36200822,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Liuzhou/GXTS238 (GX),24.39875,109.344889,,50,,8719,65,126,,0000-2400,1234567,,,36200820,,, +792,CHN,zh,Shanghai Dongfang GD Dushi 792,,Shanghai/Minhang (SH),31.109167,121.514722,,50,,8824,52,126,,0000-2400,1234567,,,48281,,, +792,CHN,,Shenyang RGD News,,Shenyang (LN),41.748056,123.385,,10,,7948,45,127,,,,,,48282,,, +792,CHN,zh,Ordos=Eerodusi RGD,,Otog (NM),39.1,107.983333,,1,,7371,56,131,,,,,,48278,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Fangcheng (GX),21.766667,108.383333,,10,,8891,67,133,,0000-2400,1234567,,,36200823,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Pingxiang (GX),22.097778,106.752278,,10,,8759,68,133,,0000-2400,1234567,,,36200819,,, +792,THA,th,Wor. Por. Thor.,,Bangkok/Phra Khanong (bmp),13.693736,100.607667,,10,,9092,78,134,,0000-2400,1234567,,,48318,,, +792,PHL,,DWGV-AM Radyo Centro,,Angeles City (pam),15.133333,120.583333,,20,,10242,62,135,,2100-????,1234567,,,48311,,, +792,TWN,,Han Sheng Kuangpo Tientai,,Hualien (HL),23.982206,121.61285,,10,,9486,56,135,,2100-1600,1234567,,,48319,,, +792,CHN,,Xinmi RGD,,Xinmi (HE),34.516667,113.366667,,1,,8069,56,138,,,,,,48283,,, +792,CHN,zh,Zhengzhou RGD Female Space-Time,,Zhengzhou/HETS804 (HE),34.778056,113.579444,,1,,8058,55,138,,,,,,36201104,,, +792,J,,NHK R 1,,Enbetsu (hok),44.716667,141.8,,1,,8433,31,141,,0000-2400,1234567,,,48296,,, +792,PHL,,DXBN-AM Radyo ng Bayan,,Butuan City/Doongan (agn),8.95,125.533333,,10,,11112,61,141,,2055-????,1234567,,,48312,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Hechi (GX),24.7,108.033333,,1,,8612,66,142,,0000-2400,1234567,,,36200821,,, +792,PHL,,DWES-AM,,Narra (plw),9.283333,118.416667,,5,,10644,67,142,,,,,,48313,,, +792,CHN,zh,Guangxi RGD Xinwen Zhonghe Guangbo,,Yulin/GXTS241 (GX),22.673889,110.195,,1,,8924,65,143,,0000-2400,1234567,,,36200817,,, +792,PHL,,DYRR-AM,,Ormoc City/Bantigue (lyt),11.016667,124.566667,,5,,10862,61,143,,2100-1600,1234567,,,48314,,, +792,J,,NHK R 1,,Takada (chu-nii),37.1,138.283333,,1,,9054,37,144,,0000-2400,1234567,,,48303,,, +792,J,,NHK R 1,,Takayama (chu-gif),36.133333,137.25,,1,,9106,38,144,,0000-2400,1234567,,,48304,,, +792,PHL,,DXPD-AM,,Pagadian City (zds),7.816667,123.416667,,5,,11089,64,144,,,,,,48315,,, +792,J,,NHK R 1,,Naze (kyu-oki),28.4,129.5,,1,,9495,48,145,,0000-2400,1234567,,,48301,,, +792,TWN,,Keelung Kuangpo Tientai,,Keelung=Chi-Lung (KLS),25.1225,121.744722,,1,,9388,55,145,,0000-2400,1234567,,,48320,,, +792,J,ja,NHK R 1,,Esashi (hok),41.866667,140.15,,0.5,,8656,33,146,,0000-2400,1234567,,,48297,,, +792,INS,id,PM7CLQ SRJS-R.Suara Riajaya Santosa,,Baturaja (SS-oku),-4.133333,104.166667,,1,,10900,86,150,,,,,,48285,,, +792,INS,id,PM8CNW R.Amanda/R.Dwianda,,Gadingrejo (LP-tan),-5.383333,105.016667,,1,,11067,87,151,,,,,,35400033,,, +792,INS,id,R As Syafi'iyah,,Jakarta/Tebet (JK-kjt),-6.233333,106.85,,1,,11266,86,151,,,,97,,48288,,, +792,AUS,en,4RN ABC National,,Brisbane/Bald Hills (QLD),-27.311586,153.017467,,25,,16107,58,153,,0000-2400,1234567,20,,48276,,, +792,J,,NHK R 1,,Iwaizumi (toh-iwa),39.85,141.783333,,0.1,,8918,33,153,,0000-2400,1234567,,,48299,,, +792,INS,id,PM2DHE R Idola,,Pancor (NB),-8.666667,116.516667,,1,,12134,79,154,,,,,,48292,,, +792,J,,NHK R 1,,Imabari (shi-ehi),34.052222,133.018056,,0.1,,9123,42,154,,0000-2400,1234567,,,48298,,, +792,J,,NHK R 1,,Ozu (shi-ehi),33.516667,132.566667,,0.1,,9153,43,154,,0000-2400,1234567,,,48302,,, +792,J,,NHK R 1,,Toujou (Tojo) (chg-hir),34.9,133.266667,,0.1,,9052,42,154,,0000-2400,1234567,,,48305,,, +792,INS,id,RKPD Jombang,,Jombang (JI),-7.533333,110.516667,,0.5,,11630,83,155,,2150-1600,1234567,2,,48289,,, +792,NZL,en,1XSR R Sport,,Hamilton/Eureka (WKO),-37.691878,175.404903,,5,,18197,32,167,,0000-2400,1234567,,,48308,,, +795,UKR,,N,b,Donetsk (DO),48.0625,37.708333,,0.025,,2259,89,96,,,,,U1010 15.0s,IDx2 + 12 gap,85751,, +795,UKR,,O,b,Donetsk (DO),48.0625,37.791667,,0.025,,2265,89,96,,,,0,L1000 U1000 ,85752,,, +795,UZB,,UH,b,Buxoro=Bukhara (bux),39.8125,64.458333,,0.025,,4557,84,119,,,,,L1014 ,85754,,, +797,RUS,,UK,b,Buturlinovka (VN),50.8125,40.625,,0.025,,2353,80,97,,,,,L1035 7.0s,IDx2,85755,, +797,RUS,,YUP,b,Buturlinovka (VN),50.8125,40.625,,0.025,,2353,80,97,,,,990,L1070 U1050 ,85756,,, +800,CAN,en,VOWR,,Saint John's (NL),47.571944,-52.752778,,2.5,,4153,287,95,,,,998,,40616,,, +800,CAN,en,CJAD,,Montral/Monte Lussier (QC),45.247222,-73.523056,,10,,5616,296,103,,,,4,,36138,,, +800,CAN,en,CKLW,,Windsor (ON),42.056944,-83.002778,,50,,6424,299,104,,,,15,,36337,,, +800,CAN,en,CJBQ,,Belleville (ON),43.968889,-77.419167,,10,,5944,297,106,,,,999,,36146,,, +800,BES,,PJB Trans World R,,Bonaire (bnr),12.107222,-68.285278,,500,135,7905,265,109,,,,9978,,40455,,, +800,CAN,en,CHAB,,Moose Jaw (SK),50.377222,-105.393889,,10,,6945,318,116,,,,,,36030,,, +800,B,pt,ZYH705 Rdio MEC,,Braslia (DF),-15.784686,-47.889256,,600,,9176,232,117,,,,,,36901401,,, +800,USA,,WNNW,i,Lawrence (MA),42.673889,-71.190556,,0.244,,5650,292,120,,,,1,,42489,,, +800,ALS,,KINY,,Juneau (AK),58.301389,-134.440556,,7.6,,7238,339,121,,0000-2400,1234567,2,,38623,,, +800,USA,,WLAD,,Danbury (CT),41.374167,-73.446389,,0.286,,5885,292,121,,,,,,42117,,, +800,USA,,WTMR,,Camden (NJ),39.909167,-75.1,,0.5,,6098,292,121,,,,,,43178,,, +800,VEN,,YVTB,,Maracaibo (zul),10.666667,-71.666667,,50,,8261,267,123,,,,,,45465,,, +800,B,pt,ZYH256 Palmares AM,,Macei/Stio Osis (AL),-9.490856,-35.606189,,10,,7933,224,126,,,,,,36901402,,, +800,B,pt,ZYI921 Rdio Antares,,Teresina (PI),-5.096517,-42.771447,,10,,7867,233,126,,,,,,36901405,,, +800,B,pt,ZYJ457 Rdio MEC,,Rio de Janeiro/Jardim la Luz (RJ),-22.800194,-43.069972,,100,,9612,225,126,,,,73,,36901406,,, +800,MEX,es,XEROK-AM R Caon,,Ciudad Jurez (chi),31.695544,-106.383611,,50,,8645,307,126,,,,9985,,44694,,, +800,USA,,WDUX,,Waupaca (WI),44.354167,-89.058056,,0.5,,6599,304,126,,,,,,41217,,, +800,USA,,WPEL,,Montrose (PA),41.854444,-75.863889,,0.135,,6002,294,126,,,,,,42665,,, +800,USA,,WVAL,,Sauk Rapids (MN),45.605,-94.139167,,0.85,,6780,308,126,,,,,,43277,,, +800,USA,en,KBRV,,Soda Springs (ID),42.644167,-111.611389,,10,,7916,317,126,,,,,,38091,,, +800,USA,,WCHA,,Chambersburg (PA),39.928056,-77.695556,,0.196,,6260,294,127,,,,,,40989,,, +800,USA,,WSVS,,Crewe (VA),37.195278,-78.166944,,0.27,,6499,291,128,,,,,,43086,,, +800,USA,,WDSC,,Dillon (SC),34.368889,-79.404722,,0.38,,6800,290,129,,,,,,41206,,, +800,USA,,WKBC,,North Wilkesboro (NC),36.187778,-81.141667,,0.308,,6766,293,130,,,,,,41959,,, +800,USA,,WPJM,,Greer (SC),34.949722,-82.245278,,0.438,,6934,292,130,,,,,,42698,,, +800,USA,,WDEH,,Sweetwater (TN),35.613611,-84.459167,,0.379,,7020,294,131,,,,,,41147,,, +800,USA,,WJAT,,Swainsboro (GA),32.581944,-82.356111,,0.5,,7132,291,131,,,,,,41839,,, +800,USA,,WVHU,,Huntington (WV),38.393056,-82.473333,,0.185,,6675,295,131,,,,,,43298,,, +800,DOM,,HIVM R Bonao,,Bonao (mnl),18.916667,-70.416667,,1,,7467,272,132,,1000-0400,1234567,,,37315,,, +800,USA,,WKZI,,Casey (IL),39.304444,-87.971389,,0.25,,6936,299,132,,,,,,42111,,, +800,CLM,es,HJBW,,Bucaramanga (sat),7.066667,-73.116667,,10,,8673,266,133,,,,,,37360,,, +800,SLV,es,YSAX R Mara,,San Salvador (ssl),13.716667,-89.2,,10,,9185,283,134,,,,,,45263,,, +800,USA,,KXIC,,Iowa City (IA),41.6875,-91.544167,,0.199,,6952,304,134,,,,,,39794,,, +800,CUB,es,R Progreso,,Manzanillo (gr),20.333333,-77.133333,,1,,7804,278,135,,,,,,36492,,, +800,USA,,KQCV,,Oklahoma City (OK),35.4125,-97.673889,,1,,7828,303,135,,,,,,39186,,, +800,USA,,WPLK,,Palatka (FL),29.651944,-81.592222,,0.334,,7323,288,135,,,,,,42704,,, +800,CAN,en,CKOR,,Penticton (BC),49.423611,-119.571944,,0.5,,7629,326,136,,,,,,36362,,, +800,USA,,WHOS,,Decatur (AL),34.598611,-87.006667,,0.215,,7260,295,136,,,,,,41680,,, +800,EQA,,HCML2,,Guayaquil (gua),-2.066667,-79.933333,,10,,9939,266,137,,,,,,37028,,, +800,USA,,KREI,,Farmington (MO),37.792222,-90.41,,0.15,,7204,300,137,,,,,,39237,,, +800,MEX,es,XEZV-AM,,Tlapa de Comonfort (gue),17.554278,-98.550367,,5,,9453,292,138,,,,,,45162,,, +800,USA,,KQAD,,Luverne (MN),43.650278,-96.171944,,0.08,,7048,308,138,,,,,,39184,,, +800,MEX,es,XEDD-AM La Tremenda,,Ojo de Agua (nvl),25.237419,-99.8367,,2.5,,8848,298,139,,,,,,43901,,, +800,MEX,es,XEZR-AM La Traviesa,,Zaragoza (coa),28.478611,-100.897578,,2,,8622,301,139,,,,,,45154,,, +800,PNR,es,Tropical 800,,Las Tablas (lsn),7.788611,-80.417778,,3,,9109,272,139,,,,,,52302,,, +800,USA,,WMGY,,Montgomery (AL),32.413333,-86.290278,,0.143,,7396,293,139,,,,,,42322,,, +800,B,pt,ZYK292 Universidade Santa Maria AM,,Santa Maria (RS),-29.697222,-53.806111,,10,,10812,229,140,,,,,,36901403,,, +800,CTR,,TIW R Unica,,San Jos (sjs),9.916667,-84.066667,,3,,9171,277,140,,0000-2400,1234567,,,40609,,, +800,USA,,KAGH,,Crossett (AR),33.134722,-91.946944,,0.24,,7684,298,140,,,,,,37921,,, +800,BOL,,CP265 R Libertad,,La Paz (lpz),-16.5,-68.116667,,5,,10435,248,141,,1000-0200,12345..,,,51967,,, +800,BOL,,CP265 R Libertad,,La Paz (lpz),-16.5,-68.116667,,5,,10435,248,141,,1000-2400,.....67,,,51967,,, +800,MEX,es,XEAN-AM R Alegra,,Ocotln (jal),20.366142,-102.833672,,2.5,,9466,297,141,,,,,,43718,,, +800,MEX,es,XEGX-AM Fiesta Mexicana,,San Luis de la Paz (gua),21.229167,-100.491889,,2.5,,9245,296,141,,,,,,44090,,, +800,USA,,KPDQ,,Portland (OR),45.4775,-122.750278,,0.5,,8128,325,141,,,,9973,,39134,,, +800,B,,ZYJ678,,Porto Velho (RO),-8.75,-63.916667,,2,,9470,249,142,,,,,,46141,,, +800,USA,,WSHO,,New Orleans (LA),29.845,-90.110833,,0.233,,7850,294,142,,,,,,43000,,, +800,HND,,HRMD,,Yoro (yor),15.166667,-87.166667,,1,,8922,282,143,,,,,,37799,,, +800,GTM,,TGYZ R Rosa,,Chiquimulilla (srs),14.066667,-90.366667,,1,,9231,284,144,,0000-2400,1234567,,,40560,,, +800,HND,,HRDL,,Comayagua (cmy),14.45,-87.616667,,1,,9015,282,144,,,,,,37746,,, +800,HND,,HRLP26,,Danli (elp),14.316667,-86.75,,1,,8969,281,144,,,,,,37790,,, +800,HND,,HRXS2,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37875,,, +800,MEX,es,XEQT-AM La Poderosa,,Veracruz (vcz),19.163889,-96.148056,,1,,9158,292,144,,,,,,44636,,, +800,NCG,,R 800,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,1000-0500,1234567,,,52197,,, +800,USA,en,WPIJ539,,Chicago (IL),41.977633,-87.894306,,0.01,,6719,302,144,,,,,,20010498,,, +800,USA,en,WPIJ539,,Chicago (IL),41.977633,-87.894306,,0.01,,6719,302,144,,,,,,20010501,,, +800,USA,en,WQCT264,,Chicago (IL),41.793083,-87.760969,,0.01,,6726,301,144,,,,,,20010497,,, +800,USA,en,WQCT264,,Chicago/5245 W 55th Street (IL),41.793083,-87.760969,,0.01,,6726,301,144,,,,,,20010502,,, +800,EQA,,HCFB1 R Sensacin,,Quito (pic),-0.316667,-79.15,,1,,9732,266,146,,,,902,,36931,,, +800,EQA,,HCFV1 Canal Tropic,,Quito (pic),-0.216667,-78.5,,1,,9679,266,146,,,,,,36944,,, +800,USA,en,KBFP,i,Bakersfield (CA),35.345556,-118.9925,,0.44,,8943,318,147,,,,1,,38255,,, +800,USA,en,KVOM,,Morrilton (AR),35.158889,-92.770278,,0.04,,7563,299,147,,,,,,39653,,, +800,BOL,,CP157 R Santa Clara,,Sorata (lpz),-14.75,-68.666667,,1,,10313,249,148,,0900-2400,1234567,,,36657,,, +800,PRG,,ZP27 R Mbaracay,,Saltos del Guaira (cyu),-24.066667,-54.316667,,1,,10311,233,148,,0900-0300,1234567,,,45522,,, +800,BOL,,R Churuquella,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,1000-0200,1234567,,,51968,,, +800,ARG,,LT43 R Mocovi,,Charata (cc),-27.216667,-61.2,,1,,10986,236,150,,0900-0300,1234567,,,40195,,, +800,MEX,,XESPN-AM,,Tijuana (bcn),32.51215,-117.015714,,0.25,,9120,315,150,,,,,,44388,,, +800,ARG,es,LU15 R Viedma,,Viedma (rn),-40.839892,-63.023697,,2,,12305,229,152,,0900-0300,1234567,972,,40209,,, +800,ARG,es,LV23 R Rio Atuel,,General Alvear (mz),-34.966667,-67.7,,1,,12046,236,154,,1000-0400,1234567,,,40247,,, +800,PRU,,OBX6A R Portena,,Miraflores/Alto Misti (are),-16.386111,-71.511111,,0.35,,10641,251,154,,,,,,40405,,, +800,USA,en,KDDD,,Dumas (TX),35.861667,-101.930556,,0.008,,8028,306,158,,,,,,38246,,, +800,USA,en,WPLT343,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010495,,, +800,USA,en,WPLT343,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010499,,, +800,USA,en,WPLT343,,Austin (TX),30.394347,-97.744722,,0.01,,8267,300,160,,,,,,20010496,,, +800,USA,en,WPLT343,,Austin (TX),30.394347,-97.744722,,0.01,,8267,300,160,,,,,,20010500,,, +801,D,de,Bayern Plus,,Mnchen-Ismaning (bay),48.255278,11.743333,,100,,572,136,43,,0000-2400,1234567,0,,453,,, +801,D,de,Bayern Plus,,Dillberg (bay),49.323611,11.380556,,20,,467,130,49,,0000-2400,1234567,0,,452,,, +801,E,es,RNE R Nacional,,Lugo/Arrieiras (Fontao/RNE) (GAL-LU),42.973911,-7.575722,,25,,1456,231,58,,0000-2400,1234567,,,458,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0625-0630,12345..,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0650-0700,12345..,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0800-0815,12345..,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1208-1300,12345..,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1230-1300,.....67,55,,457,,, +801,E,ca,RNE Rdio 4,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1400-1415,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0000-0625,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0000-1230,.....67,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0630-0650,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0700-0800,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,0815-1208,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1300-1400,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1300-2400,.....67,55,,457,,, +801,E,es,RNE R Nacional,,Girona/Campllong (CAT-GI),41.901139,2.847,,10,,1167,195,59,,1415-2400,12345..,55,,457,,, +801,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0000-2400,1234567,,,454,,, +801,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0000-2400,1234567,995,,456,,, +801,E,es,RNE R Nacional,,Ciudad Real/Almagro (RNE) (CAM-CR),38.866503,-3.721228,,20,,1667,212,61,,0000-2400,1234567,8,,459,,, +801,G,en,BBC R 5 Live,,Barnstaple (EN-DVN),51.048056,-4.114722,,2,,736,265,61,,0000-0400,12345..,1,,460,,, +801,G,en,BBC R 5 Live,,Barnstaple (EN-DVN),51.048056,-4.114722,,2,,736,265,61,,0000-0500,.....67,1,,460,,, +801,G,en,BBC R Devon,,Barnstaple (EN-DVN),51.048056,-4.114722,,2,,736,265,61,,0400-2400,12345..,1,,460,,, +801,G,en,BBC R Devon,,Barnstaple (EN-DVN),51.048056,-4.114722,,2,,736,265,61,,0500-2400,.....67,1,,460,,, +801,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0000-2400,1234567,1,,455,,, +801,JOR,ar,JRTV R Jordan,,Ajlun (ajl),32.308778,35.797167,,200,,3232,121,66,,0400-0805,1234567,9963,,462,,, +801,AZE,az,Azərbaycan R,,Pirsaat (hac),40.057317,49.061322,,150,,3491,95,70,,0200-2000,1234567,,,448,,, +801,TJK,,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,1200-1400,1234567,,,2363,,, +801,TJK,en,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,0100-0200,1234567,,,2363,,, +801,TJK,en,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,1600-1900,1234567,,,2363,,, +801,TJK,hi,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,1500-1600,1234567,,,2363,,, +801,TJK,ur,Voice of Russia,,Orzu (ktl),37.522833,68.800278,,1000,,5010,83,77,,1400-1500,1234567,,,2363,,, +801,BHR,ar,R Bahrain,,Abu Hayan (ajn),26.035,50.624861,,100,,4682,111,84,,0000-2400,1234567,,,451,,, +801,NIG,,Yobe BC,,Damaturu (yob),11.689194,11.942411,,20,,4522,172,89,,0500-2300,1234567,,,2396,,, +801,ETH,xx,Amhara R,,Zege (amh),11.676167,37.315317,,100,,5280,137,90,,0300-0700,1234567,,,9600017,,, +801,ETH,xx,Amhara R,,Zege (amh),11.676167,37.315317,,100,,5280,137,90,,1400-1900,1234567,,,9600017,,, +801,AZE,az,Azərbaycan R,,Guba=Quba (qub),41.366667,48.527778,,1,,3369,94,91,,0200-2000,1234567,,,449,,, +801,AZE,az,Azərbaycan R,,unknown,40,47.4,,1,,3382,97,91,,0100-1900,1234567,8,,47216,,, +801,IRN,fa,IRIB R Khorasan-e Razavi,,Kashmar (rkh),35.273031,58.482672,,10,,4469,94,92,,,,,,461,,, +801,SDN,,SRTC Sudan Nat. R,,Al-Fashir=El Fasher (ndf),13.633333,25.366667,,5,,4600,151,96,,,,,,47141,,, +801,NIG,,R Kebbi,,Zuru (kbb),11.425728,5.249581,,1,,4525,182,102,,0500-2300,1234567,,,2397,,, +801,IND,,AIR West,,Jabalpur (MP),23.196389,79.903056,,200,,6881,88,103,,0025-0430,123456,,,48349,,, +801,IND,,AIR West,,Jabalpur (MP),23.196389,79.903056,,200,,6881,88,103,,0025-0500,......7,,,48349,,, +801,IND,,AIR West,,Jabalpur (MP),23.196389,79.903056,,200,,6881,88,103,,0630-0945,1234567,,,48349,,, +801,IND,,AIR West,,Jabalpur (MP),23.196389,79.903056,,200,,6881,88,103,,1130-1742,1234567,,,48349,,, +801,CHN,ug,Kashgar RGD,,Kashgar=Kashi (XJ),39.416667,76,,1,,5359,76,111,,,,,,48334,,, +801,KRE,,KCBS Pyongyang Pangsong,,Hwadae (hab),40.85,129.433333,,500,,8312,41,113,,2100-1900,1234567,954,,48362,,, +801,CHN,,Yinchuan RGD,,Yinchuan (NX),38.5,106.2,,10,,7319,58,120,,,,,,48346,,, +801,TWN,,Han Sheng GD Kuanghua zhi Sheng,,Kuanyin=Guanin (TY),25.043889,121.094722,,250,,9358,56,121,,2100-1700,1234567,,,48376,,, +801,CHN,zh,Cangzhou RGD Story,,Cangzhou (HB),38.3,116.85,,25,,7927,51,122,,,,,,36201301,,, +801,CHN,,Tangshan JGD,,Tangshan (HB),39.666667,118.285333,,10,,7881,49,126,,2150-1630,1234567,,,48338,,, +801,CHN,,Zhujiang JGD Pearl R,,Maoming/GDTS731 (GD),21.631667,110.904444,,50,,9061,66,127,,,,,,48336,,, +801,CHN,,Yantai JGD,,Yantai (SD),37.5675,121.360556,,10,,8227,48,129,,2125-1530,1234567,,,48345,,, +801,CHN,zh,Hubei RGD Chutian Weixing,,Chongyang (HU),31.483333,111.383333,,10,,8220,59,129,,,,,,36200816,,, +801,CHN,,Hubei RGD Shenghuo Pindao,,Jingmen (HU),31.033333,112.2,,10,,8308,59,130,,,,,,48332,,, +801,INS,id,RRI Pro-4,,Medan/Padang Cermin (SU-med),3.549433,98.423456,,50,,9833,86,130,,0900-1500,1234567,,,48585,,, +801,INS,id,RRI Pro-4,,Medan/Padang Cermin (SU-med),3.549433,98.423456,,50,,9833,86,130,,2200-0235,1234567,,,48585,,, +801,CHN,,Hubei RGD Shenghuo Pindao,,Macheng (HU),31.183333,115.033333,,10,,8458,57,132,,,,,,36200812,,, +801,CHN,,Wenzhou JGD,,Wenzhou (ZJ),28.1,120.6,,10,,9050,54,134,,????-1606,1234567,,,48341,,, +801,CHN,,Lingyuan RGD,,Lingyuan/LNTS331 (LN),41.233333,119.4,,1,,7799,47,135,,,,,,36200813,,, +801,CHN,,Shaanxi Traffic Station,,Weinan (SA),34.607778,109.583611,,1,,7845,58,135,,,,,,36200811,,, +801,THA,th,Thor. Or. 015,,Chiang Rai/Phahonyothin Rd (cri),19.865,99.821667,,5,,8504,75,135,,2200-1502,1234567,,,48372,,, +801,CHN,,Fuyang JGD,,Fuyang (AH),32.929167,115.804167,,3,,8346,55,136,,,,,,48327,,, +801,CHN,en,CRI Easy FM,,Tianjin (TJ),39.15,117.15,,1,,7868,50,136,,0000-2400,1234567,,,48339,,, +801,THA,th,Mor. Thor. Bor. Thii-Saam-Sip-Et 31,,Nakhon Sawan/Fort Jiraprawat (nsn),15.670833,100.127778,,5,,8888,77,136,,2100-1700,1234567,,,48373,,, +801,CHN,,Liaocheng JGD,,Liaocheng (SD),36.433333,115.966667,,1,,8044,53,137,,,,,,36200814,,, +801,CHN,,Xinxiang RGD,,Xinxiang (HE),35.283611,113.923056,,1,,8033,55,137,,????-1500,1234567,,,48342,,, +801,THA,th,Thor. Or. 08,,Ubon Ratchathani (urt),15.326178,104.829417,,5,,9229,74,137,,2200-1302,1234567,,,48374,,, +801,CHN,,Liaoning RGD Jingji Tai,,Fengcheng/LNTS313 (LN),40.45,124.066667,,1,,8099,45,138,,,,,,36200815,,, +801,CHN,,Zibo JGD/CRI,,Zibo (SD),36.8,118.05,,1,,8124,51,138,,,,,,48347,,, +801,PHL,,DZNC-AM Bombo Radyo,,Cauayan (isa),16.933333,121.766667,,10,,10146,60,138,,,,,,48366,,, +801,CHN,,Jining RGD Jiaotong,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,,,,,48333,,, +801,CHN,en,CRI Easy FM,,Weifang (SD),36.716667,119.1,,1,,8187,50,139,,0000-2400,1234567,,,48340,,, +801,CHN,,Linyi JGD Traffic,,Linyi (SD),35.066667,118.333333,,1,,8294,52,140,,,,,,48335,,, +801,CHN,,Xuzhou JGD,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,1,,8308,53,140,,0950-1605,1234567,,,48343,,, +801,CHN,,Xuzhou JGD,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,1,,8308,53,140,,2115-0500,1234567,,,48343,,, +801,MLA,ms,RTM Sabah FM,,Kudat (sbh),6.913406,116.723775,,10,,10753,70,140,,2030-1600,1234567,,,48363,,, +801,CHN,,Anhui RGD Xiqu Guangbo,,Hefei/Motancun (AH),31.794111,117.379889,,1,,8536,55,142,,,,,,48328,,, +801,CHN,,Huai'an RGD,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,1,,8471,52,142,,,,,,48330,,, +801,CHN,,Jiangsu RGD Xinwen Pinl,,Zhenjiang (JS),32.216667,119.433333,,1,,8611,53,142,,,,,,36200808,,, +801,CHN,,Yangzhou JGD,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,1,,8589,53,142,,2130-1530,1234567,,,48344,,, +801,CHN,zh,Nanjing RGD Tiyu Pinl,,Nanjing/Gulizhen (JS),31.868167,118.671889,,1,,8600,54,142,,2050-1600,1234567,,,48337,,, +801,INS,id,RRI Pro-1,,Semarang (JT-sem),-7.039117,110.551058,,10,,11589,83,142,,2200-1700,1234567,0,,48351,,, +801,PHL,,DWFA-AM,,Sorsogon City (sor),12.966667,124,,5,,10646,60,142,,,,,,48370,,, +801,PHL,,DYKA-AM Radyo Totoo,,San Jose (atq),10.733333,121.933333,,5,,10729,63,142,,2130-1130,1234567,,,48369,,, +801,CHN,,Chizhou RGD,,Chizhou (AH),30.65,117.483333,,1,,8644,55,143,,,,,,48326,,, +801,GUM,,KTWG,,Asan (GU),13.451944,144.708889,,10,,11699,42,143,,2000-1300,1234567,,,39551,,, +801,PHL,,DYWC-AM R Veritas,,Dumaguete (ngo),9.266667,123.3,,5,,10948,63,143,,2100-1600,1234567,,,48367,,, +801,CHN,,Xiamen RGD Voice of Minnan,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,1,,9229,58,144,,,,,,36200810,,, +801,PHL,,DXES-AM Bombo Radyo,,General Santos City (sco),6.105833,125.2,,5,,11356,63,145,,,,,,48368,,, +801,TWN,,Chien Kuo Kuangpo Tientai,,Hsinhua (TN),23.07095,120.356678,,1,,9498,58,145,,????-1615,......7,,,48377,,, +801,TWN,,Chien Kuo Kuangpo Tientai,,Hsinhua (TN),23.07095,120.356678,,1,,9498,58,145,,????-1700,123456,,,48377,,, +801,PHL,,DXBL-AM Sonshine R,,Bislig/Mangagoy (sds),8.183333,126.366667,,1,,11233,61,151,,,,,,48365,,, +801,J,,HBC Hokkaido Hoso,,Engaru (hok),44.066667,143.516667,,0.1,,8558,30,152,,0000-2400,1234567,,,48353,,, +801,J,ja,JOQN HBC, Hokkaido Hoso,,Kitami (hok),43.816667,143.866667,,0.1,,8595,30,152,,0000-2400,1234567,,,48357,, +801,J,ja,JOTN, HBC, Hokkaido Hoso,,Tomakomai (hok),42.666667,141.616667,,0.1,,8631,32,152,,0000-2400,1234567,,,48360, +801,J,,ABS Akita Hoso,,Kazuno (toh-aki),40.183333,140.816667,,0.1,,8849,34,153,,0000-2400,1234567,,,48355,,, +801,J,ja,ABS,,Higashinaruse (toh-aki),39.333333,140.65,,0.1,,8927,34,153,,,,,,31400060,,, +801,J,ja,JOQS HBC, Hokkaido Hoso,,Nemuro (hok),43.35,145.566667,,0.1,,8699,29,153,,0000-2400,1234567,,,48358,, +801,J,,JOFL RFC, R Fukushima,,Haramachi (toh-fuk),37.65,140.966667,,0.1,,9107,35,154,,0000-2400,1234567,,,48354,, +801,J,,JOIO TBC, Tohoku Hoso,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,0000-2400,1234567,,,48356,, +801,J,,Tokai Hoso,,Ena (chu-gif),35.466667,137.416667,,0.1,,9179,38,154,,0000-2400,1234567,,,48352,,, +801,J,,CBC Chubu-Nippon Hoso,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,0000-2400,1234567,,,48359,,, +801,AUS,,4QY ABC Far North QLD,,Cairns/Kamma (QLD),-17.054167,145.777778,,2,,14746,58,160,,0000-2400,1234567,,,48323,,, +801,AUS,it,2RF Rete Italia,,Gosford/Chittaway Point (NSW),-33.327556,151.466389,,5,,16532,67,162,,0000-2400,1234567,,,48324,,, +801,AUS,,5RM,,Renmark/Loxton (Berri) (SA),-34.227889,140.644444,,2,,15896,80,163,,0000-2400,1234567,,,48322,,, +801,NZL,en,2XL NZs Rhema,,Nelson (NSN),-41.198056,173.338889,,1,,18449,44,175,,0000-2400,1234567,,,48364,,, +805,UKR,,CN,b,Chernivtsi (CV),48.3125,25.958333,,0.025,,1449,99,87,,,,,L1010 15.0s,IDx2,85757,, +805,UKR,,CR,b,Chernivitsi (CV),48.3125,25.958333,,0.025,,1449,99,87,,,,1,L1000 U998 15.0s,IDx2,85758,, +806,RUS,,O,b,Chkalovsky,55.895833,37.958333,,0.025,,2085,66,94,,,,,,86789,,, +810,MKD,bg,R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,1900-1930,123456,25,,468,,, +810,MKD,el,R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,1930-2000,123456,25,,468,,, +810,MKD,mk,Makedonsko R 1,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,0000-1900,123456,25,,468,,, +810,MKD,mk,Makedonsko R 1,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,0000-2400,......7,25,,468,,, +810,MKD,mk,Makedonsko R 1,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,2100-2400,123456,25,,468,,, +810,MKD,sq,R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,2000-2030,123456,25,,468,,, +810,MKD,sr,R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1200,,1637,128,43,,2030-2100,123456,25,,468,,, +810,G,en,BBC R Scotland,,Westerglen (SC-STL),55.975556,-3.816111,,100,,793,307,45,,0600-2400,1234567,0,,466,,, +810,G,en,BBC WS,,Westerglen (SC-STL),55.975556,-3.816111,,100,,793,307,45,,0000-0600,1234567,0,,466,,, +810,G,en,BBC R Scotland,,Burghead (SC-MOR),57.699417,-3.468,,100,,884,319,46,,0600-2400,1234567,0,,465,,, +810,G,en,BBC WS,,Burghead (SC-MOR),57.699417,-3.468,,100,,884,319,46,,0000-0600,1234567,0,,465,,, +810,E,es,SER,,Madrid/Pozuelo de Alarcn (EAJ2/7) (MAD-M),40.428406,-3.808708,,50,,1515,215,55,,0000-2400,1234567,9993,,463,,, +810,G,en,BBC R Scotland,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,5,,780,319,58,,0600-2400,1234567,0,,464,,, +810,G,en,BBC WS,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,5,,780,319,58,,0000-0600,1234567,0,,464,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0300-0830,1234567,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0900-0930,1234567,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1000-1300,1234567,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1400-1430,.....67,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1500-1600,1234567,,,470,,, +810,RUS,en,VOA Music Mix,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1800-1900,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0830-0900,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0930-1000,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1430-1500,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1600-1700,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1730-1800,1234567,,,470,,, +810,RUS,en,VOA Special English,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1900-2000,1234567,,,470,,, +810,RUS,en,Voice of America,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1700-1730,1234567,,,470,,, +810,RUS,ru,Voice of America,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1300-1400,1234567,,,470,,, +810,RUS,ru,Voice of America,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,1400-1430,12345..,,,470,,, +810,IRN,fa,IRIB R Lorestan,,Khorramabad (lrn),33.450169,48.320878,,100,,3923,105,76,,0000-2400,1234567,,,1786,,, +810,D,de,Welle 370,,Knigs Wusterhausen (brb),52.3039,13.620489,,0.009,,492,85,82,,1100-2000,9999999,,,2000064,,, +810,ARS,ar,BSKSA Idha'atu-i Jeddah,,Hafar al-Batin=Hafrul Baten (shy),28.436153,46.067722,,20,,4188,113,86,,0300-2200,1234567,,,47075,,, +810,IRQ,ar,R Umm al-Qura,,Baghdad (bgh),33.35,44.383333,,2.5,,3674,110,90,,0400-1830,1234567,,,516,,, +810,UAE,,Abu Dhabi FM/Al-Quran al-Karim,,Abu Dhabi/Al-Maqtaa (abd),24.416667,54.483333,,50,,5068,108,91,,0000-2400,1234567,9967,,472,,, +810,CAN,fr,CJVA,,Caraquet (NB),47.768056,-65.052778,,10,,4927,294,96,,,,9849,,36231,,, +810,IND,,AIR West,,Rajkot A (GJ),22.367056,70.692814,,300,,6322,96,96,,0025-0430,1234567,,,48389,,, +810,IND,,AIR West,,Rajkot A (GJ),22.367056,70.692814,,300,,6322,96,96,,0700-1015,1234567,,,48389,,, +810,IND,,AIR West,,Rajkot A (GJ),22.367056,70.692814,,300,,6322,96,96,,1200-1740,1234567,,,48389,,, +810,USA,en,WGY,i,Schenectady (NY),42.793611,-74.01,,50,,5819,294,98,,,,0,,41587,,, +810,RUS,ru,Avtoritetnoye R,,Krasnoyarsk (KN),56.021739,92.879256,,10,,5282,49,100,,2200-1700,1234567,,,47023,,, +810,NPL,,R Nepal,,Dipayal Silgadhi (set),29.245117,80.926794,,10,,6459,82,112,,2315-1720,1234567,,,48404,,, +810,PTR,,WKVM,,San Juan (PR),18.363056,-66.136944,,50,,7222,268,112,,0900-0500,1234567,,,42088,,, +810,CAN,xx,CKJS,,Winnipeg (MB),49.735278,-97.193611,,10,,6606,313,113,,,,,,36327,,, +810,USA,,WMJH,,Rockford (MI),43.118056,-85.579444,,3.6,,6495,301,116,,,,,,42336,,, +810,RUS,ru,R Rossii,,Razdolnoye (PM),43.535,131.934722,,150,,8167,38,117,,2000-1700,1234567,,,46896,,, +810,USA,,WPIN,,Dublin (VA),37.131944,-80.618611,,4.2,,6659,293,117,,,,,,42693,,, +810,USA,,WEKG,,Jackson (KY),37.578056,-83.405278,,5,,6797,295,118,,,,,,41276,,, +810,USA,en,KTBI r:KSPO,,Ephrata (WA),47.356111,-119.482222,,50,,7820,324,118,,,,19,,39456,,, +810,CHN,,Xi'an RGD,,Xi'an (SA),34.196389,108.990556,,50,,7845,59,119,,,,,,48387,,, +810,CHN,,Zhejiang zhi Sheng,,Hangzhou/Gouzhuang (ZJ),30.379444,120.092222,,200,,8814,54,120,,0000-2400,1234567,,,48382,,, +810,CLM,es,HJCY Caracol Colombia,,Bogot D. C. (bdc),4.66315,-74.220139,,250,,8959,265,120,,,,97,,37383,,, +810,USA,,WQIZ,,St. George (SC),33.1475,-80.563056,,5,,6972,290,120,,,,,,42775,,, +810,USA,,WEDO,,McKeesport (PA),40.364167,-79.812778,,1,,6359,295,121,,,,,,41253,,, +810,USA,,WHB,,Kansas City (MO),39.305833,-94.575,,5,,7321,304,123,,,,9998,,41602,,, +810,CUB,es,R Progreso,,Guantnamo/CTOM1 (gu),20.1419,-75.254311,,10,,7693,276,124,,,,,,36591,,, +810,B,pt,ZYH589 Rdio Verdes Mares,,Fortaleza (CE),-3.785294,-38.466836,,5,,7509,230,125,,,,,,36901421,,, +810,CHN,,Chaoyang RGD Xiangcun Tai,,Chaoyang (LN),41.566667,120.466667,,10,,7822,47,125,,2155-1305,1234567,,,48380,,, +810,KRE,,KCBS Pyongyang Pangsong,,Kaesong (hwb),37.985556,126.572222,,50,,8447,45,125,,2100-1800,1234567,,,48401,,, +810,USA,,WTHV,,Hahira (GA),30.873611,-83.251944,,2.5,,7329,290,126,,,,,,43135,,, +810,USA,,WYRE,,Annapolis (MD),38.970278,-76.507778,,0.25,,6258,292,126,,,,,,43543,,, +810,USA,en,KGO,,San Francisco (CA),37.526389,-122.100556,,50,,8871,321,126,,,,9999,,38503,,, +810,MOZ,pt,Emisso Provincial de Gaza,,Xai-Xai (gza),-25.069583,33.679944,,50,,8983,155,127,,0000-2210,......7,0,,2399,,, +810,MOZ,pt,Emisso Provincial de Gaza,,Xai-Xai (gza),-25.069583,33.679944,,50,,8983,155,127,,0000-2400,.....6.,0,,2399,,, +810,MOZ,pt,Emisso Provincial de Gaza,,Xai-Xai (gza),-25.069583,33.679944,,50,,8983,155,127,,0250-2210,1234...,0,,2399,,, +810,MOZ,pt,Emisso Provincial de Gaza,,Xai-Xai (gza),-25.069583,33.679944,,50,,8983,155,127,,0250-2400,....5..,0,,2399,,, +810,J,en,AFN-Eagle 810,,Tokyo/Yokota Air Base (Wako) (kan-tok),35.776389,139.614167,,50,,9239,37,128,,0000-2400,1234567,999,,48400,,, +810,MWI,en,MBC R 1,,Bangula (ckw),-16.579231,35.106628,,10,,8126,151,128,,0253-2200,1234567,,,2398,,, +810,CHN,,Liaoning RGD Wenyi Guangbo,,Panjin/LNTS315 (LN),41.203278,122.029139,,5,,7932,46,129,,,,,,36200803,,, +810,CHN,,Liaoyuan RGD,,Liaoyuan (JL),42.866667,125.166667,,5,,7930,43,129,,,,,,48385,,, +810,KOR,ko,HLCT MBC,,Daegu/Dasan (dae),35.827778,128.45,,20,,8739,45,130,,0000-2400,1234567,,,48402,,, +810,THA,th,Sor. Wor. Thor. (R Thailand),,Nong Khai/Phon Phisai Rd (nki),17.886986,102.773972,,20,,8870,74,130,,2200-1600,1234567,,,48413,,, +810,BAH,en,ZNS-3 R Bahamas,,Freeport (fpt),26.543611,-78.666389,,1,,7387,283,131,,0000-2400,1234567,24,,35670,,, +810,DOM,,HIRN R Novel,,Santiago de los Caballeros (sto),19.45,-70.7,,1,,7441,272,131,,,,,,52236,,, +810,USA,,WSYW,,Indianapolis (IN),39.725556,-86.185556,,0.25,,6796,299,131,,,,,,43096,,, +810,CHN,zh,Ulanqab RGD Jiaotong Wenyi,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,,,,,48383,,, +810,DOM,es,HIAV R Ban,,Ban (pva),18.282739,-70.352964,,1,,7517,271,132,,1100-0300,1234567,,,37213,,, +810,URG,es,CX14 R El Espectador,,Santiago Vzquez (mo),-34.797194,-56.325806,,100,,11416,228,132,,0830-0600,1234567,7,,36788,,, +810,USA,,KLVZ,,Brighton (D) (CO),40.028056,-104.8225,,2.2,,7816,311,132,,,,9990,,20012592,,, +810,USA,en,WCKA,,Jacksonville (AL),33.849444,-85.762778,,0.5,,7244,294,132,,,,,,41017,,, +810,B,pt,ZYH528 Rdio Nossa Senhora de Guadalupe,,Riacho de Santana (BA),-13.601575,-42.945289,,10,,8704,229,133,,,,,,36901420,,, +810,GTM,,TGMM R Moapn,,Santa Elena (pet),17.05,-89.166667,,10,,8891,285,133,,,,,,40514,,, +810,USA,en,WXFO,,Royston (GA),34.280556,-83.119167,,0.23,,7043,292,134,,,,,,40857,,, +810,TWN,,Kuo Sheng Kuangpo Tientai,,Changhua (CH),24.079167,120.548611,,10,,9416,57,135,,,,,,48415,,, +810,USA,en,WRSO,,Orlovista (FL),28.571667,-81.433889,,0.4,,7402,287,135,,,,9992,,41336,,, +810,CHN,,Tieling RGD Xiangcun Tai,,Tieling/LNTS325 (LN),42.353611,123.901667,,1,,7918,44,136,,,,,,36200802,,, +810,THA,th,Sor. Wor. Thor. (R Thailand),,Trang/Sikao Road (trg),7.560556,99.584722,,10,,9560,83,136,,2100-1500,1234567,,,48414,,, +810,USA,,WCTA,,Alamo (TN),35.799722,-89.122222,,0.25,,7291,298,136,,,,,,41094,,, +810,VEN,,R Piritu,,Puerto Pritu (azg),10.066667,-65.05,,1,,7863,261,136,,,,,,51662,,, +810,EQA,,HCDE2,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,36897,,, +810,USA,,WSJC,,Magee (MS),31.866667,-89.693056,,0.5,,7653,295,137,,,,,,43008,,, +810,PHL,tl,DZRJ-AM Radyo Bandido,,Novaliches/Quirino Highway (ncr),14.741667,121.075,,10,,10307,62,138,,2100-1700,1234567,45,,48407,,, +810,CHN,,Zhumadian RGD,,Zhumadian (HE),32.915,114.021389,,1,,8247,56,139,,,,,,36200801,,, +810,USA,,KLVZ,,Brighton (N) (CO),39.843333,-104.953889,,0.43,,7839,311,139,,,,,,38792,,, +810,CAN,en,CBPY,,Whitehorse (YT),60.692222,-134.971389,,0.05,,7010,340,140,,,,,,20109221,,, +810,B,pt,ZYJ336 Rdio Esperana,,Prudentpolis (PR),-25.230833,-50.980556,,5,,10243,230,141,,,,,,36901419,,, +810,USA,,WJJQ,,Tomahawk (WI),45.490833,-89.726667,,0.013,,6548,305,141,,,,,,41888,,, +810,CHN,,Zhejiang zhi Sheng,,Dongyang (ZJ),29.266667,120.233333,,1,,8923,54,143,,,,,,36200804,,, +810,CHN,,Zhejiang zhi Sheng,,Quzhou (ZJ),28.981778,118.833222,,1,,8871,55,143,,,,,,36200048,,, +810,PNR,es,HOG R 10,,Villa Lorena (pnm),9.041944,-79.5125,,1,,8938,272,143,,,,,,37684,,, +810,USA,,KBHB,,Sturgis (SD),44.423333,-103.426944,,0.06,,7361,313,143,,,,,,38029,,, +810,B,pt,ZYJ261 RCC AM,,Cornlio Procpio (PR),-23.174722,-50.644444,,2,,10030,230,144,,,,,,36901414,,, +810,B,pt,ZYL202 Rdio Aimors AM,,Aimors (MG),-19.483333,-41.066667,,1,,9189,224,144,,,,,,36901413,,, +810,CHN,,Zhejiang zhi Sheng,,Linhai (ZJ),28.85,121.116667,,1,,9010,54,144,,,,,,36200044,,, +810,CHN,,Zhejiang zhi Sheng,,Lishui (ZJ),28.465411,119.958611,,1,,8981,55,144,,,,,,36200045,,, +810,CHN,,Zhejiang zhi Sheng,,Longquan (ZJ),28.083333,119.116667,,1,,8969,56,144,,,,,,36200046,,, +810,CHN,,Zhejiang zhi Sheng,,Pingyang (ZJ),27.666667,120.566667,,1,,9088,55,144,,,,,,36200047,,, +810,GTM,es,R Chuimeken,,Totonicapn (tot),14.9,-91.333333,,1,,9222,285,144,,,,,,31900001,,, +810,HND,,HRLP24,,Choluteca (cho),13.266667,-87.283333,,1,,9096,281,144,,,,,,37788,,, +810,MEX,es,XEFW-AM La Estrella,,Pueblo Viejo (vcz),22.174975,-97.833703,,1,,8997,295,144,,,,,,44037,,, +810,MEX,es,XESB-AM R Mexicana,,Santa Barbara (chi),26.813889,-105.811111,,1,,9057,303,144,,,,,,44730,,, +810,NCG,,R Rivas,,Rivas (rvs),11.433333,-85.833333,,1,,9158,279,144,,,,,,33700017,,, +810,SLV,,YSFA,,San Vicente (svc),13.616667,-88.783333,,1,,9166,282,144,,,,,,45274,,, +810,USA,,KXOI,,Crane (TX),31.4775,-102.34,,0.5,,8439,304,144,,,,,,39811,,, +810,B,pt,ZYL252 Rdio Educadora Trabalhista,,Ub (MG),-21.121983,-42.935847,,1,,9441,225,145,,,,,,36901412,,, +810,MEX,es,XEHT-AM R Huamantla,,Huamantla (tlx),19.303611,-97.919222,,1,,9258,293,145,,,,,,44141,,, +810,USA,,WDMP,,Dodgeville (WI),42.919444,-90.135,,0.01,,6773,304,145,,,,,,41184,,, +810,EQA,,HCFU1,,Quito (pic),-0.166667,-78.5,,1,,9675,266,146,,,,,,36943,,, +810,HTI,,R Atlantique,,Gonaves (art),19.416667,-72.666667,,0.05,,7578,274,146,,,,,,52103,,, +810,MEX,es,XEIM-AM Fiesta Mexicana,,Saltillo (coa),25.466111,-101.002778,,0.5,,8897,299,146,,,,,,44169,,, +810,AUS,en,6RN ABC National,,Perth/Hamersley (WA),-31.854731,115.819344,,20,,14027,97,147,,0000-2400,1234567,,,48379,,, +810,B,pt,ZYH767 Rdio Alvorada,,Rialma/Rua do Cafe (GO),-15.308278,-49.581567,,0.5,,9222,234,147,,,,,,36901416,,, +810,EQA,,HCVT2,,Atalaya (gua),-2.15,-79.566667,,1,,9922,266,147,,,,,,37181,,, +810,MEX,es,XERB-AM Stereo Sol,,Cozumel (qui),20.472778,-86.898333,,0.25,,8445,285,147,,,,,,44654,,, +810,MEX,es,XEZC-AM R Felicidad,,Ro Grande (zac),23.83,-103.038611,,0.5,,9165,300,147,,,,,,45128,,, +810,USA,,KYTY,,Somerset (TX),29.313333,-98.508056,,0.25,,8407,300,147,,,,,,39370,,, +810,MEX,es,XEAGR-AM R Frmula,,Acapulco (gue),16.829231,-99.857033,,0.6,,9601,293,148,,,,,,43705,,, +810,MEX,es,XEEMM-AM La Salmantina,,Salamanca (gua),20.586264,-101.224036,,0.5,,9348,296,148,,,,,,43969,,, +810,MEX,es,XEMQ-AM W R,,Mrida (yuc),21.015017,-89.561583,,0.25,,8572,288,148,,,,,,44405,,, +810,PRU,,OCU2V,,Jan/Magllanal (caj),-5.7,-78.783333,,1,,10181,263,148,,,,,,37000067,,, +810,B,pt,ZYK732 Rdio Centro-Amrica,,So Jos do Rio Preto (SP),-20.834458,-49.326819,,0.5,,9737,231,149,,,,,,36901407,,, +810,B,pt,ZYN204 Rdio Princesa do Vale,,Itaobim (MG),-16.561667,-41.503333,,0.25,,8922,226,149,,,,,,36901409,,, +810,B,pt,ZYK655 Rdio Universal,,Santos (SP),-23.913181,-46.418181,,0.5,,9884,227,150,,,,,,36901408,,, +810,B,pt,ZYN406 Floresta AM,,Alta Floresta (MT),-9.9139,-56.095731,,0.25,,9091,242,150,,,,,,36901411,,, +810,INS,id,RRI Pro-1,,Merauke (PA-mer),-8.476953,140.416378,,7.5,,13629,58,150,,2000-1400,1234567,,,48396,,, +810,MEX,,XERSV-AM,,Ciudad Obregn (son),27.517394,-109.937633,,0.25,,9223,307,150,,,,,,44712,,, +810,PNG,,NBC R East New Britain,,Rabaul (enb),-4.212778,152.115,,10,,13825,43,150,,1930-1400,1234567,,,48408,,, +810,USA,,WMGC,,Murfreesboro (TN),35.837222,-86.416667,,0.006,,7123,296,150,,,,,,42315,,, +810,B,pt,ZYL366 Rdio Rainha de Paz,,Patrocnio (MG),-18.916419,-47.005422,,0.25,,9431,230,151,,,,,,36901422,,, +810,B,pt,ZYN402 Rdio Integrao,,So Jos do Rio Claro (MT),-13.455589,-56.700133,,0.25,,9456,241,151,,,,,,36901418,,, +810,MEX,es,XEUX-AM,,Tuxpan (nay),21.916667,-105.256111,,0.25,,9470,300,151,,,,,,44937,,, +810,PHL,,DXRG-AM Radyo ng Bayan,,Gingoog (mor),8.833333,125.1,,1,,11097,62,151,,,,,,48715,,, +810,B,pt,ZYK604 Rdio Difusora Jundiaiense,,Jundia/Rua Alfredo Ungaro (SP),-23.148119,-46.838108,,0.25,,9831,227,152,,,,,,36901417,,, +810,B,pt,ZYL266 Rdio Clube Nepomuceno,,Nepomuceno/Fazenda Fazendinha (MG),-21.206867,-45.231706,,0.25,,9562,227,152,,,,,,36901415,,, +810,B,pt,ZYL354 Rdio Cidade,,Capinpolis (MG),-18.685228,-49.588761,,0.25,,9545,232,152,,,,,,36901410,,, +810,INS,id,R Suara Maung Sakti,,Banjarnegara (JT-bng),-7.383333,109.683333,,1,,11560,84,152,,,,,,48392,,, +810,INS,id,RSPD Bandung/Swara Bale Endah/R.Kandaga,,Bandung/Bale Endah (JB-ban),-7.016667,107.633333,,1,,11388,85,152,,2200-1500,1234567,21,,48391,,, +810,MEX,es,XEMAX-AM R Max,,Tecomn (col),18.934217,-103.888183,,0.25,,9660,297,152,,,,,,44352,,, +810,INS,id,PM8DBD R.Megapesona Enrekang,,Enrekang (SN-enr),-3.566667,119.766667,,1,,11896,73,153,,,,,,48393,,, +810,MEX,es,XEIC-AM R IC,,Campeche (cam),19.843764,-90.54015,,0.1,,8738,288,153,,,,,,34900020,,, +810,MEX,es,XERI-AM R Rey,,Reynosa (tam),26.071272,-98.257417,,0.1,,8678,297,153,,,,,,44675,,, +810,AUS,,2BA ABC Southeast NSW,,Bega (NSW),-36.711611,149.820633,,10,,16693,74,159,,0000-2400,1234567,,,48378,,, +810,USA,,KSWV,,Santa Fe (NM),35.701389,-105.966111,,0.01,,8261,309,160,,,,,,39443,,, +810,USA,en,WPCF670,,Long Beach (CA),33.764194,-118.126444,,0.01,,9054,316,164,,,,,,20010503,,, +810,USA,en,WPXI415,,Long Beach/Belmont Pier (CA),33.760964,-118.148528,,0.01,,9055,316,164,,,,,,20010504,,, +810,NZL,en,RNZ National,,Dunedin/Highcliff (OTA),-45.885556,170.595,,10,,18674,65,166,,0000-2400,1234567,,,48406,,, +810,NZL,en,BBC WS,,Auckland/Mangere (AUK),-36.989861,174.764669,,5,,18103,33,167,,,,,,48405,,, +810,USA,en,KG2XAJ,,San Antonio (TX),29.446667,-98.608056,,0.0001,,8402,300,181,,,,,,20010505,,, +815,RUS,,DD,b,Lipetsk (LI),52.6875,39.541667,,0.025,,2229,75,95,,,,,,85760,,, +815,RUS,,IT,b,Lipetsk (LI),52.6875,39.541667,,0.025,,2229,75,95,,,,,U400 ,85761,,, +815,UKR,,PW,b,Pavlovka,47.729167,37.208333,,0.025,,2240,90,95,,,,0,L1020 U1020 ,IDx2 + 5 gap,85762,, +819,EGY,ar,ERTU Al-Barnameg al-Aam,,Batrah (dqh),31.15935,31.431428,,1000,,3091,129,58,,0000-2400,1234567,5,,477,,, +819,IRN,fa,IRIB R Mazandaran,,Sari/Khazarabad (mzd),36.7715,52.98375,,30,090 295,3986,97,82,,0000-2400,1234567,44,,480,,, +819,SDN,,SRTC Sudan Nat. R,,Dongola=Dunqulah (no),19.094564,30.463883,,10,,4224,141,89,,,,,,2403,,, +819,TJK,tg,Tojikiston R 1,,Khujand (sgd),40.221928,69.7553,,15,,4887,80,94,,2300-2000,1234567,,,47098,,, +819,IND,,AIR Indraprastha Channel,,Delhi A (DL),28.769167,77.136944,,200,,6240,85,96,,0430-1045,1234567,998,,48422,,, +819,IND,,AIR Indraprastha Channel,,Delhi A (DL),28.769167,77.136944,,200,,6240,85,96,,1125-1840,1234567,998,,48422,,, +819,CHN,,Shanxi RGD Zonghe Guangbo,,Yuci/SXTS528 (SX),37.731694,112.718456,,200,,7753,54,112,,2200-1700,1234567,,,48419,,, +819,CHN,kk,Kytun RGD Kazakh,,Kytun=Kuitun (XJ),44.39005,84.909406,,1,,5586,66,113,,,,,,48421,,, +819,KRE,,KCBS Chosun Jungang Pangsong,,Pyongyang (pyo),39.134028,125.740278,,500,,8301,45,113,,2000-1800,1234567,4,,48426,,, +819,KOR,ko,HLCN MBC,,Gwangju (gwa),35.216944,126.833333,,20,,8718,46,130,,0000-2400,1234567,,,48427,,, +819,CHN,,Shanxi RGD Zonghe Guangbo,,Datong/Fanzhuang (SX),40.070278,113.392222,,1,,7588,52,133,,,,,,48418,,, +819,VTN,,VOV4,,Bun M Thuột (dkk),12.643689,108.018833,,20,,9675,73,133,,2200-1600,1234567,,,33200031,,, +819,THA,,Sor. Wor. Thor. (R Thailand),,Pathum Thani/Khlong Ha (ptn),14.072333,100.71175,,10,,9066,78,134,,2200-1600,1234567,,,48435,,, +819,MAU,xx,R Mauritius 2,,Malherbes/MCML (mau),-20.312972,57.533917,,10,,9449,133,135,,0000-2400,1234567,,,2402,,, +819,CHN,,Shanxi RGD Zonghe Guangbo,,Yuncheng (SX),34.95,111,,1,,7897,57,136,,,,,,36200340,,, +819,TWN,,BCC News Network,,Taitung (TT),22.750928,121.143528,,10,,9572,57,136,,0000-2400,1234567,,,48438,,, +819,J,,JONK NHK1,,Nagano (chu-nag),36.671944,138.256944,,5,,9095,37,137,,0000-2400,1234567,,,48425,,, +819,TWN,,Cheng Sheng BC,,Taipei (TPS),25.080736,121.514533,,5,,9379,56,138,,0000-2400,1234567,,,48437,,, +819,PHL,,DWAR-AM Sonshine R,,Laoag City (iln),18.183333,120.583333,,5,,9961,60,140,,,,,,48432,,, +819,PHL,,DYVL-AM Aksyon Radyo,,Tacloban City (lyt),11.216667,125,,10,,10869,60,140,,1930-1600,1234567,,,48433,,, +819,PHL,,DXUM-AM Radyo Ukay,,Davao City (dvs),7.066667,125.6,,10,,11291,62,141,,????-1400,1234567,,,48431,,, +819,PHL,,DXSC-AM,,Zamboanga City/Camp Navarro (zds),6.919444,122.041667,,1,,11087,65,151,,,,,,48434,,, +819,AUS,,6KW ABC Kimberley,,Kununurra (WA),-15.763778,128.733833,,5,,13570,74,152,,0000-2400,1234567,,,48417,,, +819,INS,id,PM4BKA Suara RPM,,Sukoharjo (JT-suk),-7.680556,110.841667,,1,,11665,83,152,,,,,,48423,,, +819,AUS,,2GL ABC New England NW,,Glen Innes (NSW),-29.790022,151.764333,,10,,16252,62,158,,0000-2400,1234567,,,48416,,, +819,NZL,en,RNZ National,,Tauranga/Paengaroa (BOP),-37.810833,176.412778,,10,135 270,18245,30,164,,0000-2400,1234567,,,48429,,, +820,UKR,,DN,b,Dzhankoi (KR),45.6875,34.375,,0.025,,2149,98,94,,,,,,85763,,, +820,CAN,en,CHAM,,Hamilton (ON),43.116111,-79.776944,,10,,6150,298,109,,,,2,,36034,,, +820,KNA,en,R Paradise,,Charlestown (Nevis) (spc),17.127694,-62.630361,,50,,7088,264,111,,0000-2400,1234567,10,,2003,,, +820,ALS,,KCBF,,Fairbanks (AK),64.878889,-147.668333,,10,,6818,348,115,,0000-2400,1234567,4,,38127,,, +820,USA,en,WVSG,,Colombus (D) (OH),40.028889,-83.056111,,5,,6583,297,116,,1200-2400,1234567,,,20012520,,, +820,USA,,WNYC,,New York/Kearny [NJ] (NY),40.752778,-74.104167,,1,,5972,292,117,,,,35,,42541,,, +820,USA,en,WCPT,,Willow Springs (D) (IL),41.938333,-87.751389,,5,,6714,301,117,,,,,,41087,,, +820,USA,,WWLZ,,Horseheads (NY),42.153889,-76.846389,,0.85,,6041,295,118,,,,,,43405,,, +820,USA,en,WBAP,,Fort Worth (TX),32.610556,-97.166667,,50,,8040,301,120,,,,0,,40801,,, +820,USA,en,WGGM,,Chester (VA),37.381667,-77.427778,,1,,6437,291,121,,,,,,41509,,, +820,HTI,,R Tropicale,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52104,,, +820,USA,en,WCPT,,Willow Springs (N) (IL),41.541667,-88.034167,,1.5,,6761,301,123,,,,,,20012566,,, +820,USA,,WWFD,,Frederick (MD),39.411667,-77.472222,,0.43,,6285,293,124,,,,,,43496,,, +820,USA,en,WVSG,,Columbus (N) (OH),39.909167,-83.056667,,0.79,,6593,297,124,,0000-1200,1234567,,,42627,,, +820,CUB,es,R Reloj,,Ciego de vila/CTOM1 (ca),21.866892,-78.720875,,10,,7782,280,125,,,,0,,36540,,, +820,HTI,,4VRD,,Les Cayes (sud),18.166667,-73.716667,,10,,7756,274,125,,,,,,35652,,, +820,USA,,WBKK,,Wilton (MN),47.391389,-95.077778,,0.75,,6686,310,125,,,,,,20000047,,, +820,CUB,es,R Ciudad de La Habana,,Arroyo Arenas/CTOM2 (ch),23.05,-82.483333,,10,,7933,284,126,,,,,,36462,,, +820,VEN,,YVSH R Guayana,,Upata (blv),8.016667,-62.316667,,10,,7860,258,126,,0900-0500,1234567,,,45457,,, +820,USA,en,WTNW,,Jasper (TN),35.073056,-85.6275,,1,,7136,295,128,,1200-2400,1234567,,,43353,,, +820,USA,en,KGNW,,Seattle/Burien-Vashon Island (WA),47.433333,-122.467222,,5,,7929,326,129,,,,2,,38502,,, +820,CLM,es,HJED Caracol Colombia,,Cali (val),3.466667,-76.533333,,25,,9222,267,130,,,,999,,37408,,, +820,DOM,,HIAZ Bachatera 8-20,,Santiago de los Caballeros (sto),19.433333,-70.666667,,1,,7441,272,131,,0000-2400,1234567,,,37215,,, +820,NCG,es,YNOL R Ondas de Luz,,Managua (mng),12.018611,-86.004167,,20,,9119,279,131,,1000-0400,1234567,,,45202,,, +820,CLM,es,HJAD,,Cartagena (bol),10.4,-75.516667,,10,,8547,270,132,,,,54,,35901408,,, +820,USA,en,WWBA,,Largo (FL),27.908333,-82.780833,,1,,7544,287,132,,,,9995,,42316,,, +820,VEN,,YVKU R Altura 820,,La Grita (tch),8.116667,-71.9,,10,,8499,266,132,,1000-0400,1234567,,,51664,,, +820,CUB,es,R Progreso,,Moa (ho),20.645583,-74.924033,,1,,7628,276,133,,,,,,31600085,,, +820,USA,,WSWI,,Evansville (IN),37.964722,-87.668333,,0.25,,7026,298,133,,,,,,43087,,, +820,B,pt,ZYI775 Rdio Universitria de Pernambuco,,Recife (PE),-8.052575,-34.943744,,1,,7757,224,135,,,,,,36901443,,, +820,USA,,KUTR,i,Taylorsville (IBOC) (UT),40.33,-112.069167,,2.5,,8150,316,135,,,,0,,39599,,, +820,GTM,,TGTO R Internacional,,Ciudad de Guatemala (gut),14.616667,-90.616667,,5,,9200,285,137,,1000-0600,1234567,,,40547,,, +820,B,pt,ZYH752 Rdio Bandeirantes,,Goinia/Fazenda Santa Rita (GO),-16.729331,-49.335103,,5,,9344,233,138,,,,978,,36901432,,, +820,B,pt,ZYH624 Rdio Unio de Camocim,,Camocim (CE),-2.912367,-40.863953,,0.25,,7551,232,139,,,,,,36901444,,, +820,B,pt,ZYL373 Rdio Bom Sucesso,,Minas Novas (MG),-17.223333,-42.616389,,3,,9042,227,139,,,,,,36901433,,, +820,PRU,,OAX4O R Libertad,,Lima (lim),-12.016667,-76.966667,,10,,10614,257,139,,0000-2400,1234567,,,40311,,, +820,B,pt,ZYI212 Rdio Gazeta,,Serra (ES),-20.133333,-40.3,,2.5,,9217,224,140,,,,993,,36901439,,, +820,PNR,es,HOF28 R Ritmo Chiriqu,,Alanje/Orilla del Ro (chq),8.363608,-82.509508,,3,,9201,274,140,,1100-0400,1234567,,,52303,,, +820,B,pt,ZYJ738 RFC CBN Vale do Itaja,,Blumenau (SC),-26.852778,-48.998889,,5,,10297,227,141,,,,,,36901442,,, +820,EQA,,HCCR1,,Otavalo (imb),0.2,-78.183333,,3,,9621,266,141,,,,,,36887,,, +820,ARG,es,LRA8 R Nacional,,Formosa (fm),-26.142111,-58.154725,,5,,10716,235,142,,0855-0400,1234567,,,39964,,, +820,B,pt,ZYH655 Rdio Sul Cearense,,Brejo Santo (CE),-7.512756,-38.992722,,0.25,,7903,228,142,,,,,,36901445,,, +820,B,pt,ZYI543 Rdio Regional do Araguaia,,Conceio do Araguaia (PA),-8.284739,-49.268061,,1,,8536,237,142,,,,,,36901426,,, +820,B,pt,ZYJ238 Rdio Cultura,,Foz do Iguau (PR),-25.545428,-54.523903,,5,,10461,232,142,,,,,,36901440,,, +820,B,pt,ZYK241 Rdio Alto Taquari,,Estrela (RS),-29.739167,-51.967778,,5,,10722,228,142,,,,,,36901437,,, +820,B,pt,ZYI912 Rdio Cacique Bruenque,,Regenerao (PI),-6.253844,-42.681239,,0.25,,7974,232,143,,,,,,36901435,,, +820,CHL,,CB82 Remisora Carabineros de Chile,,Santiago (RM),-33.316667,-70.716667,,10,,12077,239,144,,0000-2400,1234567,,,51933,,, +820,CTR,,TIGC R Centro AM,,San Jos (sjs),9.966667,-84.066667,,1,,9167,277,144,,1130-0600,1234567,,,40579,,, +820,HND,,HRLP16,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37781,,, +820,MEX,es,XEBM-AM La Mera Mera,,San Luis Potos (slp),22.15675,-100.942225,,1,,9190,297,144,,,,,,43784,,, +820,MEX,es,XEESC-AM R Escrcega,,Francisco Escrcega (cam),18.611778,-90.726917,,0.75,,8857,287,144,,,,,,43979,,, +820,MEX,es,XEBA-AM La Consentida,,Guadalajara (jal),20.712078,-103.304036,,1,,9463,298,145,,,,,,43756,,, +820,MEX,es,XEGRC-AM Soy Guerrero,,Coyuca de Cataln (gue),18.320611,-100.703189,,1,,9520,295,145,,,,,,44077,,, +820,B,pt,ZYI400 Rdifusora de Cceres,,Cceres (MT),-16.031253,-57.664272,,1,,9752,240,146,,,,,,36901441,,, +820,B,pt,ZYK542 Rdio Aparecida,,Aparecida (SP),-22.847325,-45.248283,,1,,9723,226,146,,,,,,36901438,,, +820,B,pt,ZYK624 Rdio Difusora de Penpolis,,Penpolis/Rua Joo Fatori (SP),-21.411461,-50.091808,,1,,9833,231,146,,,,,,36901430,,, +820,CHL,es,CA82 R Corporacin / R Portales,,La Serena/Las Compaias (CO),-29.875428,-71.216372,,5,,11809,242,146,,1000-0400,1234567,,,35710,,, +820,EQA,,HCUP1 R Unin,,Quito (pic),-0.216667,-78.5,,1,,9679,266,146,,,,91,,52454,,, +820,EQA,,HCRF4 Canal Manabi,,Portoviejo (man),-1.066667,-80.416667,,1,,9885,267,147,,,,,,37079,,, +820,MEX,es,XEABCA-AM R Frontera,,Mexicali/Santa Isabel (bcn),32.627083,-115.580986,,0.5,,9039,314,147,,,,9992,,44975,,, +820,MEX,es,XEDRD-AM W R,,Durango (dur),24.051706,-104.627767,,0.5,,9239,301,147,,,,,,43936,,, +820,B,pt,ZYH534 Rdio Cultura de Utinga,,Utinga (BA),-12.084717,-41.096094,,0.25,,8460,228,148,,,,,,36901434,,, +820,B,pt,ZYJ357 Rdio Princesa AM,,Roncador (PR),-24.592222,-52.2925,,1,,10252,231,148,,,,,,36901427,,, +820,MEX,es,XEYN-AM Los 40 Principales,,Oaxaca (oax),17.062778,-96.705833,,0.5,,9380,291,148,,,,,,45100,,, +820,ARG,,LU24 R Tres Arroyos,,Tres Arroyos (ba),-38.366667,-60.266667,,2.5,,11943,229,149,,0900-0400,1234567,,,40220,,, +820,B,pt,ZYH294 Rdio Princesa do Solimes,,Manacapuru (AM),-3.28245,-60.636278,,0.25,,8764,250,149,,,,,,36901431,,, +820,ARG,,LRK221 R Ciudad Perico,,Perico (jy),-24.383333,-65.116667,,1,,10958,241,150,,1000-0400,1234567,,,51806,,, +820,BOL,,CP35 Rdifusoras Altiplano,,La Paz (lpz),-16.5,-68.116667,,0.75,,10435,248,150,,1000-0200,123456,,,36694,,, +820,BOL,,CP35 Rdifusoras Altiplano,,La Paz (lpz),-16.5,-68.116667,,0.75,,10435,248,150,,1100-0100,......7,,,36694,,, +820,B,pt,ZYJ477 Rdio Jornal Nova AM,,Maca (RJ),-22.317447,-41.715261,,0.25,,9500,224,151,,,,,,36901436,,, +820,B,pt,ZYL255 Rdio Globo,,Barbacena (MG),-21.196111,-43.781667,,0.25,,9489,226,151,,,,,,36901423,,, +820,MEX,es,XEUDO-AM,,Los Mochis (sin),25.8146,-108.963594,,0.25,,9326,305,151,,,,,,44896,,, +820,B,pt,ZYK602 Rdio Jauense,,Ja (SP),-22.293794,-48.546428,,0.25,,9836,229,152,,,,,,36901429,,, +820,B,pt,ZYL291 Rdio Paraso AM,,So Sebastio do Paraso (MG),-20.938703,-46.988867,,0.25,,9625,229,152,,,,,,36901428,,, +820,B,pt,Rdio Educadora 6 de Agosto,,Xapur (AC),-10.662778,-68.488056,,0.25,,9936,252,153,,,,,,36902883,,, +820,B,pt,ZYH207 Rdio Difusora,,Tarauac (AC),-8.153333,-70.776111,,0.25,,9862,255,153,,,,,,36901424,,, +820,B,pt,ZYK622 Rdio Clube de Ourinhos,,Ourinhos (SP),-22.967394,-49.890956,,0.25,,9971,230,153,,,,,,36901425,,, +820,URG,,CW23 R Cultural,,Salto (sa),-31.366667,-57.95,,0.5,,11186,232,154,,0800-0300,1234567,,,36764,,, +820,ARG,es,LRI208 Estacion 820,,Lomas de Zamora (ba),-34.757778,-58.404444,,0.5,,11520,230,155,,,,,,51805,,, +820,CHL,,CC82 R Maria Inmaculada,,Concepcin (BI),-36.816667,-73.066667,,1,,12513,238,155,,,,,,35836,,, +820,CHL,,CD82 R Concordia,,La Union (LL),-40.266667,-73.083333,,1,,12802,236,156,,1100-2330,1234567,,,35918,,, +820,CHL,,CA82 R Pampa,,Pedro de Valdivia (AN),-22.633333,-69.716667,,0.25,,11082,245,157,,,,,,35709,,, +820,USA,,KWDP,,Waldport (OR),44.438056,-124.019444,,0.015,,8278,326,158,,,,,,39097,,, +820,USA,en,WNVZ318,,Monrovia/130 Lime St. (CA),34.147778,-117.9995,,0.01,,9011,316,164,,,,,,20010507,,, +820,USA,en,WPAC337,,Hollywood (CA),34.337222,-118.362306,,0.01,,9010,317,164,,,,,,20010506,,, +825,UKR,,KB,b,Kiev / Boryspil (KY),50.395833,30.875,,0.025,,1705,87,90,,,,0,L1007 U1000 ,IDx2 + 5 gap,85765,, +825,UKR,,KE,b,Kiev / Boryspil (KY),50.270833,30.875,,0.025,,1709,87,90,,,,0,L1023 U1024 ,IDx2 + 8 gap,85766,, +825,RUS,,F,b,Cherepovets (VO),59.270833,38.041667,,0.025,,2112,55,94,,,,,L825 U826 ,85764,,, +825,RUS,,O,b,Cherepovets (VO),59.270833,37.958333,,0.025,,2107,55,94,,,,,,85768,,, +825,RUS,,YK,b,Buinsk (TS),54.979167,48.291667,,0.025,,2743,67,100,,,,,L825 U825 ,85769,,, +826,MDA,,PT,b,Petrovka,46.520833,29.125,,0.025,,1751,102,90,,,,,,85770,,, +828,D,de,Funkhaus Europa,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,1500-1900,....5..,1,,485,,, +828,D,de,Funkhaus Europa,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,1500-2000,1234...,1,,485,,, +828,D,de,Hamburger Hafenkonzert,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0500-0700,......7,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0000-0500,......7,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0000-1500,12345..,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0000-2400,.....6.,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,0700-2400,......7,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,1900-2400,....5..,1,,485,,, +828,D,de,NDR Info,,Hannover/Hemmingen (nds),52.327778,9.736667,,5,,228,83,52,,2000-2400,1234...,1,,485,,, +828,E,es,Hit FM,,Barcelona/Tarrasa (EAJ25) (CAT-B),41.58265,2.043728,,5,,1216,197,62,,0000-2400,1234567,9988,,487,,, +828,RUS,ru,Pravoslavnoye R,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,0200-0600,1234567,9998,,495,,, +828,RUS,ru,Pravoslavnoye R,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,0600-1400,1234567,9998,,495,,, +828,RUS,ru,Rgazeta Slovo,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,1400-1800,1234567,9998,,495,,, +828,RUS,ru,Rgazeta Slovo,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,1800-0200,1234567,9998,,495,,, +828,SYR,ar,SRTV 1 Dimashk,,Deir ez-Zor=Dayr az-Zawr (dyz),35.399028,40.0835,,200,,3236,112,66,,0000-2400,1234567,23,,496,,, +828,G,en,Gold,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.27,,596,258,69,,0000-2400,1234567,,,491,,, +828,G,,BBC Asian Network,,Wolverhampton/Sedgley (EN-WMD),52.543222,-2.140333,,0.2,,583,278,70,,0600-2400,1234567,0,,488,,, +828,G,en,BBC WS,,Wolverhampton/Sedgley (EN-WMD),52.543222,-2.140333,,0.2,,583,278,70,,0000-0600,1234567,0,,488,,, +828,G,en,Gold,,Luton/Lewsey Farm (EN-BEF),51.906056,-0.484944,,0.12,,472,270,71,,0000-2400,1234567,9980,,490,,, +828,G,en,Magic 828,,Leeds/Morley (EN-WYK),53.736417,-1.572694,,0.12,,565,292,72,,0000-2400,1234567,9997,,489,,, +828,GRC,,unid (International Oldies),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,0000-2400,1234567,3,,3400040,,, +828,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Tabas (skh),33.609889,56.91725,,50,,4486,97,85,,,,,,1787,,, +828,NIG,,FRCN Enugu,,Enugu (enu),6.450308,7.469794,,100,,5078,179,88,,0430-2300,1234567,,,2404,,, +828,AZR,pt,Antena 1,,Monte das Cruzes (flo),39.451694,-31.136547,,1,,3187,259,89,,0000-0530,123456,,,482,,, +828,AZR,pt,Antena 1,,Monte das Cruzes (flo),39.451694,-31.136547,,1,,3187,259,89,,0000-0600,......7,,,482,,, +828,AZR,pt,RDP Aores,,Monte das Cruzes (flo),39.451694,-31.136547,,1,,3187,259,89,,0530-2400,123456,,,482,,, +828,AZR,pt,RDP Aores,,Monte das Cruzes (flo),39.451694,-31.136547,,1,,3187,259,89,,0600-2400,......7,,,482,,, +828,RUS,ru,R Mayak,,Kyzyl/RV890 (TU),51.683611,94.606042,,150,,5656,53,92,,0000-1800,1234567,,,46898,,, +828,RUS,ru,R Mayak,,Kyzyl/RV890 (TU),51.683611,94.606042,,150,,5656,53,92,,2300-2400,1234567,,,46898,,, +828,ETH,,ERTA Ethiopia National R,,Arba Minch (snt),5.996333,37.540333,,100,,5866,140,96,,0300-0600,1234567,,,46832,,, +828,ETH,,ERTA Ethiopia National R,,Arba Minch (snt),5.996333,37.540333,,100,,5866,140,96,,0800-2100,1234567,,,46832,,, +828,PAK,,PBC Hayya alal-Falah,,Karachi (shd),24.9769,67.285675,,100,,5874,96,96,,0045-0405,1234567,995,,48471,,, +828,PAK,,PBC Hayya alal-Falah,,Karachi (shd),24.9769,67.285675,,100,,5874,96,96,,0600-1900,1234567,995,,48471,,, +828,AFG,,R Herat,,Herat (her),34.333333,62.2,,1,,4792,92,105,,1230-1530,1234567,,,48441,,, +828,UAE,ar,Abu Dhabi FM,,Al-Ain (abd),24.732139,55.620278,,1,,5116,107,108,,0200-2210,1234567,,,47102,,, +828,IND,,AIR Vividh Bharati,,Panaji (GA),15.459444,73.85,,20,,7123,98,115,,0025-0435,1234567,,,51219,,, +828,IND,,AIR Vividh Bharati,,Panaji (GA),15.459444,73.85,,20,,7123,98,115,,0900-1200,1234567,,,51219,,, +828,IND,,AIR Vividh Bharati,,Panaji (GA),15.459444,73.85,,20,,7123,98,115,,1245-1740,1234567,,,51219,,, +828,CHN,,BPBS-Beijing News Channel,,Beijing/BJTS804 (BJ),39.949697,116.496011,,50,,7763,50,118,,0000-1610,1234567,,,48446,,, +828,CHN,,BPBS-Beijing News Channel,,Beijing/BJTS804 (BJ),39.949697,116.496011,,50,,7763,50,118,,2130-2400,1234567,,,48446,,, +828,IND,,AIR Northeast,,Silchar (AS),24.758611,92.778889,,20,,7621,77,120,,0020-0430,1234567,,,48453,,, +828,IND,,AIR Northeast,,Silchar (AS),24.758611,92.778889,,20,,7621,77,120,,0630-0930,1234567,,,48453,,, +828,IND,,AIR Northeast,,Silchar (AS),24.758611,92.778889,,20,,7621,77,120,,1030-1630,1234567,,,48453,,, +828,J,ja,JOBB NHK2,,Osaka/Habikino (kns-osk),34.554444,135.568889,,300,,9188,40,120,,0000-1500,1.....7,9999,,48468,,, +828,J,ja,JOBB NHK2,,Osaka/Habikino (kns-osk),34.554444,135.568889,,300,,9188,40,120,,0000-1635,.2345..,9999,,48468,,, +828,J,ja,JOBB NHK2,,Osaka/Habikino (kns-osk),34.554444,135.568889,,300,,9188,40,120,,0000-1640,.....6.,9999,,48468,,, +828,J,ja,JOBB NHK2,,Osaka/Habikino (kns-osk),34.554444,135.568889,,300,,9188,40,120,,2030-2400,1234567,9999,,48468,,, +828,VTN,vi,VOV Sơn La R,,Sơn La (sla),21.316667,103.9,,50,,8645,71,126,,0400-0600,1234567,,,48480,,, +828,VTN,vi,VOV Sơn La R,,Sơn La (sla),21.316667,103.9,,50,,8645,71,126,,1200-1400,1234567,,,48480,,, +828,VTN,vi,VOV Sơn La R,,Sơn La (sla),21.316667,103.9,,50,,8645,71,126,,2200-0100,1234567,,,48480,,, +828,CHN,,Guangdong Weixing Guangbo,,Heyuan/GDTS721 (GD),24.037094,114.806667,,50,,9084,61,127,,2200-1900,1234567,,,48447,,, +828,CHN,,Jiaozuo RGD,,Jiaozuo (HE),35.192222,113.262778,,10,,8004,55,127,,,,,,48448,,, +828,CHN,,Guangdong Weixing Guangbo,,Dabu (GD),22.366667,113.45,,40,,9152,63,128,,????-1250,1234567,,,48450,,, +828,CHN,,Jingzhou RGD Xinwen,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,,,,,48449,,, +828,THA,th,Thor. Phor. Saam,,Sukhothai (suk),17.022778,99.814722,,5,,8750,77,136,,????-1700,1234567,,,48478,,, +828,THA,th,Wor. Por. Thor. 4,,Kapang/Fort Thep Sattri Si Sunthon (ntm),8.027778,99.658333,,5,,9524,83,138,,????-1135,1234567,,,48479,,, +828,CHN,,Zhoukou RGD Xinwen,,Zhoukou (HE),33.633333,114.633333,,1,,8218,55,139,,,,,,48452,,, +828,PHL,,DXCC-AM,,Cagayan de Oro City (mor),8.498611,124.659167,,10,,11101,62,141,,0000-1600,1234567,,,48472,,, +828,PHL,,DXCC-AM,,Cagayan de Oro City (mor),8.498611,124.659167,,10,,11101,62,141,,2100-2400,1234567,,,48472,,, +828,PHL,,DWZR-AM,,Legazpi City (aby),13.133333,123.733333,,5,,10615,60,142,,,,,,48473,,, +828,PHL,,DYER-AM,,Puerto Princesa (plw),9.736111,118.738889,,5,,10623,66,142,,,,,,48474,,, +828,PHL,,DZTC-AM,,Tarlac City (tlc),15.483333,120.583333,,1,,10209,62,148,,,,,,48475,,, +828,AUS,en,6GN ABC Midwest & Wheatbelt,,Geraldton/Fig Tree Crossing (WA),-28.658333,114.709917,,10,,13700,95,149,,0000-2400,1234567,,,48443,,, +828,INS,id,PM3BNJ R.Andhika Pariwara,,Pelabuhanratu (JB),-6.983333,106.533333,,1,,11311,86,151,,,,,,35400035,,, +828,INS,id,RBK-R Berita Klasik,,Jakarta/Sunter Agung (JK-kju),-6.1375,106.866667,,1,,11259,86,151,,2150-????,1234567,43,,35400010,,, +828,INS,id,RSP-R Suara Parangtritis,,Parangtritis/Kretek (YO-yog),-7.978889,110.316667,,1,,11655,84,152,,,,,,35400034,,, +828,INS,id,PM8DCM R Christy Ria,,Makassar (SN-mak),-5.147778,119.411667,,1,,12014,75,154,,,,,,35400127,,, +828,INS,id,PM3BFG R Kharisma,,Bandung (JB-ban),-6.95,107.566667,,0.25,,11378,85,158,,,,,,48454,,, +828,AUS,en,3GI ABC Gippsland,,Sale/Longford (VIC),-38.188228,147.095206,,10,,16620,79,159,,0000-2400,1234567,17,,48445,,, +828,INS,id,PM8BYM R Yudha,,Denpasar (BA-den),-8.666667,115.233333,,0.25,,12048,80,160,,,,,,48456,,, +828,AUS,,4GC Gold City R,,Charters Towers (QLD),-20.065278,146.289153,,1,,15055,60,164,,0000-2400,1234567,,,48442,,, +828,NZL,,2XS LiveSPORT,,Palmerston North/Longburn (MWT),-40.37,175.559167,,2,,18469,37,172,,,,,,48470,,, +830,UKR,,SW,b,Shepetovka,50.1875,27.041667,,0.025,,1450,90,87,,,,16,L1017 U1060 30.0s,ID+25 gap,85772,, +830,USA,en,WCRN,,Worcester (MA),42.247222,-71.931111,,50,,5727,292,97,,,,1,,41076,,, +830,USA,,WCCO,,Minneapolis (MN),45.177778,-93.348611,,50,,6771,307,108,,,,0,,40967,,, +830,USA,,WEEU,,Reading (PA),40.515,-76.123333,,6,,6117,293,110,,,,2,,41261,,, +830,USA,,WTRU,,Kernersville (NC),36.199444,-80.206944,,10,,6706,292,114,,,,,,43208,,, +830,USA,,KUYO,,Evansville (D) (WY),42.871389,-106.203611,,25,,7635,313,119,,,,9952,,39606,,, +830,USA,,WKTX,,Cortland (OH),41.415556,-80.730278,,1,,6335,297,120,,,,,,42081,,, +830,VEN,es,YVLT R 830 AM,,San Antonio de los Altos (dcf),10.400511,-66.947689,,50,,7963,263,120,,0900-0500,1234567,9996,,45373,,, +830,USA,,WMMI,,Shepherd (MI),43.561667,-84.75,,1,,6412,301,121,,,,,,42351,,, +830,USA,,KUYO,,Evansville (C) (WY),42.870278,-106.203333,,9.2,,7635,313,124,,,,,,20012559,,, +830,CAN,fr,CBVE-1,,La Tuque (QC),47.420278,-72.782778,,0.04,,5423,298,125,,,,,,20109104,,, +830,USA,,WQZQ,,Goodlettsville (TN),36.272778,-86.715833,,2,,7106,296,125,,,,,,20016076,,, +830,USA,,KFLT,,Tucson (AZ),32.444167,-111.090833,,50,,8828,310,126,,,,0,,38408,,, +830,USA,en,WUMY,,Memphis (TN),35.116944,-90.016389,,3,,7401,298,126,,1300-0100,1234567,,,39106,,, +830,CUB,es,R Reloj,,Holgun (ho),20.883333,-76.266667,,5,,7699,278,127,,,,,,36503,,, +830,DOM,,HIJB R HIJB,,Santo Domingo (sdo),18.566667,-69.9,,2.5,,7462,271,128,,1100-0300,1234567,999,,37256,,, +830,USA,en,KLAA,,Orange (CA),33.928611,-117.615833,,20,,9014,316,131,,,,0,,38951,,, +830,USA,es,WACC,,Hialeah (FL),25.772778,-80.421111,,1,,7567,284,133,,,,,,40639,,, +830,NCG,,YNRZ R Zinica La Voz Costea,,Bluefields (ats),12,-83.75,,10,,8968,278,134,,,,,,52198,,, +830,USA,en,WPFM232,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010511,,, +830,B,pt,ZYJ488 R Tropical Solimoes,,Nova Iguau (RJ),-22.735706,-43.50945,,10,,9627,225,136,,,,1,,36901451,,, +830,CLM,es,HJDM,,Medelln (ant),6.216667,-75.566667,,5,,8915,267,136,,,,,,37393,,, +830,MEX,,XEPUR-AM,,Chern (mic),19.680958,-101.957983,,8,,9475,296,136,,,,,,44582,,, +830,USA,,KNCO,,Grass Valley (CA),39.215,-121.013333,,5,,8661,321,136,,,,22,,38968,,, +830,ALS,,KSDP,,Sand Point (AK),55.351667,-160.467222,,1,,8005,352,137,,0000-2400,1234567,1,,39336,,, +830,B,pt,ZYJ595 Rural AM,,Caic (RN),-6.443611,-37.079444,,0.5,,7701,227,137,,,,,,36901459,,, +830,EQA,,HCRM2 R Huancavilca,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,2004,,, +830,MEX,es,XETLX-AM La Poderosa,,Tlaxiaco (oax),17.263056,-97.67,,6,,9424,292,137,,,,,,44834,,, +830,PNR,es,HOR56 R Peninsula,,Macaracas (lsn),7.7389,-80.547031,,5,,9122,272,137,,,,,,37678,,, +830,USA,,WFNO,,Norco (LA),30.05,-90.378056,,0.75,,7849,294,137,,,,,,41415,,, +830,B,pt,ZYJ926 Rdio Princesa da Serra,,Itabaiana (SE),-10.673056,-37.383333,,1,,8136,225,138,,,,,,36901455,,, +830,B,pt,ZYL244 Rdio Cultura,,Belo Horizonte (MG),-19.925903,-43.892028,,5,,9370,227,138,,,,,,36901447,,, +830,GTM,,TGAV R Satlite,,Mazatenango (sup),14.516667,-91.5,,5,,9267,285,138,,1100-0400,1234567,,,40480,,, +830,MEX,es,XEITE-AM R Capital,,Mxico D.F/Aculco (dif),19.374056,-99.109506,,5,,9326,294,138,,,,5,,34900002,,, +830,SLV,,YSPX,,San Miguel (smg),13.466667,-88.166667,,4,,9138,282,138,,,,,,45303,,, +830,B,pt,ZYH659 Rdio Pioneira,,Forquilha (CE),-3.809456,-40.266506,,0.25,,7606,231,139,,,,,,36901465,,, +830,B,pt,ZYH905 Rdio Mirante do Maranho,,Imperatriz (MA),-5.467281,-47.477478,,1,,8165,237,139,,,,,,36901449,,, +830,B,pt,ZYI396 Rdio Cidade de Maracaju,,Maracaju (MS),-21.617628,-55.158847,,5,,10128,235,140,,,,,,36901446,,, +830,B,pt,ZYI556 Rdio Guarani do Maraj,,Soure (PA),-0.714778,-48.511867,,0.25,,7777,241,141,,,,,,36901452,,, +830,HND,,HRXS,,San Pedro Sula (cor),15.5,-88.016667,,2,,8950,283,141,,,,,,37874,,, +830,B,pt,ZYH925 Rdio Boa Esperana,,Esperantinpolis (MA),-4.879722,-44.879167,,0.25,,7962,235,143,,,,,,36901467,,, +830,B,pt,ZYI906 Rdio Primeira Capital,,Oeiras (PI),-6.999128,-42.137617,,0.25,,8017,231,143,,,,,,36901461,,, +830,HND,,HRVQ,,Juticalpa (ola),14.666667,-86.216667,,1,,8902,281,143,,,,,,37866,,, +830,HWA,en,KHVH,,Honolulu (HI),21.323889,-157.875556,,10,,11708,345,143,,0000-2400,1234567,0,,38568,,, +830,MEX,es,XEDQ-AM R Alegra,,San Andrs Tuxtla (vcz),18.421389,-95.206389,,1,,9164,290,144,,,,,,43930,,, +830,MEX,es,XEZQ-AM R Futurama,,Cunduacan (tab),17.974792,-93.101539,,1,,9068,288,144,,,,,,45153,,, +830,ARG,,R del Pueblo,,Buenos Aires (df),-34.616667,-58.466667,,5,,11511,230,145,,,,,,51802,,, +830,MEX,es,XEVQ-AM,,Culiacn (sin),24.832222,-107.404722,,1,,9329,303,145,,,,,,44985,,, +830,PRU,,OAX6D R Nacional del Peru,,Tacna (tac),-15.833333,-70.216667,,2.5,,10509,250,145,,,,,,40330,,, +830,EQA,,HCBP5,,Promocion (chi),-1.566667,-78.683333,,1,,9810,265,146,,,,,,36868,,, +830,MEX,es,XELK-AM R Mexicana,,Zacatecas (zac),22.770217,-102.631281,,0.5,,9237,299,147,,,,,,44310,,, +830,B,pt,ZYH506 Rdio Extremo Sul da Bahia,,Itamaraju/Fazenda Jundiar (BA),-17.036978,-39.590778,,0.25,,8876,224,149,,,,,,36901457,,, +830,B,pt,ZYK681 Rdio Lder,,Votuporanga (SP),-20.404461,-49.969689,,0.5,,9730,231,149,,,,,,36901448,,, +830,MEX,es,XELN-AM La Caliente,,Linares (nvl),24.872711,-99.572986,,0.25,,8864,298,149,,,,,,44314,,, +830,USA,en,WQGW543,,Atlanta (GA),33.644322,-84.446306,,0.01,,7179,293,149,,,,,,20010510,,, +830,ARG,,LT21 R Municipal,,Alvear (cn),-29.1,-56.533333,,1,,10901,232,150,,0900-0100,1234567,,,40173,,, +830,ARG,es,LT8 La Ocho AM,,Rosario (sf),-32.913567,-60.901036,,1.5,,11486,233,150,,0000-2400,1234567,,,40201,,, +830,MEX,es,XEDR-AM Digital 99,,Guaymas (son),27.929403,-110.893614,,0.25,,9236,308,150,,,,,,43932,,, +830,B,pt,ZYH805 Rdio Cidade,,Goiatuba (GO),-18.036533,-49.368303,,0.25,,9471,232,151,,,,,,36901464,,, +830,B,pt,ZYN401 REJ-Rdio Educadora de Juna,,Juna (MT),-11.422467,-58.767617,,0.25,,9392,243,151,,,,,,36901460,,, +830,ARG,,R Filadelfia,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,,,51807,,, +830,ARG,es,LU14 R.Provincia de Santa Cruz,,Ro Gallegos (sc),-51.714717,-69.288228,,5,,13532,225,152,,0900-0500,1234567,5,,40207,,, +830,B,pt,ZYI430 Rdio Xavantes de Jaciara,,Jaciara (MT),-15.935531,-54.97365,,0.25,,9586,238,152,,,,,,36901466,,, +830,B,pt,ZYK746 Rdio Novo Tempo,,Nova Odessa (SP),-22.820108,-47.330233,,0.25,,9825,228,152,,,,,,36901456,,, +830,B,pt,ZYJ266 Rdio CBN,,Londrina/Jardim Santa F (PR),-23.3,-51.133333,,0.25,,10068,231,153,,,,,,36901450,,, +830,ARG,,LV18 R Municipal,,San Rafael (mz),-34.616667,-68.333333,,1,,12051,237,154,,1030-0230,1234567,,,40241,,, +830,B,pt,ZYJ224 Rdio Iguau,,Araucria (PR),-25.593333,-49.4075,,0.25,,10197,228,154,,,,,,36901453,,, +830,B,pt,ZYJ311 Rdio Progresso AM,,Clevelndia (PR),-26.381944,-52.322778,,0.25,,10423,230,154,,,,,,36901462,,, +830,B,pt,ZYJ773 Rdio Cruz de Malta AM,,Lauro Mller/Morro dos Madeira (SC),-28.388333,-49.393056,,0.25,,10464,227,155,,,,,,36901458,,, +830,B,pt,ZYK332 Rdifuso Independente,,Cruz Alta (RS),-28.617778,-53.63,,0.25,,10702,230,155,,,,,,36901454,,, +830,USA,,KMUL,,Farwell (TX),34.495,-103.394167,,0.01,,8230,306,159,,,,,,38941,,, +830,USA,en,WPED343,,La Porte/124 S Second St. (TX),29.664111,-95.061011,,0.01,,8170,297,159,,,,,,20010508,,, +830,USA,en,KNNS724,,Carmel Valley (CA),36.481639,-121.732167,,0.01,,8956,320,163,,,,,,20010509,,, +830,USA,en,WE2XFZ,,Chilocco (OK),36.937222,-97.071389,,0.0001,,7663,304,174,,,,,,20010512,,, +832,RUS,,PL,b,Olenya,68.145833,33.458333,,0.025,,2290,29,96,,,,0,L1020 U1020 ,85775,,, +832,RUS,,SHW,b,Olenya,68.145833,33.458333,,0.025,,2290,29,96,,,,,,85776,,, +835,RUS,,U,b,Ekaterinburg / Aramil / Uktus (SV),56.6875,60.791667,,0.025,,3462,60,108,,,,,L834 U836 ,85777,,, +837,F,fr,France Info,,Nancy/Nomeny (54),48.882222,6.232778,,200,,359,182,38,,0000-2400,1234567,4,,504,,, +837,UKR,uk,UR 1 Persha Prog.,,Taranivka (KA),49.63575,36.123958,,150,,2088,86,56,,0400-0800,1234567,2,,513,,, +837,UKR,uk,UR 1 Persha Prog.,,Taranivka (KA),49.63575,36.123958,,150,,2088,86,56,,1500-2000,1234567,2,,513,,, +837,UKR,uk,R Bukovyna,,Chernivtsi/Vul. Putyla 20 (CV),48.271306,25.892267,,30,,1446,99,57,,0600-1700,1234567,8,,511,,, +837,E,es,COPE,,Sevilla/EAK2 (AND-SE),37.393183,-6.0565,,50,,1904,216,59,,0000-2400,1234567,1,,503,,, +837,G,en,BBC R Cumbria,,Barrow-in-Furness (EN-CUM),54.126278,-3.196389,,2,,679,293,61,,0000-2400,1234567,0,,505,,, +837,E,es,COPE,,Burgos/Cortes (CAL-BU),42.334736,-3.672261,,5,,1324,219,63,,0000-2400,1234567,,,500,,, +837,G,,BBC Asian Network,,Leicester/Freemen's Common (EN-LEI),52.619,-1.131472,,0.45,,515,279,66,,0600-2400,1234567,0,,506,,, +837,G,,BBC WS,,Leicester/Freemen's Common (EN-LEI),52.619,-1.131472,,0.45,,515,279,66,,0000-0600,1234567,0,,506,,, +837,E,es,COPE,,La Corua/El Ferrol (GAL-C),43.478789,-8.284094,,2,,1453,234,69,,0000-2400,1234567,,,501,,, +837,IRN,fa,IRIB R Esfahan,,Esfahan/Habibabad (esf),32.838875,51.771794,,400,,4199,103,73,,0000-2400,1234567,9993,,508,,, +837,ALG,fr,Chane 3,,Bchar (8),31.631111,-2.222222,,5,,2383,200,74,,0500-0100,1234567,,,200006,,, +837,CNR,es,COPE,,Tafira/EAK35 (LPM-GC),28.069167,-15.448611,,10,,3229,223,79,,0000-2400,1234567,1,,499,,, +837,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (mae),15.219417,38.87475,,100,,5003,133,87,,0330-0700,1234567,,,2405,,, +837,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (mae),15.219417,38.87475,,100,,5003,133,87,,1400-1800,1234567,,,2405,,, +837,YEM,ar,YGCRT Al-Shabab R,,Sana'a (san),15.380678,44.198419,,30,,5267,127,95,,0300-2300,1234567,82,,514,,, +837,ETH,,R Oromia,,Robe (orm),7.086817,39.998139,,100,,5867,136,96,,0400-0600,1234567,,,9600020,,, +837,ETH,,R Oromia,,Robe (orm),7.086817,39.998139,,100,,5867,136,96,,0900-1100,1234567,,,9600020,,, +837,ETH,,R Oromia,,Robe (orm),7.086817,39.998139,,100,,5867,136,96,,1600-1800,1234567,,,9600020,,, +837,IND,,AIR South,,Vijayawada A (AP),16.359028,80.500833,,100,,7498,92,112,,0025-0430,1234567,,,48493,,, +837,IND,,AIR South,,Vijayawada A (AP),16.359028,80.500833,,100,,7498,92,112,,0610-0930,1234567,,,48493,,, +837,IND,,AIR South,,Vijayawada A (AP),16.359028,80.500833,,100,,7498,92,112,,1130-1742,1234567,,,48493,,, +837,CHN,,CNR 5 Zhonghua zhi Sheng,,Quanzhou/SARFT641 (FJ),24.887361,118.806944,,1000,130,9242,58,115,,2055-1705,1234567,,,36200211,,, +837,CHN,,Harbin RGD News,,Harbin (HL),45.615833,126.833611,,50,,7753,40,118,,,,,,48488,,, +837,KOR,,HLKY CBS,,Seoul/Neunggok (seo),37.611944,126.823611,,50,,8494,45,125,,0000-2400,1234567,,,48498,,, +837,CHN,,Liaoning RGD Xinwen Tai,,Liaoyang (LN),41.266667,123.166667,,10,,7981,45,127,,,,,,48489,,, +837,J,,JOQK NHK1,,Niigata (chu-nii),37.845,138.9175,,10,,9006,36,134,,0000-2400,1234567,,,48496,,, +837,THA,,Sor. Wor. Thor. (R Thailand),,Bang Phun (ptn),13.75,100.5,,10,,9080,78,134,,0655-1600,1234567,,,48505,,, +837,THA,,Sor. Wor. Thor. (R Thailand),,Bang Phun (ptn),13.75,100.5,,10,,9080,78,134,,2300-0430,1234567,,,48505,,, +837,CHN,,Chaoyang RGD,,Chaoyang (LN),41.566667,120.466667,,1,,7822,47,135,,,,,,48487,,, +837,TWN,,BCC Country Network,,Taichung (TC),24.054139,120.681086,,10,,9426,57,135,,0000-2400,1234567,,,48507,,, +837,VTN,vi,VOV Cần Thơ R,,Cần Thơ (cnt),10.01765,105.768667,,10,,9759,77,136,,0400-0600,1234567,,,48509,,, +837,VTN,vi,VOV Cần Thơ R,,Cần Thơ (cnt),10.01765,105.768667,,10,,9759,77,136,,0900-1200,1234567,,,48509,,, +837,VTN,vi,VOV Cần Thơ R,,Cần Thơ (cnt),10.01765,105.768667,,10,,9759,77,136,,2200-2400,1234567,,,48509,,, +837,THA,th,Sathaanii Witthayu 909 Kao-Suun-Kao,,Sakon Nakhon/Nakhon Phanom Rd (snk),17.159444,104.131944,,5,,9023,73,137,,2200-1700,1234567,,,48506,,, +837,PHL,,DZRK-AM Radyo ng Bayan,,Tabuk (kal),17.416667,121.45,,7,,10083,60,139,,,,,,50468,,, +837,CHN,zh,Xinyang News BS,,Xinyang (HE),32.166667,114.066667,,1,,8316,57,140,,,,999,,48492,,, +837,PHL,tl,DYFM-AM Bombo Radyo,,Iloilo City (ilo),10.7052,122.587506,,10,,10771,63,140,,????-1615,1234567,,,48503,,, +837,CHN,,Xiantao RGD,,Xiantao (HU),30.383333,113.4,,1,,8435,58,141,,,,,,36200800,,, +837,J,,NHK R 1,,Nayoro (hok),44.366667,142.466667,,1,,8492,31,142,,0000-2400,1234567,,,48495,,, +837,PHL,,DXJS-AM Radyo ng Bayan,,Tandag (sds),9.068583,126.193369,,5,,11140,61,144,,,,,,48671,,, +837,PHL,,DXRE-AM Sonshine R,,General Santos City (sco),6.116667,125.083333,,5,,11348,63,144,,,,,,48502,,, +837,INS,,R Muslim Jakarta,,Jakarta/Ciganjur (JK-kjs),-6.15,106.866667,,1,,11260,86,151,,,,,,35400011,,, +837,AUS,,4RK ABC Capricornia,,Rockhampton/Gracemere (QLD),-23.452272,150.457317,,10,,15608,58,156,,0000-2400,1234567,,,48486,,, +837,AUS,,6ED ABC Goldfields-Esperance,,Esperance (WA),-33.752333,121.86,,1,,14582,95,162,,0000-2400,1234567,,,48484,,, +837,NZL,en,RNZ National,,Kaitaia/Waipapakauri (NTL),-35.035556,173.246389,,2,,17848,34,170,,0000-2400,1234567,,,48499,,, +837,NZL,en,RNZ National,,Whangarei/Otaika (NTL),-35.780556,174.319444,,2,,17964,32,170,,0000-2400,1234567,,,48500,,, +837,AUS,,7XS West Coast,,Queenstown/Conlan St (TAS),-42.095,145.546389,,0.5,,16778,86,172,,2000-1400,1234567,,,48485,,, +840,USA,en,WHAS,,Louisville (KY),38.261111,-85.428611,,50,,6867,297,109,,,,55,,41598,,, +840,USA,es,WCEO,,Columbia (SC),34.211667,-80.834722,,50,,6904,291,109,,1200-2400,1234567,,,42968,,, +840,USA,en,WKTR,,Earlysville (VA),38.265833,-78.414722,,8.2,,6432,293,112,,1200-2400,1234567,,,42079,,, +840,USA,,WKDI,,Denton (MD),38.898056,-75.852778,,1,,6221,291,119,,,,,,41982,,, +840,USA,en,WHGH,,Thomasville (GA),30.798333,-83.939444,,10,,7380,290,121,,1200-2400,1234567,,,41630,,, +840,HTI,,R 4VEH,,Cap-Hatien/La Petite Anse (nrd),19.734086,-72.178714,,10,,7518,274,122,,,,996,,52105,,, +840,USA,,KTIC,,West Point (NE),41.785,-96.6775,,5,,7231,307,122,,,,,,39486,,, +840,VEN,,YVMY R Juventud,,Barquisimeto (lar),10.066667,-69.316667,,50,,8153,265,122,,,,,,45389,,, +840,USA,,WBHY,,Mobile (AL),30.763889,-88.11,,10,,7647,293,123,,,,,,40855,,, +840,USA,en,WVPO,,Stroudsburg (PA),40.973889,-75.195278,,0.25,,6025,293,123,,,,,,43340,,, +840,CUB,es,R Revolucin,,Palma Soriano (sc),20.199172,-75.980731,,10,,7737,277,124,,,,,,31600020,,, +840,USA,es,WRYM,,New Britain (CT),41.686111,-72.729722,,0.125,,5818,292,124,,,,25,,42941,,, +840,CUB,es,CMHW Doblev/CMBQ W Santa Maria,,Santa Clara/CTOM2 (vc),22.420144,-79.939294,,10,,7817,282,125,,,,0,,31600019,,, +840,VEN,,YVUZ Guarapiche 8-40,,Maturin (mgs),9.75,-63.183333,,10,,7765,260,125,,0000-2400,1234567,,,51665,,, +840,USA,,KWDF,,Ball (LA),31.377778,-92.474167,,8,,7865,297,127,,,,,,39697,,, +840,B,pt,ZYJ679 Rdio Nacional,,Porto Velho (RO),-8.776644,-63.882433,,50,,9470,249,128,,,,,,36901480,,, +840,EQA,es,HCPN1 R Vigia La Voz de la Policia Nacional,,Quito (pic),-0.216667,-78.5,,50,,9679,266,129,,,,,,2257,,, +840,PTR,es,WXEW,,Yabucoa (PR),18.049444,-65.868611,,1,,7230,268,129,,0830-0300,1234567,,,43462,,, +840,USA,,KXNT,i,North Las Vegas (NV),36.398056,-114.915833,,25,,8651,315,129,,,,2,,39809,,, +840,B,pt,ZYK687 Rdio Bandeirantes,,So Paulo/Jardim Santa Emilia (SP),-23.6465,-46.600944,,50,,9868,227,130,,,,,,36901468,,, +840,CLM,es,HJKK HJ Doble K,,Neiva (hui),2.933333,-75.333333,,30,,9187,265,130,,,,1,,35901413,,, +840,USA,en,WPGS,,Mims (FL),28.738889,-80.883889,,1,,7352,287,131,,1200-2400,1234567,9992,,42681,,, +840,B,pt,ZYH447 Rdio Excelsior,,Salvador (BA),-12.92355,-38.500933,,5,,8415,225,134,,,,,,36901478,,, +840,CLM,es,HJBI,,Santa Marta (mag),11.183333,-74.166667,,5,,8386,270,134,,,,,,37347,,, +840,PNR,es,HOL80 R Nacional,,Howard (pnm),8.932272,-79.582172,,10,,8952,272,134,,0000-2400,1234567,2,,37702,,, +840,CAN,,CKBX,,100 Mile House (BC),51.669722,-121.290833,,0.5,,7482,328,135,,,,997,,36275,,, +840,ARG,es,LV9 R Salta,,Salta/La Merced (sa),-25.008572,-65.490469,,25,,11036,241,136,,1000-0500,1234567,8,,40259,,, +840,USA,en,KMPH,i,Modesto (CA),37.709444,-120.726111,,5,,8794,320,136,,,,99971,,39148,,, +840,DOM,,HIAB R Isabel de Torres,,San Felipe de Puerto Plata (ppl),19.766667,-70.666667,,0.25,,7412,273,137,,0930-0330,1234567,,,37193,,, +840,NCG,,YNRN R Noticias,,Managua (mng),12.066667,-86.266667,,5,,9132,280,137,,1030-0200,1234567,,,45232,,, +840,SLV,,YSF,,San Salvador (ssl),13.716667,-89.25,,5,,9188,283,137,,,,,,45273,,, +840,USA,en,WQHY909,,Bloomfield (NJ),40.810969,-74.193531,,0.01,,5974,292,137,,,,,,20010534,,, +840,USA,en,WQHY909,,Eatontown (NJ),40.313083,-74.095667,,0.01,,6004,292,137,,,,,,20010532,,, +840,USA,en,WQHY909,,Keyport (NJ),40.427028,-74.227647,,0.01,,6004,292,137,,,,,,20010547,,, +840,USA,en,WQHY909,,Metchen (NJ),40.556667,-74.327628,,0.01,,6001,292,137,,,,,,20010549,,, +840,USA,en,WQHY909,,Saddle Brook (NJ),40.910967,-74.098194,,0.01,,5960,292,137,,,,,,20010542,,, +840,USA,en,WQHY909,,Union (NJ),40.696917,-74.260992,,0.01,,5986,292,137,,,,,,20010550,,, +840,USA,en,WQIC871,,Belmar (NJ),40.166111,-74.111025,,0.01,,6016,291,137,,,,,,20010544,,, +840,B,pt,ZYJ320 Rdio Educadora Inconfidncia,,Umuarama (PR),-23.787789,-53.300889,,10,,10230,232,138,,,,,,36901477,,, +840,B,pt,ZYK248 Rdio Capital,,Gravata (Cachoeirinha) (RS),-29.926667,-51.041389,,10,,10693,227,139,,,,,,36901475,,, +840,ARG,es,LT12 R General Madariaga,,Paso de los Libres (cn),-29.730014,-57.116153,,10,,10990,232,140,,0900-0300,1234567,,,40164,,, +840,B,pt,ZYH648 Rdio Campo Maior,,Quixeramobim (CE),-5.176817,-39.286661,,0.25,,7689,230,140,,,,,,36901472,,, +840,USA,en,KMAX,,Colfax (WA),46.913889,-117.324444,,0.28,,7774,323,140,,,,0,,38882,,, +840,USA,,KSWB,,Seaside (OR),45.981944,-123.917222,,0.5,,8124,326,141,,,,,,39440,,, +840,B,pt,ZYI930 Rdio Ribeiro,,Demerval Lobo (PI),-5.339428,-42.689064,,0.25,,7886,233,142,,,,,,36901470,,, +840,HND,,HRQW,,Puerto de Tela (atl),15.666667,-87.466667,,1,,8899,283,143,,,,,,37831,,, +840,USA,,KVJY,,Pharr (TX),26.316667,-98.104444,,1,,8647,297,143,,,,,,39631,,, +840,MEX,es,XEMY-AM La Jefa,,Ciudad Mante (tam),22.815,-98.945833,,1,,9009,296,144,,,,,,44423,,, +840,PRG,,ZP6 R Guaira,,Villarrica (cgz),-25.25,-56.416667,,3,,10537,234,144,,0900-2400,1234567,,,45552,,, +840,GTM,,TGSM LV de San Marcos,,San Marcos (sms),14.966667,-91.783333,,1,,9246,286,145,,1300-0400,1234567,,,40543,,, +840,MEX,es,XEXXX-AM Fiesta Mexicana,,Tamazula de Gordiano (jal),19.651389,-103.265186,,1,,9557,297,146,,,,,,45075,,, +840,ARG,es,LU2 R Baha Blanca,,Baha Blanca (ba),-38.662014,-62.264186,,5,,12074,230,147,,0900-0400,1234567,,,40214,,, +840,CHL,es,CB84 R Portales,,Valparaso/Alto del Puerto (VS),-33.085669,-71.617039,,5,,12110,240,147,,1000-0500,1234567,977,,35763,,, +840,EQA,,HCEM4,,Costa Azul (man),-1.066667,-80.433333,,1,,9886,267,147,,,,,,36919,,, +840,PRU,es,OAU2E Frequencia San Ignacio,,San Ignacio/Cerro los Loros (caj),-5.144444,-79.002778,,1,,10147,263,147,,,,,,37000070,,, +840,USA,,KKNX,,Eugene (OR),44.081667,-123.109444,,0.17,,8277,325,147,,,,,,38739,,, +840,CHL,,CD84 R Santa Maria,,Coyhaique (AI),-45.533333,-72.066667,,10,,13177,231,148,,1030-0230,1234567,,,35919,,, +840,B,pt,ZYJ750 Rdio Rural de Concrdia,,Concrdia (SC),-27.223056,-52.011389,,1,,10486,229,149,,,,,,36901476,,, +840,PRU,,OAX3S R Casma,,Casma/Tabon Alto (anc),-9.461111,-78.33,,1,,10481,260,149,,1100-0300,1234567,,,40297,,, +840,B,,ZYH292,,Fonte Boa (AM),-2.516667,-66.016667,,0.25,,9044,254,150,,,,,,45593,,, +840,B,pt,ZYH298 Rdio Rio Madeira,,Manicor (AM),-5.807144,-61.281919,,0.25,,9035,249,150,,,,,,36901471,,, +840,MEX,es,XETEY-AM R Sensacin,,Tepic (nay),21.522381,-104.922389,,0.25,,9487,300,151,,,,,,44814,,, +840,ARG,,R General Belgrano,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51808,,, +840,MEX,es,XEFG-AM La Pachanga,,Celaya (gua),20.527342,-100.770108,,0.1,,9326,296,155,,,,,,44005,,, +840,USA,en,WPLX306,,Canton (TX),32.594328,-95.877697,,0.01,,7966,300,157,,,,,,20010554,,, +840,USA,en,KNNN866,,Gilroy (CA),37.010994,-121.560997,,0.01,,8898,320,163,,,,,,20010563,,, +840,USA,en,KNNN866,,Milpitas (CA),37.427692,-121.9155,,0.01,,8873,321,163,,,,,,20010565,,, +840,USA,en,KNNN866,,Palo Alto (CA),37.446889,-122.127694,,0.01,,8880,321,163,,,,,,20010564,,, +840,USA,en,KNNN866,,San Juan Bautista (CA),36.862417,-121.579333,,0.01,,8913,320,163,,,,,,20010562,,, +840,USA,en,KNNT676,,Los Gatos (CA),37.248833,-121.959389,,0.01,,8892,321,163,,,,,,20010561,,, +840,USA,en,KNNT676,,San Jose (CA),37.242722,-121.777689,,0.01,,8885,321,163,,,,,,20010558,,, +840,USA,en,KNNT676,,San Jose (CA),37.316611,-121.944358,,0.01,,8885,321,163,,,,,,20010539,,, +840,USA,en,KNNT676,,San Jose (CA),37.344356,-121.861019,,0.01,,8878,321,163,,,,,,20010560,,, +840,USA,en,KNNT676,,Sunnyvale (CA),37.332722,-122.061033,,0.01,,8888,321,163,,,,,,20010559,,, +840,USA,en,KNNT676,,Sunnyvale (CA),37.411017,-122.044364,,0.01,,8880,321,163,,,,,,20010569,,, +840,USA,en,WNVQ787,,Orinda (CA),37.865472,-122.211033,,0.01,,8843,321,163,,,,,,20010567,,, +840,USA,en,WNVQ787,,Orinda (CA),37.892417,-122.177697,,0.01,,8839,321,163,,,,,,20010557,,, +840,USA,en,WNVQ787,,Walnut Creek (CA),37.911008,-122.077697,,0.01,,8833,321,163,,,,,,20010566,,, +840,USA,en,WPBW721,,Novato (CA),38.094344,-122.544361,,0.01,,8835,321,163,,,,,,20010571,,, +840,USA,en,WPBW721,,San Rafael (CA),37.961011,-122.509139,,0.01,,8846,321,163,,,,,,20010570,,, +840,USA,en,WPBW809,,Benicia (CA),38.049361,-122.133306,,0.01,,8822,321,163,,,,,,20010513,,, +840,USA,en,WPBW809,,Fairfield (CA),38.214639,-122.144367,,0.01,,8806,321,163,,,,,,20010568,,, +840,USA,en,WPBW809,,Vallejo (CA),38.066861,-122.226639,,0.01,,8824,321,163,,,,,,20010546,,, +840,USA,en,WPBW813,,Belmont (CA),37.527689,-122.266083,,0.01,,8878,321,163,,,,,,20010530,,, +840,USA,en,WPBW813,,Brisbane (CA),37.694356,-122.394367,,0.01,,8867,321,163,,,,,,20010529,,, +840,USA,en,WPBW813,,Hillsborough (CA),37.511022,-122.344361,,0.01,,8883,321,163,,,,,,20010523,,, +840,USA,en,WPBW813,,Redwood City (CA),37.483556,-122.181917,,0.01,,8879,321,163,,,,,,20010528,,, +840,USA,en,WPCS305,,Emeryville (CA),37.846583,-122.29775,,0.01,,8848,321,163,,,,,,20010521,,, +840,USA,en,WPCS305,,Fremont (CA),37.527689,-121.994364,,0.01,,8866,321,163,,,,,,20010526,,, +840,USA,en,WPCS305,,Fremont (CA),37.533278,-122.077697,,0.01,,8869,321,163,,,,,,20010527,,, +840,USA,en,WPCS305,,Livermore (CA),37.711011,-121.744358,,0.01,,8838,321,163,,,,,,20010524,,, +840,USA,en,WPCS305,,Pleasanton (CA),37.593278,-121.877686,,0.01,,8855,321,163,,,,,,20010525,,, +840,USA,en,WPEI433,,San Bruno (CA),37.633556,-122.409417,,0.01,,8874,321,163,,,,,,20010519,,, +840,USA,en,WPEI433,,San Francisco (CA),37.744353,-122.411031,,0.01,,8863,321,163,,,,,,20010520,,, +840,USA,en,WPEI433,,San Francisco (CA),37.794342,-122.393583,,0.01,,8858,321,163,,,,,,20010531,,, +840,USA,en,WPEI433,,San Francisco (CA),37.809361,-122.365528,,0.01,,8855,321,163,,,,,,20010522,,, +840,USA,en,WPEI433,,San Francisco (CA),37.811011,-122.477694,,0.01,,8860,321,163,,,,,,20010517,,, +840,USA,en,WPEI433,,San Mateo (CA),37.561019,-122.29525,,0.01,,8876,321,163,,,,,,20010518,,, +840,USA,en,WPEI434,,Hayward (CA),37.609944,-122.066361,,0.01,,8861,321,163,,,,,,20010555,,, +840,USA,en,WPEI434,,Hayward (CA),37.627683,-122.161028,,0.01,,8864,321,163,,,,,,20010543,,, +840,USA,en,WPEI434,,Hayward (CA),37.666611,-122.111033,,0.01,,8858,321,163,,,,,,20010515,,, +840,USA,en,WPEI434,,Oakland (CA),37.74435,-122.197194,,0.01,,8854,321,163,,,,,,20010545,,, +840,USA,en,WPEI434,,Oakland (CA),37.811014,-122.279417,,0.01,,8851,321,163,,,,,,20010516,,, +840,USA,en,WPEI434,,San Pablo (CA),37.961017,-122.331083,,0.01,,8839,321,163,,,,,,20010514,,, +840,USA,en,WPEX988,,Belvedere (CA),37.877681,-122.463583,,0.01,,8852,321,163,,,,,,20010553,,, +840,USA,en,WPHF893,,Salinas (CA),36.583306,-121.59435,,0.01,,8940,320,163,,,,,,20010551,,, +840,USA,en,WPIJ667,,San Jose (CA),37.359111,-121.911025,,0.01,,8879,321,163,,,,,,20010548,,, +840,USA,en,WPIJ667,,Santa Cruz (CA),36.994356,-122.027697,,0.01,,8920,321,163,,,,,,20010533,,, +840,USA,en,WPIJ667,,Scotts Valley (CA),37.061056,-122.011028,,0.01,,8912,321,163,,,,,,20010552,,, +840,USA,en,WQEG408,,Oakland (CA),37.827675,-122.312028,,0.01,,8851,321,163,,,,,,20010535,,, +840,USA,en,WQFS210,,San Francisco/Bay Bridge I-80 (CA),37.794347,-122.394328,,0.01,,8858,321,163,,,,,,20010536,,, +840,USA,en,WQFS210,,San Francisco/Bay Bridge I-80 (CA),37.795417,-122.380694,,0.01,,8857,321,163,,,,,,20010537,,, +840,USA,en,WQFS210,,San Francisco/Bay Bridge I-80 (CA),37.7995,-122.376556,,0.01,,8856,321,163,,,,,,20010538,,, +840,USA,en,WQFS210,,San Francisco/Bay Bridge I-80 (CA),37.810958,-122.3777,,0.01,,8855,321,163,,,,,,20010540,,, +840,USA,en,WQGU629,,Napa (CA),38.244367,-122.277686,,0.01,,8809,321,163,,,,,,20010541,,, +840,USA,en,WQIQ628,,Sears Point (CA),38.161028,-122.449583,,0.01,,8824,321,163,,,,,,20010556,,, +846,IRL,en,R North/AWR/Gospel 846,,Redcastle (DL),55.166667,-7.15,,1,,954,296,67,,0000-2400,1234567,996,,515,,, +846,RUS,ru,R Rossii,,Elista (KX),46.3075,44.181389,,42,,2785,88,69,,0100-2100,1234567,5,,517,,, +846,GRC,,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,30,,3400024,,, +846,IRN,fa,IRIB R Tabriz,,Mianeh (eaz),37.457303,47.694222,,10,,3579,101,83,,0200-2100,1234567,3,,1788,,, +846,ISR,he,IBA Reshet Bet (B),,Zefat (hzf),32.966667,35.5,,1,,3157,121,89,,0000-2400,1234567,,,46838,,, +846,UAE,ar,Umm Al Quwain BS,,Umm al-Quwain (uaq),25.588889,55.575,,20,,5040,106,94,,0200-1900,1234567,1,,520,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,0020-0500,1234567,4,,48539,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,0630-0930,123456,4,,48539,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,0630-1000,......7,4,,48539,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,1030-1742,......7,4,,48539,,, +846,IND,,AIR West,,Ahmedabad A (GJ),22.862778,72.6125,,200,,6411,94,98,,1130-1742,123456,4,,48539,,, +846,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Nyamninia (nyz),0.103333,34.5085,,100,,6349,146,101,,0200-2110,1234567,,,2096,,, +846,UZB,,MTRK R Mash'al,,unknown,41.5,64.5,,1,,4448,82,101,,,,,,48572,,, +846,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,3,,5777,76,110,,,,0,,36200041,,, +846,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.633333,91.008333,,10,,7102,75,118,,2250-1700,1234567,,,48530,,, +846,BGD,,Bangladesh Betar,,Bogra/Kahalu (rjs),24.859394,89.26855,,10,,7378,79,121,,0000-0400,1234567,,,48514,,, +846,BGD,,Bangladesh Betar,,Bogra/Kahalu (rjs),24.859394,89.26855,,10,,7378,79,121,,0600-1710,1234567,,,48514,,, +846,CHN,,Henan RGD Nongcun Guangbo,,Zhengzhou/HETS976 (HE),34.796944,113.746944,,50,,8066,55,121,,,,,,36200040,,, +846,TWN,,Han Sheng GD Kuanghua zhi Sheng,,Kuanyin=Guanin (TY),25.043889,121.094722,,250,,9358,56,121,,0655-0105,1234567,0,,48569,,, +846,CHN,,Shanxi RGD Zonghe Guangbo,,Changzhi/Nanzhuang (SX),36.08,113.081389,,20,,7916,55,123,,,,,,48519,,, +846,CHN,,Langfang RGD,,Langfang (HB),39.528333,116.729722,,10,,7812,50,125,,,,,,48529,,, +846,CHN,en,CRI News Center,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0000-2400,1234567,,,48517,,, +846,CHN,mn,Fuxin RGD,,Fuxin (LN),42.033333,121.633333,,10,,7838,45,125,,,,,,48522,,, +846,AFS,,UMFM-Umhlobo Wenene FM,,Komga (EC),-32.561611,27.861889,,100,,9644,162,126,,0000-2400,1234567,0,,2409,,, +846,CHN,,Cangzhou RGD Literary,,Cangzhou (HB),38.275917,116.768333,,10,,7925,51,126,,,,,,48518,,, +846,CHN,,Jilin RGD Dazhong Shenghuo,,Changchun (JL),43.8,125.4,,10,,7855,42,126,,,,,,36200798,,, +846,CHN,,Binzhou RGD,,Binzhou (SD),37.366667,118.016667,,10,,8071,51,128,,,,,,36200799,,, +846,CHN,,Hubei RGD Shenghuo Pindao,,Qichun (HU),30.233333,115.416667,,30,,8565,57,128,,,,,,36200786,,, +846,CHN,,Henan RGD Nongcun Guangbo,,Zhumadian (HE),32.915,114.021389,,10,,8247,56,129,,,,,,36200776,,, +846,CHN,,Hubei RGD Shenghuo Pindao,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,,,,,36200782,,, +846,CHN,,Nanyang RGD Xinwen Pinl,,Nanyang (HE),32.975278,112.498333,,10,,8155,57,129,,,,,,36200787,,, +846,CHN,,Qingdao RGD Literary Arts,,Qingdao/SDTS135 (SD),36.121589,120.350533,,10,,8306,50,130,,,,,,48534,,, +846,CHN,zh,Hubei RGD Chutian Weixing,,Yichang (HU),30.703056,111.228889,,10,,8280,60,130,,2000-1630,1234567,,,48538,,, +846,PHL,,DZRV-AM Veritas 846,,Malolos (bul),14.84935,120.827561,,50,,10283,62,131,,0000-2400,1234567,9995,,48567,,, +846,CHN,zh,Hubei RGD Chutian Weixing,,Xianning (HU),29.866667,114.283333,,10,,8532,58,132,,,,,,36200781,,, +846,CHN,,Changzhou RGD,,Changzhou (JS),31.768056,119.778333,,10,,8670,53,133,,2130-1435,1234567,,,48521,,, +846,CHN,,Guangxi JGD Caifu Guangbo,,Qinzhou/GXTS245 (GX),21.966667,108.616667,,10,,8888,67,133,,2200-1605,1234567,,,48535,,, +846,CHN,,Shanxi RGD Zonghe Guangbo,,Shuozhou (SX),39.316667,112.416667,,1,,7600,53,133,,,,,,36200785,,, +846,CHN,,Weihai RGD Literary Arts,,Weihai (SD),37.516667,122.116667,,5,,8270,48,133,,,,,,48537,,, +846,KOR,ko,HLAU MBC,,Ulsan/Samsan (uls),35.579722,129.232222,,10,,8800,44,133,,0000-2400,1234567,,,48562,,, +846,VTN,vi,VOV Thanh Ha R,,Thanh Ho (tho),19.817833,105.777056,,10,,8896,70,133,,0400-1030,1234567,,,48573,,, +846,CHN,,Shanxi RGD Zonghe Guangbo,,Lliang (SX),36.7,110.933333,,1,,7742,56,134,,,,,,48516,,, +846,THA,,Sor. Wor. Thor. (R Thailand),,Phetchabun (pbn),16.3,101.633333,,10,,8933,76,134,,2200-1600,1234567,13,,48568,,, +846,CHN,,Jiangsu RGD Jiankang Shenghuo Pinl,,Nanjing/Gulizhen (JS),31.868167,118.671889,,5,,8600,54,135,,0000-2400,1234567,,,48532,,, +846,CHN,,Shanxi RGD Zonghe Guangbo,,Yangquan (SX),37.872222,113.566667,,1,,7787,53,135,,,,,,36200780,,, +846,CHN,,Yunnan RGD Xinwen Guangbo,,Fugong (YN),26.966667,98.9,,1,,7837,71,135,,,,,,36200796,,, +846,KOR,,HLSY KBS 1 R,,Yanggu (gan),38.083333,128.022778,,5,,8507,44,135,,0000-2400,1234567,,,48563,,, +846,TWN,,Fu Hsing Kuangpo Tientai 2,,Kaohsiung/Niaosun (KH),22.649553,120.3471,,10,,9536,58,135,,0000-2400,1234567,,,48571,,, +846,TWN,,Han Sheng Kuangpo Tientai,,Magong=Makung (PG),23.566417,119.562811,,10,,9407,58,135,,,,,,52261,,, +846,CHN,,Handan RGD Opera & Story,,Handan (HB),36.6,114.466667,,1,,7948,54,136,,,,,,36200795,,, +846,CHN,,Hebei RGD Jingji Guangbo,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,36200794,,, +846,CHN,,Hebei RGD Jingji Guangbo,,Tangshan (HB),39.666667,118.266667,,1,,7880,49,136,,,,,,36200784,,, +846,CHN,,Jingzhou RGD Traffic & Literary,,Jinzhou (LN),41.116667,121.116667,,1,,7895,46,136,,,,,,48528,,, +846,CHN,,Suzhou JGD City Music,,Suzhou (JS),31.412778,120.693056,,5,,8752,52,136,,2200-1504,1234567,,,48536,,, +846,CHN,zh,CNR 1,,Xinji (HB),37.9,115.2,,1,,7874,52,136,,2025-1805,1234567,,,36201234,,, +846,CHN,,Hebi JGD,,Hebi (HE),35.9,114.2,,1,,7994,54,137,,,,,,48523,,, +846,J,,JOCP NHK1,,Koriyama (toh-fuk),37.360556,140.355833,,5,,9112,35,137,,0000-2400,1234567,,,48557,,, +846,CHN,,Jinan JGD,,Jinan/Daqiao (SD),36.791389,117.015556,,1,,8069,52,138,,2055-1700,1234567,,,48527,,, +846,CHN,,Pingdingshan RGD Literature,,Pingdingshan (HE),33.7,113.283333,,1,,8136,56,138,,,,,,48533,,, +846,CHN,,Yunnan RGD Xinwen Guangbo,,Longchuan (YN),25.2,101.266667,,1,,8140,70,138,,,,,,36200791,,, +846,CHN,,Zhaotong RGD He Shi zhi Sheng,,Zhaotong (YN),27.316667,103.716667,,1,,8115,67,138,,,,,,36200777,,, +846,CHN,,Weifang RGD Traffic,,Weifang (SD),36.731389,119.136667,,1,,8187,50,139,,,,,,36200783,,, +846,CHN,,Yunnan JGD,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200792,,, +846,CHN,zh,CNR 1,,Ximeng/Mengka Zhen (YN),22.736111,99.456944,,1,,8233,73,139,,2025-1805,1234567,,,36200790,,, +846,CHN,,Huaibei RGD Quyi Xiaoshuo,,Huaibei (AH),33.956972,116.783444,,1,,8309,54,140,,????-1430,1234567,,,48524,,, +846,CHN,,Chaohu RGD,,Chaohu (AH),31.5888,117.830833,,1,,8579,54,142,,,,,,36200797,,, +846,CHN,,Hubei RGD Shenghuo Pindao,,Huanggang (HU),30.45,114.8,,1,,8510,57,142,,,,,,36200793,,, +846,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Nanning (GX),22.8,108.3,,1,,8795,67,143,,,,,,36200788,,, +846,CHN,,Guangdong Weixing Guangbo,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,,,,,36200779,,, +846,CHN,,Guangdong Weixing Guangbo,,Zhaoqing (GD),23.039167,112.501667,,1,,9034,63,144,,,,,,36200778,,, +846,J,,NHK R 1,,Hitoyoshi (kyu-kum),32.216667,130.783333,,1,,9194,45,144,,0000-2400,1234567,,,48555,,, +846,J,,NHK R 1,,Uwajima (shi-ehi),33.213889,132.556944,,1,,9182,43,144,,0000-2400,1234567,,,48560,,, +846,J,,JOPG NHK1,,Hirosaki (toh-aom),40.619444,140.452778,,0.5,,8792,34,146,,0000-2400,1234567,9997,,48554,,, +846,CHN,zh,CNR 1,,Mojiang (YN),23.416667,101.733333,,0.1,,8323,71,150,,2025-1805,1234567,,,36200789,,, +846,INS,id,R Star,,Tegal (JT-kte),-6.866667,109.133333,,1,,11477,84,152,,,,,,48551,,, +846,INS,,R Suara al-Iman,,Surabaya (JI-ksu),-7.232778,112.751944,,1,,11755,81,153,,,,,,35400128,,, +846,J,,NHK R 1,,Noheji (toh-aom),40.916667,141.183333,,0.1,,8789,33,153,,0000-2400,1234567,,,48559,,, +846,AUS,,6CA ABC Northwest WA,,Carnarvon (WA),-24.872589,113.669778,,2.5,,13323,93,154,,0000-2400,1234567,,,48513,,, +846,J,,NHK R 1,,Kamaishi (toh-iwa),39.266667,141.883333,,0.1,,8980,33,154,,0000-2400,1234567,,,48556,,, +846,J,ja,NHK R 1,,Iwami,34.783333,134.533333,,0.1,,9120,41,154,,,,,,31400061,,, +846,AUS,en,4EL/4CA AM,,Cairns/Bessie Point (QLD),-16.903222,145.8205,,5,,14734,58,156,,0000-2400,1234567,,,48511,,, +846,INS,id,RKPDT2 Suara Ponorogo,,Ponorogo (JI),-7.866667,111.466667,,0.5,,11723,83,156,,,,,,48546,,, +846,AUS,,2RN ABC National,,Canberra/Gungahlin (ACT),-35.216958,149.120625,,10,,16533,72,159,,0000-2400,1234567,,,48512,,, +846,NZL,en,2ZD Newstalk ZB,,Masterton/Waingawa (WGN),-40.964722,175.589167,,2,,18528,38,172,,0000-2400,1234567,,,48565,,, +850,G,,CIT,b,Cranfield (EN-BEF),52.145833,-0.541667,,0.025,,474,273,78,,,,3,L385 U394 8.8s,85779,,, +850,USA,en,WEEI,,Boston/Starr Ridge (MA),42.278056,-71.267222,,50,,5683,292,97,,,,1,,41257,,, +850,TCD,,R Sarh,,Sarh (mch),9.12355,18.404394,,1,,4902,163,106,,1500-1800,1234567,,,2006,,, +850,USA,,WTAR,,Norfolk (VA),37.06,-76.690556,,25,,6415,290,107,,,,,,43105,,, +850,ALS,en,KICY,,Nome (AK),64.4875,-165.314722,,50,270,7030,356,110,,1300-0800,1234567,999,,38581,,, +850,ALS,ru,KICY,,Nome (AK),64.4875,-165.314722,,50,270,7030,356,110,,0800-1300,1234567,999,,38581,,, +850,USA,,WKVL,,Knoxville (TN),36.07,-83.971944,,50,,6953,294,110,,,,,,42087,,, +850,USA,,WAXB,,Ridgefield (CT),41.290833,-73.487778,,2.5,,5894,292,112,,,,,,42833,,, +850,USA,,WWJC,,Duluth (MN),46.655278,-92.211111,,10,,6592,308,113,,,,,,43393,,, +850,USA,,WKNR,,Cleveland/North Royalton (OH),41.316667,-81.730833,,4.7,,6403,297,114,,,,4,,42049,,, +850,USA,en,WPTK,,Raleigh (NC),35.801111,-78.814167,,5,,6649,291,117,,,,,,42818,,, +850,USA,en,KOA,,Denver (IBOC) (CO),39.506111,-104.765833,,50,,7859,310,119,,,,9999,,52639,,, +850,USA,,WAIT,,Crystal Lake (IL),42.258333,-88.363333,,2.5,,6724,302,120,,,,,,40678,,, +850,USA,,KFUO,,Clayton (MO),38.638889,-90.315833,,5,,7129,300,121,,,,,,38439,,, +850,USA,,WGVS,,Muskegon (MI),43.134722,-86.261389,,1,,6533,302,122,,,,,,41584,,, +850,USA,,WRUF,,Gainesville (FL),29.642778,-82.420278,,5,,7377,288,124,,,,,,42930,,, +850,USA,en,WFTL,,West Palm Beach (D) (FL),26.641111,-80.085556,,5,,7473,285,125,,,,11,,41448,,, +850,DOM,es,HIGA R Guarocuya,,Santa Cruz de Barahona (bh),18.214322,-71.119194,,5,,7575,272,126,,1000-0400,1234567,,,37250,,, +850,CLM,es,HJLC W R,,Bogot D. C. (bdc),4.646767,-74.186756,,50,,8958,265,127,,,,,,37522,,, +850,USA,,WPTB,,Statesboro (GA),32.465556,-81.832222,,1,,7108,290,128,,,,,,42742,,, +850,PTR,,WABA,,Aguadilla (PR),18.400556,-67.1575,,1,,7288,269,130,,0000-2400,1234567,,,40622,,, +850,USA,,KJON,,Carrollton (TX),33.278333,-96.821111,,5,,7962,301,130,,,,,,38686,,, +850,USA,,WXJC,,Birmingham (AL),33.623611,-86.745833,,1,,7324,294,130,,,,,,43470,,, +850,VEN,es,YVZC R Fe y Alegria,,Maracaibo (zul),10.666667,-71.616667,,10,,8257,267,130,,0900-0500,1234567,998,,51666,,, +850,USA,,WLRC,,Walnut (MS),34.946111,-88.878889,,0.94,,7346,297,131,,,,,,42224,,, +850,USA,,WYLF,,Penn Yan (NY),42.661389,-77.120556,,0.045,,6021,296,131,,,,,,43525,,, +850,PRU,es,OAX4A R Nacional del Per,,Lima (lim),-12.066667,-77.066667,,50,,10625,257,132,,,,,,40301,,, +850,URG,es,CX16 R Carve,,Montevideo (mo),-34.864639,-56.345944,,100,,11424,228,132,,0730-0400,1234567,26,,36804,,, +850,USA,en,WFTL,,West Palm Beach (N) (FL),26.641111,-80.085833,,1,,7473,285,132,,,,12,,20016207,,, +850,B,pt,ZYI693 Rdio Rural AM 850,,Guarabira (PB),-6.839717,-35.484317,,1,,7662,225,134,,,,,,36901488,,, +850,CTR,,TIW R Tigre,,San Jos (sjs),9.933333,-84.066667,,10,,9170,277,134,,,,,,40597,,, +850,HND,,HRUP,,Tegucigalpa (fmz),14.066667,-87.2,,10,,9021,282,134,,,,,,37856,,, +850,B,pt,ZYJ470 Rdio Difusora Campos,,Campos dos Goytacazes (RJ),-21.747356,-41.314447,,10,,9425,224,135,,,,,,36901494,,, +850,B,pt,ZYH599 Rdio Iracema,,Juazeiro do Norte (CE),-7.178036,-39.308394,,1,,7886,229,136,,,,,,36901489,,, +850,CUB,es,R Progreso,,Trinidad (ss),21.788033,-79.986122,,1,,7873,281,136,,,,,,36512,,, +850,USA,en,KHHO,i,Tacoma (WA),47.232222,-122.389444,,1,,7945,326,136,,,,,,38540,,, +850,B,pt,ZYH776 Rdio Tropical,,Porangatu (GO),-13.489392,-49.137056,,5,,9024,234,137,,,,,,36901483,,, +850,GTM,,TGX R Ciro,,Ciudad de Guatemala (gut),14.65,-90.466667,,5,,9187,284,137,,1000-????,1234567,,,40556,,, +850,PNR,es,HOT61 La Exitosa de Chiriqu,,Las Lomas (chq),8.426861,-82.374267,,5,,9186,274,137,,0000-2400,1234567,,,52304,,, +850,CUB,es,R Reloj,,Nueva Gerona (ij),21.861583,-82.805919,,1,,8055,283,138,,,,,,31600011,,, +850,B,pt,ZYI538 Rdio Itacainas,,Marab (PA),-5.342114,-49.080117,,1,,8246,239,139,,,,,,36901481,,, +850,HTI,,R Petion-Ville,,Port-au-Prince (oue),18.516667,-72.316667,,0.25,,7631,273,139,,,,,,52106,,, +850,B,pt,ZYH923 Cidade AM,,Vitria do Mearim (MA),-3.478375,-44.868428,,0.25,,7827,236,141,,,,,,36901498,,, +850,B,pt,ZYJ254 Rdio Difusora Colmia,,Campo Mouro (PR),-24.015833,-52.378889,,5,,10202,231,141,,,,,,36901486,,, +850,BOL,,CP210 R Maria Auxiliadora,,Montero (scz),-17.25,-63.25,,5,,10200,244,141,,0900-0300,123456,,,51970,,, +850,BOL,,CP210 R Maria Auxiliadora,,Montero (scz),-17.25,-63.25,,5,,10200,244,141,,1200-2400,......7,,,51970,,, +850,ARG,es,LV de America,,San Miguel (ba),-34.580825,-58.728511,,10,,11521,230,142,,,,,,51809,,, +850,B,pt,ZYI416 Rdio Cultura,,Poxoro (MT),-15.840611,-54.403492,,2,,9544,237,142,,,,,,36901501,,, +850,B,pt,ZYI555 Rdio Tocantins,,Camet (PA),-2.254631,-49.510856,,0.25,,7981,241,143,,,,,,36901493,,, +850,B,pt,ZYI909 Rdio Grande Picos,,Picos (PI),-7.084239,-41.443556,,0.25,,7988,231,143,,,,,,36901495,,, +850,MEX,es,XEJAQ-AM R Felicidad,,Jalpan de Serra (que),21.215117,-99.4663,,1,,9184,295,144,,,,,,44197,,, +850,B,pt,ZYJ675 Rdio Ariquemes,,Ariquemes (RO),-9.916111,-63.029722,,1,,9519,248,145,,,,,,36901485,,, +850,MEX,es,XEMIA-AM,,San Pedro Tlaquepaque (jal),20.636894,-103.317286,,1,,9471,298,145,,,,,,44378,,, +850,MEX,es,XEZI-AM Maxi Star,,Zacapu (mic),19.834889,-101.727,,1,,9447,296,145,,,,,,45141,,, +850,B,pt,ZYH474 Rdio Caraba,,Senhor do Bonfim/Fazenda Maravilha (BA),-10.446689,-40.201031,,0.25,,8254,228,146,,,,,,36901482,,, +850,EQA,,HCGB7,,Espejo (mor),-1.666667,-77.966667,,1,,9770,265,146,,,,,,36951,,, +850,HWA,en,KHLO,,Hilo (HI),19.696667,-155.051389,,5,,11830,342,146,,0000-2400,1234567,997,,38544,,, +850,MEX,es,XEM-AM Renacimiento 850,,Chihuahua (chi),28.6894,-106.120111,,0.5,,8903,305,146,,,,,,44337,,, +850,USA,,KEYH,,Houston (TX),29.655278,-95.671944,,0.185,,8208,298,146,,,,,,38358,,, +850,EQA,,HCBA6,,Ambato (tun),-1.25,-78.616667,,0.8,,9778,265,147,,,,,,36859,,, +850,EQA,es,HCVS2 R San Francisco,,Guayaquil (gua),-2.2,-79.866667,,1,,9947,266,147,,,,,,37180,,, +850,MEX,es,XERTM-AM La Z,,Macuspana (tab),17.777778,-92.615,,0.5,,9053,288,147,,,,,,44714,,, +850,B,pt,ZYJ291 Rdio Alvorada do Sul,,Rebouas (PR),-25.598889,-50.691111,,1,,10263,229,148,,,,,,36901500,,, +850,PRU,,OBX9W,,Chachapoyas (ama),-6.211556,-77.876203,,1,,10164,262,148,,,,,,37000075,,, +850,B,pt,ZYJ807 Rdio Atalaia,,Campo Er (SC),-26.389167,-53.083056,,1,,10463,231,149,,,,,,36901496,,, +850,B,pt,ZYK563 Rdio Clube de Birigui,,Birigui (SP),-21.248544,-50.334117,,0.5,,9830,231,149,,,,,,36901490,,, +850,BOL,,CP160 R 21 de Diciembre,,Mina Catavi (pts),-19.866667,-65.883333,,1,,10598,244,149,,1000-0100,1234567,,,51969,,, +850,PRU,,OBU7Z R Pachamama,,Puno (pun),-15.816667,-70.016667,,1,,10495,250,149,,0845-0030,12345..,90,,37000017,,, +850,PRU,,OBU7Z R Pachamama,,Puno (pun),-15.816667,-70.016667,,1,,10495,250,149,,0845-2300,.....67,90,,37000017,,, +850,B,pt,ZYL254 Mundo Melhor AM,,Governador Valadares (MG),-18.885467,-41.957669,,0.25,,9173,226,150,,,,14,,36901491,,, +850,MEX,es,XEZF-AM xtasis Digital,,Mexicali (bcn),32.63,-115.501667,,0.25,,9035,314,150,,,,35,,45135,,, +850,B,pt,ZYL233 Rdio Difusora Formiguense,,Formiga (MG),-20.488222,-45.437806,,0.25,,9503,228,151,,,,,,36901499,,, +850,B,pt,ZYL295 Rdio Tupaciguara,,Tupaciguara (MG),-18.586333,-48.704861,,0.25,,9488,231,151,,,,,,36901487,,, +850,MEX,es,XEUS-AM R Universidad,,Hermosillo/USON (son),29.083833,-110.958111,,0.2,,9133,308,151,,,,,,44929,,, +850,B,pt,ZYK644 Rdio Clube AM/Jornal,,Rio Claro (SP),-22.441617,-47.557522,,0.25,,9800,228,152,,,,,,36901502,,, +850,B,pt,ZYI438 Rdio Difusora Nortestado 850,,So Gabriel do Oeste (MS),-19.411167,-54.581106,,0.25,,9889,236,153,,,,,,36901484,,, +850,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010573,,, +850,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010572,,, +850,B,pt,ZYJ808 Cidade AM,,Brusque (SC),-27.083333,-48.916667,,0.25,,10315,227,154,,,,,,36901497,,, +850,ARG,es,R Rebelde,,Remedios de Escalada (ba),-34.733333,-58.383333,,0.5,,11517,230,155,,,,,,33000060,,, +855,E,es,RNE R Nacional,,Murcia/Torre de Cotillas (RNE) (MUR-MU),38.026514,-1.254214,,300,,1675,204,49,,0000-2400,1234567,1,,533,,, +855,ROU,ro,SRR R Romnia Actualităţi,,Tncăbeşti (Bucureşti) (BU),44.671111,26.080556,,250,,1664,112,50,,0000-2400,1234567,124,,539,,, +855,E,es,RNE R Nacional,,Santander/Rostro (CNT-S),43.477361,-3.852031,,50,,1226,223,52,,0000-2400,1234567,,,531,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0625-0630,12345..,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0650-0700,12345..,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0800-0815,12345..,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1208-1300,12345..,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1230-1300,.....67,978,,529,,, +855,E,ca,RNE Rdio 4,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1400-1415,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0000-0625,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0000-1230,.....67,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0630-0650,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0700-0800,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0815-1208,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1300-1400,12345..,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1300-2400,.....67,978,,529,,, +855,E,es,RNE R Nacional,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,1415-2400,12345..,978,,529,,, +855,G,en,BBC R 5 Live,,Postwick (EN-NFK),52.626944,1.402778,,2,,345,282,57,,0000-0300,12345..,3,,536,,, +855,G,en,BBC R 5 Live,,Postwick (EN-NFK),52.626944,1.402778,,2,,345,282,57,,0000-0500,.....67,3,,536,,, +855,G,en,BBC R Norfolk,,Postwick (EN-NFK),52.626944,1.402778,,2,,345,282,57,,0300-2400,12345..,3,,536,,, +855,G,en,BBC R Norfolk,,Postwick (EN-NFK),52.626944,1.402778,,2,,345,282,57,,0500-2400,.....67,3,,536,,, +855,E,es,RNE R Nacional,,Pamplona/Berrioplano (RNE) (NAV-NA),42.845747,-1.699028,,10,,1195,214,59,,0000-2400,1234567,,,528,,, +855,E,es,RNE R Nacional,,Pontevedra/Pastoriza-Finca Marn (GAL-PO),42.342,-8.720453,,25,,1571,232,59,,0000-2400,1234567,,,532,,, +855,G,,BBC Asian Network,,Preston (EN-LNC),53.722444,-2.568833,,2,,628,290,60,,1900-0100,123456,0,,535,,, +855,G,,BBC R.Lancashire/BBC Asian Network,,Preston (EN-LNC),53.722444,-2.568833,,2,,628,290,60,,1900-0100,......7,0,,535,,, +855,G,en,BBC R Lancashire,,Preston (EN-LNC),53.722444,-2.568833,,2,,628,290,60,,0100-1900,1234567,0,,535,,, +855,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0000-2400,1234567,,,527,,, +855,E,es,RNE R Nacional,,Teruel/La Muela (RNE) (ARA-TE),40.341664,-1.129378,,10,,1429,207,61,,0000-2400,1234567,,,530,,, +855,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0000-2400,1234567,998,,525,,, +855,RUS,ru,R Rossii,,Kamenka (PZ),53.200872,44.038856,,50,,2512,72,65,,0150-2200,1234567,9867,,540,,, +855,E,es,RNE R Nacional,,Huelva/Aljaraque (RNE) (AND-H),37.282511,-7.020006,,10,,1954,218,67,,0000-2400,1234567,997,,526,,, +855,E,es,RNE R Nacional,,Marbella (Elviria)/RNE (AND-MA),36.531256,-4.765361,,5,,1942,211,69,,0000-2400,1234567,,,524,,, +855,G,en,Sunshine 855,,Ludlow/Villa Farm (EN-SHP),52.334333,-2.632861,,0.15,,616,276,71,,0000-2400,1234567,,,537,,, +855,JOR,ar,JRTV R Jordan Quran,,Amman/JRTV (amn),31.904253,35.881628,,10,,3272,122,80,,0500-2200,1234567,9943,,538,,, +855,ARS,ar,BSKSA Al-Quran al-Karim,,Ras al-Khair (Ras al-Zawr) (shy),27.462833,49.288906,,100,,4475,111,82,,0000-2400,1234567,9899,,522,,, +855,ETH,,ERTA Ethiopia National R,,Harar (har),9.307611,42.109306,,100,,5748,133,95,,0300-0600,12345..,3,,2411,,, +855,ETH,,ERTA Ethiopia National R,,Harar (har),9.307611,42.109306,,100,,5748,133,95,,0400-2000,.....67,3,,2411,,, +855,ETH,,ERTA Ethiopia National R,,Harar (har),9.307611,42.109306,,100,,5748,133,95,,0800-2100,12345..,3,,2411,,, +855,PAK,,PBC Saut-ul Quran/NBS News,,Quetta 2 (blc),30.142917,66.979561,,10,,5438,92,101,,0200-0400,1234567,,,48589,,, +855,PAK,,PBC Saut-ul Quran/NBS News,,Quetta 2 (blc),30.142917,66.979561,,10,,5438,92,101,,0600-1810,1234567,,,48589,,, +855,CHN,ug,Xinjiang RGD Uighur/CNR 13,,rmqi/XJTS904 (XJ),43.715833,87.595,,10,,5800,65,105,,0000-1600,1234567,,,48580,,, +855,CHN,ug,CNR 13,,Artux=Atushi/XJTS8108 (XJ),39.706783,76.184928,,1,,5351,76,111,,0000-1800,1234567,,,36201095,,, +855,CHN,ug,CNR 13,,Guma=Pishan/XJTS8110 (XJ),37.580278,78.273333,,1,,5642,77,113,,0000-1800,1234567,,,36201097,,, +855,KRE,,KCBS Pyongyang Pangsong,,Sangwon (pyn),38.85,126.1,,500,,8344,44,114,,2100-2030,1234567,48,,48586,,, +855,CHN,ug,CNR 13,,Yutian=Keriya/XJTS8111 (XJ),36.867778,81.648889,,1,,5918,75,116,,0000-1800,1234567,,,36201096,,, +855,CHN,zh,CNR 2,,Oroqen=Elunchun/NMTS051 (NM),50.583333,123.716667,,10,,7170,39,119,,2100-1602,1234567,,,36201189,,, +855,CHN,zh,CNR 2,,Kunming/Anning-SARFT501 (YN),24.8925,102.484833,,50,,8244,70,123,,2100-1602,1234567,,,36200039,,, +855,CHN,zh,Xizang RGD Hanyu,,Lhaz=Lazi (XZ),29.088889,87.633333,,1,,6922,77,126,,,,,,36201185,,, +855,CHN,zh,Xizang RGD Hanyu,,Nyalam=Nielamu (XZ),27.991111,85.983889,,1,,6901,79,126,,,,,,36201187,,, +855,CHN,zh,Xizang RGD Hanyu,,Tingri=Dingri (XZ),28.661667,87.1225,,1,,6923,78,126,,,,,,36201191,,, +855,CHN,zh,Xizang RGD Hanyu,,Nagarz=Langkazi (XZ),28.963,90.398306,,1,,7116,75,128,,,,,,36201186,,, +855,CHN,zh,Xizang RGD Hanyu,,Sog=Suo Xian (XZ),31.895278,93.782,,1,,7099,71,128,,,,,,36201190,,, +855,CHN,zh,CNR 2,,Erenhot=Erlian/NMTS872 (NM),43.618056,111.999722,,1,,7211,50,129,,2100-1602,1234567,,,36200772,,, +855,CHN,,Wuhai RGD,,Wuhai (NM),39.730833,106.813611,,1,,7252,56,130,,,,,,36200771,,, +855,CHN,zh,CNR 2,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2100-1602,1234567,,,36200775,,, +855,CHN,zh,CNR 2,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,1,,7431,54,131,,2100-1602,1234567,,,36201188,,, +855,CHN,,CNR 2,,several locations,34.95,104.5,,1,,7515,61,132,,2058-1602,1234567,,,48579,,, +855,CHN,zh,CNR 2,,Shanghai/Yangpu (SH),31.280083,121.526233,,10,,8809,52,133,,2100-1602,1234567,,,36200173,,, +855,CHN,zh,Xizang RGD Hanyu,,Zay=Chayu (XZ),28.506667,97.015833,,1,,7586,71,133,,,,,,36201193,,, +855,KOR,ko,HLCX MBC,,Jeonju (jeb),35.906944,127.052778,,10,,8664,45,133,,0000-2400,1234567,,,48587,,, +855,TWN,,BCC News Network,,Hualien (HL),23.982833,121.614611,,10,,9486,56,135,,0000-2400,1234567,,,48597,,, +855,THA,th,Mor. Thor. Bor. Sip-Song,,Prachinburi/Fort Chak Krapong (pbu),14.071944,101.376389,,5,,9111,77,137,,,,,,48595,,, +855,CHN,zh,CNR 2,,Chuxiong/YNTS692 (YN),25.020511,101.555006,,1,,8174,70,139,,2100-1602,1234567,,,36200774,,, +855,PHL,,DZGE-AM Radyo Numero Uno,,Naga City/Canaman (cas),13.65,123.166667,,10,,10533,61,139,,2000-1500,1234567,,,48592,,, +855,PHL,,DXGO-AM Aksyon Radyo,,Davao City (dvs),7.05,125.583333,,10,,11292,62,141,,,,,,48590,,, +855,CHN,zh,CNR 2,,Longyan/FJTS601 (FJ),25.063333,117.027778,,1,,9123,59,144,,2100-1602,1234567,,,36200172,,, +855,INS,id,RRI Pro-1,,Mataram (NB-kma),-8.6605,116.157361,,10,,12110,80,144,,2100-1600,1234567,,,48584,,, +855,PHL,,DXZH-AM (r:666 DZRH-AM),,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,,,,,48593,,, +855,TWN,,Cheng Sheng BC,,Chiayi=Chia-i (CY),23.464167,120.343889,,1,,9461,57,145,,0000-2400,1234567,,,48596,,, +855,TWN,,Min Pen Kuangpo Tientai 2,,Taipei (TPS),25.01795,121.494183,,1,,9383,56,145,,0000-2400,1234567,,,48598,,, +855,INS,id,R Kabar Empat,,Bekasi (JB-kbk),-6.233333,107,,1,,11277,85,151,,,,,,35400129,,, +855,PHL,,DXWG-AM,,Iligan City (ldn),8.233333,124.25,,1,,11101,63,151,,,,,,48591,,, +855,AUS,en,4QO ABC Wide Bay,,Eidsvold (QLD),-25.407761,151.122811,,10,,15825,59,156,,0000-2400,1234567,,,48576,,, +855,AUS,en,4QB ABC Wide Bay,,Dundowran (QLD),-25.279167,152.75,,10,,15907,57,157,,0000-2400,1234567,1,,48577,,, +855,AUS,,3CR Community R,,Melbourne/Hoppers Crossing (VIC),-37.8865,144.704139,,2,,16438,81,165,,0000-2400,1234567,,,48578,,, +855,NZL,,1XH NZs Rhema,,Hamilton/Greenhill Road (WKO),-37.74295,175.306458,,2,,18199,33,171,,0000-2400,1234567,,,48588,,, +860,CAN,fr,CJBC,,Toronto/Meadowvale (ON),43.575,-79.817222,,50,,6118,298,101,,,,0,,36144,,, +860,USA,,WWDB,,Philadelphia (PA),40.154444,-75.369167,,10,,6097,292,108,,,,,,43366,,, +860,CAN,fr,CBKF-2,,Saskatoon (SK),52.25,-106.66,,10,,6842,320,115,,,,9997,,35786,,, +860,KNA,en,Voice of Nevis,,Bath Village (sjw),17.166667,-62.566667,,10,,7080,264,118,,1000-0200,1234567,0,,2190,,, +860,CAN,xx,CHAK,,Inuvik (NT),68.344722,-133.685833,,1,,6224,343,119,,,,2,,36032,,, +860,USA,en,WAOB,,Millvale (PA),40.490833,-79.981944,,0.83,,6359,295,121,,,,,,40712,,, +860,B,pt,ZYH592 Cidade AM,,Maracana/Sitio Mucuna (CE),-3.842483,-38.653892,,10,,7525,230,122,,,,,,36901504,,, +860,USA,,WEVA,,Emporia (VA),36.698889,-77.548611,,1,,6498,291,122,,,,,,41338,,, +860,USA,en,WDMG,,Douglas (GA),31.506389,-82.819444,,5,,7250,290,123,,,,,,41180,,, +860,CLM,es,HJNJ La Voz del Caaguate,,Valledupar (ces),10.483333,-73.25,,50,,8385,268,124,,,,21,,35901417,,, +860,VEN,,YVYE Enlace 8-60,,Valle de la Pascua (gco),9.266667,-66.066667,,20,,8002,262,124,,,,998,,51667,,, +860,DOM,,HIUA R Clarin,,Santo Domingo (sdo),18.6,-69.866667,,5,,7456,271,125,,1100-0300,1234567,,,37311,,, +860,USA,,KKOW,,Pittsburg (KS),37.412778,-94.637778,,5,,7483,302,125,,,,,,38747,,, +860,VEN,,YVOL Mundial 8-60,,San Cristbal (tch),7.75,-72.25,,50,,8555,266,125,,0900-0500,1234567,98,,45409,,, +860,B,pt,ZYJ459 CBN Rio de Janeiro,,Rio de Janeiro/Ilha do Pontal (RJ),-22.8225,-43.096389,,100,,9616,225,126,,,,9989,,36901503,,, +860,CUW,,PJZ86 R Curom,,Willemstad (cao),12.166667,-68.966667,,10,,7946,266,126,,,,,,40456,,, +860,USA,,KPAM,,Troutdale (OR),45.646667,-122.513611,,15,,8103,325,126,,,,26,,39127,,, +860,USA,,KTRB,,San Francisco (D) (CA),37.6325,-122.129722,,50,,8862,321,126,,,,12,,20016058,,, +860,USA,en,KTRB,,San Francisco (N) (CA),37.592778,-121.774167,,50,,8851,321,126,,,,1,,39533,,, +860,USA,en,WMRI,,Marion (IN),40.553333,-85.645833,,0.5,,6698,299,127,,,,,,41547,,, +860,CAN,en,CFPR,,Prince Rupert/Digby Island (BC),54.285278,-130.376111,,2.5,,7528,334,128,,,,,,35998,,, +860,CUB,es,R Reloj,,Jovellanos (ma),22.802833,-81.169097,,5,,7866,283,129,,,,17,,31600028,,, +860,HTI,,R Men Kontre,,Les Cayes (sud),18.166667,-73.716667,,3,,7756,274,130,,,,,,52107,,, +860,USA,,WSON,,Henderson (KY),37.853056,-87.536667,,0.5,,7027,298,130,,,,,,43044,,, +860,CAN,xx,CBDI,,Fort Smith (NT),60.003611,-111.875556,,0.099,,6389,329,131,,,,,,20109118,,, +860,USA,,WGUL,,Dunedin (FL),27.998611,-82.700278,,1.5,,7532,287,131,,,,9979,,41578,,, +860,USA,en,WFSI,,Baltimore (MD),39.311944,-76.490556,,0.066,,6231,292,131,,,,,,40844,,, +860,USA,en,WAEC,,Atlanta (GA),33.729167,-84.321944,,0.5,,7164,293,132,,,,,,40658,,, +860,CLM,es,HJEP Voces de Occidente,,Buga (val),3.883333,-76.283333,,10,,9168,267,134,,,,,,37418,,, +860,MEX,es,XECCN-AM R Caribe,,Cancn (qui),21.196111,-86.8225,,5,,8378,286,134,,,,,,43826,,, +860,PNR,es,HOL55 R Reforma,,Chitr/El Ejido (her),7.912778,-80.365278,,10,,9094,272,134,,1030-0400,1234567,5,,37699,,, +860,MEX,es,XEMO-AM La Poderosa,,Tijuana/Cerro Prieto (bcn),32.420419,-117.070178,,7.5,,9131,315,135,,,,13,,44394,,, +860,MEX,es,XEUN-AM R UNAM,,Mxico D.F/Ticomn (dif),19.531417,-99.150675,,10,,9314,294,135,,,,,,44914,,, +860,EQA,,HCRG1,,Quito (pic),-0.166667,-78.5,,10,,9675,266,136,,,,,,37082,,, +860,MEX,es,XECTL-AM,,Chetumal (qui),18.519167,-88.476667,,5,,8718,285,136,,,,,,43881,,, +860,BOL,,CP8 R Nueva America,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1015-2400,123456,,,36715,,, +860,BOL,,CP8 R Nueva America,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1100-0100,......7,,,36715,,, +860,CAN,fr,CKSB-2,,Saint Lazare (MB),50.446667,-101.293056,,0.04,,6748,316,138,,,,,,20109117,,, +860,USA,,WSBS,,Great Barrington (MA),42.214722,-73.345278,,0.004,,5818,293,139,,,,,,42960,,, +860,MEX,es,XENL-AM R Recuerdo,,Monterrey (nvl),25.699128,-100.2072,,2,,8829,299,140,,,,,,44448,,, +860,MEX,es,XEPLA-AM La Mexicana,,Aguascalientes (agu),21.919722,-102.266111,,2.5,,9291,298,141,,,,,,44559,,, +860,USA,,KONO,,San Antonio (TX),29.443056,-98.417778,,0.9,,8391,300,141,,,,,,39091,,, +860,HND,,HRUP13,,Juticalpa (ola),14.666667,-86.216667,,1,,8902,281,143,,,,,,37858,,, +860,USA,,KMVP,i,Phoenix (AZ),33.420556,-112.126944,,1,,8791,312,143,,,,0,,38949,,, +860,USA,,WOAY,,Oak Hill (WV),37.958333,-81.150833,,0.011,,6627,294,143,,,,,,42551,,, +860,HND,,HRUP12,,Danli (elp),14.05,-86.566667,,1,,8980,281,144,,,,,,37857,,, +860,NCG,es,La Gran Cadena,,Managua (mng),12.183333,-86.083333,,1,,9110,279,144,,,,,,33700004,,, +860,SLV,,YSRC,,Santa Ana (sta),14,-89.533333,,1,,9182,283,144,,,,,,45313,,, +860,USA,,KSFA,,Nacogdoches (TX),31.526667,-94.658056,,0.175,,7985,298,144,,,,,,39347,,, +860,USA,,WFMO,,Fairmont (NC),34.5175,-79.105278,,0.012,,6769,290,144,,,,,,41410,,, +860,CAN,en,CBKM,,Blue River (BC),52.105556,-119.308333,,0.04,,7368,327,145,,,,,,20109119,,, +860,CAN,en,CBKZ,,Clearwater (BC),51.643889,-120.036667,,0.04,,7438,327,145,,,,,,20109105,,, +860,CHL,es,CC86 R Ins de Surez,,Concepcin/Cerro la Polvora (BI),-36.808847,-73.036011,,10,,12510,238,145,,,,,,35837,,, +860,MEX,es,XEHX-AM La Mia,,Ciudad Obregn (son),27.494444,-109.955,,0.8,,9226,307,145,,,,,,34900007,,, +860,MEX,es,XERRF-AM,,Mrida (yuc),21.001389,-89.596389,,0.5,,8576,288,145,,,,,,44705,,, +860,USA,,KKAT,,Salt Lake City (UT),40.713056,-111.931389,,0.196,,8108,316,145,,,,2,,38706,,, +860,USA,,KPAN,,Hereford (TX),34.7925,-102.429167,,0.231,,8150,306,145,,,,,,39128,,, +860,USA,,WAMI,,Opp (AL),31.315,-86.2625,,0.047,,7485,292,145,,,,,,40708,,, +860,CAN,en,CBRL,,Williams Lake (BC),52.141944,-122.157778,,0.04,,7468,329,146,,,,,,20109108,,, +860,CAN,en,CBUG,,Kaslo (BC),49.908056,-116.899722,,0.04,,7479,324,146,,,,,,20109114,,, +860,EQA,,HCGB7,,El Puyo (pas),-1.466667,-77.916667,,1,,9749,265,146,,,,,,36952,,, +860,MEX,es,XEZOL-AM Noticias 860,,Ciudad Jurez (chi),31.686111,-106.429722,,0.5,,8649,307,146,,,,,,45149,,, +860,USA,,KWRF,,Warren (AR),33.633056,-92.064167,,0.055,,7649,298,146,,,,,,39748,,, +860,USA,,WACB,,Taylorsville (NC),35.9325,-81.171944,,0.008,,6788,292,146,,,,,,40638,,, +860,USA,,WLBG,,Laurens (SC),34.503611,-82.018333,,0.012,,6956,292,146,,,,,,42131,,, +860,USA,,WNOV,,Milwaukee (WI),43.072222,-87.951944,,0.005,,6636,302,146,,,,,,42495,,, +860,CAN,en,CBRJ,,Grand Forks (BC),49.027778,-118.445556,,0.04,,7622,325,147,,,,,,20109113,,, +860,CAN,en,CBTG,,Gold Bridge (BC),50.839167,-122.863056,,0.04,,7617,328,147,,,,,,20109107,,, +860,CAN,en,CBUP,,Merritt (BC),50.108611,-120.788611,,0.04,,7611,327,147,,,,,,20109112,,, +860,CAN,en,CBWA,,Ashcroft (BC),50.723889,-121.270278,,0.04,,7570,327,147,,,,,,20109110,,, +860,MEX,es,XEDU-AM,,Durango (dur),24.049869,-104.622467,,0.5,,9239,301,147,,,,,,43943,,, +860,USA,,KOSE,,Wilson (AR),35.684167,-89.9825,,0.021,,7352,298,147,,,,,,39102,,, +860,USA,,KWPC,,Muscatine (IA),41.442778,-91.075833,,0.008,,6945,303,147,,,,,,39744,,, +860,PRU,,OCX1M R Nuevo Norte,,Sullana (piu),-4.9,-80.683333,,1,,10239,265,148,,,,909,,52505,,, +860,PRU,es,CPN R,,Cajamarca (caj),-7.166667,-78.516667,,1,,10292,262,148,,,,97,,37000058,,, +860,USA,,KFST,,Fort Stockton (TX),30.876944,-102.891667,,0.25,,8524,304,148,,,,,,38433,,, +860,USA,,WTZX,,Sparta (TN),35.922222,-85.447222,,0.01,,7056,295,148,,,,,,43248,,, +860,CAN,en,CBKJ,,Gold River (BC),49.773333,-126.053611,,0.04,,7833,330,149,,,,,,20109106,,, +860,PRG,,ZP28 LV de la Cordillera,,Caacup (crd),-25.366667,-57.116667,,1,,10586,234,149,,0900-0400,1234567,,,45523,,, +860,USA,,KNUJ,,New Ulm (MN),44.286111,-94.430556,,0.005,,6902,307,149,,,,,,39026,,, +860,MEX,es,XETW-AM La Fiesta,,Tampico (tam),22.253153,-97.857783,,0.25,,8992,295,150,,,,,,44876,,, +860,MEX,es,XEDB-AM,,Tonal (cps),16.09875,-93.767053,,0.25,,9276,288,151,,,,,,43895,,, +860,MEX,es,XENW-AM Mxima,,Culiacn (sin),24.810556,-107.365556,,0.25,,9328,303,151,,,,,,44464,,, +860,ARG,,LRJ392 R Municipal,,Chilecito (lr),-29.166667,-67.5,,1,,11525,240,152,,1000-0400,1234567,,,40106,,, +860,MEX,es,XEZX-AM,,Tenosique (tab),17.466667,-91.433333,,0.15,,9004,287,152,,,,,,45164,,, +860,ARG,,LRA56 R Nacional,,Perito Moreno (sc),-46.566667,-70.916667,,2.5,,13201,230,154,,0955-0300,1234567,,,39959,,, +860,B,pt,ZYK288 Rdio Guarathan AM,,Santa Maria (RS),-29.697222,-53.806111,,0.25,,10812,229,156,,,,,,36901505,,, +860,MEX,es,XEAL-AM R Frmula,,Manzanillo (col),19.043172,-104.315422,,0.1,,9676,298,156,,,,,,43715,,, +864,F,fr,France Bleu 107.1,,Villebon-sur-Yvette (91),48.686944,2.225278,,300,,482,220,37,,0000-2400,1234567,51,,546,,, +864,BUL,bg,BNR R Blagoevgrad,,Blagoevgrad/Belo Pole (blg),42.048961,23.048244,,75,,1678,125,55,,0400-2200,1234567,996,,543,,, +864,ARM,,R Liberty,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,0150-0200,1234567,0,,541,,, +864,ARM,,TWR Asia,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1600-1610,1234567,0,,541,,, +864,ARM,kk,TWR Trans Vidioisledik Rasa,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1625-1640,1234567,0,,541,,, +864,ARM,ru,TWR Trans Miravoye R,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1640-1710,1234567,0,,541,,, +864,ARM,tk,R Liberty,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,0200-0300,1234567,0,,541,,, +864,ARM,tk,R Liberty/Gepleyer Azatlyk Rsy,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1530-1600,1234567,0,,541,,, +864,ARM,tk,TWR Btn Dunya R,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1610-1625,1234567,0,,541,,, +864,ARM,uz,R Liberty/Ozodlik Rsi,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1500-1530,1234567,0,,541,,, +864,ARM,uz,TWR Trans Yakhon Radyosa,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1710-1740,1234567,0,,541,,, +864,ARM,xx,TWR Asia,,Gavar (grk),40.416717,45.197928,,1000,,3205,98,59,,1740-1755,1234567,0,,541,,, +864,EGY,ar,ERTU Al-Quran al-Karim,,Santah (ghb),30.735167,31.130333,,500,,3115,130,61,,0000-2400,1234567,12,,545,,, +864,BUL,bg,BNR Horizont,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,0000-0600,1234567,,,542,,, +864,BUL,bg,BNR Horizont,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,0800-1300,1234567,,,542,,, +864,BUL,bg,BNR Horizont,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,1500-1830,1234567,,,542,,, +864,BUL,bg,BNR Horizont,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,2030-2400,1234567,,,542,,, +864,BUL,tr,R Bulgaria,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,0600-0800,1234567,,,542,,, +864,BUL,tr,R Bulgaria,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,1300-1500,1234567,,,542,,, +864,BUL,tr,R Bulgaria,,Samuil (rgd),43.534894,26.736911,,10,,1783,114,65,,1830-2030,1234567,,,542,,, +864,E,es,RNE R Nacional,,Socullamos (CAM-CR),39.303917,-2.799239,,5,,1590,210,66,,0000-2400,1234567,996,,544,,, +864,IRN,fa,IRIB R Kermanshah,,Qasr-e Shirin (ksh),34.449061,45.614733,,50,,3667,107,77,,,,918,,1789,,, +864,AFG,,Peace R/R Soleh,,Kandahar (kan),31.666667,65.666667,,5,,5230,92,102,,0030-1830,1234567,,,46822,,, +864,RUS,ru,R NVK Sakha,,Yakutsk/Tulagino (RS),62.238403,129.812028,,25,,6367,28,107,,,,,,6700069,,, +864,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440339,91.808044,,100,,7500,77,112,,0025-0400,1234567,,,48609,,, +864,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440339,91.808044,,100,,7500,77,112,,0715-0930,1234567,,,48609,,, +864,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440339,91.808044,,100,,7500,77,112,,1055-1630,1234567,,,48609,,, +864,RUS,,R Shanson,,Blagoveshchensk (AM),50.304444,127.483611,,25,,7352,37,117,,,,,,47025,,, +864,KOR,,HLKR KBS 1 R,,Gangneung (gan),37.795,128.910833,,100,,8576,43,122,,0000-2400,1234567,999,,48631,,, +864,CHN,,Anhui RGD Jingji Guangbo,,Hefei/Sanshitou (AH),31.987667,117.329028,,50,,8515,55,125,,????-1700,1234567,,,48605,,, +864,THA,,Sor. Wor. Thor. (R Thailand),,Tak (tak),16.915,99.116111,,10,,8712,77,133,,????-1500,1234567,,,48641,,, +864,HKG,,CRHK AM864,,Peng Chau (isd),22.290633,114.043744,,10,,9195,63,134,,0000-2400,1234567,9980,,48608,,, +864,THA,,Sor. Wor. Thor. (R Thailand),,Sisaket/Tong Mak Rd (sis),15.098056,104.337778,,10,,9217,75,134,,2200-1600,1234567,,,48640,,, +864,CHN,zh,Renqiu RGD Story,,Renqiu (HB),38.7,116.1,,1,,7852,51,136,,,,,,36200344,,, +864,J,,JOXR ROK R Okinawa,,Naha/Nanjo (kyu-oki),26.185278,127.755833,,10,,9615,50,136,,0000-2400,1234567,,,48627,,, +864,THA,th,Sor. Wor. Thor. (R Thailand),,Phattalung/4 Chai Buri Rd (ptl),7.618611,100.068611,,10,,9588,82,136,,2200-1700,1234567,,,48639,,, +864,TWN,,BCC News Network,,Kaohsiung (KH),22.611017,120.42405,,10,,9544,58,136,,0000-2400,1234567,,,48642,,, +864,J,,JOHE HBC Hokkaido Hoso,,Asahikawa (hok),43.773611,142.439167,,3,,8550,31,137,,0000-2400,1234567,,,48622,,, +864,J,,JOPR FBC Fukui Hoso,,Fukui (chu-fuk),36.119444,136.286667,,5,,9067,39,137,,0000-2400,1234567,9995,,48624,,, +864,J,,JOQF HBC Hokkaido Hoso,,Muroran (hok),42.313889,140.981944,,3,,8643,33,138,,0000-2400,1234567,,,48626,,, +864,PHL,,DZIP-AM Radyo Palaweo,,Puerto Princesa (plw),9.734806,118.736039,,10,,10623,66,139,,2100-1300,1234567,,,33300030,,, +864,CHN,,Anhui RGD Jingji Guangbo,,Fuyang (AH),32.930944,115.798294,,1,,8346,55,140,,,,,,36200342,,, +864,CHN,,Anhui RGD Jingji Guangbo,,Huaibei (AH),33.956944,116.783444,,1,,8309,54,140,,,,,,36201249,,, +864,PHL,,DYHH-AM Bantay Radyo,,Sogod (ceb),10.75,124,,10,,10853,61,140,,????-1600,1234567,,,48636,,, +864,J,,HBC Hokkaido Hoso,,Enbetsu (hok),44.733056,141.789722,,1,,8431,31,141,,0000-2400,1234567,,,48623,,, +864,PHL,,DWSI-AM Sonshine R,,Santiago City (isa),16.683333,121.533333,,5,,10155,60,141,,,,,,48635,,, +864,PHL,,DZSP-AM Sonshine R,,San Pablo City (lag),14.066667,121.333333,,5,,10385,62,141,,,,,,48634,,, +864,INS,id,RRI Pro-1,,Cirebon/Weru (JB-cir),-6.708744,108.504258,,10,,11421,85,142,,2200-1700,1234567,,,48612,,, +864,CHN,,Jiangshan RGD,,Jiangshan (ZJ),28.733333,118.616667,,1,,8881,56,143,,2140-1500,1234567,,,48606,,, +864,CHN,,Zhejiang zhi Sheng,,Ninghai (ZJ),29.283333,121.416667,,1,,8987,53,144,,2130-1605,1234567,,,48607,,, +864,CHN,,Zhejiang zhi Sheng,,Qingtian (ZJ),28.15,120.283333,,1,,9028,55,144,,,,,,36200343,,, +864,J,,JOSO SBC, Shinetsu Hoso,,Matsumoto (chu-nag),36.233333,137.95,,1,,9126,38,144,,0000-2400,1234567,,,48625,, +864,J,,JOXN CRT, Tochigi Hoso,,Nasu (kan-toc),36.883333,139.966667,,1,,9144,36,144,,0000-2400,1234567,,,48628,, +864,PHL,,DZWM-AM Radyo Totoo,,Alaminos/Lucap (pgs),16.15,119.983333,,1,,10112,62,147,,2100-1000,1234567,,,48633,,, +864,PNG,,NBC R Madang,,Madang (ehd),-5.218889,145.806111,,10,,13613,50,149,,1930-1400,1234567,,,48637,,, +864,INS,id,PM2BBL R Suara Jakarta,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,98,,35400012,,, +864,INS,id,R Gemma Satunama,,Yogyakarta/Gunung Kidul (YO-yog),-7.7275,110.356111,,1,,11636,84,152,,2300-????,1234567,,,35400038,,, +864,INS,id,R Mentiga,,Surabaya (JI-ksu),-7.236111,112.753611,,1,,11755,81,153,,,,,,48620,,, +864,J,,JOSM Tokai Hoso,,Toyohashi (chu-aic),34.75,137.4,,0.1,,9249,39,154,,0000-2400,1234567,,,48629,,, +864,AUS,,6AM R West,,Northam (WA),-31.676667,116.610556,,2,,14067,96,157,,0000-2400,1234567,,,48603,,, +864,AUS,en,4GR,,Toowoomba (QLD),-27.599833,151.912006,,2,,16068,60,164,,0000-2400,1234567,9990,,48604,,, +864,NZL,en,4ZA Newstalk ZB,,Invercargill/Dacre (STL),-46.320278,168.621389,,10,,18577,70,165,,0000-2400,1234567,,,48632,,, +864,AUS,,7RPH,,Hobart/Sandford (TAS),-42.949069,147.506569,,2,,16965,86,167,,0000-2400,1234567,,,48602,,, +870,CAN,,CFSX,,Stephenville (NL),48.526111,-58.49,,0.5,,4470,292,105,,,,0,,36013,,, +870,USA,en,KPRM,,Park Rapids (D) (MN),46.928333,-95.006111,,40,,6719,310,108,,,,,,20012565,,, +870,USA,,WHCU,,Ithaca (D) (NY),42.465,-76.373056,,5,,5989,295,110,,,,6,,41618,,, +870,USA,,WKAR,,East Lansing (MI),42.705278,-84.475,,10,,6462,300,112,,,,,,41954,,, +870,USA,en,WLVP,,Gorham (ME),43.662778,-70.494722,,1,,5537,293,112,,,,,,42254,,, +870,USA,,WPWT,,Colonial Heights (TN),36.461111,-82.453333,,10,,6827,294,115,,,,,,42756,,, +870,USA,,WHCU,,Ithaca (N) (NY),42.363056,-76.606111,,1,,6011,295,117,,,,,,20012567,,, +870,ALS,,KSKO,,McGrath (AK),62.9325,-155.518611,,10,,7126,351,118,,0000-2400,1234567,986,,39373,,, +870,USA,en,WTCG,,Mount Holly (NC),35.273611,-80.861111,,5,,6821,292,118,,1200-2400,1234567,,,20012510,,, +870,USA,,WQRX,,Valley Head (AL),34.555556,-85.62,,10,,7178,294,119,,,,,,42790,,, +870,USA,en,WWL,,New Orleans (LA),29.837222,-90.131944,,50,,7852,294,119,,,,996,,20016110,,, +870,VEN,,YVKU,,Caracas (dcf),10.466667,-66.783333,,50,,7946,263,120,,,,,,45358,,, +870,DOM,,HIVG R La Vega,,Concepcin de La Vega (veg),19.216667,-70.533333,,10,,7450,272,122,,1000-0300,1234567,995,,37314,,, +870,PTR,,WQBS,,San Juan (PR),18.352222,-66.201667,,5,,7227,268,122,,0800-0300,1234567,14,,42766,,, +870,USA,,WFLO,,Farmville (VA),37.326389,-78.385833,,1,,6502,292,122,,,,,,41400,,, +870,CUB,es,R Reloj,,Baracoa (gu),20.326642,-74.476442,,10,,7625,276,123,,,,994,,36592,,, +870,USA,en,KPRM,,Park Rapids (N) (MN),46.905,-95.017778,,1,,6722,310,124,,,,,,39163,,, +870,CUB,es,R Reloj,,Bueycito/Entronque (gr),20.292661,-76.775808,,10,,7783,278,125,,,,,,36606,,, +870,VEN,es,YVRU Unin Deportiva,,Puerto La Cruz (azg),10.066667,-64.766667,,10,,7844,261,125,,,,14,,51668,,, +870,CLM,es,HJSB R Mar Caribe Internacional,,Barranquilla (atl),10.966667,-74.8,,25,,8449,270,128,,,,982,,35901422,,, +870,USA,,KAAN,,Bethany (MO),40.256389,-94.156389,,0.93,,7218,304,129,,,,,,37902,,, +870,VEN,,YVMP R Lara,,Barquisimeto (lar),10.066667,-69.316667,,10,,8153,265,129,,0958-0400,1234567,,,51669,,, +870,USA,,WINU,,Shelbyville (IL),39.487222,-88.958611,,0.5,,6980,300,130,,,,,,41774,,, +870,USA,,WMTL,,Leitchfield (KY),37.511111,-86.2875,,0.5,,6979,297,130,,,,,,42403,,, +870,ARG,es,LRA1 R Nacional,,Buenos Aires/General Pacheco (df),-34.448983,-58.621178,,100,,11503,230,132,,0000-2400,1234567,13,,39929,,, +870,B,pt,ZYH658 Rdio Tabajara,,So Benedito/Alto do Maracuja (CE),-4.047731,-40.881372,,1,,7663,232,134,,,,,,36901513,,, +870,CAN,en,CFBV,,Smithers (BC),54.796111,-127.198611,,0.5,,7381,333,134,,,,,,35938,,, +870,CLM,es,HJLA,,Ibagu (tol),4.416667,-75.25,,10,,9051,266,134,,,,,,37540,,, +870,CTR,,TIUCR R.Universidad de Costa Rica,,San Jos (sjs),9.933333,-84.016667,,10,,9166,276,134,,1300-0600,1234567,,,40607,,, +870,HTI,,R Express,,Jacmel (ses),18.233333,-72.533333,,1,,7670,273,134,,,,,,52108,,, +870,MEX,,XETAR-AM,,Guachochi (chi),26.814133,-107.067361,,10,,9128,304,134,,,,,,44797,,, +870,NCG,,YNCD R Centro,,Juigalpa (cht),12.083333,-85.4,,10,,9073,279,134,,1000-0200,1234567,,,52200,,, +870,B,pt,ZYL304 Rdio Juriti,,Paracatu (MG),-17.232011,-46.880833,,10,,9261,230,135,,,,,,36901525,,, +870,CUB,es,R Reloj,,Sancti Spritus/CTOM1 (ss),21.929769,-79.414564,,1,,7823,281,135,,,,0,,36513,,, +870,B,pt,ZYH906 Rdio Mirante,,Cod (MA),-4.4625,-43.872778,,1,,7866,234,136,,,,,,36901519,,, +870,CLM,es,HJZH,,Medelln (ant),6.283333,-75.533333,,5,,8907,268,136,,,,,,35901420,,, +870,B,pt,ZYH245 Rdio Sampaio,,Palmeira dos ndios (AL),-9.419775,-36.633617,,1,,7975,225,137,,,,,,36901524,,, +870,B,pt,ZYI547 Rdio Maraj,,Breves (PA),-1.671178,-50.472756,,1,,7983,242,137,,,,,,36901510,,, +870,CAN,en,CKIR,,Invermere (BC),50.518889,-116.051111,,0.25,,7389,324,137,,,,,,36324,,, +870,EQA,,HCNY2 R Cristal,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,978,,37012,,, +870,PNR,es,HOHO R Libre,,La Florida (pnm),9.030278,-79.485278,,5,,8937,272,137,,0000-2400,1234567,,,37691,,, +870,USA,es,KFJZ,,Fort Worth (TX),32.600833,-97.255833,,1,,8047,301,137,,,,,,38398,,, +870,USA,,KRLA,,Glendale (CA),34.136944,-118.226111,,3,,9023,316,139,,,,6,,39258,,, +870,USA,en,WPHW256,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010576,,, +870,USA,,KJMP,,Pierce (CO),40.606944,-104.688611,,0.32,,7758,311,140,,,,9975,,38679,,, +870,USA,en,WPIY488,,Erie (PA),41.942833,-80.475917,,0.01,,6280,297,140,,,,,,20010574,,, +870,B,pt,ZYH591 Rdio Liberdade,,Iguatu (CE),-6.360839,-39.302722,,0.25,,7806,229,141,,,,,,36901509,,, +870,SLV,es,YSAR R Renacer,,San Salvador (ssl),13.716667,-89.266667,,2,,9189,283,141,,,,,,45262,,, +870,USA,en,WPMQ789,,Canton (OH),40.8943,-81.431222,,0.01,,6418,297,141,,,,,,20010577,,, +870,USA,en,KFLD,,Pasco (WA),46.228056,-119.125556,,0.25,,7913,324,142,,,,8,,38403,,, +870,CLM,es,HJGD,,Chiquinquira (boy),5.616667,-73.816667,,1,,8848,266,143,,,,,,35901421,,, +870,HND,,HRH4,,Nacaome (val),13.5,-87.416667,,1,,9084,281,144,,,,,,37764,,, +870,B,pt,ZYH499 Rdio Cidade AM,,Juazeiro/Fazenda Flavios Mairi (BA),-9.435436,-40.526672,,0.25,,8171,229,145,,,,,,36901528,,, +870,GTM,,TGL R Victoria,,Mazatenango (sup),14.516667,-91.5,,1,,9267,285,145,,,,,,40504,,, +870,MEX,es,XEGRO-AM Soy Guerrero,,Chilpancingo (gue),17.505953,-99.476833,,1,,9516,293,145,,,,,,44079,,, +870,B,pt,ZYK705 Rdio Central,,Campinas/Estrada Municipal (SP),-22.957969,-47.081817,,1,,9825,228,146,,,,,,36901515,,, +870,USA,,KLSQ,,Whitney (NV),35.976389,-114.950833,,0.43,,8692,315,146,,,,991,,38845,,, +870,B,pt,ZYH749 Rdio Lago Dourado,,Uruau (GO),-14.616667,-49.083333,,0.5,,9129,234,147,,,,,,36901523,,, +870,B,pt,ZYH762 Rdio Anhanguera,,Araguana/Avenida Filadlfia 1642 (TO),-7.206817,-48.2264,,0.25,,8374,237,147,,,,,,36901507,,, +870,B,pt,ZYH754 Rdio Universitria de Gois,,Goinia/Escola de Agronomia (GO),-16.598653,-49.288867,,0.5,,9329,233,148,,,,,,36901516,,, +870,MEX,es,XEAMO-AM,,Irapuato (gua),20.630083,-101.362972,,0.5,,9353,296,148,,,,,,43717,,, +870,B,pt,ZYH322 Rdio Cidade,,Manacapuru (AM),-3.259339,-60.619744,,0.25,,8761,250,149,,,,,,36901511,,, +870,B,pt,ZYH457 Rdio Nacional,,Itabuna (BA),-14.843333,-39.348056,,0.25,,8646,225,149,,,,,,36901526,,, +870,EQA,,HCGS6,,Pillaro (tun),-1.166667,-78.533333,,0.5,,9765,265,149,,,,,,36960,,, +870,B,pt,Rdio Globo,,Linhares (ES),-19.397097,-40.072572,,0.25,,9133,224,150,,,,,,36901508,,, +870,B,pt,ZYL318 Rdio Cultura,,Diamantina/Alto do Trevo (MG),-18.238972,-43.614017,,0.25,,9191,227,150,,,,,,36901518,,, +870,B,pt,ZYL350 Rdio A Voz do So Francisco,,Januria (MG),-15.482333,-44.37255,,0.25,,8961,229,150,,,,,,36901522,,, +870,B,pt,ZYL349 Rdio Atividade de Muria,,Muria (MG),-21.121133,-42.400653,,0.25,,9415,225,151,,,,,,36901521,,, +870,BOL,,LV del Campesino,,Sipe Sipe (cbb),-17.45,-66.383333,,0.6,,10411,246,151,,0700-2300,1234567,,,51972,,, +870,MEX,es,XEACC-AM La Voz del Puerto,,Puerto Escondido (oax),15.848783,-97.046706,,0.25,,9510,290,151,,,,,,43688,,, +870,MEX,es,XEFIL-AM R Noticias,,Mazatln (sin),23.215256,-106.373725,,0.25,,9417,302,151,,,,,,44009,,, +870,B,,ZYI410,,Cassilndia (MS),-19.116667,-51.716667,,0.25,,9702,233,152,,,,,,45823,,, +870,B,pt,ZYK620 Rdio Novo Horizonte,,Novo Horizonte (SP),-21.476283,-49.204064,,0.25,,9792,230,152,,,,,,36901517,,, +870,B,pt,ZYL324 Rdio Sacramento,,Sacramento/Rua do Radio 60 (MG),-19.865078,-47.451222,,0.25,,9545,230,152,,,,,,36901506,,, +870,B,pt,ZYN409 Rdio Gara Branca,,Guiratinga (MT),-16.343811,-53.780489,,0.25,,9556,237,152,,,,,,36901512,,, +870,B,pt,ZYJ243 Nova Ing AM,,Maring (PR),-23.363611,-51.9,,0.25,,10115,231,153,,,,,,36901520,,, +870,B,pt,ZYJ784 Rdio Difusora So Francisco,,So Francisco do Sul (SC),-26.266667,-48.65,,0.25,,10223,227,154,,,,,,36901527,,, +870,MEX,es,XENG-AM Canal 87,,Huauchinango (pue),20.167778,-98.047778,,0.1,,9189,294,154,,,,,,44444,,, +870,MEX,es,XELY-AM Candela,,Morelia (mic),19.698867,-101.141022,,0.1,,9423,296,155,,,,,,44333,,, +870,USA,en,WPCI618,,Key West (FL),24.560997,-81.810975,,0.01,,7761,284,155,,,,,,20010575,,, +873,RUS,ru,R Rossii,,Kaliningrad (KA),54.743711,20.471972,,50,,975,67,50,,0055-2100,1234567,1,,564,,, +873,HNG,,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1100-1200,123456,0,,562,,, +873,HNG,,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1100-1300,......7,0,,562,,, +873,HNG,bg,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,..3....,0,,562,,, +873,HNG,de,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,0900-1100,1234567,0,,562,,, +873,HNG,el,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,...4...,0,,562,,, +873,HNG,hr,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,0700-0900,1234567,0,,562,,, +873,HNG,hy,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,.....6.,0,,562,,, +873,HNG,pl,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1230-1300,.....6.,0,,562,,, +873,HNG,ra,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1230-1300,12345..,0,,562,,, +873,HNG,ro,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1500-1700,1234567,0,,562,,, +873,HNG,rt,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,.2.....,0,,562,,, +873,HNG,sk,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1700-1900,1234567,0,,562,,, +873,HNG,sl,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,1......,0,,562,,, +873,HNG,sr,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1300-1500,1234567,0,,562,,, +873,HNG,uk,MR4 Nemzetisgi Adsok,,Lakihegy (Pes),47.380111,19.003708,,20,,1045,115,54,,1200-1230,....5..,0,,562,,, +873,RUS,ru,R Rossii,,Lesnoy (MO),56.055833,37.952889,,250,,2084,65,54,,0040-2100,1234567,9993,,6700003,,, +873,HNG,,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1100-1200,123456,0,,561,,, +873,HNG,,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1100-1300,......7,0,,561,,, +873,HNG,bg,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,..3....,0,,561,,, +873,HNG,de,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,0900-1100,1234567,0,,561,,, +873,HNG,el,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,...4...,0,,561,,, +873,HNG,hr,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,0700-0900,1234567,0,,561,,, +873,HNG,hy,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,.....6.,0,,561,,, +873,HNG,pl,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1230-1300,.....6.,0,,561,,, +873,HNG,ra,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1230-1300,12345..,0,,561,,, +873,HNG,ro,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1500-1700,1234567,0,,561,,, +873,HNG,rt,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,.2.....,0,,561,,, +873,HNG,sk,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1700-1900,1234567,0,,561,,, +873,HNG,sl,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,1......,0,,561,,, +873,HNG,sr,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1300-1500,1234567,0,,561,,, +873,HNG,uk,MR4 Nemzetisgi Adsok,,Pcs/Kozrmisleny (Pec),46.046639,18.308819,,20,,1096,123,55,,1200-1230,....5..,0,,561,,, +873,MDA,ro,R Moldova Actualităţi,,Chişinău/Costiujeni (CU),46.952444,28.829222,,75,,1708,101,55,,0400-2200,1234567,0,,565,,, +873,RUS,ru,R Rossii,,Sankt-Peterburg/Olgino (SP),59.991211,30.121261,,75,,1700,50,55,,0055-2100,1234567,0,,566,,, +873,E,es,SER,,Zaragoza/Casablanca EAJ101 (ARA-Z),41.65,-0.941667,,25,,1289,208,56,,0000-2400,1234567,7,,557,,, +873,E,es,SER,,Santiago de Compostela (GAL-C),42.917331,-8.522025,,10,,1512,233,62,,0000-2400,1234567,,,558,,, +873,G,en,BBC R 5 Live,,West Lynn (EN-NFK),52.742889,0.386583,,0.3,,414,282,66,,0000-0300,12345..,99995,,560,,, +873,G,en,BBC R 5 Live,,West Lynn (EN-NFK),52.742889,0.386583,,0.3,,414,282,66,,0000-0500,.....67,99995,,560,,, +873,G,en,BBC R Norfolk,,West Lynn (EN-NFK),52.742889,0.386583,,0.3,,414,282,66,,0300-2400,12345..,99995,,560,,, +873,G,en,BBC R Norfolk,,West Lynn (EN-NFK),52.742889,0.386583,,0.3,,414,282,66,,0500-2400,.....67,99995,,560,,, +873,RUS,ru,R Rossii,,Samara/Mekhzavod (SA),53.304861,50.284083,,100,,2912,70,66,,0100-2100,1234567,0,,568,,, +873,G,en,BBC R 5 Live,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0100-0630,.2345..,0,,559,,, +873,G,en,BBC R 5 Live,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0100-0645,.....6.,0,,559,,, +873,G,en,BBC R 5 Live,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0200-0630,1......,0,,559,,, +873,G,en,BBC R Ulster,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0630-0100,12345..,0,,559,,, +873,G,en,BBC R Ulster,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0645-0200,.....6.,0,,559,,, +873,G,en,BBC R Ulster,,Enniskillen (NI-FER),54.358889,-7.642778,,1,,966,291,67,,0700-0200,......7,0,,559,,, +873,ALG,ar,R Ghardaia,,Ghardaia (47),32.496667,3.689444,,10,,2192,187,69,,0800-1600,1234567,,,552,,, +873,IRN,fa,IRIB R Iran,,Kaleybar=Kalibar (eaz),38.858033,47.066383,,50,,3437,99,74,,,,9994,,10800016,,, +873,IRN,fa,IRIB R Khorasan-e Shomali,,Bojnurd (nkh),37.654,57.04805,,100,,4200,92,79,,,,,,10800029,,, +873,ARS,ar,BSKSA Al-Quran al-Karim,,Ar Rass (qsm),25.860956,43.5332,,10,,4258,119,90,,0000-2400,1234567,,,553,,, +873,SDN,,SRTC Sudan Nat. R,,Wadi Halfa (no),21.802083,31.353111,,5,,3991,138,90,,,,,,47142,,, +873,ETH,,ERTA Ethiopia National R,,Addis Abeba/Geja Dera (aab),8.756389,38.6675,,100,,5637,137,93,,0300-0600,1234567,,,2413,,, +873,ETH,,ERTA Ethiopia National R,,Addis Abeba/Geja Dera (aab),8.756389,38.6675,,100,,5637,137,93,,0800-2100,1234567,,,2413,,, +873,SDN,,SRTC R Wad Madani,,Wad Madani (gzi),14.480317,33.466633,,10,,4823,140,95,,,,,,9400010,,, +873,IND,,AIR North,,Jalandhar B (PB),31.147222,75.778056,,100,,5960,84,97,,0630-0930,1234567,4,,48661,,, +873,IND,,AIR North,,Jalandhar B (PB),31.147222,75.778056,,100,,5960,84,97,,1030-1740,1234567,4,,48661,,, +873,IND,,AIR North,,Jalandhar B (PB),31.147222,75.778056,,100,,5960,84,97,,2225-0430,123456,4,,48661,,, +873,IND,,AIR North,,Jalandhar B (PB),31.147222,75.778056,,100,,5960,84,97,,2225-0600,......7,4,,48661,,, +873,CHN,,Changjii RGD,,Changji (XJ),44,81.3,,1,,5386,68,111,,,,,,48652,,, +873,CHN,,Gansu RGD,,Linxia/Luojiabao (GS),35.572222,103.170833,,50,,7384,62,114,,2150-1605,1234567,,,48657,,, +873,CLN,ta,FEBA India,,Puttalam (put),7.9765,79.798311,,300,,8177,98,114,,0131-0202,......7,,,48674,,, +873,BGD,,Bangladesh Betar,,Chittagong/Kalurghat (cgg),22.375833,91.848333,,100,,7759,79,115,,0030-0400,1234567,,,48650,,, +873,BGD,,Bangladesh Betar,,Chittagong/Kalurghat (cgg),22.375833,91.848333,,100,,7759,79,115,,0600-1710,1234567,,,48650,,, +873,CHN,ko,Heilongjiang RGD,,Harbin/HLTS904 (HL),45.695556,126.819167,,100,,7745,40,115,,1300-1500,1234567,,,48654,,, +873,CHN,ko,Heilongjiang RGD,,Harbin/HLTS904 (HL),45.695556,126.819167,,100,,7745,40,115,,2100-2400,1234567,,,48654,,, +873,CHN,zh,Heilongjiang RGD Gushi,,Harbin/HLTS904 (HL),45.695556,126.819167,,100,,7745,40,115,,0000-1300,1234567,,,48654,,, +873,CHN,zh,Heilongjiang RGD,,Harbin/HLTS904 (HL),45.695556,126.819167,,100,,7745,40,115,,1500-2100,1234567,,,48654,,, +873,KRE,ko,KCBS Pyongyang Pangsong,,Sinuiju (pyb),40.089167,124.452278,,250,,8151,45,115,,2100-1800,1234567,,,48630,,, +873,J,,JOGB NHK2,,Kumamoto (kyu-kum),32.9075,130.842778,,500,,9131,44,117,,2030-1500,1.....7,0,,48665,,, +873,J,,JOGB NHK2,,Kumamoto (kyu-kum),32.9075,130.842778,,500,,9131,44,117,,2030-1635,.2345..,0,,48665,,, +873,J,,JOGB NHK2,,Kumamoto (kyu-kum),32.9075,130.842778,,500,,9131,44,117,,2030-1640,.....6.,0,,48665,,, +873,VTN,xx,VOV3/Xone FM/VOV4,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,0800-1330,1234567,,,48676,,, +873,VTN,xx,VOV3/Xone FM/VOV4,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2200-0600,1234567,,,48676,,, +873,BOT,,R Botswana,,Ghanzi (gh),-21.66095,21.684114,,50,,8336,165,123,,0000-2400,1234567,,,2412,,, +873,MOZ,pt,Emisso Provincial de Sofala,,Beira (sfl),-19.582328,34.737825,,50,,8432,153,124,,0000-2210,......7,,,2414,,, +873,MOZ,pt,Emisso Provincial de Sofala,,Beira (sfl),-19.582328,34.737825,,50,,8432,153,124,,0000-2400,.....6.,,,2414,,, +873,MOZ,pt,Emisso Provincial de Sofala,,Beira (sfl),-19.582328,34.737825,,50,,8432,153,124,,0250-2210,1234...,,,2414,,, +873,MOZ,pt,Emisso Provincial de Sofala,,Beira (sfl),-19.582328,34.737825,,50,,8432,153,124,,0250-2400,....5..,,,2414,,, +873,CHN,,Wuhan RGD Health,,Wuhan/Hongxia (HU),30.603333,114.246111,,50,,8464,58,125,,2130-1700,1234567,,,48660,,, +873,CHN,ko,Heilongjiang RGD,,Ning'an (HL),44.383333,129.433333,,10,,7981,39,127,,1300-1500,1234567,,,36200768,,, +873,CHN,ko,Heilongjiang RGD,,Ning'an (HL),44.383333,129.433333,,10,,7981,39,127,,2100-2400,1234567,,,36200768,,, +873,CHN,,Kaifeng RGD News,,Kaifeng/Baita (HE),34.769444,114.3975,,10,,8105,55,128,,2155-1420,12345..,,,48656,,, +873,CHN,,Kaifeng RGD News,,Kaifeng/Baita (HE),34.769444,114.3975,,10,,8105,55,128,,2155-1600,.....67,,,48656,,, +873,CHN,,Gansu RGD,,Wuwei/Yangxiaba (GS),38.0475,102.694722,,1,,7151,60,129,,2150-1605,1234567,,,36200767,,, +873,CHN,,Linyi RGD,,Linyi (SD),35.066667,118.333333,,10,,8294,52,130,,,,,,48658,,, +873,CHN,,Gansu RGD,,Tianshui (GS),34.5,105.5,,1,,7613,61,133,,2150-1605,1234567,,,48659,,, +873,CHN,,Gansu RGD,,Cheng Xian/Zhiqi Xiang (GS),33.7625,105.728333,,1,,7689,61,134,,2150-1605,1234567,,,36200770,,, +873,THA,th,Wor. Kor. Mor. Thor.,,Bangkok/192 Sarasin Road (bmp),13.733425,100.544794,,10,,9085,78,134,,????-1700,1234567,,,48675,,, +873,CHN,,Xinji RGD,,Xinji (HB),37.9,115.2,,1,,7874,52,136,,,,,,36200766,,, +873,PHL,,DZPA-AM R Veritas,,Bangued (abr),17.583333,120.616667,,5,,10018,60,140,,2100-1300,1234567,,,48669,,, +873,PHL,,DZRC-AM R Veritas,,Legazpi City (aby),13.133333,123.733333,,5,,10615,60,142,,,,,,48670,,, +873,CHN,,Huzhou RGD Xinwen,,Huzhou (ZJ),30.838611,120.221111,,1,,8779,53,143,,,,,,48655,,, +873,PHL,,DXRB-AM Sonshine R,,Butuan City/Libertad (lag),8.933333,125.366667,,5,,11104,61,144,,,,,,48668,,, +873,AUS,,6DB ABC Kimberley,,Derby (WA),-17.355,123.67,,2,,13372,79,155,,0000-2400,1234567,,,48647,,, +873,INS,id,RSPD Bhuana Asri,,Sragen (JT-sra),-7.431111,111.024167,,0.5,,11655,83,155,,????-1600,1234567,,,48664,,, +873,AUS,,4AY Classic Country,,Innisfail (QLD),-17.530417,146.055833,,2,,14806,58,160,,,,,,48648,,, +873,AUS,en,2GB,,Sydney/Homebush Bay (NSW),-33.822667,151.082967,,5,,16548,68,162,,0000-2400,1234567,1,,48649,,, +873,NZL,,LiveSPORT,,Tauranga/Matapihi (BOP),-37.693889,176.196389,,1,22,18226,30,174,,,,,,32500002,,, +873,NZL,,3ZE Newstalk ZB,,Ashburton/Winchmore (CAN),-43.804167,171.704167,,1,,18587,56,175,,,,,,48667,,, +875,BOL,,R Eucaliptus,,Eucaliptus (oru),-17.583333,-67.516667,,1,,10494,247,149,,,,,,51973,,, +879,RUS,,B,b,Ermolino,55.229167,36.625,,0.025,,2004,68,93,,,,,L1020 15.0s,IDx2 + 10 gap,85780,, +879,RUS,,M,b,Ermolino,55.229167,36.625,,0.025,,2004,68,93,,,,,U876 15.0s,IDx2 + 11 gap,85781,, +880,USA,,WCBS,i,New York/High Island (NY),40.859722,-73.785833,,50,,5944,292,100,,,,0,,40958,,, +880,USA,,WRFD,,Columbus-Worthington (OH),39.941944,-83.022222,,23,,6588,297,109,,,,9991,,42840,,, +880,CAN,en,CHQT,,Edmonton (AB),53.368611,-113.317778,,50,,7022,324,110,,,,64,,36077,,, +880,CAN,en,CKLQ,,Brandon (MB),49.619722,-99.805833,,10,,6745,314,114,,,,33,,36335,,, +880,USA,en,KRVN,,Lexington (NE),40.515833,-99.396389,,50,,7486,308,115,,,,9992,,39311,,, +880,USA,,KLRG,,Sheridan (DC) (AR),34.693333,-92.305833,,50,,7575,299,116,,,,,,38482,,, +880,USA,,WPEK,,Fairview (NC),35.546667,-82.470833,,5,,6901,293,119,,,,,,42664,,, +880,USA,,WPIP,,Winston-Salem (NC),36.043889,-80.181944,,1.8,,6717,292,122,,,,,,42694,,, +880,USA,,WSLK,,Moneta (VA),37.166667,-79.630556,,0.9,,6594,292,123,,,,,,41070,,, +880,VEN,,YVYM R Venezuela,,Puerto Ordaz (blv),8.316667,-62.666667,,20,,7857,258,123,,,,997,,51670,,, +880,USA,,WRRZ,,Clinton (NC),34.977778,-78.304167,,1,,6681,290,124,,,,,,42914,,, +880,B,pt,ZYL275 Rdio Inconfidncia,,Belo Horizonte/Contagem (MG),-19.899039,-44.054528,,100,,9376,227,125,,,,,,36901529,,, +880,EQA,,HCRP1,,Quito (pic),-0.166667,-78.466667,,100,,9673,266,126,,,,,,37102,,, +880,USA,en,KIXI,,Seattle/Bellevue (WA),47.583056,-122.181111,,10,,7904,326,126,,,,3,,38649,,, +880,USA,en,WZAB,,Sweetwater (FL),25.748889,-80.547222,,5,,7578,284,126,,,,,,20012398,,, +880,CUB,es,R Progreso,,Pinar del Ro/CTOM1 (pr),22.368153,-83.739372,,12,,8074,284,127,,,,,,36441,,, +880,VEN,es,YVKV RNV Canal Informativo,,Caracas (dcf),10.5,-66.916667,,10,,7952,263,127,,,,,,51671,,, +880,VEN,,R Paraguan,,Punto Fijo (flc),11.7,-70.2,,10,,8071,267,128,,0000-2400,1234567,992,,51672,,, +880,USA,,WMEQ,,Menomonie (WI),44.845556,-91.845833,,0.21,,6716,306,131,,,,,,42302,,, +880,PRU,es,OBZ4N R Unin,,Lima/Lomas de Villa (lim),-12.216694,-76.978094,,50,,10632,257,132,,0000-2400,1234567,,,40419,,, +880,CLM,es,HJGE,,Bucaramanga (sat),7.083333,-73.116667,,10,,8672,266,133,,,,,,37452,,, +880,PTR,,WYKO,,Sabana Grande (PR),18.0725,-66.951667,,0.5,,7302,268,133,,0900-0400,1234567,,,43523,,, +880,CLM,es,HJFH,,Anserma (cal),5.333333,-75.783333,,10,,9007,267,134,,,,,,35901423,,, +880,CUB,es,R Reloj,,Mayar Arriba/CTOM2 (sc),20.410894,-75.526333,,1,,7689,277,134,,,,,,31600129,,, +880,HND,,HRGY,,Tegucigalpa (fmz),14.116667,-87.216667,,10,,9017,282,134,,,,,,37760,,, +880,USA,,KKMC,,Gonzales (CA),36.562778,-121.434722,,10,,8935,320,134,,,,19,,38731,,, +880,B,pt,ZYK249 Rdio Ita,,Guaba/Estrada da Arrozeira (RS),-29.991111,-51.325,,25,,10713,227,135,,,,,,36901532,,, +880,USA,,KJJR,,Whitefish (MT),48.395556,-114.319722,,0.5,,7512,322,135,,,,,,38675,,, +880,USA,,WIJR,,Highland (IL),38.756389,-89.655,,0.16,,7080,300,136,,,,,,40960,,, +880,SLV,es,YSCD R Abba,,San Miguel (smg),13.44,-88.140278,,5,,9138,282,137,,,,,,45266,,, +880,DOM,es,HIOR La Nueva R 880,,Santa Cruz de Mao (vav),19.55,-71.066667,,0.25,,7458,273,138,,1000-0400,1234567,,,37282,,, +880,HTI,,R Independance,,Gonaves (art),19.416667,-72.666667,,0.3,,7578,274,138,,,,,,35641,,, +880,USA,,KJOZ,,Conroe (TX),30.293889,-95.431944,,1,,8138,298,138,,,,,,38683,,, +880,USA,,KWIP,,Dallas (OR),44.929167,-123.289444,,1,,8202,325,139,,,,17,,39714,,, +880,GTM,,TGJ R Nuevo Mundo,,Ciudad de Guatemala (gut),14.65,-90.466667,,2.5,,9187,284,140,,1030-0500,1234567,,,40500,,, +880,PNR,es,R Panam,,Changuinola (bct),9.467778,-82.540556,,2.5,,9107,275,140,,,,,,52309,,, +880,PNR,es,R Panam,,David/Mata de Nance (chq),8.463781,-82.401367,,2.5,,9185,274,140,,,,,,52308,,, +880,USA,,KLRG,,Sheridan (N) (AR),34.305833,-92.385,,0.22,,7612,299,140,,,,,,20016192,,, +880,B,pt,ZYI680 Rdio Maring de Pombal,,Pombal (PB),-6.760378,-37.789222,,0.25,,7768,228,141,,,,,,36901530,,, +880,NCG,es,YNAT R El Pensamiento,,Managua (mng),12.155933,-86.216481,,2,,9121,280,141,,1200-0600,1234567,,,52201,,, +880,USA,,KCMX,,Phoenix (OR),42.31,-122.811389,,1,,8437,324,141,,,,1,,38182,,, +880,MEX,es,XEPNK-AM Canal 88,,Los Mochis (sin),25.762367,-109.000283,,2,,9333,305,142,,,,,,44563,,, +880,PNR,es,HOB51 R Vision Panam,,Coln/Calle 2DA (clo),9.364706,-79.9033,,1,,8936,273,143,,,,,,52307,,, +880,CHL,es,CB88 R Colo Colo,,Santiago/Quilicura (RM),-33.333583,-70.746467,,10,,12080,239,144,,0000-2400,1234567,969,,35764,,, +880,HND,,HRGY4,,Santa Rosa de Copan (cop),14.9,-88.216667,,1,,9016,283,144,,,,,,37762,,, +880,MEX,es,XEEM-AM La Mexicana,,Ro Verde (slp),21.931336,-100.0115,,1,,9153,296,144,,,,,,43967,,, +880,MEX,es,XETC-AM,,Torren (coa),25.588094,-103.398831,,1,,9028,301,144,,,,,,44802,,, +880,MEX,es,XEAAA-AM,,Zapopan (jal),20.634064,-103.441033,,1,,9479,298,145,,,,,,43676,,, +880,MEX,es,XEIG-AM Los 40 Principales,,Iguala (gue),18.3304,-99.508925,,1,,9444,294,145,,,,,,44164,,, +880,USA,,KHAC,,Tse Bonito (NM),35.644722,-109.020278,,0.43,,8427,311,145,,,,42,,38525,,, +880,B,pt,ZYK317 Rdio So Miguel AM,,Uruguaiana (RS),-29.758889,-57.084722,,2.5,,10991,232,146,,,,,,36901531,,, +880,MEX,es,XEQQQ-AM Ke Buena,,Villahermosa (tab),18.005289,-92.991947,,0.5,,9058,288,147,,,,,,44628,,, +880,BOL,,R Inca,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,0900-0100,1234567,,,51974,,, +880,MEX,es,XEV-AM R Frmula,,Chihuahua (chi),28.613572,-106.054347,,0.25,,8907,305,149,,,,,,44942,,, +880,HWA,zh,KHCM,,Honolulu (HI),21.294722,-157.863611,,2,,11711,345,150,,,,0,,20000062,,, +880,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010578,,, +880,ARG,,R Cualidad,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,51811,,, +880,ARG,es,LU14 R.Provincia de Santa Cruz,,Las Heras (sc),-46.548197,-68.9416,,3,,13097,229,152,,1000-0300,1234567,,,40208,,, +880,B,pt,ZYK363 Rdio Sociedade Seberi,,Seberi (RS),-27.486667,-53.395833,,0.25,,10583,230,155,,,,,,36901533,,, +880,USA,,WMDB,,Nashville (TN),36.211944,-86.819167,,0.002,,7117,296,155,,,,,,42297,,, +882,G,en,BBC R Wales,,Washford (EN-SOM),51.161389,-3.347944,,100,,681,265,44,,0600-2400,1234567,0,,586,,, +882,G,en,BBC WS,,Washford (EN-SOM),51.161389,-3.347944,,100,,681,265,44,,0000-0600,1234567,0,,586,,, +882,G,en,BBC R Wales,,Penmon (WA-AGS),53.2895,-4.078417,,10,,718,285,54,,0600-2400,1234567,0,,585,,, +882,G,en,BBC WS,,Penmon (WA-AGS),53.2895,-4.078417,,10,,718,285,54,,0000-0600,1234567,0,,585,,, +882,E,ca,La Xarxa,,Barcelona/E. de Gallecs (EAJ20) (CAT-B),41.571069,2.199519,,20,,1214,197,56,,0000-2400,1234567,5,,581,,, +882,G,en,BBC R Wales,,Tywyn (WA-GWY),52.582944,-4.096111,,5,,715,278,57,,0600-2400,1234567,0,,584,,, +882,G,en,BBC WS,,Tywyn (WA-GWY),52.582944,-4.096111,,5,,715,278,57,,0000-0600,1234567,0,,584,,, +882,E,es,COPE,,Gijn/El Infanzn (AST-O),43.468806,-5.699419,,5,,1316,228,63,,0000-2400,1234567,,,580,,, +882,E,es,COPE,,Valladolid/Barrio Parquesol EAK9 (CAL-VA),41.654722,-4.750364,,5,,1436,220,64,,0000-2400,1234567,996,,579,,, +882,G,en,BBC R Wales,,Forden (WA-POW),52.592389,-3.173833,,1,,653,278,64,,0600-2400,1234567,0,,583,,, +882,G,en,BBC WS,,Forden (WA-POW),52.592389,-3.173833,,1,,653,278,64,,0000-0600,1234567,0,,583,,, +882,MNE,sr,R Crne Gore 1,,Gornja Plavnica (PG),42.285556,19.211833,,5,,1455,134,65,,0000-2400,1234567,6,,594,,, +882,E,es,COPE,,Mlaga/Cerro de la Ermita (EAK11) (AND-MA),36.732564,-4.455253,,5,,1910,211,69,,0000-2400,1234567,9963,,578,,, +882,E,es,COPE,,Alicante=Alacant (VAL-A),38.328256,-0.544278,,2,,1625,202,70,,0000-2400,1234567,0,,577,,, +882,IRN,fa,IRIB R Mahabad,,Mahabad (waz),36.864722,45.7375,,60,,3492,103,74,,0200-2059,1234567,13,,1790,,, +882,CNR,es,COPE,,La Laguna/EAK64 (STC-TF),28.503331,-16.304275,,25,,3227,224,75,,0000-2400,1234567,996,,575,,, +882,EGY,ar,ERTU Al-Barnameg al-Aam,,Matruh (mth),31.330194,27.266556,,10,,2865,136,76,,0000-2400,....5..,,,1829,,, +882,EGY,ar,ERTU Al-Barnameg al-Aam,,Matruh (mth),31.330194,27.266556,,10,,2865,136,76,,1100-0700,1234.67,,,1829,,, +882,ISR,,IBA Reshet Bet (B),,She'ar-Yeshuv (hzf),33.216111,35.644444,,10,,3144,120,78,,0000-2400,1234567,,,587,,, +882,TUN,ar,RTT,,Remada (tat),32.316667,10.4,,1,,2224,170,79,,0400-2400,1234567,,,1892,,, +882,ARS,ar,BSKSA Al-Quran al-Karim,,Dammam (shy),26.459411,50.042656,,100,,4609,111,83,,0000-2400,1234567,,,47078,,, +882,EGY,,ERTU R Hala'ib,,Hala'ib (bar),22.233333,36.613333,,7.5,,4206,131,90,,,,,,582,,, +882,MNG,mn,Mongoliin R 1,,Mrn=Murun (kgl),49.612222,100.168611,,75,,6104,52,99,,2200-1500,1234567,977,,47187,,, +882,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Kitale (rif),1.147639,34.899053,,50,,6255,145,103,,0200-2110,1234567,,,1964,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,0025-0430,123456,999,,48691,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,0025-0500,......7,999,,48691,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,0600-1000,......7,999,,48691,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,0645-1000,123456,999,,48691,,, +882,IND,,AIR Northeast,,Imphal (MN),24.625833,93.894444,,300,,7707,76,109,,1030-1700,1234567,999,,48691,,, +882,CHN,kk,Yili RGD,,Yining=Gulja (XJ),43.916667,81.466667,,1,,5403,68,111,,,,,,48689,,, +882,CHN,ug,Karamay RGD,,Karamay (XJ),45.533333,85,,1,,5514,64,112,,,,,,48687,,, +882,CHN,zh,Haixi RGD,,Da Qaidam/QHTS917 (QH),37.371111,97.386944,,20,,6885,64,113,,,,,,36200038,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1130-1200,1234567,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1215-1230,1......,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1245-1300,......7,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1630-1645,.....6.,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1630-1700,12345..,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2214-2230,1234567,17,,48718,,, +882,CLN,,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2300-2315,12.....,17,,48718,,, +882,CLN,bj,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1215-1230,.2.....,17,,48718,,, +882,CLN,bj,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1215-1245,..34567,17,,48718,,, +882,CLN,bli,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2315-2330,1......,17,,48718,,, +882,CLN,bn,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2230-2300,1234567,17,,48718,,, +882,CLN,ct,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1230-1315,1......,17,,48718,,, +882,CLN,ct,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1245-1315,.2345..,17,,48718,,, +882,CLN,ct,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1300-1315,.....67,17,,48718,,, +882,CLN,dc,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1315-1345,12345..,17,,48718,,, +882,CLN,dc,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1615-1630,....5..,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0030-0045,1.....7,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0115-0130,..345..,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1200-1215,1234567,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1615-1630,1234...,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1615-1730,......7,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1645-1730,.....6.,17,,48718,,, +882,CLN,en,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1700-1730,12345..,17,,48718,,, +882,CLN,go,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1545-1600,.....6.,17,,48718,,, +882,CLN,go,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1545-1615,12345..,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0030-0045,....56.,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1315-1345,.....6.,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1345-1415,......7,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1400-1430,.....6.,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1600-1630,.....6.,17,,48718,,, +882,CLN,gu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2300-2330,..34567,17,,48718,,, +882,CLN,kc,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2315-2330,.2.....,17,,48718,,, +882,CLN,kn,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0115,....56.,17,,48718,,, +882,CLN,kn,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1415-1445,12345.7,17,,48718,,, +882,CLN,ml,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0130,......7,17,,48718,,, +882,CLN,ml,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1600-1615,......7,17,,48718,,, +882,CLN,ml,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,2330-2400,1234567,17,,48718,,, +882,CLN,mr,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1430-1500,.....6.,17,,48718,,, +882,CLN,mr,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1445-1500,......7,17,,48718,,, +882,CLN,mr,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1445-1515,12345..,17,,48718,,, +882,CLN,mv,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0045-0100,.....6.,17,,48718,,, +882,CLN,or,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0115,..3....,17,,48718,,, +882,CLN,or,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1500-1530,.....6.,17,,48718,,, +882,CLN,or,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1500-1545,......7,17,,48718,,, +882,CLN,or,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1515-1545,12345..,17,,48718,,, +882,CLN,ta,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0000-0030,1234567,17,,48718,,, +882,CLN,ta,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0030-0045,.234...,17,,48718,,, +882,CLN,ta,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0045-0100,12345..,17,,48718,,, +882,CLN,ta,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0130,12.....,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0100-0115,...4...,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1315-1345,......7,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1345-1400,.....6.,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1345-1415,12345..,17,,48718,,, +882,CLN,te,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1530-1545,.....6.,17,,48718,,, +882,CLN,tu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,0045-0100,......7,17,,48718,,, +882,CLN,tu,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1545-1600,......7,17,,48718,,, +882,CLN,vr,TWR Asia,,Puttalam (put),7.976542,79.802253,,400,350,8177,98,113,,1230-1245,.2.....,17,,48718,,, +882,KRE,,KCBS Chosun Jungang Pangsong,,Wonsan (kan),39.066667,127.416667,,250,,8386,43,117,,2000-1800,1234567,43,,48708,,, +882,CHN,,Yushu RGD,,Yushu/QHTS920 (QH),33.001667,97.001944,,10,,7214,68,119,,,,,,48690,,, +882,CHN,,Hohhot RGD Shoufu zhi Sheng,,Hohhot (NM),40.741389,111.583056,,10,,7432,53,121,,,,,,48686,,, +882,CHN,,Shijiazuang RGD,,Shijiazhuang (HB),37.833333,114.666667,,20,,7851,53,123,,2150-1500,1234567,184,,48688,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/Wenshanzhou (FJ),25.971444,119.292333,,100,,9171,57,124,,,,,,36200036,,, +882,CHN,,Shenyang JGD,,Shenyang (LN),41.748056,123.385,,10,,7948,45,127,,,,,,36200034,,, +882,CHN,,Dalian RGD,,Dalian/LNTS303 (LN),39.087778,121.677778,,10,,8106,47,128,,2025-1700,1234567,,,48683,,, +882,KOR,,HLKI KBS 1 R,,Daedeok (daj),36.409653,127.423556,,20,,8635,45,130,,0000-2400,1234567,,,48709,,, +882,PHL,,DWIZ-AM Radyo Totoo,,Obando (bul),14.7075,120.936944,,50,,10302,62,131,,0000-2400,1234567,9979,,48716,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fu'an/FJTS903 (FJ),27.111117,119.622122,,10,,9086,56,134,,,,,,36200037,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Sanming/FJTS701 (FJ),26.242222,117.621289,,10,,9051,58,134,,,,,,36200765,,, +882,J,,JOPK NHK1,,Shizuoka (chu-shi),34.950278,138.418056,,10,,9272,38,135,,0000-2400,1234567,,,48706,,, +882,TWN,,BCC News Network,,Hsinchu (HC),24.915539,121.011211,,10,,9366,56,135,,0000-2400,1234567,,,48719,,, +882,CHN,,Anyang RGD,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,2155-1530,1234567,,,48682,,, +882,J,,JOWS STV, Sapporo TV Hoso,,Kushiro (hok),42.983333,144.416667,,3,,8698,30,138,,0000-2400,1234567,0,,48705,, +882,PHL,,DYOG-AM Radyo ng Bayan,,Calbayog City (sam),12.066667,124.583333,,10,,10765,60,140,,,,,,48713,,, +882,CHN,,Duyun RGD,,Duyun/GZTS854 (GZ),26.266667,107.516667,,1,,8443,65,141,,,,,,48684,,, +882,PHL,,DXMS-AM R Veritas,,Cotabato City (mag),7.233333,124.25,,10,,11194,63,141,,,,,,48714,,, +882,J,,JOWS STV Sapporo TV Hoso,,Esashi (hok),41.866667,140.133333,,1,,8656,33,143,,0000-2400,1234567,,,48703,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Jinjiang/FJTS402 (FJ),24.725,118.470833,,1,,9238,58,144,,,,,,36200035,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Yongan/FJTS702 (FJ),25.960081,117.356311,,1,,9061,58,144,,,,,,36200033,,, +882,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Zhangzhou/FJTS501 (FJ),24.5,117.666667,,1,,9211,59,144,,,,,,36200032,,, +882,TWN,,Feng Ming Kuangpo Tientai,,Magong=Makung (PG),23.534722,119.6,,1,,9412,58,145,,,,,,48720,,, +882,AUS,en,6PR,,Perth/Ascot Waters (WA),-31.934742,115.915567,,10,,14040,97,150,,0000-2400,1234567,,,48680,,, +882,INS,id,PM3BNG R Pelangi Nusantara,,Jakarta/Taman Mini Indonesia (JK-kjt),-6.303056,106.897917,,1,,11276,86,151,,2250-1700,1234567,86,,48695,,, +882,INS,id,PM4BMI R.Kranggan Persada,,Temanggung/Kranggan (JT),-7.266667,110.4,,1,,11598,83,152,,,,,,48702,,, +882,INS,id,PM8DCB R.Bambapuang,,Pangkajene/Sidrap (SN),-4.833333,119.55,,1.5,,11995,74,152,,,,,,48701,,, +882,J,,STV, Sapporo TV Hoso,,Kitahiyama (hok),42.433333,139.933333,,0.1,,8592,33,152,,0000-2400,1234567,,,48704,, +882,INS,id,R.Pemerintah Kabupaten Majene,,Majene (SR-maj),-3.55,118.966667,,1,,11842,74,153,,,,,,35400039,,, +882,INS,id,RGPA-R.Gema Panca Arga,,Pacitan (JI),-8.2,111.116667,,1,,11729,83,153,,,,,,48700,,, +882,INS,id,PM3BNH R.SAS-Suara Anggada Senatama,,Banjarsari (JB-cms),-6.483333,106.05,,0.25,,11234,86,157,,,,,,48693,,, +882,AUS,en,4BH,,Brisbane/Wynnum West (QLD),-27.464278,153.147778,,5,,16129,58,160,,0000-2400,1234567,9991,,48679,,, +882,NZL,en,1YC Southern Star/RNZ Parliament,,Auckland/Henderson (AUK),-36.849089,174.629694,,10,,18083,33,164,,0000-2400,1234567,,,48711,,, +882,AUS,,3YB,,Warrnambool/Purnim (VIC),-38.24,142.613611,,2,,16322,83,165,,0000-2400,1234567,,,48681,,, +885,RUS,,KR,b,Kirishi (LE),59.479167,32.041667,,0.025,,1784,53,91,,,,,L1052 U1057 ,85782,,, +887,RUS,,E,b,Moskva/Domodedovo (MV),55.395833,37.958333,,0.025,,2087,67,94,,,,,L1030 U1035 15.0s,IDx2,85783,, +887,RUS,,W,b,Moskva/Domodedovo (MV),55.4375,37.875,,0.025,,2082,67,94,,,,,30.0s,IDx2,85784,, +888,CZE,,P,b,Pardubice (PA),50.020833,15.791667,,0.025,,695,106,80,,,,,,ID+3 gap,85785,, +890,USA,es,WAMG,,Dedham (MA),42.247222,-71.425278,,6,,5695,292,106,,,,9961,,40707,,, +890,USA,en,WLS,,Chicago/Tinley Gardens Park (IL),41.555833,-87.848333,,50,,6750,301,108,,,,35,,42229,,, +890,USA,,WBAJ,,Blythewood (SC),34.108611,-81.074444,,50,,6927,291,109,,1200-2400,1234567,,,40799,,, +890,CUB,es,R Progreso,,Chambas/CTOM2 (ca),22.370928,-78.885061,,200,,7750,281,112,,,,8,,31600012,,, +890,USA,,WKNV,,Fairlawn (VA),37.131944,-80.618611,,10,,6659,293,114,,,,9964,,42050,,, +890,CAN,en,CJDC,,Dawson Creek (BC),55.775,-120.221111,,10,,7059,330,118,,,,1,,36162,,, +890,USA,,WFKJ,,Cashtown (PA),39.883056,-77.345278,,0.89,,6241,293,120,,,,,,41391,,, +890,ALS,,KBBI,,Homer (AK),59.670556,-151.443889,,10,,7428,348,121,,0000-2400,1234567,0,,38005,,, +890,USA,en,KYWN,,Meridian (D) (ID),43.460278,-116.241389,,50,,8051,320,121,,,,992,,38271,,, +890,VEN,,YVLW R Amrica,,Valencia (cbb),10.166667,-68,,50,,8055,264,121,,0900-0400,1234567,1,,45374,,, +890,USA,es,WJTP,,Lithia Springs (GA),33.760833,-84.478333,,5,,7171,293,122,,1200-2400,1234567,,,43418,,, +890,USA,,KQLX,,Lisbon (ND),46.615,-97.132222,,1.8,,6856,311,123,,,,,,39197,,, +890,USA,,WHNC,,Henderson (NC),36.335556,-78.369722,,1,,6578,291,123,,,,,,41667,,, +890,USA,,KTXV,,Mabank (TX),32.286944,-95.9775,,20,,7998,300,124,,,,,,39554,,, +890,USA,en,WHJA,,Laurel (MS),31.524722,-89.241944,,10,,7654,295,124,,1300-0100,1234567,,,41263,,, +890,B,pt,ZYI772 Rdio Tamandar,,Recife (PE),-8.006911,-34.879669,,10,,7750,224,125,,,,1,,36901548,,, +890,USA,,WYAM,,Hartselle (AL),34.566667,-86.912778,,2.5,,7257,295,126,,,,,,43504,,, +890,VEN,,YVVO R Oriente,,El Tigre (azg),8.866667,-64.25,,10,,7915,260,126,,,,,,51673,,, +890,CLM,es,HJPM R Galen,,Santa Marta (mag),11.25,-74.216667,,20,,8384,270,128,,,,994,,2010,,, +890,USA,,KGGN,,Gladstone (MO),39.184444,-94.457778,,0.96,,7324,303,130,,,,,,38476,,, +890,DOM,,HIPJ La Consentida 890 AM,,Santo Domingo (sdo),18.466667,-69.916667,,1,,7471,271,132,,1000-0500,1234567,,,37285,,, +890,HTI,,Voix du Nord'est,,Fort-Libert (nes),19.658333,-71.833333,,1,,7501,273,132,,,,,,52109,,, +890,USA,,KDXU,,St. George/Cedar City (UT),37.068056,-113.518889,,10,,8521,315,132,,,,14,,38302,,, +890,B,pt,ZYH706 Rdio Clube AM Braslia,,Braslia/Parque de Taguatinga (DF),-15.754014,-47.935844,,10,,9175,232,134,,,,0,,36901546,,, +890,CTR,,TIHOT R Fabulosa,,San Jos (sjs),9.933333,-84.066667,,10,,9170,277,134,,1100-0500,1234567,,,52146,,, +890,CUB,es,R Revolucin,,Santiago de Cuba/CTOM1 (sc),20.055531,-75.804389,,1,,7738,277,134,,,,,,31600038,,, +890,CLM,es,HJCE R Continental/Todelar,,Bogot D. C. (bdc),9.516667,-74.15,,5,,8530,268,135,,,,,,37368,,, +890,PTR,,WFAB,,Ceiba (PR),18.204444,-65.711111,,0.25,,7206,268,135,,,,,,41351,,, +890,USA,,KTLR,,Oklahoma City (OK),35.566389,-97.474444,,1,,7803,303,135,,,,,,39504,,, +890,HTI,,R Trans Artibonite,,Gonaves (art),19.416667,-72.666667,,0.5,,7578,274,136,,,,,,35658,,, +890,B,pt,ZYK690 Rdio Gazeta,,So Paulo/Estrada de Riveira (SP),-23.708056,-46.742222,,10,,9881,227,137,,,,,,36901547,,, +890,PNR,es,HOQ62 R Ritmo Stereo,,Chitr/Cerro El Guayabo (her),7.958333,-80.456667,,5,,9096,272,137,,,,,,52310,,, +890,USA,en,KIHC,,Arroyo Grande (CA),35.145556,-120.520833,,5,,9032,319,137,,,,99987,,38806,,, +890,GTM,,TGHU R Escuintla,,Escuintla (esl),14.3,-90.766667,,5,,9237,284,138,,,,,,40499,,, +890,USA,en,KJME,,Fountain (CO),38.518611,-104.600833,,0.58,,7938,310,139,,,,53,,20016226,,, +890,B,pt,ZYH642 Rdio Itataia,,Santa Quitria (CE),-4.357453,-40.163178,,0.25,,7654,231,140,,,,,,36901545,,, +890,B,pt,ZYI536 Rdio Ponta Negra,,Santarm (PA),-2.477858,-54.705522,,1,,8317,245,140,,,,,,36901541,,, +890,URG,es,CX18 R Sarandi Sport,,Santiago Vzquez (mo),-34.795389,-56.32325,,10,,11416,228,142,,0000-2400,1234567,,,36806,,, +890,USA,,KVOZ,,Del Mar Hills (TX),27.549167,-99.3725,,1,,8615,299,142,,,,996,,39660,,, +890,ARG,es,LV11 Emisora Santiago del Estero,,Santiago del Estero (se),-27.754606,-64.202989,,5,,11207,238,144,,0900-0530,1234567,,,40237,,, +890,HND,,HRGY3,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37761,,, +890,HND,,HRH6,,El Paraiso (elp),13.85,-86.55,,1,,8996,281,144,,,,,,37765,,, +890,MEX,es,XEPC-AM Sonido Estrella,,Zacatecas (zac),22.764175,-102.562756,,1,,9233,299,144,,,,,,44539,,, +890,NCG,,R San Carlos,,San Carlos (rsj),11.116667,-84.783333,,1,,9115,278,144,,,,,,33700018,,, +890,SLV,,YSLA,,Santa Ana (sta),13.966667,-89.566667,,1,,9187,283,144,,,,,,45293,,, +890,USA,en,KYWN,,Meridian (N) (ID),43.549444,-116.410556,,0.25,,8050,320,144,,,,,,20016085,,, +890,B,pt,ZYJ745 Rdio Clube de Canoinhas,,Canoinhas (SC),-26.171944,-50.388333,,2,,10302,229,145,,,,,,36901539,,, +890,MEX,es,XENZ-AM La Sinaloense,,Culiacn (sin),24.804733,-107.351867,,1,,9328,303,145,,,,,,44469,,, +890,CHL,es,CD89 R Nacional,,Punta Arenas (MA),-53.159475,-70.975044,,20,,13727,225,146,,1000-0400,1234567,,,35920,,, +890,EQA,,HCTL5,,Riobamba (chi),-1.633333,-78.616667,,1,,9812,265,146,,,,,,37140,,, +890,B,pt,ZYK562 Rdio Imaculada Conceio,,Bilac/Fazenda Baguassu (SP),-21.387486,-50.452883,,1,,9850,231,147,,,,,,36901544,,, +890,EQA,,HCRS3 R Superior de Machala,,Machala (oro),-3.316667,-79.966667,,1,,10052,265,147,,,,994,,32600003,,, +890,B,pt,ZYJ499 Rdio Musical de Cantagalo,,Cantagalo (RJ),-21.985444,-42.356478,,0.5,,9498,224,148,,,,,,36902558,,, +890,CLM,es,HKO93,,Soledad (atl),10.916667,-74.766667,,0.25,,8451,270,148,,,,,,35901425,,, +890,MEX,es,XEAK-AM R Consentida,,Acmbaro (gua),20.038703,-100.761911,,0.5,,9369,296,148,,,,,,43714,,, +890,B,pt,ZYL250 Rdio Santa Cruz,,Jequitinhonha (MG),-16.444961,-40.994883,,0.25,,8885,226,149,,,,,,36901534,,, +890,EQA,,HCIM1,,Ibarra (imb),0.35,-78.116667,,0.5,,9603,266,149,,,,,,36972,,, +890,CHL,,CA89 R Leon XIII,,Pozo Almonte (TA),-20.316667,-69.816667,,1,,10882,247,150,,1100-0200,1234567,,,35711,,, +890,MEX,es,XEBY-AM R Frmula,,Tuxpan/Col. Murillo Vidal (vcz),20.971417,-97.407317,,0.25,,9077,294,150,,,,,,43801,,, +890,B,pt,ZYI453 Rdio Guaicurus,,Ftima do Sul (MS),-22.353086,-54.50405,,0.5,,10161,234,151,,,,,,36901549,,, +890,B,pt,ZYL370 Rdio Clube de Inhapim,,Inhapim (MG),-19.555011,-42.126236,,0.25,,9247,225,151,,,,,,36901550,,, +890,MEX,es,XEPNA-AM R Joya,,Tepic (nay),21.509147,-104.881475,,0.25,,9485,300,151,,,,,,44561,,, +890,ARG,,R Libre,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51812,,, +890,B,pt,ZYK295 Rdio Noroeste,,Santa Rosa (RS),-27.85,-54.498056,,0.5,,10676,231,152,,,,,,36901536,,, +890,B,pt,ZYK703 Rdio Cidade Brasileiras,,Mato/Jardim do Bosque (SP),-21.594583,-48.34765,,0.25,,9759,229,152,,,,,,36901540,,, +890,PRG,,ZP33 R Tres de Febrero,,Ita (cet),-25.416667,-57.383333,,0.5,,10606,234,152,,0900-0300,1234567,,,45530,,, +890,ARG,es,LU33 R Pampeana,,Santa Rosa (lp),-36.648836,-64.273261,,1,,12003,233,154,,0000-2400,1234567,,,40228,,, +890,B,pt,ZYJ287 Rdio Ub,,Ivaipor (PR),-24.230278,-51.688889,,0.25,,10186,231,154,,,,,,36901537,,, +890,B,pt,ZYJ338 Rdio Itapu,,Pato Branco (PR),-26.224167,-52.638333,,0.25,,10424,230,154,,,,,,36901543,,, +890,B,pt,ZYJ755 Rdio Santa Catarina,,Florianpolis (SC),-27.491111,-48.528056,,0.25,,10335,227,154,,,,,,36901538,,, +890,B,pt,ZYK215 Rdio Viva News,,Bento Gonalves/Morro da Vindima (RS),-29.195278,-51.534167,,0.25,,10648,228,155,,,,,,36901542,,, +890,CHL,,CC89 R Interamericana,,Concepcin (BI),-36.866667,-73.016667,,1,,12514,238,155,,1030-0400,1234567,,,35838,,, +890,USA,en,WNPC752,,Aurora (CO),39.639722,-104.831917,,0.01,,7851,310,155,,,,,,20010582,,, +890,USA,en,WPHH900,,Denver (CO),39.756389,-104.992194,,0.01,,7849,311,155,,,,,,20010579,,, +890,USA,en,WPJM700,,De Soto (TX),32.610997,-96.858611,,0.01,,8022,301,157,,,,,,20010581,,, +890,USA,en,WD2XUM,,El Centro NAF (CA),32.89,-115.787222,,0.0001,,9024,314,184,,,,,,20010580,,, +891,HOL,nl,R 538,,Hulsberg/Emmaberg (lim),50.875081,5.846614,,22,,143,196,42,,0000-2400,1234567,2,,597,,, +891,ALG,ar,Chane 1,,Ouled Fayet (16),36.722222,2.951389,,100,,1732,190,54,,0000-2400,1234567,9799,,200001,,, +891,TUR,tr,Antalya Radyosu,,Antalya-Aksu (akd-ant),36.927389,30.941694,,100,,2553,122,63,,0800-1100,1234567,9993,,601,,, +891,TUR,tr,TRT 1 Radyo Bir,,Antalya-Aksu (akd-ant),36.927389,30.941694,,100,,2553,122,63,,0400-0800,1234567,9993,,601,,, +891,POR,pt,Rdio Sim,,Vilamoura (agv),37.083222,-8.136514,,10,,2021,220,67,,0000-2400,1234567,,,599,,, +891,AZE,az,Azərbaycan R,,Baku (bak),40.398311,49.847022,,30,,3521,94,77,,0200-2000,1234567,2,,596,,, +891,GRC,,unid (Blues & Jazz),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400060,,, +891,IRN,fa,IRIB R Yasuj,,Deh Dasht (kba),30.805417,50.576028,,50,,4282,106,83,,0330-2200,1234567,,,598,,, +891,IRN,fa,IRIB R Yasuj,,Yasuj (kba),30.625056,51.590361,,50,,4363,105,84,,0330-2200,1234567,,,10800030,,, +891,SDN,ar,SRTC Sudan Nat. R,,Sinjah (si),13.156361,33.90285,,50,,4977,140,90,,,,,,9400012,,, +891,ETH,,ERTA Ethiopia National R,,Dessie=Dese (amh),11.154472,39.653167,,100,,5444,135,91,,0300-0600,1234567,,,9600002,,, +891,ETH,,ERTA Ethiopia National R,,Dessie=Dese (amh),11.154472,39.653167,,100,,5444,135,91,,0800-2100,1234567,,,9600002,,, +891,CHN,,Shihezi RGD Xinwen Pinl,,Shihezi/XJTS7606 (XJ),44.2925,86.058333,,10,,5665,65,104,,,,,,36200763,,, +891,CHN,,Ningxia RGD,,Yinchuan/Peng (NX),38.563056,106.310278,,200,,7320,58,107,,2115-1830,1234567,5,,48728,,, +891,IND,,AIR North,,Rampur (UP),28.756847,79.051944,,20,,6371,84,108,,0020-0430,1234567,,,48731,,, +891,IND,,AIR North,,Rampur (UP),28.756847,79.051944,,20,,6371,84,108,,0630-1200,1234567,,,48731,,, +891,IND,,AIR North,,Rampur (UP),28.756847,79.051944,,20,,6371,84,108,,1230-1742,1234567,,,48731,,, +891,THA,th,Sor. Wor. Thor. (R Thailand),,Saraburi (srb),14.256111,100.828056,,1000,,9058,78,114,,2150-1702,1234567,9925,,48742,,, +891,KOR,ko,HLKB KBS 1 R,,Busan (bus),35.221944,128.889917,,250,,8817,45,119,,0000-2400,1234567,,,48735,,, +891,CHN,,Ningxia RGD,,Shizuishan (NX),39.233333,106.766667,,10,,7291,57,120,,2115-1830,1234567,,,36201286,,, +891,CHN,,Ningxia RGD,,Tongxin (NX),36.98575,105.904472,,10,,7428,59,121,,2115-1830,1234567,,,36200761,,, +891,CHN,zh,Hinggan=Xingan RGD,,Ulanhot/NMTS825 (NM),46.126667,122.046444,,10,,7491,43,122,,1000-1330,1234567,,,48727,,, +891,CHN,zh,Hinggan=Xingan RGD,,Ulanhot/NMTS825 (NM),46.126667,122.046444,,10,,7491,43,122,,2200-0530,1234567,,,48727,,, +891,CHN,,Ningxia RGD,,Pengyang (NX),35.85,106.65,,10,,7567,59,123,,2115-1830,1234567,,,36200762,,, +891,LSO,,LNBS Ultimate FM,,Maseru/Lancer's Gap (msr),-29.31075,27.555947,,100,,9285,162,125,,0000-2400,1234567,5,,2417,,, +891,CHN,zh,Dandong RGD Traffic,,Dandong/LNTS311 (LN),40.182778,124.370833,,10,,8138,45,128,,2000-1600,1234567,,,48726,,, +891,CHN,zh,Shandong RGD,,Dongying (SD),37.453889,118.569167,,10,,8093,50,128,,2125-1700,1234567,,,48725,,, +891,J,,JOHK NHK1,,Sendai (toh-miy),38.273056,140.91,,20,,9043,35,131,,0000-2400,1234567,0,,48734,,, +891,TWN,,BCC Local,,Tainan (TN),23.118367,120.151517,,10,,9482,58,135,,,,,,52258,,, +891,PHL,,DZGR-AM Bombo Radyo,,Tuguegarao City/Bagumbayan (cag),17.716667,121.5,,5,,10058,60,140,,,,,,48739,,, +891,PHL,,DWAR-AM Radyo Oragon,,Naga City/Tabuco (cas),13.6,123.183333,,5,,10539,61,142,,,,,,48738,,, +891,INS,id,RRI Pro-1,,Malang/Ngijo (JI-mal),-7.885508,112.608106,,10,,11802,82,143,,2155-1700,1234567,0,,48733,,, +891,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Xiamen=Amoy (FJ),24.6,118.116667,,1,,9228,58,144,,,,,,36200764,,, +891,INS,id,RRI Pro-1,,Ternate (MU-ter),0.763711,127.368486,,10,,11985,64,144,,0215-0915,1234567,,,35400040,,, +891,AUS,en,5AN ABC Adelaide,,Adelaide/Reynella (SA),-35.103903,138.518703,,50,,15818,83,149,,0000-2400,1234567,,,48723,,, +891,AUS,,4TAB,,Townsville/Turtle Bay Rd (QLD),-19.304889,147.035472,,5,,15028,58,157,,0000-2400,1234567,,,48724,,, +891,NZL,en,2XW The Breeze,,Wellington/Horokiwi (WGN),-41.21925,174.857589,,5,,18521,40,168,,,,,,48736,,, +894,RUS,,C,b,Savasleyka,55.4375,42.291667,,0.025,,2360,67,97,,,,,,86793,,, +897,XOE,,BRN,b,Jack-up Rig GSF Britannia,53.020833,2.208333,,0.025,,301,291,76,,,,,L400 U400 ,86794,,, +897,INS,id,R Putra Perintis,,Karawang (JB-kar),-6.316667,107.3,,1,,11304,85,151,,,,,,48745,,, +900,I,it,RAI Lombardia,,Milano/Siziano (pv),45.33175,9.19975,,50,,781,164,48,,0620-0630,123456,0,,609,,, +900,I,it,RAI Lombardia,,Milano/Siziano (pv),45.33175,9.19975,,50,,781,164,48,,1110-1130,123456,0,,609,,, +900,I,it,RAI Lombardia,,Milano/Siziano (pv),45.33175,9.19975,,50,,781,164,48,,1140-1200,......7,0,,609,,, +900,I,it,RAI R1,,Milano/Siziano (pv),45.33175,9.19975,,50,,781,164,48,,0000-2400,1234567,0,,609,,, +900,E,es,R Popular/Herri Irratia,,Bilbao/Monte Avril (EAK13) (PVA-BI),43.2696,-2.893483,,10,,1203,219,59,,0000-2400,1234567,21,,604,,, +900,ARS,ar,BSKSA Al-Quran al-Karim,,Qurayyat (jwf),31.425861,37.376278,,1000,148,3401,120,61,,0300-1445,1234567,9996,,603,,, +900,ARS,ar,BSKSA Idha'atu-i Riyadh,,Qurayyat (jwf),31.425861,37.376278,,1000,148,3401,120,61,,1445-0300,1234567,9996,,603,,, +900,E,es,COPE,,Vigo/Monte Faro Domayo (GAL-PO),42.319525,-8.694675,,5,,1571,232,66,,0000-2400,1234567,,,607,,, +900,E,es,COPE,,Cceres (EAK57) (EXT-CC),39.455633,-6.3439,,5,,1714,220,67,,0000-2400,1234567,0,,606,,, +900,E,es,COPE,,Granada/Mirador S.Cristbal (EAK39) (AND-GR),37.195333,-3.591197,,5,,1833,209,68,,0000-2400,1234567,997,,605,,, +900,IRN,fa,IRIB R Iran,,Tehran (thr),35.592278,51.244569,,600,,3954,100,69,,0000-2400,1234567,999,,610,,, +900,RUS,,NE,b,Nerl,57.020833,38.041667,,0.025,,2090,62,94,,,,1,L1006 U1006 ,85786,,, +900,CAN,,CHML,,Hamilton (ON),43.333333,-80.120556,,50,,6154,298,102,,,,9997,,36063,,, +900,CHN,en,CRI Easy FM,,Kashgar=Kashi (XJ),39.416667,76,,1,,5359,76,111,,0000-2400,1234567,,,36200749,,, +900,IND,te,AIR South,,Kadapa=Cuddapah (AP),14.48,78.733333,,100,,7539,95,112,,0010-0430,1234567,2,,48788,,, +900,IND,te,AIR South,,Kadapa=Cuddapah (AP),14.48,78.733333,,100,,7539,95,112,,1130-1742,1234567,2,,48788,,, +900,CAN,en,CKBI,,Prince Albert (SK),53.103611,-105.759167,,10,,6730,320,114,,,,9994,,36267,,, +900,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.418189,94.996833,,10,,6813,67,115,,2100-1602,1234567,,,36200757,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Bei'an/HLTS918 (HL),48.254722,126.489444,,50,,7497,39,115,,0855-1500,1234567,,,36200760,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Bei'an/HLTS918 (HL),48.254722,126.489444,,50,,7497,39,115,,2100-0600,1234567,,,36200760,,, +900,ALS,,KZPA,,Fort Yukon (AK),66.556667,-145.201111,,5,,6605,347,116,,0000-2400,1234567,6,,39904,,, +900,CHN,,Dehong RGD,,Luxi/YNTS771 (YN),24.449167,98.5975,,100,,8031,73,117,,????-1525,1234567,,,48770,,, +900,CUB,es,R Progreso,,Urbano Noris/San Germn (ho),20.590286,-76.146736,,50,,7716,277,117,,,,9937,,36565,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jiamusi (HL),46.755556,130.265,,50,,7794,37,118,,0855-1500,1234567,,,48765,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jiamusi (HL),46.755556,130.265,,50,,7794,37,118,,2100-0600,1234567,,,48765,,, +900,BRB,,Caribbean Broadcasting Corp.,,Bridgetown (smi),13.137128,-59.633383,,10,,7231,259,119,,0000-2400,1234567,4,,35772,,, +900,USA,,WJWL,,Georgetown (DE),38.708056,-75.407778,,1.08,,6207,291,119,,,,,,41942,,, +900,CHN,zh,Henan RGD Jiaoyu Guangbo,,Zhengzhou/HETS976 (HE),34.796944,113.746944,,50,,8066,55,121,,2225-1600,1234567,,,48783,,, +900,CHN,zh,Shaanxi RGD Farm,,Xi'an/Caotan-SATS1 (SA),34.385556,108.950556,,25,,7827,59,121,,2030-1700,1234567,,,48779,,, +900,MEX,es,XEW-AM W R,,Mxico D.F/Ex-Hacienda Coapa (dif),19.310844,-99.135,,250,,9333,294,121,,0000-2400,1234567,9998,,45004,,, +900,B,pt,ZYJ591 Rdio Nordeste,,Natal/Rua dos Transmissores (RN),-5.801,-35.240389,,10,,7546,226,122,,,,,,36901568,,, +900,USA,,WCPA,,Clearfield (PA),41.042222,-78.448333,,0.5,,6223,295,122,,,,,,41063,,, +900,CHN,,Datong RGD News,,Datong/Liuhangli (SX),40.070278,113.302778,,10,,7583,52,123,,,,,,48760,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Yima (HE),34.755833,111.872222,,25,,7963,57,123,,,,,,36200737,,, +900,CHN,,Zhangjiakou RGD Literary,,Zhangjiakou (HB),40.816667,114.85,,10,,7601,51,123,,,,,,48782,,, +900,USA,,WILC,,Laurel (MD),39.0825,-76.838611,,0.5,,6270,292,123,,,,,,41749,,, +900,VEN,,YVMD Mara Ritmo 900,,Maracaibo (zul),10.65,-71.716667,,50,,8266,267,123,,,,999,,2206,,, +900,CHN,,Chifeng JGD,,Chifeng (NM),42.3,118.866667,,10,,7678,47,124,,2150-1330,1234567,,,48759,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Zhoukou (HE),33.633333,114.633333,,25,,8218,55,125,,,,,,36200733,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Fuyuan/Tongjiang Xiang (HL),48.349167,134.391111,,10,,7807,34,125,,0855-1500,1234567,,,36200758,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Fuyuan/Tongjiang Xiang (HL),48.349167,134.391111,,10,,7807,34,125,,2100-0600,1234567,,,36200758,,, +900,KOR,ko,HLKV MBC,,Seoul/Neungkok (seo),37.621389,126.798333,,50,,8492,45,125,,0000-2400,1234567,,,48812,,, +900,CHN,,Changchun RGD,,Changchun (JL),43.8,125.4,,10,,7855,42,126,,0000-2400,1234567,,,48757,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mohe (HL),53.475278,122.348056,,1,,6859,37,126,,0855-1500,1234567,,,36200745,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mohe (HL),53.475278,122.348056,,1,,6859,37,126,,2100-0600,1234567,,,36200745,,, +900,USA,,WBML,,Macon (D) (GA),32.849444,-83.602222,,2,,7190,292,126,,,,,,20016071,,, +900,USA,,WGHM,,Nashua (NH),42.759444,-71.476944,,0.06,,5662,292,126,,,,,,43034,,, +900,CHN,,Shanxi RGD Zonghe Guangbo,,Jincheng (SX),35.511711,112.857272,,10,,7953,55,127,,,,,,36200751,,, +900,CHN,zh,Chifeng RGD,,Hexigten/NMTS052 (NM),43.320278,117.055,,3,,7497,48,127,,,,,,36200756,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Hulin/HLTS923 (HL),45.766667,133,,10,,7999,36,127,,0855-1500,1234567,,,36200754,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Hulin/HLTS923 (HL),45.766667,133,,10,,7999,36,127,,2100-0600,1234567,,,36200754,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Muling/HLTS917 (HL),44.783611,130.539444,,10,,7990,38,127,,0855-1500,1234567,,,36200744,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Muling/HLTS917 (HL),44.783611,130.539444,,10,,7990,38,127,,2100-0600,1234567,,,36200744,,, +900,USA,,WUAM,,Watervliet (NY),42.689167,-73.793611,,0.07,,5813,294,127,,,,,,43249,,, +900,B,pt,ZYI533 O Liberal CBN,,Belm (PA),-1.428961,-48.439772,,5,,7839,240,128,,,,,,36902176,,, +900,USA,,KTIS,,Minneapolis (MN),44.99,-92.981111,,0.5,,6766,307,128,,,,,,39491,,, +900,USA,,WBRV,,Boonville (NY),43.513056,-75.362778,,0.052,,5851,295,128,,,,,,40905,,, +900,USA,,WIAM,,Williamston (NC),35.8575,-77.042778,,0.258,,6531,290,128,,,,,,41710,,, +900,USA,,WNMB,,North Myrtle Beach (SC),33.823889,-78.766389,,0.5,,6802,289,128,,,,,,42483,,, +900,USA,,WURD,,Philadelphia (PA),39.917222,-75.221667,,0.105,,6105,292,128,,,,,,43267,,, +900,USA,en,WCME,,Brunswick (ME),43.911667,-70.025,,0.026,,5490,293,128,,,,,,41883,,, +900,B,pt,ZYJ454 Tamoio AM,,Rio de Janeiro/Rua Antonio Leoncio (RJ),-22.773333,-43.066667,,50,,9609,225,129,,,,54,,36901557,,, +900,CHN,,Hubei RGD Shenghuo Pindao,,Enshi/Sanhe Cun (HU),30.333333,109.466667,,10,,8207,61,129,,,,,,36200759,,, +900,CHN,zh,CNR 1,,Linhe/NMTS691 (NM),40.729444,107.354444,,1,,7200,55,129,,2025-1805,1234567,,,48768,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jagdaqi (HL),50.421389,124.158056,,1,,7203,39,129,,0855-1500,1234567,,,48763,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Jagdaqi (HL),50.421389,124.158056,,1,,7203,39,129,,2100-0600,1234567,,,48763,,, +900,CHN,zh,Hubei RGD Chutian Weixing,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,,,,,48780,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Xinyang (HE),32.099722,114.070833,,10,,8322,57,130,,,,,,36200740,,, +900,CHN,,Qingdao RGD Traffic,,Qingdao/SDTS135 (SD),36.121589,120.350533,,10,,8306,50,130,,,,,,48772,,, +900,USA,,WATK,,Antigo (WI),45.106389,-89.1525,,0.195,,6545,305,130,,,,,,40757,,, +900,USA,,WAYN,,Rockingham (NC),34.925,-79.743056,,0.297,,6777,291,130,,,,,,40786,,, +900,USA,,WDLS,,Wisconsin Dells (WI),43.639722,-89.720556,,0.22,,6692,304,130,,,,,,41176,,, +900,CLM,es,HJDD R Red,,Ccuta (nsa),7.816667,-72.466667,,15,,8564,266,131,,,,,,37396,,, +900,USA,,WCBX,,Bassett (VA),36.71,-79.966111,,0.18,,6651,292,131,,,,,,40961,,, +900,USA,,WKDW,,Staunton (VA),38.175556,-79.07,,0.12,,6480,293,131,,,,,,41989,,, +900,USA,en,WYCV,,Granite Falls (NC),35.786111,-81.416667,,0.251,,6815,292,131,,,,,,43510,,, +900,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Macheng (HU),31.183333,115.033333,,10,,8458,57,132,,,,,,36200746,,, +900,CHN,zh,CNR 1,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,2025-1805,1234567,,,36200750,,, +900,CHN,zh,CNR 1,,Tuquan/NMTS728 (NM),45.383333,121.6,,1,,7537,43,132,,2025-1805,1234567,,,36201251,,, +900,CHN,zh,Nanjing RGD Jingji Pinl,,Nanjing/Gulizhen (JS),31.868167,118.671889,,10,,8600,54,132,,0000-2400,1234567,,,48771,,, +900,USA,,WKXV,,Knoxville (TN),35.981111,-83.9875,,0.258,,6961,294,132,,,,,,42102,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Xixia (HE),33.283333,111.466667,,3,,8068,58,133,,,,,,36200739,,, +900,DOM,,HIFK R Super Mega,,Neiba (brc),18.466667,-71.416667,,1,,7574,272,133,,,,,,52237,,, +900,CHN,,Baoji JGD,,Baoji/Xiamaying (SA),34.344167,107.231111,,1,,7729,60,134,,,,,,48754,,, +900,CHN,,Chengde RGD Traffic,,Chengde/HBTS1084 (HB),40.966667,117.933333,,1,,7748,49,134,,,,,,36200347,,, +900,CLM,es,HJEY La Voz de Cali (Todelar),,Cali (val),3.45465,-76.458383,,10,,9218,266,134,,,,,,37425,,, +900,MEX,es,XEWB-AM W R,,Veracruz (vcz),19.214139,-96.173903,,10,,9155,292,134,,,,,,45012,,, +900,USA,,WFIA,,Louisville (KY),38.265833,-85.713889,,0.162,,6884,297,134,,,,,,41383,,, +900,USA,,WJTH,,Calhoun (GA),34.461111,-84.895556,,0.266,,7140,294,134,,,,,,41934,,, +900,USA,en,WLSI,,Pikeville (KY),37.465833,-82.551111,,0.125,,6753,295,134,,,,,,42235,,, +900,VTN,vi,VOV H Tĩnh R,,H Tĩnh (hth),18.333333,105.9,,10,,9035,71,134,,0400-0500,1234567,8,,51642,,, +900,VTN,vi,VOV H Tĩnh R,,H Tĩnh (hth),18.333333,105.9,,10,,9035,71,134,,1000-1100,1234567,8,,51642,,, +900,VTN,vi,VOV1,,H Tĩnh (hth),18.333333,105.9,,10,,9035,71,134,,0500-0600,1234567,8,,51642,,, +900,VTN,vi,VOV1,,H Tĩnh (hth),18.333333,105.9,,10,,9035,71,134,,1100-1200,1234567,8,,51642,,, +900,CHN,,Hebei RGD Wenyi Guangbo,,Baoding (HB),38.85,115.55,,1,,7809,51,135,,,,,,36200345,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Yongcheng (HE),33.933333,116.366667,,3,,8288,54,135,,,,,,36200735,,, +900,CHN,,Liaoning RGD Jingji Tai,,Chaoyang (LN),41.566667,120.466667,,1,,7822,47,135,,,,,,36200346,,, +900,CHN,zh,CRI News R,,Beijing (BJ),39.933333,116.383333,,1,,7759,50,135,,0000-2400,1234567,,,48755,,, +900,B,pt,ZYI455 Rdio Difusora Arco-:ris,,Araputanga (MT),-15.465133,-58.354728,,10,,9740,241,136,,,,,,36901567,,, +900,CHN,,Hebei RGD Wenyi Guangbo,,Shijiazhuang (HB),37.833333,114.666667,,1,,7851,53,136,,,,,,48776,,, +900,CHN,,Liaoning RGD Jingji Tai,,Huludao (LN),40.716667,121,,1,,7925,47,136,,,,,,36200753,,, +900,CHN,,Qinhuangdao JGD,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,2055-????,1234567,,,48773,,, +900,CHN,,Tangshan RGD Cao Fei Dian,,Tangshan (HB),39.6679,118.284117,,1,,7881,49,136,,,,,,36200742,,, +900,CHN,zh,CNR 1,,Liaoyuan (JL),42.866667,125.166667,,1,,7930,43,136,,2025-1805,1234567,,,36200748,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Qitaihe (HL),45.779167,131.041944,,1,,7918,37,136,,0855-1500,1234567,,,36200743,,, +900,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Qitaihe (HL),45.779167,131.041944,,1,,7918,37,136,,2100-0600,1234567,,,36200743,,, +900,EQA,,HCVA1,,Quito (pic),-0.191606,-78.524292,,10,,9679,266,136,,,,,,37157,,, +900,J,ja,JOHO HBC Hokkaido Hoso,,Hakodate (hok),41.847828,140.676044,,5,,8678,33,136,,0000-2400,1234567,0,,48809,,, +900,USA,,WKDA,,Lebanon (TN),36.206667,-86.267222,,0.136,,7083,296,136,,,,,,20016072,,, +900,USA,en,WJLG,,Savannah (GA),32.074722,-81.071389,,0.152,,7091,289,136,,,,,,41894,,, +900,CHN,,Benxi RGD Transportation,,Benxi (LN),41.166667,123.633333,,1,,8013,45,137,,,,,,48756,,, +900,CHN,,Haicheng RGD,,Haicheng (LN),40.85,122.75,,1,,7999,45,137,,,,,,48762,,, +900,CHN,,Henan RGD Jiaoyu Guangbo,,Linzhou (HE),36.066667,113.816667,,1,,7958,54,137,,,,,,36200747,,, +900,DOM,es,HIEN R Puerto Plata,,San Felipe de Puerto Plata (ppl),19.800644,-70.708911,,0.25,,7412,273,137,,0900-0400,1234567,,,37221,,, +900,J,,JOHF BSS Sanin Hoso,,Yonago (chg-tot),35.440556,133.297778,,5,,9001,41,137,,0000-2400,1234567,,,48811,,, +900,J,ja,JOZR RKC Kochi Hoso,,Kochi (shi-koc),33.578333,133.6,,5,,9195,42,137,,0000-2400,1234567,,,48810,,, +900,NCG,,YNRT R Tiempo,,Managua (mng),12.216667,-86.283333,,5,,9120,280,137,,1050-0400,1234567,,,45241,,, +900,USA,,WBML,,Macon (N) (GA),32.849444,-83.601667,,0.15,,7190,292,137,,,,,,40882,,, +900,B,pt,ZYI431 Rdio Integrao,,Primavera do Leste (MT),-15.521222,-54.276839,,5,,9507,237,138,,,,,,36901561,,, +900,B,pt,ZYL207 Rdio Imbiara,,Arax/Serra Morena (MG),-19.590539,-46.968772,,5,,9494,229,138,,,,,,36901562,,, +900,CHN,,Yanji RGD,,Yanji=Yeon'gil (JL),42.9,129.5,,1,,8122,40,138,,,,,,48781,,, +900,USA,,KFAL,,Fulton (MO),38.866111,-91.954167,,0.135,,7206,302,138,,,,,,38371,,, +900,USA,,WATV,,Birmingham (AL),33.536389,-86.884167,,0.158,,7340,294,138,,,,,,40763,,, +900,USA,,WGOK,,Mobile (AL),30.708611,-88.064722,,0.38,,7649,293,138,,,,,,41545,,, +900,EQA,,HCOF4,,Chone (man),-0.7,-80.15,,5,,9834,267,139,,,,,,37049,,, +900,MEX,es,XEOK-AM,,Monterrey (nvl),25.688083,-100.249208,,2.5,,8832,299,139,,,,,,44492,,, +900,PRU,,OBX4X R Felicidad,,Lima (lim),-12.083333,-77.066667,,10,,10626,257,139,,0900-0500,1234567,,,40399,,, +900,B,pt,ZYH488 Rdio Sisal de Conceico do Coite,,Conceio do Coit/Fazenda Poco (BA),-11.556256,-39.302231,,1,,8318,227,140,,,,,,36901553,,, +900,CHN,,Hubei RGD Shenghuo Pindao,,Yingcheng (HU),30.95,113.55,,1,,8393,58,141,,,,,,36200736,,, +900,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Hong'an (HU),31.283333,114.616667,,1,,8425,57,141,,,,,,36200755,,, +900,CHN,,Lianyungang RGD Music & Trafic,,Lianyungang (JS),34.666111,119.155278,,1,,8374,52,141,,,,,,48766,,, +900,PHL,,DWNE-AM,,Cabanatuan City (nve),15.556389,121.092222,,5,,10233,61,141,,,,,,48816,,, +900,PHL,,DXIP-AM Bantay Radyo,,Davao City/Bangkal (dvs),6.066667,121.066667,,10,,11105,67,141,,????-1250,1234567,,,48815,,, +900,CHN,,Hunan JGD,,Changsha (HN),28.15,112.75,,1,,8594,60,142,,2200-1700,1234567,,,48758,,, +900,CHN,,Yancheng RGD Huanghai Mingzhu,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,,,,,36200738,,, +900,CHN,,Zhenjiang JGD,,Zhenjiang (JS),32.216667,119.433333,,1,,8611,53,142,,,,,,48784,,, +900,MEX,es,XEDT-AM La Reina,,Ciudad Cuauhtmoc (chi),28.418606,-106.825142,,1.5,,8968,305,142,,,,,,43940,,, +900,PHL,tl,DYOW-AM Bombo Radyo,,Roxas City (cpz),11.583333,122.75,,5,,10700,62,142,,2030-1430,1234567,,,48817,,, +900,USA,,KJSK,,Columbus (NE),41.439722,-97.390278,,0.065,,7299,307,142,,,,,,38696,,, +900,CHN,,Anhui RGD Nongchang,,Tunxi (AH),29.716667,118.316667,,1,,8775,55,143,,,,,,36200741,,, +900,CHN,,Wuxi RGD Yinyue=Music,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,????-1800,1234567,,,48778,,, +900,HND,,HRUP6 R Satlite,,La Ceiba (atl),15.766667,-86.95,,1,,8856,282,143,,,,,,37861,,, +900,PNR,es,HOHA Caracol Amrica,,Pedregal (pnm),9.086322,-79.428625,,1,,8928,272,143,,,,,,37689,,, +900,USA,,WOZK,,Ozark (AL),31.455278,-85.682778,,0.07,,7436,292,143,,,,,,42639,,, +900,USA,en,WPKI987,,Durham (NC),36.016806,-78.908611,,0.01,,6638,291,143,,,,,,20010583,,, +900,CAN,en,CBWD,,Donald (BC),51.4875,-117.175278,,0.04,,7344,325,144,,,,,,20109122,,, +900,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Ninghua/FJTS704 (FJ),26.233333,116.6,,1,,8992,59,144,,,,,,36200031,,, +900,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Yongding/SARFT603 (FJ),24.733333,116.733333,,1,,9135,59,144,,,,,,36200030,,, +900,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Youxi/SARFT703 (FJ),26.166667,118.183333,,1,,9090,57,144,,,,,,36200029,,, +900,CHN,,Shenzhen RGD Xianfeng 89.8,,Shenzhen/Shiyan (GD),22.653392,113.895556,,1,,9153,63,144,,,,,,48775,,, +900,CHN,zh,CNR 1,,Jiangmen (GD),22.533333,113.116667,,1,,9117,63,144,,2025-1805,1234567,,,36200752,,, +900,GTM,,TGMA R Amatique,,Puerto Barrios (izb),15.666667,-88.566667,,1,,8972,284,144,,,,,,40510,,, +900,HND,,HRUP4,,Choluteca (cho),13.3,-87.116667,,1,,9082,281,144,,,,,,37860,,, +900,PHL,,DXRZ-AM Radyo Agong,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,2100-1400,1234567,,,48818,,, +900,SLV,es,YSQJ R Tiempo,,San Salvador (ssl),13.716667,-89.216667,,1,,9186,283,144,,,,,,45304,,, +900,USA,,KHOZ,,Harrison (AR),36.243056,-93.111944,,0.062,,7492,300,144,,,,,,38556,,, +900,B,pt,ZYH768 Rio Verde AM,,Rio Verde (GO),-17.744117,-50.960817,,1,,9530,234,145,,,,,,36901566,,, +900,B,pt,ZYJ672 Rdio Alvorada de Rondnia,,Ji-Paran (RO),-10.8625,-61.9,,1,,9534,246,145,,,,,,36901551,,, +900,MEX,es,XEED-AM La Lider,,Ameca (jal),20.558539,-104.046253,,1,,9522,298,145,,,,,,43958,,, +900,ARG,es,LT7 R Provincia,,Corrientes (cn),-27.660847,-58.742289,,2.5,,10888,234,146,,0900-0300,1234567,,,40200,,, +900,CAN,en,CBRK,,Kimberley (BC),49.680278,-115.976389,,0.04,,7463,324,146,,,,,,20109121,,, +900,CAN,en,CBUM,,Nakusp (BC),50.241111,-117.801111,,0.04,,7484,325,146,,,,,,20109120,,, +900,HWA,en,KMVI,,Kahului (HI),20.791667,-156.4725,,5,,11740,343,146,,,,998,,39025,,, +900,INS,id,R Aksi Medan,,Medan (SU-med),3.583333,98.65,,1,,9846,86,146,,,,,,35400130,,, +900,USA,,KBIF,,Fresno (CA),36.691667,-119.679444,,0.5,,8845,319,146,,,,15,,38034,,, +900,USA,en,KKRT,,Wenatchee (WA),47.462222,-120.357778,,0.072,,7845,325,147,,,,,,38752,,, +900,USA,en,WMOP,,Ocala (FL),29.237778,-82.121111,,0.023,,7391,288,147,,,,,,42369,,, +900,BOL,,CP20 R Popular,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1000-0100,1234567,,,51975,,, +900,PNG,,NBC Karai-R.Eastern Highlands,,Goroka (ehd),-6.083333,145.383333,,10,,13675,51,149,,0700-1200,1234567,,,48819,,, +900,USA,,KSGL,,Wichita (KS),37.6925,-97.381667,,0.028,,7616,304,149,,,,,,39352,,, +900,USA,en,WSWN,,Belle Glade (FL),26.711944,-80.683056,,0.022,,7506,285,149,,,,,,43088,,, +900,INS,id,PM2DRO R.Aries Sanggau Perkasa,,Sanggau (KB),0.133333,110.6,,1,,10959,79,150,,,,,,48803,,, +900,PNG,,NBC R West New Britain,,Kimbe (wnb),-5.554272,150.160589,,10,,13866,46,150,,,,,,36100005,,, +900,USA,,KPYN,,Atlanta (TX),33.082778,-94.182778,,0.033,,7823,299,150,,,,,,39181,,, +900,B,pt,ZYL341 Rdio Onda Viva,,Carangola (MG),-20.699872,-42.029089,,0.25,,9355,225,151,,,,,,36901559,,, +900,INS,id,R Sindajaya,,Jakarta/Kampung Beting (BT),-6.096111,106.676944,,1,,11243,86,151,,,,,,35400041,,, +900,B,pt,ZYK211 Rdio Aratiba,,Aratiba (RS),-27.423889,-52.244722,,0.5,,10517,230,152,,,,,,36901569,,, +900,B,pt,ZYK263 ABC AM,,Novo Hamburgo (RS),-29.666667,-51.116667,,0.5,,10672,227,152,,,,,,36901560,,, +900,B,pt,ZYK664 Rdio Jovem Pan,,So Jos do Rio Preto (SP),-20.843128,-49.345853,,0.25,,9739,231,152,,,,,,36901555,,, +900,B,pt,ZYL338 Rdio Vincola,,Andradas (MG),-22.018469,-46.580217,,0.25,,9709,228,152,,,,,,36901554,,, +900,CHL,,CA90 R Manantial,,Copiap (AT),-27.366667,-70.333333,,1,,11537,243,152,,1100-0400,1234567,,,35712,,, +900,INS,id,R Suara Sendang Mas,,Banyumas (JT-ban),-7.516667,109.283333,,1,,11544,84,152,,,,,,48790,,, +900,INS,id,RBK-R Bintoro Karya,,Demak (JT-dem),-6.883333,110.633333,,1,,11581,83,152,,,,,,50424,,, +900,B,pt,ZYK511 R.Difusora de Presidente Prudente,,Presidente Prudente (SP),-22.106328,-51.420628,,0.25,,9970,232,153,,,,,,36901563,,, +900,B,pt,ZYK742 Rdio Globo,,Itapetininga (SP),-23.567,-48.029306,,0.25,,9932,228,153,,,,,,36901558,,, +900,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010585,,, +900,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010586,,, +900,B,pt,ZYJ295 Rdio Unio de Toledo,,Toledo (PR),-24.7,-53.706944,,0.25,,10338,232,154,,,,,,36901565,,, +900,BOL,,CP28 R Central Misionera,,Cochabamba (cbb),-17.366667,-66.166667,,0.25,,10390,246,154,,1100-0100,1234567,,,36688,,, +900,CHL,,CB90 Cablenoticias,,Valparaso (VS),-33.466667,-71.666667,,1,,12146,240,154,,1100-0500,1234567,,,35765,,, +900,ARG,,LRG389 R Municipal,,Veinticinco de Mayo (lp),-37.766667,-67.7,,1,,12288,234,155,,,,,,40005,,, +900,BOL,,CP79 R Em. LV Nacional,,Tarija (trj),-21.55,-64.333333,,0.25,,10655,242,155,,1100-2300,1234567,,,36714,,, +900,CHL,,CC90 R Nuble,,Chilln (BI),-36.566667,-72.116667,,1,,12436,238,155,,1100-0400,1234567,,,35839,,, +900,INS,id,PM6CJG R Gema Nugraha,,Sungai Penuh (JA-jam),-2.083333,101.383333,,0.25,,10530,87,155,,,,,,48805,,, +900,USA,,KALI,,West Covina (CA),34.031667,-117.935,,0.079,,9019,316,155,,,,,,37935,,, +900,B,pt,ZYK303 Rdio So Pedrense,,So Pedro do Sul (RS),-29.6,-54.166667,,0.25,,10822,230,156,,,,,,36901556,,, +900,CHL,,CD90 R LV de la Costa,,Osorno (LL),-40.566667,-73.083333,,1,,12826,236,156,,1030-0400,1234567,,,35921,,, +900,URG,,CW17 R Frontera,,Artigas (ar),-30.416667,-56.466667,,0.25,,11019,231,156,,0900-0300,1234567,,,36763,,, +900,USA,en,WQIC905,,Federal Way (WA),47.327669,-122.312167,,0.01,,7933,326,156,,,,,,20010584,,, +900,AUS,,6BY R West,,Bridgetown/Yornup (WA),-34.058333,116.177222,,2,,14220,99,158,,0000-2400,1234567,,,48749,,, +900,AUS,,8HA,,Alice Springs/South Stuart Hwy (NT),-23.767533,133.872344,,2,,14599,75,159,,0000-2400,1234567,,,48748,,, +900,USA,,KCLW,,Hamilton (TX),31.718889,-98.144167,,0.01,,8175,301,159,,,,,,38177,,, +900,USA,,KREH,,Pecan Grove (TX),29.643889,-96.096111,,0.01,,8234,298,159,,,,,,39236,,, +900,USA,,KFLP,,Floydada (TX),33.972222,-101.35,,0.007,,8162,305,160,,,,,,38406,,, +900,AUS,,2LM,,Lismore (NSW),-28.76425,153.360139,,5,,16257,59,161,,0000-2400,1234567,6,,48751,,, +900,AUS,,2LT,,Lithgow/Wallerawang (NSW),-33.40525,150.101444,,5,,16452,69,161,,0000-2400,1234567,,,48752,,, +900,AUS,,7AD,,Devonport/Don Hill (TAS),-41.162869,146.312,,2,,16771,84,166,,0000-2400,1234567,,,48750,,, +900,NZL,en,4YC Southern Star/RNZ Parliament,,Dunedin/Highcliff (OTA),-45.884167,170.588333,,10,,18673,65,166,,0000-2400,1234567,,,48813,,, +900,NZL,en,The Coast,,Whangarei/Maungakaramea (NTL),-35.820833,174.245833,,2.5,,17965,33,169,,,,,,32500012,,, +905,UKR,,PA,b,Parutyne,46.6875,31.875,,0.025,,1927,98,92,,,,,L1055 ,85787,,, +905,RUS,,UD,b,Buturlino (NN),55.5625,44.958333,,0.025,,2525,66,98,,,,,U1018 ,85788,,, +905,RUS,,ZG,b,Zelenga (Astrakhan province),46.1875,48.625,,0.025,,3094,85,104,,,,,L1050 30.0s,IDx2,85789,, +905,BOL,,CP83 R Norte,,Montero (scz),-17.25,-63.25,,1.5,,10200,244,146,,0930-0200,1234567,,,36718,,, +905,INS,id,RPDKDT2 Sumbawa,,Sumbawa Besar (NB-sum),-8.5,117.433333,,0.25,,12181,78,160,,,,,,35400101,,, +906,RUS,,PE,b,Pechory (PS),57.8125,27.625,,0.025,,1487,56,88,,,,,U1025 15.0s,IDx2,85790,, +909,G,en,BBC R 5 Live,,Brookmans Park (EN-HTS),51.731944,-0.179722,,150,,454,267,40,,0000-2400,1234567,0,,627,,, +909,G,en,BBC R 5 Live,,Moorside Edge (EN-WYK),53.63525,-1.8945,,200,,582,290,40,,0000-2400,1234567,0,,628,,, +909,G,en,BBC R 5 Live,,Clevedon (EN-SOM),51.423667,-2.863944,,50,,642,267,46,,0000-2400,1234567,,,626,,, +909,G,en,BBC R 5 Live,,Westerglen (SC-STL),55.975556,-3.816111,,50,,793,307,48,,0000-2400,1234567,0,,625,,, +909,ROU,de,SRR R Bukarest,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0820-0830,......7,993,,634,,, +909,ROU,de,SRR R Bukarest,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,1200-1300,123456,993,,634,,, +909,ROU,hu,SRR Kolozsvri Rdi,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0600-0800,123456,993,,634,,, +909,ROU,hu,SRR Kolozsvri Rdi,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,1300-1600,1234567,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0355-0600,1234567,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0600-0820,......7,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0800-1200,.....6.,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0800-1200,12345..,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,0830-1300,......7,993,,634,,, +909,ROU,ro,SRR R Cluj,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,1600-2000,1234567,993,,634,,, +909,ROU,ro,SRR R Romnia Actualităţi,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,200,002 182,1381,108,48,,2000-0355,1234567,993,,634,,, +909,ROU,ro,SRR R Romnia Actualităţi,,Timişoara/Orţişoara (TM),45.967128,21.215467,,50,125,1274,117,53,,0000-2400,1234567,9987,,635,,, +909,G,en,BBC R 5 Live,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,10,,869,293,56,,0000-2400,1234567,,,624,,, +909,E,es,RNE R 5,,Palma/Marratx (BAL-ML),39.633539,2.669078,,10,,1417,193,61,,0000-2400,1234567,2,,616,,, +909,G,en,BBC R 5 Live,,Fareham (EN-HPS),50.849306,-1.226833,,1,,547,258,62,,0000-2400,1234567,,,621,,, +909,G,en,BBC R 5 Live,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0000-2400,1234567,,,623,,, +909,G,en,BBC R 5 Live,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0000-2400,1234567,,,620,,, +909,G,en,BBC R 5 Live,,Whitehaven (EN-CUM),54.539583,-3.586472,,1,,716,296,64,,0000-2400,1234567,,,622,,, +909,ROU,ro,SRR R Constanţa,,Constanţa/Valu lui Traian (CT),44.169306,28.540178,,14,,1854,110,64,,0236-2208,1234567,,,1897,,, +909,G,en,BBC R 5 Live,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,1,,963,295,67,,0000-2400,1234567,0,,619,,, +909,G,en,BBC R 5 Live,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.25,,596,258,69,,0000-2400,1234567,,,618,,, +909,D,de,biteXpress,D,Dillberg (bay),49.323611,11.380556,,0.1,,467,130,72,,0000-2400,1234567,,,2000012,,, +909,GRC,el,Studio 1 Aggelos,,Athnai/Votanikos (att-ath),37.995833,23.659722,,1,,2063,133,78,,0000-2400,1234567,29,,3400030,,, +909,ALG,ar,Chane 1,,Tamanrasset (11),22.802778,5.539722,,10,,3260,182,80,,0000-2400,1234567,,,615,,, +909,YEM,ar,YGCRT Yemen R,,Al-Hudaydah (hud),14.826778,43.1363,,750,160,5263,128,81,,1500-2300,1234567,,,636,,, +909,IRQ,ar,Republic of Iraq R,,Al-Baṣrah (bsr),30.473833,47.795111,,25,,4128,109,84,,,,,,10500001,,, +909,G,en,BBC R 5 Live,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-2400,1234567,,,617,,, +909,IRN,fa,IRIB R Iran,,Lar (frs),27.65325,54.294389,,50,,4784,106,88,,0000-2400,1234567,,,1791,,, +909,NIG,,FRCN Abuja,,Gwagwalada (fct),8.931139,7.073175,,50,,4802,179,88,,0430-2300,1234567,,,2420,,, +909,AFG,,R Kunduz,,Kunduz=Qonduz (kdz),36.733333,68.866667,,10,,5071,84,98,,,,,,11000007,,, +909,AFG,,R Afghanistan,,Kabul (kab),34.516667,69.2,,10,,5256,86,100,,0100-1830,1234567,,,46807,,, +909,CHN,,Xinjiang RGD,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,10,,5377,67,101,,2330-1800,1234567,,,36200028,,, +909,CHN,,Xinjiang RGD,,Hoboksar/XJTS8116 (XJ),46.783333,85.716667,,10,,5473,63,102,,2330-1800,1234567,,,36200729,,, +909,SSD,,Southern Sudan R,,Malakal (unl),9.530017,31.663006,,5,,5257,145,103,,,,,,47143,,, +909,IND,,AIR North,,Gorakhpur (UP),26.876389,83.465,,100,,6822,82,105,,0020-1740,1234567,,,48832,,, +909,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.313889,32.622556,,20,,6257,148,107,,0300-2105,1234567,,,2421,,, +909,CHN,,Xinjiang RGD,,Zhaosu/SARFT8113 (XJ),43.148333,81.119444,,1,,5433,69,111,,2300-1800,1234567,,,48826,,, +909,BOT,SHO,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,SAf,1700-1730,1234567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,SAf,0300-0700,1234567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,SAf,1600-1700,1234567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,SAf,1800-2100,1234567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,ZWE,1720-1740,....567,9997,,2360,,, +909,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955833,27.594444,,600,,8489,160,114,ZWE,1730-1800,1234...,9997,,2360,,, +909,CHN,,Qinghai RGD,,Xining (QH),36.583333,101.833333,,10,,7220,62,119,,0925-1505,1234567,,,48829,,, +909,CHN,,Qinghai RGD,,Xining (QH),36.583333,101.833333,,10,,7220,62,119,,2220-0600,1234567,,,48829,,, +909,CHN,,Tianjin Xinwen Guangbo,,Yangliuqing (TJ),39.139406,117.026567,,50,,7862,50,119,,2155-1800,1234567,,,48827,,, +909,CHN,,CNR 6 Shenzhou zhi Sheng,,Quanzhou/SARFT641 (FJ),24.894206,118.809083,,300,120,9242,58,120,,2155-1605,1234567,,,48825,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Hongyuan/SCTS537 (SC),32.788625,102.550411,,10,,7578,64,123,,,,,,36200730,,, +909,CHN,,Yichun RGD,,Yichun (HL),47.777222,128.843611,,7.5,,7640,37,125,,,,,,48830,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Zigong/SCTS507 (SC),29.45,104.666667,,10,,7991,65,127,,2155-1605,1234567,,,48831,,, +909,CHN,,Tonghua RGD News,,Tonghua (JL),41.683333,125.75,,10,,8066,43,128,,,,,,48828,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Wanzhou (CQ),30.808333,108.366667,,10,,8100,62,128,,,,,,36200726,,, +909,THA,,Sor. Wor. Thor. (R Thailand),,Surin (sur),14.95,103.533333,,25,,9177,75,130,,2200-1600,1234567,,,48846,,, +909,KOR,,HLQY KBS 1 R,,Gumi (gsb),36.117778,128.354167,,10,,8707,44,133,,0000-2400,1234567,,,48838,,, +909,THA,,Sor. Wor. Thor. (R Thailand),,Loei (loe),17.466667,101.716667,,10,,8837,75,133,,,,,,52405,,, +909,J,ja,JOCB NHK2,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,10,,9194,39,134,,2030-1500,1.....7,0,,48837,,, +909,J,ja,JOCB NHK2,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,10,,9194,39,134,,2030-1635,.2345..,0,,48837,,, +909,J,ja,JOCB NHK2,,Nagoya/Yatomi-Shi (chu-aic),35.040556,136.781944,,10,,9194,39,134,,2030-1640,.....6.,0,,48837,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Guangyuan (SC),32.433333,105.816667,,1,,7807,62,135,,,,,,36200731,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Maoxian/SCTS545 (SC),31,103.4,,1,,7781,65,135,,,,,,36200727,,, +909,J,,JOVX STV, Sapporo TV Hoso,,Abashiri (hok),44,144.25,,5,,8590,30,135,,0000-2400,1234567,,,48835,, +909,TWN,,Fu Hsing Kuangpo Tientai 1,,Taipei (TPS),25.089572,121.512272,,10,,9378,56,135,,0000-2400,1234567,,,48849,,, +909,CHN,zh,Sichuan RGD Xinwen Guangbo,,Leshan/SCTS525 (SC),29.616667,103.666667,,1,,7915,66,136,,,,,,36200728,,, +909,PHL,,DZEA-AM Radyo Totoo,,Laoag City/Nalbo (iln),18.188611,120.578056,,5,,9960,60,140,,2100-1400,1234567,,,48843,,, +909,PHL,,DYSP-AM Super Radyo,,Puerto Princesa (plw),9.770556,118.753056,,5,,10621,66,142,,0000-2400,1234567,,,48844,,, +909,PHL,,DYLA-AM,,Cebu City/Mambaling (ceb),10.2829,123.873556,,5,,10888,62,143,,????-1600,1234567,,,48842,,, +909,INS,id,RRI Pro-1,,Sorong (PB-srg),-0.823778,131.233056,,5,,12368,62,148,,2100-1530,1234567,,,48834,,, +909,J,,STV, Sapporo TV Hoso,,Engaru (hok),44.066667,143.516667,,0.1,,8558,30,152,,0000-2400,1234567,,,48836,, +909,INS,id,RBS-R Blora Sakti,,Blora (JT-blo),-7.153217,111.580289,,1,,11668,82,153,,,,91,,35400002,,, +909,NZL,en,2XD Southern Star/RNZ Parliament,,Napier/Opapa (HKB),-39.797222,176.675,,5,045 225,18456,32,168,,0000-2400,1234567,,,48840,,, +910,UKR,,GE,b,Helmiaziv,49.8125,31.875,,0.025,,1792,88,91,,,,,U1014 ,IDx2 + 25 gap,85791,, +910,RUS,,M,b,Tver / Migalovo (TV),56.8125,35.708333,,0.025,,1948,63,92,,,,,,85794,,, +910,RUS,,K,b,Tver / Migalovo (TV),56.8125,35.791667,,0.025,,1953,63,93,,,,,U1044 ,85792,,, +910,RUS,,KZ,b,Millerovo (RO),48.9375,40.291667,,0.025,,2399,85,97,,,,,U1040 ,IDx2+4gap,85793,, +910,RUS,,UJ,b,Millerovo (RO),48.9375,40.291667,,0.025,,2399,85,97,,,,15,L1020 U1050 ,IDx2+5gap,85795,, +910,USA,en,WAEI,,Bangor (D) (ME),44.780833,-68.747778,,5,,5351,293,104,,,,,,20012548,,, +910,USA,en,WAEI,,Bangor (N) (ME),44.780833,-68.748333,,5,,5351,293,104,,,,996,,40628,,, +910,USA,,WFDF,,Farmington Hills (MI),42.065833,-83.394167,,25,,6446,299,108,,,,11,,41367,,, +910,USA,es,WLAT,,New Britain (CT),41.716111,-72.810556,,5,,5821,292,108,,,,,,42126,,, +910,CAN,en,CKDQ,,Drumheller (AB),51.040833,-113.293056,,50,,7230,323,112,,,,9972,,36295,,, +910,USA,en,WLTP,,Marietta (D) (OH),39.363333,-81.502778,,5,,6540,295,115,,1200-2400,1234567,,,20012522,,, +910,CUB,es,R Metropolitana,,Villa Mara (ch),23.1,-82.283333,,75,,7915,284,117,,,,,,36456,,, +910,USA,,WRKL,,New City (NY),41.181111,-74.048056,,0.8,,5938,292,117,,,,,,42868,,, +910,USA,,KCJB,,Minot (ND),48.2025,-101.348333,,5,,6937,314,119,,,,,,38161,,, +910,USA,,WRNL,,Richmond (VA),37.613889,-77.514722,,1.5,,6425,291,119,,,,,,42890,,, +910,USA,,WSBA,,York (PA),39.999167,-76.745278,,1,,6195,293,119,,,,,,42954,,, +910,ALS,,KIYU,,Galena (AK),64.688333,-156.724722,,5,,6947,352,120,,0000-2400,1234567,,,38653,,, +910,VEN,,YVRQ R Q 910,,Maiquetia (vgs),10.6,-66.95,,50,,7946,263,120,,0000-2400,1234567,989,,45447,,, +910,CUB,es,R Cadena Agramonte,,Camagey/CTOM1 (cm),21.362211,-77.958222,,25,,7773,279,121,,,,1,,31600001,,, +910,USA,,WBZU,,Scranton (PA),41.409444,-75.666944,,0.44,,6023,294,121,,,,,,41482,,, +910,USA,,WSUI,,Iowa City (IA),41.523889,-91.503056,,4,,6963,303,121,,,,10,,43082,,, +910,PTR,,WPRP,,Ponce (PR),17.990833,-66.63,,4.4,,7287,268,123,,0000-2400,1234567,,,42731,,, +910,USA,en,WRFV,,Valdosta (GA),30.8725,-83.343333,,5,,7335,290,123,,,,,,41458,,, +910,DOM,,HILB R 91 La Grande,,Bonao (mnl),18.916667,-70.416667,,5,,7467,272,125,,0930-0300,1234567,94,,1970,,, +910,USA,,WJCW,,Johnson City (TN),36.410278,-82.453611,,1,,6831,294,125,,,,,,41857,,, +910,USA,,WTWD,,Plant City (FL),27.990556,-82.208611,,5,,7500,287,125,,,,,,43236,,, +910,B,pt,ZYH645 Rdio Caiara,,Sobral/Fazenda Cisne (CE),-3.700783,-40.316933,,4,,7599,231,127,,,,,,36901578,,, +910,USA,,WOLI,,Spartanburg (SC),35.019444,-82.01,,0.89,,6914,292,127,,,,,,43048,,, +910,CLM,es,HJMY R Insular,,San Andrs (sap),12.567689,-81.707767,,30,,8780,276,128,,,,,,37577,,, +910,USA,,KJJQ,,Volga (SD),44.250278,-96.956111,,0.5,,7041,309,130,,,,,,38674,,, +910,USA,,WTMZ,,Dorchester Terr.-Bre (SC),32.871944,-79.976111,,0.5,,6956,289,130,,,,,,43181,,, +910,CLM,es,HJDO,,Medelln (ant),6.296531,-75.601939,,15,,8910,268,132,,,,,,37395,,, +910,USA,,KVIS,,Miami (OK),36.890833,-94.783333,,1,,7535,302,132,,,,,,39629,,, +910,USA,,WALT,,Meridian (MS),32.393611,-88.668889,,1,,7546,295,132,,,,9953,,40700,,, +910,USA,,WAVL,,Apollo (PA),40.583611,-79.526111,,0.069,,6324,295,132,,,,,,40774,,, +910,USA,,WDOR,,Sturgeon Bay (WI),44.827222,-87.3575,,0.102,,6466,304,132,,,,,,41197,,, +910,USA,en,KMTT r:KNRK-HD2,,Vancouver (WA),45.558333,-122.4825,,4.3,,8110,325,132,,,,,,39107,,, +910,CLM,es,HJS52,,Florencia (caq),1.616667,-75.616667,,15,,9322,265,133,,,,,,35901435,,, +910,USA,,WFJX,,Roanoke (VA),37.268333,-79.912778,,0.084,,6604,293,134,,,,,,43445,,, +910,USA,,WHSM,,Hayward (WI),45.985278,-91.539722,,0.075,,6609,307,134,,,,,,41687,,, +910,B,pt,ZYI785 Rdio Liberdade AM,,Caruaru (PE),-8.234333,-35.975394,,1,,7825,225,135,,,,,,36901570,,, +910,USA,,KPOF,,Denver (CO),39.846389,-105.033056,,1,,7843,311,135,,,,0,,39153,,, +910,B,pt,ZYI935 Rdio CBN,,Teresina (PI),-5.084722,-42.75,,1,,7864,233,136,,,,,,36901571,,, +910,CUB,es,R Reloj,,Bolondrn (ma),22.785586,-81.475728,,1,,7888,283,136,,,,,,31600134,,, +910,HTI,,4VAN,,Kenscoff (oue),18.45,-72.283333,,0.5,,7634,273,136,,,,,,35629,,, +910,HTI,,R Kiskeya,,Port-au-Prince (oue),18.516667,-72.316667,,0.5,,7631,273,136,,,,,,52110,,, +910,HTI,,R Neg Combit,,Port-au-Prince (oue),18.516667,-72.316667,,0.5,,7631,273,136,,,,,,52111,,, +910,USA,,KGME,i,Phoenix (AZ),33.533333,-112.121667,,5,,8780,312,136,,,,3,,38492,,, +910,USA,,KRIO,,McAllen (TX),26.297778,-98.207222,,5,,8655,297,136,,,,,,39249,,, +910,USA,,WSFE,,Burnside (KY),37.029444,-84.606389,,0.115,,6915,296,136,,,,,,41995,,, +910,USA,en,KKSF,,Oakland (CA),37.895833,-122.323611,,5,,8845,321,136,,,,19,,38986,,, +910,USA,en,WLTP,,Marietta (N) (OH),39.289722,-81.526667,,0.04,,6547,295,136,,0000-1200,1234567,,,42246,,, +910,CTR,,TIQM BBN 910 AM,,San Jos (sjs),9.966667,-84.066667,,5,,9167,277,137,,0000-2400,1234567,,,52147,,, +910,NCG,,R Jinotega,,Jinotega (jtg),13.1,-86,,5,,9024,280,137,,,,,,52202,,, +910,USA,,KECR,,El Cajon (D) (CA),32.895556,-116.925556,,5,,9079,315,137,,,,,,20012571,,, +910,USA,,KECR,,El Cajon (N) (CA),32.895,-116.925278,,5,,9079,315,137,,,,,,38312,,, +910,USA,en,WPYT547,,Rochester (NY),43.156667,-77.6575,,0.01,,6018,296,137,,,,,,20010588,,, +910,ARG,es,LR5 La Red AM,,Buenos Aires (df),-34.761194,-58.505889,,25,,11526,230,138,,0000-2400,1234567,992,,39926,,, +910,B,pt,ZYH763 Rdio Paranaba,,Itumbiara/Rua Morumbi 23 (GO),-18.421339,-49.233867,,5,,9501,232,138,,,,,,36901582,,, +910,USA,,KWDZ,,Salt Lake City (UT),40.513333,-112.006389,,1,,8130,316,138,,,,,,39699,,, +910,USA,,WGTO,,Cassopolis (MI),41.953889,-86.016389,,0.035,,6611,300,138,,,,,,41576,,, +910,USA,,WEPG,,South Pittsburg (TN),35.015833,-85.7,,0.095,,7145,295,139,,,,,,41316,,, +910,USA,,WMRB,,Columbia (TN),35.606667,-87.025,,0.101,,7179,296,139,,,,,,42381,,, +910,GTM,,TGKL R Emperador,,Ciudad de Guatemala (gut),14.166667,-90.5,,2.5,,9231,284,140,,1130-0600,1234567,,,40503,,, +910,HND,,HRVS,,Tegucigalpa (fmz),14.066667,-87.216667,,2.5,,9022,282,140,,,,,,37867,,, +910,MEX,es,XEOL-AM R Impacto,,Teziutln (pue),19.810372,-97.384903,,2.5,,9179,293,140,,,,,,44494,,, +910,USA,,KATH,,Frisco (TX),33.215278,-96.899167,,0.5,,7972,301,140,,,,,,39783,,, +910,USA,,WAKO,,Lawrenceville (IL),38.723056,-87.653611,,0.05,,6964,299,140,,,,,,40688,,, +910,CLM,es,HJTT Ondas Porvenir,,Samac (boy),5.483333,-73.483333,,1,,8837,265,143,,,,96,,1971,,, +910,USA,,WZMG,,Pepperell (AL),32.657222,-85.424167,,0.056,,7321,293,143,,,,,,43578,,, +910,USA,en,WPKI987,,Durham (NC),36.016806,-78.908611,,0.01,,6638,291,143,,,,,,20010587,,, +910,MEX,es,XEACM-AM R xitos,,Cardenas (tab),17.98755,-93.202347,,1,,9073,289,144,,,,,,43695,,, +910,MEX,es,XEAO-AM R Mexicana,,Mexicali (bcn),32.643822,-115.506411,,1,,9033,314,144,,,,105,,43720,,, +910,USA,,KBIM,,Roswell (NM),33.440556,-104.526389,,0.5,,8386,306,144,,,,,,38035,,, +910,USA,,KBLG,,Billings (MT),45.753611,-108.516111,,0.064,,7492,317,144,,,,,,38054,,, +910,USA,,KOXR,,Oxnard (CA),34.282778,-119.126667,,1,,9051,317,144,,,,,,39119,,, +910,EQA,,HCRB1,,Quito (pic),-0.183333,-78.5,,1.2,,9676,266,145,,,,,,37070,,, +910,ARG,es,LRA23 R Nacional,,San Juan (sj),-31.507072,-68.612689,,5,,11796,239,146,,0855-0400,1234567,,,39943,,, +910,MEX,es,XENAY-AM La Poderosa,,Bucerias (nay),20.753383,-105.266364,,1,,9577,299,146,,,,,,44439,,, +910,EQA,,HCBO2,,Espectaculo (gua),-2.2,-79.783333,,1,,9941,266,147,,,,,,36866,,, +910,USA,,KRAK,,Hesperia (CA),34.388611,-117.391389,,0.5,,8959,316,147,,,,,,39218,,, +910,B,pt,ZYN206 Rdio Globo,,Juiz de Fora (MG),-21.754361,-43.325989,,0.5,,9522,225,148,,,,,,36901576,,, +910,USA,,KINA,,Salina (KS),38.764444,-97.541667,,0.029,,7533,305,148,,,,,,38616,,, +910,USA,,KNAF,,Fredericksburg (TX),30.286667,-98.882778,,0.174,,8344,300,148,,,,,,38959,,, +910,USA,en,WUBR,,Baton Rouge (LA),30.635278,-91.165556,,0.051,,7848,295,148,,,,,,42449,,, +910,B,pt,ZYK536 Rdio Globo,,Piracicaba (SP),-22.710178,-47.701097,,0.5,,9833,228,149,,,,,,36901574,,, +910,EQA,es,HCGR5 R Mundial,,Riobamba (chi),-1.216667,-78.65,,0.5,,9777,265,149,,,,,,36959,,, +910,B,pt,ZYL292 Rdio Tefilo Otoni,,Tefilo Otoni (MG),-17.843578,-41.517764,,0.25,,9049,226,150,,,,,,36901575,,, +910,B,pt,ZYH804 Rdio Cidade de Jaragu,,Jaragu/Fazenda Rio Vermelho (GO),-15.783958,-49.319403,,0.25,,9253,233,151,,,,,,36901572,,, +910,B,pt,ZYL346 R.Difusora Industrial de Nova Ser,,Nova Serrana (MG),-19.879828,-44.930222,,0.25,,9418,228,151,,,,,,36901580,,, +910,B,pt,ZYK320 RVA-Rdio Venncio Aires,,Venncio Aires (RS),-29.599722,-52.184722,,0.5,,10720,228,152,,,,,,36901577,,, +910,B,pt,ZYK763 Rdio Princesa Monte Azul,,Monte Azul Paulista (SP),-20.912136,-48.648211,,0.25,,9709,230,152,,,,,,36901579,,, +910,B,pt,ZYJ207 Nova AM,,Apucarana (PR),-23.523611,-51.450556,,0.25,,10106,231,153,,,,,,36901581,,, +910,B,pt,ZYJ824 Rdio Rainha das Quedas,,Abelardo Luz (SC),-26.598333,-52.342778,,0.25,,10444,230,154,,,,,,36901583,,, +910,B,pt,ZYJ811 Rdio Difusora de Iara,,Iara (SC),-28.698611,-49.311944,,0.25,,10489,227,155,,,,,,36901573,,, +910,CHL,es,CC91 RTL-R Tropical Latina,,Talca (ML),-35.4694,-71.738586,,1,,12321,239,155,,,,,,36800024,,, +910,MEX,es,XEACN-AM R FrmulaBajo,,Len (gua),21.137431,-101.623344,,0.1,,9323,297,155,,,,,,43696,,, +910,USA,,KURY,,Brookings (OR),42.042778,-124.243611,,0.037,,8520,325,156,,,,,,39595,,, +914,RUS,,SX,b,Moskva/Vnukovo (MV),55.604167,37.291667,,0.025,,2044,67,93,,,,,L986 ,86795,,, +915,RUS,,UF,b,Koshki (SA),54.229167,50.458333,,0.025,,2898,68,102,,,,,U393 ,IDx3,85796,, +917,NIG,,R Gotel Yola,,Jabura/Modire (adw),9.3057,12.473378,,50,,4791,171,88,,0500-2305,1234567,3,,6200001,,, +918,SVN,de,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,2135-2140,1234567,9978,,643,,, +918,SVN,en,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,2130-2135,1234567,9978,,643,,, +918,SVN,sl,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,0000-2130,1.34567,9978,,643,,, +918,SVN,sl,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,0300-2130,.2.....,9978,,643,,, +918,SVN,sl,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,2140-2300,1......,9978,,643,,, +918,SVN,sl,R Slovenija 1,,Ljubljana/Domale (Radio Cesta) (lj),46.127139,14.586444,,300,,891,135,41,,2140-2400,0.234567,9978,,643,,, +918,E,es,R Intereconoma,,Madrid/Pozuelo (Ctra. Humera) (MAD-M),40.444483,-3.777936,,50,,1512,215,55,,0000-2400,1234567,13,,638,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0310-0400,12345..,0,,642,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0610-0700,.....67,0,,642,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0810-0900,.....67,0,,642,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0910-1000,12345..,0,,642,,, +918,RUS,ru,GTRK Pomorye,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,1410-1500,12345..,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0200-0310,12345..,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0200-0610,.....67,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0400-0910,12345..,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0700-0810,.....67,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,0900-2200,.....67,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,1000-1410,12345..,0,,642,,, +918,RUS,ru,R Rossii,,Arkhangelsk/Koskovo (AR),64.359944,41.384444,,150,,2411,42,59,,1500-2200,12345..,0,,642,,, +918,RUS,ru,R Mayak,,Makhachkala (DA),42.970839,47.341183,,50,,3187,92,72,,0300-2200,1234567,,,641,,, +918,EGY,ar,ERTU Al-Barnameg al-Aam,,Bawiti=Al Bawiti (gzh),28.338528,28.931722,,10,,3234,136,79,,0000-2400,1234567,,,1830,,, +918,ETH,,Dimtsi Weghata,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,,,,,9600022,,, +918,IRN,fa,IRIB R Kerman,,Jiroft (krm),28.618611,57.793333,,50,,4937,101,89,,0000-2400,1234567,,,639,,, +918,NIG,,R Benue,,Makurdi (bnu),7.700878,8.544389,,50,,4942,177,89,,0430-2305,1234567,,,2424,,, +918,IND,,AIR North,,Suratgarh (RJ),29.301667,73.912222,,300,,5978,87,92,,0025-0350,123456,,,48860,,, +918,IND,,AIR North,,Suratgarh (RJ),29.301667,73.912222,,300,,5978,87,92,,0025-0445,......7,,,48860,,, +918,IND,,AIR North,,Suratgarh (RJ),29.301667,73.912222,,300,,5978,87,92,,0700-0940,1234567,,,48860,,, +918,IND,,AIR North,,Suratgarh (RJ),29.301667,73.912222,,300,,5978,87,92,,1200-1740,1234567,,,48860,,, +918,ETH,,ERTA Ethiopia National R,,unknown,10.5,40.5,,1,,5550,134,113,,0300-0600,1234567,,,9600003,,, +918,ETH,,ERTA Ethiopia National R,,unknown,10.5,40.5,,1,,5550,134,113,,0800-2100,1234567,,,9600003,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Jinan (SD),36.700278,117.089444,,200,,8081,52,115,,2125-1700,1234567,996,,36200027,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Yiyuan (SD),36.228778,117.998556,,25,,8172,51,125,,2125-1700,1234567,,,36201236,,, +918,KOR,ko,KBS 1 R,,Yeoncheon (gye),38.020556,127.065278,,50,,8467,44,125,,0000-2400,1234567,,,48877,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,2125-1700,1234567,,,36200176,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Tai'an/SDTS616 (SD),36.199722,117.100833,,10,,8126,52,128,,2125-1700,1234567,,,36200180,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Yantai (SD),37.5675,121.360556,,10,,8227,48,129,,2125-1700,1234567,,,48859,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2125-1700,1234567,,,36200179,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Zaozhuang (SD),34.841667,117.578222,,10,,8273,53,130,,2125-1700,1234567,,,36201237,,, +918,PHL,,DZSR-AM PBS Sports R,,Marulas (ncr),14.678611,120.976633,,50,,10307,62,131,,2100-1500,1234567,,,48879,,, +918,CHN,,CNR 2,,several locations,34.95,104.5,,1,,7515,61,132,,2058-1602,1234567,,,48857,,, +918,THA,th,Sor. Wor. Phor.,,Chiang Mai (cmi),18.951667,98.970833,,10,,8527,76,132,,????-1605,1234567,,,48885,,, +918,THA,th,Sor. Wor. Thor. (R Thailand),,Nakhon Pathom (npt),13.788889,100.325556,,10,,9065,78,134,,0000-2400,1234567,,,48884,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Dezhou (SD),37.4575,116.313333,,1,,7973,52,137,,2125-1700,1234567,,,36200175,,, +918,J,ja,JOEF YBC Yamagata Hoso,,Yamagata (toh-yam),38.243333,140.288056,,5,,9021,35,137,,0000-2400,1234567,,,48875,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Binzhou (SD),37.366667,118.016667,,1,,8071,51,138,,2125-1700,1234567,,,36200174,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,2125-1700,1234567,,,36200177,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Shanxian (SD),34.8,116.083333,,1,,8195,54,139,,2125-1700,1234567,,,36200725,,, +918,CHN,zh,Shandong RGD Xinwen Pindao,,Laiwu (SD),35.078333,118.328333,,1,,8293,52,140,,2125-1700,1234567,,,36200178,,, +918,J,,JOPM KRY Yamaguchi Hoso,,Shimonoseki (chu-yam),33.967222,130.936667,,1,,9034,44,144,,0000-2400,1234567,,,48874,,, +918,J,,JOPN KRY, Yamaguchi Hoso,,Iwakuni (chg-yam),34.133333,132.216667,,1,,9078,43,144,,0000-2400,1234567,,,48873,, +918,J,ja,YBC Yamagata Hoso,,Shinjo (toh-yam),38.783333,140.316667,,1,,8969,35,144,,,,,,31400064,,, +918,J,ja,YBC Yamagata Hoso,,Tsuruoka,38.733333,139.866667,,1,,8956,35,144,,,,,,31400066,,, +918,J,ja,YBC Yamagata Hoso,,Yonezawa (toh-yam),37.9,140.1,,1,,9048,35,144,,,,,,31400065,,, +918,J,ja,YBC Yamagata Hoso,,Sakata (toh-yam),38.916667,139.833333,,0.5,,8937,35,146,,,,,,31400063,,, +918,INS,id,R Mustaqbal,,Bekasi/Pebayuran (JB-kbk),-6.2125,107.283333,,1,,11294,85,151,,????-1415,1234567,,,35400131,,, +918,INS,id,RSS-R.Suara Selomanik,,Banjarnegara (JT-bng),-7.383333,109.683333,,1,,11560,84,152,,,,,,48862,,, +918,J,ja,YBC Yamagata Hoso,,Oguni (toh-yam),38.066667,139.75,,0.1,,9018,35,154,,,,,,31400062,,, +918,AUS,,6NA R West,,Narrogin (WA),-32.961111,117.216667,,2,,14207,97,158,,0000-2400,1234567,,,48855,,, +918,AUS,,4VL,,Charleville (QLD),-26.396694,146.221569,,2,,15618,65,163,,0000-2400,1234567,,,48853,,, +918,AUS,,2XL,,Cooma/Polo Flat (NSW),-36.238056,149.15055,,2,,16613,74,166,,0000-2400,1234567,,,48854,,, +918,NZL,en,RNZ National,,New Plymouth/Bell Block (TKI),-39.033111,174.131556,,2.5,,18280,38,170,,0000-2400,1234567,,,32500011,,, +918,NZL,en,RNZ National,,Timaru/Fairview (CAN),-44.402778,171.144444,,2.5,,18601,59,171,,0000-2400,1234567,,,48878,,, +920,BLR,,G,b,Grodno / Obukhovo (HR),53.604167,24.041667,,0.025,,1192,75,85,,,,1,L1008 U1011 ,ID+6 gap,85797,, +920,RUS,,GW,b,Primorsko Ahtarsk (KD),46.0625,38.208333,,0.025,,2390,94,97,,,,,,85798,,, +920,RUS,,HZ,b,Primorsko Ahtarsk (KD),46.0625,38.208333,,0.025,,2390,94,97,,,,,U1005 15.0s,IDx2,85799,, +920,USA,en,WHJJ,i,Providence (RI),41.781389,-71.331944,,5,,5722,291,107,,,,9966,,41649,,, +920,CAN,en,CFRY,,Portage La Prairie (MB),49.969444,-98.375556,,15,,6646,314,112,,,,997,,36009,,, +920,VEN,,YVQX R Nueva Esparta,,Porlamar (nes),10.939125,-63.924467,,50,,7711,261,117,,0800-0400,1234567,3,,45437,,, +920,USA,,WCHR,,Trenton (NJ),40.255278,-74.862222,,1,,6057,292,118,,,,,,42689,,, +920,USA,en,KDHL,,Faribault (MN),44.263056,-93.274722,,5,,6841,307,118,,,,0,,38259,,, +920,CAN,,CKNX,,Wingham (ON),43.843056,-81.347778,,1,,6190,299,119,,,,999,,36352,,, +920,USA,,WYBY,,Cortland (NY),42.556111,-76.155,,0.5,,5969,295,120,,,,,,42067,,, +920,USA,es,WURA,,Quantico (VA),38.568056,-77.338889,,0.97,,6341,292,121,,,,9955,,20000067,,, +920,USA,,WKVA,,Lewistown (PA),40.579167,-77.571667,,0.5,,6203,294,122,,,,,,42084,,, +920,ALS,,KSRM,,Soldotna (AK),60.513611,-151.188611,,5,,7334,348,123,,0000-2400,1234567,991,,39411,,, +920,USA,,WOKY,,Milwaukee (WI),42.975556,-88.065556,,1,,6650,302,124,,,,,,42590,,, +920,USA,en,WDMC,,Melbourne (D) (FL),28.136389,-80.688889,,5,,7389,286,124,,,,9935,,42301,,, +920,USA,,KWAD,,Wadena (D) (MN),46.370278,-95.153611,,1,,6772,309,125,,,,,,20012585,,, +920,USA,,KWAD,,Wadena (N) (MN),46.370278,-95.153889,,1,,6772,309,125,,,,,,39682,,, +920,USA,,WBAA,,West Lafayette (IN),40.341389,-86.883611,,1,,6789,300,125,,,,,,40794,,, +920,USA,,WIRD,,Lake Placid (NY),44.26,-74.022778,,0.087,,5715,295,125,,,,,,41798,,, +920,USA,,KARN,,Little Rock (AR),34.772222,-92.245833,,5,,7564,299,126,,,,,,37965,,, +920,USA,,KYFR,,Shenandoah (IA),40.622778,-95.245,,2.5,,7248,305,126,,,,9991,,39848,,, +920,USA,,WMNI,,Columbus (OH),39.892222,-83.0475,,0.5,,6593,297,126,,,,,,42359,,, +920,USA,,WYMB,,Manning (SC),33.69,-80.273056,,1,,6910,290,126,,,,,,43528,,, +920,USA,,WGHQ,,Kingston (NY),41.885833,-73.970833,,0.078,,5881,293,127,,,,,,41516,,, +920,USA,,WMPL,,Hancock (MI),47.101389,-88.590556,,0.206,,6360,306,127,,,,,,42375,,, +920,USA,en,KXLY,,Spokane (WA),47.608611,-117.373611,,5,,7712,323,127,,,,2,,39804,,, +920,USA,en,WMMN,,Fairmont (WV),39.4675,-80.205556,,0.2,,6451,295,128,,,,,,42353,,, +920,VEN,,YVQU R San Carlos,,San Carlos (cjd),9.666667,-68.666667,,10,,8143,264,128,,0955-0400,1234567,999,,51674,,, +920,PRG,es,ZP1 R Nacional de Paraguay,,Asuncin/Capiat (asu),-25.404742,-57.459836,,100,,10609,235,129,,0000-2400,1234567,997,,45504,,, +920,USA,en,WMOK,,Metropolis (D) (IL),37.153333,-88.709167,,1,,7155,298,129,,1300-0100,1234567,,,42367,,, +920,USA,en,WMOK,,Metropolis (N) (IL),37.148889,-88.636111,,0.75,,7151,298,130,,0100-1300,1234567,,,20012521,,, +920,CAN,xx,CBQI,,Fort Norman (NT),64.908333,-125.541111,,0.099,,6369,338,131,,,,,,20109124,,, +920,CLM,es,HJJN Ondas del Mayo,,Pasto (nar),1.616667,-77.116667,,25,,9424,266,131,,,,5,,37511,,, +920,USA,,WGNU,,Granite City (IL),38.759167,-90.05,,0.5,,7104,300,131,,,,,,41539,,, +920,USA,en,WDMC,,Melbourne (N) (FL),28.136944,-80.689722,,1,,7389,286,131,,,,,,20016298,,, +920,CLM,es,HJAA Emisora Fuentes,,Cartagena (bol),10.466667,-75.416667,,10,,8534,270,132,,,,55,,37323,,, +920,EQA,,HCAN1,,Tulcan (car),0.816667,-77.666667,,25,,9532,266,132,,,,,,36848,,, +920,USA,,WGKA,,Atlanta (GA),33.809722,-84.356389,,0.49,,7159,293,132,,,,,,41524,,, +920,B,pt,ZYI893 Rdio Educadora de Parnaba,,Parnaba (PI),-2.955894,-41.723725,,1,,7602,233,133,,,,,,36901589,,, +920,CLM,es,HJSJ,,Ibagu (tol),4.433333,-75.233333,,10,,9048,266,134,,,,,,35901439,,, +920,NCG,es,YNW R Mundial,,Managua (mng),12.162661,-86.229931,,10,,9122,280,134,,1100-0400,1234567,31,,45256,,, +920,USA,,WBOX,,Bogalusa (LA),30.841389,-89.835,,1,,7748,294,134,,,,,,40894,,, +920,CUB,es,R Progreso,,Piln (gr),19.900169,-77.361178,,1,,7856,278,136,,,,,,36616,,, +920,EQA,,HCAB1 Cadena Democracia,,Quito (pic),-0.351111,-78.539167,,10,,9694,266,136,,,,999,,36880,,, +920,USA,en,WPCM,,Burlington-Graham (NC),36.097222,-79.484167,,0.055,,6668,291,136,,,,,,42658,,, +920,B,pt,ZYI697 Rdio Cidade Verde,,Joo Pessoa (PB),-7.112028,-34.953889,,0.5,,7664,225,137,,,,,,36901592,,, +920,USA,,KVEL,,Vernal (UT),40.491667,-109.529167,,1,,8012,314,137,,,,,,39619,,, +920,B,pt,ZYH519 Rdio Novo Tempo,,Salvador/Ilha de Itaparica (BA),-12.973906,-38.625225,,2,,8426,225,138,,,,30,,36901586,,, +920,DOM,,HIBA R 9-20 AM-Stereo Power,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,0000-2400,1234567,,,37216,,, +920,B,pt,ZYJ494 Rdio Sociedade de Volta Redonda,,Volta Redonda (RJ),-22.473167,-44.059303,,5,,9628,226,139,,,,,,36901593,,, +920,USA,,KLMR,,Lamar (CO),38.114722,-102.621111,,0.5,,7868,308,139,,,,16,,38829,,, +920,USA,,KSHO,,Lebanon (OR),44.575,-122.920833,,1,,8222,325,139,,,,,,39355,,, +920,USA,,KYST,,Texas City (TX),29.4175,-94.936667,,1,,8184,297,139,,,,,,39872,,, +920,USA,,WTCW,,Whitesburg (KY),37.146111,-82.766944,,0.043,,6792,294,139,,,,,,43124,,, +920,USA,en,KVIN,,Ceres (N) (CA),37.631944,-120.751667,,2.5,,8802,320,139,,0300-1500,1234567,9995,,51940,,, +920,B,pt,ZYJ600 Rdio Currais Novos,,Currais Novos (RN),-6.261111,-36.509722,,0.25,,7655,227,140,,,,,,36901596,,, +920,USA,,KKLS,,Rapid City (SD),44.061944,-103.175556,,0.111,,7380,312,140,,,,,,38730,,, +920,USA,,WPTL,,Canton (NC),35.520833,-82.806667,,0.038,,6924,293,140,,,,,,42745,,, +920,GTM,,TGRS R Sur,,Escuintla (esl),14.3,-90.766667,,2,,9237,284,141,,,,,,40537,,, +920,USA,,WLIV,,Livingston (TN),36.374444,-85.305556,,0.038,,7011,295,141,,,,,,42175,,, +920,USA,en,WPDE847,,Romulus (MI),42.230583,-83.366333,,0.01,,6432,299,141,,,,,,20010589,,, +920,EQA,,HCRU3 Compania Rfonica Orense,,Machala (oro),-3.266667,-79.966667,,3,,10047,265,142,,,,,,37117,,, +920,MEX,es,XELCM-AM La Mexicana,,Ciudad Lzaro Crdenas (mic),18.0024,-102.243442,,2.5,,9644,296,142,,,,,,44296,,, +920,B,pt,ZYI895 Rdio Difusora de Picos,,Picos (PI),-7.066833,-41.467244,,0.25,,7988,231,143,,,,,,36901584,,, +920,CAN,en,CBWF,,Mackenzie (BC),55.331111,-123.095833,,0.04,,7198,331,143,,,,,,20109125,,, +920,USA,,KIHM,,Reno (NV),39.511389,-119.714167,,0.85,,8576,320,143,,,,9979,,38593,,, +920,CAN,en,CBKG,,Granisle (BC),54.881389,-126.201667,,0.04,,7342,332,144,,,,,,20109123,,, +920,HND,,HRZB,,San Pedro Sula (cor),15.516667,-88.016667,,1,,8949,283,144,,,,,,37887,,, +920,MEX,es,XEHQ-AM R Capital,,Hermosillo (son),29.054167,-110.911111,,1,,9133,308,144,,,,,,44135,,, +920,MEX,es,XERCA-AM Planeta,,Gmez Palacio (dur),25.581361,-103.480083,,1,,9033,301,144,,,,,,44786,,, +920,PNR,es,HOS56 R Mia de Los Santos,,Los Santos (lsn),7.939506,-80.418608,,1,,9096,272,144,,0000-2400,1234567,25,,37729,,, +920,USA,,KFLB,,Odessa (TX),31.820556,-102.428333,,0.5,,8413,304,144,,,,,,38401,,, +920,USA,,KPSI,,Palm Springs (CA),33.858056,-116.494167,,1,,8967,315,144,,,,,,39169,,, +920,USA,,WGOL,,Russellville (AL),34.513889,-87.715278,,0.04,,7311,296,144,,,,,,41546,,, +920,USA,,WHJD,,Hazlehurst (GA),31.854167,-82.566667,,0.035,,7205,290,144,,,,,,43327,,, +920,MEX,es,XELT-AM R Mara,,Guadalajara (jal),20.731567,-103.318717,,1,,9462,298,145,,,,,,44324,,, +920,MEX,es,XERE-AM La Comadre,,Salvatierra (gua),20.3,-100.816667,,1,,9349,296,145,,,,,,44663,,, +920,MEX,es,XEZAR-AM La Z,,Puebla (pue),19.10955,-98.222408,,1,,9294,293,145,,,,,,45122,,, +920,B,pt,ZYK348 Rdio Tramanda,,Tramanda (RS),-29.985,-50.190833,,2,,10656,227,146,,,,,,36901587,,, +920,MEX,es,XETEB-AM Voces,,Tenabo (cam),20.032222,-90.237536,,0.5,,8702,288,146,,,,,,44808,,, +920,USA,,KBAD,,Las Vegas (NV),36.190278,-115.176389,,0.5,,8683,315,146,,,,,,38000,,, +920,USA,en,KVIN,,Ceres (D) (CA),37.596944,-121.070833,,0.5,,8820,320,146,,1500-0300,1234567,324,,39627,,, +920,B,pt,ZYI207 Rdio Cultura,,Linhares (ES),-19.417414,-40.069761,,0.5,,9135,224,147,,,,,,36901590,,, +920,B,pt,ZYK775 Rdio Nacional Gospel,,Cotia/Rua Almerim 435 (SP),-23.607703,-46.823639,,1,,9875,227,147,,,,,,36901585,,, +920,USA,,KQBU,,El Paso (TX),31.735833,-106.373333,,0.36,,8641,307,147,,,,,,38067,,, +920,USA,,KVEC,,San Luis Obispo (CA),35.299444,-120.673333,,0.5,,9024,319,147,,,,,,39618,,, +920,B,pt,ZYL271 Rdio Cultura Rio Branco,,Visconde do Rio Branco (MG),-21.030206,-42.8363,,0.5,,9427,225,148,,,,,,36901591,,, +920,MEX,es,XECQ-AM,,Culiacn (sin),24.819072,-107.474594,,0.5,,9334,303,148,,,,,,43869,,, +920,MEX,es,XEMJ-AM La Fronteriza,,Piedras Negras (coa),28.690844,-100.522467,,0.25,,8581,301,148,,,,,,44384,,, +920,USA,,KWYS,,West Yellowstone (MT),44.648889,-111.097222,,0.038,,7710,318,148,,,,,,39775,,, +920,B,pt,ZYH476 Rdio Educadora Santana,,Caetit (BA),-14.056236,-42.485761,,0.25,,8725,228,149,,,,,,36901597,,, +920,BOL,,R Encuentro,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,1000-0200,1234567,99,,51977,,, +920,MEX,es,XEQD-AM 920 Noticias,,Chihuahua (chi),28.629844,-105.965764,,0.25,,8900,305,149,,,,,,44601,,, +920,USA,,KSVA,,Albuquerque (NM),35.132222,-106.621667,,0.13,,8347,309,149,,,,,,39434,,, +920,B,pt,ZYH788 Rdio Vale da Serra,,So Lus de Montes Belos (GO),-16.516228,-50.389097,,0.25,,9382,234,151,,,,,,36901594,,, +920,B,pt,ZYK584 Rdio Imperador AM,,Franca (SP),-20.564317,-47.392339,,0.25,,9610,229,152,,,,,,36901588,,, +920,B,pt,ZYK769 Rdio Bandeirantes,,Penpolis (SP),-21.402122,-50.070442,,0.25,,9831,231,152,,,,,,36901595,,, +920,USA,en,WQCF602,,Miami (FL),25.592389,-80.511006,,0.01,,7588,284,153,,,,,,20010590,,, +920,BOL,,R San Andrs de Topohoco,,Topohoco (lpz),-17.175,-68.452778,,0.3,,10517,248,154,,,,,,51976,,, +920,MEX,es,XEPNX-AM R Costa,,Santiago Pinotepa Nacional (oax),16.345986,-98.069019,,0.13,,9531,291,154,,,,,,44566,,, +920,USA,en,KGTK,,Olympia (WA),47.062222,-122.830278,,0.007,,7979,326,158,,,,,,38513,,, +920,CHL,,CD92 R 920,,Temuco (AR),-38.666667,-72.566667,,0.25,,12639,237,162,,,,,,35922,,, +925,RUS,,A,b,Lipetsk-2 (LI),52.645833,39.458333,,0.025,,2224,75,95,,,,,L1020 U925 5.0s,86796,,, +925,RUS,,B,b,Lipetsk-2 (LI),52.645833,39.458333,,0.025,,2224,75,95,,,,,,86797,,, +925,UKR,,ZW,b,Simferopol / Zavodskoe (KR),44.854167,34.041667,,0.025,,2174,101,95,,,,,,85800,,, +926,UKR,,U,b,Chuguyev,49.8125,36.625,,0.025,,2116,85,94,,,,,15.0s,IDx2 +11 gap,86798,, +927,TUR,tr,TRT 1 Radyo Bir,,Izmir/Torbali (ege-izm),38.24975,27.258139,,100,,2231,125,59,,0400-1600,1234567,994,,653,,, +927,ALG,ar,R Adrar,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,0800-1930,1234567,9995,,645,,, +927,ALG,ar,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2000-2030,1234567,9995,,645,,, +927,ALG,ar,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2100-2130,1234567,9995,,645,,, +927,ALG,ar,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2230-2300,1234567,9995,,645,,, +927,ALG,ar,R Coran,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2300-0200,1234567,9995,,645,,, +927,ALG,en,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2130-2200,1234567,9995,,645,,, +927,ALG,es,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,1930-2000,1234567,9995,,645,,, +927,ALG,es,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2200-2230,1234567,9995,,645,,, +927,ALG,fr,R Algrie Int.,,Timimoun (1),29.276111,0.248611,,10,,2589,194,73,,2030-2100,1234567,9995,,645,,, +927,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,0100-0200,1234567,43,,34200002,,, +927,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1300-1400,1234567,43,,34200002,,, +927,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1500-1600,1234567,43,,34200002,,, +927,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1800-1900,1234567,43,,34200002,,, +927,TJK,fa,NHK R Japan,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1630-1700,1234567,43,,34200002,,, +927,TJK,ru,NHK R Japan,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1600-1630,1234567,43,,34200002,,, +927,TJK,ur,NHK R Japan,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1700-1745,1234567,43,,34200002,,, +927,TJK,ur,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,300,,4943,82,82,,1400-1500,1234567,43,,34200002,,, +927,IRN,fa,IRIB R Lorestan,,Dorud (lrn),33.489822,49.124256,,10,,3973,104,87,,0000-2400,1234567,9996,,648,,, +927,ARS,ar,BSKSA Idha'atu-i Jeddah,,Al-Hofuf=Al-Hufuf (shy),25.273611,49.581944,,20,,4681,113,91,,0000-2400,1234567,9792,,47079,,, +927,PAK,,Azad Kashmir R,,Mirpur (ajk),33.107292,73.730272,,100,,5670,84,94,,1500-1830,1234567,0,,48970,,, +927,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Malindi (coa),-3.099514,40.107167,,100,,6908,141,106,,0200-2110,1234567,,,1965,,, +927,CHN,,rmqi RGD Health & Life,,rmqi/Hongguangshan (XJ),45.886389,87.602222,,1,,5648,63,113,,,,,,36200714,,, +927,IND,,AIR South,,Visakhapatnam A (AP),17.6825,83.160278,,100,,7567,89,113,,0030-0430,123456,,,48912,,, +927,IND,,AIR South,,Visakhapatnam A (AP),17.6825,83.160278,,100,,7567,89,113,,0030-0500,......7,,,48912,,, +927,IND,,AIR South,,Visakhapatnam A (AP),17.6825,83.160278,,100,,7567,89,113,,0545-0930,1234567,,,48912,,, +927,IND,,AIR South,,Visakhapatnam A (AP),17.6825,83.160278,,100,,7567,89,113,,1130-1805,1234567,,,48912,,, +927,CHN,,Guizhou RGD Xinwen Guangbo,,Kaili/GZTS706 (GZ),26.583333,107.983333,,200,,8444,65,118,,2150-1605,1234567,,,48898,,, +927,CHN,zh,Beijing Sport R,,Beijing/BJTS804 (BJ),39.953928,116.495494,,50,,7763,50,118,,2155-1600,1234567,,,48891,,, +927,CHN,,Liaoning RGD Xiangcun Tai,,Shenyang (LN),41.9,123.6,,50,,7945,44,120,,,,,,48904,,, +927,CHN,mn,Xilingol RGD Mongyol,,Xilinhot/NMTS680 (NM),43.970778,116.108611,,10,,7393,48,121,,,,,,48905,,, +927,KRE,ko,KCBS Chosun Jungang Pangsong,,Sariwon (hwb),38.479222,125.477583,,50,,8348,45,124,,2000-1800,1234567,,,48919,,, +927,CHN,,CNR 6 Shenzhou zhi Sheng,,Xiamen=Amoy/FJTS202 (FJ),24.488583,118.03575,,100,100,9234,58,125,,2155-1605,1234567,,,48890,,, +927,CHN,,Xingtai JGD,,Xingtai (HB),37.066667,114.516667,,13,,7910,53,125,,,,,,36200712,,, +927,CHN,,Jilin Shi RGD,,Jilin Shi (JL),43.801944,126.556389,,10,,7908,41,126,,,,,,48896,,, +927,KOR,,HLSU KBS 1 R,,Hadong (gsb),35.065556,127.753611,,50,,8777,45,126,,0000-2400,1234567,,,48921,,, +927,CHN,,Shangqiu RGD City Channel,,Shangqiu (HE),34.45,115.65,,10,,8202,54,129,,,,,,48902,,, +927,CHN,,Guizhou RGD Xinwen Guangbo,,Liuzhi/GZTS763 (GZ),26.216667,105.472222,,10,,8320,67,130,,,,,,36200717,,, +927,CHN,zh,Hubei RGD Chutian Xinwen,,Suizhou (HU),31.715,113.344722,,10,,8314,58,130,,2000-1630,1234567,,,48906,,, +927,CHN,,Hubei RGD Shenghuo Pindao,,Xianning (HU),29.866667,114.283333,,10,,8532,58,132,,,,,,48897,,, +927,KOR,,HLQA KBS 1 R,,Buyeo (ccb),36.291667,126.947222,,10,,8623,45,132,,0000-2400,1234567,,,48920,,, +927,THA,th,Sor. Wor. Sor.,,Chanthaburi/Bang Kacha (ctb),12.576278,102.069278,,20,,9288,78,132,,2130-1700,1234567,,,48932,,, +927,CHN,,Jiangxi RGD Shenghuo Pinl,,Nanchang (JX),28.7,115.9,,10,,8730,58,133,,,,,,48899,,, +927,THA,th,Sor. Wor. Thor. (R Thailand),,Nong Khai (nki),18.387222,103.598611,,10,,8880,73,133,,,,,,52406,,, +927,CHN,,Guangzhou Traffic/Finance BS/Caijing 927,,Guangzhou/SARFT808 (GD),23.106389,113.26,,10,,9074,63,134,,,,,,48893,,, +927,CHN,,Harbin JGD Fashion & Music,,Harbin (HL),45.816667,126.866667,,1,,7736,40,134,,,,,,36200724,,, +927,INS,id,RRI Pro-4,,Pekanbaru (RI-pek),0.469167,101.376389,,25,,10305,86,134,,2200-1700,1234567,,,48913,,, +927,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Shuangyashan (HL),46.533333,131.083333,,1,,7849,37,135,,0855-1500,1234567,,,36200715,,, +927,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Shuangyashan (HL),46.533333,131.083333,,1,,7849,37,135,,2100-0600,1234567,,,36200715,,, +927,CHN,,Xiaogan RGD,,Xiaogan Shi (HU),30.916667,113.9,,3,,8417,58,136,,,,,,48908,,, +927,J,,JOFG NHK1,,Fukui (chu-fuk),36.040833,136.233611,,5,,9072,39,137,,0000-2400,1234567,,,48914,,, +927,J,ja,JOKG NHK1,,Kofu (chu-yam),35.658889,138.535278,,5,,9207,37,137,,0000-2400,1234567,,,48916,,, +927,PHL,,DWBS-AM Commando R,,Vigan City (ils),17.562778,120.387222,,10,,10006,61,137,,,,,,48931,,, +927,CHN,,Changzhou JGD,,Changzhou (JS),31.763611,119.776944,,3,,8670,53,138,,,,,,36200348,,, +927,CHN,,Xuchang JGD,,Xuchang (HE),34.033333,113.8,,1,,8136,56,138,,,,,,48909,,, +927,CHN,,Hunchun RGD,,Hunchun (JL),42.866667,130.35,,1,,8163,39,139,,,,,,48894,,, +927,CHN,,Yunnan RGD Jiaotong zhi Sheng,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200718,,, +927,CHN,zh,Nanyang JGD,,Nanyang (HE),32.975278,112.498333,,1,,8155,57,139,,2130-1600,1234567,,,48900,,, +927,CHN,,Yunnan RGD Xinwen Guangbo,,Kaiyuan (YN),23.70675,103.269139,,1,,8397,70,141,,,,,,36200719,,, +927,J,,NHK R 1,,Wakkanai (hok),45.383333,141.716667,,1,,8364,31,141,,0000-2400,1234567,,,48918,,, +927,CHN,zh,CNR 1,,Yiyang (HN),28.6,112.35,,1,,8531,60,142,,2025-1805,1234567,,,36200660,,, +927,CHN,zh,CNR 1,,Yueyang/Kangwang (HN),29.133333,113.116667,,1,,8529,59,142,,2025-1805,1234567,,,48910,,, +927,CHN,zh,CNR 2,,Bose/GXTS242 (GX),23.890278,106.608889,,1,,8593,67,142,,2100-1602,1234567,,,36201282,,, +927,KOR,,HLQD KBS 1 R,,Hongcheon (gan),37.681944,127.874722,,1,,8537,44,142,,0000-2400,1234567,,,48922,,, +927,PHL,,DZLG-AM Bombo Radyo,,Legazpi City/Tahao Road (aby),13.15,123.742778,,5,,10614,60,142,,????-1500,1234567,,,48928,,, +927,CHN,,Changshu JGD,,Changshu (JS),31.65,120.733333,,1,,8733,52,143,,2150-1430,1234567,,,48892,,, +927,CHN,,Huzhou JGD,,Huzhou (ZJ),30.838611,120.221111,,1,,8779,53,143,,,,,,36200722,,, +927,CHN,,Jiangxi RGD Dushi Guangbo,,Yichun (JX),27.8,114.416667,,1,,8724,59,143,,,,,,36200711,,, +927,CHN,,Jiangxi RGD Minsheng Guangbo,,Ji'an/JXTS841 (JX),27.1725,114.969167,,1,,8812,59,143,,,,,,36200721,,, +927,CHN,,Jianxi RGD Power R,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,,,,,36200720,,, +927,CHN,,Jianxi RGD Power R,,Shangrao (JX),28.466667,117.983333,,1,,8870,56,143,,,,,,36200716,,, +927,CHN,,Shanghai RGD Gushi Guangbo,,Shanghai/Yangpu (SH),31.280083,121.526233,,1,,8809,52,143,,,,,,48901,,, +927,CHN,zh,CNR 1,,Zhuzhou (HN),27.833333,113.15,,1,,8646,60,143,,2025-1805,1234567,,,36200658,,, +927,CHN,zh,CNR 2,,Nanning (GX),22.8,108.3,,1,,8795,67,143,,2100-1602,1234567,,,47838,,, +927,CHN,zh,CNR 2,,Wuzhou (GX),23.482222,111.293611,,1,,8921,64,143,,2100-1602,1234567,,,36200713,,, +927,CHN,,Taizhou JGD,,Taizhou (ZJ),28.612222,121.415278,,1,,9048,54,144,,2047-1703,1234567,,,48907,,, +927,CHN,,Zhujiang JGD Pearl R,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,,,,,36200659,,, +927,J,ja,NHK R 1,,Tsuyama (chg-oka),35.058394,134.006953,,1,,9070,41,144,,0000-2400,1234567,,,48917,,, +927,PHL,,DXDA-AM Radyo Agusan,,San Francisco (ags),8.533333,125.95,,5,,11176,61,144,,,,,,48929,,, +927,PHL,,DXMD-AM Radyo Agong,,General Santos City (sco),6.118333,125.159722,,5,,11353,63,144,,1900-1500,1234567,,,48926,,, +927,PHL,,DXMM-AM R.Totoo/R.Veritas,,Jolo/Gandasuli (slu),6.083333,121.016667,,5,,11100,67,144,,2100-1300,1234567,,,48927,,, +927,J,,NHK R 1,,Isahaya (kyu-nag),32.833333,130,,0.1,,9097,45,154,,0000-2400,1234567,,,48915,,, +927,AUS,,6NR Curtin R,,Perth/Bentley (WA),-32.012389,115.890278,,2,,14044,97,157,,0000-2400,1234567,,,48889,,, +927,AUS,en,4CC Zinc 927,,Gladstone (QLD),-23.859444,151.240139,,5,,15691,57,159,,0000-2400,1234567,9976,,48887,,, +927,AUS,en,3UZ Sport 927,,Melbourne/Lower Plenty (VIC),-37.741344,145.112239,,5,,16455,80,161,,0000-2400,1234567,,,48888,,, +927,NZL,,2ZA Newstalk ZB,,Palmerston North/Kairanga (MWT),-40.509167,175.570556,,2,,18483,37,172,,0000-2400,1234567,,,48924,,, +930,BLR,,W,b,Minsk/Mačuličy (MI),53.770833,27.625,,0.025,,1428,74,87,,,,990,L1020 3.2s,85802,,, +930,CAN,en,CFBC,,Saint John (NB),45.231944,-66.103333,,50,,5154,292,92,,,,9998,,35936,,, +930,RUS,,OO,b,Zernograd,46.8125,40.375,,0.025,,2500,90,98,,,,,U977 10.0s,86799,,, +930,USA,en,WPKX,i,Rochester (NH),43.286944,-70.948611,,5,,5592,293,106,,,,1,,41520,,, +930,CAN,en,CJCA,,Edmonton (AB),53.383333,-113.476667,,50,,7027,325,110,,,,9972,,36148,,, +930,USA,es,WPAT,,Paterson (NJ),40.849722,-74.183056,,5,,5970,292,110,,,,20,,42645,,, +930,USA,,WBEN,,Buffalo/Grand Island (NY),42.978333,-78.9575,,5,,6110,297,111,,,,38,,40832,,, +930,USA,,WFMD,,Frederick (MD),39.415278,-77.461389,,2.5,,6284,293,116,,,,,,41406,,, +930,USA,,WAUR,,Sandwich (IL),41.607222,-88.453056,,4.2,,6781,302,119,,,,,,40772,,, +930,VEN,,YVLJ R Maracay,,Maracay (arg),10.216667,-67.45,,50,,8013,264,120,,1000-0600,1234567,,,45366,,, +930,ALS,en,KNSA,,Unalakleet (AK),63.887778,-160.691111,,4.2,,7068,354,121,,,,8,,39016,,, +930,USA,,WEOL,,Elyria (OH),41.269444,-82.004444,,1,,6424,297,121,,,,,,41315,,, +930,USA,,WBCK,,Battle Creek (MI),42.291944,-85.183333,,1,,6535,300,122,,,,,,40823,,, +930,USA,en,WDLX,,Washington (NC),35.526667,-77.075278,,1,,6559,289,123,,,,,,41179,,, +930,USA,en,WFXJ,,Jacksonville (FL),30.285833,-81.747778,,5,,7281,288,123,,,,9990,,41461,,, +930,USA,en,WRVC,,Huntington (WV),38.400833,-82.495,,1,,6676,295,124,,,,,,42934,,, +930,CUB,es,R Surco,,Ciego de vila/CTOM2 (ca),21.857528,-78.732478,,10,,7783,280,125,,,,,,36542,,, +930,HTI,,R Cap-Hatien,,Cap-Hatien (nrd),19.75,-72.2,,5,,7518,274,125,,,,,,52112,,, +930,USA,,WYFQ,,Charlotte (NC),35.266667,-80.901389,,1,,6824,292,125,,,,,,43514,,, +930,PTR,,WYAC,,Cabo Rojo (PR),18.101389,-67.154722,,2.5,,7314,269,126,,0000-2400,1234567,,,43502,,, +930,USA,,KSDN,,Aberdeen (SD),45.424722,-98.5175,,1,,7026,311,127,,,,,,39334,,, +930,USA,,KKIN,,Aitkin (MN),46.540556,-93.656111,,0.36,,6679,309,128,,,,17,,38723,,, +930,USA,,WSFZ,,Jackson (MS),32.386667,-90.163056,,3.1,,7638,296,128,,,,,,42988,,, +930,USA,,WTAD,,Quincy (IL),39.891944,-91.423611,,1,,7091,302,128,,,,,,43099,,, +930,USA,en,WKY,,Oklahoma City (OK),35.561944,-97.5075,,5,,7805,303,128,,,,,,42104,,, +930,USA,en,WLSS,,Sarasota (FL),27.354722,-82.385,,3,,7565,287,128,,,,,,42237,,, +930,USA,,KSEI,,Pocatello (ID),42.962222,-112.497222,,5,,7928,317,129,,,,48,,39339,,, +930,USA,,WKCT,,Bowling Green (KY),37.031389,-86.438333,,0.5,,7027,297,130,,,,,,41976,,, +930,USA,es,WYUS,,Milford (DE),38.9275,-75.488889,,0.081,,6196,291,130,,,,,,43554,,, +930,DOM,,HICK Ondas del Yaque,,Santiago de los Caballeros (sto),19.433333,-70.666667,,1,,7441,272,131,,0945-0400,1234567,,,37230,,, +930,USA,,WIZR,,Johnstown (NY),42.998333,-74.358611,,0.028,,5826,294,131,,,,,,41831,,, +930,ALS,,KTKN,,Ketchikan (AK),55.339444,-131.636667,,1,,7459,336,132,,,,999,,39496,,, +930,B,pt,ZYJ923 R.930 AM-Liberdade de Sergipe,,Aracaju/Fazenda Jardim (SE),-10.894444,-37.169444,,5,,8148,225,132,,,,998,,36901611,,, +930,USA,,KMPT,,East Missoula (MT),46.865833,-114.0825,,1,,7642,321,133,,,,,,38788,,, +930,USA,,KWOC,,Poplar Bluff (MO),36.720833,-90.367778,,0.5,,7290,299,133,,,,,,39738,,, +930,USA,,WHON,,Centerville (IN),39.892222,-84.935556,,0.114,,6708,298,133,,,,,,41677,,, +930,USA,en,WGAD,,Rainbow City (AL),33.985556,-86.0375,,0.5,,7250,294,133,,,,,,41851,,, +930,CLM,es,HJCS La Voz de Bogota (Todelar),,Bogot D. C. (bdc),4.583333,-74.066667,,10,,8956,265,134,,,,999,,37378,,, +930,CUB,es,R Reloj,,Santiago de Cuba/CTOM2 (sc),20.100044,-75.8203,,1,,7735,277,134,,,,,,31600040,,, +930,PNR,es,HOR46 La Nueva Exitosa,,Llano Bonito (pnm),9.034578,-79.4564,,10,,8934,272,134,,0000-2400,1234567,,,52313,,, +930,USA,en,WMGR,,Bainbridge (GA),30.906944,-84.550556,,0.5,,7410,291,134,,,,,,42319,,, +930,B,pt,ZYH646 Rdio Metropolitana de Fortaleza,,Caucaia (CE),-3.726617,-38.641767,,0.5,,7513,230,135,,,,2,,36901612,,, +930,USA,,WHLM,,Bloomsburg (PA),41.016667,-76.462222,,0.018,,6101,294,135,,,,,,41657,,, +930,USA,,WLBL,,Auburndale (WI),44.613333,-90.037222,,0.07,,6634,305,135,,,,9987,,42135,,, +930,USA,,WSEV,,Sevierville (TN),35.878333,-83.555,,0.148,,6942,294,135,,,,,,42982,,, +930,B,pt,ZYH296 Rdio Boas Novas,,Manaus (AM),-3.1,-60.033333,,5,,8709,249,136,,,,,,36901607,,, +930,CUB,es,R Reloj,,Cienfuegos (cf),22.15,-80.433333,,1,,7873,282,136,,,,,,36505,,, +930,CUB,es,R Reloj,,La Jaiba (ma),23.024011,-81.59395,,1,,7876,283,136,,,,13,,36478,,, +930,EQA,,HCCM1,,Quito (pic),-0.166667,-78.466667,,10,,9673,266,136,,,,,,36881,,, +930,USA,,KOGA,,Ogallala (NE),41.1425,-101.713333,,0.5,,7556,309,136,,,,9895,,39062,,, +930,USA,,WLLL,,Lynchburg (VA),37.406944,-79.2325,,0.042,,6550,292,136,,,,,,42186,,, +930,CTR,,TIRCR R Costa Rica,,San Jos (sjs),9.916667,-84.066667,,5,,9171,277,137,,0000-2400,1234567,,,40586,,, +930,USA,es,KHJ,,Los Angeles (CA),34.040556,-118.370556,,5,,9039,316,137,,,,9989,,38543,,, +930,B,pt,ZYJ232 Rdio Cultura,,Curitiba/Alto So Miguel (PR),-25.341417,-49.292083,,10,,10167,228,138,,,,,,36901614,,, +930,B,pt,ZYL229 Rdio de Araguari,,Araguari (MG),-18.618894,-48.213225,,5,,9465,231,138,,,,,,36901608,,, +930,USA,en,KBAI,,Bellingham (WA),48.798056,-122.466944,,0.5,,7798,327,138,,,,10,,38001,,, +930,EQA,,HCBA6 R Ambato,,Ambato (tun),-1.233333,-78.633333,,5,,9778,265,139,,,,985,,36860,,, +930,PRU,es,OAX4E Moderna R Pap,,Lima (lim),-12.166667,-77.066667,,10,,10634,257,139,,0000-2400,1234567,969,,40305,,, +930,MEX,es,XEQS-AM,,Fresnillo (zac),23.141383,-102.832706,,3,,9215,299,140,,,,,,44635,,, +930,SLV,,YSTG,,San Salvador (ssl),13.716667,-89.166667,,2.5,,9182,283,140,,,,,,45326,,, +930,USA,,WWON,,Waynesboro (TN),35.308333,-87.745,,0.091,,7247,296,140,,,,,,43420,,, +930,ARG,,LV7 R Tucumn,,San Miguel del Tucumn (tm),-26.843542,-65.185178,,10,,11182,239,141,,0000-2400,1234567,,,2142,,, +930,MEX,es,XEMK-AM R Mexicana,,Huixtla (cps),15.140394,-92.476572,,2.5,,9276,286,141,,,,,,44385,,, +930,PNR,es,HOK85 Mi Preferida Estreo,,Puerto Armuelles (chq),8.318889,-82.824167,,2,,9226,275,141,,1000-0400,1234567,,,37698,,, +930,PRU,,OBX9V,,Huambo/Caserio Miraflores (ama),-6.431111,-77.529722,,5,,10160,261,141,,,,,,37000078,,, +930,USA,,KLUP,,Terrell Hills (TX),29.518333,-98.406944,,1,,8383,300,141,,,,,,38853,,, +930,USA,,KROE,,Sheridan (WY),44.798333,-106.930833,,0.117,,7501,315,141,,,,,,39280,,, +930,B,pt,ZYH605 Rdio Cetama,,Barbalha (CE),-7.2919,-39.318281,,0.25,,7898,229,142,,,,,,36901604,,, +930,URG,es,CX20 R Monte Carlo,,Montevideo (mo),-34.823472,-56.297222,,10,,11417,228,142,,0000-2400,1234567,2,,36807,,, +930,B,pt,ZYL237 Rdio Globo,,Governador Valadares (MG),-18.864481,-41.966139,,1,,9171,226,144,,,,,,36901621,,, +930,CHL,es,CB93 R Nuevo Mundo,,Santiago/Quilicura (RM),-33.33615,-70.742892,,10,,12080,239,144,,1000-0530,1234567,,,35766,,, +930,GTM,,TGJL Emisoras Unidas Imperial,,San Pedro Carch (avp),15.466667,-90.316667,,1,,9105,285,144,,,,,,40501,,, +930,HND,,HRRC,,San Lorenzo (val),13.4,-87.516667,,1,,9100,281,144,,,,,,37833,,, +930,HTI,,R Echo 2000,,La Valle-de-Jacmel (ses),18.266667,-72.666667,,0.1,,7676,273,144,,,,,,52113,,, +930,MEX,es,XECY-AM R Diversion,,Huejutla de Reyes (hid),21.130833,-98.420833,,1,,9126,294,144,,,,,,43891,,, +930,SLV,,YSTG,,La Paz (paz),13.466667,-88.833333,,1,,9182,282,144,,,,,,45322,,, +930,SLV,,YSTG,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,45325,,, +930,SLV,,YSTG,,Santa Ana (sta),13.966667,-89.516667,,1,,9184,283,144,,,,,,45324,,, +930,SLV,,YSTG,,Sonsonate (ssn),13.716667,-89.716667,,1,,9219,283,144,,,,,,45323,,, +930,B,pt,ZYH802 Rdio Caraba,,Aparecida de Goinia (GO),-16.810697,-49.262756,,1,,9348,233,145,,,,,,36901616,,, +930,B,pt,ZYK230 Rdio Caxias do Sul,,Caxias do Sul/Rua Juca Ramos (RS),-29.141389,-51.139167,,2.5,,10623,228,145,,,,,,36901613,,, +930,MEX,es,XETLA-AM,,Tlaxiaco (oax),17.247281,-97.697317,,1,,9427,292,145,,,,,,44832,,, +930,MEX,es,XEZU-AM La Explosiva,,Zacapu (mic),19.813889,-101.798056,,1,,9453,296,145,,,,,,45160,,, +930,USA,en,KRKY,,Granby (CO),40.040556,-105.936389,,0.121,,7872,311,145,,,,,,39257,,, +930,USA,en,KYAK,,Yakima (WA),46.613333,-120.480833,,0.127,,7930,325,145,,,,97,,39838,,, +930,B,,ZYJ676,,Cacoal (RO),-11.466667,-61.383333,,1,,9557,245,146,,,,,,46139,,, +930,MEX,es,XETTT-AM Magia,,Colima (col),19.257867,-103.725008,,1,,9621,297,146,,,,,,46785,,, +930,B,pt,Rdio Cultura,,Santos (SP),-23.716667,-46.266667,,1,,9858,227,147,,,,90,,36902743,,, +930,B,pt,ZYK652 Rdio Cultura de Santos,,So Vicente/Praa Matteo Bei 128 (SP),-23.947533,-46.398844,,1,,9887,227,147,,,,89,,36901619,,, +930,B,pt,ZYK713 Rdio Cano Nova,,Agudos (SP),-22.420594,-49.039394,,1,,9874,230,147,,,,,,36901606,,, +930,CHL,,CD93 R Reloncavi,,Puerto Montt (LL),-41.466667,-72.916667,,10,,12891,235,147,,1100-0400,1234567,,,35923,,, +930,EQA,,HCVI2 Canal Tropical,,Guayaquil (gua),-2.183333,-79.866667,,1,,9945,266,147,,,,93,,37168,,, +930,B,pt,ZYJ235 Rdio Princesa,,Francisco Beltro (PR),-26.053889,-53.0375,,1,,10429,231,148,,,,,,36901609,,, +930,EQA,,HCUE5,,Colta (mor),-1.75,-78.25,,0.5,,9797,265,149,,,,,,37146,,, +930,MEX,es,XESHT-AM La Poderosa,,Saltillo (coa),25.472367,-101.000983,,0.25,,8897,299,149,,,,,,44742,,, +930,MEX,es,XEUL-AM tomo,,Mrida (yuc),21.048611,-89.632778,,0.2,,8574,288,149,,,,,,44911,,, +930,USA,,KIUP,,Durango (CO),37.305,-107.856944,,0.1,,8216,311,149,,,,,,38646,,, +930,B,pt,ZYL220 Rdio Clube de Campo Belo,,Campo Belo (MG),-20.883333,-45.266667,,0.25,,9532,227,151,,,,,,36901605,,, +930,USA,,KAGI,,Grants Pass (OR),42.437778,-123.3575,,0.123,,8446,324,151,,,,,,37922,,, +930,USA,,KDET,,Center (TX),31.834167,-94.214722,,0.036,,7932,298,151,,,,,,38252,,, +930,ARG,,LV28 R Villa Maria,,Villa Maria (cb),-32.416667,-63.25,,1,,11570,235,152,,0900-0300,1234567,,,40252,,, +930,ARG,,R Nativa,,San Justo (ba),-34.666667,-58.55,,1,,11520,230,152,,,,,,33000079,,, +930,ARG,es,R Alfa,,Villa Ballester (ba),-34.533333,-58.55,,1,,11507,230,152,,,,,,51813,,, +930,B,pt,ZYI423 Rdio Clube de Rondonpolis,,Rondonpolis (MT),-16.508108,-54.616994,,0.25,,9619,237,152,,,,,,36901615,,, +930,B,pt,ZYK500 Rdio Santa F,,Santa F do Sul/Fazenda Bela Vista (SP),-20.217311,-50.949589,,0.25,,9765,232,152,,,,,,36901618,,, +930,B,pt,ZYK503 Rdio Clube de Itapira,,Itapira/Rua Antnio do Rosrio (SP),-22.442617,-46.8126,,0.25,,9762,228,152,,,,,,36901603,,, +930,B,pt,ZYN400 Rdio Jornal,,Pontes e Lacerda (MT),-15.21015,-59.360042,,0.25,,9777,242,152,,,,,,36901598,,, +930,B,pt,ZYI454 Rdio Capital,,Campo Grande (MS),-20.504889,-54.632017,,0.25,,9994,235,153,,,,,,36901620,,, +930,B,pt,ZYJ227 Rdio Cultura,,Rolndia (PR),-23.316667,-51.383333,,0.25,,10083,231,153,,,,,,36901599,,, +930,B,pt,ZYK747 Rdio Jia,,Adamantina (SP),-21.685278,-51.0725,,0.25,,9911,232,153,,,,,,36901601,,, +930,EQA,,HCRR5,,Cuenca (azu),-2.85,-79,,0.2,,9945,265,154,,,,,,37109,,, +930,USA,,KCCC,,Carlsbad (NM),32.405556,-104.189167,,0.06,,8460,305,154,,,,,,38134,,, +930,B,pt,ZYK298 Rdio Santo ngelo AM,,Santo ngelo/Rua So Lourenco (RS),-28.3125,-54.262222,,0.25,,10706,231,155,,,,,,36901617,,, +930,USA,,KAPR,,Douglas (AZ),31.368889,-109.529167,,0.071,,8845,309,155,,,,,,37960,,, +930,USA,,KAFF,,Flagstaff (AZ),35.190556,-111.676944,,0.031,,8604,312,157,,,,9999,,37917,,, +930,USA,,KKXX,,Paradise (CA),39.726944,-121.679167,,0.037,,8640,322,157,,,,99565,,38766,,, +932,RUS,,KR,b,Krasnoarmeysk (SR),51.0625,45.625,,0.025,,2679,77,100,,,,,L1027 U933 ,85803,,, +936,E,es,RNE R 5,,Zaragoza/Cuarte Torrero (RNE) (ARA-Z),41.623267,-0.891094,,25,,1290,208,56,,0000-2400,1234567,2,,657,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0625-0630,12345..,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0650-0700,12345..,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0800-0815,1234567,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1208-1300,12345..,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1230-1300,.....67,9963,,656,,, +936,E,es,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1400-1415,12345..,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0815-1208,12345..,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0815-1230,.....67,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1300-1400,12345..,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1300-2300,.....67,9963,,656,,, +936,E,es,RNE R 5,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,1415-2300,12345..,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0630-0650,12345..,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0700-0800,12345..,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0711-0800,.....67,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,2300-0625,1234..7,9963,,656,,, +936,E,es,RNE R Nacional,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,2300-0710,....56.,9963,,656,,, +936,E,pt,RNE Castilla y Len,,Valladolid/San Cristbal (RNE) (CAL-VA),41.613861,-4.698986,,20,,1437,220,58,,0710-0711,12345..,9963,,656,,, +936,I,it,RAI Friuli Venezia Giulia,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,1430-1500,1234567,0,,662,,, +936,I,it,RAI R1,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,0000-2400,1234567,0,,662,,, +936,I,it,RAI Veneto,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,0620-0630,123456,0,,662,,, +936,I,it,RAI Veneto,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,1110-1130,123456,0,,662,,, +936,I,it,RAI Veneto,,Venezia/Campalto (ve),45.479167,12.297222,,5,,854,147,59,,1140-1200,......7,0,,662,,, +936,E,es,RNE R 5,,Alicante/Bacarot (RNE) (VAL-A),38.317689,-0.552594,,10,,1626,202,63,,0000-2400,1234567,4,,655,,, +936,MRC,,SNRT Al Ida Al Amazighia,,Agadir/At Melloul (smd),30.325778,-9.50175,,100,,2750,214,65,,0800-2400,1234567,994,,665,,, +936,SYR,ar,SRTV 1 Dimashk,,Homs=Hims (him),34.791056,36.71515,,200,170,3075,117,65,,0000-2000,1234567,0,,669,,, +936,SYR,ar,SRTV 1 Dimashk,,Homs=Hims (him),34.791056,36.71515,,200,170,3075,117,65,,2030-2400,1234567,0,,669,,, +936,SYR,en,SRTV R Damascus,,Homs=Hims (him),34.791056,36.71515,,200,170,3075,117,65,,2000-2030,1234567,0,,669,,, +936,IRN,fa,IRIB R.Markaze Azerbaijaneh Gharb,,Fesanduz (waz),37.121839,45.841489,,300,,3480,103,67,,0000-2400,1234567,71,,663,,, +936,G,en,Gold,,Chippenham/Naish Hill (EN-WLT),51.416778,-2.076917,,0.18,,589,266,70,,0000-2400,1234567,0,,659,,, +936,EGY,ar,ERTU Al-Barnameg al-Aam,,Salum (mth),31.542278,25.162611,,10,,2747,139,74,,0000-2400,1234567,,,1831,,, +936,RUS,ru,R Rossii,,Matveyevka/SRV5 (OB),53.508333,53.483333,,5,,3110,68,81,,2300-1900,1234567,,,666,,, +936,ARS,ar,BSKSA Al-Quran al-Karim,,Makkah (mkh),21.372511,39.690175,,50,,4451,127,85,,0000-2400,1234567,,,10600005,,, +936,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (riy),24.814,46.863472,,50,,4552,116,86,,0000-2400,1234567,,,47080,,, +936,AFG,,R Zabol,,Qalat (zab),32.1,66.916667,,10,,5282,90,100,,,,,,11000002,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,0000-0415,123456,9945,,48944,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,0000-0500,......7,9945,,48944,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,0610-0915,123456,9945,,48944,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,0630-1735,......7,9945,,48944,,, +936,IND,,AIR South,,Tiruchirapalli A (TN),10.70655,78.530183,,100,,7852,98,116,,1200-1735,123456,9945,,48944,,, +936,CHN,zh,Xizang RGD Hanyu,,Ga'er/Shiquanhe (XZ),32.494639,80.087611,,1,,6147,80,118,,,,,,36201197,,, +936,CHN,zh,Xizang RGD Hanyu,,Rutog=Ritu (XZ),33.382222,79.727778,,1,,6054,79,118,,,,,,36201200,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Hefei/Sanshitou (AH),31.987667,117.329028,,200,,8515,55,119,,2100-1550,1234567,,,48942,,, +936,CHN,zh,Ordos RGD Hanyu,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,10,,7431,54,121,,2150-1605,1234567,,,48941,,, +936,CHN,zh,Xizang RGD Hanyu,,Burang=Pulan (XZ),30.298667,81.172861,,1,,6392,81,121,,,,,,36201204,,, +936,THA,th,Sor. Wor. Sor.,,Nakhon Sawan (nsn),15.802778,100.074167,,50,,8873,77,126,,2130-1700,1234567,,,48977,,, +936,CHN,zh,Xizang RGD Hanyu,,Nagqu=Naqu (XZ),31.472389,92.042306,,1,,7020,72,127,,,,,,36201203,,, +936,CHN,zh,Xizang RGD Hanyu,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,,,,,36201201,,, +936,CHN,zh,Xizang RGD Hanyu,,Cona=Cuona (XZ),27.996111,91.964389,,1,,7299,75,130,,,,,,36201196,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Huangshan/Tunxi (AH),29.690833,118.308889,,10,,8777,55,133,,2100-1550,1234567,,,36200349,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Wuhu/Wuliting (AH),31.295528,118.382167,,10,,8636,54,133,,2100-1550,1234567,,,36200352,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Xuancheng/Wuligang (AH),30.930556,118.745833,,10,,8689,54,133,,2100-1550,1234567,,,36200353,,, +936,CHN,zh,Xizang RGD Hanyu,,Markam=Mangkang (XZ),29.679836,98.598306,,1,,7590,69,133,,,,,,36201199,,, +936,KOR,ko,HLKD KBS 3 R,,Changwon (gsn),35.151972,128.588667,,10,,8809,45,133,,2000-1800,1234567,,,48967,,, +936,J,ja,JOTR ABS Akita Hoso,,Akita (toh-aki),39.696667,140.098889,,5,,8870,34,136,,0000-1600,......7,,,48959,,, +936,J,ja,JOTR ABS Akita Hoso,,Akita (toh-aki),39.696667,140.098889,,5,,8870,34,136,,0000-2400,123456,,,48959,,, +936,J,ja,JOTR ABS Akita Hoso,,Akita (toh-aki),39.696667,140.098889,,5,,8870,34,136,,1850-2400,......7,,,48959,,, +936,THA,th,Thor. Phor. Sii 4,,Pattani/Charoen Pradit Rd (pti),6.8725,101.235556,,10,,9733,82,136,,????-1555,1234567,,,48978,,, +936,J,ja,JONF MRT Miyazaki Hoso,,Miyazaki (kyu-miy),31.9275,131.466111,,5,,9254,44,138,,0000-1530,......7,,,48963,,, +936,J,ja,JONF MRT Miyazaki Hoso,,Miyazaki (kyu-miy),31.9275,131.466111,,5,,9254,44,138,,0000-2400,123456,,,48963,,, +936,J,ja,JONF MRT Miyazaki Hoso,,Miyazaki (kyu-miy),31.9275,131.466111,,5,,9254,44,138,,1850-2400,......7,,,48963,,, +936,TWN,,Han Sheng Kuangpo Tientai,,Chung-Li (TY),24.934167,121.225833,,5,,9376,56,138,,,,,,21800033,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Fuyang (AH),32.930944,115.798294,,1,,8346,55,140,,2100-1550,1234567,,,36200351,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Suzhou (AH),33.633333,116.983333,,1,,8349,54,140,,2100-1550,1234567,,,36201202,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Bengbu (AH),32.95,117.383333,,1,,8432,54,141,,2100-1550,1234567,,,36200350,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Huainan (AH),32.656839,116.963722,,1,,8435,54,141,,2100-1550,1234567,,,36201198,,, +936,PHL,,DWIM-AM Radyo Mindoro,,Calapan (orm),13.4,121.166667,,5,,10437,62,141,,,,,,48980,,, +936,PHL,,DXIM-AM Radyo ng Bayan,,Cagayan de Oro City (mor),8.466667,124.633333,,10,,11103,62,141,,,,,,48971,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Chaohu (AH),31.5888,117.830833,,1,,8579,54,142,,2100-1550,1234567,,,36201194,,, +936,CHN,zh,Anhui RGD Xinwen Zonghe Guangbo,,Chuzhou (AH),32.285167,118.346917,,1,,8545,54,142,,2100-1550,1234567,,,36201195,,, +936,J,ja,MRT Miyazaki Hoso,,Kobayashi (kyu-miy),32.002778,130.958333,,1,,9223,45,144,,0000-1530,......7,,,48960,,, +936,J,ja,MRT Miyazaki Hoso,,Kobayashi (kyu-miy),32.002778,130.958333,,1,,9223,45,144,,0000-2400,123456,,,48960,,, +936,J,ja,MRT Miyazaki Hoso,,Kobayashi (kyu-miy),32.002778,130.958333,,1,,9223,45,144,,1850-2400,......7,,,48960,,, +936,J,ja,MRT Miyazaki Hoso,,Nobeoka (kyu-miy),32.55,131.683333,,1,,9205,44,144,,0000-1530,......7,,,48965,,, +936,J,ja,MRT Miyazaki Hoso,,Nobeoka (kyu-miy),32.55,131.683333,,1,,9205,44,144,,0000-2400,123456,,,48965,,, +936,J,ja,MRT Miyazaki Hoso,,Nobeoka (kyu-miy),32.55,131.683333,,1,,9205,44,144,,1850-2400,......7,,,48965,,, +936,J,ja,MRT Miyazaki Hoso,,Takachiho (kyu-miy),32.7,131.316667,,1,,9173,44,144,,0000-1530,......7,,,48966,,, +936,J,ja,MRT Miyazaki Hoso,,Takachiho (kyu-miy),32.7,131.316667,,1,,9173,44,144,,0000-2400,123456,,,48966,,, +936,J,ja,MRT Miyazaki Hoso,,Takachiho (kyu-miy),32.7,131.316667,,1,,9173,44,144,,1850-2400,......7,,,48966,,, +936,PHL,,DXDN-AM Radyo Ukay,,Tagum (dvn),7.416667,125.75,,5,,11268,62,144,,????-1500,1234567,,,48973,,, +936,J,ja,MRT Miyazaki Hoso,,Nichinan (kyu-miy),31.6,131.383333,,1,,9282,45,145,,0000-1530,......7,,,48964,,, +936,J,ja,MRT Miyazaki Hoso,,Nichinan (kyu-miy),31.6,131.383333,,1,,9282,45,145,,0000-2400,123456,,,48964,,, +936,J,ja,MRT Miyazaki Hoso,,Nichinan (kyu-miy),31.6,131.383333,,1,,9282,45,145,,1850-2400,......7,,,48964,,, +936,PHL,,DZXT-AM,,Tarlac City (tlc),15.483333,120.583333,,1,,10209,62,148,,,,,,48974,,, +936,INS,id,PM2DRM R Dermaga Ria,,Sekadau (KB),0.016667,110.9,,1,,10989,78,150,,,,,,48955,,, +936,PHL,,DYCC-AM,,Calbayog City/Obrero (sam),12.083333,124.6,,1,,10764,60,150,,2100-1600,1234567,,,48972,,, +936,AUS,xx,6FX Wangki R,,Fitzroy Crossing (WA),-18.33075,125.680056,,5,,13591,78,152,,2200-1600,1234567,,,48939,,, +936,INS,,R Samhan Mulya,,Sumedang (JB-sum),-6.866667,107.916667,,1,,11395,85,152,,,,,,35400132,,, +936,J,ja,MRT Miyazaki Hoso,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,0000-1530,......7,,,48961,,, +936,J,ja,MRT Miyazaki Hoso,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,0000-2400,123456,,,48961,,, +936,J,ja,MRT Miyazaki Hoso,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,1850-2400,......7,,,48961,,, +936,J,ja,MRT Miyazaki Hoso,,Miyakonojo (kyu-miy),31.766667,131.1,,0.1,,9252,45,155,,0000-1530,......7,,,48962,,, +936,J,ja,MRT Miyazaki Hoso,,Miyakonojo (kyu-miy),31.766667,131.1,,0.1,,9252,45,155,,0000-2400,123456,,,48962,,, +936,J,ja,MRT Miyazaki Hoso,,Miyakonojo (kyu-miy),31.766667,131.1,,0.1,,9252,45,155,,1850-2400,......7,,,48962,,, +936,AUS,en,4PB ABC Newsr,,Brisbane/Bald Hills (QLD),-27.310169,153.013686,,10,,16107,58,157,,0000-2400,1234567,7,,48938,,, +936,INS,id,PM2BBC R P2SC,,Jakarta (JK-kjp),-6.155278,106.857778,,0.25,,11260,86,157,,,,91,,48947,,, +936,AUS,en,7ZR ABC Hobart,,Hobart/Ralphs Bay (TAS),-42.925444,147.497889,,10,,16963,86,160,,0000-2400,1234567,2,,48940,,, +936,NZL,xx,New Supremo 936,,Auckland/Henderson (AUK),-36.844383,174.631153,,1,,18083,33,174,,0000-2400,1234567,998,,48969,,, +937,PHL,,DYKW-AM,,Binalbagan/Cagamayan (noc),10.2,122.85,,1,,10834,63,150,,,,,,48981,,, +939,RUS,,LU,b,Sasovo,54.354167,41.958333,,0.025,,2354,70,97,,,,,,86800,,, +940,RUS,,UD,b,Chudovo (NO),59.104167,31.625,,0.025,,1750,54,90,,,,,U1020 ,85806,,, +940,RUS,,SQ,b,Vladimir (VL),56.145833,40.291667,,0.025,,2229,65,95,,,,,15.0s,ID+11 gap,85805,, +940,RUS,,MN,b,Mendeleyevo,58.1875,54.958333,,0.025,,3086,58,104,,,,987,L400 U375 ,85804,,, +940,USA,en,WKGM,,Smithfield (D) (VA),36.954444,-76.63,,10,,6419,290,111,,1200-2400,1234567,,,20012523,,, +940,CAN,en,CJGX,s,Yorkton (SK),51.206389,-102.336111,,10,,6734,317,114,,,,998,,36172,,, +940,USA,en,WKGM,,Smithfield (N) (VA),37.0975,-76.671111,,3.1,,6411,290,116,,0000-1200,1234567,,,42008,,, +940,PTR,es,WIPR,,San Juan (PR),18.426667,-66.141389,,10,,7217,268,119,,,,0,,41791,,, +940,USA,en,WMAC,,Macon (GA),32.885,-83.730556,,10,,7195,292,119,,,,,,42268,,, +940,USA,,WGRP,,Greenville (D) (PA),41.385278,-80.409167,,1,,6318,296,120,,,,,,20012577,,, +940,USA,,KPSZ,,Des Moines (IA),41.476389,-93.373889,,5,,7073,304,121,,,,9980,,39170,,, +940,USA,,WMIX,,Mount Vernon (D) (IL),38.370556,-88.923333,,5,,7068,299,121,,1300-0100,1234567,,,20012525,,, +940,VEN,,YVNN R Punto Fijo,,Punto Fijo (flc),11.609506,-70.2113,,50,,8080,267,121,,0900-0500,1234567,3,,45395,,, +940,USA,en,WINZ,,Miami (FL),25.96,-80.270278,,10,,7542,284,122,,,,9993,,41778,,, +940,B,pt,ZYI911 Rdio Sete Cidades,,Piracuruca (PI),-3.928303,-41.714478,,10,,7696,233,124,,,,,,36901623,,, +940,USA,,WCSW,,Shell Lake (WI),45.693333,-91.965833,,1,,6655,307,124,,,,,,41092,,, +940,B,pt,ZYJ453 Super Rede Boa Vontade,,Rio de Janeiro/Mag (RJ),-22.674444,-43.029444,,100,,9598,225,126,,,,9945,,36901622,,, +940,USA,,WMIX,,Mount Vernon (N) (IL),38.354167,-89.008056,,1.5,,7075,299,126,,0100-1300,1234567,,,42334,,, +940,USA,en,KFIG,,Fresno (CA),36.488889,-119.325833,,50,,8848,318,126,,,,,,39862,,, +940,VEN,es,YVLU R Fe y Alegria,,El Tigre (azg),8.866667,-64.25,,10,,7915,260,126,,0900-0300,1234567,,,51675,,, +940,USA,,WFAW,,Fort Atkinson (WI),42.906667,-88.751667,,0.55,,6695,303,127,,,,,,41358,,, +940,MEX,es,XEQ-AM la Q Mexicana,,Mxico D.F/Col. El Vergel (dif),19.314108,-99.076417,,50,,9329,294,128,,0000-2400,1234567,877,,44594,,, +940,VEN,,YVZR R Continental,,Barinas (bns),8.666667,-70.2,,15,,8335,265,129,,,,,,51676,,, +940,EQA,,HCDE2,,Guayaquil (gua),-2.2,-79.9,,50,,9949,266,130,,,,,,36898,,, +940,CLM,es,HJTL RCN,,Ccuta (nsa),7.866667,-72.516667,,15,,8563,266,131,,,,,,37646,,, +940,USA,,WKYK,,Burnsville (NC),35.925556,-82.272222,,0.25,,6858,293,132,,,,,,42106,,, +940,CLM,es,HJGB R Calima,,Cali (val),3.466667,-76.516667,,10,,9221,267,134,,,,16,,37450,,, +940,CUB,es,R Progreso,,Sancti Spritus/CTOM2 (ss),21.912044,-79.430931,,1,,7826,281,135,,,,,,2253,,, +940,EQA,es,HCBZ1 R Casa de la Cultura Ecuatoriana,,Quito (pic),-0.25,-78.483333,,10,,9681,266,136,,,,,,36871,,, +940,PNR,es,Asamblea Nacional,,La Palma (drn),8.409444,-78.145833,,5,,8899,271,136,,,,,,35100005,,, +940,GTM,,TGTL LV del Hogar R Paz,,Ciudad de Guatemala (gut),14.616667,-90.583333,,5,,9198,284,137,,1200-0500,1234567,,,40546,,, +940,HTI,,R Saint-Marc,,Saint-Marc (art),19.1,-72.7,,0.4,,7607,274,137,,,,,,35648,,, +940,USA,,WCPC,,Houston (MS),33.928056,-89.010833,,0.25,,7439,296,137,,,,9989,,41064,,, +940,PRU,,OBX7L R Willkamayu,,Wanchaq (cus),-14.316667,-71.25,,10,,10441,252,138,,0000-2400,1234567,,,40410,,, +940,USA,,KIXZ,,Amarillo (TX),35.154722,-101.757778,,1,,8081,306,138,,,,,,38652,,, +940,USA,,WGFP,,Webster (MA),42.054722,-71.833333,,0.004,,5734,292,138,,,,,,41501,,, +940,USA,,WYLD,,New Orleans (LA),29.899167,-90.004722,,0.5,,7839,294,138,,,,,,43524,,, +940,ARG,es,LRJ241 R Dimension,,San Lus (sl),-33.295344,-66.292097,,25,,11820,236,139,,0900-0400,1234567,,,40075,,, +940,GTM,,TGTL LV del Hogar R Paz,,Sacatepeque (sap),14.583333,-90.75,,2.5,,9211,285,140,,,,,,52130,,, +940,USA,,WINE,,Brookfield (CT),41.493056,-73.429167,,0.004,,5876,292,140,,,,8,,41767,,, +940,CAN,xx,CBDK,,Teslin (YT),60.166944,-132.727778,,0.04,,7008,339,141,,,,,,20109127,,, +940,HTI,,Rdiffusion Jacmelienne,,Jacmel (ses),18.233333,-72.533333,,0.2,,7670,273,141,,,,,,52114,,, +940,USA,,WADV,,Lebanon (PA),40.372778,-76.364722,,0.005,,6143,293,141,,,,,,40656,,, +940,CAN,en,CBXU,,Hudson's Hope (BC),56.027778,-121.919722,,0.04,,7093,331,142,,,,,,20109126,,, +940,HWA,en,KKNE,,Waipahu (HI),21.445278,-158.063611,,10,,11698,345,143,,0000-2400,1234567,1,,38536,,, +940,MEX,es,XERKS-AM La Poderosa,,Reynosa (tam),26.045411,-98.237961,,1,,8679,297,143,,,,,,44680,,, +940,USA,,KDIL,,Jerome (ID),42.727222,-114.626944,,0.25,,8047,319,143,,,,,,20016106,,, +940,USA,,WIDG,,St. Ignace (MI),45.862222,-84.781944,,0.004,,6240,303,143,,,,9,,41731,,, +940,USA,,WNRG,,Grundy (VA),37.302222,-82.117778,,0.014,,6739,294,143,,,,,,42501,,, +940,HND,,HRMH,,Santa Barbara (bar),15.416667,-88.416667,,1,,8984,283,144,,,,,,37800,,, +940,HND,,HRXW2,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37877,,, +940,MEX,es,XEHE-AM R Meldica,,Atotonilco El Alto (jal),20.549722,-102.507222,,1,,9430,297,145,,,,,,44106,,, +940,MEX,es,XERLA-AM,,Santa Rosala (bcs),27.310556,-112.285556,,1,,9369,308,145,,,,,,44683,,, +940,USA,,KMER,,Kemmerer (WY),41.799444,-110.545556,,0.15,,7943,315,145,,,,,,38894,,, +940,USA,,WCIT,,Lima (OH),40.7225,-84.084444,,0.006,,6592,298,145,,,,,,42176,,, +940,USA,,WCND,,Shelbyville (KY),38.213333,-85.171111,,0.01,,6855,297,145,,,,,,41046,,, +940,USA,,WECO,,Wartburg (TN),36.096667,-84.591944,,0.016,,6989,295,145,,,,,,41248,,, +940,ARG,,LRH200 R Chajar,,Chajar (er),-30.75,-57.983333,,3,,11131,232,146,,0900-0300,1234567,10,,51814,,, +940,USA,es,KWBY,,Woodburn (OR),45.176944,-122.849444,,0.2,,8161,325,146,,,,999,,39694,,, +940,B,pt,ZYH204 Rdio Verdes Florestas,,Cruzeiro do Sul (AC),-7.619286,-72.6982,,1,,9941,257,147,,,,,,36901624,,, +940,BOL,,CP145 R Metropolitana,,La Paz (lpz),-16.5,-68.116667,,1.3,,10435,248,147,,0900-0500,1234567,,,36648,,, +940,USA,,WGRP,,Greenville (N) (PA),41.386111,-80.409722,,0.002,,6318,296,147,,,,,,41560,,, +940,PRU,es,R Cutervo,,Cutervo (caj),-6.366667,-78.85,,1,,10244,262,148,,,,2,,37000059,,, +940,USA,,KSWM,,Aurora (MO),36.994167,-93.716111,,0.025,,7465,301,148,,,,,,39442,,, +940,USA,,KVSH,,Valentine (NE),42.865,-100.518611,,0.019,,7345,310,148,,,,,,39668,,, +940,BOL,,R San Lorenzo,,Colcapirhua (cbb),-17.416667,-66.25,,0.8,,10400,246,149,,0900-0200,1234567,,,51979,,, +940,USA,,KGMS,,Tucson (AZ),32.200833,-111.018056,,0.25,,8847,310,149,,,,,,38494,,, +940,USA,,WLQH,,Chiefland (FL),29.515278,-82.884722,,0.015,,7418,289,149,,,,,,42218,,, +940,MEX,es,XEREC-AM Romntica,,Villahermosa (tab),17.983333,-92.916667,,0.25,,9055,288,150,,,,,,34900018,,, +940,USA,,KICE,,Bend (OR),44.079722,-121.283056,,0.06,,8204,324,151,,,,59,,38578,,, +940,CAN,,CJML,,Burnaby (BC),49.251111,-123.001389,,0.02,,7775,328,152,,,,,,36133,,, +940,USA,en,WPTI814,,Clearwater (FL),27.9,-82.733333,,0.01,,7542,287,152,,,,,,20010592,,, +940,USA,en,WPTI814,,Clearwater/2166 Palmetto St. (FL),27.977194,-82.747583,,0.01,,7537,287,152,,,,,,20010593,,, +940,USA,en,WPTI814,,Largo/9685 Ulmerton Road (FL),27.895083,-82.77765,,0.01,,7545,287,152,,,,,,20010591,,, +940,USA,en,WPTI814,,Palm Harbor (FL),28.048778,-82.760986,,0.01,,7531,288,152,,,,,,20010596,,, +940,USA,en,WPTI814,,Pinellas Park/5000 82nd Ave North (FL),27.845806,-82.710969,,0.01,,7545,287,152,,,,,,20010594,,, +940,USA,en,WPTI814,,St. Petersburg/3101 5th Ave South (FL),27.766833,-82.676278,,0.01,,7549,287,152,,,,,,20010595,,, +940,MEX,es,XEYJ-AM La Mexicana,,Nueva Rosita (coa),27.948917,-101.245244,,0.1,,8690,301,153,,,,,,45094,,, +940,CHL,,CB94 R Valentin Letelier,,Valparaso (VS),-33.483333,-71.666667,,1,,12147,240,154,,,,,,35767,,, +940,MEX,,XEMMM-AM 940 Oldies,,Mexicali/Santa Isabel (bcn),32.627083,-115.580986,,0.1,,9039,314,154,,,,174,,45039,,, +940,USA,,KTFS,,Texarkana (TX),33.407778,-94.045833,,0.011,,7787,299,154,,,,,,39474,,, +940,URG,,CX67,,Isidoro Noblia (cl),-31.933333,-54.133333,,0.1,,11039,228,160,,,,,,36825,,, +942,CUB,es,R Progreso,,,21.7,-79.5,,1,,7848,281,135,,,,,,46823,,, +945,F,fr,France Info,,Toulouse/Muret (31),43.449722,1.340556,,300,,1034,203,43,,0000-2400,1234567,9982,,674,,, +945,ROU,ro,SRR R Romnia Actualităţi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0000-2400,1234567,996,,680,,, +945,G,en,Gold,,Bexhill-on-Sea (EN-ESU),50.838056,0.4475,,0.7,,436,253,63,,0000-2400,1234567,31,,676,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0410-0500,12345..,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0510-0600,.....67,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0710-0800,12345..,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1010-1030,12345..,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1310-1400,12345..,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1410-1500,......7,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1510-1600,123456,38,,681,,, +945,RUS,ru,GTRK Don-TR,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1610-1700,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0100-0410,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0100-0510,.....67,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0500-0710,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0600-1410,.....67,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,0800-1010,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1030-1310,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1400-1510,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1500-1510,.....6.,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1500-2210,......7,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1600-1610,12345..,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1600-2210,.....6.,38,,681,,, +945,RUS,ru,R Rossii,,Novocherkassk (RO),47.406,40.037361,,40,,2448,89,66,,1700-2210,12345..,38,,681,,, +945,G,en,Gold,,Derby/Quarndon (EN-DRB),52.9735,-1.507194,,0.2,,544,283,69,,0000-2400,1234567,18,,675,,, +945,GRC,el,R Playboy,,Piraeus (att-pir),37.95,23.629167,,6,,2065,133,70,,,,,,3400014,,, +945,ISR,he,Galei Zahal,,Tel Aviv/Yavne (tav),31.902972,34.756972,,50,,3207,123,72,,0000-2400,1234567,,,690,,, +945,IRN,,IRIB R Kordestan,,Dehgolan (kdn),35.290833,47.392222,,100,,3720,104,74,,,,,,678,,, +945,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (mae),15.215417,38.876417,,100,,5004,133,87,,0330-0630,1234567,,,2427,,, +945,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (mae),15.215417,38.876417,,100,,5004,133,87,,1400-1830,1234567,,,2427,,, +945,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ha'il (hal),27.466667,41.726528,,5,,4007,119,90,,0300-2300,1234567,,,673,,, +945,NIG,,R Kebbi,,Birnin Kebbi (kbb),12.387161,4.198222,,10,,4421,183,91,,0500-2300,1234567,,,2428,,, +945,G,,R Nightingale,,Rotherham Hospital (EN-SYK),53.4275,-1.3475,,0.001,,542,289,92,,,,1,,2800013,,, +945,SDN,,SRTC Sudan Nat. R,,Al-Foula (ks),11.721481,28.329572,,5,,4903,148,99,,,,,,47144,,, +945,CHN,ug,CNR 13,,Akqi=Aheqi/XJTS8109 (XJ),40.935556,78.435,,10,,5413,73,101,,0000-1800,1234567,,,36201098,,, +945,STP,pt,R.Nacional de So Tom e Principe,,Pinheira (sao),0.292331,6.748472,,20,,5762,180,102,,0000-2400,1234567,,,47056,,, +945,CHN,ug,CNR 13,,Kuqa=Kuche/SARFT8106 (XJ),41.717222,82.895278,,10,,5646,70,103,,0000-1800,1234567,,,36201099,,, +945,IND,,AIR East,,Sambalpur (OR),21.419722,84.033889,,100,,7311,86,110,,0025-0435,1234567,,,48990,,, +945,IND,,AIR East,,Sambalpur (OR),21.419722,84.033889,,100,,7311,86,110,,0630-0940,1234567,,,48990,,, +945,IND,,AIR East,,Sambalpur (OR),21.419722,84.033889,,100,,7311,86,110,,1130-1742,1234567,,,48990,,, +945,AGL,,RNA Rdio N'gola Yetu,,Mulenvos/Baixo (lua),-8.852056,13.317083,,25,,6811,172,111,,2200-2000,1234567,9933,,2371,,, +945,AGL,en,RNA Rdio N'gola Yetu,,Mulenvos/Baixo (lua),-8.852056,13.317083,,25,,6811,172,111,,2100-2200,1234567,9933,,2371,,, +945,AGL,fr,RNA Rdio N'gola Yetu,,Mulenvos/Baixo (lua),-8.852056,13.317083,,25,,6811,172,111,,2000-2100,1234567,9933,,2371,,, +945,CHN,zh,CNR 1,,Jiaohe/SARFT953 (JL),43.570278,127.2625,,400,,7961,41,111,,2025-1805,1234567,999,,48987,,, +945,CHN,ug,CNR 13,,Shache=Yarkant/SARFT8107 (XJ),38.417222,77.225833,,1,,5512,76,112,,0000-1800,1234567,,,36201100,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Qiqihar (HL),47.329722,124.056389,,50,,7475,41,115,,,,,,36200024,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Fujin/HLTS916 (HL),47.226667,131.950833,,50,,7819,36,118,,,,,,36200026,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Harbin/HLTS904 (HL),45.695556,126.819167,,50,,7745,40,118,,,,,,36200025,,, +945,BOT,,R Botswana,,Mmathethe (so),-25.303278,25.252539,,50,,8802,163,126,,0000-2400,1234567,,,20600003,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Hulin/HLTS923 (HL),45.766667,133,,10,,7999,36,127,,,,,,36200655,,, +945,CHN,zh,Hubei RGD Chutian Xinwen,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,1955-1705,1234567,,,48986,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Bei'an/HLTS918 (HL),48.254722,126.489444,,1,,7497,39,132,,,,,,36200657,,, +945,CHN,zh,Hubei RGD Chutian Xinwen,,Qichun/Caohe (HU),30.233333,115.416667,,10,,8565,57,132,,2000-1630,1234567,,,48988,,, +945,KOR,,HLQW KBS 1 R,,Boeun (ccb),36.493222,127.726167,,10,,8642,45,133,,0000-2400,1234567,,,49000,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Hegang/HLTS919 (HL),47.316944,130.213333,,1,,7740,37,134,,,,,,36200656,,, +945,THA,th,Thor. Or. 01,,Bangkok/Nimitmai Road (bmp),13.835783,100.739903,,10,,9089,78,134,,????-1700,1234567,,,49009,,, +945,THA,th,Thor. Phor. Song,,Kalasin/Aphai Road (kls),16.426111,103.513611,,10,,9046,74,134,,,,,,49008,,, +945,CHN,,Heilongjiang RGD Xiangcun Guangbo,,Mishan/SARFT914 (HL),45.644722,131.875278,,1,,7965,37,137,,,,,,36200654,,, +945,J,,JOXK NHK1,,Tokushima (shi-tok),34.066619,134.577522,,5,,9192,41,137,,0000-2400,1234567,,,48998,,, +945,PHL,tl,DWFB-AM R ng Bayan,,Laoag City (iln),18.206944,120.595,,10,,9959,60,137,,,,,,49047,,, +945,J,,JOIQ NHK1,,Muroran (hok),42.315278,140.9825,,3,,8643,33,138,,0000-2400,1234567,9996,,48997,,, +945,CHN,,Jining RGD Jiaotong,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,,,,,49022,,, +945,PHL,,DXDV-AM,,Butuan City/Baan (agn),8.95,125.566667,,10,,11114,61,141,,,,,,49003,,, +945,PHL,,DYRO-AM,,Roxas City (cpz),11.583333,122.75,,5,,10700,62,142,,,,,,49005,,, +945,J,,JOQP NHK1,,Hikone (kns-shi),35.25,136.166667,,1,,9147,39,144,,0000-2400,1234567,9990,,48996,,, +945,J,,NHK R 1,,Fukue (kyu-nag),32.7,128.85,,1,,9054,46,144,,0000-2400,1234567,,,48995,,, +945,PHL,,DXRO-AM Sonshine R,,Cotabato City (mag),7.233333,124.25,,5,,11194,63,144,,????-1300,1234567,,,49004,,, +945,INS,id,PM5CHV R Galundi Pradana,,Gando Sulit Air (SB-slk),-0.616667,100.633333,,1,,10350,87,148,,,,,,48991,,, +945,INS,id,PM4CPK Buana AM,,Wonosobo (JT-wos),-7.35,109.983333,,1,,11577,84,152,,,,,,48994,,, +945,SLM,,SIBC R Hapi Lagun,,Gizo (wsn),-8.102222,156.836944,,10,,14433,39,152,,1900-1200,1234567,,,49007,,, +945,INS,id,PM3CEE R TSM,,Lubuk Pakam (SU),3.55,98.866667,,0.25,,9864,86,153,,,,,,48992,,, +945,AUS,,3UZ Sport 927,,Bendigo/Eaglehawk (VIC),-36.705833,144.221556,,2,,16321,79,165,,,,,,48983,,, +945,AUS,,4HI/t Zinc HI,,Dysart (QLD),-22.569444,148.366944,,1,,15406,59,165,,0000-2400,1234567,,,48984,,, +945,NZL,en,2ZG Newstalk ZB,,Gisborne/Wainui (GIS),-38.693889,178.062778,,2,,18390,27,172,,0000-2400,1234567,,,49001,,, +949,XOE,,GAL,b,GSF Galaxy,57.395833,1.875,,0.025,,656,335,80,,,,,,86801,,, +949,RUS,,OE,b,Moskva/Vnukovo (MV),55.5625,37.291667,,0.025,,2045,67,93,,,,,,86802,,, +950,CAN,,CKNB,,Campbellton (NB),48.015944,-66.5785,,10,,5006,295,97,,,,63,,36347,,, +950,RUS,,KS,b,Kotlas (AR),61.270833,46.625,,0.025,,2607,51,99,,,,997,L1020 U1015 ,85808,,, +950,RUS,,LO,b,Kotlas (AR),61.1875,46.791667,,0.025,,2615,51,99,,,,,15.0s,IDx2,85809,, +950,USA,en,WKDN,,Philadelphia (D) (PA),39.974444,-75.271944,,43,,6104,292,102,,1200-2400,1234567,2,,42666,,, +950,USA,,WWJ,,Detroit (MI),42.019167,-83.239722,,50,,6441,299,104,,,,2,,43389,,, +950,USA,en,WKDN,,Philadelphia (N) (PA),40.154167,-75.369444,,21,,6097,292,105,,0000-1200,1234567,2,,20012524,,, +950,USA,,WIBX,,Utica (NY),43.103333,-75.341944,,5,,5879,295,109,,,,11,,41723,,, +950,CAN,,CFAM,,Altona (MB),49.0325,-97.949722,,10,,6701,313,114,,,,998,,35929,,, +950,USA,,WNTD,,Chicago (N) (IL),41.636667,-87.552778,,5,,6726,301,117,,,,,,20012552,,, +950,USA,,WROC,,Rochester (NY),43.106944,-77.5975,,1,,6018,296,117,,,,,,42896,,, +950,USA,,WORD,,Spartanburg (SC),34.981389,-81.987222,,5,,6915,292,119,,,,,,42620,,, +950,USA,en,KJR,,Seattle/Burien-Vashon Island (WA),47.433333,-122.467222,,50,,7929,326,119,,,,9950,,38692,,, +950,USA,en,WJKB,,Moncks Corner (SC),33.205556,-80.065,,6,,6935,290,119,,,,,,42798,,, +950,VEN,,YVKG AM Popular,,Caracas (dcf),10.416667,-66.916667,,50,,7959,263,120,,0000-2400,1234567,42,,45353,,, +950,USA,,WBES,,Charleston (WV),38.386389,-81.714167,,1,,6629,295,123,,,,0,,43347,,, +950,USA,,WNTD,,Chicago (D) (IL),41.860833,-87.686667,,1,,6716,301,124,,,,,,42516,,, +950,USA,,WROL,,Boston (MA),42.435833,-70.993056,,0.09,,5654,292,124,,,,1,,42899,,, +950,USA,en,WTLN,,Orlando (FL),28.535556,-81.448889,,5,,7406,287,124,,,,2,,43167,,, +950,B,pt,ZYI932 Rdio Joo de Paiva,,Altos (PI),-5.038653,-42.470439,,10,,7845,233,125,,,,,,36901625,,, +950,CUB,es,R Reloj,,Camagey/CTOM2 (cm),21.350153,-77.872003,,10,,7768,279,125,,,,0,,2035,,, +950,USA,,KTNF,,St. Louis Park (MN),44.868889,-93.419722,,1,,6800,307,125,,,,,,39515,,, +950,USA,es,WCTN,,Potomac-Cabin John (MD),39.036667,-77.2025,,0.35,,6296,292,125,,,,,,41097,,, +950,B,pt,ZYH593 Rdio Educadora do Nordeste,,Sobral (CE),-3.697133,-40.343867,,5,,7600,231,126,,,,,,36901635,,, +950,USA,,KMTX,,Helena (MT),46.674444,-112.018056,,5,,7569,319,126,,,,0,,38939,,, +950,USA,,KWAT,,Watertown (SD),44.87,-97.113611,,1,,6998,309,127,,,,,,39688,,, +950,USA,,WHVW,,Hyde Park (NY),41.746111,-73.912778,,0.057,,5888,293,128,,,,,,41701,,, +950,USA,en,KRWZ,,Parker (CO),39.875,-104.933333,,5,,7835,311,128,,,,0,,38717,,, +950,CUB,es,R Reloj,,Arroyo Arenas/CTOM1 (ch),23.051889,-82.475583,,5,,7932,284,129,,,,0,,2015,,, +950,USA,,KOEL,,Oelwein (IA),42.655833,-91.900556,,0.5,,6894,304,129,,,,,,39056,,, +950,ALS,en,KSEW,,Seward (AK),60.090833,-149.338889,,1,,7352,347,131,,,,1,,39441,,, +950,USA,,KPRC,,Houston (TX),29.805278,-95.278611,,5,,8171,298,132,,,,,,39159,,, +950,USA,,KWOS,,Jefferson City (MO),38.520278,-92.178333,,0.5,,7248,302,132,,,,,,39743,,, +950,SLV,,YSHG,,San Miguel (smg),13.466667,-88.166667,,14,,9138,282,133,,,,,,45277,,, +950,CLM,es,HJFN,,Pereira (ris),4.783333,-75.716667,,10,,9051,267,134,,,,,,37438,,, +950,CUB,es,R Revolucin,,Mayar Arriba (sc),20.418867,-75.536092,,1,,7689,277,134,,,,,,31600006,,, +950,B,pt,ZYH764 Rdio Difusora de Itumbiara,,Itumbiara (GO),-18.383911,-49.210322,,10,,9496,232,135,,,,,,36901637,,, +950,B,pt,ZYL212 Rdio Atalaia,,Belo Horizonte (MG),-19.944556,-44.017417,,10,,9378,227,135,,,,,,36901627,,, +950,MEX,es,XEOJN-AM,,San Lucas Ojitln (oax),18.059494,-96.394219,,10,,9272,291,135,,,,,,44490,,, +950,USA,,KOZE,,Lewiston (ID),46.392222,-117.034167,,1,,7811,322,135,,,,,,39122,,, +950,USA,,WERL,,Eagle River (WI),45.975556,-89.245556,,0.051,,6483,306,135,,,,,,41322,,, +950,USA,,WNCC,,Barnesboro (PA),40.679722,-78.740556,,0.029,,6268,295,135,,,,,,42444,,, +950,USA,,WXGI,,Richmond (VA),37.514444,-77.507778,,0.045,,6432,291,135,,,,,,43464,,, +950,ARG,es,LT16 R Esmeralda,,Roque Senz Pea (cc),-26.898975,-60.454136,,25,,10914,236,136,,0900-0300,1234567,,,40168,,, +950,CLM,es,HJUJ Armonias Boyacenses,,Motavita (boy),5.583333,-73.366667,,5,,8820,265,136,,,,204,,35901452,,, +950,EQA,,HCBZ1,,Quito (pic),-0.166667,-78.466667,,10,,9673,266,136,,,,,,36872,,, +950,USA,,KAHI,,Auburn (CA),38.857778,-121.0275,,5,,8696,321,136,,,,9,,37926,,, +950,USA,,KFSA,,Fort Smith (AR),35.432778,-94.470278,,0.5,,7640,301,136,,,,,,38430,,, +950,USA,,WDIG,,Steubenville (OH),40.446944,-80.568333,,0.035,,6399,296,136,,,,,,41163,,, +950,EQA,es,HCDE2 GRD Grupo Radial Delgado,,Guayaquil (gua),-2.25,-79.866667,,10,,9951,266,137,,,,993,,36899,,, +950,MEX,es,XEKAM-AM R Frmula,,Tijuana (bcn),32.402278,-117.086542,,5,,9134,315,137,,0000-2400,1234567,0,,44242,,, +950,ARG,es,LR3 R Nueve,,Buenos Aires/Bella Vista (df),-34.602028,-58.698306,,25,,11521,230,138,,0000-2400,1234567,4,,39924,,, +950,DOM,,HIIG R Popular,,Santo Domingo (sdo),18.55,-69.9,,0.25,,7463,271,138,,0000-2400,1234567,7,,37249,,, +950,GTM,,TGAF R Indiana,,Mazatenango (sup),14.516667,-91.5,,5,,9267,285,138,,,,,,40473,,, +950,MEX,es,XECEL-AM R Lobo,,Cortazar (gua),20.503286,-100.922722,,5,,9337,296,138,,,,,,43832,,, +950,USA,,WGTA,,Summerville (GA),34.464722,-85.353333,,0.11,,7168,294,138,,,,,,41570,,, +950,USA,,WPET,,Greensboro (NC),36.061667,-79.793056,,0.041,,6691,292,138,,,,,,42669,,, +950,PNR,es,Caracol Amrica,,Las Mercedes/Via Portobelo (clo),9.406411,-79.774244,,2.5,,8924,273,139,,,,,,52315,,, +950,PNR,es,HOL84 R Nacional,,Penonom/Llano Marn (ccl),8.506111,-80.3375,,3,,9041,273,139,,,,,,52314,,, +950,USA,,WAKM,,Franklin (TN),35.956667,-86.833889,,0.08,,7139,296,139,,,,,,40687,,, +950,USA,,WYWY,,Barbourville (KY),36.840556,-83.871111,,0.052,,6885,295,139,,,,,,43556,,, +950,USA,en,WXLW,,Indianapolis (IN),39.851389,-86.244444,,0.036,,6790,299,139,,,,,,20016048,,, +950,NCG,,YNCC R Rumbos de Rivas,,Rivas (rvs),11.433333,-85.85,,2.5,,9160,279,140,,1000-2400,1234567,,,52203,,, +950,B,pt,ZYI681 Rdio Jornal de Sousa,,Sousa (PB),-6.801931,-38.209025,,0.25,,7793,228,141,,,,,,36901640,,, +950,B,pt,ZYI782 Rdio Planalto,,Carpina (PE),-7.945,-35.118889,,0.25,,7755,224,141,,,,,,36901626,,, +950,MEX,es,XETO-AM Romntica,,Tampico (tam),22.234958,-97.861058,,2,,8993,295,141,,0000-2400,1234567,,,44844,,, +950,USA,,KJRG,,Newton (KS),38.044167,-97.3725,,0.147,,7585,305,141,,,,,,38694,,, +950,EQA,,HCUE5 La Voz de Aiiech,,Colta (chi),-1.716667,-78.75,,3,,9828,265,142,,,,,,37147,,, +950,USA,,KJTV,,Lubbock (TX),33.581389,-101.827222,,0.5,,8223,305,142,,,,,,38698,,, +950,USA,,KRRP,,Coushatta (LA),31.946944,-93.336944,,0.209,,7869,298,142,,,,,,39290,,, +950,USA,,KXJK,,Forrest City (AR),34.981389,-90.8575,,0.087,,7463,298,142,,,,,,39796,,, +950,USA,,WCLB,,Sheboygan (WI),43.7425,-87.816667,,0.011,,6576,303,142,,,,,,41021,,, +950,USA,en,WGUN,,Valdosta (GA),30.803611,-83.355556,,0.063,,7342,290,142,,,,,,41550,,, +950,B,pt,ZYI923 Rdio Boa Esperana,,Padre Marcos (PI),-7.364722,-40.902667,,0.25,,7987,230,143,,,,,,36901632,,, +950,BOL,,R Yurac Molino,,Chimboata (cbb),-17.616667,-65.283333,,3,,10358,245,143,,,,,,51980,,, +950,HND,,HRSK,,Catacamas (ola),14.933333,-85.966667,,1,,8862,281,143,,,,,,37844,,, +950,HND,,HRZE,,Puerto Cortes (cor),15.816667,-87.916667,,1,,8916,283,143,,,,,,37890,,, +950,MEX,es,XERN-AM R Naranjera,,Montemorelos (nvl),25.191422,-99.872483,,1,,8854,298,143,,,,,,44689,,, +950,B,pt,ZYH489 RBN-Rdio Bahia Nordeste,,Paulo Afonso/Rua So Lucas 470 (BA),-9.455078,-38.224961,,0.25,,8057,227,144,,,,,,36901631,,, +950,HND,,HRQL,,Siguatepeque (cmy),14.5,-87.866667,,1,,9027,282,144,,,,,,37828,,, +950,USA,en,WNZZ,,Montgomery (AL),32.421389,-86.164444,,0.045,,7387,293,144,,,,,,42546,,, +950,B,pt,ZYI439 Rdio Tucunar,,Juara (MT),-11.268381,-57.489883,,1,,9300,242,145,,,,,,36901628,,, +950,MEX,es,XECAA-AM Life,,Aguascalientes (agu),21.919722,-102.266111,,1,,9291,298,145,,,,,,43807,,, +950,MEX,es,XEZE-AM La Poderosa,,Santiago Ixcuintla (nay),21.800328,-105.235083,,1,,9480,300,145,,,,,,45133,,, +950,EQA,,HCJX6,,Banos (tun),-1.383333,-78.416667,,1,,9776,265,146,,,,,,36997,,, +950,MEX,es,XEACA-AM R Frmula 2,,Acapulco (gue),16.829231,-99.857033,,1,,9601,293,146,,,,,,43684,,, +950,MEX,es,XEFA-AM La Poderosa,,Chihuahua (chi),28.670636,-106.082722,,0.5,,8903,305,146,,,,,,43989,,, +950,USA,en,WHSY,,Hattiesburg (MS),31.375833,-89.330278,,0.064,,7672,295,146,,,,,,40869,,, +950,MEX,es,XEORF-AM R xitos,,El Fuerte (sin),25.957192,-108.912708,,0.5,,9310,305,148,,,,,,44511,,, +950,B,pt,ZYL281 Rdio Indy,,Bueno Brando (MG),-22.436772,-46.348317,,0.5,,9738,227,149,,,,,,36901636,,, +950,MEX,es,XEMAB-AM La Poderosa,,Ciudad del Carmen (cam),18.643811,-91.840019,,0.25,,8927,288,149,,,,,,44340,,, +950,MEX,es,XEMEX-AM La Mexicana,,Ciudad Guzmn (jal),19.741689,-103.461253,,0.5,,9561,297,149,,,,,,44369,,, +950,PRU,,OBU5R,,Challhuahuacho (apu),-14.116667,-72.25,,1,,10488,252,149,,,,,,37000097,,, +950,PRU,,OBX3S,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000081,,, +950,USA,,KNFT,,Bayard (NM),32.780833,-108.199444,,0.224,,8645,309,149,,,,,,38990,,, +950,USA,,KDCE,,Espanola (NM),36.002222,-106.066389,,0.08,,8240,309,150,,,,,,38244,,, +950,USA,,KMHR,,Boise (ID),43.627778,-116.507778,,0.035,,8047,320,152,,,,,,38999,,, +950,B,pt,ZYK510 Rdio Clube de Vera Cruz,,Vera Cruz (SP),-22.217211,-49.862836,,0.25,,9897,230,153,,,,,,36901633,,, +950,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010599,,, +950,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010597,,, +950,B,pt,ZYJ239 Rdio Difusora Cultural,,Irati (PR),-25.465556,-50.653333,,0.25,,10249,229,154,,,,,,36901634,,, +950,B,pt,ZYJ736 Rdio Vale Tijucas,,Tijucas (SC),-27.243611,-48.625556,,0.25,,10316,227,154,,,,,,36901630,,, +950,MEX,es,XEPB-AM R Amor,,Hermosillo (son),29.079217,-110.992653,,0.1,,9135,308,154,,1300-0800,1234567,,,44535,,, +950,B,pt,ZYK260 Rdio Independente,,Lajeado/Avenida Alberto Mller 242 (RS),-29.464167,-51.952222,,0.25,,10695,228,155,,,,,,36901639,,, +950,USA,,KTBR,i,Roseburg (OR),43.168889,-123.374444,,0.02,,8376,325,158,,,,,,39459,,, +950,USA,en,WE2XFZ,,Flying Horse/Felix Canyon Road (NM),33.002222,-105.048333,,0.0001,,8454,306,181,,,,,,20010598,,, +954,CZE,cs,ČRo Dvojka,,Dobrochov (JM),49.384444,17.123333,,200,,811,108,42,,0300-1500,12345..,9994,,685,,, +954,CZE,cs,ČRo Dvojka,,Dobrochov (JM),49.384444,17.123333,,200,,811,108,42,,0400-1500,.....67,9994,,685,,, +954,CZE,cs,ČRo Plus,,Dobrochov (JM),49.384444,17.123333,,200,,811,108,42,,1500-2300,1234567,9994,,685,,, +954,CZE,cs,ČRo Dvojka,,Česk Budějovice/Husova Kolonie (JC),48.988611,14.493611,,30,,668,118,49,,0300-1500,12345..,,,684,,, +954,CZE,cs,ČRo Dvojka,,Česk Budějovice/Husova Kolonie (JC),48.988611,14.493611,,30,,668,118,49,,0400-1500,.....67,,,684,,, +954,CZE,cs,ČRo Dvojka,,Karlovy Vary/Star Role (KA),50.238536,12.823108,,20,,493,112,49,,0300-1500,12345..,,,683,,, +954,CZE,cs,ČRo Dvojka,,Karlovy Vary/Star Role (KA),50.238536,12.823108,,20,,493,112,49,,0400-1500,.....67,,,683,,, +954,CZE,cs,ČRo Plus,,Česk Budějovice/Husova Kolonie (JC),48.988611,14.493611,,30,,668,118,49,,1500-2300,1234567,,,684,,, +954,CZE,cs,ČRo Plus,,Karlovy Vary/Star Role (KA),50.238536,12.823108,,20,,493,112,49,,1500-2300,1234567,,,683,,, +954,E,es,Onda Cero,,Madrid/Pozuelo de Alarcn (EAJ2/7) (MAD-M),40.428406,-3.808708,,50,,1515,215,55,,0000-2400,1234567,9990,,686,,, +954,TUR,tr,TRT 1 Radyo Bir,,Trabzon-Deliktas (kdz-tbz),40.987111,39.767333,,100,,2802,103,65,,0700-1600,1234567,1,,694,,, +954,QAT,ar,Al-Jazeera,,Al-Arish (msm),26.062528,51.083778,,1500,235,4709,110,72,,2130-0245,1234567,9964,,691,,, +954,QAT,ar,QBS Arabic,,Al-Arish (msm),26.062528,51.083778,,1500,235,4709,110,72,,0245-2130,1234567,9964,,691,,, +954,SYR,ar,SRTV 2 Sawt al-Sha'ab,,Deir ez-Zor=Dayr az-Zawr (dyz),35.399028,40.0835,,50,,3236,112,72,,0350-1600,1234567,,,693,,, +954,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,0000-2400,1234567,,,3400044,,, +954,IND,,AIR North,,Najibabad (UP),29.625556,78.3825,,100,,6257,84,100,,0030-0430,1234567,,,49026,,, +954,IND,,AIR North,,Najibabad (UP),29.625556,78.3825,,100,,6257,84,100,,0630-0935,1234567,,,49026,,, +954,IND,,AIR North,,Najibabad (UP),29.625556,78.3825,,100,,6257,84,100,,1130-1740,1234567,,,49026,,, +954,KEN,,KBC English Service,,Nyamninia (nyz),0.103333,34.5085,,100,,6349,146,101,,0200-2110,1234567,,,2429,,, +954,CHN,mn,Hulun Buir RGD Mongyol,,Hailar=Haila'er/NMTS763 (NM),49.301111,119.804167,,50,,7110,42,111,,,,,,49019,,, +954,ETH,,R Sidama,,Yirga Alem (snt),6.7414,38.402342,,2.5,,5828,138,111,,,,,,9600005,,, +954,CHN,,Lanzhou RGD,,Lanzhou (GS),36.033333,103.833333,,10,,7385,61,121,,,,,,49024,,, +954,J,ja,JOKR TBS Tokyo Hoso,,Tokyo/Toda (kan-tok),35.805278,139.658333,,100,,9238,37,125,,0000-2400,1234567,5,,49041,,, +954,CHN,,Anshan RGD,,Anshan (LN),41.116667,122.966667,,10,,7985,45,127,,2025-1400,1234567,,,49016,,, +954,CHN,,Hangzhou RGD,,Hangzhou (ZJ),30.266667,120.133333,,25,,8826,54,129,,2100-1700,1234567,,,49020,,, +954,CHN,,Hainan RGD,,Haikou (HA),19.985,110.346944,,30,,9172,67,130,,,,,,49018,,, +954,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,unknown (XJ),34.95,104.5,,1,,7515,61,132,,0000-1800,1234567,,,49015,,, +954,PHL,,DZEM-AM,,Obando (bul),14.710556,120.933056,,40,,10302,62,132,,0000-2400,1234567,,,49045,,, +954,THA,th,Thor. Or. 010,,Phitsanulok/Nai Muang (psl),16.812069,100.273361,,10,,8798,77,133,,2200-1700,1234567,,,49050,,, +954,THA,th,Thor. Or. 016,,Chanthaburi/1049 Tha Chalaep Rd (ctb),12.596444,102.104111,,10,,9288,78,135,,2200-1700,1234567,,,49049,,, +954,TWN,,Chien Kuo Kuangpo Tientai,,Hsinying (TN),23.331339,120.314044,,10,,9471,57,135,,0000-2400,1234567,,,49051,,, +954,CHN,,Hengshui RGD,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,49021,,, +954,CHN,,Luzhou RGD News,,Luzhou (SC),28.783333,105.35,,1,,8091,65,138,,2205-1130,123456,,,49025,,, +954,CHN,,Luzhou RGD News,,Luzhou (SC),28.783333,105.35,,1,,8091,65,138,,2205-1500,......7,,,49025,,, +954,PHL,,DZAL-AM,,Iriga City/San Roque (cas),13.416667,123.6,,5,,10581,60,142,,,,,,49046,,, +954,INS,,R Islam al-Iman Swaratama,,Bogor (JB-kbo),-6.6,106.783333,,1,,11294,86,151,,,,,,49029,,, +954,INS,id,R Benda Baru,,Tangerang/Pamulang (BT-tan),-6.344444,106.733333,,1,,11268,86,151,,,,,,35400134,,, +954,INS,id,RRI Pro-1,,Kendari/Lepo-Lepo (SG-ken),-4.018472,122.505256,,2,,12115,71,151,,2100-1600,1234567,,,49033,,, +954,PHL,,DXMP-AM Radyo ng Bayan,,Tangub City (moc),8.066667,123.75,,1,,11086,63,151,,,,,,33300018,,, +954,INS,,R Makkah AM,,Makassar (SN-mak),-5.15,119.433333,,1,,12016,75,154,,2100-1500,1234567,,,49035,,, +954,INS,id,Rama R,,Watansoppeng (SN),-4.35,119.883333,,1,,11974,74,154,,,,,,35400044,,, +954,INS,,R Sena Bahana Cakrawala,,Cibadak (JB-suk),-6.5625,106.95,,0.25,,11302,86,157,,,,,,35400133,,, +954,INS,id,PM7CLE Bazz R,,Palembang (SS-pal),-2.916667,104.75,,0.15,,10832,85,158,,,,,,49038,,, +954,INS,id,R El Bayu,,Gresik (JI-gre),-7.156111,112.658333,,0.25,,11741,81,159,,,,0,,49030,,, +954,AUS,en,2UE Talkr 954,,Sydney/Homebush Bay (NSW),-33.832311,151.07105,,5,,16548,68,162,,0000-2400,1234567,9847,,49014,,, +954,AUS,,4EL/t,,Gordonvale/Vohland Rd (QLD),-17.133889,145.856,,0.4,,14758,58,167,,0000-2400,1234567,,,49013,,, +954,NZL,,1XW LiveSPORT,,Hamilton (WKO),-37.779167,175.345833,,2,,18204,33,171,,,,,,49043,,, +954,NZL,,The Coast,,Dunedin/Centre Road (OTA),-45.886944,170.5675,,2,,18672,65,173,,,,,,52598,,, +957,KAZ,,KW,b,Kokshetau=Kksetau (aqm),53.3125,69.625,,0.025,,4119,62,114,,,,,U1020 15.1s,IDx2,85810,, +957,KAZ,,OT,b,Kokshetau=Kksetau (aqm),53.3125,69.625,,0.025,,4119,62,114,,,,,,86804,,, +959,XOE,,NJR,b,Noble Julie Robertson Platform,53.770833,0.708333,,0.025,,424,298,77,,,,999,L1020 U1018 ,ID+2 gap,85811,, +960,MDA,,L,b,Chişinău (CU),46.9375,28.958333,,0.025,,1718,101,90,,,,,,85813,,, +960,RUS,,L,b,Sankt-Peterburg/Pulkovo (SP),59.8125,30.291667,,0.025,,1702,50,90,,,,,L395 U402 ,ID+8.6 gap,85814,, +960,UKR,,CY,b,Chervonyi,50.0625,31.375,,0.025,,1750,88,90,,,,,L1030 U1037 30.0s,85812,,, +960,RUS,,M,b,Rzhev (TV),56.270833,34.375,,0.025,,1863,65,92,,,,,L650 U650 ,86805,,, +960,RUS,,RP,b,Sosnovkoye,55.8125,43.125,,0.025,,2407,66,97,,,,27,L1020 U1073 ,85815,,, +960,USA,,WEAV,,Plattsburgh (NY),44.574167,-73.448333,,5,,5658,295,107,,,,0,,41239,,, +960,USA,,WELI,i,New Haven (CT),41.370556,-72.9375,,5,,5854,292,109,,,,2,,41287,,, +960,USA,,WTGM,,Salisbury (MD),38.428889,-75.623889,,5,,6242,291,112,,,,,,43131,,, +960,CAN,en,CFAC,,Calgary (AB),50.989167,-113.84,,50,,7257,323,113,,,,9979,,35928,,, +960,USA,,WFGL,,Fitchburg (MA),42.59,-71.828611,,1,,5696,292,114,,,,,,41376,,, +960,USA,en,WFIR,,Roanoke (VA),37.255278,-79.959444,,5,,6607,293,116,,,,,,20012588,,, +960,USA,,WSBT,,South Bend (IN),41.616667,-86.216944,,5,,6649,300,117,,,,,,42961,,, +960,VEN,,YVRB R Monagas,,Maturin (mgs),9.75,-63.416667,,50,,7781,260,118,,,,,,45440,,, +960,USA,,WTCH,,Shawano (WI),44.780833,-88.631111,,1,,6541,304,122,,,,,,43117,,, +960,USA,en,KMA,,Shenandoah (IA),40.78,-95.356389,,5,,7242,305,122,,,,9966,,38871,,, +960,USA,,WERC,,Birmingham (AL),33.533889,-86.851944,,5,,7338,294,123,,,,,,41319,,, +960,USA,,WRNS,,Kinston (NC),35.2825,-77.6525,,1,,6615,290,123,,,,,,42892,,, +960,CAN,en,CKNT,,Mississauga (ON),43.614722,-79.673889,,0.28,,6107,298,124,,,,,,20109071,,, +960,CUB,es,R Reloj,,Guantnamo/CTOM2 (gu),20.1671,-75.169889,,10,,7685,276,124,,,,0,,31600022,,, +960,USA,,WRFC,,Athens (GA),33.999444,-83.433333,,2.5,,7086,292,124,,,,,,42839,,, +960,CLM,es,HJHN Caracol,,Magangu (bol),9.216667,-74.766667,,50,,8598,269,125,,,,134,,37476,,, +960,B,pt,ZYH241 Rdio Difusora,,Macei (AL),-9.553344,-35.782769,,10,,7948,224,127,,,,,,36901646,,, +960,PTR,es,WDNO,,Quebradillas (PR),18.335556,-67.030833,,1.7,,7285,269,128,,,,,,41000,,, +960,USA,,WCRU,,Dallas (NC),35.300833,-81.170278,,0.5,,6838,292,128,,,,,,43591,,, +960,USA,,WHAK,,Rogers City (MI),45.398056,-83.921944,,0.136,,6225,302,128,,,,,,41593,,, +960,B,pt,ZYH793 Rdio Jovem Palmas,,Palmas (TO),-10.151389,-48.310833,,25,,8659,235,129,,,,996,,36901647,,, +960,EQA,,HCAH2,,Guayaquil (gua),-2.2,-79.9,,50,,9949,266,130,,,,,,36842,,, +960,USA,,WATS,,Sayre (PA),41.996667,-76.500833,,0.05,,6031,295,130,,,,,,40761,,, +960,USA,en,WSVU,,North Palm Beach (FL),26.816944,-80.251944,,1.4,,7469,285,130,,,,,,41511,,, +960,PRU,,OAX4D R Panamericana,,Lima (lim),-12.066667,-76.916667,,50,,10615,257,132,,,,,,40304,,, +960,USA,,KZIM,,Cape Girardeau (MO),37.316389,-89.485,,0.5,,7188,299,132,,,,,,39890,,, +960,VEN,,YVSS R San Sebastian,,San Cristbal (tch),7.766667,-72.216667,,10,,8551,266,132,,1000-0500,1234567,,,45459,,, +960,USA,,KLAD,,Klamath Falls (OR),42.1625,-121.650278,,5,,8404,323,134,,,,,,38725,,, +960,USA,,WJYZ,,Albany (GA),31.618056,-84.175278,,0.39,,7327,291,134,,,,,,41946,,, +960,B,pt,ZYH618 Rdio Cultura do Sinhamuns,,Tau (CE),-6.008128,-40.299314,,1,,7823,230,135,,,,,,36901643,,, +960,USA,,KGWA,,Enid (OK),36.436944,-97.921111,,1,,7754,304,135,,,,,,38522,,, +960,USA,,WABG,,Greenwood (MS),33.555,-90.205556,,0.5,,7543,297,135,,,,,,40626,,, +960,CLM,es,HJHX,,Bucaramanga (sat),7.133333,-73.133333,,5,,8669,266,136,,,,,,35901456,,, +960,USA,,KKNT,,Phoenix (AZ),33.692778,-112.0025,,5,,8759,312,136,,,,988,,38737,,, +960,USA,,WDLM,,East Moline (IL),41.415833,-90.398333,,0.102,,6909,303,136,,,,,,41175,,, +960,USA,,WHYL,,Carlisle (PA),40.192778,-77.174444,,0.022,,6207,293,136,,,,,,41703,,, +960,USA,,WKVX,,Wooster (OH),40.791944,-81.904722,,0.032,,6454,297,136,,,,,,42091,,, +960,USA,en,KALE,,Richland (WA),46.242778,-119.178056,,1,,7913,324,136,,,,,,37934,,, +960,USA,en,KNEW,,Oakland (IBOC) (CA),37.827778,-122.314722,,5,,8851,321,136,,,,0,,39195,,, +960,B,pt,ZYK689 Rdio So Paulo,,So Paulo/Jardim Santa Emilia (SP),-23.646111,-46.601111,,10,,9868,227,137,,,,,,36901649,,, +960,CTR,,TICS Premium R,,San Jos (sjs),9.933333,-84.066667,,5,,9170,277,137,,0000-2400,1234567,,,40576,,, +960,DOM,es,HIFF LV del Atlantico,,San Felipe de Puerto Plata (ppl),19.800644,-70.708911,,0.25,,7412,273,137,,1000-0500,1234567,,,37246,,, +960,USA,,KNEB,,Scottsbluff (NE),41.791667,-103.641389,,0.35,,7600,311,138,,,,,,38977,,, +960,USA,,KOVO,,Provo (UT),40.212222,-111.670278,,1,,8141,315,138,,,,,,39114,,, +960,HTI,,R Carillon,,Port-au-Prince (oue),18.516667,-72.316667,,0.3,,7631,273,139,,,,,,35635,,, +960,USA,,KLTF,,Little Falls (MN),46.004444,-94.328333,,0.038,,6758,309,139,,,,,,38847,,, +960,VEN,,R Venezuela Llanera 960,,Acarigua (ptg),9.55,-69.216667,,1,,8191,265,139,,,,995,,2016,,, +960,NCG,,La Voz del Tropico Hmedo,,San Carlos (rsj),11.116667,-84.783333,,2.5,,9115,278,140,,1000-0300,1234567,,,52204,,, +960,USA,,KFLN,,Baker (MT),46.375278,-104.273611,,0.091,,7235,315,140,,,,,,38405,,, +960,USA,,KGKL,,San Angelo (TX),31.494444,-100.414444,,1,,8327,302,140,,,,,,38486,,, +960,MEX,es,XEHK-AM,,Guadalajara (jal),20.676786,-103.354406,,2.5,,9469,298,141,,,,999,,44122,,, +960,USA,,WQLA,,La Follette (TN),36.367222,-84.147222,,0.033,,6940,295,141,,,,,,41527,,, +960,B,pt,ZYI551 Rdio Clube 960,,Itaituba (PA),-4.253594,-55.971633,,1,,8559,245,142,,,,,,36901651,,, +960,USA,,WBMC,,McMinnville (TN),35.666667,-85.776389,,0.038,,7097,295,142,,,,,,40878,,, +960,MEX,es,XEK-AM,,Nuevo Laredo (tam),27.278611,-99.526833,,1,,8648,299,143,,,,,,44238,,, +960,PNR,es,HOFFM R Capital,,San Pedro (pnm),9.045025,-79.461889,,1,,8934,272,143,,,,,,37683,,, +960,USA,,WPRT,,Prestonsburg (KY),37.646111,-82.796111,,0.013,,6754,295,143,,,,,,42733,,, +960,CHL,es,CB96 R Carrera,,Santiago/La Pintana (RM),-33.589633,-70.656789,,10,,12097,239,144,,1100-0400,1234567,,,35768,,, +960,GTM,,TGRU Emisoras Unidas Utatln,,Santa Cruz del Quich (qch),15.016667,-91.15,,1,,9200,285,144,,,,,,40539,,, +960,HND,,HRYF,,Choluteca (cho),13.3,-87.166667,,1,,9085,281,144,,,,,,37881,,, +960,MEX,es,XECZ-AM ABC R,,San Luis Potos (slp),22.152778,-100.98,,1,,9192,297,144,,,,,,43892,,, +960,MEX,es,XEFAMA-AM La Fama,,Ciudad Camargo (chi),27.704156,-105.183244,,1,,8940,303,144,,,,,,43822,,, +960,PNR,es,HOM33 AM Tropical,,La Concepcin (chq),8.516944,-82.622778,,1,,9195,274,144,,,,,,52316,,, +960,SLV,es,YSTW R Centro,,Sonsonate (ssn),13.716667,-89.716667,,1,,9219,283,144,,,,,,45327,,, +960,MEX,es,XEMM-AM 960 Noticias,,Morelia/Col. Ventura Puente (mic),19.690225,-101.181278,,1,,9426,296,145,,,,,,44387,,, +960,MEX,es,XETAP-AM La Poderosa,,Tapachula (cps),14.891911,-92.246403,,1,,9283,286,145,,,,,,44794,,, +960,MEX,es,XEXC-AM ABC R,,Taxco de Alarcn (gue),18.551944,-99.599722,,1,,9430,294,145,,,,,,45045,,, +960,USA,,KCGS,,Marshall (AR),35.915556,-92.638889,,0.044,,7492,300,145,,,,,,38144,,, +960,ARG,,LRA6 R Nacional,,Mendoza (mz),-32.883333,-68.816667,,5,,11928,238,146,,1000-0500,1234567,,,40258,,, +960,ARG,,LU13 R Necochea,,Necochea (ba),-38.538317,-58.732044,,5,,11880,228,146,,0900-0400,1234567,,,40206,,, +960,EQA,es,HCNC1 La Pantera,,Quito (tun),-1.166667,-78.5,,1,,9763,265,146,,,,,,37037,,, +960,MEX,es,XEROO-AM La Guadalupana,,Chetumal (qui),18.521344,-88.287969,,0.5,,8705,285,146,,,,,,44695,,, +960,EQA,,HCSA5 R Sononda Internacional,,Cuenca (azu),-2.866667,-79.033333,,1,,9949,265,147,,,,,,37126,,, +960,MEX,es,XEIQ-AM Extasis 960,,Ciudad Obregn (son),27.514083,-109.952689,,0.5,,9224,307,147,,,,,,44177,,, +960,USA,,KIMP,,Mount Pleasant (TX),33.165,-95.0075,,0.075,,7865,300,147,,,,,,38615,,, +960,USA,,KROF,,Abbeville (LA),30.011111,-92.1225,,0.095,,7960,296,147,,,,,,39281,,, +960,USA,,KSRA,,Salmon (ID),45.183889,-113.87,,0.056,,7787,320,147,,,,,,39410,,, +960,USA,,KNDN,,Farmington (NM),36.73,-108.229722,,0.163,,8287,311,148,,,,402,,38974,,, +960,USA,,WLPR,,Prichard (AL),30.763889,-88.11,,0.032,,7647,293,148,,,,,,42217,,, +960,CHL,es,CD96 R Polar,,Punta Arenas (MA),-53.158503,-70.915467,,10,,13724,224,149,,0000-2400,1234567,,,35924,,, +960,MEX,es,XEUQ-AM R Variedades,,Zihuatanejo (gue),17.646414,-101.568311,,0.5,,9634,295,149,,,,,,44924,,, +960,PRU,es,R Manantial,,Huancayo (jun),-12.133333,-75.266667,,1,,10511,256,149,,,,,,37000044,,, +960,B,pt,ZYK291 Rdio Imembu,,Santa Maria (RS),-29.697222,-53.806111,,1,,10812,229,150,,,,,,36901650,,, +960,MEX,es,XEOZ-AM Amor,,Xalapa/Las nimas (vcz),19.519339,-96.885983,,0.25,,9173,292,150,,,,,,44522,,, +960,B,pt,ZYI216 Rdio Diocesana,,Cachoeiro de Itapemirim (ES),-20.822856,-41.141072,,0.25,,9325,224,151,,,,976,,36901648,,, +960,B,pt,ZYJ257 Rdio Difusora Maring,,Maring (PR),-23.363611,-51.9,,0.25,,10115,231,153,,,,,,36901641,,, +960,MEX,es,XEKS-AM,,Saltillo (coa),25.443611,-100.989444,,0.1,,8898,299,153,,,,,,44266,,, +960,B,pt,ZYJ733 Rdio Guaruj,,Orleans (SC),-28.354167,-49.231944,,0.25,,10452,227,154,,,,,,36901645,,, +960,URG,,CW96 R Yi,,Durazno (du),-33.366667,-56.516667,,0.5,,11294,229,154,,1000-0200,1234567,,,36781,,, +960,B,pt,ZYJ813 Rdio Super Difusora,,Xanxer (SC),-26.871111,-52.384722,,0.25,,10472,230,155,,,,,,36901642,,, +960,BOL,,CP93 R Kollasuyo,,Potosi (pts),-19.566667,-65.766667,,0.25,,10564,244,155,,0930-2400,1234567,,,36720,,, +960,USA,,KIXW,,Apple Valley (CA),34.516667,-117.226389,,0.02,,8939,316,160,,,,99705,,38651,,, +963,TUN,xx,RTT R.Tunis Chane Int.,,Tunis/Djedeida (tun),36.836556,9.929472,,100,,1721,169,54,,0200-2300,1234567,0,,711,,, +963,BUL,bg,BNR Horizont,,Dragoman (sof),42.907094,22.926144,,40,,1602,123,57,,0000-2400,1234567,,,697,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,0000-0100,1234567,,,783,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,0252-0600,1234567,,,783,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,0800-1300,1234567,,,783,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,1500-1830,1234567,,,783,,, +963,BUL,bg,BNR Horizont,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,2030-2400,1234567,,,783,,, +963,BUL,tr,R Bulgaria,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,0600-0800,1234567,,,783,,, +963,BUL,tr,R Bulgaria,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,1300-1500,1234567,,,783,,, +963,BUL,tr,R Bulgaria,,Kardzhali/Gledka (kzl),41.604444,25.373333,,50,,1846,122,59,,1830-2030,1234567,,,783,,, +963,G,,Sunrise R 2,,East London/Lea Bridge Road (EN-GTL),51.561944,-0.038611,,0.95,,447,265,62,,0000-2400,1234567,9977,,703,,, +963,CYP,el,CyBC-RIK Proto Prog.,,Nicosia (kyp-nic),35.053092,33.296217,,100,,2849,121,66,,0000-2400,1234567,,,700,,, +963,POR,pt,Rdio Sim,,Seixal/Moinho de Mar (set),38.638647,-9.087883,,10,,1918,225,66,,0000-2400,1234567,3,,708,,, +963,POL,pl,Twoje R Lubliniec,,Lubliniec/Komin C Lubliniec (SL),50.678333,18.667222,,0.8,,864,96,67,,0600-0700,1234567,,,6400005,,, +963,POL,pl,Twoje R Lubliniec,,Lubliniec/Komin C Lubliniec (SL),50.678333,18.667222,,0.8,,864,96,67,,1600-1700,1234567,,,6400005,,, +963,POL,pl,Twoje R,,Lubliniec/Komin C Lubliniec (SL),50.678333,18.667222,,0.8,,864,96,67,,0700-1600,1234567,,,6400005,,, +963,POL,pl,Twoje R,,Lubliniec/Komin C Lubliniec (SL),50.678333,18.667222,,0.8,,864,96,67,,1700-0600,1234567,,,6400005,,, +963,G,,Asian Sound R,,Haslingden/Cribden Hill (EN-LNC),53.708472,-2.311333,,0.2,,611,290,70,,0000-2400,1234567,46,,704,,, +963,POL,pl,R AM,,Brzesko/Komin MPEC (MP),49.973889,20.628611,,0.5,,1020,98,70,,0000-2400,1234567,,,6400025,,, +963,POL,pl,Twoje R Lubaczw,,Lubaczw/Starostwo Powiatowe (PK),50.158056,23.121389,,0.8,,1183,94,70,,0600-0700,1234567,,,6400006,,, +963,POL,pl,Twoje R Lubaczw,,Lubaczw/Starostwo Powiatowe (PK),50.158056,23.121389,,0.8,,1183,94,70,,1500-1600,1234567,,,6400006,,, +963,POL,pl,Twoje R,,Lubaczw/Starostwo Powiatowe (PK),50.158056,23.121389,,0.8,,1183,94,70,,0700-1500,1234567,,,6400006,,, +963,POL,pl,Twoje R,,Lubaczw/Starostwo Powiatowe (PK),50.158056,23.121389,,0.8,,1183,94,70,,1600-0600,1234567,,,6400006,,, +963,POL,pl,Twoje R Lipsko,,Lipsko/ul. Przemysłowa 22 (MW),51.151389,21.656667,,0.1,,1056,90,78,,0630-0730,1234567,,,707,,, +963,POL,pl,Twoje R Lipsko,,Lipsko/ul. Przemysłowa 22 (MW),51.151389,21.656667,,0.1,,1056,90,78,,1630-1730,1234567,,,707,,, +963,POL,pl,Twoje R,,Lipsko/ul. Przemysłowa 22 (MW),51.151389,21.656667,,0.1,,1056,90,78,,0730-1630,1234567,,,707,,, +963,POL,pl,Twoje R,,Lipsko/ul. Przemysłowa 22 (MW),51.151389,21.656667,,0.1,,1056,90,78,,1730-0630,1234567,,,707,,, +963,IRN,fa,IRIB R Iran,,Birjand (skh),32.818511,59.335794,,200,,4711,96,81,,,,,,705,,, +963,SDN,ar,SRTC As-Salam R,,Khartoum/Soba (kha),15.475339,32.620111,,100,,4685,141,84,,1000-0600,1234567,,,2434,,, +963,KWT,ar,R Kuwait Main Arabic,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,0000-0500,1234567,,,706,,, +963,KWT,ar,R Kuwait Main Arabic,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,1200-1600,1234567,,,706,,, +963,KWT,ar,R Kuwait Main Arabic,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,2100-2400,1234567,,,706,,, +963,KWT,en,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,0500-0800,1234567,,,706,,, +963,KWT,en,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,1800-2100,1234567,,,706,,, +963,KWT,fa,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,0800-1000,1234567,,,706,,, +963,KWT,tl,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,1000-1200,1234567,,,706,,, +963,KWT,ur,R Kuwait Int. Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.182428,48.039461,,20,290,4250,110,87,,1600-1800,1234567,,,706,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Tacheng=Qoqek/SARFT634 (XJ),46.745556,83.006667,,10,,5310,64,100,,0000-1800,1234567,,,49062,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,10,,5398,68,101,,,,,,36200021,,, +963,RUS,xx,R Rossii,,Zakamensk/SRV20 (BU),50.352272,103.273361,,25,,6214,50,105,,2057-1700,1234567,,,49083,,, +963,RUS,,KCH,b,Orenburg-2 (OB),51.729167,55.041667,,0.025,,3272,71,106,,,,,,86806,,, +963,RUS,,NS,b,Orenburg-2 (OB),51.729167,55.041667,,0.025,,3272,71,106,,,,,U1040 ,86807,,, +963,CHN,ru,China R Int.,,Huadian/SARFT763 (JL),43.121056,126.51575,,600,25,7969,42,109,,1000-1600,1234567,999,,49061,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Kaba=Habahe/SARFT8114 (XJ),48.075,86.404722,,1,,5428,61,111,,,,,,36200023,,, +963,IND,,AIR West,,Jalgaon (MH),20.915556,75.523333,,20,,6772,93,112,,0025-0430,1234567,,,49067,,, +963,IND,,AIR West,,Jalgaon (MH),20.915556,75.523333,,20,,6772,93,112,,0700-1000,1234567,,,49067,,, +963,IND,,AIR West,,Jalgaon (MH),20.915556,75.523333,,20,,6772,93,112,,1200-1740,1234567,,,49067,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Fuyun=Koktokay/XJTS8115 (XJ),46.994167,89.503889,,1,,5686,60,114,,0845-1600,1234567,,,49066,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Fuyun=Koktokay/XJTS8115 (XJ),46.994167,89.503889,,1,,5686,60,114,,2150-0540,1234567,,,49066,,, +963,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Mori=Mulei/SARFT8112 (XJ),43.811111,90.274722,,1,,5958,63,117,,,,,,36200022,,, +963,BGD,,Bangladesh Betar,,Sylhet (syl),24.893942,91.906147,,20,,7552,77,120,,0000-0400,1234567,,,49060,,, +963,BGD,,Bangladesh Betar,,Sylhet (syl),24.893942,91.906147,,20,,7552,77,120,,0800-1710,1234567,,,49060,,, +963,MOZ,pt,Emisso Provincial de Tete,,Tete (tte),-16.128094,33.623208,,50,,8030,153,120,,0250-2200,1234567,,,2433,,, +963,CHN,,Liaoning RGD Xinwen Tai,,Dalian/LNTS303 (LN),39.087778,121.677778,,50,,8106,47,121,,,,,,49064,,, +963,CHN,,Liaoning RGD Xinwen Tai,,Jinzhou (LN),41.116667,121.116667,,20,,7895,46,123,,,,,,36200652,,, +963,CHN,,Liaoning RGD Xinwen Tai,,Beipiao/LNTS330 (LN),41.8,120.783333,,10,,7817,46,125,,,,,,36200653,,, +963,CHN,,Handan RGD,,Handan/Nanbao Xiang (HB),36.558056,114.522778,,10,,7954,54,127,,,,,,49065,,, +963,THA,th,Sor. Wor. Sor.,,Krabi/Nua Khlong (krb),8.113111,98.998653,,25,,9472,83,131,,2130-1700,1234567,,,49085,,, +963,CHN,,Huangshi RGD News,,Huangshi (HU),30.216667,115.1,,10,,8548,57,132,,,,,,50976,,, +963,TWN,,BCC Country Network,,New Taipei City/Panchiao (TP),24.983822,121.436597,,20,,9383,56,132,,0000-2400,1234567,,,49052,,, +963,KOR,,HLCR KBS 1 R,,Andong (gsb),36.543056,128.696306,,10,,8683,44,133,,0000-2400,1234567,,,49076,,, +963,KOR,,HLKS KBS 1 R,,Jeju=Cheju (jej),33.4475,126.566111,,10,,8870,47,133,,0000-2400,1234567,,,49077,,, +963,THA,th,Phon Mor. Song,,Bangkok/Samsen Road (bmp),13.793661,100.519792,,10,,9078,78,134,,,,,,49084,,, +963,TWN,,Taiwan Guangbo Gongsi,,Nanto/Chunghsing (NT),24.001867,120.663639,,10,,9430,57,135,,,,,,49086,,, +963,J,,JOTG NHK1,,Aomori (toh-aom),40.793889,140.7575,,5,,8786,33,136,,0000-2400,1234567,9993,,49071,,, +963,J,,JOZK NHK1,,Matsuyama (shi-ehi),33.816667,132.733333,,5,,9132,43,137,,0000-2400,1234567,,,49073,,, +963,PHL,,DZNS-AM Radyo Totoo,,Vigan City (ils),17.566667,120.366667,,5,,10005,61,140,,2100-1300,1234567,,,49081,,, +963,PHL,tl,DYMF-AM Bombo Radyo,,Cebu City (ceb),10.25,123.95,,10,,10896,62,140,,1945-????,1234567,,,49080,,, +963,INS,id,RRI Pro-1,,Jember (JI-jem),-8.185467,113.620208,,10,,11897,81,143,,2200-1700,1234567,0,,49070,,, +963,J,,JOLQ NHK1,,Yonago (chg-tot),35.45,133.316667,,1,,9001,41,144,,0000-2400,1234567,,,49075,,, +963,J,,JOSP NHK1,,Saga (kyu-sag),33.251944,130.265833,,1,,9070,45,144,,0000-2400,1234567,,,49074,,, +963,J,,NHK R 1,,Hagi (chg-yam),34.583333,131.4,,1,,8997,43,144,,0000-2400,1234567,,,49072,,, +963,PHL,,DXYZ-AM Sonshine R,,Zamboanga City (zds),6.933333,122.066667,,5,,11088,65,144,,,,,,49082,,, +963,AUS,,6TZ R West,,Bunbury/Wireless Road (WA),-33.339494,115.753394,,2,,14137,99,158,,0000-2400,1234567,,,49056,,, +963,AUS,,5SE,,Mount Gambier/Stonehaven (SA),-37.795944,140.721944,,5,,16163,84,160,,0000-2400,1234567,,,49058,,, +963,AUS,en,4WK,,Warwick/Clifton (QLD),-28.023139,151.9775,,5,,16110,60,160,,0000-2400,1234567,76,,49059,,, +963,AUS,,2RG,,Griffith (NSW),-34.327278,146.133333,,5,,16268,74,161,,0000-2400,1234567,,,49057,,, +963,NZL,en,3YC Southern Star/RNZ Parliament,,Christchurch/Gebbies Pass (CAN),-43.695706,172.647833,,10,,18631,53,166,,0000-2400,1234567,,,49078,,, +965,RUS,,B,b,Kazan (TS),55.604167,49.291667,,0.025,,2793,65,101,,,,,,85816,,, +970,RUS,,KQ,b,Tambov (TA),52.6875,41.375,,0.025,,2350,74,96,,,,,L965 ,85820,,, +970,RUS,,SM,b,Tambov (TA),52.6875,41.375,,0.025,,2350,74,96,,,,,,85821,,, +970,RUS,,US,b,Yelshanka,51.8125,46.375,,0.025,,2704,75,100,,,,,,85822,,, +970,USA,en,WZAN,,Portland/Sunset Park (ME),43.605278,-70.321667,,5,,5530,293,105,,,,9986,,43564,,, +970,USA,,WNYM,,Hackensack (NJ),40.911111,-74.028333,,5,,5956,292,110,,,,18,,43367,,, +970,USA,en,WDCZ,,Buffalo (NY),42.744722,-78.886944,,5,,6123,297,111,,,,3,,42456,,, +970,USA,,WBGG,,Pittsburgh (PA),40.510833,-80.0075,,5,,6359,295,114,,,,,,40842,,, +970,ALS,,KFBX,,Fairbanks (AK),64.88,-147.674722,,10,,6817,348,115,,0000-2400,1234567,996,,38379,,, +970,USA,,WDAY,,Fargo/Barnesville (ND),46.646667,-96.363889,,10,,6813,310,115,,,,998,,41126,,, +970,USA,,WGTK,,Louisville (KY),38.318056,-85.744167,,5,,6882,297,119,,,,,,41573,,, +970,USA,,WFUN,,Ashtabula (OH),41.814444,-80.779167,,1,,6308,297,120,,,,,,41455,,, +970,USA,en,WWRK,,Florence (SC),34.233889,-79.781667,,3,,6835,290,121,,,,,,41902,,, +970,USA,,WAMD,,Aberdeen (MD),39.509722,-76.193889,,0.5,,6197,292,122,,,,,,40704,,, +970,USA,,WKHM,,Jackson (MI),42.194167,-84.430556,,1,,6498,300,122,,,,,,42013,,, +970,USA,en,WFLA,,Tampa (FL),28.020556,-82.609444,,11,,7524,287,122,,,,10,,41394,,, +970,USA,en,WKCI,,Waynesboro (VA),38.086667,-78.911667,,1,,6477,293,122,,,,,,41973,,, +970,USA,,WERH,,Hamilton (AL),34.116944,-87.991389,,5,,7361,296,124,,,,,,41321,,, +970,CLM,es,HJME,,Maicao (lag),11.366667,-72.216667,,25,,8237,268,125,,,,,,37563,,, +970,USA,,KBUL,,Billings (MT),45.743056,-108.543333,,5,,7494,317,125,,,,0,,38107,,, +970,VEN,,YVLR R Continente 970 Maracay,,Maracay (arg),10.316667,-67.666667,,10,,8019,264,127,,0900-0400,1234567,2,,45372,,, +970,USA,,KQAQ,,Austin (MN),43.7075,-92.945833,,0.5,,6868,306,129,,,,17,,38991,,, +970,VIR,,WSTX,,Christiansted (stc),17.756389,-64.693889,,1,,7175,266,129,,,,7,,43078,,, +970,CLM,es,HJVK,,Florencia (caq),1.616667,-75.616667,,30,,9322,265,130,,,,,,35901461,,, +970,CUB,es,R Guam,,Los Palacios (pr),22.653397,-83.224986,,5,,8016,284,130,,,,,,36446,,, +970,USA,,WBLF,,Bellefonte (PA),40.903333,-77.768333,,0.07,,6191,294,130,,,,,,40874,,, +970,USA,,WMAY,,Springfield (IL),39.861667,-89.542222,,0.5,,6984,301,130,,,,,,42276,,, +970,VEN,,YVSD R Tourismo,,Valera (tjl),9.316667,-70.583333,,10,,8304,265,130,,0855-0355,1234567,,,45453,,, +970,USA,,KUFO,,Portland (OR),45.515556,-122.732222,,5,,8124,325,131,,,,9960,,39589,,, +970,USA,,WCHN,,Norwich (NY),42.506389,-75.492778,,0.034,,5932,295,131,,,,,,40997,,, +970,USA,,WESO,,Southbridge (MA),42.066389,-71.991111,,0.021,,5744,292,131,,,,,,41326,,, +970,USA,,KFTA,,Rupert (D) (ID),42.601944,-113.7225,,2.5,,8018,318,133,,,,9816,,38435,,, +970,USA,,WRCS,,Ahoskie (NC),36.279444,-77.033056,,0.08,,6497,290,133,,,,,,42824,,, +970,USA,,WZAM,,Ishpeming (MI),46.505556,-87.54,,0.062,,6348,305,133,,,,,,43563,,, +970,B,pt,ZYH451 Rdio Sociedade,,Feira de Santana (BA),-12.271461,-38.930919,,5,,8371,226,134,,,,,,36901666,,, +970,CLM,es,HJCI R Red,,Bogot D. C. (bdc),4.583333,-74.066667,,10,,8956,265,134,,,,994,,37370,,, +970,USA,,KCFO,,Tulsa (OK),36.196111,-96.039444,,1,,7667,302,134,,,,,,38142,,, +970,USA,en,KTTO,,Spokane (WA),47.616389,-117.365278,,1,,7711,323,134,,,,,,20016029,,, +970,CUB,es,R Rebelde,,Trinidad (ss),21.788014,-79.986067,,1,,7873,281,136,,,,9998,,31600115,,, +970,EQA,,HCOT1,,Santo Domingo de los Colorados (pic),-0.166667,-79.066667,,10,,9713,266,136,,,,,,37052,,, +970,MEX,es,XEJ-AM La Mexicana,,Ciudad Jurez (chi),31.682728,-106.357019,,5,,8645,307,136,,,,,,44193,,, +970,USA,,KSYL,,Alexandria (D) (LA),31.326389,-92.489444,,1,,7871,297,136,,,,,,39447,,, +970,USA,,KSYL,,Alexandria (N) (LA),31.326389,-92.489167,,1,,7871,297,136,,,,,,20016290,,, +970,USA,en,WMPW,,Danville (VA),36.559444,-79.367222,,0.054,,6624,292,136,,,,,,20012511,,, +970,B,pt,ZYI910 Rdio Vale do Parnaba,,Luzilndia (PI),-3.469147,-42.362922,,0.5,,7687,233,137,,,,,,36901667,,, +970,DOM,,HIVP R Olimpica,,Villa Tapia (hmb),19.3,-70.416667,,0.25,,7435,272,137,,1000-0300,1234567,,,37316,,, +970,EQA,,HCAW2,,Guayaquil (gua),-2.105278,-79.926944,,10,,9942,266,137,,,,,,36856,,, +970,MEX,es,XEVT-AM,,Villahermosa (tab),17.930625,-93.0037,,5,,9065,288,137,,,,,,44993,,, +970,USA,,KHTY,,Bakersfield (CA),35.45,-118.946667,,5,,8931,318,137,,,,,,38467,,, +970,USA,,WHA,,Madison (WI),43.041667,-89.408611,,0.051,,6722,303,137,,,,,,41591,,, +970,USA,,WNNR,,Jacksonville (FL),30.385556,-81.667778,,0.164,,7267,288,137,,,,,,42488,,, +970,BOL,,CP30 R Santa Cruz,,Santa Cruz (scz),-17.766667,-63.166667,,10,,10242,243,138,,0900-0100,1234567,,,51982,,, +970,USA,,KFTA,,Rupert (N) (ID),42.602778,-113.7225,,0.9,,8018,318,138,,,,,,20016219,,, +970,B,pt,ZYK201 Rdio Pampa,,Porto Alegre/Ilha da Pintada (RS),-30.016217,-51.261889,,10,,10712,227,139,,,,,,36901668,,, +970,MEX,es,XERFR-AM R Frmula 1,,Mxico D.F/Aculco (dif),19.379792,-99.102561,,4,,9325,294,139,,0000-2400,1234567,998,,43904,,, +970,USA,,WATH,,Athens (OH),39.344444,-82.105833,,0.026,,6578,296,139,,,,,,40756,,, +970,USA,,WGEE,,Superior (WI),46.724444,-92.119722,,0.026,,6582,308,139,,,,,,41494,,, +970,B,pt,ZYH612 Rdio Monlitos de Quixad,,Quixad (CE),-5.002047,-39.037178,,0.25,,7658,230,140,,,,,,36901661,,, +970,B,pt,ZYJ260 Rdio Alvorada AM,,Londrina/Estrada da Cegonha (PR),-23.403603,-51.15605,,5,,10079,231,140,,,,,,36901662,,, +970,USA,,KIXL,,Del Valle (TX),30.320278,-97.623611,,1,,8267,300,140,,,,,,38650,,, +970,USA,,WWYO,,Pineville (WV),37.588889,-81.540278,,0.026,,6680,294,140,,,,,,43449,,, +970,CAN,xx,CBDX,,Swift River (YT),60.002222,-131.195278,,0.04,,6986,338,141,,,,,,20109128,,, +970,USA,,WVOP,,Vidalia (GA),32.22,-82.435278,,0.06,,7167,290,141,,,,,,43334,,, +970,USA,,WYSE,,Canton (NC),35.532778,-82.866111,,0.03,,6927,293,141,,,,,,42635,,, +970,B,pt,ZYI684 Rdio Princesa Isabel,,Princesa Isabel (PB),-7.739919,-37.979356,,0.25,,7874,227,142,,,,,,36901653,,, +970,EQA,,HCJX6,,Banos (tun),-1.4,-78.416667,,3,,9778,265,142,,,,,,36998,,, +970,EQA,,HCSA5,,Cuenca (azu),-2.883333,-78.966667,,3,,9945,265,142,,,,,,37127,,, +970,USA,,WFSR,,Harlan (KY),36.867222,-83.326667,,0.024,,6849,295,142,,,,,,41441,,, +970,MEX,es,XEBJ-AM Imagen,,Ciudad Victoria (tam),23.796572,-99.132256,,1,,8933,297,143,,,,,,43779,,, +970,MEX,es,XEO-AM R Gallito,,Matamoros (tam),25.910258,-97.530531,,1,,8648,297,143,,,,,,44470,,, +970,USA,,KESP,i,Modesto (IBOC) (CA),37.689722,-120.953333,,1,,8805,320,143,,,,0,,38342,,, +970,USA,,KHVN,,Fort Worth (TX),32.798889,-97.295278,,0.27,,8032,301,143,,,,,,38570,,, +970,USA,,WNIV,,Atlanta (GA),33.809722,-84.353889,,0.039,,7159,293,143,,,,,,42473,,, +970,GTM,,TGAX R Continental,,Ciudad de Guatemala (gut),14.616667,-90.566667,,1,,9196,284,144,,1200-0430,1234567,,,40481,,, +970,HND,,HRRH2,,Santa Rosa de Copan (cop),14.716667,-88.816667,,1,,9072,283,144,,,,,,37837,,, +970,HND,,HRTL3,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37852,,, +970,PNR,es,HOS97 Ondas Centrales,,Santiago/La Pea (vrg),8.096667,-80.975278,,1,,9120,273,144,,1000-0300,123456,,,37730,,, +970,PNR,es,HOS97 Ondas Centrales,,Santiago/La Pea (vrg),8.096667,-80.975278,,1,,9120,273,144,,1300-2400,......7,,,37730,,, +970,SLV,,YSMS,,San Salvador (ssl),13.716667,-89.216667,,1,,9186,283,144,,,,,,45300,,, +970,USA,,KFEL,,Pueblo (CO),38.265833,-104.678889,,0.185,,7964,309,144,,,,,,38381,,, +970,USA,,KNWZ,,Coachella (CA),33.686667,-116.159444,,1,,8967,315,144,,,,,,39037,,, +970,USA,en,WFQY,,Brandon (MS),32.273889,-90.013611,,0.09,,7639,296,144,,,,,,42870,,, +970,USA,en,WRHA,,Spring City (TN),35.666389,-84.878889,,0.024,,7041,295,144,,,,,,43487,,, +970,MEX,es,XEMH-AM Candela,,Mrida (yuc),20.981667,-89.589167,,0.5,,8577,288,145,,,,,,44375,,, +970,MEX,es,XEUG-AM,,Guanajuato (gua),21.035581,-101.275408,,1,,9311,297,145,,,,,,44900,,, +970,USA,,KJLT,,North Platte (NE),41.16,-100.878611,,0.055,,7510,309,145,,,,,,38677,,, +970,USA,,KNEA,,Jonesboro (AR),35.854722,-90.729167,,0.041,,7383,299,145,,,,,,38976,,, +970,USA,,WTBF,,Troy (AL),31.835278,-85.932778,,0.045,,7421,292,145,,,,,,43110,,, +970,EQA,,HCJJ5,,Riobamba (chi),-1.633333,-78.616667,,1,,9812,265,146,,,,,,36986,,, +970,EQA,,HCMB1,,Continente (nap),-0.35,-78.183333,,1,,9669,266,146,,,,,,37014,,, +970,EQA,,HCNC1,,Quito (pic),-0.2,-78.466667,,1,,9676,266,146,,,,,,37038,,, +970,MEX,es,XEMF-AM La Mejor,,Monclova (coa),26.917892,-101.409708,,0.5,,8792,300,146,,,,,,44370,,, +970,USA,,KNIH,,Paradise (NV),36.011111,-115.241111,,0.5,,8703,315,146,,,,,,39028,,, +970,B,pt,ZYK684 Rdio Hertz de Franca,,Franca (SP),-20.511067,-47.405161,,0.7,,9605,229,147,,,,,,36901655,,, +970,MEX,es,XESW-AM R Madera,,Ciudad Madera (chi),29.184167,-108.170833,,0.5,,8972,306,147,,,,,,44780,,, +970,MEX,es,XEZAZ-AM,,Zacatecas (zac),22.744722,-102.525278,,0.5,,9233,298,147,,,,,,45123,,, +970,URG,es,CX22 R Universal,,Montevideo (mo),-34.871133,-56.295428,,3,,11422,228,147,,0900-0400,1234567,,,36808,,, +970,B,pt,ZYI399 Rdio Vale do Taquari,,Coxim (MS),-18.52045,-54.745606,,0.5,,9815,236,149,,,,,,36901669,,, +970,MEX,es,XEVOX-AM Fiesta Mexicana,,Mazatln (sin),23.280047,-106.418283,,0.4,,9414,302,149,,,,,,44979,,, +970,PRG,,ZP9 R 970 AM,,Asuncin (asu),-25.266667,-57.616667,,1,,10605,235,149,,0900-0400,1234567,0,,45561,,, +970,USA,,KVWM,,Show Low (AZ),34.211111,-110.005556,,0.195,,8609,311,149,,,,,,39679,,, +970,ARG,,LT25 R Guarani,,Curuzu Cuatia (cn),-29.766667,-58.033333,,1,,11043,233,150,,0900-0300,1234567,,,40177,,, +970,ARG,es,LV2 R General Paz,,Crdoba (cb),-31.436625,-64.096322,,1.5,,11530,236,150,,0000-2400,1234567,,,40243,,, +970,CHL,,CA97 R Calama,,Calama (AN),-22.45,-68.933333,,1,,11017,245,150,,1000-0400,1234567,,,35715,,, +970,CLM,es,HKX59,,Calarca (qui),4.533333,-75.65,,0.25,,9068,267,150,,,,,,35901459,,, +970,MEX,es,XEEZ-AM La Mejor,,Caborca (son),30.725392,-112.163697,,0.25,,9044,310,150,,,,,,43987,,, +970,B,pt,ZYL243 Rdio Sociedade Caratinga,,Caratinga (MG),-19.785528,-42.151742,,0.25,,9271,225,151,,,,,,36901663,,, +970,B,pt,ZYL285 Rdio So Joo 970 AM,,So Joo del Rei (MG),-21.11815,-44.241244,,0.25,,9504,226,151,,,,,,36901659,,, +970,B,pt,ZYL321 Rdio Central do Triangulo Mineir,,Monte Alegre de Minas (MG),-18.873,-48.869556,,0.25,,9525,231,151,,,,,,36901654,,, +970,ARG,,NCN Cadena de la Nueva Conciencia,,Villa Insuperabile (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51815,,, +970,B,pt,ZYK349 Rdio Alto Uruguai,,Humait (RS),-27.55,-53.833333,,0.5,,10612,231,152,,,,,,36901656,,, +970,B,pt,ZYK529 Rdio Piratininga,,So Joo da Boa Vista (SP),-22.002792,-46.800233,,0.25,,9719,228,152,,,,,,36901657,,, +970,B,pt,ZYK744 Rdio Alvorada,,Estrela d'Oeste/Chcara So Joo (SP),-20.295336,-50.408939,,0.25,,9743,232,152,,,,,,36901660,,, +970,MEX,es,XECJ-AM R Apatzingan,,Apatzingan (mic),19.087792,-102.363347,,0.25,,9553,296,152,,,,,,43844,,, +970,B,pt,ZYK505 Rdio Transamrica,,Itapetininga (SP),-23.602225,-48.030528,,0.25,,9936,228,153,,,,,,36901652,,, +970,B,pt,ZYJ277 Rdio Difusora do Paran,,Marechal Cndido Rondon (PR),-24.515556,-54.037222,,0.25,,10338,232,154,,,,,,36901665,,, +970,B,pt,ZYJ730 Rdio Araguaia AM,,Brusque (SC),-27.083333,-48.916667,,0.25,,10315,227,154,,,,,,36901658,,, +970,CHL,,CC97 R Lautaro,,Talca (ML),-35.416667,-71.666667,,1,,12312,238,155,,1000-0500,1234567,,,35842,,, +970,CHL,,CD97A R Austral,,Valdivia (LL),-39.766667,-73.216667,,1,,12768,236,156,,1030-0400,1234567,,,35925,,, +970,CHL,,CD97B R Patagonia Chilena,,Coyhaique (AI),-45.533333,-72.033333,,1,,13176,231,157,,1000-0400,1234567,,,35926,,, +972,D,de,Funkhaus Europa,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,1500-1900,....5..,0,,713,,, +972,D,de,Funkhaus Europa,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,1500-2000,1234...,0,,713,,, +972,D,de,Hamburger Hafenkonzert,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0500-0700,......7,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0000-0730,1234567,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0700-0730,......7,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0745-1500,12345..,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0745-2105,.....67,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,1900-2400,....5..,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2000-2105,1234...,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2120-2305,1234.67,0,,713,,, +972,D,de,NDR Info,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2320-2400,1234.67,0,,713,,, +972,D,de,NDR Seewetterbericht,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,0730-0745,1234567,0,,713,,, +972,D,de,NDR Seewetterbericht,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2105-2120,1234.67,0,,713,,, +972,D,de,NDR Seewetterbericht,,Hamburg-Moorfleet (ham),53.518056,10.112778,,100,,294,56,40,,2305-2320,1234.67,0,,713,,, +972,UKR,uk,UR 1 Persha Prog.,,Mykolaiv/Luch (MY),46.813222,32.203561,,40,,1943,97,60,,0400-0800,1234567,9981,,721,,, +972,UKR,uk,UR 1 Persha Prog.,,Mykolaiv/Luch (MY),46.813222,32.203561,,40,,1943,97,60,,1500-2000,1234567,9981,,721,,, +972,G,,Sunrise R 2,,London/Glade Lane (EN-GTL),51.504444,-0.359722,,1,,470,264,62,,0000-2400,1234567,9957,,716,,, +972,E,es,RNE R Nacional,,Monforte de Lemos/Pieira (GAL-LU),42.500906,-7.532717,,6,,1494,230,64,,0000-2400,1234567,0,,715,,, +972,E,es,RNE R Nacional,,Cabra/La Paz (AND-CO),37.454483,-4.456622,,4,,1837,212,69,,0000-2400,1234567,997,,714,,, +972,E,es,RNE Melilla,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0525-0530,12345..,1,,719,,, +972,E,es,RNE Melilla,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0550-0600,12345..,1,,719,,, +972,E,es,RNE Melilla,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,1110-1200,12345..,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0000-0525,12345..,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0000-2400,.....67,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0530-0550,12345..,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,0600-1110,12345..,1,,719,,, +972,E,es,RNE R Nacional,,Melilla/Finca Salama (RNE) (MEL-ML),35.279428,-2.948642,,5,,2013,205,70,,1200-2400,12345..,1,,719,,, +972,IRN,fa,IRIB R Ilam,,Ilam (ilm),33.641056,46.372528,,100,,3780,107,75,,0000-2400,1234567,7,,717,,, +972,TJK,en,Voice of Russia,,Orzu (ktl),37.534722,68.807222,,800,150,5010,83,78,,0200-0400,1234567,9995,,2246,,, +972,TJK,en,Voice of Russia,,Orzu (ktl),37.534722,68.807222,,800,150,5010,83,78,,1200-1300,1234567,9995,,2246,,, +972,TJK,hi,Voice of Russia,,Orzu (ktl),37.534722,68.807222,,800,150,5010,83,78,,1300-1400,1234567,9995,,2246,,, +972,TJK,ur,VOA R Aap Ki Dunyaa,,Orzu (ktl),37.534722,68.807222,,800,150,5010,83,78,,1400-0200,1234567,9995,,2246,,, +972,NIG,,Katsina State R & TV Service,,Dutsinma (kts),12.4676,7.485133,,25,,4409,178,87,,0430-2300,1234567,,,2437,,, +972,ETH,,ERTA Ethiopia National R,,Robe (orm),7.118508,39.996356,,100,,5864,136,96,,0300-0600,1234567,,,46833,,, +972,ETH,,ERTA Ethiopia National R,,Robe (orm),7.118508,39.996356,,100,,5864,136,96,,0800-2100,1234567,,,46833,,, +972,NIG,,Kogi State BC,,Otite (kog),7.589617,6.220539,,10,,4950,180,97,,0500-2300,1234567,,,2436,,, +972,IND,,AIR East,,Cuttack A (OR),20.412222,86.006111,,300,20,7530,85,108,,0023-0440,123456,,,49094,,, +972,IND,,AIR East,,Cuttack A (OR),20.412222,86.006111,,300,20,7530,85,108,,0023-0500,......7,,,49094,,, +972,IND,,AIR East,,Cuttack A (OR),20.412222,86.006111,,300,20,7530,85,108,,0658-0940,1234567,,,49094,,, +972,IND,,AIR East,,Cuttack A (OR),20.412222,86.006111,,300,20,7530,85,108,,1123-1735,1234567,,,49094,,, +972,KOR,ko,HLCA KBS Hanminjok Bangsong 1,,Dangjin (ccg),36.974778,126.621361,,1500,,8543,45,111,,0400-2400,1234567,0,,49102,,, +972,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Altay=Aletai/XJTS633 (XJ),47.771867,88.149189,,1,,5552,60,113,,0000-1800,1234567,,,49091,,, +972,CHN,zh,Henan RGD Jingji Guangbo,,Xingyang/SARFT554 (HE),34.811967,113.385172,,100,,8044,55,117,,2125-1600,1234567,,,49093,,, +972,CHN,,Harbin JGD Min Sheng 972,,Harbin (HL),45.615833,126.833611,,10,,7753,40,125,,2100-1500,1234567,,,49092,,, +972,THA,th,Sathaanii Witthayu 921,,Phetchabun (pbn),16.850833,101.253056,,10,,8860,76,133,,2200-1500,1234567,,,49109,,, +972,PHL,,DWTI-AM,,Lucena City (qzn),13.95,121.6,,20,,10412,62,135,,,,,,49107,,, +972,VTN,vi,VOV1,,Quảng Ngi (qgi),15.122222,108.794444,,10,,9505,71,135,,0430-0600,1234567,999,,49111,,, +972,VTN,vi,VOV1,,Quảng Ngi (qgi),15.122222,108.794444,,10,,9505,71,135,,0900-1600,1234567,999,,49111,,, +972,VTN,vi,VOV1,,Quảng Ngi (qgi),15.122222,108.794444,,10,,9505,71,135,,2200-0030,1234567,999,,49111,,, +972,INS,id,RRI Pro-1,,Surakarta (JT-ksu),-7.726111,110.709444,,50,,11660,83,136,,2200-1700,1234.67,0,,49100,,, +972,INS,id,RRI Pro-1,,Surakarta (JT-ksu),-7.726111,110.709444,,50,,11660,83,136,,2200-2130,....5..,0,,49100,,, +972,CHN,,Henan RGD Jingji Guangbo,,Zhumadian (HE),32.915,114.021389,,1,,8247,56,139,,,,,,36200650,,, +972,CHN,,Henan RGD Jingji Guangbo,,Xinyang (HE),32.099722,114.070833,,1,,8322,57,140,,,,,,36200651,,, +972,PHL,,DWFR-AM Radyo ng Bayan,,Bontoc (mnt),17.083333,121,,5,,10087,60,140,,,,,,49104,,, +972,PHL,,DXKH-AM (r:666 DZRH-AM),,Cagayan de Oro City (mor),8.466667,124.633333,,5,,11103,62,144,,,,,,49105,,, +972,PHL,,DYSM-AM Aksyon Radyo,,Catarman/Kawayan (sam),12.483333,124.633333,,1,,10729,60,149,,2100-1400,1234567,,,49106,,, +972,INS,id,RPM-R Pusako Minang,,Tangerang/Cipondoh (BT-tan),-6.2,106.683333,,1,,11252,86,151,,2300-1700,1234567,,,35400045,,, +972,AUS,en,2MW R 97,,Murwillumbah (NSW),-28.325889,153.50875,,5,,16227,59,161,,0000-2400,1234567,9,,49090,,, +972,AUS,,5PB ABC Newsr,,Adelaide/Wingfield (SA),-34.837486,138.569828,,2,,15802,82,163,,0000-2400,1234567,,,49088,,, +972,NZL,,2XG NZs Rhema,,Wellington/Horokiwi (WGN),-41.210556,174.845556,,5,,18520,40,168,,0000-2400,1234567,,,49103,,, +972,AUS,,2DU/t,,Cobar (NSW),-31.514944,145.836333,,0.3,,16025,71,172,,0000-2400,1234567,,,49089,,, +975,RUS,,GD,b,Maloye-Skuratovo,53.5625,37.041667,,0.025,,2048,73,93,,,,2,L1030 U1034 ,85823,,, +975,RUS,,R,b,Magnitogorsk (CB),53.354167,58.708333,,0.025,,3445,67,107,,,,,,86810,,, +975,KGZ,,BK,b,Bishkek/Manas (bsk),43.0625,74.541667,,0.025,,5014,73,123,,,,,,86809,,, +978,RUS,,HB,b,Zemetchino,53.520833,42.625,,0.025,,2413,72,97,,,,995,L1020 U1010 ,85824,,, +979,BLR,,DI,b,Yakshtsy (MI),53.604167,28.958333,,0.025,,1517,75,88,,,,,,85825,,, +980,USA,,WCAP,,Lowell (MA),42.654444,-71.361944,,5,,5662,292,107,,,,993,,40946,,, +980,USA,en,WOFX,i,Troy (NY),42.782222,-73.835278,,5,,5808,294,108,,,,,,42570,,, +980,CAN,en,CFPL,,London (ON),42.891389,-81.200278,,5,,6252,298,113,,,,999,,35997,,, +980,USA,,WTEM,,Washington (DC),38.961944,-76.973333,,5,,6288,292,113,,,,,,43128,,, +980,USA,,WCUB,,Two Rivers (WI),44.063889,-87.696944,,5,,6544,303,115,,,,999,,41102,,, +980,USA,,WAAV,,Leland (NC),34.248333,-78.001667,,5,,6719,289,117,,,,,,40620,,, +980,USA,,WONE,,Dayton (OH),39.6675,-84.166944,,5,,6679,297,117,,,,0,,42605,,, +980,CAN,en,CKNW,,New Westminster (BC),49.160833,-122.731944,,50,,7773,327,118,,,,991,,36351,,, +980,USA,,KKMS,,Richfield (MN),44.788333,-93.215,,5,,6795,307,118,,,,999,,38734,,, +980,USA,,WILK,,Wilkes-Barre (PA),41.228333,-75.948056,,1,,6053,294,118,,,,,,41753,,, +980,CAN,en,CJME,,Regina (SK),50.353611,-104.6225,,5,,6912,318,119,,,,31,,36183,,, +980,B,pt,ZYH707 Rdio Nacional,,Braslia/Rodeador (DF),-15.617472,-48.117333,,300,,9172,232,120,,2100-0900,1234567,999,,36901670,,, +980,USA,,WYFN,,Nashville (TN),36.206944,-86.673611,,5,,7108,296,121,,,,,,43513,,, +980,USA,,KMBZ,,Kansas City (MO),39.038056,-94.615278,,5,,7345,303,123,,,,,,38888,,, +980,USA,,WFHG,,Bristol (VA),36.608333,-82.16,,1,,6797,294,125,,,,,,41380,,, +980,USA,,WITY,,Danville (IL),40.078056,-87.638889,,1,,6855,300,126,,,,,,41819,,, +980,USA,en,WXLM,,Groton (CT),41.384722,-72.070278,,0.072,,5797,291,126,,,,,,43080,,, +980,VEN,,YVQM La Voz de El Tigre,,El Tigre (azg),8.866667,-64.25,,10,,7915,260,126,,1000-0300,1234567,,,45429,,, +980,B,pt,ZYH707 Rdio Nacional,,Braslia (DF),-15.824089,-47.963056,,50,,9183,232,127,,0900-2100,1234567,,,36902884,,, +980,CLM,,HJNL,,El Zulia (nsa),7.916667,-72.616667,,30,,8565,266,128,,,,,,37590,,, +980,USA,,WHSR,,Pompano Beach (FL),26.335,-80.265278,,2.2,,7510,285,129,,,,,,41689,,, +980,USA,,KSVC,,Richfield (D) (UT),38.788056,-112.011667,,10,,8289,315,130,,,,,,20012601,,, +980,CLM,es,HJJV Oxigeno,,Ccuta (nsa),7.883333,-72.5,,15,,8560,266,131,,,,,,35901464,,, +980,USA,,DWKLF,,Clanton (AL),32.835556,-86.680278,,1,,7385,294,131,,,,,,20016272,,, +980,USA,,KDSJ,,Deadwood (SD),44.3825,-103.662222,,1,,7376,313,131,,,,,,38292,,, +980,CUB,es,R Coco,,L. Cruz (ch),23.066667,-82.383333,,2.5,,7925,284,132,,,,35,,36458,,, +980,USA,,KSGM,,Chester (IL),37.787778,-89.905833,,0.47,,7174,300,132,,,,,,39353,,, +980,USA,,WAKV,,Otsego (MI),42.459167,-85.732778,,0.101,,6555,301,132,,,,,,40690,,, +980,USA,,WPFP,,Park Falls (WI),45.917778,-90.449444,,0.105,,6554,306,132,,,,,,42435,,, +980,CUB,es,R Reloj,,Moa (ho),20.645583,-74.924033,,1,,7628,276,133,,,,10,,36569,,, +980,USA,,KDBV,,Salinas (CA),36.732778,-121.592222,,10,,8926,320,133,,,,12,,38242,,, +980,USA,,WRNE,,Gulf Breeze (FL),30.485556,-87.083611,,1,,7606,292,133,,,,,,42887,,, +980,USA,,WULR,,York (SC),34.903056,-81.0925,,0.167,,6865,292,133,,,,,,40937,,, +980,USA,es,KQUE,,Rosenburg/Richmond (TX),29.821944,-95.882778,,4,,8206,298,133,,,,,,20012528,,, +980,CLM,es,HJES RCN Cali,,Cali (val),3.466667,-76.516667,,10,,9221,267,134,,,,998,,37421,,, +980,CTR,,TIRI R Favorita,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1100-0500,1234567,,,40562,,, +980,USA,,KVLV,,Fallon (NV),39.496389,-118.813889,,5,,8538,320,135,,,,31,,39638,,, +980,USA,,WHAW,,Lost Creek (aux) (WV),39.040278,-80.454444,,0.047,,6500,294,135,,,,,,20016208,,, +980,USA,en,WHAW,,Lost Creek (WV),39.026667,-80.441389,,0.047,,6500,294,135,,,,,,41600,,, +980,USA,es,WAZS,,Summerville (SC),33.0325,-80.200278,,0.131,,6958,289,135,,,,,,40791,,, +980,USA,,WKLY,,Hartwell (GA),34.357778,-82.976389,,0.149,,7028,292,136,,,,,,42039,,, +980,USA,,WTOT,,Marianna (FL),30.783611,-85.255,,0.34,,7465,291,136,,,,,,43195,,, +980,USA,es,KSPZ,,Ammon (ID),43.523056,-112.01,,1,,7855,317,136,,,,7,,39588,,, +980,USA,,KFWB,i,Los Angeles (CA),34.069722,-118.193056,,5,,9028,316,137,,,,9981,,38441,,, +980,USA,,WGWM,,London (KY),37.172778,-84.182778,,0.07,,6877,295,137,,,,,,41586,,, +980,USA,es,WEGO,,Winston-Salem (NC),36.111111,-80.243333,,0.049,,6715,292,137,,,,,,40618,,, +980,USA,,WDVH,,Gainesville (FL),29.623889,-82.288611,,0.166,,7370,288,138,,,,,,41220,,, +980,USA,,WDYN,,Rossville (GA),34.965,-85.3,,0.113,,7124,294,138,,,,,,43272,,, +980,USA,en,WJYK,,Chase City (VA),36.805278,-78.440278,,0.026,,6546,291,138,,,,,,20012527,,, +980,USA,en,KTCR,,Selah (WA),46.640278,-120.596667,,0.5,,7932,325,139,,,,,,38006,,, +980,HND,,HRZC2,,San Pedro Sula (cor),15.466667,-88.016667,,2.5,,8953,283,140,,,,,,37889,,, +980,USA,,KSVC,,Richfield (N) (UT),38.761111,-112.076389,,1,,8294,315,140,,,,,,39435,,, +980,USA,,WPRE,,Prairie du Chien (WI),43.060833,-91.157222,,0.03,,6820,304,140,,,,,,42729,,, +980,USA,en,WPGA,,Perry (GA),32.555556,-83.737222,,0.08,,7223,292,140,,,,,,42676,,, +980,VEN,,RNV Canal Informativo,,Maracaibo (zul),10.666667,-71.616667,,1,,8257,267,140,,,,,,51678,,, +980,BOL,,CP192 R Esperanza,,Aiquile (cbb),-18.216667,-65.166667,,5,,10405,245,141,,0930-0200,1234567,,,36678,,, +980,ARG,es,LU37 R General Pico/R 37,,General Pico (lp),-35.655794,-63.740731,,10,,11886,233,143,,0930-0300,1234567,,,40231,,, +980,MEX,es,XEFS-AM R Matamoros,,Izcar de Matamoros (pue),18.612278,-98.467694,,1.5,,9354,293,143,,,,,,44030,,, +980,MEX,es,XEJK-AM La Poderosa,,Ciudad Delicias (chi),28.190567,-105.449164,,1,,8911,304,143,,,,,,44212,,, +980,USA,,KGLN,,Glenwood Springs (CO),39.552778,-107.33,,0.225,,7987,312,143,,,,,,38490,,, +980,USA,,WAKK,,McComb (MS),31.214167,-90.461667,,0.152,,7756,295,143,,,,,,40734,,, +980,BOL,,CP118 R Mar AM,,La Paz (lpz),-16.5,-68.116667,,2.5,,10435,248,144,,1000-0200,1234567,,,51983,,, +980,CLM,,RCN,,Bogot D. C. (bdc),4.716667,-74.133333,,1,,8949,265,144,,,,69,,52656,,, +980,HND,,HRGI,,La Libertad (cmy),14.8,-87.583333,,1,,8982,282,144,,,,,,37757,,, +980,HND,,HRLR2,,Campamento (ola),14.433333,-86.65,,1,,8952,281,144,,,,,,37796,,, +980,MEX,es,XETU-AM,,Benito Jurez (vcz),22.207444,-97.8358,,1,,8994,295,144,,,,,,44865,,, +980,NCG,,YNVA R Redencion Internacional,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,1200-0400,1234567,,,52205,,, +980,ARG,,LT39 R Victoria,,Victoria (er),-32.616667,-60.166667,,5,,11419,232,145,,0900-0300,1234567,,,40190,,, +980,GTM,,TGMQ R Retama,,San Marcos (sms),14.966667,-91.783333,,1,,9246,286,145,,1200-0500,1234567,,,40515,,, +980,MEX,es,XEXT-AM Capital 980,,Tepic (nay),21.538158,-104.911814,,1,,9484,300,145,,,,,,45068,,, +980,EQA,,HCJI5,,El Prado (chi),-1.633333,-78.616667,,1,,9812,265,146,,,,,,36984,,, +980,MEX,es,XEFQ-AM,,Cananea (son),30.984294,-110.294086,,0.5,,8921,309,146,,,,,,44021,,, +980,MEX,es,XENR-AM,,Nueva Rosita (coa),27.946675,-101.2362,,0.5,,8690,301,146,,,,,,44457,,, +980,USA,,KOKA,,Shreveport (LA),32.525,-93.808333,,0.079,,7848,298,146,,,,,,39071,,, +980,USA,en,KWSW,,Eureka (CA),40.800556,-124.1275,,0.5,,8637,324,146,,,,9983,,38622,,, +980,CHL,,CB98 R Agricultura,,Valparaso (VS),-33.466667,-71.666667,,5,,12146,240,147,,,,,,35769,,, +980,USA,,KICA,,Clovis (NM),34.348611,-102.955,,0.172,,8218,306,147,,,,,,38576,,, +980,PRG,,ZP31 R Mburucuyu,,Pedro Juan Cabellero (amm),-22.516667,-55.966667,,1,,10257,235,148,,0900-0300,1234567,,,45528,,, +980,USA,,KCAB,,Dardanelle (AR),35.222222,-93.168889,,0.032,,7581,300,148,,,,,,38119,,, +980,USA,,KMIN,,Grants (NM),35.0975,-107.871944,,0.23,,8417,310,148,,,,,,38907,,, +980,PRU,,OAX5T,,Huamanga (aya),-13.166667,-74.316667,,1,,10540,255,149,,,,,,40326,,, +980,MEX,es,XEKE-AM,,Navojoa (son),27.075633,-109.469017,,0.25,,9238,306,150,,,,,,44251,,, +980,ARG,,Sintonia de Vida,,El Talar (ba),-35.55,-58.65,,1,,11605,230,152,,,,,,51816,,, +980,MEX,es,XELC-AM Dual Estereo,,La Piedad de Cavadas (mic),20.332961,-102.025483,,0.2,,9420,297,152,,,,,,44294,,, +980,ARG,,LRG387 R Lujan AM,,Valcheta (rn),-40.688833,-66.147944,,1,,12456,231,155,,,,,,40003,,, +980,USA,,KEYQ,,Fresno (CA),36.741111,-119.853333,,0.048,,8848,319,156,,,,113,,38360,,, +980,USA,,KNTR,,Lake Havasu City (AZ),34.503333,-114.357778,,0.049,,8802,314,156,,,,,,39022,,, +981,ALG,tz,Chane 2,,Ouled Fayet (16),36.722222,2.951389,,100,,1732,190,54,,0600-2400,1234567,9980,,722,,, +981,I,sl,RAI Trst A/Filodiffusione 4 Canale,,Trieste/Monte Radio (ts),45.676567,13.769425,,10,,894,140,56,,0000-2400,1234567,1,,726,,, +981,POR,pt,Rdio Sim,,Coimbra/Geria (coi),40.238561,-8.473517,,10,,1741,227,64,,0000-2400,1234567,,,732,,, +981,IRL,en,R Star Country,,Emyvale (MN),54.333333,-6.95,,1,,922,291,66,,0000-2400,1234567,79,,727,,, +981,POR,pt,Rdio Sim,,Bragana (bgc),41.795711,-6.751803,,1,,1516,226,72,,0000-2400,1234567,,,729,,, +981,POR,pt,Rdio Sim,,Vila Real (vrl),41.312425,-7.730539,,1,,1608,227,73,,0000-2400,1234567,,,730,,, +981,POR,pt,Rdio Sim,,Guarda (gua),40.536086,-7.229278,,1,,1654,224,74,,0000-2400,1234567,,,731,,, +981,IRN,fa,IRIB R Iran,,Hamadan (hmd),34.966111,48.580833,,100,,3823,103,75,,0230-1830,1234567,3,,728,,, +981,GRC,,unid,,unknown (att),38,23.658333,,1,,2062,133,78,,0000-2400,1234567,998,,3400041,,, +981,EGY,ar,ERTU Shamal Sa'id Misr,,Asyut (ast),27.270467,31.244517,,10,,3449,134,82,,0200-2200,1234567,,,1832,,, +981,ARS,ar,BSKSA Al-Quran al-Karim,,Al-Madinah=Medinah (mdh),24.409678,39.534411,,20,,4158,125,86,,0000-2400,1234567,9998,,47081,,, +981,PAK,,PBC R Pakistan,,Turbat (blc),26.044978,63.076706,,100,,5502,99,92,,0200-1500,1234567,,,31500029,,, +981,EGY,ar,ERTU Al-Barnameg al-Aam,,Baris (wjd),24.666,30.602111,,1,,3672,137,94,,0300-2400,1234567,,,1833,,, +981,EGY,ar,ERTU Al-Barnameg al-Aam,,Abu Simbel (asn),22.408472,31.582944,,1,,3941,137,96,,0000-2400,1234567,,,1834,,, +981,CHN,zh,CNR 1,,Kashgar=Kashi/XJTS635 (XJ),39.409722,75.921944,,10,,5355,76,101,,2025-1805,1234567,,,36200020,,, +981,CHN,zh,CNR 1,,rmqi/XJTS904 (XJ),43.715833,87.595,,10,,5800,65,105,,2025-1805,1234567,,,36200620,,, +981,KEN,,KBC English Service,,Voi (coa),-3.411092,38.620739,,100,,6878,143,106,,0200-2110,1234567,,,2438,,, +981,CHN,zh,CNR 1,,Guma=Pishan/XJTS8110 (XJ),37.580278,78.273333,,3,,5642,77,109,,2025-1805,1234567,,,36201218,,, +981,IND,,AIR West,,Raipur (CG),21.310194,81.639917,,100,,7157,88,109,,0025-0430,1234567,0,,49117,,, +981,IND,,AIR West,,Raipur (CG),21.310194,81.639917,,100,,7157,88,109,,0630-0930,1234567,0,,49117,,, +981,IND,,AIR West,,Raipur (CG),21.310194,81.639917,,100,,7157,88,109,,1130-1742,1234567,0,,49117,,, +981,CHN,zh,CNR 1,,Yutian=Keriya/XJTS8111 (XJ),36.867778,81.648889,,3,,5918,75,111,,2025-1805,1234567,,,36201221,,, +981,CHN,zh,CNR 1,,Changchun/SARFT523 (JL),44.028444,125.409883,,200,200,7835,42,112,,2025-1805,1234567,,,36200018,,, +981,CHN,zh,CNR 1,,Balikun=Barkol/XJTS8102 (XJ),43.597778,93.046111,,1,,6141,62,118,,2025-1805,1234567,,,36201206,,, +981,CHN,zh,CNR 1,,Nanchang/SARFT561 (JX),28.612461,116.052819,,200,,8746,57,120,,2025-1805,1234567,,,49116,,, +981,CHN,zh,CNR 1,,Saihan Tal/NMTS731 (NM),42.724,112.635611,,10,,7320,51,120,,2025-1805,1234567,,,36200622,,, +981,CHN,zh,CNR 1,,Chongqing/Daping (CQ),29.547828,106.473139,,50,,8094,64,121,,2025-1805,1234567,,,36200019,,, +981,TWN,,Han Sheng GD Kuanghua zhi Sheng,,Hsinfeng (HC),24.926633,120.993939,,250,,9364,56,121,,0655-0105,1234567,999,,49139,,, +981,CHN,zh,CNR 1,,Ejin=Ejina/NMTS788 (NM),41.967978,101.070433,,1,,6740,58,124,,2025-1805,1234567,,,36201210,,, +981,CHN,zh,CNR 1,,Nyalam=Nielamu (XZ),27.991111,85.983889,,1,,6901,79,126,,2025-1805,1234567,,,36201216,,, +981,CHN,zh,CNR 1,,Badain Jaran=Badanjilin/NMTS754 (NM),39.208333,101.653611,,1,,6995,60,127,,2025-1805,1234567,,,36201205,,, +981,CHN,zh,CNR 1,,Ergun=E'erguna/NMTS712 (NM),50.234667,120.164056,,1,,7045,41,127,,2025-1805,1234567,,,36201211,,, +981,CHN,zh,CNR 1,,Heyuan/GDTS721 (GD),24.037094,114.806667,,50,,9084,61,127,,2025-1805,1234567,,,36200639,,, +981,CHN,zh,CNR 1,,Maoming/GDTS731 (GD),21.631667,110.904444,,50,,9061,66,127,,2025-1805,1234567,,,36200631,,, +981,CHN,zh,Xizang RGD Hanyu,,Xigaz (XZ),29.291111,88.881267,,1,,6989,76,127,,,,,,36201219,,, +981,CHN,bo,Xizang RGD,,Kangmar=Kangma (XZ),28.561111,89.677778,,1,,7101,76,128,,,,,,36201215,,, +981,CHN,zh,CNR 1,,Kulun/NMTS715 (NM),42.714411,121.768375,,5,,7783,45,128,,2025-1805,1234567,,,36200635,,, +981,CHN,zh,CNR 1,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,10,,8055,69,128,,2025-1805,1234567,,,36200017,,, +981,CHN,zh,CNR 1,,Songjianghe/JLTS154 (JL),42.158839,127.475194,,10,,8101,42,128,,2025-1805,1234567,,,36200642,,, +981,CHN,zh,Xizang RGD Hanyu,,Gyangz=Jiangzi (XZ),28.904722,89.598889,,1,,7068,76,128,,,,,,36201212,,, +981,CHN,zh,Xizang RGD Hanyu,,Yadong (XZ),27.5175,88.963056,,1,,7139,78,128,,,,,,36201220,,, +981,CHN,zh,CNR 1,,Ma'erkang=Barkam/SCTS510 (SC),31.915339,102.191114,,3,,7629,65,129,,2025-1805,1234567,,,36200632,,, +981,CHN,zh,CNR 1,,Xining/QHTS560 (QH),36.702778,101.749444,,1,,7205,62,129,,2025-1805,1234567,,,36200618,,, +981,CHN,zh,CNR 1,,Alxa Zuoqi=Alashan Zuoqi/NMTS782 (NM),38.821944,105.688333,,1,,7263,58,130,,2025-1805,1234567,,,36200646,,, +981,CHN,zh,CNR 1,,Arxan=A'ershan/NMTS768 (NM),47.171944,119.932222,,1,,7301,43,130,,2025-1805,1234567,,,48490,,, +981,CHN,zh,CNR 1,,Baotou/NMTS530 (NM),40.614417,109.839978,,1,,7348,54,130,,2025-1805,1234567,,,36200648,,, +981,CHN,zh,CNR 1,,Damao/NMTS863 (NM),41.712778,110.4075,,1,,7286,53,130,,2025-1805,1234567,,,36200643,,, +981,CHN,zh,CNR 1,,Dong Wuzhumuqin Qi/NMTS732 (NM),45.493278,116.974444,,1,,7305,46,130,,2025-1805,1234567,,,36201207,,, +981,CHN,zh,CNR 1,,Kangding=Dardo/SCTS515 (SC),29.9969,101.952628,,3,,7776,67,130,,2025-1805,1234567,,,36200636,,, +981,CHN,zh,CNR 1,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2025-1805,1234567,,,36200627,,, +981,CHN,zh,CNR 2,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2100-1602,1234567,,,36201217,,, +981,CHN,bo,CNR 11,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,,,,,36201208,,, +981,CHN,zh,CNR 1,,Maqn=Maqin/QHTS921 (QH),34.455278,101.2625,,1,,7360,64,131,,2025-1805,1234567,,,36200630,,, +981,CHN,zh,CNR 1,,Zalantun/NMTS696 (NM),48,122.741667,,1,,7357,41,131,,2025-1805,1234567,,,36201222,,, +981,THA,,Sor. Wor. Thor. (R Thailand),,Nakhon Phanom (npn),17.383611,104.756111,,20,,9044,73,131,,,,,,49137,,, +981,CHN,zh,CNR 1,,Huaiyin (JS),33.583333,119.016667,,10,,8464,52,132,,2025-1805,1234567,,,36200638,,, +981,CHN,zh,CNR 1,,Jalaid=Zalaite/NMTS775 (NM),46.716667,122.9,,1,,7478,42,132,,2025-1805,1234567,,,36201213,,, +981,CHN,zh,CNR 1,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,2025-1805,1234567,,,36201214,,, +981,CHN,zh,CNR 1,,Rangtang=Zamtang/SCTS548 (SC),32.3,100.966667,,1,,7521,66,132,,2025-1805,1234567,,,36200628,,, +981,CHN,zh,CNR 1,,Ruoergai=Zoig/SCTS538 (SC),33.582794,102.959994,,1,,7537,63,132,,2025-1805,1234567,,,36200626,,, +981,CHN,zh,CNR 1,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,10,,8589,53,132,,2120-1500,1234567,,,51158,,, +981,CHN,zh,CNR 1,,Zhengxiangbai Qi/NMTS851 (NM),42.313111,115.014194,,1,,7480,49,132,,2025-1805,1234567,,,36201223,,, +981,THA,th,Sor. Wor. Thor. (R Thailand),,Yala/Wang Phaya (yla),6.548889,101.36,,25,,9769,82,132,,2200-1330,1234567,,,49138,,, +981,CHN,zh,CNR 1,,Baicheng (JL),45.5755,122.794906,,1,,7575,43,133,,2025-1805,1234567,,,36200649,,, +981,CHN,zh,CNR 1,,Batang/SCTS543 (SC),30.017967,99.109822,,1,,7595,69,133,,2025-1805,1234567,,,36200647,,, +981,CHN,zh,CNR 1,,Jiuzhaigou/SCTS547 (SC),33.233333,104.183333,,1,,7641,63,133,,2025-1805,1234567,,,36200637,,, +981,CHN,zh,CNR 1,,Kailu/NMTS727 (NM),43.640642,121.291567,,1,,7677,45,134,,2025-1805,1234567,,,50823,,, +981,CHN,zh,CNR 1,,Lliang (SX),36.7,110.933333,,1,,7742,56,134,,2025-1805,1234567,,,36200633,,, +981,CHN,zh,CNR 1,,Shenzhen (GD),22.511622,114.034061,,10,,9175,63,134,,2025-1805,1234567,9995,,36200016,,, +981,THA,th,Mor. Thor.,,Pathum Thani/Phaholyothin Rd (ptn),14.075194,100.598722,,10,,9058,78,134,,0800-1400,1234567,,,49135,,, +981,THA,th,Sor. Wor. Thor. (R Thailand),,Mae Hong Son (mhs),19.290278,97.965556,,5,,8431,77,134,,2200-1600,1234567,,,49136,,, +981,CHN,zh,CNR 1,,Daocheng/SCTS544 (SC),29.033333,100.316667,,1,,7754,68,135,,2025-1805,1234567,,,36200644,,, +981,CHN,zh,CNR 1,,Guangyuan/SCTS527 (SC),32.433333,105.816667,,1,,7807,62,135,,2025-1805,1234567,,,36200640,,, +981,CHN,zh,CNR 1,,Shijiazhuang/HBTS717 (HB),37.830833,114.468889,,1,,7840,53,135,,2025-1805,1234567,,,36200624,,, +981,CHN,zh,CNR 1,,Yangquan (SX),37.872222,113.566667,,1,,7787,53,135,,2025-1805,1234567,,,36200617,,, +981,CHN,zh,CNR 1,,Changzhi/Nanzhuang (SX),36.08,113.081389,,1,,7916,55,136,,2025-1805,1234567,,,36200645,,, +981,CHN,zh,CNR 1,,Gongzhuling (JL),43.5,124.816667,,1,,7856,43,136,,2025-1805,1234567,,,51019,,, +981,CHN,zh,CNR 1,,Xichang/SCTS505 (SC),27.811733,102.229508,,1,,7978,68,137,,2025-1805,1234567,,,36200619,,, +981,CHN,zh,CNR 1,,Mingyue (JL),43.1,128.916667,,1,,8078,40,138,,2025-1805,1234567,,,36200629,,, +981,CHN,zh,CNR 1,,Songjiangzhen (JL),42.575,128.333333,,1,,8101,41,138,,2025-1805,1234567,,,36200623,,, +981,CHN,zh,CNR 1,,Liupanshui (GZ),26.566056,104.919944,,1,,8255,67,140,,2025-1805,1234567,,,36200634,,, +981,PHL,,DYBQ-AM Radyo Budyong,,Iloilo City/Jaro (ilo),10.733333,122.55,,10,,10767,63,140,,,,,,49131,,, +981,CHN,zh,CNR 1,,Tongren/GZTS861 (GZ),27.716667,109.183333,,1,,8418,63,141,,2025-1805,1234567,,,36200621,,, +981,PHL,,DXOW-AM Radyo Asenso,,Davao City/Mapa (dvs),7.033333,125.516667,,10,,11289,62,141,,2000-????,1234567,,,49132,,, +981,PHL,,DZRD-AM Sonshine R,,Dagupan City (pgs),16.033333,120.333333,,5,,10144,61,141,,2100-1600,12345.7,,,49129,,, +981,PHL,,DZRD-AM Sonshine R,,Dagupan City (pgs),16.033333,120.333333,,5,,10144,61,141,,2200-1600,......7,,,49129,,, +981,PHL,tl,DXBR-AM Bombo Radyo,,Butuan City/Arujville (agn),8.941944,125.512778,,10,,11111,61,141,,,,,,49128,,, +981,TWN,,Feng Ming Kuangpo Tientai 2,,Kaohsiung (KHS),22.64255,120.29915,,3,,9534,58,141,,,,,,49140,,, +981,CHN,zh,CNR 1,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,1,,8471,52,142,,2025-1805,1234567,,,36200354,,, +981,PHL,,DWMT-AM (r:666 DZRH-AM),,Naga City (cas),13.566667,123.316667,,5,,10550,60,142,,,,,,49133,,, +981,CHN,zh,CNR 1,,Fuzhou/JXTS831 (JX),28.016667,116.333333,,1,,8816,58,143,,2025-1805,1234567,,,36200641,,, +981,CHN,zh,CNR 1,,Shangrao/JXTS821 (JX),28.470278,117.979167,,1,,8869,56,143,,2025-1805,1234567,,,36200625,,, +981,PHL,,DXDR-AM Radyo Agong,,Dipolog City/Turno (zdn),8.583333,123.35,,5,,11014,63,143,,,,,,49130,,, +981,CHN,zh,CNR 1,,Fu'an/FJTS903 (FJ),27.111117,119.622122,,1,,9086,56,144,,2025-1805,1234567,,,49846,,, +981,J,,JOAQ NHK1,,Sasebo (kyu-nag),33.129722,129.699722,,1,,9055,45,144,,0000-2400,1234567,,,49123,,, +981,J,,NHK R 1,,Kisofukushima (chu-nag),35.846667,137.696111,,1,,9153,38,144,,0000-2400,1234567,,,49121,,, +981,J,,NHK R 1,,Kashiwazaki (chu-nii),37.366667,138.566667,,0.1,,9039,37,154,,0000-2400,1234567,,,49120,,, +981,J,,NHK R 1,,Nakatsu (kyu-oit),33.583333,131.216667,,0.1,,9084,44,154,,0000-2400,1234567,,,49122,,, +981,J,,NHK R 1,,Shizugawa (toh-miy),38.666667,141.45,,0.1,,9024,34,154,,0000-2400,1234567,,,49124,,, +981,AUS,,6KG R West,,Kalgoorlie (WA),-30.735111,121.500667,,2,,14327,92,158,,0000-2400,1234567,,,49114,,, +981,AUS,,2NM,,Muswellbrook (NSW),-32.293333,150.8325,,5,,16407,66,161,,0000-2400,1234567,,,49115,,, +981,AUS,,3HA,,Hamilton (VIC),-37.684472,142.019861,,2,,16243,83,165,,0000-2400,1234567,,,49113,,, +981,NZL,,RNZ National,,Kaikohe/Ohaeawai (NTL),-35.361111,173.874167,,2,,17905,33,170,,0000-2400,1234567,4,,49126,,, +981,NZL,,Southern Star,,Timaru/Saint Andrews (CAN),-44.515556,171.198333,,2.5,,18613,59,171,,,,,,49127,,, +982,INS,id,R Suara Magelang,,Magelang (JT-kma),-7.5,110.2,,1,,11605,84,152,,,,,,49119,,, +983,UZB,,NU,b,Urgench (xoz),41.5625,60.708333,,0.025,,4187,84,115,,,,,U1016 15.1s,IDx2,85826,, +983,UZB,,RG,b,Urgench (xoz),41.604167,60.625,,0.025,,4178,84,115,,,,,,85827,,, +985,BLR,,BY,b,Brest (BR),52.104167,23.958333,,0.025,,1196,83,85,,,,990,L1010 U1013 15.0s,ID+10 gap,85828,, +985,BLR,,CP,b,Brest (BR),52.145833,23.791667,,0.025,,1184,83,85,,,,,,85830,,, +985,BLR,,C,b,Mogilyov (MA),53.9375,30.125,,0.025,,1591,73,89,,,,,L1010 U1012 6.0s,ID+4 gap,85829,, +985,BLR,,U,b,Mogilyov (MA),53.979167,30.041667,,0.025,,1586,73,89,,,,38,L1010 U1087 ,85832,,, +985,RUS,,FK,b,Gagarin (SM),55.5625,35.041667,,0.025,,1903,67,92,,,,10,L1035 U1041 15.12s,IDx2,85831,, +989,ETH,,ERTA Ethiopia National R,,Addis Abeba (aab),9.016667,38.766667,,1,,5615,137,113,,0300-0600,1234567,997,,2441,,, +989,ETH,,ERTA Ethiopia National R,,Addis Abeba (aab),9.016667,38.766667,,1,,5615,137,113,,0800-2100,1234567,997,,2441,,, +990,E,es,SER,,Bilbao/Monte Artxanda (PVA-BI),43.274958,-2.918114,,25,,1203,219,55,,0000-2400,1234567,90,,738,,, +990,CYP,ar,R Sawa,,Cape Greco (kyp-fam),34.960483,34.08525,,600,140,2903,120,58,,0000-2400,1234567,3,,736,,, +990,G,en,BBC R 5 Live,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0000-0400,12345..,,,741,,, +990,G,en,BBC R 5 Live,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0000-0500,.....67,,,741,,, +990,G,en,BBC R 5 Live,,Tywyn (WA-GWY),52.582944,-4.096111,,1,,715,278,64,,0000-2400,1234567,0,,740,,, +990,G,en,BBC R Devon,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0400-2400,12345..,,,741,,, +990,G,en,BBC R Devon,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0500-2400,.....67,,,741,,, +990,G,,BBC R Nan Gaidheal/BBC R Scotlan,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,1,,780,319,65,,0700-2100,1234567,9997,,742,,, +990,G,,BBC R Scotland,,Aberdeen/Redmoss (SC-ABC),57.114111,-2.094944,,1,,780,319,65,,2100-0700,1234567,9997,,742,,, +990,G,en,Magic AM,,Doncaster/Crimpsall (EN-SYK),53.522667,-1.147611,,0.25,,531,290,68,,0000-2400,1234567,0,,744,,, +990,E,es,SER,,Cdiz/San Fernando (Fadricas/EAJ59) (AND-CA),36.461772,-6.217967,,5,,2003,215,70,,0000-2400,1234567,,,739,,, +990,G,en,Free R 80's,,Wolverhampton/Sedgley (EN-WMD),52.543222,-2.140333,,0.09,,583,278,73,,0000-2400,1234567,,,743,,, +990,IRN,fa,IRIB R Iran,,Shiraz/Dehnow (frs),29.446389,52.648306,,400,,4528,105,76,,0000-2400,1234567,5,,745,,, +990,CAN,en,CBY,,Corner Brook (NL),48.932778,-57.906111,,10,,4410,292,91,,,,,,35801,,, +990,MNG,mn,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.789956,107.185125,,500,140,6617,50,96,,0830-0900,1234567,,,47182,,, +990,MNG,mn,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.789956,107.185125,,500,140,6617,50,96,,1000-1030,1234567,,,47182,,, +990,MNG,zh,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.789956,107.185125,,500,140,6617,50,96,,0900-0930,1234567,,,47182,,, +990,MNG,zh,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.789956,107.185125,,500,140,6617,50,96,,1030-1100,1234567,,,47182,,, +990,IND,,AIR North,,Jammu A (JK),32.783889,74.8225,,50,,5769,84,98,,0025-0445,1234567,,,49153,,, +990,IND,,AIR North,,Jammu A (JK),32.783889,74.8225,,50,,5769,84,98,,0630-0930,1234567,,,49153,,, +990,IND,,AIR North,,Jammu A (JK),32.783889,74.8225,,50,,5769,84,98,,1130-1740,1234567,,,49153,,, +990,NIG,,Lagos State R Service,,Lagos/Ikeja (lag),6.569503,3.347894,,10,,5072,184,98,,0430-0005,1234567,,,2442,,, +990,CAN,en,CBW,,Winnipeg (MB),49.836667,-97.5125,,46,,6614,313,107,,,,9912,,35799,,, +990,USA,,WALE,,Greenville (RI),41.955,-71.594167,,5,,5726,292,107,,,,,,20016034,,, +990,USA,en,WNTP,,Philadelphia (PA),40.095278,-75.276944,,10,,6095,292,108,,,,,,42521,,, +990,USA,,WDEO,,Ypsilanti (D) (MI),42.264722,-83.613056,,9.2,,6444,299,112,,,,9990,,20016078,,, +990,AGL,,RNA Em. Prov. do Bi,,Kuito (bie),-12.394278,16.933278,,50,,7244,169,113,,,,,,47108,,, +990,USA,,WDCX,i,Rochester (NY),43.231667,-77.866667,,2.5,,6025,297,113,,,,,,42165,,, +990,USA,,WNML,,Knoxville (TN),36.0425,-83.899722,,10,,6950,294,117,,,,,,42497,,, +990,USA,en,WDYZ,,Orlando/Radio Road (FL),28.574167,-81.462778,,14,,7403,287,120,,,,,,41229,,, +990,CAN,fr,CBAF-20,,Kedgwick (NB),47.645833,-67.350833,,0.04,,5077,295,122,,,,,,20109137,,, +990,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,unknown (NM),34.95,104.5,,10,,7515,61,122,,,,,,36201303,,, +990,TZA,sw,TBC Taifa,,Songea/Luhira (rvm),-10.618222,35.653556,,10,,7515,149,122,,0200-2100,1234567,,,2444,,, +990,CAN,en,CBAO,,St. Stephen (NB),45.1925,-67.261111,,0.04,,5230,292,123,,,,,,20109130,,, +990,CUB,es,R Guam,,Pinar del Ro/CTOM2 (pr),22.433208,-83.662633,,25,,8063,284,124,,,,,,31600035,,, +990,B,pt,ZYJ461 Nova AM,,Rio de Janeiro/Fazenda do Codeco (RJ),-22.763611,-43.006944,,100,,9606,225,126,,,,,,36901675,,, +990,CAN,fr,CBF-16,,Clova (QC),48.109167,-75.359167,,0.04,,5531,300,126,,,,,,20109138,,, +990,CHN,,Shanghai RGD Xinwen Pinl Zhitong 990,,Shanghai/Minhang (SH),31.109167,121.514722,,50,,8824,52,126,,0000-2400,1234567,,,49150,,, +990,CLM,es,HJDB RCN,,Medelln (ant),6.298794,-75.614042,,50,,8911,268,126,,,,,,37386,,, +990,MEX,es,XET-AM La T Grande,,Monterrey (nvl),25.730558,-100.249311,,50,,8828,299,126,,,,,,44784,,, +990,USA,en,WMYM,,Miami (FL),25.842778,-80.42,,5,,7561,284,126,,,,,,42418,,, +990,USA,es,WXCT,,Southington (CT),41.583056,-72.883611,,0.08,,5835,292,126,,,,,,43459,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Tengchong (YN),25.059167,98.499444,,10,,7973,72,127,,,,,,36200607,,, +990,USA,,WDEO,,Ypsilanti (N) (MI),42.265278,-83.611667,,0.25,,6444,299,127,,,,9990,,41150,,, +990,VEN,,YVRT R Tropical 99-0,,Caracas (dcf),10.550361,-66.937689,,10,,7949,263,127,,0000-2400,1234567,,,45450,,, +990,CAN,fr,CBOF-1,,Maniwaki (QC),46.373611,-75.956389,,0.04,,5685,299,128,,,,,,20109136,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Yulong/YNTS704 (YN),27.716667,104.366667,,10,,8121,66,128,,,,,,36200603,,, +990,CHN,zh,CNR 2,,Hailar=Haila'er/NMTS861 (NM),49.234722,119.722222,,1,,7112,42,128,,2100-1602,1234567,,,49146,,, +990,USA,,WISK,,Lawrenceville (GA),33.953056,-83.970833,,1,,7123,293,128,,1200-2400,1234567,,,41805,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Hekou/Binlangzhai (YN),22.527778,103.966944,,20,,8544,70,129,,2210-1555,1234567,,,49147,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Jingdong/YNTS695 (YN),24.466667,100.9,,10,,8179,71,129,,,,,,36200614,,, +990,VEN,,YVTA R Venezuela Tricolor,,Barquisimeto (lar),10.016667,-69.216667,,10,,8150,265,129,,0000-2400,1234567,,,45464,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Qujing/YNTS691 (YN),25.470556,103.788611,,10,,8278,68,130,,,,,,36200608,,, +990,PTR,,WPRA,,Mayaguez (PR),18.168889,-67.150833,,0.91,,7308,269,130,,0100-0400,1234567,,,42727,,, +990,USA,en,WLLI,,Somerset (PA),40.025278,-79.095,,0.1,,6340,294,130,,,,,,42526,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Gejiu/YNTS654 (YN),23.398333,103.161389,,10,,8417,70,131,,,,,,36200616,,, +990,DOM,,HISA R Cibao,,Santiago de los Caballeros (sto),19.466667,-70.716667,,1,,7441,272,131,,1000-0400,1234567,,,37296,,, +990,USA,,WTIG,,Massillon (OH),40.832222,-81.561111,,0.112,,6430,297,131,,,,,,43138,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Maguan (YN),23.033333,104.4,,10,,8528,69,132,,,,,,36200610,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Malipo (YN),23.15,104.733333,,10,,8539,69,132,,,,,,36200609,,, +990,B,pt,ZYJ596 Rural AM,,Mossor (RN),-5.207222,-37.313889,,1,,7590,228,133,,,,78,,36901683,,, +990,EQA,,HCGH1 R Tarqu,,Quito (pic),-0.166667,-78.466667,,20,,9673,266,133,,,,,,36956,,, +990,KOR,ko,HLAP MBC,,Masan/Gapo (gsn),35.1725,128.576111,,10,,8807,45,133,,0000-2400,1234567,,,49167,,, +990,CAN,xx,CBDB,,Watson Lake (YT),60.064444,-128.716389,,0.165,,6914,337,134,,,,,,20100008,,, +990,J,,JORK NHK1,,Kochi (shi-koc),33.566667,133.6,,10,,9196,42,134,,0000-2400,1234567,,,49166,,, +990,PHL,,DZIQ-AM Radyo Inquirer,,Obando/Panghulo (bul),14.693872,120.946722,,25,,10304,62,134,,,,9997,,49173,,, +990,THA,th,Sor. Wor. Phor.,,Korat=Nakhon Ratchasima/Cho Ho (nrt),15.035833,102.1375,,10,,9077,76,134,,????-1700,1234567,,,49177,,, +990,ARG,es,LRH203 R Formosa,,Formosa (fm),-26.129767,-58.205667,,25,,10717,235,135,,0000-2400,1234567,,,51817,,, +990,CAN,xx,CBDW,,Norman Wells (NT),65.281111,-126.811944,,0.04,,6366,339,135,,,,,,20109134,,, +990,TWN,,Cheng Sheng BC,,Tali (TC),24.15,120.683333,,10,,9417,57,135,,0000-2400,1234567,,,49178,,, +990,TWN,,Ching-Cha Kuangpo Tientai,,Hualien (HL),23.993417,121.621006,,10,,9485,56,135,,,,,,49179,,, +990,USA,,KWAM,,Memphis (TN),35.134444,-90.093889,,0.45,,7405,298,135,,,,11,,39686,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Lushui/Liuku Zhen (YN),25.966667,98.833333,,1,,7918,72,136,,,,,,36200612,,, +990,CHN,zh,Qinhuangdao RGD Yinyue Jiankang Pinl,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,2055-1500,1234567,,,49149,,, +990,CLM,es,HJHI,,Garagoa (boy),5.083333,-73.366667,,5,,8864,265,136,,,,,,35901469,,, +990,USA,,KATD r:KIQI,,Pittsburg (CA),38.504722,-121.18,,5,,8737,321,136,,,,9994,,37977,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Yingjiang (YN),24.694517,97.950522,,1,,7968,73,137,,,,,,36200606,,, +990,EQA,,HCEW2 Frequencia Mil,,Guayaquil (gua),-2.105278,-79.926944,,10,,9942,266,137,,,,,,36925,,, +990,GTM,,TGAL R Perla de Oriente,,Chiquimula (cqm),14.766667,-89.516667,,5,,9114,284,137,,0000-2400,1234567,,,40476,,, +990,MEX,es,XECL-AM Rockola,,Mexicali (bcn),32.651961,-115.391075,,5,,9027,314,137,,,,9,,43851,,, +990,PNR,es,Asamblea Nacional,,Hicaco (chq),8.358611,-82.348333,,5,,9191,274,137,,,,,,35100006,,, +990,SLV,es,YSAT R UPA,,San Salvador (ssl),13.716667,-89.166667,,5,,9182,283,137,,,,,,45320,,, +990,USA,,KFCD,,Farmersville (TX),33.116944,-96.279722,,0.92,,7945,300,137,,,,,,20000013,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Yongren/YNTS698 (YN),26.05,101.666667,,1,,8093,69,138,,,,,,36200605,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Zhaotong/YNTS697 (YN),27.330556,103.694722,,1,,8112,67,138,,,,,,36200602,,, +990,MEX,es,XEPI-AM W R,,Chilpancingo (gue),17.563661,-99.465172,,5,,9510,293,138,,,,,,44548,,, +990,USA,,KZZB,,Beaumont (TX),30.149167,-94.133056,,1,,8072,297,138,,,,,,39915,,, +990,USA,,WBTE,,Windsor (NC),35.966667,-76.948333,,0.025,,6516,290,138,,,,,,40916,,, +990,CAN,,CIED,,Medicine Hat (AB),50.323611,-110.909167,,0.1,,7194,321,139,,,,,,20109223,,, +990,CAN,xx,CBQJ,,Ross River (YT),61.941667,-132.448056,,0.04,,6826,339,139,,,,,,20109131,,, +990,PNR,es,R Impacto/Filadelfia R,,Ciudad de Panam (pnm),9.037222,-79.4475,,3,,8934,272,139,,,,,,52317,,, +990,PRU,es,OBX4J R Latina,,Lima/Playa Venecia (lim),-12.25,-76.933333,,10,,10632,257,139,,,,,,37000007,,, +990,USA,en,WGSO,,New Orleans (LA),29.956667,-90.076111,,0.4,,7838,294,139,,,,,,41566,,, +990,CAN,xx,CBQF,,Carmacks (YT),62.100278,-136.266111,,0.04,,6898,341,140,,,,,,20109132,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Yuanjiang/YNTS694 (YN),23.6,102,,1,,8324,71,140,,,,,,36200604,,, +990,HTI,,R Cacique,,Port-au-Prince (oue),18.516667,-72.316667,,0.2,,7631,273,140,,,,,,35636,,, +990,MEX,es,XEFP-AM R Alegra,,Jalpa (zac),21.660639,-102.945544,,3,,9356,298,140,,,,,,44018,,, +990,PHL,,DZMT-AM (r:666 DZRH-AM),,Laoag City (iln),18.183333,120.583333,,5,,9961,60,140,,,,,,49172,,, +990,USA,,KRKS,,Denver (CO),39.799167,-104.97,,0.39,,7844,311,140,,,,114,,39256,,, +990,USA,,WEEB,,Southern Pines (NC),35.193611,-79.411667,,0.026,,6735,291,140,,,,,,41254,,, +990,USA,,WGML,,Hinesville (GA),31.850278,-81.601111,,0.076,,7143,290,140,,,,,,41532,,, +990,USA,,WLEE,,Richmond (VA),37.527778,-77.38,,0.013,,6423,291,140,,,,,,42152,,, +990,B,pt,ZYJ293 Rdio Naju AM,,Irati (PR),-25.465556,-50.653333,,5,,10249,229,141,,,,,,36901682,,, +990,B,pt,ZYJ321 Rdio Capital,,Cianorte (PR),-23.635,-52.573333,,5,,10176,232,141,,,,,,36901680,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Jiangcheng (YN),22.6,101.833333,,1,,8400,72,141,,,,,,36200615,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Luxi/YNTS705 (YN),24.516667,103.766667,,1,,8359,69,141,,,,,,36200611,,, +990,CHN,,Yunnan RGD Xinwen Guangbo,,Lchun (YN),23.005611,102.354056,,1,,8398,71,141,,,,,,36200613,,, +990,USA,,WJEH,,Gallipolis (OH),38.805556,-82.223056,,0.016,,6628,295,141,,,,,,41864,,, +990,PRU,,OAX6K R Continental,,Tacna (tac),-18,-70.316667,,5,,10708,249,142,,,,,,40333,,, +990,B,pt,ZYH483 Rdio Alvorada Gospel,,Teixeira de Freitas (BA),-17.522536,-39.738178,,1,,8931,224,143,,,,,,36901672,,, +990,B,pt,ZYI922 Rdio Vale do Canind,,Oeiras (PI),-7.022383,-42.134525,,0.25,,8019,231,143,,,,,,36901677,,, +990,PHL,,DYTH-AM,,Tacloban City (lyt),11.233333,125.016667,,5,,10868,60,143,,,,,,49174,,, +990,USA,,KTKT,,Tucson (AZ),32.255278,-111.008889,,1,,8841,310,143,,,,,,39498,,, +990,USA,,WABO,,Waynesboro (MS),31.68,-88.676111,,0.1,,7606,294,143,,,,,,40632,,, +990,USA,,WNRV,,Narrows-Pearisburg (VA),37.344167,-80.776667,,0.01,,6652,293,143,,,,,,42506,,, +990,PHL,,DXBM-AM Super Radyo,,Cotabato City (mag),7.216667,124.233333,,5,,11195,63,144,,0000-2400,1234567,,,49171,,, +990,USA,,WEIS,,Centre (AL),34.15,-85.685278,,0.03,,7215,294,144,,,,,,41273,,, +990,ARG,es,LR4 R.Splendid AM 990,,Buenos Aires/Sarand (df),-34.683861,-58.316444,,5,,11509,230,145,,0000-2400,1234567,2,,39925,,, +990,MEX,es,XEATM-AM R Frmula,,Morelia (mic),19.698867,-101.141022,,1,,9423,296,145,,,,,,43739,,, +990,MEX,es,XEIU-AM Amor,,Oaxaca (oax),17.065431,-96.741739,,1,,9382,291,145,,,,,,44184,,, +990,TWN,,Ching-Cha Kuangpo Tientai,,Yilan (YL),24.769167,121.757222,,1,,9421,55,145,,,,,,49180,,, +990,USA,,KRMO,,Cassville (MO),36.9375,-93.925,,0.047,,7481,302,145,,,,,,39268,,, +990,USA,,WLDX,,Fayette (AL),33.685,-87.821111,,0.042,,7386,295,145,,,,,,42148,,, +990,HWA,en,KIKI,,Honolulu (HI),21.323889,-157.875556,,5,,11708,345,146,,0000-2400,1234567,998,,38532,,, +990,CAN,en,CBKN,,Shalalth (BC),50.730278,-122.241667,,0.04,,7605,328,147,,,,,,20109135,,, +990,INS,id,PM3CET R.Nias Mitra Dharma,,Gunungsitoli (SU-nia),1.283333,97.616667,,1,,9977,88,147,,,,,,35400046,,, +990,USA,,KSVP,,Artesia (NM),32.824722,-104.399722,,0.25,,8434,306,147,,,,,,39438,,, +990,USA,,KTMS,,Santa Barbara (CA),34.470833,-119.675833,,0.5,,9058,318,147,,,,9980,,39512,,, +990,B,pt,ZYH299 Rdio Independncia,,Maus (AM),-3.40185,-57.686633,,0.25,,8588,247,148,,,,,,36901674,,, +990,USA,,KRSL,,Russell (KS),38.906111,-98.860833,,0.03,,7594,306,148,,,,,,39295,,, +990,USA,,WCAZ,,Carthage (IL),40.408333,-91.170833,,0.009,,7035,302,148,,,,,,40950,,, +990,MEX,es,XEBC-AM La Buena Onda,,Ciudad Guzmn (jal),19.717644,-103.473872,,0.5,,9564,297,149,,,,,,43764,,, +990,PRU,,OBX3L,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000082,,, +990,USA,,WITZ,,Jasper (IN),38.350556,-86.940556,,0.006,,6951,298,149,,,,,,41820,,, +990,EQA,,HCAU5,,Cuenca (azu),-2.85,-79,,0.5,,9945,265,150,,,,,,36854,,, +990,MEX,es,XEER-AM R Lobo,,Ciudad Cuauhtmoc (chi),28.393889,-106.8175,,0.25,,8969,305,150,,,,,,43975,,, +990,USA,,KAYL,,Storm Lake (IA),42.634722,-95.169444,,0.006,,7078,306,150,,,,,,37993,,, +990,INS,id,PM5DXN R Bahana Nirmala,,Martapura (KS),-3.416667,110.35,,1,,11256,81,151,,????-1145,1234567,,,49163,,, +990,B,pt,ZYK579 Rdio Cultura Regional,,Dois Crregos (SP),-22.374278,-48.385767,,0.25,,9836,229,152,,,,,,36901684,,, +990,INS,id,R Gita Lestari,,Brebes/Ketanggungan (JT-bre),-7.8,110.35,,1,,11642,84,152,,,,,,49155,,, +990,INS,id,R Pesona Bahari,,Weleri (JT-ken),-6.966667,110.066667,,1,,11549,83,152,,,,,,49164,,, +990,MEX,,XEHZ-AM,,La Paz (bcs),24.090556,-110.336389,,0.25,,9562,305,152,,,,,,44153,,, +990,ARG,,LRJ201 R Calingasta,,Barreal (sj),-31.633333,-69.466667,,1,,11858,240,153,,1000-0500,1234567,,,51818,,, +990,AUS,en,6RPH Information R,,Perth/Ascot Waters (WA),-31.934742,115.915567,,5,,14040,97,153,,0000-2400,1234567,,,49144,,, +990,INS,id,PM8DCZ R.Suara Sawerigading,,Wonomulyo (SR-pol),-3.4,119.216667,,1,,11845,74,153,,,,,,35400135,,, +990,USA,,KAML,,Karnes City/CR-345 (TX),28.850556,-97.88,,0.07,,8411,299,153,,,,,,37945,,, +990,USA,,WRFM,,Muncie (IN),40.115,-85.367222,,0.001,,6716,298,154,,,,,,42166,,, +990,B,pt,ZYJ763 Rdio Itapiranga,,Itapiranga (SC),-27.157778,-53.695833,,0.25,,10568,231,155,,,,,,36901678,,, +990,B,pt,ZYK335 Rdio Sananduva AM,,Sananduva (RS),-27.955833,-51.803611,,0.25,,10545,229,155,,,,,,36901679,,, +990,CHL,,CC99 R El Roble,,Parral (ML),-36.25,-71.666667,,1,,12383,238,155,,,,,,51951,,, +990,B,pt,ZYK314 Tup AM,,Tupanciret (RS),-29.076944,-53.856944,,0.25,,10757,230,156,,,,,,36901685,,, +990,B,pt,ZYK360 Rdio Clube Pedro Osrio AM,,Pedro Osrio (RS),-31.852778,-52.8,,0.25,,10963,228,156,,,,,,36901676,,, +990,AUS,,4RO,,Rockhampton/Port Alma (QLD),-23.583333,150.845778,,5,,15643,57,159,,0000-2400,1234567,,,49145,,, +990,USA,,KTHH,,Albany (OR),44.595278,-123.126111,,0.009,,8228,325,160,,,,,,39482,,, +990,AUS,,8GO ABC Darwin,,Nhulunbuy (Gove) (NT),-12.191111,135.776667,,0.5,,13698,65,162,,0000-2400,1234567,,,49143,,, +990,AUS,,3RN ABC National,,Albury/Wodonga (VIC),-36.101967,146.902611,,0.3,,16455,76,174,,0000-2400,1234567,991,,49142,,, +990,NZL,,R Apna/R Chinese,,Auckland/Mangere (AUK),-36.989861,174.764669,,1,,18103,33,174,,0000-2400,1234567,0,,49169,,, +990,NZL,en,LiveSPORT,,Nelson/Richmond (NSN),-41.3225,173.172778,,1,,18453,45,175,,,,,,49170,,, +995,RUS,,DW,b,Nikolskoye,54.0625,49.208333,,0.025,,2823,68,101,,,,107,L800 U1015 ,85833,,, +995,RUS,,KW,b,Kislovodsk (ST),43.9375,42.625,,0.025,,2808,94,101,,,,,,85834,,, +999,MDA,be,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2000-2030,1......,9999,,759,,, +999,MDA,ru,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,0300-0500,12345..,9999,,759,,, +999,MDA,ru,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1930-1945,12....7,9999,,759,,, +999,MDA,ru,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2000-2015,0.234567,9999,,759,,, +999,MDA,ru,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2015-2030,.2345.7,9999,,759,,, +999,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,0500-0900,1234567,9999,,759,,, +999,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,0900-1100,.....67,9999,,759,,, +999,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1100-1900,1234567,9999,,759,,, +999,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2100-2300,1234567,9999,,759,,, +999,MDA,uk,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1900-1930,1234567,9999,,759,,, +999,MDA,uk,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1930-1945,..3456.,9999,,759,,, +999,MDA,uk,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,1945-2000,1234567,9999,,759,,, +999,MDA,uk,TWR Europe,,Grigoriopol/Maiac (TN),47.282928,29.439922,,500,,1733,99,47,,2015-2030,.....6.,9999,,759,,, +999,I,it,RAI Piemonte,,Volpiano (to),45.192292,7.826556,,50,,776,172,48,,0620-0630,123456,0,,4000010,,, +999,I,it,RAI Piemonte,,Volpiano (to),45.192292,7.826556,,50,,776,172,48,,1110-1130,123456,0,,4000010,,, +999,I,it,RAI R1 (FM),,Volpiano (to),45.192292,7.826556,,50,,776,172,48,,0000-2400,1234567,0,,4000010,,, +999,E,es,COPE,,Madrid/Majadahonda (MAD-M),40.436869,-3.8294,,50,,1515,215,55,,0000-2400,1234567,9981,,749,,, +999,G,en,BBC R Solent,,Fareham (EN-HPS),50.849306,-1.226833,,1,,547,258,62,,0000-2400,1234567,0,,751,,, +999,G,en,Magic 999,,Preston/Longton (EN-LNC),53.720444,-2.809028,,0.8,,643,290,64,,0000-2400,1234567,9987,,754,,, +999,G,en,Gold,,Nottingham/Trowell (EN-NHS),52.953167,-1.248083,,0.25,,526,283,68,,0000-2400,1234567,9992,,752,,, +999,SRB,sr,R Beograd 1,,Kladovo (Srb-bor),44.609367,22.594111,,1,,1453,119,72,,0000-2400,1234567,,,763,,, +999,ARS,ar,BSKSA Al-Quran al-Karim,,Duba (tbk),27.438317,35.595681,,100,,3660,127,74,,0000-2400,1234567,0,,748,,, +999,IRN,,IRIB R Kordestan,,Baneh (kdn),35.989,45.872111,,50,,3566,104,76,,0230-1730,1234567,17,,1792,,, +999,MLT,,Radju Malta,,Bizbizja (mt),35.913139,14.411417,,1,,1908,158,76,,0000-2400,1234567,8493,,760,,, +999,QAT,ar,QBS,,Al-Khisah (dyn),25.405333,51.478833,,50,,4790,111,88,,0245-0700,1234567,1,,762,,, +999,QAT,ar,QBS,,Al-Khisah (dyn),25.405333,51.478833,,50,,4790,111,88,,1300-1900,1234567,1,,762,,, +999,IRQ,ar,R Al-Bilad,,Baghdad (bgh),33.312367,44.264044,,2,,3669,110,91,,0330-1700,1234567,23,,758,,, +999,UGA,xx,UBC West,,Kabale (kab),-1.247639,29.920111,,100,,6329,152,100,,0300-2100,1234567,,,2445,,, +999,AFG,,R Helmand,,Lashkar Ga (hel),31.583333,64.333333,,5,,5146,93,101,,0330-0730,1234567,,,11000008,,, +999,AFG,,R Helmand,,Lashkar Ga (hel),31.583333,64.333333,,5,,5146,93,101,,1130-1430,1234567,,,11000008,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,10,,5377,67,101,,2300-1800,1234567,,,36200015,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Hami=Kumul/XJTS761 (XJ),42.872778,93.511667,,10,,6223,62,109,,2300-1800,1234567,,,36200014,,, +999,CHN,zh,Aihui RGD Ai Guang zhi Sheng,,Heihe/SARFT913 (HL),50.23,127.519167,,100,,7361,37,111,,2125-????,1234567,,,49195,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Zhaosu/SARFT8113 (XJ),43.148333,81.119444,,1,,5433,69,111,,2300-1800,1234567,,,36200011,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Shache=Yarkant/SARFT8107 (XJ),38.417222,77.225833,,1,,5512,76,112,,2300-1800,1234567,,,36200013,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Xinyuan=Knes/SARFT8117 (XJ),43.46,83.263611,,1,,5548,68,112,,2300-1800,1234567,,,36200012,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Kuqa=Kuche/SARFT8106 (XJ),41.717222,82.895278,,1,,5646,70,113,,0000-1800,1234567,,,49186,,, +999,KRE,,KCBS Chosun Jungang Pangsong,,Hamhung (han),39.928744,127.50835,,250,,8310,43,116,,2000-1800,1234567,790,,49206,,, +999,CHN,zh,CNR 1,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,0000-0030,1234567,,,49190,,, +999,CHN,zh,CNR 1,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,1030-1100,1234567,,,49190,,, +999,CHN,zh,CNR 1,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,2230-2300,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,0030-0600,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,0600-1000,1.34567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,1000-1030,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,1100-1800,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,2000-2230,1234567,,,49190,,, +999,CHN,zh,Xizang RGD Hanyu,,Lhasa (XZ),29.649194,91.161778,,10,,7110,74,118,,2300-2400,1234567,,,49190,,, +999,BGD,,Bangladesh Betar,,Thakurgaon (rgp),26.057889,88.510556,,10,,7228,79,119,,0950-1710,1234567,,,49183,,, +999,CHN,zh,Xinjiang RGD 738 Zonghe,,Ruoqiang=Qarkilik/SARFT8105 (XJ),39.042222,88.170278,,1,,6179,69,119,,2300-1800,1234567,,,36200010,,, +999,CHN,,Liaoning RGD Jingji Tai,,Shenyang/SARFT033 (LN),41.625278,123.300556,,50,,7955,45,120,,2125-1600,1234567,,,49193,,, +999,IND,,AIR North,,Almora (UT),29.589389,79.640306,,1,,6345,83,120,,0020-1740,1234567,,,49196,,, +999,IND,,AIR South,,Coimbatore (TN),10.940083,77.018472,,20,,7730,99,121,,0020-0345,1234567,78,,49197,,, +999,IND,,AIR South,,Coimbatore (TN),10.940083,77.018472,,20,,7730,99,121,,0610-0915,123456,78,,49197,,, +999,IND,,AIR South,,Coimbatore (TN),10.940083,77.018472,,20,,7730,99,121,,0630-1100,......7,78,,49197,,, +999,IND,,AIR South,,Coimbatore (TN),10.940083,77.018472,,20,,7730,99,121,,1200-1735,1234567,78,,49197,,, +999,ZWE,,Voice of Zimbabwe,,Gweru (mdl),-19.522694,29.936125,,50,,8286,157,123,,,,,,20400003,,, +999,CHN,,Guiyang RGD News,,Guiyang (GZ),26.416667,106.6,,10,,8373,66,131,,????-1600,1234567,,,49189,,, +999,THA,,Thor. Phor. Saam,,Chiang Rai/Fort Mengrai Maharat (cri),19.906117,99.813944,,10,,8500,75,132,,2200-1400,1234567,,,49216,,, +999,KOR,ko,HLCL CBS,,Gwangju (gwa),35.226111,126.775278,,10,,8714,46,133,,2000-1600,1234567,,,49207,,, +999,CHN,,Guangdong RGD Nanfang Shenghuo,,Guangzhou/SARFT808 (GD),23.106389,113.26,,10,,9074,63,134,,,,,,49188,,, +999,THA,th,Phon Neung Ror. Or.,,Bangkok/Viphavadee-Rangsit Rd (bmp),13.774222,100.551222,,10,,9082,78,134,,0000-2400,1234567,0,,49215,,, +999,CHN,,Shandong Guangbo Dilu Pindao,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,,,,,36200601,,, +999,CHN,,Bozhou RGD,,Bozhou (AH),33.883333,115.766667,,1,,8259,54,140,,,,,,36200600,,, +999,PHL,,DZEQ-AM Radyo ng Bayan,,Baguio (bgt),16.4,120.583333,,5,,10125,61,140,,,,,,49209,,, +999,PHL,,DWMI-AM,,Calapan (orm),13.4,121.166667,,5,,10437,62,141,,,,,,49210,,, +999,J,ja,NHK R 1,,Hachinohe (toh-aom),40.4625,141.469722,,1,,8845,33,143,,0000-2400,1234567,,,49205,,, +999,PHL,,DYSS-AM Super Radyo,,Cebu City/Mambaling (ceb),10.284978,123.876661,,5,,10888,62,143,,0000-2400,1234567,,,49212,,, +999,J,,JODP NHK1,,Onomichi (chg-hir),34.405556,133.208056,,1,,9097,42,144,,0000-2400,1234567,,,49203,,, +999,J,,NHK R 1,,Nakamura (shi-koc),32.983333,132.916667,,1,,9221,43,144,,0000-2400,1234567,,,49202,,, +999,TWN,,Tien Nan BS Golden Channel,,Taipei (TPS),25.081719,121.516756,,1,,9379,56,145,,0000-2400,1234567,999,,49217,,, +999,FSM,,V6AF Baptist R,,Pohnpei (pnp),6.965833,158.204667,,10,,12921,32,147,,,,,,39900001,,, +999,PHL,,DXHP-AM,,Castillo (sds),8.183333,126.35,,1,,11232,61,151,,2100-1600,1234567,,,49211,,, +999,PHL,,DXPT-AM Radyo ng Bayan,,Tawi-Tawi/Bongao (slu),5.016667,119.766667,,1,,11119,68,151,,,,,,49213,,, +999,J,,NHK R 1,,Itoigawa (chu-nii),37.05,137.866667,,0.1,,9042,37,154,,0000-2400,1234567,,,49199,,, +999,J,,NHK R 1,,Komagane (chu-nag),35.716667,137.933333,,0.1,,9176,38,154,,0000-2400,1234567,,,49200,,, +999,J,,NHK R 1,,Miyazu (kns-kyo),35.533333,135.2,,0.1,,9077,40,154,,0000-2400,1234567,,,49201,,, +999,J,,NHK R 1,,Tsuwano (chg-shi),34.45,131.766667,,0.1,,9027,43,154,,0000-2400,1234567,,,49204,,, +999,AUS,,2ST,,Nowra (NSW),-34.888333,150.534722,,5,,16598,70,162,,0000-2400,1234567,995,,49182,,, +999,AUS,,2NB ABC Broken Hill,,Broken Hill (NSW),-31.929514,141.4825,,2,,15773,76,163,,0000-2400,1234567,,,49181,,, +999,NZL,,Manawatu Access R./Sounz AM,,Palmerston North/Setters Line (MWT),-40.3,175.6,,1.5,,18464,36,173,,0000-2400,1234567,2,,49208,,, +1000,USA,en,WMVP,,Chicago (IL),41.818056,-87.988333,,50,,6737,301,107,,,,2,,42414,,, +1000,USA,,WLNL,,Horseheads (NY),42.153889,-76.846389,,5,,6041,295,110,,,,,,42196,,, +1000,USA,,WCMX,,Leominster (MA),42.523611,-71.735278,,1,,5695,292,114,,,,998,,41042,,, +1000,RUS,,KZ,b,Severnoye (NS),56.354167,78.375,,0.025,,4484,54,118,,,,,U400 ,85835,,, +1000,USA,,WIOO,,Carlisle (PA),40.158333,-77.196944,,1,,6211,293,119,,,,,,41783,,, +1000,USA,en,KOMO,,Seattle/Dilworth (WA),47.463611,-122.440833,,50,15,7925,326,119,,,,34,,39087,,, +1000,USA,,WRQR,,Paris (TN),36.313889,-88.2925,,5,,7198,297,122,,,,,,42408,,, +1000,USA,,WKDE,,Altavista (VA),37.122222,-79.288889,,1,,6576,292,123,,,,,,41981,,, +1000,USA,,WRTG,,Garner (NC),35.730556,-78.603333,,1,,6641,291,123,,,,,,42924,,, +1000,B,pt,ZYK522 Rdio Record,,So Paulo/Avenida Guarapiranga (SP),-23.684167,-46.7425,,200,,9878,227,124,,,,9937,,36901688,,, +1000,USA,,WCCD,,Parma (OH),41.319722,-81.768611,,0.5,,6406,297,124,,,,,,40963,,, +1000,USA,,WKVG,,Jenkins (KY),37.166389,-82.620278,,1,,6781,294,125,,,,,,42085,,, +1000,USA,,WYBT,,Blountstown (FL),30.454167,-85.042222,,5,,7479,291,125,,,,,,43507,,, +1000,USA,,WRAR,,Tappahannock (VA),37.874167,-76.726944,,0.3,,6355,291,126,,,,,,42814,,, +1000,USA,en,WXTN,,Benton (MS),33.110833,-90.039167,,5,,7570,296,126,,1300-0100,1234567,,,43495,,, +1000,CUB,es,R Artemisa,,Artemisa (ar),22.807056,-82.7663,,10,,7972,284,127,,,,2,,31600034,,, +1000,VEN,,YVNM R Mil La Caribena,,Morn (cbb),10.5,-68.166667,,10,,8037,264,127,,0900-0400,1234567,,,45394,,, +1000,CUB,es,R Granma,,Media Luna (gr),20.150067,-77.433781,,5,,7840,278,128,,,,999,,31600069,,, +1000,USA,,KTOK,,Oklahoma City (OK),35.358056,-97.463333,,5.8,,7820,303,128,,,,,,39525,,, +1000,VIR,en,WVWI,,Charlotte Amalie (sto),18.336389,-64.944722,,1,,7143,267,128,,,,,,43349,,, +1000,USA,en,WDJL,,Huntsville (AL),34.779722,-86.654444,,1.1,,7224,295,129,,1200-2400,1234567,,,41166,,, +1000,CLM,es,HJAQ RCN,,Cartagena (bol),10.5,-75.416667,,15,,8531,270,130,,,,994,,37332,,, +1000,MEX,es,XEOY-AM R Mil,,Mxico D.F/Iztacalco (dif),19.388756,-99.125003,,20,,9326,294,132,,,,998,,44521,,, +1000,VEN,,YVOA R Tachira,,San Cristbal (tch),7.766667,-72.366667,,10,,8561,266,132,,1000-0400,1234567,,,45403,,, +1000,USA,en,WDXZ,,Robertsdale (AL),30.536944,-87.705,,1,,7641,293,133,,1300-0100,1234567,,,42509,,, +1000,CLM,es,HJJG,,Manizales (cal),5.066667,-75.466667,,10,,9009,267,134,,,,,,37507,,, +1000,CTR,,TIMIL Mil FM,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,0000-2400,1234567,,,40595,,, +1000,NCG,,YNFF R Mil,,Managua (mng),12.083333,-86.316667,,10,,9134,280,134,,1200-2400,1234567,,,45249,,, +1000,PNR,es,HOK36 R Poderosa,,Aguadulce (ccl),8.2463,-80.533767,,10,,9077,273,134,,1000-0500,1234567,,,37697,,, +1000,B,pt,ZYI698 Rdio Oeste da Paraba,,Cajazeiras (PB),-6.865178,-38.562931,,1,,7817,228,135,,,,,,36901686,,, +1000,EQA,,HCAW2,,Guayaquil (gua),-2.2,-79.9,,10,,9949,266,137,,,,,,36857,,, +1000,USA,,KXRB,,Sioux Falls (SD),43.486944,-96.596667,,0.1,,7085,308,138,,,,23,,39821,,, +1000,BOL,,CP220 R Baha'i de Bolivia,,Caracollo (oru),-17.65,-67.166667,,10,,10478,246,139,,0800-0200,1234567,,,51985,,, +1000,B,pt,ZYI791 Rdio Princesa Serrana,,Timbaba (PE),-7.515278,-35.323167,,0.25,,7722,225,140,,,,,,36901687,,, +1000,BOL,,CP43 R Pirai,,Santa Cruz (scz),-17.766667,-63.166667,,5,,10242,243,141,,,,,,36698,,, +1000,BOL,,CP119 R Dif. Tropico,,Trinidad (ebn),-14.8,-64.783333,,3,,10072,246,142,,1300-0030,1234567,,,36634,,, +1000,PRG,,ZP36 R Mil,,San Antonio (asu),-25.416667,-57.544444,,5,,10615,235,142,,0900-0100,1234567,,,51735,,, +1000,ARG,,LT42 R del Ibera,,Mercedes (cn),-29.166667,-58.066667,,5,,10990,233,143,,0900-0300,1234567,,,40194,,, +1000,USA,,KFLG,,Bullhead City (AZ),35.169444,-114.633889,,1,,8753,314,143,,,,,,38404,,, +1000,HND,,HRXZ,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37879,,, +1000,MEX,es,XECSV-AM Mxima,,Coatzacoalcos (vcz),18.135878,-94.42805,,1,,9139,290,144,,,,,,43876,,, +1000,SLV,,YSHH,,Santa Ana (sta),14,-89.5,,1,,9180,283,144,,,,,,45278,,, +1000,USA,,KCEO,,Vista (CA),33.232778,-117.269722,,0.9,,9064,315,144,,,,,,38139,,, +1000,CHL,es,CB100 R RRB,,Santiago/Pudahuel (RM),-33.405611,-70.871494,,7,,12094,239,145,,1030-0500,1234567,,,35720,,, +1000,MEX,es,XEMMS-AM Ke Buena,,Mazatln (sin),23.215256,-106.373725,,1,,9417,302,145,,,,,,44390,,, +1000,MEX,es,XEMYL-AM Los 40 Principales,,Mrida (yuc),21.031389,-89.575556,,0.5,,8572,288,145,,,,,,44425,,, +1000,MEX,es,XETAC-AM Exa,,Tapachula (cps),14.888528,-92.227175,,1,,9282,286,145,,,,,,44788,,, +1000,USA,,KSTA,,Coleman (TX),31.854444,-99.426667,,0.25,,8238,302,145,,,,,,39419,,, +1000,EQA,,HCCR1,,Alegria (pic),-0.216667,-79.15,,1,,9724,266,146,,,,,,36888,,, +1000,MEX,es,XEHPC-AM R Mil,,Hidalgo del Parral (chi),26.921294,-105.650289,,0.5,,9038,303,147,,,,,,44134,,, +1000,USA,,KBIB,,Marion (TX),29.569167,-98.163056,,0.25,,8365,299,147,,,,,,38032,,, +1000,MEX,es,XERZ-AM W R,,Len (gua),21.086667,-101.682778,,0.5,,9331,297,148,,,,,,44724,,, +1000,MEX,es,XEFV-AM La Rancherita,,Ciudad Jurez (chi),31.686111,-106.429722,,0.25,,8649,307,149,,,,,,44036,,, +1000,USA,ht,WJBW,,Jupiter (FL),26.938889,-80.116667,,0.017,,7450,285,149,,,,,,41850,,, +1000,MEX,es,XEMIL-AM Planeta,,Los Mochis (sin),25.817417,-109.015578,,0.25,,9329,305,151,,,,,,44380,,, +1000,ARG,,R Sintonia,,Jos Clemente Paz (ba),-34.5,-58.75,,1,,11515,230,152,,,,,,51825,,, +1000,EQA,,HCMB1,,Ibarra (imb),0.35,-78.116667,,0.25,,9603,266,152,,,,,,37015,,, +1000,MEX,es,XENLT-AM R Frmula,,Nuevo Laredo (tam),27.474331,-99.513622,,0.1,,8630,299,152,,,,,,44449,,, +1000,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010600,,, +1000,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010603,,, +1000,ARG,,LU16 R Rio Negro,,Villa Regina (rn),-39.1,-67.066667,,1,,12369,233,155,,0900-0300,1234567,,,40210,,, +1000,USA,,KKIM,,Albuquerque (NM),35.170556,-106.630833,,0.038,,8344,309,155,,,,,,38722,,, +1000,USA,en,WPFM428,,Barstow/1800 Dill St. (CA),34.894361,-116.995583,,0.01,,8892,316,163,,,,,,20010601,,, +1000,USA,en,KG2XAJ,,San Antonio (TX),29.446667,-98.608056,,0.0001,,8402,300,181,,,,,,20010602,,, +1005,RUS,,LO,b,Klimovsk,55.354167,37.541667,,0.025,,2061,68,94,,,,,U1061 30.0s,IDx2,85836,, +1005,UKR,,PR,b,Pravdivka,48.3125,37.708333,,0.025,,2249,88,95,,,,,,85837,,, +1005,RUS,,VL,b,Zheltoye,51.645833,56.625,,0.025,,3377,71,107,,,,,U1003 ,IDx2 + 20 gap,85838,, +1008,HOL,nl,GrootNieuws R,,Zeewolde (Flevoland) (fle),52.375167,5.417194,,100,133,74,294,11,,0000-2400,1234567,28,,778,,, +1008,E,es,SER,,Girona/Sarra de Dalt (CAT-GI),42.01645,2.808789,,5,,1155,195,62,,0000-2400,1234567,9993,,772,,, +1008,E,es,SER,,Badajoz (EXT-BA),38.859336,-6.944161,,10,,1798,220,65,,0000-2400,1234567,10,,773,,, +1008,E,es,SER,,Alicante=Alacant (VAL-A),38.352222,-0.491111,,5,,1621,202,66,,0000-2400,1234567,996,,774,,, +1008,EGY,ar,ERTU Al-Barnameg al-Aam/Sawt al-Arab/Sawt al-Falasteniy,,El-Arish=Al-Arish (sin),31.111833,33.699444,,100,90,3219,126,69,,0400-2000,1234567,1,,775,,, +1008,SRB,sr,R Beograd 2,,Beograd/Krnjača (Srb-gbg),44.841239,20.473014,,1,,1311,122,70,,0400-1900,1234567,,,779,,, +1008,SRB,sr,R Beograd 3,,Beograd/Krnjača (Srb-gbg),44.841239,20.473014,,1,,1311,122,70,,1900-0400,1234567,,,779,,, +1008,IRN,fa,IRIB R Semnan,,Semnan (smn),35.5445,53.357878,,100,,4101,98,78,,0030-2230,1234567,0,,1793,,, +1008,CNR,es,esR,,Arucas/EAJ50 (LPM-GC),28.11695,-15.50175,,10,,3227,223,79,,0000-2400,1234567,,,771,,, +1008,EGY,ar,ERTU Al-Barnameg al-Aam,,Al-Fayyum=Faiyum (fym),29.245711,30.886508,,10,,3242,132,79,,0400-2000,1234567,,,776,,, +1008,RUS,ru,R Rossii,,Tuapse/RV983 (KD),44.115028,39.074889,,1,,2557,97,83,,0100-2100,1234567,,,46912,,, +1008,EGY,ar,ERTU Al-Barnameg al-Aam,,Qasr el-Farafra (wjd),27.077617,27.978894,,1,,3313,139,90,,0400-2000,1234567,,,1836,,, +1008,YEM,ar,YGCRT Sana'a R,,Sana'a (san),15.379761,44.195078,,60,,5267,127,92,,1400-2210,1234567,941,,780,,, +1008,NIG,xx,Niger State BC,,Kontagora (nig),10.390028,5.429733,,10,,4640,181,93,,0430-2130,1234567,,,6200009,,, +1008,PAK,,PBC Hayya alal-Falah,,Hyderabad (shd),25.574556,68.443739,,120,,5904,95,95,,0045-0405,1234567,,,49263,,, +1008,PAK,,PBC Hayya alal-Falah,,Hyderabad (shd),25.574556,68.443739,,120,,5904,95,95,,0600-1808,1234567,,,49263,,, +1008,NIG,,OSBC R,,Iree (osu),7.933317,4.716439,,10,,4915,182,96,,0500-2300,1234567,,,2448,,, +1008,CHN,en,CRI News R,,rmqi (XJ),43.583333,87.5,,3,,5804,65,110,,0000-2400,1234567,,,36200573,,, +1008,IND,,AIR East,,Kolkata B (WB),22.363056,88.283889,,100,,7520,82,112,,0025-0515,1234567,,,49247,,, +1008,IND,,AIR East,,Kolkata B (WB),22.363056,88.283889,,100,,7520,82,112,,0700-1000,1234567,,,49247,,, +1008,IND,,AIR East,,Kolkata B (WB),22.363056,88.283889,,100,,7520,82,112,,1130-1840,1234567,,,49247,,, +1008,CHN,zh,CNR 1,,Kunming/Anning-SARFT501 (YN),24.8925,102.484833,,200,,8244,70,116,,2025-1805,1234567,,,36200009,,, +1008,TWN,,R Taiwan Int.,,Lukang (CH),24.052333,120.425583,,300,293,9412,57,120,,0400-0600,1234567,3,,49268,,, +1008,TWN,,R Taiwan Int.,,Lukang (CH),24.052333,120.425583,,300,293,9412,57,120,,1000-1700,1234567,3,,49268,,, +1008,CHN,zh,Hubei RGD Chutian Xinwen,,Jingmen (HU),31.033333,112.2,,50,,8308,59,123,,1955-1705,1234567,,,36200585,,, +1008,CHN,,Shaanxi Xinwen Guangbo,,Yan'an/Dingquanbian (SA),36.602222,109.485833,,10,,7668,57,124,,2150-1610,1234567,,,49235,,, +1008,CHN,,Zhengzhou RGD Wenhua,,Zhengzhou/HETS804 (HE),34.778056,113.579444,,25,,8058,55,124,,2130-1630,1234567,,,49246,,, +1008,CHN,,Gansu RGD,,Jiuquan (GS),39.759722,98.515,,1,,6764,62,125,,2150-1605,1234567,,,36200583,,, +1008,CHN,,Shaanxi Xinwen Guangbo,,Hanzhong (SA),33.154944,106.962472,,10,,7815,61,125,,2150-1710,1234567,,,49236,,, +1008,KOR,,HLCS KBS 3 R,,Gangneung/Yangyang (gan),38.089167,128.659444,,50,,8536,43,125,,2100-1800,1234567,,,49260,,, +1008,CHN,,Handan RGD Jiaotong,,Handan/Nanbao Xiang (HB),36.558056,114.522778,,10,,7954,54,127,,,,,,36200591,,, +1008,J,ja,JONR ABC Asahi Hoso,,Osaka/Takaishi (kns-osk),34.516389,135.434444,,50,,9186,40,127,,0000-2400,1234567,9941,,49259,,, +1008,MOZ,pt,Emisso Provincial Maputo,,Maputo (mpc),-25.9585,32.461444,,50,,9044,156,127,,0250-2200,1234567,9990,,2447,,, +1008,CHN,zh,CNR 1,,Chuxiong/YNTS692 (YN),25.020511,101.555006,,10,,8174,70,129,,2025-1805,1234567,,,36200594,,, +1008,CHN,zh,CNR 1,,Jinping (YN),24.05,104.2,,10,,8427,69,131,,2025-1805,1234567,,,49238,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Hefei/Motancun (AH),31.794111,117.379889,,10,,8536,55,132,,,,,,36200590,,, +1008,CHN,,CRI Voice of the South China Sea,,unknown,34.95,104.5,,1,,7515,61,132,,,,,,36201297,,, +1008,CHN,zh,CNR 1,,Guyuan (NX),36.25,106.166667,,1,,7505,59,132,,2025-1805,1234567,,,36200592,,, +1008,CHN,zh,CNR 1,,several locations,34.95,104.5,,1,,7515,61,132,,2025-1805,1234567,,,49239,,, +1008,CHN,zh,Hubei RGD Chutian Xinwen,,Chibi (HU),29.883333,113.633333,,10,,8493,58,132,,1955-1705,1234567,,,36200596,,, +1008,CHN,zh,Hubei RGD Chutian Xinwen,,Huangshi (HU),30.216667,115.1,,10,,8548,57,132,,1955-1705,1234567,,,36200587,,, +1008,CHN,zh,Nanjing RGD Xinwen Tai,,Nanjing/Gulizhen (JS),31.868167,118.671889,,10,,8600,54,132,,1950-1800,1234567,,,49240,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Wuhu (AH),31.3,118.4,,10,,8637,54,133,,,,,,36200572,,, +1008,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Beihai (GX),21.483333,109.1,,10,,8961,67,134,,,,,,36200598,,, +1008,CHN,,Pingdingshan JGD,,Pingdingshan (HE),33.7,113.283333,,3,,8136,56,134,,,,,,49241,,, +1008,THA,th,Wor. Por. Thor. 3,,Korat=Nakhon Ratchasima/Fort Saranari (nrt),14.9,102.105556,,10,,9087,76,134,,????-1630,1234567,,,49267,,, +1008,CHN,,Langfang RGD,,Langfang (HB),39.528056,116.731667,,1,,7812,50,135,,,,,,36200581,,, +1008,CHN,en,CRI Round the Clock,,Beijing (BJ),39.933333,116.383333,,1,,7759,50,135,,0000-2400,1234567,,,49232,,, +1008,CHN,zh,CNR 1,,Xingping (SA),34.287033,108.517739,,1,,7810,59,135,,2025-1805,1234567,,,36200181,,, +1008,CHN,,Sanmenxia RGD Urban,,Sanmenxia (HE),34.795278,111.189444,,1,,7921,57,136,,,,,,36200576,,, +1008,CHN,,Tianjin Yinyue Tai,,Tianjin (TJ),39.114444,117.242222,,1,,7876,50,136,,2155-1800,1234567,,,49243,,, +1008,CHN,zh,CNR 1,,Leshan/SCTS525 (SC),29.616667,103.666667,,1,,7915,66,136,,2025-1805,1234567,,,36200580,,, +1008,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,1000-1805,1234567,,,36200182,,, +1008,CHN,zh,CNR 1,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,2025-2200,1234567,,,36200182,,, +1008,TWN,,BCC Country Network,,Taitung (TT),22.750928,121.143528,,10,,9572,57,136,,0000-2400,1234567,,,49270,,, +1008,CHN,,Dezhou RGD Literary,,Dezhou (SD),37.4575,116.313333,,1,,7973,52,137,,,,,,49234,,, +1008,CHN,zh,CNR 1,,Ruili (YN),24.020556,97.873333,,1,,8020,74,137,,2025-1805,1234567,,,36200577,,, +1008,TWN,,Cheng Sheng BC,,Kaohsiung/Niaosun (KH),22.703225,120.365678,,5,,9532,58,138,,0000-2400,1234567,,,49269,,, +1008,PHL,,DXXX-AM Radyo Ronda,,San Jose/Puerto Gallenero (ocm),12.383333,121.05,,10,,10523,63,139,,,,8,,49273,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Fuyang (AH),32.930944,115.798294,,1,,8346,55,140,,,,,,36200593,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Huaibei (AH),33.956944,116.783444,,1,,8309,54,140,,,,,,36200589,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Suzhou (AH),33.633333,116.983333,,1,,8349,54,140,,,,,,36200574,,, +1008,CHN,,Suizhou RGD News,,Suizhou (HU),31.715,113.344722,,1,,8314,58,140,,,,,,49242,,, +1008,CHN,zh,CNR 1,,Lancang/Pu'er (YN),22.533333,99.933333,,1,,8282,73,140,,2025-1805,1234567,,,36200582,,, +1008,CHN,zh,CNR 1,,Ning'er/YNTS701 (YN),23.083333,101.05,,1,,8307,72,140,,2025-1805,1234567,,,36200578,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Bengbu (AH),32.95,117.383333,,1,,8432,54,141,,,,,,36200597,,, +1008,CHN,zh,CNR 1,,Jianshui (YN),23.616667,102.833333,,1,,8377,70,141,,2025-1805,1234567,,,36200586,,, +1008,PHL,,DWGO-AM,,Olongapo City (zmb),14.816667,120.283333,,5,,10253,62,141,,,,,,49264,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Anqing (AH),30.516667,117.05,,1,,8632,56,142,,,,,,36200599,,, +1008,CHN,,Yueyang RGD Yun Meng zhi Sheng,,Yueyang (HN),29.133333,113.116667,,1,,8529,59,142,,,,,,49245,,, +1008,PHL,,DWBS-AM Radyo Totoo,,Santo Domingo (aby),13.236111,123.777778,,5,,10608,60,142,,2100-1400,1234567,,,49265,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Chizhou (AH),30.65,117.483333,,1,,8644,55,143,,,,,,36200595,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Huangshan (AH),30.15,118.266667,,1,,8733,55,143,,,,,,36200588,,, +1008,CHN,,Anhui RGD Nongcun Guangbo,,Xuancheng (AH),30.95,118.75,,1,,8688,54,143,,,,,,36200571,,, +1008,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,,,,,36200579,,, +1008,CHN,,Wuxi RGD Story & Drama,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,????-1800,1234567,,,49244,,, +1008,CHN,zh,CNR 1,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,2025-1805,1234567,,,36200584,,, +1008,INS,id,RRI Pro-1,,Gorontalo (GO-grt),0.574489,123.066133,,10,,11733,68,143,,2100-1600,1234567,,,49557,,, +1008,INS,id,RRI Pro-1,,Madiun/Jeruk Gulung (JI-mad),-7.544444,111.57,,10,,11702,83,143,,2155-1658,1234567,0,,49251,,, +1008,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Shaowu/FJTS805 (FJ),27.083333,117.283333,,1,,8955,58,144,,,,,,36200575,,, +1008,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Zhangping/SARFT602 (FJ),25.3,117.416667,,1,,9124,58,144,,,,,,36200007,,, +1008,CHN,,Shenzhen RGD Music FM,,Shenzhen/Shiyan (GD),22.653392,113.895556,,1,,9153,63,144,,,,,,36200008,,, +1008,CHN,,Zhujiang JGD Pearl R,,Jiangmen (GD),22.533333,113.116667,,1,,9117,63,144,,,,,,49237,,, +1008,CHN,,Chenghai RGD,,Chenghai (GD),23.466667,116.766667,,1,,9252,60,145,,,,,,49233,,, +1008,J,,ABC Asahi Hoso,,Kyoto (kns-kyo),34.9825,135.787222,,0.3,,9156,40,149,,0000-2400,1234567,,,49258,,, +1008,INS,id,PM2DRD R.Suara Permangkat,,Permangkat (KB-sam),1.333333,109.25,,1,,10762,79,150,,,,,,49254,,, +1008,INS,id,PM8DBA R Suara Adyafiri,,Watansoppeng (SN-sop),-4.35,119.883333,,1,,11974,74,154,,,,,,48235,,, +1008,AUS,,6GE/6TAB Racing R.,,Geraldton (WA),-28.733333,114.616667,,2,,13700,95,156,,0000-2400,1234567,,,49230,,, +1008,AUS,en,4TAB,,Brisbane/St. Helena Island (QLD),-27.379861,153.235083,,10,,16126,58,157,,0000-2400,1234567,9978,,49228,,, +1008,AUS,,7EX,,Launceston/Abels Hill (TAS),-41.451278,147.215917,,5,,16851,84,163,,0000-2400,1234567,,,49231,,, +1008,NZL,en,1ZD Newstalk ZB,,Tauranga/Paengaroa (BOP),-37.810833,176.412778,,10,112 292,18245,30,164,,0000-2400,1234567,0,,49262,,, +1008,AUS,,2TAB Sky Sports R,,Canberra/Gungahlin (ACT),-35.219583,149.116372,,0.3,,16532,72,174,,,,,,37700071,,, +1010,RUS,,PT,b,Petrozavodsk / Besovets / Dalna (KR),61.895833,34.125,,0.025,,1977,46,93,,,,0,L1020 ,85839,,, +1010,USA,en,WINS,i,New York/Lyndhurst [NJ] (NY),40.803889,-74.106667,,50,,5969,292,100,,,,0,,41772,,, +1010,CAN,en,CFRB,,Toronto/Oakville (ON),43.504722,-79.630278,,50,,6112,298,101,,,,12,,36005,,, +1010,USA,,KXEN,,St. Louis/Mitchell [IL] (D) (MO),38.762778,-90.059722,,50,,7104,300,111,,,,,,39787,,, +1010,CAN,en,CBR,,Calgary (AB),50.938056,-113.961667,,50,,7266,323,113,,,,1,,35794,,, +1010,B,pt,ZYH625 Rdio CBN,,Fortaleza (CE),-3.82565,-38.501183,,50,,7515,230,115,,,,1,,36901696,,, +1010,USA,en,WJXL,,Jacksonville Beach (FL),30.299167,-82.007222,,30,,7296,289,115,,,,,,41781,,, +1010,USA,,WPMH,,Portsmouth (VA),36.822222,-76.443889,,0.449,,6417,290,125,,,,,,42861,,, +1010,USA,en,WHFS,,Seffner (FL),27.990278,-82.251667,,5,90 260,7503,287,125,,,,,,40942,,, +1010,VEN,,YVQF R Venezuela,,Ciudad Bolivar (blv),8.116667,-63.516667,,10,,7932,259,126,,0900-0400,1234567,,,45402,,, +1010,VEN,,YVPC R Aragua,,Cagua (arg),10.157903,-67.440211,,10,,8017,263,127,,0900-0400,1234567,1,,45419,,, +1010,USA,,WCNL,,Newport (NH),43.364444,-72.179722,,0.037,,5664,293,128,,,,125,,42519,,, +1010,USA,en,KBBW,,Waco-Marlin (D) (TX),31.568333,-97.000278,,10,,8121,300,128,,,,,,20012544,,, +1010,USA,en,WKJW,,Black Mountain (NC),35.605278,-82.35,,0.5,,6888,293,129,,,,,,41379,,, +1010,CAN,en,CBLH,,Hornepayne (ON),49.226389,-84.783333,,0.04,,5993,306,131,,,,,,20109140,,, +1010,CLM,es,HJZD R Panzen,,Montera (cor),8.816667,-75.866667,,15,,8708,269,131,,,,9,,37660,,, +1010,USA,,KXEN,,St. Louis/Mitchell [IL] (N) (MO),38.766944,-90.058889,,0.5,,7103,300,131,,,,,,20016201,,, +1010,USA,en,WMIN,,Sauk Rapids (MN),45.605,-94.139167,,0.24,,6780,308,131,,,,,,42329,,, +1010,CAN,en,CBEH,,Terrace Bay (ON),48.788333,-87.098333,,0.04,,6152,307,132,,,,,,20109142,,, +1010,CAN,en,CBLW,,White River (ON),48.588889,-85.285556,,0.04,,6067,306,132,,,,,,20109141,,, +1010,CAN,fr,CBON-6,,Blind River (ON),46.189722,-82.965,,0.04,,6111,302,132,,,,,,20109139,,, +1010,CLM,es,HJOP Oxgeno 1010,,Barranquilla (atl),10.949006,-74.881717,,10,,8456,270,132,,,,989,,37613,,, +1010,PRU,es,OAX4U R Cielo,,Lima (lim),-12.116667,-77.066667,,50,,10629,257,132,,,,985,,40313,,, +1010,USA,,WMOX,,Meridian (MS),32.395,-88.657778,,1,,7545,295,132,,,,,,42373,,, +1010,USA,es,KLAT,,Houston (D) (TX),29.896389,-95.290278,,5,,8164,298,132,,1300-0100,1234567,,,38774,,, +1010,USA,ru,KOOR,,Milwaukie (OR),45.484167,-122.411111,,4.5,,8114,325,132,,1500-0300,1234567,,,39902,,, +1010,CLM,es,HJIX,,Barrancabermeja (sat),7.033333,-73.866667,,10,,8727,267,133,,,,,,37501,,, +1010,USA,es,KLAT,,Houston (N) (TX),29.862222,-95.511667,,3.6,,8180,298,133,,0100-1300,1234567,,,20012529,,, +1010,B,pt,ZYH448 Rdio Bahia AM,,Salvador/Ilha de Itaparica (BA),-12.921853,-38.631039,,5,,8421,225,134,,,,,,36901698,,, +1010,CLM,es,HJCN R Reloj,,Bogot D. C. (bdc),4.583333,-74.066667,,10,,8956,265,134,,,,9,,37365,,, +1010,CLM,es,HJJR Caracol,,Neiva (hui),2.866667,-75.283333,,10,,9189,265,134,,,,1,,37514,,, +1010,USA,,WELS,,Kinston (NC),35.284167,-77.664722,,0.078,,6616,290,134,,,,,,41292,,, +1010,USA,en,KBBW,,Waco-Marlin (N) (TX),31.501944,-96.965,,2.5,,8125,300,134,,,,,,38010,,, +1010,B,pt,ZYH772 Rdio Santelenense,,Santa Helena de Gois (GO),-17.816939,-50.585286,,10,,9516,233,135,,,,,,36901693,,, +1010,USA,,WOLB,i,Baltimore (MD),39.301667,-76.569167,,0.03,,6236,292,135,,,,,,42593,,, +1010,NCG,,YNHG R La Voz del Pinar,,Ocotal (nsg),13.633333,-86.483333,,5,,9010,281,137,,1100-0400,1234567,,,52206,,, +1010,USA,en,WSPC,,Albemarle (NC),35.377778,-80.193889,,0.064,,6770,291,137,,,,,,43049,,, +1010,CLM,es,HJBN LV del Galeras (Todelar),,Pasto (nar),1.216667,-77.283333,,5,,9470,266,138,,,,17,,37352,,, +1010,DOM,,HIJA R Comercial,,Santo Domingo (sdo),18.566667,-69.916667,,0.25,,7463,271,138,,1100-0600,1234567,1,,37261,,, +1010,MEX,es,XEHL-AM Est W,,Guadalajara (jal),20.736878,-103.349058,,5,,9464,298,138,,,,,,44123,,, +1010,USA,,WCST,,Berkeley Springs (WV),39.616667,-78.2175,,0.017,,6316,294,138,,,,,,41090,,, +1010,EQA,,HCNR6,,Ambato (tun),-1.216667,-78.616667,,5,,9775,265,139,,,,,,37044,,, +1010,EQA,,HCRS6,,Guaranda (bol),-1.6,-79,,5,,9835,265,139,,,,,,37112,,, +1010,PNR,es,HOL86 R Nacional,,Isla Coln (bct),9.405556,-82.255833,,3,,9093,275,139,,,,,,52318,,, +1010,USA,en,WUKZ,,Marion (VA),36.856389,-81.505833,,0.035,,6736,293,139,,,,,,42306,,, +1010,B,pt,ZYK507 Rdio Difusora de Lenis Paulist,,Lenis Paulista (SP),-22.597661,-48.812228,,5,,9879,229,140,,,,,,36901689,,, +1010,USA,,KSIR,,Brush (CO),40.313889,-103.591667,,0.28,,7727,310,140,,,,9983,,39363,,, +1010,USA,,WIOI,,New Boston (OH),38.73,-82.952778,,0.022,,6678,296,140,,,,,,41780,,, +1010,USA,en,WTZA,,Atlanta (GA),33.698611,-84.289722,,0.078,,7164,293,140,,,,,,41579,,, +1010,B,pt,ZYJ263 Celinauta AM,,Pato Branco (PR),-26.224167,-52.638333,,5,,10424,230,141,,,,,,36901695,,, +1010,USA,,KTNZ,,Amarillo (TX),35.184167,-101.691111,,0.5,,8074,306,141,,,,,,39521,,, +1010,USA,,WHIN,,Gallatin (TN),36.433333,-86.466667,,0.047,,7077,296,141,,,,,,41640,,, +1010,ARG,,LW2 R Emis. Tartagal,,Tartagal (sa),-22.516667,-63.816667,,5,,10712,241,142,,1000-0300,1234567,,,40261,,, +1010,EQA,,HCGO3,,Santa Rosa (oro),-3.45,-79.966667,,3,,10063,265,142,,,,,,36957,,, +1010,MEX,es,XEPA-AM Punto 10 R,,Puebla (pue),18.982417,-98.261331,,2,,9308,293,142,,,,,,44524,,, +1010,URG,es,CX24 Nuevo Tiempo AM,,Montevideo/Belvedere (mo),-34.845,-56.206667,,10,,11415,228,142,,0900-0400,1234567,,,36809,,, +1010,USA,,WCSI,,Columbus (IN),39.186667,-85.95,,0.018,,6825,298,143,,,,,,41083,,, +1010,USA,,WPCN,,Stevens Point (WI),44.538056,-89.595278,,0.01,,6615,305,143,,,,,,43055,,, +1010,USA,es,KCHJ,,Delano (CA),35.811111,-119.321667,,1,,8913,318,143,,,,9947,,38148,,, +1010,GTM,,R Caribe,,Izabal (izb),15.4,-89.133333,,1,,9033,284,144,,,,,,52131,,, +1010,GTM,,TGXI R Emmanuel,,Nebaj (zcp),14.966667,-89.516667,,1,,9096,284,144,,1100-0200,1234567,,,40541,,, +1010,HND,,HRLP23,,El Progreso (yor),15.4,-87.8,,1,,8944,283,144,,,,,,37786,,, +1010,HND,,HRLT,,Minas de Oro (cmy),14.816667,-87.283333,,1,,8961,282,144,,,,,,37797,,, +1010,HND,,HRSP,,Campamento (ola),14.433333,-86.65,,1,,8952,281,144,,,,,,37845,,, +1010,MEX,es,XEHGO-AM Hidalgo R,,Huejutla de Reyes (hid),21.131672,-98.406622,,1,,9125,294,144,,,,,,44114,,, +1010,MEX,es,XEVK-AM Mega,,Gmez Palacio (dur),25.566625,-103.466997,,1,,9034,301,144,,,,,,34900014,,, +1010,USA,,KCHI,,Chillicothe (MO),39.764167,-93.555833,,0.037,,7224,303,144,,,,,,38147,,, +1010,USA,,KRNI,,Mason City (IA),43.141944,-93.111111,,0.016,,6922,306,144,,,,,,39274,,, +1010,USA,,WCOC,,Dora (AL),33.801111,-87.111667,,0.041,,7332,295,144,,,,,,41054,,, +1010,EQA,,HCRV5,,Cuenca (azu),-2.916667,-79.033333,,1.5,,9953,265,145,,,,,,37121,,, +1010,MEX,es,XEWS-AM Romntica,,Culiacn (sin),24.832222,-107.404722,,1,,9329,303,145,,,,,,45035,,, +1010,USA,,WORM,,Savannah (TN),35.24,-88.241389,,0.027,,7283,297,145,,,,,,42622,,, +1010,USA,en,KIHU,,Tooele (UT),40.720833,-112.041389,,0.194,,8112,316,145,,,,10,,38199,,, +1010,ARG,es,LV16 R Ro Cuarto,,Ro Cuarto (cb),-33.105864,-64.405606,,5,,11696,235,146,,1000-0500,1234567,,,40240,,, +1010,CHL,,CD101 R Chilena Solonoticias,,Temuco (AR),-38.7,-72.566667,,10,,12642,237,146,,1000-0430,1234567,,,35844,,, +1010,MEX,es,XELO-AM La X,,Chihuahua (chi),28.620894,-106.107642,,0.5,,8909,305,146,,,,,,44315,,, +1010,USA,,KIQI,,San Francisco (CA),37.825833,-122.310833,,0.5,,8851,321,146,,,,915,,38630,,, +1010,MEX,es,XEDX-AM Cadena 1010,,Ensenada/Lomas del Paraso (bcn),31.890342,-116.629889,,0.5,,9160,314,147,,,,,,43945,,, +1010,MEX,es,XEFM-AM La Mquina Tropical,,Veracruz (vcz),19.168056,-96.143056,,0.5,,9157,292,147,,,,,,44013,,, +1010,B,pt,ZYJ758 Rdio Bandeirantes,,Imbituba (SC),-28.221111,-48.675556,,1,,10412,226,148,,,,,,36901703,,, +1010,B,pt,ZYL230 Rdio Educadora,,Coronel Fabriciano (MG),-19.527642,-42.614383,,0.5,,9268,226,148,,,,,,36901694,,, +1010,B,pt,ZYL264 Rdio Solar AM,,Juiz de Fora (MG),-21.773128,-43.325161,,0.5,,9524,225,148,,,,,,36901690,,, +1010,MEX,es,XEKD-AM La Mejor,,Ciudad Acua (coa),29.303139,-100.925778,,0.25,,8551,301,148,,,,,,44249,,, +1010,PRU,,OBX9T,,Bagua Grande/Morerilla (ama),-5.744167,-78.453889,,1,,10162,262,148,,,,,,37000079,,, +1010,USA,,KIND,,Independence (KS),37.218611,-95.725,,0.032,,7562,303,148,,,,,,38617,,, +1010,USA,,KXPS,,Thousand Palms (CA),33.843056,-116.4275,,0.4,,8965,315,148,,,,,,39819,,, +1010,PRU,,OBU5T,,Tambobamba (apu),-13.85,-72.136111,,1,,10457,253,149,,,,,,37000098,,, +1010,USA,,KXXT,,Tolleson (AZ),33.445278,-112.206389,,0.25,,8793,312,149,,,,9980,,39832,,, +1010,USA,,WCKW,,Garyville (LA),30.076389,-90.621389,,0.042,,7862,294,149,,,,,,41018,,, +1010,EQA,,HCBC4,,Manta (man),-0.966667,-80.733333,,0.5,,9897,267,150,,,,,,36861,,, +1010,B,pt,ZYJ764 Rdio Jaragua,,Jaragu do Sul (SC),-26.476667,-49.039722,,0.5,,10263,228,151,,,,,,36901692,,, +1010,MEX,es,XEXN-AM R Ures,,Ures (son),29.4272,-110.378361,,0.2,,9070,308,151,,,,,,45058,,, +1010,USA,,KDLA,,De Ridder (LA),30.878611,-93.290278,,0.04,,7958,297,151,,,,,,38276,,, +1010,ARG,,R Oasis,,Victoria (er),-32.616667,-60.166667,,1,,11419,232,152,,,,,,51819,,, +1010,ARG,,R Onda Latina,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51820,,, +1010,B,pt,ZYI421 Transamrica Hits,,Mirassol d'Oeste (MT),-15.66425,-58.105594,,0.25,,9744,240,152,,,,,,36901697,,, +1010,B,pt,ZYK232 Rdio 1010 AM,,Caxias do Sul/Rua Juca Ramos (RS),-29.141389,-51.139167,,0.5,,10623,228,152,,,,,,36901691,,, +1010,B,pt,ZYK556 Rdio Independente AM,,Barretos/Praa Joel Waldo 1 (SP),-20.559283,-48.557944,,0.25,,9670,230,152,,,,,,36901702,,, +1010,B,pt,ZYL325 Rdio Estncia,,Jacutinga (MG),-22.2728,-46.603311,,0.25,,9735,228,152,,,,,,36901699,,, +1010,B,pt,ZYK611 Rdio Dirio,,Martinpolis/Estncia Primavera (SP),-22.135228,-51.221836,,0.25,,9962,231,153,,,,,,36901704,,, +1010,B,,ZYJ807,,Brao do Norte (SC),-28.266667,-49.166667,,0.25,,10441,227,154,,,,,,46216,,, +1010,B,pt,ZYK344 Rdio Missioneira Sete Povos,,So Luz Gonzaga (RS),-28.422222,-54.985833,,0.25,,10755,231,155,,,,,,36901701,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0625-0630,12345..,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0650-0700,12345..,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0711-0800,.....67,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0800-0815,1234567,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1208-1300,12345..,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1230-1300,.....67,9956,,786,,, +1017,E,es,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1400-1415,12345..,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0815-1208,12345..,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0815-1230,.....67,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1300-1400,12345..,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1300-2300,.....67,9956,,786,,, +1017,E,es,RNE R 5,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,1415-2300,12345..,9956,,786,,, +1017,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0630-0650,12345..,9956,,786,,, +1017,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0700-0800,12345..,9956,,786,,, +1017,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,2300-0625,1234..7,9956,,786,,, +1017,E,es,RNE R Nacional,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,2300-0710,....56.,9956,,786,,, +1017,E,pt,RNE Castilla y Len,,Burgos/San Bartolom (CAL-BU),42.31355,-3.700125,,10,,1328,219,60,,0710-0711,.....67,9956,,786,,, +1017,E,es,RNE R 5,,Granada/Cllar Vega (AND-GR),37.159833,-3.688111,,10,,1840,209,65,,0000-2400,1234567,9,,785,,, +1017,G,en,Free R 80's,,Shrewsbury (EN-SHP),52.695056,-2.783778,,0.63,,627,280,65,,0000-2400,1234567,9975,,787,,, +1017,I,,Media Veneta R,,Veneto region,45.5,11.75,,1,,832,150,65,,,,,,4000060,,, +1017,GRC,,unid (Blues),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400062,,, +1017,ARS,ar,BSKSA Pilgrim R,,Al-Madinah=Medinah (mdh),24.409678,39.534411,,20,,4158,125,86,,0000-2400,1234567,,,47082,,, +1017,IRN,fa,IRIB R Iran,,Bandar-e Abbas (hrg),27.255167,56.413556,,100,,4957,104,87,,0000-2400,1234567,9903,,10800015,,, +1017,AFG,,R Ghazni,,Ghazni (gha),33.533333,68.333333,,10,,5270,88,100,,0230-0330,1234567,,,46813,,, +1017,AFG,,R Ghazni,,Ghazni (gha),33.533333,68.333333,,10,,5270,88,100,,1130-1530,1234567,,,46813,,, +1017,IND,,AIR North,,Delhi D (DL),28.698556,77.210917,,10,,6250,85,110,,1300-1730,1234567,,,49282,,, +1017,CHN,ko,CNR 8,,Changchun/SARFT523 (JL),44.028944,125.418917,,100,167,7835,42,115,,1000-1100,1234567,,,49279,,, +1017,CHN,ko,China R Int.,,Changchun/SARFT523 (JL),44.028944,125.418917,,100,167,7835,42,115,,1100-1500,1234567,,,49279,,, +1017,CHN,,Qinghai RGD,,Huzhu/Duoshidai (QH),36.877778,101.956944,,10,,7203,62,119,,2200-1605,1234567,,,36201277,,, +1017,IND,,AIR South,,Chennai B=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0000-0400,1234567,9977,,49281,,, +1017,IND,,AIR South,,Chennai B=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0700-1000,1234567,9977,,49281,,, +1017,IND,,AIR South,,Chennai B=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,0840-????,1234567,9977,,49281,,, +1017,IND,,AIR South,,Chennai B=Madras (TN),13.141111,80.126944,,20,,7749,95,122,,1130-1740,1234567,9977,,49281,,, +1017,CHN,,Baoding JGD,,Baoding (HB),38.85,115.55,,10,,7809,51,125,,,,,,49278,,, +1017,CHN,,Guangdong Weixing Guangbo,,Shaoguan (GD),24.783333,113.533333,,50,,8941,62,127,,2200-1900,1234567,,,49280,,, +1017,J,,JOLB NHK2,,Fukuoka (kyu-fuk),33.532778,130.445833,,50,,9052,44,127,,2030-1500,1.....7,,,49287,,, +1017,J,,JOLB NHK2,,Fukuoka (kyu-fuk),33.532778,130.445833,,50,,9052,44,127,,2030-1635,.2345..,,,49287,,, +1017,J,,JOLB NHK2,,Fukuoka (kyu-fuk),33.532778,130.445833,,50,,9052,44,127,,2030-1640,.....6.,,,49287,,, +1017,KOR,ko,HLAW MBC,,Andong (gsb),36.6075,128.674444,,10,,8676,44,133,,0000-2400,1234567,,,49288,,, +1017,CHN,,Guangdong Weixing Guangbo,,Jieyang (GD),23.565683,116.401333,,10,,9221,60,134,,,,,,36200183,,, +1017,THA,th,Thor. Or. 05,,Prachuap Khiri Khan (pkk),11.788056,99.808889,,10,,9205,80,134,,????-1700,1234567,,,49296,,, +1017,TWN,,BCC Country Network,,Hsinchu (HC),24.915539,121.011211,,10,,9366,56,135,,0000-2400,1234567,997,,49298,,, +1017,PHL,,DWDW-AM IBC R,,Dagupan City/Torres Bucallon (pgs),16.05,120.333333,,10,,10142,61,137,,,,,,49290,,, +1017,PHL,tl,DWLC-AM Radyo ng Bayan,,Lucena City/Pagbilao (qzn),13.983333,121.7,,10,,10415,62,138,,????-1300,1234567,,,49293,,, +1017,PHL,,DYRP-AM,,Iloilo City/Alalasad (ilo),10.716667,122.566667,,10,,10769,63,140,,,,,,49292,,, +1017,PHL,,DXAM-AM Radyo Rapido,,Davao City/Bugac (dvs),7.033333,125.516667,,10,,11289,62,141,,,,,,49291,,, +1017,PHL,,DXSN-AM Radyo Totoo,,Surigao City (sdn),9.783333,125.483333,,5,,11031,61,143,,,,,,49294,,, +1017,CHN,zh,CNR 1,,Dongtou (ZJ),29.15,121.45,,1,,9001,53,144,,2025-1805,1234567,,,36200570,,, +1017,INS,id,R Angkasa Suara Semesta,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400136,,, +1017,TON,,A3Z R Tonga,,Nuku'alofa (ttp),-21.144722,-175.163056,,10,,16569,3,159,,1900-1100,1234567,11,,49297,,, +1017,AUS,,Vision R,,Bunbury/Waterloo (WA),-33.35,115.7,,1,,14134,99,161,,0000-2400,1234567,,,49275,,, +1017,AUS,,2KY Sky Sports R,,Sydney/Homebush Bay (NSW),-33.838106,151.062653,,5,,16548,68,162,,0000-2400,1234567,1,,49276,,, +1017,AUS,,6WH ABC Kimberley,,Wyndham (WA),-15.493694,128.137111,,0.5,,13507,74,162,,0000-2400,1234567,,,49277,,, +1017,NZL,,R Hauraki,,Christchurch/Marshland (CAN),-43.489747,172.637478,,2.5,,18613,52,171,,,,,,49289,,, +1020,RUS,,DK,b,Glotaevo,55.145833,37.791667,,0.025,,2078,68,94,,,,5,L395 U405 ,ID+6 gap,85840,, +1020,USA,,KDKA,,Pittsburgh/Allison Park (KDKA Drive) (PA),40.559167,-79.953056,,50,,6352,295,104,,,,0,,38274,,, +1020,USA,,WHDD,,Sharon (CT),41.976389,-73.524167,,2.5,,5847,293,112,,,,,,42110,,, +1020,USA,es,KMMQ,,Plattsmouth (D) (NE),41.086667,-95.712778,,50,,7236,306,112,,,,,,39068,,, +1020,TCA,en,Caribbean Christian R,,Grand Turk (gtu),21.510722,-71.133694,,50,,7298,274,113,,,,,,47159,,, +1020,USA,,WIBG,,Ocean City/Palermo (NJ),39.229167,-74.681667,,1.9,,6122,291,115,,,,,,41716,,, +1020,USA,,WRIX,,Homeland Park (SC),34.470556,-82.634167,,10,,6997,292,117,,,,,,42858,,, +1020,ALS,en,KVNT,,Eagle River (AK),61.485278,-149.763889,,10,,7209,348,119,,0000-2400,1234567,,,37992,,, +1020,USA,en,WSBX,,Ochlocknee (GA),30.9,-83.998611,,10,,7375,290,121,,1200-2400,1234567,,,41867,,, +1020,CUB,es,R Trinchera,,Baracoa (gu),20.326642,-74.476442,,10,,7625,276,123,,,,,,31600072,,, +1020,DOM,,HITS R Enriquillo,,Tamayo (brc),18.383333,-71.166667,,10,,7564,272,123,,0900-0400,1234567,,,37309,,, +1020,CUB,es,R Reloj,,Victoria de las Tunas/CTOM2 (lt),20.93105,-76.909467,,10,,7739,278,124,,,,0,,52602,,, +1020,USA,,KCKN,,Roswell (NM),33.464722,-104.499444,,50,,8382,306,124,,,,9982,,38619,,, +1020,VEN,,YVRS R Mundial Margarita,,La Asuncin (nes),11.025,-63.805556,,10,,7696,261,124,,0955-0500,1234567,994,,45449,,, +1020,VEN,,YVTW R Alegria,,Chivacoa (ycy),10.15,-68.9,,25,,8117,265,124,,,,1,,51679,,, +1020,USA,,WPEO,,Peoria (IL),40.698056,-89.525278,,1,,6916,302,126,,,,,,42667,,, +1020,USA,es,KTNQ,,Los Angeles/Avocado Heights (CA),34.033333,-117.983333,,50,,9021,316,127,,,,61,,39519,,, +1020,USA,,WCIL,,Carbondale (IL),37.725278,-89.256944,,1,,7141,299,128,,,,,,41006,,, +1020,USA,es,KMMQ,,Plattsmouth (N) (NE),41.085833,-95.7125,,1.4,,7236,306,128,,,,,,20012608,,, +1020,CUB,es,R Guam,,Baha Honda (pr),22.923986,-83.172664,,5,,7989,284,130,,,,0,,36450,,, +1020,USA,,KJJK,,Fergus Falls (MN),46.245278,-95.979444,,0.37,,6826,310,130,,,,995,,38671,,, +1020,USA,es,KDYK,,Union Gap (D) (WA),46.571389,-120.454167,,4,,7933,325,130,,,,13,,20016055,,, +1020,VEN,es,YVMX R Continente Calendario,,Maracaibo (zul),10.666667,-71.7,,10,,8263,267,130,,0000-2400,1234567,991,,45388,,, +1020,B,pt,ZYJ702 Folha AM,,Boa Vista (RR),2.816667,-60.666667,,5,,8215,253,132,,,,,,36901720,,, +1020,USA,es,WURN,,Kendall (FL),25.626389,-80.521111,,0.98,,7586,284,133,,,,9995,,42846,,, +1020,B,pt,ZYI205 Rdio Difusora de Colatina,,Colatina (ES),-19.531317,-40.651597,,10,,9174,224,134,,,,,,36901724,,, +1020,CLM,es,HJFQ,,Pereira (ris),4.766667,-75.516667,,10,,9038,267,134,,,,,,37441,,, +1020,CLM,es,HJFT R Red,,Ibagu (tol),4.4,-75.216667,,10,,9050,266,134,,,,993,,37444,,, +1020,CLM,es,HJKS,,Villavicencio (met),4.15,-73.666667,,10,,8967,265,134,,,,,,37532,,, +1020,SLV,,YSC,,San Salvador (ssl),13.716667,-89.166667,,10,,9182,283,134,,,,,,45264,,, +1020,PTR,es,WOQI,,Adjuntas (PR),18.151111,-66.713333,,0.28,,7279,268,135,,0900-0200,1234567,,,42616,,, +1020,B,pt,ZYH247 Rdio Jovem Pan,,Rio Largo (AL),-9.483333,-35.85,,1,,7944,224,136,,,,,,36901723,,, +1020,B,pt,ZYH600 Rdio Sociedade Educadora Cariri,,Crato (CE),-7.247811,-39.381211,,1,,7897,229,136,,,,,,36901726,,, +1020,CLM,es,HJDQ,,Medelln (ant),6.283333,-75.566667,,5,,8909,268,136,,,,,,37397,,, +1020,PNR,es,R Ancon,,Villalobos (pnm),9.084478,-79.440661,,5,,8929,272,136,,1000-0400,1234567,,,52319,,, +1020,EQA,,HCEW2,,Guayaquil (gua),-2.2,-79.916667,,10,,9950,266,137,,,,,,36926,,, +1020,EQA,,HCGO3,,Santa Rosa (oro),-3.45,-79.95,,10,,10062,265,137,,,,,,36958,,, +1020,B,pt,ZYJ244 Rdio Colombo do Paran,,Colombo (PR),-25.403611,-49.193889,,10,,10168,228,138,,,,,,36901718,,, +1020,B,pt,ZYJ484 Rdio Cano Nova,,Campos dos Goytacazes (RJ),-21.751678,-41.283975,,5,,9424,224,138,,,,,,36901709,,, +1020,BOL,,CP4 R Illimani,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,0930-0300,1234567,,,36696,,, +1020,EQA,,HCRS6,,Guaranda (bol),-1.6,-78.983333,,5,,9834,265,139,,,,,,37113,,, +1020,HTI,,4VJH,,Ptionville (oue),18.5,-72.266667,,0.25,,7629,273,139,,,,,,35646,,, +1020,USA,es,KWIQ,,Moses Lake North (WA),47.163333,-119.360833,,0.44,,7834,324,139,,,,999,,39715,,, +1020,B,pt,ZYH664 Rdio Macambira,,Ipueiras (CE),-4.558761,-40.730236,,0.25,,7704,231,140,,,,,,36901713,,, +1020,B,pt,ZYI686 Rdio Cenecista,,Picu (PB),-6.507672,-36.359578,,0.25,,7672,226,140,,,,,,36901710,,, +1020,B,pt,ZYK515 Rdio Cultura,,Assis (SP),-22.677722,-50.412522,,5,,9970,231,140,,,,,,36901715,,, +1020,USA,,KOKP,,Perry (OK),36.259722,-97.216944,,0.25,,7729,303,140,,,,,,39078,,, +1020,USA,es,KDYK,,Union Gap (N) (WA),46.570556,-120.454167,,0.4,,7933,325,140,,,,13,,39880,,, +1020,CTR,,TITIC R Mil Veinte,,San Jos (sjs),9.933333,-84.066667,,2,,9170,277,141,,1100-0500,1234567,,,52148,,, +1020,MEX,es,XEKH-AM R Centro,,Quertaro (que),20.590183,-100.426397,,2.5,,9299,296,141,,,,,,44255,,, +1020,B,pt,ZYH423 Porto AM,,Santana (AP),-0.021364,-51.1669,,0.25,,7872,243,142,,,,,,36901712,,, +1020,B,pt,ZYK202 Caiara AM,,Canoas/Ilha das Flores (RS),-29.99,-51.262778,,5,,10710,227,142,,,,,,36901722,,, +1020,PRG,es,ZP14 R andut,,Asuncin/San Lorenzo (asu),-25.318639,-57.488972,,5,,10603,235,142,,0000-2400,1234567,941,,45510,,, +1020,CLM,es,HJDZ R Primavera,,Bucaramanga (sat),7.066667,-73.116667,,1,,8673,266,143,,,,,,37403,,, +1020,EQA,,HCSE4,,Chone (man),-0.65,-80.083333,,2,,9825,267,143,,,,,,37132,,, +1020,HND,,HRUW,,La Ceiba (atl),15.8,-86.816667,,1,,8844,282,143,,,,,,37862,,, +1020,EQA,,HCRV5,,Cuenca (azu),-2.883333,-79,,1.5,,9948,265,145,,,,,,37122,,, +1020,GTM,,TGCM R Frontera,,Pajapita (sms),14.716667,-92.016667,,1,,9283,286,145,,1100-0400,1234567,,,40486,,, +1020,MEX,es,XEOU-AM Sensacin Estreo,,Huajuapan de Len (oax),17.806944,-97.786111,,1,,9383,292,145,,,,,,44517,,, +1020,MEX,es,XEPIC-AM R Hits,,Tepic (nay),21.509147,-104.881475,,1,,9485,300,145,,,,,,44550,,, +1020,ARG,es,LRJ214,,San Juan (sj),-31.557622,-68.525661,,5,,11796,239,146,,,,,,33000073,,, +1020,B,pt,ZYJ680 Rdio Educadora,,Rolim de Moura (RO),-11.566667,-61.783333,,1,,9591,246,146,,,,,,36901716,,, +1020,EQA,,HCCE1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36877,,, +1020,MEX,es,XEVE-AM W R,,Colima (col),19.241667,-103.730556,,1,,9622,297,146,,,,,,44957,,, +1020,MEX,es,XEWO-AM,,Chetumal (qui),18.531111,-88.280833,,0.5,,8704,285,146,,,,,,45030,,, +1020,URG,,CW102 R Libertadores,,Salto (sa),-31.366667,-57.95,,3,,11186,232,146,,0900-0300,1234567,,,36741,,, +1020,USA,en,KNNP684,,Louisville (KY),38.25,-85.766667,,0.01,,6888,297,146,,,,,,20010604,,, +1020,ARG,es,LT10 R.Universidad Nacional del Litoral,,Santa F (sf),-31.633333,-60.716667,,3,,11360,233,147,,0800-0500,1234567,,,40162,,, +1020,MEX,es,XEPR-AM Los 40 Principales,,Poza Rica (vcz),20.514431,-97.397428,,0.5,,9117,293,147,,,,,,44574,,, +1020,B,pt,ZYJ359 Rdifuso Campo Aberto,,Laranjeiras do Sul (PR),-25.37,-52.385833,,1,,10330,231,148,,,,,,36901714,,, +1020,CHL,,CC102 R Amiga,,Talca (ML),-35.416667,-71.666667,,5,,12312,238,148,,1000-0500,1234567,,,51952,,, +1020,PRU,es,R Bambamarca,,Hualgayoc (caj),-6.766667,-78.616667,,1,,10263,262,148,,,,99,,37000060,,, +1020,B,pt,ZYK531 Educadora 1020 AM,,Limeira/Praa Dr. Milton Silveira (SP),-22.560606,-47.420083,,0.5,,9804,228,149,,,,,,36901707,,, +1020,PRU,,OBX3U,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000083,,, +1020,B,pt,ZYH781 Rdio Maranata,,Firminpolis (GO),-16.5714,-50.307767,,0.25,,9383,234,151,,,,,,36901725,,, +1020,B,pt,ZYL224 Rdio Congonhas,,Congonhas (MG),-20.509022,-43.861728,,0.25,,9426,226,151,,,,,,36901719,,, +1020,B,pt,ZYL260 Rdio Globo,,Uberlndia (MG),-18.938908,-48.239439,,0.25,,9498,231,151,,,,,,36901717,,, +1020,B,pt,ZYK513 Rdio Cano Nova,,Cachoeira Paulista/Santa Cruz (SP),-22.647125,-45.07975,,0.25,,9695,226,152,,,,,,36901721,,, +1020,B,pt,ZYK600 Rdio Cultura de Jales,,Jales (SP),-20.249989,-50.54315,,0.25,,9746,232,152,,,,,,36901708,,, +1020,B,pt,ZYI381 Independente AM,,Aquidauana (MS),-20.468697,-55.788194,,0.25,,10056,236,153,,,,,,36901711,,, +1020,B,pt,ZYJ307 Rdio Independncia,,Medianeira (PR),-25.283333,-54.066667,,0.25,,10412,232,154,,,,,,36901705,,, +1020,B,pt,ZYJ805 Rdio Continental,,Coronel Freitas (SC),-26.898889,-52.694722,,0.25,,10491,230,155,,,,,,36901706,,, +1020,URG,,CV102,,Acegua (cl),-31.866667,-54.133333,,0.25,,11032,229,156,,,,,,36722,,, +1020,ARG,es,LRA58 R Nacional,,Ro Mayo (ch),-45.683333,-70.266667,,1,,13094,230,157,,1100-2300,1234567,,,39961,,, +1024,INS,id,RPDT2 Belu,,Atambua (NT-bel),-9.1,124.9,,0.25,,12728,72,162,,,,,,35400103,,, +1025,RUS,,US,b,Muravlyanka,53.770833,38.541667,,0.025,,2143,72,94,,,,,,IDx2,85843,, +1025,RUS,,KS,b,Krasny (RO),47.1875,40.375,,0.025,,2482,89,98,,,,,L1014 ,85842,,, +1026,E,es,SER,,Salamanca/Ctra. Bjar (CAL-SA),40.932917,-5.667006,,10,,1544,221,62,,0000-2400,1234567,0,,808,,, +1026,E,es,SER,,Oviedo/El Naranco (AST-O),43.385172,-5.862508,,5,,1332,228,63,,0000-2400,1234567,,,807,,, +1026,E,es,SER,,Tarragona/Reus (CAT-T),41.162778,1.077222,,5,,1283,200,63,,0000-2400,1234567,0,,805,,, +1026,G,en,Downtown R,,Belfast/Knockbracken (NI-ANT),54.537222,-5.882611,,1.7,,859,293,63,,0000-2400,1234567,9983,,811,,, +1026,G,en,BBC R 5 Live,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.5,,426,274,64,,0000-0300,12345..,0,,809,,, +1026,G,en,BBC R 5 Live,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.5,,426,274,64,,0000-0500,.....67,0,,809,,, +1026,G,en,BBC R 5 Live,,Trinity (JER),49.246889,-2.096944,,1,,678,245,64,,0100-0600,1234567,,,810,,, +1026,G,en,BBC R Cambridgeshire,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.5,,426,274,64,,0300-2400,12345..,0,,809,,, +1026,G,en,BBC R Cambridgeshire,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.5,,426,274,64,,0500-2400,.....67,0,,809,,, +1026,G,en,BBC R Jersey,,Trinity (JER),49.246889,-2.096944,,1,,678,245,64,,0600-0100,1234567,,,810,,, +1026,E,es,SER,,Vigo/Sampayo (GAL-PO),42.244881,-8.687319,,5,,1577,232,66,,0000-2400,1234567,,,806,,, +1026,E,es,SER,,Jan (AND-J),37.799561,-3.715225,,5,,1776,210,68,,0000-2400,1234567,,,803,,, +1026,IRN,,IRIB R Tabriz,,Azarshahr (eaz),37.874433,45.831817,,200,,3424,102,68,,0230-0630,1234567,9931,,812,,, +1026,IRN,,IRIB R Tabriz,,Azarshahr (eaz),37.874433,45.831817,,200,,3424,102,68,,0630-1630,1234567,9931,,812,,, +1026,IRN,,IRIB R Tabriz,,Azarshahr (eaz),37.874433,45.831817,,200,,3424,102,68,,1630-2030,1234567,9931,,812,,, +1026,IRN,fa,IRIB R Iran,,Azarshahr (eaz),37.874433,45.831817,,200,,3424,102,68,,2030-0230,1234567,9931,,812,,, +1026,ALG,ar,R Ouargla,,Hassi Messaoud (30),31.7275,6.063333,,10,,2267,181,70,,0800-1600,1234567,,,794,,, +1026,E,es,SER,,Jerez de la Frontera (AND-CA),36.668653,-6.109933,,5,,1978,215,70,,0000-2400,1234567,,,804,,, +1026,MRC,,SNRT B,,Rabat/Temara (rsz),33.89815,-6.923222,,1,,2289,213,80,,0600-0100,1234567,,,816,,, +1026,NIG,,JBC R Jigawa,,Dutse (jgw),11.758606,9.390069,,25,,4495,175,88,,0500-2205,1234567,,,2455,,, +1026,SDN,,SRTC Sudan Nat. R,,Ad-Damazin (bnl),11.799761,34.353278,,5,,5134,141,101,,,,,,47145,,, +1026,CHN,zh,Hotan RGD/Xinjiang RGD,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,10,,5777,76,105,,0730-1030,1234567,,,36200568,,, +1026,CHN,zh,Hotan RGD/Xinjiang RGD,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,10,,5777,76,105,,1300-1600,1234567,,,36200568,,, +1026,CHN,zh,Hotan RGD/Xinjiang RGD,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,10,,5777,76,105,,1800-0200,1234567,,,36200568,,, +1026,IND,,AIR North,,Allahabad A (UP),25.428333,81.938611,,20,,6836,84,112,,0023-0435,123456,2,,49310,,, +1026,IND,,AIR North,,Allahabad A (UP),25.428333,81.938611,,20,,6836,84,112,,0023-1000,......7,2,,49310,,, +1026,IND,,AIR North,,Allahabad A (UP),25.428333,81.938611,,20,,6836,84,112,,0628-1000,123456,2,,49310,,, +1026,IND,,AIR North,,Allahabad A (UP),25.428333,81.938611,,20,,6836,84,112,,1128-1742,1234567,2,,49310,,, +1026,CHN,,Guizhou RGD Xinwen Guangbo,,Xiuwen/GZTS645 (GZ),26.86685,106.725539,,200,,8341,65,117,,2150-1605,1234567,,,49305,,, +1026,CHN,zh,Beijing Public Service R,,Beijing/BJTS804 (BJ),39.949697,116.496011,,50,,7763,50,118,,2150-1600,.2.....,,,49304,,, +1026,CHN,zh,Beijing Public Service R,,Beijing/BJTS804 (BJ),39.949697,116.496011,,50,,7763,50,118,,2150-1700,1.34567,,,49304,,, +1026,MOZ,pt,Emisso Provincial de Manica,,Chimoio (mca),-19.073094,33.383856,,50,,8336,154,123,,0250-2200,1234567,,,2454,,, +1026,THA,th,Sor. Wor. Thor. (R Thailand),,Phitsanulok (psl),16.831944,100.216667,,50,,8793,77,126,,2200-1700,1234567,,,49362,,, +1026,CHN,,Guizhou RGD Xinwen Guangbo,,Anshun/GZTS859 (GZ),26.25,105.916667,,10,,8345,66,130,,,,,,36200569,,, +1026,CHN,,Guizhou RGD Xinwen Guangbo,,Xingyi/GZTS718 (GZ),25.05,104.983333,,10,,8390,68,131,,,,,,36200566,,, +1026,CHN,,Yingkou RGD News,,Yingkou/LNTS314 (LN),40.5125,122.205,,2,,8003,46,134,,,,,,49308,,, +1026,PHL,tl,DZAR-AM Sonshine R,,Malabon/Dampalit (ncr),14.692906,120.931981,,25,,10303,62,134,,0000-2400,1234567,0,,49359,,, +1026,THA,th,Sor. Wor. Thor. (R Thailand),,Betong/15 Samoson Rd (yla),5.7625,101.068056,,10,,9819,83,136,,,,,,49361,,, +1026,CHN,,Guizhou RGD Xinwen Guangbo,,Jianhe (GZ),26.65,108.75,,1,,8485,64,142,,,,,,36200567,,, +1026,CHN,,Yancheng RGD News,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,1,,8541,52,142,,2155-1500,1234567,,,49307,,, +1026,CHN,,Yizheng RGD,,Yizheng (JS),32.266667,119.183333,,1,,8592,53,142,,,,,,49309,,, +1026,KOR,,HLCG KBS 1 R,,Hwacheon (gan),38.095556,127.704722,,1,,8491,44,142,,0000-2400,1234567,,,49352,,, +1026,KOR,ko,HLKW KBS 1 R,,Geochang (jeb),35.671111,127.910278,,1,,8728,45,143,,0000-2400,1234567,,,49353,,, +1026,PHL,tl,DXMC-AM Bombo Radyo,,Koronadal=Marbel (sco),6.5,124.85,,5,,11299,63,144,,,,,,49358,,, +1026,TWN,,Tien Sheng Kuangpo Tientai,,Yuanli/Kechuangli (ML),24.439722,120.659444,,1,,9389,57,145,,,,,,49363,,, +1026,INS,id,RRI Pro-1,,Serui (PA-yap),-1.883333,136.233333,,5,,12762,58,149,,2000-1500,1234567,,,49321,,, +1026,INS,id,PM7CKB R.Suara Enim Jaya,,Muara Enim (SS-mua),-3.65,103.8,,1,,10832,86,150,,,,,,49319,,, +1026,J,,NHK R 1,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,0000-2400,1234567,,,49342,,, +1026,PHL,,DXMI-AM,,Iligan City (ldn),8.233333,124.25,,1,,11101,63,151,,,,,,49357,,, +1026,INS,id,PM4BM R BSA,,Brebes (JT-bre),-7.116667,110.683333,,1,,11604,83,152,,,,,,49314,,, +1026,J,,NHK R 1,,Engaru (hok),44.05,143.516667,,0.1,,8560,30,152,,0000-2400,1234567,,,49325,,, +1026,J,,NHK R 1,,Futatsui (toh-aki),40.2,140.283333,,0.1,,8827,34,153,,0000-2400,1234567,,,49327,,, +1026,J,,NHK R 1,,Honjo (toh-aki),39.366667,140.066667,,0.1,,8901,35,153,,0000-2400,1234567,,,49333,,, +1026,J,,NHK R 1,,Miyako (toh-iwa),39.633333,141.966667,,0.1,,8947,33,153,,0000-2400,1234567,,,49341,,, +1026,J,,BSN Niigata Hoso,,Koide (chu-nii),37.266667,138.983333,,0.1,,9066,36,154,,0000-2400,1234567,,,49335,,, +1026,J,,JOUQ NHK1,,Shimonoseki (chu-yam),33.966667,130.933333,,0.1,,9034,44,154,,0000-2400,1234567,,,49344,,, +1026,J,,NHK R 1,,Akune (kyu-kag),32.023997,130.202778,,0.1,,9184,45,154,,0000-2400,1234567,,,49324,,, +1026,J,,NHK R 1,,Fukuchiyama (kns-kyo),35.3,135.116667,,0.1,,9096,40,154,,0000-2400,1234567,,,49326,,, +1026,J,,NHK R 1,,Hamada (chg-shi),34.9,132.083333,,0.1,,8998,42,154,,0000-2400,1234567,,,49329,,, +1026,J,,NHK R 1,,Haramachi (toh-fuk),37.615461,140.932761,,0.1,,9109,35,154,,0000-2400,1234567,,,49332,,, +1026,J,,NHK R 1,,Kobayashi (kyu-miy),32,130.966667,,0.1,,9223,45,154,,0000-2400,1234567,,,49334,,, +1026,J,,NHK R 1,,Komoro (chu-nag),36.316667,138.433333,,0.1,,9138,37,154,,0000-2400,1234567,,,49336,,, +1026,J,,NHK R 1,,Kurayoshi (chg-tot),35.416667,133.8,,0.1,,9026,41,154,,0000-2400,1234567,,,49337,,, +1026,J,,NHK R 1,,Kure (chg-hir),34.25,132.6,,0.1,,9084,42,154,,0000-2400,1234567,,,49338,,, +1026,J,,NHK R 1,,Minamiaso (kyu-kum),32.815661,131.099094,,0.1,,9152,44,154,,,,,,49340,,, +1026,J,,NHK R 1,,Otoyo (shi-koc),33.733333,133.683333,,0.1,,9184,42,154,,,,,,49343,,, +1026,J,,NHK R 1,,Shinshiro (chu-aic),34.9,137.516667,,0.1,,9239,38,154,,0000-2400,1234567,,,49346,,, +1026,J,,NHK R 1,,Tago,34.5,134,,0.1,,9124,41,154,,0000-2400,1234567,,,49347,,, +1026,J,,NHK R 1,,Tsuruga (chu-fuk),35.6,136.066667,,0.1,,9108,39,154,,0000-2400,1234567,,,49348,,, +1026,J,,NHK R 1,,Yamanaka (chu-ish),36.25,136.366667,,0.1,,9057,39,154,,0000-2400,1234567,,,49350,,, +1026,J,,NHK R 1,,Yonezawa (toh-yam),37.9,140.1,,0.1,,9048,35,154,,0000-2400,1234567,,,49351,,, +1026,J,ja,NHK R 1,,Fuchu (chg-hir),34.566667,133.233333,,0.1,,9083,42,154,,,,,,31400070,,, +1026,J,ja,NHK R 1,,Hakuba (chu-nag),36.7,137.866667,,0.1,,9076,37,154,,,,,,31400073,,, +1026,J,ja,NHK R 1,,Hita (kyu-oit),33.333333,130.916667,,0.1,,9093,44,154,,,,,,31400068,,, +1026,J,ja,NHK R 1,,Setouchi,34.5,134,,0.1,,9124,41,154,,,,,,31400067,,, +1026,J,ja,NHK R 1,,Sukumo (shi-koc),32.933333,132.716667,,0.1,,9216,43,154,,,,,,31400069,,, +1026,J,ja,NHK R 1,,Wakasa (chg-tot),35.336111,134.403333,,0.1,,9061,41,154,,0000-2400,1234567,,,49349,,, +1026,AUS,,6NW Spirit R,,Port Hedland/Wedgefield (WA),-20.376056,118.577625,,2,,13285,86,155,,0000-2400,1234567,,,49302,,, +1026,J,,NHK R 1,,Gotenba (chu-shi),35.3,138.933333,,0.1,,9259,37,155,,0000-2400,1234567,,,49328,,, +1026,J,,NHK R 1,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,0000-2400,1234567,,,49339,,, +1026,J,,NHK R 1,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,0000-2400,1234567,,,49345,,, +1026,J,ja,NHK R 1,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,,,,,31400071,,, +1026,J,ja,NHK R 1,,Susami (kns-wak),33.55,135.5,,0.1,,9283,41,155,,,,,,31400072,,, +1026,AUS,,4MK,,Mackay/Mount Bassett (QLD),-21.120861,149.209722,,5,,15322,57,158,,0000-2400,1234567,94,,49300,,, +1026,AUS,en,3PB ABC Newsr,,Melbourne/Lower Plenty (VIC),-37.742,145.113172,,10,,16456,80,158,,0000-2400,1234567,999,,49301,,, +1026,INS,id,R Diva,,Denpasar/Abian Timbul (BA-den),-8.689167,115.191944,,0.25,,12047,80,160,,2300-1600,1234567,,,35400005,,, +1026,NZL,en,1ZK Newstalk ZB,,Kaitaia/Waipapakauri (NTL),-35.035556,173.246389,,2,,17848,34,170,,,,,,49355,,, +1026,NZL,en,1ZN Newstalk ZB,,Whangarei/Otaika (NTL),-35.780556,174.319444,,2,,17964,32,170,,,,,,49356,,, +1026,NZL,,Word Bible R,,Invercargill/Tussock Creek (STL),-46.2475,168.468333,,1,,18562,70,175,,0000-2400,1234567,,,49354,,, +1029,INS,id,RPKD Ciamis,,Ciamis (JB-cms),-7.333333,108.35,,0.5,,11465,85,155,,,,,,35400105,,, +1030,UKR,,NI,b,Mykolaivka (MY),47.020833,31.875,,0.025,,1910,97,92,,,,,L1020 ,ID+2.5 gap,85846,, +1030,UKR,,NK,b,Mykolaivka (MY),47.104167,31.958333,,0.025,,1912,97,92,,,,,L1048 U1050 15.0s,IDx2,85847,, +1030,RUS,,N,b,Nizhny Novgorod / Strigino (NN),56.1875,43.791667,,0.025,,2445,64,97,,,,,,85845,,, +1030,RUS,,S,b,Nizhny Novgorod / Strigino (NN),56.270833,43.791667,,0.025,,2444,64,97,,,,,,85848,,, +1030,USA,en,WBZ,i,Boston/Nantasket Beach (MA),42.278889,-70.876111,,50,,5658,292,97,,,,9996,,40935,,, +1030,USA,es,WWGB,,Indian Head (MD),38.564722,-76.816944,,50,,6308,292,103,,1200-2400,1234567,,,43377,,, +1030,USA,en,WDRU,,Creedmoor (NC),36.178611,-78.758333,,50,,6616,291,106,,1200-2400,1234567,,,20016037,,, +1030,USA,,WBGS,,Point Pleasant (WV),38.811667,-82.099722,,10,,6619,295,113,,,,,,40845,,, +1030,USA,,WUFL,,Sterling Heights (MI),42.604722,-82.911111,,5,,6376,299,114,,,,0,,43255,,, +1030,USA,es,WNOW,,Mint Hill (NC),35.140556,-80.600278,,9.4,,6815,291,115,,,,,,42496,,, +1030,USA,,KTWO,,Casper (WY),42.842778,-106.218611,,50,,7638,313,116,,,,2,,39552,,, +1030,PTR,,WOSO,,San Juan (PR),18.368611,-66.254722,,10,,7229,268,119,,0000-2400,1234567,,,42625,,, +1030,KAZ,,MB,b,Taraz=Jambyl=Zhambyl (zha),42.895833,71.291667,,0.025,,4811,75,121,,,,,L1011 ,85844,,, +1030,HTI,,Radyo Ginen,,Cap-Hatien/La Petite Anse (nrd),19.716667,-72.166667,,10,,7519,274,122,,,,,,52115,,, +1030,DOM,,HIDL R Novedades,,Santiago de los Caballeros (sto),19.45,-70.7,,5,,7441,272,124,,0000-2400,1234567,,,37240,,, +1030,USA,,WGFC,,Floyd (VA),36.925833,-80.276111,,1,,6653,293,124,,,,,,41500,,, +1030,USA,,WCTS,,Maplewood (MN),44.866944,-92.900556,,1,,6772,307,125,,,,,,41099,,, +1030,USA,en,KCTA,,Corpus Christi (TX),27.933056,-97.259722,,50,,8454,298,125,,1300-0100,1234567,,,38213,,, +1030,B,pt,ZYJ467 Rdio Capital,,Rio de Janeiro/Sitio Boa Vista (RJ),-22.778611,-43.015556,,100,,9607,225,126,,,,1,,36901734,,, +1030,VEN,,YVTD R Valles del Tuy,,Ocumare del Tuy (mir),10.116667,-66.766667,,10,,7975,263,127,,0930-0400,1234567,,,45466,,, +1030,B,pt,ZYI777 Rdio Olinda Pernanbuco,,Olinda (PE),-7.994289,-34.907861,,5,,7750,224,128,,,,991,,36901728,,, +1030,USA,es,WONQ,,Oviedo (FL),28.675,-81.166667,,1.7,,7376,287,128,,,,9999,,42608,,, +1030,VEN,,YVQY R Onda 1030,,Guanare (ptg),9.066667,-69.716667,,10,,8267,265,130,,0900-0600,1234567,,,45438,,, +1030,CLM,es,HJRF,,Aguachica (ces),8.316667,-73.633333,,15,,8599,267,131,,,,,,35901489,,, +1030,USA,,WGSF,,Memphis (TN),35.183056,-89.938056,,1,,7391,298,131,,,,9930,,41564,,, +1030,CLM,es,HJDJ La Voz de los Libertadores,,Duitama (boy),5.816667,-73.066667,,10,,8779,265,133,,,,,,37390,,, +1030,CLM,es,HJER RCN Antenna Dos,,Cali (val),3.466667,-76.5,,15,,9219,267,133,,,,998,,37420,,, +1030,USA,,KCWJ,,Blue Springs (MO),39.045556,-94.235,,0.5,,7323,303,133,,,,,,38227,,, +1030,USA,,KFAY,,Farmington (AR),36.109444,-94.183056,,1,,7566,301,133,,,,,,38376,,, +1030,USA,pl,WNVR,,Vernon Hills (IL),42.252778,-88.395833,,0.12,,6726,302,133,,,,,,42531,,, +1030,B,pt,ZYJ612 Vale do Apodi AM,,Apodi (RN),-5.665556,-37.791667,,1,,7660,228,134,,,,,,36901740,,, +1030,GTM,,TGUX R Panamericana,,Ciudad de Guatemala (gut),14.616667,-90.533333,,10,,9194,284,134,,1145-0500,1234567,,,40550,,, +1030,USA,,KBUF,,Holcomb (KS),38.000278,-100.898333,,1.2,,7784,307,134,,,,,,38106,,, +1030,USA,,WQSE,,White Bluff (TN),36.134167,-87.216111,,0.25,,7147,297,134,,,,,,42792,,, +1030,MEX,,XENK-AM,,Felipe Carrillo Puerto (qui),19.55,-88.033333,,5,,8599,286,135,,,,,,43867,,, +1030,MEX,es,XEPAV-AM La Picosita,,Tampico (tam),22.234958,-97.861058,,5,,8993,295,137,,,,,,34900016,,, +1030,MEX,es,XESDD-AM La Tremenda,,Puerto Nuevo (bcn),32.249539,-116.946836,,5,,9141,315,137,,1400-0800,1234567,5,,44736,,, +1030,USA,en,KMAS,,Shelton (WA),47.221389,-123.079444,,1,,7973,326,137,,,,9987,,38880,,, +1030,MEX,es,XEQR-AM R Centro,,Mxico D.F/Granjas Mxico (dif),19.397756,-99.101222,,5,,9323,294,138,,0000-2400,1234567,9986,,44630,,, +1030,EQA,,HCAF7,,Puyo (pas),-1.466667,-77.866667,,3,,9746,265,141,,,,,,36840,,, +1030,EQA,,HCFO7,,Coca (nap),-0.466667,-77,,3,,9599,265,141,,,,,,36941,,, +1030,NCG,,YNLL R Masaya,,Masaya (msy),11.933333,-86.066667,,2,,9131,279,141,,,,,,45196,,, +1030,B,pt,ZYH475 Rdio Bahiana de Itaberaba,,Itaberaba (BA),-12.511083,-40.303539,,1,,8463,227,142,,,,,,36901732,,, +1030,MEX,es,XELJ-AM Ke Buena,,Lagos de Moreno (jal),21.341731,-101.944861,,2,,9324,297,142,,,,,,44309,,, +1030,USA,,KDUN,,Reedsport (OR),43.738056,-124.075,,0.63,,8348,325,142,,,,9980,,38296,,, +1030,CLM,es,HJGX,,Lorica (cor),9.216667,-75.816667,,1,,8670,270,143,,,,,,37464,,, +1030,MEX,es,XEYC-AM R Frmula,,Ciudad Jurez (chi),31.7,-106.35,,1,,8643,307,143,,,,,,34900010,,, +1030,USA,en,KVOI,,Cortaro (AZ),32.3475,-111.071944,,1,,8836,310,143,,,,,,39650,,, +1030,HND,,HRRH3,,Ocotepeque (oco),14.416667,-89.15,,1,,9120,283,144,,,,,,37838,,, +1030,HND,,HRUP3,,Tegucigalpa (fmz),14.5,-87.166667,,1,,8981,282,144,,,,,,37859,,, +1030,MEX,es,XEIE-AM Stereo 1030,,Matehuala (slp),23.618422,-100.641433,,1,,9041,298,144,,,,,,44161,,, +1030,ARG,es,LS10 R del Plata,,Buenos Aires/San Martn (df),-34.554097,-58.622236,,5,,11513,230,145,,0000-2400,1234567,2,,40157,,, +1030,B,pt,ZYH746 Rdio Imprensa,,Anpolis (GO),-16.282253,-48.996306,,1,,9283,233,145,,,,,,36901733,,, +1030,B,pt,ZYJ683 Rdio Rondnia AM,,Ariquemes (RO),-9.916111,-63.029722,,1,,9519,248,145,,,,,,36901727,,, +1030,CHL,,CC103 R Chilena Solonoticias,,Concepcin (BI),-36.866667,-73.066667,,10,,12517,238,145,,1100-0430,1234567,,,35803,,, +1030,MEX,es,XEMPM-AM La Pesada,,San Blas (sin),25.9233,-108.935786,,1,,9315,305,145,,,,,,44402,,, +1030,USA,,KJDJ,,San Luis Obispo (CA),35.299444,-120.673333,,0.7,,9024,319,145,,,,9979,,38664,,, +1030,MEX,es,XEVP-AM W R,,Acapulco/Vista Hermosa (gue),16.880653,-99.856978,,1,,9596,293,146,,,,,,44983,,, +1030,EQA,es,HCRF2 R Ecuantena,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,,,998,,37108,,, +1030,B,pt,ZYH791 Rdio Siqueira Campos AM,,Colinas do Tocantins (TO),-8.059167,-48.475,,0.25,,8469,237,148,,,,,,36901736,,, +1030,BOL,,R Totora,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,,,,,36500001,,, +1030,PRU,es,R Los Andes,,Huamachuco (lal),-7.8,-78.066667,,1,,10317,261,148,,,,97,,37000061,,, +1030,MEX,es,XEBCC-AM Los 40 Principales,,Ciudad del Carmen (cam),18.636389,-91.831667,,0.25,,8927,288,149,,1200-0500,1234567,,,43765,,, +1030,B,pt,ZYK224 Rdio Cultura AM,,Canguu (RS),-31.384444,-52.673611,,1,,10913,228,150,,,,,,36901739,,, +1030,MEX,es,XEVFS-AM,,Las Margaritas (cps),16.301267,-91.979131,,0.25,,9141,287,150,,,,,,44961,,, +1030,B,pt,ZYJ771 Rdio Princesa,,Lages (SC),-27.774167,-50.302778,,0.5,,10451,228,151,,,,,,36901738,,, +1030,B,pt,ZYK253 Rdio Reprter,,Iju (RS),-28.367778,-53.897222,,0.5,,10692,230,152,,,,,,36901731,,, +1030,B,pt,ZYK525 Rdio Difusora de Franca,,Franca (SP),-20.495792,-47.4012,,0.25,,9604,229,152,,,,,,36901743,,, +1030,B,pt,ZYK606 Rdio Clube de Lins,,Lins (SP),-21.661111,-49.756389,,0.25,,9839,231,152,,,,,,36901742,,, +1030,EQA,,HCTO5,,Cajabamba (chi),-1.7,-78.716667,,0.25,,9824,265,152,,,,,,37141,,, +1030,MEX,es,XETEKA-AM R Teka,,Juchitn de Zaragoza (oax),16.444294,-95.025328,,0.2,,9327,289,152,,,,,,43707,,, +1030,B,pt,ZYJ271 Rdio Atalaia,,Londrina (PR),-23.233333,-51.141667,,0.25,,10062,231,153,,,,,,36901735,,, +1030,B,pt,ZYK554 Rdio Emissora da Barra,,Barra Bonita (SP),-22.484236,-48.539697,,0.25,,9854,229,153,,,,,,36901741,,, +1030,B,,ZYJ240,,Cruzeiro do Oeste (PR),-23.883333,-53.166667,,0.25,,10232,232,154,,,,,,45966,,, +1030,B,pt,ZYJ312 Rdio Clube de Realeza,,Realeza (PR),-25.784444,-53.540278,,0.25,,10431,231,154,,,,,,36901737,,, +1030,B,pt,ZYJ329 Rdio Difusora do Xisto,,So Mateus do Sul (PR),-25.866667,-50.392222,,0.25,,10273,229,154,,,,,,36901744,,, +1030,USA,en,WEBS,,Calhoun (GA),34.490278,-84.917778,,0.003,,7139,294,154,,,,,,41244,,, +1030,PRU,,OAX7N R LV del Altiplano,,Puno (pun),-15.816667,-70.016667,,0.25,,10495,250,155,,,,,,40348,,, +1030,CHL,,CD103A R Chiloe,,Castro (LL),-42.466667,-73.766667,,1,,13021,235,157,,1100-0330,1234567,,,35845,,, +1030,CHL,,CB103 R Progreso,,Talagante (RM),-33.683333,-70.85,,0.25,,12116,239,160,,,,,,35721,,, +1030,USA,en,WQGT278,,Stockton (CA),37.933333,-121.266667,,0.01,,8796,321,163,,,,,,20010605,,, +1034,INS,id,RPDT2 Ngada,,Bajawa (NT-nga),-8.783333,120.983333,,1,,12442,76,155,,,,,,35400104,,, +1035,EST,ru,R Eli,,Tartu/Sooranna (Tar),58.417778,27.100111,,200,120,1478,54,49,,0000-2400,1234567,9997,,819,,, +1035,G,,Sunrise R 3,,Crystal Palace (EN-GTL),51.424167,-0.074933,,1,,453,263,62,,0000-2400,1234567,23,,821,,, +1035,G,en,BBC R 5 live,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,1,,549,288,62,,0100-0500,1234567,0,,820,,, +1035,G,en,BBC R Sheffield,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,1,,549,288,62,,0500-0100,123456,0,,820,,, +1035,G,en,BBC R Sheffield,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,1,,549,288,62,,0500-1900,......7,0,,820,,, +1035,G,xx,BBC Asian Network,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,1,,549,288,62,,1900-0100,......7,0,,820,,, +1035,G,en,Northsound Two,,Aberdeen/Nigg (SC-ABC),57.120611,-2.075556,,0.78,,779,319,66,,0000-2400,1234567,2,,822,,, +1035,POR,pt,Star FM,,Lugar de Belmonte/St. Estvo (san),38.870972,-8.784444,,10,,1882,225,66,,0000-2400,1234567,0,,830,,, +1035,G,en,West Sound AM,,Symington (Ayr) (SC-SAY),55.567694,-4.574667,,0.32,,816,302,70,,0000-2400,1234567,9993,,823,,, +1035,JOR,ar,JRTV R Jordan,,Amman/JRTV (amn),31.904253,35.881628,,20,,3272,122,77,,0000-2400,1234567,,,4400001,,, +1035,GRC,el,Diva 1035,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400015,,, +1035,IRN,fa,IRIB R Yazd,,Yazd/Fahraj (yzd),31.769611,54.538083,,100,,4468,101,82,,0000-2400,1234567,974,,826,,, +1035,ARS,ar,BSKSA Idha'atu-i Jeddah,,Yanbu al-Bahr (mdh),24.083333,38.05,,20,,4106,127,85,,0000-2400,1234567,,,10600012,,, +1035,PAK,,PBC Hayya alal-Falah,,Multan (pjb),30.089444,71.491667,,120,,5751,89,94,,0045-0405,1234567,3,,49389,,, +1035,PAK,,PBC Hayya alal-Falah,,Multan (pjb),30.089444,71.491667,,120,,5751,89,94,,0600-1808,1234567,3,,49389,,, +1035,ETH,,R Oromia,,Adama=Nazret (orm),8.568892,39.289394,,10,,5685,136,104,,0400-0600,1234567,,,9600018,,, +1035,ETH,,R Oromia,,Adama=Nazret (orm),8.568892,39.289394,,10,,5685,136,104,,0900-1100,1234567,,,9600018,,, +1035,ETH,,R Oromia,,Adama=Nazret (orm),8.568892,39.289394,,10,,5685,136,104,,1600-1800,1234567,,,9600018,,, +1035,CHN,zh,CNR 1,,Jiayuguan (GS),39.784722,98.254722,,10,,6746,62,114,,2025-1805,1234567,,,36200559,,, +1035,CHN,zh,CNR 1,,Zhangye (GS),38.931111,100.476944,,10,,6948,61,117,,2025-1805,1234567,,,36200544,,, +1035,CHN,zh,CNR 1,,Qiqihar (HL),47.329722,124.056389,,25,,7475,41,118,,2025-1805,1234567,,,36200189,,, +1035,CHN,zh,CNR 1,,Dalian/LNTS303 (LN),39.087778,121.677778,,50,,8106,47,121,,2025-1805,1234567,,,49367,,, +1035,CHN,zh,CNR 1,,Hezuo (GS),34.971111,102.908889,,10,,7418,62,121,,2025-1805,1234567,,,49369,,, +1035,CHN,zh,CNR 1,,Ulan Hua/NMTS078 (NM),41.527778,111.691667,,10,,7372,52,121,,2025-1805,1234567,,,36200551,,, +1035,IND,,AIR Northeast,,Guwahati B (AS),26.154306,91.652889,,10,,7430,77,121,,0000-0345,1234567,,,49375,,, +1035,IND,,AIR Northeast,,Guwahati B (AS),26.154306,91.652889,,10,,7430,77,121,,0530-0900,......7,,,49375,,, +1035,IND,,AIR Northeast,,Guwahati B (AS),26.154306,91.652889,,10,,7430,77,121,,0600-0930,123456,,,49375,,, +1035,IND,,AIR Northeast,,Guwahati B (AS),26.154306,91.652889,,10,,7430,77,121,,0945-1700,1234567,,,49375,,, +1035,CHN,zh,CNR 1,,Jiayin (HL),48.883333,130.416667,,10,,7602,36,123,,2025-1500,1234567,,,36200560,,, +1035,CHN,zh,CNR 1,,Hegang/HLTS919 (HL),47.316944,130.213333,,10,,7740,37,124,,2025-1805,1234567,,,36200562,,, +1035,CHN,zh,CNR 1,,Fuxin/LNTS322 (LN),41.995119,121.732717,,10,,7846,45,125,,2025-1805,1234567,,,36200184,,, +1035,CHN,zh,CNR 1,,Tongjiang (HL),47.631794,132.506544,,10,,7802,35,125,,2025-1805,1234567,,,36201052,,, +1035,CHN,zh,CNR 1,,Wuhan/Dadongcun (HU),30.456111,114.036667,,50,,8465,58,125,,2025-1805,1234567,,,49374,,, +1035,CHN,zh,CNR 1,,Baoqing (HL),46.333333,132.216667,,10,,7914,36,126,,2025-1805,1234567,,,36200565,,, +1035,CHN,zh,CNR 1,,Jinzhou (LN),41.116667,121.116667,,10,,7895,46,126,,2025-1805,1234567,,,49370,,, +1035,CHN,zh,CNR 1,,Raohe (HL),46.785,133.9975,,10,,7941,35,126,,2025-1805,1234567,,,36201053,,, +1035,CHN,zh,CNR 1,,Yuncheng/Anyi (SX),35.05,111.033333,,10,,7890,57,126,,2025-1805,1234567,,,36200546,,, +1035,CHN,zh,CNR 1,,Jixi (HL),45.298056,130.938611,,10,,7959,38,127,,2000-1500,1234567,,,36200558,,, +1035,CHN,zh,CNR 1,,Liaocheng (SD),36.433333,115.966667,,10,,8044,53,127,,2025-1805,1234567,,,36200187,,, +1035,CHN,zh,CNR 1,,Mudanjiang (HL),44.588889,129.585278,,10,,7968,39,127,,2025-1805,1234567,,,36200554,,, +1035,CHN,zh,CNR 1,,Hailar=Haila'er/NMTS861 (NM),49.234722,119.722222,,1,,7112,42,128,,2025-1805,1234567,,,36200185,,, +1035,CHN,zh,CNR 1,,Huanren/LNTS310 (LN),41.277778,125.328611,,10,,8083,44,128,,2025-1805,1234567,,,36200561,,, +1035,CHN,zh,CNR 1,,Jinchang (GS),38.533056,102.213611,,1,,7083,60,128,,2025-1805,1234567,,,36200186,,, +1035,CHN,zh,CNR 1,,Shiyan (HU),32.613889,110.841944,,10,,8090,59,128,,2025-1805,1234567,,,36200191,,, +1035,CHN,zh,CNR 1,,Zibo (SD),36.8,118.05,,10,,8124,51,128,,2025-1805,1234567,,,36200543,,, +1035,CHN,zh,CNR 1,,Enshi/Sanhe Cun (HU),30.333333,109.466667,,10,,8207,61,129,,2220-1400,1234567,,,50477,,, +1035,CHN,zh,CNR 1,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,2025-1805,1234567,,,36200548,,, +1035,CHN,zh,CNR 1,,Yantai (SD),37.6,121.3,,10,,8221,48,129,,2025-1805,1234567,,,36200192,,, +1035,CHN,zh,CNR 1,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2025-1805,1234567,,,36200190,,, +1035,CHN,zh,CNR 1,,Zaozhuang (SD),34.841667,117.578222,,10,,8273,53,130,,2025-1805,1234567,,,36200193,,, +1035,CHN,zh,CNR 1,,Lanzhou/GSTS535 (GS),36.086389,103.846111,,1,,7382,61,131,,2025-1805,1234567,,,49371,,, +1035,CHN,zh,CNR 1,,Suzhou (AH),33.633333,116.983333,,10,,8349,54,131,,2025-1805,1234567,,,36200550,,, +1035,CHN,zh,CNR 1,,Chuzhou (AH),32.285167,118.346917,,10,,8545,54,132,,2025-1805,1234567,,,36200564,,, +1035,CHN,zh,CNR 1,,Longxi (GS),34.968611,104.657222,,1,,7523,61,132,,2025-1805,1234567,,,36200556,,, +1035,CHN,zh,CNR 1,,Datong/Fanzhuang (SX),40.070278,113.392222,,1,,7588,52,133,,2025-1805,1234567,,,49368,,, +1035,CHN,zh,CNR 1,,Qingyang (GS),36,107.866667,,1,,7626,58,133,,2025-1805,1234567,,,36200552,,, +1035,KOR,ko,HLCP KBS 1 R,,Pohang/Yeongil (gsb),36.081944,129.554444,,10,,8767,44,133,,0000-2400,1234567,,,49387,,, +1035,CHN,zh,CNR 1,,Tongliao/NMTS735 (NM),43.666667,122.216667,,1,,7719,44,134,,2025-1805,1234567,,,49373,,, +1035,THA,th,Neung Por. Nor. Phaak Phiseet,,Bangkok/Chaeng Wattana Rd (bmp),13.883333,100.575,,10,,9074,78,134,,????-1700,1234567,,,49394,,, +1035,TWN,,BCC Country Network,,Chiayi=Chia-i (CYS),23.483333,120.45,,10,,9465,57,135,,0000-2400,1234567,,,49395,,, +1035,CHN,zh,CNR 1,,Kangping/LNTS327 (LN),42.752778,123.347222,,1,,7855,44,136,,2025-1805,1234567,,,36200557,,, +1035,CHN,zh,CNR 1,,Tieling/LNTS325 (LN),42.353611,123.901667,,1,,7918,44,136,,2025-1805,1234567,,,36200549,,, +1035,CHN,zh,CNR 1,,Longkou (SD),37.659389,120.328333,,1,,8166,49,139,,2025-1805,1234567,,,36200188,,, +1035,CHN,zh,CNR 1,,Yichang (HU),30.703056,111.228889,,1,,8280,60,140,,2025-1805,1234567,,,36200547,,, +1035,PHL,,DYRL-AM,,Bacolod City (noc),10.683333,122.966667,,10,,10796,62,140,,2000-1500,1234567,,,49390,,, +1035,PHL,tl,DZWX-AM Bombo Radyo,,Baguio (bgt),16.4,120.533333,,5,,10122,61,140,,2000-1430,1234567,1,,49391,,, +1035,CHN,zh,CNR 1,,Zhangjiajie/Dayongqiao (HN),29.135,110.445833,,1,,8371,61,141,,2025-1805,1234567,,,36200545,,, +1035,INS,id,RRI Pro-1,,Bandar Lampung (LP-bla),-5.398889,105.296667,,10,,11088,86,141,,1000-1700,1234567,,,49376,,, +1035,INS,id,RRI Pro-1,,Bandar Lampung (LP-bla),-5.398889,105.296667,,10,,11088,86,141,,2155-0205,1234567,,,49376,,, +1035,CHN,zh,CNR 1,,Ganzhou (JX),25.8,114.9,,1,,8931,60,143,,2025-1805,1234567,,,36200563,,, +1035,CHN,zh,CNR 1,,Pingxiang/JXTS805 (JX),27.616667,113.85,,1,,8707,60,143,,2025-1805,1234567,,,36200553,,, +1035,J,,JOHD NHK2,,Takamatsu (shi-kag),34.316667,134.066667,,1,,9145,41,144,,2030-1500,1.....7,,,49383,,, +1035,J,,JOHD NHK2,,Takamatsu (shi-kag),34.316667,134.066667,,1,,9145,41,144,,2030-1635,.2345..,,,49383,,, +1035,J,,JOHD NHK2,,Takamatsu (shi-kag),34.316667,134.066667,,1,,9145,41,144,,2030-1640,.....6.,,,49383,,, +1035,J,,JOIC NHK2,,Toyama (chu-toy),36.720578,137.247681,,1,,9049,38,144,,2030-1500,1.....7,,,49384,,, +1035,J,,JOIC NHK2,,Toyama (chu-toy),36.720578,137.247681,,1,,9049,38,144,,2030-1635,.2345..,,,49384,,, +1035,J,,JOIC NHK2,,Toyama (chu-toy),36.720578,137.247681,,1,,9049,38,144,,2030-1640,.....6.,,,49384,,, +1035,J,,JOJD NHK2,,Tsuruoka (chu-fuk),38.733333,139.866667,,1,,8956,35,144,,2030-1500,1.....7,,,49385,,, +1035,J,,JOJD NHK2,,Tsuruoka (chu-fuk),38.733333,139.866667,,1,,8956,35,144,,2030-1635,.2345..,,,49385,,, +1035,J,,JOJD NHK2,,Tsuruoka (chu-fuk),38.733333,139.866667,,1,,8956,35,144,,2030-1640,.....6.,,,49385,,, +1035,PHL,,DYUM-AM,,Ormoc City (lyt),11.016667,124.6,,2.5,,10864,61,146,,,,,,49392,,, +1035,INS,id,RRI Pro-1,,Palu (ST-kot),-0.855658,119.886594,,1,,11660,72,152,,0000-0810,1234567,,,49379,,, +1035,SLM,,SIBC R Hapi Isles,,Honiara/Henderson Field (cth),-9.437611,160.057889,,10,,14705,36,153,,1300-1130,1234567,,,49393,,, +1035,J,,NHK R 2,,Miyoshi (chg-hir),34.8,132.85,,0.1,,9043,42,154,,0000-2400,1234567,,,49380,,, +1035,J,,NHK R 2,,Niihama (shi-ehi),33.966667,133.316667,,0.1,,9144,42,154,,2030-1500,1.....7,,,49381,,, +1035,J,,NHK R 2,,Niihama (shi-ehi),33.966667,133.316667,,0.1,,9144,42,154,,2030-1635,.2345..,,,49381,,, +1035,J,,NHK R 2,,Niihama (shi-ehi),33.966667,133.316667,,0.1,,9144,42,154,,2030-1640,.....6.,,,49381,,, +1035,J,,NHK R 2,,Taisho (shi-koc),33.2,132.983333,,0.1,,9203,43,154,,2030-1500,1.....7,,,49382,,, +1035,J,,NHK R 2,,Taisho (shi-koc),33.2,132.983333,,0.1,,9203,43,154,,2030-1635,.2345..,,,49382,,, +1035,J,,NHK R 2,,Taisho (shi-koc),33.2,132.983333,,0.1,,9203,43,154,,2030-1640,.....6.,,,49382,,, +1035,J,,NHK R 2,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,2030-1500,1.....7,,,49386,,, +1035,J,,NHK R 2,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,2030-1635,.2345..,,,49386,,, +1035,J,,NHK R 2,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,2030-1640,.....6.,,,49386,,, +1035,NZL,,2ZB Newstalk ZB,,Wellington/Titahi Bay (WGN),-41.094444,174.849722,,20,,18509,40,162,,0000-2400,1234567,9993,,49388,,, +1035,AUS,,2EA/t SBS National,,Wollongong/Windang (NSW),-34.529167,150.864028,,2,,16591,69,166,,,,,,49366,,, +1040,CAN,fr,CJMS,,Saint-Constant (QC),45.368056,-73.6225,,2.5,,5614,296,109,,,,989,,36188,,, +1040,USA,,WZSK,,Everett (PA),40.007222,-78.362222,,10,,6296,294,110,,,,,,43594,,, +1040,USA,,WHO,,Des Moines/Mitchellville (IA),41.652778,-93.350278,,50,,7057,305,111,,,,0,,41673,,, +1040,USA,ko,WPBS,,Conyers (GA),33.680833,-84.028889,,50,,7149,293,112,,1200-2400,1234567,,,42652,,, +1040,USA,,WJTB,,North Ridgeville (OH),41.376944,-82.0075,,5,,6416,297,114,,,,,,41933,,, +1040,USA,en,WNJE,,Flemington (NJ),40.505,-74.976667,,1.5,,6046,292,116,,,,,,41001,,, +1040,CAN,en,CKST,,Vancouver (BC),49.100833,-122.932222,,50,,7786,327,118,,,,1,,36432,,, +1040,USA,,WYSL,,Avon (NY),42.854444,-77.710833,,0.5,,6043,296,120,,,,39,,43549,,, +1040,USA,en,WJBE,,Powell (TN),36.042778,-84.0475,,3,,6959,294,122,,1300-0100,1234567,,,42762,,, +1040,USA,,KCBR,,Monument (CO),38.818889,-104.775556,,15,,7920,310,124,,,,,,38131,,, +1040,USA,,WLCR,,Mt Washington (C (KY),38.003056,-85.680833,,1.5,,6903,297,124,,,,,,42144,,, +1040,CUB,es,R Mayabeque,,Gines (my),22.807692,-82.018092,,10,,7923,283,126,,,,,,31600031,,, +1040,B,pt,ZYK537 Rdio Capital,,So Paulo/Av. Nicola Imparato (SP),-23.733833,-46.625611,,100,,9877,227,127,,,,997,,36901745,,, +1040,VEN,,YVLB La Voz de Carabobo,,Valencia (cbb),10.136294,-67.953083,,10,,8054,264,128,,0900-0400,1234567,62,,1950,,, +1040,CLM,es,HJBF,,Ccuta (nsa),7.816667,-72.533333,,15,,8568,266,131,,,,,,37345,,, +1040,VEN,,YVON Mundial Los Andes,,Mrida (mrd),8.566667,-71.066667,,10,,8403,265,131,,,,,,45410,,, +1040,CLM,es,HJAI R Tropical,,Barranquilla (atl),10.9,-74.783333,,10,,8453,270,132,,,,41,,37325,,, +1040,USA,,KGGR,,Dallas (TX),32.778611,-96.730833,,3.3,,8000,301,132,,,,,,38477,,, +1040,USA,,WSGH,,Lewisville (NC),36.135,-80.503889,,0.182,,6730,292,132,,,,,,42994,,, +1040,USA,es,WLVJ,,Boynton Beach (FL),26.473889,-80.203056,,1.1,,7495,285,132,,,,,,42252,,, +1040,CLM,es,HJCJ Colmundo,,Bogot D. C. (bdc),4.583333,-74.083333,,10,,8957,265,134,,,,998,,37371,,, +1040,CLM,es,HJFM,,Armenia (qui),4.516667,-75.7,,10,,9073,267,134,,,,,,37437,,, +1040,CLM,es,HJUB,,Pasto (nar),1.216667,-77.283333,,15,,9470,266,134,,,,,,35901493,,, +1040,CTR,,TIAC R Fides,,San Jos (sjs),9.916667,-84.066667,,10,,9171,277,134,,1000-0500,1234567,,,40563,,, +1040,CLM,es,HJSY Caucana 1040,,Popayn (cau),2.45,-75.616667,,10,,9249,265,135,,,,,,35901491,,, +1040,PTR,es,WZNA,,Moca (PR),18.277222,-67.166944,,0.25,,7299,269,136,,,,,,43579,,, +1040,USA,,WHBO,,Pinellas Park (FL),27.847222,-82.7725,,0.42,,7549,287,136,,,,,,43354,,, +1040,DOM,,HION La Mezcla,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,0000-2400,1234567,,,37281,,, +1040,MEX,es,XESAG-AM R Lobo,,Salamanca (gua),20.567222,-101.200278,,5,,9348,296,138,,,,,,44728,,, +1040,PNR,es,La Voz del Mamoni,,Chepo/Cerro Brujo (pnm),9.153611,-79.038889,,3,,8896,272,139,,,,,,52321,,, +1040,PRU,es,OBX4O Metropolitana R.Peruana,,Lima (lim),-12.166667,-77.016667,,10,,10630,257,139,,,,,,40395,,, +1040,USA,en,WPEI224,,Hanover (MD),39.194317,-76.675528,,0.01,,6251,292,139,,,,,,20010606,,, +1040,PNR,es,HOJ2 Ondas del Canajagua,,Las Tablas/Av. Moises Espio (lsn),7.766272,-80.271883,,2.5,,9101,272,140,,1000-0200,1234567,,,52320,,, +1040,NCG,,YNVJ LV de Jinotega,,Jinotega (jtg),13.1,-86,,2,,9024,280,141,,,,,,52207,,, +1040,USA,en,WPMG814,,Fresno (CA),36.815222,-119.749861,,1.7,,8836,319,141,,,,,,20010609,,, +1040,CTR,,TIHG R Nosara,,Hojancha (gnc),10.0582,-85.416394,,2,,9250,278,142,,1100-1400,1234567,,,52149,,, +1040,CTR,,TIHG R Nosara,,Hojancha (gnc),10.0582,-85.416394,,2,,9250,278,142,,2100-2300,1234567,,,52149,,, +1040,EQA,,HCEV5,,Cuenca (azu),-2.883333,-78.966667,,3,,9945,265,142,,,,,,36923,,, +1040,HND,,HRFX,,Catacamas (ola),14.9,-85.866667,,1,,8859,281,143,,,,,,37753,,, +1040,HWA,en,KLHT,,Honolulu (HI),21.336111,-157.8925,,10,,11707,345,143,,0000-2400,1234567,999,,38811,,, +1040,GTM,,TGJP R Oriental,,Jalapa (jal),14.616667,-89.966667,,1,,9157,284,144,,,,,,40502,,, +1040,HND,,HRNN,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37806,,, +1040,NCG,,R Cima,,Santo Tomas (cht),12.066667,-85.083333,,1,,9053,279,144,,,,,,33700011,,, +1040,MEX,es,XEBBB-AM R Mujer,,Zapopan (jal),20.634064,-103.441033,,1,,9479,298,145,,,,,,43762,,, +1040,USA,,KXPD,,Tigard (OR),45.473889,-122.659167,,0.2,,8125,325,145,,,,9991,,38857,,, +1040,MEX,es,XECH-AM R Capital,,Toluca (mex),19.290972,-99.656972,,0.75,,9367,294,146,,,,,,43836,,, +1040,MEX,es,XEPLE-AM R Palenque,,Palenque (cps),17.548939,-91.975567,,0.5,,9032,287,147,,,,,,44560,,, +1040,BOL,,CP208 R Sipe Sipe,,Quillacollo (cbb),-17.383333,-66.283333,,1,,10399,246,148,,1000-0300,123456,,,51986,,, +1040,BOL,,CP208 R Sipe Sipe,,Quillacollo (cbb),-17.383333,-66.283333,,1,,10399,246,148,,1100-0400,......7,,,51986,,, +1040,EQA,,HCCW1,,Machachi (pic),-0.5,-78.566667,,0.7,,9709,266,148,,,,,,36895,,, +1040,EQA,,HCGB6,,Ambato (tun),-1.25,-78.616667,,0.6,,9778,265,148,,,,,,36950,,, +1040,PRU,,OAM2L,,Pomahuaca/Cerro Chamusco (caj),-5.933333,-79.227778,,1,,10231,263,148,,,,,,37000071,,, +1040,MEX,es,XEHES-AM Siglo XXI,,Chihuahua (chi),28.613572,-106.054347,,0.25,,8907,305,149,,,,,,44107,,, +1040,PRU,,OAU3P,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000084,,, +1040,MEX,es,XEGYS-AM La Primera,,Guaymas (son),27.889717,-110.901114,,0.25,,9240,308,150,,,,,,44093,,, +1040,EQA,,HCRG4,,Manta (man),-1,-80.766667,,0.3,,9903,267,152,,,,,,37084,,, +1040,PRG,,ZP43 R Arapisandu,,San Ignacio (Misiones) (mis),-26.916667,-56.916667,,0.5,,10719,233,152,,0900-0200,1234567,,,45539,,, +1040,BOL,,CP113 R Villazon,,Villazon (pts),-22.116667,-65.616667,,0.25,,10784,243,156,,1100-0200,123456,,,36630,,, +1040,BOL,,CP113 R Villazon,,Villazon (pts),-22.116667,-65.616667,,0.25,,10784,243,156,,1100-2200,......7,,,36630,,, +1040,CHL,,CD104 R Raices,,Curacautin (AR),-38.416667,-71.95,,1,,12583,237,156,,1100-0100,1234567,,,35847,,, +1040,CHL,,CD104 R Payne AM,,Puerto Natales (MA),-51.716667,-72.5,,1,,13690,227,159,,,,,,35846,,, +1040,USA,en,WPWA745,,El Segundo/400 Lomita St. (CA),33.927628,-118.410964,,0.01,,9051,316,164,,,,,,20010607,,, +1040,USA,en,WQFI350,,Santa Barbara/2800 Painted Cave Road (CA),34.508333,-119.792639,,0.01,,9060,318,164,,,,,,20010608,,, +1044,E,es,SER,,San Sebastin/Monte Igueldo (PVA-SS),43.297861,-2.066389,,50,,1165,216,52,,0000-2400,1234567,26,,836,,, +1044,MRC,,SNRT Al Ida Al Amazighia,,Seba-Aioun (mkt),33.897156,-5.382611,,300,,2234,210,55,,0800-2400,1234567,9998,,839,,, +1044,E,es,SER,,Valladolid/Passeo de la Gallinera (CAL-VA),41.614083,-4.699403,,10,,1437,220,61,,0000-2400,1234567,995,,835,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0410-0430,.....67,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0445-0455,12345..,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0610-0630,1234567,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1340-1400,12345..,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1345-1400,......7,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1545-1600,.....6.,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1610-1700,1234567,,,2248,,, +1044,UKR,uk,Ivano-Frankivske Oblasne R,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,1800-1830,1234567,,,2248,,, +1044,UKR,uk,UR 1 Persha Prog.,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0330-2000,12345..,,,2248,,, +1044,UKR,uk,UR 1 Persha Prog.,,Verkhovyna/Gora Sinicja (IF),48.144528,24.840722,,1,,1381,101,71,,0400-2000,.....67,,,2248,,, +1044,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400067,,, +1044,IRN,fa,IRIB R Iran,,Dehloran (ilm),32.701778,47.237361,,50,,3911,107,79,,0000-2400,1234567,,,1794,,, +1044,ETH,,ERTA Ethiopia National R,,Mekelle (tig),13.532756,39.510525,,200,,5201,133,86,,0300-0600,1234567,,,9600001,,, +1044,ETH,,ERTA Ethiopia National R,,Mekelle (tig),13.532756,39.510525,,200,,5201,133,86,,0800-2100,1234567,,,9600001,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Akesu=Aksu/XJTS636 (XJ),41.185833,80.280833,,10,,5516,72,102,,2300-1800,1234567,,,36200542,,, +1044,IND,,AIR Samvadita Channel,,Mumbai A=Bombay (MH),19.180556,72.809861,,100,,6734,96,104,,0015-0400,1234567,87,,49408,,, +1044,IND,,AIR Samvadita Channel,,Mumbai A=Bombay (MH),19.180556,72.809861,,100,,6734,96,104,,0530-1035,1234567,87,,49408,,, +1044,IND,,AIR Samvadita Channel,,Mumbai A=Bombay (MH),19.180556,72.809861,,100,,6734,96,104,,1230-1740,1234567,87,,49408,,, +1044,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/XJTS904 (XJ),43.715833,87.595,,10,,5800,65,105,,0000-1600,1234567,,,49406,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Korla/SARFT8104 (XJ),41.772778,86.214722,,10,,5853,67,106,,2300-1800,1234567,,,36200540,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Turfan/Gaochang Lu-SARFT8101 (XJ),42.957778,89.175833,,10,,5952,65,107,,2300-1800,1234567,,,36200538,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Tacheng=Qoqek/SARFT634 (XJ),46.745556,83.006667,,1,,5310,64,110,,2300-1800,1234567,,,36200539,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,1,,5398,68,111,,2300-1800,1234567,,,36200537,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Bachu/XJTS2041 (XJ),39.815278,78.535833,,1,,5499,74,112,,2300-1800,1234567,,,36200541,,, +1044,CHN,ja,China R Int.,,Changzhou/SARFT623 (JS),31.709389,120.112278,,300,72,8694,53,118,,1100-1600,1234567,0,,49404,,, +1044,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Yiwu/XTS8103 (XJ),43.247222,94.699444,,1,,6266,61,120,,2300-1800,1234567,,,36200536,,, +1044,CHN,mn,Nei Menggu RGD Mongyol,,Yakeshi/NMTS785 (NM),49.3105,120.807556,,1,,7154,41,129,,2150-1605,1234567,,,36201244,,, +1044,KOR,,HLCD KBS 1 R,,Jecheon (ccb),37.283333,128.216667,,10,,8591,44,132,,0000-2400,1234567,,,49420,,, +1044,KOR,ko,HLCI KBS 1 R,,Samcheok (gan),37.456389,129.162222,,10,,8619,43,132,,0000-2400,1234567,,,49421,,, +1044,HKG,,Metro Plus,,Peng Chau (isd),22.290633,114.043744,,10,,9195,63,134,,0000-2400,1234567,9987,,49407,,, +1044,THA,th,Kor. Wor. Sor. 5,,Khon Kaen/252 Mittaphap Rd (kkn),16.046667,102.713889,,10,,9027,75,134,,????-1700,1234567,,,49430,,, +1044,THA,th,Thor. Phor. Sii 4,,Nakhon Si Thammarat (ntm),8.483333,99.95,,10,,9504,82,135,,2130-1630,1234567,,,49431,,, +1044,CHN,,Dali RGD,,Dali/SARFT653 (YN),25.716667,100.166667,,1,,8025,71,137,,2225-1100,1234567,,,49405,,, +1044,INS,id,RRI Pro-1,,Sibolga (SU-sib),1.721111,98.803056,,10,,10020,87,137,,2200-1700,1234567,,,49413,,, +1044,TWN,,Yen Sheng Kuangpo Tientai,,Hualien (HL),23.95785,121.603344,,5,,9487,56,138,,,,,,49432,,, +1044,PHL,tl,DZNG-AM Bombo Radyo,,Naga City/RDC Building (cas),13.616667,123.183333,,10,,10537,61,139,,2100-1500,1234567,1,,49427,,, +1044,PHL,,DXLL-AM Radyo Ukay,,Zamboanga City (zds),6.933333,122.1,,10,,11090,65,141,,,,,,49428,,, +1044,INS,id,RRI Pro-1,,Tahuna (SA-san),3.616667,125.483333,,10,,11605,64,142,,2100-1600,1234567,,,35400051,,, +1044,PHL,tl,DYMS-AM Aksyon Radyo,,Catbalogan (sam),11.766667,124.866667,,5,,10810,60,143,,2000-1300,......7,,,49425,,, +1044,PHL,tl,DYMS-AM Aksyon Radyo,,Catbalogan (sam),11.766667,124.866667,,5,,10810,60,143,,2000-1400,123456,,,49425,,, +1044,PHL,,DXCO-AM,,Opol/Taboc (mor),8.512978,124.584928,,5,,11096,62,144,,1945-????,1234567,8,,49424,,, +1044,TWN,,Cheng Kung Kuangpo Tientai,,Kaohsiung (KHS),22.625375,120.297928,,1,,9535,58,145,,,,,,49433,,, +1044,INS,id,RRI Pro-1,,Biak (PA-bia),-1.155958,136.076317,,10,,12684,57,146,,2000-1500,1234567,,,49410,,, +1044,INS,,PM3BNF Country Station,,Cikarang (JB-bek),-6.25,107.15,,1,,11288,85,151,,,,58,,49411,,, +1044,PHL,,DXML-AM,,Digos City (dvs),6.75,125.35,,1,,11306,63,151,,,,,,49426,,, +1044,INS,id,RDA-R Duta Angkasa,,Pangadaran (JB),-7.683333,108.65,,1,,11516,85,152,,,,,,35400050,,, +1044,AUS,,6BR ABC Southwest WA,,Bridgetown/Hester (WA),-33.921094,116.121642,,1,,14206,99,161,,0000-2400,1234567,,,49400,,, +1044,AUS,,5CS Classic Hits,,Port Pirie/Huddleston (SA),-33.326014,138.276972,,2,,15668,81,163,,0000-2400,1234567,,,49402,,, +1044,AUS,,4WP ABC Far North QLD,,Weipa (QLD),-12.620433,141.890069,,0.5,,14105,59,164,,0000-2400,1234567,,,49403,,, +1044,AUS,,2UH ABC Newcastle,,Muswellbrook (NSW),-32.232056,150.918889,,2,,16407,66,165,,0000-2400,1234567,,,49401,,, +1044,NZL,en,4ZB Newstalk ZB,,Dunedin/Highcliff (OTA),-45.884167,170.588333,,10,,18673,65,166,,0000-2400,1234567,,,49423,,, +1046,RUS,,TZ,b,Vologda (VO),59.270833,39.958333,,0.025,,2220,56,95,,,,3,L1016 U1013 15.0s,IDx2 + 5 tone,85849,, +1046,RUS,,UR,b,Vologda (VO),59.270833,39.958333,,0.025,,2220,56,95,,,,0,L1020 U1020 ,85850,,, +1050,USA,es,WEPN,,New York/East Rutherford [NJ] (NY),40.776667,-74.052222,,50,,5967,292,100,,,,9973,,41318,,, +1050,CAN,en,CHUM,,Toronto/Oakville (ON),43.487222,-79.620556,,50,,6113,298,101,,,,7,,36101,,, +1050,USA,,WTKA,,Ann Arbor (MI),42.146111,-83.66,,10,,6456,299,112,,,,,,43152,,, +1050,CAN,en,CJNB,,North Battleford (SK),52.841667,-108.306389,,10,,6862,321,116,,,,0,,36192,,, +1050,MEX,es,XEG-AM La Ranchera,,Monterrey (nvl),25.698178,-100.175036,,100,,8827,299,123,,,,2,,44041,,, +1050,CUB,es,R Victoria,,Victoria de las Tunas/CTOM1 (lt),20.924553,-76.899989,,10,,7738,278,124,,,,0,,36584,,, +1050,USA,,WPQR,,Conway (NH),43.98,-71.11,,0.063,,5554,293,125,,,,,,40884,,, +1050,USA,es,WVXX,,Norfolk (VA),36.828889,-76.207222,,0.358,,6402,290,125,,,,,,41039,,, +1050,USA,,WJOK,,Kaukauna (WI),44.2475,-88.3,,0.5,,6564,304,126,,,,,,41912,,, +1050,USA,,WYBG,,Massena (NY),44.895,-74.934722,,0.066,,5727,297,126,,,,9999,,43506,,, +1050,USA,en,KTCT,i,San Mateo (CA),37.650556,-122.150556,,50,,8861,321,126,,,,54,,52638,,, +1050,VEN,es,YVPO RNV Canal Informativo,,Cabudare (lar),10.066667,-69.25,,20,,8148,265,126,,1000-0400,1234567,,,51680,,, +1050,VEN,es,YVKZ RNV Canal Musical,,Caracas (dcf),10.432294,-66.941058,,10,,7960,263,127,,1000-0400,1234567,997,,45361,,, +1050,USA,,WJSB,,Crestview (FL),30.766944,-86.585278,,3.1,,7551,292,128,,,,,,41929,,, +1050,USA,en,WHSC,,Conway (SC),33.848889,-79.084167,,0.473,,6820,289,128,,,,,,41794,,, +1050,CLM,es,HJBB R Valledupr,,Valledupar (ces),10.683333,-73.283333,,15,,8370,269,129,,,,,,37341,,, +1050,USA,,WDVM,,Eau Claire (WI),44.777222,-91.474722,,0.26,,6701,306,130,,,,,,41221,,, +1050,USA,,WLIP,,Kenosha (WI),42.552778,-87.893889,,0.25,,6674,302,130,,,,,,42173,,, +1050,USA,,WTCA,,Plymouth (IN),41.318333,-86.311389,,0.25,,6678,300,130,,,,,,43116,,, +1050,USA,en,WGRI,,Cincinnati (OH),39.080556,-84.521667,,0.279,,6747,297,130,,,,,,43214,,, +1050,CLM,,HJTJ,,Montera (cor),8.716667,-75.766667,,15,,8710,269,131,,,,,,37645,,, +1050,CLM,es,HJS62,,Yopal (cas),5.35,-72.4,,15,,8775,264,131,,,,,,35901498,,, +1050,USA,,KLOH,,Pipestone (MN),43.995278,-96.344722,,0.432,,7029,308,131,,,,,,38839,,, +1050,USA,,WADC,,Parkersburg (WV),39.258056,-81.563611,,0.144,,6552,295,131,,,,,,40649,,, +1050,USA,,WAMN,,Green Valley (WV),37.305556,-81.125,,0.2,,6677,293,131,,,,,,40711,,, +1050,USA,,WGAT,,Gate City (VA),36.633056,-82.582222,,0.267,,6821,294,131,,,,,,41476,,, +1050,CLM,es,HJDR,,Medelln (ant),6.266667,-75.583333,,15,,8912,268,132,,,,,,37398,,, +1050,CLM,es,HJLZ,,Arauca (ara),7.016667,-70.766667,,10,,8518,264,132,,,,,,37559,,, +1050,PRU,,OBX6B,,Arequipa (are),-16.35,-71.583333,,50,,10643,251,132,,,,,,40406,,, +1050,URG,es,CX26 RNU Uruguay AM,,Santiago Vzquez (mo),-34.80725,-56.363111,,100,,11419,228,132,,1000-0300,1234567,,,36810,,, +1050,USA,,KMIS,,Portageville (MO),36.425278,-89.691389,,0.6,,7274,298,132,,,,,,38908,,, +1050,USA,,WBUT,,Butler (PA),40.8975,-79.889444,,0.062,,6323,296,132,,,,,,40927,,, +1050,USA,,WLON,,Lincolnton (NC),35.491111,-81.2675,,0.231,,6829,292,132,,,,,,42208,,, +1050,USA,,WMSG,,Oakland (MD),39.392222,-79.398333,,0.075,,6407,294,132,,,,,,42389,,, +1050,USA,,WDZ,,Decatur (IL),39.815,-89.002222,,0.25,,6956,300,133,,,,,,41230,,, +1050,USA,,WLYC,,Williamsport (PA),41.262222,-77.033056,,0.03,,6119,294,133,,,,,,42264,,, +1050,USA,en,WBRG,,Lynchburg (VA),37.420833,-79.115278,,0.09,,6541,292,133,,,,,,40899,,, +1050,USA,es,WBQH,,Silver Spring (MD),39.014167,-77.029444,,0.044,,6287,292,133,,,,,,42703,,, +1050,B,pt,ZYI676 Rdio Caturit,,Campina Grande (PB),-7.162794,-35.920297,,1,,7715,226,134,,,,,,36901758,,, +1050,CLM,es,HJFZ,,Espinal (tol),4.15,-74.9,,10,,9050,266,134,,,,,,37448,,, +1050,GTM,,TGSL LV de los Cuchumatanes,,Huehuetenango (huh),15.316667,-91.466667,,10,,9194,286,134,,1100-0600,1234567,,,40542,,, +1050,SLV,,YSU,,Ahuachapn (ahp),13.916667,-89.833333,,10,,9209,283,134,,,,,,45331,,, +1050,SLV,,YSU,,San Salvador (ssl),13.716667,-89.216667,,10,,9186,283,134,,,,,,45330,,, +1050,USA,,KJPG,,Frazier Park (D) (CA),35.024444,-118.918056,,10,,8970,317,134,,,,,,38878,,, +1050,USA,,WSEN,,Baldwinsville (NY),43.179444,-76.338611,,0.019,,5935,296,134,,,,,,42981,,, +1050,B,pt,ZYH647 Rdio Primeira Capital,,Aquiraz (CE),-3.910422,-38.3853,,0.5,,7517,229,135,,,,,,36901757,,, +1050,USA,,WFSC,,Franklin (NC),35.211111,-83.368611,,0.153,,6984,293,135,,,,,,41438,,, +1050,USA,,WNES,,Central City (KY),37.269167,-87.142222,,0.172,,7051,297,135,,,,,,42461,,, +1050,USA,,WSMT,,Sparta (TN),35.954444,-85.476944,,0.178,,7055,295,135,,,,,,43030,,, +1050,MEX,es,XEBCS-AM,,La Paz (bcs),24.090556,-110.334722,,10,,9562,305,136,,,,,,43768,,, +1050,CLM,es,HJIO,,Granada (met),3.533333,-73.7,,5,,9023,264,137,,,,,,35901500,,, +1050,DOM,,HICB R Hispaniola,,Santiago de los Caballeros (sto),19.433333,-70.666667,,0.25,,7441,272,137,,0930-0400,1234567,,,37227,,, +1050,EQA,,HCRQ2 R Aguila,,Guayaquil (gua),-2.166667,-79.916667,,10,,9947,266,137,,,,,,37097,,, +1050,MEX,es,XEQOO-AM,,Puerto Morelos (qui),20.893478,-86.860728,,2.5,,8406,286,137,,,,,,44623,,, +1050,MEX,es,XETAB-AM,,Villahermosa (tab),18.005289,-92.991947,,5,,9058,288,137,,,,,,44787,,, +1050,CUB,es,R Guam,,Santa Luca (pr),22.67345,-83.943017,,1,,8062,285,138,,,,,,36451,,, +1050,MEX,es,XEJF-AM R Max,,Tierra Blanca (vcz),18.459819,-96.346078,,5,,9233,291,138,,,,,,44209,,, +1050,USA,,WFAM,,Augusta (GA),33.455833,-81.938889,,0.082,,7035,291,138,,,,,,41354,,, +1050,USA,,KMTA,,Miles City (MT),46.401111,-105.651667,,0.136,,7299,315,139,,,,,,38936,,, +1050,USA,,WWIC,,Scottsboro (AL),34.673056,-86.053056,,0.1,,7195,295,139,,,,,,43383,,, +1050,B,pt,ZYJ867 Rdio Verde Vale,,Brao do Norte (SC),-28.272222,-49.134167,,7,,10440,227,140,,,,,,36901746,,, +1050,HND,,HRLP10,,La Ceiba (atl),15.766667,-86.816667,,2,,8847,282,140,,,,,,37779,,, +1050,USA,en,KBLE,,Seattle (WA),47.561389,-122.359444,,0.44,,7913,326,140,,,,,,38052,,, +1050,USA,en,KEYF,,Dishman (WA),47.6075,-117.361111,,0.26,,7711,323,140,,,,,,38355,,, +1050,B,pt,ZYJ286 Rdio Clube de Palmas,,Palmas (PR),-26.508056,-51.994722,,5,,10417,230,141,,,,,,36901751,,, +1050,USA,,KSIS,,Sedalia (MO),38.734167,-93.225278,,0.086,,7291,302,141,,,,,,39364,,, +1050,USA,,KTBL,,Los Ranchos (NM),34.979444,-106.736944,,1,,8367,309,141,,,,,,39458,,, +1050,ARG,es,LV27 R San Francisco,,San Francisco (cb),-31.433333,-62.066667,,10,,11416,234,142,,0900-0300,1234567,,,33000074,,, +1050,B,pt,ZYH494 Rdio CBN,,Camaari (BA),-12.805556,-38.240767,,0.75,,8390,225,142,,,,,,36901752,,, +1050,CLM,es,HJGU,,Bucaramanga (sat),7.033333,-73.083333,,1,,8674,266,143,,,,,,37463,,, +1050,USA,,KCHN,,Brookshire (TX),29.879167,-96.035556,,0.41,,8210,298,143,,1300-0100,1234567,,,38151,,, +1050,USA,,WBNM,,Alexander City (AL),32.950833,-85.985278,,0.048,,7332,293,143,,,,,,42841,,, +1050,USA,,WMNZ,,Montezuma (GA),32.298056,-84.033889,,0.041,,7262,292,143,,,,,,42362,,, +1050,CLM,es,HJNG,,Palmira (val),3.466667,-76.316667,,1,,9207,266,144,,,,,,37585,,, +1050,MEX,es,XED-AM Siglo XXI,,Mexicali (bcn),32.617392,-115.528078,,1,,9037,314,144,,,,,,43893,,, +1050,SLV,,YSU,,Santa Ana (sta),13.966667,-89.566667,,1,,9187,283,144,,,,,,45334,,, +1050,SLV,,YSU,,Sonsonate (ssn),13.716667,-89.7,,1,,9218,283,144,,,,,,45333,,, +1050,SLV,,YSU,,Usulutn (usu),13.333333,-88.416667,,1,,9166,282,144,,,,,,45332,,, +1050,B,pt,ZYH760 Rdio Jornal,,Inhumas (GO),-16.354111,-49.493844,,1,,9317,233,145,,,,,,36901748,,, +1050,B,pt,ZYI203 Rdio Capixaba,,Vitria (ES),-20.391094,-40.367692,,1,,9246,223,145,,,,95,,36901754,,, +1050,MEX,es,XEDC-AM 1050 Noticias,,Aguascalientes (agu),21.919797,-102.267047,,1,,9291,298,145,,,,,,43897,,, +1050,MEX,es,XEIP-AM La Poderosa,,Uruapan (mic),19.390131,-102.006839,,1,,9504,296,145,,,,,,44175,,, +1050,MEX,es,XERIO-AM La Poderosa,,Ixtln del Ro (nay),21.02475,-104.386553,,1,,9500,299,145,,,,,,44676,,, +1050,MEX,es,XEZUM-AM ABC R,,Chilpancingo (gue),17.577778,-99.490506,,1,,9511,293,145,,,,,,45161,,, +1050,USA,en,WTWG,,Columbus (MS),33.51,-88.412778,,0.048,,7437,295,145,,,,,,40644,,, +1050,EQA,,HCEP5,,Riobamba (chi),-1.666667,-78.666667,,1,,9818,265,146,,,,,,36921,,, +1050,EQA,,HCIM1 R. Municipal LV de Imbabura,,Ibarra (imb),0.35,-78.116667,,1,,9603,266,146,,,,,,52510,,, +1050,EQA,,HCKI4,,Chone (man),-0.7,-80.066667,,1,,9829,267,146,,,,,,37001,,, +1050,PRU,,R Campesina,,Cajamarca (caj),-7.166667,-78.516667,,1,,10292,262,148,,,,,,47304,,, +1050,USA,,KORE,,Springfield-Eugene (OR),44.068611,-123.029167,,0.149,,8275,325,148,,,,,,39098,,, +1050,B,pt,ZYI391 Rdio Difusora Paranaibense,,Paranaba (MS),-19.693311,-51.196039,,0.5,,9728,233,149,,,,,,36901753,,, +1050,B,pt,ZYJ497 Rdio Angra,,Angra dos Reis (RJ),-22.981078,-44.286483,,0.5,,9689,226,149,,,,,,36901755,,, +1050,B,pt,ZYK601 Rdio Show,,Jardinpolis (SP),-21.058131,-47.820133,,0.5,,9680,229,149,,,,,,36901756,,, +1050,USA,,WROS,,Jacksonville (FL),30.353889,-81.739167,,0.013,,7275,288,149,,,,,,42902,,, +1050,USA,,KGTO,,Tulsa (OK),36.159722,-96.0525,,0.022,,7671,302,150,,,,,,38515,,, +1050,USA,,KJBN,,Little Rock (AR),34.766111,-92.293889,,0.019,,7568,299,150,,,,,,38660,,, +1050,B,pt,ZYL236 Rdio Rural de Tupaciguara,,Tupaciguara (MG),-18.605133,-48.695256,,0.25,,9490,231,151,,,,,,36901749,,, +1050,BOL,,CP233 R El Mundo,,Santa Cruz (scz),-17.766667,-63.166667,,0.5,,10242,243,151,,1000-0200,1234567,,,36643,,, +1050,USA,,WJCM,,Sebring (FL),27.508333,-81.422222,,0.011,,7489,286,151,,,,,,41855,,, +1050,ARG,,R Conurbana,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,51823,,, +1050,B,pt,ZYJ226 Rdio Difusora Platinense,,Santo Antnio da Platina (PR),-23.283333,-50.083333,,0.25,,10011,230,153,,,,,,36901750,,, +1050,USA,,KVPI,,Ville Platte (LA),30.694167,-92.312778,,0.01,,7914,296,156,,,,,,39661,,, +1050,USA,,KCAA,,Loma Linda (CA),33.989444,-117.186111,,0.035,,8988,316,158,,,,,,38118,,, +1050,CHL,,CD105 R Armonia,,Osorno (LL),-40.566667,-73.166667,,0.5,,12831,236,159,,1030-0630,1234567,,,35848,,, +1050,USA,,KXCA,,Lawton (OK),34.590833,-98.352778,,0.006,,7938,303,159,,,,,,38753,,, +1050,USA,,KRMY,,Killeen (TX),31.114722,-97.7,,0.005,,8202,300,162,,,,,,39272,,, +1050,USA,,KJPG,,Frazier Park (N) (CA),35.401944,-119.046389,,0.007,,8940,318,165,,,,,,20012546,,, +1053,G,en,TalkSPORT,,Droitwich/Mast C-D (EN-WOR),52.298667,-2.105389,,500,,580,275,36,,0000-2400,1234567,9992,,857,,, +1053,ROU,ro,SRR R Iaşi,,Iaşi/Letcani (IS),47.181944,27.457222,,400,160 340,1604,102,47,,0355-2000,1234567,23,,860,,, +1053,G,en,TalkSPORT,,Postwick (EN-NFK),52.626944,1.402778,,18,,345,282,48,,0000-2400,1234567,19,,855,,, +1053,G,en,TalkSPORT,,Dumfries (SC-DGA),55.028056,-3.479444,,10,,728,300,54,,0000-2400,1234567,5,,854,,, +1053,G,en,TalkSPORT,,Tonbridge/Rusthall (EN-KNT),51.139472,0.224556,,4,,440,258,55,,0000-2400,1234567,,,853,,, +1053,E,es,COPE,,Zaragoza/San Gregorio (ARA-Z),41.688878,-0.86365,,20,,1282,208,57,,0000-2400,1234567,12,,842,,, +1053,G,en,TalkSPORT,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,2.2,,482,256,58,,0000-2400,1234567,,,852,,, +1053,G,en,TalkSPORT,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0000-2400,1234567,,,845,,, +1053,LBY,ar,R Libya,,Tarabulus=Tripoli (tbl),32.857625,13.076556,,50,,2207,163,62,,0000-2400,1234567,104,,858,,, +1053,G,en,TalkSPORT,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,1,,596,258,63,,0000-2400,1234567,,,848,,, +1053,G,en,TalkSPORT,,Stockton-on-Tees (EN-DUR),54.588667,-1.349778,,1,,584,301,63,,0000-2400,1234567,,,850,,, +1053,E,es,COPE,,Castelln/La Obra (VAL-CS),40.020553,0.019333,,5,,1430,203,64,,0000-2400,1234567,99910,,843,,, +1053,G,en,TalkSPORT,,Exeter/Pearce's Hill (EN-DVN),50.683083,-3.514611,,1,,706,261,64,,0000-2400,1234567,,,847,,, +1053,RUS,ru,R Mariya,,Sankt-Peterburg/Sosnovka (SP),59.876111,30.470556,,10,,1714,50,64,,0000-2400,1234567,9989,,861,,, +1053,G,en,TalkSPORT,,Dundee/Greenside Scalp (SC-DDC),56.45,-2.923972,,1,,774,312,65,,0000-2400,1234567,,,846,,, +1053,G,en,TalkSPORT,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,1,,756,260,65,,0000-2400,1234567,,,849,,, +1053,G,en,TalkSPORT,,Rosemarkie (SC-HIL),57.633333,-4.074528,,1,,908,317,66,,0000-2400,1234567,,,844,,, +1053,G,en,TalkSPORT,,Londonderry/Sherriff's Mountain (NI-LDR),55.004667,-7.367806,,1,,963,295,67,,0000-2400,1234567,7,,851,,, +1053,IRN,fa,IRIB R Iran,,Khorramabad (lrn),33.450169,48.320878,,100,,3923,105,76,,0000-2400,1234567,,,1795,,, +1053,IRQ,,R As-Salam,,Baghdad (bgh),33.35,44.383333,,3,,3674,110,89,,0700-1700,1234567,,,10500013,,, +1053,ETH,,R Oromia,,Nekemte (orm),9.1038,36.548761,,100,,5505,139,92,,0400-0600,1234567,,,9600019,,, +1053,ETH,,R Oromia,,Nekemte (orm),9.1038,36.548761,,100,,5505,139,92,,0900-1100,1234567,,,9600019,,, +1053,ETH,,R Oromia,,Nekemte (orm),9.1038,36.548761,,100,,5505,139,92,,1600-1800,1234567,,,9600019,,, +1053,IRN,fa,IRIB R Zahedan,,Saravan (sib),27.352639,62.359194,,25,,5347,99,97,,0200-1730,1234567,,,10800001,,, +1053,RUS,ru,R Shanson,,Krasnoyarsk (KN),56.016667,92.8,,10,,5278,49,100,,2200-1800,1234567,,,47028,,, +1053,IND,,AIR North,,Leh (JK),34.123611,77.590278,,10,,5854,80,106,,0130-0630,1234567,,,49450,,, +1053,IND,,AIR North,,Leh (JK),34.123611,77.590278,,10,,5854,80,106,,0700-0930,1234567,,,49450,,, +1053,IND,,AIR North,,Leh (JK),34.123611,77.590278,,10,,5854,80,106,,1200-1700,1234567,,,49450,,, +1053,KRE,,Kuguge Sori Pangsong,,Haeju (hwn),38.019056,125.725639,,1000,123,8403,45,111,,0800-1400,1234567,,,49454,,, +1053,KRE,,Kuguge Sori Pangsong,,Haeju (hwn),38.019056,125.725639,,1000,123,8403,45,111,,2200-0400,1234567,,,49454,,, +1053,IND,en,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,1000-1100,1234567,,,49451,,, +1053,IND,si,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,0045-0115,1234567,,,49451,,, +1053,IND,si,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,1300-1500,1234567,,,49451,,, +1053,IND,ta,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,0000-0045,1234567,,,49451,,, +1053,IND,ta,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,0115-0330,1234567,,,49451,,, +1053,IND,ta,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,1100-1300,1234567,,,49451,,, +1053,IND,ta,All India R GOS,,Tuticorin (TN),8.815139,78.078083,,200,140,7987,99,114,,1500-1530,1234567,,,49451,,, +1053,BGD,,Bangladesh Betar,,Rangpur (rgp),25.784397,89.219122,,20,,7299,79,117,,0000-0400,1234567,,,49437,,, +1053,BGD,,Bangladesh Betar,,Rangpur (rgp),25.784397,89.219122,,20,,7299,79,117,,0800-1710,1234567,,,49437,,, +1053,CHN,zh,Liaoning RGD Gushi Guangbo,,Shenyang/SARFT033 (LN),41.625278,123.300556,,50,,7955,45,120,,,,,,36200229,,, +1053,CHN,,Hubei RGD Jingji Guangbo,,Qianjiang/Hucheng Cun (HB),30.416667,112.85,,50,,8400,59,124,,1940-1800,1234567,,,36200534,,, +1053,CHN,,Wenshan RGD,,Wenshan/YNTS703 (YN),23.335278,104.298889,,50,,8495,69,125,,0955-????,1234567,,,49445,,, +1053,CHN,zh,CNR 10 Laonian zhi Sheng,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,2025-1805,1234567,,,49438,,, +1053,CHN,zh,Yanbian RGD,,Yanji=Yeon'gil (JL),42.9,129.5,,20,,8122,40,125,,2130-1630,1234567,,,49448,,, +1053,CHN,zh,Cangzhou RGD Agricultural Economic,,Cangzhou (HB),38.3,116.85,,10,,7927,51,126,,,,,,36201300,,, +1053,CHN,,Luoyang JGD,,Luoyang (HE),34.660833,112.476111,,10,,8006,56,127,,,,,,49443,,, +1053,J,ja,JOAR CBC Chubu-Nippon Hoso,,Nagoya/Kuwana-Shi (chu-aic),35.044167,136.724167,,50,,9191,39,127,,0000-2400,1234567,9999,,49453,,, +1053,CHN,,Jinan RGD Xinwen,,Jinan/Daqiao (SD),36.791389,117.015556,,10,,8069,52,128,,,,,,49441,,, +1053,CHN,zh,Kaifeng RGD Xin Nongcun,,Kaifeng/Baita (HE),34.769444,114.3975,,10,,8105,55,128,,2225-0600,.....67,,,49442,,, +1053,CHN,zh,Kaifeng RGD Xin Nongcun,,Kaifeng/Baita (HE),34.769444,114.3975,,10,,8105,55,128,,2225-1420,12345..,,,49442,,, +1053,CHN,zh,Jiangsu RGD Wenyi Guangbo,,Nanjing/Gulizhen (JS),31.862533,118.671722,,10,,8601,54,132,,2000-1600,1234567,,,49444,,, +1053,THA,th,Mor. Thor. Bor. Saam-Sip-Song,,Lampang/Fort Surasak Montri (lpg),18.293333,99.516667,,10,,8620,76,132,,,,,,49462,,, +1053,THA,th,Mor. Thor. Bor. Sip-Et 11,,Bangkok/145 Rama V Road (bmp),13.785167,100.524111,,10,,9079,78,134,,0000-2400,1234567,,,49461,,, +1053,CHN,,Zhuozhou RGD,,Zhuozhou (HB),39.483333,115.966667,,1,,7776,51,135,,,,,,36200530,,, +1053,CHN,,Zhumadian JGD,,Zhumadian (HE),32.915,114.021389,,1,,8247,56,139,,,,,,36200531,,, +1053,CHN,zh,CNR 1,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,2025-1805,1234567,,,36200535,,, +1053,CHN,,Hefei RGD Jiaotong,,Hefei/Motancun (AH),31.794111,117.379889,,1,,8536,55,142,,0000-2400,1234567,,,49440,,, +1053,CHN,,Yueyang RGD News,,Yueyang (HN),29.133333,113.116667,,1,,8529,59,142,,,,,,36200533,,, +1053,KOR,,Bubble Jammer,,multiple tx,35.7,127.65,,1,,8713,45,143,,,,,,34600008,,, +1053,PHL,,DYSA-AM R San Agustin,,Iloilo City (ilo),10.716667,122.566667,,5,,10769,63,143,,2100-1500,1234567,,,49458,,, +1053,INS,id,RRI Pro-1,,Jayapura (PA-jyp),-2.584122,140.686861,,10,,13081,54,147,,2000-1100,1234567,,,49452,,, +1053,PHL,,DXKD-AM Radyo Ronda,,Dipolog City (zdn),8.583333,123.35,,1,,11014,63,150,,,,,,49457,,, +1053,AUS,,2CA,,Canberra/Mitchell (ACT),-35.220028,149.148806,,5,,16535,72,162,,0000-2400,1234567,,,49436,,, +1053,AUS,it,Rete Italia,,Brisbane/Tingalpa (QLD),-27.463111,153.123056,,0.5,,16127,58,170,,,,9980,,49435,,, +1053,NZL,,2YP Newstalk ZB,,New Plymouth/Bell Block (TKI),-39.033111,174.131556,,2,,18280,38,171,,0000-2400,1234567,,,49456,,, +1055,BLR,,HN,b,Khojniki (GO),51.854167,29.958333,,0.025,,1606,82,89,,,,,,85851,,, +1055,RUS,,IN,b,Sukhotino,54.604167,37.291667,,0.025,,2051,70,93,,,,8,L394 U410 30.0s,IDx2 + 22 gap,85852,, +1060,UKR,,NM,b,Nemyriv,48.979167,28.875,,0.025,,1618,93,89,,,,0,L1035 U1030 ,IDx2 + 20 gap,85853,, +1060,USA,,WQOM,,Natick (DC) (MA),42.288056,-71.431944,,40,,5692,292,98,,,,,,20016213,,, +1060,USA,en,KYW,i,Philadelphia/Joshua Road (PA),40.103333,-75.248889,,50,,6093,292,101,,,,0,,39878,,, +1060,USA,en,WILB,,Canton (OH),40.834167,-81.43,,15,,6422,297,109,,1200-2400,1234567,,,41748,,, +1060,USA,en,WQOM,,Natick (N) (MA),42.247222,-71.425278,,2.5,,5695,292,110,,,,998,,40865,,, +1060,USA,en,WKNG,,Tallapoosa (GA),33.735,-85.252222,,50,,7222,293,112,,1200-2400,1234567,,,42048,,, +1060,CAN,en,CKMX,,Calgary (AB),50.900556,-113.875,,50,,7266,323,113,,,,10,,36346,,, +1060,USA,,KRCN,,Longmont (D) (CO),40.280833,-104.940278,,50,,7800,311,118,,,,,,20016067,,, +1060,USA,,WHFB,,Benton Harbor-St. Jo (C) (MI),42.078889,-86.466944,,2.5,,6627,301,119,,,,,,20016074,,, +1060,USA,es,WXNC,,Monroe (NC),34.987778,-80.518056,,4,,6822,291,119,,1200-2400,1234567,,,40914,,, +1060,CUB,es,CMGW R 26,,Jovellanos (ma),22.802833,-81.169097,,25,,7866,283,122,,,,9997,,31600018,,, +1060,USA,,WCOK,,Sparta (NC),36.481944,-81.093056,,1.1,,6740,293,124,,,,,,41058,,, +1060,USA,en,WIXC,,Titusville (FL),28.663056,-80.921389,,5,,7361,287,124,,,,,,41823,,, +1060,USA,es,WGSB,,Mebane (NC),36.057778,-79.276667,,1,,6658,291,124,,1200-2400,1234567,,,41563,,, +1060,USA,,KFIL,,Preston (MN),43.680278,-92.141111,,1,,6825,305,125,,,,,,38392,,, +1060,B,pt,ZYJ597 Rdio Tapuyo,,Mossor (RN),-5.207222,-37.313889,,5,,7590,228,126,,,,,,36901777,,, +1060,USA,,WJKY,,Jamestown (KY),37.025278,-85.073056,,1,,6944,296,126,,,,,,41891,,, +1060,USA,en,WNPC,,Newport (TN),35.986111,-83.179444,,1,,6910,294,126,,,,,,42498,,, +1060,USA,,WFLE,,Flemingsburg (KY),38.450278,-83.735,,0.5,,6748,296,127,,,,,,41395,,, +1060,USA,en,KBGN,,Caldwell (ID),43.720278,-116.532778,,10,,8039,320,127,,1400-0200,1234567,9992,,38028,,, +1060,VEN,,YVLN R Guarico,,San Juan de los Morros (gco),9.816667,-67.316667,,10,,8039,263,127,,1030-0330,1234567,,,45368,,, +1060,B,pt,ZYL278 Rdio Grande BH 880,,Pedro Leopoldo (MG),-19.559958,-44.037,,50,,9342,227,128,,,,91,,36901769,,, +1060,USA,,WLNO,,New Orleans (LA),29.879444,-89.9975,,5,,7840,294,128,,,,999,,42197,,, +1060,USA,,KGFX,,Pierre (SD),44.286667,-100.338333,,1,,7215,311,129,,,,,,38474,,, +1060,USA,,KIJN,,Farwell (TX),34.387222,-103.030833,,10,,8219,306,129,,,,,,38599,,, +1060,B,pt,ZYJ495 Rdio Cano Nova,,Nova Iguau (RJ),-22.632528,-43.392544,,30,,9611,225,131,,,,,,36901767,,, +1060,USA,,WRHL,,Rochelle (IL),41.923333,-89.058333,,0.25,,6791,302,131,,,,,,42851,,, +1060,CLM,es,HJFJ RCN Caldas,,Manizales (cal),5.033333,-75.466667,,15,,9012,267,132,,,,6,,37435,,, +1060,DOM,,HIAJ R Amanecer,,San Pedro de Macors (pms),18.466667,-69.866667,,1,,7468,271,132,,,,4,,52239,,, +1060,DOM,es,HIXF R Azua,,Azua de Compostela (azu),18.461778,-70.732669,,1,,7527,272,132,,1000-0200,1234567,,,52238,,, +1060,GUF,,Guyane 1re,,Saint-Laurent-du-Maroni (973),5.5,-54.033333,,1,,7543,249,132,,0000-2400,1234567,,,51730,,, +1060,MEX,es,XEEP-AM R Educacin,,Mxico D.F/Ejrcito de Oriente (dif),19.363983,-99.027142,,20,,9322,294,132,,,,0,,43970,,, +1060,VEN,,YVOE R Noticias AM,,San Cristbal (tch),7.666667,-72.166667,,10,,8556,266,132,,,,,,45405,,, +1060,CLM,es,HJLY R Delfin,,Riohacha (lag),11.566667,-72.816667,,5,,8261,269,133,,,,11,,2215,,, +1060,CLM,es,HJMV R Furatena,,Chiquinquira (boy),5.766667,-73.816667,,10,,8835,266,133,,,,,,37575,,, +1060,CLM,es,HJOV,,Neiva (hui),2.933333,-75.333333,,15,,9187,265,133,,,,,,35901507,,, +1060,EQA,,HCAK2,,Guayaquil (gua),-2.2,-79.9,,25,,9949,266,133,,,,,,36846,,, +1060,PTR,xx,WCGB,,Juana Diaz (PR),17.991111,-66.475556,,0.5,,7277,268,133,,0900-0300,1234567,,,40983,,, +1060,USA,es,KXPL,,El Paso (TX),31.811389,-106.531389,,10,,8643,307,133,,1400-0200,1234567,,,39816,,, +1060,CHL,es,CB106 R.Santa Maria de Guadalupe,,Santiago/Calera de Tango (RM),-33.583328,-70.800997,,100,,12105,239,134,,1000-0500,1234567,,,35722,,, +1060,GTM,,TGT R Favorita,,Ciudad de Guatemala (gut),14.666667,-90.466667,,10,,9185,284,134,,1100-0600,1234567,,,40507,,, +1060,NCG,,YNJJ R Juvenil,,Managua (mng),12.15,-86.316667,,10,,9128,280,134,,,,,,45197,,, +1060,USA,en,KBFL,,Springfield (MO),37.208056,-93.297222,,0.5,,7422,301,134,,,,,,39530,,, +1060,B,pt,ZYH520 Rdio Clube de Itapicuru,,Itapicuru (BA),-11.3,-38.216667,,2.5,,8239,226,135,,,,93,,36901768,,, +1060,USA,en,KKVV,,Las Vegas (NV),36.156111,-115.256667,,5,,8690,315,136,,,,,,38763,,, +1060,USA,es,KRUZ,,Van Buren (AR),35.4275,-94.301389,,0.5,,7631,301,136,,,,,,20016028,,, +1060,DOM,,HIRV R Mar,,San Pedro de Macors (pms),18.466667,-69.266667,,0.25,,7427,271,137,,0900-0300,1234567,,,37295,,, +1060,USA,,KFIT,,Lockhart (TX),30.320278,-97.649722,,2,,8268,300,137,,,,,,38394,,, +1060,B,pt,ZYJ246 Evangelizar AM,,Curitiba (PR),-25.356944,-49.05,,10,,10156,228,138,,,,,,36901765,,, +1060,BOL,,CP57 R Eco Loyola,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,1100-0100,1234567,,,36706,,, +1060,VEN,,unid, probably VEN,,,6.5,-66.5,,1,,8275,260,140,,,,28,,2180,, +1060,CLM,es,HJYX,,Sincelejo (suc),9.3,-75.4,,1,,8634,269,142,,,,,,35901506,,, +1060,CLM,es,HJMG R Litoral Caracol,,Turbo (ant),8.116667,-76.566667,,1,,8817,269,143,,,,3,,37565,,, +1060,PNR,es,HOJ60 La Voz de Panam,,Ciudad de Panam/Orillac (pnm),9.024389,-79.515786,,1,,8939,272,143,,1100-0300,1234567,,,37706,,, +1060,CTR,,TILX R Columbia,,Liberia (gnc),10.616667,-85.416667,,1,,9202,278,144,,,,,,52151,,, +1060,CTR,,TILX R Columbia,,San Isidro del General (sjs),9.366667,-83.7,,1,,9194,276,144,,,,,,52150,,, +1060,HND,,HRVW,,Tegucigalpa (fmz),14.083333,-87.016667,,1,,9007,281,144,,,,,,37869,,, +1060,NCG,,La Voz del Atlntico Sur,,Bluefields (ats),12,-83.75,,1,,8968,278,144,,,,,,52208,,, +1060,USA,,KRCN,,Longmont (N) (CO),40.191111,-105.126389,,0.11,,7817,311,145,,,,9998,,39225,,, +1060,HWA,en,KIPA,,Hilo (HI),19.696667,-155.051389,,5,,11830,342,146,,0000-2400,1234567,7,,38529,,, +1060,PRU,,OBU5Q,,Andahuaylas/Cerro San Jose (apu),-13.661722,-73.385897,,2,,10522,254,146,,,,,,37000094,,, +1060,USA,en,KDUS,,Tempe (AZ),33.361944,-111.9675,,0.5,,8788,312,146,,,,9985,,38297,,, +1060,BOL,,R Noticias,,Oruro (oru),-17.966667,-67.116667,,1.5,,10504,246,147,,0200-0600,1234567,,,51988,,, +1060,BOL,,R Noticias,,Oruro (oru),-17.966667,-67.116667,,1.5,,10504,246,147,,1000-2200,1234567,,,51988,,, +1060,EQA,,HCAG6,,Saquisili (cot),-0.8,-78.666667,,0.76,,9742,266,147,,,,,,36841,,, +1060,USA,,KDYL,,South Salt Lake (UT),40.535556,-112.077222,,0.149,,8131,316,147,,,,,,38304,,, +1060,USA,,KNLV,,Ord (NE),41.571389,-98.9225,,0.023,,7371,308,147,,,,,,39000,,, +1060,B,pt,ZYJ830 Rdio Capital,,Florianpolis (SC),-27.491111,-48.528056,,1,,10335,227,148,,,,,,36901761,,, +1060,PRG,,ZP13 R Boqueron,,Alberdi (neb),-26.183333,-58.116667,,1,,10717,235,149,,1000-0300,1234567,5,,45508,,, +1060,PRU,,OCY4D R Exito,,Lima (lim),-12.183333,-77.033333,,1,,10633,257,149,,,,,,40440,,, +1060,BOL,,CP181 R LV de la Frontera,,Puerto Surez (scz),-18.972222,-57.8,,0.5,,10032,238,150,,0900-0230,.....6.,,,36671,,, +1060,BOL,,CP181 R LV de la Frontera,,Puerto Surez (scz),-18.972222,-57.8,,0.5,,10032,238,150,,0900-0300,12345..,,,36671,,, +1060,BOL,,CP181 R LV de la Frontera,,Puerto Surez (scz),-18.972222,-57.8,,0.5,,10032,238,150,,0900-2300,......7,,,36671,,, +1060,USA,,WKMQ,,Tupelo (MS),34.255,-88.69,,0.012,,7392,296,150,,,,,,42045,,, +1060,B,pt,ZYN604 Rdio Imaculada Conceio,,Dourados (MS),-22.196847,-54.841111,,0.5,,10165,234,151,,,,,,36901772,,, +1060,ARG,,R Restauracin,,Llavallol (df),-34.783333,-58.433333,,1,,11524,230,152,,,,27,,1973,,, +1060,B,pt,ZYK307 Rdio Cristal,,Soledade/Morro da Cruz (RS),-28.796111,-52.507222,,0.5,,10660,229,152,,,,,,36901763,,, +1060,B,pt,ZYK533 Rdio Educadora,,Piracicaba/Rua Anita Garibaldi 357 (SP),-22.704667,-47.670247,,0.25,,9831,228,152,,,,,,36901759,,, +1060,B,pt,ZYL306 Rdio Itajub,,Itajub (MG),-22.432125,-45.465261,,0.25,,9693,227,152,,,,,,36901762,,, +1060,USA,,WHFB,,Benton Harbor-St (DN) (MI),42.078889,-86.466667,,0.0013,,6627,301,152,,,,,,41628,,, +1060,USA,en,WPIM383,,Clearwater (FL),27.910958,-82.697889,,0.01,,7539,287,152,,,,,,20010610,,, +1060,B,pt,ZYJ298 Rdio Colorado AM,,Colorado/Rua Santa Matilde (PR),-22.833056,-51.9575,,0.25,,10067,232,153,,,,,,36901773,,, +1060,B,pt,ZYK765 Rdio Universitria de Gara,,Gara (SP),-22.218172,-49.671867,,0.25,,9888,230,153,,,,,,36901774,,, +1060,USA,,WQMV,,Waverly (TN),36.0875,-87.855,,0.004,,7190,297,153,,,,,,42783,,, +1060,B,pt,ZYJ306 Rdio Educadora,,Francisco Beltro (PR),-26.053889,-53.0375,,0.25,,10429,231,154,,,,,,36901770,,, +1060,B,pt,ZYK302 Rdio So Luz,,So Luz Gonzaga (RS),-28.407778,-54.926944,,0.25,,10750,231,155,,,,,,36901764,,, +1060,USA,,WMCL,,McLeansboro (IL),38.104444,-88.563333,,0.002,,7069,299,155,,,,,,42291,,, +1060,B,pt,ZYK220 Rdio Camaqense,,Camaqu (RS),-30.855278,-51.809167,,0.25,,10819,227,156,,,,,,36901775,,, +1060,USA,en,KTNS,,Oakhurst (CA),37.296111,-119.606389,,0.023,,8784,319,159,,,,41,,39520,,, +1062,I,it,RAI R1,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,0500-2300,1234567,0,,866,,, +1062,I,it,RAI Sardegna,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,0620-0630,123456,0,,866,,, +1062,I,it,RAI Sardegna,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,1110-1130,123456,0,,866,,, +1062,I,it,RAI Sardegna,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,1140-1200,......7,0,,866,,, +1062,I,it,RAI Sardegna,,Cagliari/Decimoputzu (ca),39.337056,8.863444,,60,,1433,171,54,,1730-1800,1234567,0,,866,,, +1062,I,it,RAI Marche,,Ancona/Forte Montagnolo (an),43.594094,13.475006,,6,,1083,148,60,,0620-0630,123456,0,,864,,, +1062,I,it,RAI Marche,,Ancona/Forte Montagnolo (an),43.594094,13.475006,,6,,1083,148,60,,1110-1130,123456,0,,864,,, +1062,I,it,RAI Marche,,Ancona/Forte Montagnolo (an),43.594094,13.475006,,6,,1083,148,60,,1140-1200,......7,0,,864,,, +1062,I,it,RAI R1,,Ancona/Forte Montagnolo (an),43.594094,13.475006,,6,,1083,148,60,,0000-2400,1234567,0,,864,,, +1062,I,it,RAI R1,,Catania/Coda di Volpe (ct),37.384722,15.054439,,20,,1771,154,62,,0000-2400,1234567,,,865,,, +1062,I,it,RAI Sicilia,,Catania/Coda di Volpe (ct),37.384722,15.054439,,20,,1771,154,62,,0620-0655,1234567,,,865,,, +1062,CZE,cs,Country R,,Praha/Zbraslav (PR),49.948181,14.368722,,1,,606,110,63,,0000-2400,1234567,9990,,862,,, +1062,POL,pl,R AM,,Skarżysko-Kamienna/Komin EC (SK),51.107778,20.879722,,0.8,,1004,91,68,,0000-2400,1234567,,,6400031,,, +1062,TUR,ku,TRT 6 Radyo Sese,,Diyarbakir/Cinar (gda-diy),37.819625,40.318347,,100,,3064,108,68,,0400-1500,1234567,1,,873,,, +1062,POL,pl,Twoje R Cmolas,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,0430-0530,123456,,,869,,, +1062,POL,pl,Twoje R Cmolas,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1100-1300,......7,,,869,,, +1062,POL,pl,Twoje R Cmolas,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1530-1630,123456,,,869,,, +1062,POL,pl,Twoje R Puławy,,Puławy/miasto (LU),51.423611,21.974167,,0.8,,1072,88,69,,0600-0700,1234567,,,870,,, +1062,POL,pl,Twoje R Puławy,,Puławy/miasto (LU),51.423611,21.974167,,0.8,,1072,88,69,,1600-1700,1234567,,,870,,, +1062,POL,pl,Twoje R,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,0530-1530,123456,,,869,,, +1062,POL,pl,Twoje R,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1300-0430,......7,,,869,,, +1062,POL,pl,Twoje R,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1630-0430,12345..,,,869,,, +1062,POL,pl,Twoje R,,Kolbuszowa/Cmolas (PK),50.287778,21.783611,,0.8,,1088,95,69,,1630-1100,.....6.,,,869,,, +1062,POL,pl,Twoje R,,Puławy/miasto (LU),51.423611,21.974167,,0.8,,1072,88,69,,0700-1600,1234567,,,870,,, +1062,POL,pl,Twoje R,,Puławy/miasto (LU),51.423611,21.974167,,0.8,,1072,88,69,,1700-0600,1234567,,,870,,, +1062,SRB,sr,R Beograd 1,,Novi Pazar (Srb-rsk),43.13225,20.499447,,1,,1448,128,71,,0000-2400,1234567,,,871,,, +1062,POL,pl,R AM,,Jarosław/Komin ZM Sokołow (PK),50.010833,22.665,,0.5,,1157,95,72,,0000-2400,1234567,,,6400017,,, +1062,IRN,fa,IRIB R Kerman,,Kerman (krm),30.151506,57.046722,,50,,4764,101,88,,0000-2400,1234567,2,,1796,,, +1062,IND,,AIR Northeast,,Pasighat (AR),28.03,95.342222,,10,,7517,73,122,,0025-0430,1234567,,,49471,,, +1062,IND,,AIR Northeast,,Pasighat (AR),28.03,95.342222,,10,,7517,73,122,,0630-0930,1234567,,,49471,,, +1062,IND,,AIR Northeast,,Pasighat (AR),28.03,95.342222,,10,,7517,73,122,,1030-1630,1234567,,,49471,,, +1062,KOR,,HLKQ KBS 1 R,,Cheongju (ccb),36.719444,127.461667,,50,,8608,45,125,,0000-2400,1234567,,,49499,,, +1062,CHN,zh,Zhujiang JGD Pearl R,,Guangzhou/SARFT522 (GD),23.407494,113.240722,,50,,9046,63,127,,0000-2400,1234567,,,49469,,, +1062,CHN,zh,Zhujiang JGD Pearl R,,Zhuhai/GDTS909 (GD),22.38255,113.557286,,50,,9157,63,127,,0000-2400,1234567,,,36200006,,, +1062,PHL,,DZEC-AM,,Obando (bul),14.7075,120.936944,,40,,10302,62,132,,2000-1600,1234567,,,49503,,, +1062,THA,th,Thor. Or. 09,,Udon Thani/Thahan Road (udt),17.386528,102.803333,,10,,8916,74,133,,????-1500,1234567,,,49508,,, +1062,THA,,Sor. Wor. Thor. (R Thailand),,Phuket (puk),7.91,98.389444,,10,,9449,84,135,,2200-1700,1234567,,,49507,,, +1062,TWN,,BCC Local,,Taichung (TC),24.054139,120.681086,,10,,9426,57,135,,0000-2400,1234567,,,49511,,, +1062,CHN,,Qitaihe RGD,,Qitaihe (HL),45.779167,131.041944,,1,,7918,37,136,,,,,,49470,,, +1062,TWN,,Min Li Kuangpo Tientai,,Pingtung/Linluo (PT),22.633889,120.545,,5,,9549,58,139,,,,,,49510,,, +1062,INS,id,R Sangkakala,,Surabaya (JI-ksu),-7.295278,112.761111,,10,,11761,81,143,,2100-1705,1234567,0,,49481,,, +1062,J,,JODM IBC, Iwate Hoso,,Kamaishi (toh-iwa),39.266667,141.9,,1,,8981,33,144,,0000-2400,1234567,,,49485,, +1062,PHL,,DXKI-AM FEBC,,Koronadal=Marbel (sco),6.5,124.833333,,5,,11298,63,144,,2020-0300,1234567,,,49502,,, +1062,TWN,,Cheng Sheng BC,,Yilan (YL),24.753319,121.735689,,1,,9421,56,145,,2055-1800,1234567,,,49509,,, +1062,INS,id,PM3CES R TPI,,Perbaungan (SU-del),3.566667,98.95,,1,,9868,86,147,,,,,,49479,,, +1062,J,,IBC Iwate Hoso,,Tanohata (toh-iwa),39.933333,141.933333,,0.3,,8916,33,149,,0000-2400,1234567,,,49495,,, +1062,INS,id,R Suara PGRI,,Palembang (SS-pal),-2.916667,104.75,,1,,10832,85,150,,,,,,35400137,,, +1062,INS,id,PM4PKD R PTDI Unisa 205,,Semarang (JT-kse),-6.954167,110.459722,,1,,11575,83,152,,,,,,49480,,, +1062,INS,id,R Aji Satria,,Ajibarang (JT-ban),-7.416667,109.066667,,1,,11521,85,152,,,,,,35400052,,, +1062,J,,JOXS STV, Sapporo TV Hoso,,Nemuro (hok),43.35,145.566667,,0.1,,8699,29,153,,0000-2400,1234567,,,49491,, +1062,J,,RAB, Aomori Hoso,,Noheji (toh-aom),40.866667,141.116667,,0.1,,8792,33,153,,0000-2400,1234567,,,49492,, +1062,J,,BSN Niigata Hoso,,Kashiwazaki (chu-nii),37.366667,138.55,,0.1,,9039,37,154,,,,,,49488,,, +1062,J,,BSN Niigata Hoso,,Tokamachi (chu-nii),37.116667,138.733333,,0.1,,9071,37,154,,,,,,49496,,, +1062,J,,CBC Chubu-Nippon Hoso,,Gero (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,0000-2400,1234567,,,49483,,, +1062,J,,CBC Chubu-Nippon Hoso,,Kamioka (chu-gif),36.333333,137.316667,,0.1,,9089,38,154,,0000-2400,1234567,,,49486,,, +1062,J,,JODE BSN Niigata Hoso,,Nagaoka (chu-nii),37.416667,138.833333,,0.1,,9045,36,154,,0000-1500,......7,,,49490,,, +1062,J,,JODE BSN Niigata Hoso,,Nagaoka (chu-nii),37.416667,138.833333,,0.1,,9045,36,154,,0000-2400,123456,,,49490,,, +1062,J,,JODE BSN Niigata Hoso,,Nagaoka (chu-nii),37.416667,138.833333,,0.1,,9045,36,154,,2000-2400,......7,,,49490,,, +1062,J,,JODL IBC, Iwate Hoso,,Maesawa (toh-iwa),39.05,141.116667,,0.1,,8973,34,154,,0000-2400,1234567,,,49489,, +1062,J,,JOFE RKB Mainichi Hoso,,Omuta (kyu-fuk),33.033333,130.433333,,0.1,,9099,45,154,,0000-2400,1234567,,,49493,,, +1062,J,,JOSL SBC, Shinetsu Hoso,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,0000-2400,1234567,,,49497,, +1062,J,,JOXM CRT, Tochigi Hoso,,Ashikaga (kan-toc),36.3,139.5,,0.1,,9183,36,154,,0000-2400,1234567,,,49482,, +1062,J,,NBC, Nagasaki Hoso,,Hirado (kyu-nag),33.383333,129.55,,0.1,,9023,45,154,,0000-2400,1234567,,,49484,, +1062,J,,RKB, RKB Mainichi Hoso,,Yukuhashi (kyu-fuk),33.733333,131.016667,,0.1,,9060,44,154,,0000-2400,1234567,,,49498,, +1062,INS,id,RKPDT2 Tasikmalaya,,Tasikmalaya (JB-tas),-7.333333,108.2,,0.5,,11455,85,155,,,,,,35400053,,, +1062,J,,Tokai Hoso,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,0000-2400,1234567,,,49494,,, +1062,AUS,,4TI ABC Far North QLD,,Torres Strait/Thursday Island (QLD),-10.580306,142.2085,,2,,13931,57,157,,0000-2400,1234567,,,49468,,, +1062,INS,id,R.Cendrawasih Terminal Dangdut Batavia,,Jakarta (JK),-6.183333,106.833333,,0.25,,11261,86,157,,2200-1530,1234567,88,,49474,,, +1062,INS,id,R.Swara Lembah Baliem,,Wamena (PA-jyw),-3.916667,138.733333,,0.5,,13099,57,160,,,,87,,35400054,,, +1062,AUS,en,5MV ABC Riverland,,Renmark/Loxton (Berri) (SA),-34.265356,140.614089,,2,,15896,80,163,,0000-2400,1234567,,,49467,,, +1062,NZL,,R Sport,,Wanganui/Kaitoke (MWT),-39.981944,175.0825,,1,,18412,37,175,,0000-2400,1234567,,,49501,,, +1064,RUS,,L,b,Klin (MO),56.354167,36.708333,,0.025,,2007,64,93,,,,,15.0s,IDx2 + 10 gap,85854,, +1064,RUS,,P,b,Klin (MO),56.354167,36.708333,,0.025,,2007,64,93,,,,,,86812,,, +1065,BLR,,U,b,Vitsebsk/Vostochny (VI),55.145833,30.375,,0.025,,1607,68,89,,,,,,85857,,, +1065,BLR,,W,b,Vitsebsk/Vostochny (VI),55.104167,30.291667,,0.025,,1602,69,89,,,,,,85858,,, +1065,UKR,,HE,b,Kherson / Chernobayevka (KE),46.6875,32.541667,,0.025,,1972,97,93,,,,,,85856,,, +1065,RUS,,D,b,Mozdok (SO),43.770833,44.625,,0.025,,2954,93,103,,,,,15.0s,IDx2 + 11 gap,85855,, +1070,USA,en,WTWK,,Plattsburgh (NY),44.603889,-73.455,,5,,5656,295,107,,,,992,,43237,,, +1070,CAN,en,CHOK,,Sarnia (ON),42.891667,-82.322222,,10,,6319,299,110,,,,987,,36070,,, +1070,USA,,WSCP,,Sandy Creek-Pulaski (NY),43.605278,-76.13,,2.5,,5892,296,112,,,,13,,42967,,, +1070,USA,en,WNCT,,Greenville (NC),35.602222,-77.426389,,10,,6575,290,113,,,,,,42446,,, +1070,USA,en,WBKW,,Beckley (WV),37.755,-81.236667,,10,,6649,294,114,,1200-2400,1234567,,,41822,,, +1070,USA,,KVKK,,Verndale (D) (MN),46.395278,-94.965,,10,,6760,309,115,,,,,,20012580,,, +1070,USA,,WINA,,Charlottesville (VA),38.089444,-78.503889,,5,,6451,292,115,,,,,,41764,,, +1070,USA,en,WFNI,,Indianapolis (IN),39.955833,-86.358333,,10,,6788,299,115,,,,,,41715,,, +1070,USA,,WTSO,,Madison (WI),42.995833,-89.313889,,5,,6720,303,117,,,,,,43218,,, +1070,USA,,KVKK,,Verndale (N) (MN),46.395833,-94.964444,,5,,6760,309,118,,,,,,39633,,, +1070,USA,,WKOK,,Sunbury (PA),40.881667,-76.819722,,1,,6134,294,118,,,,,,42053,,, +1070,USA,en,WFRF,,Tallahassee (FL),30.509444,-84.335278,,10,,7429,290,121,,1200-2400,1234567,,,41433,,, +1070,USA,,WKMB,,Stirling (NJ),40.676389,-74.476667,,0.25,,6002,292,123,,,,,,42041,,, +1070,USA,en,WAPI,,Birmingham (AL),33.551944,-86.911111,,5,,7340,294,123,,,,997,,40735,,, +1070,CUB,es,R Trinchera,,Guantnamo/CTOM1 (gu),20.1419,-75.254311,,10,,7693,276,124,,,,0,,2255,,, +1070,USA,,WDIA,,Memphis (TN),35.268056,-90.0175,,5,,7389,298,124,,,,9982,,41160,,, +1070,USA,,WFLI,,Lookout Mountain (TN),35.045,-85.362222,,2.5,,7122,294,124,,,,,,41397,,, +1070,USA,,WGOS,,High Point (NC),35.916111,-80.016667,,1,,6716,292,124,,,,,,41549,,, +1070,USA,es,WCSZ,,Sans Souci (SC),34.92,-82.456944,,1.5,,6950,292,125,,,,,,41093,,, +1070,VEN,,Contacto 1070,,Ospino (ptg),9.3,-69.45,,25,,8229,265,125,,1000-0400,1234567,,,51682,,, +1070,CAN,,CFAX,,Victoria (BC),48.396944,-123.306944,,10,,7868,327,126,,,,9947,,35934,,, +1070,PTR,,WMIA,,Arecibo (PR),18.459167,-66.755556,,2.5,,7256,269,126,,0925-0200,......7,999,,42324,,, +1070,PTR,,WMIA,,Arecibo (PR),18.459167,-66.755556,,2.5,,7256,269,126,,0925-0400,123456,999,,42324,,, +1070,USA,en,KNX,i,Los Angeles/El Nido (CA),33.859722,-118.348889,,50,,9055,316,127,,,,6,,39038,,, +1070,CUB,es,R Guam,,Guane (pr),22.197833,-84.124033,,10,,8114,284,128,,,,,,36448,,, +1070,USA,,KHMO,,Hannibal (MO),39.629444,-91.375833,,1,,7110,302,128,,,,,,38547,,, +1070,CLM,es,HJAH Emisoras Atlntico,,Barranquilla (atl),10.916667,-74.766667,,20,,8451,270,129,,,,998,,37324,,, +1070,CLM,es,HJCG R Santa F,,Bogot D. C. (bdc),4.583333,-74.066667,,30,,8956,265,129,,,,12,,37369,,, +1070,VEN,,Superior 1070 Biruaca,,San Fernando de Apure (apu),7.833333,-67.5,,10,,8225,262,129,,0930-0400,1234567,,,51683,,, +1070,VEN,,YVMA R Mundial Zulia,,Maracaibo (zul),10.682683,-71.690572,,10,,8261,267,130,,0000-2400,1234567,992,,45377,,, +1070,B,pt,ZYI673 Rdio Difusora Cajazeiras,,Cajazeiras (PB),-6.886847,-38.545383,,2.5,,7819,228,131,,,,,,36901785,,, +1070,USA,en,KNTH,,Houston (TX),29.9925,-95.473056,,5,,8166,298,132,,,,,,38721,,, +1070,CLM,es,HJVR R Red,,Popayn (cau),2.45,-75.616667,,15,,9249,265,133,,,,998,,35901512,,, +1070,USA,en,KLIO,,Wichita (KS),37.761389,-97.333056,,1,,7607,304,133,,,,65,,38436,,, +1070,B,pt,ZYJ483 Rdio Record,,Campos dos Goytacazes (RJ),-21.7945,-41.287706,,10,,9428,224,135,,,,,,36901791,,, +1070,CUB,es,unid, tent.,,,21.7,-79.5,,1,,7848,281,135,,,,95,,2022,, +1070,VEN,,YVPX R El Sol,,La Fria (tch),8.216667,-72.25,,5,,8514,266,135,,,,,,51681,,, +1070,DOM,es,HIBI R 1070,,San Francisco de Macors (dua),19.286819,-70.255561,,0.25,,7425,272,137,,0900-0400,1234567,,,37220,,, +1070,USA,,KWEL,,Midland (TX),31.962222,-102.068611,,2.5,,8380,304,137,,,,,,39703,,, +1070,PNR,es,R Mi Favorita,,El Coco (ccl),8.3925,-80.3525,,3,,9052,273,139,,1030-0300,1234567,,,52323,,, +1070,USA,en,WKII,,Solana (FL),26.893611,-82.050833,,0.233,,7581,286,139,,,,,,42016,,, +1070,GTM,,TGD LV de Occidente,,Quetzaltenango (qzt),14.816667,-91.516667,,3,,9242,285,140,,1200-0400,1234567,,,40489,,, +1070,USA,,KATQ,,Plentywood (MT),48.766944,-104.545278,,0.0495,,7043,316,140,,,,,,37982,,, +1070,USA,,KILR,,Estherville (IA),43.429167,-94.823056,,0.048,,6993,307,140,,,,,,38609,,, +1070,USA,en,WPDD643,,Burtonsville (MD),39.110986,-76.933583,,0.01,,6274,292,140,,,,,,20010615,,, +1070,USA,en,WPDD643,,Damascus (MD),39.294322,-77.211028,,0.01,,6277,293,140,,,,,,20010612,,, +1070,USA,en,WPDD643,,Laytonsville (MD),39.210992,-77.177694,,0.01,,6282,293,140,,,,,,20010613,,, +1070,USA,en,WPDD643,,Rockville (MD),39.110944,-77.0777,,0.01,,6283,292,140,,,,,,20010617,,, +1070,USA,en,WPDD643,,Silver Spring (MD),39.015389,-77.011031,,0.01,,6286,292,140,,,,,,20010614,,, +1070,USA,en,WPDD643,,Silver Spring/Cape May Road (MD),39.094325,-76.997472,,0.01,,6279,292,140,,,,,,20010611,,, +1070,USA,en,WPJY540,,Silver Spring (MD),39.062889,-76.96525,,0.01,,6279,292,140,,,,,,20010616,,, +1070,HND,,HRLP20,,Siguatepeque (cmy),14.566667,-87.766667,,2,,9015,282,141,,,,,,37785,,, +1070,USA,,KBCL,,Bossier City (LA),32.537222,-93.724444,,0.25,,7842,298,141,,,,,,38013,,, +1070,B,pt,ZYI427 Rdio Bandeirantes,,Vrzea Grande (MT),-15.636003,-56.184039,,2.5,,9628,239,142,,,,,,36901779,,, +1070,USA,,KOPY,,Alice (TX),27.7775,-98.081389,,1,,8517,298,142,,,,,,39096,,, +1070,HND,,HRFX,,Juticalpa (ola),14.216667,-86.2,,1,,8940,281,144,,,,,,37754,,, +1070,HND,,HRGR,,El Paraiso (elp),13.85,-86.55,,1,,8996,281,144,,,,,,37758,,, +1070,HND,,HRLE,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37775,,, +1070,NCG,,La Chontalea (FADES),,Santo Tomas (cht),12.066667,-85.083333,,1,,9053,279,144,,,,,,33700012,,, +1070,SLV,,YSAN,,Ahuachapn (ahp),13.916667,-89.833333,,1,,9209,283,144,,,,,,45261,,, +1070,ARG,es,LR1 R El Mundo,,Buenos Aires/San Martn (df),-34.541389,-58.598889,,5,,11511,230,145,,0000-2400,1234567,991,,39921,,, +1070,MEX,es,XESP-AM R Noticias,,San Pedro Tlaquepaque (jal),20.634222,-103.296725,,1,,9470,298,145,,,,,,44764,,, +1070,USA,,WEKT,,Elkton (KY),36.809167,-87.160556,,0.018,,7089,297,145,,,,,,41279,,, +1070,CAN,en,CBUU,,Clinton (BC),51.094444,-121.584722,,0.04,,7547,328,146,,,,,,20109143,,, +1070,EQA,,HCRS1,,Santo Domingo de los Colorados (pic),-0.25,-79.15,,1,,9726,266,146,,,,,,37110,,, +1070,B,pt,ZYK633 Rdio Presidente Prudente,,Presidente Prudente (SP),-22.122056,-51.388861,,1,,9969,232,147,,,,,,36901789,,, +1070,EQA,,HCRT5,,Cuenca (azu),-2.916667,-79,,1,,9951,265,147,,,,,,37115,,, +1070,MEX,es,XEEI-AM,,San Luis Potos (slp),22.152778,-100.973333,,0.5,,9192,297,147,,,,,,43963,,, +1070,EQA,,HCUP1,,Quito (pic),-0.166667,-78.466667,,0.5,,9673,266,149,,,,,,37153,,, +1070,MEX,es,XEIT-AM Exa,,Ciudad del Carmen (cam),18.6675,-91.816944,,0.25,,8923,288,149,,,,,,44182,,, +1070,USA,en,WNVY,,Cantonment (FL),30.579722,-87.288333,,0.028,,7611,293,149,,,,,,42532,,, +1070,B,,ZYI210,,Baixo Guandu (ES),-19.516667,-41.016667,,0.25,,9190,224,150,,,,,,45789,,, +1070,MEX,es,XEOBS-AM R Frmula,,Ciudad Obregn (son),27.492778,-109.945556,,0.25,,9225,307,150,,,,,,44476,,, +1070,B,pt,ZYL355 Patos AM,,Patos de Minas (MG),-18.625661,-46.473919,,0.25,,9375,229,151,,,,,,36901783,,, +1070,MEX,es,XEGY-AM R Lobo,,Tehuacn (pue),18.457097,-97.422083,,0.25,,9302,292,151,,,,,,44092,,, +1070,B,pt,ZYK603 Rdio Piratininga de Ja,,Ja/Chcara Bom Retiro (SP),-22.305833,-48.544444,,0.25,,9837,229,152,,,,,,36901794,,, +1070,B,pt,ZYK615 Rdio Metropolitana Paulista,,Mogi das Cruzes (SP),-23.532,-46.224931,,0.25,,9838,227,152,,,,985,,36901792,,, +1070,B,pt,ZYK758 Rdio Jornal,,Barretos (SP),-20.536661,-48.596922,,0.25,,9670,230,152,,,,,,36901781,,, +1070,B,pt,ZYL316 Rdio do Povo,,Muzambinho (MG),-21.376339,-46.519761,,0.25,,9644,228,152,,,,,,36901784,,, +1070,PRG,,ZP47,,Encarnacin (ita),-27.166667,-56.25,,0.5,,10706,233,152,,,,,,45542,,, +1070,MEX,es,XEAGS-AM Digital 1070,,Acapulco (gue),16.835278,-99.909167,,0.2,,9603,293,153,,,,,,43706,,, +1070,B,pt,ZYJ203 Rdio Unio AM 1070,,Unio da Vitria (PR),-26.203889,-51.051111,,0.25,,10340,229,154,,,,,,36901788,,, +1070,B,pt,ZYJ319 Rdio Super RG,,Guaraniau (PR),-25.091667,-52.875,,0.25,,10330,231,154,,,,,,36901790,,, +1070,B,pt,ZYJ747 Gralha Azul AM,,Urubici (SC),-27.995,-49.586111,,0.25,,10436,227,154,,,,,,36901782,,, +1070,B,pt,ZYK343 Rdio Metrpole,,Crissiumal (RS),-27.511944,-54.089444,,0.25,,10622,231,155,,,,,,36901780,,, +1070,B,pt,ZYK357 Rdio Serrana de Bento AM,,Bento Gonalves/Morro da Vindima (RS),-29.195278,-51.534167,,0.25,,10648,228,155,,,,,,36901787,,, +1070,PRG,,ZP51,,Puerto Triunfo Itap (ita),-26.75,-55.066667,,0.25,,10603,232,155,,,,,,45547,,, +1070,B,pt,ZYK218 Rdio Caapava AM,,Caapava do Sul (RS),-30.521389,-53.483333,,0.25,,10873,229,156,,,,,,36901786,,, +1071,G,en,TalkSPORT,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0000-2400,1234567,0,,877,,, +1071,G,en,TalkSPORT,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,1,,613,304,63,,0000-2400,1234567,0,,878,,, +1071,SYR,ar,Al Nour R,,Tartus/Amrit (tat),34.842769,35.905533,,100,,3022,118,67,,0000-2400,1234567,9996,,882,,, +1071,EGY,ar,ERTU Al-Kebar R,,Abu Za'bal (qlb),30.268794,31.363919,,100,,3171,130,69,,0300-1500,1234567,126,,876,,, +1071,EGY,ar,ERTU Nahr al-Nyl,,Abu Za'bal (qlb),30.268794,31.363919,,100,,3171,130,69,,1700-2300,1234567,126,,876,,, +1071,I,it,R Marina,,unknown (ve),45.433333,12.433333,,0.15,,863,147,74,,????-????,9999999,79,,4000036,,, +1071,IRN,fa,IRIB R Ma'aref,,Qom=Kum (qom),34.765931,50.882931,,100,,3992,101,77,,0000-2400,1234567,8,,879,,, +1071,GRC,el,unid,,unknown,38.4,24.65,,1,,2077,130,78,,,,,,3400055,,, +1071,ALG,ar,Chane 1,,Illizi (33),26.508333,8.4725,,5,,2852,176,79,,0000-2400,1234567,,,200007,,, +1071,ARS,ar,BSKSA Idha'atu-i Riyadh,,Bisha=Qal'at Bishah (asr),19.834222,42.616528,,50,,4757,125,88,,0300-2300,1234567,,,10600009,,, +1071,IND,bc,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,1500-1600,1234567,989,,32200048,,, +1071,IND,sd,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,0100-0200,1234567,989,,32200048,,, +1071,IND,sd,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,1230-1500,1234567,989,,32200048,,, +1071,IND,ur,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,0015-0100,1234567,989,,32200048,,, +1071,IND,ur,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,0200-1230,1234567,989,,32200048,,, +1071,IND,ur,All India R GOS,,Rajkot (GJ),22.501528,70.5185,,870,300,6299,96,91,,1600-1930,1234567,989,,32200048,,, +1071,CHN,ug,rmqi RGD,,rmqi/Hongguangshan (XJ),45.886389,87.602222,,100,,5648,63,94,,2350-1550,1234567,,,49524,,, +1071,IRQ,,R Babil,,Hillah (bbl),32.5,44.416667,,1,,3745,111,94,,,,,,880,,, +1071,YEM,ar,YGCRT Ta'izz R,,Ta'izz (taz),13.638053,44.120928,,30,,5430,128,97,,0300-2300,1234567,,,884,,, +1071,SSD,,Southern Sudan R,,Wau=Waw (wbg),7.685033,27.995417,,5,,5317,151,103,,,,,,47146,,, +1071,CHN,zh,Tianjin RGD Jingji Guangbo,,Yangliuqing (TJ),39.136539,117.025064,,50,,7862,50,119,,2200-1800,1234567,,,49523,,, +1071,CHN,,Baoji RGD,,Baoji/Xiamaying (SA),34.344167,107.231111,,10,,7729,60,124,,,,,,49519,,, +1071,BOT,,R Botswana,,Jwaneng (so),-24.615406,24.737211,,25,,8716,163,129,,0000-2400,1234567,,,2459,,, +1071,J,,JOFK NHK1,,Hiroshima (chg-hir),34.435833,132.47,,20,,9060,42,131,,0000-2400,1234567,,,49530,,, +1071,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Ningming (GX),22.120278,106.999167,,10,,8773,68,133,,,,,,36200203,,, +1071,CHN,,Hengyang RGD,,Hengyang (HN),26.883333,112.616667,,10,,8699,61,133,,,,,,49521,,, +1071,CHN,,Zhejiang RGD Dongting Jiu-Liu-Ba,,Hangzhou/Gouzhuang (ZJ),30.379444,120.092222,,10,,8814,54,133,,2200-1600,1234567,,,49520,,, +1071,THA,th,Neung Por. Nor.,,Tak (tak),16.883333,99.133333,,10,,8716,77,133,,,,,,49539,,, +1071,CHN,,Anshan JGD,,Anshan (LN),41.116667,122.966667,,2,,7985,45,134,,,,,,49518,,, +1071,J,ja,JOWM STV Sapporo TV Hoso,,Obihiro (hok),42.955833,143.196111,,5,,8658,31,136,,0000-2400,1234567,,,49531,,, +1071,CHN,,Suzhou RGD,,Suzhou (AH),33.633333,116.983333,,1,,8349,54,140,,,,,,36200529,,, +1071,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Napo (GX),23.733333,106.816667,,1,,8620,67,142,,2200-1600,1234567,,,49517,,, +1071,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Qinzhou/GXTS245 (GX),21.966667,108.616667,,1,,8888,67,143,,,,,,36200204,,, +1071,PHL,,DXKT-AM,,Davao City (dvs),7.05,125.583333,,5,,11292,62,144,,,,,,49535,,, +1071,TWN,,Tien Sheng Kuangpo Tientai,,Tainan (TN),22.942222,120.310756,,1,,9507,58,145,,2130-1825,123456,,,49540,,, +1071,TWN,,Tien Sheng Kuangpo Tientai,,Tainan (TN),22.942222,120.310756,,1,,9507,58,145,,2220-1555,......7,,,49540,,, +1071,INS,id,RSP-R Swara Pacitan,,Pacitan (JI-pac),-8.2,111.116667,,1,,11729,83,153,,,,,,35400056,,, +1071,AUS,,6WB R West,,Katanning (WA),-33.647222,117.499911,,2,,14278,98,158,,,,,,49514,,, +1071,AUS,,3EL Easymix,,Maryborough/Carisbrook (VIC),-37.043,143.817361,,5,,16318,80,161,,0000-2400,1234567,,,49516,,, +1071,AUS,en,4SB Heart 1071,,Kingaroy/Wooroolin (QLD),-26.400889,151.827083,,2,,15956,59,164,,0000-2400,1234567,9979,,49515,,, +1071,NZL,en,RNZ National,,Masterton/Waingawa (WGN),-40.964722,175.589167,,2.5,,18528,38,171,,0000-2400,1234567,,,49534,,, +1071,NZL,,LiveSPORT,,Ashburton/Winchmore (CAN),-43.804167,171.704167,,1,,18587,56,175,,,,,,49533,,, +1075,UKR,,TE,b,Ternopil (TE),49.520833,25.625,,0.025,,1376,94,87,,,,,L1020 U1070 ,IDx2,86813,, +1075,UKR,,TN,b,Ternopil (TE),49.520833,25.708333,,0.025,,1382,94,87,,,,,U1056 ,85859,,, +1075,BOL,,CP173 R Agricultura,,Portachuelo (scz),-17.35,-63.4,,0.5,,10218,244,151,,1000-0400,1234567,,,51989,,, +1080,E,es,SER,,Huesca/Estrecho Quinto (ARA-HU),42.146111,-0.427778,,5,,1221,208,62,,0000-2400,1234567,,,887,,, +1080,RUS,ru,R Mordovii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0310-0400,12345..,0,,895,,, +1080,RUS,ru,R Mordovii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0410-0500,12345..,0,,895,,, +1080,RUS,ru,R Rossii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0100-0310,12345..,0,,895,,, +1080,RUS,ru,R Rossii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0300-2100,.....67,0,,895,,, +1080,RUS,ru,R Rossii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0400-0410,12345..,0,,895,,, +1080,RUS,ru,R Rossii,,Kovylkino (MD),54.188056,44.103333,,100,,2494,70,62,,0500-2100,12345..,0,,895,,, +1080,E,es,SER,,Palma/Marratx (BAL-ML),39.63345,2.668189,,5,,1417,193,64,,0000-2400,1234567,999,,888,,, +1080,E,es,SER,,Granada (AND-GR),37.194917,-3.5845,,10,,1833,209,65,,0000-2400,1234567,,,886,,, +1080,E,es,Onda Cero,,Toledo/Mirador del Greco (CAM-TO),39.898011,-4.040314,,5,,1576,215,66,,0000-2400,1234567,998,,889,,, +1080,E,es,SER,,La Corua/Elvia (GAL-C),43.328122,-8.406278,,2,,1472,234,69,,0000-2400,1234567,,,885,,, +1080,ISR,ar,IBA Reshet Dalet (D),,Tel Aviv/Yavne (tav),31.902972,34.756972,,100,,3207,123,69,,0000-2400,1234567,9995,,814,,, +1080,IRN,ar,IRIB WS,,Bandar-e Mahshahr (kuz),30.612667,49.201667,,300,230,4207,108,74,,1630-0230,1234567,20,,891,,, +1080,EGY,ar,ERTU Al-Barnameg al-Aam,,Al-Minya=Menya (mny),28.057778,30.800194,,10,,3351,133,81,,0300-2400,1234567,,,1837,,, +1080,EGY,ar,ERTU Al-Barnameg al-Aam,,Al-Uqsur=Luxor (uqr),25.591417,32.561819,,10,,3676,133,84,,0300-2400,1234567,,,1838,,, +1080,RUS,,AR,b,Buzharovo,55.979167,36.791667,,0.025,,2012,66,93,,,,2,L1021 U1025 24.9s,IDx3,85861,, +1080,RUS,zh,Voice of Russia,,Angarsk/RV489 (IR),52.411361,103.682817,,250,195,6082,48,94,,1000-1400,1234567,,,46921,,, +1080,ARS,ar,BSKSA Idha'atu-i Jeddah,,Najran (njn),17.587511,44.061192,,20,,5050,125,95,,0300-2200,1234567,,,47083,,, +1080,PAK,,NBS News,,Lahore 2 (pjb),31.400833,74.154167,,50,,5830,85,98,,0200-0400,1234567,,,49572,,, +1080,PAK,,NBS News,,Lahore 2 (pjb),31.400833,74.154167,,50,,5830,85,98,,1300-1800,1234567,,,49572,,, +1080,PAK,,PBC Saut-ul Quran/NBS News,,Lahore 2 (pjb),31.400833,74.154167,,50,,5830,85,98,,1230-1705,1234567,,,49572,,, +1080,USA,,WTIC,i,Hartford (CT),41.7775,-72.805278,,50,,5816,292,98,,,,0,,43136,,, +1080,IND,,All India R GOS,D,Rajkot (GJ),22.501528,70.5185,,130,300,6299,96,99,,0015-0430,1234567,,,32200049,,, +1080,IND,,All India R GOS,D,Rajkot (GJ),22.501528,70.5185,,130,300,6299,96,99,,0830-1130,1234567,,,32200049,,, +1080,IND,,All India R GOS,D,Rajkot (GJ),22.501528,70.5185,,130,300,6299,96,99,,1230-1930,1234567,,,32200049,,, +1080,USA,,WWNL,,Pittsburgh (PA),40.604722,-79.960278,,50,,6349,296,104,,,,,,43412,,, +1080,ETH,,R Fana,,Addis Abeba (aab),9.018889,38.719722,,3,,5613,137,108,,0330-0530,1234567,,,46835,,, +1080,ETH,,R Fana,,Addis Abeba (aab),9.018889,38.719722,,3,,5613,137,108,,1500-2000,1234567,,,46835,,, +1080,KRE,,KCBS Chosun Jungang Pangsong,,Haeju (hwn),38.019056,125.725639,,1500,123,8403,45,109,,2000-1500,1234567,408,,49566,,, +1080,BGD,,Bangladesh Betar,,Rajshahi (rjs),24.365125,88.639956,,100,,7377,80,111,,0000-0400,1234567,,,49546,,, +1080,BGD,,Bangladesh Betar,,Rajshahi (rjs),24.365125,88.639956,,100,,7377,80,111,,0600-1710,1234567,,,49546,,, +1080,CHN,en,China R Int.,,Xuanwei/SARFT726 (YN),26.145111,104.0305,,600,185,8235,68,112,,1600-1800,1234567,,,49551,,, +1080,CHN,lo,China R Int.,,Xuanwei/SARFT726 (YN),26.145111,104.0305,,600,185,8235,68,112,,1430-1530,1234567,,,49551,,, +1080,CHN,th,China R Int.,,Xuanwei/SARFT726 (YN),26.145111,104.0305,,600,185,8235,68,112,,1130-1230,1234567,,,49551,,, +1080,CHN,th,China R Int.,,Xuanwei/SARFT726 (YN),26.145111,104.0305,,600,185,8235,68,112,,1330-1430,1234567,,,49551,,, +1080,USA,es,WFTD,,Marietta (GA),34.023333,-84.668056,,50,,7162,293,112,,1200-2400,1234567,,,41443,,, +1080,USA,,WKJK,,Louisville (D) (KY),38.308056,-85.829167,,10,,6888,297,116,,,,9862,,20016041,,, +1080,USA,en,WALD,,Johnsonville (SC),33.91,-79.669167,,9,,6853,290,116,,1200-2400,1234567,,,40692,,, +1080,USA,,WKGX,,Lenoir (NC),35.910556,-81.559722,,5,,6814,293,118,,,,,,42011,,, +1080,USA,,WUFO,,Amherst (NY),42.946111,-78.828611,,1,,6105,297,118,,,,,,43256,,, +1080,ALS,en,KOAN,,Anchorage (AK),61.12,-149.895278,,10,,7250,348,120,,0000-2400,1234567,999,,39566,,, +1080,HTI,,R Nationale,,Port-au-Prince/Sarthes (oue),18.566667,-72.283333,,20,,7624,273,120,,,,,,35653,,, +1080,USA,,WNWI,,Oak Lawn (IL),41.643333,-87.645833,,2.6,,6731,301,120,,,,,,42535,,, +1080,USA,en,KRLD,,Dallas (TX),32.890278,-96.645556,,50,,7986,301,120,,,,0,,39260,,, +1080,USA,,WOAP,,Owosso (MI),43.030833,-84.178056,,1,,6419,300,121,,,,,,42550,,, +1080,USA,en,WYHY,,Cannonsburg (KY),38.386111,-82.698056,,1.8,,6690,295,121,,,,125,,42585,,, +1080,USA,,WKAC,,Athens (AL),34.836944,-86.974444,,5,,7239,295,122,,,,,,41949,,, +1080,USA,,WWDR,,Murfreesboro (NC),36.44,-77.136111,,0.93,,6491,290,122,,,,,,43368,,, +1080,USA,,WKBY,,Chatham (VA),36.781667,-79.391389,,1,,6609,292,123,,,,,,41970,,, +1080,USA,en,WHIM,,Coral Gables (FL),25.748056,-80.546389,,10,,7578,284,123,,,,1,,43287,,, +1080,USA,,KYMN,,Northfield (D) (MN),44.486667,-93.105556,,1,,6814,307,125,,,,,,39858,,, +1080,VEN,,YVQJ R Barcelona,,Barcelona (azg),10.111792,-64.725722,,10,,7838,261,125,,,,996,,45428,,, +1080,USA,,WKJK,,Louisville (N) (KY),38.307778,-85.829167,,1,,6888,297,126,,,,,,42025,,, +1080,VEN,,YVNR R Venezuela,,Maracay (arg),10.1,-67.6,,10,,8033,264,127,,0000-2400,1234567,997,,45398,,, +1080,B,pt,ZYI549 Rdio Novo Tempo,,Belm (PA),-1.367739,-48.431633,,5,,7833,240,128,,,,,,36901809,,, +1080,CUB,es,R Cadena Habana,,Villa Mara (ch),23.1,-82.283333,,5,,7915,284,129,,,,15,,31600047,,, +1080,USA,,KFXX,,Portland (OR),45.558333,-122.4825,,9,,8110,325,129,,,,9989,,38446,,, +1080,USA,,KSLL,,Price (UT),39.561944,-110.776667,,10,,8157,314,129,,,,111,,39381,,, +1080,USA,,WRYT,,Edwardsville (IL),38.799444,-89.9,,0.5,,7091,300,131,,,,,,42942,,, +1080,CHN,,Xinjiang RGD,,unknown (XJ),34.95,104.5,,1,,7515,61,132,,,,,,49547,,, +1080,CLM,es,HJJS,,La Dorada (cal),5.5,-74.666667,,15,,8916,266,132,,,,,,37515,,, +1080,THA,th,Wor. Por. Thor. 10,,Chiang Rai/Fort Mengrai Maharat (cri),19.906117,99.813944,,10,,8500,75,132,,,,,,49580,,, +1080,USA,,KYMO,,East Prairie (MO),36.796944,-89.355278,,0.5,,7223,298,132,,,,,,39859,,, +1080,CHN,,Suzhou RGD,,Suzhou (JS),31.412778,120.693056,,10,,8752,52,133,,2020-1630,1234567,,,49553,,, +1080,CLM,es,HJAW,,Montera (cor),8.816667,-75.816667,,10,,8705,269,133,,,,,,37338,,, +1080,CLM,es,HJMH Meloda AM,,Floridablanca (sat),7.033333,-73.066667,,10,,8673,266,133,,,,,,37622,,, +1080,KOR,ko,HLAT MBC,,Yeosu/Sinwol (jen),34.730556,127.742222,,10,,8808,46,133,,0000-2400,1234567,,,49569,,, +1080,THA,th,Wor. Por. Thor. 9,,Nakhon Sawan/Fort Jiraprawat (nsn),15.670833,100.127778,,10,,8888,77,133,,2030-1700,1234567,,,49581,,, +1080,CLM,es,HJJF R Eco,,Cali (val),3.466667,-76.516667,,10,,9221,267,134,,,,927,,37506,,, +1080,CLM,es,HJKT R Autntica,,Villavicencio (met),4.2,-73.666667,,10,,8962,265,134,,,,955,,37533,,, +1080,SLV,es,YSME R CRET,,San Salvador (ssl),13.65,-89.2,,10,,9190,283,134,,,,96,,45271,,, +1080,USA,,KVNI,,Coeur D'Alene (ID),47.616389,-116.719722,,1,,7684,323,134,,,,,,39643,,, +1080,PTR,,WLEY,,Cayey (PR),18.115278,-66.141111,,0.25,,7243,268,135,,0000-2400,1234567,,,42158,,, +1080,USA,,KOAK,,Red Oak (IA),41.0175,-95.205,,0.25,,7213,305,135,,,,,,39044,,, +1080,EQA,,HCVH6,,Latacunga (cot),-0.916667,-78.566667,,10,,9745,265,136,,,,,,37167,,, +1080,KOR,,AFN Korea-Thunder AM,,Daegu/Camp Walker (dae),35.838611,128.587778,,5,,8745,44,136,,0000-2400,1234567,,,49567,,, +1080,THA,th,Wor. Por. Thor. 16,,Yala/35 Sukyang Road (yla),6.542222,101.281667,,10,,9765,82,136,,2300-1330,1234567,,,49582,,, +1080,USA,,KSCO,,Santa Cruz (CA),36.961944,-121.980833,,5,,8921,321,136,,,,16,,39331,,, +1080,B,pt,ZYH708 Rdio Capital,,Braslia (DF),-15.814344,-47.997075,,5,,9184,232,137,,,,,,36901810,,, +1080,CTR,,TIFC Faro del Caribe,,San Jos (sjs),9.916667,-84.066667,,5,,9171,277,137,,0000-2400,1234567,,,40577,,, +1080,EQA,,HCFD2 Sistema Dos,,Guayaquil (gua),-2.2,-79.9,,10,,9949,266,137,,,,13,,36934,,, +1080,B,pt,ZYI784 Rdio Jornal,,Caruaru (PE),-8.265883,-35.991575,,0.5,,7829,225,138,,,,,,36901811,,, +1080,CHN,,Shantou RGD News,,Shantou=Swatow (GD),23.401944,116.636344,,5,,9250,60,138,,2200-1600,1234567,,,49552,,, +1080,PHL,,DWIN-AM Radyo Agila (r:DZEC 1062),,Dagupan City (pgs),16.020278,120.328889,,10,,10145,62,138,,2200-1400,1234567,,,49575,,, +1080,PRU,,OBX1D R San Miguel,,Piura (piu),-5.2,-80.616667,,10,,10261,264,138,,,,,,40446,,, +1080,USA,,KNDK,,Langdon (ND),48.785833,-98.366111,,0.045,,6742,313,138,,,,,,38973,,, +1080,USA,en,WHOO,,Kissimmee (FL),28.341667,-81.340556,,0.19,,7414,287,138,,,,,,41678,,, +1080,B,pt,ZYK280 Universidade Rio Grande do Sul AM,,Guaba (RS),-30.055878,-51.334747,,10,,10720,227,139,,,,,,36901806,,, +1080,PRU,es,OAU4I R La Luz,,Lima (lim),-12.116667,-77.066667,,10,,10629,257,139,,,,996,,40306,,, +1080,B,pt,ZYH670 Rdio Cultura,,Quixad (CE),-4.957267,-39.027494,,0.25,,7654,230,140,,,,,,36901813,,, +1080,B,pt,ZYL232 Rdio Cultura,,Dores do Indai (MG),-19.480442,-45.593222,,2.5,,9413,228,141,,,,,,36901802,,, +1080,SLV,es,YSIM R CRET,,San Miguel/Hacienda Agua Fra (smg),13.508328,-88.1686,,1.5,,9134,282,142,,,,,,45272,,, +1080,ARG,es,LW4 R Orn/R Mara,,San Ramn de la Nueva Orn (sa),-23.130756,-64.2917,,5,,10796,241,143,,1000-0600,1234567,,,40262,,, +1080,CHN,,Zhejiang zhi Sheng,,Shengsi (ZJ),30.716667,122.45,,1,,8911,52,143,,,,,,36200527,,, +1080,CHN,,Zhejiang zhi Sheng,,Xiangshan (ZJ),29.8,120.35,,1,,8881,54,143,,2130-1605,1234567,,,49548,,, +1080,CLM,es,HJAX La 1080,,Medelln (ant),6.266667,-75.566667,,1,,8910,268,143,,,,7,,37404,,, +1080,HND,,HRID,,Tela (atl),15.766667,-87.5,,1,,8892,283,143,,,,,,37770,,, +1080,PHL,,DYBH-AM (r:666 DZRH-AM),,Bacolod City (noc),10.683333,122.966667,,5,,10796,62,143,,,,,,49573,,, +1080,PNR,es,HOJ24 R.Mundo Internacional,,Juan Daz (pnm),9.030522,-79.427858,,1,,8933,272,143,,0000-2400,1234567,,,37694,,, +1080,USA,,KGVY,,Green Valley (AZ),31.929167,-110.996389,,1,,8871,310,143,,,,,,38521,,, +1080,B,pt,ZYH470 Suba AM,,Feira de Santana (BA),-12.266667,-38.988056,,0.5,,8373,226,144,,,,,,36901807,,, +1080,CHN,,Zhejiang zhi Sheng,,Aojiang (ZJ),27.583333,120.6,,1,,9097,55,144,,,,,,36200528,,, +1080,CHN,,Zhejiang zhi Sheng,,Pingyang (ZJ),27.666667,120.566667,,1,,9088,55,144,,,,,,36200005,,, +1080,GTM,,TGLU R Viva,,Zacapa (zcp),14.966667,-89.516667,,1,,9096,284,144,,,,,,40509,,, +1080,HND,,HRXN,,Choluteca (cho),13.366667,-87.166667,,1,,9079,281,144,,,,,,37872,,, +1080,MEX,es,XEDY-AM R Gallo,,San Luis Ro Colorado (son),32.460878,-114.817389,,1,,9017,313,144,,,,,,34900009,,, +1080,NCG,,YNLC R 15 de Septiembre,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,,,,,52209,,, +1080,PHL,,DXRH-AM,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,,,,,49578,,, +1080,ARG,es,R Departamento Minas,,Andacollo (nq),-37.184811,-70.664111,,10,,12405,237,145,,1000-2300,1234567,,,51824,,, +1080,USA,,KYMN,,Northfield (N) (MN),44.486667,-93.105278,,0.011,,6814,307,145,,,,,,20012596,,, +1080,B,pt,ZYK704 Rdio Monumental,,Aparecida/Santa Terezinha (SP),-22.836111,-45.230556,,1,,9721,226,146,,,,,,36901798,,, +1080,B,pt,ZYK710 Rdio Alvorada,,Cardoso (SP),-20.07415,-49.919172,,1,,9696,232,146,,,,,,36901799,,, +1080,HWA,en,KWAI,,Honolulu (HI),21.294722,-157.863611,,5,,11711,345,146,,0000-2400,1234567,2,,39683,,, +1080,MEX,es,XEJLV-AM,,Puerto Vallarta (jal),20.653106,-105.234939,,1,,9584,299,146,,,,,,44214,,, +1080,ARG,,LU3 R del Sur,,Baha Blanca (ba),-38.716667,-62.266667,,5,,12079,230,147,,0900-0400,1234567,,,40225,,, +1080,EQA,,HCAB4,,Eco (man),-0.95,-80.733333,,1,,9896,267,147,,,,,,36833,,, +1080,B,pt,ZYL251 Rdio Capital,,Juiz de Fora (MG),-21.722917,-43.319883,,0.5,,9518,225,148,,,,96,,36901808,,, +1080,MEX,es,XEAX-AM Magia,,Oaxaca (oax),17.076667,-96.701944,,0.5,,9379,291,148,,,,,,43748,,, +1080,MEX,es,XECN-AM Los 40 Principales,,Irapuato (gua),20.700922,-101.339836,,0.5,,9345,296,148,,1200-0600,1234567,,,43856,,, +1080,PRU,,OAX7S R Salkantay,,Cusco (cus),-13.5,-72,,1,,10417,253,148,,,,,,40350,,, +1080,B,pt,ZYH485 Rdio Fascinaco,,Itapetinga (BA),-15.260556,-40.239444,,0.25,,8731,226,149,,,,,,36901803,,, +1080,BOL,,CP291 R Dif. Colosal,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,0900-0300,1234567,,,51990,,, +1080,KOR,,AFN Korea-Thunder AM,,Waegwan/Camp Carroll (gsb),35.989722,128.415,,0.25,,8722,44,149,,0000-2400,1234567,,,49568,,, +1080,MEX,es,XEUU-AM La Mejor,,Colima (col),19.222589,-103.717567,,0.5,,9623,297,149,,1200-0600,1234567,,,44933,,, +1080,PHL,,DWRL-AM,,Legazpi City (aby),13.133333,123.733333,,1,,10615,60,149,,,,,,49576,,, +1080,PRG,es,ZP25 Monumental AM,,Luque (cet),-25.232461,-57.636292,,1,,10603,235,149,,0800-0300,1234567,,,45520,,, +1080,B,pt,ZYK669 RBN-Rdio Boa Nova,,Sorocaba/Rua Ruth Simo 267 (SP),-23.53495,-47.479733,,0.5,,9901,228,150,,,,,,36901804,,, +1080,MEX,es,XEDY-AM R Gallo,,Ciudad Morelos (bcn),32.633611,-114.845278,,0.25,,9002,313,150,,1200-0700,1234567,47,,43947,,, +1080,PHL,,DXKS-AM,,Surigao City (sdn),9.783333,125.483333,,1,,11031,61,150,,,,,,49577,,, +1080,B,pt,ZYJ201 Rdio Clube Pontagrossense,,Ponta Grossa (PR),-25.051667,-50.118056,,0.5,,10182,229,151,,,,,,36901805,,, +1080,INS,id,R Citra Barito,,Muara Teweh (KT),-0.95,114.883333,,1,,11340,76,151,,,,,,35400059,,, +1080,INS,id,R JIC,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,2030-1700,1234567,,,35400138,,, +1080,INS,id,RRI Pro-1,,Singaraja (BA),-8.153889,115.036111,,2,,11990,80,151,,2100-1600,1234567,0,,49563,,, +1080,MEX,es,XETUL-AM R Mexiquense,,Tultitln de Mariano Escobedo (mex),19.68025,-99.1031,,0.25,,9298,294,151,,,,997,,44868,,, +1080,ARG,es,R Claridad,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,33000081,,, +1080,B,pt,ZYI437 Rdio Gaspar,,Itiquira (MT),-17.208231,-54.126667,,0.25,,9656,236,152,,,,,,36901800,,, +1080,B,pt,ZYK557 Rdio Difusora Batatais AM,,Batatais (SP),-20.916744,-47.576117,,0.25,,9653,229,152,,,,,,36901812,,, +1080,B,pt,ZYK607 Rdio Alvorada,,Lins/Av Tiradentes (SP),-21.684322,-49.750594,,0.25,,9841,231,152,,,,,,36901814,,, +1080,MEX,es,XEPAB-AM,,La Paz (bcs),24.161389,-110.345556,,0.25,,9556,305,152,,,,,,44527,,, +1080,MRA,,KCNM,,Saipan/Chalan Kiya (MP),15.157778,145.718056,,1.1,,11572,40,152,,0000-2400,1234567,910,,38184,,, +1080,B,,ZYJ261,,Cornlio Procpio (PR),-23.166667,-50.466667,,0.25,,10020,230,153,,,,,,45986,,, +1080,B,pt,ZYJ245 Rdio Cultura,,Paranava (PR),-23.075,-52.423333,,0.25,,10115,232,153,,,,,,36901796,,, +1080,CHL,,CA108 R Rio Elqui,,Vicuna (CO),-30.016667,-70.716667,,1,,11791,241,153,,,,,,35671,,, +1080,B,pt,ZYJ759 RCI-Rdio Clube de Indaial,,Indaial (SC),-26.872222,-49.250833,,0.25,,10311,228,154,,,,,,36901797,,, +1080,INS,id,R Suara Victory,,Makassar (SN-mak),-5.15,119.433333,,1,,12016,75,154,,,,,,48953,,, +1080,B,pt,ZYK254 Rdio Marab AM,,Ira (RS),-27.206944,-53.255556,,0.25,,10550,230,155,,,,,,36901795,,, +1080,CHL,,CD108 R Los Confines,,Angol (AR),-37.7,-72.65,,1,,12563,238,155,,1100-0300,1234567,,,35849,,, +1080,AUS,en,6IX,,Perth/Ascot Waters (WA),-31.934742,115.915567,,2,,14040,97,157,,0000-2400,1234567,995,,49545,,, +1080,AUS,,7TAB Tote Sport R.,,Hobart/Sandford (TAS),-42.937611,147.510083,,5,,16964,86,163,,0000-2400,1234567,,,49544,,, +1080,NZL,,1ZB Newstalk ZB,,Auckland/Henderson (AUK),-36.844383,174.631153,,10,,18083,33,164,,0000-2400,1234567,,,49571,,, +1080,AUS,,2MO,,Gunnedah (NSW),-30.983889,150.213056,,2,,16259,66,165,,0000-2400,1234567,,,49543,,, +1083,UKR,,AU,b,Auly,48.5625,34.208333,,0.025,,1999,90,93,,,,27,U1020 ,ID+6 gap,85862,, +1084,RUS,,HU,b,Lyamino,61.270833,71.791667,,0.025,,3938,49,112,,,,,,85863,,, +1086,POL,,S,b,Bydgoszcz / Szwederowo,53.104167,18.041667,,0.025,,792,77,81,,,,0,L1020 U1020 ,85864,,, +1088,AGL,pt,RNA Canal A,,Mulenvos/Baixo (lua),-8.852056,13.317083,,25,,6811,172,111,,0000-2400,1234567,9987,,2203,,, +1089,G,en,TalkSPORT,,Brookmans Park/North T aerial (EN-HTS),51.73,-0.178611,,400,,454,267,36,,0000-2400,1234567,0,,907,,, +1089,G,en,TalkSPORT,,Moorside Edge (EN-WYK),53.63525,-1.8945,,400,,582,290,37,,0000-2400,1234567,0,,906,,, +1089,G,en,TalkSPORT,,Westerglen (SC-STL),55.975556,-3.816111,,130,,793,307,44,,0000-2400,1234567,0,,905,,, +1089,G,en,TalkSPORT,,Washford (EN-SOM),51.161389,-3.347944,,80,,681,265,45,,0000-2400,1234567,,,904,,, +1089,RUS,ru,Vesti FM,,Tbilisskaya/RV681 (KD),45.463708,40.095389,,1200,,2550,93,52,,0000-2400,1234567,9997,,908,,, +1089,G,en,TalkSPORT,,Lisnagarvey (NI-ANT),54.490833,-6.060833,,13,,869,293,55,,0000-2400,1234567,,,903,,, +1089,RUS,ru,R Teos,,Krasny Bor/RV1433 (LE),59.653083,30.709,,50,,1718,51,57,,0500-1300,12345..,0,,909,,, +1089,G,en,TalkSPORT,,Aberdeen/Redmoss (SC-ABC),57.113583,-2.094583,,2.2,,780,319,61,,0000-2400,1234567,12,,902,,, +1089,G,en,TalkSPORT,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0000-2400,1234567,,,901,,, +1089,ARS,ar,BSKSA Idha'atu-i Jeddah,,Qurayyat (jwf),31.415372,37.385722,,100,,3403,120,71,,0000-2400,1234567,1,,899,,, +1089,ALG,ar,R Adrar,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,0800-1930,1234567,,,898,,, +1089,ALG,ar,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2000-2030,1234567,,,898,,, +1089,ALG,ar,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2100-2130,1234567,,,898,,, +1089,ALG,ar,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2230-2300,1234567,,,898,,, +1089,ALG,ar,R Coran,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2300-0200,1234567,,,898,,, +1089,ALG,en,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2130-2200,1234567,,,898,,, +1089,ALG,es,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,1930-2000,1234567,,,898,,, +1089,ALG,es,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2200-2230,1234567,,,898,,, +1089,ALG,fr,R Algrie Int.,,Adrar (1),27.856389,-0.275,,10,,2754,194,75,,2030-2100,1234567,,,898,,, +1089,IRN,fa,IRIB R Iran,,Shahroud (smn),36.383528,55.018883,,50,,4152,95,82,,2230-0230,1234567,9982,,1797,,, +1089,IRN,fa,IRIB R Semnan,,Shahroud (smn),36.383528,55.018883,,50,,4152,95,82,,0230-2230,1234567,9982,,1797,,, +1089,G,en,TalkSPORT,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-2400,1234567,,,900,,, +1089,IND,,AIR North,,Naushera (JK),33.151903,74.232778,,20,,5701,84,101,,0020-1740,1234567,,,49592,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Shenyang/SARFT033 (LN),41.625278,123.300556,,200,,7955,45,114,,0000-2400,1234567,,,49589,,, +1089,CHN,,CNR 6 Shenzhou zhi Sheng,,Fuzhou/SARFT552 (FJ),26.097389,119.632861,,600,130,9179,56,117,,2155-1605,1234567,,,49587,,, +1089,IND,,AIR South,,Udipi (KA),13.442778,74.74,,20,,7358,99,118,,0025-0430,1234567,9934,,49593,,, +1089,IND,,AIR South,,Udipi (KA),13.442778,74.74,,20,,7358,99,118,,0730-1000,1234567,9934,,49593,,, +1089,IND,,AIR South,,Udipi (KA),13.442778,74.74,,20,,7358,99,118,,1200-1735,1234567,9934,,49593,,, +1089,RUS,ru,R Rossii,,Tilichiki (KM),60.436111,166.05,,5,,7369,11,124,,1800-1400,1234567,,,46923,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Kuandian/LNTS332 (LN),40.733333,124.783333,,20,,8108,44,125,,0000-2400,1234567,,,36200525,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Suizhong/LNTS321 (LN),40.333056,120.3025,,10,,7924,47,126,,0000-2400,1234567,,,49590,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Zhuanghe (LN),39.755278,122.950278,,10,,8108,46,128,,0000-2400,1234567,,,36201050,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Lingyuan/LNTS331 (LN),41.233333,119.4,,3,,7799,47,130,,0000-2400,1234567,,,36200524,,, +1089,KOR,,HLCH KBS 1 R,,Chungju (ccb),36.986389,127.925278,,10,,8605,44,132,,0000-2400,1234567,,,49595,,, +1089,THA,th,Neung Por. Nor.,,Udon Thani (udt),17.430556,102.828333,,10,,8913,74,133,,????-1325,1234567,,,49601,,, +1089,VTN,vi,Cao Bằng R,,Cao Bằng (cbn),22.666667,106.25,,10,,8677,68,133,,,,,,33200001,,, +1089,J,ja,JOHB NHK2,,Sendai (toh-miy),38.273056,140.91,,10,,9043,35,134,,2030-1500,1.....7,,,49594,,, +1089,J,ja,JOHB NHK2,,Sendai (toh-miy),38.273056,140.91,,10,,9043,35,134,,2030-1635,.2345..,,,49594,,, +1089,J,ja,JOHB NHK2,,Sendai (toh-miy),38.273056,140.91,,10,,9043,35,134,,2030-1640,.....6.,,,49594,,, +1089,THA,th,Neung Por. Nor.,,Bangkok/Chaeng Wattana Rd (bmp),13.883333,100.575,,10,,9074,78,134,,0000-2400,1234567,,,49600,,, +1089,TWN,,Fu Hsing Kuangpo Tientai 2,,Taichung (TC),24.136983,120.598661,,10,,9414,57,135,,,,,,49604,,, +1089,TWN,,Han Sheng Kuangpo Tientai,,Touliu=Douliu (YL),23.703611,120.545,,10,,9450,57,135,,2100-1600,1234567,,,49602,,, +1089,TWN,,Kaohsiung Kuangpo Tientai,,Kaohsiung (KH),22.656944,120.278333,,10,,9531,58,135,,2150-1600,1234567,,,49603,,, +1089,TWN,,Kaohsiung Kuangpo Tientai,,Kaohsiung (KH),22.656944,120.278333,,10,,9531,58,135,,2300-2330,1234567,,,49603,,, +1089,VTN,xx,VOV Kin Giang R,,Rạch Gi (kgg),9.993222,105.097172,,10,,9717,77,136,,2200-1200,1234567,,,49607,,, +1089,CHN,zh,Liaoning RGD Xinwen Tai,,Fengcheng/LNTS313 (LN),40.45,124.066667,,1,,8099,45,138,,0000-2400,1234567,,,36200526,,, +1089,TWN,,Fu Hsing Kuangpo Tientai 1,,Taipei (TPS),25.085933,121.512869,,5,,9378,56,138,,,,,,49605,,, +1089,CHN,,Zhuzhou RGD Xinwen,,Zhuzhou (HN),27.833333,113.15,,1,,8646,60,143,,,,,,49591,,, +1089,PHL,,DXCM-AM Radyo Ukay,,Cotabato City (mag),7.193333,124.242778,,5,,11197,63,144,,,,,,49599,,, +1089,PHL,,DYHR-AM,,Calbayog City (sam),12.066667,124.583333,,1,,10765,60,150,,,,,,49598,,, +1089,AUS,,2EL,,Orange/Forest Reefs (NSW),-33.457611,149.122917,,5,,16394,70,161,,0000-2400,1234567,,,49586,,, +1089,AUS,en,3WM,,Horsham/Lubeck (VIC),-36.743056,142.520833,,5,,16209,81,161,,0000-2400,1234567,,,49585,,, +1089,NZL,,R Sport,,Palmerston North/Kairanga (MWT),-40.509167,175.570556,,2.5,,18483,37,171,,0000-2400,1234567,,,49597,,, +1090,USA,,WBAL,,Baltimore/Randallstown (MD),39.375833,-76.7725,,50,,6244,292,103,,,,1,,40800,,, +1090,USA,,WILD,,Boston (MA),42.402778,-71.074444,,4.8,,5662,292,107,,,,9995,,41750,,, +1090,USA,en,WTSB,,Selma (NC),35.615833,-78.409167,,9,,6637,290,114,,1200-2400,1234567,,,43212,,, +1090,USA,,WHGG,,Kingsport (TN),36.461111,-82.453333,,10,,6827,294,115,,,,,,41629,,, +1090,USA,en,KAAY,,Little Rock (AR),34.6,-92.225,,50,,7578,299,116,,,,,,37903,,, +1090,USA,,WAQE,,Rice Lake (WI),45.537778,-91.763889,,5,,6656,307,117,,,,,,40737,,, +1090,USA,,WFCV,,Fort Wayne (IN),41.083611,-85.075556,,2.5,,6623,299,119,,,,,,41366,,, +1090,USA,en,KFNQ,,Seattle (WA),47.393889,-122.423611,,50,,7931,326,119,,,,5,,39171,,, +1090,USA,en,WCZZ,,Greenwood (SC),34.162778,-82.194722,,5,,6994,292,120,,,,,,41115,,, +1090,USA,,KEXS,,Excelsior Springs (MO),39.294167,-94.260278,,8,,7304,303,121,,,,,,38353,,, +1090,USA,,WKBZ,,Muskegon (MI),43.276667,-86.253889,,1,,6522,302,122,,,,,,42409,,, +1090,USA,,WCAR,,Livonia (MI),42.329444,-83.361944,,0.5,,6424,299,124,,,,,,40947,,, +1090,USA,,WKFI,,Wilmington (OH),39.436667,-83.855833,,1,,6678,297,124,,,,,,42003,,, +1090,USA,,WKTE,,King (NC),36.296667,-80.371667,,1,,6709,292,124,,,,,,42075,,, +1090,B,pt,ZYJ592 Rdio Rural (Cano Nova),,Natal (RN),-5.821389,-35.246111,,5,,7549,226,126,,,,,,36901827,,, +1090,USA,,KBOZ,,Bozeman (MT),45.616111,-111.087778,,5,,7623,318,126,,,,9944,,38078,,, +1090,USA,,KNWS,,Waterloo (IA),42.443889,-92.299444,,1,,6934,305,126,,,,,,39033,,, +1090,MEX,en,XEPRS-AM XX 1090,,Rosarito (bcn),32.420778,-117.091628,,50,,9132,315,127,,0000-2400,1234567,7,,44576,,, +1090,USA,,WCRA,,Effingham (IL),39.107222,-88.562222,,1,,6987,300,127,,,,,,41071,,, +1090,VEN,,YVSZ Union R 1090,,Caracas (dcf),10.537778,-66.929083,,10,,7950,263,127,,0000-2400,1234567,,,45463,,, +1090,VEN,es,YVPB R.Yaracuy Operadora 1090 AM,,San Felipe (ycy),10.5,-68.716667,,10,,8074,265,128,,0000-2400,1234567,,,45418,,, +1090,CAN,fr,CBON-12,,Mattawa (ON),46.313611,-78.721389,,0.04,,5854,300,129,,,,,,20109144,,, +1090,USA,,WBAF,,Barnesville (GA),33.053611,-84.135278,,1,,7207,292,129,,,,,,40797,,, +1090,B,pt,ZYH254 Rdio Gazeta,,Po de Acar (AL),-9.748889,-37.4275,,5,,8047,226,131,,,,,,36901825,,, +1090,PTR,,WSOL,,San German (PR),18.078889,-67.021667,,0.73,,7306,269,131,,0930-0400,1234567,,,43042,,, +1090,USA,,KSOU,,Sioux Center (IA),43.056111,-96.171389,,0.5,,7098,307,131,,,,,,39400,,, +1090,CAN,en,CBLM,,Marathon (ON),48.719722,-86.383333,,0.04,,6118,306,132,,,,,,20109145,,, +1090,CLM,es,HJBC R Caracol,,Ccuta (nsa),7.833333,-72.5,,10,,8564,266,132,,,,97,,37342,,, +1090,USA,,WWGC,,Albertville (AL),34.264444,-86.278889,,0.5,,7242,295,132,,,,,,43378,,, +1090,DOM,es,HIRB R Jiman,,Jiman (ind),18.492722,-71.852756,,1,,7601,273,133,,0900-0400,1234567,,,37290,,, +1090,USA,,KNCR,,Fortuna (CA),40.558333,-124.123333,,10,,8660,324,133,,,,,,38969,,, +1090,CLM,es,HJJB,,Guamo (tol),4.033333,-74.966667,,10,,9065,266,134,,,,,,35901522,,, +1090,GTM,,TGZ Emisoras Unidas Central,,Ciudad de Guatemala (gut),14.616667,-90.616667,,10,,9200,285,134,,,,,,52132,,, +1090,SLV,es,YSMG R CRET,,Ahuachapn (ahp),13.916667,-89.833333,,10,,9209,283,134,,,,,,45298,,, +1090,VEN,,YVTG Melodica 1090,,Machiques (zul),10.15,-72.466667,,5,,8360,268,134,,0900-0500,1234567,,,45467,,, +1090,VIR,,WUVI,,Charlotte Amalie (sto),18.315833,-64.883889,,0.25,,7140,267,134,,,,,,41543,,, +1090,CLM,es,HJIG,,Florencia (caq),1.616667,-75.616667,,10,,9322,265,135,,,,,,37490,,, +1090,CLM,es,HJOM,,Cartagena (bol),10.4,-75.516667,,5,,8547,270,135,,,,,,35901523,,, +1090,CUB,es,R Victoria,,Amancio (lt),20.836722,-77.575222,,1,,7791,279,135,,,,,,36587,,, +1090,B,pt,ZYH893 Rdio Rio Balsas AM,,Balsas (MA),-7.501667,-46.038889,,2.5,,8279,235,136,,,,,,36901829,,, +1090,USA,en,WPIH726,,Alpine (NJ),40.980389,-73.914861,,0.01,,5944,292,136,,,,,,20010618,,, +1090,CLM,es,HJIA,,Manizales (cal),5.566667,-75.516667,,5,,8968,267,137,,,,,,37486,,, +1090,DOM,,HIJM R Amistad,,Santiago de los Caballeros (sto),19.416667,-70.583333,,0.25,,7436,272,137,,0000-2400,1234567,,,37258,,, +1090,NCG,,YNAI R Alma Latina,,Estel (esl),13.066667,-86.333333,,5,,9050,280,137,,1100-0400,1234567,,,52210,,, +1090,USA,,KMXA,,Aurora (CO),39.664722,-104.656667,,0.5,,7839,310,138,,,,,,38950,,, +1090,B,pt,ZYJ468 Rdio Metropolitana/ESPN,,Rio de Janeiro (RJ),-22.866744,-43.289958,,5,,9629,225,139,,,,,,36901822,,, +1090,USA,es,KULF,,Bellville (TX),29.934722,-96.113056,,1,,8210,298,139,,,,,,39029,,, +1090,B,pt,ZYJ345 Rdio Banda 1 AM,,Sarandi (PR),-23.470556,-51.871944,,5,,10123,231,140,,,,,,36901830,,, +1090,EQA,,HCRP5,,Riobamba (chi),-1.666667,-78.65,,2.5,,9817,265,142,,,,,,37104,,, +1090,USA,,KVOP,,Plainview (TX),34.092222,-101.640556,,0.5,,8168,305,142,,,,,,39655,,, +1090,CLM,es,HJIH,,Sogamoso (boy),5.7,-72.916667,,1,,8779,265,143,,,,,,37491,,, +1090,URG,es,CX28 R Imparcial,,Montevideo (mo),-34.8675,-56.100278,,7.5,,11411,228,143,,0000-2400,1234567,,,36811,,, +1090,HND,,HRWC,,Tegucigalpa (fmz),14.3,-87.2,,1,,9000,282,144,,,,,,37871,,, +1090,SLV,es,YSMG R CRET,,San Salvador (ssl),13.735278,-89.228889,,1,,9185,283,144,,,,,,31100001,,, +1090,B,pt,ZYH455 Rdio Santa Cruz,,Ilhus (BA),-14.801642,-39.074517,,0.5,,8629,225,145,,,,,,36901819,,, +1090,B,pt,ZYH758 Aliana 1090 AM,,Goinia (GO),-16.75115,-49.23515,,1,,9341,233,145,,,,,,36901828,,, +1090,MEX,es,XEHR-AM,,Puebla/Av.15 de Mayo 2939 (pue),19.063142,-98.214644,,1,,9298,293,145,,,,,,44137,,, +1090,MEX,es,XELB-AM La Buenisima,,La Barca (jal),20.291678,-102.610194,,1,,9459,297,145,,,,,,44288,,, +1090,MEX,es,XEXE-AM R Frmula,,Quertaro (que),20.58315,-100.431978,,1,,9300,296,145,,,,,,45049,,, +1090,MEX,es,XEAU-AM,,Monterrey (nvl),25.655778,-100.2552,,0.5,,8835,299,146,,,,,,43741,,, +1090,EQA,,HCAB4,,Manta (man),-1,-80.766667,,1,,9903,267,147,,,,,,36834,,, +1090,MEX,es,XEIL-AM La Comadre,,Boca del Ro (vcz),19.19,-96.175833,,0.5,,9158,292,147,,,,,,44168,,, +1090,USA,en,KQNM,,Milan (D) (NM),35.151389,-107.876111,,0.25,,8412,310,147,,,,,,20016291,,, +1090,MEX,es,XEFC-AM Super Stereo,,Mrida (yuc),20.946136,-89.571472,,0.25,,8579,288,148,,,,,,43997,,, +1090,MEX,es,XEWL-AM La Romntica,,Nuevo Laredo (tam),27.494722,-99.547778,,0.25,,8630,299,148,,,,,,45026,,, +1090,PRU,,OBX2A R Cajabamba,,Cajabamba (caj),-7.666667,-78,,1,,10301,261,148,,0900-0500,1234567,,,40386,,, +1090,USA,,KTGO,,Tioga (ND),48.391111,-102.934444,,0.006,,6998,315,149,,,,,,39479,,, +1090,B,pt,ZYK609 Rdio Clube de Marlia,,Marlia/Rua Carlos Artencio 117 (SP),-22.228967,-49.928989,,0.5,,9902,230,150,,,,,,36901820,,, +1090,EQA,,HCMG1,,Quito (pic),-0.166667,-78.466667,,0.35,,9673,266,150,,,,,,37023,,, +1090,ARG,,R Nuestras Raices,,Valentin Alsina (ba),-34.683333,-58.416667,,1,,11514,230,152,,,,,,51826,,, +1090,ARG,es,R Dcadas,,Hurlingham (ba),-34.6,-58.633333,,1,,11518,230,152,,,,,,33000083,,, +1090,ARG,es,R Popular AM 1090,,Buenos Aires (df),-34.6,-58.383333,,1,,11505,230,152,,,,,,33000082,,, +1090,B,pt,ZYK618 Rdio Cultura,,Monte Alto (SP),-21.260472,-48.478472,,0.25,,9733,230,152,,,,,,36901815,,, +1090,B,pt,ZYK768 Rdio Cano Nova,,Paulnia (SP),-22.801389,-47.138611,,0.25,,9813,228,152,,,,,,36901818,,, +1090,B,,ZYJ254,,Campo Mouro (PR),-24.05,-52.366667,,0.25,,10204,231,154,,,,,,45980,,, +1090,B,pt,ZYJ283 Rdio Vicente Pallotti,,Coronel Vivida (PR),-25.953333,-52.566667,,0.25,,10395,231,154,,,,,,36901816,,, +1090,B,pt,ZYJ732 Rdio Coln,,Joinville (SC),-26.275833,-48.776944,,0.25,,10230,227,154,,,,,,36901821,,, +1090,BOL,,CP45 R Cultura,,Cochabamba (cbb),-17.366667,-66.166667,,0.25,,10390,246,154,,0900-0400,123456,,,36699,,, +1090,BOL,,CP45 R Cultura,,Cochabamba (cbb),-17.366667,-66.166667,,0.25,,10390,246,154,,1200-2300,......7,,,36699,,, +1090,B,pt,ZYJ786 Rdio Bandeirantes,,Tubaro (SC),-28.508889,-49.006944,,0.25,,10456,226,155,,,,,,36901826,,, +1090,B,pt,ZYK262 Salete AM,,Marcelino Ramos (RS),-27.469167,-51.903056,,0.25,,10504,229,155,,,,,,36901824,,, +1090,B,pt,ZYK341 Rdio Giru AM,,Giru (RS),-28.016667,-54.35,,0.25,,10683,231,155,,,,,,36901817,,, +1090,CHL,,CC109 R Chilena Solonoticias,,Talca (ML),-35.416667,-71.666667,,1,,12312,238,155,,1000-0400,1234567,,,35804,,, +1090,USA,,WTNK,,Hartsville (TN),36.388056,-86.165278,,0.002,,7062,296,155,,,,,,43184,,, +1090,B,pt,ZYK216 Rdio Cachoeira (RS),,Cachoeira do Sul (RS),-30.016667,-52.897778,,0.25,,10795,229,156,,,,,,36901823,,, +1090,USA,en,KQNM,,Milan (N) (NM),35.0975,-107.871944,,0.02,,8417,310,158,,,,,,20016013,,, +1098,SVK,hu,SRo 5 Rdio Patria Maďarsk,,Nitra/Jarok (NI),48.277267,17.912167,,10,,922,113,56,,0500-1700,1234567,9870,,919,,, +1098,SVK,sk,SRo 3 Rdio Devn,,Nitra/Jarok (NI),48.277267,17.912167,,10,,922,113,56,,1700-0500,1234567,9870,,919,,, +1098,E,es,RNE R 5,,Lugo/Arrieiras (Fontao/RNE) (GAL-LU),42.973911,-7.575722,,25,,1456,231,58,,0000-2400,1234567,,,914,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0625-0630,12345..,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0650-0700,12345..,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0800-0815,1234567,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1208-1300,12345..,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1230-1300,.....67,135,,915,,, +1098,E,es,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1400-1415,12345..,135,,915,,, +1098,E,es,RNE R 5,,Almera/Roquetas de Mar (RNE) (AND-AL),36.729925,-2.641589,,25,,1852,206,62,,0000-2400,1234567,5,,913,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0815-1208,12345..,135,,915,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0815-1230,.....67,135,,915,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1300-1400,12345..,135,,915,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1300-2300,.....67,135,,915,,, +1098,E,es,RNE R 5,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,1415-2300,12345..,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0630-0650,12345..,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0700-0800,12345..,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0711-0800,.....67,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,2300-0625,1234..7,135,,915,,, +1098,E,es,RNE R Nacional,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,2300-0710,....56.,135,,915,,, +1098,E,pt,RNE Castilla y Len,,vila/Camino Tornadizos (RNE) (CAL-AV),40.626306,-4.635867,,10,,1529,218,62,,0710-0711,.....67,135,,915,,, +1098,CYP,tr,Bayrak Radyosu,,Yeni Iskele (kib),35.294156,33.913589,,100,,2865,120,66,,0000-2400,1234567,4,,911,,, +1098,E,es,RNE R 5,,Huelva/Aljaraque (RNE) (AND-H),37.282511,-7.020006,,10,,1954,218,67,,0000-2400,1234567,999,,912,,, +1098,RUS,ru,R Rossii,,Nikolsk/RTPS Kurilovo (VO),59.813056,45.503333,,5,,2536,55,75,,0200-2200,1234567,,,917,,, +1098,ARS,ar,BSKSA Idha'atu-i Jeddah,,Dammam (shy),26.463178,50.045189,,100,,4608,111,83,,0000-2400,1234567,988,,47084,,, +1098,IRN,dr,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0330-0630,1234567,9859,,916,,, +1098,IRN,dr,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0830-1330,1234567,9859,,916,,, +1098,IRN,fa,IRIB R Iran,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1730-0130,1234567,9859,,916,,, +1098,IRN,ps,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0230-0330,1234567,9859,,916,,, +1098,IRN,ps,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0730-0830,1234567,9859,,916,,, +1098,IRN,ps,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1430-1530,1234567,9859,,916,,, +1098,IRN,ps,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1630-1730,1234567,9859,,916,,, +1098,IRN,ur,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,0130-0230,1234567,9859,,916,,, +1098,IRN,ur,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1330-1430,1234567,9859,,916,,, +1098,IRN,ur,IRIB WS,,Zabol (sib),31.037667,61.548778,,200,100,4999,96,84,,1530-1630,1234567,9859,,916,,, +1098,KAZ,,Qazaq Rsy,,Qaraturyq/RC Tolqin (alm),43.64175,77.937522,,150,,5196,71,87,,2300-1800,1234567,982,,2239,,, +1098,CHN,bo,CNR 11,,Golmud/SARFT916 (QH),36.415861,95.010222,,1000,205,6814,67,95,,2155-1605,1234567,0,,36201107,,, +1098,PAK,,NBS News,,Hyderabad 2 (shd),25.399722,68.429722,,10,,5917,95,106,,0200-0400,1234567,,,49651,,, +1098,PAK,,NBS News,,Hyderabad 2 (shd),25.399722,68.429722,,10,,5917,95,106,,1300-1800,1234567,,,49651,,, +1098,PAK,,PBC Saut-ul Quran/NBS News,,Hyderabad 2 (shd),25.399722,68.429722,,10,,5917,95,106,,1230-1705,1234567,,,49651,,, +1098,CHN,ky,Artux RGD,,Artux=Atushi/XJTS8108 (XJ),39.706783,76.184928,,1,,5351,76,111,,,,,,36200522,,, +1098,CHN,ug,Hami RGD Uighur,,Hami=Kumul (XJ),42.833333,93.333333,,1,,6215,62,119,,,,,,49618,,, +1098,CHN,zh,Tianjin RGD Wenyi Pindao,,Tianjin/Tanggu (TJ),39.048514,117.630428,,50,,7902,50,119,,2155-1800,1234567,,,49625,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Damao/NMTS863 (NM),41.712778,110.4075,,10,,7286,53,120,,2150-1605,1234567,,,36200517,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Saihan Tal/NMTS731 (NM),42.724,112.635611,,10,,7320,51,120,,2150-1605,1234567,,,49620,,, +1098,TWN,zh,Ikuan Tao,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,1200-1300,1234567,4,,49658,,, +1098,TWN,zh,R France Int.,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,2200-2300,1234567,4,,49658,,, +1098,TWN,zh,R Free Asia,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,1850-2200,1234567,4,,49658,,, +1098,TWN,zh,R Taiwan Int.,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,1300-1700,1234567,4,,49658,,, +1098,TWN,zh,R Taiwan Int.,,Kouhu (YL),23.537347,120.163694,,300,295,9444,57,120,,1700-1705,12345..,4,,49658,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Bayanhushu/NMTS077 (NM),45.719722,118.812222,,10,,7375,45,121,,2150-1605,1234567,,,36200518,,, +1098,CHN,zh,CNR 1,,Chagyab=Chaya (XZ),30.298667,81.172833,,1,,6392,81,121,,2025-1805,1234567,4,,36201144,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Ejin=Ejina/NMTS788 (NM),41.967978,101.070433,,1,,6740,58,124,,2150-1605,1234567,,,36201137,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Ergun=E'erguna/NMTS712 (NM),50.234667,120.164056,,2,,7045,41,124,,2150-1605,1234567,,,36201138,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Badain Jaran=Badanjilin/NMTS754 (NM),39.208333,101.653611,,1,,6995,60,127,,2150-1605,1234567,,,36201135,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Manzhouli/NMTS717 (NM),49.578056,117.497222,,1,,6980,43,127,,2150-1605,1234567,,,36201140,,, +1098,CHN,zh,CNR 1,,Namling=Nanmulin (XZ),29.683333,89.1,,1,,6972,76,127,,2025-1805,1234567,,,36201147,,, +1098,CHN,bo,CNR 11,,Yushu/QHTS920 (QH),33.001667,97.001944,,1,,7214,68,129,,,,,,36201049,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Erenhot=Erlian/NMTS872 (NM),43.618056,111.999722,,1,,7211,50,129,,,,,,36200515,,, +1098,CHN,zh,CNR 1,,Gongbo'gyamda (XZ),29.886111,93.244444,,1,,7228,73,129,,2025-1805,1234567,,,36201146,,, +1098,CHN,,Hubei RGD Shenghuo Pindao,,Suizhou (HU),31.715,113.344722,,10,,8314,58,130,,,,,,36200507,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Arxan=A'ershan/NMTS768 (NM),47.171944,119.932222,,1,,7301,43,130,,2150-1605,1234567,,,36201134,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Baotou/NMTS530 (NM),40.614417,109.839978,,1,,7348,54,130,,2150-1605,1234567,,,36200520,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Dong Wuzhumuqin Qi/NMTS732 (NM),45.493278,116.974444,,1,,7305,46,130,,2150-1605,1234567,,,36201136,,, +1098,CHN,zh,CNR 1,,Dngqn=Dingqing (XZ),31.413333,95.5985,,1,,7255,70,130,,2025-1805,1234567,,,36201145,,, +1098,KOR,,HLCJ KBS 1 R,,Jinju (gsb),35.163889,128.045833,,20,,8782,45,130,,0000-2400,1234567,,,49648,,, +1098,CHN,,Hubei RGD Shenghuo Pindao,,Jingzhou (HU),30.364444,112.095,,10,,8360,59,131,,,,,,36200510,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,1,,7431,54,131,,2150-1605,1234567,,,36201141,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Zalantun/NMTS696 (NM),48,122.741667,,1,,7357,41,131,,2150-1605,1234567,,,36201142,,, +1098,CHN,,Hebei RGD Jingji Guangbo,,Zhangjiakou/HBTS109 (HB),40.600556,115.0925,,1,,7632,51,133,,,,,,49627,,, +1098,CHN,,Hengyang RGD,,Hengyang/Hudong Cun (HN),26.895278,112.659167,,10,,8700,61,133,,,,,,36200512,,, +1098,CHN,,Zhangjiagang RGD News,,Zhangjiagang (JS),31.866667,120.533333,,10,,8702,52,133,,,,,,49628,,, +1098,THA,th,Sor. Wor. Thor. (R Thailand),,Tak (tak),16.7325,98.566389,,10,,8692,78,133,,,,,,49656,,, +1098,CHN,,Dezhou RGD,,Dezhou (SD),37.4575,116.313333,,2,,7973,52,134,,,,,,36200516,,, +1098,CHN,,Zhoushan JGD,,Zhoushan/ZMWS6945 (ZJ),30.051167,122.017389,,10,,8949,52,134,,,,,,49631,,, +1098,CHN,mn,Nei Menggu RGD Mongyol,,Ke'erqin Zuoyi Zhong Qi/NMTS735 (NM),44.112058,123.24995,,1,,7728,43,134,,2150-1605,1234567,,,36201139,,, +1098,CHN,,Deyang RGD,,Deyang (SC),31.133333,104.4,,1,,7831,64,135,,,,,,49616,,, +1098,CHN,bo,CNR 11,,Beijing (BJ),39.933333,116.383333,,1,,7759,50,135,,2155-1605,1234567,,,36200519,,, +1098,VTN,vi,VOV1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,0600-1100,1234567,,,48041,,, +1098,VTN,vi,VOV1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,1145-1310,1234567,,,48041,,, +1098,VTN,vi,VOV1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,2200-2300,1234567,,,48041,,, +1098,VTN,vi,VOV1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,2330-0500,1234567,,,48041,,, +1098,VTN,vi,VoV 1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,0500-0600,1234567,,,48041,,, +1098,VTN,vi,VoV 1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,1100-1145,1234567,,,48041,,, +1098,VTN,vi,VoV 1,,Huế (tth),16.447578,107.614025,,10,,9312,71,135,,2300-2330,1234567,,,48041,,, +1098,CHN,,Handan RGD Jiaotong,,Handan (HB),36.6,114.466667,,1,,7948,54,136,,,,,,49619,,, +1098,CHN,,Jingzhou RGD Chengshi Shenghuo,,Jinzhou (LN),41.116667,121.116667,,1,,7895,46,136,,,,,,49621,,, +1098,CHN,zh,CNR 2,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,2100-1602,1234567,,,36200513,,, +1098,THA,th,Sor. Wor. Phor.,,Hat Yai/Ban Phru (sgk),6.965278,100.478056,,10,,9673,83,136,,2200-1608,1234567,,,49657,,, +1098,VTN,vi,VOV1/Bnh Thuận R,,Phan Thiết (bun),10.9346,108.114583,,10,,9833,74,136,,0415-????,1234567,,,49660,,, +1098,CHN,,Maoming RGD,,Maoming (GD),21.933333,110.85,,5,,9031,65,137,,,,,,49623,,, +1098,CHN,,Yunnan RGD Yinyue-Binfen 97,,Dali/SARFT653 (YN),25.716667,100.166667,,1,,8025,71,137,,,,,,49613,,, +1098,J,ja,JOGF OBS Oita Hoso,,Oita/Kitsuki-Shi (kyu-oit),33.421944,131.665833,,5,,9120,43,137,,0000-2400,1234567,,,49644,,, +1098,J,ja,JOSR SBC Shinetsu Hoso,,Nagano (chu-nag),36.6325,138.245556,,5,,9099,37,137,,0000-2400,1234567,,,49643,,, +1098,J,ja,JOWO RFC R Fukushima,,Koriyama (toh-fuk),37.387222,140.360556,,5,,9109,35,137,,0000-1600,......7,,,49642,,, +1098,J,ja,JOWO RFC R Fukushima,,Koriyama (toh-fuk),37.387222,140.360556,,5,,9109,35,137,,0000-2400,123456,,,49642,,, +1098,J,ja,JOWO RFC R Fukushima,,Koriyama (toh-fuk),37.387222,140.360556,,5,,9109,35,137,,2000-2400,......7,,,49642,,, +1098,CHN,,Henan RGD Binfen 1098,,Zhengzhou (HE),34.7,113.7,,1,,8072,55,138,,,,,,36200505,,, +1098,CHN,,Pingdingshan RGD Wenxue,,Pingdingshan (HE),33.7,113.283333,,1,,8136,56,138,,,,,,36200508,,, +1098,PHL,,DWAD-AM Radyo Ngayon,,Mandaluyong (ncr),14.588875,121.039,,10,,10319,62,138,,2030-1500,1234567,9984,,49653,,, +1098,CHN,,Nanyang RGD Jiaotong,,Nanyang (HE),32.975278,112.498333,,1,,8155,57,139,,2155-1400,1234567,,,49624,,, +1098,CHN,,Xiangfan RGD Jiaotong,,Xiangfan/Pangongci (HU),32.027778,112.176389,,1,,8219,58,139,,,,,,49626,,, +1098,CHN,,Yunnan RGD Yinyue-Binfen 97,,Baoshan/YNTS702 (YN),26.366667,104.5,,1,,8246,67,139,,,,,,36200521,,, +1098,INS,id,RRI Pro-1,,Jambi/Mendalo Darat (JA-jam),-1.616667,103.533333,,10,,10635,85,139,,0845-1555,1234567,,,49634,,, +1098,INS,id,RRI Pro-1,,Jambi/Mendalo Darat (JA-jam),-1.616667,103.533333,,10,,10635,85,139,,2200-0505,1234567,,,49634,,, +1098,CHN,,Bengbu JGD,,Bengbu (AH),32.95,117.383333,,1,,8432,54,141,,????-1650,1234567,,,49612,,, +1098,CHN,zh,Yunnan RGD Jiaotong zhi Sheng,,Kaiyuan (YN),23.70675,103.269139,,1,,8397,70,141,,,,,,36201293,,, +1098,CHN,,Anhui RGD Yunshu,,Hefei/Sanshitou (AH),31.986667,117.3275,,1,,8515,55,142,,,,,,36200514,,, +1098,CHN,,Anhui RGD Yunshu,,Wuhu/Wuliting (AH),31.295528,118.382167,,1,,8636,54,142,,,,,,36200506,,, +1098,CHN,,Zhenjiang RGD Health,,Zhenjiang (JS),32.216667,119.433333,,1,,8611,53,142,,,,,,49629,,, +1098,CHN,,Guangxi JGD Caifu Guangbo,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,,,,,36200509,,, +1098,INS,id,RRI Pro-1,,Sumenep (JI-sum),-7.04595,113.844217,,10,,11812,80,143,,2200-1700,1234567,0,,49636,,, +1098,CHN,,Guangzhou DJT Car FM,,Guangzhou (GD),23.183333,113.233333,,1,,9066,63,144,,2200-1600,1234567,,,49617,,, +1098,CHN,,Huizhou RGD Entertainment,,Huizhou (GD),23.069167,114.4125,,1,,9147,62,144,,,,,,36200511,,, +1098,J,,JOSW SBC, Shinetsu Hoso,,Ida (chu-nag),35.5,137.816667,,1,,9192,38,144,,0000-2400,1234567,,,49639,, +1098,J,ja,JOMF NBC Nagasaki Hoso,,Sasebo (kyu-nag),33.167778,129.717222,,1,,9052,45,144,,0000-1600,......7,,,49645,,, +1098,J,ja,JOMF NBC Nagasaki Hoso,,Sasebo (kyu-nag),33.167778,129.717222,,1,,9052,45,144,,0000-2400,123456,,,49645,,, +1098,J,ja,JOMF NBC Nagasaki Hoso,,Sasebo (kyu-nag),33.167778,129.717222,,1,,9052,45,144,,2000-2400,......7,,,49645,,, +1098,MHL,,V7AB R Marshalls,,Majuro,7.086944,171.376389,,25,,13279,17,144,,1900-1130,123456,3,,49649,,, +1098,MHL,,V7AB R Marshalls,,Majuro,7.086944,171.376389,,25,,13279,17,144,,2000-1130,......7,3,,49649,,, +1098,PHL,,DXCL-AM Sonshine R,,Cagayan de Oro City (mor),8.466667,124.633333,,5,,11103,62,144,,2000-1315,1234567,,,49652,,, +1098,J,,JOFN HBC, Hokkaido Hoso,,Kitahiyama (hok),42.433333,139.933333,,0.1,,8592,33,152,,0000-2400,1234567,,,49641,, +1098,INS,id,PM2BBW R Untar VOMS,,Jakarta (JK),-6.183333,106.833333,,0.5,,11261,86,154,,0300-1300,......7,,,49633,,, +1098,INS,id,PM2BBW R Untar VOMS,,Jakarta (JK),-6.183333,106.833333,,0.5,,11261,86,154,,0300-1500,123456,,,49633,,, +1098,J,,SBC, Shinetsu Hoso,,Ina (chu-nag),35.833333,137.983333,,0.1,,9167,38,154,,0000-2400,1234567,,,49640,, +1098,J,ja,OBS Oita Hoso,,Yufuin,34.5,134,,0.1,,9124,41,154,,,,,,31400074,,, +1098,AUS,,6MD R West,,Merredin (WA),-31.502167,118.205389,,2,,14162,95,158,,2130-1500,1234567,,,49611,,, +1098,AUS,,4LG,,Longreach (QLD),-23.393417,144.220939,,2,,15230,65,161,,0000-2400,1234567,,,49610,,, +1098,NZL,en,3ZB Newstalk ZB,,Christchurch/Ouruhia (CAN),-43.445967,172.671261,,10,,18612,52,165,,0000-2400,1234567,,,49650,,, +1098,AUS,,2RN ABC National,,Goulburn (NSW),-34.745681,149.696542,,0.2,,16533,71,176,,0000-2400,1234567,,,49608,,, +1100,RUS,,KA,b,Konstaninovsk (RO),47.604167,41.125,,0.025,,2513,88,98,,,,,U1025 ,ID+7 gap,85865,, +1100,USA,en,WTAM,,Cleveland (OH),41.280556,-81.622778,,50,,6400,297,104,,,,997,,43102,,, +1100,USA,,WHLI,,Hempstead (NY),40.685,-73.61,,10,,5946,292,106,,,,,,41656,,, +1100,USA,,WTWN,,Wells River (VT),44.148611,-72.067222,,5,,5602,294,106,,,,9985,,43238,,, +1100,USA,,WZFG,,Dilworth (DC) (MN),46.762222,-96.671944,,50,,6820,310,108,,,,,,20016088,,, +1100,CAN,fr,CBSI-5,,Natashquan (QC),50.179722,-61.811667,,0.04,,4585,296,117,,,,,,20109146,,, +1100,USA,,WCGA,,Woodbine (GA),31.047222,-81.746389,,10,,7218,289,119,,,,,,40982,,, +1100,USA,,WISS,,Berlin (WI),43.948611,-88.985833,,2.5,,6627,304,119,,,,,,41811,,, +1100,USA,,WWWE,,Hapeville (GA),33.728611,-84.322222,,5,,7164,293,122,,,,,,43442,,, +1100,USA,,WGPA,,Bethlehem (PA),40.624167,-75.355278,,0.25,,6061,293,124,,,,,,41552,,, +1100,B,pt,ZYK694 Rdio Globo,,So Paulo/Rua Hilia Amaznica (SP),-23.605794,-46.538947,,150,,9861,227,125,,,,,,36901833,,, +1100,USA,,KKLL,,Webb City (MO),37.106389,-94.280556,,5,,7488,302,125,,,,,,38728,,, +1100,USA,,KFAX,,San Francisco (CA),37.632222,-122.130278,,50,,8862,321,126,,,,9993,,38375,,, +1100,VEN,,YVSV R Angostura,,Ciudad Bolivar (blv),8.066667,-63.666667,,10,,7946,259,126,,0900-0430,1234567,,,45462,,, +1100,USA,,KNZZ,,Grand Junction (CO),38.951667,-108.419444,,10,,8096,312,128,,,,,,39041,,, +1100,USA,,WSGI,,Springfield (TN),36.516667,-86.891667,,1,,7097,297,128,,,,,,42995,,, +1100,USA,,WZFG,,Dilworth (N) (MN),46.761944,-96.671667,,0.44,,6820,310,129,,,,,,20016087,,, +1100,CLM,es,HJYZ,,Neiva (hui),2.933333,-75.333333,,15,,9187,265,133,,,,,,35901529,,, +1100,CLM,es,HJCN BBN,,Bogot D. C. (bdc),4.7,-74.166667,,10,,8952,265,134,,,,12,,37374,,, +1100,CUB,es,R Angulo,,Mayar (ho),20.664344,-75.688744,,1,,7678,277,134,,,,,,36576,,, +1100,B,pt,ZYH638 Rdio Difusora dos Inhamuns,,Tau (CE),-6.0053,-40.282444,,1,,7822,230,135,,,,,,36901834,,, +1100,CLM,es,HJMK Emisora Ideal,,Planeta Rica (cor),8.416667,-75.566667,,5,,8723,269,136,,,,57,,37568,,, +1100,PNR,es,HOM92 R Sabrosa,,Pedregal (pnm),9.079,-79.436039,,5,,8929,272,136,,,,,,52326,,, +1100,CLM,es,HJGQ,,Andes (ant),5.65,-75.95,,5,,8991,267,137,,,,,,37461,,, +1100,CTR,,TISCR R Chorotega,,Santa Cruz (her),10.016667,-84.033333,,5,,9160,277,137,,0900-0600,1234567,,,52152,,, +1100,DOM,,HIHD R Oriente,,San Pedro de Macors (pms),18.466667,-69.283333,,0.25,,7428,271,137,,0900-0400,1234567,,,37253,,, +1100,DOM,,HIPS R Nagua,,Nagua (mts),19.366667,-69.833333,,0.25,,7389,272,137,,0900-0200,1234567,,,37287,,, +1100,B,pt,ZYH668 Rdio Difusora do Vale Acara,,Acara (CE),-2.908339,-40.127106,,0.25,,7511,232,138,,,,,,36901831,,, +1100,DOM,es,HIMP R Ocoa,,San Jos de Ocoa (joo),18.540236,-70.506906,,0.25,,7505,272,138,,1200-0200,1234567,,,37276,,, +1100,GTM,,TGSR R Superior,,Coatepeque (qzt),14.683333,-91.866667,,5,,9276,286,138,,,,,,40544,,, +1100,B,pt,ZYJ607 Rdio A Voz do Serid,,Caic (RN),-6.443611,-37.079444,,0.25,,7701,227,140,,,,,,36901832,,, +1100,SLV,,YSRF,,San Salvador (ssl),13.75,-89.216667,,3,,9183,283,140,,,,,,45314,,, +1100,USA,es,KWWN,,Las Vegas (NV),36.2125,-115.1625,,2,,8680,315,140,,,,,,20000070,,, +1100,USA,,KDRY,,Alamo Heights (TX),29.557778,-98.375556,,1,,8378,300,141,,,,,,38291,,, +1100,BOL,,CP137 R Mundial,,La Paz (lpz),-16.5,-68.116667,,4,,10435,248,142,,0900-0330,1234567,,,36642,,, +1100,CLM,es,HJAT Caracol,,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,997,,37335,,, +1100,EQA,,HCFW2,,Guayaquil (gua),-2.2,-79.9,,3,,9949,266,142,,,,,,36945,,, +1100,EQA,,HCJC5,,Cuenca (azu),-2.883333,-78.966667,,3,,9945,265,142,,,,,,36981,,, +1100,CLM,es,HJGI,,Socorro (sat),6.5,-73.266667,,1,,8733,266,143,,,,,,37454,,, +1100,PRG,,ZP71 R u Vera,,Capitan Bado (amm),-23.266667,-55.516667,,3,,10302,234,143,,0900-0200,1234567,,,45556,,, +1100,USA,,KFNX,,Cave Creek (AZ),33.797778,-111.991667,,1,,8749,312,143,,,,,,38416,,, +1100,CHL,,CB110 R Integridad,,Via del Mar (VS),-33.066667,-71.583333,,10,,12107,240,144,,1100-0500,1234567,,,35723,,, +1100,HND,,HRND,,La Esperanza (int),14.3,-88.166667,,1,,9065,282,144,,,,,,37804,,, +1100,HND,,HRVA,,San Pedro Sula (cor),15.466667,-88.016667,,1,,8953,283,144,,,,,,37863,,, +1100,USA,es,KAFY,,Bakersfield (CA),35.45,-118.946667,,0.8,,8931,318,144,,,,,,37918,,, +1100,MEX,es,XEBAC-AM R Asuncin,,Bahia Asuncin (bcs),27.116667,-114.316667,,1,,9495,310,145,,,,,,43757,,, +1100,MEX,es,XEBV-AM R Alegra,,Moroleon (gua),20.1007,-101.187878,,1,,9390,296,145,,,,,,43794,,, +1100,MEX,es,XEGRM-AM Soy Guerrero,,Ometepec (gue),16.696867,-98.403078,,1,,9521,292,145,,,,,,44078,,, +1100,BOL,,R Chaca,,Pucarani (lpz),-16.4,-68.483333,,1,,10449,248,148,,0900-1300,1234567,,,51993,,, +1100,BOL,,R Chaca,,Pucarani (lpz),-16.4,-68.483333,,1,,10449,248,148,,2030-0130,1234567,,,51993,,, +1100,PRU,,OBX1L R Star,,Chiclayo (lam),-6.75,-79.816667,,1,,10343,263,148,,,,,,40385,,, +1100,BOL,,CP55 R Universidad de Oruro,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1100-2300,123456,,,51992,,, +1100,BOL,,CP55 R Universidad de Oruro,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1200-2300,......7,,,51992,,, +1100,MEX,es,XETGO-AM R Caon,,Tlaltenango (zac),21.823683,-103.291858,,0.4,,9362,299,149,,,,0,,44817,,, +1100,PRU,,OBX7Z R LTC,,Juliaca (pun),-15.816667,-70.016667,,1,,10495,250,149,,,,,,40414,,, +1100,PRU,,OCY4G Sonorama R,,Huancayo (jun),-12.15,-75.266667,,1,,10513,256,149,,,,,,40441,,, +1100,EQA,,HCRG6,,Latacunga (cot),-0.916667,-78.566667,,0.4,,9745,265,150,,,,,,37085,,, +1100,MEX,es,XENAS-AM Unica,,Navojoa (son),27.081111,-109.453611,,0.25,,9236,306,150,,,,,,44435,,, +1100,MEX,es,XEPO-AM Imagen,,San Luis Potos (slp),22.150833,-100.980556,,0.25,,9193,297,150,,,,,,44567,,, +1100,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010619,,, +1100,ARG,,R Estilo,,Glew (ba),-34.9,-58.383333,,1,,11532,230,152,,0000-2400,1234567,,,51827,,, +1100,ARG,es,Libertad AM,,Rosario (sf),-32.955556,-60.658333,,1,,11476,233,152,,,,,,33000080,,, +1100,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010620,,, +1100,MEX,,XECAN-AM,,Cancn (qui),21.163125,-86.850736,,0.03,,8382,286,156,,,,,,43814,,, +1107,D,en,AFN PowerNet,,Kaiserslautern/Otterbach-Sambach (rlp),49.490833,7.7175,,10,,305,162,50,,0000-2400,1234567,2,,920,,, +1107,D,en,AFN PowerNet,,Vilseck/Rose Barracks (bay),49.644656,11.783611,,10,,466,124,52,,0000-2400,1234567,9956,,922,,, +1107,SRB,sr,R Beograd 1,,Novi Sad/Orlovat (Voj-sdb),45.274078,20.528264,,60,,1282,121,52,,0000-2400,1234567,11,,943,,, +1107,E,es,RNE R 5,,Logroo/La Grajera (RNE) (RIO-LO),42.442831,-2.512136,,25,,1266,215,56,,0000-2400,1234567,,,927,,, +1107,E,es,RNE R 5,,Santander/Rostro (CNT-S),43.477361,-3.852031,,20,,1226,223,56,,0000-2400,1234567,,,924,,, +1107,G,en,TalkSPORT,,Lydd/Romney Marsh (EN-KNT),50.950972,0.915694,,2,,401,253,58,,0000-2400,1234567,,,935,,, +1107,E,es,RNE R 5,,Cceres/Aldea del Cano (RNE) (EXT-CC),39.346889,-6.337194,,24,,1725,220,60,,0000-2400,1234567,997,,923,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0815-1208,12345..,,,925,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0815-1230,.....67,,,925,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1300-1400,12345..,,,925,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1300-2300,.....67,,,925,,, +1107,E,es,RNE R 5,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1415-2300,12345..,,,925,,, +1107,E,es,RNE R 5,,Teruel/La Muela (RNE) (ARA-TE),40.341664,-1.129378,,10,,1429,207,61,,0000-2400,1234567,,,926,,, +1107,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0630-0650,12345..,,,925,,, +1107,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0711-0800,.....67,,,925,,, +1107,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,2300-0625,1234..7,,,925,,, +1107,E,es,RNE R Nacional,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,2300-0710,....56.,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0625-0630,12345..,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0650-0700,12345..,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0700-0800,12345..,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0800-0815,1234567,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1208-1300,12345..,,,925,,, +1107,E,es,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,1400-1415,12345..,,,925,,, +1107,E,pt,RNE R.5 TN Ponferrada,,Ponferrada/Fuentesnuevas (RNE) (CAL-LE),42.573056,-6.649167,,10,,1442,228,61,,0710-0711,.....67,,,925,,, +1107,G,en,TalkSPORT,,Boston/Kirton Drove (EN-LIN),52.986111,-0.124444,,1,,452,285,62,,0000-2400,1234567,,,934,,, +1107,G,en,TalkSPORT,,Duxhurst (EN-SUR),51.193528,-0.200167,,1,,467,260,62,,0000-2400,1234567,,,933,,, +1107,G,en,TalkSPORT,,Fareham (EN-HPS),50.849306,-1.226833,,1,,547,258,62,,0000-2400,1234567,,,932,,, +1107,G,en,Moray Firth R,,Tarbat Ness (Inverness) (SC-HIL),57.831639,-3.803333,,1.5,,909,318,64,,0000-2400,1234567,6,,929,,, +1107,G,en,TalkSPORT,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,1,,718,259,64,,0000-2400,1234567,,,931,,, +1107,G,en,TalkSPORT,,Wallasey (EN-MER),53.425667,-3.046861,,0.5,,652,287,67,,0000-2400,1234567,0,,930,,, +1107,I,it,RAI Lazio,,Roma/Monte Ciocci (rm),41.909378,12.442044,,1,,1222,156,69,,0620-0630,123456,,,936,,, +1107,I,it,RAI Lazio,,Roma/Monte Ciocci (rm),41.909378,12.442044,,1,,1222,156,69,,1110-1130,123456,,,936,,, +1107,I,it,RAI Lazio,,Roma/Monte Ciocci (rm),41.909378,12.442044,,1,,1222,156,69,,1140-1200,......7,,,936,,, +1107,I,it,RAI R1,,Roma/Monte Ciocci (rm),41.909378,12.442044,,1,,1222,156,69,,0000-2400,1234567,,,936,,, +1107,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400045,,, +1107,AFG,,R Afghanistan,,Kabul/Pol-e Charkhi (kab),34.535806,69.338,,400,,5264,86,84,,0100-1930,1234567,16,,2080,,, +1107,IRN,fa,IRIB R Khorasan-e Razavi,,Sabzevar (rkh),36.186967,57.655344,,50,,4346,93,84,,0230-2003,1234567,2,,937,,, +1107,NIG,en,FRCN Kaduna,,Kaduna/Jaji (kdn),10.818433,7.566456,,25,,4593,178,89,,0400-2305,1234567,,,2466,,, +1107,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/Hutubi-XJTS631 (XJ),44.160694,86.923014,,120,,5727,65,94,,0000-1800,1234567,9,,49668,,, +1107,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Maralal/Kisima (rif),0.903114,36.776639,,100,,6356,143,101,,0200-2110,1234567,,,1966,,, +1107,IND,,AIR South,,Gulbarga (KA),17.279722,76.825,,20,,7169,94,116,,0025-0400,1234567,9937,,49670,,, +1107,IND,,AIR South,,Gulbarga (KA),17.279722,76.825,,20,,7169,94,116,,0700-0930,1234567,9937,,49670,,, +1107,IND,,AIR South,,Gulbarga (KA),17.279722,76.825,,20,,7169,94,116,,1200-1738,1234567,9937,,49670,,, +1107,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Balikun=Barkol/XJTS8102 (XJ),43.597778,93.046111,,1,,6141,62,118,,2330-1800,1234567,,,36200502,,, +1107,CHN,zh,Jilin RGD,,Yushu (JL),44.833333,126.533333,,10,,7812,41,125,,2120-1505,1234567,,,36201238,,, +1107,CHN,,Hebi JGD,,Hebi (HE),35.9,114.2,,10,,7994,54,127,,,,,,49664,,, +1107,CHN,zh,Jilin RGD,,Changbai (JL),41.416667,128.2,,10,,8203,42,129,,2120-1505,1234567,,,36200501,,, +1107,CHN,zh,Jilin RGD,,Hunchun (JL),42.866667,130.35,,10,,8163,39,129,,2120-1505,1234567,,,36201048,,, +1107,THA,th,Mor. Kor.,,Samut Sakhon/Suan Luang (ssk),13.678889,100.328611,,20,,9075,78,131,,0000-2400,1234567,,,49687,,, +1107,J,ja,JOCF MBC Minami Nihon Hoso,,Kagoshima (kyu-kag),31.72,130.723056,,20,,9238,45,132,,0000-2400,1234567,,,49675,,, +1107,CHN,,Jiaxing RGD,,Jiaxing (ZJ),30.770833,120.8125,,10,,8817,53,133,,2130-1530,1234567,,,49665,,, +1107,KOR,ko,HLAV MBC,,Pohang/Yeongil (gsb),36.0775,129.550556,,10,,8768,44,133,,0000-2400,1234567,,,49680,,, +1107,CHN,,Xiamen RGD News,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,10,,9229,58,134,,????-1700,1234567,,,49669,,, +1107,CHN,zh,Jilin RGD,,Songyuan (JL),45.1625,124.849778,,1,,7706,42,134,,2120-1505,1234567,,,36200495,,, +1107,MWI,,MBC R 1,,Nkhotakota (nkt),-12.958808,34.297817,,1,,7716,151,134,,0253-2200,1234567,,,2465,,, +1107,THA,th,Thor. Phor. Song,,Khon Kaen/Fort Si Phatcharin (kkn),16.458611,102.848333,,10,,9000,75,134,,????-1505,1234567,,,49688,,, +1107,CHN,,Hainan RGD,,Tongshi=Tongzha (HA),18.734444,109.5925,,10,,9236,68,135,,2130-1600,1234567,,,49667,,, +1107,CHN,zh,Jilin RGD,,Fuyu/Sanchahe (JL),44.983333,126.016667,,1,,7775,41,135,,2120-1505,1234567,,,36200499,,, +1107,CHN,zh,Jilin RGD,,Jilin Shi (JL),43.8,126.5,,1,,7905,41,136,,2120-1505,1234567,,,49663,,, +1107,CHN,zh,Jilin RGD,,Siping (JL),43.166667,124.333333,,1,,7864,43,136,,2120-1505,1234567,,,36200497,,, +1107,CHN,zh,Jilin RGD,,Songshan (JL),42.766667,126.566667,,1,,8004,42,137,,2120-1505,1234567,,,36200493,,, +1107,J,ja,JOMR MRO Hokoriku Hoso,,Kanazawa (chu-ish),36.538589,136.614344,,5,,9040,38,137,,0000-2400,1234567,,,49676,,, +1107,CHN,,Tongling RGD,,Tongling (AH),30.95,117.7,,3,,8629,55,138,,,,,,49666,,, +1107,CHN,zh,Jilin RGD,,Antu (JL),42.583333,128.333333,,1,,8100,41,138,,2120-1505,1234567,,,36200504,,, +1107,CHN,zh,Jilin RGD,,Baishan (JL),41.95,126.433333,,1,,8073,42,138,,2120-1505,1234567,,,36200503,,, +1107,CHN,zh,Jilin RGD,,Songjianghe/JLTS154 (JL),42.158839,127.475194,,1,,8101,42,138,,2120-1505,1234567,,,36200500,,, +1107,CHN,zh,Jilin RGD,,Songjiangzhen (JL),42.575,128.333333,,1,,8101,41,138,,2120-1505,1234567,,,36200496,,, +1107,CHN,zh,Jilin RGD,,Tumen (JL),42.966667,129.85,,1,,8131,40,138,,2120-1505,1234567,,,36200494,,, +1107,CHN,zh,Jilin RGD,,Wangqing (JL),43.316667,129.75,,1,,8094,40,138,,2120-1505,1234567,,,36201047,,, +1107,PHL,,DWDY-AM,,Cauayan (isa),16.933333,121.766667,,10,,10146,60,138,,,,,,49683,,, +1107,PHL,,DZOM-AM,,Calapan (orm),13.4,121.166667,,5,,10437,62,141,,2100-1500,1234567,,,49682,,, +1107,INS,id,RRI Pro-1/Pro-4,,Yogyakarta/Seturan (YO-yog),-7.771111,110.406389,,10,,11643,84,142,,2155-????,1234567,,,49673,,, +1107,PHL,,DYIN-AM Bombo Radyo,,Kalibo (akl),11.716667,122.35,,5,,10664,62,142,,2030-1400,1234567,,,49685,,, +1107,CHN,,Pingxiang RGD,,Pingxiang (JX),27.616667,113.85,,1,,8707,60,143,,,,,,36200498,,, +1107,J,,MRO, Hokoriku Hoso,,Nanao (chu-ish),37.033333,136.95,,1,,9005,38,144,,0000-2400,1234567,,,49678,, +1107,J,ja,MBC Minami Nihon Hoso,,Akune (kyu-kag),32.061989,130.207958,,1,,9181,45,144,,0000-2400,1234567,,,49674,,, +1107,J,ja,MBC Minami Nihon Hoso,,Okuchi/Hishikari (kyu-kag),32.03,130.605833,,1,,9203,45,144,,0000-2400,1234567,,,49677,,, +1107,J,ja,MBC Minami Nihon Hoso,,Sendai (kyu-kag),31.810833,130.290556,,1,,9209,45,144,,,,,,31400029,,, +1107,PHL,,DXBB-AM Super Radyo,,General Santos City (sco),6.1,125.166667,,5,,11355,63,145,,0000-2400,1234567,,,49684,,, +1107,J,,MRO, Hokoriku Hoso,,Wajima (chu-ish),37.4,136.9,,0.1,,8967,38,154,,0000-2400,1234567,,,49679,, +1107,INS,id,RRI Pro-1,,Kupang (NT-kpg),-10.105494,123.767864,,1,,12743,74,156,,0850-0215,1234567,,,49672,,, +1107,PNG,,NBC Karai-R Manus,,Alotau (mba),-10.3,150.333333,,2,,14345,48,158,,1930-1400,1234567,,,49686,,, +1107,AUS,,2EA SBS R,,Sydney/Homebush Bay (NSW),-33.840319,151.077883,,5,,16549,68,162,,0000-2400,1234567,1,,49662,,, +1107,NZL,en,R Live,,Tauranga/Papamoa (BOP),-37.722222,176.339444,,1,,18233,30,174,,,,,,32500010,,, +1110,USA,,WYRM,,Norfolk (VA),36.942778,-76.532222,,50,,6414,290,104,,,,,,43544,,, +1110,USA,,WCCM,,Salem (NH),42.761667,-71.270278,,5,,5649,292,107,,,,996,,40975,,, +1110,USA,,WPMZ,,East Providence (RI),41.827778,-71.369167,,5,,5721,291,107,,,,9975,,42715,,, +1110,USA,,WBT,,Charlotte (NC),35.132222,-80.889722,,50,,6834,292,108,,,,9977,,40912,,, +1110,USA,,WUPE,,Pittsfield (MA),42.439444,-73.291667,,5,,5799,293,108,,,,9999,,43257,,, +1110,USA,,WNAP,,Norristown (PA),40.134722,-75.3125,,4.8,,6095,292,111,,,,,,42427,,, +1110,USA,en,KFAB,,Omaha (NE),41.119722,-96.001667,,50,,7249,306,113,,,,18,,38370,,, +1110,USA,,WGNZ,,Fairborn (OH),39.664722,-83.943889,,5,,6666,297,117,,1200-2400,1234567,,,41541,,, +1110,USA,,WSFW,,Seneca Falls (NY),42.915278,-76.774444,,1,,5981,296,117,,,,,,42987,,, +1110,USA,,WMBI,,Chicago (IL),41.928056,-88.006944,,4.2,,6729,302,118,,,,,,42282,,, +1110,ALS,,KAGV,,Big Lake (AK),61.634167,-149.793333,,10,,7194,348,119,,0000-2400,1234567,9993,,37924,,, +1110,USA,,WTBQ,,Warwick (NY),41.280833,-74.362778,,0.5,,5950,293,120,,,,,,43114,,, +1110,USA,,WWBJ,,Martinsburg (PA),40.303889,-78.266389,,1,,6267,294,120,,,,,,41930,,, +1110,USA,en,KVTT,,Mineral Wells (TX),33.330278,-97.735556,,50,,8011,302,120,,,,,,38695,,, +1110,USA,,WUNN,,Mason (MI),42.551111,-84.404167,,1,,6469,300,122,,,,,,43263,,, +1110,USA,en,WTIS,,Tampa (FL),27.873889,-82.631389,,10,,7538,287,122,,1230-2130,......7,,,43144,,, +1110,USA,en,WTIS,,Tampa (FL),27.873889,-82.631389,,10,,7538,287,122,,1230-2200,123456,,,43144,,, +1110,USA,en,WMUX,,Hurricane (WV),38.444722,-82.015,,1,,6643,295,123,,,,,,42587,,, +1110,CUB,es,R Angulo,,Holgun (ho),20.859947,-76.272811,,10,,7701,278,124,,,,0,,36572,,, +1110,VEN,,YVQT R Carupano,,Carpano (suc),10.663333,-63.286667,,10,,7692,260,124,,0900-0400,1234567,,,45434,,, +1110,USA,,KGFL,,Clinton (AR),35.558333,-92.458889,,5,,7511,300,125,,,,,,38470,,, +1110,USA,,WSLV,,Ardmore (TN),34.993056,-86.856111,,2.5,,7219,295,125,,,,,,43021,,, +1110,MEX,es,XERED-AM R Red,,San Jernimo Tepetlacalco (mex),19.519617,-99.204711,,50,,9319,294,128,,,,,,44667,,, +1110,VEN,es,YVRX Deportes Union R,,Valencia (cbb),10.166667,-68,,10,,8055,264,128,,,,,,45451,,, +1110,CAN,en,CBLI,,Deep River (ON),46.088889,-77.485556,,0.04,,5797,299,129,,,,,,20109148,,, +1110,CAN,fr,CBON-10,,Matachewan (ON),47.9425,-80.645278,,0.04,,5851,303,129,,,,,,20109147,,, +1110,USA,,WKDZ,,Cadiz (KY),36.8825,-87.845556,,0.79,,7125,298,129,,,,,,41992,,, +1110,USA,,WTOF,,Bay Minette (AL),30.869444,-87.769167,,2.5,,7617,293,129,,,,,,40818,,, +1110,CLM,es,HJZE,,Sincelejo (suc),9.316667,-75.366667,,15,,8631,269,131,,,,,,37661,,, +1110,USA,,KDIS,i,Pasadena (CA),34.113889,-117.9975,,20,,9014,316,131,,,,,,38265,,, +1110,USA,,WBIB,,Centreville (AL),32.966944,-87.150278,,1,,7404,294,131,,,,,,40856,,, +1110,USA,,WCBR,,Richmond (KY),37.735833,-84.268056,,0.25,,6838,296,131,,,,,,40957,,, +1110,USA,,WKRA,,Holly Springs (MS),34.786389,-89.416667,,1,,7392,297,131,,,,,,42061,,, +1110,PTR,es,WVJP,,Caguas (PR),18.223611,-66.019722,,0.5,,7226,268,132,,0000-2400,1234567,,,43300,,, +1110,USA,en,KBND,,Bend (OR),44.106944,-121.244167,,5,,8200,324,132,,,,0,,38068,,, +1110,USA,,KTTP,,Pineville (LA),31.364444,-92.454167,,2,,7865,297,133,,,,,,39545,,, +1110,CLM,,HJNC,,Ibagu (tol),4.416667,-75.216667,,10,,9049,266,134,,,,,,37581,,, +1110,CLM,es,HJDI,,Medelln (ant),6.266667,-75.566667,,9,,8910,268,134,,,,,,37389,,, +1110,CLM,es,HJEW Oxigeno 1110,,Cali (val),3.45,-76.466667,,10,,9219,266,134,,,,1,,37424,,, +1110,CLM,es,HJJP,,Villavicencio (met),4.116667,-73.7,,10,,8972,265,134,,,,,,37512,,, +1110,USA,,KYKK,,Humble City (NM),32.816389,-103.232222,,5,,8370,305,134,,,,,,39851,,, +1110,USA,,WUAT,,Pikeville (TN),35.605,-85.187222,,0.25,,7066,295,134,,,,,,43250,,, +1110,CLM,es,HJGP La Voz del Rio Arauca,,Arauca (ara),7.033333,-70.766667,,5,,8516,264,135,,,,,,37459,,, +1110,USA,,KTEK,,Alvin (TX),29.380833,-95.2375,,2.5,,8205,297,135,,,,,,39467,,, +1110,USA,,WOMN,,Franklinton (LA),30.859444,-90.165833,,1,,7767,295,135,,,,,,42600,,, +1110,ARG,es,LS1 R de la Ciudad/La 1110,,Buenos Aires/Dique Lujn (df),-34.367167,-58.711139,,25,,11501,230,138,,0000-2400,1234567,,,39923,,, +1110,B,pt,ZYH620 Rdio Litoral de Cascavel,,Cascavel (CE),-4.137889,-38.234767,,0.25,,7532,229,138,,,,,,36901852,,, +1110,B,pt,ZYJ471 Rdio Cultura Fluminense,,Campos dos Goytacazes (RJ),-21.786464,-41.320222,,5,,9429,224,138,,,,9,,36901845,,, +1110,DOM,,HITC R Jarabacoa,,Jarabacoa (veg),19.066667,-70.666667,,0.25,,7472,272,138,,1000-0400,1234567,,,37257,,, +1110,PRU,es,OAZ4W R Feliz Peru,,Lima/Puente Piedra (lim),-11.866667,-77.066667,,12,,10607,258,138,,,,987,,37000008,,, +1110,USA,pa,KRPA,,Oak Harbor (WA),48.290833,-122.707778,,0.5,,7856,327,139,,,,,,39696,,, +1110,USA,,WJML,,Petoskey (MI),45.334722,-84.926111,,0.01,,6288,303,140,,,,76,,41897,,, +1110,B,pt,ZYH782 Rdio Redentor AM,,Santo Antnio do Descoberto (GO),-15.901889,-48.118317,,2,,9199,232,141,,,,,,36901849,,, +1110,CLM,es,HJPA La Voz de las Islas,,San Andrs (sap),12.566667,-81.708333,,1,,8781,276,143,,,,,,37618,,, +1110,MEX,es,XEOQ-AM,,Ro Bravo (tam),25.998778,-98.151517,,1,,8678,297,143,,,,,,44505,,, +1110,EQA,,HCFC5,,Cuenca (azu),-2.866667,-79.033333,,2,,9949,265,144,,,,,,36933,,, +1110,HND,,HRLP25,,Choluteca (cho),13.366667,-87.166667,,1,,9079,281,144,,,,,,37789,,, +1110,MEX,es,XEHTY-AM La Tremenda,,Martnez de la Torre (vcz),20.05,-97.033333,,1,,9136,293,144,,,,,,44941,,, +1110,NCG,,YNMT R Momotombo,,La Paz Centro (leo),12.416667,-86.95,,1,,9148,280,144,,,,,,45175,,, +1110,B,pt,ZYL267 Rdio Aurilndia,,Nova Lima (MG),-19.990833,-43.834733,,1,,9374,227,145,,,,,,36901851,,, +1110,GTM,,TGMK R Verapaz,,Cobn (esl),14.316667,-91.016667,,1,,9253,285,145,,,,,,40513,,, +1110,MEX,es,XELEO-AM La Rancherita,,Len (gua),21.173656,-101.657189,,1,,9322,297,145,,,,,,44302,,, +1110,CHL,,CD111 R La Frontera,,Temuco (AR),-38.716667,-72.566667,,10,,12643,237,146,,1000-0400,1234567,,,35854,,, +1110,EQA,,HCEG1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36912,,, +1110,HWA,en,KAOI,,Kihei (HI),20.8225,-156.454167,,5,,11736,343,146,,0000-2400,1234567,999,,37955,,, +1110,MEX,es,XEWR-AM R Guadalupana,,Ciudad Jurez (chi),31.736111,-106.486111,,0.5,,8647,307,146,,,,,,45033,,, +1110,USA,,KLIB,,Roseville (CA),38.739444,-121.213889,,0.5,,8715,321,146,,,,9986,,38812,,, +1110,B,pt,ZYI392 Rdio Ponta Por,,Ponta Por/Rua Rio Branco 1301 (MS),-22.522144,-55.724044,,1,,10244,235,148,,,,,,36901838,,, +1110,MEX,es,XETUX-AM Aro,,Tuxtepec (oax),18.09,-96.113889,,0.5,,9251,291,148,,,,,,44870,,, +1110,PRU,,OCX2U R Jan,,Jan (caj),-5.7,-78.783333,,1,,10181,263,148,,,,,,37000072,,, +1110,URG,,CX111 R Paso de los Toros,,Paso de los Toros (ta),-32.766667,-56.466667,,2,,11236,230,148,,1100-0200,1234567,,,51719,,, +1110,B,pt,ZYK544 Rdio Jovem Luz,,Araatuba (SP),-21.191628,-50.486356,,0.5,,9833,231,149,,,,,,36901846,,, +1110,EQA,,HCRP6,,Pelileo (tun),-1.316667,-78.516667,,0.5,,9777,265,149,,,,,,37105,,, +1110,MEX,es,XEPU-AM,,Monclova (coa),26.904167,-101.412778,,0.25,,8793,300,149,,,,,,44579,,, +1110,MEX,es,XETEO-AM Aro,,Teotitln de Flores Magn (oax),18.133333,-97.083333,,0.4,,9309,292,149,,,,,,34900024,,, +1110,B,pt,ZYJ241 Rdio Paiquer AM,,Londrina (PR),-23.233333,-51.141667,,0.5,,10062,231,150,,,,,,36901850,,, +1110,MEX,es,XEVS-AM Mxima 96,,Villa de Seris (son),29.049906,-110.967044,,0.25,,9136,308,150,,,,,,44987,,, +1110,B,,ZYJ253,,So Jos dos Pinhais (PR),-25.516667,-49.216667,,0.5,,10180,228,151,,,,,,45979,,, +1110,B,pt,ZYJ356 Rdio Clube de Ubirata AM,,Ubirat (PR),-24.553056,-52.993333,,0.5,,10285,232,151,,,,,,36901836,,, +1110,B,pt,ZYJ752 Rdio Cultura AM,,Florianpolis (SC),-27.491111,-48.528056,,0.5,,10335,227,151,,,,,,36901841,,, +1110,B,pt,ZYL205 Rdio Planalto de Araguari,,Araguari (MG),-18.642042,-48.218489,,0.25,,9468,231,151,,,,,,36901839,,, +1110,B,pt,ZYK592 Rdio Ibitinga-Ternura FM,,Ibitinga/Fazenda Vista Alegre (SP),-21.774164,-48.835856,,0.25,,9801,230,152,,,,,,36901848,,, +1110,B,pt,ZYK617 Rdio Transamrica,,Moji-Mirim (SP),-22.459978,-46.976564,,0.25,,9772,228,152,,,,,,36901840,,, +1110,B,pt,ZYJ743 Rdio Caanjur,,Caador (SC),-26.748611,-50.993056,,0.25,,10388,229,154,,,,,,36901843,,, +1110,B,,ZYJ746,,Chapec (SC),-27.1,-52.616667,,0.25,,10506,230,155,,,,,,46159,,, +1110,B,pt,ZYJ812 Rdio So Carlos,,So Carlos (SC),-27.077778,-53.019444,,0.25,,10525,230,155,,,,,,36901847,,, +1110,B,pt,ZYK306 Rdio Sobradinho AM,,Sobradinho (RS),-29.45,-53.036111,,0.25,,10749,229,155,,,,,,36901842,,, +1110,B,pt,ZYK364 Rdio Solaris AM,,Antnio Prado (RS),-28.861667,-51.281111,,0.25,,10604,228,155,,,,,,36901844,,, +1110,B,pt,ZYK257 Rdio Cultura AM,,Jaguaro (RS),-32.548333,-53.39,,0.25,,11058,228,156,,,,,,36901853,,, +1110,B,pt,ZYK325 Rdio Cruzeiro do Sul,,Itaqui (RS),-29.147222,-56.481667,,0.25,,10902,232,156,,,,,,36901835,,, +1110,MEX,es,XEPVJ-AM Ke Buena,,Puerto Vallarta (jal),20.651389,-105.228889,,0.02,,9584,299,163,,,,,,44585,,, +1112,RUS,,RL,b,Zhiguli,53.354167,49.291667,,0.025,,2847,70,101,,,,,L1110 U1130 30.0s,IDx2,85866,, +1115,MRC,,SNRT Al Ida Al-Watania,,Ouarzazate (smd),30.900494,-6.9184,,5,,2597,210,76,,,,8,,5900005,,, +1115,BOL,,R Difusoras Independencia,,Atocha (pts),-20.933333,-66.233333,,1,,10715,244,149,,0930-0300,1234567,,,51994,,, +1116,HOL,nl,R Bloemendaal,,Bloemendaal (nho),52.404264,4.604733,,0.5,,127,286,53,,0800-2000,......7,,,951,,, +1116,HOL,nl,R Bloemendaal,,Bloemendaal (nho),52.404264,4.604733,,0.5,,127,286,53,,1100-1200,.2.....,,,951,,, +1116,HNG,hu,MR Dank Rdi,,Miskolc (BAZ),48.100319,20.830356,,15,,1118,108,56,,0325-2315,1234567,9998,,949,,, +1116,G,,BBC Asian Network,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,1900-0100,1234...,16,,946,,, +1116,G,,BBC Asian Network,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,2100-0100,....5..,16,,946,,, +1116,G,,BBC R Derby/BBC Asian Network,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,1800-0100,......7,16,,946,,, +1116,G,,BBC R Derby/BBC Asian Network,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,1900-2100,.....6.,16,,946,,, +1116,G,en,BBC R Derby,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,0100-1800,.....6.,16,,946,,, +1116,G,en,BBC R Derby,,Derby/Burnaston Lane (EN-DRB),52.87975,-1.55875,,1.2,,546,282,62,,0100-1900,1234.67,16,,946,,, +1116,E,es,SER,,Albacete/Carretera Mahora (CAM-AB),39.011444,-1.855667,,10,,1590,207,63,,0000-2400,1234567,9949,,944,,, +1116,HNG,hu,MR Dank Rdi,,Mosonmagyarvr (GMS),47.838639,17.297,,2.2,,911,117,63,,0325-2315,1234567,,,950,,, +1116,I,it,RAI R1,,Palermo/Monte Pellegrino (pa),38.161389,13.358472,,10,,1642,158,63,,0500-2300,1234567,,,953,,, +1116,E,es,SER,,Pontevedra (GAL-PO),42.465419,-8.710589,,5,,1560,233,66,,0000-2400,1234567,13,,945,,, +1116,G,en,BBC R 5 Live,,Saint Peter Port/Rohais (GUE),49.459889,-2.554444,,0.5,,695,248,67,,0100-0600,1234567,,,947,,, +1116,G,en,BBC R Guernsey,,Saint Peter Port/Rohais (GUE),49.459889,-2.554444,,0.5,,695,248,67,,0600-0100,1234567,,,947,,, +1116,RUS,ru,R Rossii,,Sochi/RV170 (KD),43.582,39.729056,,30,,2633,98,69,,0023-2100,1234567,9957,,961,,, +1116,IRN,fa,IRIB R Iran,,Ardakan (yzd),32.440589,53.909672,,200,,4373,101,78,,0000-2400,1234567,85,,1798,,, +1116,IRQ,,R Dar as-Salam,,Baghdad (bgh),33.333333,44.4,,20,,3677,110,81,,0400-2100,1234567,952,,47311,,, +1116,ARS,ar,BSKSA Idha'atu-i Jeddah,,Al-Madinah=Medinah (mdh),24.409678,39.534411,,20,,4158,125,86,,0000-2400,1234567,,,47085,,, +1116,IND,,AIR North/AIR R Kashmir,,Srinagar A (JK),34.116722,74.692556,,300,,5659,82,89,,0020-0445,1234567,,,49702,,, +1116,IND,,AIR North/AIR R Kashmir,,Srinagar A (JK),34.116722,74.692556,,300,,5659,82,89,,0630-0915,1234567,,,49702,,, +1116,IND,,AIR North/AIR R Kashmir,,Srinagar A (JK),34.116722,74.692556,,300,,5659,82,89,,1130-1740,1234567,,,49702,,, +1116,DJI,aa,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0300-0700,1234567,,,2473,,, +1116,DJI,aa,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,1100-1400,1234567,,,2473,,, +1116,DJI,aa,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,1800-2000,1234567,,,2473,,, +1116,DJI,fr,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0700-1100,1234567,,,2473,,, +1116,DJI,fr,RTD Djibouti,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,1400-1800,1234567,,,2473,,, +1116,CHN,zh,CNR 2,,Harbin/HLTS904 (HL),45.69,126.819394,,120,85,7746,40,114,,2100-1602,1234567,,,49696,,, +1116,CHN,,CNR 5 Zhonghua zhi Sheng,,Shaowu/SARFT751 (FJ),27.081667,117.277778,,600,120,8955,58,116,,2055-1705,1234567,,,49695,,, +1116,CHN,zh,Sichuan RGD Xinwen Guangbo,,Chengdu/SCTS520 (SC),30.906086,104.124883,,50,,7834,64,118,,2155-1605,1234567,,,49699,,, +1116,CHN,zh,Sichuan RGD Xinwen Guangbo,,Dazhou (SC),31.216667,107.5,,10,,8013,62,127,,,,,,36200490,,, +1116,CHN,,Hainan RGD,,Ledong/Huangliu (HA),18.516667,108.783333,,30,,9204,69,130,,,,,,49700,,, +1116,CHN,zh,Sichuan RGD Xinwen Guangbo,,Ganzi=Garz/SCTS532 (SC),31.619792,99.999333,,1,,7517,67,132,,,,,,36200489,,, +1116,CHN,zh,Sichuan RGD Xinwen Guangbo,,Aba=Ngawa/SCTS536 (SC),31.933333,101.716667,,1,,7598,65,133,,,,,,36200492,,, +1116,THA,th,Thor. Phor. Saam,,Phitsanulok/Fort Somdet Phra (psl),16.847778,100.261944,,10,,8795,77,133,,0000-2400,1234567,,,49727,,, +1116,THA,th,Sor. Wor. Thor. (R Thailand),,Phangnga (pgg),8.863056,98.336389,,10,,9362,83,135,,,,,,49728,,, +1116,TWN,,Han Sheng Kuangpo Tientai,,Taipei (TPS),25.085933,121.512869,,10,,9378,56,135,,2100-1600,1234567,,,49731,,, +1116,TWN,,Han Sheng Kuangpo Tientai,,Yilan (YL),24.753319,121.735689,,10,,9421,56,135,,2100-1600,1234567,,,52263,,, +1116,J,ja,JOAF RNB Nankai Hoso,,Matsuyama (shi-ehi),33.797378,132.7748,,5,,9136,42,137,,0000-1635,......7,,,49713,,, +1116,J,ja,JOAF RNB Nankai Hoso,,Matsuyama (shi-ehi),33.797378,132.7748,,5,,9136,42,137,,0000-2400,123456,,,49713,,, +1116,J,ja,JOAF RNB Nankai Hoso,,Matsuyama (shi-ehi),33.797378,132.7748,,5,,9136,42,137,,1850-2400,......7,,,49713,,, +1116,J,ja,JODR BSN Niigata Hoso,,Niigata (chu-nii),37.892222,139.094444,,5,,9009,36,137,,0000-1500,......7,,,49715,,, +1116,J,ja,JODR BSN Niigata Hoso,,Niigata (chu-nii),37.892222,139.094444,,5,,9009,36,137,,0000-2400,123456,,,49715,,, +1116,J,ja,JODR BSN Niigata Hoso,,Niigata (chu-nii),37.892222,139.094444,,5,,9009,36,137,,1850-2400,......7,,,49715,,, +1116,CHN,,Changshu News Channel,,Changshu (JS),31.65,120.733333,,3,,8733,52,138,,2130-1400,1234567,,,49698,,, +1116,TWN,,Ching-Cha Kuangpo Tientai,,Chupei (HC),24.81,121.020556,,5,,9376,56,138,,,,,,49729,,, +1116,TWN,,Ching-Cha Kuangpo Tientai,,Kaohsiung (KHS),22.688475,120.316889,,5,,9531,58,138,,,,,,49730,,, +1116,CHN,zh,Jining JGD,,Jining (SD),35.466667,116.583333,,1,,8164,53,139,,2200-1700,1234567,,,36201046,,, +1116,CHN,,Fuyang RGD Xinwen,,Fuyang (AH),32.929167,115.804167,,1,,8346,55,140,,,,,,49701,,, +1116,TWN,,BCC News Network,,Y-Li (HL),23.389722,121.33,,3.5,,9524,57,140,,0000-2400,1234567,,,49732,,, +1116,PHL,,DZLB-AM,,Los Banos (lag),14.15,121.216667,,5,,10370,62,141,,,,,,49721,,, +1116,PHL,,DYTR-AM,,Tagbilaran City/Dampas (boh),9.65,123.883333,,5,,10948,62,143,,????-1500,1234567,,,49722,,, +1116,CHN,,Hainan RGD,,Danzhou/Dongcheng Xiang (HA),19.516667,109.566667,,1,,9165,68,144,,,,,,36200491,,, +1116,J,ja,JOAL RNB, Nankai Hoso,,Niihama (shi-ehi),33.983333,133.316667,,1,,9143,42,144,,0000-1635,......7,,,49716,, +1116,J,ja,JOAL RNB, Nankai Hoso,,Niihama (shi-ehi),33.983333,133.316667,,1,,9143,42,144,,0000-2400,123456,,,49716,, +1116,J,ja,JOAL RNB, Nankai Hoso,,Niihama (shi-ehi),33.983333,133.316667,,1,,9143,42,144,,1850-2400,......7,,,49716,, +1116,J,ja,JOAM RNB, Nankai Hoso,,Uwajima (shi-ehi),33.2,132.55,,1,,9183,43,144,,0000-1635,......7,,,49718,, +1116,J,ja,JOAM RNB, Nankai Hoso,,Uwajima (shi-ehi),33.2,132.55,,1,,9183,43,144,,0000-2400,123456,,,49718,, +1116,J,ja,JOAM RNB, Nankai Hoso,,Uwajima (shi-ehi),33.2,132.55,,1,,9183,43,144,,1850-2400,......7,,,49718,, +1116,PHL,,DXAS-AM FEBC,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,1000-1300,1234567,,,49723,,, +1116,PHL,,DXAS-AM FEBC,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,2100-0100,1234567,,,49723,,, +1116,INS,id,PM7CLX R DBS,,Prabumulih Barat (SS-pra),-3.45,104.25,,1,,10845,86,150,,,,,,49709,,, +1116,INS,id,R Barani,,Bandung (JB-ban),-6.933611,107.726944,,1,,11387,85,152,,,,48,,35400013,,, +1116,INS,id,PM3BFX R Alawiyah,,Bekasi (JB-kbk),-6.266944,106.911944,,0.5,,11274,86,154,,,,,,49691,,, +1116,INS,id,PM8DBE R.Mitra Bayu Suara Utari,,Bantaeng (SN-ban),-5.55,119.95,,1,,12086,74,154,,,,,,49704,,, +1116,J,ja,JOAN RNB, Nankai Hoso,,Ozu (shi-ehi),33.516667,132.55,,0.1,,9153,43,154,,0000-1635,......7,,,49717,, +1116,J,ja,JOAN RNB, Nankai Hoso,,Ozu (shi-ehi),33.516667,132.55,,0.1,,9153,43,154,,0000-2400,123456,,,49717,, +1116,J,ja,JOAN RNB, Nankai Hoso,,Ozu (shi-ehi),33.516667,132.55,,0.1,,9153,43,154,,1850-2400,......7,,,49717,, +1116,J,ja,JOAS RNB Nankai Hoso,,Misho (shi-ehi),32.952778,132.533333,,0.1,,9206,43,154,,0000-2400,1234567,,,49714,,, +1116,J,ja,NBC Saga,,Imari (kyu-sag),33.266667,129.883333,,0.1,,9050,45,154,,,,,,31400075,,, +1116,J,ja,RNB, Nankai Hoso,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,0000-1635,......7,,,49719,, +1116,J,ja,RNB, Nankai Hoso,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,0000-2400,123456,,,49719,, +1116,J,ja,RNB, Nankai Hoso,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,1850-2400,......7,,,49719,, +1116,AUS,,6MM,,Mandurah/West Pinjarra (WA),-32.641917,115.803125,,2,,14087,98,157,,0000-2400,1234567,991,,49693,,, +1116,AUS,en,4BC Talkr 1116,,Brisbane/Nudgee (QLD),-27.35875,153.089722,,6.3,,16116,58,159,,0000-2400,1234567,9949,,49692,,, +1116,AUS,en,3AK SEN 1116,,Melbourne/Lower Plenty (VIC),-37.744556,145.110667,,5,,16456,80,161,,0000-2400,1234567,,,49694,,, +1116,NZL,en,RNZ National,,Nelson/Stoke (NSN),-41.329167,173.215278,,2.5,,18455,45,171,,0000-2400,1234567,,,49720,,, +1117,INS,id,R Carolina Arjuno,,Surabaya (JI-ksu),-7.233333,112.75,,0.25,,11754,81,159,,2355-????,1234567,9,,49565,,, +1120,USA,,WUST,,Washington (DC),38.904167,-77.165,,20,,6304,292,107,,1200-2400,1234567,,,43270,,, +1120,USA,,KMOX,,Saint Louis (MO),38.7225,-90.055,,50,,7107,300,111,,,,0,,38923,,, +1120,USA,,WBNW,,Concord (MA),42.448333,-71.4275,,1,,5681,292,114,,,,,,40888,,, +1120,USA,,WSME,,Camp Lejeune (NC),34.7175,-77.2825,,6,,6635,289,116,,,,,,43025,,, +1120,USA,es,WBBF,,Buffalo (NY),42.830556,-78.800278,,1,,6111,297,118,,,,,,42361,,, +1120,USA,es,WPRX,,Bristol (CT),41.658056,-72.9475,,0.5,,5833,292,118,,,,,,42734,,, +1120,USA,en,WKAJ,,Saint Johnsville (NY),42.999722,-74.691667,,0.4,,5846,295,119,,,,,,20000050,,, +1120,USA,,WKQW,,Oil City (PA),41.395833,-79.664722,,1,,6271,296,120,,,,9991,,42060,,, +1120,HTI,,R Magic,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52116,,, +1120,USA,,KPNW,,Eugene (OR),43.956667,-123.036111,,50,,8286,325,123,,,,110,,39150,,, +1120,USA,,KEOR,,Catoosa (OK),36.306944,-95.972778,,10,,7653,302,124,,,,,,38334,,, +1120,USA,,WTWZ,,Clinton (MS),32.350833,-90.339444,,10,,7652,296,124,,1300-0100,1234567,,,43239,,, +1120,DOM,es,HICN Metro 1120 AM Stereo,,Santo Domingo (sdo),18.475,-69.833333,,5,,7465,271,125,,0000-2400,1234567,,,37232,,, +1120,VEN,,YVSK R Difusora del Sur,,San Fernando de Apure (apu),7.833333,-67.5,,20,,8225,262,126,,,,,,51685,,, +1120,USA,es,WKCE,,Maryville (TN),35.842222,-83.7725,,1,,6958,294,127,,,,,,41972,,, +1120,VEN,es,YVXZ R Republica,,Maturin (mgs),9.75,-63.183333,,5,,7765,260,128,,,,,,51686,,, +1120,USA,en,WXJO,,Douglasville (GA),33.763333,-84.741111,,1,,7187,293,129,,1200-2400,1234567,,,43471,,, +1120,VEN,,YVMF Ondas del Lago Super Ondas,,Maracaibo (zul),10.666667,-71.666667,,10,,8261,267,130,,0000-2400,1234567,,,45379,,, +1120,B,pt,ZYK274 Rdio Rural AM,,Porto Alegre/Eldorado do Sul (RS),-30.015889,-51.31,,50,80,10715,227,132,,,,,,36901868,,, +1120,CLM,es,HJTI,,Ccuta (nsa),7.883333,-72.5,,10,,8560,266,132,,,,,,35901544,,, +1120,B,pt,ZYH598 Rdio Tupinamb,,Sobral (CE),-3.666667,-40.333333,,1,,7596,231,133,,,,,,36901863,,, +1120,CLM,es,HJKQ Besame,,Tunja (boy),5.566667,-73.366667,,10,,8822,265,133,,,,0,,37530,,, +1120,DOM,,R Antillas,,Santa Cruz de Barahona (bh),18.2,-71.1,,1,,7575,272,133,,,,,,52241,,, +1120,USA,,WHOG,,Hobson City (AL),33.613889,-85.855278,,0.5,,7269,294,133,,,,,,41675,,, +1120,USA,,WNWF,,Destin (FL),30.509444,-86.476111,,1,,7565,292,133,,,,,,42534,,, +1120,B,pt,ZYI778 Rdio Relgio Musical,,Paulista (PE),-7.957347,-34.870161,,1,,7744,224,134,,,,,,36901854,,, +1120,B,pt,ZYJ253 Rdio Eldorado do Paran,,So Jos dos Pinhais (PR),-25.553333,-49.2225,,25,,10184,228,134,,,,4,,36901866,,, +1120,PTR,es,WMSW,,Hatillo (PR),18.470278,-66.840556,,0.4,,7261,269,134,,1000-0200,1234567,6,,42396,,, +1120,CLM,es,HJGH Oxigeno,,Bucaramanga (sat),7.066667,-73.116667,,5,,8673,266,136,,,,2,,37453,,, +1120,CLM,es,HJQ92 Colombia Mia,,Yopal (cas),5.35,-72.4,,5,,8775,264,136,,,,,,35901542,,, +1120,CLM,es,HJJC,,Pereira (ris),4.816667,-75.7,,5,,9047,267,137,,,,,,35901545,,, +1120,CTR,,Unicn R,,San Jos (sjs),9.9,-84.033333,,5,,9171,276,137,,0000-2400,1234567,,,40606,,, +1120,EQA,,HCRV2,,Guayaquil (gua),-2.2,-79.866667,,10,,9947,266,137,,,,,,37118,,, +1120,NCG,es,YNCP R.CEPAD El Arco Iris del Amor,,Managua (mng),12.15,-86.283333,,5,,9126,280,137,,1100-0100,1234567,,,52223,,, +1120,USA,,KANN,,Roy (UT),41.058611,-112.069444,,1.1,,8083,316,137,,,,14,,37952,,, +1120,B,pt,ZYK367 Rdio Querencia AM,,Santo Augusto (RS),-27.86,-53.78,,10,,10639,230,139,,,,,,36901864,,, +1120,B,pt,ZYI687 Rdio Independncia,,Catol do Rocha (PB),-6.364533,-37.743933,,0.25,,7727,228,140,,,,,,36901861,,, +1120,B,pt,ZYJ285 Rdio Educadora,,Laranjeiras do Sul (PR),-25.37,-52.385833,,5,,10330,231,141,,,,,,36901862,,, +1120,EQA,,HCAS7,,Puyo (pas),-1.5,-78,,3,,9758,265,141,,,,,,36853,,, +1120,USA,,KLIM,,Limon (CO),39.274167,-103.713611,,0.25,,7824,309,141,,,,,,38817,,, +1120,B,pt,ZYH513 Rdio Belo Campo,,Belo Campo (BA),-15.0333,-41.263758,,1,,8759,227,143,,,,,,36901857,,, +1120,PNR,es,HOM21 R Sonora,,Villalobos (pnm),9.079722,-79.439444,,1,,8929,272,143,,1030-0300,1234567,,,37705,,, +1120,B,pt,ZYI215 Sim AM,,So Mateus (ES),-18.674444,-39.866389,,1,,9052,224,144,,,,,,36901860,,, +1120,CLM,,HJJC,,Cartago (val),4.716667,-75.916667,,1,,9070,267,144,,,,,,37504,,, +1120,GTM,,TGC R Uno 120 AM,,Ciudad de Guatemala (gut),14.65,-90.45,,1,,9186,284,144,,,,,,40484,,, +1120,HND,,HRTL,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37851,,, +1120,SLV,,YSLR,,San Salvador (ssl),13.716667,-89.166667,,1,,9182,283,144,,,,,,45295,,, +1120,ARG,,LV5 R Sarmiento,,San Juan (sj),-31.516667,-68.516667,,5,,11792,239,146,,0900-0400,1234567,,,40255,,, +1120,B,pt,ZYK660 Rdio Bandeirantes,,So Jos dos Campos (SP),-23.187006,-45.8706,,1,,9787,227,146,,,,,,36901870,,, +1120,EQA,,HCEB1,,San Gabriel (car),0.616667,-77.816667,,1,,9559,266,146,,,,,,36909,,, +1120,EQA,,HCLE1,,Maranon (pic),-0.233333,-79.216667,,1,,9730,266,146,,,,,,37006,,, +1120,B,pt,ZYN606 Rdio Concrdia,,Campo Grande (MS),-20.428258,-54.563722,,1,,9983,235,147,,,,,,36901867,,, +1120,BOL,,CP184 R Estacion El Dorado,,Trinidad (ebn),-14.8,-64.783333,,1,,10072,246,147,,1000-0100,1234567,,,36672,,, +1120,EQA,,HCNT3,,Once Catamay (loj),-3.983333,-79.283333,,1,,10064,264,147,,,,,,37046,,, +1120,MEX,es,XETQE-AM La Morena,,Tenosique (tab),17.45,-91.433333,,0.5,,9005,287,147,,,,,,44854,,, +1120,MEX,es,XETR-AM R Panormica,,Ciudad Valles (slp),21.961111,-98.996944,,0.5,,9088,295,147,,,,,,44855,,, +1120,URG,es,CW31 R Salto,,Salto (sa),-31.3775,-57.969722,,2.5,,11188,232,147,,1000-0300,1234567,,,36767,,, +1120,B,pt,ZYL272 Rdio Itatiaia,,Ouro Preto/Morro da Queimada (MG),-20.38125,-43.483772,,0.5,,9395,226,148,,,,,,36901865,,, +1120,BOL,,R Celestial El Milagro,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,1000-0100,123456,,,51996,,, +1120,BOL,,R Celestial El Milagro,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,1000-2400,......7,,,51996,,, +1120,MEX,es,XEGV-AM 1120 Noticias,,Quertaro (que),20.606464,-100.369536,,0.5,,9294,296,148,,,,,,44087,,, +1120,MEX,es,XERUY-AM R.Universidad,,Mrida (yuc),20.868564,-89.624556,,0.25,,8589,288,148,,,,,,44720,,, +1120,MEX,es,XEUNO-AM R Uno,,Guadalajara (jal),20.672667,-103.348056,,0.5,,9469,298,148,,,,,,44916,,, +1120,MEX,es,XEMX-AM MiC R,,Mexicali (bcn),32.624506,-115.502919,,0.27,,9035,314,149,,,,,,44420,,, +1120,PRG,,ZP24 R Nuevo Mundo,,San Lorenzo (cet),-25.395528,-57.485083,,1,,10609,235,149,,0900-0200,1234567,,,45519,,, +1120,MEX,es,XEZB-AM R Oro,,Oaxaca (oax),17.076667,-96.701944,,0.25,,9379,291,151,,,,,,45126,,, +1120,B,pt,ZYK671 Rdio Clube Imperial,,Taquaritinga/Fazenda Contendas (SP),-21.385525,-48.505978,,0.25,,9747,230,152,,,,,,36901858,,, +1120,B,pt,ZYL301 Rdio Sete Colinas,,Uberaba (MG),-19.726794,-47.920383,,0.25,,9557,230,152,,,,,,36901855,,, +1120,B,pt,ZYL332 Rdio Serra da Boa Esperana,,Boa Esperana (MG),-21.107964,-45.569289,,0.25,,9570,227,152,,,,,,36901869,,, +1120,USA,xx,KZSJ,,San Martin (CA),36.963611,-121.489444,,0.15,,8899,320,152,,,,9936,,39909,,, +1120,B,pt,ZYK631 Rdio AM 1120 Portofelicense,,Porto Feliz (SP),-23.214717,-47.495325,,0.25,,9871,228,153,,,,,,36901859,,, +1120,MEX,es,XEPOP-AM Frmula 1120,,Puebla/Av.15 de Mayo 2939 (pue),19.063142,-98.214644,,0.1,,9298,293,155,,,,,,44569,,, +1124.5,GRC,el,Master Rock,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,55,,3400056,,, +1125,BEL,fr,RTBF Vivacit,,Houdeng (wal-hnt),50.484656,4.140989,,10,,240,222,49,,0000-2400,1234567,9883,,962,,, +1125,LBY,ar,Idha'at Libya al-Hurra,,Al-Bayda'=El-Beida (jak),32.7815,21.797722,,500,,2481,144,55,,0800-2355,1234567,51,,973,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0625-0630,12345..,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0650-0700,12345..,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0800-0815,1234567,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1208-1300,12345..,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1230-1300,.....67,,,969,,, +1125,E,es,RNE Euskadi,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1400-1415,12345..,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0815-1208,12345..,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0815-1230,.....67,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1300-1400,12345..,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1300-2300,.....67,,,969,,, +1125,E,es,RNE R 5,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,1415-2300,12345..,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0630-0650,12345..,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0700-0800,12345..,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,0710-0800,.....67,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,2300-0625,1234..7,,,969,,, +1125,E,es,RNE R Nacional,,Vitoria/Berrosteguieta (PVA-VI),42.808236,-2.7105,,10,,1239,217,59,,2300-0710,....56.,,,969,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0625-0630,12345..,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0650-0700,12345..,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0800-0815,1234567,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1208-1300,12345..,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1230-1300,.....67,,,967,,, +1125,E,es,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1400-1415,12345..,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0815-1208,12345..,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0815-1230,.....67,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1300-1400,12345..,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1300-2300,.....67,,,967,,, +1125,E,es,RNE R 5,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,1415-2300,12345..,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0630-0650,12345..,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0700-0800,12345..,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0711-0800,.....67,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,2300-0625,1234..7,,,967,,, +1125,E,es,RNE R Nacional,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,2300-0710,....56.,,,967,,, +1125,E,pt,RNE Castilla y Len,,Soria/Valonsadero (RNE) (CAL-SO),41.796944,-2.505,,12,,1329,214,60,,0710-0711,.....67,,,967,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0625-0630,12345..,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0650-0700,12345..,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0800-0815,1234567,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1208-1300,12345..,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1230-1300,.....67,971,,966,,, +1125,E,es,RNE Comunitat Valenciana,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1400-1415,12345..,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0815-1208,12345..,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0815-1230,.....67,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1300-1400,12345..,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1300-2300,.....67,971,,966,,, +1125,E,es,RNE R 5,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,1415-2300,12345..,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0630-0650,12345..,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0700-0800,12345..,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,0710-0800,.....67,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,2300-0625,1234..7,971,,966,,, +1125,E,es,RNE R Nacional,,Castelln/Almazora (VAL-CS),39.933772,-0.004986,,10,,1440,202,61,,2300-0710,....56.,971,,966,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0625-0630,12345..,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0650-0700,12345..,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0800-0815,1234567,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1208-1300,12345..,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1230-1300,.....67,,,968,,, +1125,E,es,RNE Castilla La Mancha,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1400-1415,12345..,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0815-1208,12345..,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0815-1230,.....67,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1300-1400,12345..,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1300-2300,.....67,,,968,,, +1125,E,es,RNE R 5,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,1415-2300,12345..,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0630-0650,12345..,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0700-0800,12345..,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,0710-0800,.....67,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,2300-0625,1234..7,,,968,,, +1125,E,es,RNE R Nacional,,Toledo/San Bernardo (CAM-TO),39.872194,-4.062167,,10,,1579,215,63,,2300-0710,....56.,,,968,,, +1125,G,en,BBC R Wales,,Llandrindod Wells (WA-POW),52.235722,-3.391639,,1,,668,275,64,,0600-2400,1234567,0,,970,,, +1125,G,en,BBC WS,,Llandrindod Wells (WA-POW),52.235722,-3.391639,,1,,668,275,64,,0000-0600,1234567,0,,970,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0625-0630,12345..,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0650-0700,12345..,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0800-0815,1234567,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1208-1300,12345..,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1230-1300,.....67,0,,965,,, +1125,E,es,RNE Extremadura,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1400-1415,12345..,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0815-1208,12345..,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0815-1230,.....67,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1300-1400,12345..,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1300-2300,.....67,0,,965,,, +1125,E,es,RNE R 5,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,1415-2300,12345..,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0630-0650,12345..,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0700-0800,12345..,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,0710-0800,.....67,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,2300-0625,1234..7,0,,965,,, +1125,E,es,RNE R Nacional,,Badajoz/Granja Escuela (RNE) (EXT-BA),38.886792,-6.923994,,10,,1794,220,65,,2300-0710,....56.,0,,965,,, +1125,IRN,fa,IRIB R Qazvin,,Qazvin (qzv),36.106933,50.038789,,50,,3835,100,78,,0000-2400,1234567,20,,10800013,,, +1125,NGR,,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.535178,2.056989,,20,,4307,187,87,,0500-2200,......7,17,,2467,,, +1125,NGR,,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.535178,2.056989,,20,,4307,187,87,,0500-2300,123456,17,,2467,,, +1125,IRN,fa,IRIB R Iran,,Nehbandan (skh),31.542861,60.043861,,10,,4857,96,96,,,,,,972,,, +1125,IND,,AIR North,,Udaipur (RJ),24.575553,73.739756,,20,,6347,91,107,,0025-0430,1234567,,,49741,,, +1125,IND,,AIR North,,Udaipur (RJ),24.575553,73.739756,,20,,6347,91,107,,0700-0930,1234567,,,49741,,, +1125,IND,,AIR North,,Udaipur (RJ),24.575553,73.739756,,20,,6347,91,107,,1130-1740,1234567,,,49741,,, +1125,IND,,AIR Northeast,,Tezpur (AS),26.655,92.811667,,20,,7466,75,119,,0025-0430,1234567,990,,49740,,, +1125,IND,,AIR Northeast,,Tezpur (AS),26.655,92.811667,,20,,7466,75,119,,1000-1600,1234567,990,,49740,,, +1125,CLN,,FEBA India,,Puttalam (put),7.976542,79.802253,,50,350,8177,98,122,,0000-0045,1234567,1,,34700008,,, +1125,CLN,,FEBA India,,Puttalam (put),7.976542,79.802253,,50,350,8177,98,122,,1330-1545,1234567,1,,34700008,,, +1125,CHN,,Changjiang JGD,,Wuhan/Hongxia (HU),30.603333,114.246111,,50,,8464,58,125,,2055-1800,1234567,,,49739,,, +1125,THA,th,Sor. Wor. Thor. (R Thailand),,Chanthaburi/Sukhumvit Road (ctb),12.667222,102.109722,,20,,9283,78,132,,2200-1600,1234567,,,49757,,, +1125,CHN,zh,Hebei RGD Jingji Guangbo,,Baoding/HBTS662 (HB),38.932778,115.443056,,1,,7796,51,135,,2000-1600,1234567,,,36200488,,, +1125,CHN,zh,Hebei RGD Jingji Guangbo,,Langfang (HB),39.528333,116.729722,,1,,7812,50,135,,2000-1600,1234567,,,49737,,, +1125,CHN,zh,Hebei RGD Jingji Guangbo,,Shijiazhuang/HBTS717 (HB),37.830833,114.468889,,1,,7840,53,135,,2000-1600,1234567,,,49738,,, +1125,J,ja,JOAD NHK2,,Naha/Tomigusuku (kyu-oki),26.178333,127.704167,,10,,9613,50,136,,2030-1500,1.....7,,,49745,,, +1125,J,ja,JOAD NHK2,,Naha/Tomigusuku (kyu-oki),26.178333,127.704167,,10,,9613,50,136,,2030-1635,.2345..,,,49745,,, +1125,J,ja,JOAD NHK2,,Naha/Tomigusuku (kyu-oki),26.178333,127.704167,,10,,9613,50,136,,2030-1640,.....6.,,,49745,,, +1125,PHL,tl,DZWN-AM Bombo Radyo,,Dagupan City (pgs),16.033333,120.333333,,10,,10144,61,138,,,,,,49754,,, +1125,TWN,,Cheng Sheng BC,,Huwei (YL),23.7,120.433333,,5,,9444,57,138,,0000-2400,1234567,,,49759,,, +1125,VTN,vi,VOV Ty Ninh R,,Ty Ninh (tnh),11.288717,106.108392,,5,,9670,75,139,,2200-1200,1234567,,,49761,,, +1125,PHL,,DXGL-AM,,Butuan City (agn),8.933333,125.516667,,10,,11113,61,141,,,,,,49753,,, +1125,J,,NHK R 2,,Nayoro (hok),44.366667,142.466667,,1,,8492,31,142,,2030-1500,1.....7,,,49746,,, +1125,J,,NHK R 2,,Nayoro (hok),44.366667,142.466667,,1,,8492,31,142,,2030-1635,.2345..,,,49746,,, +1125,J,,NHK R 2,,Nayoro (hok),44.366667,142.466667,,1,,8492,31,142,,2030-1640,.....6.,,,49746,,, +1125,PHL,,DWAS-AM FEBC,,Legazpi City/San Joaquin (aby),13.183333,123.75,,5,,10611,60,142,,2130-1300,1234567,,,49756,,, +1125,J,ja,JOIZ NHK2,,Muroran (hok),42.315278,140.9825,,1,,8643,33,143,,2030-1500,1.....7,,,49744,,, +1125,J,ja,JOIZ NHK2,,Muroran (hok),42.315278,140.9825,,1,,8643,33,143,,2030-1635,.2345..,,,49744,,, +1125,J,ja,JOIZ NHK2,,Muroran (hok),42.315278,140.9825,,1,,8643,33,143,,2030-1640,.....6.,,,49744,,, +1125,J,ja,JOOC NHK2,,Obihiro (hok),42.981389,143.199444,,1,,8656,31,143,,2030-1500,1.....7,,,49748,,, +1125,J,ja,JOOC NHK2,,Obihiro (hok),42.981389,143.199444,,1,,8656,31,143,,2030-1635,.2345..,,,49748,,, +1125,J,ja,JOOC NHK2,,Obihiro (hok),42.981389,143.199444,,1,,8656,31,143,,2030-1640,.....6.,,,49748,,, +1125,J,,JOLC NHK2,,Tottori (chg-tot),35.516667,134.2,,1,,9034,41,144,,2030-1500,1.....7,,,49750,,, +1125,J,,JOLC NHK2,,Tottori (chg-tot),35.516667,134.2,,1,,9034,41,144,,2030-1635,.2345..,,,49750,,, +1125,J,,JOLC NHK2,,Tottori (chg-tot),35.516667,134.2,,1,,9034,41,144,,2030-1640,.....6.,,,49750,,, +1125,J,,NHK R 2,,Hagi (chg-yam),34.416667,131.4,,1,,9013,43,144,,2030-1500,1.....7,,,49743,,, +1125,J,,NHK R 2,,Hagi (chg-yam),34.416667,131.4,,1,,9013,43,144,,2030-1635,.2345..,,,49743,,, +1125,J,,NHK R 2,,Hagi (chg-yam),34.416667,131.4,,1,,9013,43,144,,2030-1640,.....6.,,,49743,,, +1125,J,,NHK R 2,,Takayama (chu-gif),36.133333,137.25,,1,,9106,38,144,,2030-1500,1.....7,,,49749,,, +1125,J,,NHK R 2,,Takayama (chu-gif),36.133333,137.25,,1,,9106,38,144,,2030-1635,.2345..,,,49749,,, +1125,J,,NHK R 2,,Takayama (chu-gif),36.133333,137.25,,1,,9106,38,144,,2030-1640,.....6.,,,49749,,, +1125,PHL,tl,DXGM-AM Super Radyo,,Davao City/Matina (dvs),7.080556,125.575,,5,,11289,62,144,,1955-1500,1234567,,,49755,,, +1125,TWN,,Ching-Cha Kuangpo Tientai,,Taitung (TT),22.745306,121.150433,,1,,9573,57,146,,,,,,49760,,, +1125,BOL,,R Crucena,,Cotoca (scz),-17.75,-62.997222,,0.5,,10230,243,151,,1130-2200,1234567,,,51997,,, +1125,BOL,,R Em. Cooperativa Poopo,,Poopo (oru),-18.383333,-66.983333,,0.3,,10533,246,154,,,,,,51998,,, +1125,J,,NHK R 2,,Niimi (chg-oka),34.966667,133.466667,,0.1,,9055,41,154,,2030-1500,1.....7,,,49747,,, +1125,J,,NHK R 2,,Niimi (chg-oka),34.966667,133.466667,,0.1,,9055,41,154,,2030-1635,.2345..,,,49747,,, +1125,J,,NHK R 2,,Niimi (chg-oka),34.966667,133.466667,,0.1,,9055,41,154,,2030-1640,.....6.,,,49747,,, +1125,VUT,,R Vanuatu,,Port Vila/Enten Lagoon (MW) (sef),-17.755972,168.361039,,10,,15881,29,156,,1900-1000,......7,,,49762,,, +1125,VUT,,R Vanuatu,,Port Vila/Enten Lagoon (MW) (sef),-17.755972,168.361039,,10,,15881,29,156,,1900-1115,123456,,,49762,,, +1125,AUS,,5MU,,Murray Bridge/Gifford Hill (SA),-35.153125,139.213972,,5,,15869,82,159,,0000-2400,1234567,997,,49736,,, +1125,INS,id,RPDT2 Luwu,,Palopo (SN-luw),-3,120.2,,0.25,,11873,73,159,,,,,,35400063,,, +1125,AUS,,1RPH,,Canberra/Gungahlin (ACT),-35.216472,149.125611,,2,,16533,72,166,,0000-2400,1234567,,,49735,,, +1125,AUS,,4RO/t,,Gladstone (QLD),-23.866667,151.233333,,0.5,,15691,57,169,,,,,,52290,,, +1125,NZL,,R Sport,,Napier/Pakowhai (HKB),-39.561111,176.866111,,1,,18439,31,175,,0000-2400,1234567,,,49752,,, +1125,NZL,,R Hauraki,,Dunedin/Centre Road (OTA),-45.886944,170.5675,,0.5,,18672,65,179,,,,,,49751,,, +1130,UKR,,PO,b,Poltava / Suprunovka (PO),49.5625,34.375,,0.025,,1972,87,93,,,,,,85868,,, +1130,RUS,,AK,b,Aleksandrovka (VG),49.354167,44.291667,,0.025,,2653,81,100,,,,,,85867,,, +1130,USA,en,WBBR,,New York/Carlstadt [NJ] (NY),40.810833,-74.04,,50,,5964,292,100,,,,9994,,40813,,, +1130,USA,en,WDFN,,Detroit (MI),42.110833,-83.197778,,50,,6431,299,104,,,,9891,,41156,,, +1130,USA,en,KTCN,,Minneapolis (MN),44.646667,-93.391944,,25,,6816,307,111,,,,999,,38372,,, +1130,USA,,WISN,,Milwaukee (WI),42.755,-88.081389,,10,,6668,302,114,,,,2,,41807,,, +1130,CAN,en,CKWX,,Vancouver (BC),49.155833,-123.068056,,50,,7786,328,118,,,,2,,36422,,, +1130,USA,,WLBA,,Gainesville (GA),34.279167,-83.775833,,10,,7085,293,118,,,,,,42128,,, +1130,USA,en,KWKH,,Shreveport (LA),32.705,-93.881944,,50,,7837,299,118,,,,9,,39721,,, +1130,CAN,fr,CBSI-23,,Port-Menier (QC),49.820833,-64.3475,,0.04,,4761,296,119,,,,,,20109149,,, +1130,USA,,WRRL,,Rainelle (WV),37.957778,-80.7625,,1,,6603,294,123,,,,,,42913,,, +1130,USA,,WCLW,,Eden (NC),36.5225,-79.765278,,1,,6653,292,124,,,,,,41032,,, +1130,USA,,WPYB,,Benson (NC),35.360833,-78.569167,,1,,6668,290,124,,,,,,42757,,, +1130,USA,,WYXE,,Gallatin (TN),36.410556,-86.454444,,2.3,,7078,296,124,,,,,,43558,,, +1130,B,pt,ZYI531 Rdio Marajoara,,Belm (PA),-1.472433,-48.472497,,10,,7845,240,125,,,,,,36901878,,, +1130,HTI,,4VBD,,Cap-Hatien (nrd),19.75,-72.2,,5,,7518,274,125,,,,,,35632,,, +1130,USA,,WECR,,Newland (NC),36.0775,-81.916389,,1,,6823,293,125,,,,,,41249,,, +1130,B,pt,ZYJ460 Rdio Nacional,,Rio de Janeiro/Jardim la Luz (RJ),-22.800194,-43.069972,,100,,9612,225,126,,,,0,,36901880,,, +1130,VEN,,YVRL R Ideal,,Macuto (Maiquetia) (vgs),10.604167,-66.916667,,10,,7943,263,126,,,,991,,45445,,, +1130,USA,,KTMR,,Edna (TX),29.319444,-97.976389,,25,,8375,299,127,,,,,,39511,,, +1130,USA,,WOFC,,Murray (KY),36.635556,-88.319444,,1.5,,7174,298,127,,,,,,42874,,, +1130,VEN,es,YVKQ R Popular,,Barquisimeto (lar),10.066667,-69.316667,,10,,8153,265,129,,0900-0400,1234567,899,,51687,,, +1130,USA,,WEDI,,Eaton (OH),39.748611,-84.583889,,0.25,,6698,298,130,,,,,,41252,,, +1130,PTR,,WOIZ,,Guayanilla (PR),18.0175,-66.772778,,0.7,,7295,268,131,,0900-0200,1234567,,,42579,,, +1130,USA,,WHHW,,Hilton Head Island (SC),32.200278,-80.724167,,0.5,,7059,289,131,,,,,,41460,,, +1130,USA,en,WALQ,,Carrville (AL),32.454722,-85.9325,,1,,7370,293,131,,1300-0100,1234567,,,40643,,, +1130,CLM,,HJTI,,Ccuta (nsa),7.866667,-72.516667,,10,,8563,266,132,,,,,,37644,,, +1130,CLM,es,HJAC Emisora Rio Mar,,Barranquilla (atl),10.941275,-74.843083,,10,,8454,270,132,,,,58,,37321,,, +1130,CLM,,HJFP,,Neiva (hui),2.816667,-75.266667,,10,,9193,265,134,,,,,,37440,,, +1130,CLM,es,HJQQ Oxigeno,,Pasto (nar),1.216667,-77.283333,,15,,9470,266,134,,,,10,,35901550,,, +1130,HND,,HRPL,,El Progreso (yor),15.333333,-87.816667,,10,,8951,283,134,,,,,,37824,,, +1130,USA,,KSDO,,San Diego (CA),32.851111,-116.964167,,10,,9085,315,134,,,,,,39335,,, +1130,USA,,WQFX,,Gulfport (MS),30.389167,-89.106389,,1,,7741,294,134,,,,,,42771,,, +1130,B,pt,ZYI783 Rdio Cultura do Nordeste,,Caruaru (PE),-8.29845,-35.950844,,1,,7830,225,135,,,,,,36901874,,, +1130,USA,,KRDU,,Dinuba (CA),36.484167,-119.265833,,6.2,,8846,318,135,,,,9983,,39230,,, +1130,USA,,WWBF,,Bartow (FL),27.908611,-81.825833,,0.5,,7482,287,135,,,,,,43356,,, +1130,CLM,es,HJVA R Vida,,Bogot D. C. (bdc),4.666667,-74.166667,,5,,8955,265,137,,,,981,,37375,,, +1130,DOM,,HIRL CDN R,,Santiago de los Caballeros (sto),19.433333,-70.666667,,0.25,,7441,272,137,,0000-2400,1234567,,,37292,,, +1130,MEX,es,XETOL-AM 1130 Noticias,,Ixtlahuaca (mex),19.493167,-99.733175,,5,,9354,294,138,,,,,,44846,,, +1130,B,pt,ZYH667 Rdio Patu de Senador Pompeu,,Senador Pompeu (CE),-5.5234,-39.491017,,0.25,,7733,230,140,,,,,,36901877,,, +1130,PNR,es,HOU80 Vox Noticias,,Aguadulce/Cerro Morado (ccl),8.236711,-80.582433,,2.5,,9081,273,140,,,,,,37734,,, +1130,EQA,,HCIR1,,Pomasqui (pic),-0.016667,-78.45,,3,,9658,266,141,,,,,,36975,,, +1130,MEX,es,XEYZ-AM La Poderosa,,Aguascalientes (agu),21.887125,-102.333556,,2.5,,9298,298,141,,,,,,45113,,, +1130,ARG,,R Tropicana,,Buenos Aires (df),-34.616667,-58.466667,,10,,11511,230,142,,,,,,51829,,, +1130,CLM,es,HJNH,,Magangue (bol),10.183333,-74.75,,1,,8513,269,142,,,,,,37586,,, +1130,EQA,,HCPV6,,Ambato (tun),-1.233333,-78.633333,,3,,9778,265,142,,,,,,37065,,, +1130,USA,ru,KQRR,,Mount Angel (OR),45.076389,-122.8075,,0.49,,8169,325,142,,,,,,20012538,,, +1130,EQA,,HCRD1,,Ibarra (imb),0.333333,-78.116667,,2,,9605,266,143,,,,,,37074,,, +1130,HND,,HRBT,,San Francisco de la Paz (ola),14.866667,-86.083333,,1,,8876,281,143,,,,,,37743,,, +1130,USA,,KBMR,,Bismarck (ND),46.810278,-100.736111,,0.024,,7023,313,143,,,,,,38061,,, +1130,USA,,KQNA,,Prescott Valley (AZ),34.629444,-112.315556,,1,,8688,312,143,,,,1,,39200,,, +1130,USA,en,WFNF,,Brazil (IN),39.512222,-87.138333,,0.02,,6870,299,143,,,,,,42977,,, +1130,ARG,,LRA21 R Nacional,,Santiago del Estero (se),-27.837386,-64.242133,,5,,11216,238,144,,0900-0400,1234567,,,39941,,, +1130,CLM,es,HJKL R Calidad,,Cali (val),3.433333,-76.516667,,1,,9224,267,144,,,,998,,35902898,,, +1130,HND,,HRDG,,Danli (elp),14.05,-86.566667,,1,,8980,281,144,,,,,,37745,,, +1130,NCG,,Voz Evanglica de Jalapa,,Jalapa (nsg),13.916667,-86.133333,,1,,8962,281,144,,,,,,33700014,,, +1130,SLV,,YSG,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,45276,,, +1130,SLV,,YSJA,,Santa Ana (sta),13.966667,-89.583333,,1,,9188,283,144,,,,,,45281,,, +1130,USA,,KILJ,,Mount Pleasant (IA),40.960556,-91.584722,,0.022,,7013,303,144,,,,,,38608,,, +1130,GTM,,TGVR Emisoras Unidas LV de la Costa Sur,,Retalhuleu (ret),14.516667,-91.666667,,1,,9278,285,145,,,,,,40553,,, +1130,MEX,es,XELUP-AM R Lupita,,El Conchal (nay),21.216803,-105.168694,,1,,9529,300,145,,,,,,44330,,, +1130,PRU,es,OAX4N R Bacn,,Lima (lim),-12.183333,-77.066667,,2.6,,10635,257,145,,,,932,,40310,,, +1130,URG,es,CX30 R Nacional,,Santiago Vzquez (mo),-34.795722,-56.320972,,5,,11416,228,145,,0000-2400,1234567,996,,36812,,, +1130,B,pt,ZYJ220 Rdio Castro,,Castro/Alto Jardim Bela Vista (PR),-24.458333,-50.006944,,1,,10119,229,147,,,,,,36901872,,, +1130,USA,,WEAF,,Camden (SC),34.258889,-80.579722,,0.007,,6884,291,147,,,,,,42774,,, +1130,MEX,es,XEMOS-AM La Invasora,,Los Mochis (sin),25.783333,-109,,0.5,,9331,305,148,,,,,,44399,,, +1130,USA,,KAAB,,Batesville (AR),35.744444,-91.639167,,0.02,,7447,299,148,,,,,,37900,,, +1130,B,pt,ZYJ790 Rdio Princesa do Oeste,,Xanxer (SC),-26.871111,-52.384722,,1,,10472,230,149,,,,,,36901879,,, +1130,MEX,es,XEHN-AM Ke Buena,,Nogales (son),31.311094,-110.966461,,0.25,,8927,310,149,,,,,,44128,,, +1130,B,pt,ZYK290 Rdio Medianeira AM,,Santa Maria (RS),-29.697222,-53.806111,,1,,10812,229,150,,,,,,36901875,,, +1130,B,pt,ZYJ677 Rdio Ji-Paran,,Ji-Paran (RO),-10.8625,-61.9,,0.25,,9534,246,151,,,,,,36901876,,, +1130,ARG,,R Contempornea,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,8,,2227,,, +1130,PRU,,OAZ4S,,Chanchamayo (jun),-11.066667,-75.216667,,0.4,,10414,257,152,,,,,,40373,,, +1130,B,pt,ZYJ333 Rdio Ingamar,,Marialva (PR),-23.488333,-51.809444,,0.25,,10122,231,153,,,,,,36901873,,, +1130,B,pt,ZYK676 Rdio Tup,,Tup (SP),-21.933333,-50.516667,,0.25,,9905,231,153,,,,,,36901871,,, +1130,HWA,tl,KPHI,,Honolulu (HI),21.438333,-157.991389,,1,,11697,345,153,,,,3,,39305,,, +1130,MEX,es,XEFN-AM R Moderna,,Uruapan (mic),19.422156,-102.064553,,0.1,,9504,296,155,,,,,,44015,,, +1130,USA,,KLEY,,Wellington (KS),37.241111,-97.401111,,0.001,,7655,304,163,,,,,,38801,,, +1134,E,es,COPE,,Pamplona (NAV-NA),42.825861,-1.680181,,5,,1196,214,62,,0000-2400,1234567,,,980,,, +1134,E,es,COPE,,Salamanca/EAK19 (CAL-SA),40.938039,-5.702914,,10,,1545,221,62,,0000-2400,1234567,1,,982,,, +1134,E,es,COPE,,Astorga/Peicas (CAL-LE),42.465211,-6.075514,,5,,1423,226,64,,0000-2400,1234567,,,977,,, +1134,E,es,COPE,,Ciutadella/Finca de Torralba (BAL-MN),39.955986,3.938333,,5,,1365,189,64,,0000-2400,1234567,0,,978,,, +1134,RUS,ru,R Teos,,Moskva/Kurkino (MV),55.881361,37.391611,,20,,2050,66,65,,0400-1900,1234567,5,,47033,,, +1134,E,es,COPE,,Jerez de la Frontera/Finca Pino Solete (AND-CA),36.662139,-6.123222,,5,,1979,215,70,,0000-2400,1234567,,,979,,, +1134,IRN,fa,IRIB R Tabriz,,Kaleybar=Kalibar (eaz),38.858033,47.066383,,50,,3437,99,74,,0000-2400,1234567,0,,989,,, +1134,RUS,ru,R Rossii,,Veshenskaya (RO),49.536778,41.871361,,5,,2482,82,75,,0100-2100,1234567,,,46928,,, +1134,KWT,ar,R Kuwait Main Arabic,,Kabd/Sulaibiyah (jah),29.146244,47.780539,,100,170,4237,111,79,,0000-2400,1234567,7,,990,,, +1134,IRN,fa,IRIB R Iran,,Bojnurd (nkh),37.654,57.04805,,10,,4200,92,89,,0130-2030,1234567,13,,10800038,,, +1134,G,,IC R (LPAM),,Ashford (EN-KNT),51.15,0.883333,,0.001,,396,257,91,,,,,,986,,, +1134,G,,KOOL AM (LPAM),,Harlow (EN-ESX),51.783333,0.133333,,0.001,,432,268,91,,,,,,983,,, +1134,PAK,,PBC R Pakistan,,Quetta (blc),30.081889,66.978639,,100,,5443,92,91,,0200-1500,1234567,,,31500003,,, +1134,G,,BFBS Gurkha R,,Bramcote (EN-NHS),52.933333,-1.2,,0.001,,523,283,92,,,,,,984,,, +1134,G,,BFBS Gurkha R,,Sandhurst (Berkshire) (EN-BER),51.316667,-0.8,,0.001,,504,263,92,,,,,,985,,, +1134,G,,L&D R (LPAM),,Luton (EN-BEF),51.894289,-0.4743,,0.001,,472,270,92,,0000-2400,1234567,999,,987,,, +1134,NIG,,CRBC Cross River R,,Ugaga (crr),6.645508,8.787722,,10,,5060,177,98,,0450-2310,1234567,,,2469,,, +1134,IND,,AIR National Channel/AIR G.O.S.,,Chinsurah/Magra (WB),23.024222,88.358972,,1000,,7470,81,102,,1215-0040,1234567,,,49774,,, +1134,KEN,,KBC English Service,,Kitale (rif),1.143283,34.898042,,50,,6256,145,103,,0200-2110,1234567,,,2468,,, +1134,CHN,zh,Yili RGD,,Yining=Gulja (XJ),43.916667,81.466667,,1,,5403,68,111,,,,,,49772,,, +1134,AGL,pt,RNA Em. Prov. do Bengo,,Mulenvos/Baixo (lua),-8.856667,13.314722,,10,,6811,172,115,,,,3,,2370,,, +1134,KOR,ko,HLKC KBS 3 R,,Hwaseong (gye),37.214167,126.778056,,500,,8529,45,115,,0000-2400,1234567,,,49781,,, +1134,CHN,zh,CNR 1,,Ga'er/Shiquanhe (XZ),32.494639,80.087611,,1,,6147,80,118,,2025-1805,1234567,,,36201108,,, +1134,CHN,,Yumen RGD,,Yumen (GS),39.7,97.333333,,1,,6697,62,124,,,,,,36200480,,, +1134,CHN,,Tongchuan RGD,,Tongchuan (SA),35.1,109.15,,10,,7777,58,125,,,,,,49771,,, +1134,J,ja,JOQR NCB Bunka Hoso,,Tokyo/Kawaguchi (kan-tok),35.825556,139.755,,100,,9240,36,125,,0000-2400,1234567,0,,49780,,, +1134,CHN,zh,CNR 1,,Nagqu=Naqu (XZ),31.472389,92.042306,,1,,7020,72,127,,2025-1805,1234567,,,36201111,,, +1134,CHN,zh,CNR 1,,Xigaz (XZ),29.291111,88.881267,,1,,6989,76,127,,2025-1805,1234567,,,36201113,,, +1134,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,1,,7117,74,128,,2025-1805,1234567,,,36201110,,, +1134,CHN,zh,CNR 1,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,2025-1805,1234567,,,36201112,,, +1134,CHN,bo,Xizang RGD,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2000-1730,1234567,,,49770,,, +1134,CHN,zh,CNR 1,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2025-1805,1234567,,,36201045,,, +1134,THA,th,Sor. Wor. Thor. (R Thailand),,Lampang (lpg),18.290833,99.485833,,10,,8618,76,132,,2200-1600,1234567,,,49789,,, +1134,THA,th,Thor. Phor. Song,,Korat=Nakhon Ratchasima/Fort Saranari (nrt),14.9,102.105556,,10,,9087,76,134,,????-1600,1234567,,,49790,,, +1134,CHN,zh,CNR 1,,Cikai=Zikai (YN),27.744444,98.666667,,1,,7757,70,135,,2025-1805,1234567,,,36201109,,, +1134,TWN,,Taipei Kuangpo Tientai,,Taipei (TPS),25.090664,121.514494,,10,,9378,55,135,,2255-1600,1234567,,,49791,,, +1134,INS,id,RRI Pro-4,,Banjarmasin (KS-kbm),-3.317728,114.703481,,25,,11539,77,138,,2055-1600,1234567,,,49775,,, +1134,PHL,,DWDD-AM Armed Forces R,,Quezon City/Camp Aguinaldo (ncr),14.607778,121.065556,,10,,10319,62,138,,2200-1700,1234567,,,49785,,, +1134,PHL,,DWJS-AM,,Roxas (plw),10.366667,119.35,,5,,10604,65,142,,,,,,49786,,, +1134,CHN,,Zhejiang zhi Sheng,,Chun'an (ZJ),29.6,119.033333,,1,,8826,55,143,,,,,,36200487,,, +1134,CHN,,Zhejiang zhi Sheng,,Jiangshan (ZJ),28.733333,118.616667,,1,,8881,56,143,,,,,,36200486,,, +1134,CHN,,Zhejiang zhi Sheng,,Ningbo (ZJ),29.887778,121.486667,,1,,8935,53,143,,,,,,36200485,,, +1134,CHN,,Zhejiang zhi Sheng,,Suichang (ZJ),28.583333,119.266667,,1,,8931,55,143,,,,,,36200483,,, +1134,CHN,,Zhejiang zhi Sheng,,Qingyuan (ZJ),27.616667,119.066667,,1,,9008,56,144,,,,,,36200484,,, +1134,CHN,,Zhejiang zhi Sheng,,Wencheng (ZJ),27.8,120.083333,,1,,9049,55,144,,,,,,36200482,,, +1134,CHN,,Zhejiang zhi Sheng,,Wenzhou (ZJ),28.1,120.6,,1,,9050,54,144,,,,,,36200481,,, +1134,CHN,,Zhejiang zhi Sheng,,Xianju (ZJ),28.85,120.733333,,1,,8989,54,144,,,,,,49768,,, +1134,CHN,,Zhejiang zhi Sheng,,Zhoushan (ZJ),30.05,122.016667,,1,,8949,52,144,,,,,,36200479,,, +1134,PHL,,DXMV-AM Radyo Ukay,,Valencia (buk),8.1,125.116667,,5,,11166,62,144,,,,,,49787,,, +1134,PHL,,DZPT-AM Radyo ng Bayan,,Basco (btn),20.45,121.966667,,1,,9832,58,146,,,,,,49783,,, +1134,INS,id,PM2BBN R Safari,,Jakarta/Kebayoran Baru (JK-kjs),-6.241667,106.808333,,1,,11264,86,151,,,,,,49559,,, +1134,AUS,,6TZ/t R West,,Collie/Ewington (WA),-33.370556,116.1925,,2,,14169,98,158,,0000-2400,1234567,,,52291,,, +1134,AUS,,3CS,,Colac/Rossmoyne (VIC),-38.321972,143.534194,,5,,16390,82,161,,0000-2400,1234567,,,49767,,, +1134,AUS,,2AD New England R,,Armidale (NSW),-30.544444,151.604167,,2,,16307,63,165,,0000-2400,1234567,,,49765,,, +1134,NZL,,RNZ National,,Queenstown/Kelvin Heights (OTA),-45.045278,168.678611,,2,,18498,66,172,,0000-2400,1234567,,,49782,,, +1140,MRC,,SNRT Al Ida Al-Watania,,unknown,29.5,-8.5,,1,,2797,212,85,,,,90,,5900003,,, +1140,CAN,en,CBI,,Sydney (NS),46.136667,-60.27,,10,,4724,290,94,,,,5,,35783,,, +1140,USA,,WRVA,,Richmond (VA),37.403611,-77.316389,,50,,6428,291,104,,,,0,,42933,,, +1140,CAN,en,CHRB,,High River (AB),50.923611,-113.833889,,46,,7262,323,113,,,,104,,36078,,, +1140,USA,,WCJW,,Warsaw (NY),42.726389,-78.111944,,2.5,,6077,296,114,,,,9988,,41010,,, +1140,USA,en,WVHF,,Kentwood (MI),42.935833,-85.457222,,5,,6502,301,115,,1300-0100,1234567,,,41908,,, +1140,USA,,WBXR,,Hazel Green (AL),34.953056,-86.646111,,15,,7209,295,117,,,,,,40931,,, +1140,PTR,,WQII,,San Juan (PR),18.358333,-66.134722,,10,,7222,268,119,,0000-2400,1234567,4,,42773,,, +1140,USA,,WVEL,,Pekin (IL),40.603333,-89.625556,,5,,6929,302,119,,,,,,43292,,, +1140,ALS,,KSLD,,Soldotna (AK),60.523889,-151.056389,,10,,7331,348,120,,0000-2400,1234567,7,,39376,,, +1140,CUB,es,CMIP R Surco,,Morn (ca),22.094497,-78.612742,,25,,7755,280,121,,,,2,,31600060,,, +1140,USA,,KSOO,,Sioux Falls (SD),43.480556,-96.685278,,5,,7090,308,121,,,,994,,39397,,, +1140,USA,,WXLZ,,Saint Paul (VA),36.870833,-82.305833,,2.5,,6785,294,121,,,,,,43479,,, +1140,CUB,es,R Mayabeque,,La Salud (my),22.877161,-82.428906,,25,,7944,284,123,,,,,,31600032,,, +1140,USA,,KZMQ,,Greybull (WY),44.450278,-108.048889,,10,,7585,316,123,,,,,,39894,,, +1140,USA,es,WQBA,,Miami (FL),25.7675,-80.486111,,10,,7572,284,123,,,,22,,42761,,, +1140,USA,,WSAO,,Senatobia (MS),34.615556,-89.935833,,5,,7438,297,124,,,,,,42949,,, +1140,CAN,fr,CBJ-2,,Chapais (QC),49.784444,-74.861944,,0.04,,5391,302,125,,,,,,20109150,,, +1140,CUB,es,R Rebelde,,Santa Clara/CTOM3 (vc),22.435008,-79.916175,,10,,7814,281,125,,,,,,31600042,,, +1140,USA,,WRLV,,Salyersville (KY),37.749444,-83.088611,,1,,6764,295,125,,,,,,42877,,, +1140,USA,,WRNA,,China Grove (NC),35.572222,-80.589167,,1,,6780,292,125,,,,,,42886,,, +1140,CAN,fr,CBF-4,,Matagami (QC),49.758333,-77.6275,,0.04,,5553,303,126,,,,,,20109151,,, +1140,CUB,es,R Rebelde,,Aguada de Pasajeros (cf),22.382386,-80.8343,,10,,7880,282,126,,,,,,31600061,,, +1140,MEX,es,XEMR-AM,,San Nicols de los Garza (nvl),25.763833,-100.252883,,50,,8826,299,126,,,,9995,,44406,,, +1140,USA,,KHTK,i,Sacramento (CA),38.392778,-121.1975,,50,,8748,321,126,,,,0,,38565,,, +1140,USA,,KLTK,,Southwest City (MO),36.363889,-94.348056,,5,,7554,301,126,,,,,,38849,,, +1140,USA,,KGEM,,Boise (ID),43.596389,-116.25,,10,,8038,320,127,,,,,,38464,,, +1140,USA,,WLOD,,Loudon (TN),35.726389,-84.346944,,1,,7004,294,127,,,,,,42202,,, +1140,CUB,es,R Rebelde,,Circunvalacin (ma),23.016667,-81.616667,,5,,7878,283,129,,,,9984,,31600090,,, +1140,USA,,WAWK,,Kendallville (IN),41.454444,-85.263333,,0.25,,6605,299,129,,,,,,40781,,, +1140,VEN,,YVNU,,Carora (lar),10.166667,-70.066667,,10,,8195,266,129,,,,,,45401,,, +1140,USA,,KPWB,,Piedmont (MO),37.141389,-90.703056,,1,,7275,300,130,,,,,,39178,,, +1140,B,pt,ZYH449 Rdio Cultura da Bahia,,Salvador/Ilha de Itaparica (BA),-12.915786,-38.659033,,10,,8422,225,131,,,,,,36901893,,, +1140,USA,,KYOK,,Conroe (TX),30.344444,-95.458889,,5,,8135,298,131,,,,,,39866,,, +1140,CLM,es,HJKO R Esperanza,,Cartagena (bol),10.466667,-75.416667,,10,,8534,270,132,,,,789,,37529,,, +1140,USA,en,WMMG,,Brandenburg (KY),37.985833,-86.184444,,0.25,,6935,297,132,,1200-2400,1234567,,,42350,,, +1140,CLM,es,HJDL R Paisa,,Medelln/Pereira (ant),6.266667,-75.616667,,10,,8914,268,133,,,,996,,37392,,, +1140,CLM,es,HJRN,,Barbosa (sat),5.933333,-73.616667,,10,,8807,266,133,,,,,,35901556,,, +1140,CHL,,CB114 R Nacional,,Santiago (RM),-33.516667,-70.583333,,100,,12086,239,134,,1000-0600,1234567,,,35724,,, +1140,CLM,,HJFH,,Anserma (cal),5.266667,-75.816667,,10,,9015,267,134,,,,,,37433,,, +1140,CLM,es,HJCL R Panamericana,,Girardot (cun),4.266667,-74.816667,,10,,9035,266,134,,,,998,,37650,,, +1140,CLM,es,HJKW,,Villavicencio (met),4.166667,-73.616667,,10,,8962,265,134,,,,,,37536,,, +1140,SLV,,YSTS,,San Salvador (ssl),13.716667,-89.166667,,10,,9182,283,134,,,,,,45319,,, +1140,USA,,KNAB,,Burlington (CO),39.294722,-102.260278,,1,,7745,309,134,,,,,,38958,,, +1140,CUB,es,R Bayamo,,Media Luna (gr),20.150067,-77.433781,,1,,7840,278,135,,,,,,36613,,, +1140,CUB,es,R Ciudad Bandera,,Crdenas (ma),23.085356,-81.271258,,1,,7849,283,135,,,,9937,,31600126,,, +1140,CUB,es,R Enciclopedia,,Camagey/CTOM2 (cm),21.350153,-77.872003,,1,,7768,279,135,,,,,,31600052,,, +1140,USA,,KRMP,,Oklahoma City (OK),35.387222,-97.498889,,1,,7820,303,135,,,,,,39269,,, +1140,USA,en,WAPF,,McComb (MS),31.2475,-90.420556,,1,,7750,295,135,,1300-0100,1234567,,,40686,,, +1140,B,pt,ZYK550 Rdio Difusora de Assis,,Assis (SP),-22.677614,-50.426133,,10,,9971,231,137,,,,,,36901892,,, +1140,B,pt,ZYI398 Rdio Globo,,Ftima do Sul (MS),-22.386622,-54.496256,,10,,10163,234,138,,,,,,36901895,,, +1140,DOM,es,HIRA R Anacaona,,San Juan de la Maguana (jua),18.800969,-71.252831,,0.25,,7534,272,138,,1100-0400,1234567,,,37289,,, +1140,B,pt,ZYH607 Rdio Progresso AM,,Russas (CE),-4.940783,-37.981706,,0.25,,7598,229,139,,,,,,36901897,,, +1140,USA,en,KXST,,North Las Vegas (NV),36.268056,-115.044722,,2.5,,8670,315,139,,,,,,39348,,, +1140,USA,es,KHFX,,Cleburne (TX),32.2825,-97.413056,,0.71,,8083,301,139,,,,,,38170,,, +1140,USA,,KNWQ,,Palm Springs (CA),33.860833,-116.472222,,2.5,,8965,315,140,,,,65,,39032,,, +1140,EQA,,HCIR1,,Quito (pic),-0.266667,-78.516667,,3,,9685,266,141,,,,,,36976,,, +1140,CTR,,TIVAL R Nueva,,Gupiles (lmn),10.216667,-83.766667,,1.5,,9125,276,142,,,,,,52153,,, +1140,EQA,,HCPV6,,Ambato (tun),-1.25,-78.616667,,3,,9778,265,142,,,,,,37066,,, +1140,EQA,,HCRD1,,Ibarra (imb),0.35,-78.116667,,2,,9603,266,143,,,,,,37075,,, +1140,HND,,HRUN,,La Ceiba (atl),15.8,-86.816667,,1,,8844,282,143,,,,,,37855,,, +1140,PNR,es,HOB49 R Panamericana,,Ciudad Radial (pnm),9.029722,-79.429722,,1,,8933,272,143,,1100-0500,1234567,,,2183,,, +1140,USA,,KVLI,,Lake Isabella (CA),35.632222,-118.475278,,1,,8892,317,143,,,,,,39183,,, +1140,HND,,HRAP,,Nacaome (val),13.516667,-87.466667,,1,,9086,281,144,,,,,,37738,,, +1140,MEX,es,XEPEC-AM Hidalgo R,,San Bartolo Tutotepec (hid),20.398056,-98.198611,,1,,9178,294,144,,,,,,44542,,, +1140,BOL,,R Pico Verde,,Chulumani (lpz),-16.366667,-67.466667,,2,,10382,247,145,,,,,,51999,,, +1140,MEX,es,XETE-AM Punto Digital,,Tehuacn (pue),18.44115,-97.372922,,1,,9300,292,145,,,,,,44806,,, +1140,MEX,es,XEXF-AM R Felicidad,,Len (gua),21.087222,-101.683056,,1,,9331,297,145,,,,,,45050,,, +1140,ARG,es,LU22 R Tandil,,Tandil (ba),-37.316883,-59.076897,,5,,11788,229,146,,0900-0300,1234567,,,40218,,, +1140,PRG,,ZP22 R Panambi Vera,,Villarrica (cgz),-25.266667,-56.316667,,2,,10533,234,146,,0900-0200,1234567,,,45517,,, +1140,B,pt,ZYL362 Rdio Clube de Bocaiuva,,Bocaiva (MG),-17.104275,-43.813478,,0.5,,9091,228,147,,,,,,36901896,,, +1140,EQA,,HCAZ5,,Cuenca (azu),-2.85,-79,,1,,9945,265,147,,,,,,36858,,, +1140,MEX,es,XETEC-AM R Tecpatn,,Tecpatn (cps),17.134264,-93.305392,,0.5,,9155,288,147,,,,,,44809,,, +1140,B,pt,ZYL253 Rdio Sociedade Muria,,Muria (MG),-21.122067,-42.332886,,0.5,,9412,225,148,,,,,,36901891,,, +1140,MEX,es,XELIA-AM La Tremenda,,Morelia (mic),19.724475,-101.172706,,0.5,,9422,296,148,,,,,,44307,,, +1140,PRU,,Chami R,,Otuzco (lal),-7.9,-78.583333,,1,,10361,261,148,,,,,,2285,,, +1140,B,pt,ZYK555 Rdio Barretos,,Barretos/Av Gonalves (SP),-20.542458,-48.557428,,0.5,,9668,230,149,,,,,,36901887,,, +1140,PRU,,OAX3R R Bahia,,Chimbote (anc),-9.116667,-78.533333,,1,,10464,260,149,,,,,,40296,,, +1140,PRU,,OAX6L R Concordia,,Arequipa (are),-16.316667,-71.566667,,1,,10639,251,149,,,,,,40334,,, +1140,PRU,,OCY4C R Programas del Per,,Pilcomayo (jun),-12.166667,-75.25,,1,,10513,256,149,,,,251,,40439,,, +1140,B,pt,ZYH751 Rdio Formosa,,Formosa (GO),-15.558375,-47.3561,,0.25,,9125,232,150,,,,,,36901885,,, +1140,B,pt,ZYI435 Difusora AM 1140 Novo Mato Grosso,,Juara (MT),-11.244578,-57.526678,,0.25,,9300,242,151,,,,,,36901898,,, +1140,B,pt,ZYJ748 Coroado AM,,Curitibanos (SC),-27.306667,-50.555556,,0.5,,10419,228,151,,,,,,36901894,,, +1140,B,pt,ZYL204 Rdio Minas,,Divinpolis (MG),-20.118394,-44.876539,,0.25,,9438,227,151,,,,,,36901886,,, +1140,ARG,es,R Independencia,,Remedios de Escalada (ba),-34.733333,-58.383333,,1,,11517,230,152,,,,,,33000061,,, +1140,B,,ZYI406,,Aparecida do Taboado (MS),-20.066667,-51.066667,,0.25,,9757,232,152,,,,,,45819,,, +1140,B,pt,ZYK645 Rdio Educao e Cultura,,Rio Claro (SP),-22.416667,-47.566667,,0.25,,9798,228,152,,,,,,36901884,,, +1140,B,pt,ZYK709 Rdio Costa Azul,,Ubatuba (SP),-23.4618,-45.066497,,0.25,,9774,226,152,,,,,,36901890,,, +1140,B,pt,ZYL248 Rdio Diocesana,,Campanha (MG),-21.774711,-45.430428,,0.25,,9627,227,152,,,,,,36901882,,, +1140,PRU,,OAX5W R Chinchaysuyo,,Chinca Alta (ica),-13.666667,-76.166667,,0.5,,10706,256,152,,,,,,40327,,, +1140,USA,,KCXL,,Liberty (MO),39.238333,-94.399722,,0.006,,7316,303,152,,,,,,38229,,, +1140,USA,,WRMQ,,Orlando (FL),28.58,-81.421111,,0.008,,7400,287,152,,,,,,42882,,, +1140,B,pt,ZYK708 Rdio Nova Regional,,Registro (SP),-24.482406,-47.829753,,0.25,,10010,228,153,,,,2,,36901883,,, +1140,EQA,,HCFB2,,Guayaquil (gua),-2.2,-79.866667,,0.25,,9947,266,153,,,,,,36932,,, +1140,B,pt,ZYJ352 Rdio Difusora Amrica,,Chopinzinho (PR),-25.859722,-52.501389,,0.25,,10383,231,154,,,,,,36901889,,, +1140,B,pt,ZYK228 Rdio Cruz Alta AM,,Cruz Alta (RS),-28.617778,-53.63,,0.25,,10702,230,155,,,,,,36901888,,, +1140,B,pt,ZYK316 Rdio Charrua AM,,Uruguaiana (RS),-29.758889,-57.084722,,0.25,,10991,232,156,,,,,,36901899,,, +1140,B,pt,ZYK330 Rdio Sobral AM,,Buti (RS),-30.13,-51.9625,,0.25,,10759,228,156,,,,,,36901881,,, +1143,D,en,AFN Benelux-The Eagle,,Mnchengladbach/Pongser Kamp (nrw),51.167222,6.398889,,1,,105,180,42,,0530-0800,1234567,0,,998,,, +1143,D,en,AFN Benelux-The Eagle,,Mnchengladbach/Pongser Kamp (nrw),51.167222,6.398889,,1,,105,180,42,,1500-1700,1234567,0,,998,,, +1143,D,en,AFN PowerNet,,Mnchengladbach/Pongser Kamp (nrw),51.167222,6.398889,,1,,105,180,42,,0800-1500,1234567,0,,998,,, +1143,D,en,AFN PowerNet,,Mnchengladbach/Pongser Kamp (nrw),51.167222,6.398889,,1,,105,180,42,,1700-0530,1234567,0,,998,,, +1143,RUS,pl,Voice of Russia,,Bolshakovo (KA),54.906561,21.705039,,75,150,1056,67,49,,1700-1800,1234567,0,,1012,,, +1143,RUS,ru,Voice of Russia,,Bolshakovo (KA),54.906561,21.705039,,75,150,1056,67,49,,1800-2100,1234567,0,,1012,,, +1143,D,en,AFN PowerNet,,Bitburg/Am Tower (rlp),49.943056,6.541667,,1,,241,178,59,,0000-2400,1234567,,,997,,, +1143,D,en,AFN PowerNet,,Heidelberg-Wieblingen (bw),49.432778,8.645,,1,,337,151,60,,0000-2400,1234567,,,999,,, +1143,E,es,COPE,,Oviedo/El Naranco (AST-O),43.385172,-5.862508,,5,,1332,228,63,,0000-2400,1234567,,,1007,,, +1143,E,es,COPE,,Tarragona/Reus EAK53 (CAT-T),41.129492,1.167031,,5,,1284,200,63,,0000-2400,1234567,989,,1008,,, +1143,E,es,COPE,,Ourense (GAL-OU),42.373528,-7.916436,,5,,1525,230,65,,0000-2400,1234567,,,1009,,, +1143,D,en,AFN PowerNet,,Schweinfurt/Heerstr. Yorktown Drive (bay),50.055556,10.201389,,0.3,,350,129,66,,0000-2400,1234567,,,1004,,, +1143,E,es,COPE,,Jan (AND-J),37.8111,-3.757097,,5,,1776,210,68,,0000-2400,1234567,,,1006,,, +1143,BIH,en,AFN Bosnia,,Tuzla/Eagle Base (tuz),44.466667,18.717778,,0.25,,1243,128,75,,0000-2400,1234567,,,995,,, +1143,GRC,el,unid,,unknown,38.4,24.65,,1,,2077,130,78,,,,,,3400063,,, +1143,EGY,ar,ERTU Al-Barnameg al-Aam,,Sohag (shj),26.550761,31.620733,,10,,3537,134,82,,0300-2400,1234567,,,1839,,, +1143,IRN,fa,IRIB R Iran,,Yasuj (kba),30.625056,51.590361,,50,,4363,105,84,,0000-2400,1234567,,,1799,,, +1143,TJK,,Voice of Tajik,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0200-1800,1234567,,,2242,,, +1143,NIG,,Niger State BC,,Bida (nig),9.087667,6.039722,,10,,4784,181,95,,0430-2130,1234567,,,2470,,, +1143,CHN,zh,Xinjiang RGD Jingji Guangbo,,Altay=Aletai/XJTS633 (XJ),47.771867,88.149189,,10,,5552,60,103,,2200-1605,1234567,,,36201271,,, +1143,IND,,AIR North,,Rohtak (HR),28.926,76.447139,,20,,6180,86,106,,0023-0435,1234567,,,49824,,, +1143,IND,,AIR North,,Rohtak (HR),28.926,76.447139,,20,,6180,86,106,,0630-0940,1234567,,,49824,,, +1143,IND,,AIR North,,Rohtak (HR),28.926,76.447139,,20,,6180,86,106,,1130-1740,1234567,,,49824,,, +1143,NPL,,R Nepal,,Bardibas (jan),27.004294,85.903717,,100,,6976,80,107,,2315-1720,1234567,,,49827,,, +1143,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Tashkurgan/XJTS2072 (XJ),37.765556,75.221111,,1,,5425,78,111,,2330-1800,1234567,,,36201270,,, +1143,IND,,AIR West,,Ratnagiri (MH),16.998889,73.371111,,20,,6958,97,114,,0025-0430,1234567,,,49823,,, +1143,IND,,AIR West,,Ratnagiri (MH),16.998889,73.371111,,20,,6958,97,114,,0630-0930,1234567,,,49823,,, +1143,IND,,AIR West,,Ratnagiri (MH),16.998889,73.371111,,20,,6958,97,114,,1200-1741,1234567,,,49823,,, +1143,CHN,zh,Henan RGD Xiqu Guangbo,,Zhengzhou/HETS976 (HE),34.796944,113.746944,,50,,8066,55,121,,2030-1700,1234567,,,49821,,, +1143,CHN,,Tianshui RGD,,Tianshui (GS),34.5,105.5,,10,,7613,61,123,,,,,,49815,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Nanyang (HE),33,112.533333,,25,,8154,57,125,,,,,,36200456,,, +1143,CHN,kk,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0100-0300,1234567,,,36200475,,, +1143,CHN,kk,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0500-0600,1234567,,,36200475,,, +1143,CHN,kk,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0900-1000,1234567,,,36200475,,, +1143,CHN,kk,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,1400-1700,1234567,,,36200475,,, +1143,CHN,ko,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0400-0500,1234567,,,36200475,,, +1143,CHN,ko,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0600-0700,1234567,,,36200475,,, +1143,CHN,ko,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,1000-1200,1234567,,,36200475,,, +1143,CHN,ko,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,2100-2300,1234567,,,36200475,,, +1143,CHN,mn,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0300-0400,1234567,,,36200475,,, +1143,CHN,mn,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,0700-0900,1234567,,,36200475,,, +1143,CHN,mn,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,1200-1400,1234567,,,36200475,,, +1143,CHN,mn,CNR 8,,Beijing (BJ),39.933333,116.383333,,10,,7759,50,125,,2300-0100,1234567,,,36200475,,, +1143,TWN,,Taiwan Ch Yuyeh Kuangpo Tientai,,Baisha/Chiangmei Ts'un (PG),23.625889,119.592408,,100,,9403,58,125,,0000-2400,1234567,2,,49834,,, +1143,CHN,,Cangzhou JGD,,Cangzhou (HB),38.3,116.85,,10,,7927,51,126,,,,,,49800,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Sanmenxia (HE),34.795278,111.189444,,10,,7921,57,126,,,,,,36200454,,, +1143,CHN,,Jilin RGD Story & Novel,,Jilin Shi (JL),43.8,126.5,,10,,7905,41,126,,,,,,36200466,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Anyang/Qilidian (HE),36.055833,114.329167,,10,,7988,54,127,,,,,,36200478,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Huangchuan (HE),32.133333,115.033333,,25,,8373,56,127,,,,,,36200467,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Luoyang (HE),34.660833,112.476111,,10,,8006,56,127,,,,,,36200458,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Luohe (HE),33.533333,114.016667,,10,,8192,56,129,,,,,,36200459,,, +1143,CHN,,Qinghai JGD,,Xining/QHTS560 (QH),36.702778,101.749444,,1,,7205,62,129,,,,,,49816,,, +1143,CHN,zh,CNR 2,,Yakeshi/NMTS785 (NM),49.3105,120.807556,,1,,7154,41,129,,2100-1602,1234567,,,36201245,,, +1143,CHN,,Henan RGD Xiqu Guangbo,,Xinyang (HE),32.099722,114.070833,,10,,8322,57,130,,,,,,36200448,,, +1143,CHN,,Linyi RGD Literary,,Linyi (SD),35.066667,118.333333,,10,,8294,52,130,,,,,,36200460,,, +1143,CHN,zh,CNR 2,,Hohhot/NMTS610 (NM),40.736944,111.475278,,1,,7427,53,131,,2100-1602,1234567,,,36200468,,, +1143,J,ja,JOBR KBS Kinki Hoso,,Kyoto (kns-kyo),34.880556,135.740278,,20,,9164,40,131,,0000-2400,1234567,9999,,49826,,, +1143,CHN,,Yulin RGD,,Yulin (SA),38.299722,109.735,,1,,7538,56,132,,,,,,36200445,,, +1143,CHN,mn,Nei Menggu RGD Mongyol,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,,,,,36200465,,, +1143,CHN,,Taonan RGD,,Taonan (JL),45.333333,122.783333,,1,,7596,43,133,,,,,,36200452,,, +1143,CHN,,Shaanxi RGD,,Baoji/Xiamaying (SA),34.344167,107.231111,,1,,7729,60,134,,,,,,36200476,,, +1143,CHN,zh,Chifeng RGD,,Chifeng/NMTS762 (NM),42.268333,118.929167,,1,,7683,47,134,,1958-1730,1234567,,,36200472,,, +1143,THA,th,Or. Sor. Mor. Thor. Modern R,,Bangkok/Phetchakasem Rd (bmp),13.711861,100.360444,,10,,9074,78,134,,0000-2400,1234567,82,,49832,,, +1143,CHN,,Dingzhou RGD,,Dingzhou (HB),38.516667,115,,1,,7809,52,135,,,,,,36200471,,, +1143,CHN,,Guangyuan RGD,,Guangyuan (SC),32.433333,105.816667,,1,,7807,62,135,,,,,,49804,,, +1143,CHN,,Jiamusi JGD,,Jiamusi (HL),46.755556,130.265,,1,,7794,37,135,,,,,,49807,,, +1143,CHN,zh,CNR 1,,Beipiao/LNTS330 (LN),41.8,120.783333,,1,,7817,46,135,,2025-1805,1234567,,,49797,,, +1143,CHN,zh,CNR 1,,Chaoyang (LN),41.566667,120.466667,,1,,7822,47,135,,2025-1805,1234567,,,36200473,,, +1143,CHN,,Jilin RGD Dazhong Shenghuo,,Liaoyuan (JL),42.866667,125.166667,,1,,7930,43,136,,,,,,36200461,,, +1143,CHN,,Tangshan RGD Jiaotong yu Wenxue,,Tangshan (HB),39.6679,118.284117,,1,,7881,49,136,,2130-1600,1234567,,,49814,,, +1143,CHN,,Dazhou RGD,,Dazhou/Leiyinpu Shan (HB),31.216667,107.5,,1,,8013,62,137,,,,,,49799,,, +1143,CHN,,Fushun RGD Gushi,,Fushun (LN),41.85,123.883333,,1,,7963,44,137,,,,,,49803,,, +1143,CHN,,Liaocheng RGD,,Liaocheng (SD),36.433333,115.966667,,1,,8044,53,137,,,,,,49809,,, +1143,CHN,,Liaoyang RGD Yinyue Guangbo,,Liaoyang (LN),41.235556,123.183056,,1,,7985,45,137,,,,,,49810,,, +1143,CHN,,Neijiang JGD,,Neijiang (SC),29.65,105.25,,1,,8010,65,137,,,,,,49812,,, +1143,CHN,,Yingkou RGD Traffic,,Yingkou (LN),40.683333,122.2,,1,,7987,46,137,,,,,,36200446,,, +1143,CHN,,Hubei RGD Jingji Guangbo,,Shiyan (HU),32.613889,110.841944,,1,,8090,59,138,,,,,,36200453,,, +1143,CHN,,Jilin JGD,,Baishan (JL),41.95,126.433333,,1,,8073,42,138,,,,,,36200477,,, +1143,CHN,,Pingdingshan JGD,,Pingdingshan (HE),33.7,113.283333,,1,,8136,56,138,,,,,,49813,,, +1143,CHN,,Tumen RGD,,Tumen (JL),42.966667,129.85,,1,,8131,40,138,,,,,,36200451,,, +1143,CHN,,Zibo RGD Xinwen,,Zibo (SD),36.8,118.05,,1,,8124,51,138,,,,,,49822,,, +1143,CHN,zh,CNR 3,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,1,,8055,69,138,,2200-1600,1234567,,,36200455,,, +1143,CHN,zh,Changzhou JGD,,Changzhou (JS),31.768333,119.782778,,3,,8670,53,138,,2130-1435,1234567,,,49801,,, +1143,PHL,,DZMR-AM FEBC,,Santiago City (isa),16.683333,121.533333,,10,,10155,60,138,,,,,,33300001,,, +1143,CHN,zh,CNR 1,,Bijie/Dalan Cun-GZTS927 (GZ),27.316667,105.3,,1,,8214,66,139,,2025-1805,1234567,,,36200474,,, +1143,CHN,zh,CNR 2,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,2100-1602,1234567,,,36200462,,, +1143,CHN,,Anshun RGD,,Anshun (GZ),26.25,105.916667,,1,,8345,66,140,,,,,,49798,,, +1143,CHN,,Xuzhou RGD Wenxue,,Xuzhou (JS),34.233333,117.333333,,1,,8314,53,140,,0900-1230,1234567,,,49817,,, +1143,CHN,,Xuzhou RGD Wenxue,,Xuzhou (JS),34.233333,117.333333,,1,,8314,53,140,,2200-0545,1234567,,,49817,,, +1143,CHN,zh,Huaibei RGD Xiqu,,Huaibei (AH),33.956972,116.783444,,1,,8309,54,140,,,,,,36201250,,, +1143,CHN,zh,CNR 1,,Fenghuang (HN),28.233333,109.683333,,1,,8404,62,141,,2025-1805,1234567,,,36200469,,, +1143,CHN,zh,CNR 1,,Jishou (HN),28.316667,109.716667,,1,,8398,62,141,,2025-1805,1234567,,,36200464,,, +1143,CHN,zh,CNR 1,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,2025-1805,1234567,,,36200457,,, +1143,CHN,zh,CNR 1,,Wuzhou (GX),23.482222,111.293611,,1,,8921,64,143,,2025-1805,1234567,,,36201044,,, +1143,PHL,,DYAF-AM R Veritas,,Bacolod City (noc),10.683333,122.966667,,5,,10796,62,143,,2000-1600,1234567,,,49829,,, +1143,CHN,,CNR 2/Hainan Traffic,,Haikou (HA),20.033333,110.25,,1,,9162,67,144,,,,,,49805,,, +1143,CHN,,Zhejiang zhi Sheng,,Yuhuan (ZJ),28.133333,121.233333,,1,,9082,54,144,,2130-1605,1234567,,,49818,,, +1143,PHL,,DYRM-AM,,Dumaguete/Calindangan (ngo),9.293056,123.307222,,1,,10946,63,150,,????-1300,1234567,,,49784,,, +1143,INS,id,PM4CPH R Swadesi,,Delanggu (JT-ken),-7.616667,110.683333,,1,,11648,83,152,,,,,,49764,,, +1143,AUS,en,4HI Zinc HI,,Emerald (QLD),-23.541569,148.199167,,5,,15484,60,158,,0000-2400,1234567,,,49795,,, +1143,AUS,,2HD,,Newcastle/Sandgate (NSW),-32.864439,151.702522,,2,,16509,66,165,,0000-2400,1234567,,,49796,,, +1143,NZL,en,RNZ National,,Hamilton/Eureka (WKO),-37.691878,175.404903,,2.5,,18197,32,170,,0000-2400,1234567,,,49828,,, +1145,UKR,,LT,b,Liutizh,50.6875,30.375,,0.025,,1662,86,90,,,,,,85870,,, +1145,UKR,,KK,b,Krasnoarmiisk,48.3125,37.208333,,0.025,,2214,89,95,,,,,,85869,,, +1145,BOL,,CP19 R Chuquiago Musical,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1000-0200,1234567,,,36676,,, +1147,CHN,,Yibin RGD,,Yibin (SC),28.766667,104.616667,,1,,8047,66,137,,2210-1500,1234567,,,49836,,, +1147,CHN,zh,Jiaozuo JGD,,Jiaozuo (HE),35.25,113.233333,,1,,7997,55,137,,,,,,49835,,, +1150,CAN,en,CKOC,,Hamilton/York (ON),43.051111,-79.811389,,50,,6157,298,102,,,,5,,36355,,, +1150,USA,es,WWDJ,,Boston (MA),42.413333,-71.211111,,5,,5670,292,107,,,,9948,,43229,,, +1150,USA,en,WHBY,,Kimberly (DN) (WI),44.260278,-88.366667,,25,,6567,304,109,,,,0,,41614,,, +1150,USA,en,WHBY,,Kimberly (DN) (aux) (WI),44.138889,-88.546111,,25,,6587,304,109,,,,,,20016286,,, +1150,USA,,WDEL,,Wilmington (DE),39.815833,-75.53,,5,,6132,292,111,,,,,,41148,,, +1150,USA,,WUTI,,Utica (NY),43.175278,-75.350833,,1,,5874,295,116,,,,,,42931,,, +1150,USA,,WELC,,Welch (WV),37.416944,-81.616111,,5,,6699,294,117,,,,,,41284,,, +1150,CAN,,CKFR,,Kelowna (BC),49.847778,-119.466111,,10,,7585,326,123,,,,998,,36268,,, +1150,USA,,WIMA,,Lima (OH),40.679722,-84.109444,,1,,6596,298,123,,,,,,41760,,, +1150,USA,,KIMM,,Rapid City (D) (SD),44.076944,-103.146944,,5,,7377,312,124,,,,,,20016221,,, +1150,USA,,KSEN,,Shelby (MT),48.481111,-111.883889,,5,,7400,320,124,,,,,,39342,,, +1150,USA,,WCUE,,Cuyahoga Falls (OH),41.201389,-81.523611,,0.5,,6400,297,124,,,,,,41103,,, +1150,USA,,WGBR,,Goldsboro (NC),35.373889,-78.011667,,0.8,,6631,290,124,,,,,,41484,,, +1150,B,pt,ZYH643 Rdio Sol Poente,,Paracuru (CE),-3.431836,-39.034956,,5,,7504,230,125,,,,,,36901906,,, +1150,CUB,es,R Bayamo,,Bueycito/Entronque (gr),20.292661,-76.775808,,10,,7783,278,125,,,,2,,36614,,, +1150,USA,,KSAL,,Salina (KS),38.884167,-97.517222,,5,,7522,305,125,,,,2,,39325,,, +1150,B,pt,ZYI891 Rdio Pioneira,,Teresina (PI),-5.091744,-42.763864,,10,,7866,233,126,,,,,,36901900,,, +1150,VEN,,YVQD Ecos del Orinoco,,Ciudad Bolivar (blv),8.116667,-63.566667,,10,,7935,259,126,,0000-2400,1234567,,,45426,,, +1150,USA,en,KEIB,,Los Angeles (CA),34.033333,-117.983333,,44,,9021,316,127,,,,9995,,39825,,, +1150,USA,,KWKY,,Des Moines (IA),41.4525,-93.681111,,1,,7092,305,128,,,,,,39724,,, +1150,USA,,WGOW,,Chattanooga (TN),35.068056,-85.334444,,1,,7118,294,128,,,,,,41551,,, +1150,USA,en,KKNW,,Seattle (WA),47.586389,-122.186389,,6,,7904,326,128,,,,997,,38738,,, +1150,VEN,es,YVMV Mundial Caribe AM,,Punto Fijo/Punta Cardn (flc),11.65245,-70.195767,,10,,8075,267,128,,0000-2400,1234567,,,45387,,, +1150,PRU,,OAX8D R Loreto,,Iquitos (lor),-3.5,-73.316667,,50,,9618,260,129,,,,,,40354,,, +1150,USA,,WCRK,,Morristown (TN),36.236389,-83.309167,,0.5,,6898,294,129,,,,,,41073,,, +1150,USA,,WJBO,,Baton Rouge (LA),30.463056,-91.269444,,5,,7869,295,129,,,,,,41848,,, +1150,USA,,WMRD,,Middletown (CT),41.557222,-72.620278,,0.046,,5820,292,129,,,,9824,,42383,,, +1150,B,pt,ZYK656 Rdio Tupi AM,,So Paulo/So Caetano do Sul (SP),-23.514556,-46.596139,,50,,9855,227,130,,,,9753,,36901904,,, +1150,USA,,WDTM,,Selmer (TN),35.190833,-88.589167,,1,,7309,297,130,,,,,,41213,,, +1150,USA,en,WNDB,,Daytona Beach (FL),29.235,-81.071944,,1,,7323,287,130,,,,,,42448,,, +1150,USA,en,WJRD,,Tuscaloosa (AL),33.249444,-87.608611,,1,,7409,295,131,,,,,,41923,,, +1150,ARG,,LRH202 R Tupa Mbae,,Posadas (mn),-27.4559,-55.798406,,50,,10708,232,132,,0800-0300,1234567,,,40169,,, +1150,CAN,xx,CBAC,,Tuktoyaktuk (NT),69.443333,-133.000278,,0.04,,6103,344,132,,,,,,20109152,,, +1150,CLM,es,HJBT,,Ocana (nsa),8.183333,-73.333333,,10,,8591,267,132,,,,,,37357,,, +1150,USA,,WGBN,,New Kensington (PA),40.573333,-79.782778,,0.07,,6341,295,132,,,,,,41483,,, +1150,CLM,es,HJFP RCN,,Neiva (hui),2.933333,-75.333333,,10,,9187,265,134,,,,999,,35901564,,, +1150,GTM,,TGRR R Fiesta,,Ciudad de Guatemala (gut),14.566667,-90.466667,,10,,9194,284,134,,0000-2400,1234567,,,40536,,, +1150,USA,,KAGO,,Klamath Falls (D) (OR),42.215556,-121.7975,,5,,8405,323,134,,,,,,20012573,,, +1150,USA,,KIMM,,Rapid City (N) (SD),44.076111,-103.146944,,0.5,,7377,312,134,,,,,,38614,,, +1150,USA,en,WHUN,,Huntingdon (PA),40.455,-77.980556,,0.036,,6238,294,134,,,,,,41697,,, +1150,MEX,es,XEJP-AM El Fongrafo,,Mxico D.F/La Pradera (dif),19.479439,-99.065428,,10,,9314,294,135,,,,,,44218,,, +1150,USA,es,WTMP,,Egypt Lake (FL),28.011667,-82.498056,,0.5,,7517,287,135,,,,,,43177,,, +1150,USA,,WNLR,,Churchville (VA),38.210833,-79.131389,,0.035,,6481,293,136,,0000-2400,1234567,129,,42480,,, +1150,USA,es,KNRV,,Englewood (CO),39.605,-104.840278,,1,,7854,310,136,,,,,,39012,,, +1150,B,pt,ZYH250 Rdio Cultura,,Arapiraca/Rua So Tom (AL),-9.754219,-36.669683,,1,,8010,225,137,,,,,,45579,,, +1150,PNR,,Ecos de Pedas,,Pedas (lsn),7.533333,-80.033333,,5,,9105,272,137,,,,,,52333,,, +1150,USA,,WBAG,,Burlington-Graham (NC),36.113333,-79.45,,0.048,,6665,291,137,,,,,,40798,,, +1150,USA,,WEAQ,,Chippewa Falls (WI),44.884722,-91.390278,,0.046,,6687,306,137,,,,,,41238,,, +1150,B,pt,ZYL283 Rdio Globo,,Belo Horizonte (MG),-19.970228,-43.985564,,5,,9379,227,138,,,,,,36901903,,, +1150,DOM,,HIAS Onda Musical,,Santo Domingo (sdo),18.475,-69.833333,,0.25,,7465,271,138,,1100-0500,1234567,,,37210,,, +1150,USA,,KNED,,McAlester (OK),34.936667,-95.733056,,0.5,,7756,301,138,,,,,,38978,,, +1150,USA,en,WAVO,,Rock Hill (SC),34.948611,-80.999444,,0.059,,6855,292,138,,,,,,40776,,, +1150,USA,en,WMST,,Mount Sterling (KY),38.044722,-83.901389,,0.053,,6791,296,138,,,,,,42395,,, +1150,HND,,HRLP16,,Tegucigalpa (fmz),14.066667,-87.216667,,3,,9022,282,139,,,,,,37782,,, +1150,HTI,,R Carabes,,Port-au-Prince (oue),18.516667,-72.316667,,0.25,,7631,273,139,,,,,,35626,,, +1150,USA,,KCPS,,Burlington (IA),40.853056,-91.136111,,0.067,,6996,303,139,,,,,,38198,,, +1150,USA,,KZNE,,College Station (D) (TX),30.631667,-96.357778,,1,,8164,299,139,,,,,,20012556,,, +1150,USA,,WLOC,,Munfordville (KY),37.269167,-85.915556,,0.061,,6976,297,139,,,,,,42201,,, +1150,USA,,WSNW,,Seneca (SC),34.6875,-82.987778,,0.058,,7002,293,139,,,,,,43040,,, +1150,B,pt,ZYJ617 Rdio Cabugido Serid,,Jardim do Serid (RN),-6.583333,-36.765556,,0.25,,7699,227,140,,,,,,36901901,,, +1150,EQA,,HCAV3,,Loja (loj),-4,-79.166667,,5,,10057,264,140,,,,,,36855,,, +1150,USA,en,WJEM,,Valdosta (GA),30.846944,-83.237222,,0.101,,7331,290,140,,,,,,41866,,, +1150,EQA,,HCVC7,,Lago Agrio (suc),0.116667,-76.966667,,3,,9546,265,141,,,,,,37162,,, +1150,USA,,KAGO,,Klamath Falls (N) (OR),42.215556,-121.798056,,1,,8405,323,141,,,,,,37923,,, +1150,USA,,WXKO,,Fort Valley (GA),32.576111,-83.904722,,0.062,,7232,292,141,,,,,,43473,,, +1150,USA,,KASM,,Albany (MN),45.631389,-94.6,,0.021,,6802,308,142,,,,,,37973,,, +1150,USA,,KZNE,,College Station (N) (TX),30.631667,-96.3575,,0.5,,8164,299,142,,,,,,39896,,, +1150,USA,,WGGH,,Marion (IL),37.729722,-88.895556,,0.044,,7119,299,142,,,,,,41508,,, +1150,CLM,es,HJGJ,,Duitama (boy),5.866667,-73.066667,,1,,8775,265,143,,,,,,37455,,, +1150,USA,,KCKY,,Coolidge (AZ),33.0075,-111.548333,,1,,8800,311,143,,,,,,38168,,, +1150,USA,,KDEF,,Albuquerque (NM),35.201667,-106.598333,,0.5,,8340,309,143,,,,,,38250,,, +1150,USA,,KRMS,,Osage Beach (MO),38.124722,-92.6775,,0.055,,7310,302,143,,,,,,39270,,, +1150,CAN,en,CBXA,,Mica Dam (BC),52.061111,-118.574722,,0.04,,7345,327,144,,,,,,20109153,,, +1150,CLM,es,HJFI,,Armenia (qui),4.533333,-75.716667,,1,,9072,267,144,,,,,,37434,,, +1150,CLM,es,HJTE,,Quibdo (cho),5.7,-76.666667,,1,,9035,268,144,,,,,,37641,,, +1150,MEX,es,XEBF-AM Extremo,,Gmez Palacio (dur),25.55585,-103.475483,,1,,9035,301,144,,,,,,43773,,, +1150,NCG,,R Dario,,Len (leo),12.433333,-86.883333,,1,,9142,280,144,,,,,,33700007,,, +1150,SLV,,YSCF,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,45267,,, +1150,CAN,en,CBKL,,Alice Arm (BC),55.458056,-129.455833,,0.04,,7385,334,145,,,,,,20109154,,, +1150,MEX,es,XEXM-AM R Jerez,,Jerez (zac),22.643606,-102.962081,,1,,9268,299,145,,,,,,45056,,, +1150,MEX,es,XEXP-AM La Mejor,,Tuxtepec (oax),18.092694,-96.143717,,1,,9253,291,145,,,,,,45062,,, +1150,USA,,KCCT,,Corpus Christi (TX),27.800278,-97.478889,,0.5,,8479,298,145,,,,,,38137,,, +1150,USA,,WGEA,,Geneva (AL),31.0225,-85.871111,,0.035,,7484,292,146,,,,,,41493,,, +1150,MEX,es,XEJS-AM,,Hidalgo del Parral (chi),26.934333,-105.631078,,0.5,,9035,303,147,,,,,,44223,,, +1150,MEX,es,XERM-AM R Frmula,,Mexicali (bcn),32.643822,-115.506411,,0.5,,9033,314,147,,,,,,44687,,, +1150,MEX,es,XETVR-AM La Nueva Azul,,Tuxpan/Col. Murillo Vidal (vcz),20.971417,-97.407317,,0.5,,9077,294,147,,,,,,44873,,, +1150,PRU,,R Ayabaca,,Ayabaca (piu),-4.633333,-79.716667,,1,,10150,264,147,,,,5,,52481,,, +1150,USA,es,KHRO,,El Paso (TX),31.753611,-106.416111,,0.38,,8642,307,147,,,,,,39436,,, +1150,ARG,es,LRA2 R Nacional,,Viedma (rn),-40.807022,-63.027511,,5,,12302,229,148,,0900-0400,1234567,,,40014,,, +1150,MEX,es,XEAD-AM R Metropol,,Tonal (jal),20.665389,-103.248772,,0.5,,9464,298,148,,,,,,43697,,, +1150,B,pt,ZYJ456 Rdio Trs Rios,,Trs Rios (RJ),-22.127353,-43.226017,,0.5,,9554,225,149,,,,,,36901902,,, +1150,BOL,,R 24 de Noviembre,,Eucaliptus (oru),-17.583333,-67.516667,,1,,10494,247,149,,,,,,52003,,, +1150,EQA,,HCGB5 La Voz de Riobamba,,Riobamba (chi),-1.633333,-78.616667,,0.5,,9812,265,149,,,,923,,36949,,, +1150,EQA,,HCJM4,,Esmeraldas (esm),0.966667,-79.716667,,0.5,,9658,268,149,,,,,,36987,,, +1150,USA,,KLPF,,Midland (TX),31.981944,-102.058056,,0.148,,8378,304,149,,,,,,38659,,, +1150,USA,,KOLJ,,Quanah (TX),34.315278,-99.746944,,0.077,,8041,304,149,,,,,,20016014,,, +1150,MEX,es,XESO-AM La Poderosa,,Ciudad Obregn (son),27.501478,-109.977514,,0.3,,9226,307,150,,,,,,44758,,, +1150,USA,,WONG,,Canton (MS),32.543056,-90.06,,0.019,,7619,296,150,,,,,,42606,,, +1150,USA,es,KBPO,,Port Neches (TX),30.084444,-93.970278,,0.063,,8067,297,150,,,,,,39570,,, +1150,USA,en,KQQQ,,Pullman (WA),46.726667,-117.206389,,0.027,,7787,323,151,,,,,,39204,,, +1150,ARG,,Concepto AM 11-50,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51830,,, +1150,ARG,es,LT9 R Brigadier Lpez,,Santa F (sf),-31.695647,-60.751292,,1,,11367,233,152,,0700-0300,1234567,2,,40202,,, +1150,BOL,,CP71 R El Condor,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,1100-2030,1234567,,,52001,,, +1150,ARG,,LRA51 R Nacional,,San Jos de Jachl (sj),-30.25,-68.75,,1,,11694,240,153,,1030-0300,1234567,,,39954,,, +1150,BOL,,R Guaqui,,Guaqui (lpz),-16.6,-68.866667,,0.3,,10491,248,154,,,,,,52002,,, +1150,MEX,es,XEUAS-AM R UAS,,Culiacn (sin),24.821461,-107.357894,,0.13,,9327,303,154,,,,,,44891,,, +1150,BOL,,CP194 R Chaco,,Yacuiba (trj),-22.016667,-63.7,,0.2,,10659,241,156,,1000-2400,123456,,,36680,,, +1150,BOL,,CP194 R Chaco,,Yacuiba (trj),-22.016667,-63.7,,0.2,,10659,241,156,,1100-1600,......7,,,36680,,, +1150,USA,,KXET,,Portland (OR),45.642778,-122.613889,,0.01,,8107,325,158,,,,9962,,39273,,, +1152,ROU,ro,SRR R Romnia Actualităţi,,Cluj-Napoca/Jucu (CJ),46.867139,23.807611,,400,002 182,1381,108,45,,0300-2200,1234567,5,,1027,,, +1152,G,en,LBC News 1152,,London/Saffron Green (EN-HTS),51.665556,-0.242222,,24,,459,266,48,,0000-2400,1234567,0,,1021,,, +1152,G,en,Free R 80's,,Birmingham/Langley Mill-A (EN-WMD),52.568333,-1.764889,,3,220,557,278,58,,0000-2400,1234567,993,,1020,,, +1152,E,es,RNE R 5,,Lleida=Lrida/Alcoletge (RNE) (CAT-L),41.6581,0.7029,,10,,1240,203,59,,0000-2400,1234567,989,,1015,,, +1152,G,en,Clyde 2,,Glasgow/Dechmont Hill (SC-SLA),55.794167,-4.159444,,3.6,,803,305,59,,0000-2400,1234567,25,,1019,,, +1152,G,en,Gold,,Brundall/Ferry Lane (EN-NFK),52.618611,1.403889,,0.83,,345,281,61,,0000-2400,1234567,0,,1018,,, +1152,G,en,Magic 1152 MW,,Greenside (EN-TYW),54.958694,-1.765583,,1.8,,626,304,61,,0000-2400,1234567,0,,1023,,, +1152,G,en,Manchester's Magic 1152,,Ashton Moss/Arqiva (EN-GTM),53.491111,-2.114444,,1.5,,593,288,61,,0000-2400,1234567,9968,,1022,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0625-0630,12345..,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0650-0700,12345..,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0800-0815,1234567,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1208-1300,12345..,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1230-1300,.....67,999,,1017,,, +1152,E,es,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1400-1415,12345..,999,,1017,,, +1152,E,es,RNE R 5,,Albacete/El Palo (RNE) (CAM-AB),38.984308,-1.919122,,12,,1595,207,62,,0000-2400,1234567,,,1013,,, +1152,E,es,RNE R 5,,Mlaga/Sta. Rosala (RNE) (AND-MA),36.717311,-4.576356,,25,,1916,211,62,,0000-2400,1234567,9993,,1016,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0815-1208,12345..,999,,1017,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0815-1230,.....67,999,,1017,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1300-1400,12345..,999,,1017,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1300-2300,.....67,999,,1017,,, +1152,E,es,RNE R 5,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,1415-2300,12345..,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0630-0650,12345..,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0700-0800,12345..,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0711-0800,.....67,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,2300-0625,1234..7,999,,1017,,, +1152,E,es,RNE R Nacional,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,2300-0710,....56.,999,,1017,,, +1152,E,pt,RNE Castilla y Len,,Zamora/Ctra. Aldehuela (CAL-ZA),41.522903,-5.713694,,10,,1492,223,62,,0710-0711,.....67,999,,1017,,, +1152,E,es,RNE R 5,,Cartagena/RNE (MUR-MU),37.628333,-0.966803,,12,,1710,203,63,,0000-2400,1234567,,,1014,,, +1152,G,en,Gold,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,0.32,,756,260,69,,0000-2400,1234567,,,1024,,, +1152,UAE,ml,Voice of Kerala,,Ras al-Khaimah (rak),25.8,55.975,,200,,5049,106,85,,0100-2100,1234567,0,,1029,,, +1152,PAK,,PBC R Pakistan/NBS News,,Rawalpindi (pjb),33.609833,72.975972,,100,,5581,84,93,,0200-0400,1234567,20,,49870,,, +1152,PAK,,PBC R Pakistan/NBS News,,Rawalpindi (pjb),33.609833,72.975972,,100,,5581,84,93,,1300-1800,1234567,20,,49870,,, +1152,KEN,sw,KBC R Taifa-Sauti ya Mkenya,,Wajir (nea),1.845731,40.103244,,50,,6402,139,104,,0200-2110,1234567,999,,1967,,, +1152,AGL,pt,RNA Em. Prov. do Zaire,,M'Banza Kongo (zai),-6.266667,14.25,,10,,6534,171,112,,0400-2100,1234567,,,2472,,, +1152,RUS,ru,R Rossii,,Komsomolsk-na-Amure (KH),50.657792,136.904278,,50,,7678,31,117,,1900-1300,1234567,,,46931,,, +1152,CHN,,Bayannur RGD,,Linhe/NMTS691 (NM),40.729444,107.354444,,10,,7200,55,119,,,,,,49839,,, +1152,CHN,,Hunan RGD Xinwen Guangbo,,Changde (HN),29.033333,111.7,,150,,8454,60,120,,,,,,36201043,,, +1152,CHN,mn,Hinggan=Xingan RGD,,Ulanhot/NMTS825 (NM),46.126667,122.046444,,10,,7491,43,122,,,,,,49843,,, +1152,CHN,,Dalian RGD Chengshi,,Dalian (LN),38.9,121.583333,,10,,8118,47,128,,2050-1700,1234567,,,49841,,, +1152,KOR,ko,HLCW KBS 1 R,,Wonju (gan),37.359444,127.953611,,10,,8571,44,132,,0000-2400,1234567,,,49866,,, +1152,THA,th,Ror. Dor.,,Chiang Mai/Chottana Road (cmi),18.820833,98.979722,,10,,8539,76,132,,????-1800,1234567,,,49873,,, +1152,CHN,,Hunan RGD Xinwen Guangbo,,Hengyang/Hudong Cun (HN),26.895278,112.659167,,10,,8700,61,133,,2130-1700,1234567,,,49842,,, +1152,J,ja,JOPC NHK2,,Kushiro (hok),42.990278,144.4125,,10,,8697,30,133,,2030-1500,1.....7,,,49863,,, +1152,J,ja,JOPC NHK2,,Kushiro (hok),42.990278,144.4125,,10,,8697,30,133,,2030-1635,.2345..,,,49863,,, +1152,J,ja,JOPC NHK2,,Kushiro (hok),42.990278,144.4125,,10,,8697,30,133,,2030-1640,.....6.,,,49863,,, +1152,J,,JORB NHK2,,Kochi (shi-koc),33.566667,133.6,,10,,9196,42,134,,2030-1500,1.....7,,,49862,,, +1152,J,,JORB NHK2,,Kochi (shi-koc),33.566667,133.6,,10,,9196,42,134,,2030-1635,.2345..,,,49862,,, +1152,J,,JORB NHK2,,Kochi (shi-koc),33.566667,133.6,,10,,9196,42,134,,2030-1640,.....6.,,,49862,,, +1152,THA,th,Ror. Dor.,,Khon Kaen/Ratkhanung Rd (kkn),16.454167,102.847222,,10,,9000,75,134,,????-1630,1234567,,,49874,,, +1152,TWN,,Hua Sheng BS-HS R 1,,Taipei (TPS),25.096167,121.521931,,5,,9378,55,138,,,,,,49876,,, +1152,CHN,,Hunan RGD Xinwen Guangbo,,Zhangjiajie/Dayongqiao (HN),29.135,110.445833,,1,,8371,61,141,,,,,,36200444,,, +1152,CHN,,Hunan RGD Xinwen Guangbo,,Yongzhou (HN),26.416667,111.616667,,1,,8680,62,143,,,,,,49845,,, +1152,PHL,,DYCM-AM,,Bogo (ceb),11,124,,5,,10829,61,143,,,,,,49871,,, +1152,TWN,,BCC Country Network,,Puli (NT),23.968333,120.969167,,1,,9450,57,145,,0000-2400,1234567,,,49875,,, +1152,AUS,en,6PNN ABC News R,,Busselton/Kealy (WA),-33.659986,115.229306,,10,,14126,99,151,,,,997,,37700074,,, +1152,INS,id,PAS-R Pastra,,Banjar (JB-kbj),-7.372222,108.540278,,1,,11481,85,152,,,,,,49855,,, +1152,INS,id,R Suara Istana,,Yogyakarta (YO-yog),-7.783333,110.366667,,1,,11641,84,152,,0000-????,1234567,,,35400064,,, +1152,INS,id,R Yasmara,,Surabaya (JI-ksu),-7.283056,112.729722,,1,,11757,82,153,,0200-1700,1234567,7,,49861,,, +1152,INS,id,Jembrana FM/R.Ananda Praja Suara,,Negara (BA-jem),-8.366667,114.616667,,1,,11980,81,154,,,,,,49857,,, +1152,J,,NHK R 2,,Tsuyama (chg-oka),35.058394,134.006953,,0.1,,9070,41,154,,2030-1500,1.....7,,,49865,,, +1152,J,,NHK R 2,,Tsuyama (chg-oka),35.058394,134.006953,,0.1,,9070,41,154,,2030-1635,.2345..,,,49865,,, +1152,J,,NHK R 2,,Tsuyama (chg-oka),35.058394,134.006953,,0.1,,9070,41,154,,2030-1640,.....6.,,,49865,,, +1152,AUS,en,2WG,,Wagga Wagga/Brucedale (NSW),-35.042208,147.415528,,2,,16408,74,165,,0000-2400,1234567,2,,49838,,, +1152,NZL,,3ZC Newstalk ZB,,Timaru/Fairview (CAN),-44.401167,171.143583,,2,,18601,59,172,,,,999,,49867,,, +1155,UKR,,LS,b,Krasnyi Luch,48.1875,38.958333,,0.025,,2339,88,96,,,,2,L1024 U1028 15.3s,IDx2 + 7gap,85872,, +1155,KAZ,,NT,b,Tole Bi (zha),43.6875,73.708333,,0.025,,4919,73,122,,,,,,85873,,, +1160,USA,,WSKW,,Skowhegan (D) (ME),44.745278,-69.693333,,10,,5413,293,101,,,,,,20012603,,, +1160,USA,,WYLL,,Chicago (D) (IL),42.041667,-87.865833,,50,,6712,302,107,,,,,,20016222,,, +1160,USA,,WOBM,,Lakewood Township (NJ),40.135833,-74.23,,8.9,,6026,292,108,,,,,,42554,,, +1160,USA,,WYLL,,Chicago (N) (IL),41.573056,-87.993611,,50,,6757,301,108,,,,,,20016283,,, +1160,USA,,WPIE,,Trumansburg (NY),42.545,-76.710833,,5,,6004,295,110,,,,,,42692,,, +1160,USA,,WSKW,,Skowhegan (N) (ME),44.745,-69.692222,,0.73,,5412,293,112,,,,,,43016,,, +1160,USA,,WYLL,,Chicago (D aux) (IL),41.573056,-87.993611,,15,,6757,301,113,,,,1,,43526,,, +1160,USA,en,WVNJ,,Oakland (NJ),41.056389,-74.249444,,2.5,,5959,292,113,,,,,,43316,,, +1160,ATG,,Caribbean R Lighthouse,,Jolly Harbour (atg),17.066722,-61.868972,,10,,7042,264,117,,0925-0145,1234567,998,,46794,,, +1160,BER,en,VSB3 BBC WS,,Ireland Island South (-),32.313694,-64.842111,,1,,5997,278,117,,0000-2400,1234567,992,,46796,,, +1160,USA,,WABY,,Mechanicville (NY),42.92,-73.702222,,0.57,,5790,294,117,,,,999,,40636,,, +1160,USA,,WBYN,,Lehighton (PA),40.8175,-75.691944,,1,,6068,293,118,,,,,,43538,,, +1160,USA,,WMET,,Gaithersburg (MD),39.187778,-77.215556,,1.5,,6286,293,118,,,,,,42305,,, +1160,USA,en,WCCS,,Homer City (PA),40.571667,-79.17,,1,,6303,295,120,,,,,,40968,,, +1160,USA,en,KSL,,Salt Lake City (UT),40.779444,-112.098889,,50,,8110,316,121,,,,0,,39375,,, +1160,USA,,KVCE,,Highland Park (D) (TX),33.176944,-97.676667,,35,,8021,301,122,,,,,,38038,,, +1160,PTR,es,WBQN,,Barceloneta-Manati (PR),18.439722,-66.551944,,2.5,,7244,268,125,,1100-0200,1234567,36,,40897,,, +1160,USA,en,WCVX,,Florence (KY),38.969167,-84.682222,,0.99,,6765,297,125,,,,,,40889,,, +1160,VEN,,YVRR R Industrial 1160 Estereo,,Guarenas (mir),10.416667,-66.666667,,10,,7942,263,126,,,,,,45448,,, +1160,USA,,WKCM,,Hawesville (KY),37.905556,-86.758333,,1,,6976,298,127,,,,,,41975,,, +1160,USA,,WCRT,,Donelson (TN),36.163611,-86.715556,,1,,7114,296,128,,,,,,41980,,, +1160,USA,,WCXI,,Fenton (MI),42.808333,-83.730556,,0.215,,6410,300,128,,,,,,41112,,, +1160,USA,,WJFJ,,Tryon (NC),35.235278,-82.240833,,0.5,,6911,293,129,,,,,,41872,,, +1160,USA,,WODY,,Fieldale (VA),36.71,-79.966111,,0.25,,6651,292,130,,,,,,42566,,, +1160,USA,,WTEL,,Red Springs (NC),34.838611,-79.176667,,0.25,,6748,290,130,,,,,,43127,,, +1160,CLM,es,HJEC,,Ccuta (nsa),7.816667,-72.466667,,10,,8564,266,132,,,,,,37407,,, +1160,CLM,es,HJS31,,Barrancabermeja (sat),7.066667,-73.85,,10,,8723,267,133,,,,,,35901570,,, +1160,B,pt,ZYH714 Rdio Globo,,Gama (DF),-15.997672,-48.050378,,10,,9205,232,134,,,,,,36901922,,, +1160,B,pt,ZYI202 Rdio Espirito Santo,,Vitria (ES),-20.232722,-40.283817,,10,,9226,223,134,,,,16,,36901928,,, +1160,B,pt,ZYI674 Rdio Cariri,,Campina Grande/Sitio Covo (PB),-7.180256,-35.885253,,1,,7715,226,134,,,,,,36901912,,, +1160,CLM,es,HJEV R Unica,,Cali (val),3.5,-76.533333,,10,,9219,267,134,,,,996,,52590,,, +1160,CLM,es,HJOC Ecos de Colombia,,Bogot D. C. (bdc),4.716667,-74.116667,,10,,8947,265,134,,,,1,,37656,,, +1160,CUB,es,R Enciclopedia,,Santiago de Cuba/CTOM1 (sc),20.055531,-75.804389,,1,,7738,277,134,,,,,,36556,,, +1160,PNR,es,HOWK R Metrpolis,,Ciudad de Panam/Orillac (pnm),9.024389,-79.515786,,10,,8939,272,134,,,,,,52335,,, +1160,USA,es,WIWA,,St. Cloud (FL),28.270833,-81.333333,,0.5,,7420,287,134,,,,,,42636,,, +1160,VEN,,YVOK R Universidad,,Mrida (mrd),8.566667,-71.166667,,5,,8410,265,134,,,,,,45408,,, +1160,B,pt,ZYH660 Rdio Montevidu,,Cedro (CE),-6.598497,-39.0567,,1,,7816,229,135,,,,,,36901910,,, +1160,B,pt,ZYH784 Rdio Silvestre,,Itabera (GO),-16.013956,-49.808786,,10,,9302,233,135,,,,,,36901924,,, +1160,CLM,es,HJBL,,Barranquilla (atl),10.866667,-74.816667,,5,,8458,270,135,,,,,,37350,,, +1160,MEX,es,XEQIN-AM,,San Quintn (bcn),30.563056,-115.941667,,10,,9252,313,135,,,,9,,52636,,, +1160,B,pt,Rdio Cano Nova,,Itabuna/Roa do Povo (BA),-14.834953,-39.357239,,5,,8646,225,136,,,,,,36901930,,, +1160,CLM,es,HJAZ,,Montera (cor),8.616667,-75.783333,,5,,8720,269,136,,,,,,37340,,, +1160,CUB,es,R Bayamo,,Piln (gr),19.900169,-77.361178,,1,,7856,278,136,,,,,,36617,,, +1160,USA,es,WEWC,,Callahan (FL),30.374444,-81.741111,,0.25,,7273,289,136,,,,,,41341,,, +1160,B,pt,Rdio Cidade Modelo,,Bocaina (PI),-6.949167,-41.324167,,1,,7969,231,137,,,,,,36901911,,, +1160,DOM,,HIBE Rlandia,,Santiago de los Caballeros (sto),19.45,-70.7,,0.25,,7441,272,137,,0900-0400,1234567,,,52242,,, +1160,PNR,es,HOC20 Ondas Chiricanas,,Dolega (chq),8.616944,-82.446389,,5,,9175,274,137,,,,,,52334,,, +1160,USA,,KCTO,,Cleveland (MO),38.673889,-94.607778,,0.23,,7375,303,137,,,,,,38218,,, +1160,USA,,KVCE,,Highland Park (N) (TX),33.039167,-96.942778,,1,,7990,301,137,,,,,,20012584,,, +1160,USA,,WCFO,,East Point (GA),33.826111,-84.605556,,0.16,,7174,293,137,,,,,,42343,,, +1160,BOL,,CP132 R Continental,,La Paz (lpz),-16.5,-68.116667,,10,,10435,248,138,,0930-2400,1234567,,,36638,,, +1160,CLM,es,HJZV R Las Lajas,,Ipiales (nar),0.8,-77.633333,,5,,9531,266,138,,,,,,37668,,, +1160,MEX,es,XEGI-AM R Reyna,,Tamazunchale (slp),21.240867,-98.766447,,4,,9138,295,138,,,,,,44061,,, +1160,B,pt,ZYH652 Rdio Vale do Coreau,,Granja/Lagoa Grande (CE),-3.115486,-40.833967,,0.25,,7569,232,139,,,,,,36901915,,, +1160,B,pt,ZYI385 Rdio A Voz do Oeste,,Cuiab (MT),-15.6,-55.970556,,5,,9612,239,139,,,,,,36901923,,, +1160,HND,,HREJ,,San Pedro Sula (cor),15.216667,-88.016667,,3,,8975,283,139,,,,,,37750,,, +1160,B,pt,ZYI558 Rdio Guam AM,,So Miguel do Guam (PA),-1.6,-47.486433,,0.25,,7799,239,141,,,,,,36901929,,, +1160,CLM,es,HJAU,,Florencia (caq),1.566667,-75.583333,,2.5,,9324,265,141,,,,,,37336,,, +1160,USA,,KRDY,,San Antonio (TX),29.536389,-98.686389,,1,,8398,300,141,,,,,,39231,,, +1160,USA,en,KFXE,,Waukon (IA),43.286944,-91.468333,,0.026,,6819,305,141,,,,,,38980,,, +1160,PRG,,ZP72 R Antena 2,,Asuncin (asu),-25.254594,-57.642408,,5,,10605,235,142,,,,,,45525,,, +1160,PRU,,OAX4C R Panamericana,,Lima (lim),-12.216667,-77.066667,,5,,10638,257,142,,,,,,40303,,, +1160,CTR,,TILX R Columbia,,Puntarenas (pta),9.966667,-84.816667,,1,,9218,277,144,,,,,,40590,,, +1160,GTM,,TGRI R Izabal,,Morales (izb),15.49175,-88.825006,,1,,9004,284,144,,1100-0130,1234567,,,40529,,, +1160,HND,,HRGF,,El Paraiso (elp),13.833333,-86.566667,,1,,8998,281,144,,,,,,37755,,, +1160,HND,,HRYS,,Marcala (lap),14.066667,-88,,1,,9074,282,144,,,,,,37884,,, +1160,NCG,,YNHM R Satlite,,Estel (esl),13.066667,-86.333333,,1,,9050,280,144,,,,,,52225,,, +1160,EQA,,HCVR3 R Via,,Machala (oro),-3.266667,-79.966667,,1.5,,10047,265,145,,,,,,37179,,, +1160,EQA,,HCCP1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36882,,, +1160,EQA,,HCUR6,,Runatacuyac (cot),-0.983333,-78.616667,,1,,9755,265,146,,,,,,37154,,, +1160,B,pt,ZYK558 Rdio Bandeirantes,,Bauru/Praa 3 (SP),-22.321944,-49.070833,,1,,9866,230,147,,,,,,36901909,,, +1160,B,pt,ZYJ741 Rdio Itaber,,Blumenau (SC),-26.852778,-48.998889,,1,,10297,227,148,,,,2,,36901926,,, +1160,URG,,CV116 R Impacto AM 1160,,Mercedes (so),-33.2675,-58.018611,,2,,11364,231,148,,0900-0400,1234567,,,36723,,, +1160,ARG,es,LU32 R Coronel Olavarria,,Olavarria (ba),-36.876906,-60.369614,,2.5,,11815,230,149,,0900-0300,1234567,,,40227,,, +1160,INS,id,R Ratu Anda Suara,,Argamakmur (BE-bku),-3.433333,102.266667,,1,,10709,87,149,,,,,,35400108,,, +1160,B,pt,ZYK273 Universidade Catolica AM,,Pelotas (RS),-31.761944,-52.286389,,1,,10929,227,150,,,,,,36901908,,, +1160,EQA,,HCND4,,Portoviejo (man),-1.066667,-80.45,,0.5,,9887,267,150,,,,,,37040,,, +1160,MEX,es,XEVW-AM R Sensacin,,Acmbaro (gua),20.038703,-100.761911,,0.25,,9369,296,151,,,,,,44998,,, +1160,ARG,,R Excelsior,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,51798,,, +1160,ARG,es,LRH253 R Catarates,,Puerto Iguaz (mn),-25.615861,-54.568517,,0.5,,10470,232,152,,1000-1600,1234567,,,40017,,, +1160,ARG,es,R La Ms Santiaguea,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,33000087,,, +1160,B,pt,ZYH323 Rdio Sociedade TV Manuara,,Boca do Acre (AM),-8.770833,-67.333333,,0.25,,9692,252,152,,,,,,36901914,,, +1160,B,pt,ZYK242 Rdio Miriam AM,,Farroupilha (RS),-29.175556,-51.173889,,0.5,,10628,228,152,,,,,,36901925,,, +1160,B,pt,ZYK245 Rdio Luz e Alegria,,Frederico Westphalen (RS),-27.378056,-53.396389,,0.5,,10573,230,152,,,,,,36901927,,, +1160,B,pt,ZYK582 Rdio Difusora Fernandpolis,,Fernandpolis (SP),-20.279928,-50.26435,,0.25,,9734,232,152,,,,,,36901921,,, +1160,B,pt,ZYK673 Rdio Cacique,,Taubat (SP),-22.994444,-45.55,,0.25,,9752,227,152,,,,54,,36901920,,, +1160,B,pt,ZYK685 Rdio Globo,,Mococa (SP),-21.473383,-46.9888,,0.25,,9677,228,152,,,,,,36901913,,, +1160,B,pt,ZYJ258 Norte AM 1160,,Londrina (PR),-23.233333,-51.141667,,0.25,,10062,231,153,,,,,,36901919,,, +1160,B,pt,ZYK256 Rdio Jaguari AM,,Jaguari/Rua Dona Tereza (RS),-29.494444,-54.699722,,0.5,,10840,230,153,,,,,,36901917,,, +1160,B,pt,ZYK517 Rdio Cacique de Sorocaba,,Votorantim/Av 31 de Maro 111 (SP),-23.539089,-47.447383,,0.25,,9900,228,153,,,,,,36901916,,, +1160,B,,ZYJ776,,Porto Unio (SC),-26.216667,-51.066667,,0.25,,10342,229,154,,,,,,46186,,, +1160,B,pt,ZYJ767 Rdio Difusora de Laguna AM,,Laguna (SC),-28.493333,-48.785,,0.25,,10444,226,154,,,,,,36901907,,, +1160,BOL,,CP317 R Centenario La Nueva,,Santa Cruz (scz),-17.766667,-63.166667,,0.25,,10242,243,154,,0900-0100,1234567,,,36685,,, +1160,BOL,,CP78 R RTC,,Cochabamba (cbb),-17.366667,-66.166667,,0.25,,10390,246,154,,1030-2400,1234567,,,36713,,, +1160,PRU,es,OAX2C R Libertad Mundo,,Trujillo (lal),-8.116667,-79.033333,,0.3,,10410,261,154,,,,,,40278,,, +1160,BOL,,CP98 R Nuevo Mundo,,Sucre (cqs),-19.016667,-65.283333,,0.25,,10484,244,155,,1000-0300,1234567,,,36721,,, +1160,CHL,,CC116 R Ancoa,,Linares (ML),-35.783333,-71.566667,,1,,12338,238,155,,1000-0600,1234567,,,35805,,, +1160,MEX,es,XEIW-AM,,Uruapan (mic),19.422156,-102.064553,,0.1,,9504,296,155,,,,,,44189,,, +1160,ARG,es,LRA57 R Nacional,,El Bolson (rn),-41.990828,-71.542878,,1,,12859,234,156,,0900-0300,1234567,,,39960,,, +1160,URG,es,CW116 R Agraria del Uruguay,,Cerro Chato (tt),-33.1,-55.116667,,0.25,,11198,229,157,,0830-0130,1234567,,,36742,,, +1160,USA,en,KNNV692,,Cedar Hill (TX),32.577667,-96.958333,,0.01,,8031,301,157,,,,,,20010622,,, +1160,USA,en,WQFX528,,Stafford (TX),29.625528,-95.563167,,0.01,,8204,298,159,,,,,,20010621,,, +1160,CHL,,CD116 R Baha'i,,Labranza (Temuco?) (AR),-38.766667,-72.75,,0.25,,12658,237,162,,1030-0230,1234567,,,35855,,, +1161,G,en,BBC R 5 Live,,Bexhill-on-Sea (EN-ESU),50.838056,0.4475,,1,,436,253,61,,0000-0500,1234567,,,1036,,, +1161,G,en,BBC Sussex,,Bexhill-on-Sea (EN-ESU),50.838056,0.4475,,1,,436,253,61,,0500-2400,1234567,,,1036,,, +1161,G,en,Tay AM,,Dundee/Greenside Scalp (SC-DDC),56.45,-2.923972,,1.4,,774,312,63,,0000-2400,1234567,0,,1038,,, +1161,G,en,Magic 1161 AM,,Goxhill/Neatgangs Lane (EN-LIN),53.7065,-0.321583,,0.35,,485,294,66,,0000-2400,1234567,9988,,1037,,, +1161,BUL,bg,BNR Horizont,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,0000-0600,1234567,24,,1030,,, +1161,BUL,bg,BNR Horizont,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,0800-1300,1234567,24,,1030,,, +1161,BUL,bg,BNR Horizont,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,1500-1830,1234567,24,,1030,,, +1161,BUL,bg,BNR Horizont,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,2030-2400,1234567,24,,1030,,, +1161,BUL,bg,BNR Horizont,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,0000-0600,1234567,24,,1031,,, +1161,BUL,bg,BNR Horizont,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,0800-1300,1234567,24,,1031,,, +1161,BUL,bg,BNR Horizont,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,1500-1830,1234567,24,,1031,,, +1161,BUL,bg,BNR Horizont,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,2030-2400,1234567,24,,1031,,, +1161,BUL,tr,R Bulgaria,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,0600-0800,1234567,24,,1030,,, +1161,BUL,tr,R Bulgaria,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,1300-1500,1234567,24,,1030,,, +1161,BUL,tr,R Bulgaria,,Dulovo/Vodno (sil),43.861539,27.150603,,5,,1786,113,68,,1830-2030,1234567,24,,1030,,, +1161,BUL,tr,R Bulgaria,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,0600-0800,1234567,24,,1031,,, +1161,BUL,tr,R Bulgaria,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,1300-1500,1234567,24,,1031,,, +1161,BUL,tr,R Bulgaria,,Targovishte (tgv),43.246617,26.522261,,5,,1790,115,68,,1830-2030,1234567,24,,1031,,, +1161,EGY,,ERTU Mid-Delta R,,Tanta (ghb),30.818167,31.005181,,100,,3101,130,68,,0400-2200,1234567,,,1034,,, +1161,IRN,ar,IRIB WS,,Qasr-e Shirin (ksh),34.448189,45.616767,,300,280,3667,107,69,,1530-0125,1234567,9998,,1800,,, +1161,G,en,Gold,,Blunsdon (EN-WLT),51.609056,-1.794472,,0.16,,566,268,71,,0000-2400,1234567,0,,1039,,, +1161,G,en,BBC R 5 Live,,Kempston (EN-BEF),52.106667,-0.489167,,0.1,,471,273,72,,0000-0500,1234567,0,,1035,,, +1161,G,en,BBC Three Counties R./BBC Asian Network,,Kempston (EN-BEF),52.106667,-0.489167,,0.1,,471,273,72,,0500-2400,1234567,0,,1035,,, +1161,ALG,ar,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2000-2030,1234567,,,200008,,, +1161,ALG,ar,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2100-2130,1234567,,,200008,,, +1161,ALG,ar,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2230-2300,1234567,,,200008,,, +1161,ALG,ar,R Coran,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2300-0200,1234567,,,200008,,, +1161,ALG,ar,R Tamanrasset,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,0200-1930,1234567,,,200008,,, +1161,ALG,en,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2130-2200,1234567,,,200008,,, +1161,ALG,es,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,1930-2000,1234567,,,200008,,, +1161,ALG,es,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2200-2230,1234567,,,200008,,, +1161,ALG,fr,R Algrie Int.,,In Salah (11),27.194444,2.495278,,10,,2790,188,75,,2030-2100,1234567,,,200008,,, +1161,TJK,tg,Tojikiston R.3 Sado-ye Dushanbe,,Orzu (ktl),37.5375,68.794444,,40,,5009,83,91,,0100-1900,1234567,967,,47099,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,0020-0400,1234567,9874,,49886,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,0630-0930,123456,9874,,49886,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,0630-1030,......7,9874,,49886,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,1100-1735,......7,9874,,49886,,, +1161,IND,,AIR South,,Thiruvananthapuram A (KL),8.548611,76.901111,,20,,7931,100,123,,1130-1735,123456,9874,,49886,,, +1161,BGD,,Bangladesh Betar,,Rangamati (cgg),22.658333,92.166667,,10,,7757,79,125,,0530-0830,1234567,,,49881,,, +1161,CHN,,Weifang RGD News,,Weifang (SD),36.731389,119.136667,,10,,8187,50,129,,????-1500,1234567,,,49884,,, +1161,CHN,,Jingmen JGD,,Jingmen (HU),31.033333,112.2,,10,,8308,59,130,,????-1555,1234567,,,49882,,, +1161,THA,th,Wor. Sor. Sor.,,Bangkok/Si Ayutthaya Road (bmp),13.758917,100.531028,,20,,9082,78,131,,2300-1500,1234567,,,49921,,, +1161,CHN,zh,CNR 1,,unknown,34.95,104.5,,1,,7515,61,132,,,,,,36201041,,, +1161,KOR,ko,HLKU MBC,,Busan/Choup (bus),35.183861,129.057847,,10,,8829,44,133,,0000-2400,1234567,,,49911,,, +1161,CHN,,Guangxi JGD Caifu Guangbo,,Beihai (GX),21.483333,109.1,,7.5,,8961,67,135,,,,,,36200355,,, +1161,THA,th,Sor. Thor. Ror. 9,,Ubon Ratchathani/Trakan Rd (urt),15.306619,104.895736,,10,,9235,74,135,,2200-1402,1234567,,,49922,,, +1161,TWN,,BCC Country Network,,Miaoli (ML),24.547839,120.807339,,10,,9388,56,135,,0000-2400,1234567,,,49926,,, +1161,TWN,,BCC Country Network,,Yilan (YL),24.7338,121.802389,,10,,9427,55,135,,0000-2400,1234567,,,49924,,, +1161,PHL,,DWCM-AM Aksyon Radyo,,Dagupan City (pgs),16.033333,120.333333,,10,,10144,61,138,,????-1500,1234567,893,,49916,,, +1161,CHN,,Guangxi JGD Caifu Guangbo,,Bose/GXTS242 (GX),23.890278,106.608889,,1,,8593,67,142,,,,,,36201042,,, +1161,PHL,,DYKR-AM,,Kalibo (akl),11.716667,122.35,,5,,10664,62,142,,2000-1500,1234567,,,49918,,, +1161,PHL,,DZMD-AM,,Daet (cmn),14.116667,122.933333,,5,,10476,60,142,,,,,,49915,,, +1161,CHN,,Wuxi RGD Xinwen,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,2130-1500,1234567,,,49885,,, +1161,PHL,,DYRD-AM,,Tagbilaran City (boh),9.633333,123.85,,5,,10947,62,143,,2100-1500,1234567,,,49919,,, +1161,CHN,,Guangdong RGD/Zhujiang JGD,,Taishan (GD),22.25,112.783333,,1,,9122,64,144,,,,,,36200356,,, +1161,TWN,,Feng Ming Kuangpo Tientai,,Kaohsiung (KHS),22.64255,120.29915,,1,,9534,58,145,,,,,,49925,,, +1161,KOR,,AFN Korea-Thunder AM,,Uijeongbu/Camp Red Cloud (gye),37.747611,127.026472,,0.25,,8491,44,148,,0000-2400,1234567,,,49912,,, +1161,PNG,,NBC R New Ireland,,Kavieng (nir),-2.583333,150.816667,,10,,13600,43,149,,,,,,49920,,, +1161,INS,id,R RON,,Ciputat/Gondrong (BT-tan),-6.191944,106.693056,,1,,11252,86,151,,,,,,35400065,,, +1161,PHL,,DXDS-AM Radyo Ukay,,Digos City (dvs),6.75,125.35,,1,,11306,63,151,,????-1400,1234567,,,49917,,, +1161,J,,NHK R 1,,Imakane (hok),42.416667,139.966667,,0.1,,8595,33,152,,0000-2400,1234567,,,49891,,, +1161,J,,NHK R 1,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,0000-2400,1234567,,,49900,,, +1161,J,,NHK R 1,,Odate (toh-aki),40.266667,140.566667,,0.1,,8831,34,153,,0000-2400,1234567,,,49898,,, +1161,J,,NHK R 1,,Towada (toh-aom),40.6,141.233333,,0.1,,8823,33,153,,0000-2400,1234567,,,49905,,, +1161,J,,JOGQ NHK1,,Toyohashi (chu-aic),34.766667,137.366667,,0.1,,9246,39,154,,0000-2400,1234567,,,49906,,, +1161,J,,NHK R 1,,Aizuwakamatsu (toh-fuk),37.483333,139.95,,0.1,,9083,36,154,,0000-2400,1234567,,,49887,,, +1161,J,,NHK R 1,,Fukuyamakinosyo (chg-hir),34.5,133.35,,0.1,,9094,42,154,,0000-2400,1234567,,,49889,,, +1161,J,,NHK R 1,,Ikeda (shi-tok),34.033333,133.816667,,0.1,,9161,42,154,,0000-2400,1234567,,,49890,,, +1161,J,,NHK R 1,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,0000-2400,1234567,,,49892,,, +1161,J,,NHK R 1,,Miyakonojo (kyu-miy),31.766667,131.083333,,0.1,,9251,45,154,,0000-2400,1234567,,,49894,,, +1161,J,,NHK R 1,,Nakatsugawa (chu-gif),35.483333,137.483333,,0.1,,9180,38,154,,0000-2400,1234567,,,49895,,, +1161,J,,NHK R 1,,Naruko (toh-miy),38.75,140.733333,,0.1,,8988,34,154,,0000-2400,1234567,,,49896,,, +1161,J,,NHK R 1,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,0000-2400,1234567,,,49897,,, +1161,J,,NHK R 1,,Saiki (kyu-oit),32.966667,131.916667,,0.1,,9176,44,154,,0000-2400,1234567,,,49901,,, +1161,J,,NHK R 1,,Shirotori (chu-gif),35.85,136.883333,,0.1,,9119,39,154,,0000-2400,1234567,,,49903,,, +1161,J,,NHK R 1,,Shobara (chg-hir),34.85,133.033333,,0.1,,9046,42,154,,0000-2400,1234567,,,49902,,, +1161,J,,NHK R 1,,Toyooka (kns-hyo),35.533333,134.833333,,0.1,,9061,40,154,,0000-2400,1234567,,,49907,,, +1161,J,,NHK R 1,,Tsunan (chu-nii),37.033333,138.683333,,0.1,,9077,37,154,,0000-2400,1234567,,,49908,,, +1161,J,,NHK R 1,,Ueno (kns-mie),34.75,136.133333,,0.1,,9194,40,154,,0000-2400,1234567,,,49909,,, +1161,J,,NHK R 1,,Yusuhara (shi-koc),33.383333,132.933333,,0.1,,9183,43,154,,0000-2400,1234567,,,49910,,, +1161,J,ja,NHK R 1,,Futaba,34.5,134,,0.1,,9124,41,154,,,,,,31400077,,, +1161,J,ja,NHK R 1,,Matsumae,34.5,134,,0.1,,9124,41,154,,,,,,31400076,,, +1161,J,,NHK R 1,,Atami (chu-shi),35.083333,139.083333,,0.1,,9286,37,155,,0000-2400,1234567,,,49888,,, +1161,J,,NHK R 1,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,0000-2400,1234567,,,49899,,, +1161,J,,NHK R 1,,Tanabe (kns-wak),33.75,135.4,,0.1,,9259,41,155,,0000-2400,1234567,,,49904,,, +1161,AUS,en,5PA ABC Southeast SA,,Naracoorte (SA),-36.940472,140.671139,,10,,16098,83,157,,0000-2400,1234567,,,49880,,, +1161,AUS,en,4FC,,Maryborough/Dundathu (QLD),-25.463653,152.729317,,2,,15923,57,164,,0000-2400,1234567,17,,49879,,, +1161,NZL,mi,2XM Te Upoko o Te Ika,,Wellington/Titahi Bay (WGN),-41.100556,174.847778,,5,,18509,40,168,,,,,,49914,,, +1161,AUS,en,7FG ABC Northern Tasmania,,Fingal (TAS),-41.688972,147.875778,,1,,16911,84,170,,0000-2400,1234567,,,49878,,, +1165,UKR,,HC,b,Khmelnytskyi (KM),49.354167,26.958333,,0.025,,1473,94,88,,,,,,85874,,, +1165,UKR,,HM,b,Khmelnytskyi (KM),49.354167,26.958333,,0.025,,1473,94,88,,,,,U720 ,Cont ID,85875,, +1170,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.410556,28.521111,,800,064 244,1489,76,43,,0400-0700,1234567,9996,,1043,,, +1170,BLR,be,BR Pershy Kanal,,Sasnovy (MA),53.410556,28.521111,,800,064 244,1489,76,43,,1500-1600,1234567,9996,,1043,,, +1170,BLR,de,BR R Belarus,,Sasnovy (MA),53.410556,28.521111,,800,064 244,1489,76,43,,1700-1900,1234567,9996,,1043,,, +1170,BLR,pl,BR R Belarus,,Sasnovy (MA),53.410556,28.521111,,800,064 244,1489,76,43,,1600-1700,1234567,9996,,1043,,, +1170,RUS,ar,Voice of Russia,,Tbilisskaya/RV680 (KD),45.477306,40.094922,,1200,200,2549,93,52,ME,1600-2100,1234567,9997,,1050,,, +1170,SVN,,R Slovenia Int.,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,2300-0500,1234567,9997,,1052,,, +1170,SVN,it,R Capodistria,,Beli Kri (kp),45.520878,13.575483,,15,,900,142,54,,0500-2300,1234567,9997,,1052,,, +1170,G,en,Gold,,Ipswich/Foxhall Heath (EN-SFK),52.05525,1.226278,,0.28,,354,271,66,,0000-2400,1234567,9983,,1044,,, +1170,G,en,Swansea Sound,,Swansea/Winsh-wen (WA-SWA),51.653361,-3.907167,,0.58,,709,270,66,,0000-2400,1234567,0,,1045,,, +1170,G,en,Magic 1170 AM,,Stockton-on-Tees (EN-DUR),54.588667,-1.349778,,0.32,,584,301,68,,0000-2400,1234567,9985,,1046,,, +1170,G,en,Signal 2,,Stoke-on-Trent/Sideway (EN-SFS),52.98775,-2.185417,,0.2,,589,283,70,,0000-2400,1234567,9988,,1047,,, +1170,G,en,Gold,,Portsmouth/Farlington Marshes (EN-HPS),50.842444,-1.025,,0.12,,534,258,72,,0000-2400,1234567,,,1048,,, +1170,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400057,,, +1170,IRN,fa,IRIB R Iran,,Semnan (smn),35.5445,53.357878,,50,,4101,98,81,,0000-2400,1234567,,,1801,,, +1170,PAK,,PBC R Pakistan/NBS News,,Peshawar/Pabbi (kpk),34.007,71.831194,,100,,5473,85,92,,0200-0400,1234567,,,31500004,,, +1170,PAK,,PBC R Pakistan/NBS News,,Peshawar/Pabbi (kpk),34.007,71.831194,,100,,5473,85,92,,1300-1900,1234567,,,31500004,,, +1170,USA,,WWVA,,Wheeling (WV),40.101944,-80.867222,,50,,6444,296,105,,,,0,,43439,,, +1170,ALS,,KJNP,,North Pole (AK),64.759444,-147.323889,,21,,6825,348,112,,0000-2400,1234567,3,,38681,,, +1170,ALS,,KJNP,,North Pole (AK),64.759444,-147.323889,,21,,6825,348,112,,????-0810,1234567,3,,38681,,, +1170,USA,en,WFPB,,Orleans (MA),41.78,-70.01,,1,140,5638,290,113,,1200-2400,1234567,,,41429,,, +1170,USA,,WDIS,,Norfolk (MA),42.092222,-71.303611,,1,,5698,292,114,,,,,,20016011,,, +1170,CHN,zh,CNR 1,,Ji'an/JXTS802 (JX),26.828181,114.977453,,600,,8844,59,115,,2025-1805,1234567,,,36201254,,, +1170,USA,,WCTF,,Vernon (CT),41.868611,-72.484444,,1,,5789,292,115,,,,,,41096,,, +1170,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.82,126.863056,,500,,8663,46,116,J,1100-1300,1234567,,,49945,,, +1170,KOR,ko,HLSR KBS Hanminjok Bangsong 2,,Gimje=Kimjae (jeb),35.82,126.863056,,500,,8663,46,116,,1400-1000,1234567,,,49945,,, +1170,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.82,126.863056,,500,,8663,46,116,FE,1000-1100,1234567,,,49945,,, +1170,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.82,126.863056,,500,,8663,46,116,FE,1300-1400,1234567,,,49945,,, +1170,USA,es,WCXN,,Claremont (NC),35.726111,-81.147778,,7.7,,6803,292,116,,,,,,41113,,, +1170,CHN,zh,Gansu RGD Nongcun,,Zhangye (GS),38.931111,100.476944,,10,,6948,61,117,,,,,,36201261,,, +1170,USA,,KFAQ,,Tulsa (OK),36.146389,-95.807222,,50,,7658,302,117,,,,3,,38373,,, +1170,USA,,WCLN,,Clinton (NC),35.0225,-78.349444,,5,,6680,290,117,,,,,,41028,,, +1170,USA,,WWLE,,Cornwall (NY),41.44,-74.073611,,0.8,,5920,293,117,,,,,,43398,,, +1170,USA,en,WDEK,,Lexington (SC),33.972222,-81.277778,,10,,6951,291,117,,1200-2400,1234567,,,42164,,, +1170,CHN,zh,CNR 1,,Oroqen=Elunchun/NMTS051 (NM),50.583333,123.716667,,10,,7170,39,119,,2025-1805,1234567,,,36201258,,, +1170,USA,,WLBH,,Mattoon (IL),39.518056,-88.370833,,5,,6943,300,119,,,,,,42132,,, +1170,USA,,WWTR,,Bridgewater (NJ),40.560278,-74.589444,,0.6,,6017,292,119,,,,9968,,43437,,, +1170,AGL,pt,RNA Em. Prov. do Huambo,,Huambo (hua),-12.776783,15.855181,,10,,7272,170,120,,0300-2200,1234567,,,2027,,, +1170,BGD,,Bangladesh Betar,,Dhaka C/Kallyanpur (dha),23.780556,90.357,,10,,7541,79,122,,0900-1100,1234567,,,49931,,, +1170,BGD,,R Metrowave,,Dhaka C/Kallyanpur (dha),23.780556,90.357,,10,,7541,79,122,,0130-0430,1234567,,,49931,,, +1170,BGD,,R Metrowave,,Dhaka C/Kallyanpur (dha),23.780556,90.357,,10,,7541,79,122,,0600-0900,1234567,,,49931,,, +1170,CUB,es,R Trinchera,,Mais (gu),20.244444,-74.152778,,10,,7610,276,123,,,,,,31600077,,, +1170,HTI,,R Soleil,,Truittier (Port-au-Prince) (oue),18.616667,-72.333333,,10,,7623,273,123,,,,,,35655,,, +1170,USA,,WFDL,,Waupun (WI),43.641667,-88.722778,,1,,6636,303,123,,,,,,41368,,, +1170,USA,,KJOC,,Davenport (IA),41.389167,-90.516667,,1,,6918,303,126,,,,7,,38682,,, +1170,USA,,WDFB,,Junction City (KY),37.596111,-84.838611,,1,,6884,296,126,,,,,,41155,,, +1170,VEN,,YVKW Celestial 1170 AM,,Maiquetia (vgs),10.6,-66.95,,10,,7946,263,126,,1000-0400,1234567,,,51689,,, +1170,SWZ,en,TWR Africa,,Mpangela Ranch (man),-26.338056,31.598333,,50,,9062,157,127,SAf,1700-2105,1234567,,,2475,,, +1170,SWZ,zu,TWR Africa,,Mpangela Ranch (man),-26.338056,31.598333,,50,,9062,157,127,SAf,1630-1700,1234567,,,2475,,, +1170,CHN,,Binzhou JGD,,Binzhou (SD),37.366667,118.016667,,10,,8071,51,128,,,,,,49932,,, +1170,USA,en,KPUG,,Bellingham (WA),48.776111,-122.439167,,5,,7799,327,128,,,,2,,39176,,, +1170,CHN,,Zaozhuang RGD,,Zaozhuang (SD),34.841667,117.578222,,10,,8273,53,130,,,,,,49933,,, +1170,CHN,zh,Gansu RGD Nongcun,,Lanzhou/GSTS535 (GS),36.086389,103.846111,,1,,7382,61,131,,,,,,36201255,,, +1170,USA,,WKFL,,Bushnell (FL),28.708611,-82.126667,,1,,7435,288,131,,,,,,42004,,, +1170,USA,,WSOS,,St. Augustine Beach (FL),29.918056,-81.390556,,0.71,,7288,288,131,,,,,,43046,,, +1170,USA,en,WGMP,,Montgomery (AL),32.454444,-86.289167,,1,,7392,293,131,,,,,,40646,,, +1170,USA,en,WQHC,,Hanceville (AL),34.074444,-86.778889,,0.85,,7289,295,131,,1200-2400,1234567,,,43491,,, +1170,CHN,,Hefei RGD Story,,Hefei/Sanshitou (AH),31.987667,117.329028,,10,,8515,55,132,,,,,,36200437,,, +1170,CHN,zh,Nanjing RGD Chengshi Guanli Guangbo,,Nanjing/Gulizhen (JS),31.862533,118.671722,,10,,8601,54,132,,2130-1600,1234567,,,36200357,,, +1170,CLM,es,HJE74 Meridiano 70,,Arauca (ara),7.016667,-70.75,,10,,8517,264,132,,,,,,37541,,, +1170,CLM,es,HJNW Caracol,,Cartagena (bol),10.433333,-75.516667,,10,,8544,270,132,,0000-2400,1234567,4,,37599,,, +1170,CLM,es,HJPB,,Valledupar (ces),10.716667,-73.283333,,7.5,,8367,269,132,,,,,,37619,,, +1170,DOM,,HIJS Cadena Espacial,,Azua de Compostela (azu),18.433333,-70.716667,,1,,7529,272,132,,,,,,52243,,, +1170,B,pt,ZYJ598 Rdio Difusora de Mossor,,Mossor (RN),-5.207222,-37.313889,,1,,7590,228,133,,,,,,36901946,,, +1170,CHN,zh,Nantong RGD Jiaotong,,Nantong (JS),31.855833,121.010556,,10,,8729,52,133,,,,,,36201257,,, +1170,CLM,es,HJGA,,Tunja (boy),5.566667,-73.333333,,10,,8820,265,133,,,,,,37449,,, +1170,CLM,es,HJKW R Nutibara,,Medelln (ant),6.266667,-75.566667,,10,,8910,268,133,,,,98,,47307,,, +1170,THA,th,Sor. Thor. Ror. 8,,Phitsanulok/Tha Chang (psl),16.955472,100.116778,,10,,8776,77,133,,2300-1400,1234567,,,49953,,, +1170,CHN,,Guangzhou RGD Feiyang 88,,Guangzhou (GD),23.183333,113.233333,,10,,9066,63,134,,2100-1600,1234567,,,36200365,,, +1170,CHN,zh,CNR 1,,Huizhou (GD),23.069167,114.4125,,10,,9147,62,134,,2025-1805,1234567,,,36200438,,, +1170,CLM,es,HJBX Ondas del Meta,,Villavicencio (met),4.15,-73.633333,,10,,8964,265,134,,,,34,,35901576,,, +1170,USA,en,WRPM,,Poplarville (MS),30.815278,-89.506667,,1,,7730,294,134,,1300-0100,1234567,,,42907,,, +1170,B,pt,ZYJ273 Rdio Atalaia,,Curitiba (PR),-25.356944,-49.05,,20,,10156,228,135,,,,,,36901947,,, +1170,THA,th,Sor. Thor. Ror. 4,,Chanthaburi (ctb),12.607778,102.098056,,10,,9287,78,135,,2200-1700,1234567,,,49952,,, +1170,USA,,KJJD,,Windsor (CO),40.462778,-104.913056,,1,,7782,311,135,,,,,,38670,,, +1170,USA,en,WPQJ562,,East Hampton (NY),40.966667,-72.183333,,0.01,,5835,291,135,,,,,,20010623,,, +1170,EQA,,HCJM4,,Esmeraldas (esm),0.933333,-79.683333,,10,,9659,267,136,,,,,,36988,,, +1170,USA,hi,KLOK,i,San Jose (CA),37.311389,-121.816111,,5,,8880,321,136,,,,0,,52621,,, +1170,VTN,,VOV An Giang R,,Long Xuyn (agg),10.447644,105.328567,,10,,9692,77,136,,0330-0545,1234567,42,,49955,,, +1170,VTN,,VOV An Giang R,,Long Xuyn (agg),10.447644,105.328567,,10,,9692,77,136,,0900-1200,1234567,42,,49955,,, +1170,VTN,,VOV An Giang R,,Long Xuyn (agg),10.447644,105.328567,,10,,9692,77,136,,2200-0015,12345..,42,,49955,,, +1170,VTN,,VOV An Giang R,,Long Xuyn (agg),10.447644,105.328567,,10,,9692,77,136,,2200-0145,.....67,42,,49955,,, +1170,NCG,,R Maxima,,Masaya (msy),11.933333,-86.066667,,5,,9131,279,137,,,,,,52226,,, +1170,PTR,,WLEO,,Ponce (PR),17.981111,-66.613611,,0.2,,7287,268,137,,0000-2400,1234567,,,42154,,, +1170,SLV,,YSVE,,San Salvador (ssl),13.716667,-89.066667,,5,,9176,283,137,,,,,,45336,,, +1170,B,pt,ZYH284 Rdio Guaranpolis,,Maus (AM),-3.398294,-57.70985,,2.5,,8589,247,138,,,,,,36901949,,, +1170,B,pt,ZYL269 Rdio Sociedade Oliveira,,Oliveira (MG),-20.753272,-44.77185,,5,,9495,227,138,,,,95,,36901939,,, +1170,CHN,zh,Xuancheng RGD,,Xuancheng (AH),30.95,118.75,,3,,8688,54,138,,2155-1500,1234567,,,36200441,,, +1170,GTM,,TGRL R Cadena Landivar,,Quetzaltenango (qzt),14.816667,-91.5,,5,,9240,285,138,,0900-0300,1234567,,,40531,,, +1170,USA,en,WAVS,,Davie (FL),26.0775,-80.2175,,0.25,,7528,284,138,,,,,,40778,,, +1170,B,pt,ZYK569 Rdio Bandeirantes,,Campinas (SP),-22.875611,-47.0709,,5,,9817,228,139,,,,,,36901944,,, +1170,USA,,KCBQ,,San Diego (CA),32.895,-116.925278,,2.9,,9079,315,139,,,,,,38130,,, +1170,B,pt,ZYJ363 Rdio Colmia,,Mandaguau (PR),-23.378889,-52.031111,,5,,10123,231,140,,,,,,36901932,,, +1170,PHL,tl,DYSL-AM Radyo Ng Bayan,,Sogod/S.Leyte State Univ. (lyt),10.393611,124.980556,,10,,10944,61,140,,,,,,50611,,, +1170,MEX,es,XECD-AM R Oro,,Puebla (pue),19.10955,-98.222408,,2.5,,9294,293,141,,,,,,43829,,, +1170,MEX,es,XEUVA-AM,,Aguascalientes (agu),21.887125,-102.333556,,2.5,,9298,298,141,,,,,,44936,,, +1170,PHL,tl,DXMR-AM Radyo ng Bayan,,Zamboanga City (zds),6.933333,122.1,,10,,11090,65,141,,,,,,49950,,, +1170,CHN,,Lu'an RGD,,Lu'an (AH),31.75,116.483333,,1,,8489,55,142,,2155-1505,1234567,,,36200439,,, +1170,CHN,zh,CNR 1,,Shanghai/SHTS806 (SH),31.199444,121.416944,,1,,8811,52,143,,1000-1805,1234567,,,36201259,,, +1170,CAN,en,CBRH,,New Hazelton (BC),55.250556,-127.577222,,0.04,,7349,333,144,,,,,,20109156,,, +1170,CHN,zh,CNR 1,,Dabu (GD),22.366667,113.45,,1,,9152,63,144,,2025-1805,1234567,,,36200435,,, +1170,CHN,zh,CNR 1,,Donghai (GD),22.95,115.633333,,1,,9231,61,144,,2025-1805,1234567,,,36200436,,, +1170,CHN,zh,CNR 1,,Lufeng (GD),22.944444,115.65,,1,,9233,61,144,,2025-1805,1234567,,,36201256,,, +1170,CHN,zh,CNR 1,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,1,,9229,58,144,,2025-1805,1234567,,,36201260,,, +1170,CHN,zh,CNR 1,,Yangjiang (GD),21.827833,111.953611,,1,,9108,65,144,,2025-1805,1234567,,,36200442,,, +1170,CHN,zh,CNR 1,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,2025-1805,1234567,,,36200443,,, +1170,CHN,zh,CNR 1,,Zhaoqing (GD),23.039167,112.501667,,1,,9034,63,144,,2025-1805,1234567,,,36201262,,, +1170,CHN,zh,CNR 1,,Zhongshan (GD),22.566667,113.383333,,1,,9130,63,144,,2025-1805,1234567,,,36201263,,, +1170,CLM,,HJJY,,Guamo (tol),4.016667,-74.966667,,1,,9067,266,144,,,,,,37519,,, +1170,CLM,es,HJJE,,Tulu (val),4.083333,-76.2,,1,,9145,267,144,,,,,,37505,,, +1170,MEX,es,XEIB-AM La Primera,,Caborca (son),30.708333,-112.150833,,1,,9045,310,144,,,,,,44157,,, +1170,MEX,es,XEZS-AM R Hit,,Coatzacoalcos (vcz),18.105911,-94.448933,,1,,9143,290,144,,,,,,45155,,, +1170,B,pt,ZYJ334 Rdio Entre Rios,,Santo Antnio do Sudoeste (PR),-26.066667,-53.725,,2.5,,10467,231,145,,,,,,36901938,,, +1170,B,pt,ZYJ498 Rdio Nova Bom Jesus,,Bom Jesus do Itabapoana (RJ),-21.153167,-41.668244,,1,,9383,224,145,,,,25,,36902674,,, +1170,TWN,,Taiwan Guangbo Gongsi,,Guanhsi=Kuanshi (TY),24.878083,121.301858,,1,,9385,56,145,,0000-2400,1234567,,,49954,,, +1170,URG,es,CX32 Rmundo,,Montevideo (mo),-34.832222,-56.211667,,5,,11414,228,145,,1100-0300,1234567,,,36813,,, +1170,ARG,,LRA29 R Nacional,,San Lus (sl),-33.318739,-66.359492,,5,,11825,236,146,,1000-0500,1234567,,,39949,,, +1170,EQA,,HCJV5,,Riobamba (chi),-1.633333,-78.616667,,1,,9812,265,146,,,,,,36996,,, +1170,EQA,,HCUR6,,Latacunga (cot),-0.933333,-78.566667,,1,,9747,265,146,,,,,,37155,,, +1170,MEX,es,XEMDA-AM La Ley,,Monclova (coa),26.925278,-101.441944,,0.5,,8793,300,146,,,,,,44366,,, +1170,EQA,,HCAH3,,Trebol (oro),-3.633333,-79.583333,,1,,10053,265,147,,,,,,36843,,, +1170,EQA,,HCLA2,,Guayaquil (gua),-2.2,-79.866667,,1,,9947,266,147,,,,,,37002,,, +1170,B,pt,ZYK380 Rdio Pitangueira AM,,Itaqui (RS),-29.147222,-56.481667,,1.5,,10902,232,148,,,,,,36901937,,, +1170,PRU,,OCX4Y R COSAT,,Satipo (jun),-11.566667,-74.666667,,1,,10421,256,148,,,,,,40434,,, +1170,B,pt,ZYH473 Rdio Jornal de Eunpolis,,Eunpolis (BA),-16.374389,-39.614983,,0.25,,8811,225,149,,,,,,36901943,,, +1170,CAN,en,CBUX,,Port Alice (BC),50.4275,-127.478333,,0.04,,7817,331,149,,,,,,20109155,,, +1170,MEX,es,XERT-AM Ke Buena,,Reynosa (tam),26.053333,-98.291389,,0.25,,8682,297,149,,,,,,44713,,, +1170,PRU,,OAZ3K,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000085,,, +1170,USA,en,KRUE,,Waseca (MN),44.044722,-93.385556,,0.005,,6865,306,149,,,,,,39118,,, +1170,B,pt,ZYK213 Rdio Difusora AM-A Voz de Bage,,Bag (RS),-31.316667,-54.1,,1,,10979,229,150,,,,,,36901948,,, +1170,B,pt,ZYL327 Rdio Vanguarda,,Ipatinga (MG),-19.468533,-42.576344,,0.25,,9261,226,151,,,,,,36901945,,, +1170,B,pt,ZYL336 Rdio Cidade,,Arax (MG),-19.594578,-46.908594,,0.25,,9491,229,151,,,,,,36901941,,, +1170,MEX,es,XEJTF-AM Prisma Musical,,Zacoalco de Torres (jal),20.248719,-103.591589,,0.25,,9523,298,151,,,,,,44225,,, +1170,MEX,es,XERLK-AM,,Atlacomulco (mex),19.795,-99.871667,,0.25,,9336,295,151,,,,,,44686,,, +1170,ARG,,R Mi Pais,,Hurlingham (ba),-34.6,-58.633333,,1,,11518,230,152,,,,,,51831,,, +1170,B,pt,ZYH205 Rdio Difusora,,Feij (AC),-8.166111,-70.346506,,0.25,,9834,255,152,,,,,,36901935,,, +1170,B,pt,ZYL234 Rdio Clube de Fronteira,,Fronteira (MG),-20.27695,-49.189606,,0.25,,9676,231,152,,,,,,36901940,,, +1170,INS,id,PM3BID Dios R/R Paksi,,Bandung (JB-ban),-6.95,107.566667,,1,,11378,85,152,,,,75,,51439,,, +1170,USA,,KJXX,,Jackson (MO),37.381944,-89.653333,,0.005,,7193,299,152,,,,,,39569,,, +1170,MEX,es,XEFEM-AM R Manantial,,Hermosillo (son),29.075,-110.958889,,0.1,,9134,308,154,,,,,,45090,,, +1170,B,pt,ZYK207 Itapu AM,,Santo Antnio da Patrulha (RS),-29.849444,-50.523056,,0.25,,10660,227,155,,,,,,36901936,,, +1170,B,pt,ZYK359 Rdio Uirapur AM,,Passo Fundo (RS),-28.2425,-52.406389,,0.25,,10603,229,155,,,,,,36901942,,, +1170,CHL,,CD117 R Natales,,Puerto Natales (MA),-51.716667,-72.516667,,1,,13690,227,159,,1200-0400,1234567,,,35856,,, +1170,INS,id,R Suara Nusa Bahagia,,Jayapura (PA-jyp),-2.533333,140.7,,0.6,,13077,54,159,,,,,,35400066,,, +1170,AUS,en,2CH Easy 1170,,Sydney/Homebush Bay (NSW),-33.840319,151.077883,,5,,16549,68,162,,0000-2400,1234567,9934,,49929,,, +1170,USA,en,KYET,,Golden Valley (AZ),35.213056,-114.113889,,0.001,,8723,314,173,,,,,,39846,,, +1175,UKR,,DO,b,Dobrushin,45.395833,33.375,,0.025,,2098,100,94,,,,2,L1010 U1014 ,IDx2 + 20 gap,85877,, +1175,RUS,,BA,b,Bagayeksy,47.3125,40.375,,0.025,,2476,89,98,,,,,,85876,,, +1179,D,de,ARD Info Nacht,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0000-0500,1234567,9970,,2000002,,, +1179,D,de,ARD Info Nacht,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2200-2400,1234567,9970,,2000002,,, +1179,D,de,Antenne Saar,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1400-1500,.....67,9970,,2000002,,, +1179,D,de,Antenne Saar,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2100-2200,....56.,9970,,2000002,,, +1179,D,de,Phoenix,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1100-1300,......7,9970,,2000002,,, +1179,D,de,Phoenix,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2115-2200,1234...,9970,,2000002,,, +1179,D,de,SR2 KulturR,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1130-1200,123456,9970,,2000002,,, +1179,D,de,SR2 KulturR,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1600-1630,.....67,9970,,2000002,,, +1179,D,de,SR2 KulturR,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1630-1700,12345..,9970,,2000002,,, +1179,D,de,SR2 KulturR,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1900-2130,......7,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0500-0530,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0700-0730,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0700-0800,.....67,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0800-0830,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0900-0930,123456,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1000-1030,1234567,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1100-1130,123456,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1200-1230,123456,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1300-1330,1234567,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1400-1430,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1500-1530,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1600-1630,12345..,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1630-1700,.....67,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1800-1830,1234567,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1900-2000,.....6.,9970,,2000002,,, +1179,D,de,SWRinfo,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2100-2115,1234...,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0500-0700,.....67,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0730-0800,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0800-0900,.....67,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0830-0900,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0900-1000,......7,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,0930-1000,123456,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1030-1100,1234567,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1230-1300,123456,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1330-1400,1234567,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1430-1500,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1500-1600,.....67,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1530-1600,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1700-1800,1234567,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1830-1900,.....67,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,1830-2100,12345..,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2000-2100,.....6.,9970,,2000002,,, +1179,D,fr,R France Int.,,Heusweiler/Hirteler Str. (saa),49.348056,6.915,,10,,309,173,50,,2130-2200,......7,9970,,2000002,,, +1179,ROU,ro,SRR R Romnia Actualităţi,,Bacău/Galbeni (BC),46.755722,26.847778,,200,,1587,104,50,,0000-2400,1234567,11,,1061,,, +1179,E,es,SER,,Valncia/Camino Rec d'Orellana (VAL-V),39.413706,-0.359986,,50,,1505,203,55,,0000-2400,1234567,993,,1055,,, +1179,E,es,SER,,Logroo (RIO-LO),42.483531,-2.506247,,10,,1262,216,60,,0000-2400,1234567,,,1056,,, +1179,ROU,ro,SRR R Romnia Actualităţi,,Reşiţa (CS),45.288378,21.867006,,7,,1360,118,62,,0000-2400,1234567,,,1060,,, +1179,CNR,es,SER,,Santa Cruz de Tenerife/EAJ43 (STC-TF),28.451667,-16.280556,,25,,3231,224,75,,0000-2400,1234567,,,1054,,, +1179,IRQ,,Voice of Iraq,,Baghdad (bgh),33.317072,44.2694,,30,,3669,110,79,,0400-1800,1234567,,,1059,,, +1179,EGY,ar,ERTU Al-Barnameg al-Aam,,Qena=Qina=Ena (qna),26.185111,32.737111,,10,,3628,132,83,,0300-2400,1234567,,,1840,,, +1179,G,,R BGWS (LPAM),,Farnborough (EN-HPS),51.288889,-0.75,,0.001,,502,262,92,,,,,,2800034,,, +1179,IRN,fa,IRIB R Iran,,Chah Bahar (sib),25.481778,60.537972,,50,,5378,102,94,,0000-2400,1234567,26,,10800019,,, +1179,CHN,zh,Karamay RGD,,Karamay/XJTS7605 (XJ),45.606111,84.845833,,10,,5499,64,102,,2355-1800,1234567,,,49959,,, +1179,IND,,AIR West,,Rewa (MP),24.522097,81.423569,,20,,6876,85,113,,0025-0430,1234567,,,49963,,, +1179,IND,,AIR West,,Rewa (MP),24.522097,81.423569,,20,,6876,85,113,,0630-0930,1234567,,,49963,,, +1179,IND,,AIR West,,Rewa (MP),24.522097,81.423569,,20,,6876,85,113,,1200-1740,1234567,,,49963,,, +1179,CHN,zh,Hubei RGD Chutian Xinwen,,Wuhan/Dadongcun (HU),30.456111,114.036667,,100,,8465,58,122,,1955-1705,1234567,,,49961,,, +1179,MOZ,pt,Em Prov de Zambezia,,Quelimane (zbz),-18.029508,36.81965,,50,,8336,150,123,,0000-2210,......7,,,2476,,, +1179,MOZ,pt,Em Prov de Zambezia,,Quelimane (zbz),-18.029508,36.81965,,50,,8336,150,123,,0000-2400,.....6.,,,2476,,, +1179,MOZ,pt,Em Prov de Zambezia,,Quelimane (zbz),-18.029508,36.81965,,50,,8336,150,123,,0250-2210,1234...,,,2476,,, +1179,MOZ,pt,Em Prov de Zambezia,,Quelimane (zbz),-18.029508,36.81965,,50,,8336,150,123,,0250-2400,....5..,,,2476,,, +1179,J,ja,JOOR MBS Mainichi Hoso,,Osaka/Takaishi (kns-osk),34.518464,135.443558,,50,,9186,40,127,,0000-2400,1234567,9999,,49967,,, +1179,THA,th,Sathaanii Witthayu 914 Kao-Neung-Sii,,Chiang Rai/Mae Chan (cri),20.10975,99.886528,,10,,8487,75,132,,2200-1330,1234567,,,49977,,, +1179,THA,th,Sor. Sor. Sor.,,Bangkok/Lat Phrao (bmp),13.8,100.591667,,10,,9082,78,134,,0000-2400,1234567,9959,,49976,,, +1179,CHN,,Shuangyashan RGD,,Shuangyashan (HL),46.533333,131.083333,,1,,7849,37,135,,,,,,49960,,, +1179,INS,id,RRI Pro-1,,Padang/Gunung Sariak (SB-pad),-0.884722,100.405278,,10,,10358,87,138,,0955-1700,1234567,,,49964,,, +1179,INS,id,RRI Pro-1,,Padang/Gunung Sariak (SB-pad),-0.884722,100.405278,,10,,10358,87,138,,2155-0130,1234567,,,49964,,, +1179,PHL,,DYSB-AM Super Radyo,,Bacolod City (noc),10.683333,122.966667,,10,,10796,62,140,,????-1500,1234567,,,49971,,, +1179,TWN,,Kuo Sheng Kuangpo Tientai,,Erhlin (CH),24.083333,120.533333,,2.5,,9415,57,141,,,,,,49978,,, +1179,CHN,,Yangzhou RGD,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,1,,8589,53,142,,2150-1530,1234567,,,49962,,, +1179,PHL,,DYCX-AM Super Radyo,,San Jose (atq),10.733333,121.933333,,5,,10729,63,142,,,,,,49974,,, +1179,PHL,,DXYK-AM Super Radyo,,Butuan City (agn),8.933333,125.516667,,5,,11113,61,144,,0000-2400,1234567,,,49972,,, +1179,J,,MBS, Mainichi Hoso,,Kyoto (kns-kyo),34.983333,135.783333,,0.3,,9156,40,149,,0000-2400,1234567,,,49966,, +1179,PHL,,DZRS-AM,,Sorsogon City (sor),12.966667,124,,1,,10646,60,149,,2100-1300,1234567,,,49975,,, +1179,INS,id,Happy R,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400139,,, +1179,PHL,,DXRC-AM Super Radyo,,Koronadal=Marbel (sco),6.5,124.85,,1,,11299,63,151,,,,,,49973,,, +1179,VUT,,R Vanuatu,,Luganville (Espiritu Santo) (sam),-15.5,167.25,,10,,15606,30,156,,1900-1000,......7,,,49979,,, +1179,VUT,,R Vanuatu,,Luganville (Espiritu Santo) (sam),-15.5,167.25,,10,,15606,30,156,,1900-1115,123456,,,49979,,, +1179,AUS,en,3RPH,,Melbourne/Lower Plenty (VIC),-37.741344,145.112239,,5,,16455,80,161,,0000-2400,1234567,,,49957,,, +1179,NZL,,Ruia Mai,,Auckland/Henderson (AUK),-36.844383,174.631153,,5,,18083,33,167,,,,,,49968,,, +1179,NZL,,Southern Star,,Dunedin (OTA),-45.883333,170.583333,,1,,18673,65,176,,,,,,49969,,, +1180,UKR,,PL,b,Poltava / Suprunovka (PO),49.5625,34.375,,0.025,,1972,87,93,,,,,,85878,,, +1180,UKR,,PO,b,Poltava / Suprunovka (PO),49.5625,34.375,,0.025,,1972,87,93,,,,,U1054 7.5s,ID+3 gap,85879,, +1180,USA,,WHAM,i,Rochester/Brook Road (NY),43.081944,-77.725,,50,,6027,296,100,,,,0,,41595,,, +1180,CUB,es,R Reloj,,Mart (ma),22.995967,-80.910167,,200,,7833,283,112,,,,,,31600101,,, +1180,USA,,WXLA,,Dimondale (MI),42.650278,-84.580278,,10,,6472,300,112,,,,,,43476,,, +1180,USA,en,WWRX,,Hope Valley (RI),41.526667,-71.743056,,1.8,,5766,291,112,,,,,,41051,,, +1180,USA,en,WLTT,,Carolina Beach (NC),34.150833,-78.08,,10,,6732,289,114,,1200-2400,1234567,,,42422,,, +1180,USA,,WJNT,,Pearl (MS),32.295278,-90.115,,50,,7643,296,116,,,,,,41906,,, +1180,CUB,es,R Rebelde,,Cacocm (ho),20.736878,-76.3294,,50,,7716,278,117,,,,,,31600082,,, +1180,USA,,WVLZ,,Knoxville (TN),35.98,-83.819167,,10,,6950,294,117,,,,72,,43309,,, +1180,USA,es,R Mart/VOA,,Marathon (FL),24.699389,-81.088528,,50,185,7701,284,117,,,,9,,52574,,, +1180,CUB,es,R Rebelde,,Camagey/CTOM3 (cm),21.333333,-77.866667,,50,,7769,279,118,,,,,,31600054,,, +1180,CUB,es,R Rebelde,,Chambas/CTOM1 (ca),22.374872,-78.885044,,50,,7750,281,118,,,,,,31600056,,, +1180,USA,,KYES,,Baxter (MN),45.361944,-94.299167,,5,,6808,308,118,,,,,,20000009,,, +1180,USA,,WFYL,,King of Prussia (PA),40.135,-75.390833,,1,,6099,292,118,,1200-2400,1234567,,,41465,,, +1180,CUB,es,R Rebelde,,Guanabacoa/CTOM1 (ch),23.108225,-82.284803,,50,,7915,284,119,,,,0,,52591,,, +1180,CUB,es,R Rebelde,,Coln (ma),22.733281,-80.918831,,25,,7856,282,122,,,,,,31600092,,, +1180,USA,,WZQZ,,Trion (GA),34.472778,-85.325278,,5,,7166,294,122,,,,,,43589,,, +1180,USA,en,KOFI,,Kalispell (MT),48.197778,-114.250833,,10,,7527,322,122,,,,2,,39059,,, +1180,USA,en,WFGN,,Gaffney (SC),35.049722,-81.645,,2.5,,6888,292,122,,1200-2400,1234567,,,41378,,, +1180,CUB,es,R Rebelde,,Cent Brasil (cm),21.833183,-77.963928,,10,,7734,280,124,,,,,,31600051,,, +1180,CUB,es,R Rebelde,,Victoria de las Tunas/CTOM3 (lt),20.937361,-76.995933,,10,,7744,278,124,,,,,,31600087,,, +1180,CUB,es,R Rebelde,,Sagua La Grande (vc),22.806986,-80.112372,,10,,7796,282,125,,,,,,31600120,,, +1180,CUB,es,R Rebelde,,Santa Clara/CTOM2 (vc),22.420144,-79.939294,,10,,7817,282,125,,,,,,31600071,,, +1180,VEN,,YVOR R Maturin,,Maturin (mgs),9.75,-63.166667,,10,,7764,260,125,,0900-0400,1234567,,,45413,,, +1180,CUB,es,R Rebelde,,Arroyo Arenas/CTOM2 (ch),23.05,-82.483333,,10,,7933,284,126,,,,,,31600043,,, +1180,CUB,es,R Rebelde,,Gines (my),22.807692,-82.018092,,10,,7923,283,126,,,,,,36472,,, +1180,CUB,es,R Rebelde,,Santa Cruz del Norte (my),23.146736,-81.948958,,10,,7889,283,126,,,,,,31600048,,, +1180,B,pt,ZYH889 Rdio Capital,,So Lus/Campo do Coroado (MA),-2.561806,-44.271217,,5,,7706,236,127,,,,,,36901966,,, +1180,CUB,es,R Rebelde,,Artemisa (ar),22.807056,-82.7663,,10,,7972,284,127,,,,,,36473,,, +1180,CUB,es,R Rebelde,,La Palma (pr),22.746561,-83.551156,,10,,8029,284,127,,,,,,31600105,,, +1180,CUB,es,R Rebelde,,Los Palacios (pr),22.653397,-83.224986,,10,,8016,284,127,,,,,,31600107,,, +1180,CUB,es,R Rebelde,,Sagua de Tnamo (ho),20.582531,-75.226036,,5,,7654,277,127,,,,,,36578,,, +1180,USA,,WLDS,,Jacksonville (IL),39.735,-90.197222,,1,,7033,301,127,,,,,,42147,,, +1180,VEN,,YVLQ LV de la Victoria Super Suave 11-80,,La Victoria (arg),10.183333,-67.366667,,10,,8010,263,127,,,,,,51690,,, +1180,CUB,es,R Rebelde,,Pinar del Ro/CTOM1 (pr),22.368153,-83.739372,,10,,8074,284,128,,,,,,31600103,,, +1180,CUB,es,R Rebelde,,Cienfuegos/Tulipn (cf),22.157414,-80.430478,,5,,7872,282,129,,,,,,31600065,,, +1180,CUB,es,R Rebelde,,Crdenas/CTOM2 (ma),23.033333,-81.2,,5,,7849,283,129,,,,9988,,31600095,,, +1180,CUB,es,R Rebelde,,La Jaiba (ma),23.024011,-81.59395,,5,,7876,283,129,,,,,,31600097,,, +1180,USA,en,KZOT,,Bellevue (NE),41.27,-95.786111,,1,,7225,306,129,,,,,,39845,,, +1180,CLM,es,HJGK,,Bucaramanga (sat),7.066667,-73.116667,,20,,8673,266,130,,,,,,37456,,, +1180,CUB,es,R Rebelde,,Baha Honda (pr),22.923986,-83.172664,,5,,7989,284,130,,,,,,31600112,,, +1180,VEN,,YVNJ R Petrolera,,Bachaquero (zul),10,-71.116667,,10,,8281,266,130,,0900-0700,1234567,,,45393,,, +1180,CTR,,TIPJ R Victoria,,Heredia (her),10,-84.116667,,20,,9167,277,131,,1100-0400,1234567,,,40598,,, +1180,CUB,es,R Rebelde,,Nueva Gerona (ij),21.861583,-82.805919,,5,,8055,283,131,,,,,,31600079,,, +1180,MEX,es,XERRIV-AM R.Quintana Roo,,Cozumel (qui),20.5,-86.941667,,10,,8445,285,131,,,,,,44624,,, +1180,CLM,,HJOV,,Neiva (hui),2.866667,-75.316667,,15,,9192,265,133,,,,,,37615,,, +1180,CUB,es,R Rebelde,,Mabujabo (gu),20.360681,-74.521503,,1,,7625,276,133,,,,,,31600076,,, +1180,CUB,es,R Rebelde,,Moa (ho),20.645583,-74.924033,,1,,7628,276,133,,,,,,36570,,, +1180,CLM,es,HJJT RCN,,Ibagu (tol),4.433333,-75.233333,,10,,9048,266,134,,,,,,37516,,, +1180,CUB,es,R Rebelde,,Banes (ho),20.94885,-75.725414,,1,,7657,277,134,,,,,,36575,,, +1180,CUB,es,R Rebelde,,Guantnamo/CTOM3 (gu),20.110272,-75.218842,,1,,7693,276,134,,,,,,31600074,,, +1180,CUB,es,R Rebelde,,Mayar Arriba (sc),20.418867,-75.536092,,1,,7689,277,134,,,,,,36561,,, +1180,CUB,es,R Rebelde,,Puerto Padre (lt),21.209139,-76.616003,,1,,7695,278,134,,,,,,31600086,,, +1180,GTM,,TGT R Sonora,,Ciudad de Guatemala (gut),14.516667,-90.616667,,10,,9209,284,134,,1100-0600,1234567,,,40545,,, +1180,PNR,,China Vision Panam,,Villa Lorena (pnm),9.041944,-79.5125,,10,,8938,272,134,,,,,,52337,,, +1180,PNR,es,HOU AM Original,,Los Algarrobos (vrg),8.108889,-81.016389,,10,,9122,273,134,,1100-0200,1234567,,,52336,,, +1180,USA,,KGOL,,Humble (TX),30.139167,-95.29,,3,,8143,298,134,,,,,,38505,,, +1180,USA,en,KERN,,Wasco-Greenacres (CA),35.571389,-119.323889,,10,,8936,318,134,,,,0,,38337,,, +1180,CUB,es,R Rebelde,,Ciego de vila/CTOM1 (ca),21.866892,-78.720875,,1,,7782,280,135,,,,,,31600057,,, +1180,CUB,es,R Rebelde,,Sancti Spritus/CTOM2 (ss),21.912044,-79.430931,,1,,7826,281,135,,,,,,36517,,, +1180,B,pt,ZYJ463 Rdio Mundial,,Rio de Janeiro/Ilha do Pontal (RJ),-22.828889,-43.1025,,10,,9617,225,136,,,,,,36901962,,, +1180,B,pt,ZYL203 Rdio Cultura,,Alfenas/Fazenda Vitoria (MG),-21.445331,-45.876361,,10,,9618,228,136,,,,34,,36901963,,, +1180,CUB,es,R Rebelde,,Cienfuegos (cf),22.135789,-80.448861,,1,,7875,282,136,,,,,,31600063,,, +1180,EQA,,HCLR1,,Quito (pic),-0.166667,-78.466667,,10,,9673,266,136,,,,,,37010,,, +1180,MEX,es,XEUBS-AM,,La Paz (bcs),24.102786,-110.315183,,10,,9560,305,136,,,,,,44893,,, +1180,CHL,,CB118 R Portales La primera de Chile,,Santiago (RM),-33.35,-70.666667,,50,,12077,239,137,,1030-0430,1234567,998,,35725,,, +1180,CLM,es,HJWA La Voz del Guaviare,,San Jos del Guaviare (guv),2.566667,-72.65,,5,,9037,263,137,,,,,,35901581,,, +1180,CUB,es,R Rebelde,,San Cristbal (pr),22.703156,-83.033047,,1,,7999,284,137,,,,,,31600108,,, +1180,USA,en,KLAY,,Lakewood (WA),47.15,-122.410556,,1,,7954,326,137,,,,1,,38776,,, +1180,CUB,es,R Rebelde,,Santa Luca (pr),22.67345,-83.943017,,1,,8062,285,138,,,,,,31600110,,, +1180,DOM,,HIBE R Mil,,Santo Domingo (sdo),18.516667,-69.866667,,0.25,,7464,271,138,,1000-0500,1234567,,,37218,,, +1180,MEX,es,XEFR-AM R Felicidad,,Mxico D.F/Isidro Fabela (dif),19.386419,-99.205889,,5,,9331,294,138,,,,,,44023,,, +1180,B,pt,ZYH280 Rdio Difusora do Amazonas,,Manaus (AM),-3.138033,-59.981328,,2.5,,8709,249,139,,,,,,36901960,,, +1180,PRU,es,OCU4K NSE R,,Lima/Puente Piedra (lim),-11.866667,-77.066667,,10,,10607,258,139,,,,,,37000112,,, +1180,B,pt,ZYI690 Rdio Bonsucesso,,Pombal (PB),-6.781422,-37.803017,,0.25,,7771,228,141,,,,,,36901954,,, +1180,B,pt,ZYI797 Rdio Cultural de Vitria,,Vitria de Santo Anto (PE),-8.117275,-35.286339,,0.25,,7780,225,141,,,,,,36901955,,, +1180,BOL,,R Central,,Oruro (oru),-17.966667,-67.116667,,5,,10504,246,142,,0900-2400,1234567,,,52005,,, +1180,MEX,es,XEDCH-AM Romntica,,Ciudad Delicias (chi),28.216389,-105.490556,,1.5,,8911,304,142,,,,,,43899,,, +1180,B,pt,ZYH248 Rdio Correio do Serto,,Santana do Ipanema (AL),-9.374967,-37.252783,,0.25,,8001,226,143,,,,,,36901950,,, +1180,USA,en,WPTJ872,,Milwaukee/One Brewers Way (WI),43.03,-87.977333,,0.01,,6641,302,143,,,,,,20010625,,, +1180,B,pt,ZYJ223 Rdio Emissora Atalaia,,Guarapuava (PR),-25.351389,-51.422222,,2.5,,10278,230,144,,,,,,36901951,,, +1180,B,pt,ZYN405 Rdio Enauan do Norte,,Guarant do Norte (MT),-9.939872,-54.914508,,1,,9022,241,144,,,,,,36901958,,, +1180,CLM,es,HJFX,,Manizales (cal),5.016667,-75.5,,1,,9015,267,144,,,,,,37446,,, +1180,EQA,,HCDP5,,Cuenca (azu),-2.85,-79,,2,,9945,265,144,,,,,,36905,,, +1180,HND,,HRNQ2,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37822,,, +1180,USA,en,WPUR937,,Kenosha (WI),42.594364,-87.960983,,0.01,,6674,302,144,,,,,,20010624,,, +1180,B,pt,ZYK567 Rdio Brotense,,Brotas (SP),-22.276639,-48.125164,,1,,9813,229,146,,,,,,36901953,,, +1180,EQA,,HCRT1,,Julioandrade (car),0.65,-77.716667,,1,,9550,266,146,,,,,,37114,,, +1180,MEX,es,XEYA-AM Picosa 1180,,Irapuato (gua),20.630083,-101.362972,,0.8,,9353,296,146,,,,,,45081,,, +1180,B,pt,ZYN602 Ativa AM,,Campo Grande (MS),-20.547994,-54.584139,,1,,9996,235,147,,,,,,36901961,,, +1180,EQA,,HCAN3,,Zaruma (oro),-3.7,-79.616667,,1,,10061,265,147,,,,,,36850,,, +1180,EQA,,HCSP4,,Portoviejo (man),-1,-80.366667,,1,,9875,267,147,,,,,,37136,,, +1180,USA,en,KXIQ,,Turrell (AR),35.141944,-90.135,,0.026,,7406,298,147,,,,,,42710,,, +1180,BOL,,CP235 R Emisora Ingavi,,Viacha (lpz),-16.666667,-66.283333,,1,,10335,246,148,,1000-0200,123456,,,52006,,, +1180,BOL,,CP235 R Emisora Ingavi,,Viacha (lpz),-16.666667,-66.283333,,1,,10335,246,148,,1100-2400,......7,,,52006,,, +1180,BOL,,Remisora 20 de Septiembre,,Arbieto (cbb),-17.566667,-66.016667,,1,,10399,246,148,,1100-0200,1234567,,,52007,,, +1180,MEX,es,XEAH-AM Ke Buena,,Juchitn de Zaragoza (oax),16.444294,-95.025328,,0.5,,9327,289,148,,,,,,43708,,, +1180,PRU,,OAM2K,,Jan/Cerro Palo Blanco (caj),-5.7,-78.783333,,1,,10181,263,148,,,,,,37000073,,, +1180,BOL,,R Amanecer,,Potosi (pts),-19.566667,-65.766667,,1,,10564,244,149,,0930-0200,1234567,,,52008,,, +1180,PRU,,OCZ4Z R Libertad,,Junn (jun),-12.216667,-75.2,,1,,10514,256,149,,,,,,40444,,, +1180,B,pt,ZYK647 Rdio Super Nova Difusora,,Santa Cruz do Rio Pardo (SP),-22.911417,-49.635556,,0.5,,9952,230,150,,,,,,36901959,,, +1180,B,pt,ZYJ770 Rdio Guri,,Lages (SC),-27.774167,-50.302778,,0.5,,10451,228,151,,,,,,36901956,,, +1180,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010626,,, +1180,B,pt,ZYK340 Rdio Gazeta,,Santa Cruz do Sul/Rua Irmo Elilio (RS),-29.706944,-52.452778,,0.5,,10744,228,152,,,,,,36901965,,, +1180,B,pt,ZYK749 Rdio Nova AM,,Bebedouro (SP),-20.947244,-48.463444,,0.25,,9702,230,152,,,,,,36901968,,, +1180,URG,es,CX118 La Voz de Artigas,,Artigas (ar),-30.400833,-56.466944,,0.5,,11018,231,153,,0900-0300,1234567,,,36783,,, +1180,B,pt,ZYJ237 Rdio Gua,,Toledo (PR),-24.7,-53.706944,,0.25,,10338,232,154,,,,,,36901967,,, +1180,B,pt,ZYJ314 Rdio Educadora,,So Joo do Iva (PR),-23.989444,-51.823611,,0.25,,10170,231,154,,,,,,36901952,,, +1180,B,pt,ZYJ737 Rdio Integraco do Oeste AM,,So Jos do Cedro (SC),-26.458611,-53.481111,,0.25,,10491,231,155,,,,,,36901957,,, +1180,PRG,,ZP52 R Coronel Oviedo RCO-AM,,Coronel Oviedo (cgz),-25.416667,-56.45,,0.25,,10554,234,155,,0900-0100,1234567,,,45548,,, +1180,USA,en,WSQR,,Sycamore (IL),42.006667,-88.677778,,0.001,,6762,302,155,,,,,,43059,,, +1180,INS,id,RSPDKDT2 Wonogiri,,Wonogiri (JT-wog),-7.816667,110.916667,,0.5,,11682,83,156,,,,,,49980,,, +1180,USA,,WGAB,,Newburgh (IN),37.954444,-87.418611,,0.001,,7012,298,157,,,,,,41468,,, +1180,HWA,,KORL,,Honolulu (HI),21.438333,-157.991389,,0.14,,11697,345,161,,,,,,38689,,, +1185,RUS,,D,b,Ramenskoe (MO),55.5625,38.125,,0.025,,2097,67,94,,,,,30.0s,IDx2,85881,, +1188,HNG,,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1100-1200,123456,5,,52667,,, +1188,HNG,,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1100-1300,......7,5,,52667,,, +1188,HNG,bg,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,..3....,5,,52667,,, +1188,HNG,de,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,0900-1100,1234567,5,,52667,,, +1188,HNG,el,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,...4...,5,,52667,,, +1188,HNG,hr,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,0700-0900,1234567,5,,52667,,, +1188,HNG,hy,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,.....6.,5,,52667,,, +1188,HNG,pl,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1230-1300,.....6.,5,,52667,,, +1188,HNG,ra,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1230-1300,12345..,5,,52667,,, +1188,HNG,ro,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1500-1700,1234567,5,,52667,,, +1188,HNG,rt,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,.2.....,5,,52667,,, +1188,HNG,sk,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1700-1900,1234567,5,,52667,,, +1188,HNG,sl,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,1......,5,,52667,,, +1188,HNG,sr,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1300-1500,1234567,5,,52667,,, +1188,HNG,uk,MR4 Nemzetisgi Adsok,,Marcali/Kisperjs (Som),46.615,17.465,,300,,1005,123,42,,1200-1230,....5..,5,,52667,,, +1188,HNG,,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1100-1200,123456,,,52666,,, +1188,HNG,,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1100-1300,......7,,,52666,,, +1188,HNG,bg,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,..3....,,,52666,,, +1188,HNG,de,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,0900-1100,1234567,,,52666,,, +1188,HNG,el,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,...4...,,,52666,,, +1188,HNG,hr,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,0700-0900,1234567,,,52666,,, +1188,HNG,hy,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,.....6.,,,52666,,, +1188,HNG,pl,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1230-1300,.....6.,,,52666,,, +1188,HNG,ra,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1230-1300,12345..,,,52666,,, +1188,HNG,ro,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1500-1700,1234567,,,52666,,, +1188,HNG,rt,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,.2.....,,,52666,,, +1188,HNG,sk,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1700-1900,1234567,,,52666,,, +1188,HNG,sl,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,1......,,,52666,,, +1188,HNG,sr,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1300-1500,1234567,,,52666,,, +1188,HNG,uk,MR4 Nemzetisgi Adsok,,Szolnok (JNS),47.188833,20.229056,,100,,1133,113,48,,1200-1230,....5..,,,52666,,, +1188,IRN,fa,IRIB R Payam,,Tehran (thr),35.592944,51.248611,,300,,3955,100,72,,0000-2400,1234567,9996,,1066,,, +1188,EGY,ar,ERTU Al-Barnameg al-Aam,,Ras Gharib (bar),28.350583,33.080583,,10,,3440,130,81,,0300-2400,1234567,,,1841,,, +1188,GRC,el,Nikolas apo Elata,,Athnai/Parnitha (att-ath),38.155556,23.716667,,0.5,,2051,132,81,,0000-2400,1234567,42,,3400034,,, +1188,YEM,ar,YGCRT Sana'a R,,Aden/Al-Hiswah (adn),12.8211,44.912839,,100,,5552,128,93,,0300-2300,1234567,,,1069,,, +1188,AFG,,R Faryab,,Maimana (fyb),35.916667,64.75,,7,,4850,88,97,,1230-1430,1234567,,,46810,,, +1188,ARS,ar,BSKSA Idha'atu-i Riyadh,,unknown,24,45.45,,1,,4539,118,102,,,,,,10600015,,, +1188,IND,hi,AIR Vividh Bharati,,Mumbai C=Bombay (MH),19.184139,72.809028,,50,,6734,96,107,,0025-0435,1234567,345,,49987,,, +1188,IND,hi,AIR Vividh Bharati,,Mumbai C=Bombay (MH),19.184139,72.809028,,50,,6734,96,107,,0900-1200,1234567,345,,49987,,, +1188,IND,hi,AIR Vividh Bharati,,Mumbai C=Bombay (MH),19.184139,72.809028,,50,,6734,96,107,,1245-1800,1234567,345,,49987,,, +1188,CHN,en,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1200-1300,1234567,991,,49985,,, +1188,CHN,en,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1500-1600,1234567,991,,49985,,, +1188,CHN,hi,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1600-1700,1234567,991,,49985,,, +1188,CHN,my,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1130-1200,1234567,991,,49985,,, +1188,CHN,my,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1300-1400,1234567,991,,49985,,, +1188,CHN,si,China R Int.,,Kunming/Anning-SARFT501 (YN),24.884472,102.488167,,300,253,8245,70,115,,1400-1500,1234567,991,,49985,,, +1188,KOR,en,FEBC,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1100-1200,1234567,0,,50001,,, +1188,KOR,ko,FEBC,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,0000-1030,1234567,0,,50001,,, +1188,KOR,ko,FEBC,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1700-2400,1234567,0,,50001,,, +1188,KOR,ko,TWR Asia,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1030-1100,1234567,0,,50001,,, +1188,KOR,ko,Voice of America,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1200-1500,1234567,0,,50001,,, +1188,KOR,zh,FEBC,,Incheon (inc),37.420556,126.755278,,100,,8508,45,122,,1500-1700,1234567,0,,50001,,, +1188,CHN,,Xingtai RGD,,Xingtai (HB),37.066667,114.516667,,10,,7910,53,126,,,,,,49986,,, +1188,RUS,ru,FEBC,,Khabarovsk (KH),48.516667,135.12,,5,292,7819,33,128,,1000-1100,1234567,,,50007,,, +1188,RUS,ru,R Teos,,Khabarovsk (KH),48.516667,135.12,,5,292,7819,33,128,,0400-1000,1234567,,,50007,,, +1188,RUS,ru,R Teos,,Khabarovsk (KH),48.516667,135.12,,5,292,7819,33,128,,1100-1200,1234567,,,50007,,, +1188,J,ja,JOKP NHK1,,Kitami (hok),44.002222,144.240556,,10,,8589,30,132,,0000-2400,1234567,,,49999,,, +1188,THA,th,Thor. Phor. Saam,,Phitsanulok/Aranyik (psl),16.794444,100.288889,,10,,8801,77,133,,0000-1555,1234567,,,50008,,, +1188,THA,th,Thor. Phor. Saam,,Phitsanulok/Aranyik (psl),16.794444,100.288889,,10,,8801,77,133,,2200-2400,1234567,,,50008,,, +1188,THA,th,Kor. Wor. Sor. 3,,Sakon Nakhon (snk),17.25,104.166667,,10,,9017,73,134,,????-1700,1234567,,,50010,,, +1188,THA,th,Thor. Phor. Neung,,Tha Kasem/Fort Phairi Rayodet (sko),13.789653,102.154417,,10,,9187,77,134,,????-1405,1234567,,,50009,,, +1188,TWN,,BCC Country Network,,Hualien (HL),23.982833,121.614611,,10,,9486,56,135,,0000-2400,1234567,,,50011,,, +1188,CHN,,Botou RGD,,Botou (HB),38.066667,116.566667,,1,,7932,51,136,,,,,,49984,,, +1188,CHN,ko,Yanbian RGD,,Helong (JL),42.55,129,,1,,8133,40,138,,,,,,36200367,,, +1188,PHL,,DXRU-AM Radyo Ultra,,Opol/Taboc (mor),8.516978,124.580283,,10,,11095,62,141,,,,,,33300031,,, +1188,PHL,,DZXO-AM,,Cabanatuan City (nve),15.483333,120.95,,5,,10231,61,141,,2000-1500,1234567,,,50003,,, +1188,INS,id,RRI Pro-1,,Manado (SA-man),1.455,124.809167,,10,,11762,66,143,,0830-1515,1234567,,,49994,,, +1188,INS,id,RRI Pro-1,,Manado (SA-man),1.455,124.809167,,10,,11762,66,143,,2100-0230,1234567,,,49994,,, +1188,TWN,,Shengli chih Sheng 2,,Tainan (TN),22.942222,120.310756,,1,,9507,58,145,,,,,,50012,,, +1188,TWN,,Taiwan Guangbo Gongsi 2,,Taipei (TPS),25.020533,121.520175,,1,,9385,56,145,,,,,,50013,,, +1188,PHL,,DYRV-AM Radyo Patrol,,Catbalogan (sam),11.766667,124.866667,,1,,10810,60,150,,,,,,50005,,, +1188,INS,id,RSA Abadi/R Suara Tegal,,Adiwerna (JT-teg),-6.933333,109.116667,,1,,11482,84,152,,,,,,49997,,, +1188,INS,id,R Suara Perak Jaya,,Surabaya (JI-ksu),-7.233333,112.75,,1,,11754,81,153,,,,,,49996,,, +1188,AUS,,6XM ABC Northwest WA,,Exmouth (WA),-21.959222,114.128917,,2,,13114,90,154,,0000-2400,1234567,,,49982,,, +1188,WAL,fr,Wallis et Futuna 1re,,Mata'Utu (wal),-13.275,-176.177778,,2,,15691,4,163,,0000-2400,1234567,,,50014,,, +1188,AUS,,2NZ,,Inverell (NSW),-29.772833,151.225764,,2,,16218,63,165,,0000-2400,1234567,,,49983,,, +1188,NZL,,RNZ National,,Rotorua/Tihiotonga (BOP),-38.175,176.230833,,0.4,,18276,31,178,,0000-2400,1234567,,,50002,,, +1190,USA,en,WLIB,,New York/Lyndhurst [NJ] (NY),40.796667,-74.101667,,30,,5969,292,102,,,,0,,42167,,, +1190,USA,,WCRW,,Leesburg (VA),39.041111,-77.445,,50,,6311,293,103,,1200-2400,1234567,,,40665,,, +1190,USA,,WOWO,i,Fort Wayne (IN),40.996389,-85.351667,,9.8,,6646,299,114,,,,0,,42630,,, +1190,USA,en,WAFS,,Atlanta (GA),33.809444,-84.353889,,25,,7159,293,115,,,,,,40663,,, +1190,USA,,KJJI,,White Hall (D) (AR),34.283611,-92.1275,,25,,7598,298,119,,,,,,20016262,,, +1190,USA,,WCRW,,Leesburg (VA),39.123611,-77.625,,1.3,,6316,293,119,,0000-1200,1234567,,,20012531,,, +1190,CAN,en,CFSL,,Weyburn (SK),49.465833,-103.843056,,5,,6951,317,120,,,,0,,36011,,, +1190,USA,,KKOJ,,Jackson (MN),43.529167,-95.001389,,5,,6995,307,120,,,,,,38744,,, +1190,USA,en,KFXR,,Dallas (D) (TX),32.786111,-96.95,,50,,8013,301,120,,,,,,38445,,, +1190,USA,,WSDQ,,Dunlap (TN),35.361389,-85.375833,,5,,7097,295,121,,,,,,42973,,, +1190,USA,en,KEX,i,Portland (OR),45.422222,-122.565833,,50,,8126,325,121,,,,0,,38351,,, +1190,PTR,xx,WBMJ,,San Juan (PR),18.35,-66.113889,,5,,7221,268,122,,0000-2400,1234567,2,,40880,,, +1190,VEN,,YVPF Ondas de Libertad,,Ciudad Guayana/San Flix (blv),8.345372,-62.646922,,20,,7853,258,123,,0900-0300,1234567,,,51691,,, +1190,CUB,es,R Coral/R Revolucin,,Chivirico (sc),19.964586,-76.437017,,10,,7788,277,125,,,,,,36562,,, +1190,USA,,KREB,,Bentonville/Bella (AR),36.388333,-94.192778,,5,,7543,301,125,,,,,,39234,,, +1190,USA,,WBHA,,Wabasha (MN),44.346111,-91.978056,,1,,6763,306,125,,,,,,20016039,,, +1190,USA,en,WEUV,,Moulton (AL),34.481944,-87.301111,,2.5,,7288,295,126,,1300-0100,1234567,,,41645,,, +1190,USA,,WWIO,,St. Marys (GA),30.763056,-81.610833,,1.8,,7233,289,127,,,,,,43387,,, +1190,USA,es,WMEJ,,Bay St. Louis (MS),30.323611,-89.350833,,5,,7762,294,128,,1300-0100,1234567,84,,40909,,, +1190,USA,en,KFXR,,Dallas (N) (TX),32.899167,-96.413056,,5,,7971,300,130,,,,,,20012578,,, +1190,VEN,,YVRE R Barinas 1190 AM Estereo,,Barinas (bns),8.566667,-70.316667,,10,,8352,265,131,,,,,,45442,,, +1190,B,pt,ZYJ594 Rdio CBN,,Natal (RN),-5.818611,-35.253611,,1,,7549,226,132,,,,1,,36901982,,, +1190,CLM,es,HJCT La Voz de la Costa,,Barranquilla (atl),10.916667,-74.916667,,10,,8461,270,132,,,,999,,37379,,, +1190,CLM,es,HJEO Ondas del Valle,,Cartago (val),4.716667,-75.9,,15,,9069,267,132,,,,12,,37417,,, +1190,USA,,WSDE,,Cobleskill (NY),42.690556,-74.444444,,0.02,,5853,294,132,,,,,,42971,,, +1190,VEN,,YVZD R Dif. Cultural del Tchira Paz Vital 11-90,,San Cristbal (tch),7.766667,-72.266667,,10,,8554,266,132,,1000-0400,1234567,,,45484,,, +1190,USA,,KPHN,,Kansas City (MO),39.063611,-94.510278,,0.5,,7337,303,133,,,,,,39139,,, +1190,USA,en,WJPJ,,Humboldt (TN),35.844722,-88.902222,,0.42,,7274,297,133,,1300-0100,1234567,,,41666,,, +1190,CLM,es,HJKG R Mira CARACOL,,Tumaco (nar),1.766667,-78.783333,,10,,9524,267,135,,,,997,,37608,,, +1190,MEX,es,XEWK-AM W R,,Guadalajara (jal),20.736878,-103.349058,,10,,9464,298,135,,,,0,,45025,,, +1190,CUB,es,R Sancti Spritus,,Trinidad (ss),21.773378,-79.987389,,1,,7875,281,136,,,,,,36519,,, +1190,USA,es,WPSP,,Royal Palm Beach (FL),26.816944,-80.251944,,0.41,,7469,285,136,,,,,,42741,,, +1190,CLM,es,HJCV R Cordillera,,Bogot D. C. (bdc),4.616667,-74.15,,5,,8958,265,137,,,,993,,37381,,, +1190,USA,,WIXE,,Monroe (NC),34.961389,-80.544444,,0.07,,6825,291,137,,,,,,41824,,, +1190,USA,es,WAMT,,Pine Castle-Sky Lake (FL),28.466667,-81.374722,,0.23,,7406,287,137,,,,,,40715,,, +1190,B,pt,ZYL221 Rdio Guarani AM,,Belo Horizonte (MG),-19.852811,-44.016933,,5,,9369,227,138,,,,,,36901979,,, +1190,USA,,KDYA,,Vallejo (CA),38.134167,-122.425556,,3,,8826,321,138,,,,1,,38303,,, +1190,USA,,KJJI,,White Hall (N) (AR),34.283611,-92.1275,,0.35,,7598,298,138,,,,,,20016261,,, +1190,USA,,WVUS,,Grafton (WV),39.350278,-80.044444,,0.022,,6450,294,138,,,,,,43115,,, +1190,B,pt,ZYH459 Rdio Juazeiro,,Juazeiro (BA),-9.424733,-40.517642,,1,,8169,229,139,,,,95,,36901983,,, +1190,B,pt,ZYH663 Rdio Guaraciaba,,Guaraciaba do Norte (CE),-4.158203,-40.765356,,0.25,,7667,232,140,,,,,,36901978,,, +1190,MEX,es,XETOT-AM ABC R,,Pueblo Viejo (vcz),22.193511,-97.836653,,2.5,,8996,295,140,,,,0,,44848,,, +1190,HND,,HRVW3,,San Pedro Sula (cor),15.5,-88.016667,,2,,8950,283,141,,,,,,37870,,, +1190,HTI,,R Grand Anse,,Jrmie (gan),18.616667,-74.083333,,0.2,,7743,274,141,,,,,,35627,,, +1190,MEX,es,XESOL-AM R Sol,,Ciudad Hidalgo (mic),19.800556,-100.566944,,2.5,,9378,295,141,,,,,,44759,,, +1190,PRU,,OAX7B R Tawantinsuyo,,Cusco (cus),-13.5,-72.016667,,5,,10418,253,141,,,,69,,40351,,, +1190,USA,,WNWC,,Sun Prairie (WI),43.16,-89.215278,,0.021,,6702,303,141,,,,,,42533,,, +1190,USA,,KNEK,,Washington (LA),30.585833,-92.066667,,0.25,,7908,296,142,,,,,,38981,,, +1190,USA,,KVSV,,Beloit (KS),39.448056,-98.079167,,0.09,,7505,306,142,,,,,,39673,,, +1190,CLM,es,HJKI,,Sahagun (cor),8.916667,-75.416667,,1,,8669,269,143,,,,,,37603,,, +1190,HND,,HRPO,,San Francisco de la Paz (ola),14.816667,-86.2,,1,,8888,281,143,,,,,,37825,,, +1190,USA,ko,KGBN,,Anaheim (CA),33.945,-117.862222,,1.3,,9024,316,143,,,,9964,,39807,,, +1190,ARG,,LRA15 R Nacional,,San Miguel del Tucumn (tm),-26.816667,-65.216667,,5,,11182,239,144,,0000-2400,1234567,92,,39935,,, +1190,MEX,es,XEXQ-AM R Universidad,,San Luis Potos (slp),22.172089,-100.966006,,1,,9190,297,144,,,,,,45065,,, +1190,NCG,es,R Bendicin,,Cayanlipe (cnd),12.901389,-86.866667,,1,,9100,281,144,,,,,,33700002,,, +1190,USA,,KDAO,,Marshalltown (IA),42.071389,-92.921944,,0.02,,6999,305,144,,,,,,38236,,, +1190,ARG,es,LR9 R Amrica,,Buenos Aires (df),-34.670917,-58.434139,,5,,11514,230,145,,0000-2400,1234567,568,,39928,,, +1190,B,pt,ZYK354 Rdio Rosrio AM,,Serafina Corra (RS),-28.708333,-51.938889,,2.5,,10623,229,145,,,,,,36901969,,, +1190,USA,,KVCU,,Boulder (CO),39.964722,-105.235278,,0.11,,7843,311,145,,,,,,39615,,, +1190,USA,en,KQQZ,,De Soto (MO),38.706944,-90.052778,,0.022,,7108,300,145,,,,,,39242,,, +1190,B,pt,ZYK301 Rdio So Loureno do Sul,,So Loureno do Sul (RS),-31.373889,-51.968611,,2.5,,10876,227,146,,,,,,36901975,,, +1190,EQA,,HCDE2 UCSG R-TV,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,,,,,36862,,, +1190,B,pt,ZYJ355 Palmital AM,,Palmital/Jardim Santa Amalia (PR),-24.888056,-52.200833,,1,,10275,231,148,,,,,,36901972,,, +1190,MEX,es,XEJPA-AM Noticias W,,Jojutla (mor),18.699967,-99.248403,,0.5,,9395,294,148,,,,,,43925,,, +1190,PRU,,OAX1E,,Chiclayo (lam),-6.75,-79.816667,,1,,10343,263,148,,,,,,40268,,, +1190,MEX,es,XEPZ-AM La Nortea,,Ciudad Jurez (chi),31.716286,-106.440439,,0.25,,8646,307,149,,,,,,44593,,, +1190,USA,,KNUV,,Tolleson (AZ),33.445,-112.265,,0.25,,8796,312,149,,,,0,,38954,,, +1190,SLV,,YSCB,,Sonsonate (ssn),13.716667,-89.716667,,0.25,,9219,283,150,,,,,,45265,,, +1190,B,pt,ZYH800 Rdio Rio Vermelho,,Silvnia/Fazenda Lava (GO),-16.646667,-48.585278,,0.25,,9296,232,151,,,,,,36901981,,, +1190,MEX,es,XEPP-AM La Comadre,,Orizaba (vcz),18.843333,-97.080833,,0.25,,9246,292,151,,,,,,44571,,, +1190,B,pt,ZYK234 Rdio Sociedade Cerro Azul,,Cerro Largo/Morro dos Conventos (RS),-28.166111,-54.745,,0.5,,10718,231,152,,,,,,36901977,,, +1190,B,pt,ZYK715 Rdio Cidade AM,,Votuporanga (SP),-20.434392,-49.949511,,0.25,,9732,231,152,,,,,,36901985,,, +1190,B,pt,ZYK729 Rdio 31 de Maro,,Santa Cruz das Palmeiras (SP),-21.812472,-47.267272,,0.25,,9724,228,152,,,,,,36901980,,, +1190,B,pt,ZYL276 Rdio Mineira do Sul,,Passa Quatro (MG),-22.335556,-44.943678,,0.25,,9658,226,152,,,,,,36901984,,, +1190,EQA,,HCRF6,,Pujili (nap),-0.95,-78.4,,0.25,,9737,265,152,,,,,,37081,,, +1190,B,pt,ZYJ309 Rdio Pontal de Nova Londrina,,Nova Londrina (PR),-22.8,-52.983333,,0.25,,10119,233,153,,,,,,36901986,,, +1190,B,pt,ZYK512 Rdio Clube Marconi AM,,Paraguau Paulista (SP),-22.396828,-50.571478,,0.25,,9952,231,153,,,,,,36901970,,, +1190,B,pt,ZYK741 Rdio Regional de Taquarituba,,Taquarituba (SP),-23.525178,-49.250828,,0.25,,9991,229,153,,,,,,36901973,,, +1190,MEX,es,XECT-AM Contacto,,Monterrey (nvl),25.680372,-100.314256,,0.1,,8837,299,153,,,,,,43878,,, +1190,B,pt,ZYJ783 Rdio Clube AM So Joo Batista,,So Joo Batista/Morro da Caixa Dagua (SC),-27.283611,-48.848333,,0.25,,10331,227,154,,,,,,36901971,,, +1190,B,pt,ZYJ817 Rdio Planalto,,Major Vieira (SC),-26.370833,-50.382222,,0.25,,10321,229,154,,,,,,36901974,,, +1190,B,pt,ZYJ820 Rdio Clube So Domingos AM,,So Domingos (SC),-26.562222,-52.52,,0.25,,10450,230,154,,,,,,36901976,,, +1190,MEX,es,XEMBC-AM Cadena 1190,,Mexicali (bcn),32.647428,-115.472722,,0.1,,9031,314,154,,,,,,44357,,, +1190,PRG,es,ZP45 La Voz de la Libertad,,Hernandarias (apa),-25.383333,-54.666667,,0.25,,10454,232,155,,,,,,51737,,, +1190,USA,,KXKS,,Albuquerque (NM),35.051111,-106.642778,,0.024,,8356,309,157,,,,,,39797,,, +1197,G,en,Absolute R,,Hoo St Werburgh (EN-KNT),51.419167,0.573333,,2,,409,261,58,,0000-2400,1234567,2,,1086,,, +1197,G,en,Absolute R,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,1.1,,482,256,61,,0000-2400,1234567,,,1085,,, +1197,ROU,de,SRR R Bukarest,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0820-0830,......7,992,,1091,,, +1197,ROU,de,SRR R Bukarest,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1200-1300,123456,992,,1091,,, +1197,ROU,de,SRR R Neumarkt,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0830-0900,......7,992,,1091,,, +1197,ROU,de,SRR R Neumarkt,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1900-2000,123456,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0600-0900,.....6.,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0800-0820,......7,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0900-1200,1234567,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1200-1700,......7,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1300-1600,1234...,992,,1091,,, +1197,ROU,hu,SRR Marosvsrhelyi Rdi,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1300-1700,....56.,992,,1091,,, +1197,ROU,ro,SRR Antena Braşovului,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0600-0700,1234...,992,,1091,,, +1197,ROU,ro,SRR Antena Braşovului,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1600-1700,1234...,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0350-0600,1234567,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0600-0700,....5..,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0600-0800,......7,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,0700-0900,12345..,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1700-1900,1234567,992,,1091,,, +1197,ROU,ro,SRR R Trgu Mureş,,Braşov/Bod Colonie (BV),45.752861,25.608222,,14,040 200,1564,109,61,,1900-1955,......7,992,,1091,,, +1197,G,en,Absolute R,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,1,,718,259,64,,0000-2400,1234567,,,1084,,, +1197,G,en,Absolute R,,Nottingham/Trowell (EN-NHS),52.953167,-1.248083,,0.5,,526,283,65,,0000-2400,1234567,0,,1083,,, +1197,G,en,Absolute R,,Wallasey (EN-MER),53.425667,-3.046861,,0.4,,652,287,67,,0000-2400,1234567,0,,1082,,, +1197,G,en,Absolute R,,Cambridge/Chesterton Fen (EN-CAM),52.225472,0.160722,,0.2,,426,274,68,,0000-2400,1234567,0,,1077,,, +1197,G,en,Absolute R,,Gloucester (EN-GLO),51.907028,-2.230472,,0.3,,591,271,68,,0000-2400,1234567,,,1080,,, +1197,G,en,Absolute R,,Oxford (EN-OXF),51.790639,-1.179111,,0.25,,521,269,68,,0000-2400,1234567,,,1078,,, +1197,G,en,Absolute R,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.25,,596,258,69,,0000-2400,1234567,,,1079,,, +1197,IRN,fa,IRIB R Ardabil,,Moghan (ard),39.527175,47.766367,,50,,3439,97,74,,0214-2000,1234567,22,,1088,,, +1197,IRN,fa,IRIB R Iran,,Moghan (ard),39.527175,47.766367,,50,,3439,97,74,,2000-0214,1234567,22,,1088,,, +1197,IRN,fa,IRIB R Fars,,Ghir=Qir/Karzin (frs),28.420772,53.083806,,10,,4641,106,93,,0000-2400,1234567,,,10800020,,, +1197,AGL,pt,RNA Em. Prov. de Malange,,Malanje (mal),-9.544492,16.363961,,10,,6921,169,116,,0355-2200,1234567,7,,2365,,, +1197,CHN,,Qiqihar RGD,,Qiqihar (HL),47.362778,123.981111,,10,,7469,41,122,,,,,,50019,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,0023-0345,1234567,6,,50025,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,0400-0530,1234567,6,,50025,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,0610-0900,123456,6,,50025,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,0630-1100,......7,6,,50025,,, +1197,IND,,AIR South,,Tirunelveli (TN),8.7475,77.656111,,20,,7965,100,124,,1123-1740,1234567,6,,50025,,, +1197,LSO,,LNBS Ultimate FM,,Maseru/Lancer's Gap (msr),-29.310361,27.5544,,100,,9285,162,125,,1600-2200,1234567,984,,2366,,, +1197,LSO,en,LNBS Ultimate FM,,Maseru/Lancer's Gap (msr),-29.310361,27.5544,,100,,9285,162,125,,0600-1600,1234567,984,,2366,,, +1197,CHN,,Heze Shi RGD,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,????-1500,1234567,,,50017,,, +1197,CHN,zh,CNR 2,,Tuquan/NMTS728 (NM),45.383333,121.6,,1,,7537,43,132,,2100-1602,1234567,,,36201252,,, +1197,IND,,AIR Northeast,,Shillong (ML),25.566667,91.933333,,1,,7498,77,132,,0025-0400,1234567,,,50024,,, +1197,IND,,AIR Northeast,,Shillong (ML),25.566667,91.933333,,1,,7498,77,132,,1056-1630,1234567,,,50024,,, +1197,CHN,,Shanghai RGD Xiju Quyi Pinl,,Shanghai (SH),31.109167,121.514722,,10,,8824,52,133,,2125-1430,1234567,,,50022,,, +1197,J,ja,JOBF RKK Kumamoto Hoso,,Kumamoto/Koshi-Shi (kyu-kum),32.917344,130.726672,,10,,9124,44,134,,0000-2400,1234567,,,50036,,, +1197,THA,th,Jor. Thor. Lor.,,Lop Buri/Narai Maharat Rd (lpb),14.800583,100.642681,,10,,8998,78,134,,1900-1700,1234567,18,,50052,,, +1197,J,ja,JOWL STV Sapporo TV Hoso,,Asahikawa (hok),43.773889,142.442222,,3,,8550,31,137,,0000-2400,1234567,,,50029,,, +1197,J,ja,JOYF IBS Ibaraki Hoso,,Mito (kan-iba),36.434444,140.44,,5,,9207,36,137,,0000-2400,1234567,,,50037,,, +1197,MLA,,RTM Sabah VFM,,Kudat (sbh),6.913406,116.723775,,10,,10753,70,140,,2030-1400,1234567,,,50046,,, +1197,PHL,,DWBA-AM,,Bangued (abr),17.583333,120.616667,,5,,10018,60,140,,,,,,50049,,, +1197,J,,STV, Sapporo TV Hoso,,Enbetsu (hok),44.733333,141.8,,1,,8432,31,141,,0000-2400,1234567,,,50031,, +1197,J,,STV, Sapporo TV Hoso,,Wakkanai (hok),45.366667,141.716667,,1,,8366,31,141,,0000-2400,1234567,,,50043,, +1197,INS,id,RRI Pro-1,,Palangkaraya (KT-kpr),-2.190097,113.896914,,10,,11385,77,142,,1855-1600,1234567,,,50027,,, +1197,J,,STV, Sapporo TV Hoso,,Nayoro (hok),44.35,142.433333,,1,,8492,31,142,,0000-2400,1234567,,,50038,, +1197,KOR,,AFN Korea-Thunder AM,,Dongdducheon/Camp Casey (gye),37.921875,127.062125,,1,,8476,44,142,,0000-2400,1234567,,,50045,,, +1197,CHN,,Quanzhou RGD Jiaotong zhi Sheng,,Quanzhou/FJTS401 (FJ),24.882722,118.596917,,1,,9230,58,144,,????-1730,1234567,,,50020,,, +1197,J,,JOFO RKB Mainichi Hoso,,Kitakyushu (kyu-fuk),33.933333,130.816667,,1,,9031,44,144,,0000-2400,1234567,,,50035,,, +1197,J,,RKK, Kumamoto Hoso,,Aso (kyu-kum),32.933333,131.05,,1,,9138,44,144,,0000-2400,1234567,,,50030,, +1197,J,,RKK, Kumamoto Hoso,,Goshoura (kyu-kum),32.333333,130.316667,,1,,9160,45,144,,0000-2400,1234567,,,50032,, +1197,J,,RKK, Kumamoto Hoso,,Hitoyoshi (kyu-kum),32.2,130.8,,1,,9196,45,144,,0000-2400,1234567,,,50033,, +1197,J,ja,RKC Kochi Hoso,,Nakamura (shi-koc),32.983333,132.916667,,1,,9221,43,144,,,,,,31400079,,, +1197,J,ja,RKK, Kumamoto Hoso,,Minamiaso (kyu-kum),32.816667,131.1,,1,,9152,44,144,,,,,,31400082,, +1197,PHL,,DXFE-AM FEBC,,Davao City/San Raphael (dvs),7.033333,125.516667,,5,,11289,62,144,,2100-1400,1234567,,,50051,,, +1197,INS,id,Asri R,,Ciledug (BT-tan),-6.222222,106.713889,,1,,11256,86,151,,,,3,,35400068,,, +1197,INS,id,R Suara Mitra,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400014,,, +1197,J,,STV, Sapporo TV Hoso,,Rumoi (hok),43.95,141.65,,0.1,,8504,31,152,,0000-2400,1234567,,,50039,, +1197,J,,JOSE SBC, Shinetsu Hoso,,Suwa (chu-nag),36.057778,138.066944,,0.1,,9148,38,154,,0000-2400,1234567,,,50042,, +1197,J,,RKK, Kumamoto Hoso,,Arao (kyu-kum),32.966667,130.433333,,0.1,,9105,45,154,,0000-2400,1234567,,,50028,, +1197,J,,RKK, Kumamoto Hoso,,Kawaura (kyu-kum),32.3,130.083333,,0.1,,9152,45,154,,0000-2400,1234567,,,50034,, +1197,J,ja,GBS,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,,,,,31400078,,, +1197,J,ja,RKK, Kumamoto Hoso,,Oguni (toh-yam),38.066667,139.75,,0.1,,9018,35,154,,,,,,31400083,, +1197,J,ja,RKK, Kumamoto Hoso,,Soyokita,34.5,134,,0.1,,9124,41,154,,,,,,31400080,, +1197,J,ja,RKK, Kumamoto Hoso,,Soyominami,34.5,134,,0.1,,9124,41,154,,,,,,31400081,, +1197,AUS,,5RPH,,Adelaide/Wingfield (SA),-34.837486,138.569828,,2,,15802,82,163,,0000-2400,1234567,,,50015,,, +1197,AUS,en,4BI Switch 1197 AM,,Brisbane/Long Pocket (QLD),-27.515156,152.997664,,0.5,,16124,58,170,,0000-2400,1234567,294,,50016,,, +1197,NZL,,2ZW Newstalk ZB,,Wanganui/Kaitoke (MWT),-39.981944,175.0825,,2,,18412,37,172,,0000-2400,1234567,,,50047,,, +1200,USA,en,WXKS,i,Newton (MA),42.288889,-71.189167,,50,,5677,292,97,,,,1,,42055,,, +1200,CAN,en,CFGO,,Ottawa (ON),45.216667,-75.769722,,50,,5755,297,98,,,,9980,,35958,,, +1200,USA,en,WCHB,,Taylor (MI),42.156667,-83.332222,,15,,6436,299,110,,,,1,,40990,,, +1200,USA,,WAMB,,Nashville (DC) (TN),36.208889,-86.8725,,50,,7120,296,111,,1200-2400,1234567,,,40702,,, +1200,USA,en,WAMB,,Nashville (N) (TN),36.208889,-86.8725,,50,,7120,296,111,,,,,,20016075,,, +1200,USA,,KFNW,,West Fargo (ND),46.801667,-96.883056,,13,,6828,311,114,,,,0,,38415,,, +1200,USA,,WXIT,,Blowing Rock (NC),36.154722,-81.661389,,10,,6801,293,115,,,,,,43469,,, +1200,USA,,WTLA,,North Syracuse (NY),43.151667,-76.132778,,1,,5924,296,116,,,,,,43162,,, +1200,B,pt,ZYH585 Cear Rdio Clube,,Fortaleza (CE),-3.849572,-38.574178,,30,,7521,230,117,,,,993,,36901991,,, +1200,USA,es,WRTO,,Chicago (IL),41.661944,-87.63,,4.5,,6728,301,118,,,,2,,42928,,, +1200,CAN,xx,CJRJ,,Vancouver (BC),49.183056,-123.063611,,25,,7783,328,121,,,,9939,,52614,,, +1200,USA,,WKST,,New Castle (PA),40.939444,-80.393889,,1,,6351,296,121,,,,,,42073,,, +1200,USA,,WRKK,,Hughesville (PA),41.211944,-76.748611,,0.25,,6105,294,124,,,,,,42867,,, +1200,USA,en,WOAI,,San Antonio (TX),29.501944,-98.128611,,50,,8368,299,124,,,,5,,42548,,, +1200,USA,en,WSML,,Graham (NC),36.133611,-79.470556,,1,,6664,291,124,,,,,,43028,,, +1200,VEN,,YVSF R Dimension,,Caripito (mgs),10.111775,-63.130311,,10,,7730,260,124,,1000-0300,1234567,,,51692,,, +1200,VEN,es,YVOZ R Tiempo,,Caracas (dcf),10.540833,-66.953489,,10,,7951,263,127,,0000-2400,1234567,3,,45417,,, +1200,USA,,WBCE,,Wickliffe (KY),36.981667,-89.0775,,1,,7191,298,129,,,,,,40820,,, +1200,CLM,es,HJBZ Ondas del Riohacha,,Riohacha (lag),11.566667,-72.816667,,10,,8261,269,130,,,,,,37362,,, +1200,USA,,KYOO,,Bolivar (MO),37.621111,-93.401667,,1,,7394,302,131,,,,,,39867,,, +1200,CLM,es,HJBV,,Cartagena (bol),10.4,-75.516667,,10,,8547,270,132,,,,,,35901593,,, +1200,HTI,,4VRD,,Port-de-Paix (nou),19.916667,-72.816667,,1,,7546,274,132,,,,,,35654,,, +1200,CLM,es,HJGC RCN,,Sogamoso (boy),5.766667,-72.966667,,10,,8777,265,133,,,,32,,37555,,, +1200,USA,es,WJUA,,Pine Island Center (FL),26.714444,-82.046111,,1,,7596,286,133,,,,,,42744,,, +1200,B,pt,ZYK520 Rdio Cultura Brasil,,So Paulo (SP),-23.677267,-46.714944,,20,,9876,227,134,,,,,,36901993,,, +1200,CLM,es,HJNF R Red,,Cali (val),3.466667,-76.566667,,10,,9224,267,134,,,,923,,37584,,, +1200,USA,en,KYAA,,Soquel (CA),36.660556,-121.541389,,10,,8931,320,134,,,,,,52617,,, +1200,VEN,,YVNH Ondas del Escalante,,Santa Brbara del Zulia (zul),9,-71.916667,,5,,8423,266,134,,1000-0300,1234567,,,45480,,, +1200,CUB,es,R Sancti Spritus,,Yaguajay (ss),22.311972,-79.216556,,1,,7777,281,135,,,,,,2130,,, +1200,PTR,es,WGDL,,Lares (PR),18.294444,-66.897222,,0.25,,7280,269,136,,,,,,41491,,, +1200,B,pt,ZYH251 Rdio Correio do Serto,,Pilar/Campo Grande (AL),-9.759167,-35.85,,1,,7971,224,137,,,,,,36901987,,, +1200,MEX,es,XEQJAL-AM R Quertaro,,Jalpan de Serra (que),21.200556,-99.449136,,5,,9184,295,137,,,,,,34900021,,, +1200,DOM,,HIMR R Caracol,,Azua de Compostela (azu),18.433333,-70.716667,,0.25,,7529,272,138,,1000-0400,1234567,,,37277,,, +1200,HND,,HRSI,,Roatan (bah),16.316667,-86.5,,3,,8778,282,138,,,,,,37842,,, +1200,USA,en,WPJP633,,Niagara Falls/1500 Military Road (NY),43.0945,-78.977639,,0.01,,6103,297,138,,,,,,20010630,,, +1200,CHN,,Yunnan RGD Xinwen Guangbo,,unknown (YN),25.033333,102.716667,,1,,8247,69,139,,,,,,36201239,,, +1200,PRG,,ZP44 R Libre,,Fernando de la Mora (asu),-25.316667,-57.6,,10,,10609,235,139,,,,,,51738,,, +1200,CTR,,TIAM R Cuc,,San Jos (sjs),9.916667,-84.066667,,2.5,,9171,277,140,,1000-0600,1234567,,,40572,,, +1200,BOL,,CP32 R Oriental,,Santa Cruz (scz),-17.766667,-63.166667,,5,,10242,243,141,,0930-0200,1234567,,,36691,,, +1200,EQA,,HCCS1,,S Angolqui (pic),-0.316667,-78.516667,,3,,9689,266,141,,,,,,36889,,, +1200,MEX,es,XEQY-AM R Mexicana,,Cacalomacan (mex),19.249878,-99.697744,,2.5,,9374,294,141,,,,,,44641,,, +1200,CLM,es,HJIJ La Voz de la Raza,,Medelln (ant),6.416667,-75.616667,,1,,8901,268,143,,,,174,,37492,,, +1200,USA,en,WPQG470,,Columbus (OH),39.944303,-82.8485,,0.01,,6577,297,143,,,,,,20010632,,, +1200,USA,en,WPQG470,,Columbus (OH),39.975889,-83.127675,,0.01,,6592,297,143,,,,,,20010629,,, +1200,USA,en,WPQG470,,Columbus (OH),40.110972,-82.980194,,0.01,,6572,297,143,,,,,,20010628,,, +1200,USA,en,WPSL698,,Delaware (OH),40.3,-83.066667,,0.01,,6563,297,143,,,,,,20010633,,, +1200,CAN,en,CFIW,,Canal Flats (BC),50.156111,-115.803611,,0.05,,7412,324,144,,,,,,20109157,,, +1200,CLM,,HJBX,,Villavicencio (met),4.166667,-73.65,,1,,8964,265,144,,,,,,37361,,, +1200,CLM,es,HJCD,,Fusagasuga (cun),4.316667,-74.366667,,1,,9000,265,144,,,,,,37367,,, +1200,EQA,,HCRM5 R El Mercurio,,Cuenca (azu),-2.85,-79,,2,,9945,265,144,,,,,,37092,,, +1200,GTM,,TGRJ R Jutiapa,,Jutiapa (jut),14.278392,-89.889217,,1,,9181,284,144,,,,,,40530,,, +1200,HND,,HRDS,,Nacaome (val),13.5,-87.5,,1,,9090,281,144,,,,,,37749,,, +1200,USA,en,WEMM,,Huntington (WV),38.404722,-82.489167,,0.009,,6675,295,144,,,,,,41300,,, +1200,MEX,es,XEAGA-AM Bonita,,Aguascalientes (agu),21.919722,-102.266111,,1,,9291,298,145,,,,,,43703,,, +1200,MEX,es,XEPAS-AM,,Punta Abreojos (bcs),26.721497,-113.572183,,1,,9493,309,145,,,,,,44531,,, +1200,PRU,es,OAX4B R Cadena 1200,,Lima (lim),-12.183333,-77.033333,,2.5,,10633,257,145,,,,,,40302,,, +1200,USA,,WMIR,,Atlantic Beach (SC),33.836667,-78.784167,,0.011,,6802,289,145,,,,,,42331,,, +1200,B,pt,ZYH482 Rdio Clube Rio do Ouro,,Jacobina/Morro do Peru Pelado (BA),-11.189111,-40.523656,,0.25,,8343,228,146,,,,,,36901989,,, +1200,EQA,,HCMP4,,Bahia de Caraq (man),-0.016667,-80,,1,,9764,267,146,,,,,,37030,,, +1200,EQA,es,HCIA2 La Voz del Trpico,,Quevedo (rio),-1.016667,-79.466667,,1,,9815,266,146,,,,,,36969,,, +1200,USA,en,WPGG523,,Clear Lake (IA),43.133583,-93.361008,,0.01,,6937,306,146,,,,,,20010631,,, +1200,EQA,,R U,,Santa Rosa (oro),-3.45,-79.966667,,1,,10063,265,147,,,,14,,2266,,, +1200,CHL,,CD120 R Agricultura,,Los Angeles (BI),-37.466667,-72.333333,,5,,12525,238,148,,1000-0400,1234567,,,35857,,, +1200,ARG,,LT6 R Goya,,Goya (cn),-29.116667,-59.266667,,1.5,,11051,234,149,,0900-0300,1234567,,,40199,,, +1200,B,pt,ZYK239 Erechim AM,,Erechim (RS),-27.625,-52.247222,,1,,10536,229,149,,,,,,36901994,,, +1200,PRG,,ZP11,,Asuncin (asu),-25.266667,-57.616667,,1,,10605,235,149,,,,,,45506,,, +1200,PRU,,OBX5X,,Abancay (apu),-13.633333,-72.883333,,1,,10487,253,149,,,,,,37000093,,, +1200,MEX,es,XEYF-AM R Frmula,,Hermosillo (son),29.066944,-110.967222,,0.25,,9135,308,150,,,,,,45086,,, +1200,MEX,es,XEWT-AM W R,,Culiacn (sin),24.832222,-107.404722,,0.25,,9329,303,151,,,,,,45036,,, +1200,URG,,CW33 La Nueva R,,Florida (fd),-34.1,-56.216667,,1,,11347,229,151,,0000-2400,1234567,,,36768,,, +1200,ARG,es,LRA6 R Nacional,,Valle de Uspallata (mz),-32.666667,-69.366667,,1,,11942,239,153,,1000-0500,1234567,,,51832,,, +1200,B,pt,ZYK342 Rdio Cotrisel AM,,So Sep (RS),-30.177778,-53.572778,,0.5,,10845,229,153,,,,,,36901988,,, +1200,URG,,CX120,,Rivera (rv),-30.883333,-55.533333,,0.5,,11013,230,153,,,,,,36785,,, +1200,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010634,,, +1200,BOL,,CP171 R 24 de Noviembre,,Arani (cbb),-17.566667,-65.716667,,0.25,,10380,245,154,,1030-0400,1234567,,,36666,,, +1200,USA,en,WPKM997,,Salt Lake City (UT),40.766056,-111.966056,,0.01,,8105,316,158,,,,,,20010627,,, +1205,RUS,,C,b,Morozovsk (RO),48.3125,41.791667,,0.025,,2527,85,98,,,,,15.0s,2xID,86816,, +1206,F,fr,France Info,,Bordeaux/Nac (33),44.949722,-0.188889,,300,,932,214,42,,0000-2400,1234567,4,,1093,,, +1206,ISR,he,IBA Reshet Bet (B),,Haifa/'Akko (haf),32.911667,35.116667,,50,,3140,122,71,,0000-2400,1234567,17,,1095,,, +1206,GRC,el,R Babis,,Athnai (att-ath),38,23.75,,0.7,,2067,133,79,,0000-2400,1234567,999,,3400026,,, +1206,IRQ,,Voice of the People of Kurdistan/Voice of Iraqi Liberation,,Sulaimaniyah (sul),35.55,45.433333,,1,,3570,105,93,,0235-0430,1234567,3,,237,,, +1206,IRQ,,Voice of the People of Kurdistan/Voice of Iraqi Liberation,,Sulaimaniyah (sul),35.55,45.433333,,1,,3570,105,93,,1430-1915,1234567,3,,237,,, +1206,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Nehbandan (skh),31.542861,60.043861,,10,,4857,96,96,,0000-2400,1234567,,,1802,,, +1206,IND,,AIR East,,Bhawanipatna (OR),20.001111,83.178611,,200,,7372,87,108,,0025-0435,1234567,9891,,50067,,, +1206,IND,,AIR East,,Bhawanipatna (OR),20.001111,83.178611,,200,,7372,87,108,,0700-0945,1234567,9891,,50067,,, +1206,IND,,AIR East,,Bhawanipatna (OR),20.001111,83.178611,,200,,7372,87,108,,1130-1735,1234567,9891,,50067,,, +1206,CHN,ko,Yanbian RGD,,Yanji/Longjing (JL),42.8,129.441667,,200,,8129,40,115,,2125-1500,1234567,973,,50063,,, +1206,TWN,AM,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1000-1100,1234567,996,,50087,,, +1206,TWN,AM,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1200-1300,1234567,996,,50087,,, +1206,TWN,id,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,0300-0400,1234567,996,,50087,,, +1206,TWN,vi,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1300-1400,1234567,996,,50087,,, +1206,TWN,zh,...,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1100-1200,1234567,996,,50087,,, +1206,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,0400-0500,1234567,996,,50087,,, +1206,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,0900-1000,1234567,996,,50087,,, +1206,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,1400-1500,1234567,996,,50087,,, +1206,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.570567,120.433019,,100,278,9456,57,125,,2300-2400,1234567,996,,50087,,, +1206,CHN,,Handan JGD,,Handan (HB),36.6,114.466667,,10,,7948,54,127,,,,,,50059,,, +1206,CHN,,Ningxia RGD,,Zhongning (NX),37.516122,105.704756,,1,,7372,59,131,,2115-1830,1234567,,,50065,,, +1206,CHN,zh,CNR 2,,Nanning (GX),22.846944,108.3625,,10,,8795,67,133,,2100-1602,1234567,,,36200432,,, +1206,CHN,zh,CNR 2,,Sanming/FJTS701 (FJ),26.242222,117.621289,,10,,9051,58,134,,2100-1602,1234567,,,36200431,,, +1206,THA,th,Thor. Phor. Neung,,Prachuap Khiri Khan (pkk),11.791667,99.8,,10,,9204,80,134,,,,,,50084,,, +1206,TWN,,Taiwan Guangbo Gongsi,,Hsinchu (HCS),24.776344,120.983481,,10,,9377,56,135,,,,,,50086,,, +1206,CHN,zh,Cangzhou RGD Traffic,,Cangzhou (HB),38.275917,116.768333,,1,,7925,51,136,,,,,,36200434,,, +1206,MOZ,pt,Emisso Prov. de Inhambane,,Inhambane (ihb),-23.920389,35.404444,,5,,8912,153,136,,0250-2200,1234567,,,2480,,, +1206,THA,th,Sor. Wor. Thor. (R Thailand),,Satun/Khlong Khut (sat),6.658333,100.088889,,10,,9674,83,136,,2200-1700,1234567,,,50085,,, +1206,CHN,,Huixian JGD,,Huixian (HE),35.466667,113.8,,1,,8010,55,137,,,,,,50060,,, +1206,PHL,,DWAN-AM Traffic R/TeleRadyo,,Makati City/Guadalupe Nuevo (ncr),14.561389,121.043333,,10,,10322,62,138,,2100-1300,......7,,,50082,,, +1206,PHL,,DWAN-AM Traffic R/TeleRadyo,,Makati City/Guadalupe Nuevo (ncr),14.561389,121.043333,,10,,10322,62,138,,2100-1700,123456,,,50082,,, +1206,CHN,,Hubei RGD Sunshine FM,,Xiangfan/Pangongci (HU),32.027778,112.176389,,1,,8219,58,139,,,,,,36200430,,, +1206,CHN,,Weihai RGD Xinwen,,Weihai (SD),37.516667,122.116667,,1,,8270,48,140,,????-1500,1234567,,,50062,,, +1206,CHN,zh,Jiangsu RGD Jinling zhi Sheng,,Nanjing/Gulizhen (JS),31.862533,118.671722,,1,,8601,54,142,,2100-1700,1234567,,,50061,,, +1206,KOR,ko,HLSW KBS 1 R,,Jeongseon (gan),37.382778,128.673611,,1,,8603,44,142,,0000-2400,1234567,,,50077,,, +1206,KOR,,HLQR KBS 1 R,,Cheongsong (gsb),36.4275,129.053611,,1,,8711,44,143,,0000-2400,1234567,,,50076,,, +1206,PHL,,DXRS-AM Radyo Agong,,Surigao City (sdn),9.766667,125.466667,,5,,11032,61,143,,2100-1600,1234567,,,50083,,, +1206,CHN,,Guangdong Weixing Guangbo,,Shenzhen/Shiyan (GD),22.653392,113.895556,,1,,9153,63,144,,,,,,36200004,,, +1206,CHN,,Guangdong Weixing Guangbo,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,,,,,36200429,,, +1206,CHN,,Guangdong Weixing Guangbo,,Zhaoqing (GD),23.05,112.45,,1,,9030,63,144,,,,,,36200428,,, +1206,ROD,xx,R Rodrigues,,Citronelle/Mont Malartic (rod),-19.712778,63.433333,,1,,9698,128,146,,0000-2400,1234567,,,2479,,, +1206,INS,id,PM5CHL R Dirgan Bravo,,Padang (SB-pad),-1,100.416667,,1,,10369,87,148,,????-1600,1234567,,,50072,,, +1206,INS,id,PM3BGW R Histori,,Karawang (JB-kar),-6.316667,107.3,,1,,11304,85,151,,,,40,,50074,,, +1206,INS,id,R Global,,Jakarta (JK),-6.166667,106.833333,,1,,11259,86,151,,,,73,,35400070,,, +1206,AUS,,6BET,,Perth/Bentley (WA),-32.012389,115.890278,,2,,14044,97,157,,0000-2400,1234567,,,50057,,, +1206,AUS,,2GF,,Grafton/Swan Creek (NSW),-29.664333,152.981972,,5,,16314,61,161,,0000-2400,1234567,,,50056,,, +1206,AUS,,2CC,,Canberra/Barton Highway (ACT),-35.214333,149.116806,,5,,16532,72,162,,0000-2400,1234567,,,50055,,, +1206,NZL,,4XO LiveSPORT,,Dunedin/Highcliff (OTA),-45.883333,170.583333,,2,,18673,65,173,,,,,,50080,,, +1206,NZL,,1XHC Community Access R,,Hamilton/Newstead (WKO),-37.783333,175.344444,,0.5,,18204,33,177,,,,,,50081,,, +1210,CAN,,VOAR,,Saint John's (NL),47.534722,-52.821111,,10,,4160,287,89,,,,7,,40614,,, +1210,RUS,,G,b,Tretyakovo/Luhovitsi (MO),54.895833,39.041667,,0.025,,2160,69,95,,,,,,85882,,, +1210,RUS,,IO,b,Kirovsk / Apatity (MU),67.479167,33.625,,0.025,,2252,30,95,,,,,,85883,,, +1210,RUS,,R,b,Tretyakovo/Luhovitsi (MO),54.895833,38.958333,,0.025,,2155,69,95,,,,,,85885,,, +1210,RUS,,PR,b,Peredovaya,44.104167,41.458333,,0.025,,2719,95,100,,,,999,L1025 U1029 ,ID+5 gap,85884,, +1210,USA,en,WPHT,i,Philadelphia (PA),39.979444,-74.986944,,50,,6085,292,101,,,,9998,,42687,,, +1210,USA,,WJNL,,Kingsley (MI),44.559444,-85.593611,,50,,6385,302,104,,,,,,42146,,, +1210,KAZ,,UN,b,Arkalyk (qos),50.3125,66.958333,,0.025,,4098,68,114,,,,,,IDx2 + 15.2 gap,85886,, +1210,USA,,WANB,,Waynesburg (PA),39.87,-80.133611,,5,,6416,295,114,,,,,,40722,,, +1210,USA,en,WSBI,,Static (TN),36.622778,-85.0875,,10,,6977,296,117,,1300-0100,1234567,,,42957,,, +1210,USA,,WDGR,,Dahlonega (GA),34.529167,-84.006389,,10,,7079,293,118,,1200-2400,1234567,41,,41157,,, +1210,USA,,WILY,,Centralia (DC) (IL),38.481944,-89.148889,,10,,7073,300,118,,1300-0100,1234567,,,20012533,,, +1210,USA,es,KMIA,,Auburn-Federal Way (D) (WA),47.305556,-122.248056,,28,,7933,326,122,,,,,,20016024,,, +1210,PTR,,WHOY,,Salinas (D) (PR),17.975406,-66.303689,,5,,7266,268,123,,0900-0200,1234567,,,41682,,, +1210,PTR,,WHOY,,Salinas (N) (PR),17.975406,-66.303689,,5,,7266,268,123,,,,,,20016273,,, +1210,USA,,WDAO,,Dayton (OH),39.726667,-84.206389,,1,,6677,297,124,,,,,,41123,,, +1210,CUB,es,R Sancti Spritus,,Sancti Spritus/CTOM1 (ss),21.929769,-79.414564,,10,,7823,281,125,,,,,,31600114,,, +1210,VEN,,YVZT R Anzotegui,,Barcelona (azg),10.156217,-64.701728,,10,,7832,261,125,,0000-2400,1234567,998,,45490,,, +1210,B,pt,ZYJ620 Rdio Vale do Potengi,,So Paulo do Potengi (RN),-5.891667,-35.761111,,5,,7581,226,126,,,,,,36901999,,, +1210,USA,,KGYN,,Guymon (OK),36.676111,-101.382778,,10,,7927,306,126,,,,6,,38524,,, +1210,USA,es,KMIA,,Auburn-Federal Way (N) (WA),47.3,-122.188056,,10,,7931,326,126,,,,,,20016023,,, +1210,USA,,KOKK,,Huron (SD),44.362222,-98.1525,,0.87,,7095,310,129,,,,,,39075,,, +1210,USA,es,WNMA,,Miami Springs (FL),25.9,-80.363611,,2.5,,7553,284,129,,,,,,42482,,, +1210,CLM,es,HJBE La Carinosa,,Ccuta (nsa),7.783333,-72.466667,,10,,8566,266,132,,,,,,37344,,, +1210,DOM,,HIAH R VEN Voz Evangelica Nacional,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,1000-0400,123456,,,52244,,, +1210,DOM,,HIAH R VEN Voz Evangelica Nacional,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,1100-2300,......7,,,52244,,, +1210,CAN,en,CFYM,,Kindersley (SK),51.451389,-109.145556,,0.25,,7019,321,133,,,,3,,36027,,, +1210,HTI,,R Plus,,Port-au-Prince (oue),18.516667,-72.333333,,1,,7632,273,133,,,,,,35649,,, +1210,USA,,KUBR,,San Juan (D) (TX),26.244722,-98.090278,,10,,8653,297,133,,,,,,39565,,, +1210,CAN,en,CBAK,,Aklavik (NT),68.222222,-135.028056,,0.04,,6261,344,134,,,,,,20109158,,, +1210,CLM,es,HJBQ RCN,,Pereira (ris),4.766667,-75.766667,,10,,9055,267,134,,,,995,,37431,,, +1210,CLM,es,HJFR,,Neiva (hui),2.783333,-75.316667,,10,,9199,265,134,,,,,,37442,,, +1210,USA,,KHAT,,Laramie (WY),41.255278,-105.550278,,1,,7745,312,134,,,,2,,38528,,, +1210,USA,,KPRZ,,San Marcos/Canyon de Oro (CA),33.069444,-117.193056,,10,,9075,315,134,,,,2,,39167,,, +1210,USA,en,WLRO,,Denham Springs (LA),30.522222,-90.970833,,1,,7846,295,135,,,,,,43014,,, +1210,B,pt,ZYI786 Rdio Jornal,,Garanhuns (PE),-8.882472,-36.476614,,1,,7914,225,136,,,,,,36901998,,, +1210,USA,,KEBR,,Rocklin (D) (CA),38.462778,-121.130278,,5,,8739,321,136,,,,37,,38311,,, +1210,USA,,KQEQ,,Fowler (D) (CA),36.770556,-119.922222,,5,,8848,319,136,,,,94,,20012589,,, +1210,USA,,KUBR,,San Juan (N) (TX),26.243889,-98.090278,,5,,8653,297,136,,,,,,20012607,,, +1210,DOM,,HICJ R Merengue,,San Francisco de Macors (dua),19.3,-70.25,,0.25,,7423,272,137,,,,,,37229,,, +1210,EQA,,HCVC3,,Loja (loj),-3.966667,-79.2,,10,,10057,264,137,,,,,,37158,,, +1210,GTM,,TGMX Coco R,,Ciudad de Guatemala (gut),14.616667,-90.65,,5,,9202,285,137,,0000-2400,1234567,,,40519,,, +1210,MEX,,XECOPA-AM,,Copainal (cps),17.077989,-93.217111,,5,,9154,288,137,,,,,,34900027,,, +1210,USA,,WMPS,,Bartlett (TN),35.261111,-89.830556,,0.25,,7378,298,137,,,,,,42378,,, +1210,PNR,es,HOE91 R 10,,La Gloria Bethania (pnm),9.016389,-79.530278,,4,,8941,272,138,,,,,,37680,,, +1210,B,pt,ZYK240 Catedral AM,,Esteio/Rua So Lourenco (RS),-29.896389,-51.228056,,10,,10699,227,139,,,,,,36902009,,, +1210,B,pt,ZYK545 Rdio Bandeirantes,,Araatuba (SP),-21.172847,-50.421733,,5,,9827,231,139,,,,,,36902002,,, +1210,B,pt,ZYH452 Rdio Povo,,Feira de Santana (BA),-12.250053,-38.9371,,1,,8369,226,141,,,,,,36902004,,, +1210,B,pt,ZYH637 Rdio Princpe Imperial,,Crates (CE),-5.183475,-40.67925,,0.25,,7762,231,141,,,,,,36902003,,, +1210,B,pt,ZYJ219 Super Rdio Deus Amor,,Curitiba/Corpo de Bombeiros (PR),-25.448639,-49.125139,,5,,10169,228,141,,,,,,36902006,,, +1210,HND,,HRAV,,Santa Barbara (bar),14.9,-88.216667,,2,,9016,283,141,,,,,,37739,,, +1210,B,pt,ZYH641 RBE-Rdio Boa Esperana,,Barro (CE),-7.171678,-38.774236,,0.25,,7858,228,142,,,,,,36902001,,, +1210,USA,,KRSV,,Afton (WY),42.722778,-110.960833,,0.25,,7878,316,142,,,,998,,39297,,, +1210,USA,en,WPFD894,,Oshkosh (WI),43.977194,-88.57765,,0.01,,6601,304,143,,,,,,20010637,,, +1210,USA,en,WQAC662,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010638,,, +1210,USA,es,KEVT,,Sahuarita/Tucson (AZ),32.034444,-110.945833,,1,,8859,310,143,,,,13,,39205,,, +1210,CLM,,R Reloj,,,4.45,-74.4,,1,,8990,265,144,,,,986,,52498,,, +1210,HND,,HRRO,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37839,,, +1210,B,pt,ZYI200 Rdio Sim Cachoeiro,,Cachoeiro de Itapemirim (ES),-20.844444,-41.140528,,1,,9327,224,145,,,,99,,36902011,,, +1210,MEX,es,XEITC-AM,,Celaya (gua),20.536944,-100.813333,,1,,9327,296,145,,,,,,44183,,, +1210,MEX,es,XEPUE-AM Mexicana,,Puebla/Av.15 de Mayo 2939 (pue),19.063142,-98.214644,,1,,9298,293,145,,,,,,44581,,, +1210,USA,en,WPSL489,,North Wilkesboro (NC),36.166667,-81.15,,0.01,,6768,293,145,,,,,,20010635,,, +1210,ARG,,LRI229 R Las Flores,,Las Flores (sj),-30.216667,-69.2,,5,,11718,240,146,,0900-0300,1234567,,,51833,,, +1210,EQA,,HCJM6,,Sira (tun),-1.216667,-78.616667,,1,,9775,265,146,,,,,,36989,,, +1210,USA,,KEBR,,Rocklin (N) (CA),38.730833,-121.318889,,0.5,,8721,321,146,,,,,,20012570,,, +1210,B,pt,ZYH711 Super Rdio Braslia,,Braslia/Parque Ceilndia (DF),-15.789644,-48.049747,,0.5,,9185,232,147,,,,,,36902005,,, +1210,B,pt,ZYJ325 Rdio Brotense AM,,Porecatu (PR),-22.75,-51.4,,1,,10030,231,147,,,,,,36901996,,, +1210,EQA,,HCBJ2,,El Mundo (gua),-2.166667,-79.866667,,1,,9944,266,147,,,,,,36863,,, +1210,SLV,,YSCG,,La Paz (paz),13.488503,-88.873328,,0.5,,9183,282,147,,,,,,45268,,, +1210,PRU,,OAX2Q R Universo,,Trujillo (lal),-7.216667,-79.416667,,1,,10357,262,148,,,,,,40285,,, +1210,PRU,,OAX7M R Quillabamba,,Santa Ana (cus),-12.816667,-72.666667,,1,,10400,254,148,,,,,,40347,,, +1210,USA,,KQEQ,,Fowler (N) (CA),36.660278,-119.683611,,0.37,,8848,319,148,,,,9450,,39191,,, +1210,USA,en,KHKR,,Washington (UT),37.143889,-113.500833,,0.25,,8513,315,148,,,,9933,,39581,,, +1210,USA,en,WQES965,,Urbandale/3470 86th Street (IA),41.628833,-93.744303,,0.01,,7081,305,148,,,,,,20010636,,, +1210,B,pt,ZYH498 Rdio Cano Nova,,Vitria da Conquista (BA),-14.880906,-40.834439,,0.25,,8723,226,149,,,,,,36902007,,, +1210,B,pt,ZYL238 Rdio Clube de Varginha,,Varginha (MG),-21.581583,-45.457539,,0.5,,9610,227,149,,,,95,,36901995,,, +1210,B,,ZYK317,,Uruguaiana (RS),-29.766667,-57.066667,,1,,10991,232,150,,,,,,46344,,, +1210,EQA,,HCMD4,,Santa Ana (man),-1.216667,-80.366667,,0.5,,9894,267,150,,,,,,37020,,, +1210,URG,,CX121 Difusora Soriano,,Mercedes (so),-33.25,-58,,1,,11361,230,151,,0000-2400,1234567,,,36786,,, +1210,ARG,,R Mailin,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,51834,,, +1210,ARG,es,R del Promesero,,Jos Clemente Paz (ba),-34.5,-58.75,,1,,11515,230,152,,,,,,33000088,,, +1210,B,pt,ZYK353 RBN-Rdio Blau Nunes,,Santa Brbara do Sul (RS),-28.358611,-53.2475,,0.5,,10658,230,152,,,,,,36901997,,, +1210,B,pt,ZYK509 Vida Nova AM,,Jaboticabal (SP),-21.2625,-48.306944,,0.25,,9725,230,152,,,,,,36902010,,, +1210,B,pt,ZYK668 Rdio Emissora Vanguarda,,Sorocaba/Rua Margarida Izar 122 (SP),-23.498303,-47.432039,,0.25,,9895,228,153,,,,,,36902000,,, +1210,HWA,ja,KZOO,,Honolulu (HI),21.294722,-157.863611,,1,,11711,345,153,,1530-1000,1234567,998,,39903,,, +1210,USA,,WILY,,Centralia (N) (IL),38.524444,-89.134167,,0.003,,7069,300,153,,0100-1300,1234567,,,41759,,, +1210,CHL,,CB121 R Valparaiso,,Via del Mar (Valparaso) (VS),-33.033333,-71.566667,,1,,12103,240,154,,0930-0600,1234567,,,35726,,, +1210,B,pt,ZYJ785 Rdio Super Santa,,Tubaro (SC),-28.508889,-49.006944,,0.25,,10456,226,155,,,,,,36902008,,, +1210,CHL,,CC121 R Universidad de Talca,,Talca (ML),-35.466667,-71.666667,,1,,12317,238,155,,1100-0400,1234567,,,35806,,, +1210,USA,,WTXK,,Pike Road (AL),32.2925,-86.217222,,0.003,,7401,293,156,,,,,,20016054,,, +1210,CHL,,CD121 R Armonia,,Puerto Montt (LL),-41.45,-72.95,,1,,12892,235,157,,,,,,35858,,, +1210,URG,es,CW121 El Libertador,,Vergara (tt),-32.966667,-53.966667,,0.25,,11127,228,157,,0830-0300,1234567,,,36724,,, +1210,URG,,CV121 R RBC,,Piriapolis (ma),-34.867778,-55.251944,,0.25,,11368,228,158,,0000-2400,1234567,,,36743,,, +1215,RUS,ru,Vesti FM,,Bolshakovo (KA),54.905689,21.694433,,1200,,1055,67,37,,0000-2400,1234567,0,,1120,,, +1215,G,en,Absolute R,,Brookmans Park/4 wire T aerial (EN-HTS),51.727778,-0.176389,,130,,454,267,40,,0000-2400,1234567,0,,1115,,, +1215,G,en,Absolute R,,Moorside Edge (EN-WYK),53.63525,-1.8945,,200,,582,290,40,,0000-2400,1234567,0,,1117,,, +1215,G,en,Absolute R,,Droitwich/Mast C-D (EN-WOR),52.298667,-2.105389,,110,,580,275,42,,0000-2400,1234567,0,,1116,,, +1215,G,en,Absolute R,,Washford (EN-SOM),51.161389,-3.347944,,100,,681,265,44,,0000-2400,1234567,0,,1113,,, +1215,G,en,Absolute R,,Westerglen (SC-STL),55.975556,-3.816111,,100,,793,307,45,,0000-2400,1234567,0,,1114,,, +1215,ALB,en,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,0700-0900,1234567,336,,1098,,, +1215,ALB,eo,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,1700-1800,1234567,336,,1098,,, +1215,ALB,ro,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,1800-1900,1234567,336,,1098,,, +1215,ALB,sq,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,1600-1700,1234567,336,,1098,,, +1215,ALB,sr,China R Int.,,Fllak (dur),41.36665,19.516689,,500,30,1552,135,46,,2200-2300,1234567,336,,1098,,, +1215,G,en,Absolute R,,Lisnagarvey (NI-ANT),54.490833,-6.060833,,16,,869,293,54,,0000-2400,1234567,,,1112,,, +1215,G,en,Absolute R,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,2.2,,613,304,60,,0000-2400,1234567,,,1110,,, +1215,G,en,Absolute R,,Postwick (EN-NFK),52.626944,1.402778,,1.2,,345,282,60,,0000-2400,1234567,,,1109,,, +1215,E,es,COPE,,Len (CAL-LE),42.624094,-5.582622,,10,,1385,225,61,,0000-2400,1234567,,,1102,,, +1215,G,en,Absolute R,,Aberdeen/Redmoss (SC-ABC),57.113583,-2.094583,,2.3,,780,319,61,,0000-2400,1234567,,,1111,,, +1215,E,es,COPE,,Santander/Soto de la Marina (CNT-S),43.466258,-3.891533,,5,,1229,223,62,,0000-2400,1234567,,,1101,,, +1215,G,en,Absolute R,,Fareham (EN-HPS),50.849306,-1.226833,,1,,547,258,62,,0000-2400,1234567,,,1106,,, +1215,G,en,Absolute R,,Redruth/Lanner Hill (EN-CNW),50.218056,-5.212222,,2,,836,260,62,,0000-2400,1234567,,,1107,,, +1215,G,en,Absolute R,,Plymouth/Plumer Barracks (EN-DVN),50.406667,-4.125556,,1.1,,756,260,64,,0000-2400,1234567,,,1108,,, +1215,E,es,COPE,,Crdoba/Carretera a Sevilla (AND-CO),37.835156,-4.794856,,10,,1811,213,65,,0000-2400,1234567,,,1100,,, +1215,E,es,COPE,,Lorca/Alto de Santa Mara (MUR-MU),37.678611,-1.701667,,5,,1725,205,67,,0000-2400,1234567,,,1103,,, +1215,G,en,Absolute R,,Hull/Paull (EN-EYK),53.716028,-0.229778,,0.32,,479,294,67,,0000-2400,1234567,,,1105,,, +1215,IRN,fa,IRIB R Mazandaran,,Chalus (mzd),36.678278,51.436589,,50,195,3888,98,79,,0230-2130,1234567,,,1803,,, +1215,IRQ,ar,Republic of Iraq R,,Tikrit (sad),34.605556,43.661389,,10,,3528,109,82,,0000-2400,1234567,,,10500002,,, +1215,G,en,Absolute R,,Dartford Tunnel (EN-KNT),51.461667,0.255,,0.004,,429,263,85,,0000-2400,1234567,,,1104,,, +1215,ARS,ar,BSKSA Idha'atu-i Riyadh,,Al-Madinah=Medinah (mdh),24.409678,39.534411,,20,,4158,125,86,,0300-2300,1234567,,,47076,,, +1215,RUS,,WT,b,Kartino,55.604167,37.791667,,0.025,,2076,67,94,,,,,,85888,,, +1215,RUS,,P,b,Ufa (BA),54.604167,55.875,,0.025,,3226,65,105,,,,,,85887,,, +1215,IND,,AIR National Channel,,Delhi C (DL),28.697986,77.212403,,20,,6251,85,107,SAs,1320-0043,1234567,,,50096,,, +1215,NGR,,ORTN La Voix du Sahel,,Tahoua (thu),14.9,5.266667,,0.1,,4139,182,108,,0500-2300,1234567,,,2483,,, +1215,CHN,,Heihe RGD,,Heihe/SARFT913 (HL),50.23,127.519167,,50,,7361,37,114,,2100-1400,1234567,,,36200423,,, +1215,TZA,sw,TBC Taifa,,Arusha (ars),-3.419611,36.71175,,10,,6802,145,115,,0200-2100,1234567,992,,2484,,, +1215,CHN,,Tianshan JGD,,Tianshan (XJ),43.35,88.316667,,1,,5871,65,116,,,,,,50094,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,0015-0345,123456,9949,,50097,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,0025-0430,......7,9949,,50097,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,0610-1000,123456,9949,,50097,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,0630-1100,......7,9949,,50097,,, +1215,IND,,AIR South,,Pudducheri (PY),11.954528,79.792222,,20,,7829,96,122,,1200-1740,1234567,9949,,50097,,, +1215,CHN,zh,CNR 2,,Shenyang/SARFT033 (LN),41.625278,123.300556,,20,,7955,45,124,,2058-1602,1234567,,,50093,,, +1215,BOT,,R Botswana,,Mahalapye (ce),-23.141667,26.825833,,50,,8600,161,125,,0000-2400,1234567,,,2482,,, +1215,CHN,,CNR 7 Huaxia zhi Sheng,,Zhuhai/GDTS909 (GD),22.38255,113.557286,,50,,9157,63,127,,,,,,36200001,,, +1215,CHN,zh,CNR 2,,Dandong (LN),40.116667,124.366667,,10,,8144,45,128,,2058-1602,1234567,,,36201040,,, +1215,THA,,Sor. Wor. Thor. (R Thailand),,Surat Thani (stn),9.116667,99.2,,50,,9398,82,128,,2200-1600,1234567,,,50109,,, +1215,CHN,,Hubei RGD Shenghuo Pindao,,Yichang (HU),30.703056,111.228889,,10,,8280,60,130,,,,,,36200427,,, +1215,CHN,zh,Hubei RGD Chutian Weixing,,Xiantao (HU),30.383333,113.4,,10,,8435,58,131,,,,,,36200426,,, +1215,CHN,zh,CNR 2,,unknown,34.95,104.5,,1,,7515,61,132,,2058-1602,1234567,,,36201039,,, +1215,KOR,ko,HLAK MBC,,Jinju/Myeongseok (gsn),35.219444,128.024167,,10,,8776,45,133,,0000-2400,1234567,,,50104,,, +1215,THA,th,Kor. Wor. Sor. 2,,Phrae/Yantrakitkoson Rd (pre),18.06075,100.081222,,10,,8677,76,133,,????-1700,1234567,,,50108,,, +1215,THA,th,Thor. Phor. Song,,Ubon Ratchathani (urt),15.193889,104.879722,,10,,9244,74,135,,,,,,50110,,, +1215,PHL,,DYRF-AM Radyo Fuerza,,Cebu City/Mambaling (ceb),10.286411,123.876278,,10,,10888,62,140,,2100-1400,1234567,,,50106,,, +1215,INS,id,RRI Pro-1,,Samarinda (KI-sam),-0.467917,117.009056,,10,,11437,74,142,,2100-1600,1234567,,,50099,,, +1215,CHN,zh,CNR 1,,Jingdezhen (JX),29.269111,117.176278,,1,,8751,56,143,,2025-1805,1234567,,,36200425,,, +1215,J,ja,JOBO KBS Kinki Hoso,,Maizuru/Chitose (kns-kyo),35.535556,135.341667,,1,,9083,40,144,,0000-1600,......7,9999,,50102,,, +1215,J,ja,JOBO KBS Kinki Hoso,,Maizuru/Chitose (kns-kyo),35.535556,135.341667,,1,,9083,40,144,,0000-2400,123456,9999,,50102,,, +1215,J,ja,JOBO KBS Kinki Hoso,,Maizuru/Chitose (kns-kyo),35.535556,135.341667,,1,,9083,40,144,,2000-2400,......7,9999,,50102,,, +1215,J,ja,JOBW KBS Kinki Hoso,,Hikone/Mitsuya-cho (kns-shi),35.245,136.188333,,1,,9148,39,144,,0000-1600,......7,,,50100,,, +1215,J,ja,JOBW KBS Kinki Hoso,,Hikone/Mitsuya-cho (kns-shi),35.245,136.188333,,1,,9148,39,144,,0000-2400,123456,,,50100,,, +1215,J,ja,JOBW KBS Kinki Hoso,,Hikone/Mitsuya-cho (kns-shi),35.245,136.188333,,1,,9148,39,144,,2000-2400,......7,,,50100,,, +1215,TWN,,Tien Sheng Kuangpo Tientai,,Yuanli (ML),24.45,120.65,,1,,9388,57,145,,,,,,50112,,, +1215,J,,JOGE RAB, Aomori Hoso,,Hirosaki (toh-aom),40.616667,140.483333,,0.5,,8793,34,146,,0000-2400,1234567,7,,50101,, +1215,INS,id,RRI Pro-3,,Bandung/Gede Bage (JB-ban),-6.952178,107.688222,,1,,11386,85,152,,1130-????,1234567,,,50724,,, +1215,INS,id,RRI Pro-3,,Bandung/Gede Bage (JB-ban),-6.952178,107.688222,,1,,11386,85,152,,2200-????,1234567,,,50724,,, +1215,J,ja,TBC, Tohoku Hoso,,Shizugawa (toh-miy),38.666667,141.45,,0.1,,9024,34,154,,0000-1600,......7,,,50103,, +1215,J,ja,TBC, Tohoku Hoso,,Shizugawa (toh-miy),38.666667,141.45,,0.1,,9024,34,154,,0000-2400,123456,,,50103,, +1215,J,ja,TBC, Tohoku Hoso,,Shizugawa (toh-miy),38.666667,141.45,,0.1,,9024,34,154,,2000-2400,......7,,,50103,, +1215,AUS,en,6NM ABC Midwest & Wheatbelt,,Northam (WA),-31.661389,116.681667,,0.5,,14070,96,163,,0000-2400,1234567,,,50091,,, +1215,AUS,,4HI/t Zinc HI,,Moranbah (QLD),-22.001944,148.024444,,0.3,,15334,59,170,,0000-2400,1234567,,,50090,,, +1215,NZL,,1ZE Newstalk ZB,,Kaikohe/Ohaeawai (NTL),-35.361111,173.874167,,2,,17905,33,170,,,,,,50105,,, +1215,AUS,,2TAB Racing R,,Bowral/Moss Vale (NSW),-34.541889,150.353639,,0.4,,16559,70,173,,,,,,50089,,, +1220,USA,,WHKW,,Cleveland (OH),41.307222,-81.689167,,50,,6402,297,104,,,,32,,41650,,, +1220,ARM,,AND,b,Andranik (Urtsalanj) (arr),39.830278,44.9925,,0.025,,3231,100,105,,,,,L1219 U1221 ,86817,,, +1220,CAN,en,CJRB,,Boissevain (MB),49.257222,-100.057222,,10,,6787,314,115,,,,1,,36206,,, +1220,USA,en,WWSF,,Sanford (ME),43.431389,-70.762222,,0.234,,5570,293,119,,,,,,42688,,, +1220,USA,en,WQUN,,Hamden (CT),41.377222,-72.928889,,0.305,,5852,292,121,,,,,,42801,,, +1220,USA,,WSTL,,Providence (RI),41.820833,-71.385278,,0.166,,5723,291,122,,,,,,42852,,, +1220,USA,,WZBK,i,Keene (NH),42.930556,-72.3,,0.146,,5702,293,122,,,,,,43567,,, +1220,B,pt,ZYJ458 Rdio Globo,,Rio de Janeiro/Ilha do Pontal (RJ),-22.8225,-43.096389,,150,,9616,225,124,,,,16,,36902012,,, +1220,USA,,WGNY,,Newburgh (NY),41.531389,-74.113333,,0.18,,5916,293,124,,,,,,41540,,, +1220,USA,es,WREV,,Reidsville (NC),36.388611,-79.6475,,1,,6656,292,124,,1200-2400,1234567,,,42837,,, +1220,MEX,es,XEB-AM La B Grande,,Mxico D.F/San Lorenzo Tezonco (dif),19.309406,-99.059247,,100,,9329,294,125,,,,,,43754,,, +1220,VEN,,YVZO R Aeropuerto 1220,,Maracaibo (zul),10.766667,-71.566667,,20,,8245,267,126,,0000-2400,1234567,,,51694,,, +1220,CUB,es,R Caribe,,La Fe (ij),21.7136,-82.760747,,10,,8065,283,128,,,,,,31600080,,, +1220,USA,,WLPO,,Lasalle (IL),41.303889,-89.095556,,0.5,,6842,302,128,,,,,,42216,,, +1220,VEN,,YVRD LV de Apure,,San Fernando de Apure (apu),7.833333,-67.5,,10,,8225,262,129,,,,1,,45441,,, +1220,USA,,KLBB,,Stillwater (MN),45.054167,-92.828333,,0.254,,6753,307,130,,,,,,42320,,, +1220,VEN,,YVAP,,Maracaibo (zul),10.666667,-71.666667,,10,,8261,267,130,,,,,,45338,,, +1220,USA,,KDDR,,Oakes (ND),46.123056,-98.089167,,0.327,,6946,311,131,,,,,,38247,,, +1220,VEN,,YVVM R Venezuela,,Valencia (cbb),10.183333,-68,,5,,8053,264,131,,,,998,,51693,,, +1220,DOM,,HIN R Bemba,,Santo Domingo (sdo),18.566667,-69.866667,,1,,7459,271,132,,,,,,37279,,, +1220,USA,,WJUN,,Mexico (PA),40.535,-77.340556,,0.046,,6192,294,132,,,,,,41938,,, +1220,CLM,es,HJAV RCN,,Montera (cor),8.8,-75.833333,,10,,8707,269,133,,,,998,,37337,,, +1220,CLM,es,HJMT RCN,,San Gil (sat),6.5,-73.116667,,10,,8723,266,133,,,,,,37574,,, +1220,HTI,,Voix du Plateau Central,,Hinche (cen),19.141667,-72.005556,,1,,7557,273,133,,,,,,52117,,, +1220,USA,,WENC,,Whiteville (NC),34.308333,-78.716667,,0.152,,6760,289,133,,,,,,41304,,, +1220,USA,,WFAX,,Falls Church (VA),38.879722,-77.171667,,0.048,,6306,292,133,,,,,,41359,,, +1220,CLM,es,HJKR R Maria,,Bogot D. C. (bdc),4.75,-74.116667,,10,,8944,265,134,,,,,,37531,,, +1220,USA,,WKRS,,Waukegan (IL),42.349722,-87.881389,,0.09,,6689,302,134,,,,,,42066,,, +1220,CLM,es,HJFF,,Barranquilla (atl),10.866667,-74.766667,,5,,8455,270,135,,,,,,37445,,, +1220,CLM,es,HJNM R Viva,,Ipiales (nar),0.866667,-77.666667,,10,,9527,266,135,,,,,,37591,,, +1220,USA,,KQMG,,Independence (IA),42.475556,-91.873889,,0.134,,6907,304,135,,,,,,39198,,, +1220,USA,,WBCH,,Hastings (MI),42.626111,-85.278056,,0.048,,6515,300,135,,,,,,40822,,, +1220,USA,es,WDYT,,Kings Mountain (NC),35.286667,-81.174444,,0.106,,6840,292,135,,,,,,42046,,, +1220,MEX,es,XESAL-AM,,Saltillo (coa),25.348261,-101.025872,,4.5,,8909,299,137,,,,,,44729,,, +1220,PNR,es,Asamblea Nacional,,Santiago/La Pea (vrg),8.128056,-81.024167,,5,,9120,273,137,,,,,,35100007,,, +1220,USA,,WAXO,,Lewisburg (TN),35.428333,-86.772778,,0.144,,7178,296,137,,,,,,40783,,, +1220,USA,,WCPH,,Etowah (TN),35.320833,-84.509444,,0.109,,7046,294,137,,,,,,41065,,, +1220,USA,,WSLM,,Salem (IN),38.615278,-86.086111,,0.082,,6879,298,137,,,,,,43020,,, +1220,USA,,KGIR,,Cape Girardeau (MO),37.300833,-89.490833,,0.137,,7190,299,138,,,,,,38484,,, +1220,USA,,KLPW,,Union (MO),38.4825,-91.044167,,0.126,,7185,301,138,,,,,,38842,,, +1220,USA,,WERT,,Van Wert (OH),40.871944,-84.554167,,0.029,,6608,299,138,,,,,,41323,,, +1220,USA,,WFKN,,Franklin (KY),36.738889,-86.578333,,0.09,,7059,297,138,,,,,,41392,,, +1220,USA,,WFWL,,Camden (TN),36.052778,-88.0875,,0.14,,7207,297,138,,,,,,41459,,, +1220,EQA,,HCAP1 Sistema de Rdifusoras Maraon,,Quito (pic),-0.166667,-78.466667,,5,,9673,266,139,,,,,,36851,,, +1220,USA,,WLSD,,Big Stone Gap (VA),36.840556,-82.737222,,0.045,,6814,294,139,,,,,,42232,,, +1220,USA,,WZOT,,Rockmart (GA),34.003889,-85.056111,,0.103,,7187,293,139,,,,,,43587,,, +1220,USA,,KJAN,,Atlantic (IA),41.417222,-95.004167,,0.062,,7169,305,141,,,,,,38657,,, +1220,USA,,KTLV,,Midwest City (OK),35.397222,-97.451111,,0.25,,7816,303,141,,,,,,39506,,, +1220,USA,,WOTS,,Kissimmee (FL),28.324167,-81.395556,,0.11,,7420,287,141,,,,,,42628,,, +1220,USA,en,WSRQ,,Sarasota (FL),27.324167,-82.496389,,0.159,,7575,287,141,,,,,,41719,,, +1220,USA,,WAYE,,Birmingham (AL),33.4775,-86.849167,,0.075,,7343,294,142,,,,,,40785,,, +1220,HND,,HRRD4,,Gualaco (ola),15.066667,-86.166667,,1,,8864,281,143,,,,,,37835,,, +1220,PRU,es,OAX6X R Melodia,,Arequipa (are),-16.4,-71.533333,,4,,10644,251,143,,0000-2400,1234567,45,,37000025,,, +1220,USA,en,WPIZ762,,Durham/4900 Prospectus Drive (NC),35.898472,-78.893056,,0.01,,6646,291,143,,,,,,20010639,,, +1220,CTR,,TIQ R Casino,,Limon (lmn),9.992264,-83.055567,,1,,9096,276,144,,1030-0600,1234567,,,40599,,, +1220,HND,,HRHH2,,San Pedro Sula (cor),15.533333,-88.016667,,1,,8947,283,144,,,,,,37767,,, +1220,HND,,HRQL2,,Siguatepeque (cmy),14.5,-87.866667,,1,,9027,282,144,,,,,,37829,,, +1220,NCG,,YNVA R America,,Managua (mng),12.15,-86.283333,,1,,9126,280,144,,1200-0400,1234567,,,52222,,, +1220,USA,,WJAX,,Jacksonville (FL),30.325,-81.570833,,0.036,,7266,288,144,,,,,,41841,,, +1220,ARG,es,LRL328 Cadena Eco,,Buenos Aires (df),-34.616667,-58.466667,,5,,11511,230,145,,0000-2400,1234567,,,51835,,, +1220,USA,,KOFO,,Ottawa (KS),38.584444,-95.265833,,0.04,,7420,304,145,,,,,,39060,,, +1220,USA,,KOMC,,Branson (MO),36.718889,-93.238889,,0.044,,7460,301,145,,,,,,39085,,, +1220,USA,,KZEE,,Weatherford (TX),32.788056,-97.7925,,0.2,,8062,301,145,,,,,,39885,,, +1220,EQA,,HCBJ2,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,,,,,36864,,, +1220,GTM,,TGMT R Amiga,,Antigua (sap),14.566667,-90.75,,0.5,,9213,285,147,,1100-0300,1234567,,,40517,,, +1220,USA,,KHTS,,Canyon Country (CA),34.465278,-118.401944,,0.5,,9000,317,147,,,,990,,38566,,, +1220,USA,,KVSA,,McGehee (AR),33.560833,-91.385,,0.04,,7614,297,147,,,,,,39666,,, +1220,USA,en,KPJC,,Salem (OR),44.951389,-122.969444,,0.171,,8187,325,147,,,,999,,38136,,, +1220,BOL,,CP67 R Splendid,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,0900-0100,1234567,,,52009,,, +1220,BOL,,R El Condor,,Arque (cbb),-17.8,-66.383333,,1,,10443,246,148,,,,,,52010,,, +1220,PRU,,OCX1X R Libertad,,Chiclayo (lam),-6.766667,-79.85,,1,,10347,263,148,,,,93,,52453,,, +1220,BOL,,CP162 R Batalln Topter,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1000-0200,12345..,,,36659,,, +1220,BOL,,CP162 R Batalln Topter,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1000-2300,.....6.,,,36659,,, +1220,BOL,,CP162 R Batalln Topter,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1100-2300,......7,,,36659,,, +1220,EQA,,HCJM6,,Ambato (tun),-1.25,-78.616667,,0.5,,9778,265,149,,,,,,36990,,, +1220,PRU,es,R F,,Lima (lim),-12.05,-77.05,,1,,10622,257,149,,,,2,,37000102,,, +1220,USA,,WABF,,Fairhope (AL),30.510833,-87.903611,,0.03,,7655,293,149,,,,,,40625,,, +1220,USA,,WOEG,,Hazlehurst (MS),31.8925,-90.402222,,0.033,,7695,296,149,,,,,,42567,,, +1220,ARG,,R del Norte,,Presidencia Roque Saenz Pena (cc),-26.783333,-60.45,,1,,10904,236,150,,,,,,51836,,, +1220,URG,,CX122 R Reconquista,,Rivera (rv),-30.883333,-55.533333,,1,,11013,230,150,,0945-0300,1234567,,,51720,,, +1220,USA,,KWKU,,Pomona (CA),34.019722,-117.7175,,0.25,,9010,316,150,,,,,,39722,,, +1220,USA,,KDOW,,Palo Alto (CA),37.484444,-122.134444,,0.145,,8877,321,152,,,,9993,,39023,,, +1220,USA,,KLDC,,Denver (CO),39.683333,-105.006667,,0.011,,7856,311,155,,,,,,38860,,, +1220,USA,,KM2XVL,,Huntsville (TX),30.718611,-95.527778,,0.011,,8107,298,158,,,,,,38870,,, +1220,USA,,KMVL,,Madisonville (TX),30.965556,-95.897778,,0.011,,8108,299,158,,,,84,,38947,,, +1220,CHL,,CD122 R Santa Maria de Guadalupe,,Temuco (MA),-51.716667,-72.5,,1,,13690,227,159,,,,,,35860,,, +1224,HOL,nl,R Paradijs,,Utrecht (utr),52.1178,5.08085,,0.02,,91,271,54,,0000-2400,1234567,,,3800010,,, +1224,E,es,COPE,,Lleida=Lrida (CAT-L),41.594556,0.635703,,5,,1248,203,63,,0000-2400,1234567,1,,1126,,, +1224,E,es,COPE,,Palma/Son Espanyol (BAL-ML),39.630478,2.643472,,5,,1417,193,64,,0000-2400,1234567,4,,1129,,, +1224,E,es,COPE,,Albacete (CAM-AB),39.030192,-1.84655,,5,,1588,207,66,,0000-2400,1234567,,,1123,,, +1224,E,es,COPE,,Huelva/Marismas del Oldiel (AND-H),37.26275,-7.000167,,10,,1955,218,67,,0000-2400,1234567,,,1125,,, +1224,E,es,COPE,,Almera (AND-AL),36.865125,-2.4473,,5,,1832,206,68,,0000-2400,1234567,,,1124,,, +1224,E,es,COPE,,Lugo (GAL-LU),42.982789,-7.553875,,2,,1454,231,69,,0000-2400,1234567,,,1127,,, +1224,ISR,he,Galei Zahal,,Mishmar HaNegev (hdm),31.366667,34.719444,,20,,3253,124,77,,0000-2400,1234567,998,,1132,,, +1224,IRN,ar,IRIB WS,,Kish (hrg),26.565278,53.930417,,400,210,4851,107,80,,0000-2400,1234567,6,,10800011,,, +1224,IND,,AIR R Kashmir/Yuv Vani,,Srinagar C (JK),34.029528,74.906486,,10,,5680,82,104,,0105-0400,1234567,,,50124,,, +1224,IND,,AIR R Kashmir/Yuv Vani,,Srinagar C (JK),34.029528,74.906486,,10,,5680,82,104,,1245-1740,1234567,,,50124,,, +1224,MOZ,,Em Prov de Cabo Delgado,,Pemba (cbg),-12.967278,40.525583,,50,,7943,145,119,,0400-2204,1234567,,,1961,,, +1224,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,Jining/NMTS585 (NM),41.023056,113.073611,,10,,7489,52,122,,,,,,36201306,,, +1224,CHN,,Guangxi JGD Caifu Guangbo,,Nanning/GXTS101 (GX),22.792222,108.191667,,100,,8789,67,123,,2200-1605,1234567,,,50121,,, +1224,RUS,ru,R Dacha,,Khabarovsk (KH),48.511667,135.119444,,10,,7819,33,125,,1300-0900,1234567,,,47036,,, +1224,CHN,,Guangxi JGD Caifu Guangbo,,Yulin/GXTS241 (GX),22.673889,110.195,,50,,8924,65,127,,2200-1605,1234567,,,36200420,,, +1224,KOR,ko,HLAA KBS 3 R,,Gwangju (gwa),35.196389,126.835,,20,,8720,46,130,,2000-1800,1234567,,,50138,,, +1224,CHN,,Dongsheng RGD,,Dongsheng (NM),39.816667,110,,1,,7424,54,131,,,,,,50118,,, +1224,CHN,zh,CNR 1,,Hangjin=Hanggin Qi/NMTS843 (NM),39.845389,108.713278,,1,,7350,55,131,,2025-1805,1234567,,,36200421,,, +1224,CHN,,Guangxi JGD Caifu Guangbo,,Bose/GXTS242 (GX),23.890278,106.608889,,10,,8593,67,132,,2200-1605,1234567,,,36201287,,, +1224,CHN,,Zhenjiang RGD,,Zhenjiang (JS),32.216667,119.433333,,10,,8611,53,132,,,,,,50122,,, +1224,CHN,zh,CNR 1,,Uxin=Wushen/NMTS854 (NM),38.633333,108.820278,,1,,7458,56,132,,2025-1805,1234567,,,36201288,,, +1224,THA,th,Thor. Or. 015,,Chiang Rai/Phahonyothin Rd (cri),19.865,99.821667,,10,,8504,75,132,,2200-1502,1234567,,,50147,,, +1224,J,ja,JOJK NHK1,,Kanazawa (chu-ish),36.534411,136.606139,,10,,9040,38,134,,0000-2400,1234567,,,50135,,, +1224,THA,th,Thor. Or. 04,,Nakhon Sawan/Takhli (nsn),15.2584,100.31,,10,,8936,77,134,,????-1700,1234567,,,50148,,, +1224,CHN,,Guangxi JGD Caifu Guangbo,,Wuzhou (GX),23.482222,111.293611,,7.5,,8921,64,135,,2200-1605,1234567,,,36200688,,, +1224,TWN,,BCC Country Network,,Kaohsiung (KH),22.611017,120.42405,,10,,9544,58,136,,0000-2400,1234567,,,48847,,, +1224,PHL,,DZAG-AM Radyo ng Bayan,,Agoo (lun),16.083333,120.1,,10,,10125,62,137,,,,,,50143,,, +1224,REU,fr,Runion 1re,,Saint-Andr (974),-20.978875,55.648683,,5,,9422,135,138,,0000-2400,1234567,,,2376,,, +1224,PHL,,DWSR-AM,,Lucena City (qzn),13.95,121.6,,5,,10412,62,141,,????-1600,1234567,,,50144,,, +1224,PHL,,DXED-AM (r:DZEC 1062),,Davao City (dvs),7.05,125.583333,,10,,11292,62,141,,2000-1600,1234567,,,50142,,, +1224,PHL,,DWBF-AM Radyo ng Bayan,,Virac (ctd),13.585278,124.208889,,5,,10601,60,142,,,,,,50141,,, +1224,TWN,,Hua Sheng BS-HS R 2,,Taipei (TPS),25.096167,121.521931,,1,,9378,55,145,,,,,,50149,,, +1224,INS,id,PM3CEZ R.Cipta Anindyta Guna,,Binjai (SU-bin),3.6,98.5,,1,,9834,86,146,,,,,,50127,,, +1224,INS,id,R ABC-Angkasa Bahana Citra,,Surakarta (JT-ksu),-7.533333,110.833333,,1,,11651,83,152,,????-1410,1234567,,,50133,,, +1224,INS,id,R Sonata AM,,Bandung (JB-ban),-6.944722,107.645556,,1,,11383,85,152,,,,,,50125,,, +1224,INS,id,RSPDT2 Banyumas,,Purwokerto (JT-ban),-7.433333,109.2,,1,,11531,84,152,,,,,,35400074,,, +1224,J,,NHK R 1,,Tanohata (toh-iwa),39.933333,141.933333,,0.1,,8916,33,153,,,,,,50137,,, +1224,J,ja,NHK R 1,,Sera (chg-hir),34.601389,133.062222,,0.1,,9072,42,154,,0000-2400,1234567,,,50136,,, +1224,MHL,,AFN,,Kwajalein,8.733333,167.738889,,1,,13019,21,157,,0000-2400,1234567,,,50139,,, +1224,AUS,,3EA SBS R,,Melbourne/Graigieburn (VIC),-37.618833,144.933889,,5,,16435,80,161,,0000-2400,1234567,,,50114,,, +1224,AUS,,2RPH,,Sydney/Prospect (NSW),-33.808333,150.915556,,5,,16536,68,162,,0000-2400,1234567,,,50115,,, +1224,NZL,en,4XF LiveSPORT,,Invercargill/Highcliff (STL),-46.418611,168.476667,,2,,18573,71,172,,,,,,50140,,, +1230,CAN,,CFFB,,Iqaluit (NU),63.732222,-68.545278,,1,,4325,317,100,,,,997,,35952,,, +1230,CAN,,CFGN,,Port aux Basques (NL),47.585556,-59.121944,,0.25,,4564,291,109,,,,20,,35956,,, +1230,USA,,WGUY,,Veazie (ME),44.847222,-68.68,,0.64,,5342,293,112,,,,,,20016095,,, +1230,USA,en,WMOU,,Berlin (NH),44.459167,-71.173611,,1,,5525,294,112,,,,,,42371,,, +1230,USA,,WJOY,,Burlington (VT),44.450833,-73.1975,,1,,5651,295,114,,,,23,,41918,,, +1230,USA,,WNEB,,Worcester (MA),42.273056,-71.823056,,1,,5718,292,114,,,,,,42455,,, +1230,USA,,WTSV,,Claremont (NH),43.370833,-72.328333,,1,,5672,293,114,,,,,,43219,,, +1230,USA,,WHUC,,Hudson (NY),42.253611,-73.7625,,1,,5842,293,115,,,,968,,41696,,, +1230,USA,,WMML,,Glens Falls (DN) (NY),43.329167,-73.648333,,1,,5758,294,115,,,,,,20016285,,, +1230,USA,,WMML,,Glens Falls (U) (NY),43.328611,-73.649444,,1,,5758,294,115,,,,,,42352,,, +1230,USA,,WNAW,,North Adams (MA),42.684167,-73.106389,,1,,5770,293,115,,,,,,42431,,, +1230,USA,,WNEZ,,Manchester (CT),41.776111,-72.5575,,1,,5800,292,115,,,,,,20016027,,, +1230,USA,en,WBLQ,,Westerly (RI),41.365833,-71.836389,,1,,5784,291,115,,,,,,43483,,, +1230,USA,,WFAS,,White Plains (NY),41.025556,-73.8275,,1,,5935,292,116,,,,,,41356,,, +1230,USA,en,WIXT,,Little Falls (NY),43.0425,-74.858611,,1,,5854,295,116,,,,,,42159,,, +1230,USA,,WEEX,,Easton (PA),40.708333,-75.216667,,1,,6046,293,117,,,,,,41262,,, +1230,USA,,WENY,,Elmira (NY),42.074722,-76.779722,,1,,6043,295,117,,,,,,41312,,, +1230,USA,,WESX,,Salem (MA),42.452778,-70.980556,,0.45,,5652,292,117,,,,,,41329,,, +1230,USA,,WCMC,,Wildwood (NJ),39.0025,-74.812778,,1,,6147,291,118,,,,988,,41035,,, +1230,USA,,WECK,,Cheektowaga (NY),42.924167,-78.778056,,1,,6103,297,118,,,,,,41246,,, +1230,USA,,WBPZ,,Lock Haven (PA),41.134167,-77.469167,,1,,6155,294,119,,,,,,40896,,, +1230,USA,,WRBS,,Baltimore (MD),39.313889,-76.600278,,1,,6237,292,119,,,,,,41816,,, +1230,USA,,WSOO,,Sault Ste. Marie (MI),46.437778,-84.378333,,1,,6174,303,119,,,,0,,43045,,, +1230,USA,,WCRO,,Johnstown (PA),40.331944,-78.912778,,1,,6305,295,120,,,,,,41077,,, +1230,USA,,WTIV,,Titusville (PA),41.616667,-79.692222,,1,,6256,296,120,,,,,,43145,,, +1230,USA,en,WCMD,,Cumberland (MD),39.643889,-78.742222,,1,,6347,294,120,,,,,,42522,,, +1230,CAN,en,CHFC,,Churchill (MB),58.755,-94.094444,,0.25,,5774,320,121,,,,3,,36044,,, +1230,USA,,WBVP,,Beaver Falls (PA),40.737778,-80.296389,,1,,6360,296,121,,,,,,40929,,, +1230,USA,,WFVA,,Fredericksburg (VA),38.280556,-77.436389,,1,,6369,292,121,,,,,,41457,,, +1230,USA,,WMPC,,Lapeer (MI),43.079444,-83.309722,,1,,6364,300,121,,,,,,42374,,, +1230,USA,en,WFER,,Iron River (MI),46.065278,-88.638056,,1,,6442,305,121,,,,,,41744,,, +1230,CAN,fr,CBAF-21,,Saint-Quentin (NB),47.5125,-67.395278,,0.04,,5088,295,122,,,,,,20109164,,, +1230,USA,,WGRY,,Grayling (MI),44.651389,-84.738333,,0.75,,6329,302,122,,,,,,41562,,, +1230,USA,,WKBO,,Harrisburg (PA),40.281111,-76.868333,,0.48,,6182,293,122,,,,,,41967,,, +1230,USA,,WTKG,i,Grand Rapids (MI),42.995,-85.676667,,1,,6510,301,122,,,,0,,43153,,, +1230,USA,en,WCBT,,Roanoke Rapids (NC),36.445833,-77.664167,,1,,6525,291,122,,,,,,40959,,, +1230,USA,en,WCWA,,Toledo (OH),41.636944,-83.564444,,1,,6490,299,122,,,,,,41111,,, +1230,USA,,WBET,,Sturgis (MI),41.769722,-85.419167,,1,,6590,300,123,,,,,,42390,,, +1230,USA,,WODI,,Brookneal (VA),37.038056,-78.941667,,1,,6560,292,123,,,,,,42563,,, +1230,USA,,WXCF,,Clifton Forge (VA),37.821667,-79.813889,,1,,6554,293,123,,,,,,43457,,, +1230,USA,,WXCO,,Wausau (WI),44.969444,-89.606944,,1,,6582,305,123,,,,,,43458,,, +1230,USA,en,WJOI,,Norfolk (VA),36.834444,-76.269722,,0.63,,6405,290,123,,,,991,,41911,,, +1230,USA,en,WVNT,,Parkersburg (WV),39.258056,-81.563611,,0.88,,6552,295,123,,,,,,43320,,, +1230,USA,en,WYTS,,Columbus (OH),39.941944,-83.022222,,1,,6588,297,123,,,,,,43199,,, +1230,USA,es,WLNR,,Kinston (NC),35.258611,-77.609167,,1,,6614,289,123,,,,,,42198,,, +1230,USA,,KTRF,,Thief River Fall (MN),48.129722,-96.186389,,1,,6684,311,124,,,,997,,39535,,, +1230,USA,,WCLO,,Janesville (WI),42.659722,-89.042222,,1,,6731,303,124,,,,,,41029,,, +1230,USA,,WDBZ,,Cincinnati (OH),39.114167,-84.492222,,1,,6742,297,124,,,,,,41131,,, +1230,USA,,WFAY,,Fayetteville (NC),35.072222,-78.873889,,1,,6710,290,124,,,,,,41360,,, +1230,USA,,WIRO,,Ironton (OH),38.539444,-82.671389,,1,,6676,295,124,,,,,,41800,,, +1230,USA,,WJOB,,Hammond (IN),41.596944,-87.479167,,1,,6725,301,124,,,,,,41909,,, +1230,USA,,WKLK,,Cloquet (MN),46.749444,-92.421389,,0.72,,6596,308,124,,,,,,42036,,, +1230,USA,,WMFR,,High Point (NC),35.955556,-80.006111,,1,,6712,292,124,,,,,,42313,,, +1230,USA,,WSAL,,Logansport (IN),40.754444,-86.311111,,1,,6722,300,124,,,,,,42947,,, +1230,USA,,KWNO,,Winona (MN),44.033889,-91.605,,0.99,,6767,305,125,,,,,,39735,,, +1230,USA,,WABN,,Abingdon (VA),36.734167,-81.971667,,1,,6775,294,125,,,,,,40631,,, +1230,USA,,WNNC,,Newton (NC),35.672222,-81.236667,,1,,6813,292,125,,,,,,42485,,, +1230,USA,,WOLH,,Florence (SC),34.23,-79.746944,,1,,6833,290,125,,,,,,42596,,, +1230,USA,,KMRS,,Morris (MN),45.603056,-95.887222,,1,,6873,309,126,,,,,,38932,,, +1230,USA,,KYSM,,Mankato (D/N) (MN),44.168333,-93.910833,,1,,6883,307,126,,,,,,39871,,, +1230,USA,,KYSM,,Mankato (U) (MN),44.172222,-94.039722,,1,,6890,307,126,,,,,,20016203,,, +1230,USA,,WANO,,Pineville (KY),36.768611,-83.716389,,1,,6881,295,126,,,,,,40725,,, +1230,USA,,WFXN,,Moline (IL),41.481667,-90.530278,,1,,6911,303,126,,,,,,41462,,, +1230,USA,,WHIR,,Danville (KY),37.674444,-84.768333,,1,,6873,296,126,,,,,,41643,,, +1230,USA,,WJBC,,Bloomington (IL),40.450278,-89.011667,,1,,6906,301,126,,,,,,41844,,, +1230,USA,,WOIC,,Columbia (SC),33.992778,-81.045833,,1,,6935,291,126,,,,,,42577,,, +1230,USA,,WSKY,,Asheville (NC),35.595278,-82.565833,,1,,6903,293,126,,,,,,43017,,, +1230,CAN,en,CBMK,,Lebel-sur-Quvillon (QC),49.049444,-76.979722,,0.04,,5563,302,127,,,,,,20109163,,, +1230,USA,,KFJB,,Marshalltown (IA),42.066944,-92.969444,,1,,7002,305,127,,,,,,38397,,, +1230,USA,,WAIM,,Anderson (SC),34.531111,-82.613889,,1,,6991,292,127,,,,,,40675,,, +1230,USA,,WTCJ,,Tell City (IN),37.925833,-86.721944,,0.85,,6972,298,127,,,,,,43118,,, +1230,USA,en,WAMM,,Woodstock (VA),38.853056,-78.525,,0.25,,6394,293,127,,,,,,40710,,, +1230,USA,en,WEZO,,Augusta (GA),33.453889,-82.029722,,1,,7041,291,127,,,,,,42504,,, +1230,USA,en,WJUL,,Hiawassee (GA),34.942778,-83.774167,,1,,7031,293,127,,,,,,20016101,,, +1230,CAN,en,CBMN,,Malartic (QC),48.138889,-78.130278,,0.04,,5692,302,128,,,,,,20109168,,, +1230,USA,,KDIX,,Dickinson (ND),46.8725,-102.743889,,1,,7118,314,128,,,,,,38266,,, +1230,USA,,KGHS,,International Falls (MN),48.591389,-93.381667,,0.23,,6503,310,128,,,,,,38480,,, +1230,USA,,WAKI,,McMinnville (TN),35.666667,-85.776389,,1,,7097,295,128,,,,,,40685,,, +1230,USA,,WBLJ,,Dalton (GA),34.756389,-84.950556,,1,,7120,294,128,,,,,,40875,,, +1230,USA,,WCDS,,Glasgow (KY),37.004722,-85.940833,,0.75,,6999,296,128,,,,,,20000035,,, +1230,USA,,WHCO,,Sparta (IL),38.123611,-89.722222,,1,,7136,300,128,,,,,,41616,,, +1230,USA,,WHOP,,Hopkinsville (KY),36.881667,-87.512222,,1,,7105,297,128,,,,,,41679,,, +1230,USA,,WSOK,,Savannah (GA),32.072222,-81.076389,,1,,7092,289,128,,,,,,43041,,, +1230,ALS,,KVAK,,Valdez (AK),61.121111,-146.256944,,1,,7193,346,129,,,,920,,39609,,, +1230,USA,,KWIX,,Moberly (MO),39.403056,-92.4325,,1,,7190,302,129,,,,,,39716,,, +1230,USA,,WBHP,,Huntsville (AL),34.719167,-86.595,,1,,7225,295,129,,,,,,40853,,, +1230,USA,,WMLR,,Hohenwald (TN),35.522778,-87.544444,,1,,7217,296,129,,,,,,42347,,, +1230,USA,en,WAYX,,Waycross (GA),31.2125,-82.372222,,1,,7245,290,129,,,,,,43376,,, +1230,USA,en,WFOM,,Marietta (GA),33.927222,-84.502222,,1,,7159,293,129,,,,,,41423,,, +1230,PTR,,WNIK,,Arecibo (PR),18.455556,-66.74,,1,,7255,269,130,,0000-2400,1234567,987,,42468,,, +1230,USA,,KLWT,,Lebanon (MO),37.677778,-92.687778,,1,,7347,301,130,,,,,,38863,,, +1230,USA,,KTNC,,Falls City (NE),40.065833,-95.615278,,1,,7316,305,130,,,,,,39514,,, +1230,USA,,WAUD,,Auburn (AL),32.627778,-85.460278,,1,,7326,293,130,,,,,,40769,,, +1230,USA,,WSBB,,New Smyrna Beach (FL),29.0325,-80.9175,,1,,7330,287,130,,,,997,,42955,,, +1230,USA,,WXLI,,Dublin (GA),32.5225,-82.9,,0.7,,7172,291,130,,,,,,43477,,, +1230,USA,en,WTKN,,Corinth (MS),34.9575,-88.521389,,1,,7324,297,130,,,,,,41034,,, +1230,USA,en,WWWH,,Haleyville (AL),34.233333,-87.625556,,1,,7328,295,130,,,,,,41843,,, +1230,VEN,,YVOH R Valera,,Valera (tjl),9.316667,-70.616667,,10,,8307,266,130,,0900-0400,1234567,,,45407,,, +1230,ALS,en,KIFW,,Sitka (AK),57.0575,-135.333889,,1,,7385,338,131,,0000-2400,1234567,986,,38589,,, +1230,CAN,xx,CBQC,,Fort Providence (NT),61.672222,-117.639167,,0.099,,6437,332,131,,,,,,20109167,,, +1230,CLM,es,HJEH,,Bucaramanga (sat),7.133333,-73.133333,,15,,8669,266,131,,,,,,35901610,,, +1230,USA,,KBTM,,Jonesboro (AR),35.841389,-90.662222,,1,,7380,299,131,,,,,,38104,,, +1230,USA,,KHAS,,Hastings (NE),40.577778,-98.404722,,1,,7427,307,131,,,,,,38527,,, +1230,USA,,KWSN,,Sioux Falls (SD),43.457778,-96.670556,,0.44,,7091,308,131,,,,,,39756,,, +1230,USA,,KXLO,,Lewistown (MT),47.071111,-109.408889,,1,,7416,318,131,,,,,,39801,,, +1230,USA,,WGGG,,Gainesville (FL),29.682222,-82.413333,,1,,7374,288,131,,,,,,41507,,, +1230,USA,,WMAF,,Madison (FL),30.473056,-83.435833,,1,,7374,290,131,,,,,,42269,,, +1230,USA,,WTBC,,Tuscaloosa (AL),33.219167,-87.508611,,1,,7405,295,131,,,,,,43109,,, +1230,USA,,KHDN,,Hardin (MT),45.715278,-107.599722,,1,,7452,316,132,,,,,,38537,,, +1230,USA,,KZYM,,Joplin (MO),37.08,-94.552778,,1,,7506,302,132,,,,,,39687,,, +1230,USA,,WKWL,,Florala (AL),31.005556,-86.331389,,1,,7515,292,132,,,,,,42094,,, +1230,USA,,WSSO,,Starkville (MS),33.4525,-88.820833,,1,,7467,296,132,,,,,,43069,,, +1230,USA,en,WBZT,,West Palm Beach (FL),26.759167,-80.144444,,1,,7467,285,132,,,,,,40941,,, +1230,USA,en,WONN,,Lakeland (FL),28.039722,-81.960833,,1,,7480,287,132,,,,,,42607,,, +1230,CAN,en,CJNL,,Merritt (BC),50.108056,-120.769444,,1,,7610,327,133,,,,,,36194,,, +1230,USA,,KFPW,,Fort Smith (AR),35.391667,-94.331667,,1,,7636,301,133,,,,,,38422,,, +1230,USA,,KLCB,,Libby (MT),48.370556,-115.538611,,1,,7565,323,133,,,,,,38784,,, +1230,USA,,KOBB,,Bozeman (MT),45.659167,-111.056111,,1,,7617,318,133,,,,,,39047,,, +1230,USA,,KVOC,,Casper (WY),42.834722,-106.295556,,1,,7643,313,133,,,,,,39648,,, +1230,USA,,WBZT,,Pompano Beach (FL),26.255,-80.146944,,0.8,,7509,284,133,,,,,,40940,,, +1230,USA,,WRJX,,Jackson (AL),31.543889,-87.875,,1,,7567,294,133,,,,,,42863,,, +1230,USA,en,WDWR,,Pensacola (FL),30.4325,-87.218611,,1,,7619,292,133,,,,,,43582,,, +1230,B,pt,ZYI670 Rdio CBN,,Joo Pessoa (PB),-7.103772,-34.853922,,1,,7658,225,134,,,,,,36902025,,, +1230,CLM,es,HJLK R Calidad,,Cali (val),3.516667,-76.566667,,10,,9220,267,134,,,,998,,37549,,, +1230,HTI,,Voix de l'Ave Maria,,Cap-Hatien (nrd),19.716667,-72.2,,0.7,,7521,274,134,,,,,,35634,,, +1230,USA,,KSTC,,Sterling (CO),40.617778,-103.178056,,1,,7678,310,134,,,,,,39420,,, +1230,USA,,WBBZ,,Ponca City (OK),36.696111,-97.051944,,1,,7682,303,134,,,,,,40817,,, +1230,USA,en,KLIC,,Monroe (LA),32.487778,-92.090278,,1,,7748,297,134,,,,,,38813,,, +1230,USA,en,KSBN,,Spokane (WA),47.658333,-117.418889,,1,,7709,323,134,,,,,,39327,,, +1230,CUB,es,R Progreso,,unknown,21.7,-79.5,,1,,7848,281,135,,,,0,,31600127,,, +1230,USA,,KADA,,Ada (OK),34.785,-96.678889,,1,,7824,302,135,,,,,,37914,,, +1230,USA,,KORT,,Grangeville (ID),45.931111,-116.130556,,1,,7816,321,135,,,,999,,39101,,, +1230,USA,,KRXK,,Rexburg (ID),43.847222,-111.784167,,1,,7815,318,135,,,,,,39318,,, +1230,USA,,WBOK,,New Orleans (LA),29.988333,-90.045833,,1,,7834,294,135,,,,,,40891,,, +1230,USA,en,KOZI,,Chelan (WA),47.85,-120.005556,,1,,7794,325,135,,,,998,,39123,,, +1230,CLM,es,HJIL,,Medelln (ant),6.266667,-75.566667,,5,,8910,268,136,,,,32,,37493,,, +1230,USA,,KBCR,,Steamboat Springs (CO),40.488611,-106.849167,,1,,7879,312,136,,,,,,38014,,, +1230,USA,,KSLO,,Opelousas (LA),30.525,-92.106111,,1,,7916,296,136,,,,,,39383,,, +1230,USA,,KSST,,Sulphur Springs (TX),33.116667,-95.584722,,1,,7904,300,136,,,,,,39418,,, +1230,USA,ko,KWYZ,,Everett (WA),47.968333,-122.173333,,1,,7867,326,136,,,,994,,39776,,, +1230,B,pt,ZYK637 Rdio Difusora de Rancharia,,Rancharia (SP),-22.24955,-50.888169,,10,,9955,231,137,,,,,,36902027,,, +1230,B,pt,ZYK699 LBV-Boa Vontade AM,,So Paulo/Rua Jacofer 615 (SP),-23.509972,-46.678306,,10,,9858,227,137,,,,,,36902022,,, +1230,DOM,,HIPM R Moca,,Moca (esp),19.383333,-70.516667,,0.25,,7435,272,137,,1000-0300,1234567,,,37269,,, +1230,NCG,,YNMNG R Manantial,,Nueva Guinea (ats),11.683333,-84.45,,5,,9043,278,137,,1000-0300,1234567,,,52221,,, +1230,USA,,KBAR,,Burley (ID),42.534722,-113.815,,1,,8028,318,137,,,,,,38004,,, +1230,USA,,KGRO,,Pampa (TX),35.5775,-100.952222,,1,,7999,305,137,,,,,,38509,,, +1230,USA,,KKPC,,Pueblo (CO),38.277778,-104.654167,,1,,7962,309,137,,,,,,38750,,, +1230,CAN,xx,CBDC,,Mayo (YT),63.629167,-135.892778,,0.04,,6736,342,138,,,,,,20109159,,, +1230,USA,,KEXO,,Grand Junction (CO),39.094722,-108.578056,,1,,8091,313,138,,,,,,38352,,, +1230,USA,,KJQS,,Murray (UT),40.665833,-111.907222,,1,,8111,316,138,,,,,,38691,,, +1230,USA,,KSEY,,Seymour (TX),33.596944,-99.278333,,1,,8077,303,138,,,,,,39346,,, +1230,USA,,KWTX,,Waco (TX),31.528333,-97.120556,,1,,8132,300,138,,,,,,39762,,, +1230,USA,en,KVAS,,Astoria (OR),46.1875,-123.825,,1,,8101,326,138,,,,0,,38715,,, +1230,USA,es,KDYM,,Sunnyside (WA),46.330278,-120.036111,,0.7,,7940,324,138,,,,,,20000068,,, +1230,CLM,es,HJMJ RCN Antena 2,,Maicao (lag),11.366667,-72.216667,,1,,8237,268,139,,,,,,37567,,, +1230,USA,,KBNH,,Burns (OR),43.564722,-119.059444,,1,,8162,322,139,,,,0,,39918,,, +1230,USA,,KFUN,,Las Vegas (NM),35.596667,-105.205833,,1,,8230,308,139,,,,,,38438,,, +1230,USA,,KRYN,,Gresham (OR),45.484167,-122.411111,,0.92,,8114,325,139,,,,,,38945,,, +1230,USA,es,KCOH,,Houston (U) a (TX),29.757222,-95.338333,,1,,8179,298,139,,,,,,20016194,,, +1230,CLM,es,HJBR Oxgeno,,Tunja (boy),5.466667,-73.316667,,2,,8827,265,140,,,,985,,37355,,, +1230,EQA,,HCGT2,,Guayaquil (gua),-2.1,-79.916667,,5,,9941,266,140,,,,,,36961,,, +1230,USA,,KCUP,,Toledo (OR),44.629722,-123.943056,,1,,8256,326,140,,,,,,39157,,, +1230,USA,,KLVT,,Levelland (TX),33.598333,-102.385556,,1,,8253,305,140,,,,,,38859,,, +1230,B,pt,ZYH756 Rdio Daqui,,Goinia/Fazenda Botafogo (GO),-16.657869,-49.227633,,2.5,,9332,233,141,,,,,,36902029,,, +1230,B,pt,ZYJ776 Rdio Difusora Colmeia AM,,Porto Unio/Topo do Morro da Cruz (SC),-26.238611,-51.076667,,5,,10344,229,141,,,,,,36902024,,, +1230,USA,,KBCQ,,Roswell (NM),33.393611,-104.604444,,1,,8395,306,141,,,,,,39168,,, +1230,USA,,KERV,,Kerrville (TX),30.070556,-99.185278,,0.99,,8381,301,141,,,,,,38340,,, +1230,USA,,KHSN,,Coos Bay (OR),43.432778,-124.208333,,1,,8383,325,141,,,,,,38564,,, +1230,USA,,KOZA,,Odessa (TX),31.830556,-102.369167,,1,,8409,304,141,,,,,,39121,,, +1230,USA,,KSJK,i,Talent (OR),42.226944,-122.7425,,1,,8442,324,141,,,,,,39369,,, +1230,ARG,es,LW5 R.Libertador San Martn,,Tartagal (sa),-22.533333,-63.816667,,5,,10713,241,142,,,,,,40263,,, +1230,B,pt,Rdio Alecrim,,Caxias (MA),-4.838611,-43.327222,,0.25,,7872,234,142,,,,,,36902019,,, +1230,MEX,es,XEEX-AM R Frmula,,Culiacn (sin),24.832222,-107.404722,,2,,9329,303,142,,,,,,43984,,, +1230,USA,,KINO,,Winslow (AZ),35.0375,-110.716667,,1,,8569,312,142,,,,,,38621,,, +1230,USA,,KLXR,,Redding (CA),40.553889,-122.381389,,1,,8589,323,142,,,,,,38864,,, +1230,USA,,KRSY,,Alamogordo (NM),32.896111,-105.945,,1,,8513,307,142,,,,,,39299,,, +1230,USA,,KYVA,,Gallup (NM),35.533889,-108.705,,0.92,,8420,311,142,,,,,,39877,,, +1230,MEX,es,XEIZ-AM R Frmula 3,,Monterrey (nvl),25.670947,-100.185289,,1,,8830,299,143,,,,,,44192,,, +1230,USA,,KAAA,,Kingman (AZ),35.163611,-114.07,,1,,8726,314,143,,,,,,37899,,, +1230,USA,,KATO,,Safford (AZ),32.829444,-109.754444,,1,,8723,310,143,,,,,,37981,,, +1230,USA,,KBOV,,Bishop (CA),37.345556,-118.395278,,1,,8724,318,143,,,,,,38076,,, +1230,USA,,KDAC,,Fort Bragg (CA),39.443056,-123.78,,1,,8755,323,143,,,,,,38232,,, +1230,USA,,KLTO,,Del Rio (TX),29.429167,-100.904722,,0.86,,8538,301,143,,,,,,39493,,, +1230,USA,,KOTS,,Deming (NM),32.251389,-107.757778,,1,,8669,308,143,,,,,,39109,,, +1230,USA,,KOY,i,Phoenix (AZ),33.436111,-112.109444,,1,,8789,312,143,,,,,,39120,,, +1230,USA,,KQUE,,Houston (TX),29.859444,-95.558889,,0.41,,8183,298,143,,,,,,39209,,, +1230,USA,,KSIX,,Corpus Christi (TX),27.783889,-97.4575,,0.72,,8479,298,143,,,,,,39367,,, +1230,USA,,KSZL,,Barstow (CA),34.912222,-117.0275,,1,,8892,316,143,,,,,,39448,,, +1230,USA,,KWG,,Stockton (CA),37.959444,-121.257778,,0.9,,8793,321,143,,,,9715,,39708,,, +1230,USA,en,KLAV,,Las Vegas (NV),36.214444,-115.155,,1,,8680,315,143,,,,,,38775,,, +1230,USA,en,KSGG,,Reno (NV),39.511389,-119.714167,,0.82,,8576,320,143,,,,,,39145,,, +1230,USA,es,KCOH,,Houston (U) b (TX),29.859444,-95.558889,,0.41,,8183,298,143,,,,,,20016276,,, +1230,B,pt,ZYK297 Rdio Santiago,,Santiago (RS),-29.194444,-54.840278,,4,,10819,230,144,,,,,,36902014,,, +1230,CLM,,HJLF,,Acacias (met),4,-73.75,,1,,8985,265,144,,,,,,37545,,, +1230,CLM,es,HJTP R Colina,,Girardot (cun),4.316667,-74.866667,,1,,9034,266,144,,,,,,37648,,, +1230,EQA,,HCMV5,,Cuenca (azu),-2.85,-79,,2,,9945,265,144,,,,,,37034,,, +1230,GTM,,TGAT R Atlntida,,Puerto Barrios (izb),15.716667,-88.583333,,1,,8969,284,144,,1130-0500,1234567,,,40478,,, +1230,MEX,es,XETVH-AM La Morena,,Villahermosa (tab),17.988056,-92.9675,,1,,9058,288,144,,,,,,44871,,, +1230,SLV,,YSNB,,San Salvador (ssl),13.716667,-89.25,,1,,9188,283,144,,,,,,45301,,, +1230,USA,,KGEO,,Bakersfield (CA),35.348056,-119.009167,,1,,8943,318,144,,,,9997,,38466,,, +1230,USA,,KPRL,,Paso Robles (CA),35.654167,-120.681111,,1,,8990,319,144,,,,,,39161,,, +1230,USA,,KXO,,El Centro (CA),32.806667,-115.545556,,1,,9020,314,144,,,,,,39810,,, +1230,USA,,KYPA,,Los Angeles (DN) (CA),34.085556,-118.256667,,1,,9029,316,144,,,,,,20016293,,, +1230,USA,,KYPA,,Los Angeles (U) (CA),34.0375,-118.276389,,1,,9035,316,144,,,,,,39869,,, +1230,ARG,es,LT2 R 2,,Rosario (sf),-32.942386,-60.743422,,5,,11480,233,145,,0000-2400,1234567,998,,40171,,, +1230,GTM,,R Amrica,,Cuyotenango (sup),14.533333,-91.566667,,1,,9270,285,145,,,,,,52133,,, +1230,MEX,es,XELP-AM R Pa,,La Piedad de Cavadas (mic),20.332961,-102.025483,,1,,9420,297,145,,,,,,44318,,, +1230,EQA,,HCFG4,,Esmeraldas (esm),0.966667,-79.716667,,1,,9658,268,146,,,,,,36937,,, +1230,USA,,KELY,,Ely (NV),39.2625,-114.862778,,0.25,,8380,317,147,,,,,,38327,,, +1230,B,pt,ZYH532 Rdio Povo,,Ubat (BA),-14.2,-39.533333,,0.25,,8592,226,148,,,,,,36902017,,, +1230,B,pt,ZYJ816 Rdio Guararema,,So Jos (SC),-27.5725,-48.528056,,1,,10343,227,148,,,,,,36902028,,, +1230,MEX,es,XETCP-AM W R,,Tehuacn (pue),18.415611,-97.433489,,0.5,,9306,292,148,,,,,,44804,,, +1230,PRU,,OAX2T R Albujar,,Guadalupe (lal),-8.15,-79,,1,,10411,261,148,,1200-0400,1234567,,,40286,,, +1230,B,pt,ZYK716 Rdio Jequitib AM,,Campinas (SP),-22.987056,-47.0861,,0.5,,9828,228,149,,,,,,36902013,,, +1230,EQA,,HCRL6,,Saquisili (nap),-0.966667,-78.4,,0.5,,9738,265,149,,,,,,37090,,, +1230,B,pt,ZYK573 Rdio Cano Nova,,Capo Bonito (SP),-24.009461,-48.330744,,0.5,,9990,228,150,,,,,,36902016,,, +1230,B,pt,ZYL208 Rdio Correio da Serra AM,,Barbacena (MG),-21.191281,-43.769611,,0.25,,9488,226,151,,,,94,,36902023,,, +1230,MEX,es,XEDKN-AM R Frmula 2,,Guadalajara (jal),20.676786,-103.354406,,0.25,,9469,298,151,,,,,,45120,,, +1230,PRU,,OBX7J R Madre de Dios,,Puerto Maldonado (mdd),-12.616667,-69.166667,,0.5,,10155,251,151,,,,,,40409,,, +1230,ARG,,R Litoral,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,,,51838,,, +1230,B,pt,ZYL216 Rdio Sociedade Passos AM,,Passos (MG),-20.727569,-46.5863,,0.25,,9584,228,152,,,,,,36902031,,, +1230,EQA,,HCRI1 Centro Rfnico de Imbabura,,Ibarra (imb),0.35,-78.116667,,0.22,,9603,266,152,,,,92,,37086,,, +1230,PRG,,ZP21 R Oriental,,Caaguazu (cgz),-25.416667,-56.1,,0.5,,10535,234,152,,0800-0300,1234567,,,45516,,, +1230,PRU,,OBZ4Y R Selecciones,,Tarma (jun),-11.5,-75.666667,,0.5,,10482,257,152,,,,,,40427,,, +1230,ARG,,R La Benedicion,,General Pico (lp),-35.666667,-63.766667,,1,,11888,233,153,,,,,,51837,,, +1230,CAN,fr,CBPD-1,,Glacier Park (BC),51.3,-117.501111,,0.005,,7374,325,154,,,,,,20109161,,, +1230,B,pt,ZYK326 Rdio Nonoai,,Nonoai (RS),-27.341944,-52.78,,0.25,,10537,230,155,,,,,,36902020,,, +1230,B,pt,ZYK333 Rdio Prata AM,,Nova Prata (RS),-28.780833,-51.619444,,0.25,,10613,228,155,,,,,,36902021,,, +1230,B,pt,ZYK352 Rdio Encruzilhadense,,Encruzilhada do Sul (RS),-30.547778,-52.52,,0.25,,10826,228,156,,,,,,36902018,,, +1231,INS,,Boss R,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400110,,, +1232,AGL,pt,RNA Em. Prov. do Hula,,Lubango (hui),-14.942903,13.507722,,10,,7487,173,122,,0500-2300,1234567,977,,2486,,, +1233,CZE,cs,Rdio Dechovka,,Lbeznice/Bořanovice (PR),50.180761,14.465647,,10,,601,108,53,,0000-2400,1234567,2,,1900003,,, +1233,CYP,ar,Monte Carlo Doualiya,,Cape Greco (kyp-fam),34.958322,34.082583,,600,205,2903,120,58,,0300-1920,.....67,1,,1135,,, +1233,CYP,ar,Monte Carlo Doualiya,,Cape Greco (kyp-fam),34.958322,34.082583,,600,205,2903,120,58,,0330-1920,12345..,1,,1135,,, +1233,CYP,ar,Trans World R,,Cape Greco (kyp-fam),34.958322,34.082583,,600,205,2903,120,58,,0300-0330,12345..,1,,1135,,, +1233,CYP,ar,Trans World R,,Cape Greco (kyp-fam),34.958322,34.082583,,600,205,2903,120,58,,1925-2116,1234567,1,,1135,,, +1233,G,en,Absolute R,,Manningtree (EN-ESX),51.923611,1.086111,,0.5,,365,269,64,,0000-2400,1234567,9998,,1139,,, +1233,G,en,Absolute R,,Northampton/Kings Heath (EN-NHA),52.2635,-0.917139,,0.5,,500,275,65,,0000-2400,1234567,,,1140,,, +1233,CZE,cs,Rdio Dechovka,,Brno/Řečkovice (JM),49.25,16.583333,,0.5,,783,110,68,,0000-2400,1234567,,,1900005,,, +1233,G,en,Absolute R,,Sheffield/Broadfield Road (EN-SYK),53.359111,-1.479167,,0.3,,549,288,68,,0000-2400,1234567,0,,1138,,, +1233,G,en,Absolute R,,Reading/Manor Farm (EN-BER),51.432056,-0.979639,,0.16,,514,264,70,,0000-2400,1234567,,,1137,,, +1233,I,it,Media Veneto R,,Piove di Sacco (pd),45.3,12.033333,,0.4,,862,149,70,,????-????,1234567,9984,,4000035,,, +1233,G,en,Absolute R,,Swindon (EN-WLT),51.571556,-1.816083,,0.1,,568,267,73,,0000-2400,1234567,,,1136,,, +1233,GRC,el,Theofilos R,,Athnai (att-ath),38,23.75,,0.7,,2067,133,79,,0000-2400,1234567,,,3400046,,, +1233,IRN,fa,IRIB R Fars,,Abadeh (frs),31.14225,52.673389,,50,,4393,104,84,,,,,,1805,,, +1233,QAT,xx,QBS English/French,,Al-Khisah (dyn),25.404806,51.482472,,100,,4791,111,85,,0300-1000,1234567,,,1143,,, +1233,QAT,xx,QBS English/French,,Al-Khisah (dyn),25.404806,51.482472,,100,,4791,111,85,,1300-1900,1234567,,,1143,,, +1233,CHN,,Xinjiang RGD,,rmqi/XJTS904 (XJ),43.715833,87.595,,100,,5800,65,95,,0000-1600,1234567,,,50156,,, +1233,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,10,,5377,67,101,,2300-1800,1234567,,,36200416,,, +1233,KEN,,KBC English Service,,Marsabit (eas),2.391833,38.043278,,50,,6256,141,103,,0200-2110,1234567,,,2488,,, +1233,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Zhaosu/SARFT8113 (XJ),43.148333,81.119444,,1,,5433,69,111,,2300-1800,1234567,,,36200419,,, +1233,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,Xinyuan=Knes/SARFT8117 (XJ),43.46,83.263611,,1,,5548,68,112,,2300-1800,1234567,,,36200417,,, +1233,IND,,AIR Northeast,,Tura (ML),25.501806,90.190972,,20,,7387,78,118,,0025-0335,123456,,,50158,,, +1233,IND,,AIR Northeast,,Tura (ML),25.501806,90.190972,,20,,7387,78,118,,0025-0430,......7,,,50158,,, +1233,IND,,AIR Northeast,,Tura (ML),25.501806,90.190972,,20,,7387,78,118,,0630-1130,1234567,,,50158,,, +1233,IND,,AIR Northeast,,Tura (ML),25.501806,90.190972,,20,,7387,78,118,,1228-1545,1234567,,,50158,,, +1233,RUS,ru,Yumor FM/R Troika,,Petropavlovsk/Yelizovo (KM),53.189847,158.41225,,20,,8020,17,124,,0000-2400,1234567,,,50172,,, +1233,CHN,,Nantong RGD,,Nantong (JS),31.855833,121.010556,,25,,8729,52,129,,2130-1510,1234567,,,50155,,, +1233,CHN,,Hunan RGD Xinwen Guangbo,,Shaoyang (HN),27,111.266667,,10,,8608,62,132,,2100-1700,1234567,,,36200418,,, +1233,CHN,,Hunan RGD Xinwen Guangbo,,Yueyang/Kangwang (HN),29.133333,113.116667,,10,,8529,59,132,,2130-1700,1234567,,,50157,,, +1233,THA,th,Wor. Por. Thor. 7,,Udon Thani/Thahan Road (udt),17.375,102.809167,,10,,8917,74,133,,????-1415,1234567,,,50174,,, +1233,THA,th,Thor. Or. 01,,Bangkok/Phahonyothin Rd (bmp),13.911111,100.621389,,10,,9074,78,134,,2200-1805,1234567,9896,,50173,,, +1233,J,ja,JOGR RAB Aomori Hoso,,Aomori (toh-aom),40.785556,140.636667,,5,,8782,34,136,,0000-2400,1234567,4,,50162,,, +1233,J,ja,JOUR NBC Nagasaki Hoso,,Nagasaki (kyu-nag),32.720833,129.889444,,5,,9103,45,137,,0000-1600,......7,,,50164,,, +1233,J,ja,JOUR NBC Nagasaki Hoso,,Nagasaki (kyu-nag),32.720833,129.889444,,5,,9103,45,137,,0000-2400,123456,,,50164,,, +1233,J,ja,JOUR NBC Nagasaki Hoso,,Nagasaki (kyu-nag),32.720833,129.889444,,5,,9103,45,137,,2000-2400,......7,,,50164,,, +1233,PHL,,DYVS-AM FEBC,,Bacolod City (noc),10.620217,122.926367,,10,225,10800,62,140,,0300-1410,......7,1,,50170,,, +1233,PHL,,DYVS-AM FEBC,,Bacolod City (noc),10.620217,122.926367,,10,225,10800,62,140,,2050-1410,123456,1,,50170,,, +1233,PHL,,DWRV-AM R Veritas,,Bayombong (nvc),16.489339,121.150806,,5,,10151,61,141,,2100-1400,1234567,,,50171,,, +1233,KOR,,KBS 1 R,,Pyeongchang (gan),37.366667,128.383333,,1,,8591,44,142,,0000-2400,1234567,,,50167,,, +1233,INS,id,RRI Pro-1,,Pontianak (KB-ptk),0.042222,109.336944,,5,,10882,80,143,,0930-1515,1234567,,,50160,,, +1233,INS,id,RRI Pro-1,,Pontianak (KB-ptk),0.042222,109.336944,,5,,10882,80,143,,????-0015,1234567,,,50160,,, +1233,KOR,ko,HLQG KBS 1 R,,Yeongyang (gsb),36.660278,129.115556,,1,,8692,44,143,,0000-2400,1234567,,,50168,,, +1233,J,ja,WBS Wakayama Hoso,,Hikigawasusami,34.5,134,,0.3,,9124,41,149,,,,,,31400084,,, +1233,J,ja,NBC, Nagasaki Hoso,,Isahaya (kyu-nag),32.833333,130,,0.1,,9097,45,154,,0000-1600,......7,,,50163,, +1233,J,ja,NBC, Nagasaki Hoso,,Isahaya (kyu-nag),32.833333,130,,0.1,,9097,45,154,,0000-2400,123456,,,50163,, +1233,J,ja,NBC, Nagasaki Hoso,,Isahaya (kyu-nag),32.833333,130,,0.1,,9097,45,154,,2000-2400,......7,,,50163,, +1233,J,ja,NBC, Nagasaki Hoso,,Shimabara (kyu-nag),32.766667,130.366667,,0.1,,9121,45,154,,0000-1600,......7,,,50165,, +1233,J,ja,NBC, Nagasaki Hoso,,Shimabara (kyu-nag),32.766667,130.366667,,0.1,,9121,45,154,,0000-2400,123456,,,50165,, +1233,J,ja,NBC, Nagasaki Hoso,,Shimabara (kyu-nag),32.766667,130.366667,,0.1,,9121,45,154,,2000-2400,......7,,,50165,, +1233,J,ja,JOVL WBS Wakayama Hoso,,Tanabeshirahama (kns-wak),33.7,135.4,,0.1,,9264,41,155,,0000-1630,......7,,,50166,,, +1233,J,ja,JOVL WBS Wakayama Hoso,,Tanabeshirahama (kns-wak),33.7,135.4,,0.1,,9264,41,155,,0000-2400,123456,,,50166,,, +1233,J,ja,JOVL WBS Wakayama Hoso,,Tanabeshirahama (kns-wak),33.7,135.4,,0.1,,9264,41,155,,2000-2400,......7,,,50166,,, +1233,AUS,en,2NC ABC Newcastle,,Newcastle/Beresfield (NSW),-32.799878,151.662542,,10,,16501,66,158,,0000-2400,1234567,13,,50153,,, +1233,NZL,en,Solid Gold AM,,Wellington/Horokiwi (WGN),-41.210556,174.845556,,2,,18520,40,172,,,,,,50169,,, +1240,CAN,,CKIM,,Baie Verte (NL),49.956944,-56.178056,,1,,4245,292,99,,,,985,,36323,,, +1240,USA,en,WSYY,,Millinocket (ME),45.673333,-68.718611,,1,,5289,294,110,,,,,,43097,,, +1240,USA,,WFTN,,Franklin (NH),43.454444,-71.6425,,1,,5624,293,113,,,,,,41450,,, +1240,USA,,WSKI,,Montpelier (VT),44.244444,-72.546389,,1,,5625,294,113,,,,65,,43011,,, +1240,USA,en,WEZR,,Lewiston (ME),44.115278,-70.248889,,0.86,,5490,293,113,,,,,,41047,,, +1240,USA,,WHMQ,,Greenfield (MA),42.588889,-72.618333,,1,,5746,293,114,,,,,,41665,,, +1240,USA,,WNBZ,,Saranac Lake (NY),44.316111,-74.118889,,1,,5717,295,114,,,,,,42442,,, +1240,USA,,WOON,,Woonsocket (RI),42.016111,-71.491667,,1,,5715,292,114,,,,1,,42613,,, +1240,USA,en,WBUR,i,West Yarmouth (MA),41.635278,-70.235,,1,,5662,290,114,,,,,,40926,,, +1240,USA,,WWCO,,Waterbury (CT),41.566389,-73.056389,,1,,5847,292,115,,,,,,43364,,, +1240,USA,en,WPTR,,Schenectady (NY),42.810278,-73.984444,,1,,5816,294,115,,,,,,43303,,, +1240,USA,,WATN,,Watertown (NY),43.980278,-75.936667,,1,,5853,296,116,,,,,,40758,,, +1240,USA,,WGBB,,Freeport (NY),40.645556,-73.5775,,1,,5947,292,116,,,,,,41480,,, +1240,USA,,WVOS,,Liberty (NY),41.781667,-74.730278,,1,,5937,293,116,,,,,,43335,,, +1240,USA,,WBAX,,Wilkes-Barre (PA),41.253611,-75.906944,,1,,6049,294,117,,,,,,40806,,, +1240,USA,,WGVA,,Geneva (NY),42.860278,-77.016389,,1,,6000,296,117,,,,99,,41581,,, +1240,USA,,WIOV,,Reading (PA),40.324444,-75.941944,,1,,6120,293,118,,,,,,41786,,, +1240,USA,,WSNJ,,Bridgeton (NJ),39.458889,-75.203333,,1,,6138,292,118,,,,,,43035,,, +1240,CAN,en,CJCS,,Stratford (ON),43.343056,-81.010833,,1,,6207,299,119,,,,,,36158,,, +1240,USA,,WCBY,,Cheboygan (DN) (MI),45.658333,-84.49,,1,,6239,303,119,,,,,,20016297,,, +1240,USA,,WCBY,,Cheboygan (U) (MI),45.660556,-84.490556,,1,,6238,303,119,,,,,,40962,,, +1240,USA,,WJTN,,Jamestown (NY),42.104722,-79.2575,,1,,6193,296,119,,,,,,41935,,, +1240,USA,,WCEM,,Cambridge (MD),38.584167,-76.081667,,1,,6260,291,120,,,,,,40977,,, +1240,USA,,WJEJ,,Hagerstown (MD),39.666667,-77.725,,1,,6282,293,120,,,,,,41865,,, +1240,USA,,WRTA,,Altoona (PA),40.507222,-78.420833,,1,,6261,294,120,,,,,,42923,,, +1240,USA,,WATT,,Cadillac (DN) (MI),44.224167,-85.4,,1,,6399,302,121,,,,,,20016296,,, +1240,USA,,WATT,,Cadillac (U) (MI),44.224167,-85.401667,,1,,6400,302,121,,,,,,40762,,, +1240,USA,,WBBW,,Youngstown (OH),41.080556,-80.648333,,1,,6355,296,121,,,,,,40815,,, +1240,USA,,WCNC,,Elizabeth City (NC),36.310556,-76.232222,,1,,6443,289,121,,,,,,41045,,, +1240,USA,,WIAN,,Ishpeming (MI),46.504444,-87.671944,,1,,6355,305,121,,,,,,41713,,, +1240,USA,,WTPS,,Petersburg (VA),37.233611,-77.376667,,1,,6445,291,121,,,,,,42903,,, +1240,CAN,,CJAR,,The Pas (MB),53.812778,-101.276389,,1,,6473,319,122,,,,,,36141,,, +1240,USA,,WDNE,,Elkins (WV),38.923333,-79.8625,,1,,6472,294,122,,,,,,41188,,, +1240,USA,,WHIZ,,Zanesville (OH),39.955556,-81.983611,,0.96,,6523,296,122,,,,,,41646,,, +1240,USA,,WJIM,,Lansing (MI),42.72,-84.519722,,0.89,,6463,300,122,,,,,,41881,,, +1240,USA,,WOBT,,Rhinelander (WI),45.628333,-89.393889,,1,,6518,305,122,,,,,,42555,,, +1240,USA,,WOMT,,Manitowoc (WI),44.125278,-87.628056,,0.99,,6535,303,122,,,,,,42602,,, +1240,USA,,WTON,,Staunton (VA),38.141667,-79.0425,,1,,6481,293,122,,,,,,43192,,, +1240,USA,,WGMN,,Roanoke (VA),37.27,-79.970556,,1,,6607,293,123,,,,,,41533,,, +1240,USA,,WJNC,,Jacksonville (NC),34.748889,-77.414167,,1,,6641,289,123,,,,,,41904,,, +1240,USA,,WPJL,,Raleigh (NC),35.773611,-78.619167,,1,,6638,291,123,,,,,,42697,,, +1240,USA,,WVTS,,Charleston (WV),38.385556,-81.714167,,1,,6629,295,123,,,,,,20016000,,, +1240,USA,,WFTM,,Maysville (KY),38.636111,-83.760556,,1,,6735,296,124,,,,,,41449,,, +1240,USA,,WHFA,,Poynette (WI),43.360556,-89.402222,,1,,6696,304,124,,,,,,41627,,, +1240,USA,,WJMC,,Rice Lake (WI),45.508611,-91.773889,,1,,6659,307,124,,,,,,41896,,, +1240,USA,,WKEZ,,Bluefield (WV),37.265833,-81.188889,,1,,6684,293,124,,,,,,42000,,, +1240,USA,,WSBC,,Chicago (IL),41.981389,-87.772222,,1,,6711,301,124,,,,,,42956,,, +1240,USA,,KDLR,,Devils Lake (ND),48.111667,-98.845278,,1,,6821,313,125,,,,,,38279,,, +1240,USA,,KWLC,,Decorah (IA),43.309722,-91.808333,,1,,6836,305,125,,,,,,39726,,, +1240,USA,,WBEJ,,Elizabethton (TN),36.335278,-82.2175,,1,,6822,293,125,,,,,,40831,,, +1240,USA,,WHVN,,Charlotte (NC),35.2,-80.810833,,1,,6823,292,125,,,,,,41698,,, +1240,USA,,WJON,,St. Cloud (MN),45.56,-94.139167,,1,,6783,308,125,,,,,,41914,,, +1240,USA,,WLSC,,Loris (SC),34.034722,-78.882778,,1,,6793,289,125,,,,,,42231,,, +1240,USA,,WPKE,,Pikeville (KY),37.480833,-82.526389,,1,,6750,295,125,,,,,,42701,,, +1240,USA,,WSDR,,Sterling (IL),41.816389,-89.670278,,1,,6835,302,125,,,,,,42974,,, +1240,USA,,WWWC,,Wilkesboro (NC),36.15,-81.161667,,1,,6770,293,125,,,,,,43441,,, +1240,USA,,WDXY,,Sumter (SC),33.904444,-80.323611,,1,,6896,290,126,,,,,,41228,,, +1240,USA,,WHBU,,Anderson (IN),40.073611,-85.699444,,0.7,,6739,299,126,,,,,,41613,,, +1240,USA,,WKDK,,Newberry (SC),34.291667,-81.620833,,1,,6947,291,126,,,,,,41983,,, +1240,USA,,WLLV,,Louisville (KY),38.246944,-85.705278,,1,,6885,297,126,,,,,,42189,,, +1240,USA,,WMFG,,Hibbing (MN),47.408333,-92.951111,,0.49,,6573,309,126,,,,,,42310,,, +1240,USA,,WSQL,,Brevard (NC),35.223056,-82.705556,,1,,6941,293,126,,,,,,43058,,, +1240,USA,,KICD,,Spencer (IA),43.165833,-95.146111,,1,,7033,307,127,,,,,,38577,,, +1240,USA,,WIFA,,Knoxville (TN),35.954722,-83.951111,,1,,6961,294,127,,,,,,41736,,, +1240,USA,,WSFC,,Somerset (KY),37.1175,-84.611667,,0.79,,6908,296,127,,,,,,42985,,, +1240,USA,,WTAX,,Springfield (IL),39.793333,-89.605,,1,,6993,301,127,,,,,,43107,,, +1240,B,pt,ZYI774 Rdio Capibaribe AM 1240,,Recife (PE),-8.013889,-34.882222,,5,,7750,224,128,,,,3,,36902046,,, +1240,USA,,KBIZ,,Ottumwa (IA),41,-92.389722,,1,,7056,304,128,,,,,,38041,,, +1240,USA,,KDEC,,Decorah (IA),43.324444,-91.784722,,0.58,,6834,305,128,,,,,,20016010,,, +1240,USA,,WEBQ,,Harrisburg (IL),37.7175,-88.543611,,1,,7099,299,128,,,,,,41243,,, +1240,USA,,WGGA,,Gainesville (GA),34.316944,-83.829167,,1,,7085,293,128,,,,,,41506,,, +1240,USA,es,WNVL,,Nashville (TN),36.156389,-86.771111,,1,,7118,296,128,,,,,,42507,,, +1240,CAN,en,CBLO,,Mattawa (ON),46.313611,-78.721389,,0.04,,5854,300,129,,,,,,20109174,,, +1240,CAN,en,CKMK,,Mackenzie (BC),55.346667,-123.149722,,1,,7198,331,129,,,,,,36341,,, +1240,PTR,es,WALO,,Humacao (PR),18.146944,-65.813611,,1,,7218,268,129,,0000-2400,1234567,,,40698,,, +1240,USA,,KCCR,,Pierre (SD),44.350556,-100.318889,,1,,7209,311,129,,,,997,,38135,,, +1240,USA,,KFMO,,Flat River (MO),37.852778,-90.520278,,1,,7206,300,129,,,,,,38410,,, +1240,USA,,KLIK,,Jefferson City (MO),38.563889,-92.189167,,1,,7245,302,129,,,,,,38816,,, +1240,USA,,KLTZ,,Glasgow (MT),48.219167,-106.648333,,1,,7188,317,129,,,,,,38852,,, +1240,USA,,WDDO,,Macon (GA),32.838333,-83.650556,,1,,7194,292,129,,,,,,41139,,, +1240,USA,,WEKR,,Fayetteville (TN),35.157778,-86.590278,,1,,7189,295,129,,,,,,41278,,, +1240,USA,,WENK,,Union City (TN),36.424444,-89.038056,,1,,7234,298,129,,,,,,41307,,, +1240,USA,,WMGJ,,Gadsden (AL),34.001111,-86.03,,1,,7249,294,129,,,,,,42317,,, +1240,USA,,KFOR,,Lincoln (NE),40.82,-96.658056,,1,,7311,306,130,,,,,,38420,,, +1240,USA,,WBCF,,Florence (AL),34.783611,-87.704167,,1,,7288,296,130,,,,,,40821,,, +1240,USA,,WBHB,,Fitzgerald (GA),31.706389,-83.261111,,1,,7262,291,130,,,,,,40848,,, +1240,USA,,WLAG,,La Grange (GA),33.04,-85.024167,,1,,7264,293,130,,,,,,42119,,, +1240,USA,,WTWA,,Thomson (GA),33.472222,-82.517222,,0.6,,7070,291,130,,,,,,43234,,, +1240,USA,,WWNS,,Statesboro (GA),32.455278,-81.774444,,0.71,,7105,290,130,,,,,,43415,,, +1240,USA,en,WJLX,,Jasper (AL),33.815,-87.271944,,1,,7341,295,130,,,,,,42265,,, +1240,BAH,en,ZNS-2,,Nassau (npr),25.045583,-77.318278,,1,,7421,281,131,,0000-2400,1234567,,,45503,,, +1240,CAN,en,CBLN,,Nakina (ON),50.175278,-86.710278,,0.04,,6029,308,131,,,,,,20109173,,, +1240,USA,,WPAX,,Thomasville (GA),30.836111,-83.988611,,1,,7380,290,131,,,,,,42646,,, +1240,USA,,WWZQ,,Aberdeen (MS),33.808889,-88.5425,,1,,7420,296,131,,,,,,43451,,, +1240,USA,en,WMMB,,Melbourne (FL),28.077778,-80.598611,,1,,7388,286,131,,,,,,42349,,, +1240,USA,en,WZCC,,Cross City (FL),29.609722,-83.134167,,1,,7426,289,131,,,,,,43539,,, +1240,CAN,en,CBLE,,Beardmore (ON),49.596944,-87.959444,,0.04,,6138,308,132,,,,,,20109172,,, +1240,DOM,,R Maria de Altagracia,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,,,,,21100005,,, +1240,USA,,KASL,,Newcastle (WY),43.846389,-104.2125,,1,,7450,313,132,,,,,,37972,,, +1240,USA,,KJCR,,Billings (MT),45.758056,-108.497778,,1,,7490,317,132,,,,,,38956,,, +1240,USA,,KODY,,North Platte (NE),41.153889,-100.773056,,1,,7505,309,132,,,,,,39055,,, +1240,USA,,KTLO,,Mountain Home (AR),36.356389,-92.359167,,0.83,,7438,300,132,,,,,,39502,,, +1240,USA,,WBGC,,Chipley (FL),30.771944,-85.558611,,1,,7485,291,132,,,,,,40841,,, +1240,USA,,WKIQ,,Eustis (FL),28.838611,-81.696111,,0.79,,7397,287,132,,,,,,42020,,, +1240,USA,en,WFOY,,Saint Augustine (FL),29.85,-81.330556,,0.58,,7289,288,132,,,,2,,41427,,, +1240,HTI,,Hati Internationales,,Port-au-Prince (oue),18.516667,-72.316667,,1,,7631,273,133,,,,,,52118,,, +1240,USA,,KBLL,,Helena (MT),46.611944,-112.053611,,0.85,,7576,319,133,,,,,,38057,,, +1240,USA,,KWAK,,Stuttgart (AR),34.485556,-91.559722,,0.96,,7547,298,133,,,,,,39684,,, +1240,USA,,WAVN,,Southaven (MS),34.9825,-90.0125,,0.58,,7412,298,133,,,,,,40775,,, +1240,USA,,WEBJ,,Brewton (AL),31.109722,-87.06,,1,,7552,293,133,,,,,,41241,,, +1240,USA,,WNRA,,Eufaula (AL),31.908333,-85.164167,,0.6,,7366,292,133,,,,,,43259,,, +1240,USA,en,KCVL,,Colville (WA),48.520833,-117.907778,,1,,7648,324,133,,,,,,38225,,, +1240,USA,en,WFWN,,Fort Myers (FL),26.624444,-81.831111,,1,,7589,286,133,,,,,,41770,,, +1240,CAN,en,CJOR,,Osoyoos (BC),49.0825,-119.523611,,1,,7659,325,134,,,,,,36359,,, +1240,CLM,es,HJFG RCN,,Armenia/Calarc (qui),4.566667,-75.566667,,10,,9059,266,134,,,,,,37432,,, +1240,GTM,,TGK R Luz,,Ciudad de Guatemala (gut),14.65,-90.466667,,10,,9187,284,134,,1200-????,1234567,,,40495,,, +1240,USA,,KLYQ,,Hamilton (MT),46.256111,-114.1625,,1,,7701,320,134,,,,,,38867,,, +1240,USA,,KNEM,,Nevada (MO),37.860278,-94.381667,,0.5,,7430,302,134,,,,,,38983,,, +1240,USA,,KOKL,,Okmulgee (OK),35.608611,-95.971944,,1,,7713,302,134,,,,,,39076,,, +1240,USA,,KTHE,,Thermopolis (WY),43.632222,-108.226667,,1,,7666,315,134,,,,,,39481,,, +1240,USA,,KVRC,,Arkadelphia (AR),34.110833,-93.050278,,1,,7668,299,134,,,,,,39662,,, +1240,USA,,WGCM,,Gulfport (MS),30.429167,-89.019444,,1,,7732,294,134,,,,,,41488,,, +1240,USA,,WGRM,,Greenwood (MS),33.533889,-90.195,,0.72,,7544,297,134,,,,,,41558,,, +1240,USA,,WPBQ,,Flowood (MS),32.300833,-90.136667,,0.88,,7644,296,134,,,,,,42650,,, +1240,CAN,en,CFNI,,Port Hardy (BC),50.709444,-127.4375,,1,,7788,331,135,,,,3,,35987,,, +1240,USA,,KASO,,Minden (LA),32.630556,-93.282222,,1,,7808,298,135,,,,,,37974,,, +1240,USA,,KBEL,,Idabel (OK),33.881667,-94.819444,,1,,7793,300,135,,,,,,38019,,, +1240,USA,,KFH,,Wichita (KS),37.718333,-97.318056,,0.63,,7610,304,135,,,,,,38388,,, +1240,USA,,KIUL,,Garden City (KS),37.997778,-100.906944,,1,,7785,307,135,,,,,,38644,,, +1240,USA,,KRAL,,Rawlins (WY),41.781944,-107.261111,,1,,7784,313,135,,,,,,39219,,, +1240,USA,,WMIS,,Natchez (MS),31.520556,-91.385833,,1,,7787,296,135,,,,,,42332,,, +1240,CLM,es,HJGN,,Barrancabermeja (sat),7.066667,-73.816667,,5,,8721,267,136,,,,,,37458,,, +1240,CUB,es,R Rebelde,,Bolondrn (ma),22.785586,-81.475728,,1,,7888,283,136,,,,,,31600133,,, +1240,USA,,KADS,,Elk City (OK),35.380833,-99.406944,,1,,7929,304,136,,,,,,37916,,, +1240,USA,,KANE,,New Iberia (LA),30.0175,-91.836111,,1,,7942,295,136,,,,,,37949,,, +1240,USA,,KFBC,,Cheyenne (WY),41.121389,-104.839444,,0.7,,7720,311,136,,,,,,38377,,, +1240,USA,,KRDO,,Colorado Springs (CO),38.828611,-104.838889,,1,,7923,310,136,,,,,,39229,,, +1240,USA,,KSAM,,Whitefish (MT),48.395556,-114.319722,,0.4,,7512,322,136,,,,,,20016093,,, +1240,USA,,KVSO,,Ardmore (OK),34.181667,-97.146667,,1,,7903,302,136,,,,,,39672,,, +1240,USA,,KWIK,,Pocatello (ID),42.924167,-112.458611,,0.96,,7930,317,136,,,,998,,39712,,, +1240,USA,en,KDOK,,Kilgore (TX),32.417222,-94.854167,,1,,7920,299,136,,,,,,38026,,, +1240,USA,en,KXLE,,Ellensburg (WA),47.0025,-120.525278,,1,,7895,325,136,,,,,,39799,,, +1240,B,pt,ZYI388 Difusora Pantanal,,Campo Grande (MS),-20.480656,-54.568044,,10,,9989,235,137,,,,,,36902043,,, +1240,DOM,,HIAU R Revelacion,,San Felipe de Puerto Plata (ppl),19.766667,-70.666667,,0.25,,7412,273,137,,0900-0300,1234567,,,37212,,, +1240,USA,,KOFE,,St. Maries (ID),47.320556,-116.547222,,0.5,,7704,323,137,,,,,,39058,,, +1240,USA,,KTIX,,Pendleton (OR),45.685,-118.854722,,0.8,,7953,323,137,,,,994,,39492,,, +1240,USA,,KXIT,,Dalhart (TX),36.095833,-102.510556,,1,,8039,307,137,,,,,,39795,,, +1240,USA,en,KGY,,Olympia (WA),47.057778,-122.900833,,1,,7982,326,137,,,,0,,38523,,, +1240,PRU,es,OAU4V R Maria,,Chilca (lim),-12.533333,-76.733333,,12,,10644,257,138,,0000-2400,1234567,9996,,52657,,, +1240,USA,,KEVA,,Evanston (WY),41.258056,-111.014167,,0.88,,8014,315,138,,,,,,38347,,, +1240,USA,,KMHI,,Mountain Home (ID),43.150833,-115.707222,,1,,8056,320,138,,,,8,,38898,,, +1240,USA,,KSLV,,Monte Vista (CO),37.602778,-106.149444,,1,,8100,310,138,,,,,,39386,,, +1240,B,pt,ZYH654 Rdio So Francisco de Canind,,Canind (CE),-4.347056,-39.319739,,0.25,,7609,230,139,,,,,,36902049,,, +1240,DOM,,HICV R Barahona,,Santa Cruz de Barahona (bh),18.183333,-71.116667,,0.25,,7577,272,139,,0900-0400,1234567,,,37234,,, +1240,EQA,,HCGB1,,Santo Domingo de los Colorados (pic),-0.316667,-79.166667,,5,,9733,266,139,,,,,,36947,,, +1240,USA,,KCLV,,Clovis (DN) (NM),34.378056,-103.206111,,1,,8230,306,139,,,,,,20016277,,, +1240,USA,,KCLV,,Clovis (U) (NM),34.377778,-103.204722,,1,,8230,306,139,,,,,,38176,,, +1240,USA,,KDGO,,Durango (CO),37.305,-107.856944,,1,,8216,311,139,,,,,,38258,,, +1240,USA,,KEJO,,Corvallis (OR),44.593889,-123.225,,1,,8232,325,139,,,,,,38319,,, +1240,USA,,KRDM,,Redmond (OR),44.278056,-121.145556,,1,,8180,324,139,,,,,,39228,,, +1240,USA,,KXOX,,Sweetwater (TX),32.487778,-100.391944,,1,,8238,303,139,,,,,,39814,,, +1240,USA,,KXYL,,Brownwood (TX),31.705833,-98.995833,,1,,8226,301,139,,,,,,39834,,, +1240,PNR,es,HOM56 Ondas de Vida,,San Pablo (chq),8.4415,-82.498422,,3,,9193,274,140,,,,,,52338,,, +1240,USA,,KELK,,Elko (NV),40.843611,-115.749444,,1,,8273,318,140,,,,,,38324,,, +1240,USA,en,KDSK,,Los Ranchos de Albuquerque (NM),35.201667,-106.598889,,1,,8340,309,140,,,,,,37942,,, +1240,MEX,es,XERO-AM La Rancherita,,Aguascalientes (agu),21.887125,-102.333556,,2.5,,9298,298,141,,,,,,44690,,, +1240,USA,,KQEN,,Roseburg (OR),43.193056,-123.360833,,1,,8373,325,141,,,,,,39190,,, +1240,CLM,es,HJGO,,Saravena (ara),6.966667,-71.883333,,1,,8598,265,142,,,,,,35901616,,, +1240,MEX,es,XERPA-AM R Ranchito,,Morelia (mic),19.704444,-101.191667,,2,,9425,296,142,,,,,,44697,,, +1240,MEX,es,XEVM-AM Amor,,Piedras Negras (coa),28.665914,-100.573458,,1,,8587,301,142,,,,,,44972,,, +1240,PRU,es,OAU6D R Lder,,Arequipa (are),-16.4,-71.533333,,5,,10644,251,142,,,,4,,37000026,,, +1240,USA,,KAMQ,,Carlsbad (NM),32.395278,-104.246667,,1,,8464,306,142,,,,,,37946,,, +1240,USA,,KPOD,,Crescent City (CA),41.759722,-124.191111,,1,,8546,324,142,,,,,,39152,,, +1240,USA,,KSUE,,Susanville (CA),40.395833,-120.627778,,1,,8531,321,142,,,,,,39429,,, +1240,USA,,KVLF,,Alpine (TX),30.373611,-103.662222,,1,,8613,304,142,,,,,,39635,,, +1240,B,pt,ZYH463 Rdio AM 1240 Alagoinhas,,Alagoinhas (BA),-12.152831,-38.389333,,0.5,,8333,226,143,,,,,,36902048,,, +1240,B,pt,ZYK653 Rdio Clube Santista,,Santos (SP),-23.923683,-46.457883,,2.5,,9887,227,143,,,,,,36902047,,, +1240,MEX,es,XEBN-AM Rla,,Ciudad Delicias (chi),28.244639,-105.479697,,1,,8908,304,143,,,,,,43785,,, +1240,MEX,es,XECG-AM Romntica,,Nogales (son),31.313792,-110.935625,,1,,8925,310,143,,,,,,43834,,, +1240,MEX,es,XEWG-AM Cambio 1240,,Ciudad Jurez (chi),31.736667,-106.441667,,1,,8645,307,143,,,,,,45018,,, +1240,PNR,es,R Infantil,,Ciudad de Panam/Orillac (pnm),9.029106,-79.515272,,1,,8939,272,143,,,,,,35100008,,, +1240,USA,,KJAA,,Globe (AZ),33.380833,-110.756944,,1,,8724,311,143,,,,,,38654,,, +1240,USA,,KJOP,,Lemoore (CA),36.313056,-119.73,,1,,8884,319,143,,,,,,38687,,, +1240,USA,,KSOX,,Raymondville (TX),26.405278,-97.914444,,0.85,,8628,297,143,,,,,,39401,,, +1240,USA,,KTAM,,Bryan (TX),30.650278,-96.349167,,0.38,,8162,299,143,,,,,,39449,,, +1240,USA,en,KCVV,,Sacramento (CA),38.588056,-121.468056,,1,,8741,321,143,,,,33,,39409,,, +1240,CLM,es,HJJA R Buenaventura/R Maria de Colombia,,Buenaventura (val),3.816667,-77.066667,,1,,9227,267,144,,,,42,,37502,,, +1240,HND,,HRZC,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37888,,, +1240,MEX,es,XEBQ-AM,,Guaymas (son),27.890192,-110.914883,,1,,9241,308,144,,,,,,43788,,, +1240,MEX,es,XERD-AM La Comadre,,Pachuca (hid),20.123428,-98.735228,,1,,9236,294,144,,,,,,44662,,, +1240,NCG,es,R Restauracin,,Managua (mng),12.116667,-86.333333,,1,,9133,280,144,,,,,,52220,,, +1240,SLV,es,YSQN,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,31100006,,, +1240,URG,es,CW35 R Paysand,,Paysand (pa),-32.316667,-58.066667,,5,,11279,231,144,,0900-0400,1234567,,,36769,,, +1240,USA,,KCRT,,Trinidad (CO),37.145833,-104.511667,,0.25,,8055,309,144,,,,,,38206,,, +1240,USA,,KEZY,,San Bernardino (CA),34.081944,-117.304722,,1,,8984,316,144,,,,,,38368,,, +1240,USA,,KLOA,,Ridgecrest (CA),35.634444,-117.670833,,0.82,,8854,317,144,,,,,,38835,,, +1240,USA,,KNRY,,Monterey (CA),36.615556,-121.898333,,1,,8951,320,144,,,,17,,39015,,, +1240,USA,,KSMX,,Santa Maria (CA),34.950556,-120.490833,,1,,9049,318,144,,,,,,39387,,, +1240,B,pt,Rdio Verde,,Jaru (RO),-10.433333,-62.483333,,1,,9532,247,145,,,,,,36902037,,, +1240,CHL,,CB124 R Universidad de Santiago,,Santiago (RM),-33.55,-70.566667,,7.5,,12088,239,145,,1100-0400,1234567,37,,35727,,, +1240,CTR,,TILX R Columbia,,Nicoya (gnc),10.15,-85.45,,1,,9245,278,145,,,,,,52155,,, +1240,MEX,es,XECE-AM Ke Buena,,Oaxaca (oax),17.061667,-96.712778,,1,,9381,291,145,,,,,,43831,,, +1240,MEX,es,XESI-AM R Positiva,,Santiago Ixcuintla (nay),21.811328,-105.197064,,1,,9476,300,145,,,,,,44744,,, +1240,BOL,,CP16 R Los Andes,,Tarija (trj),-21.55,-64.333333,,2,,10655,242,146,,1000-2200,1234567,,,36658,,, +1240,EQA,,HCPA1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,37055,,, +1240,USA,,KNSN,,San Diego (CA),32.694167,-117.121389,,0.55,,9108,315,147,,,,,,39396,,, +1240,BOL,,R Achocalla,,Achocalla (lpz),-16.583333,-68.166667,,1,,10446,248,148,,,,,,52011,,, +1240,CAN,en,CBXK,,Pemberton (BC),50.323056,-122.798611,,0.04,,7664,328,148,,,,,,20100010,,, +1240,PRU,,OAU9B,,Chachapoyas (ama),-6.225672,-77.879,,1,,10166,262,148,,,,,,37000076,,, +1240,PRU,,R Pachatusn,,Sicuani (cus),-14.333333,-71.216667,,1,,10440,252,148,,,,998,,40411,,, +1240,PRU,,R Sechura,,Sechura (piu),-5.55,-80.816667,,1,,10305,264,148,,,,14,,52447,,, +1240,PRU,es,R Norandino,,Santiago de Chuco (lal),-8.15,-78.183333,,1,,10356,261,148,,,,98,,37000062,,, +1240,EQA,,HCLA5,,Riobamba (chi),-1.633333,-78.616667,,0.5,,9812,265,149,,,,,,37003,,, +1240,PRU,,OAU3L,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000086,,, +1240,B,pt,ZYL317 Rdio Itatiaia,,Pirapora (MG),-17.36795,-44.918528,,0.25,,9173,229,150,,,,,,36902040,,, +1240,CHL,,CA124 R Principal Chuquicamata,,Calama (TA),-20.25,-70.166667,,1,,10899,247,150,,0950-0500,1234567,,,35677,,, +1240,MEX,es,XES-AM W R,,Tampico (tam),22.238889,-97.865317,,0.25,,8993,295,150,,,,,,44725,,, +1240,B,pt,ZYL298 Rdio Sociedade Ubaense,,Ub (MG),-21.108722,-42.969817,,0.25,,9441,225,151,,,,,,36902036,,, +1240,ARG,,R Vida,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,51839,,, +1240,B,pt,ZYK621 ORC 1240-Orlndia Rdio Clube,,Orlndia (SP),-20.74735,-47.866581,,0.25,,9652,229,152,,,,,,36902045,,, +1240,B,pt,ZYK711 Rdio Vale do Rio Tiet,,Jos Bonifcio/Estrada da Torre (SP),-21.045083,-49.660714,,0.25,,9775,231,152,,,,,,36902033,,, +1240,B,pt,ZYL294 Rdio Trs Pontas,,Trs Pontas (MG),-21.361506,-45.490161,,0.25,,9590,227,152,,,,,,36902042,,, +1240,B,pt,ZYL303 Rdio Platina,,Ituiutaba (MG),-18.966667,-49.5,,0.25,,9567,232,152,,,,,,36902041,,, +1240,EQA,,HCRF3,,Zaruma (oro),-3.716667,-79.616667,,0.3,,10063,265,152,,,,,,37078,,, +1240,EQA,,HCRQ2,,Quevedo (gua),-1.05,-79.45,,0.25,,9817,266,152,,,,,,37107,,, +1240,ARG,,Onda Marina,,Mar del Plata (ba),-38,-57.566667,,1,,11773,227,153,,0000-2400,1234567,,,51840,,, +1240,B,pt,ZYJ215 Rdio Arapongas AM,,Arapongas (PR),-23.416389,-51.422222,,0.25,,10094,231,153,,,,,,36902038,,, +1240,B,pt,ZYK565 Rdio Municipalista de Botucatu,,Botucatu/Av Raphael Serra 135 (SP),-22.887125,-48.427122,,0.25,,9887,229,153,,,,,,36902051,,, +1240,ARG,es,LRI218 R.Univ. Nacional del Sur,,Baha Blanca (ba),-38.7,-62.266667,,1,,12077,230,154,,,,,,33000077,,, +1240,B,pt,ZYJ280 Rdio Matelandia,,Matelndia (PR),-25.241667,-53.99,,0.25,,10404,232,154,,,,,,36902034,,, +1240,B,pt,ZYJ774 So Jos AM,,Mafra (SC),-26.119444,-49.806944,,0.25,,10268,228,154,,,,,,36902044,,, +1240,B,pt,ZYJ810 Rdio Iracema,,Cunha Por (SC),-26.923611,-53.175,,0.25,,10519,230,155,,,,,,36902032,,, +1240,B,pt,ZYK200 Rdio Aparados da Serra,,Bom Jesus (RS),-28.669722,-50.440556,,0.25,,10543,227,155,,,,,,36902039,,, +1240,B,pt,ZYK251 Rdio Ibirub AM,,Ibirub (RS),-28.650278,-53.100556,,0.25,,10677,230,155,,,,,,36902050,,, +1240,B,pt,ZYK355 Rdio So Jernimo AM,,So Jernimo (RS),-29.955278,-51.707778,,0.25,,10729,228,155,,,,,,36902035,,, +1240,BOL,,CP180 R San Miguel,,Arani (cbb),-17.566667,-65.716667,,0.2,,10380,245,155,,1000-0300,1234567,,,36662,,, +1242,F,fr,France Info,,Marseille/Raltor (13),43.462222,5.323056,,150,,965,185,45,,0000-2400,1234567,7,,1144,,, +1242,G,en,Absolute R,,Boston/Kirton Drove (EN-LIN),52.986111,-0.124444,,2,,452,285,59,,0000-2400,1234567,0,,1149,,, +1242,G,en,Absolute R,,Stockton-on-Tees (EN-DUR),54.588667,-1.349778,,1,,584,301,63,,0000-2400,1234567,9994,,1148,,, +1242,G,en,Absolute R,,Stoke-on-Trent/Sideway (EN-SFS),52.98775,-2.185417,,0.5,,589,283,66,,0000-2400,1234567,0,,1146,,, +1242,G,en,Gold,,Hoo St Werburgh/Arqiva (EN-KNT),51.426111,0.571111,,0.32,,409,262,66,,0000-2400,1234567,9981,,1145,,, +1242,G,en,Absolute R,,Dundee/Greenside Scalp (SC-DDC),56.45,-2.923972,,0.5,,774,312,68,,0000-2400,1234567,,,1147,,, +1242,IRN,fa,IRIB R Iran,,Zanjan (znj),36.595472,48.686111,,50,,3708,101,77,,0024-2205,1234567,9825,,1806,,, +1242,GRC,el,R Apollon,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,????-????,1234567,,,3400049,,, +1242,OMA,ar,R Sultanate Oman,,As Seeb (msc),23.577056,58.24175,,50,225,5385,106,94,,0000-2400,1234567,9276,,1151,,, +1242,IND,,AIR North,,Varanasi A (UP),25.371847,83.023042,,100,,6915,84,106,,0025-0435,1234567,,,50184,,, +1242,IND,,AIR North,,Varanasi A (UP),25.371847,83.023042,,100,,6915,84,106,,0630-0930,1234567,,,50184,,, +1242,IND,,AIR North,,Varanasi A (UP),25.371847,83.023042,,100,,6915,84,106,,1130-1742,1234567,,,50184,,, +1242,VTN,en,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1100-1130,1234567,5,,1876,,, +1242,VTN,fr,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1200-1230,1234567,5,,1876,,, +1242,VTN,fr,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1300-1330,1234567,5,,1876,,, +1242,VTN,id,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1430-1500,1234567,5,,1876,,, +1242,VTN,ja,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2200-2230,1234567,5,,1876,,, +1242,VTN,km,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1230-1300,1234567,5,,1876,,, +1242,VTN,lo,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1330-1430,1234567,5,,1876,,, +1242,VTN,th,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1130-1200,1234567,5,,1876,,, +1242,VTN,vi,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,1500-1600,1234567,5,,1876,,, +1242,VTN,zh,Voice of Vietnam,,Cần Thơ/Thới Long (Station VN2) (cnt),10.119833,105.565833,,500,,9737,77,119,,2230-2300,1234567,5,,1876,,, +1242,CHN,,Yunnan RGD Nongcun,,Kunming/Longquan (YN),25.120656,102.752439,,50,,8242,69,122,,,,,,50182,,, +1242,J,ja,JOLF NBS Nippon Hoso,,Tokyo/Kisarazu (kan-tok),35.396944,139.987778,,100,,9292,36,125,,0000-2400,1234567,13,,50191,,, +1242,THA,th,Sor. Wor. Sor.,,Surat Thani (stn),9.115278,99.295,,50,,9405,82,128,,2130-1700,1234567,,,50199,,, +1242,KOR,ko,HLSB MBC,,Wonju/Heungyang-ri (gan),37.389444,127.982222,,10,,8570,44,132,,0000-2400,1234567,,,50192,,, +1242,THA,th,Thor. Por. Saam,,Phetchabun (pbn),16.8,101.233333,,10,,8863,76,133,,,,,,50198,,, +1242,PHL,,DWBL-AM,,Malanday/Caloong (ncr),14.722461,120.945356,,20,,10301,62,135,,2000-1600,1234567,495,,50195,,, +1242,CHN,,Huludao RGD,,Huludao (LN),40.716667,121,,1,,7925,47,136,,,,446,,50180,,, +1242,CHN,,Qianjiang RGD,,Qianjiang (HB),30.416667,112.85,,1,,8400,59,141,,????-1345,1234567,2,,50203,,, +1242,INS,id,RRI Pro-1,,Bogor (JB-kbo),-6.409722,106.830278,,10,,11281,86,141,,2300-1700,1234567,0,,50187,,, +1242,CHN,,Lu'an RGD,,Lu'an (AH),31.75,116.483333,,1,,8489,55,142,,,,,,36200415,,, +1242,CHN,,Macheng RGD Jiaoyu yu Yinyue,,Macheng (HU),31.183333,115.033333,,1,,8458,57,142,,2155-1430,1234567,,,50183,,, +1242,CHN,,Ji'an RGD,,Ji'an/JXTS841 (JX),27.1725,114.969167,,1,,8812,59,143,,,,,,50181,,, +1242,PHL,,DXSY-AM,,Ozamis City/Mariano Marcos (moc),8.133333,123.816667,,5,,11084,63,144,,,,,,50204,,, +1242,PHL,,DXZB-AM,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,,,,,50196,,, +1242,TWN,,Yen Sheng Kuangpo Tientai 2,,Wuho=Wuhe (HL),23.958056,121.603333,,1,,9487,56,145,,,,,,50111,,, +1242,AUS,,8TAB,,Darwin/Ludmilla (NT),-12.425117,130.850167,,2,,13410,69,155,,0000-2400,1234567,,,50176,,, +1242,AUS,,5AU,,Port Augusta/5AU Rd Mambray Creek (SA),-32.829361,137.936306,,2,,15606,80,162,,0000-2400,1234567,,,50177,,, +1242,AUS,en,3GV Gold 1242,,Sale/Myrtlebank (VIC),-38.059444,147.028472,,5,,16607,78,162,,0000-2400,1234567,,,50178,,, +1242,AUS,en,4AK,,Oakey (Toowoomba) (QLD),-27.458544,151.755606,,2,,16047,60,164,,0000-2400,1234567,9979,,50179,,, +1242,NZL,,1XX 1 Double X/Triple X FM,,Whakatane (BOP),-37.966667,176.883333,,2,,18277,29,171,,,,,,50194,,, +1242,NZL,,LiveSPORT,,Timaru/Fairview (CAN),-44.401167,171.143583,,1,,18601,59,175,,,,,,32500003,,, +1242,NZL,,1XX 1 Double X/Triple X FM,,Galatea/Murupara (BOP),-38.4,176.733333,,0.1,,18316,30,184,,,,,,50193,,, +1245,RUS,,K,b,Kirzhach,56.1875,38.875,,0.025,,2141,65,94,,,,,L1025 U1025 ,86818,,, +1250,USA,en,WGAM,,Manchester (NH),43.011111,-71.505278,,5,,5646,293,106,,,,999,,41968,,, +1250,USA,,WMTR,,Morristown (NJ),40.8125,-74.46,,7,,5991,292,108,,,,992,,42406,,, +1250,USA,,WARE,,Ware (MA),42.245278,-72.208056,,2.5,,5745,292,110,,,,,,40739,,, +1250,CAN,en,CJYE,,Oakville (ON),43.458056,-79.754722,,5,,6123,298,111,,,,1,,36252,,, +1250,CAN,,CHSM,,Steinbach (MB),49.504167,-96.981944,,10,,6614,313,113,,,,999,,36094,,, +1250,USA,,WDDZ,i,Pittsburgh (PA),40.397222,-79.961944,,5,,6365,295,114,,,,2,,41234,,, +1250,USA,,WDVA,,Danville (VA),36.581389,-79.4425,,5,,6627,292,116,,,,,,41219,,, +1250,USA,,WYKM,,Rupert (WV),37.993056,-80.684167,,5,,6595,294,116,,,,,,43522,,, +1250,USA,en,WSSP,,Milwaukee (WI),42.946111,-88.060833,,5,,6652,302,117,,,,999,,41301,,, +1250,USA,,WGHB,,Farmville (NC),35.604722,-77.574722,,2.5,,6585,290,119,,,,,,41513,,, +1250,USA,en,WHHQ,,Bay City (Bridgeport) (MI),43.341944,-83.899167,,1.1,,6379,300,120,,,,,,42459,,, +1250,USA,,KBRF,,Fergus Falls (MN),46.272778,-96.044722,,2.2,,6827,310,122,,,,998,,38083,,, +1250,USA,,WLQM,,Franklin (VA),36.6825,-76.928611,,1,,6459,290,122,,,,,,42219,,, +1250,USA,,WGL,,Fort Wayne (IN),41.021111,-85.162778,,1,,6633,299,123,,,,0,,41525,,, +1250,USA,en,WHNZ,,Tampa (FL),28.020556,-82.609444,,5.9,,7524,287,125,,,,9998,,41672,,, +1250,USA,es,KYYS,,Kansas City (KS),39.185,-94.457778,,3.7,,7324,303,125,,,,,,38720,,, +1250,USA,,WCHO,,Washington Court House (OH),39.549722,-83.452778,,0.5,,6645,297,126,,,,,,40998,,, +1250,VEN,,YVPZ Latina 12-50,,Puerto Ordaz (blv),8.316667,-62.666667,,10,,7857,258,126,,0900-0400,1234567,17,,45424,,, +1250,USA,,KZDC,,San Antonio (D) (TX),29.283611,-98.474444,,25,,8408,300,127,,,,,,20016204,,, +1250,USA,en,WTMA,,Charleston (SC),32.8225,-79.980278,,1,,6960,289,127,,,,,,43170,,, +1250,B,pt,ZYL367 Rdio Metropolitana r:Nossa Rdio,,Vespasiano (MG),-19.682994,-43.937711,,50,,9349,227,128,,,,2,,36902062,,, +1250,USA,en,KWSU,,Pullman (WA),46.696389,-117.245556,,5,,7791,323,128,,,,997,,39758,,, +1250,PTR,,WJIT,,Sabana (PR),18.426944,-66.338889,,1,,7230,268,129,,,,,,41882,,, +1250,USA,,KCFI,,Cedar Falls (D) (IA),42.544167,-92.488056,,0.5,,6936,305,129,,,,,,38285,,, +1250,USA,,KCFI,,Cedar Falls (N) (IA),42.544722,-92.487778,,0.5,,6936,305,129,,,,,,20012558,,, +1250,USA,en,KKDZ,i,Seattle (D) (WA),47.563611,-122.359722,,5,,7913,326,129,,,,,,20012560,,, +1250,USA,en,KKDZ,i,Seattle (N) (WA),47.673056,-122.168889,,5,,7895,326,129,,,,9973,,38713,,, +1250,USA,,KTFJ,,Dakota City (NE),42.4425,-96.261389,,0.7,,7153,307,130,,,,,,39472,,, +1250,USA,es,WKDL,,Warrenton (VA),38.731111,-77.778333,,0.125,,6356,293,130,,,,,,42736,,, +1250,VEN,,YVML R Cabimas,,Cabimas (zul),10.4,-71.466667,,10,,8270,267,130,,1000-0300,1234567,,,45382,,, +1250,USA,,KPZK,,Little Rock (AR),34.701389,-92.217222,,1.2,,7569,299,132,,,,,,39182,,, +1250,HTI,,4VS,,Hinche (cen),19.141667,-72.005556,,1,,7557,273,133,,,,,,35656,,, +1250,CLM,es,HJCA Capital R,,Mosquera/Estado Solido Sender (cun),4.677156,-74.244069,,10,,8960,265,134,,,,993,,37363,,, +1250,CUB,es,R Trinchera,,Imas (gu),20.073283,-74.646278,,1,,7658,276,134,,,,,,36602,,, +1250,USA,,KCUE,,Red Wing (MN),44.537222,-92.5225,,0.11,,6778,306,134,,,,,,38221,,, +1250,USA,,WLEM,,Emporium (PA),41.506111,-78.223889,,0.03,,6174,295,134,,,,,,42153,,, +1250,USA,,WYYC,,York (PA),39.998889,-76.695278,,0.033,,6192,293,134,,,,,,42802,,, +1250,B,pt,ZYH594 Rdio Educadora de Crateus,,Crates (CE),-5.159058,-40.673422,,1,,7760,231,135,,,,,,36902058,,, +1250,B,pt,ZYI218 Rdio Nova Estao,,Vitria (ES),-20.3,-40.316667,,10,,9235,223,135,,,,,,36902065,,, +1250,B,pt,ZYI915 Rdio So Jos dos Altos,,Altos (PI),-5.05,-42.45,,1,,7845,233,135,,,,,,36902061,,, +1250,USA,,WKDX,,Hamlet (NC),34.885,-79.680556,,0.08,,6776,291,136,,,,,,41990,,, +1250,DOM,,HIBC LV del Progreso,,San Francisco de Macors (dua),19.266667,-70.25,,0.25,,7426,272,137,,1000-0400,1234567,913,,37217,,, +1250,DOM,,HIRJ El Sonido del Este Digital,,La Romana (rom),18.416667,-68.966667,,0.25,,7411,270,137,,0930-0430,1234567,,,37291,,, +1250,HND,,HRQG,,San Pedro Sula (cor),15.5,-88.016667,,5,,8950,283,137,,,,,,37827,,, +1250,PNR,es,HOLY R Hogar,,El Coco (ccl),8.450047,-80.355222,,5,,9047,273,137,,0955-0300,1234567,3,,52339,,, +1250,USA,,WSPL,,Streator (IL),41.158333,-88.836944,,0.064,,6839,301,137,,,,,,43051,,, +1250,B,pt,ZYH669 Rdio Liberdade de Itarema,,Itarema (CE),-2.935342,-39.909306,,0.25,,7502,231,138,,,,,,36902059,,, +1250,USA,,KDEI,,Port Arthur (TX),29.951111,-93.879444,,1,,8073,297,138,,,,,,38251,,, +1250,USA,,WLRT,,Nicholasville (KY),37.905,-84.556944,,0.059,,6842,296,138,,,,,,43373,,, +1250,USA,,WRKQ,,Madisonville (TN),35.508056,-84.379167,,0.084,,7023,294,138,,,,,,42872,,, +1250,USA,,WZOB,,Fort Payne (AL),34.439722,-85.753333,,0.122,,7195,294,138,,,,,,43584,,, +1250,B,pt,ZYJ925 Rdio Esperana,,Estncia/Praa Leo XIII (SE),-11.279167,-37.445278,,1,,8200,225,139,,,,,,36902068,,, +1250,B,pt,ZYL282 R.Difusora AM Pocos de Caldas,,Poos de Caldas (MG),-21.789039,-46.536536,,5,,9685,228,139,,,,7,,36902063,,, +1250,USA,,KIKC,,Forsyth (MT),46.258333,-106.689167,,0.132,,7361,316,139,,,,,,38601,,, +1250,USA,,KLLK,,Willits (CA),39.399444,-123.322222,,2.5,,8740,323,139,,,,9933,,38827,,, +1250,USA,,WBRM,,Marion (NC),35.685556,-82.034722,,0.051,,6862,293,139,,,,,,40902,,, +1250,USA,,WLCK,,Scottsville (KY),36.740278,-86.175278,,0.076,,7035,296,139,,,,,,42142,,, +1250,USA,,WRAY,,Princeton (IN),38.356944,-87.590278,,0.059,,6990,298,139,,,,,,42816,,, +1250,USA,,WYTH,,Madison (GA),33.579167,-83.477778,,0.079,,7123,292,139,,,,,,43552,,, +1250,USA,en,WNQA283,,Salisbury (MD),38.37765,-75.594342,,0.01,,6244,291,139,,,,,,20010641,,, +1250,B,pt,ZYI701 Rdio Sociedade de Soledade,,Soledade/Fazenda So Jose (PB),-7.072778,-36.363611,,0.25,,7728,226,140,,,,,,36902054,,, +1250,NCG,,YNCR Cadena Radial Samaritano,,Condega (esl),13.35,-86.4,,2.5,,9029,280,140,,1000-0400,1234567,,,52219,,, +1250,USA,,KZDC,,San Antonio (N) (TX),29.496944,-98.415833,,0.92,,8386,300,141,,,,,,39884,,, +1250,USA,,WKBL,,Covington (TN),35.586667,-89.639167,,0.08,,7340,298,141,,,,,,41964,,, +1250,USA,,WNTT,,Tazewell (TN),36.446944,-83.571944,,0.034,,6898,294,141,,,,,,42525,,, +1250,USA,,WQHL,,Live Oak (FL),30.287222,-82.965556,,0.083,,7359,289,141,,,,,,42772,,, +1250,CLM,es,HJEM,,Corozal (suc),9.3,-75.266667,,1,,8625,269,142,,,,,,37415,,, +1250,CLM,es,HJHS W R,,Ccuta (nsa),7.783333,-72.533333,,1,,8571,266,142,,,,22,,37479,,, +1250,CLM,es,HJOK Emisoras ABC,,Barranquilla (atl),10.816667,-74.783333,,1,,8460,270,142,,,,1,,37611,,, +1250,EQA,,HCCJ2,,Guayaquil (gua),-2.2,-79.9,,3,,9949,266,142,,,,,,36878,,, +1250,EQA,,HCEM1,,Tulcan (car),0.833333,-77.7,,2,,9532,266,142,,,,,,36917,,, +1250,EQA,,HCHB2 R Tricolor,,Guayaquil (gua),-2.166667,-79.9,,3,,9946,266,142,,,,995,,52460,,, +1250,PRU,es,OAX4L R Miraflores,,Miraflores (lim),-12.083333,-77.033333,,5,,10624,257,142,,0000-2400,1234567,999,,40308,,, +1250,USA,,WRBZ,,Wetumpka (AL),32.485,-86.206944,,0.08,,7384,293,142,,,,,,40736,,, +1250,CHN,zh,Quzhou RGD Jiaotong Yinyue Pinl,,Quzhou (ZJ),28.981778,118.833222,,1,,8871,55,143,,2200-1700,1234567,,,36201247,,, +1250,CLM,es,HJFV R Viva,,Pasto (nar),1.616667,-77.116667,,1.5,,9424,266,143,,,,94,,2169,,, +1250,HND,,HRJU,,Juticalpa (ola),14.683333,-86.266667,,1,,8904,281,143,,,,,,37772,,, +1250,USA,,KBTC,,Houston (MO),37.329167,-91.898611,,0.051,,7330,300,143,,,,,,38103,,, +1250,USA,,WPMA432,,Lodi (CA),38.133333,-121.266667,,1,,8776,321,143,,,,9891,,51942,,, +1250,USA,,WSRA,,Albany (GA),31.616667,-84.158889,,0.053,,7326,291,143,,,,,,43060,,, +1250,EQA,,HCMY1,,Santo Domingo de los Colorados (pic),-0.216667,-79.166667,,1.5,,9725,266,144,,,,,,37035,,, +1250,GTM,,LV Cristiana,,Totonicapn (tot),14.9,-91.333333,,1,,9222,285,144,,,,,,52135,,, +1250,GTM,,TGPY R Payak,,Esquipulas (cqm),14.566667,-89.333333,,1,,9119,283,144,,1100-0300,1234567,,,52134,,, +1250,HND,,HRIO2,,Danli (elp),14.016667,-86.566667,,1,,8982,281,144,,,,,,37771,,, +1250,MEX,es,XEAT-AM Nueva Imagen,,Hidalgo del Parral (chi),26.919328,-105.635406,,1,,9037,303,144,,,,,,43736,,, +1250,MEX,es,XETF-AM R.Frmula Veracruz,,Veracruz (vcz),19.152106,-96.157897,,1,,9160,292,144,,,,,,44815,,, +1250,USA,,KZER,,Santa Barbara (CA),34.418333,-119.818056,,1,,9070,318,144,,,,9959,,39886,,, +1250,MEX,,XEJX-AM R Frmula,,Quertaro (que),20.599286,-100.441217,,1,,9299,296,145,,,,,,44232,,, +1250,MEX,es,XEDK-AM,,Guadalajara (jal),20.641853,-103.340219,,1,,9472,298,145,,,,996,,43912,,, +1250,CHL,,CD125 R Armonia,,Valdivia (LL),-39.766667,-73.216667,,10,,12768,236,146,,1100-0400,1234567,,,35862,,, +1250,MEX,es,XESC-AM La Pantera,,Sabinas (coa),27.855375,-101.107144,,0.5,,8690,301,146,,,,,,44732,,, +1250,MEX,es,XESJ-AM R Saltillo,,Saltillo (coa),25.461447,-100.983428,,0.5,,8896,299,146,,,,,,44748,,, +1250,USA,,KIKZ,,Seminole (TX),32.699444,-102.636667,,0.25,,8347,305,146,,,,,,38606,,, +1250,USA,,KNEU,,Roosevelt (UT),40.286944,-109.958889,,0.129,,8051,314,146,,,,99086,,38985,,, +1250,USA,,KOFC,,Fayetteville (AR),36.040556,-94.275556,,0.045,,7577,301,146,,,,,,39057,,, +1250,USA,,KZHN,,Paris (TX),33.7225,-95.547222,,0.095,,7849,300,146,,,,,,39142,,, +1250,MEX,es,XEDL-AM,,Villa de Seris (son),29.049906,-110.967044,,0.5,,9136,308,147,,,,,,43917,,, +1250,PRU,,OAX8P R Pucallapa,,Pucallpa (uca),-8.383333,-74.533333,,1,,10131,258,147,,,,,,40358,,, +1250,B,pt,ZYJ500 Rdio Litoral AM,,Casimiro de Abreu (RJ),-22.475583,-42.183442,,0.5,,9538,224,148,,,,,,36902069,,, +1250,MEX,es,XEZT-AM R Tribuna,,Puebla (pue),19.049722,-98.210833,,0.5,,9299,293,148,,,,,,45157,,, +1250,B,pt,ZYK702 Rdio Cano Nova,,Caapava/Rua do Porto 1555 (SP),-23.080433,-45.712006,,0.5,,9769,227,149,,,,,,36902064,,, +1250,BOL,,R Uncia,,Uncia (pts),-18.45,-66.616667,,1,,10516,246,149,,,,,,52013,,, +1250,EQA,,HCRC6,,Ambato (tun),-1.25,-78.616667,,0.5,,9778,265,149,,,,,,37073,,, +1250,USA,en,WPMW409,,Cape Girardeau (MO),37.310964,-89.577689,,0.01,,7194,299,149,,,,,,20010640,,, +1250,B,pt,ZYH748 Rdio Difusora So Patricio,,Ceres (GO),-15.304006,-49.591258,,0.25,,9222,234,150,,,,,,36902053,,, +1250,B,pt,ZYK272 Rdio Tupanci,,Pelotas (RS),-31.761944,-52.286389,,1,,10929,227,150,,,,,,36902055,,, +1250,USA,,KHIL,,Willcox (AZ),32.266667,-109.832778,,0.196,,8779,309,150,,,,,,38541,,, +1250,B,pt,ZYJ211 Rdio Difusora A Pioneira,,Guarapuava (PR),-25.351389,-51.422222,,0.5,,10278,230,151,,,,,,36902067,,, +1250,MEX,es,XETEJ-AM R Mexiquense,,Tejupilco (mex),18.897833,-100.144806,,0.25,,9433,294,151,,,,,,44810,,, +1250,URG,,CW125 R Bella Union,,Bella Union (ar),-30.266667,-57.6,,1,,11066,232,151,,0900-0300,1234567,,,36744,,, +1250,ARG,es,AM 1250 R Estirpe Nacional,,San Justo (ba),-34.666667,-58.55,,1,,11520,230,152,,0000-2400,1234567,,,51841,,, +1250,B,pt,ZYK233 Rdio Difusora AM Caxiense,,Caxias do Sul (RS),-29.127778,-51.173056,,0.5,,10624,228,152,,,,,,36902070,,, +1250,PRG,,ZP3 R Libertad,,Asuncin (asu),-25.266667,-57.616667,,0.5,,10605,235,152,,0900-0600,1234567,18,,45526,,, +1250,URG,es,CX36 R Centenario,,Montevideo (mo),-34.858056,-56.131111,,1,,11412,228,152,,0000-2400,1234567,,,36814,,, +1250,B,pt,ZYI394 Rdio Difusora de Trs Lagoas,,Trs Lagoas (MS),-20.820086,-51.724339,,0.25,,9864,233,153,,,,,,36902057,,, +1250,B,pt,ZYJ233 Rdio Paranava AM,,Paranava (PR),-23.075,-52.423333,,0.25,,10115,232,153,,,,,,36902056,,, +1250,CHL,,CA125 R Santa Maria de Guadalupe,,La Serena (CO),-29.916667,-71.25,,1,,11815,242,153,,,,,,35679,,, +1250,B,pt,ZYJ313 Rdio Danbio Azul,,Santa Izabel do Oeste (PR),-25.815,-53.475556,,0.25,,10430,231,154,,,,,,36902071,,, +1250,B,pt,ZYJ766 Rdio Cultura de Joinville,,Joinville (SC),-26.275833,-48.776944,,0.25,,10230,227,154,,,,,,36902052,,, +1250,BOL,,CP26 R Amboro,,Santa Cruz (scz),-17.766667,-63.166667,,0.25,,10242,243,154,,0845-0200,123456,,,36686,,, +1250,BOL,,CP26 R Amboro,,Santa Cruz (scz),-17.766667,-63.166667,,0.25,,10242,243,154,,1000-2400,......7,,,36686,,, +1250,USA,,KCFM,,Florence (OR),44.029167,-124.096944,,0.037,,8321,326,154,,,,,,38212,,, +1250,USA,,KHOT,,Madera (CA),36.966111,-120.035,,0.081,,8835,319,154,,,,11,,38554,,, +1250,B,pt,ZYK361 Rdifuso guas Claras,,Catupe (RS),-28.256944,-54.02,,0.25,,10688,230,155,,,,,,36902060,,, +1250,BOL,,CP17 R Sararenda,,Camiri (scz),-20.05,-63.516667,,0.25,,10470,242,155,,1000-0400,1234567,,,36665,,, +1250,BOL,,CP54 R La Plata LV de la Capital,,Sucre (cqs),-19.016667,-65.283333,,0.25,,10484,244,155,,1000-0200,1234567,,,36705,,, +1250,BOL,,CP65 R Oruro,,Oruro (oru),-17.966667,-67.116667,,0.25,,10504,246,155,,1300-0400,1234567,,,36710,,, +1250,USA,,KNWH,,Twenty Nine Palm (CA),34.130833,-116.37,,0.077,,8935,315,155,,,,,,39214,,, +1250,BOL,,CP47 R Frontera,,Cobija (pdo),-11.033333,-68.733333,,0.1,,9985,252,157,,1000-1800,1234567,,,52012,,, +1250,USA,en,WPHG284,,Duncanville (TX),32.648194,-96.906111,,0.01,,8022,301,157,,,,,,20010644,,, +1250,USA,en,WQCE324,,Oroville (CA),39.624444,-121.377639,,0.01,,8637,321,162,,,,,,20010643,,, +1250,USA,en,WPMA702,,Lodi (CA),38.111017,-121.294358,,0.01,,8780,321,163,,,,,,20010642,,, +1251,HOL,nl,NPO R 5,,Hulsberg/Emmaberg (lim),50.875081,5.846614,,5,,143,196,49,,0000-2400,1234567,9979,,1159,,, +1251,HNG,hu,MR Dank Rdi,,Szombathely (Vas),47.200583,16.662444,,25,,917,122,52,,0325-2315,1234567,0,,1160,,, +1251,HNG,hu,MR Dank Rdi,,Nyregyhza (SSB),47.936806,21.757833,,25,,1188,107,55,,0325-2315,1234567,0,,1161,,, +1251,LBY,ar,R Libya,,Tarabulus=Tripoli (tbl),32.830722,12.99415,,200,,2208,164,56,,1115-1315,1234567,0,,1163,,, +1251,LBY,ar,R Libya,,Tarabulus=Tripoli (tbl),32.830722,12.99415,,200,,2208,164,56,,1745-0500,1234567,0,,1163,,, +1251,G,en,Gold,,Great Barton (EN-SFK),52.283472,0.764694,,0.76,,385,275,62,,0000-2400,1234567,9997,,1155,,, +1251,IRL,en,Atlantic R,,Ballyvary (MO),53.894444,-9.15,,1,,1058,287,68,,,,,,4100024,,, +1251,POR,pt,Rdio Sim,,Chaves (vrl),41.7398,-7.448028,,1,,1556,228,73,,0000-2400,1234567,,,1164,,, +1251,IRN,fa,IRIB R Iran,,Kiashahr (gln),37.412672,50.001292,,100,005 185,3738,98,74,,0000-2400,1234567,17,,1807,,, +1251,POR,pt,Rdio Sim,,Castelo Branco (cab),39.859189,-7.495886,,1,,1729,223,74,,0000-2400,1234567,,,1167,,, +1251,RUS,ru,R Rossii,,Cherkessk/RTPS (KC),44.263747,42.108889,,7,,2754,94,76,,0100-2100,1234567,,,46944,,, +1251,RUS,ru,R Rossii,,Urup (KC),43.844444,41.159722,,1,,2714,96,84,,0100-2100,1234567,,,6700153,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0200-0230,1234567,11,,50240,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0930-1000,1234567,11,,50240,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1400-1500,1234567,11,,50240,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1800-1830,1234567,11,,50240,,, +1251,TJK,dr,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1830-1900,1234.67,11,,50240,,, +1251,TJK,en,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1630-1700,.....67,11,,50240,,, +1251,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0700-0900,1234567,11,,50240,,, +1251,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1700-1800,1234567,11,,50240,,, +1251,TJK,fa,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0230-0330,1234567,11,,50240,,, +1251,TJK,fa,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,0330-0400,.....67,11,,50240,,, +1251,TJK,ru,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1630-1700,12345..,11,,50240,,, +1251,TJK,tg,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1000-1030,1234567,11,,50240,,, +1251,TJK,tg,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1830-1900,....5..,11,,50240,,, +1251,TJK,uz,BBC WS,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1300-1400,1234567,11,,50240,,, +1251,TJK,zh,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,150,,4943,82,85,,1100-1300,1234567,11,,50240,,, +1251,G,,Raw R Warwick (LPAM),,Warwick (EN-WAR),52.283333,-1.566667,,0.001,,544,275,92,,,,,,1157,,, +1251,G,,The Source (LPAM),,Warrington (EN-CHE),53.4,-2.616667,,0.001,,624,287,93,,,,0,,1158,,, +1251,PAK,,PBC R Pakistan/NBS News,,Loralai (blc),30.375925,68.613761,,10,,5532,91,102,,0200-0400,1234567,,,50233,,, +1251,PAK,,PBC R Pakistan/NBS News,,Loralai (blc),30.375925,68.613761,,10,,5532,91,102,,1145-1615,1234567,,,50233,,, +1251,CHN,bo,Qinghai RGD/CNR 11,,Xining/QHTS566 (QH),36.656389,101.579611,,200,230,7198,62,106,,1025-1520,1234567,,,50226,,, +1251,CHN,bo,Qinghai RGD/CNR 11,,Xining/QHTS566 (QH),36.656389,101.579611,,200,230,7198,62,106,,2225-0600,1234567,,,50226,,, +1251,IND,,AIR West,,Sangli (MH),16.927942,74.478889,,20,,7039,97,114,,0020-0430,1234567,9915,,50228,,, +1251,IND,,AIR West,,Sangli (MH),16.927942,74.478889,,20,,7039,97,114,,0700-0930,1234567,9915,,50228,,, +1251,IND,,AIR West,,Sangli (MH),16.927942,74.478889,,20,,7039,97,114,,1200-1740,1234567,9915,,50228,,, +1251,CHN,,Shijiazhuang RGD Nongcun,,Shijiazhuang (HB),37.833333,114.666667,,25,,7851,53,122,,,,,,36200402,,, +1251,CHN,,Hanzhong RGD News,,Hanzhong (SA),33.154944,106.962472,,10,,7815,61,125,,,,,,36200409,,, +1251,CHN,,Puyang RGD News,,Puyang (HE),35.7,115,,10,,8056,54,128,,,,,,50221,,, +1251,CHN,,Shandong Guangbo Dilu Pindao,,Zibo/Nanding Zhen (SD),36.761111,118.036667,,10,,8127,51,128,,,,,,36200359,,, +1251,CHN,,Luohe RGD,,Luohe (HE),33.533333,114.016667,,10,,8192,56,129,,0915-1400,1234567,,,50219,,, +1251,CHN,,Luohe RGD,,Luohe (HE),33.533333,114.016667,,10,,8192,56,129,,2130-0730,1234567,,,50219,,, +1251,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Yakeshi/NMTS785 (NM),49.3105,120.807556,,1,,7154,41,129,,2150-1605,1234567,,,36201243,,, +1251,CHN,,Qingdao JGD,,Qingdao/SDTS135 (SD),36.121111,120.350556,,10,,8306,50,130,,,,,,50222,,, +1251,CHN,,Changsha RGD Music,,Changsha/HNTS203 (HN),28.211544,113.051339,,10,,8607,60,132,,,,,,36200411,,, +1251,CHN,,Huai'an JGD,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,10,,8471,52,132,,2000-1600,1234567,,,36200408,,, +1251,CHN,,Shandong Guangbo Dilu Pindao,,Dezhou (SD),37.4575,116.313333,,3,,7973,52,132,,,,,,36200410,,, +1251,CHN,mn,Nei Menggu RGD Mongyol,,Jalaid=Zalaite/NMTS775 (NM),46.716667,122.9,,1,,7478,42,132,,,,,,36201241,,, +1251,CHN,,Hubei RGD Jingji Guangbo,,Jingmen (HU),31.033333,112.2,,5,,8308,59,133,,,,,,50215,,, +1251,CHN,,Wuxi JGD,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,10,,8709,53,133,,,,,,50224,,, +1251,KOR,ko,HLKT CBS,,Daegu (dae),35.908694,128.572194,,10,,8737,44,133,,2000-1600,1234567,,,50231,,, +1251,THA,th,Jor. Sor. 3,,Roi Et/Fort Prasoet Songkhram (ret),16.075,103.655556,,10,,9086,74,134,,,,,,50239,,, +1251,THA,th,Thor. Or. 06,,Bangkok/Nimitmai Road (bmp),13.835783,100.739903,,10,,9089,78,134,,0000-2400,1234567,48,,50238,,, +1251,CHN,en,CRI Easy FM,,Beijing (BJ),39.933333,116.383333,,1,,7759,50,135,,0000-2400,1234567,,,50209,,, +1251,INS,id,RRI Pro-1,,Banda Aceh (AC-bac),5.428822,95.420331,,10,,9464,87,135,,2200-1700,1234567,,,50229,,, +1251,CHN,,Hebei RGD Jingji Guangbo,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,,,,,36200403,,, +1251,TWN,,Han Sheng Kuangpo Tientai,,Kaohsiung (KHS),22.623056,120.344167,,10,,9538,58,136,,2100-1600,1234567,,,52265,,, +1251,CHN,,Anshan RGD Gushi,,Anshan (LN),41.116667,122.966667,,1,,7985,45,137,,,,,,50208,,, +1251,CHN,,Anyang RGD Traffic,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,2200-1400,1234567,,,36200413,,, +1251,CHN,,Jiaozuo RGD Play Service,,Jiaozuo (HE),35.192222,113.262778,,1,,8004,55,137,,,,,,36200406,,, +1251,CHN,,Yima RGD,,Yima (HE),34.755833,111.872222,,1,,7963,57,137,,,,,,36200400,,, +1251,CHN,zh,CNR 1,,Hutou Zhen (HL),45.986944,133.651667,,1,,8004,36,137,,2025-1805,1234567,,,36201106,,, +1251,CHN,,Shandong Guangbo Dilu Pindao,,Jinan/Huangtai (SD),36.700278,117.089444,,1,,8081,52,138,,,,,,50214,,, +1251,CHN,,Henan RGD Xinwen Guangbo,,unknown (HE),34,114,,1,,8150,56,139,,????-1700,1234567,,,50207,,, +1251,CHN,,Longkou JGD,,Longkou (SD),37.659389,120.328333,,1,,8166,49,139,,,,,,50218,,, +1251,CHN,,Weifang JGD,,Weifang (SD),36.716667,119.1,,1,,8187,50,139,,,,,,36200401,,, +1251,CHN,,Yunnan RGD Xinwen Guangbo,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200405,,, +1251,CHN,,Yuxi RGD Green FM,,Yuxi/YNTS693 (YN),24.402556,102.513944,,1,,8288,70,140,,2200-????,1234567,,,50117,,, +1251,CHN,,Lianyungang JGD,,Lianyungang (JS),34.666194,119.153972,,1,,8374,52,141,,2200-1410,1234567,,,50216,,, +1251,CHN,,Yunnan RGD Yinyue-Binfen 97,,Kaiyuan (YN),23.70675,103.269139,,1,,8397,70,141,,,,,,36201242,,, +1251,CHN,,Anhui RGD Xinwen Zonghe Guangbo,,Ma'anshan (AH),31.680722,118.53,,1,,8610,54,142,,2150-1500,1234567,,,50220,,, +1251,CHN,,Hubei RGD Jingji Guangbo,,Huanggang (HU),30.45,114.8,,1,,8510,57,142,,,,,,36200407,,, +1251,CHN,,Hubei RGD Jingji Guangbo,,Xianning (HU),29.866667,114.283333,,1,,8532,58,142,,,,,,50225,,, +1251,CHN,,Nanjing RGD Tiyu Pinl,,Nanjing (JS),31.883333,118.666667,,1,,8599,54,142,,,,,,36200404,,, +1251,CHN,,Yancheng RGD Traffic,,Yancheng (JS),33.4,120.133333,,1,,8541,52,142,,,,,,36200358,,, +1251,CHN,zh,Anhui RGD Xiqu Guangbo,,Chaohu (AH),31.5888,117.830833,,1,,8579,54,142,,,,,,36201240,,, +1251,CHN,,Huzhou RGD Dushi Wenyi,,Huzhou (ZJ),30.838611,120.221111,,1,,8779,53,143,,2130-1605,1234567,,,50213,,, +1251,CHN,,Zhejiang RGD Lyou zhi Sheng,,Jinhua (ZJ),29.108056,119.586111,,1,,8902,55,143,,,,,,36200252,,, +1251,CHN,zh,Shaoxing JGD,,Shaoxing (ZJ),30.060556,120.601389,,1,,8871,53,143,,????-1600,1234567,9,,50244,,, +1251,CHN,,Guangxi JGD Caifu Guangbo,,Beihai (GX),21.483333,109.1,,1,,8961,67,144,,,,,,36200412,,, +1251,PHL,,DXPH-AM,,Prosperidad (ags),8.583333,125.883333,,5,,11167,61,144,,,,,,50235,,, +1251,PHL,,DZMS-AM,,Sorsogon City (sor),12.966667,124,,2.5,,10646,60,145,,,,,,50236,,, +1251,PHL,,DYRG-AM IBC R,,Kalibo (akl),11.716667,122.35,,1,,10664,62,149,,,,,,50234,,, +1251,INS,id,R Refa Suara Abadi,,Tangerang (BT-ktg),-6.229167,106.715556,,1,,11257,86,151,,,,,,50887,,, +1251,INS,id,R Edukasi,,Yogyakarta (YO-yog),-7.783333,110.366667,,1,,11641,84,152,,0300-1200,1234567,,,35400075,,, +1251,AUS,,6NAN,,Narrogin (WA),-32.961111,117.216667,,2,,14207,97,158,,,,,,50206,,, +1251,AUS,,2DU,,Dubbo/Eulomogo (NSW),-32.271083,148.674639,,2,,16269,69,165,,0000-2400,1234567,29,,50205,,, +1251,NZL,,1XG NZs Rhema,,Auckland/Henderson (AUK),-36.844383,174.631153,,5,,18083,33,167,,0000-2400,1234567,,,50232,,, +1254,CHN,,Xiaoshan RGD,,Xiaoshan (ZJ),30.166667,120.266667,,1,,8843,54,143,,,,,,50243,,, +1255,UKR,,LU,b,Lugansk (LU),48.4375,39.291667,,0.025,,2351,87,96,,,,,U1020 5.7s,85891,,, +1255,UKR,,LG,b,Lugansk (LU),48.395833,39.458333,,0.025,,2364,87,97,,,,,,85890,,, +1255,RUS,,DX,b,Maksim Gorkiy,54.3125,56.791667,,0.025,,3292,65,106,,,,448,L1012 U1909 ,85889,,, +1259,AGL,pt,RNA Em. Prov. do Kwanza-Norte,,N'dalatando (cno),-9.294989,14.908344,,10,,6876,170,116,,0400-2200,1234567,,,2491,,, +1260,E,es,SER,,Murcia (MUR-MU),37.9872,-1.162722,,25,,1677,204,60,,0000-2400,1234567,993,,1172,,, +1260,G,en,Absolute R,,Lydd/Romney Marsh (EN-KNT),50.950972,0.915694,,1,,401,253,61,,0000-2400,1234567,11,,1178,,, +1260,G,en,Gold,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,1.6,,614,267,61,,0000-2400,1234567,,,1176,,, +1260,GRC,el,ERA Net/ERA 2/ERA Sport,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,0500-0459,.....67,845,,1554,,, +1260,GRC,el,ERA Net/ERA 2/ERA Sport,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,1100-1300,12345..,845,,1554,,, +1260,GRC,el,ERA Net/ERA 2/ERA Sport,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,1600-0500,12345..,845,,1554,,, +1260,GRC,el,ERA Notiou Aigaiou,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,0500-1100,12345..,845,,1554,,, +1260,GRC,el,ERA Notiou Aigaiou,,Rhodos (seg-dod),36.413611,28.228389,,100,,2444,127,61,,1300-1600,12345..,845,,1554,,, +1260,CVA,ar,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0310-0330,1234567,9998,,1170,,, +1260,CVA,ar,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0500-0600,1234567,9998,,1170,,, +1260,CVA,ar,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1630-1700,1234567,9998,,1170,,, +1260,CVA,be,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0420-0440,1234567,9998,,1170,,, +1260,CVA,be,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1800-1820,1234567,9998,,1170,,, +1260,CVA,bg,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1920-1940,1234567,9998,,1170,,, +1260,CVA,eo,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,2020-2030,..34...,9998,,1170,,, +1260,CVA,es,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0100-0145,1234567,9998,,1170,,, +1260,CVA,es,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1130-1215,123456,9998,,1170,,, +1260,CVA,es,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1400-1415,1234567,9998,,1170,,, +1260,CVA,es,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1500-1530,1...5..,9998,,1170,,, +1260,CVA,fi,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0600-0620,1....6.,9998,,1170,,, +1260,CVA,fi,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1940-2000,....56.,9998,,1170,,, +1260,CVA,lt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0440-0500,1234567,9998,,1170,,, +1260,CVA,lt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1820-1840,1234567,9998,,1170,,, +1260,CVA,lv,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1840-1900,1234567,9998,,1170,,, +1260,CVA,no,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0600-0620,.2.....,9998,,1170,,, +1260,CVA,no,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1940-2000,1......,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0030-0100,1234567,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0900-0930,123456,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1000-1030,123456,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1415-1430,1234567,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1500-1530,...4...,9998,,1170,,, +1260,CVA,pt,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1600-1630,1234567,9998,,1170,,, +1260,CVA,ro,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1900-1920,1234567,9998,,1170,,, +1260,CVA,ru,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0330-0400,1234567,9998,,1170,,, +1260,CVA,ru,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1330-1400,1234567,9998,,1170,,, +1260,CVA,ru,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,2100-2130,1234567,9998,,1170,,, +1260,CVA,sq,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0600-0620,1234567,9998,,1170,,, +1260,CVA,sq,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,2000-2020,1234567,9998,,1170,,, +1260,CVA,sv,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0600-0620,..345.7,9998,,1170,,, +1260,CVA,sv,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1730-1800,1234567,9998,,1170,,, +1260,CVA,sv,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,1940-2000,.234.6.,9998,,1170,,, +1260,CVA,tl,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,2020-2030,....5..,9998,,1170,,, +1260,CVA,uk,R Vaticana,,Citta del Vaticano (cva),41.903889,12.45,,5,,1223,156,62,,0400-0420,1234567,9998,,1170,,, +1260,G,en,Absolute R,,Guildford/Fox Corner (EN-SUR),51.277389,-0.625444,,0.5,,493,262,65,,0000-2400,1234567,,,1177,,, +1260,G,en,BBC R 5 Live,,Scarborough/Row Bow (EN-NYK),54.26725,-0.441889,,0.5,,515,300,65,,0000-0530,12345..,0,,1173,,, +1260,G,en,BBC R 5 Live,,Scarborough/Row Bow (EN-NYK),54.26725,-0.441889,,0.5,,515,300,65,,0000-0600,.....67,0,,1173,,, +1260,G,en,BBC R York,,Scarborough/Row Bow (EN-NYK),54.26725,-0.441889,,0.5,,515,300,65,,0530-2400,12345..,0,,1173,,, +1260,G,en,BBC R York,,Scarborough/Row Bow (EN-NYK),54.26725,-0.441889,,0.5,,515,300,65,,0600-2400,.....67,0,,1173,,, +1260,G,en,Gold,,Farndon (EN-CHE),53.092417,-2.889222,,0.64,,637,284,65,,0000-2400,1234567,12,,1175,,, +1260,G,,Sabras R,,Leicester/Freemen's Common (EN-LEI),52.619,-1.131472,,0.29,,515,279,68,,0000-2400,1234567,997,,1174,,, +1260,E,es,SER,,Algeciras/Carretera a Cdiz (AND-CA),36.091819,-5.47895,,5,,2012,212,70,,0000-2400,1234567,65,,1171,,, +1260,ARS,ar,BSKSA Idha'atu-i Riyadh,,Dammam (shy),26.461783,50.041697,,500,,4608,111,76,,0000-2400,1234567,33,,52551,,, +1260,PAK,,PBC R Pakistan,,Peshawar (kpk),34,71.833333,,400,,5474,85,86,,1200-1813,1234567,1,,31500052,,, +1260,PAK,,PBC R Pakistan,,Peshawar (kpk),34,71.833333,,400,,5474,85,86,,2300-0200,1234567,1,,31500052,,, +1260,IRN,fa,IRIB R Esfahan,,Khur (esf),33.757017,54.720669,,10,,4327,99,90,,0000-2400,1234567,7,,1180,,, +1260,CAN,en,CKHJ,,Fredericton (NB),45.997778,-66.693611,,10,,5141,293,98,,,,0,,36124,,, +1260,RUS,ru,Dorozhnoye R,,Nizhneudinsk (IR),54.945467,99.129483,,10,,5671,48,104,,,,,,6700154,,, +1260,USA,,WMKI,i,Boston (MA),42.274444,-71.042222,,5,,5669,292,107,,,,0,,42340,,, +1260,USA,en,WSKO,,Syracuse (NY),43.025556,-76.065278,,5,,5929,295,109,,,,1,,42511,,, +1260,CAN,en,CFRN,,Edmonton (AB),53.451944,-113.682222,,50,,7029,325,110,,,,4,,36006,,, +1260,USA,en,WRIE,,Erie (PA),42.055,-80.04,,5,,6245,297,112,,,,,,42853,,, +1260,USA,,WWRC,,Washington (DC),38.999722,-77.0575,,5,,6290,292,113,,,,,,43425,,, +1260,USA,,WFJS,,Trenton (NJ),40.265556,-74.7575,,2.5,,6050,292,114,,,,,,40925,,, +1260,USA,,WWMK,,Cleveland (OH),41.286111,-81.642778,,5,,6400,297,114,,,,,,43407,,, +1260,IND,,AIR West,,Ambikapur (MP),23.180583,83.060944,,20,,7098,85,115,,0025-0430,1234567,,,50254,,, +1260,IND,,AIR West,,Ambikapur (MP),23.180583,83.060944,,20,,7098,85,115,,0630-0930,1234567,,,50254,,, +1260,IND,,AIR West,,Ambikapur (MP),23.180583,83.060944,,20,,7098,85,115,,1200-1740,1234567,,,50254,,, +1260,USA,,WCHV,,Charlottesville (VA),38.114444,-78.455,,2.5,,6446,292,117,,,,,,41004,,, +1260,USA,,WXCE,,Amery (WI),45.256944,-92.366667,,5,,6712,307,117,,,,,,43456,,, +1260,USA,,WNDE,,Indianapolis (IN),39.865,-86.061944,,5,,6778,299,118,,,,,,42450,,, +1260,USA,,WBNR,,Beacon (NY),41.492222,-73.978611,,0.4,,5910,293,120,,,,,,40886,,, +1260,USA,es,WSUA,,Miami (FL),25.772778,-80.421111,,20,,7567,284,120,,,,9999,,43079,,, +1260,USA,,WSDZ,,Belleville (IL),38.458611,-89.961389,,5,,7123,300,121,,,,,,42978,,, +1260,USA,,WUFE,,Baxley (GA),31.799167,-82.411944,,5,,7200,290,122,,,,,,43253,,, +1260,PTR,,WI3XSO r:WISO,,Aguadilla (PR),18.4025,-67.146389,,4.8,,7287,269,123,,1000-0300,1234567,,,41708,,, +1260,USA,,WPNW,,Zeeland (MI),42.732222,-86.101667,,1,,6555,301,123,,,,,,42721,,, +1260,USA,,KSGF,,Springfield (MO),37.264167,-93.317778,,5,,7419,301,124,,,,,,39351,,, +1260,USA,en,WNXT,,Portsmouth (OH),38.810556,-82.989167,,1,,6674,296,124,,,,,,42540,,, +1260,THA,th,Sor. Wor. Thor. (R Thailand),,Chiang Rai/Rim Kok (cri),19.938222,99.848972,,50,,8500,75,125,,2200-1700,1234567,3,,50277,,, +1260,USA,,WWIS,,Black River Falls (WI),44.319722,-90.891944,,0.58,,6705,305,126,,,,,,43388,,, +1260,PTR,,WISO,,Ponce (PR),17.984167,-66.636667,,2,,7288,268,127,,1000-0300,1234567,,,41808,,, +1260,USA,,KROX,,Crookston (MN),47.788889,-96.594444,,0.5,,6733,311,127,,,,,,39285,,, +1260,USA,,WCLC,,Jamestown (TN),36.436111,-84.928333,,1,,6982,295,127,,,,,,41022,,, +1260,USA,,WKXR,,Asheboro (NC),35.723889,-79.805833,,0.5,,6718,291,127,,,,,,42101,,, +1260,VEN,es,YVRM RRB,,Caracas (dcf),10.540678,-66.928044,,10,,7949,263,127,,,,0,,45446,,, +1260,CHN,,Liaoning RGD Xinwen Tai,,Fengcheng/LNTS313 (LN),40.45,124.066667,,10,,8099,45,128,,,,,,36201038,,, +1260,CHN,zh,CNR 2,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,1,,7117,74,128,,2100-1602,1234567,,,36201037,,, +1260,MOZ,pt,Emisso Provincial do Niassa,,Lichinga (nia),-13.316919,35.249211,,5,,7786,150,128,,0250-2000,1234567,9967,,2494,,, +1260,PTR,,WI2XSO r:WISO,,Mayaguez (PR),18.154722,-67.152222,,1.8,,7309,269,128,,1000-0300,1234567,,,41707,,, +1260,CHN,,Shannan RGD,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,,,,,50251,,, +1260,CHN,,Xizang RGD,,Tsetang (XZ),29.266667,91.766667,,1,,7181,74,129,,,,,,50252,,, +1260,B,pt,ZYH242 Rdio Gazeta de Alagoas,,Macei/Rua Dr. Oswaldo Cruz (AL),-9.617967,-35.761169,,5,,7953,224,130,,,,,,36902079,,, +1260,CHN,zh,CNR 1,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,0000-0030,1234567,,,36200399,,, +1260,CHN,zh,CNR 1,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,1030-1100,1234567,,,36200399,,, +1260,CHN,zh,CNR 1,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2230-2300,1234567,,,36200399,,, +1260,CHN,zh,CNR 1,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,0000-0030,1234567,,,36201171,,, +1260,CHN,zh,CNR 1,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,1030-1100,1234567,,,36201171,,, +1260,CHN,zh,CNR 1,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2230-2300,1234567,,,36201171,,, +1260,CHN,zh,CNR 2,,Tongxin (NX),36.98575,105.904472,,1,,7428,59,131,,2100-1602,1234567,,,36201172,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,0030-0600,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,0600-1000,1.34567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,1000-1030,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,1100-1800,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2000-2230,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Bom=Bomi (XZ),29.833333,95.75,,1,,7395,71,131,,2300-2400,1234567,,,36200399,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,0030-0600,1234567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,0600-1000,1.34567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,1000-1030,1234567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,1100-1800,1234567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2000-2230,1234567,,,36201171,,, +1260,CHN,zh,Xizang RGD Hanyu,,Chamdo=Qamdo (XZ),31.121444,97.190472,,1,,7381,69,131,,2300-2400,1234567,,,36201171,,, +1260,CUB,es,R Progreso,,Media Luna (gr),20.150067,-77.433781,,2.5,,7840,278,131,,,,3,,31600068,,, +1260,J,ja,JOIR TBC Tohoku Hoso,,Sendai (toh-miy),38.234722,140.966667,,20,,9049,34,131,,0000-2400,1234567,,,50267,,, +1260,VEN,,YVRY R Horizonte,,Nirgua (ycy),10.166667,-68.5,,5,,8089,264,131,,1000-0200,1234567,,,45452,,, +1260,B,pt,ZYK688 Rdio Morada do Sol,,So Paulo/Jardim Nakamura (SP),-23.695,-46.770833,,25,,9881,227,133,,,,,,36902078,,, +1260,KOR,ko,HLKL KBS 1 R,,Namweon=Namwon (jeb),35.382778,127.335833,,10,,8727,46,133,,0000-2400,1234567,,,50269,,, +1260,USA,,KPOW,,Powell (WY),44.7,-108.766667,,1,,7597,316,133,,,,4,,39156,,, +1260,CLM,es,HJOH RCN,,Valledupar (ces),10.666667,-73.266667,,5,,8370,269,134,,,,0,,37566,,, +1260,USA,,WCSA,,Ripley (MS),34.720833,-88.944444,,0.5,,7369,297,134,,,,,,41082,,, +1260,USA,,WPHB,,Philipsburg (PA),40.894167,-78.1975,,0.034,,6219,295,134,,,,,,42684,,, +1260,CLM,es,HJTM,,Ocana (nsa),8.216667,-73.366667,,5,,8590,267,135,,,,,,37647,,, +1260,MEX,es,XEJAM-AM,,Santiago Jamiltepec (oax),16.292389,-97.828522,,10,,9520,291,135,,,,,,44196,,, +1260,TWN,,Ching-Cha Kuangpo Tientai,,Taipei (TPS),25.080333,121.517961,,10,,9379,56,135,,,,,,50279,,, +1260,USA,,KMZT,,Beverly Hills (CA),34.249167,-118.453889,,7.5,,9023,317,135,,,,9966,,39433,,, +1260,USA,,KWSH,,Wewoka (OK),35.169444,-96.541667,,1,,7783,302,135,,,,,,39754,,, +1260,CHN,,Liaoning RGD Xinwen Tai,,Panjin/LNTS315 (LN),41.203278,122.029139,,1,,7932,46,136,,,,,,50249,,, +1260,CHN,,Liaoning RGD Xinwen Tai,,Tieling/LNTS325 (LN),42.353611,123.901667,,1,,7918,44,136,,,,,,36200398,,, +1260,CLM,es,HJDA,,Medelln (ant),6.283333,-75.533333,,5,,8907,268,136,,,,,,37385,,, +1260,EQA,,HCMO1,,Quito (pic),-0.166667,-78.5,,10,,9675,266,136,,,,,,37029,,, +1260,KOR,,AFN Korea-Thunder AM,,Busan/Camp Hialeah (bus),35.116667,128.966667,,5,,8831,45,136,,0000-2400,1234567,,,50268,,, +1260,USA,,WSHU,,Westport (CT),41.128889,-73.388889,,0.009,,5900,292,136,,,,,,43001,,, +1260,USA,,WZBO,,Edenton (NC),36.083333,-76.6,,0.034,,6485,290,136,,,,,,43568,,, +1260,CHN,zh,CNR 1,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,2230-2300,1234567,,,36201173,,, +1260,CHN,zh,CNR 2,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,0700-0800,1234567,,,36201173,,, +1260,CHN,zh,CNR 2,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,1200-1300,1234567,,,36201173,,, +1260,CHN,zh,Suining RGD,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,0800-1200,1234567,,,36201173,,, +1260,CHN,zh,Suining RGD,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,1300-1600,1234567,,,36201173,,, +1260,CHN,zh,Suining RGD,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,2150-2230,1234567,,,36201173,,, +1260,CHN,zh,Suining RGD,,Suining/SCTS528 (SC),30.533333,105.533333,,1,,7952,64,137,,2300-0700,1234567,,,36201173,,, +1260,CTR,,TIHM R Emas,,San Vito de Coto Brus (pta),8.833333,-82.966667,,6,,9191,275,137,,1100-0300,1234567,,,52156,,, +1260,USA,,KBHC,,Nashville (AR),33.929167,-93.850278,,0.5,,7731,299,137,,,,,,38030,,, +1260,USA,,KDUZ,,Hutchinson (MN),44.906667,-94.366389,,0.064,,6848,308,137,,,,,,38298,,, +1260,USA,,WOCO,,Oconto (WI),44.891944,-87.955,,0.029,,6495,304,137,,,,,,42561,,, +1260,DOM,,HIT R Recuerdos,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,0900-0400,1234567,,,37307,,, +1260,MEX,es,XEL-AM La 1260,,Los Reyes Acaquilpan (mex),19.360667,-98.992717,,5,,9320,294,138,,,,,,44284,,, +1260,MEX,es,XETBV-AM Ke Buena,,Tierra Blanca (vcz),18.438619,-96.341806,,5,,9235,291,138,,,,,,44800,,, +1260,PHL,,DZEL-AM (r:DZEC 1062),,Lucena City (qzn),13.95,121.6,,10,,10412,62,138,,,,,,50274,,, +1260,USA,,KWYR,,Winner (SD),43.3825,-99.910556,,0.146,,7270,310,138,,,,,,39774,,, +1260,USA,,WHYM,,Lake City (SC),33.861667,-79.7375,,0.055,,6861,290,138,,,,,,41704,,, +1260,B,pt,ZYH596 Rdio Vale do Jaguaribe,,Limoeiro do Norte (CE),-5.157364,-38.093911,,0.25,,7625,229,139,,,,,,36902072,,, +1260,B,pt,ZYJ670 Rdio Educadora,,Guajar-Mirim (RO),-10.753056,-65.333056,,5,,9741,249,139,,,,31,,36902080,,, +1260,BOL,,R Nacional de Huanuni,,Huanuni (oru),-18.291111,-66.841222,,10,,10515,246,139,,,,,,36500032,,, +1260,EQA,,HCVI5,,Caar (can),-0.566667,-78.916667,,5,,9738,266,139,,,,,,37169,,, +1260,USA,,KLYC,,McMinnville (OR),45.234444,-123.1325,,0.85,,8166,325,139,,,,,,38866,,, +1260,USA,en,WIYD,,Palatka (FL),29.651944,-81.592222,,0.135,,7323,288,139,,,,,,41827,,, +1260,USA,en,WWVT,,Christiansburg (VA),37.153611,-80.507222,,0.025,,6650,293,139,,,,,,43440,,, +1260,PHL,,DYDD-AM Bantay Radyo,,Lapu-Lapu City/MEPZ (ceb),10.331111,123.978611,,10,,10890,62,140,,????-1600,1234567,,,50273,,, +1260,SLV,,YSA,,San Salvador (ssl),13.716667,-89.216667,,3,,9186,283,140,,,,,,45260,,, +1260,USA,,KTRC,,Santa Fe (NM),35.682222,-105.9725,,1,,8263,309,140,,,,,,39534,,, +1260,PHL,,DWMC-AM,,Rosales/Tomana (pgs),15.883333,120.6,,5,,10174,61,141,,,,,,50275,,, +1260,URG,,CW37 Dif. Rochense,,Rocha (ro),-34.5,-54.316667,,10,,11287,227,141,,0900-0300,1234567,,,36770,,, +1260,CHN,,Changde JGD,,Changde (HN),29.033333,111.7,,1,,8454,60,142,,,,,,50250,,, +1260,CLM,es,HJOU,,Leticia (ama),-4.116667,-69.966667,,2,,9449,257,142,,,,,,37614,,, +1260,EQA,,HCEM1,,Tulcan (car),0.8,-77.716667,,2,,9537,266,142,,,,,,36918,,, +1260,EQA,,HCEV5,,Cuenca (azu),-2.85,-79,,3,,9945,265,142,,,,,,36924,,, +1260,USA,,KDLF,,Boone (IA),42.048611,-93.898333,,0.033,,7055,305,142,,,,,,38387,,, +1260,USA,,WEKZ,,Monroe (WI),42.594444,-89.592778,,0.019,,6768,303,142,,,,,,41281,,, +1260,USA,,WFTW,,Fort Walton Beach (FL),30.413611,-86.627778,,0.131,,7583,292,142,,,,,,41453,,, +1260,USA,,WMCH,,Church Hill (TN),36.520833,-82.748333,,0.021,,6840,294,142,,,,,,42289,,, +1260,CLM,es,HJHU,,San Andrs (sap),12.566667,-81.708333,,1,,8781,276,143,,,,,,37481,,, +1260,CLM,es,HJNO,,Duitama (boy),5.816667,-73.066667,,1,,8779,265,143,,,,,,37593,,, +1260,USA,,KIMB,,Kimball (NE),41.261667,-103.668333,,0.112,,7648,311,143,,,,,,38611,,, +1260,USA,,KSFB,,San Francisco (CA),37.716389,-122.393889,,1,,8865,321,143,,,,30,,39069,,, +1260,USA,,WTJH,,East Point (GA),33.696389,-84.474722,,0.039,,7176,293,143,,,,,,43147,,, +1260,CHN,zh,CNR 1,,Hui'an/FJTS404 (FJ),25.033333,118.8,,1,,9228,58,144,,2025-1805,1234567,,,36201284,,, +1260,CHN,zh,CNR 1,,Zhangpu/FJTS503 (FJ),24.130722,117.571333,,1,,9239,59,144,,2025-1805,1234567,,,36201285,,, +1260,CLM,es,HJDV Caracol Colombia,,Ibagu (tol),4.416667,-75.2,,1,,9048,266,144,,,,6,,37402,,, +1260,CLM,es,HJET,,Cali (val),3.466667,-76.533333,,1,,9222,267,144,,,,,,37422,,, +1260,CLM,es,HJLX,,Villavicencio (met),4.116667,-73.666667,,1,,8969,265,144,,,,,,37558,,, +1260,EQA,,HCWN1,,Santo Domingo de los Colorados (pic),-0.25,-79.15,,1.5,,9726,266,144,,,,,,37183,,, +1260,HND,,HRYF2,,San Marcos de Colon (cho),13.5,-86.816667,,1,,9044,281,144,,,,,,37882,,, +1260,MEX,es,XEMTV-AM,,Minatitln (vcz),17.987175,-94.543728,,1,,9160,290,144,,,,,,44414,,, +1260,MEX,es,XEMW-AM Sonido Zeta,,San Luis Ro Colorado (son),32.460878,-114.817389,,1,,9017,313,144,,,,,,44418,,, +1260,MEX,es,XEXR-AM R Mensajera,,Ciudad Valles (slp),21.975561,-99.005775,,1,,9087,295,144,,,,,,45067,,, +1260,PHL,,DXRF-AM (r:666 DZRH-AM),,Davao City (dvs),7.05,125.583333,,5,,11292,62,144,,0000-2400,1234567,,,50272,,, +1260,PRU,,OAU3G,,Nuevo Chimbote (anc),-9.133333,-78.516667,,3,,10464,260,144,,,,,,37000087,,, +1260,USA,,WNOO,,Chattanooga (TN),35.052222,-85.272778,,0.025,,7116,294,144,,,,,,42492,,, +1260,USA,en,WYDE,,Birmingham (AL),33.524722,-86.786111,,0.041,,7335,294,144,,,,,,43511,,, +1260,ARG,,LT14 R General Urquiza,,Parana (er),-31.760364,-60.537183,,5,,11362,233,145,,0900-0500,1234567,,,40166,,, +1260,BOL,,CP14 Remisoras Unidas,,La Paz (lpz),-16.5,-68.116667,,2,,10435,248,145,,0900-0100,1234567,,,36644,,, +1260,MEX,es,XEQL-AM Catedral de la Msica,,Zamora/Av. 5 de Mayo 501 (mic),19.98,-102.283333,,1,,9467,297,145,,,,,,44618,,, +1260,TWN,,Cheng Sheng BC,,Taipao/Kangweili (CY),23.466667,120.333333,,1,,9460,57,145,,0000-2400,1234567,,,50278,,, +1260,USA,,KBRH,,Baton Rouge (LA),30.460556,-91.243611,,0.127,,7868,295,145,,,,,,38084,,, +1260,USA,,KCCB,,Corning (AR),36.4,-90.584722,,0.031,,7329,299,145,,,,,,38133,,, +1260,USA,es,WPJF,,Greenville (SC),34.908333,-82.344722,,0.015,,6944,292,145,,,,,,42410,,, +1260,EQA,,HCRO6,,Calidad (tun),-1.216667,-78.633333,,1,,9776,265,146,,,,,,37101,,, +1260,MEX,es,XEJY-AM La Mejor,,El Grullo (jal),19.7699,-104.247772,,1,,9606,298,146,,,,,,44235,,, +1260,USA,en,WDKN,,Dickson (TN),36.108611,-87.370556,,0.018,,7159,297,146,,,,,,41170,,, +1260,B,pt,ZYK629 Rdio Clube de Piraju,,Piraju (SP),-22.007856,-49.429703,,1,,9855,230,147,,,,,,36902074,,, +1260,CAN,xx,CBPM,,Sicamous (BC),50.835833,-118.972778,,0.03,,7474,326,147,,,,,,20109177,,, +1260,EQA,,HCRB3,,Benemerita (oro),-3.45,-79.95,,1,,10062,265,147,,,,,,37071,,, +1260,USA,,KBLY,,Idaho Falls (ID),43.520833,-111.9925,,0.064,,7854,317,147,,,,,,39416,,, +1260,USA,,KLDS,,Falfurrias (TX),27.236389,-98.172778,,0.33,,8570,298,147,,,,,,38793,,, +1260,INS,id,PM5CLZ R.Gitamitra Suara Perdana,,Lubuk Basung (SB-aga),-0.333333,100.066667,,1,,10286,87,148,,,,,,35400076,,, +1260,MEX,es,XESA-AM La Mexicana,,Culiacn (sin),24.819072,-107.474594,,0.5,,9334,303,148,,,,,,44726,,, +1260,PRU,,R Centinela,,Huancabamba (piu),-5.283333,-79.466667,,1,,10190,264,148,,,,392,,52463,,, +1260,USA,,KSML,,Diboll (TX),31.364722,-94.718889,,0.072,,8003,298,148,,,,,,39389,,, +1260,USA,,KWNX,,Taylor (TX),30.605,-97.416944,,0.144,,8230,300,148,,,,,,39736,,, +1260,USA,,WGVM,,Greenville (MS),33.422222,-91.028056,,0.032,,7604,297,148,,,,,,41583,,, +1260,CHL,,CD126 R Santa Maria de Guadalupe,,Punta Arenas (MA),-53.157472,-71.004333,,10,,13728,225,149,,1100-0400,1234567,,,35863,,, +1260,MEX,es,XEOG-AM R Ranchito,,Ojinaga (chi),29.555278,-104.4025,,0.25,,8728,304,149,,,,,,44485,,, +1260,MEX,es,XER-AM Stereo Hits,,Linares (nvl),24.873056,-99.556389,,0.25,,8863,298,149,,,,,,44645,,, +1260,B,pt,ZYJ740 Rdio Bandeirantes,,Blumenau (SC),-26.852778,-48.998889,,0.5,,10297,227,151,,,,,,36902077,,, +1260,CAN,xx,CBPU,,Ucluelet (BC),49.053056,-125.720833,,0.03,,7891,329,151,,,,,,20109178,,, +1260,INS,id,R Suara Pekerja,,Bekasi (JB-kbk),-6.233333,107,,1,,11277,85,151,,,,,,35400077,,, +1260,MEX,es,XEZH-AM,,Salamanca (gua),20.570833,-101.200556,,0.25,,9348,296,151,,,,,,45139,,, +1260,ARG,,R Fortaleza Cristiana,,Rafael Castillo (ba),-34.716667,-58.616667,,1,,11528,230,152,,,,,,51842,,, +1260,PRG,,ZP34 R Cultura,,Villarrica (cgz),-25.75,-56.416667,,0.5,,10583,234,152,,,,,,45557,,, +1260,PRU,,OBX6D R Mundial,,Arequipa (are),-16.466667,-72.583333,,0.5,,10718,251,152,,,,,,40408,,, +1260,USA,,KKSA,,San Angelo (TX),31.487222,-100.449167,,0.071,,8330,302,152,,,,,,38754,,, +1260,USA,,KTRP,,Weiser (ID),44.062222,-116.906111,,0.036,,8023,321,152,,,,,,20016109,,, +1260,INS,id,PM6BQQ R Gabriel,,Madiun (JI-mad),-7.640556,111.526389,,1,,11707,83,153,,,,,,50258,,, +1260,CHL,,CC126 R Condell,,Curic (ML),-34.966667,-71.366667,,1,,12257,239,154,,1100-0500,1234567,,,35807,,, +1260,INS,id,R Molina Indah Pesona,,Sinjai (SN-sin),-5.116667,120.25,,1,,12067,74,154,,,,,,35400078,,, +1260,B,pt,ZYK345 Rdio Gaurama,,Gaurama (RS),-27.590278,-52.098611,,0.25,,10525,229,155,,,,,,36902075,,, +1260,B,pt,ZYK204 Rdio Cultura AM,,So Borja (RS),-28.681389,-56.001944,,0.25,,10833,232,156,,,,,,36902073,,, +1260,B,pt,ZYK327 Rdio Fandango AM,,Cachoeira do Sul (RS),-30.016667,-52.897778,,0.25,,10795,229,156,,,,,,36902076,,, +1260,USA,,KBSZ,,Wickenburg (AZ),33.382222,-111.535833,,0.05,,8764,311,156,,,,5,,38100,,, +1260,AUS,,4MW,,Torres Strait/Thursday Island (QLD),-10.580306,142.2085,,2,,13931,57,157,,,,,,50248,,, +1260,AUS,,6KA Spirit R,,Karratha (WA),-20.725028,116.8295,,1,,13195,87,158,,0000-2400,1234567,,,50245,,, +1260,USA,en,WPYW801,,Provo/1155 N University Ave (UT),40.249889,-111.659556,,0.01,,8137,315,158,,,,,,20010645,,, +1260,AUS,,3SR Sport 927,,Shepparton/Dookie (VIC),-36.378875,145.537583,,2,,16385,78,165,,0000-2400,1234567,,,50247,,, +1260,NZL,,3XA LiveSPORT,,Christchurch/Marshland (CAN),-43.481569,172.635014,,5,,18613,52,168,,,,,,50270,,, +1265,BOL,,R Uncia,,Uncia (pts),-18.45,-66.616667,,0.4,,10516,246,153,,1100-0300,1234567,,,52014,,, +1269,D,de,Deutschlandfunk,,Neumnster/Ehndorfer Moor (shs),54.041944,9.847778,,300,,314,46,35,,0000-2400,1234567,9979,,1185,,, +1269,E,es,COPE,,Figueres/Avinyonet d'Puigvents (CAT-GI),42.270611,2.926231,,5,,1125,195,61,,0000-2400,1234567,9983,,1187,,, +1269,E,es,COPE,,Ciudad Real (CAM-CR),38.9775,-3.923333,,10,,1664,213,64,,0000-2400,1234567,,,1186,,, +1269,SRB,sr,R Novi Sad,,Srbobran (Voj-jbc),45.509344,19.794522,,3,,1221,122,64,,0000-2400,1234567,995,,1193,,, +1269,E,es,COPE,,Badajoz (EXT-BA),38.862117,-6.941372,,10,,1797,220,65,,0000-2400,1234567,2,,1189,,, +1269,E,es,COPE,,Zamora (CAL-ZA),41.516728,-5.729353,,5,,1493,223,65,,0000-2400,1234567,999,,1188,,, +1269,IRN,fa,IRIB R Ardabil,,Khalkhal (ard),37.623181,48.507861,,50,,3622,100,76,,,,8,,1190,,, +1269,GRC,el,unid,,unknown (att),38,23.658333,,1,,2062,133,78,,,,,,3400064,,, +1269,KWT,ar,R Kuwait FM,,Kabd/Sulaibiyah (jah),29.146244,47.780539,,100,170,4237,111,79,,0000-2400,1234567,6,,1192,,, +1269,UAE,ml,R Asia,,Ras al-Khaimah (rak),25.8,55.975,,200,,5049,106,85,,0000-2400,1234567,,,1659,,, +1269,NIG,,TSBS Taraba R,,Jalingo (trb),8.897944,11.3706,,10,,4826,173,95,,0500-2300,1234567,,,2496,,, +1269,CHN,bn,China R Int.,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1400-1500,1234567,993,,50283,,, +1269,CHN,en,China R Int.,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1100-1300,1234567,993,,50283,,, +1269,CHN,en,Voice of Russia,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1700-1800,1234567,993,,50283,,, +1269,CHN,hi,China R Int.,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1600-1700,1234567,993,,50283,,, +1269,CHN,ne,China R Int.,,Xuanwei/SARFT726 (YN),26.135333,104.020806,,600,255,8235,68,112,,1500-1600,1234567,993,,50283,,, +1269,IND,,AIR Northeast,,Agartala (TR),23.845,91.355833,,20,,7603,79,120,,0025-0430,1234567,,,50288,,, +1269,IND,,AIR Northeast,,Agartala (TR),23.845,91.355833,,20,,7603,79,120,,0630-0930,1234567,,,50288,,, +1269,IND,,AIR Northeast,,Agartala (TR),23.845,91.355833,,20,,7603,79,120,,1030-1630,1234567,,,50288,,, +1269,IND,,AIR South,,Madurai (TN),9.961944,78.096389,,20,,7888,98,123,,0015-0345,1234567,9905,,50290,,, +1269,IND,,AIR South,,Madurai (TN),9.961944,78.096389,,20,,7888,98,123,,0610-0900,123456,9905,,50290,,, +1269,IND,,AIR South,,Madurai (TN),9.961944,78.096389,,20,,7888,98,123,,0630-1100,......7,9905,,50290,,, +1269,IND,,AIR South,,Madurai (TN),9.961944,78.096389,,20,,7888,98,123,,1200-1733,1234567,9905,,50290,,, +1269,CHN,zh,Shanxi RGD Zonghe Guangbo,,Taiyuan (SX),37.75,112.55,,10,,7742,54,124,,2200-1700,1234567,,,50286,,, +1269,CHN,zh,Shanxi RGD Zonghe Guangbo,,Xinzhou (SX),38.416667,112.733333,,10,,7694,54,124,,2200-1700,1234567,,,36200388,,, +1269,RUS,ru,R Vostok Rossii,,Komsomolsk-na-Amure (KH),50.657569,136.906111,,7,,7678,31,125,,1900-1300,1234567,,,47040,,, +1269,CHN,,Xuzhou RGD Tiyu,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,10,,8308,53,130,,2110-1600,1234567,,,50287,,, +1269,KOR,,KBS 1 R,,Yangju (jeb),37.826111,127.054167,,10,,8485,44,132,,0000-2400,1234567,,,50296,,, +1269,THA,th,Khor. Sor. Thor. Bor. BKK R,,Bangkok/Thahaan Road (bmp),13.79215,100.527189,,10,,9078,78,134,,,,9976,,50303,,, +1269,CHN,zh,Shanxi RGD Zonghe Guangbo,,Linfen (SX),36.083611,111.577222,,1,,7832,56,135,,2200-1700,1234567,,,36200387,,, +1269,TWN,,Han Sheng Kuangpo Tientai,,Magong=Makung (PG),23.566417,119.562811,,10,,9407,58,135,,2100-1600,1234567,,,50304,,, +1269,J,,JOHW HBC, Hokkaido Hoso,,Obihiro (hok),42.866667,143.3,,5,,8671,31,136,,0000-2400,1234567,,,50292,, +1269,THA,th,Mor. Kor.,,Songkhla/Kanjanavanit Rd (sgk),7.11475,100.573111,,10,,9666,82,136,,,,,,52407,,, +1269,CHN,,Dunhua RGD,,Dunhua (JL),43.366667,128.216667,,1,,8022,40,137,,2130-1500,1234567,,,50284,,, +1269,J,ja,JOJR JRT Shikoku Hoso,,Tokushima (shi-tok),34.102361,134.597081,,5,,9189,41,137,,0000-2400,1234567,,,50294,,, +1269,PHL,,DWRC-AM Super Radyo,,San Nicolas (iln),18.15,120.633333,,10,,9967,60,137,,0000-2400,1234567,,,50300,,, +1269,PHL,,DZVX-AM Bombo Radyo,,Daet (cmn),14.116667,122.916667,,5,,10475,60,142,,2100-1500,1234567,3,,50299,,, +1269,J,,JOFM HBC, Hokkaido Hoso,,Esashi (hok),41.866667,140.133333,,1,,8656,33,143,,0000-2400,1234567,,,50291,, +1269,KOR,,HLSI KBS 1 R,,Gurye (jen),35.221111,127.460833,,1,,8748,46,143,,0000-2400,1234567,,,50295,,, +1269,PHL,tl,DYWB-AM Bombo Radyo,,Bacolod City/Mandalagan (noc),10.688856,122.957767,,5,,10795,62,143,,2100-1500,1234567,,,50298,,, +1269,J,ja,JRT,,Ikeda (shi-tok),34.033333,133.816667,,1,,9161,42,144,,,,,,31400085,,, +1269,TWN,,Cheng Sheng BC,,Taitung (TT),22.758778,121.1425,,1,,9572,57,146,,0000-2400,1234567,,,50305,,, +1269,AUS,en,6RN ABC National,,Busselton/Kealy (WA),-33.659986,115.229306,,5,,14126,99,154,,,,,,37700073,,, +1269,J,,JOGS OBS, Oita Hoso,,Saiki (kyu-oit),32.95,131.916667,,0.1,,9177,44,154,,0000-2400,1234567,,,50293,, +1269,J,ja,JRT,,Hiwasa,34.5,134,,0.1,,9124,41,154,,,,,,31400087,,, +1269,J,ja,JRT,,Mugi (shi-tok),33.666667,134.416667,,0.1,,9223,41,154,,,,,,31400086,,, +1269,AUS,en,2SM,,Sydney/Homebush Bay (NSW),-33.832311,151.07105,,5,,16548,68,162,,0000-2400,1234567,998,,50282,,, +1269,NZL,,2ZT Classic Hits,,Takaka (NSN),-40.866667,172.816667,,0.4,,18394,45,179,,,,,,50297,,, +1270,CAN,,CJCB,,Sydney (NS),46.180556,-60.190833,,10,,4716,290,94,,,,15,,36149,,, +1270,USA,,WXYT,,Detroit (MI),42.0275,-83.345,,50,,6446,299,105,,,,1,,43501,,, +1270,USA,,WTSN,,Dover (NH),43.183611,-70.853889,,5,,5593,292,106,,,,998,,43217,,, +1270,USA,,WMKT,,Charlevoix (MI),45.272778,-85.252222,,5,,6311,303,113,,,,,,42342,,, +1270,USA,es,WSPR,,Springfield (DN) AUX (MA),42.09,-72.603056,,1,,5781,292,115,,,,,,20016279,,, +1270,USA,,WHEO,,Stuart (VA),36.623611,-80.263889,,5,,6676,292,117,,,,,,41624,,, +1270,USA,,WWWI,,Baxter (MN),46.298611,-94.278333,,5,,6731,309,117,,,,,,43443,,, +1270,USA,en,WHLD,,Niagara Falls (NY),42.744722,-78.886944,,1,,6123,297,118,,,,,,41655,,, +1270,USA,,WKBF,,Rock Island (IL),41.494444,-90.466667,,5,,6906,303,119,,,,,,41960,,, +1270,USA,,WLBR,,Lebanon (PA),40.359722,-76.458333,,1,,6150,293,119,,,,,,42138,,, +1270,USA,es,WSPR,,Springfield (DN) (MA),42.101667,-72.623056,,0.35,,5781,292,119,,,,,,43054,,, +1270,CAN,fr,CBGA-6,,Murdochville (QC),48.955556,-65.496389,,0.04,,4882,296,120,,,,,,20109180,,, +1270,USA,,WCBC,,Cumberland (MD),39.674444,-78.78,,1,,6347,294,120,,,,,,40952,,, +1270,USA,,WTJZ,,Newport News (VA),37.031111,-76.366667,,0.9,,6396,290,121,,,,,,43151,,, +1270,USA,,WCMR,,Elkhart (IN),41.621111,-85.961111,,1,,6633,300,123,,,,,,41436,,, +1270,USA,,WWCA,,Gary (IN),41.527222,-87.376667,,1,,6724,301,124,,,,,,43358,,, +1270,USA,es,WRLZ,,Eatonville (FL),28.5675,-81.427222,,5,,7401,287,124,,,,,,42878,,, +1270,USA,,KFAN,,Rochester (MN),43.979722,-92.4475,,1,,6818,306,125,,,,,,39700,,, +1270,USA,,WMIZ,,Vineland (NJ),39.498056,-75.075278,,0.21,,6127,291,125,,,,,,42335,,, +1270,USA,en,KNWC,,Sioux Falls (SD),43.285278,-96.764722,,2.3,,7111,308,125,,,,997,,39031,,, +1270,USA,,WQTT,,Marysville (OH),40.246111,-83.330556,,0.5,,6583,297,126,,,,,,43252,,, +1270,USA,en,WNOG,,Naples (FL),26.257222,-81.675833,,5,,7610,285,126,,,,9945,,42491,,, +1270,USA,,WDLA,,Walton (NY),42.136111,-75.08,,0.089,,5933,294,127,,,,,,41171,,, +1270,B,pt,ZYI696 Rdio Cidade,,Sum (PB),-7.643386,-36.897878,,5,,7811,226,128,,,,,,36902096,,, +1270,USA,,WCGC,,Belmont (NC),35.251389,-81.057222,,0.5,,6835,292,128,,,,,,40984,,, +1270,USA,,WLIK,,Newport (TN),35.963611,-83.208611,,0.5,,6914,294,129,,,,,,42170,,, +1270,USA,en,WEIC,,Charleston (IL),39.505,-88.215,,0.5,,6935,300,129,,,,,,41270,,, +1270,USA,,KFLC,,Fort Worth (TX),32.726667,-97.191667,,5,,8032,301,130,,,,,,38402,,, +1270,B,pt,ZYI530 Rdio RBN,,Belm (PA),-1.473972,-48.465267,,2.5,,7845,240,131,,,,,,36902098,,, +1270,VEN,,YVOU R Ondas Panamericanas,,El Vigia (mrd),8.566667,-71.666667,,10,,8444,266,131,,,,,,45414,,, +1270,B,pt,ZYJ593 Rdio Clube,,Natal (RN),-5.778806,-35.249583,,1,,7545,226,132,,,,,,36902092,,, +1270,USA,,KIML,,Gillette (WY),44.303333,-105.497778,,1,,7474,314,132,,,,1,,38612,,, +1270,USA,,WMPM,,Smithfield (NC),35.525833,-78.333611,,0.145,,6640,290,132,,,,,,42376,,, +1270,ABW,,R 1270,,San Nicolas (arb),12.433333,-69.9,,2.5,,7987,267,133,,,,,,47114,,, +1270,USA,,KLXX,,Bismarck-Mandan (ND),46.810278,-100.836111,,0.25,,7028,313,133,,,,,,38865,,, +1270,USA,,KRVT,,Claremore (OK),36.265278,-95.710278,,1,,7642,302,133,,,,,,39312,,, +1270,USA,,WHGS,,Hampton (SC),32.843889,-81.125556,,0.219,,7032,290,134,,,,,,41632,,, +1270,B,pt,ZYH753 Rdio Brasil Central,,Goinia/Fazenda Bananal (GO),-16.587422,-49.217464,,10,,9325,233,135,,,,3,,36902094,,, +1270,USA,,KBZZ,,Sparks (NV),39.533611,-119.663333,,5,,8572,320,135,,,,9969,,38117,,, +1270,USA,,WJJC,,Commerce (GA),34.215833,-83.435833,,0.173,,7068,293,135,,,,,,41884,,, +1270,USA,,WILE,,Cambridge (OH),40.04,-81.647222,,0.035,,6496,296,136,,,,,,41751,,, +1270,USA,,WYXC,,Cartersville (GA),34.209444,-84.796944,,0.187,,7154,293,136,,,,,,43557,,, +1270,CLM,,HJKD La Carinosa,,Neiva (hui),2.933333,-75.333333,,5,,9187,265,137,,,,,,35902895,,, +1270,CLM,es,HJBM R Internacional,,Honda (tol),5.2,-74.75,,5,,8948,266,137,,,,,,35901639,,, +1270,CLM,es,HJQ99 Colombia Mia,,San Jos del Guaviare (guv),2.566667,-72.65,,5,,9037,263,137,,,,,,35901636,,, +1270,DOM,,HIDA R Hit 12-70,,Santiago de los Caballeros (sto),19.416667,-70.666667,,0.25,,7442,272,137,,0000-2400,1234567,,,37235,,, +1270,EQA,,HCUM2 R Universal,,Guayaquil (gua),-2.2,-79.9,,10,,9949,266,137,,,,995,,37151,,, +1270,USA,,WSHE,,Columbus (GA),32.437778,-85.019444,,0.188,,7313,292,137,,,,,,42998,,, +1270,ARG,es,LS11 R Provincia de Buenos Aires,,La Plata (ba),-34.840333,-58.073967,,25,,11511,230,138,,0000-2400,1234567,5,,40158,,, +1270,B,pt,ZYJ474 Rdio Continental,,Campos dos Goytacazes (RJ),-21.802886,-41.347661,,5,,9432,224,138,,,,4,,36902090,,, +1270,DOM,,HITA R Ambiente,,Ban (pva),18.266667,-70.316667,,0.25,,7515,271,138,,1000-0400,1234567,,,37308,,, +1270,USA,,WAIN,,Columbia (KY),37.107222,-85.278333,,0.068,,6950,296,138,,,,,,40676,,, +1270,USA,,WGSV,,Guntersville (AL),34.308611,-86.295556,,0.124,,7240,295,138,,,,,,41569,,, +1270,USA,,WXGO,,Madison (IN),38.741111,-85.361389,,0.058,,6825,297,138,,,,,,43466,,, +1270,USA,en,KXQZ,,Twin Falls (ID),42.5625,-114.542778,,1,,8059,319,138,,,,2,,39471,,, +1270,NCG,,YNRA R Amistad,,Matagalpa (mgp),12.883333,-85.95,,3,,9040,280,139,,,,,,52218,,, +1270,B,pt,ZYH282 Rdio Boas Novas,,Tef (AM),-3.379422,-64.721261,,2.5,,9037,253,140,,,,,,36902086,,, +1270,USA,,WRJC,,Mauston (WI),43.831111,-90.080833,,0.027,,6698,304,140,,,,,,42859,,, +1270,USA,,WNLS,,Tallahassee (FL),30.428889,-84.328611,,0.11,,7435,290,141,,,,,,42481,,, +1270,USA,,WQKR,,Portland (TN),36.611111,-86.581111,,0.043,,7070,296,141,,,,,,42778,,, +1270,ARG,,LRA20 R Nacional,,Las Lomitas (fm),-24.716667,-60.6,,5,,10723,237,142,,0900-0300,1234567,,,39940,,, +1270,CLM,es,HJAR La Carinosa, Antena 2,,Cartagena (bol),10.5,-75.5,,1,,8537,270,142,,,,996,,37333,, +1270,MEX,es,XEVHT-AM W R,,Villahermosa (tab),17.978056,-92.984167,,1.7,,9060,288,142,,,,,,44965,,, +1270,VEN,,RNV Canal Informativo,,Urena (tch),7.916667,-72.45,,1,,8554,266,142,,,,,,51695,,, +1270,CLM,,HJPJ,,Riosucio (cho),7.4,-77.116667,,1,,8917,269,143,,,,,,37623,,, +1270,CLM,es,HJTX Besame AM,,Bucaramanga (sat),7.083333,-73.15,,1,,8674,266,143,,,,,,37653,,, +1270,CLM,es,HJXQ La Voz Amiga,,Ubate (cun),5.316667,-73.816667,,1,,8874,266,143,,,,992,,35901637,,, +1270,PNR,es,HOJ22 R Tipy Q,,Llano Bonito (pnm),9.034578,-79.4564,,1,,8934,272,143,,,,,,37693,,, +1270,SLV,es,YSQZ,,San Miguel (smg),13.466667,-88.166667,,1.4,,9138,282,143,,,,,,45306,,, +1270,USA,,KJUG,,Tulare (CA),36.168333,-119.253333,,1,,8876,318,143,,,,26,,38699,,, +1270,USA,,WIJD,,Prichard (AL),30.745556,-88.094444,,0.103,,7648,293,143,,,,,,41742,,, +1270,CLM,es,HJIM Colmundo,,Pereira (ris),4.766667,-75.716667,,1,,9052,267,144,,,,,,37539,,, +1270,EQA,,HCLD4,,Junin (man),-0.816667,-80.316667,,2,,9856,267,144,,,,,,37004,,, +1270,GTM,,TGCQ R Exlusica,,Ciudad de Guatemala (gut),14.616667,-90.583333,,1,,9198,284,144,,0000-2400,1234567,,,40488,,, +1270,HND,,HRNQ,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37821,,, +1270,MEX,es,XEQH-AM Milenium R,,Ixmiquilpan (hid),20.509444,-99.208333,,1,,9231,295,144,,,,,,44610,,, +1270,USA,,KGNM,,St. Joseph (MO),39.744167,-94.787778,,0.036,,7296,304,144,,,,,,38499,,, +1270,USA,,KIIK,,Waynesville (MO),37.828333,-92.174167,,0.044,,7305,301,144,,,,,,39125,,, +1270,USA,en,KNNV694,,Hammond/5911 Calumet Ave (IN),41.610964,-87.632556,,0.01,,6733,301,144,,,,,,20010647,,, +1270,USA,en,KFSQ,,Thousand Palms (Palm Desert) (CA),33.851111,-116.393333,,0.75,,8963,315,145,,,,,,39034,,, +1270,HWA,xx,KNDI,,Honolulu (HI),21.323889,-157.879722,,5,,11708,345,146,,,,995,,38972,,, +1270,PRU,,OAX8T R Eco,,Iquitos (lor),-3.5,-73.316667,,1,,9618,260,146,,,,,,40359,,, +1270,CHL,,CB127 R Festival,,Via del Mar (VS),-33.016667,-71.566667,,5,,12101,240,147,,1000-0700,1234567,996,,35728,,, +1270,MEX,es,XEAZ-AM La Z,,Tijuana (bcn),32.5391,-117.049114,,0.5,,9119,315,147,,,,,,43750,,, +1270,MEX,es,XEGL-AM Digital,,Navojoa (son),27.081111,-109.454167,,0.5,,9236,306,147,,,,,,44064,,, +1270,MEX,es,XERRT-AM Sport R,,Ciudad Madero (tam),22.253167,-97.857808,,0.5,,8992,295,147,,,,,,44709,,, +1270,URG,es,CV127 R Cuareim,,Artigas (ar),-30.401667,-56.451111,,2,,11017,231,147,,0900-0300,1234567,,,36725,,, +1270,USA,,WMLC,,Monticello (MS),31.556667,-90.135,,0.053,,7707,295,147,,,,,,42344,,, +1270,BOL,,CP134 R Vanguardia,,Colquiri (lpz),-17.383333,-67.116667,,1,,10451,247,148,,1000-0300,1234567,,,36640,,, +1270,MEX,es,XEHD-AM R.Universidad,,Durango (dur),23.961125,-104.577339,,0.5,,9244,301,148,,,,,,44103,,, +1270,USA,en,KBAM,,Longview (WA),46.183056,-122.958056,,0.083,,8068,326,148,,,,,,38003,,, +1270,B,pt,ZYK640 Rdio Globo,,Ribeiro Preto (SP),-21.204167,-47.754722,,0.5,,9690,229,149,,,,,,36902083,,, +1270,B,pt,ZYK678 Rdio Brasil Campinas,,Campinas/Chcara California (SP),-22.948572,-47.017786,,0.5,,9821,228,149,,,,,,36902082,,, +1270,PRU,,OAZ4H R Huacho,,Huacho (lim),-13.166667,-76.5,,1,,10684,256,149,,,,,,40367,,, +1270,B,pt,ZYJ222 Rdio Atual Guairac AM 1270,,Mandaguari (PR),-23.521667,-51.660278,,0.5,,10117,231,150,,,,,,36902088,,, +1270,B,pt,ZYJ236 Rdio Continental AM,,Curitiba/Piraquara (PR),-25.415833,-49.207778,,0.5,,10170,228,151,,,,,,36902097,,, +1270,B,pt,ZYJ289 Cidade AM,,Cascavel (PR),-24.923056,-53.411667,,0.5,,10343,232,151,,,,,,36902099,,, +1270,B,pt,ZYL227 Rdio Carijs,,Conselheiro Lafaiete (MG),-20.64815,-43.790628,,0.25,,9436,226,151,,,,,,36902087,,, +1270,PRU,,OBZ4T R La Merced,,Chanchamayo (jun),-11.05,-75.25,,0.5,,10414,257,151,,,,,,40423,,, +1270,USA,,KDJI,,Holbrook (AZ),34.905833,-110.190278,,0.13,,8555,311,151,,,,18,,38268,,, +1270,B,pt,ZYK206 Rdio Amrica AM,,Montenegro (RS),-29.685833,-51.4475,,0.5,,10690,228,152,,,,,,36902089,,, +1270,B,pt,ZYK250 Rdio Vera Cruz,,Horizontina (RS),-27.6375,-54.313056,,0.5,,10646,231,152,,,,,,36902093,,, +1270,B,pt,ZYL300 Rdio Estncia,,So Loureno (MG),-22.120939,-45.081564,,0.25,,9644,227,152,,,,,,36902085,,, +1270,MEX,es,XEWN-AM El Fongrafo,,Gmez Palacio (dur),25.543556,-103.492028,,0.15,,9038,301,152,,,,,,34900015,,, +1270,USA,,KSCB,,Liberal (KS),37.059444,-100.901389,,0.025,,7867,306,152,,,,,,39329,,, +1270,EQA,,HCCC6,,Latacunga (cot),-0.916667,-78.566667,,0.2,,9745,265,153,,,,,,36876,,, +1270,MEX,es,XERPL-AM La Poderosa,,Len (gua),21.083333,-101.683333,,0.15,,9331,297,153,,,,,,44700,,, +1270,USA,,KINN,,Alamogordo (NM),32.886944,-105.951111,,0.08,,8514,307,153,,,,,,38620,,, +1270,USA,,KXBX,,Lakeport (CA),39.013889,-122.894167,,0.097,,8760,322,153,,,,,,39779,,, +1270,B,pt,ZYJ768 Rdio Garibaldi,,Laguna/Rua da Esperana (SC),-28.473167,-48.787056,,0.25,,10442,226,154,,,,,,36902095,,, +1270,B,pt,ZYJ765 Rdio Sociedade Catarinense,,Joaaba (SC),-27.180556,-51.509167,,0.25,,10456,229,155,,,,,,36902091,,, +1270,USA,,KAJO,,Grants Pass (OR),42.437778,-123.3575,,0.048,,8446,324,155,,,,,,37931,,, +1270,USA,en,WPUB241,,Bellevue (WA),47.6,-122.158333,,0.01,,7901,326,156,,,,,,20010646,,, +1270,USA,,KEPS,,Eagle Pass (TX),28.7325,-100.492778,,0.032,,8576,301,157,,,,,,38335,,, +1275,BOL,,CP187 R Chane,,Mineros (scz),-17.119444,-63.230556,,0.5,,10187,244,151,,1000-0400,12345..,,,36674,,, +1275,BOL,,CP187 R Chane,,Mineros (scz),-17.119444,-63.230556,,0.5,,10187,244,151,,1100-2200,.....67,,,36674,,, +1275,INS,id,R.SP Reformasi/R.Suara Persada,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,50308,,, +1278,F,fr,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,0000-2400,.....67,9993,,1195,,, +1278,F,fr,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,1130-1330,12345..,9993,,1195,,, +1278,F,fr,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,1600-0600,12345..,9993,,1195,,, +1278,F,ls,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,0600-1130,12345..,9993,,1195,,, +1278,F,ls,France Bleu Elsass,,Strasbourg/Slestat (67),48.25,7.426667,,300,,435,170,37,,1330-1600,12345..,9993,,1195,,, +1278,GRC,el,ERA Flrina,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,0500-1000,12345..,26,,1204,,, +1278,GRC,el,ERA Flrina,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,1330-1800,12345..,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,0000-0500,1......,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,0000-2400,.....67,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,1000-1330,12345..,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,1800-0500,1234...,26,,1204,,, +1278,GRC,el,ERA Net/ERA 2/ERA Sport,,Flrina (wmc-flo),40.7928,21.417575,,10,,1698,132,64,,1800-2400,....5..,26,,1204,,, +1278,G,en,Pulse 2,,Bradford/Tyersal Lane (EN-WYK),53.786111,-1.702083,,0.43,,574,292,66,,0000-2400,1234567,18,,1196,,, +1278,IRN,fa,IRIB R Kermanshah,,Kermanshah=Bakhtaran (ksh),34.460811,46.956303,,200,,3754,105,72,,0300-2003,1234567,,,1205,,, +1278,GRC,,unid (Greek 1960s Oldies),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,0000-2400,9999999,999,,3400042,,, +1278,EGY,ar,ERTU Al-Barnameg al-Aam,,Aswan (asn),24.074222,32.891583,,10,,3840,134,85,,0300-2400,1234567,,,1842,,, +1278,G,,BFBS Gurkha R,,Folkestone (EN-KNT),51.1,1.216667,,0.001,,376,255,91,,,,,,1199,,, +1278,G,,BFBS Gurkha R,,Shorncliffe (EN-KNT),51.1,1.133333,,0.001,,381,255,91,,,,2,,1200,,, +1278,G,,Crush AM (LPAM),,Hatfield/UH (EN-HTS),51.752778,-0.241111,,0.001,,458,268,91,,,,1,,1201,,, +1278,G,en,Blue Bull R (LPAM),,Marham/RAF (EN-NFK),52.654444,0.547222,,0.001,,402,281,91,,,,,,2800014,,, +1278,G,en,Harlow Hospital R (LPAM),,Harlow (EN-ESX),51.783333,0.133333,,0.001,,432,268,91,,,,,,1202,,, +1278,G,en,Red Sands R,,Whitstable (EN-KNT),51.35,1.1,,0.001,,375,259,91,,,,,,2800003,,, +1278,OMA,ar,R Sultanate Oman,,Bahla (dkl),22.95,57.3,,100,,5377,107,91,,0000-2400,1234567,,,11700019,,, +1278,G,,D:ONE,,Derby (EN-DRB),52.966667,-1.5,,0.001,,543,283,92,,,,,,2573,,, +1278,G,,Trust AM (LPAM),,Worksop (EN-NHS),53.3,-1.116667,,0.001,,524,288,92,,,,983,,1198,,, +1278,G,en,Castle R (LPAM),,Nottingham/Castle College (EN-NHS),52.950833,-1.152778,,0.001,,520,283,92,,,,,,2800015,,, +1278,G,,BFBS Gurkha R,,Stafford/Beacon Barracks (EN-SFS),52.8,-2.1,,0.001,,581,281,93,,,,2,,2800009,,, +1278,G,en,Pinesbury AM (LPAM),,Swindon/Beech Avenue (EN-WLT),51.581389,-1.788889,,0.001,,566,267,93,,,,,,2800016,,, +1278,G,,R Royal (LPAM),,Falkirk (SC-FLK),56,-3.8,,0.001,,793,307,95,,,,,,1203,,, +1278,RUS,xx,R Rossii,,Barguzin (BU),53.616667,109.616667,,25,,6281,44,106,,2057-1700,1234567,,,50329,,, +1278,RUS,xx,R Rossii,,Severobaykalsk (BU),55.628222,109.345,,7,,6114,42,110,,2057-1700,1234567,,,46805,,, +1278,AGL,pt,RNA Em. Prov. do Cabinda,,Tenda (cab),-5.256528,12.153889,,10,,6402,173,111,,0500-2300,1234567,41,,2499,,, +1278,RUS,xx,R Rossii,,Bagdarin (BU),54.416011,113.538367,,5,,6399,41,114,,2057-1700,1234567,,,46804,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Shijiazhuang/HBTS717 (HB),37.830833,114.468889,,100,,7840,53,115,,,,,,36200825,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Tangshan (HB),39.6679,118.284117,,100,,7881,49,116,,????-1700,1234567,,,50316,,, +1278,CHN,,Daxing'anling RGD,,Jagdaqi (HL),50.421389,124.158056,,7.5,,7203,39,120,,,,,,50312,,, +1278,CHN,bo,CNR 11,,Lhaz=Lazi (XZ),29.088889,87.633333,,1,,6922,77,126,,,,,,36201226,,, +1278,J,ja,JOFR RKB Mainichi Hoso,,Fukuoka (kyu-fuk),33.686667,130.428611,,50,,9036,44,127,,0000-2400,1234567,0,,50324,,, +1278,CHN,bo,CNR 11,,Nedong=Naidong (XZ),29.202833,91.775944,,1,,7187,74,129,,,,,,36201227,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Zhangbei (HB),41.15,114.716667,,1,,7565,50,133,,,,,,36201228,,, +1278,CHN,,Nanchang RGD,,Nanchang/JXTS801 (JX),28.647639,115.867794,,10,,8732,58,133,,2000-1700,1234567,,,50313,,, +1278,CHN,zh,Hebei RGD Xinwen Guangbo,,Zhangjiakou/HBTS109 (HB),40.600556,115.0925,,1,,7632,51,133,,,,,,36200002,,, +1278,CHN,,Xiamen RGD Xinwen Pindao,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,10,,9229,58,134,,????-1500,1234567,,,50317,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Baoding/HBTS662 (HB),38.932778,115.443056,,1,,7796,51,135,,,,,,36200386,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Langfang (HB),39.516667,116.7,,1,,7812,50,135,,,,,,36200383,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Cangzhou (HB),38.275917,116.768333,,1,,7925,51,136,,,,,,36200385,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Hengshui (HB),37.733333,115.7,,1,,7915,52,136,,,,,,36200384,,, +1278,CHN,,Hebei RGD Xinwen Guangbo,,Xingtai (HB),37.066667,114.516667,,1,,7910,53,136,,,,,,36200382,,, +1278,PHL,tl,DZRM-AM Radyo Magasin,,Malolos (bul),14.863361,120.810033,,10,,10280,62,138,,2100-1700,1234567,,,50327,,, +1278,KOR,,HLQV KBS 1 R,,Hapcheon (gsn),35.566389,128.165,,1,,8750,45,143,,0000-2400,1234567,,,50325,,, +1278,TWN,,Fuhsingkang College R,,Taipei/Fuhsingkang College (TPS),25.143356,121.492714,,0.5,,9372,55,148,,,,,,50330,,, +1278,INS,id,R 68H Pikonane,,Kurima/Anyelma (PA-yah),-3.833333,136.333333,,1,,12953,59,157,,2100-1400,1234567,,,50321,,, +1278,AUS,en,3EE Magic 1278,,Melbourne/Lower Plenty (VIC),-37.744556,145.110667,,5,,16456,80,161,,0000-2400,1234567,,,47916,,, +1278,NZL,en,Newstalk ZB,,Rotokare (TKI),-39.463236,174.300833,,2.5,,18329,38,171,,,,,,32500009,,, +1278,NZL,,2ZC Newstalk ZB,,Napier/Pakowhai (HKB),-39.561111,176.866111,,2,,18439,31,172,,0000-2400,1234567,,,50326,,, +1280,CAN,xx,CFMB,,Montral/Saint-Mathieu (QC),45.325278,-73.548056,,50,,5612,296,96,,,,9967,,35983,,, +1280,USA,en,WFAU,,Gardiner (ME),44.248056,-69.814167,,5,,5454,293,105,,,,997,,41357,,, +1280,USA,es,WADO,i,New York/Carlstadt [NJ] (NY),40.826667,-74.075556,,7.2,,5965,292,108,,,,,,40653,,, +1280,USA,,WHTK,i,Rochester (NY),43.098333,-77.583611,,5,,6017,296,110,,,,1,,41694,,, +1280,USA,en,WPKZ,,Fitchburg (MA),42.594444,-71.836667,,1,,5696,292,114,,,,994,,41271,,, +1280,USA,,WYAL,,Scotland Neck (NC),36.135833,-77.435833,,5,,6534,290,115,,,,,,43503,,, +1280,CAN,en,CJSL,,Estevan (SK),49.057222,-102.922778,,10,,6941,316,116,,,,994,,36221,,, +1280,USA,,WNAM,,Neenah-Menasha (WI),44.100278,-88.533889,,5,,6589,304,116,,,,3,,42426,,, +1280,BER,en,VSB2 BBN,,Ireland Island South (-),32.313694,-64.842111,,1,,5997,278,117,,0000-2400,1234567,997,,46795,,, +1280,USA,,WWTC,,Minneapolis (MN),44.961389,-93.356667,,5,,6789,307,118,,,,997,,43434,,, +1280,USA,,WJST,,New Castle (PA),40.953889,-80.318056,,1,,6345,296,120,,,,,,41932,,, +1280,USA,,KZNS,,Salt Lake City (D) (UT),40.851944,-111.968611,,50,,8097,316,121,,,,14,,39898,,, +1280,USA,,WHVR,,Hanover (PA),39.819722,-77.006944,,0.5,,6225,293,122,,,,,,41700,,, +1280,CAN,fr,CBPP-1,,Parc National de l.-P.-. (PE),46.486389,-63.313611,,0.02,,4897,292,123,,,,,,20109182,,, +1280,USA,,KVXR,,Moorhead (MN),46.819444,-96.765556,,1,,6820,311,125,,,,,,39659,,, +1280,USA,,WSAT,,Salisbury (NC),35.675,-80.508333,,1,,6766,292,125,,,,,,42951,,, +1280,B,pt,ZYJ455 Super Rdio Tupi,,Rio de Janeiro/Rua Antonio Leoncio (RJ),-22.773611,-43.067222,,100,,9609,225,126,,,,2,,36902100,,, +1280,USA,,WBWX,,Berwick (PA),41.076667,-76.258889,,0.164,,6084,294,126,,,,,,41363,,, +1280,USA,,WJWK,,Seaford (DE),38.613056,-75.586667,,0.211,,6226,291,126,,,,,,41941,,, +1280,USA,,WONW,,Defiance (OH),41.278889,-84.397222,,0.5,,6567,299,126,,,,,,42609,,, +1280,VEN,,YVQS R Zaraza,,Zaraza (gco),9.316667,-65.266667,,10,,7944,261,126,,1000-0300,1234567,,,45433,,, +1280,USA,,WGBF,,Evansville (IN),37.995833,-87.476667,,1,,7012,298,127,,,,,,41481,,, +1280,USA,en,WANS,,Anderson (SC),34.538056,-82.691111,,1,,6995,292,127,,,,,,40727,,, +1280,USA,,WBIG,,Aurora (IL),41.769444,-88.245556,,0.5,,6756,302,128,,,,,,40858,,, +1280,USA,es,WODT,,New Orleans (LA),29.895278,-90.004444,,5,,7839,294,128,,,,,,42565,,, +1280,PTR,es,WCMN,,Arecibo (PR),18.481111,-66.687778,,1,,7249,269,129,,0000-2400,1234567,5,,41037,,, +1280,USA,,KBNO,,Denver (CO),39.601389,-104.98,,5,,7862,311,129,,,,995,,38070,,, +1280,VEN,,YVOF R Trujillo,,Trujillo (tjl),9.366667,-70.4,,10,,8288,265,130,,,,,,45406,,, +1280,DOM,,HIHZ R Clave,,Monte Plata (mp),18.8,-69.783333,,1,,7434,271,131,,1000-0300,1234567,,,52246,,, +1280,USA,,KCNI,,Broken Bow (NE),41.408611,-99.674444,,1,,7425,308,131,,,,,,38183,,, +1280,USA,,WJAY,,Mullins (SC),34.191667,-79.315278,,0.27,,6808,290,131,,,,,,41842,,, +1280,DOM,,HIJH Cadena Espacial,,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,,,,,52245,,, +1280,USA,,WMCP,,Columbia (TN),35.618889,-86.981111,,0.5,,7175,296,132,,,,,,42292,,, +1280,USA,,WYVE,,Wytheville (VA),36.965,-81.080556,,0.164,,6701,293,132,,,,,,43555,,, +1280,USA,es,WIPC,,Lake Wales (D) (FL),27.926111,-81.601111,,1,,7466,287,132,,,,,,20016046,,, +1280,CLM,es,HJHO Impacto Popular,,San Juan del Cesar (lag),10.766667,-72.983333,,5,,8342,268,133,,,,88,,2036,,, +1280,USA,en,WDNT,,Dayton (TN),35.47,-85.0375,,0.31,,7067,295,133,,,,,,41190,,, +1280,B,pt,ZYI688 Rdio Sanhau,,Bayeux (PB),-7.1253,-34.934528,,1,,7664,225,134,,,,991,,36902101,,, +1280,CLM,es,HJSO R Playa Mend,,Barranquilla (atl),11,-74.783333,,5,,8444,270,134,,,,,,37637,,, +1280,CUB,es,R Mamb,,Santiago de Cuba/CTOM2 (sc),20.100044,-75.8203,,1,,7735,277,134,,,,,,31600041,,, +1280,USA,,WFYC,,Alma (MI),43.368889,-84.605278,,0.056,,6418,301,134,,,,,,41464,,, +1280,USA,en,WMXB,,Tuscaloosa (AL),33.218611,-87.568056,,0.5,,7409,295,134,,,,,,43423,,, +1280,CLM,es,HJRP,,Tib (nsa),8.65,-72.733333,,5,,8509,267,135,,,,,,35901643,,, +1280,USA,en,WCPM,,Cumberland (KY),36.973611,-82.9875,,0.115,,6819,294,135,,,,,,41067,,, +1280,USA,es,WIPC,,Lake Wales (N) (FL),27.925,-81.604444,,0.5,,7466,287,135,,,,,,41790,,, +1280,CAN,xx,CBQG,,Wrigley (NT),63.217222,-123.44,,0.04,,6470,336,136,,,,,,20109181,,, +1280,CUB,es,R Trinidad,,Trinidad (ss),21.8,-79.983333,,1,,7872,281,136,,,,,,31600132,,, +1280,PRG,,ZP53 R LV del Este,,Ciudad del Este (apa),-25.316667,-54.666667,,20,,10447,232,136,,,,,,45549,,, +1280,USA,en,KIT,,Yakima (WA),46.571944,-120.494722,,1,,7935,325,136,,,,997,,38639,,, +1280,CLM,es,HJKN R Unica,,Bogot D. C. (bdc),4.616667,-74.166667,,5,,8960,265,137,,,,23,,37528,,, +1280,CLM,es,HJTK,,Caicedonia (val),4.333333,-75.833333,,5,,9098,267,137,,,,,,35901644,,, +1280,CTR,,TIHT R Alajuela,,Alajuela (alj),10.016667,-84.25,,5,,9175,277,137,,1030-0300,1234567,,,40584,,, +1280,USA,,KRVM,i,Eugene (OR),44.100833,-123.051667,,1.5,,8273,325,138,,,,9789,,39310,,, +1280,USA,en,WIBB,,Macon (GA),32.804444,-83.604444,,0.099,,7194,292,139,,,,,,42141,,, +1280,GTM,,TGVY R Zamaneb,,Salam (bvp),15.1,-90.266667,,2.5,,9134,285,140,,1100-0200,1234567,,,52136,,, +1280,USA,,KXTK,,Arroyo Grande (CA),35.145556,-120.520833,,2.5,,9032,319,140,,,,9994,,39827,,, +1280,USA,,KZNS,,Salt Lake City (N) (UT),40.851944,-111.968056,,0.67,,8097,316,140,,,,,,20016049,,, +1280,USA,,WPID,,Piedmont (AL),33.930556,-85.583333,,0.084,,7226,294,140,,,,,,42691,,, +1280,USA,es,KLDY,,Lacey (WA),47.062222,-122.830278,,0.5,,7979,326,140,,,,,,38794,,, +1280,HND,,HRYT,,San Pedro Sula (cor),15.5,-88.016667,,2,,8950,283,141,,,,,,37885,,, +1280,USA,,KNBY,,Newport (AR),35.610556,-91.250556,,0.088,,7435,299,142,,,,,,38965,,, +1280,USA,,KYRO,,Potosi (MO),39.053611,-90.996389,,0.045,,7135,301,142,,,,,,39870,,, +1280,USA,,WGLR,,Lancaster (WI),42.838333,-90.670556,,0.022,,6810,304,142,,,,,,41529,,, +1280,ARG,es,LU11 R Trenque Lauquen,,Trenque Lauquen (ba),-35.989661,-62.724542,,10,,11861,232,143,,0900-0300,1234567,,,40204,,, +1280,CLM,es,HJNQ,,Barbosa (sat),5.916667,-73.616667,,1,,8808,266,143,,,,,,37594,,, +1280,HND,,HRAM,,Olanchito (yor),15.483333,-86.583333,,1,,8856,282,143,,,,,,37737,,, +1280,MEX,es,XEAW-AM,,Monterrey (nvl),25.699128,-100.2072,,1,,8829,299,143,,,,,,43745,,, +1280,MEX,es,XECAM-AM,,Campeche (cam),19.848889,-90.534722,,1,,8737,288,143,,,,,,43812,,, +1280,MEX,es,XESQ-AM R San Miguel,,San Miguel Allen (gua),20.862728,-100.754183,,1.5,,9294,296,143,,,,,,44765,,, +1280,USA,,KDKD,,Clinton (MO),38.395,-93.771667,,0.058,,7351,302,143,,,,,,38275,,, +1280,USA,,KPRV,,Poteau (OK),35.015278,-94.651667,,0.108,,7686,301,143,,,,,,39166,,, +1280,USA,,KSOK,,Arkansas City (KS),37.086111,-97.032778,,0.1,,7648,304,143,,,,,,39395,,, +1280,USA,en,KWSX,i,Stockton (D) (CA),37.982778,-121.229444,,1,,8789,321,143,,,,,,20016200,,, +1280,USA,en,KWSX,i,Stockton (N) (CA),37.981944,-121.228889,,1,,8789,321,143,,,,9982,,39605,,, +1280,USA,en,KZFS,,Spokane (WA),47.6075,-117.361111,,0.125,,7711,323,143,,,,,,37963,,, +1280,USA,en,WTMY,,Sarasota (FL),27.336389,-82.573611,,0.1,,7579,287,143,,,,,,43180,,, +1280,CLM,es,HJMB,,Concordia (ant),6.066667,-75.9,,1,,8951,268,144,,,,,,37561,,, +1280,EQA,,HCAA4,,Portoviejo (man),-1.066667,-80.45,,2,,9887,267,144,,,,,,36830,,, +1280,EQA,,HCRP3,,Arenillas (oro),-3.266667,-79.966667,,2,,10047,265,144,,,,,,37103,,, +1280,MEX,es,XETUT-AM R Tamaulipas,,Tula (tam),22.991667,-99.65,,1,,9036,296,144,,,,,,44869,,, +1280,NCG,es,R La Voz Apostlica,,Managua (mng),12.247222,-86.047222,,1,,9102,279,144,,,,,,33700001,,, +1280,SLV,es,YSMQ,,San Vicente (svc),13.616667,-88.783333,,1,,9166,282,144,,,,,,31100008,,, +1280,SLV,es,YSQV R CRET,,Santa Ana/Altos del Palmar (sta),13.979444,-89.566111,,1,,9186,283,144,,,,,,31100005,,, +1280,USA,,KCOB,,Newton (IA),41.736389,-93.02,,0.019,,7032,304,144,,,,,,38189,,, +1280,USA,,KFRN,,Long Beach (CA),33.798333,-118.246389,,1,,9056,316,144,,,,9966,,38427,,, +1280,CLM,es,HJCM R Sur,,Pitalito (hui),1.816667,-76.016667,,1,,9331,265,145,,,,13,,37373,,, +1280,CLM,es,HJLR Caracol Colombia,,Pasto (nar),1.166667,-77.316667,,1,,9477,266,145,,,,994,,37553,,, +1280,MEX,es,XEPVI-AM,,Xalisco (nay),21.441667,-104.9,,1,,9493,300,145,,,,,,34900028,,, +1280,USA,,KSLI,,Abilene (TX),32.441667,-99.718889,,0.226,,8204,302,145,,,,,,39379,,, +1280,EQA,,HCAB1 La Cariosa,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36831,,, +1280,EQA,,HCWW5,,Riobamba (chi),-1.316667,-78.616667,,1,,9784,265,146,,,,,,37187,,, +1280,MEX,es,XEBW-AM,,Chihuahua (chi),28.629844,-105.965764,,0.6,,8900,305,146,,,,,,43797,,, +1280,URG,,CX128 R Noticias Tacuarembo,,Tacuaremb (ta),-31.716667,-55.966667,,3,,11113,230,146,,0900-0300,1234567,,,51721,,, +1280,USA,en,WDSP,,De Funiak Springs (FL),30.711389,-86.106944,,0.046,,7525,292,146,,,,,,41577,,, +1280,EQA,,HCIN4 Voz del Sur,,El Cacao (gua),-1.35,-80.083333,,1,,9887,266,147,,,,,,36973,,, +1280,USA,en,WPNQ973,,Okobji (IA),43.375528,-95.125833,,0.01,,7014,307,147,,,,,,20010652,,, +1280,MEX,es,XEBON-AM R Frmula 3,,Guadalajara (jal),20.666439,-103.360094,,0.5,,9471,298,148,,,,,,44625,,, +1280,MEX,es,XEEG-AM ABC R,,Puebla (pue),19.008106,-98.088533,,0.5,,9295,293,148,,,,996,,43960,,, +1280,PRU,,OBX3C,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000088,,, +1280,USA,es,KMFR,,Pearsall (TX),28.886944,-99.111111,,0.19,,8481,300,149,,,,,,39473,,, +1280,USA,es,KRZE,,Farmington (NM),36.8175,-108.096389,,0.108,,8272,311,149,,,,,,39320,,, +1280,USA,,KWHI,,Brenham (TX),30.168056,-96.422222,,0.072,,8208,299,150,,,,,,39709,,, +1280,ARG,es,R Apocalipsis II,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,0300-1500,1234567,,,33000078,,, +1280,ARG,es,R Punto,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,1500-0300,1234567,,,33000078,,, +1280,USA,en,WQCA448,,Miramar (FL),25.981083,-80.380944,,0.01,,7547,284,152,,,,,,20010648,,, +1280,USA,en,WQCA448,,Miramar (FL),25.981111,-80.227694,,0.01,,7537,284,152,,,,,,20010649,,, +1280,USA,en,WQCA448,,Miramar (FL),25.994303,-80.294358,,0.01,,7541,284,152,,,,,,20010650,,, +1280,USA,en,WQCF602,,Miami (FL),25.592389,-80.511006,,0.01,,7588,284,153,,,,,,20010651,,, +1280,URG,,CW64,,Termas del Arapey (sa),-30.983333,-57.516667,,0.5,,11127,231,154,,,,,,36780,,, +1280,USA,,KXEG,,Phoenix (AZ),33.492222,-112.141111,,0.049,,8785,312,156,,,,,,39784,,, +1280,CHL,,CD128 R del Sur En Voz Alta,,Osorno (AI),-45.466667,-72.666667,,1,,13204,232,158,,,,,,35865,,, +1280,USA,,KQLL,,Henderson (NV),36.210833,-115.163056,,0.028,,8681,315,158,,,,,,38287,,, +1280,CHL,,CC128 R Arturo Prat Chacon AM,,San Carlos (BI),-36.4,-71.933333,,0.25,,12412,238,161,,1050-0405,1234567,,,35808,,, +1280,USA,en,WPGK943,,Mill Valley (CA),37.912972,-122.579139,,0.01,,8854,321,163,,,,,,20010654,,, +1280,USA,en,WPQB916,,Alameda/1432 San Antonio Ave (CA),37.777675,-122.261639,,0.01,,8854,321,163,,,,,,20010653,,, +1285,RUS,,SW,b,Savelovo,56.354167,37.458333,,0.025,,2053,64,94,,,,972,L1003 U1010 30.0s,IDx2 + 22 gap,85892,, +1287,E,es,SER,,Lleida=Lrida/Granyena (CAT-L),41.624361,0.653439,,5,,1244,203,62,,0000-2400,1234567,2,,1209,,, +1287,E,es,SER,,Lugo/As Arierias (GAL-LU),42.991628,-7.578247,,10,,1455,231,62,,0000-2400,1234567,,,1211,,, +1287,E,es,SER,,Burgos (CAL-BU),42.334014,-3.680417,,5,,1325,219,63,,0000-2400,1234567,9989,,1210,,, +1287,RUS,,Voice of Russia,,Bolshakovo (KA),54.905689,21.694433,,1,,1055,67,68,,1600-2400,1234567,,,6700146,,, +1287,RUS,ru,Voice of Russia,,Bolshakovo (KA),54.905689,21.694433,,1,,1055,67,68,,0900-1400,1234567,,,6700146,,, +1287,RUS,ru,R Rossii,,Grozny (CC),43.262197,45.725561,,50,,3060,93,71,,,,9997,,6700004,,, +1287,POR,pt,Antena 1,,Portalegre (ple),39.308639,-7.413917,,2,,1776,222,72,,0000-2400,1234567,,,1246,,, +1287,GRC,el,R 322,,Athnai (att-ath),38,23.75,,0.7,,2067,133,79,,0000-2400,1234567,995,,3400032,,, +1287,IRN,fa,IRIB R Fars,,Lar (frs),27.65325,54.294389,,100,,4784,106,85,,,,43,,1808,,, +1287,KGZ,en,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1445-1500,1234567,,,2230,,, +1287,KGZ,en,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,2300-2315,1234567,,,2230,,, +1287,KGZ,en,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,2315-2345,......7,,,2230,,, +1287,KGZ,kk,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1500-1515,1234567,,,2230,,, +1287,KGZ,kk,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1715-1725,1234567,,,2230,,, +1287,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,0000-1230,1234567,,,2230,,, +1287,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1755-1900,1234567,,,2230,,, +1287,KGZ,ky,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1545-1600,1234567,,,2230,,, +1287,KGZ,ky,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1630-1645,1234567,,,2230,,, +1287,KGZ,ky,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1745-1755,1234567,,,2230,,, +1287,KGZ,ru,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1515-1545,.....67,,,2230,,, +1287,KGZ,ru,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1645-1700,1234567,,,2230,,, +1287,KGZ,tg,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1700-1715,1234567,,,2230,,, +1287,KGZ,ug,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1600-1630,1234567,,,2230,,, +1287,KGZ,uz,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1515-1545,12345..,,,2230,,, +1287,KGZ,uz,TWR Asia,,Krasnaya Rechka (cuy),42.883,74.985872,,150,,5055,73,86,,1725-1745,1234567,,,2230,,, +1287,G,,BFBS Gurkha R,,Maidstone (EN-KNT),51.283333,0.533333,,0.001,,415,260,91,,,,,,1230,,, +1287,G,,BHR 1287 (LPAM),,Basildon (EN-ESX),51.557167,0.451639,,0.001,,414,264,91,,,,96,,1231,,, +1287,G,,R Hotspot (LPAM),,Ipswich/Holbrook (EN-SFK),51.983333,1.16,,0.001,,359,270,91,,,,10,,1236,,, +1287,G,,BCRL (LPAM),,Bicester (EN-OXF),51.9,-1.15,,0.001,,518,270,92,,,,,,1215,,, +1287,G,,Insanity (LPAM),,Egham (EN-SUR),51.433333,-0.566667,,0.001,,486,264,92,,,,,,1237,,, +1287,G,,Junction 11 (LPAM),,Reading (EN-BER),51.466667,-0.983333,,0.001,,513,265,92,,,,,,1238,,, +1287,G,,R Gwendolen (LPAM),,Leicester (EN-LEI),52.616667,-1.133333,,0.001,,515,279,92,,,,,,1235,,, +1287,G,,Surge (LPAM),,Southampton (EN-HPS),50.916667,-1.416667,,0.001,,557,259,92,,,,,,1234,,, +1287,G,en,BFBS R,,Aldershot (EN-HPS),51.25,-0.766667,,0.001,,504,262,92,,,,,,1213,,, +1287,G,en,Hemel Hospital R,,Hemel Hempstead (EN-HTS),51.766667,-0.466667,,0.001,,473,268,92,,,,,,1242,,, +1287,G,,Nevill Hall Sound (LPAM),,Abergavenny (WA-MOM),51.833333,-3,,0.001,,645,271,93,,,,,,1239,,, +1287,G,,R Redhill (LPAM),,Redhill (EN-SOM),51.316667,-2.716667,,0.001,,635,266,93,,,,,,1241,,, +1287,G,,Solar AM (LPAM),,St. Helens (EN-MER),53.466667,-2.733333,,0.001,,633,287,93,,,,0,,1240,,, +1287,G,en,BFBS R,,Bulford (EN-WLT),51.2,-1.766667,,0.001,,573,263,93,,,,,,1214,,, +1287,G,en,BFBS R,,Catterick (EN-NYK),54.366667,-1.633333,,0.001,,591,298,93,,,,,,1212,,, +1287,G,en,BFBS R,,Tidworth (EN-WLT),51.083333,-1.8,,0.001,,578,262,93,,,,,,2374,,, +1287,G,,R Coombeshead (LPAM),,Newton Abbot (EN-DVN),50.533333,-3.6,,0.001,,717,260,94,,,,,,1232,,, +1287,G,,R Glan Clwyd,,Rhyl (WA-DBG),53.316667,-3.483333,,0.001,,679,285,94,,,,,,1244,,, +1287,G,,Crawley Hospital R (LPAM),,Crawley (EN-WSU),51.116667,-0.2,,0.0005,,469,259,95,,,,,,1233,,, +1287,G,,Victoria R Network (LPAM),,Kirkcaldy (SC-FIF),56.116667,-3.166667,,0.001,,766,309,95,,,,,,1243,,, +1287,G,en,BFBS R,,Ballykinler/Abercorn Barracks (NI-DWN),54.252778,-5.794444,,0.001,,846,291,95,,,,,,1224,,, +1287,G,en,BFBS R,,Aldergrove (NI-ANT),54.65,-6.216667,,0.001,,882,294,96,,,,,,1217,,, +1287,G,en,BFBS R,,Ballykelly (NI-LDR),55.05,-7.016667,,0.001,,943,296,96,,,,,,1218,,, +1287,G,en,BFBS R,,Ballymena (NI-ANT),54.866667,-6.266667,,0.001,,891,295,96,,,,,,2800006,,, +1287,G,en,BFBS R,,Holywood/Palace Baracks (NI-DWN),54.626944,-5.847222,,0.001,,859,294,96,,,,,,1227,,, +1287,G,en,BFBS R,,Bessbrook Mill (NI-ARM),54.2,-6.416667,,0.0005,,885,290,99,,,,,,1225,,, +1287,IND,,AIR West,,Panaji A (GA),15.459111,73.847906,,100,,7123,98,108,,0025-0405,1234567,9963,,50343,,, +1287,IND,,AIR West,,Panaji A (GA),15.459111,73.847906,,100,,7123,98,108,,0630-0930,1234567,9963,,50343,,, +1287,IND,,AIR West,,Panaji A (GA),15.459111,73.847906,,100,,7123,98,108,,1200-1742,1234567,9963,,50343,,, +1287,BGD,,Bangladesh Betar,,Barisal (bar),22.674017,90.336969,,20,,7633,80,120,,0445-1115,1234567,,,50333,,, +1287,CHN,,Fuxin RGD,,Fuxin/LNTS322 (LN),41.995119,121.732717,,20,,7846,45,122,,,,,,50337,,, +1287,CHN,,Ningxia RGD,,Guyuan (NX),36.256111,106.166389,,10,,7505,59,122,,2115-1830,1234567,,,50338,,, +1287,J,ja,JOHR HBC Hokkaido Hoso,,Sapporo (hok),43.134722,141.531667,,50,,8581,32,125,,0000-2400,1234567,9993,,50346,,, +1287,CHN,,Chuxiong RGD,,Chuxiong/YNTS692 (YN),25.020511,101.555006,,10,,8174,70,129,,,,,,50335,,, +1287,CHN,,Shenzhen RGD Lingnan zhi Sheng,,Shenzhen (GD),22.511622,114.034061,,25,,9175,63,130,,2225-1800,1234567,,,50339,,, +1287,KOR,ko,HLAF MBC,,Gangneung (gan),37.788333,128.901944,,10,,8576,43,132,,0000-2400,1234567,,,50349,,, +1287,KOR,ko,HLAX MBC,,Cheongju (ccb),36.6,127.433333,,10,,8618,45,132,,0000-2400,1234567,,,50348,,, +1287,CHN,zh,CNR 1,,Ningde/FJTS901 (FJ),26.733222,119.57125,,10,,9117,56,134,,2025-1805,1234567,,,36201036,,, +1287,THA,th,Sor. Or. Tor. Smart R,,Samut Prakan/Bang Phli (spk),13.613889,100.677778,,10,,9104,78,134,,2200-1800,1234567,,,50354,,, +1287,THA,th,Wor. Por. Thor. 6,,Ubon Ratchathani (urt),15.266667,104.866667,,10,,9237,74,135,,2200-1455,1234567,,,50355,,, +1287,TWN,,Han Sheng Kuangpo Tientai,,Taichung (TCS),24.131711,120.694756,,10,,9420,57,135,,2100-1600,1234567,,,50357,,, +1287,CHN,,Renqiu RGD,,Renqiu (HB),38.7,116.1,,1,,7852,51,136,,2225-1600,1234567,,,36200381,,, +1287,CHN,,Xuchang RGD,,Xuchang (HE),34.033333,113.8,,1,,8136,56,138,,0930-1500,1234567,,,50342,,, +1287,CHN,,Xuchang RGD,,Xuchang (HE),34.033333,113.8,,1,,8136,56,138,,2155-????,1234567,,,50342,,, +1287,PHL,,DZZH-AM (r:666 DZRH-AM),,Sorsogon City/Cabitan (sor),12.966667,124,,5,,10646,60,142,,,,,,50351,,, +1287,CHN,,Zhejiang zhi Sheng,,Dongtou (ZJ),29.15,121.45,,1,,9001,53,144,,2130-1605,1234567,,,50336,,, +1287,CHN,zh,CNR 2,,Quanzhou/FJTS401 (FJ),24.882722,118.596917,,1,,9230,58,144,,2100-1602,1234567,,,36201283,,, +1287,PHL,,DXRC-AM Super Radyo,,Zamboanga City (zds),6.933333,122.1,,5,,11090,65,144,,2000-1230,1234567,,,50352,,, +1287,TWN,,Min Li Kuangpo Tientai,,Fangliao (PT),22.385278,120.580556,,1,,9574,58,146,,,,,,50356,,, +1287,INS,,Java R Station,,Semarang (JT-kse),-6.966667,110.483333,,1,,11578,83,152,,,,,,35400141,,, +1287,AUS,,2TM,,Tamworth/Kingswood (NSW),-31.164806,150.920972,,2,,16318,65,165,,0000-2400,1234567,,,50332,,, +1287,NZL,,3ZW Newstalk ZB,,Westport/Cape Foulwind (WTC),-41.750167,171.466194,,2,,18404,50,172,,,,,,50350,,, +1290,UKR,,BO,b,Bohdanivka,50.645833,30.875,,0.025,,1698,86,90,,,,,L1030 U1020 ,IDx2 + 20 gap,85893,, +1290,RUS,,TU,b,Bely (TV),55.854167,32.958333,,0.025,,1773,66,91,,,,3,L1024 U1031 ,85896,,, +1290,RUS,,P,b,Murmansk / Murmashi South (MU),68.8125,32.708333,,0.025,,2313,27,96,,,,,15.1s,IDx2,85894,, +1290,RUS,,R,b,Murmansk (MU),68.770833,32.791667,,0.025,,2312,27,96,,,,0,L1040 U1030 15.0s,IDx2,85895,, +1290,USA,es,WRNI,i,Providence (RI),41.855833,-71.444722,,10,,5724,291,104,,,,,,42888,,, +1290,USA,,WKBK,,Keene (NH),42.946111,-72.309167,,5,,5701,293,107,,,,9995,,41963,,, +1290,CAN,en,CJBK,,London (ON),42.868889,-81.2325,,10,,6256,298,110,,,,1,,36145,,, +1290,USA,,WNBF,,Binghamton (NY),42.058056,-75.954167,,5,,5993,294,110,,,,2,,42433,,, +1290,CAN,en,CFRW,,Winnipeg (MB),49.799444,-97.275,,10,,6605,313,113,,,,1,,36008,,, +1290,USA,,WHIO,,Dayton (OH),39.678889,-84.130278,,5,,6676,297,117,,,,1,,41641,,, +1290,USA,en,WZTI,,Greenfield (WI),42.919722,-87.988056,,5,,6650,302,117,,,,9985,,42294,,, +1290,USA,,KOUU,,Pocatello (D) (ID),42.9575,-112.429444,,50,,7926,317,119,,,,,,20012583,,, +1290,USA,,WIRL,,Peoria (IL),40.623333,-89.590833,,5,,6926,301,119,,,,2,,43372,,, +1290,USA,,WFBG,,Altoona (PA),40.455556,-78.397222,,1,,6264,294,120,,,,,,41361,,, +1290,USA,,WTKS,,Savannah (GA),32.090556,-81.148611,,5,,7095,289,121,,,,,,43158,,, +1290,USA,en,KOIL,,Omaha (NE),41.188889,-96.005833,,5,,7244,306,122,,,,1,,38705,,, +1290,USA,,WVOW,,Logan (WV),37.856111,-81.971944,,1,,6686,294,124,,,,,,43337,,, +1290,USA,en,WHKY,,Hickory (NC),35.726389,-81.300556,,1,,6813,292,125,,,,,,41654,,, +1290,USA,en,WJNO,,West Palm Beach (FL),26.763889,-80.204722,,4.9,,7471,285,125,,,,9946,,41905,,, +1290,USA,,KGVO,,Missoula (MT),46.829722,-114.079167,,5,,7645,321,126,,,,1,,38519,,, +1290,B,pt,ZYH888 Rdio Timbira do Maranho,,So Lus (MA),-2.533333,-44.305556,,5,,7705,236,127,,,,15,,36902112,,, +1290,VEN,es,YVLF R Puerto Cabello,,Puerto Cabello (cbb),10.488444,-67.992181,,10,,8026,264,127,,0000-2400,1234567,15,,2201,,, +1290,USA,,KUMA,,Pendleton (OR),45.673611,-118.746667,,5,,7949,323,130,,,,996,,39579,,, +1290,USA,es,WCHK,,Canton (GA),34.252222,-84.463611,,0.5,,7130,293,131,,,,,,40994,,, +1290,USA,,WWTX,i,Wilmington (DE),39.734167,-75.528889,,0.032,,6138,292,133,,,,,,43438,,, +1290,CLM,es,HJEB,,Santa Marta/El Rodadero (mag),11.183333,-74.166667,,5,,8386,270,134,,,,,,37406,,, +1290,USA,,KOWB,,Laramie (WY),41.283889,-105.580833,,1,,7744,312,134,,,,994,,39115,,, +1290,CLM,es,HJOI R Chacur,,Sampues/S Onofre (suc),9.716667,-75.516667,,5,,8606,270,135,,,,,,37609,,, +1290,CLM,es,HJSZ,,Saravena (ara),6.966667,-71.883333,,5,,8598,265,135,,,,,,35901651,,, +1290,URG,,CX129,,Carmelo (co),-34,-58.266667,,50,,11444,230,135,,,,,,36787,,, +1290,URG,es,CX38 RNU,,Santiago Vzquez (mo),-34.80725,-56.363111,,50,,11419,228,135,,1000-0300,1234567,5,,36815,,, +1290,USA,,WCCC,,West Hartford (CT),41.796667,-72.797222,,0.011,,5814,292,135,,,,,,43173,,, +1290,USA,,WOPP,,Opp (AL),31.290833,-86.230833,,0.5,,7485,292,135,,,,,,42615,,, +1290,USA,en,WDZY,,Colonial Heights (VA),37.258333,-77.394444,,0.041,,6445,291,135,,,,0,,41232,,, +1290,CLM,,HJHI,,Garagoa (boy),5.083333,-73.366667,,5,,8864,265,136,,,,,,37471,,, +1290,USA,,KPAY,,Chico (CA),39.710556,-121.787778,,5,,8646,322,136,,,,99933,,39129,,, +1290,USA,,KRGE,,Weslaco (TX),26.21,-97.909167,,5,,8645,297,136,,,,,,39243,,, +1290,USA,,WOMP,,Bellaire (OH),40.035833,-80.771111,,0.033,,6443,296,136,,,,,,42601,,, +1290,CLM,es,HJMC R Viva 12-90,,Cali (val),3.566667,-76.45,,5,,9207,267,137,,,,2683,,37562,,, +1290,CLM,es,HJNE,,Granada (met),3.533333,-73.7,,5,,9023,264,137,,,,,,35901653,,, +1290,PNR,es,R nica,,Guarar/La Guaca (lsn),7.805711,-80.274281,,5.5,,9097,272,137,,,,,,52341,,, +1290,SLV,,YSLV,,San Salvador (ssl),13.75,-89.216667,,5,,9183,283,137,,,,,,45296,,, +1290,USA,,KKDD,,San Bernardino (CA),34.124167,-117.237222,,5,,8977,316,137,,,,9971,,38711,,, +1290,USA,,KMMM,,Pratt (KS),37.642778,-98.6775,,0.5,,7693,305,137,,,,,,39729,,, +1290,USA,,WJCV,,Jacksonville (NC),34.766111,-77.391111,,0.047,,6639,289,137,,,,,,41856,,, +1290,USA,,WKLJ,,Sparta (WI),43.968333,-90.859722,,0.059,,6731,305,137,,,,,,42035,,, +1290,USA,,WLBY,,Saline (MI),42.204722,-83.788611,,0.026,,6459,299,137,,,,,,42139,,, +1290,USA,,WNIL,,Niles (MI),41.822778,-86.284167,,0.044,,6637,300,137,,,,,,42469,,, +1290,USA,,WXKL,,Sanford (NC),35.450278,-79.158333,,0.04,,6698,291,138,,,,,,43472,,, +1290,B,pt,ZYH286 Rdio Rio Mar,,Manaus (AM),-3.121978,-60.041739,,2.5,,8712,249,139,,,,,,36902113,,, +1290,B,pt,ZYK663 Rdio Novo Tempo,,So Jos do Rio Preto (SP),-20.851442,-49.329017,,5,,9739,231,139,,,,,,36902102,,, +1290,SLV,es,YSMA,,Chalatenango (ctn),14.016667,-88.95,,3,,9142,283,139,,,,,,45297,,, +1290,USA,en,WPFE399,,Ocean City/4001 Coastal Hwy (MD),38.37765,-75.077683,,0.01,,6211,290,139,,,,,,20010655,,, +1290,B,pt,ZYJ619 Rdio Caic,,Caic (RN),-6.443611,-37.079444,,0.25,,7701,227,140,,,,,,36902111,,, +1290,PNR,es,R nica,,Alanje/Orilla del Ro (chq),8.363608,-82.509508,,3,,9201,274,140,,,,,,52340,,, +1290,USA,,WKLB,,Manchester (KY),37.1375,-83.780556,,0.034,,6855,295,140,,,,,,42034,,, +1290,USA,en,KNIC273,,Rockville (MD),39.110389,-77.194361,,0.01,,6290,292,140,,,,,,20010657,,, +1290,USA,en,WNVY507,,Rockville (MD),39.016222,-77.127694,,0.01,,6293,292,140,,,,,,20010661,,, +1290,USA,en,WNVY508,,Largo (MD),38.92765,-76.861028,,0.01,,6283,292,140,,,,,,20010660,,, +1290,USA,en,WPHG707,,Oxon Hill (MD),38.810983,-76.998861,,0.01,,6301,292,140,,,,,,20010659,,, +1290,B,pt,ZYH450 Metropole AM,,Salvador (BA),-13.008333,-38.529167,,1,,8424,225,141,,,,28,,36902115,,, +1290,USA,,WBTG,,Sheffield (AL),34.774167,-87.670556,,0.079,,7287,296,141,,,,,,40917,,, +1290,USA,,WCBL,,Benton (KY),36.858611,-88.336389,,0.053,,7156,298,141,,,,,,40954,,, +1290,USA,,KBMO,,Benson (MN),45.318333,-95.563333,,0.024,,6879,309,142,,,,,,38060,,, +1290,USA,,KJEF,,Jennings (LA),30.210556,-92.665278,,0.28,,7977,296,142,,,,,,38666,,, +1290,USA,,WJBI,,Batesville (MS),34.303611,-89.983056,,0.091,,7467,297,142,,,,,,41846,,, +1290,CLM,,HJNY,,Barrancabermeja (sat),7.066667,-73.833333,,1,,8722,267,143,,,,,,37601,,, +1290,CLM,es,HJTH La Voz de Las Estrellas,,Medelln (ant),6.283333,-75.566667,,1,,8909,268,143,,,,99,,37643,,, +1290,PNR,es,HOS23 R nica,,Pedregal/Calle Tenera Tauro (pnm),9.063878,-79.434164,,1,,8930,272,143,,,,,,37727,,, +1290,USA,,KALM,,Thayer (MO),36.556389,-91.551389,,0.056,,7374,300,143,,,,,,37938,,, +1290,USA,,KCUB,,Tucson (AZ),32.276944,-110.980556,,1,,8838,310,143,,,,,,38220,,, +1290,USA,,WNBN,,Meridian (MS),32.361667,-88.623889,,0.091,,7545,295,143,,,,,,42436,,, +1290,USA,,WYEA,,Sylacauga (AL),33.195556,-86.233889,,0.05,,7327,294,143,,,,,,43512,,, +1290,CLM,es,HJKY RCN,,Girardot (cun),4.366667,-74.566667,,1,,9009,266,144,,,,995,,37538,,, +1290,EQA,,HCJA5 LV del Ro Tarqui,,Cuenca (azu),-2.85,-79,,2,,9945,265,144,,,,96,,36978,,, +1290,GTM,,R Miramundo LV del Ejercito,,Zacapa (zcp),14.966667,-89.516667,,1,,9096,284,144,,,,,,52137,,, +1290,HND,,HRNN27,,Choluteca (cho),13.266667,-87.166667,,1,,9088,281,144,,,,,,37814,,, +1290,MEX,es,XETH-AM R Palizada,,Palizada (cam),18.257222,-92.054722,,1,,8975,288,144,,,,,,44820,,, +1290,USA,,KDMS,,El Dorado (AR),33.208333,-92.687778,,0.106,,7723,298,144,,,,,,38283,,, +1290,MEX,es,XEDA-AM R Trece,,Mxico D.F/Aculco (dif),19.374056,-99.109506,,1,,9326,294,145,,,,999,,43894,,, +1290,MEX,es,XENX-AM R Mujer,,Mazatln (sin),23.280047,-106.418283,,1,,9414,302,145,,,,,,44465,,, +1290,USA,,KIVY,,Crockett (TX),31.305556,-95.451667,,0.175,,8052,299,145,,,,,,38647,,, +1290,USA,,WPCF,,Panama City Beach (FL),30.178889,-85.781944,,0.055,,7549,291,145,,,,,,42655,,, +1290,USA,en,WWHM,,Sumter (SC),33.923889,-80.286667,,0.012,,6892,290,145,,,,,,42781,,, +1290,ARG,,LRJ212 R Murialdo,,Villa Nueva de Guaymalln (mz),-32.933061,-68.744375,,5,,11929,238,146,,,,987,,51847,,, +1290,B,pt,ZYK331 Rdio Planetrio AM,,Espumoso (RS),-28.738333,-52.821389,,2,,10671,229,146,,,,,,36902117,,, +1290,EQA,,HCNS1,,Atuntaqui (nap),-0.366667,-78.15,,1,,9669,265,146,,,,,,37045,,, +1290,MEX,es,XEAP-AM Romntica 1290,,Ciudad Obregn (son),27.501478,-109.977514,,0.75,,9226,307,146,,,,,,43722,,, +1290,PRG,,ZP47,,Encarnacin (ita),-27.333333,-55.866667,,2,,10701,232,146,,,,,,45543,,, +1290,EQA,,HCOF2 Canal Milagr,, (gua),-2.1,-79.533333,,1,,9915,266,147,,,,,,37048,,, +1290,GTM,,TGTU R Nacional de Totonicapn,,Totonicapn (tot),14.9,-91.333333,,0.5,,9222,285,147,,0000-0400,1234567,,,40549,,, +1290,PRU,es,OCX1Q RPP,,Tumbes (tum),-3.566667,-80.5,,1,,10110,265,147,,,,0,,37000114,,, +1290,B,pt,ZYL273 Uberlndia AM,,Uberlndia (MG),-18.89645,-48.302978,,0.5,,9497,231,148,,,,,,36902116,,, +1290,MEX,es,XEIX-AM La Pantera,,Jiquilpan de Jurez (mic),19.991944,-102.721111,,0.5,,9493,297,148,,,,,,44190,,, +1290,PRU,es,R Estelar,,Chota (caj),-6.55,-78.65,,1,,10246,262,148,,,,99,,37000063,,, +1290,USA,,KUOA,,Siloam Springs (AR),36.191111,-94.566111,,0.031,,7582,301,148,,,,,,39584,,, +1290,USA,,KWFS,,Wichita Falls (TX),33.960556,-98.561667,,0.073,,8004,303,148,,,,,,39707,,, +1290,B,pt,ZYJ734 Rdio Ararangu AM,,Ararangu (SC),-28.932222,-49.464444,,1,,10519,227,149,,,,,,36902109,,, +1290,B,pt,ZYK745 Rdio Eldorado,,So Jos dos Campos (SP),-23.188889,-45.908333,,0.5,,9789,227,149,,,,81,,36902104,,, +1290,BOL,,CP212 Rdifusoras Mineria,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,1000-2400,1234567,,,52015,,, +1290,EQA,,HCUM6,,Latacunga (cot),-0.916667,-78.566667,,0.5,,9745,265,149,,,,,,37152,,, +1290,B,pt,ZYJ310 Rdio Brasil Sul,,Ibipor (PR),-23.300556,-51.179167,,0.5,,10070,231,150,,,,,,36902110,,, +1290,EQA,,HCAI5,,Chunchi (chi),-2.316667,-78.916667,,0.5,,9892,265,150,,,,,,36844,,, +1290,ARG,,LRI371 R Amanecer,,Reconquista (sf),-29.15,-59.666667,,1,,11076,234,151,,,,,,51844,,, +1290,B,pt,Rdio Sim 1290,,Vila Velha/Fazenda Setiba (ES),-20.427697,-40.374617,,0.25,,9250,223,151,,,,,,36902105,,, +1290,B,pt,ZYJ804 Rdio Cambori AM,,Balnerio Cambori (SC),-27.020078,-48.658264,,0.5,,10296,227,151,,,,,,36902106,,, +1290,B,pt,ZYL345 Rdio Cidade,,Arcos (MG),-20.233333,-45.501667,,0.25,,9481,228,151,,,,,,36902107,,, +1290,MEX,es,XEFAC-AM La Mera Mera,,Salvatierra (gua),20.259414,-100.88835,,0.25,,9357,296,151,,,,,,43991,,, +1290,ARG,,R Cristal,,Lans (ba),-34.716667,-58.4,,1,,11516,230,152,,0000-2400,1234567,,,51845,,, +1290,ARG,,R Provincia,,Mariano Acosta (ba),-34.733333,-58.8,,1,,11539,230,152,,,,,,51846,,, +1290,B,pt,ZYK662 R.Difusora So Jose do Rio Pardo,,So Jos do Rio Pardo (SP),-21.611039,-46.900433,,0.25,,9686,228,152,,,,,,36902108,,, +1290,USA,,KOUU,,Pocatello (N) (ID),42.957778,-112.429444,,0.024,,7926,317,152,,,,,,39111,,, +1290,USA,,KZSB,,Santa Barbara (CA),34.418611,-119.686111,,0.122,,9064,318,153,,,,,,39883,,, +1290,PRU,es,OAX7X R Juliaca,,Juliaca (pun),-15.816667,-70.016667,,0.3,,10495,250,154,,,,908,,40353,,, +1290,USA,,KAZA,,Gilroy (CA),37.163333,-121.641111,,0.088,,8886,320,154,,,,3,,37996,,, +1290,CHL,,CD129 R Mulchen,,Mulchen (BI),-37.716667,-72.216667,,1,,12539,237,155,,,,,,51953,,, +1290,CHL,,CA129 R Coya,,Maria Elena (AN),-22.3,-69.683333,,0.25,,11050,246,156,,,,,,35682,,, +1290,USA,en,WPBF212,,League City (TX),29.477686,-95.082694,,0.01,,8187,297,159,,,,,,20010658,,, +1290,USA,en,WPCD886,,Houston/8615 Manchester Blvd (TX),29.727689,-95.277689,,0.01,,8178,298,159,,,,,,20010656,,, +1296,G,en,The Mighty KBC,,Orfordness (EN-SFK),52.101333,1.578889,,300,96,330,272,36,,0900-1100,9999999,9988,,1254,,, +1296,G,,R XL 1296 AM,,Birmingham/Langley Mill-B (EN-WMD),52.566694,-1.763167,,10,,557,278,53,,0000-2400,1234567,14,,1255,,, +1296,E,es,COPE,,Valncia/Castellar (VAL-V),39.408694,-0.348417,,50,,1505,203,55,,0000-2400,1234567,0,,1253,,, +1296,SRB,sr,R Beograd 1,,Vranje (Srb-pcn),42.533161,21.947939,,8,,1577,126,64,,0000-2400,1234567,999,,1257,,, +1296,AZE,az,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,0300-0400,1234567,2,,1250,,, +1296,AZE,az,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1400-1600,1234567,2,,1250,,, +1296,AZE,de,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1300-1330,1234567,2,,1250,,, +1296,AZE,fa,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1100-1200,1234567,2,,1250,,, +1296,AZE,fr,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1330-1400,1234567,2,,1250,,, +1296,AZE,tu,Voice of Azerbaijan/R.Dada Gorgud,,Pirsaat (hac),40.069083,49.056506,,130,210,3490,95,71,,1200-1300,1234567,2,,1250,,, +1296,IRN,fa,IRIB R Iran,,Qazvin (qzv),36.106933,50.038789,,50,,3835,100,78,,,,8,,1256,,, +1296,SDN,ar,SRTC Sudan Nat. R,,Reiba (si),13.562361,33.527639,,600,,4919,141,78,,0100-2330,1234567,969,,2226,,, +1296,TJK,ru,R Rossii,,Orzu (ktl),37.539,68.791972,,300,,5008,83,82,,0000-1700,1234567,0,,34200010,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0330-0430,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0530-0630,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0730-0830,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0930-1030,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1130-1230,1234567,999,,1955,,, +1296,AFG,dr,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1330-1430,1234567,999,,1955,,, +1296,AFG,en,Voice of America,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,2030-0030,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0230-0330,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0430-0530,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0630-0730,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0830-0930,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1030-1130,1234567,999,,1955,,, +1296,AFG,ps,R Free Afghanistan,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1230-1330,1234567,999,,1955,,, +1296,AFG,ps,VOA R Ashna,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,0030-0230,1234567,999,,1955,,, +1296,AFG,ps,VOA R Ashna,,Kabul/Pol-e Charkhi (kab),34.540333,69.340292,,400,,5264,86,84,,1430-2030,1234567,999,,1955,,, +1296,IRN,,IRIB R Zahedan,,Zabol (sib),31.039217,61.546739,,10,,4998,96,97,,0430-1230,1234567,997,,10800018,,, +1296,AGL,pt,RNA Em. Prov. de Uge,,Uge (uig),-7.583333,15.066667,,10,,6689,170,114,,0300-2200,1234567,,,2492,,, +1296,CHN,fr,R France Int.,,Kunming/Anning-SARFT501 (YN),24.875833,102.488333,,300,175,8246,70,115,,1600-1700,1234567,,,50365,,, +1296,CHN,vi,China R Int.,,Kunming/Anning-SARFT501 (YN),24.875833,102.488333,,300,175,8246,70,115,,1100-1500,1234567,,,50365,,, +1296,CHN,vi,R France Int.,,Kunming/Anning-SARFT501 (YN),24.875833,102.488333,,300,175,8246,70,115,,1500-1600,1234567,,,50365,,, +1296,IND,,AIR East,,Darbhanga (BR),26.143611,85.9325,,10,,7048,81,118,,0025-0430,1234567,985,,50370,,, +1296,IND,,AIR East,,Darbhanga (BR),26.143611,85.9325,,10,,7048,81,118,,0700-1000,1234567,985,,50370,,, +1296,IND,,AIR East,,Darbhanga (BR),26.143611,85.9325,,10,,7048,81,118,,1200-1740,1234567,985,,50370,,, +1296,CHN,,Benxi RGD,,Benxi (LN),41.166667,123.633333,,20,,8013,45,124,,,,,,50363,,, +1296,CHN,,Xianyang RGD Xinwen,,Xianyang (SA),34.35,108.716667,,10,,7816,59,125,,0855-1445,1234567,,,50368,,, +1296,CHN,,Xianyang RGD Xinwen,,Xianyang (SA),34.35,108.716667,,10,,7816,59,125,,2215-0630,1234567,,,50368,,, +1296,CHN,zh,Shanghai Dongfang GD Xinwen Pinl,,Shanghai/Minhang (SH),31.109167,121.514722,,20,,8824,52,130,,0000-2400,1234567,994,,50366,,, +1296,J,ja,JOTK NHK1,,Matsue/Izumo-Shi (chg-shi),35.378333,132.745556,,10,,8982,42,134,,0000-2400,1234567,0,,50380,,, +1296,TWN,,BCC News Network,,Tainan (TN),23.118367,120.151517,,10,,9482,58,135,,0000-2400,1234567,,,50389,,, +1296,CHN,,Xingcheng RGD,,Xingcheng (LN),40.616667,120.716667,,1,,7920,47,136,,,,,,36200323,,, +1296,THA,th,Sor. Wor. Thor. (R Thailand),,Pattani (pti),6.8925,101.250833,,10,,9732,82,136,,2200-1503,1234567,,,50388,,, +1296,CHN,,Qinghe RGD,,Qinghe (HB),37.066667,115.666667,,1,,7972,53,137,,,,,,36200380,,, +1296,CHN,,Suining RGD,,Suining (SC),30.533333,105.533333,,1,,7952,64,137,,,,,,50367,,, +1296,PHL,,DWLQ-AM,,Lucena City/Ibabang Dupay (qzn),13.933333,121.633333,,5,,10415,62,141,,,,,,50384,,, +1296,PHL,,DWPR-AM,,Dagupan City/Bolosan (pgs),16.05,120.366667,,5,,10144,61,141,,,,9,,50382,,, +1296,PHL,,DXAB-AM Radyo Patrol,,Davao City/Matina (dvs),7.054722,125.576389,,10,,11291,62,141,,1955-1405,1234567,32,,50383,,, +1296,PHL,,DYJJ-AM Radyo Budyong,,Roxas City (cpz),11.583333,122.75,,5,,10700,62,142,,,,,,50385,,, +1296,TWN,,Min Pen Kuangpo Tientai 1,,Taipei (TPS),25.01795,121.494183,,1,,9383,56,145,,,,,,50390,,, +1296,AUS,en,6RN ABC National,,Wagin/Arthur River Road (WA),-33.336389,117.092389,,10,,14227,98,151,,0000-2400,1234567,3,,50361,,, +1296,INS,id,PM4DUI R Suara Merak Jaya,,Muarateweh (KT),-0.95,114.883333,,1,,11340,76,151,,,,,,50375,,, +1296,INS,id,RKM-R Kawala Muda,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,50261,,, +1296,INS,id,PM8DCY R.Suara Kelandka Utama,,Palopo (SN-plp),-3,120.2,,1,,11873,73,153,,,,,,50373,,, +1296,INS,id,PM2DHA R Shinta Rama,,Cakranegara (NB-kma),-8.583333,116.133333,,0.5,,12101,80,157,,,,,,50371,,, +1296,AUS,en,4RPH,,Brisbane/Tingalpa (QLD),-27.463111,153.123056,,5,,16127,58,160,,0000-2400,1234567,44,,50360,,, +1296,NZL,,1ZH Newstalk ZB,,Hamilton/Eureka (WKO),-37.691878,175.404903,,2.5,,18197,32,170,,0000-2400,1234567,,,50381,,, +1298,AGL,pt,RNA Em. Prov. do Zaire,,Soyo (zai),-6.133333,12.366667,,1,,6501,173,122,,,,,,47109,,, +1300,USA,en,WGDJ,,Rensselaer (NY),42.589722,-73.743611,,8,,5817,294,106,,,,14,,43175,,, +1300,USA,en,WOOD,,Grand Rapids (MI),42.756111,-85.656667,,20,,6527,301,109,,,,994,,42611,,, +1300,AFG,,R Ghazni,,Ghazni (gha),33.533333,68.333333,,0.5,,5270,88,113,,0230-0430,1234567,,,50392,,, +1300,AFG,,R Ghazni,,Ghazni (gha),33.533333,68.333333,,0.5,,5270,88,113,,1400-1630,1234567,,,50392,,, +1300,USA,en,WJZ,,Baltimore (MD),39.333333,-76.770278,,5,,6247,292,113,,,,,,41873,,, +1300,USA,,WXRL,,Lancaster (NY),42.882778,-78.631667,,2.5,,6097,297,114,,,,992,,43490,,, +1300,USA,en,WJMO,,Cleveland (OH),41.341111,-81.741667,,5,,6402,297,114,,,,2,,41320,,, +1300,USA,,WIMG,,Ewing (NJ),40.287778,-74.873056,,1.3,,6055,292,116,,,,,,41761,,, +1300,USA,es,WAVZ,i,New Haven (CT),41.287778,-72.946667,,1,,5860,292,116,,,,,,40780,,, +1300,USA,,WRDZ,,La Grange (IL),41.674722,-87.7625,,4.5,,6735,301,118,,,,,,42831,,, +1300,USA,,KGLO,,Mason City (IA),43.054167,-93.204722,,5,,6935,306,119,,,,1,,38491,,, +1300,USA,en,KKOL,,Seattle/Tacoma (Marc St.) (WA),47.248889,-122.405,,47,,7944,326,120,,,,1,,38745,,, +1300,USA,en,KPMI,,Bemidji (D) (MN),47.442222,-94.865833,,2.5,,6671,310,120,,,,,,20016271,,, +1300,USA,,WKZN,,West Hazleton (PA),40.940556,-76.001944,,0.5,,6078,293,121,,,,,,42573,,, +1300,USA,en,WNQM,,Nashville (TN),36.208333,-86.893889,,5,,7122,296,121,,,,,,42500,,, +1300,B,pt,ZYH586 Rdio Iracema,,Fortaleza (CE),-3.816625,-38.612439,,10,,7520,230,122,,,,12,,36902127,,, +1300,USA,,WPNH,,Plymouth (NH),43.775556,-71.705556,,0.082,,5605,294,124,,,,,,42717,,, +1300,USA,,WSYD,,Mount Airy (NC),36.503333,-80.593056,,1,,6706,292,124,,,,,,43093,,, +1300,USA,,KWCK,,Searcy (AR),35.2575,-91.730278,,5,,7493,299,125,,1300-0100,1234567,,,39695,,, +1300,USA,,WJDA,,Quincy (MA),42.259722,-70.976667,,0.072,,5666,292,125,,,,,,41858,,, +1300,USA,,WLXG,,Lexington (KY),38.097222,-84.529167,,1,,6825,296,125,,,,9991,,42261,,, +1300,USA,en,KPMI,,Bemidji (N) (MN),47.442222,-94.865833,,0.6,,6671,310,126,,,,,,20016270,,, +1300,VEN,,YVKH R Recuerdos 1300,,Caracas (dcf),10.484544,-66.813733,,10,,7946,263,126,,1000-0400,1234567,999,,45354,,, +1300,SXM,,PJD2 Voice of St. Maarten,,Philipsburg (smt),18.019444,-63.066667,,1,,7042,265,127,,,,989,,40459,,, +1300,USA,en,WRCR,,Spring Valley (NY),41.096667,-74.004722,,0.083,,5941,292,127,,,,,,42823,,, +1300,USA,,KAPL,,Phoenix (D) (OR),42.295556,-122.804167,,20,,8438,324,128,,,,16,,37959,,, +1300,PTR,es,WTIL,,Mayagez (PR),18.183333,-67.167778,,1,,7307,269,130,,0000-2400,1234567,,,43141,,, +1300,USA,en,WFFG,,Marathon (FL),24.691111,-81.108333,,2.5,,7703,284,130,,,,9984,,41373,,, +1300,USA,en,WOSW,,Fulton (NY),43.294722,-76.443056,,0.04,,5933,296,130,,,,,,40706,,, +1300,USA,xx,KAZN,,Pasadena (D) (CA),34.118889,-118.081667,,23,,9018,316,130,,,,,,20012606,,, +1300,VEN,es,YVNS R Reloj 1300,,Maracaibo (zul),10.566667,-71.616667,,10,,8266,267,130,,0000-2400,1234567,983,,45399,,, +1300,USA,en,WMEL,,Cocoa Beach (FL),28.343889,-80.768333,,1,,7377,286,131,,,,9847,,43143,,, +1300,HTI,,R Vision Nouvelle,,Port-au-Prince (oue),18.516667,-72.316667,,1,,7631,273,133,,,,,,52119,,, +1300,USA,,WOAD,,Jackson (MS),32.386667,-90.163056,,1,,7638,296,133,,,,,,42547,,, +1300,CUB,es,R Angulo,,Banes (ho),20.94885,-75.725414,,1,,7657,277,134,,,,,,36573,,, +1300,USA,,KAPL,,Phoenix (N) (OR),42.295556,-122.804167,,5,,8438,324,134,,,,,,20016274,,, +1300,USA,en,KAKC,,Tulsa (OK),35.994444,-95.8575,,1,,7673,302,134,,,,,,37932,,, +1300,CLM,es,HJOG La Voz de las Antillas,,Cartagena (bol),10.558333,-75.511111,,5,,8533,270,135,,,,1,,37607,,, +1300,USA,,KLER,,Orofino (ID),46.478056,-116.242778,,1,,7770,322,135,,,,,,38799,,, +1300,USA,,WCLG,,Morgantown (WV),39.627778,-79.969722,,0.044,,6425,295,135,,,,,,41025,,, +1300,USA,,WQPM,,Princeton (MN),45.552778,-93.581667,,0.083,,6754,308,135,,,,,,42789,,, +1300,USA,,WWCH,,Clarion (PA),41.199167,-79.356944,,0.028,,6267,296,135,,,,,,43360,,, +1300,USA,en,WMVO,,Mount Vernon (OH),40.404722,-82.439722,,0.051,,6517,297,135,,,,,,42413,,, +1300,CLM,es,HJRB,,Tunja (boy),5.533333,-73.366667,,5,,8825,265,136,,,,,,35901666,,, +1300,MEX,es,XEXW-AM W R,,Nogales (son),31.327778,-110.966667,,5,,8925,310,136,,,,,,45072,,, +1300,USA,,KCSF,,Colorado Springs (CO),38.812778,-104.814167,,1,,7923,310,136,,,,,,38732,,, +1300,USA,,WJYP,,St. Albans (WV),38.395278,-81.85,,0.049,,6637,295,136,,,,,,41945,,, +1300,USA,,WLNC,,Laurinburg (NC),34.783333,-79.439444,,0.074,,6769,290,136,,,,,,42195,,, +1300,USA,,WMTN,,Morristown (TN),36.204167,-83.3325,,0.096,,6902,294,136,,,,,,42405,,, +1300,USA,,WSSG,,Goldsboro (NC),35.402222,-78.022222,,0.049,,6629,290,136,,,,,,20016008,,, +1300,CLM,es,HJEA,,Mariquita (tol),5.166667,-74.9,,5,,8961,266,137,,,,,,37405,,, +1300,HND,,HRLH CCI R,,Tegucigalpa (fmz),14.083333,-87.216667,,5,,9020,282,137,,,,,,37776,,, +1300,PNR,es,HOI417 R Baha'is,,Boca del Monte (chq),8.356711,-82.120447,,5,,9175,274,137,,1045-2300,1234567,,,52342,,, +1300,USA,,WBOW,,Terre Haute (IN),39.466944,-87.426111,,0.075,,6891,299,137,,,,,,40893,,, +1300,USA,,WCKI,,Greer (SC),34.9275,-82.261667,,0.094,,6937,292,137,,,,,,41015,,, +1300,CLM,es,HJEF,,Belalczar (cau),2.65,-76,,5,,9257,266,138,,,,,,35901662,,, +1300,CLM,es,HJUA,,Mocoa (put),1.15,-76.65,,5,,9433,265,138,,,,,,35901664,,, +1300,DOM,,HIKQ R Dos,,Santo Domingo (sdo),18.475,-69.833333,,0.25,,7465,271,138,,0000-2400,1234567,,,37265,,, +1300,USA,,KOLY,,Mobridge (SD),45.535278,-100.345833,,0.111,,7111,312,138,,,,,,39084,,, +1300,B,pt,ZYK203 Rdio Boa Vontade,,Porto Alegre/Esteio (RS),-29.868128,-51.103194,,10,,10690,227,139,,,,,,36902131,,, +1300,BOL,,R Bandera Beniana,,Trinidad (ebn),-14.8,-64.783333,,5,,10072,246,140,,,,,,52018,,, +1300,USA,,KVET,,Austin (TX),30.375,-97.716111,,1,,8267,300,140,,,,,,39621,,, +1300,USA,,WFRX,,West Frankfort (IL),37.884444,-88.928889,,0.06,,7108,299,140,,,,,,41437,,, +1300,USA,,WQBN,,Temple Terrace (FL),27.9475,-82.395833,,0.16,,7516,287,140,,,,,,42764,,, +1300,B,pt,ZYI799 Rdio Guarany,,Camaragibe (PE),-8.027439,-34.995883,,0.25,,7757,224,141,,,,,,36902121,,, +1300,B,pt,ZYJ288 Rdio Educadora,,Dois Vizinhos (PR),-25.741667,-53.075556,,5,,10402,231,141,,,,,,36902118,,, +1300,USA,,KBRL,,McCook (NE),40.191944,-100.651667,,0.136,,7581,308,141,,,,,,38087,,, +1300,USA,,KMMO,,Marshall (MO),39.134167,-93.221944,,0.068,,7257,303,141,,,,,,38916,,, +1300,USA,,WBZQ,,Huntington (IN),40.875278,-85.474167,,0.019,,6663,299,141,,,,,,40938,,, +1300,USA,,WIMO,,Winder (GA),33.927778,-83.726944,,0.05,,7110,293,141,,,,,,41762,,, +1300,ARG,es,LRA5 R Nacional Rosario,,Rosario (sf),-33.018217,-60.630725,,10,,11481,232,142,,0853-0303,1234567,362,,2038,,, +1300,EQA,,HCPS6,,Ambato (tun),-1.25,-78.616667,,3,,9778,265,142,,,,,,37063,,, +1300,USA,,WNEA,,Newnan (GA),33.375278,-84.785556,,0.05,,7222,293,142,,,,,,42454,,, +1300,B,pt,ZYK762 Rdio Realidade,,So Carlos (SP),-21.9902,-47.92605,,2,,9775,229,143,,,,,,36902123,,, +1300,CLM,es,HJNB Onda Cinco,,Bucaramanga (sat),7.116667,-73.116667,,1,,8669,266,143,,,,,,37580,,, +1300,PRU,,OAX6P R Comercial Latina,,Tacna (tac),-18,-70.5,,4,,10720,249,143,,,,,,40337,,, +1300,USA,,WMTM,,Moultrie (GA),31.17,-83.747222,,0.06,,7337,290,143,,,,,,42404,,, +1300,USA,en,KSET,,Lumberton (TX),30.232222,-94.211389,,0.27,,8069,297,143,,,,,,39344,,, +1300,USA,es,KWRU,,Fresno (CA),36.770556,-119.75,,1,,8841,319,143,,,,99965,,39753,,, +1300,CLM,es,HJLD Oxigeno,,Pereira (ris),4.816667,-75.716667,,1,,9048,267,144,,,,,,37543,,, +1300,CTR,,TILC La Fuente Musical,,Cartago (ctg),9.866667,-83.916667,,1,,9166,276,144,,0500-1300,1234567,,,40580,,, +1300,MEX,es,XEAWL-AM Hidalgo R,,Jacala (hid),21.01235,-99.195022,,1,,9185,295,144,,,,,,43747,,, +1300,NCG,,R Stereo Cristiana,,Jalapa (nsg),13.916667,-86.133333,,1,,8962,281,144,,,,,,33700015,,, +1300,NCG,es,YNR Canal 130 AM,,Managua (mng),12.065833,-86.2075,,1,,9128,280,144,,1200-2330,1234567,,,45207,,, +1300,SLV,es,YSKG,,San Miguel (smg),13.466667,-88.166667,,1,,9138,282,144,,,,,,31100009,,, +1300,USA,,WBSA,,Boaz (AL),34.213889,-86.152778,,0.037,,7239,294,144,,,,,,40907,,, +1300,USA,en,WKCY,,Harrisonburg (VA),38.463889,-78.806944,,0.005,,6441,293,144,,,,,,41979,,, +1300,USA,xx,KAZN,,Pasadena (N) (CA),34.160556,-118.079444,,1,,9014,316,144,,,,9,,37999,,, +1300,B,pt,ZYL339 Rdio Eldorado,,Sete Lagoas (MG),-19.466667,-44.25,,1,,9343,227,145,,,,,,36902124,,, +1300,MEX,es,XEKW-AM La Guadalupana,,Morelia/Col. Ventura Puente (mic),19.690225,-101.181278,,1,,9426,296,145,,,,,,44278,,, +1300,PRG,es,ZP10 R Fe y Alegra,,Villa Hayes (asu),-25.077247,-57.553506,,2.5,,10584,235,145,,,,,,45505,,, +1300,USA,,KCMY,,Carson City (NV),39.166389,-119.726944,,0.5,,8610,320,145,,,,3,,39172,,, +1300,MEX,es,XEP-AM R 13,,Ciudad Jurez (chi),31.716286,-106.440439,,0.5,,8646,307,146,,,,,,44523,,, +1300,MEX,es,XEXV-AM La Z,,San Francisco del Rincn (gua),20.988561,-101.809847,,0.75,,9348,297,146,,,,,,45070,,, +1300,USA,,WKXM,,Winfield (AL),33.931111,-87.81,,0.03,,7365,295,146,,,,,,42099,,, +1300,B,pt,ZYK535 Rdio Universo,,So Bernardo do Campo (SP),-23.607917,-46.437264,,1,,9856,227,147,,,,993,,36902129,,, +1300,CHL,,CB130 R Tierra,,Santiago (RM),-33.5,-70.566667,,5,,12084,239,147,,1300-0100,1234567,,,35729,,, +1300,EQA,,HCDC2 R Cenit 1-300,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,????-0400,1234567,73,,36849,,, +1300,PRU,,OAZ8O R Nuevo Mundo,,Pucallpa (uca),-8.383333,-74.533333,,1,,10131,258,147,,,,,,40379,,, +1300,USA,,KROP,,Brawley (CA),33.011111,-115.521111,,0.5,,8999,314,147,,,,,,39283,,, +1300,BOL,,R Coronel Eduardo Avaroa,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,0930-0230,1234567,,,52016,,, +1300,BOL,,R Sol Poder de Dios,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1000-0100,1234567,,,52017,,, +1300,MEX,es,XEJL-AM La 130 La Ley,,Guamuchil (sin),25.470506,-108.102897,,0.5,,9310,304,148,,,,,,44213,,, +1300,USA,,WTLS,,Tallassee (AL),32.510833,-85.8925,,0.018,,7362,293,148,,,,,,43169,,, +1300,BOL,,CP82 R Fides,,Potosi (pts),-19.566667,-65.766667,,1,,10564,244,149,,1000-0100,123456,,,36717,,, +1300,BOL,,CP82 R Fides,,Potosi (pts),-19.566667,-65.766667,,1,,10564,244,149,,1100-0500,......7,,,36717,,, +1300,CHL,,CD130 R Chilena Solonoticias,,Valdivia (LL),-39.816667,-73.25,,5,,12774,236,149,,1000-0430,1234567,,,35869,,, +1300,EQA,,HCRU1,,Santo Domingo de los Colorados (pic),-0.283333,-78.466667,,0.5,,9683,266,149,,,,,,37116,,, +1300,PRU,,OAX4M R Comas,,Comas (lim),-11.9,-77.416667,,1,,10634,258,149,,,,,,40309,,, +1300,PRU,,OAZ4B Andina,,Huancayo (jun),-12.116667,-75.216667,,1,,10506,256,149,,,,,,40365,,, +1300,USA,,KKUB,,Brownfield (TX),33.180278,-102.246944,,0.12,,8282,305,149,,,,,,38761,,, +1300,USA,en,WPIX910,,Jefferson City (MO),38.583333,-92.166667,,0.01,,7242,302,149,,,,,,20010665,,, +1300,B,pt,ZYI210 Rdio Novo Tempo,,Afonso Cludio (ES),-20.095094,-41.119742,,0.25,,9252,224,151,,,,,,36902126,,, +1300,PRU,,OAX3O R Huascaran,,Independencia (anc),-9.495339,-77.531375,,0.5,,10430,259,151,,,,,,40295,,, +1300,USA,,KSYB,,Shreveport (LA),32.53,-93.804444,,0.03,,7848,298,151,,,,,,39445,,, +1300,BOL,,CP51 R Loyola,,Sucre (cqs),-19.016667,-65.283333,,0.5,,10484,244,152,,0900-2400,123456,,,36703,,, +1300,BOL,,CP51 R Loyola,,Sucre (cqs),-19.016667,-65.283333,,0.5,,10484,244,152,,1100-2200,......7,,,36703,,, +1300,B,,ZYK633 R Onda Viva,,Presidente Prudente (SP),-22.133333,-51.383333,,0.25,,9970,232,153,,,,,,46515,,, +1300,B,pt,ZYK347 Rdio Maratan AM,,Santana do Livramento (RS),-30.866667,-55.506944,,0.5,,11010,230,153,,,,,,36902125,,, +1300,B,pt,ZYK649 Rdio Cultura,,Santo Anastcio (SP),-21.970889,-51.640725,,0.25,,9969,232,153,,,,,,36902128,,, +1300,PRU,,OAX7P R Misercordia,,Cusco (cus),-13.516667,-72,,0.35,,10419,253,153,,,,,,40349,,, +1300,USA,,KLAR,,Laredo (TX),27.529167,-99.520833,,0.08,,8625,299,153,,,,,,38772,,, +1300,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010671,,, +1300,B,pt,ZYJ278 Rdio CBN,,Ponta Grossa (PR),-25.051667,-50.118056,,0.25,,10182,229,154,,,,,,36902122,,, +1300,B,pt,ZYJ819 Rdio Alvorada,,Santa Ceclia (SC),-26.969722,-50.405278,,0.25,,10379,228,154,,,,,,36902130,,, +1300,USA,,KPMO,i,Mendocino (CA),39.3425,-123.780833,,0.077,,8765,323,154,,,,341,,39146,,, +1300,B,pt,ZYK337 Rdio Regional AM,,Santo Cristo (RS),-27.826667,-54.655556,,0.25,,10682,231,155,,,,,,36902120,,, +1300,BOL,,CP168 R Chichas,,Siete Suyos (pts),-20.959722,-66.306944,,0.3,,10722,244,155,,1100-0400,1234567,,,36663,,, +1300,USA,,KACI,,The Dalles (OR),45.581667,-121.131389,,0.013,,8055,324,156,,,,,,37912,,, +1300,USA,en,WPUI734,,Salt Lake City (UT),40.48,-111.910967,,0.01,,8128,316,158,,,,,,20010662,,, +1300,USA,en,WPUI734,,Salt Lake City (UT),40.6305,-111.811014,,0.01,,8110,316,158,,,,,,20010663,,, +1300,USA,en,WQIH551,,Helper (UT),39.711008,-110.877675,,0.01,,8149,314,158,,,,,,20010667,,, +1300,USA,en,WQIH551,,Spanish Fork (UT),40.09435,-111.596833,,0.01,,8149,315,158,,,,,,20010668,,, +1300,USA,en,WQII297,,Farmington (UT),40.990833,-111.911031,,0.01,,8081,316,158,,,,,,20010672,,, +1300,USA,en,WQII297,,Salt Lake City (UT),40.84435,-111.944303,,0.01,,8096,316,158,,,,,,20010666,,, +1300,CHL,,CD130 R Cabo de Homos,,Puerto Williams (MA),-54.933333,-67.616667,,1,,13709,221,159,,1100-0500,1234567,,,35870,,, +1300,USA,en,WQDV998,,Davis/53 Russell Blvd (CA),38.547194,-121.743333,,0.01,,8757,321,163,,,,,,20010664,,, +1300,USA,en,WQGT278,,Stockton (CA),37.933333,-121.266667,,0.01,,8796,321,163,,,,,,20010670,,, +1300,USA,en,KG2XAJ,,San Antonio (TX),29.446667,-98.608056,,0.0001,,8402,300,181,,,,,,20010669,,, +1302,GRC,el,Kostas o Security,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400016,,, +1304,INS,id,RKPD Nganjuk,,Nganjuk (JI-ngj),-7.6,111.916667,,0.5,,11730,82,156,,,,,,35400079,,, +1305,E,es,RNE R 5,,Ourense/Pereiro (RNE) (GAL-OU),42.355867,-7.8021,,25,,1521,230,58,,0000-2400,1234567,995,,1265,,, +1305,E,es,RNE R 5,,Bilbao/Santo Domingo (RNE5) (PVA-BI),43.271058,-2.907928,,10,,1203,219,59,,0000-2400,1234567,,,1263,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0625-0630,12345..,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0650-0700,12345..,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0800-0815,1234567,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1208-1300,12345..,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1230-1300,.....67,,,1264,,, +1305,E,es,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1400-1415,12345..,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0815-1208,12345..,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0815-1230,.....67,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1300-1400,12345..,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1300-2300,.....67,,,1264,,, +1305,E,es,RNE R 5,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,1415-2300,12345..,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0630-0650,12345..,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0700-0800,12345..,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0711-0800,.....67,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,2300-0625,1234..7,,,1264,,, +1305,E,es,RNE R Nacional,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,2300-0710,....56.,,,1264,,, +1305,E,pt,RNE Castilla y Len,,Len/Villaquilambre (RNE) (CAL-LE),42.628975,-5.586575,,10,,1385,225,61,,0710-0711,.....67,,,1264,,, +1305,E,es,RNE R 5,,Ciudad Real/Almagro (RNE) (CAM-CR),38.866503,-3.721228,,10,,1667,212,64,,0000-2400,1234567,0,,1262,,, +1305,G,en,Premier Christian R,,London/Chingford (EN-ESX),51.650528,-0.009222,,0.5,,443,266,64,,0000-2400,1234567,1,,1268,,, +1305,G,en,Premier Christian R,,London/North Looe (EN-SUR),51.335083,-0.237194,,0.5,,466,262,65,,0000-2400,1234567,,,1269,,, +1305,G,en,Gold,,Christchurch (WA-NEW),51.601611,-2.935361,,0.2,,644,269,70,,0000-2400,1234567,0,,1266,,, +1305,G,en,Magic AM,,Barnsley/Ardsley (EN-SYK),53.55075,-1.412694,,0.15,,549,290,71,,0000-2400,1234567,9986,,1267,,, +1305,GRC,el,Simmetohiko Rfono,,Patra (wgr-akh),38.25,21.75,,1,,1946,136,76,,,,,,3400028,,, +1305,ISR,he,Galei Zahal,,Rosh Pina (hzf),32.955556,35.556111,,10,,3161,121,79,,0000-2400,1234567,7,,46842,,, +1305,EGY,ar,ERTU Al-Barnameg al-Aam,,Asyut (ast),27.270467,31.244517,,10,,3449,134,82,,0300-2400,1234567,,,1843,,, +1305,IRN,fa,IRIB R Bushehr,,Bushehr (bus),28.938939,50.958428,,50,,4459,108,85,,,,87,,1271,,, +1305,IRQ,,Al-Mustaqbal R,,Baghdad (bgh),33.35,44.383333,,0.5,,3674,110,97,,0600-1700,1234567,,,1272,,, +1305,AFG,,R Kandahar,,Kandahar (kan),31.666667,65.666667,,7,,5230,92,101,,0230-0430,1234567,,,46812,,, +1305,AFG,,R Kandahar,,Kandahar (kan),31.666667,65.666667,,7,,5230,92,101,,1130-1430,1234567,,,46812,,, +1305,KEN,,KBC English Service,,Wajir (nea),1.849858,40.101589,,50,,6402,139,104,,0200-2110,1234567,4,,2506,,, +1305,IND,,AIR West,,Parbhani (MH),19.324167,76.743333,,20,,6989,93,114,,0020-0432,1234567,29,,50397,,, +1305,IND,,AIR West,,Parbhani (MH),19.324167,76.743333,,20,,6989,93,114,,0700-0830,1234567,29,,50397,,, +1305,IND,,AIR West,,Parbhani (MH),19.324167,76.743333,,20,,6989,93,114,,1200-1741,1234567,29,,50397,,, +1305,CHN,zh,CNR 2,,Xining/QHTS560 (QH),36.702778,101.749444,,10,,7205,62,119,,2100-1602,1234567,,,36200319,,, +1305,CHN,zh,CNR 2,,Saihan Tal/NMTS731 (NM),42.724,112.635611,,10,,7320,51,120,,2100-1602,1234567,,,36200320,,, +1305,CHN,zh,Manzhouli Shi RGD,,Manzhouli/NMTS717 (NM),49.578056,117.497222,,1,,6980,43,127,,,,,,36201035,,, +1305,CHN,mn,Nei Menggu RGD Mongyol,,Zhengxiangbai Qi/NMTS851 (NM),42.313111,115.014194,,2,,7480,49,129,,2150-1605,1234567,,,36201314,,, +1305,CHN,zh,CNR 2,,Baotou (NM),40.666667,109.933333,,1,,7349,54,130,,2100-1602,1234567,,,36200194,,, +1305,CHN,zh,CNR 2,,Damao/NMTS863 (NM),41.712778,110.4075,,1,,7286,53,130,,2100-1602,1234567,,,36201307,,, +1305,CHN,zh,CNR 2,,Dong Wuzhumuqin Qi/NMTS732 (NM),45.493278,116.974444,,1,,7305,46,130,,2100-1602,1234567,,,36201308,,, +1305,CHN,bo,CNR 11,,Hezuo (GS),34.971111,102.908889,,1,,7418,62,131,,2155-1605,1234567,,,36201310,,, +1305,CHN,zh,CNR 2,,Lanzhou/GSTS535 (GS),36.086389,103.846111,,1,,7382,61,131,,2100-1602,1234567,,,50395,,, +1305,CHN,zh,CNR 2,,Zalantun/NMTS696 (NM),48,122.741667,,1,,7357,41,131,,2100-1602,1234567,,,36200773,,, +1305,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,unknown (NM),34.95,104.5,,1,,7515,61,132,,,,,,36201312,,, +1305,CHN,zh,CNR 1,,Huining (GS),35.694444,105.05,,1,,7486,60,132,,2025-1805,1234567,,,36201311,,, +1305,CHN,zh,CNR 2,,Jining/NMTS585 (NM),41.023056,113.073611,,1,,7489,52,132,,2100-1602,1234567,,,36200196,,, +1305,KOR,,HLSV KBS 1 R,,Uljin (gsb),36.971667,129.406667,,10,,8676,43,133,,0000-2400,1234567,,,50399,,, +1305,THA,th,Yaan Kraw 1305,,Bangkok/Samsen Road (bmp),13.793661,100.519792,,10,,9078,78,134,,0000-2400,1234567,,,50406,,, +1305,CHN,zh,CNR 2,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,2100-1602,1234567,,,36201309,,, +1305,CHN,zh,CNR 2,,Mudanjiang (HL),44.588889,129.585278,,1,,7968,39,137,,2100-1602,1234567,,,36200322,,, +1305,CHN,,Jinan RGD Wenxue,,Jinan/Daqiao (SD),36.791389,117.015556,,1,,8069,52,138,,????-1700,1234567,,,50394,,, +1305,CHN,zh,CNR 2,,Suifenhe (HL),44.4,131.166667,,1,,8053,38,138,,2100-1602,1234567,,,36201313,,, +1305,CHN,zh,CNR 2,,Hangzhou/ZJTS4 (ZJ),30.266667,120.133333,,1,,8826,54,143,,2100-1602,1234567,,,36200195,,, +1305,CHN,zh,CNR 2,,Jinhua (ZJ),29.108056,119.586111,,1,,8902,55,143,,2100-1602,1234567,,,36200253,,, +1305,CHN,zh,CNR 2,,Shaoxing (ZJ),30.060556,120.601389,,1,,8871,53,143,,2100-1602,1234567,,,36200197,,, +1305,CHN,zh,CNR 2,,Xinchang/Kexia Cun (ZJ),29.503889,120.872306,,1,,8936,53,143,,2100-1602,1234567,,,36200198,,, +1305,INS,id,R Syaibah,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,55,,35400081,,, +1305,AUS,en,5RN ABC National,,Renmark/Loxton (Berri) (SA),-34.265356,140.614089,,2,,15896,80,163,,0000-2400,1234567,,,50393,,, +1305,NZL,,4XD R Dunedin,,Dunedin/Highcliff (OTA),-45.884167,170.588333,,2.5,,18673,65,172,,,,,,50400,,, +1310,CAN,en,CIWW,,Ottawa (ON),45.26,-75.783889,,50,,5753,297,98,,,,1,,36136,,, +1310,USA,en,WLOB,,Portland (ME),43.689444,-70.334722,,5,,5525,293,105,,,,0,,42200,,, +1310,USA,,WICH,,Norwich (CT),41.552778,-72.076111,,5,,5786,292,108,,,,,,41725,,, +1310,USA,en,WCCW,,Traverse City (D) (MI),44.677222,-85.665556,,15,,6380,302,109,,,,,,20012569,,, +1310,USA,en,WCCW,,Traverse City (N) (MI),44.676944,-85.665556,,7.5,,6380,302,112,,,,997,,40969,,, +1310,USA,,WDTW,,Dearborn (MI),42.263889,-83.253889,,5,,6423,299,114,,,,998,,43460,,, +1310,USA,,WGH,,Newport News (VA),37.045278,-76.448333,,5,,6401,290,114,,,,,,41512,,, +1310,USA,es,WORC,,Worcester (MA),42.221944,-71.817222,,1,,5721,292,114,,,,0,,42619,,, +1310,MRT,xx,Martinique 1re,,Fort-de-France (972),14.627122,-60.988586,,20,,7192,261,116,,,,,,33600001,,, +1310,USA,,WSLW,,White Sulphur Springs (WV),37.804722,-80.350833,,5,,6589,293,116,,1200-2400,1234567,,,43022,,, +1310,USA,,WIBA,,Madison (WI),42.999444,-89.429722,,5,,6727,303,117,,,,999,,41714,,, +1310,USA,,WOBM,,Asbury Park (NJ),40.229722,-74.090833,,1,,6010,292,117,,,,9949,,40648,,, +1310,USA,,WRSB,,Canandaigua (NY),42.888889,-77.319167,,1,,6017,296,117,,,,,,42916,,, +1310,USA,,KNOX,,Grand Forks (ND),47.844167,-97.025,,5,,6750,312,118,,,,2,,39010,,, +1310,USA,,WTLB,,Utica (NY),43.056667,-75.278333,,0.5,,5879,295,119,,,,,,43163,,, +1310,USA,,WDCT,,Fairfax (VA),38.852222,-77.315833,,0.5,,6318,292,123,,,,,,41135,,, +1310,USA,,WTIK,,Durham (NC),36.025,-78.902222,,1,,6637,291,123,,,,,,43140,,, +1310,USA,,WDPN,,Alliance (OH),40.926111,-81.128056,,0.48,,6397,297,124,,,,,,41202,,, +1310,USA,,WEMG,,Camden (NJ),39.957778,-75.115,,0.25,,6095,292,124,,,,,,41298,,, +1310,USA,,WTLC,,Indianapolis (IN),39.718889,-86.175833,,1,,6796,299,125,,,,,,43164,,, +1310,VEN,es,YVSM RNV Canal Informativo,,Barcelona (azg),10.15,-64.666667,,10,,7830,261,125,,,,13,,2064,,, +1310,USA,,WISE,,Asheville (NC),35.619167,-82.5725,,1,,6901,293,126,,,,,,41804,,, +1310,USA,,WTTL,,Madisonville (KY),37.336667,-87.544722,,1.5,,7070,298,126,,,,,,43225,,, +1310,USA,,WOCV,,Oneida (TN),36.500833,-84.49,,1,,6950,295,127,,,,,,42562,,, +1310,USA,,WXMC,,Parsippany-Troy Hill (NJ),40.864167,-74.351667,,0.088,,5980,292,127,,,,,,43480,,, +1310,USA,,KMBS,,West Monroe (LA),32.483889,-92.152778,,5,,7752,297,128,,,,,,38886,,, +1310,VEN,,YVZX,,Maturin (mgs),9.816667,-63.066667,,5,,7752,260,128,,,,,,45491,,, +1310,USA,,WNAE,,Warren (PA),41.813889,-79.167778,,0.094,,6209,296,129,,,,,,42423,,, +1310,USA,,WTZN,,Troy (PA),41.780833,-76.819167,,0.072,,6067,295,129,,,,,,43246,,, +1310,USA,,KOKX,,Keokuk (IA),40.380556,-91.3525,,0.5,,7047,302,130,,,,,,39079,,, +1310,USA,,KTCK,,Dallas (TX),32.944722,-96.940278,,5,,7998,301,130,,,,,,39462,,, +1310,USA,,WDXI,,Jackson (TN),35.663889,-88.822222,,1,,7284,297,130,,,,,,41225,,, +1310,USA,,WBFD,,Bedford (PA),40.043611,-78.503056,,0.085,,6302,294,131,,,,,,40839,,, +1310,USA,en,KGLB,,St. Peter (MN),44.778056,-94.127778,,0.27,,6846,307,131,,,,,,39222,,, +1310,USA,es,WGSP,,Charlotte (NC),35.256389,-80.864444,,0.24,,6822,292,131,,,,,,41567,,, +1310,USA,es,WRVP,,Mount Kisco (NY),41.193611,-73.739444,,0.033,,5917,292,131,,,,,,43299,,, +1310,USA,,KEIN,,Great Falls (MT),47.522222,-111.388333,,1,,7465,320,132,,,,1,,38318,,, +1310,USA,,KZRG,,Joplin (MO),37.1175,-94.544722,,1,,7502,302,132,,,,,,39050,,, +1310,PNR,es,R Mara,,Juan Daz (pnm),9.026069,-79.431433,,12,,8933,272,133,,,,2,,52343,,, +1310,USA,,KBOK,,Malvern (AR),34.373611,-92.831111,,1,,7633,299,133,,,,,,38075,,, +1310,USA,,KDLS,,Perry (IA),41.832778,-94.0375,,0.3,,7081,305,133,,,,,,38280,,, +1310,VEN,,YVTS R Andina Sonido 13-10,,Isnotu (tjl),9.366667,-70.666667,,5,,8306,266,133,,0900-0500,1234567,,,45473,,, +1310,USA,,KLIX,,Twin Falls (ID),42.551667,-114.3675,,2.5,,8052,318,134,,,,3,,38821,,, +1310,CLM,es,HJAK La Voz de la Patria,,Barranquilla (atl),10.944053,-74.836489,,5,,8453,270,135,,,,678,,37327,,, +1310,CLM,es,HJTQ,,Ccuta (nsa),7.816667,-72.5,,5,,8566,266,135,,,,,,37649,,, +1310,USA,,KFKA,,Greeley (CO),40.365556,-104.732222,,1,,7781,311,135,,,,5,,38399,,, +1310,USA,,WAUC,,Wauchula (FL),27.53,-81.818889,,0.5,,7513,286,135,,,,,,40768,,, +1310,B,pt,ZYH602 Rdio Progresso de Juazeiro,,Juazeiro do Norte (CE),-7.201339,-39.327514,,1,,7890,229,136,,,,,,36902140,,, +1310,CLM,es,HJDG Caracol,,Montera (cor),8.816667,-75.816667,,5,,8705,269,136,,,,998,,37388,,, +1310,EQA,,HCGB R Nacional Espejo,,Quito (pic),-0.166667,-78.466667,,10,,9673,266,136,,,,15,,36948,,, +1310,USA,,KMKY,i,Oakland (CA),37.824167,-122.319444,,5,,8852,321,136,,,,0,,38913,,, +1310,VEN,es,YVSL RNV Canal Informativo,,Guri (blv),7.65,-62.833333,,1,,7927,258,136,,,,,,51696,,, +1310,B,pt,ZYI691 Rdio Cidade Esperana,,Esperana (PB),-7.027961,-35.863844,,0.5,,7699,226,137,,,,,,36902146,,, +1310,CLM,es,HJJZ Aviva 2,,Bogot D. C. (bdc),4.7,-74.166667,,5,,8952,265,137,,,,1,,37520,,, +1310,CLM,es,HJLM,,Santa Brbara (ant),5.866667,-75.566667,,5,,8945,267,137,,,,,,37550,,, +1310,CLM,es,HJWD Micrfono Civico,,Palermo (hui),2.866667,-75.45,,5,,9201,265,137,,,,13,,2175,,, +1310,DOM,,HIMH R Real,,Concepcin de La Vega (veg),19.216667,-70.516667,,0.25,,7449,272,137,,1100-0400,1234567,,,37275,,, +1310,NCG,,YNSC R San Cristbal,,Chinandega (cnd),12.645081,-87.125272,,5,,9140,281,137,,1000-0200,1234567,,,45194,,, +1310,B,pt,ZYL359 Rdio Montanheza,,Vazante (MG),-17.997794,-46.888844,,5,,9336,230,138,,,,,,36902144,,, +1310,BOL,,CP68 R San Rafael,,Cochabamba (cbb),-17.366667,-66.166667,,10,,10390,246,138,,1100-0200,1234567,,,36712,,, +1310,CUB,es,R Enciclopedia,,Nueva Gerona (ij),21.861583,-82.805919,,1,,8055,283,138,,,,,,36623,,, +1310,MEX,es,XEHY-AM Stereo Joya,,Villa Corregidora (que),20.554322,-100.422319,,5,,9302,296,138,,,,,,44152,,, +1310,USA,,WDKD,,Kingstree (SC),33.703333,-79.816111,,0.06,,6879,290,138,,,,,,41169,,, +1310,B,pt,ZYH656 Rdio Liberdade,,Boa Viagem/Fazenda Poo d'Agua (CE),-5.087117,-39.734167,,0.25,,7703,230,140,,,,,,36902137,,, +1310,EQA,,HCRF2,,Babahoyo (rio),-1.8,-79.516667,,5,,9888,266,140,,,,,,37077,,, +1310,USA,,KNPT,,Newport (OR),44.627778,-123.9875,,1,,8258,326,140,,,,,,39011,,, +1310,USA,,WDOC,,Prestonsburg (KY),37.695833,-82.756667,,0.025,,6748,295,140,,,,,,41193,,, +1310,USA,,WYND,,Deland (FL),28.999167,-81.298333,,0.115,,7357,287,140,,,,,,43533,,, +1310,USA,,KGMT,,Fairbury (NE),40.116111,-97.151389,,0.095,,7397,306,141,,,,,,38495,,, +1310,B,pt,ZYH426 Rdio Mazago,,Mazago (AP),-0.11945,-51.290903,,0.25,,7888,243,142,,,,4,,36902135,,, +1310,USA,,KFVR,,Crescent City (CA),41.759722,-124.163611,,1,,8544,324,142,,,,,,38440,,, +1310,B,pt,ZYK596 Rdio Difusora Itpolis,,Itpolis (SP),-21.588156,-48.843558,,2,,9784,230,143,,,,,,36902134,,, +1310,CLM,es,HJIR RCN,,Apartado (ant),7.866667,-76.666667,,1,,8846,269,143,,,,,,37497,,, +1310,HND,,HRLR,,Juticalpa (ola),14.683333,-86.25,,1,,8903,281,143,,,,,,37795,,, +1310,USA,,KKNS,,Corrales (NM),35.2,-106.599722,,0.5,,8340,309,143,,,,,,38736,,, +1310,USA,,KYUL,,Scott City (KS),38.526389,-100.911667,,0.147,,7740,307,143,,,,,,38400,,, +1310,GTM,,TGAN R LV de los Altos,,Quetzaltenango (qzt),14.866667,-91.466667,,1,,9234,285,144,,1100-0500,1234567,,,40477,,, +1310,HND,,HRGR,,Marcala (lap),14.15,-88.016667,,1,,9068,282,144,,,,,,37759,,, +1310,HND,,HRXX,,San Pedro Sula (cor),15.366667,-87.866667,,1,,8952,283,144,,,,,,37878,,, +1310,USA,,WPBC,,Decatur (GA),33.772778,-84.281944,,0.031,,7158,293,144,,,,,,42649,,, +1310,USA,en,WKZD,,Priceville (AL),34.540278,-86.904167,,0.033,,7259,295,144,,,,,,42759,,, +1310,USA,en,WOKA,,Douglas (GA),31.523333,-82.872778,,0.039,,7252,290,144,,,,,,42580,,, +1310,ARG,,LRA42 R Nacional de Gualeguachu,,Gualeguaychu (er),-33.012906,-58.582886,,5,,11370,231,145,,0853-0303,1234567,,,39953,,, +1310,B,pt,ZYJ684 Tropical AM,,Porto Velho (RO),-8.776644,-63.882433,,1,,9470,249,145,,,,,,36902138,,, +1310,MEX,es,XEBTS-AM R.Bahia Tortugas,,Bahia Tortugas (bcs),27.636944,-114.823611,,1,,9472,311,145,,,,,,43790,,, +1310,MEX,es,XEGRT-AM Soy Guerrero,,Taxco de Alarcn (gue),18.567422,-99.608231,,1,,9429,294,145,,,,,,44081,,, +1310,MEX,es,XEHIT-AM R Felicidad,,Puebla (pue),19.035992,-98.27265,,1,,9304,293,145,,,,,,44119,,, +1310,MEX,es,XETIA-AM R Vital,,Tonal (jal),20.665389,-103.248772,,1,,9464,298,145,,,,,,44824,,, +1310,USA,,KIHP,,Mesa (AZ),33.439722,-111.835833,,0.5,,8774,311,146,,,,4,,39777,,, +1310,USA,,WJUS,,Marion (AL),32.635833,-87.302222,,0.033,,7440,294,146,,,,,,41939,,, +1310,USA,,WPLV,,West Point (GA),32.896667,-85.156667,,0.025,,7284,293,146,,,,,,42708,,, +1310,USA,en,KAHL,,San Antonio (TX),29.414722,-98.343333,,0.28,,8389,300,146,,,,,,39829,,, +1310,EQA,,HCCP3 La Voz de El,, (oro),-3.283333,-79.783333,,1,,10036,265,147,,,,,,36884,,, +1310,USA,,WHEP,,Foley (AL),30.443889,-87.681111,,0.043,,7647,293,147,,,,,,41625,,, +1310,B,pt,ZYH454 Rdio Bahiana,,Ilhus (BA),-14.812161,-39.036694,,0.25,,8628,225,148,,,,,,36902132,,, +1310,USA,,KZIP,,Amarillo (TX),35.183889,-101.969722,,0.088,,8090,306,148,,,,,,39891,,, +1310,USA,es,KZXR,,Prosser (WA),46.234167,-119.813611,,0.066,,7940,324,148,,,,997,,39914,,, +1310,ARG,es,LRG379 R.Dr. Gregoria lvarez,,Piedra del guila (nq),-40.033333,-70.066667,,5,,12613,234,149,,0000-2400,1234567,,,39995,,, +1310,B,pt,ZYK305 Rdio Sarand AM,,Sarandi (RS),-27.945833,-52.911111,,1,,10601,230,149,,,,,,36902142,,, +1310,MEX,es,XEAM-AM La M Grande,,Matamoros (tam),25.896092,-97.532033,,0.25,,8649,297,149,,,,,,43716,,, +1310,MEX,es,XEFH-AM,,Agua Prieta (son),31.293056,-109.533889,,0.25,,8852,309,149,,,,,,44007,,, +1310,MEX,es,XELPZ-AM,,La Paz (bcs),24.161389,-110.345556,,0.5,,9556,305,149,,,,,,44320,,, +1310,MEX,es,XERU-AM R.Universidad,,Chihuahua (chi),28.588917,-106.107942,,0.25,,8912,305,149,,,,,,44717,,, +1310,MEX,es,XEVB-AM Mujer,,Monterrey (nvl),25.684761,-100.316317,,0.25,,8837,299,149,,,,,,44950,,, +1310,PRU,es,OAU6N R Libertad MCV,,Arequipa (are),-16.4,-71.533333,,1,,10644,251,149,,,,975,,37000027,,, +1310,B,pt,ZYJ274 Rdio Atalaia,,Maring (PR),-23.363611,-51.9,,0.5,,10115,231,150,,,,95,,36902141,,, +1310,MEX,es,XEC-AM R Enciso,,Tijuana/Col. Dvila (bcn),32.520367,-117.021794,,0.25,,9119,315,150,,,,,,43803,,, +1310,USA,,KEZM,,Sulphur (LA),30.224167,-93.378889,,0.05,,8019,297,150,,,,,,38365,,, +1310,B,pt,ZYJ504 Rdio Difusora Coroados,,So Fidlis (RJ),-21.618353,-41.764744,,0.25,,9433,224,151,,,,8,,36902136,,, +1310,ARG,,R Integracion,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51849,,, +1310,B,pt,ZYK371 Rdio Horizonte AM,,Capo da Canoa (RS),-29.811111,-50.056667,,0.5,,10633,227,152,,,,,,36902148,,, +1310,B,pt,ZYK566 Rdio Cultura de Bragana Paulista,,Bragana Paulista (SP),-22.928139,-46.543717,,0.25,,9795,227,152,,,,,,36902139,,, +1310,B,pt,ZYI426 Rdio Pindorama,,Sidrolndia (MS),-20.936461,-54.952189,,0.25,,10053,235,153,,,,,,36902143,,, +1310,USA,es,KIQQ,,Barstow (CA),34.914444,-117.0175,,0.118,,8892,316,153,,,,247,,38631,,, +1310,B,pt,ZYJ801 Sintonia AM,,Ituporanga (SC),-27.424167,-49.603611,,0.25,,10382,227,154,,,,,,36902147,,, +1310,B,pt,ZYK329 Rdio Integraco,,Restinga Seca/Rua Agusto Rossi (RS),-29.813333,-53.375833,,0.25,,10801,229,156,,,,,,36902133,,, +1313,AGL,,RNA Em. Prov. do Hula,,Lubango (hui),-14.916667,13.466667,,1,,7484,173,132,,0500-2300,1234567,,,2507,,, +1314,ROU,de,SRR R Bukarest,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,0820-0830,......7,3,,1917,,, +1314,ROU,de,SRR R Bukarest,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,1200-1300,123456,3,,1917,,, +1314,ROU,ro,SRR Antena Satelor,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,0000-0820,......7,3,,1917,,, +1314,ROU,ro,SRR Antena Satelor,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,0000-1200,123456,3,,1917,,, +1314,ROU,ro,SRR Antena Satelor,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,0830-2400,......7,3,,1917,,, +1314,ROU,ro,SRR Antena Satelor,,Timişoara/Orţişoara (TM),45.967128,21.215467,,30,,1274,117,55,,1300-2400,123456,3,,1917,,, +1314,E,es,RNE R 5,,Tarragona/Reus (RNE) (CAT-T),41.110686,1.120658,,25,,1287,200,56,,0000-2400,1234567,998,,1277,,, +1314,ARM,,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,0600-0630,1234567,0,,1275,,, +1314,ARM,ar,Voice of Russia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1700-2100,1234567,0,,1275,,, +1314,ARM,az,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1145-1200,1234567,0,,1275,,, +1314,ARM,ku,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1230-1300,1234567,0,,1275,,, +1314,ARM,ku,Voice of Russia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,0500-0600,1234567,0,,1275,,, +1314,ARM,ku,Voice of Russia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1600-1700,1234567,0,,1275,,, +1314,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1300-1500,1234567,0,,1275,,, +1314,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,2100-2230,1234567,0,,1275,,, +1314,ARM,tr,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1200-1215,.....67,0,,1275,,, +1314,ARM,tr,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1200-1215,12345..,0,,1275,,, +1314,ARM,tr,Voice of Armenia,,Gavar (grk),40.414556,45.211111,,1000,180,3206,98,59,,1215-1230,1234567,0,,1275,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0625-0630,12345..,0,,1276,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0650-0700,12345..,0,,1276,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0800-0815,1234567,0,,1276,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1208-1300,12345..,0,,1276,,, +1314,E,es,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1400-1415,12345..,0,,1276,,, +1314,E,es,RNE R 5,,Cuenca/Martinete (RNE) (CAM-CU),40.063153,-2.144075,,10,,1491,209,62,,0000-2400,1234567,997,,1278,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0815-1208,12345..,0,,1276,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0815-1230,.....67,0,,1276,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1300-1400,12345..,0,,1276,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1300-2300,.....67,0,,1276,,, +1314,E,es,RNE R 5,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,1415-2300,12345..,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0630-0650,12345..,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0700-0800,12345..,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0711-0800,.....67,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,2300-0625,1234..7,0,,1276,,, +1314,E,es,RNE R Nacional,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,2300-0710,....56.,0,,1276,,, +1314,E,pt,RNE Castilla y Len,,Salamanca/Feria de Ganado (RNE) (CAL-SA),40.952386,-5.723922,,10,,1545,221,62,,0710-0711,.....67,0,,1276,,, +1314,ROU,ro,SRR Antena Satelor,,Constanţa/Valu lui Traian (CT),44.169306,28.540178,,14,,1854,110,64,,0000-2400,1234567,9977,,1285,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,0000-1300,.....6.,115,,1280,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1100-1300,1234567,115,,1280,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1800-0500,1234..7,115,,1280,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1800-1300,.....6.,115,,1280,,, +1314,GRC,el,ERA Net/ERA 2/ERA Sport,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1800-2400,....5..,115,,1280,,, +1314,GRC,el,ERA Tripolis,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,0500-1100,12345..,115,,1280,,, +1314,GRC,el,ERA Tripolis,,Tripolis (pel-ark),37.484889,22.382361,,10,,2048,136,68,,1300-1800,1234567,115,,1280,,, +1314,ROU,ro,SRR R Oltenia-Craiova,,Craiova (DJ),44.304761,23.780692,,1,,1546,117,72,,0000-2400,1234567,999,,1286,,, +1314,G,en,MAR-Merseyside Alternative R,,Mersey area (EN-MER),53.4,-2.9,,0.1,,642,287,73,,????-????,9999999,6,,2800019,,, +1314,IRN,fa,IRIB R Iran,,Ardabil (ard),38.361167,48.255694,,50,,3553,99,76,,0000-2400,1234567,981,,1809,,, +1314,NOR,no,LKB/LLE-2 Bergen Kringkaster,,Erdal (ho),60.448778,5.216861,,0.08,,930,356,77,,0500-0800,.23....,,,6300042,,, +1314,NOR,no,LKB/LLE-2 Bergen Kringkaster,,Erdal (ho),60.448778,5.216861,,0.08,,930,356,77,,0730-1000,.....6.,,,6300042,,, +1314,NOR,no,LKB/LLE-2 Bergen Kringkaster,,Erdal (ho),60.448778,5.216861,,0.08,,930,356,77,,1400-1600,...4...,,,6300042,,, +1314,EGY,ar,ERTU Al-Barnameg al-Aam,,Hurghada (bar),27.26575,33.791806,,10,,3579,130,83,,0300-2400,1234567,,,1844,,, +1314,NIG,,Plateau R,,Jos (plt),9.882439,8.839056,,50,,4701,176,87,,0500-2300,1234567,,,2485,,, +1314,EGY,ar,ERTU Al-Barnameg al-Aam,,Nag Hammadi (qna),25.997358,32.282739,,1,,3623,133,93,,0300-2400,1234567,,,1845,,, +1314,EGY,ar,ERTU Janub Sa'id Misr,,Abu Simbel (asn),22.408472,31.582944,,1,,3941,137,96,,0300-2400,1234567,,,1846,,, +1314,IND,,AIR West,,Bhuj (GJ),23.217222,69.772222,,10,,6189,96,109,,0025-0430,1234567,997,,50419,,, +1314,IND,,AIR West,,Bhuj (GJ),23.217222,69.772222,,10,,6189,96,109,,0630-0930,1234567,997,,50419,,, +1314,IND,,AIR West,,Bhuj (GJ),23.217222,69.772222,,10,,6189,96,109,,1200-1740,1234567,997,,50419,,, +1314,AGL,pt,RNA Em. Prov. de Namibe,,Namibe (nam),-15.208556,12.139928,,10,,7506,174,122,,0500-2200,1234567,,,2508,,, +1314,BGD,,Bangladesh Betar,,Cox's Bazar (cgg),21.421378,92.025122,,10,,7852,80,126,,0545-0845,1234567,,,50411,,, +1314,CHN,,Chongqing RGD Xinwen Pinl,,Chongqing/Daping (CQ),29.547828,106.473139,,15,,8094,64,126,,2050-1800,1234567,,,50414,,, +1314,J,ja,JOUF OBC R Osaka,,Osaka/Sakai-Shi (kns-osk),34.551944,135.528333,,50,,9187,40,127,,0000-2400,1234567,9998,,50429,,, +1314,CHN,,Xiangfan RGD Xinwen,,Xiangfan/Pangongci (HU),32.027778,112.176389,,10,,8219,58,129,,2150-1630,1234567,,,50416,,, +1314,CHN,,Yantai RGD News,,Yantai (SD),37.5675,121.360556,,10,,8227,48,129,,2125-1530,1234567,,,50418,,, +1314,THA,,Mor. Kor.,,Khon Kaen/Maliwan Rd (kkn),16.440833,102.813889,,20,,8999,75,131,,2100-1705,1234567,,,50433,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Huaiyin (JS),33.583333,119.016667,,10,,8464,52,132,,,,,,36200809,,, +1314,IND,,AIR Vividh Bharati,,Cuttack B (OR),20.482506,85.874567,,1,,7515,85,132,,0025-0435,1234567,,,50420,,, +1314,IND,,AIR Vividh Bharati,,Cuttack B (OR),20.482506,85.874567,,1,,7515,85,132,,0900-1200,1234567,,,50420,,, +1314,IND,,AIR Vividh Bharati,,Cuttack B (OR),20.482506,85.874567,,1,,7515,85,132,,1245-1730,1234567,,,50420,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Suzhou (JS),31.412778,120.693056,,10,,8752,52,133,,2059-1600,1234567,,,50415,,, +1314,KOR,ko,HLCM CBS,,Jeonbuk/Jeonju (jeb),35.927222,126.91,,10,,8655,46,133,,2000-1600,1234567,,,50430,,, +1314,TWN,,Tien Sheng Kuangpo Tientai,,Chunan (ML),24.7025,120.885,,10,,9378,56,135,,,,,,50434,,, +1314,CHN,,Chongqing RGD Xinwen Pinl,,Fengjie (CQ),31.05,109.516667,,1,,8148,61,138,,,,,,36200317,,, +1314,CHN,,Chongqing RGD Xinwen Pinl,,Qijiang (CQ),29.033333,106.65,,1,,8149,64,138,,,,,,36200318,,, +1314,PHL,,DWXI-AM,,Novalete (cav),14.438028,120.879117,,10,,10324,62,138,,2030-1610,1234567,9952,,50432,,, +1314,TWN,,Ching-Cha Kuangpo Tientai,,Ma-Tou (TN),23.188889,120.265278,,5,,9482,58,138,,,,,,50435,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Dongtai (JS),32.833333,120.316667,,1,,8602,52,142,,,,,,50413,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,1,,8471,52,142,,,,,,36201034,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,1,,8589,53,142,,,,,,36200314,,, +1314,CHN,,Xianning RGD,,Xianning (HU),29.866667,114.283333,,1,,8532,58,142,,,,,,50417,,, +1314,CHN,,Jiangsu RGD Xinwen Pinl,,Zhangjiagang (JS),31.866667,120.533333,,1,,8702,52,143,,,,,,50412,,, +1314,INS,id,R Suara Sion Perdana,,Karanganyar (JT-kar),-7.633333,109.566667,,5,,11574,84,145,,,,,,50425,,, +1314,INS,id,R Suara Al Falah,,Tanjung Balai (SU-tba),2.966667,99.8,,1,,9978,86,147,,,,,,50428,,, +1314,J,ja,OBC R Osaka,,Kyoto (kns-kyo),34.9825,135.787222,,0.3,,9156,40,149,,,,,,31400013,,, +1314,INS,id,R Citra Kemang,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,0100-????,1234567,60,,50408,,, +1314,INS,id,PM3BGC R Mutiara Gegana,,Bandung (JB-ban),-6.95,107.566667,,1,,11378,85,152,,0100-????,1234567,81,,50421,,, +1314,INS,id,R.GSM-Gema Sritanjung Mediatama,,Brebes (JT-bre),-7.116667,110.683333,,1,,11604,83,152,,,,,,50423,,, +1314,AUS,,3BT Sport 927,,Ballarat (VIC),-37.539667,143.77875,,5,,16351,81,161,,0000-2400,1234567,,,50409,,, +1314,AUS,,2WL/2KY Racing R,,Wollongong/Windang (NSW),-34.517194,150.873625,,5,,16591,69,162,,0000-2400,1234567,12,,50410,,, +1314,NZL,,Southern Star/RNZ Parliament,,Invercargill/Dacre (STL),-46.320278,168.621389,,5,,18577,70,168,,,,,,32500008,,, +1314,NZL,en,RNZ National,,Gisborne/Wainui (GIS),-38.693889,178.062778,,2,,18390,27,172,,0000-2400,1234567,,,50431,,, +1317,INS,id,Telstar R,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,50436,,, +1320,CAN,xx,CJMR,,Oakville (ON),43.458056,-79.754722,,20,,6123,298,105,,,,0,,36187,,, +1320,USA,,WARL,,Attleboro (MA),41.959167,-71.326944,,5,,5709,291,107,,,,,,40741,,, +1320,USA,,WDER,,Derry (NH),42.866389,-71.287222,,1,,5642,292,113,,,,999,,41152,,, +1320,USA,,WATR,,Waterbury (CT),41.536667,-73.031111,,1,,5847,292,115,,,,,,40760,,, +1320,USA,en,WJAS,,Pittsburgh (PA),40.479444,-79.903333,,3.3,,6355,295,115,,,,,,41838,,, +1320,USA,,KOZY,,Grand Rapids (MN),47.172778,-93.452778,,5,,6618,309,116,,,,999,,39126,,, +1320,USA,en,WCOG,,Greensboro (NC),36.150278,-79.913333,,5,,6691,292,117,,,,,,41055,,, +1320,CAN,zh,CHMB,,Vancouver (BC),49.165,-123.0425,,50,,7784,328,118,,,,996,,36075,,, +1320,USA,,WILS,,Lansing (MI),42.621944,-84.643889,,1.9,,6478,300,119,,,,1,,41757,,, +1320,USA,,KELO,,Sioux Falls (SD),43.488056,-96.637222,,5,,7087,308,121,,,,3,,38325,,, +1320,USA,,WOBL,,Oberlin (OH),41.268056,-82.211111,,1,,6436,297,121,,,,,,42553,,, +1320,USA,,WGET,,Gettysburg (PA),39.841667,-77.223611,,0.5,,6237,293,122,,,,,,41497,,, +1320,USA,,WISW,,Columbia (SC),34.004444,-81.070833,,2.5,,6935,291,122,,,,,,41812,,, +1320,USA,en,WJNJ,,Jacksonville (FL),30.295,-81.7425,,5,,7280,288,123,,,,999,,41876,,, +1320,USA,,WLQY,,Hollywood (FL),26.031389,-80.278333,,5,,7536,284,125,,,,997,,42222,,, +1320,USA,,WTKZ,,Allentown (PA),40.5925,-75.478333,,0.195,,6071,293,125,,,,,,43161,,, +1320,USA,en,WCVR,,Randolph (VT),43.939167,-72.636944,,0.066,,5652,294,125,,,,,,43447,,, +1320,PTR,es,WSKN,,San Juan (PR),18.383333,-66.066944,,2.3,,7215,268,126,,0000-2400,1234567,998,,43012,,, +1320,USA,,KWHN,,Fort Smith (AR),35.416944,-94.365,,5,,7635,301,126,,,,,,39849,,, +1320,USA,,WFHR,,Wisconsin Rapids (WI),44.415556,-89.835,,0.5,,6638,305,126,,,,,,41382,,, +1320,USA,,WCVG,,Covington (KY),39.045556,-84.508333,,0.5,,6749,297,127,,,,,,41108,,, +1320,USA,,WKAN,,Kankakee (IL),41.135556,-87.819444,,0.5,,6781,301,128,,,,,,41951,,, +1320,USA,en,WGOC,,Kingsport (TN),36.553333,-82.482778,,0.5,,6821,294,128,,,,,,42018,,, +1320,USA,,WAGY,,Forest City (NC),35.355278,-81.881111,,0.5,,6879,292,129,,,,,,20016068,,, +1320,USA,,WDMJ,,Marquette (MI),46.545278,-87.444444,,0.135,,6339,305,129,,,,,,41181,,, +1320,VEN,,YVSG R Colonial,,El Tocuyo (lar),9.8,-69.75,,10,,8205,265,129,,,,,,45456,,, +1320,USA,,KFNZ,,Salt Lake City (UT),40.643333,-111.923333,,5,,8114,316,131,,,,1,,38418,,, +1320,USA,,KHRT,,Minot (ND),48.196667,-101.233333,,0.31,,6932,314,131,,,,1,,38560,,, +1320,DOM,,HIBZ R Centro,,San Juan de la Maguana (jua),18.8,-71.2,,1,,7531,272,132,,1000-0400,1234567,,,37226,,, +1320,MEX,es,XENET-AM R Monitor,,Mxico D.F/La Pradera (dif),19.479439,-99.065428,,20,,9314,294,132,,,,,,43855,,, +1320,USA,,KXYZ,,Houston (TX),29.710833,-95.175,,5,,8173,297,132,,,,,,39835,,, +1320,VEN,,YVWP R Apolo,,Turmero (arg),10.227422,-67.485131,,3,,8014,264,132,,0000-2400,1234567,4,,45481,,, +1320,ABW,,Voz di Aruba,,Oranjestad (arb),12.516667,-70.033333,,2.5,,7989,267,133,,,,,,47115,,, +1320,B,pt,ZYH597 Rdio Regional,,Sobral (CE),-3.734722,-40.316783,,1,,7602,231,133,,,,,,36902161,,, +1320,USA,,KOLT,,Scottsbluff (NE),41.863889,-103.705556,,1,,7597,311,133,,,,,,39083,,, +1320,USA,,WDDV,,Venice (FL),27.105,-82.399722,,1,,7586,287,133,,,,,,40713,,, +1320,CLM,,HJPC,,Esquina Progresso (mag),10.583333,-74.2,,5,,8441,269,134,,,,,,37620,,, +1320,CLM,es,HJLV,,Fundacion (mag),10.516667,-74.183333,,5,,8445,269,134,,,,,,35901675,,, +1320,USA,,KMAQ,,Maquoketa (IA),42.090556,-90.628611,,0.135,,6868,303,134,,,,,,38879,,, +1320,USA,,KNIA,,Knoxville (IA),41.330556,-93.109444,,0.222,,7070,304,134,,,,,,38996,,, +1320,USA,,KSIV,,Clayton (MO),38.607222,-90.353889,,0.27,,7134,300,134,,,,,,39365,,, +1320,USA,,WICO,,Salisbury (MD),38.360833,-75.616667,,0.028,,6247,291,135,,,,,,41727,,, +1320,CLM,es,HJHT,,Guateque (boy),5.016667,-73.466667,,5,,8877,265,136,,,,,,37480,,, +1320,CLM,es,HJQI,,San Andrs (sap),12.551253,-81.717294,,5,,8783,276,136,,,,,,37631,,, +1320,CUB,es,CMGW R 26,,La Jaiba (ma),23.024011,-81.59395,,1,,7876,283,136,,,,77,,31600096,,, +1320,USA,,KCTC,,Sacramento (D) (CA),38.636389,-121.5525,,5,,8740,321,136,,,,9915,,38215,,, +1320,USA,,KCTC,,West Sacramento (N) (CA),38.711667,-121.328889,,5,,8723,321,136,,,,,,20016064,,, +1320,USA,,WTOW,,Washington (NC),35.535278,-77.067778,,0.045,,6557,289,136,,,,,,20016021,,, +1320,B,pt,ZYL322 Rdio Mucuri,,Tefilo Otoni (MG),-17.85,-41.468611,,5,,9047,226,137,,,,,,36902156,,, +1320,CLM,es,HJNV La Cariosa,,Girardot (cun),4.366667,-74.866667,,5,,9029,266,137,,,,971,,37612,,, +1320,CUB,es,R Artemisa,,Artemisa (ar),22.8,-82.75,,1,,7972,284,137,,,,,,36471,,, +1320,SLV,,YSHQ,,San Salvador (ssl),13.716667,-89.25,,5,,9188,283,137,,,,,,45279,,, +1320,USA,,KLWN,,Lawrence (KS),38.934722,-95.286667,,0.25,,7392,304,137,,,,,,38862,,, +1320,USA,en,KXRO,,Aberdeen (WA),46.9575,-123.809167,,1,,8026,327,137,,,,,,39823,,, +1320,B,pt,ZYH672 Vento Leste AM,,Aracati (CE),-4.544603,-37.790406,,0.25,,7549,229,138,,,,,,36902152,,, +1320,B,pt,ZYJ475 Rdio Difusora Boas Novas,,Petrpolis (RJ),-22.530036,-43.175406,,5,,9591,225,139,,,,,,36902164,,, +1320,PRU,es,OAX4I R La Crnica,,Lima (lim),-12.05,-77.083333,,10,,10625,257,139,,,,995,,40307,,, +1320,USA,,KRLW,,Walnut Ridge (AR),36.066111,-90.94,,0.152,,7378,299,139,,,,,,39264,,, +1320,USA,,WKRK,,Murphy (NC),35.111667,-84.008611,,0.062,,7032,294,139,,,,,,42063,,, +1320,USA,,WMSR,,Manchester (TN),35.4675,-86.095,,0.079,,7133,295,139,,,,,,42394,,, +1320,USA,,WNGO,,Mayfield (KY),36.760278,-88.638889,,0.097,,7183,298,139,,,,,,42466,,, +1320,USA,,WVGM,,Lynchburg (VA),37.426944,-79.123889,,0.024,,6541,292,139,,,,,,43296,,, +1320,MEX,es,XEPAR-AM Los 40 Principales,,Paraso (tab),18.4,-93.216667,,2.5,,9038,289,140,,,,,,34900019,,, +1320,USA,,KVMC,,Colorado City (TX),32.3875,-100.8925,,1,,8276,303,140,,,,,,39640,,, +1320,USA,,WBRT,,Bardstown (KY),37.819167,-85.486111,,0.044,,6906,297,140,,,,,,40904,,, +1320,USA,,WHIE,,Griffin (GA),33.241667,-84.304722,,0.083,,7202,292,140,,,,,,41638,,, +1320,USA,en,WENN,,Birmingham (AL),33.561389,-86.860278,,0.111,,7336,294,140,,,,,,43602,,, +1320,B,pt,ZYI823 Rdio Cultura de So Jose do Egit,,So Jos do Egito (PE),-7.492739,-37.271747,,0.25,,7815,227,141,,,,,,36902155,,, +1320,USA,en,WLOH,,Lancaster (OH),39.703611,-82.553611,,0.016,,6578,296,141,,,,,,42204,,, +1320,B,pt,ZYH503 Rdio Regional,,Ccero Dantas (BA),-10.588333,-38.382778,,0.5,,8177,226,142,,,,,,36902159,,, +1320,EQA,,HCVG8 La Voz de San Cristbal,,Isla de San Cristbal (GAL) (gal),-0.916667,-89.616667,,5,,10499,274,142,,,,,,37165,,, +1320,MEX,es,XEUH-AM X R,,Tuxtepec (oax),18.092694,-96.143717,,2,,9253,291,142,,,,,,44902,,, +1320,USA,,WAGF,,Dothan (AL),31.248333,-85.388889,,0.092,,7435,292,142,,,,,,40666,,, +1320,USA,,WVNZ,,Richmond (VA),37.466667,-77.452222,,0.008,,6432,291,142,,,,,,43321,,, +1320,B,pt,ZYH243 Rdio Milenium,,Macei/Rua Marqus de Pombal (AL),-9.6603,-35.757439,,0.25,,7957,224,143,,,,,,36902162,,, +1320,CLM,es,HJMS,,Barrancabermeja (sat),7.066667,-73.833333,,1,,8722,267,143,,,,,,37573,,, +1320,CLM,es,HJTA R Maria,,Medelln (ant),6.266667,-75.616667,,1,,8914,268,143,,,,,,37638,,, +1320,USA,en,WPTJ868,,Milwaukee/5300 S Howell Ave (WI),42.946667,-87.899444,,0.01,,6643,302,143,,,,,,20010673,,, +1320,CLM,es,HJNK,,Palmira (val),3.516667,-76.316667,,1,,9203,266,144,,,,,,37589,,, +1320,GTM,,TGME R Quesada,,Jutiapa (jut),14.266667,-90.016667,,1,,9191,284,144,,,,,,40512,,, +1320,MEX,es,XENI-AM Romntica,,Uruapan (mic),19.390131,-102.006839,,1,,9504,296,145,,,,,,44446,,, +1320,USA,,KCLI,,Clinton (OK),35.483333,-98.981667,,0.108,,7896,304,146,,,,,,38172,,, +1320,USA,,WRJW,,Picayune (MS),30.518333,-89.644722,,0.075,,7764,294,146,,,,,,42862,,, +1320,EQA,,HCFR2,,Guayaquil (gua),-1.8,-79.516667,,1,,9888,266,147,,,,,,36942,,, +1320,EQA,,HCRF4,,Portoviejo (man),-0.916667,-80.45,,1,,9874,267,147,,,,,,37080,,, +1320,USA,,KKSM,,Oceanside (CA),33.202222,-117.338056,,0.5,,9070,315,147,,,,,,38756,,, +1320,B,pt,Rdio Vitria AM,,Videira (SC),-26.997222,-51.193611,,1,,10422,229,148,,,,,,36902154,,, +1320,B,pt,ZYJ255 Rdio Tropical,,Curitiba/Rua dos Ferrovirios (PR),-25.447056,-49.199611,,1,,10172,228,148,,,,,,36902163,,, +1320,BOL,,R Panorama,,Achocalla (lpz),-16.583333,-68.166667,,1,,10446,248,148,,,,,,52019,,, +1320,MEX,es,XENM-AM R 1320,,Aguascalientes (agu),21.961667,-102.299481,,0.5,,9290,298,148,,,,,,44451,,, +1320,MEX,es,XERJ-AM La Ranchera,,Mazatln (sin),23.22,-106.416389,,0.5,,9419,302,148,,,,,,44678,,, +1320,PRU,es,R Frecuencia Popular,,Olmos (lam),-5.983333,-79.75,,1,,10271,263,148,,,,,,37000035,,, +1320,USA,,KNCB,,Vivian (LA),32.901944,-93.982778,,0.057,,7827,299,148,,,,,,38966,,, +1320,USA,,KRDD,,Roswell (NM),33.403889,-104.47,,0.188,,8386,306,148,,,,,,39227,,, +1320,USA,en,KGDC,,Walla Walla (WA),46.023611,-118.354722,,0.066,,7900,323,148,,,,,,38461,,, +1320,ARG,,LU10 R Azul,,Azul (ba),-36.766667,-59.85,,2.5,,11778,230,149,,0900-0300,1234567,444,,40203,,, +1320,PRU,,OAU7W R Per,,Juliaca (pun),-15.816667,-70.016667,,1,,10495,250,149,,,,946,,52592,,, +1320,PRU,es,OBU4T R Bcan Sat Dos,,Huancayo (jun),-12.1,-75.25,,1,,10507,256,149,,,,945,,37000120,,, +1320,USA,,KSDT,,Hemet (CA),33.749722,-116.998056,,0.3,,9001,315,149,,,,,,39338,,, +1320,B,pt,ZYK271 Rdio Cultura,,Pelotas (RS),-31.761944,-52.286389,,1,,10929,227,150,,,,,,36902160,,, +1320,EQA,,HCOB7,,Limon (mor),-2.916667,-78.5,,0.5,,9917,264,150,,,,,,37047,,, +1320,EQA,es,HCJD6 R Continental,,Ambato (tun),-1.25,-78.616667,,0.4,,9778,265,150,,,,,,36983,,, +1320,MEX,es,XEJZ-AM La Campera,,Ciudad Jimnez (chi),27.131111,-104.923333,,0.25,,8977,303,150,,,,,,44236,,, +1320,MEX,es,XESR-AM,,Santa Rosala (bcs),27.32695,-112.271122,,0.25,,9367,308,151,,,,,,44766,,, +1320,ARG,,R Sentir,,Remedios de Escalada (ba),-34.733333,-58.383333,,1,,11517,230,152,,,,,,51851,,, +1320,ARG,es,R Mstica,,Merlo Gmez (ba),-34.7,-58.65,,1,,11528,230,152,,,,,,51850,,, +1320,B,pt,ZYJ351 Rdio Foz do Iguau,,Foz do Iguau (PR),-25.522222,-54.522778,,0.5,,10459,232,152,,,,,,36902158,,, +1320,B,pt,ZYK630 Rdio Difusora AM Pirassununga,,Pirassununga (SP),-22.017139,-47.429811,,0.25,,9752,229,152,,,,,,36902151,,, +1320,MEX,es,XECPN-AM R Noticias,,Piedras Negras (coa),28.723172,-100.527153,,0.1,,8579,301,152,,,,,,43865,,, +1320,B,pt,ZYK675 Rdio Clube de Tup,,Tup/Rua Caetes (SP),-21.9265,-50.507667,,0.25,,9904,231,153,,,,,,36902157,,, +1320,EQA,,HCCP3,,Pasaje (mor),-3.316667,-78.783333,,0.25,,9971,264,153,,,,,,36885,,, +1320,USA,,KAWC,,Yuma (AZ),32.689722,-114.5,,0.106,,8979,313,153,,,,,,37989,,, +1320,USA,,KSCR,,Eugene (OR),44.090278,-123.111944,,0.048,,8276,325,153,,,,,,39332,,, +1320,ARG,,LV24 R Rio Tunuyan,,Tunuyan (mz),-33.566667,-69,,1,,11999,238,154,,1000-0600,1234567,1,,40248,,, +1320,URG,,CW132 R Fortaleza,,Rocha (ro),-34.466667,-54.283333,,0.5,,11282,227,154,,0900-0300,1234567,,,36745,,, +1320,URG,,CW39 R LV de Paysandu,,Paysand (pa),-32.283333,-58.1,,0.5,,11278,231,154,,0858-0400,1234567,,,36771,,, +1320,B,pt,ZYK223 Rdio Clube de Canela,,Canela (RS),-29.352222,-50.795,,0.25,,10626,227,155,,,,,,36902165,,, +1320,B,pt,ZYK266 Rdio Sul Brasileira,,Panambi/Rua Gaspar Martins (RS),-28.280556,-53.488889,,0.25,,10663,230,155,,,,,,36902150,,, +1320,CHL,,CA132 R Estrella del Norte,,Vallenar (AT),-28.583333,-70.733333,,0.5,,11667,242,156,,,,,,35683,,, +1320,CHL,,CD132 R Lincoyan,,Mulchen (BI),-37.716667,-72.216667,,0.1,,12539,237,165,,1100-0300,1234567,,,35871,,, +1322,ETH,,ERTA Ethiopia National R,,unknown,10.5,40.5,,1,,5550,134,113,,0300-0600,1234567,,,46834,,, +1322,ETH,,ERTA Ethiopia National R,,unknown,10.5,40.5,,1,,5550,134,113,,0800-2100,1234567,,,46834,,, +1323,CYP,en,BBC WS,,Zygi (Limassol) (kyp-lem),34.722017,33.328,,200,150,2879,122,63,,0300-0700,1234567,1,,1290,,, +1323,CYP,en,BBC WS,,Zygi (Limassol) (kyp-lem),34.722017,33.328,,200,150,2879,122,63,,1300-1900,1234567,1,,1290,,, +1323,ROU,de,SRR R Bukarest,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0820-0830,......7,984,,1298,,, +1323,ROU,de,SRR R Bukarest,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1200-1300,123456,984,,1298,,, +1323,ROU,de,SRR R Neumarkt,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0830-0900,......7,984,,1298,,, +1323,ROU,de,SRR R Neumarkt,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1900-2000,123456,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0500-0600,1234567,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0600-0700,1234..7,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0600-0900,.....6.,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0800-0820,......7,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0900-1200,123456,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0900-1700,......7,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1300-1600,123456,984,,1298,,, +1323,ROU,hu,SRR Marosvsrhelyi Rdi,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1300-1700,....56.,984,,1298,,, +1323,ROU,ro,SRR Antena Braşovului,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1600-1700,1234...,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0350-0500,1234567,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0600-0900,....5..,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,0700-0800,......7,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1700-1900,1234567,984,,1298,,, +1323,ROU,ro,SRR R Trgu Mureş,,Trgu Mureş/Ernei (MS),46.593231,24.633617,,7,,1450,108,63,,1900-1955,......7,984,,1298,,, +1323,G,en,Gold,,Brighton/Southwick (EN-ESU),50.832639,-0.252056,,0.5,,483,256,65,,0000-2400,1234567,9981,,1292,,, +1323,IRN,,IRIB Tabriz Rsu/IRIB WS,,Jolfa (eaz),38.935558,45.6061,,50,,3334,100,73,,1930-1730,1234567,992,,1293,,, +1323,IRN,az,IRIB WS,,Jolfa (eaz),38.935558,45.6061,,50,,3334,100,73,,1730-1930,1234567,992,,1293,,, +1323,CHN,en,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.157167,86.893222,,600,057 235,5726,65,87,,1500-1800,1234567,992,,50450,,, +1323,CHN,mn,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.157167,86.893222,,600,057 235,5726,65,87,057,1200-1300,1234567,992,,50450,,, +1323,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.157167,86.893222,,600,057 235,5726,65,87,057,1100-1200,1234567,992,,50450,,, +1323,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.157167,86.893222,,600,057 235,5726,65,87,057,1300-1500,1234567,992,,50450,,, +1323,CHN,en,China R Int.,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1600-1800,1234567,987,,50448,,, +1323,CHN,hi,China R Int.,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1500-1600,1234567,987,,50448,,, +1323,CHN,ko,China R Int.,,Huadian/SARFT763 (JL),43.124111,126.5238,,600,175,7969,42,109,,1100-1400,1234567,993,,50442,,, +1323,CHN,ru,China R Int.,,Shuangyashan/HLTS128 (HL),46.721783,131.210511,,200,120,7836,37,112,,1100-1600,1234567,,,36200307,,, +1323,TZA,,R One,,Moshi (klj),-3.380581,37.331811,,10,,6822,144,115,,,,,,47149,,, +1323,IND,,AIR Vividh Bharati,,Kolkata C (WB),22.362194,88.292611,,20,,7521,82,119,,0025-0435,1234567,,,50453,,, +1323,IND,,AIR Vividh Bharati,,Kolkata C (WB),22.362194,88.292611,,20,,7521,82,119,,0900-1200,1234567,,,50453,,, +1323,IND,,AIR Vividh Bharati,,Kolkata C (WB),22.362194,88.292611,,20,,7521,82,119,,1245-1730,1234567,,,50453,,, +1323,CHN,bo,CNR 11,,Chagyab=Chaya (XZ),30.298667,81.172833,,1,,6392,81,121,,,,,,36201174,,, +1323,CHN,,Baicheng RGD,,Baicheng (JL),45.5755,122.794906,,10,,7575,43,123,,,,,,50443,,, +1323,CHN,,Shaanxi RGD Jiaotong-Jili FM,,Xi'an/Caotan-SATS1 (SA),34.385556,108.950556,,10,,7827,59,125,,0000-2400,1234567,,,50452,,, +1323,CHN,bo,CNR 11,,Nagqu=Naqu (XZ),31.472389,92.042306,,1,,7020,72,127,,,,,,36201176,,, +1323,CHN,,Heze zhi Sheng,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,????-1610,1234567,,,50445,,, +1323,CHN,zh,CNR 2,,Gyangz=Jiangzi (XZ),28.904722,89.598889,,1,,7068,76,128,,2100-1602,1234567,,,36201175,,, +1323,CHN,zh,CNR 1,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,0000-0030,1234567,,,36201177,,, +1323,CHN,zh,CNR 1,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,1030-1100,1234567,,,36201177,,, +1323,CHN,zh,CNR 1,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2230-2300,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,0030-0600,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,0600-1000,1.34567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,1000-1030,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,1100-1800,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2000-2230,1234567,,,36201177,,, +1323,CHN,zh,Xizang RGD Hanyu,,Nyingchi=Linzhi (XZ),29.628833,94.370889,,1,,7322,72,130,,2300-2400,1234567,,,36201177,,, +1323,CHN,,Ningbo RGD News,,Ningbo (ZJ),29.887778,121.486667,,20,,8935,53,131,,2110-1535,1234567,,,50449,,, +1323,CHN,,Xingsha zhi Sheng,,Changsha/HNTS203 (HN),28.211544,113.051339,,10,,8607,60,132,,2200-1700,1234567,,,50444,,, +1323,THA,th,Thor. Or. 013,,Chiang Mai/Air Base (cmi),18.770278,98.9695,,10,,8542,76,132,,2200-1500,1234567,,,50469,,, +1323,CHN,,Wafangdian RGD,,Wafangdian (LN),39.616667,122,,1,,8074,47,138,,,,,,50451,,, +1323,THA,,Thor. Or.,,Surat Thani/Airport Approach Rd (stn),9.156389,99.133611,,5,,9390,82,138,,????-1705,1234567,,,50470,,, +1323,PHL,,DYSI-AM Super Radyo,,Iloilo City (ilo),10.742914,122.514217,,10,,10764,63,140,,2000-1500,1234567,,,50467,,, +1323,KOR,,HLCU KBS 1 R,,Ulleung (gsb),37.485556,130.8925,,1,,8696,42,143,,0000-2400,1234567,,,50464,,, +1323,KOR,,HLQJ KBS 1 R,,Yeonggwang (jen),35.273333,126.505556,,1,,8697,46,143,,0000-2400,1234567,,,50465,,, +1323,J,,JOFP NHK1,,Fukushima (toh-fuk),37.766667,140.483333,,1,,9076,35,144,,0000-2400,1234567,,,50456,,, +1323,J,ja,NHK R 1,,Yamada (toh-iwa),39.414444,141.989722,,1,,8970,33,144,,0000-2400,1234567,,,50462,,, +1323,PHL,ar,DXAD-AM,,Marawi City (lds),8.016667,124.3,,5,,11124,63,144,,2113-????,1234567,6,,50438,,, +1323,TWN,,Taiwan Guangbo Gongsi,,Taipei (TPS),25.020533,121.520175,,1,,9385,56,145,,,,,,50471,,, +1323,J,,NHK R 1,,Chizu (chg-tot),35.266667,134.233333,,0.1,,9060,41,154,,,,,,50455,,, +1323,J,,NHK R 1,,Gotsu (chg-shi),35.016667,132.233333,,0.1,,8994,42,154,,,,,,50457,,, +1323,J,,NHK R 1,,Kuse (chg-oka),35.066667,133.75,,0.1,,9058,41,154,,,,,,50458,,, +1323,J,,NHK R 1,,Muikamachi (chu-nii),34.316667,131.95,,0.1,,9048,43,154,,0000-2400,1234567,,,50459,,, +1323,J,,NHK R 1,,Nomura (shi-ehi),33.383333,132.65,,0.1,,9170,43,154,,,,,,50460,,, +1323,J,,NHK R 1,,Suzaki (shi-koc),33.383333,133.3,,0.1,,9200,42,154,,,,,,50461,,, +1323,J,ja,NHK R 1,,Muikaichi,34.5,134,,0.1,,9124,41,154,,,,,,31400089,,, +1323,J,ja,NHK R 1,,Takeda,34.5,134,,0.1,,9124,41,154,,,,,,31400088,,, +1323,NRU,,C2AM R Nauru,,Yaren,-0.533333,166.933333,,1,,13999,24,160,,1900-1130,1234567,,,50466,,, +1323,AUS,,5DN Cruise 1323,,Adelaide/MF Cavan Road (SA),-34.841111,138.593056,,2,,15803,82,163,,0000-2400,1234567,,,50439,,, +1323,AUS,,Kix Canberra,,Canberra/Gungahlin Dr. (ACT),-35.23,149.119444,,0.4,,16533,72,173,,,,,,37700070,,, +1330,USA,,WRCA,,Waltham (MA),42.288889,-71.189167,,17,,5677,292,102,,,,2,,42819,,, +1330,USA,es,WWRV,,New York/Hackensack [NJ] (NY),40.911111,-74.028333,,5,,5956,292,110,,,,17,,43429,,, +1330,USA,,WESR,,Onley-Onancock (VA),37.717222,-75.683611,,5,,6300,290,113,,,,,,41327,,, +1330,USA,en,WFNN,,Erie (PA),41.992222,-80.028889,,5,,6249,297,113,,,,0,,41414,,, +1330,CAN,en,CJYM,,Rosetown (SK),51.458611,-107.994444,,10,,6968,320,117,,,,0,,36253,,, +1330,USA,,WSPQ,,Springville (NY),42.498056,-78.686111,,1,,6129,296,118,,,,,,43053,,, +1330,USA,en,WLOL,,Minneapolis (MN),44.783889,-93.343889,,5.1,,6803,307,118,,,,993,,42207,,, +1330,USA,,KWLO,,Waterloo (IA),42.466944,-92.266389,,5,,6930,305,119,,,,,,39728,,, +1330,USA,en,WEBY,,Milton (D) (FL),30.518056,-87.082222,,25,,7603,292,119,,1200-2400,1234567,,,20012541,,, +1330,USA,,WYRD,,Greenville (SC),34.855,-82.423333,,5,,6953,292,120,,,,,,43542,,, +1330,USA,,WTRX,,Flint (MI),42.973333,-83.650556,,1,,6392,300,121,,,,,,43210,,, +1330,USA,en,WJSS,,Havre de Grace (MD),39.565278,-76.118889,,0.5,,6188,292,122,,,,,,41931,,, +1330,USA,,WANG,,Havelock (NC),34.923056,-76.943611,,1,,6597,289,123,,,,,,40723,,, +1330,USA,,WBTM,,Danville (VA),36.607222,-79.433611,,1,,6625,292,123,,,,,,40920,,, +1330,USA,,WHBL,,Sheboygan (WI),43.720556,-87.734444,,1,,6573,303,123,,,,0,,41608,,, +1330,USA,en,WCVC,,Tallahassee (FL),30.484167,-84.286944,,5,,7428,290,124,,,,,,41107,,, +1330,USA,en,WGFT,,Campbell (OH),41.089167,-80.615278,,0.5,,6353,296,124,,1200-2400,1234567,,,41504,,, +1330,ALS,,KXXJ,,Juneau (AK),58.301389,-134.440556,,3,,7238,339,125,,,,,,20016105,,, +1330,USA,,KNSS,,Wichita (KS),37.713056,-97.2475,,5,,7606,304,126,,,,,,39019,,, +1330,DOM,,HIVC R Vision Cristiana,,Santo Domingo (sdo),18.466667,-69.9,,3,,7470,271,127,,0000-2400,1234567,991,,1960,,, +1330,USA,,WVHI,,Evansville (IN),38.053333,-87.594444,,1,,7015,298,127,,,,,,43297,,, +1330,USA,en,KMBI,,Spokane (WA),47.604722,-117.3575,,5,,7711,323,127,,,,,,38884,,, +1330,USA,en,WMOR,,Morehead (KY),38.182222,-83.448889,,0.57,,6752,296,127,,1200-2400,1234567,,,42370,,, +1330,USA,,WGTJ,,Murrayville (GA),34.371111,-83.946389,,1,,7088,293,128,,,,,,41572,,, +1330,USA,,WHAZ,,Troy (NY),42.776389,-73.686111,,0.049,,5800,294,128,,,,,,41601,,, +1330,PTR,,WENA,,Yauco (PR),18.034444,-66.863333,,1.4,,7299,268,129,,0000-2400,1234567,,,41303,,, +1330,USA,,WEBO,,Owego (NY),42.0925,-76.256667,,0.036,,6009,295,131,,,,,,41242,,, +1330,USA,,WJNX,,Fort Pierce (FL),27.455556,-80.367222,,1,,7424,285,131,,,,,,41907,,, +1330,USA,en,KKPZ,i,Portland (OR),45.453611,-122.545833,,5,,8123,325,131,,,,,,38751,,, +1330,VEN,,YVOY R Los Llanos,,Calabozo (gco),8.916667,-67.5,,5,,8130,263,131,,0900-0300,1234567,,,45416,,, +1330,USA,,WMLT,,Dublin (GA),32.563889,-82.866667,,0.5,,7166,291,132,,,,,,42348,,, +1330,USA,,WFIN,,Findlay (OH),41.008611,-83.635278,,0.079,,6542,298,133,,,,,,41387,,, +1330,GTM,,TGMU Unin R LV de la Esperanza,,Ciudad de Guatemala (gut),14.566667,-90.516667,,10,,9198,284,134,,1100-2330,1234567,,,40518,,, +1330,USA,,WELW,,Willoughby (OH),41.649167,-81.423611,,0.042,,6360,297,134,,,,,,41293,,, +1330,USA,,WETZ,,New Martinsville (WV),39.6575,-80.859444,,0.059,,6477,295,134,,,,,,41334,,, +1330,USA,,WKTA,,Evanston (IL),42.139444,-87.885278,,0.11,,6706,302,134,,,,,,42074,,, +1330,B,pt,ZYI600 Rdio Liberal,,Castanhal (PA),-1.299811,-47.983475,,1,,7800,240,135,,,,83,,36901564,,, +1330,B,pt,ZYJ621 Rdio Eldorado,,Natal/Rua Gadelha (RN),-5.756111,-35.272861,,0.5,,7543,226,135,,,,4,,36902178,,, +1330,USA,,WNTA,,Rockford (IL),42.225556,-89.046944,,0.091,,6766,302,135,,,,,,42514,,, +1330,VEN,,YVPJ,,Rubio (tch),7.7,-72.316667,,5,,8564,266,135,,,,,,45421,,, +1330,CLM,es,HJNR La Caliente,,San Gil (sat),6.516667,-73.116667,,5,,8722,266,136,,,,,,37595,,, +1330,MEX,es,XEMAC-AM Ke Buena,,Manzanillo (col),19.044444,-104.318333,,10,,9676,298,136,,,,,,44345,,, +1330,USA,,KLBS,,Los Banos (CA),37.0975,-120.830833,,5,,8857,320,136,,,,,,52577,,, +1330,USA,,WNIX,,Greenville (MS),33.41,-91.0175,,0.5,,7605,297,136,,,,,,42474,,, +1330,USA,,WYPC,,Wellston (OH),39.106111,-82.578889,,0.05,,6626,296,136,,,,,,43541,,, +1330,CAN,xx,CJBW,,Jans Bay (SK),55.148333,-108.126667,,0.05,,6658,323,137,,,,,,20109183,,, +1330,NCG,,YNGA R Matagalpa,,Matagalpa (mgp),12.883333,-85.95,,5,,9040,280,137,,1100-0500,1234567,,,52217,,, +1330,PNR,es,R La Voz Poderosa,,Ciudad de Panam/Los Andes 2 (pnm),9.042222,-79.512222,,5,,8938,272,137,,,,,,52344,,, +1330,USA,en,WRAA,,Luray (VA),38.659444,-78.491111,,0.026,,6406,293,137,,,,,,42808,,, +1330,USA,es,KWKW,,Los Angeles (CA),34.019444,-118.345556,,5,,9040,316,137,,,,998,,39723,,, +1330,VEN,es,RNV Canal Informativo,,La Paragua (tch),6.833333,-63.333333,,1,,8033,258,137,,,,999,,31300001,,, +1330,CLM,es,HJLS,,Popayn (cau),2.45,-75.616667,,5,,9249,265,138,,,,,,35901688,,, +1330,USA,,WITM,,Marion (VA),36.819722,-81.47,,0.031,,6737,293,139,,,,,,42594,,, +1330,B,pt,ZYH468 Rdio Continental,,Serrinha (BA),-11.671589,-39.006406,,1,,8315,226,140,,,,,,36902168,,, +1330,B,pt,ZYK736 Rdio Terra AM,,So Paulo/Osasco (SP),-23.514167,-46.7725,,5,,9863,227,140,,,,0,,36902177,,, +1330,USA,,WRAM,,Monmouth (IL),40.949722,-90.571944,,0.05,,6956,302,140,,,,,,42813,,, +1330,USA,,WTRE,,Greensburg (IN),39.328056,-85.501667,,0.033,,6787,298,140,,,,,,43203,,, +1330,USA,en,KWFM,,South Tucson (AZ),32.314167,-110.838056,,2,,8827,310,140,,,,,,38676,,, +1330,EQA,,HCOV1,,Elangel (car),0.633333,-77.783333,,3,,9556,266,141,,,,,,37054,,, +1330,USA,,KGAK,,Gallup (NM),35.542778,-108.736389,,1,,8421,311,141,,,,,,38455,,, +1330,USA,,KOVE,,Lander (WY),42.842778,-108.744722,,0.25,,7762,315,141,,,,,,39113,,, +1330,USA,,WWAB,,Lakeland (FL),28.044444,-81.974444,,0.118,,7481,287,141,,,,,,43352,,, +1330,USA,en,WPJS,,Conway (SC),33.853611,-79.020556,,0.023,,6816,289,141,,,,,,42699,,, +1330,CLM,es,HJAD,,Cartagena (bol),10.513889,-75.498611,,1,,8536,270,142,,,,,,37322,,, +1330,USA,,KJPR,i,Shasta Lake City (CA),40.68,-122.266944,,1,,8572,323,142,,,,,,39392,,, +1330,USA,,WAEW,,Crossville (TN),35.950278,-85.035833,,0.035,,7028,295,142,,,,,,40660,,, +1330,USA,en,KCKM,,Monahans (TX),31.645833,-103.001111,,1,,8461,304,142,,,,,,38781,,, +1330,CLM,es,HJRD R Fnix,,El Peol (ant),7.133333,-75.45,,1,,8827,268,143,,,,975,,35901687,,, +1330,USA,,KUKU,,Willow Springs (MO),36.979722,-91.991389,,0.052,,7365,300,143,,,,,,39575,,, +1330,USA,,WZCT,,Scottsboro (AL),34.701944,-86.004167,,0.038,,7190,295,143,,,,,,43569,,, +1330,CLM,,RCN,,,4.45,-74.4,,1,,8990,265,144,,,,75,,49219,,, +1330,CLM,es,HJFE Antena 2,,Pereira (ris),4.766667,-75.666667,,1,,9049,267,144,,0000-2400,1234567,3,,37430,,, +1330,HND,,HRSW,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37847,,, +1330,MEX,es,XEAJ-AM La Explosiva,,Saltillo (coa),25.401667,-101.977222,,0.9,,8961,300,144,,,,,,43710,,, +1330,USA,,WKDP,,Corbin (KY),36.938889,-84.078889,,0.016,,6890,295,144,,,,,,41987,,, +1330,USA,en,WEBY,,Milton (N) (FL),30.62,-87.0225,,0.079,,7591,292,144,,0000-1200,1234567,,,41245,,, +1330,USA,en,WLBB,,Carrollton (GA),33.571389,-85.050556,,0.034,,7222,293,144,,,,,,42129,,, +1330,EQA,,HCRV3 Nacional El Oro,,Machala (oro),-3.25,-79.866667,,1.5,,10039,265,145,,,,,,37119,,, +1330,MEX,es,XEBO-AM R Variedades,,Irapuato (gua),20.635092,-101.359175,,1,,9352,296,145,,,,,,43786,,, +1330,PRG,,ZP4 R Chaco Boreal,,Asuncin (asu),-25.266667,-57.616667,,2.5,,10605,235,145,,,,,,45535,,, +1330,B,pt,ZYK641 Rdio Cultura,,Ribeiro Preto (SP),-21.212639,-47.773133,,1,,9692,229,146,,,,,,36902175,,, +1330,B,pt,ZYN610 Rdio Pantanal,,Coxim (MS),-18.561506,-54.758361,,1,,9819,236,146,,,,,,36902169,,, +1330,EQA,,HCJA1,,Sideral (pic),-0.216667,-78.466667,,1,,9677,266,146,,,,,,36977,,, +1330,ARG,es,R Cadena Cental,,Bernal (ba),-34.716667,-58.3,,3,,11511,230,147,,,,,,51852,,, +1330,MEX,es,XEEV-AM R Festival,,Izcar de Matamoros (pue),18.612222,-98.4625,,0.5,,9353,293,148,,,,,,43982,,, +1330,PRU,es,OAU1A R Dos Mil,,Chiclayo (lam),-6.783333,-79.866667,,1,,10349,263,148,,1000-0400,1234567,,,52511,,, +1330,URG,,CX40 R Fenix,,Montevideo (mo),-34.866667,-56.116667,,2.5,,11412,228,148,,1000-0600,1234567,,,36817,,, +1330,USA,,KGLD,,Tyler (TX),32.376389,-95.265278,,0.077,,7948,299,148,,,,,,38488,,, +1330,USA,,KINE,,Kingsville (TX),27.61,-97.795,,0.28,,8515,298,148,,,,,,38618,,, +1330,BOL,,CP112 R Frontera,,Yacuiba (trj),-22.016667,-63.7,,1,,10659,241,149,,0930-0330,1234567,,,36629,,, +1330,MEX,es,XEWQ-AM R Triunfadora,,Monclova (coa),26.917778,-101.409167,,0.25,,8792,300,149,,,,,,45031,,, +1330,USA,en,KTON,,Cameron (TX),30.846667,-96.965278,,0.097,,8182,299,149,,,,,,38906,,, +1330,B,pt,ZYJ264 Rdio Jaguariava,,Jaguariava (PR),-24.25,-49.7,,0.5,,10083,229,150,,,,,,36902173,,, +1330,CLM,es,HKR33,,Salamina (cal),5.4,-75.483333,,0.25,,8981,267,150,,,,,,35901689,,, +1330,EQA,,HCLW5 R Vision Cristiana,,Cuenca (azu),-2.85,-79,,0.45,,9945,265,150,,,,,,37011,,, +1330,B,pt,ZYJ739 Rdio Clube de Blumenau,,Blumenau (SC),-26.852778,-48.998889,,0.5,,10297,227,151,,,,,,36902174,,, +1330,USA,,KSWA,,Graham (TX),33.126944,-98.593056,,0.051,,8079,302,151,,,,,,39439,,, +1330,B,pt,ZYK323 Rdio Diplomata AM,,So Marcos (RS),-28.938056,-51.085278,,0.5,,10601,228,152,,,,,,36902170,,, +1330,BOL,,CP176 R America,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,0930-2400,1234567,,,36669,,, +1330,EQA,,HCJP2,,El Empalme (gua),-2.2,-79.9,,0.3,,9949,266,152,,,,,,36992,,, +1330,USA,en,KGRG,,Enumclaw (WA),47.214722,-121.971944,,0.026,,7931,326,152,,,,,,38333,,, +1330,B,pt,ZYK638 Rdio Paulista,,Regente Feij (SP),-22.193272,-51.333492,,0.25,,9973,232,153,,,,,,36902171,,, +1330,B,,ZYJ320,,Umuarama (PR),-23.75,-53.316667,,0.25,,10227,232,154,,,,,,46042,,, +1330,MEX,es,XERP-AM La Tremenda,,Ciudad Madero (tam),22.253167,-97.857808,,0.1,,8992,295,154,,,,,,44696,,, +1330,B,pt,ZYJ749 Rdio Chapec,,Chapec (SC),-27.080556,-52.619444,,0.25,,10504,230,155,,,,,,36902166,,, +1330,B,pt,ZYK236 Rdio Upacara,,Dom Pedrito (RS),-30.960833,-54.663056,,0.25,,10975,229,156,,,,46,,36902167,,, +1330,CHL,,CD133 R Vicente Perez Rosales,,Puerto Montt (LL),-41.466667,-72.95,,1,,12893,235,157,,1055-0400,1234567,,,35872,,, +1330,CHL,es,CB133 La Mexicana R,,Santiago (RM),-33.4,-70.733333,,0.5,,12085,239,157,,,,994,,35731,,, +1330,USA,en,WPGU994,,Corte Madera/342 Tamalpais Drive (CA),37.927683,-122.544361,,0.01,,8851,321,163,,,,213,,20010675,,, +1330,USA,en,WPLR739,,San Jose (CA),37.327692,-121.894944,,0.01,,8881,321,163,,,,,,20010674,,, +1332,CZE,cs,ČRo Dvojka,,Moravske Budějovice/Domamil (VY),49.074131,15.709111,,50,,737,114,47,,0300-1500,12345..,9990,,1301,,, +1332,CZE,cs,ČRo Dvojka,,Moravske Budějovice/Domamil (VY),49.074131,15.709111,,50,,737,114,47,,0400-1500,.....67,9990,,1301,,, +1332,CZE,cs,ČRo Plus,,Moravske Budějovice/Domamil (VY),49.074131,15.709111,,50,,737,114,47,,1500-2300,1234567,9990,,1301,,, +1332,HOL,nl,R Paradijs,,Nieuwegein (utr),52.036994,5.060844,,0.015,,93,266,56,,0000-2400,1234567,,,1305,,, +1332,ROU,ro,SRR R Romnia Actualităţi,,Galaţi/Barboşi (GL),45.403822,27.994522,,50,,1740,107,57,,0000-2400,1234567,5,,1308,,, +1332,G,en,Premier Christian R,,East London/Bow (EN-GTL),51.532917,-0.017667,,1,,446,264,61,,0000-2400,1234567,9989,,1303,,, +1332,G,en,Gold,,Peterborough/Gunthorpe (EN-CAM),52.617222,-0.247778,,0.6,,455,280,64,,0000-2400,1234567,9909,,1304,,, +1332,G,en,BBC R 5 Live,,Lacock (EN-WLT),51.406361,-2.104583,,0.3,,591,266,68,,0000-0500,1234567,0,,1302,,, +1332,G,en,BBC R Wiltshire,,Lacock (EN-WLT),51.406361,-2.104583,,0.3,,591,266,68,,0500-2400,1234567,0,,1302,,, +1332,POL,pl,R AM,,Pińczw/Komin PEC Pińczw (SK),50.509722,20.544722,,0.5,,997,95,70,,0000-2400,1234567,,,6400027,,, +1332,IRN,fa,IRIB R Tehran,,Tehran (thr),35.594653,51.252875,,300,,3955,100,72,,0000-2400,1234567,999,,1306,,, +1332,PAK,ur,PBC R Pakistan/NBS News,,Lahore (pjb),31.458889,74.214722,,100,,5830,85,95,,0200-0400,1234567,,,31500002,,, +1332,PAK,ur,PBC R Pakistan/NBS News,,Lahore (pjb),31.458889,74.214722,,100,,5830,85,95,,1300-1800,1234567,,,31500002,,, +1332,CHN,,Henan RGD Lyou Guangbo,,Zhengzhou (HE),34.7,113.7,,100,,8072,55,118,,,,,,50479,,, +1332,CHN,,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,7.5,,7418,62,122,,,,,,50478,,, +1332,IND,,AIR Northeast,,Tezu (AR),27.928611,96.141944,,10,,7578,72,123,,0025-0430,1234567,,,50481,,, +1332,IND,,AIR Northeast,,Tezu (AR),27.928611,96.141944,,10,,7578,72,123,,0630-0930,1234567,,,50481,,, +1332,IND,,AIR Northeast,,Tezu (AR),27.928611,96.141944,,10,,7578,72,123,,1030-1630,1234567,,,50481,,, +1332,CHN,,Changchun JGD,,Changchun (JL),43.8,125.4,,10,,7855,42,126,,,,,,50475,,, +1332,J,ja,JOSF Tokai Hoso,,Nagoya (chu-aic),35.174167,136.788611,,50,,9181,39,127,,0000-2400,1234567,0,,50491,,, +1332,KOR,ko,HLAO MBC,,Chungju (ccb),36.9575,127.923889,,10,,8608,44,132,,0000-2400,1234567,,,50493,,, +1332,CHN,,Fuzhou RGD,,Fuzhou/FJTS103 (FJ),26.073889,119.339722,,10,,9164,57,134,,2135-1730,1234567,,,50476,,, +1332,THA,th,Or. Sor.,,Bangkok/Chitralada Palace (bmp),13.771361,100.521233,,10,,9080,78,134,,0210-0500,......7,,,50500,,, +1332,THA,th,Or. Sor.,,Bangkok/Chitralada Palace (bmp),13.771361,100.521233,,10,,9080,78,134,,0310-0500,.23456.,,,50500,,, +1332,THA,th,Or. Sor.,,Bangkok/Chitralada Palace (bmp),13.771361,100.521233,,10,,9080,78,134,,0850-1200,.23456.,,,50500,,, +1332,THA,th,Thor. Or. 14,,Mahasarakham/Wapi Prathum Rd (msk),16.158889,103.304167,,10,,9056,75,134,,,,,,50501,,, +1332,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Yunxiao (FJ),23.980661,117.297156,,10,,9237,59,135,,,,,,36200311,,, +1332,TWN,,Han Sheng Kuangpo Tientai,,Tzuoyin (KH),22.696111,120.278333,,10,,9528,58,135,,2100-1600,1234567,,,50503,,, +1332,CHN,,Henan RGD Lyou Guangbo,,Anyang/Qilidian (HE),36.055833,114.329167,,1,,7988,54,137,,,,,,36200313,,, +1332,CHN,,Henan RGD Nongcun Guangbo,,Lingyang (HE),36.133333,113.85,,1,,7954,54,137,,,,,,36200312,,, +1332,PHL,,DYFX-AM Radyo Agila,,Cebu City (ceb),10.333333,123.933333,,10,,10887,62,140,,,,,,50402,,, +1332,INS,id,RRI Pro-4,,Depok/Cimanggis (JB-kde),-6.388989,106.862733,,10,185,11281,86,141,,2200-1700,1234567,0,,50483,,, +1332,PHL,,DZKI-AM,,Iriga City (cas),13.416667,123.6,,5,,10581,60,142,,,,,,50497,,, +1332,PHL,,DWAY-AM Sonshine R,,Cabanatuan City (nve),15.483333,120.966667,,2,,10232,61,145,,,,,,50496,,, +1332,TWN,,Taiwan Guangbo Gongsi,,Puli (NT),23.976111,120.982778,,1,,9450,57,145,,,,,,50502,,, +1332,J,,Tokai Hoso,,Shinshiro (chu-aic),34.9,137.5,,0.1,,9238,39,154,,0000-2400,1234567,,,50492,,, +1332,AUS,,4BU Classic Gold,,Bundaberg (QLD),-24.844472,152.406167,,5,,15848,57,159,,0000-2400,1234567,9962,,50473,,, +1332,AUS,,3SH Classic Hits,,Swan Hill (VIC),-35.408375,143.581917,,2,,16182,78,164,,0000-2400,1234567,,,50474,,, +1332,NZL,en,R Sport,,Auckland/Henderson (AUK),-36.849089,174.629694,,10,,18083,33,164,,0000-2400,1234567,,,50494,,, +1340,CAN,xx,CKHV,,Happy Valley (NL),53.316389,-60.286944,,1,,4328,299,100,,,,,,36322,,, +1340,USA,,WMDR,,Augusta (ME),44.328611,-69.764722,,1,,5445,293,111,,,,,,42300,,, +1340,USA,,WNZS,,Veazie (ME),44.852778,-68.678889,,0.63,,5342,293,112,,,,,,42544,,, +1340,USA,en,WSTJ,,St. Johnsbury (VT),44.418333,-71.995833,,1,,5579,294,113,,,,,,43072,,, +1340,USA,,WGAW,,Gardner (MA),42.5925,-71.988889,,1,,5706,293,114,,,,,,41478,,, +1340,USA,,WIRY,,Plattsburgh (NY),44.67,-73.444722,,0.94,,5651,295,114,,,,81,,41802,,, +1340,USA,,WNBH,,New Bedford (MA),41.6225,-70.918611,,1,,5707,291,114,,,,,,42434,,, +1340,USA,,WVNR,,Poultney (VT),43.504444,-73.203056,,1,,5718,294,114,,,,,,43319,,, +1340,USA,,WBNC,,Conway (NH),43.98,-71.110833,,0.62,,5554,293,115,,,,,,20016256,,, +1340,USA,,WBRK,,Pittsfield (MA),42.45,-73.215278,,1,,5793,293,115,,,,,,40901,,, +1340,USA,,WENT,,Gloversville (NY),43.025,-74.352778,,1,,5823,294,115,,,,,,41310,,, +1340,USA,,WMSA,,Massena (NY),44.903056,-74.883889,,0.91,,5723,296,115,,,,9936,,42388,,, +1340,CAN,xx,CFYK,,Yellowknife (NT),62.431944,-114.419444,,2.5,,6267,331,116,,,,997,,36026,,, +1340,USA,,WALL,,Middletown (NY),41.456944,-74.44,,1,,5942,293,116,,,,,,40697,,, +1340,USA,,WYBC,,New Haven (CT),41.2925,-72.953333,,0.88,,5860,292,116,,,,,,43505,,, +1340,USA,en,WMBO,,Auburn (NY),42.951389,-76.584722,,1,,5967,296,117,,,,,,43399,,, +1340,USA,,WHAT,,Philadelphia (PA),40.001667,-75.209722,,1,,6098,292,118,,,,,,41599,,, +1340,USA,,WLVL,,Lockport (NY),43.175,-78.710833,,1,,6081,297,118,,,,,,42253,,, +1340,USA,,WMID,,Atlantic City (NJ),39.376389,-74.452222,,0.89,,6096,291,118,,,,0,,42326,,, +1340,USA,,WWPA,,Williamsport (PA),41.229167,-77.0125,,1,,6120,294,118,,,,,,43422,,, +1340,USA,,WYCK,,Plains (PA),41.250278,-75.825556,,0.81,,6044,294,118,,,,,,43509,,, +1340,USA,es,WRAW,,Reading (PA),40.324167,-75.919444,,1,,6119,293,118,,,,,,42815,,, +1340,USA,,WTRN,,Tyrone (PA),40.663333,-78.256667,,1,,6240,295,119,,,,,,43205,,, +1340,USA,,WEPM,,Martinsburg (WV),39.463333,-77.986389,,1,,6313,293,120,,,,,,41317,,, +1340,USA,,WLEW,,Bad Axe (MI),43.800833,-83.023056,,1,,6293,300,120,,,,,,42157,,, +1340,USA,,WMBN,,Petoskey (MI),45.347222,-84.966944,,1,,6289,303,120,,,,,,42284,,, +1340,USA,en,WYCB,,Washington (DC),38.955278,-77.004167,,1,,6290,292,120,,,,,,43508,,, +1340,USA,,WEXL,,Royal Oak (MI),42.469444,-83.115,,1,,6399,299,121,,,,,,41343,,, +1340,USA,,WHAP,,Hopewell (VA),37.296111,-77.313889,,1,,6437,291,121,,,,,,41597,,, +1340,USA,,WVCV,,Orange (VA),38.253889,-78.120833,,1,,6414,292,121,,,,,,43289,,, +1340,USA,,KRBT,,Eveleth (DN) (MN),47.481944,-92.531667,,1,,6545,309,122,,,,,,20016289,,, +1340,USA,,KRBT,,Eveleth (U) (MN),47.477778,-92.533333,,1,,6545,309,122,,,,59,,39223,,, +1340,USA,,WAGN,,Menominee (MI),45.1075,-87.606944,,1,,6458,304,122,,,,,,40668,,, +1340,USA,,WKSN,,Jamestown (NY),42.104722,-79.2575,,0.52,,6193,296,122,,,,,,42071,,, +1340,USA,,WMTE,,Manistee (MI),44.235278,-86.318056,,1,,6452,302,122,,,,,,42402,,, +1340,USA,,WNCO,,Ashland (OH),40.840278,-82.357222,,1,,6478,297,122,,,,,,42445,,, +1340,USA,en,WJRW,,Grand Rapids (MI),42.951389,-85.698611,,1,,6515,301,122,,,,,,40810,,, +1340,USA,en,WXKX,,Clarksburg (WV),39.290833,-80.315556,,1,,6472,295,122,,,,,,43475,,, +1340,USA,,WCBQ,,Oxford (NC),36.3075,-78.576944,,1,,6594,291,123,,,,,,40956,,, +1340,USA,,WIZE,,Springfield (OH),39.9425,-83.7875,,1,,6634,297,123,,,,,,41828,,, +1340,USA,,WJYI,,Milwaukee (WI),43.046944,-87.981111,,1,,6640,302,123,,,,,,41943,,, +1340,USA,,WKEY,,Covington (VA),37.7675,-79.985,,1,,6569,293,123,,,,,,41999,,, +1340,USA,,WLDY,,Ladysmith (WI),45.466389,-91.123056,,1,,6627,306,123,,,,,,42149,,, +1340,USA,,WMON,,Montgomery (WV),38.177222,-81.314167,,1,,6620,294,123,,,,,,42368,,, +1340,USA,,WOOW,,Greenville (NC),35.616111,-77.370556,,1,,6571,290,123,,,,,,20016057,,, +1340,USA,,WOUB,,Athens (OH),39.329167,-82.091389,,1,,6579,296,123,,,,,,42629,,, +1340,USA,,WTRC,,Elkhart (IN),41.674444,-85.9475,,1,,6628,300,123,,,,,,43202,,, +1340,USA,,KVBR,,Brainerd (MN),46.3475,-94.181111,,1,,6722,309,124,,,,,,39611,,, +1340,USA,,KXPO,,Grafton (ND),48.398056,-97.448889,,1,,6727,312,124,,,,51,,39818,,, +1340,USA,,WBLB,,Pulaski (VA),37.065833,-80.784167,,1,,6674,293,124,,,,,,20016033,,, +1340,USA,,WLSG,,Wilmington (NC),34.231111,-77.955,,1,,6717,289,124,,,,,,42233,,, +1340,USA,,WPOL,,Winston-Salem (NC),36.073889,-80.255278,,1,,6719,292,124,,,,,,42722,,, +1340,USA,,WXFN,,Muncie (IN),40.161667,-85.378056,,1,,6713,299,124,,,,,,43463,,, +1340,USA,en,WCMI,,Ashland (KY),38.467222,-82.597222,,1,,6677,295,124,,,,,,41036,,, +1340,USA,,KDLM,,Detroit Lakes (MN),46.837222,-95.838056,,1,,6770,310,125,,,,,,38278,,, +1340,USA,,KROC,,Rochester (MN),44.029722,-92.491944,,1,,6817,306,125,,,,,,39278,,, +1340,USA,,WADE,,Wadesboro (NC),34.9525,-80.05,,1,,6795,291,125,,,,,,40650,,, +1340,USA,,WAGR,,Lumberton (NC),34.599444,-79.009167,,1,,6756,290,125,,,,,,40669,,, +1340,USA,,WEKY,,Richmond (KY),37.716667,-84.306944,,1,,6842,296,125,,,,,,41280,,, +1340,USA,,WJOL,,Joliet (IL),41.535,-88.054167,,1,,6763,301,125,,,,,,41913,,, +1340,USA,,WJRI,,Lenoir (NC),35.894167,-81.558333,,1,,6815,293,125,,,,,,41924,,, +1340,USA,,WKCB,,Hindman (KY),37.329167,-83.004722,,1,,6792,295,125,,,,,,41971,,, +1340,CUB,es,R Ciudad del Mar,,Palmira (cf),22.244378,-80.385947,,10,,7861,282,126,,,,0,,36508,,, +1340,USA,,KROS,,Clinton (IA),41.86,-90.205,,1,,6862,303,126,,,,,,39284,,, +1340,USA,,KWLM,,Willmar (MN),45.133333,-95.043056,,1,,6866,308,126,,,,,,39727,,, +1340,USA,,WBIW,,Bedford (IN),38.873056,-86.476111,,1,,6881,298,126,,,,,,40864,,, +1340,USA,,WGRV,,Greeneville (TN),36.169444,-82.847778,,1,,6875,294,126,,,,,,41561,,, +1340,USA,,WRHI,,Rock Hill (SC),34.983056,-81.019722,,1,,6854,292,126,,,,,,42850,,, +1340,USA,,WSSC,,Sumter (SC),33.929167,-80.324722,,1,,6894,290,126,,,,,,43068,,, +1340,VEN,,YVNE R.Uno AM 1340/R.Maria,,Caracas (dcf),10.472817,-66.790272,,10,,7946,263,126,,0000-2400,1234567,,,45392,,, +1340,CAN,en,CBEY,,Moosonee (ON),51.273611,-80.638611,,0.04,,5620,306,127,,,,,,20109189,,, +1340,USA,,WBGN,,Bowling Green (KY),37.009444,-86.4525,,1,,7030,297,127,,,,,,40843,,, +1340,USA,,WKGN,,Knoxville (TN),35.955556,-83.970556,,1,,6962,294,127,,,,,,42009,,, +1340,USA,,WQSC,,Charleston (SC),32.818611,-79.961944,,1,,6959,289,127,,,,,,42791,,, +1340,USA,,WSOY,,Decatur (IL),39.815,-89.002222,,1,,6956,300,127,,,,,,43047,,, +1340,USA,en,WYNF,,Augusta (GA),33.493611,-81.997778,,0.99,,7036,291,127,,,,,,42993,,, +1340,USA,,KIJV,,Huron (SD),44.345833,-98.209722,,1,,7099,310,128,,,,,,38600,,, +1340,USA,,WBAC,,Cleveland (TN),35.165,-84.853611,,1,,7080,294,128,,,,,,40795,,, +1340,USA,,WCSR,,Hillsdale (MI),41.928056,-84.636111,,0.25,,6531,300,128,,,,,,41088,,, +1340,USA,,WGAU,,Athens (GA),33.941111,-83.398611,,1,,7088,292,128,,,,,,41477,,, +1340,VIR,en,WSTA,,Charlotte Amalie (sto),18.336111,-64.954722,,1,,7143,267,128,,,,,,43070,,, +1340,USA,,KPOK,,Bowman (ND),46.18,-103.37,,1,,7207,314,129,,,,998,,39155,,, +1340,USA,,KXEO,,Mexico (MO),39.166667,-91.861944,,0.96,,7176,302,129,,,,,,39788,,, +1340,USA,,WBBT,,Lyons (GA),32.213333,-82.331944,,1,,7161,290,129,,,,,,40814,,, +1340,USA,,WCDT,,Winchester (TN),35.180833,-86.092778,,1,,7156,295,129,,,,,,40974,,, +1340,USA,,WGAA,,Cedartown (GA),34.035,-85.251111,,1,,7197,294,129,,,,,,41467,,, +1340,USA,,WJPF,,Herrin (IL),37.834444,-89.027778,,0.77,,7118,299,129,,,,,,41920,,, +1340,USA,,WKRM,,Columbia (TN),35.610556,-87.056111,,1,,7180,296,129,,,,,,42064,,, +1340,USA,en,WIFN,,Atlanta (GA),33.748889,-84.407222,,1,,7168,293,129,,,,,,40699,,, +1340,USA,en,WNBS,,Murray (KY),36.628333,-88.301111,,1,,7173,298,129,,,,,,42438,,, +1340,CAN,en,CBEU,,Temagami (ON),47.063611,-79.788611,,0.04,,5864,301,130,,,,,,20109188,,, +1340,PTR,es,WWNA,,Aguadilla (PR),18.4,-67.163333,,0.95,,7289,269,130,,0900-0300,1234567,,,43408,,, +1340,USA,,KDTD,,Kansas City (U a) (KS),39.113889,-94.679167,,1,,7342,304,130,,,,,,20016025,,, +1340,USA,,KLID,,Poplar Bluff (MO),36.7675,-90.369722,,1,,7286,299,130,,,,,,38814,,, +1340,USA,,KSMO,,Salem (MO),37.626667,-91.535833,,1,,7284,300,130,,,,,,39391,,, +1340,USA,,WDSR,,Lake City (FL),30.155556,-82.637222,,1,,7349,289,130,,,,,,41210,,, +1340,USA,,WFEB,,Sylacauga (AL),33.171111,-86.2325,,1,,7329,294,130,,,,,,41371,,, +1340,USA,,WOKS,,Columbus (GA),32.451944,-84.973611,,1,,7309,292,130,,,,,,42584,,, +1340,USA,,WROD,,Daytona Beach (FL),29.188611,-81.007778,,1,,7323,287,130,,,,,,42897,,, +1340,USA,,WSBM,,Florence (AL),34.797222,-87.665,,1,,7284,296,130,,,,,,42958,,, +1340,USA,,WTIF,,Tifton (GA),31.471111,-83.486667,,1,,7295,291,130,,,,,,43137,,, +1340,B,pt,ZYH886 Rdio So Lus,,So Lus (MA),-2.535206,-44.269217,,2,,7703,236,131,,,,,,36902188,,, +1340,CAN,en,CIVH,,Vanderhoof (BC),54.016389,-123.991389,,1,,7353,331,131,,,,,,36135,,, +1340,USA,,KADI,,Springfield (MO),37.092778,-93.266389,,1,,7430,301,131,,,,,,38586,,, +1340,USA,,KBTA,,Batesville (AR),35.744167,-91.639167,,1,,7447,299,131,,,,,,38101,,, +1340,USA,,KTOQ,,Rapid City (SD),44.068333,-103.169722,,1,,7379,312,131,,,,,,39528,,, +1340,USA,,WLOK,,Memphis (TN),35.116944,-90.016389,,1,,7401,298,131,,,,7,,42206,,, +1340,USA,,WMHZ,,Holt (D) (AL),33.214444,-87.489444,,1,,7404,295,131,,,,,,20016266,,, +1340,USA,,WMHZ,,Holt (N) (AL),33.214444,-87.489444,,1,,7404,295,131,,,,,,20016265,,, +1340,USA,,WWFL,,Clermont (FL),28.583056,-81.705278,,1,,7418,287,131,,,,,,43370,,, +1340,USA,en,WJAM,,Selma (AL),32.425278,-86.996389,,1,,7439,294,131,,,,,,42385,,, +1340,USA,,KGFW,,Kearney (NE),40.668056,-99.081111,,1,,7456,307,132,,,,,,38473,,, +1340,USA,,KSEK,,Pittsburg (KS),37.395556,-94.678333,,1,,7487,302,132,,,,,,39340,,, +1340,USA,,WFMH,,Cullman (AL),34.180278,-86.866389,,0.67,,7286,295,132,,,,,,41408,,, +1340,USA,,WTAN,,Clearwater (FL),27.9725,-82.796667,,1,,7540,287,132,,,,,,43103,,, +1340,USA,en,WITS,,Sebring (FL),27.508333,-81.422222,,1,,7489,286,132,,,,,,41818,,, +1340,CAN,en,CBLB,,Schreiber (ON),48.808333,-87.266667,,0.04,,6159,307,133,,,,,,20109186,,, +1340,CAN,en,CINL,,Ashcroft (BC),50.758333,-121.297778,,1,,7568,327,133,,,,,,36128,,, +1340,CAN,en,CKDR-1,,Ignace (ON),49.402222,-91.665556,,0.05,,6350,310,133,,,,,,20109184,,, +1340,USA,,KCAP,,Helena (MT),46.611944,-112.053611,,1,,7576,319,133,,,,,,38123,,, +1340,USA,,KCAT,,Pine Bluff (AR),34.213056,-92.031389,,1,,7598,298,133,,,,,,38125,,, +1340,USA,,KFMD,,Bethel Heights (D) (AR),36.211944,-94.127222,,1,,7554,301,133,,,,,,20016268,,, +1340,USA,,KFMD,,Bethel Heights (N) (AR),36.211944,-94.127222,,1,,7554,301,133,,,,,,20016269,,, +1340,USA,,KPRK,,Livingston (MT),45.6725,-110.539167,,1,,7592,318,133,,,,,,39160,,, +1340,USA,,KSID,,Sidney (NE),41.130556,-102.970833,,1,,7623,310,133,,,,,,39360,,, +1340,USA,,KWOR,,Worland (WY),44.017222,-107.970556,,1,,7620,315,133,,,,,,39742,,, +1340,USA,,KYLT,,Missoula (MT),46.882222,-113.985556,,1,,7636,321,133,,,,,,39854,,, +1340,USA,,KZNG,,Hot Springs (AR),34.495278,-93.024167,,1,,7634,299,133,,,,,,39897,,, +1340,USA,,WAML,,Laurel (MS),31.666944,-89.149722,,1,,7636,295,133,,,,,,40709,,, +1340,USA,,WPBR,,Lantana (FL),26.62,-80.080833,,0.81,,7474,285,133,,,,,,42651,,, +1340,B,pt,ZYI671 Rdio Consolao,,Joo Pessoa (PB),-7.127153,-34.846711,,1,,7660,225,134,,,,,,36902180,,, +1340,USA,,KJMU,,Sand Springs (OK),36.133056,-96.092222,,0.9,,7675,302,134,,,,,,39476,,, +1340,USA,,KQJZ,,Evergreen (MT),48.238889,-114.2525,,0.67,,7524,322,134,,,,,,20016097,,, +1340,USA,,WTYS,,Marianna (FL),30.763056,-85.231111,,0.54,,7465,291,134,,,,,,43243,,, +1340,CLM,es,HJPY R Mil,,Ccuta (nsa),7.816667,-72.466667,,5,,8564,266,135,,,,,,37628,,, +1340,GTM,,TGCO Emisoras Unidas LV del Trpico,,Coatepeque (qzt),14.516667,-91.866667,,10,,9291,285,135,,,,,,40487,,, +1340,USA,,KGHM,,Oklahoma City (OK),35.499444,-97.509167,,1,,7811,303,135,,,,,,38308,,, +1340,USA,,KHUB,,Fremont (NE),41.432778,-96.454444,,0.25,,7248,306,135,,,,,,38567,,, +1340,USA,,KRMD,,Shreveport (LA),32.493333,-93.765278,,1,,7848,298,135,,,,,,39265,,, +1340,USA,,KSGT,,Jackson (WY),43.4625,-110.793611,,1,,7804,317,135,,,,,,39354,,, +1340,USA,en,KGGS,,Garden City (KS),37.968889,-100.932222,,1,,7789,307,135,,,,,,20016132,,, +1340,USA,en,KWLE,,Anacortes (WA),48.495556,-122.604167,,1,,7832,327,135,,,,4,,38824,,, +1340,USA,en,KZNW,,Wenatchee (WA),47.397222,-120.273611,,1,,7848,325,135,,,,,,39767,,, +1340,EQA,,HCPB6,,Ambato (tun),-1.216667,-78.566667,,10,,9772,265,136,,,,,,37058,,, +1340,USA,,KVOQ,,Denver (CO),39.683333,-105.006667,,1,,7856,311,136,,,,,,20016026,,, +1340,USA,,KWVR,,Enterprise (DN) (OR),45.399444,-117.258333,,1,,7913,322,136,,,,,,20016292,,, +1340,USA,,KWVR,,Enterprise (U) (OR),45.437222,-117.291667,,1,,7911,322,136,,,,,,39765,,, +1340,USA,en,KJOX,,Kennewick (WA),46.221667,-119.186111,,1,,7916,324,136,,,,,,39463,,, +1340,CLM,es,HJFB R Amor,,Bogot D. C. (bdc),4.583333,-74.066667,,5,,8956,265,137,,,,5,,37427,,, +1340,CLM,es,HJKD,,Neiva (hui),2.783333,-75.283333,,5,,9197,265,137,,,,,,37523,,, +1340,CLM,es,HJNY,,Bucaramanga (sat),7.133333,-73.133333,,4,,8669,266,137,,,,,,35901700,,, +1340,CTR,,TIHR R Sideral,,San Ramn (alj),10.066667,-84.466667,,5,,9185,277,137,,1000-0400,1234567,,,40583,,, +1340,HND,,HRHH,,San Pedro Sula (cor),15.216667,-88.016667,,5,,8975,283,137,,,,,,37766,,, +1340,MEX,es,XEQB-AM La Divertida,,Tulancingo de Bravo (hid),20.072931,-98.367722,,5,,9217,294,137,,,,,,44598,,, +1340,MEX,es,XERPV-AM La Cotorra,,Ciudad Victoria (tam),23.796572,-99.132256,,5,,8933,297,137,,,,,,44704,,, +1340,USA,,KACH,,Preston (ID),42.129167,-111.85,,1,,7974,317,137,,,,,,37911,,, +1340,USA,,KAND,,Corsicana (TX),32.114722,-96.463056,,1,,8042,300,137,,,,,,37948,,, +1340,USA,,KRBA,,Lufkin (TX),31.364722,-94.718889,,1,,8003,298,137,,,,,,39221,,, +1340,USA,,KTFI,,Wendell (ID),42.723889,-114.669722,,1,,8049,319,137,,,,,,20016100,,, +1340,USA,,KVRH,,Salida (CO),38.531944,-106.015,,1,,8010,311,137,,,,,,39663,,, +1340,USA,en,KUOW r:KUOW-FM,i,Tumwater (WA),47.006944,-122.918611,,1,,7987,326,137,,,,,,39671,,, +1340,B,pt,ZYH661 Rdio Pitaguary,,Maracana (CE),-3.86825,-38.588314,,0.25,,7524,230,138,,,,3,,36902184,,, +1340,B,pt,ZYL241 Rdio Cultura de Itabirito,,Itabirito (MG),-20.253047,-43.790361,,5,,9397,226,138,,,,,,36902189,,, +1340,CAN,,CFKC,,Creston (BC),49.093056,-116.531667,,0.25,,7540,324,138,,,,,,35968,,, +1340,MEX,es,XELU-AM Ke Buena,,Ciudad Serdan (pue),18.989333,-97.454675,,5,,9256,292,138,,,,,,44327,,, +1340,USA,,KDTD,,Kansas City (U b) (KS),38.266944,-94.516389,,0.2,,7404,303,138,,,,,,20016220,,, +1340,USA,,KIHR,,Hood River (OR),45.701667,-121.534722,,1,,8059,325,138,,,,,,38595,,, +1340,USA,,KOLE,,Port Arthur (TX),29.904167,-93.936111,,1,,8081,297,138,,,,,,39080,,, +1340,USA,,KTMM,,Grand Junction (CO),39.126389,-108.636667,,1,,8091,313,138,,,,,,39509,,, +1340,USA,,KTMP,,Heber City (UT),40.500556,-111.448611,,1,,8104,315,138,,,,,,39510,,, +1340,B,pt,ZYK571 Emissora de Campos do Jordo,,Campos do Jordo (SP),-22.768944,-45.618367,,5,,9734,227,139,,,,,,36902179,,, +1340,USA,,KKAM,,Lubbock (TX),33.556667,-101.862778,,1,,8228,305,139,,,,,,38702,,, +1340,USA,,KLOO,,Corvallis (OR),44.593889,-123.225,,1,,8232,325,139,,,,,,38841,,, +1340,USA,,KVOT,,Taos (NM),36.389444,-105.585833,,1,,8179,309,139,,,,,,20016090,,, +1340,USA,,KWKC,,Abilene (TX),32.420556,-99.731667,,1,,8206,302,139,,,,,,39719,,, +1340,USA,,KYCN,,Wheatland (WY),42.045556,-104.946389,,0.25,,7645,312,139,,,,,,39842,,, +1340,PNR,es,R Tipikal,,Las Tablas/Los Cerritos (lsn),7.781508,-80.26445,,2.5,,9099,272,140,,,,,,52345,,, +1340,USA,,KCQL,,Aztec (NM),36.821389,-107.999444,,1,,8267,311,140,,,,,,38200,,, +1340,USA,,KCRN,,San Angelo (TX),31.478611,-100.463889,,1,,8331,302,140,,,,,,38203,,, +1340,USA,,KTSN,,Elko (DN) (NV),40.865556,-115.719444,,1,,8270,318,140,,,,,,39542,,, +1340,USA,,KTSN,,Elko (U) (NV),40.868889,-115.719167,,1,,8270,318,140,,,,,,20016198,,, +1340,USA,,KBBR,,North Bend (OR),43.432778,-124.208333,,1,,8383,325,141,,,,,,38007,,, +1340,USA,,KPGE,,Page (AZ),36.906389,-111.458889,,1,,8435,313,141,,,,,,39137,,, +1340,USA,,KVNN,,Victoria (TX),28.830278,-97.009167,,1,,8360,298,141,,,,,,39644,,, +1340,CLM,es,HJFA R Alegre,,Barranquilla (atl),10.944308,-74.831578,,1,,8453,270,142,,,,789,,37426,,, +1340,CLM,es,HJHY RCN,,Sincelejo (suc),9.266667,-75.333333,,1,,8633,269,142,,,,2,,37484,,, +1340,MEX,es,XEBK-AM,,Nuevo Laredo (tam),27.486456,-99.511003,,1,,8628,299,142,,,,,,43782,,, +1340,MEX,es,XEDH-AM R Amistad,,Ciudad Acua (coa),29.332778,-100.957778,,1,,8550,301,142,,,,,,43907,,, +1340,PRU,es,OAU4Q R Alegra,,Lima/Villa El Salvador (lim),-12.208333,-76.958333,,5.5,,10630,257,142,,,,1,,37000028,,, +1340,USA,,KATA,,Arcata (CA),40.853333,-124.083333,,1,,8630,324,142,,,,,,37976,,, +1340,USA,,KBNW,,Bend (OR),44.079722,-121.282778,,0.5,,8204,324,142,,,,,,20016099,,, +1340,USA,,KXEQ,,Reno (NV),39.518056,-119.741389,,0.98,,8577,320,142,,,,,,39789,,, +1340,CLM,,HJKV R Laser,,Gala (sap),6.666667,-73.3,,1,,8721,266,143,,,,,,37535,,, +1340,MEX,es,XENV-AM,,Monterrey (nvl),25.684444,-100.2325,,1,,8832,299,143,,,,,,44462,,, +1340,USA,,KCBL,i,Fresno (CA),36.764167,-119.785556,,1,,8843,319,143,,,,0,,38128,,, +1340,USA,,KIKO,,Miami (AZ),33.411389,-110.838056,,0.93,,8726,311,143,,,,,,38604,,, +1340,USA,,KRLV,,Las Vegas (NV),36.156111,-115.256667,,0.9,,8690,315,143,,,,,,39263,,, +1340,USA,,KTOX,,Needles (CA),34.852778,-114.621944,,1,,8782,314,143,,,,,,39529,,, +1340,USA,,KTPI,,Mojave (CA),35.039722,-118.149167,,1,,8933,317,143,,,,,,39532,,, +1340,USA,,KVIV,,El Paso (TX),31.760278,-106.435556,,0.91,,8642,307,143,,,,,,39630,,, +1340,USA,en,KNTF,,Oroville (CA),39.508889,-121.598333,,1,,8658,322,143,,,,15,,38349,,, +1340,CAN,en,CJEV,,Elkford (BC),50.021944,-114.925556,,0.05,,7389,323,144,,,,,,20109187,,, +1340,CLM,es,HJIS R Uno,,Buenaventura (val),3.816667,-77.033333,,1,,9225,267,144,,,,,,37498,,, +1340,CLM,es,HJNP,,Nario (ant),5.616667,-75.183333,,1,,8941,267,144,,,,,,35901692,,, +1340,MEX,es,XEAA-AM,,Mexicali (bcn),32.618622,-115.537419,,1,,9037,314,144,,,,,,43674,,, +1340,MEX,es,XEOS-AM,,Ciudad Obregn (son),27.494444,-109.955,,1,,9226,307,144,,,,,,44514,,, +1340,NCG,,YNOS R Ondas Sonoras,,Managua (mng),12.166667,-86.266667,,1,,9124,280,144,,,,,,45182,,, +1340,SLV,,YSXW,,Usulutn (usu),13.316667,-88.45,,1,,9170,282,144,,,,,,45337,,, +1340,USA,,KWXY,,Cathedral City (CA),33.801944,-116.462222,,1,,8971,315,144,,,,,,39770,,, +1340,USA,en,KOMY,,La Selva Beach (Watsonville) (CA),36.961944,-121.980833,,0.85,,8921,321,144,,,,9968,,39089,,, +1340,CLM,es,HJHA,,Pasto (nar),1.166667,-77.216667,,1,,9470,266,145,,,,,,37579,,, +1340,EQA,,HCRV3,,Machala (oro),-3.316667,-79.966667,,1.5,,10052,265,145,,,,,,37120,,, +1340,MEX,es,XEASM-AM Romntica 1340,,Cuernavaca (mor),18.915,-99.236944,,1,,9375,294,145,,,,,,44200,,, +1340,MEX,es,XECR-AM La Z,,Morelia (mic),19.701944,-101.184722,,1,,9425,296,145,,,,,,43870,,, +1340,MEX,es,XEDKT-AM R Ranchito,,Guadalajara (jal),20.641853,-103.340219,,1,,9472,298,145,,,,,,43915,,, +1340,MEX,es,XEMT-AM Nostalgia,,Matamoros (tam),25.862656,-97.476667,,0.6,,8649,297,145,,,,,,44410,,, +1340,MEX,es,XEQE-AM La Kaona,,Escuinapa (sin),22.849722,-105.802222,,1,,9417,301,145,,,,,,44603,,, +1340,USA,,KYNS,,San Luis Obispo (CA),35.234167,-120.675833,,0.79,,9030,319,145,,,,,,39864,,, +1340,EQA,,HCDN5,,Lican (chi),-1.666667,-78.75,,1,,9824,265,146,,,,,,36901,,, +1340,EQA,,HCGF1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,36954,,, +1340,EQA,,HCNC7,,Fco Orellana (nap),-0.45,-76.966667,,1,,9595,264,146,,,,,,37039,,, +1340,MEX,es,XEAPM-AM Candela,,Apatzingan (mic),19.063678,-102.248464,,1,,9548,296,146,,,,,,43725,,, +1340,MEX,es,XECI-AM Romntica 1340,,Acapulco (gue),16.844817,-99.913592,,1,,9603,293,146,,,,,,43843,,, +1340,MEX,es,XERCH-AM R xitos,,Ojinaga (chi),29.540556,-104.395556,,0.5,,8729,304,146,,,,,,44656,,, +1340,USA,,KCLU,,Santa Barbara (CA),34.418611,-119.686111,,0.65,,9064,318,146,,,,,,39501,,, +1340,EQA,,HCDR4,,Bahia (man),-0.95,-80.416667,,1,,9874,267,147,,,,,,36907,,, +1340,EQA,,HCSF2,,Fluminense (rio),-1.8,-79.533333,,1,,9889,266,147,,,,,,37133,,, +1340,BOL,,CP24 R Grigota,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,1000-0100,1234567,,,36684,,, +1340,B,pt,ZYJ490 Rdio 1340,,Rio Bonito (RJ),-22.722672,-42.69375,,0.5,,9587,224,149,,,,,,36902192,,, +1340,B,pt,ZYK227 Rdio CBN,,Canoas/Rua Primavera (RS),-29.966111,-51.200556,,1,,10705,227,149,,,,,,36902185,,, +1340,B,pt,ZYK543 Rdio Cultura de Araatuba,,Araatuba (SP),-21.2,-50.433333,,0.5,,9831,231,149,,,,,,36902187,,, +1340,USA,,KVGC,,Jackson (CA),38.355833,-120.768889,,0.25,,8733,320,149,,,,,,20016094,,, +1340,ARG,,R Tradicional,,Ituzaingo (cn),-27.566667,-56.666667,,1,,10766,233,150,,,,,,51853,,, +1340,ARG,,Frequencia Mediterranea,,Rosario del Tala (er),-32.3,-59.15,,1,,11335,232,151,,,,,,33000050,,, +1340,URG,,CW53 LV de Melo,,Melo (cl),-32.45,-54.216667,,1,,11091,228,151,,0800-0300,1234567,,,36777,,, +1340,ARG,es,R.Tradicional Conurbano Norte,,Florida (ba),-34.516667,-58.5,,1,,11503,230,152,,,,,,33000049,,, +1340,B,,ZYK352,,Iju (RS),-28.366667,-53.916667,,0.5,,10693,230,152,,,,,,46378,,, +1340,B,pt,ZYL352 Rdio Globo,,Passos/Rua Valinhos (MG),-20.723317,-46.637814,,0.25,,9586,229,152,,,,,,36902186,,, +1340,BOL,,R Copacabana,,Copacabana (lpz),-16.166667,-69.083333,,0.5,,10467,249,152,,,,,,52021,,, +1340,BOL,,R Jach'a Suyu,,Corocoro (lpz),-17.2,-68.483333,,0.5,,10521,248,152,,1000-1630,1234567,,,52022,,, +1340,BOL,,R Jach'a Suyu,,Corocoro (lpz),-17.2,-68.483333,,0.5,,10521,248,152,,2000-0100,1234567,,,52022,,, +1340,PRU,,OAZ4Q R Jauja,,Jauja (jun),-11.666667,-75.566667,,0.5,,10490,257,152,,,,,,40372,,, +1340,B,pt,ZYI380 Rdio Difusora de Aquidauana,,Aquidauana (MS),-20.461272,-55.78065,,0.25,,10055,236,153,,,,,,36902191,,, +1340,B,pt,ZYJ249 Transamrica Hits,,Arapongas (PR),-23.416389,-51.422222,,0.25,,10094,231,153,,,,,,36902182,,, +1340,B,pt,ZYK738 Rdio Nova Canoa Grande,,Igarau do Tiet (SP),-22.515156,-48.547272,,0.25,,9857,229,153,,,,,,36902181,,, +1340,BOL,,CP146 R San Francisco,,Apolo (lpz),-14.716667,-68.466667,,0.35,,10298,249,153,,,,,,36649,,, +1340,B,pt,ZYJ205 Rdio Difusora de Rio Negro,,Rio Negro (PR),-26.016111,-49.791111,,0.25,,10257,228,154,,,,,,36902183,,, +1340,B,pt,ZYJ368 CBN Cascavel,,Cascavel (PR),-24.923056,-53.411667,,0.25,,10343,232,154,,,,,,36902190,,, +1340,CHL,,CB134 R Caracola,,Valparaso (VS),-33.466667,-71.666667,,1,,12146,240,154,,0930-0300,1234567,,,35732,,, +1340,CHL,,CC134 R La Discusion,,Chilln (BI),-36.533333,-72.066667,,1,,12431,238,155,,0000-2400,1234567,,,35809,,, +1340,CHL,,CD134 R Panguipulli,,Panguipulli (LL),-39.6,-72.35,,1,,12705,236,156,,1200-0100,1234567,,,35873,,, +1340,USA,en,WPGG906,,San Jose (CA),37.350222,-121.911022,,0.01,,8880,321,163,,,,,,20010678,,, +1340,USA,en,WPUD976,,Sacramento (CA),38.583333,-121.5,,0.01,,8743,321,163,,,,,,20010676,,, +1340,USA,en,WPUD976,,Sacramento/4135 Traffic Way (CA),38.546306,-121.344328,,0.01,,8740,321,163,,,,,,20010677,,, +1341,G,en,BBC R 5 Live,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0100-0630,.23456.,0,,1313,,, +1341,G,en,BBC R 5 Live,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0200-0630,1......,0,,1313,,, +1341,G,en,BBC R 5 Live,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0200-0700,......7,0,,1313,,, +1341,G,en,BBC R Ulster,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0630-0100,12345..,0,,1313,,, +1341,G,en,BBC R Ulster,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0645-0200,.....6.,0,,1313,,, +1341,G,en,BBC R Ulster,,Lisnagarvey/Blaw-Knox mast (NI-ANT),54.489722,-6.060278,,100,,869,293,46,,0700-0200,......7,0,,1313,,, +1341,E,es,SER,,Len (CAL-LE),42.624094,-5.582622,,10,,1385,225,61,,0000-2400,1234567,,,1310,,, +1341,E,es,Onda Cero,,Ciudad Real/Ctra. Piedrabuena (CAM-CR),39.007839,-3.966022,,10,,1662,213,64,,0000-2400,1234567,,,1311,,, +1341,E,es,Onda Cero,,Almera (AND-AL),36.822181,-2.425311,,5,,1836,206,68,,0000-2400,1234567,,,1309,,, +1341,EGY,ar,ERTU Al-Barnameg al-Aam,,Siwa (mth),29.185194,25.534917,,10,,2996,141,77,,0000-2400,1234567,,,1848,,, +1341,EGY,ar,ERTU Al-Aghani (Songs),,Abu Za'bal (qlb),30.270136,31.366203,,10,,3171,130,79,,0300-2400,1234567,,,1312,,, +1341,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,Bawiti=Al Bawiti (gzh),28.338528,28.931722,,10,,3234,136,79,,0200-2200,1234567,,,1849,,, +1341,KWT,ar,R Kuwait 2,,Madinat al-Kuwayt/Al-Maqwa (muk),29.181153,48.042678,,100,,4251,110,80,,0700-1700,1234567,,,1316,,, +1341,KWT,ar,R Kuwait Quran Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.181153,48.042678,,100,,4251,110,80,,0200-0700,1234567,,,1316,,, +1341,KWT,ar,R Kuwait Quran Channel,,Madinat al-Kuwayt/Al-Maqwa (muk),29.181153,48.042678,,100,,4251,110,80,,1700-2300,1234567,,,1316,,, +1341,EGY,ar,ERTU Al-Barnameg al-Aam,,Edfu=Idfu (asn),24.993597,32.908778,,10,,3751,133,85,,0000-2400,1234567,,,1847,,, +1341,IRQ,,Dangi Komal-Kirkuk R,,Kirkuk (krk),35.466667,44.4,,1,,3509,107,92,,,,,,1315,,, +1341,KAZ,,R Liberty,,Almaty (alm),43.283333,77,,30,,5159,71,94,,1500-1600,1234567,,,2563,,, +1341,KAZ,kk,R Liberty,,Almaty (alm),43.283333,77,,30,,5159,71,94,,0100-0200,1234567,,,2563,,, +1341,KAZ,kk,R Liberty,,Almaty (alm),43.283333,77,,30,,5159,71,94,,1300-1400,1234567,,,2563,,, +1341,IRN,fa,IRIB R Kerman,,Bam (krm),29.072028,58.382778,,10,,4940,100,96,,0000-2400,1234567,607,,1810,,, +1341,BFA,,RTB-R.Nationale du Burkina,,Ouagadougou (kad),12.43475,-1.550889,,1,,4469,192,102,,0530-0900,1234567,,,2512,,, +1341,BFA,,RTB-R.Nationale du Burkina,,Ouagadougou (kad),12.43475,-1.550889,,1,,4469,192,102,,0900-1200,.....67,,,2512,,, +1341,BFA,,RTB-R.Nationale du Burkina,,Ouagadougou (kad),12.43475,-1.550889,,1,,4469,192,102,,1200-2400,1234567,,,2512,,, +1341,PAK,,PBC R Pakistan/NBS News,,Bahawalpur (pjb),29.407089,71.682108,,10,,5817,89,105,,0200-0400,1234567,954,,50540,,, +1341,PAK,,PBC R Pakistan/NBS News,,Bahawalpur (pjb),29.407089,71.682108,,10,,5817,89,105,,0850-1810,1234567,954,,50540,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Heihe/SARFT913 (HL),50.23,127.519167,,100,,7361,37,111,,0000-2400,1234567,,,36200309,,, +1341,CHN,en,China R Int.,,Guangzhou/SARFT522 (GD),23.403514,113.240917,,300,140,9047,63,119,,1130-1400,1234567,,,50508,,, +1341,CHN,tl,China R Int.,,Guangzhou/SARFT522 (GD),23.403514,113.240917,,300,140,9047,63,119,,1430-1500,1234567,,,50508,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mishan/SARFT914 (HL),45.644722,131.875278,,10,,7965,37,127,,0855-1500,1234567,,,50511,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Mishan/SARFT914 (HL),45.644722,131.875278,,10,,7965,37,127,,2100-0600,1234567,,,50511,,, +1341,CHN,zh,Shenyang RGD Tiyu,,Shenyang (LN),41.748056,123.385,,10,,7948,45,127,,1955-1800,1234567,,,50510,,, +1341,KOR,ko,KBS 1 R,,Gimpo=Kimpo (gye),37.705833,126.635833,,25,,8476,45,128,,0000-2400,1234567,,,50538,,, +1341,THA,th,Sor. Wor. Thor. (R Thailand),,Loei (loe),17.562222,101.729722,,20,,8830,75,130,,,,,,50543,,, +1341,THA,th,Sor. Wor. Thor. (R Thailand),,Ubon Ratchathani (urt),15.318056,104.753333,,25,,9225,74,131,,2200-1600,1234567,,,50544,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Yichun (HL),47.777222,128.843611,,1,,7640,37,133,,2125-1630,1234567,,,50514,,, +1341,IND,,AIR Northeast,,Kohima (NL),25.716667,94.05,,1,,7626,75,133,,0000-0510,1234567,,,50515,,, +1341,IND,,AIR Northeast,,Kohima (NL),25.716667,94.05,,1,,7626,75,133,,0700-0900,1234567,,,50515,,, +1341,IND,,AIR Northeast,,Kohima (NL),25.716667,94.05,,1,,7626,75,133,,1000-1630,1234567,,,50515,,, +1341,THA,th,Sor. Wor. Thor. (R Thailand),,Phangnga (pgg),8.448056,98.534444,,10,,9411,83,135,,,,,,52408,,, +1341,CHN,,Dezhou RGD Traffic,,Dezhou (SD),37.4575,116.313333,,1,,7973,52,137,,,,,,36200308,,, +1341,CHN,,Taizhou RGD,,Taizhou (ZJ),28.612222,121.415278,,5,,9048,54,137,,2047-1703,1234567,,,50512,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Suifenhe (HL),44.4,131.166667,,1,,8053,38,138,,0855-1500,1234567,,,36200310,,, +1341,CHN,zh,Heilongjiang RGD Xinwen Guangbo,,Suifenhe (HL),44.4,131.166667,,1,,8053,38,138,,2100-0600,1234567,,,36200310,,, +1341,CHN,,Qufu RGD,,Qufu (SD),35.6,116.983333,,1,,8173,53,139,,,,,,50509,,, +1341,CHN,,Yincheng RGD,,Yingcheng (HU),30.95,113.55,,1,,8393,58,141,,0955-1305,1234567,,,50513,,, +1341,CHN,,Yincheng RGD,,Yingcheng (HU),30.95,113.55,,1,,8393,58,141,,2144-0120,1234567,,,50513,,, +1341,CHN,,Chibi RGD,,Chibi (HU),29.883333,113.633333,,1,,8493,58,142,,,,,,50507,,, +1341,J,,JOHQ NHK1,,Iwaki (toh-fuk),37.059167,140.881111,,1,,9162,35,144,,0000-2400,1234567,,,50521,,, +1341,J,ja,NHK R 1,,Minamata/Gion-Cho (kyu-kum),32.216667,130.383333,,1,,9174,45,144,,,,,,31400012,,, +1341,INS,id,RRI Pro-1,,Tanjung Pinang (KR-tjp),0.916667,104.466667,,1,,10476,83,149,,0745-1600,1234567,,,50516,,, +1341,INS,id,RRI Pro-1,,Tanjung Pinang (KR-tjp),0.916667,104.466667,,1,,10476,83,149,,2200-0300,1234567,,,50516,,, +1341,INS,id,Citra R,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400083,,, +1341,INS,id,R Bittara Indah,,Toli-Toli (ST-tol),1.05,120.816667,,1,,11547,70,152,,,,,,50517,,, +1341,J,,NHK R 1,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,0000-2400,1234567,,,50523,,, +1341,J,,NHK R 1,,Nakashibetsu (hok),43.533333,144.983333,,0.1,,8661,29,153,,0000-2400,1234567,,,50525,,, +1341,J,,NHK R 1,,Urakawa (hok),42.166667,142.783333,,0.1,,8723,31,153,,0000-2400,1234567,,,50535,,, +1341,J,,NHK R 1,,Yokote (toh-aki),39.3,140.566667,,0.1,,8927,34,153,,0000-2400,1234567,,,50536,,, +1341,J,,NHK R 1,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,0000-2400,1234567,,,50519,,, +1341,J,,NHK R 1,,Ina (chu-nag),35.833333,137.95,,0.1,,9165,38,154,,0000-2400,1234567,,,50520,,, +1341,J,,NHK R 1,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,0000-2400,1234567,,,50522,,, +1341,J,,NHK R 1,,Masuda (chg-shi),34.683333,131.85,,0.1,,9008,43,154,,0000-2400,1234567,,,50524,,, +1341,J,,NHK R 1,,Niimi (chg-oka),34.966667,133.466667,,0.1,,9055,41,154,,0000-2400,1234567,,,50527,,, +1341,J,,NHK R 1,,Sakuma (chu-shi),35.083333,137.816667,,0.1,,9233,38,154,,0000-2400,1234567,,,50528,,, +1341,J,,NHK R 1,,Shinjo (toh-yam),38.783333,140.316667,,0.1,,8969,35,154,,0000-2400,1234567,,,50529,,, +1341,J,,NHK R 1,,Tajima (toh-fuk),37.2,139.766667,,0.1,,9104,36,154,,0000-2400,1234567,,,50530,,, +1341,J,,NHK R 1,,Tokamachi (chu-nii),37.116667,138.75,,0.1,,9072,37,154,,0000-2400,1234567,,,50531,,, +1341,J,,NHK R 1,,Tono (toh-iwa),39.333333,141.55,,0.1,,8961,34,154,,0000-2400,1234567,,,50533,,, +1341,J,,NHK R 1,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,0000-2400,1234567,,,50534,,, +1341,J,ja,NHK R 1,,Hanawa,34.5,134,,0.1,,9124,41,154,,,,,,31400095,,, +1341,J,ja,NHK R 1,,Hirado (kyu-nag),33.383333,129.55,,0.1,,9023,45,154,,,,,,31400090,,, +1341,J,ja,NHK R 1,,Johen,34.5,134,,0.1,,9124,41,154,,,,,,31400094,,, +1341,J,ja,NHK R 1,,Kubokawa,34.5,134,,0.1,,9124,41,154,,,,,,31400093,,, +1341,J,ja,NHK R 1,,Kusu,34.5,134,,0.1,,9124,41,154,,,,,,31400092,,, +1341,J,ja,NHK R 1,,Sameura,34.5,134,,0.1,,9124,41,154,,,,,,31400091,,, +1341,J,,NHK R 1,,Nichinan (kyu-miy),31.6,131.383333,,0.1,,9282,45,155,,0000-2400,1234567,,,50526,,, +1341,J,,NHK R 1,,Tokunoshima (kyu-kag),27.75,129.016667,,0.1,,9532,48,155,,0000-2400,1234567,,,50532,,, +1341,AUS,zh,3CW,,Geelong/Leopold (VIC),-38.171278,144.461222,,5,,16442,81,161,,0000-2400,1234567,12,,50505,,, +1341,AUS,,2KY Sky Sports R,,Newcastle/Birmingham Gardens (NSW),-32.889194,151.680333,,5,,16509,66,162,,0000-2400,1234567,3,,50506,,, +1341,NZL,,2ZN Newstalk ZB,,Nelson/Stoke (NSN),-41.329167,173.215278,,2,,18455,45,172,,0000-2400,1234567,,,50539,,, +1350,HNG,,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1100-1200,123456,0,,1348,,, +1350,HNG,,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1100-1300,......7,0,,1348,,, +1350,HNG,bg,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,..3....,0,,1348,,, +1350,HNG,de,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,0900-1100,1234567,0,,1348,,, +1350,HNG,el,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,...4...,0,,1348,,, +1350,HNG,hr,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,0700-0900,1234567,0,,1348,,, +1350,HNG,hy,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,.....6.,0,,1348,,, +1350,HNG,pl,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1230-1300,.....6.,0,,1348,,, +1350,HNG,ra,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1230-1300,12345..,0,,1348,,, +1350,HNG,ro,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1500-1700,1234567,0,,1348,,, +1350,HNG,rt,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,.2.....,0,,1348,,, +1350,HNG,sk,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1700-1900,1234567,0,,1348,,, +1350,HNG,sl,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,1......,0,,1348,,, +1350,HNG,sr,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1300-1500,1234567,0,,1348,,, +1350,HNG,uk,MR4 Nemzetisgi Adsok,,Győr/Srs (GMS),47.720478,17.633733,,5,,939,117,59,,1200-1230,....5..,0,,1348,,, +1350,ARM,he,TWR Asia,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1845-1915,1234.67,1,,1319,,, +1350,ARM,ku,TWR Asia,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1800-1815,1234567,1,,1319,,, +1350,ARM,ru,TWR Asia,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1845-1915,....5..,1,,1319,,, +1350,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,0300-0500,1234567,1,,1319,,, +1350,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1300-1600,1234567,1,,1319,,, +1350,ARM,tu,TWR Iyi Haberler Radyosu,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1815-1845,1234567,1,,1319,,, +1350,ARM,xx,TWR Asia,,Gavar (grk),40.4021,45.198333,,850,232,3206,98,60,,1755-1800,1234567,1,,1319,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0340-0430,123456,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0340-0445,......7,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0445-0600,123456,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0530-1200,......7,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0630-1200,.....6.,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0700-1600,12345..,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1225-1500,.....67,43,,1346,,, +1350,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1700-1915,1234567,43,,1346,,, +1350,GEO,ru,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0445-0530,......7,43,,1346,,, +1350,GEO,ru,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1200-1225,.....67,43,,1346,,, +1350,GEO,ru,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1500-1535,.....67,43,,1346,,, +1350,GEO,ru,R Rossii,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0600-0630,.....6.,43,,1346,,, +1350,GEO,ru,R Rossii,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,0600-0700,12345..,43,,1346,,, +1350,GEO,ru,R Rossii,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1535-1700,.....67,43,,1346,,, +1350,GEO,ru,R Rossii,,Sukhumi=Aqwa (abk),43.01125,41.033333,,30,,2756,98,70,,1600-1700,12345..,43,,1346,,, +1350,EGY,ar,ERTU Al-Barnameg al-Aam,,Al-Qusayr=Quseir (bar),26.145106,34.260911,,10,,3710,130,84,,0200-2400,1234567,9993,,1320,,, +1350,G,,Livewire (LPAM),,Norwich (EN-NFK),52.633333,1.3,,0.001,,352,282,90,,,,,,1330,,, +1350,G,,R Yare (LPAM),,Great Yarmouth (EN-NFK),52.616667,1.733333,,0.001,,322,282,90,,,,,,1345,,, +1350,G,en,Future AM 1350,,Suffolk Prison (EN-SFK),52.051111,1.451389,,0.001,,339,271,90,,,,,,2800002,,, +1350,G,,Dorton College R (LPAM),,Sevenoaks/Seal (EN-KNT),51.266667,0.2,,0.001,,438,260,91,,,,,,1325,,, +1350,G,,R Stortford (LPAM),,Bishop's Stortford (EN-HTS),51.883333,0.15,,0.001,,429,269,91,,,,,,1338,,, +1350,G,,UKC R (LPAM),,Canterbury (EN-KNT),51.283333,1.083333,,0.001,,378,258,91,,,,,,1340,,, +1350,G,en,BFBS R,,Colchester (EN-ESX),51.9,0.9,,0.001,,378,269,91,,,,,,2572,,, +1350,G,,GU2 (LPAM),,Guildford (EN-SUR),51.2,-0.583333,,0.001,,493,261,92,,,,,,1324,,, +1350,G,,LCR-Loughborough Campus R. (LPAM),,Loughborough (EN-LEI),52.783333,-1.183333,,0.001,,520,281,92,,,,,,1331,,, +1350,G,,Mid Downs R (LPAM),,Haywards Heath (EN-WSU),51,-0.1,,0.001,,467,257,92,,,,,,1332,,, +1350,G,,R Newbold (LPAM),,Binfield Berks (EN-BER),51.433333,-0.75,,0.001,,498,264,92,,,,,,1333,,, +1350,G,,R Nightingale (LPAM),,Rotherham (EN-SYK),53.433333,-1.333333,,0.001,,541,289,92,,,,994,,1334,,, +1350,G,,University R Nottingham (LPAM),,Nottingham (EN-NHS),52.966667,-1.166667,,0.001,,521,284,92,,,,,,1341,,, +1350,G,en,Hemel Hospital R (LPAM),,Hemel Hempstead (EN-HTS),51.766667,-0.466667,,0.001,,473,268,92,,,,988,,1327,,, +1350,G,en,Kingstown Hospital R (LPAM),,Hull/Kingstown Gnrl.Hospital (EN-EYK),53.744444,-0.356389,,0.001,,488,295,92,,,,989,,1329,,, +1350,G,,Frequency 1350 (LPAM),,Preston (EN-LNC),53.716667,-2.566667,,0.001,,627,290,93,,,,,,1326,,, +1350,G,,Knutsford AM,,Knutsford (EN-CHE),53.3,-2.366667,,0.001,,606,286,93,,,,1,,2800008,,, +1350,G,,R Cavell (LPAM),,Oldham (EN-GTM),53.55,-2.116667,,0.001,,594,289,93,,,,107,,1323,,, +1350,G,,R Hope (LPAM),,Liverpool (EN-MER),53.416667,-2.916667,,0.001,,644,287,93,,,,,,1328,,, +1350,G,,R Pulse (LPAM),,Redditch (EN-WOR),52.316667,-1.933333,,0.001,,569,276,93,,,,,,1335,,, +1350,G,,R RamAir (LPAM),,Bradford (EN-WYK),53.8,-1.75,,0.001,,578,292,93,,,,,,1336,,, +1350,G,,Range R (LPAM),,Manchester/Whalley (EN-GTM),53.822222,-2.405556,,0.001,,620,291,93,,,,,,1337,,, +1350,G,,WCR AM (LPAM),,Wolverhampton (EN-WMD),52.6,-2.133333,,0.001,,582,279,93,,,,,,1343,,, +1350,G,en,BFBS R,,Edinburgh (SC-COE),55.95,-3.2,,0.001,,758,308,94,,,,,,52491,,, +1350,G,,R Air3 (LPAM),,Stirling (SC-STL),56.116667,-3.95,,0.001,,808,308,95,,,,,,1321,,, +1350,G,,Subcity R (LPAM),,Glasgow (SC-GCC),55.883333,-4.25,,0.001,,812,305,95,,,,,,1339,,, +1350,IND,,AIR North/AIR R Kashmir,,Kupwara (JK),34.529606,74.229311,,20,,5597,82,100,,0025-0505,1234567,,,50553,,, +1350,IND,,AIR North/AIR R Kashmir,,Kupwara (JK),34.529606,74.229311,,20,,5597,82,100,,0930-1630,12345.7,,,50553,,, +1350,IND,,AIR North/AIR R Kashmir,,Kupwara (JK),34.529606,74.229311,,20,,5597,82,100,,0930-1730,.....6.,,,50553,,, +1350,RUS,ru,R Rossii,,Ust-Kan=Kan-Oosy (RA),50.95,84.75,,5,,5147,59,102,,2100-1700,1234567,,,46954,,, +1350,RUS,ru,R Rossii,,Ust-Ulagan (RA),50.633333,87.966667,,5,,5353,57,104,,2100-1700,1234567,,,46955,,, +1350,CAN,en,CKAD,,Middleton (NS),44.9875,-65.020833,,1,,5101,291,108,,,,4,,36258,,, +1350,USA,,WHWH,,Princeton (NJ),40.366667,-74.743889,,5,,6041,292,110,,,,,,41702,,, +1350,USA,,WGPL,,Portsmouth (VA),36.883333,-76.372778,,5,,6408,290,114,,,,72,,41554,,, +1350,USA,en,WARF,,Akron (OH),41.168056,-81.5125,,5,,6402,297,114,,,,2,,43196,,, +1350,CAN,fr,CBSI-14,,Aguanish (QC),50.221667,-62.0775,,0.04,,4599,296,117,,,,,,20109190,,, +1350,CHN,mn,Tongliao RGD,,Tongliao (NM),43.666667,122.216667,,50,,7719,44,117,,0925-1500,1234567,987,,50550,,, +1350,CHN,mn,Tongliao RGD,,Tongliao (NM),43.666667,122.216667,,50,,7719,44,117,,2145-0500,1234567,987,,50550,,, +1350,USA,,WNLK,,Norwalk (CT),41.115,-73.435,,0.5,,5904,292,119,,,,,,42479,,, +1350,USA,,WOYK,,York (PA),39.933333,-76.818333,,1,,6204,293,119,,,,9991,,42637,,, +1350,USA,,KRNT,,Des Moines (IA),41.558611,-93.579167,,5,,7078,305,121,,,,991,,39276,,, +1350,CAN,fr,CIRA-5,,Gatineau (QC),45.507778,-75.695,,0.18,,5730,298,122,,,,9954,,20109276,,, +1350,USA,,WEZS,,Laconia (NH),43.5075,-71.516667,,0.112,,5612,293,123,,,,,,41350,,, +1350,USA,,WIOU,,Kokomo (IN),40.416944,-86.113611,,1,,6737,299,124,,,,,,41785,,, +1350,PTR,,WEGA,,Vega Baja (PR),18.477222,-66.395278,,2.5,,7230,268,125,,1000-0200,1234567,4,,41265,,, +1350,USA,,WINY,,Putnam (CT),41.902778,-71.895278,,0.079,,5749,292,125,,,,,,41777,,, +1350,BOT,,R Botswana,,Tsahbong (kg),-26.006,22.418972,,50,,8825,165,126,,0000-2400,1234567,26,,1884,,, +1350,CUB,es,R Ciudad del Mar,,Aguada de Pasajeros (cf),22.382386,-80.8343,,10,,7880,282,126,,,,1,,36509,,, +1350,USA,,WOAM,,Peoria (IL),40.594722,-89.594444,,1,,6928,301,126,,,,999,,42549,,, +1350,USA,,WGDN,,Gladwin (MI),43.950833,-84.509444,,0.25,,6368,301,127,,,,,,41492,,, +1350,USA,en,WRNY,,Rome (NY),43.205,-75.485556,,0.057,,5881,295,128,,,,,,42893,,, +1350,USA,en,WWWL,,New Orleans (LA),29.924167,-90.034444,,5,,7838,294,128,,,,,,43024,,, +1350,USA,,WLOU,,Louisville (KY),38.231111,-85.822778,,0.5,,6893,297,129,,,,,,42212,,, +1350,VEN,,YVZZ R Eclipse R Guanipa,,El Tigrito (mir),8.866667,-64.15,,5,,7908,260,129,,0000-2400,1234567,,,45492,,, +1350,B,pt,ZYK692 Rdio Excelsior,,Ibina (SP),-23.645361,-47.1338,,50,,9894,227,130,,,,,,36902201,,, +1350,USA,,WTDR,,Gadsden (AL),34.0175,-86.0875,,1,,7251,294,130,,,,,,41471,,, +1350,VEN,,YVTJ R Falcon,,Puerto Cumarebo (flc),11.5,-69.316667,,5,,8028,266,130,,,,995,,45469,,, +1350,J,ja,JOER RCC Chugoku Hoso,,Etajima/Okimi (chg-hir),34.259444,132.388889,,20,,9074,43,131,,0000-2400,1234567,6,,1959,,, +1350,USA,,WMMV,,Cocoa (FL),28.366111,-80.752222,,1,,7374,286,131,,,,,,42354,,, +1350,DOM,,HIJD Ondas del Yuna,,Bonao (mnl),18.916667,-70.416667,,1,,7467,272,132,,,,,,52247,,, +1350,KOR,ko,HLAQ MBC,,Samcheok (gan),37.456667,129.161944,,10,,8619,43,132,,0000-2400,1234567,,,50559,,, +1350,USA,,WCBA,,Corning (NY),42.116389,-77.04,,0.037,,6056,295,132,,,,,,40951,,, +1350,USA,en,WRWR,,Warner Robins (GA),32.616667,-83.65,,0.5,,7212,291,132,,,,,,42486,,, +1350,CHN,zh,Jiangxi RGD Nongcun Guangbo,,Ji'an/JXTS802 (JX),26.828181,114.977453,,10,,8844,59,133,,2200-1600,1234567,,,36200306,,, +1350,CHN,zh,Jiangxi RGD Xinwen Guangbo,,Shangrao/JXTS821 (JX),28.470278,117.979167,,10,,8869,56,133,,2000-1730,1234567,,,36200304,,, +1350,CHN,zh,Jiangxi RGD Xinwen Guangbo,,Yichun/JXTS811 (JX),27.8,114.416667,,10,,8724,59,133,,2000-1730,1234567,,,2135,,, +1350,USA,,KTLQ,,Tahlequah (OK),35.895278,-94.953333,,1,,7629,301,133,,,,,,39503,,, +1350,B,pt,ZYI675 Rdio Super Borborema,,Campina Grande (PB),-7.191667,-35.855556,,1,,7715,225,134,,,,,,36902194,,, +1350,CUB,es,R Libertad,,Puerto Padre (lt),21.209139,-76.616003,,1,,7695,278,134,,,,989,,36585,,, +1350,MEX,es,XECTZ-AM,,Ciudad de Cuetzalan (pue),20.006811,-97.501475,,10,,9169,293,134,,,,,,43882,,, +1350,THA,th,Phon Neung Ror. Or.,,Bangkok/Phitsanulok Road (bmp),13.766708,100.510042,,10,,9079,78,134,,????-1745,1234567,9876,,50568,,, +1350,USA,,KCOR,,San Antonio (TX),29.524167,-98.618056,,5,,8395,300,134,,,,,,38196,,, +1350,USA,,WLLY,,Wilson (NC),35.723333,-77.921111,,0.079,,6598,290,134,,,,,,42190,,, +1350,TWN,,BCC News Network,,Chiayi=Chia-i (CYS),23.483333,120.45,,10,,9465,57,135,,0000-2400,1234567,,,50570,,, +1350,USA,,WDCF,,Dade City (FL),28.334444,-82.189722,,0.5,,7471,287,135,,,,,,41133,,, +1350,USA,en,KRLC,,Clarkston Lewiston (WA),46.394167,-116.994444,,1,,7809,322,135,,,,1,,39259,,, +1350,USA,en,WNTX,,Fredericksburg (VA),38.312778,-77.438889,,0.037,,6366,292,135,,,,,,43548,,, +1350,THA,th,Wor. Por. Thor. 17,,Trang/Palian Road (trg),7.519722,99.628611,,10,,9567,83,136,,2215-1500,1234567,,,50569,,, +1350,USA,,KSRO,,Santa Rosa (CA),38.439444,-122.7475,,5,,8810,322,136,,,,993,,39412,,, +1350,USA,en,WBLT,,Bedford (VA),37.3475,-79.523611,,0.047,,6573,292,136,,,,,,20012514,,, +1350,B,pt,ZYH521 Super Rdio Cristal,,Salvador/Ilha de Itaparica (BA),-12.955572,-38.615689,,2.5,,8423,225,137,,,,989,,36902200,,, +1350,CHN,zh,Haicheng RGD Jiaotong,,Haicheng (LN),40.85,122.75,,1,,7999,45,137,,2135-1500,1234567,,,50546,,, +1350,PNR,es,HOZ38 BBN Panam,,Ro Abajo/Via Cincuentenario (pnm),9.026008,-79.488167,,5,,8937,272,137,,,,,,52346,,, +1350,USA,,KCHK,,New Prague (MN),44.5775,-93.504444,,0.07,,6828,307,137,,,,,,38149,,, +1350,USA,,WCMP,,Pine City (MN),45.819444,-92.995833,,0.052,,6701,308,137,,,,,,41038,,, +1350,USA,,WHIP,,Mooresville (NC),35.601111,-80.814167,,0.067,,6792,292,137,,,,,,41642,,, +1350,DOM,,HIPM R Rutas Musical,,La Romana (rom),18.416667,-69.9,,0.25,,7474,271,138,,1000-0400,1234567,,,37272,,, +1350,PHL,,DWUN UNTV Radyo La Verdad 1350,,Malabon/Muzon (ncr),14.6749,120.950011,,10,,10306,62,138,,0000-2400,1234567,9696,,50564,,, +1350,USA,,WPDR,,Portage (WI),43.528333,-89.433611,,0.041,,6685,304,138,,,,2,,42661,,, +1350,USA,,WRKM,,Carthage (TN),36.245,-85.945556,,0.09,,7061,296,138,,,,,,42869,,, +1350,USA,,WRWH,,Cleveland (GA),34.586389,-83.766944,,0.093,,7059,293,138,,,,,,42938,,, +1350,USA,en,WZGM,,Black Mountain (NC),35.591389,-82.414722,,0.056,,6893,293,138,,,,,,43581,,, +1350,B,pt,ZYH201 Rdio Universitria Metropolitana,,Rio Branco (AC),-9.946733,-67.890472,,5,,9833,252,139,,,,,,36902198,,, +1350,B,pt,ZYH662 Rdio Liberal,,Morada Nova (CE),-5.089961,-38.371486,,0.25,,7633,229,139,,,,,,36902196,,, +1350,B,pt,ZYL214 Rdio Cultura,,Poos de Caldas (MG),-21.819661,-46.537044,,5,,9688,228,139,,,,,,36902199,,, +1350,USA,,KWMO,,Washington (MO),38.578889,-90.999167,,0.084,,7174,301,139,,,,,,39731,,, +1350,USA,,WCHI,,Chillicothe (OH),39.321111,-82.9525,,0.028,,6632,296,139,,,,,,40992,,, +1350,USA,,WNVA,,Norton (VA),36.966111,-82.588056,,0.037,,6795,294,139,,,,,,42529,,, +1350,USA,en,WFNS,,Blackshear (GA),31.312222,-82.233333,,0.117,,7228,290,139,,,,27,,41417,,, +1350,CLM,,HJOZ,,Yopal (cas),5.316667,-72.366667,,2,,8776,264,140,,,,,,37616,,, +1350,USA,,KCHR,,Charleston (MO),36.925,-89.295833,,0.079,,7209,298,140,,,,,,38152,,, +1350,USA,,KDIO,,Ortonville (MN),45.349722,-96.452222,,0.038,,6924,309,140,,,,998,,38264,,, +1350,USA,,KTIK,,Nampa (ID),43.549444,-116.410556,,0.6,,8050,320,140,,,,1,,39488,,, +1350,USA,,WJBD,,Salem (IL),38.632222,-88.917222,,0.059,,7047,300,140,,,,,,41845,,, +1350,CLM,es,HJMN,,Agustn Codazzi (ces),10.05,-73.216667,,1,,8420,268,141,,,,,,37636,,, +1350,CLM,es,HJOC RCN La Cariosa/Antena 2,,Santa Marta (mag),11.166667,-74.166667,,1,,8388,270,141,,,,,,37604,,, +1350,HTI,,R Dame-Marie,,Dame-Marie (gan),18.561111,-74.419444,,0.25,,7770,275,141,,,,,,52120,,, +1350,INS,id,RRI Pro-1,,Tarakan/Gunung Amal (KU-tar),3.3,117.633333,,10,,11138,71,141,,2100-1600,1234567,,,35400085,,, +1350,USA,,WCRM,,Fort Myers (FL),26.625278,-81.841389,,0.15,,7590,286,141,,,,,,41075,,, +1350,CHN,zh,Jiangxi RGD Xinwen Guangbo,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,2000-1730,1234567,,,36200305,,, +1350,CLM,es,HJDS R Ondas de la Montaa,,Medelln (ant),6.25,-75.583333,,1,,8913,268,143,,,,1,,37399,,, +1350,CLM,es,HJHW,,Puerto Boyaca (boy),5.95,-74.566667,,1,,8870,267,143,,,,,,37482,,, +1350,CLM,es,HJLO RCN La Cariosa/Antena 2,,Caucacia (ant),7.966667,-75.166667,,1,,8735,268,143,,,,,,37552,,, +1350,HND,,HRLW,,La Ceiba (atl),15.75,-86.816667,,1,,8848,282,143,,,,,,37798,,, +1350,PHL,,DXXY-AM Super Radyo,,Dipolog City (zdn),8.583333,123.35,,5,,11014,63,143,,,,,,50563,,, +1350,USA,,KBRX,,O'Neill (NE),42.459444,-98.656389,,0.044,,7281,308,143,,,,,,38093,,, +1350,USA,,WCSM,,Celina (OH),40.538056,-84.588889,,0.011,,6636,298,143,,,,,,41086,,, +1350,BOL,,CP214 R Ichilo,,Yapacani (scz),-17.4,-63.833333,,2.5,,10249,244,144,,0930-0135,1234567,,,52025,,, +1350,BOL,,CP28 R Cochabamba CBA,,Cochabamba (cbb),-17.366667,-66.166667,,2.5,,10390,246,144,,1030-0200,1234567,,,52024,,, +1350,CLM,,Armona 1350,,,4.45,-74.4,,1,,8990,265,144,,,,96,,2173,,, +1350,CLM,es,HJEN R Armona,,Cali (val),3.533333,-76.516667,,1,,9215,267,144,,,,9,,37416,,, +1350,CLM,es,HJHL Oxigeno,,Ibagu (tol),4.366667,-75.25,,1,,9055,266,144,,,,995,,37474,,, +1350,GTM,,TGMC R Monja Blanca,,Cobn (avp),15.466667,-90.366667,,1,,9109,285,144,,,,,,40511,,, +1350,NCG,,YNGF R Ondas del Sur,,Jinotepe (crz),11.85,-86.2,,1,,9147,279,144,,,,,,52216,,, +1350,USA,,KABQ,,Albuquerque (NM),35.100556,-106.676111,,0.5,,8353,309,144,,,,,,37908,,, +1350,USA,,WKCU,,Corinth (MS),34.908056,-88.501667,,0.044,,7327,296,144,,,,,,41977,,, +1350,USA,en,WPKL708,,Long Beach (NC),33.912389,-78.116111,,0.01,,6753,289,144,,,,,,20010679,,, +1350,ARG,,R Sucesos,,Crdoba (cb),-31.416667,-64.2,,5,,11534,236,145,,,,,,51854,,, +1350,ARG,es,LS6 R Buenos Aires RBA,,Burzaco (ba),-34.840261,-58.403272,,5,,11528,230,145,,0000-2400,1234567,1,,40161,,, +1350,B,pt,ZYK336 Rdio Agudo AM,,Agudo (RS),-29.648056,-52.257222,,2.5,,10728,228,145,,,,,,36902193,,, +1350,EQA,,HCPZ1,,Tulcan (car),0.833333,-77.716667,,1,,9534,266,145,,,,,,37067,,, +1350,MEX,es,XECAH-AM La Popular,,Cacahoatn (cps),15.006278,-92.156831,,1,,9267,286,145,,,,,,43810,,, +1350,MEX,es,XEQK-AM Tropicalsima 1350,,Mxico D.F/San Lorenzo Tezonco (dif),19.309406,-99.059247,,1,,9329,294,145,,,,,,44617,,, +1350,USA,,KMAN,,Manhattan (KS),39.216667,-96.558333,,0.04,,7440,305,145,,,,,,38876,,, +1350,USA,,WELB,,Elba (AL),31.452778,-86.066667,,0.044,,7461,292,145,,,,,,41283,,, +1350,USA,en,KCCY,,Pueblo (CO),38.357778,-104.638611,,0.15,,7954,310,145,,,,34,,38478,,, +1350,EQA,,HCPS1 Voz de Santo Go,, (pic),-0.216667,-79.166667,,1,,9725,266,146,,,,,,37062,,, +1350,USA,,KTDD,,San Bernardino (CA),34.093611,-117.299167,,0.6,,8983,316,146,,,,,,39466,,, +1350,CAN,en,CBRZ,,Bralorne (BC),50.776389,-122.817778,,0.04,,7622,328,147,,,,,,20109192,,, +1350,EQA,,HCSF5,,S Fernando (azu),-3.25,-79.25,,1,,9997,265,147,,,,,,37134,,, +1350,EQA,es,HCVR2 Teler 13-50,,Guayaquil (gua),-2.2,-79.9,,1,,9949,266,147,,,,15,,37178,,, +1350,MEX,es,XELBL-AM R Frmula,,San Luis Ro Colorado (son),32.449669,-114.756878,,0.5,,9015,313,147,,,,9947,,44293,,, +1350,MEX,es,XETB-AM R Laguna,,Gmez Palacio (dur),25.581361,-103.480083,,0.5,,9033,301,147,,,,,,44799,,, +1350,PRU,,OBX8D R Super,,Pucallpa (uca),-8.383333,-74.533333,,1,,10131,258,147,,,,,,37000104,,, +1350,USA,,KCAR,,Clarksville (TX),33.613056,-95.0175,,0.065,,7827,300,147,,,,,,38124,,, +1350,CAN,en,CBKY,,Keremeos (BC),49.204722,-119.818611,,0.04,,7659,326,148,,,,,,20109191,,, +1350,PRU,,OAX3N Ondas del Huallaga,,Hunuco (huc),-9.75,-76.416667,,1,,10378,258,148,,,,,,40294,,, +1350,PRU,es,OAU1H R Visin,,Chiclayo (lam),-6.766667,-79.85,,1,,10347,263,148,,,,974,,37000016,,, +1350,PRU,es,R Santa Beatriz,,Cusco (cus),-13.516667,-71.983333,,1,,10418,253,148,,,,839,,37000105,,, +1350,USA,,KPNS,,Duncan (OK),34.511944,-97.968056,,0.07,,7922,303,148,,,,,,39149,,, +1350,B,pt,ZYK313 Rdio Difusora Celeiro AM,,Trs Passos (RS),-27.456389,-53.915,,1,,10608,231,149,,,,,,36902203,,, +1350,BOL,es,R Amrica LV del Sur,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,0800-0200,1234567,994,,52026,,, +1350,MEX,es,XEZD-AM La Preferida,,Ciudad Camargo (tam),26.306111,-98.824781,,0.25,,8692,298,149,,,,,,45131,,, +1350,PRU,,OAX6U R Ilo,,Ilo (moq),-17.616667,-71.366667,,1,,10741,250,149,,,,,,40343,,, +1350,CLM,es,HKZ98,,Caicedonia (val),4.333333,-75.833333,,0.25,,9098,267,150,,,,,,35901710,,, +1350,INS,id,PM7CMB R BMW,,Baturaja (SS-oku),-4.133333,104.166667,,1,,10900,86,150,,,,,,50554,,, +1350,USA,,KCOX,,Jasper (TX),30.919722,-93.970278,,0.037,,7996,297,151,,,,,,39553,,, +1350,ARG,,R Nuestra Seora de Itat,,Moron (ba),-34.65,-58.616667,,1,,11521,230,152,,,,,,51855,,, +1350,CHL,,CA135 R Riquelme,,Coquimbo (CO),-29.933333,-71.366667,,1,,11823,242,153,,1030-0430,1234567,,,35686,,, +1350,INS,id,RGS-R Gelora Surabaya,,Surabaya (JI-ksu),-7.2525,112.755556,,1,,11757,81,153,,2230-????,1234567,71,,50489,,, +1350,B,,ZYJ745,,Canoinhas (SC),-26.133333,-50.366667,,0.25,,10298,229,154,,,,,,46158,,, +1350,B,pt,ZYJ760 Rdio Bandeirantes,,Itaja (SC),-26.909167,-48.677222,,0.25,,10286,227,154,,,,,,36902195,,, +1350,B,pt,ZYK205 Rdio Aurora AM,,Guapor (RS),-28.837222,-51.891944,,0.25,,10633,228,155,,,,,,36902197,,, +1350,CHL,,CD135 R San Carlos,,Ancud (LL),-41.883333,-73.816667,,1,,12976,235,157,,1130-0400,1234567,,,35874,,, +1350,USA,es,KLHC,,Bakersfield (CA),35.35,-118.982778,,0.033,,8942,318,158,,,,,,38033,,, +1350,AUS,,2LF,,Young (NSW),-34.343167,148.335,,5,,16413,72,161,,0000-2400,1234567,9978,,50545,,, +1350,NZL,,R Sport,,Rotorua (BOP),-38.175278,176.230556,,1,,18276,31,174,,0000-2400,1234567,,,50561,,, +1355,BOL,,CP154 R Armonia,,Cliza (cbb),-17.6,-65.9,,0.25,,10395,245,154,,0900-0400,1234567,,,36651,,, +1359,G,en,BBC R 5 Live,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.85,,596,258,64,,0000-0500,1234567,,,1358,,, +1359,G,en,BBC R Solent,,Bournemouth/Fern Barrow (EN-DOR),50.732833,-1.902389,,0.85,,596,258,64,,0500-2400,1234567,,,1358,,, +1359,G,en,Gold,,Chelmsford/Baker's Wood (EN-ESX),51.705278,0.401944,,0.28,,414,266,67,,0000-2400,1234567,9979,,1359,,, +1359,G,en,Free R 80's,,Coventry/Shilton (EN-WMD),52.449556,-1.397028,,0.27,,532,277,68,,0000-2400,1234567,9917,,1360,,, +1359,G,en,Gold,,Cardiff/Hadfield Road (WA-CDF),51.464778,-3.202333,,0.2,,665,268,71,,0000-2400,1234567,,,1361,,, +1359,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400058,,, +1359,IRN,fa,IRIB R Fars,,Darab (frs),28.75665,54.560617,,50,,4711,104,87,,,,8,,1362,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,0300-0530,1234567,,,9600008,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,0530-0900,.....67,,,9600008,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,0930-1030,12345..,,,9600008,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,1100-1500,.....67,,,9600008,,, +1359,ETH,ti,Dimtsi Woyane Tigray,,Mekelle (tig),13.473286,39.478194,,100,,5205,133,89,,1500-2000,1234567,,,9600008,,, +1359,CHN,zh,CNR 1,,Tacheng=Qoqek/SARFT634 (XJ),46.745556,83.006667,,10,,5310,64,100,,2025-1805,1234567,,,36201324,,, +1359,CHN,zh,CNR 1,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,10,,5398,68,101,,2025-1805,1234567,,,36200277,,, +1359,CHN,zh,CNR 1,,Akesu=Aksu/XJTS636 (XJ),41.185833,80.280833,,10,,5516,72,102,,2025-1805,1234567,,,36200161,,, +1359,CHN,zh,CNR 1,,Hotan=Hetian/XJTS637 (XJ),37.145,79.819167,,10,,5777,76,105,,2025-1805,1234567,,,36200165,,, +1359,CHN,zh,CNR 1,,Korla/SARFT8104 (XJ),41.772778,86.214722,,10,,5853,67,106,,2025-1805,1234567,,,36200292,,, +1359,CHN,zh,CNR 1,,Turfan/Gaochang Lu-SARFT8101 (XJ),42.957778,89.175833,,10,,5952,65,107,,2025-1805,1234567,,,36200281,,, +1359,CHN,zh,CNR 1,,Kaba=Habahe/SARFT8114 (XJ),48.075,86.404722,,1,,5428,61,111,,2025-1805,1234567,,,36201317,,, +1359,CHN,zh,CNR 1,,Bachu/XJTS2041 (XJ),39.815278,78.535833,,1,,5499,74,112,,2025-1805,1234567,,,36200303,,, +1359,CHN,zh,CNR 1,,Fuyun=Koktokay/XJTS8115 (XJ),46.994167,89.503889,,1,,5686,60,114,,2025-1805,1234567,,,36201316,,, +1359,CHN,zh,CNR 1,,Mori=Mulei/SARFT8112 (XJ),43.811111,90.274722,,1,,5958,63,117,,2025-1805,1234567,,,36201319,,, +1359,TWN,en,R Taiwan Int.,,Fangliao (PT),22.387944,120.566606,,600,220,9573,58,118,,1100-1200,1234567,9928,,50614,,, +1359,TWN,ms,R Free Malaysia,,Fangliao (PT),22.387944,120.566606,,600,220,9573,58,118,,1300-1500,1234567,9928,,50614,,, +1359,TWN,vi,R Free Asia,,Fangliao (PT),22.387944,120.566606,,600,220,9573,58,118,,2300-2400,1234567,9928,,50614,,, +1359,TWN,vi,R Taiwan Int.,,Fangliao (PT),22.387944,120.566606,,600,220,9573,58,118,,1200-1300,1234567,9928,,50614,,, +1359,CHN,bo,Qinghai RGD/CNR 11,,Huzhu/Duoshidai (QH),36.877778,101.956944,,10,,7203,62,119,,2250-1600,1234567,,,36201278,,, +1359,CHN,zh,CNR 1,,Yinchuan (NX),38.563056,106.310278,,10,,7320,58,120,,2025-1805,1234567,,,36200278,,, +1359,CHN,zh,CNR 1,,Yiwu/XTS8103 (XJ),43.247222,94.699444,,1,,6266,61,120,,2025-1805,1234567,,,36201330,,, +1359,CHN,zh,CNR 1,,Hongyuan/SCTS537 (SC),32.788625,102.550411,,10,,7578,64,123,,2025-1805,1234567,,,36200164,,, +1359,CHN,zh,CNR 1,,Lushui/Liuku Zhen (YN),25.966667,98.833333,,10,,7918,72,126,,2025-1805,1234567,,,36200290,,, +1359,CHN,zh,CNR 1,,Siping/Shanmen Zhen (JL),43.101389,124.423333,,10,,7874,43,126,,2025-1805,1234567,,,36200282,,, +1359,CHN,zh,CNR 1,,Ankang/Shuangquan (SX),32.733333,108.983333,,10,,7971,60,127,,2025-1805,1234567,4,,50572,,, +1359,CHN,zh,CNR 1,,Dali/SARFT653 (YN),25.716667,100.166667,,10,,8025,71,127,,2025-1805,1234567,,,50575,,, +1359,CHN,zh,CNR 1,,Yingjiang (YN),24.694517,97.950522,,10,,7968,73,127,,2025-1805,1234567,,,36201026,,, +1359,CHN,zh,CNR 1,,Ji'an (JL),41.116667,126.183333,,10,,8138,43,128,,2025-1805,1234567,,,36201030,,, +1359,CHN,zh,CNR 1,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,10,,8308,53,130,,2025-1805,1234567,,,36200279,,, +1359,CHN,zh,CNR 1,,Tongxin (NX),36.98575,105.904472,,1,,7428,59,131,,2025-1805,1234567,,,36201326,,, +1359,CHN,zh,CNR 1,,Funing (YN),23.616667,105.633333,,10,,8555,68,132,,2025-1805,1234567,,,36200297,,, +1359,CHN,zh,CNR 1,,Hekou/Binlangzhai (YN),22.527778,103.966944,,10,,8544,70,132,,0300-0500,1234567,,,36200294,,, +1359,CHN,zh,CNR 1,,Hekou/Binlangzhai (YN),22.527778,103.966944,,10,,8544,70,132,,0900-1600,1234567,,,36200294,,, +1359,CHN,zh,CNR 1,,Hekou/Binlangzhai (YN),22.527778,103.966944,,10,,8544,70,132,,2200-0100,1234567,,,36200294,,, +1359,CHN,zh,CNR 1,,Mengla (YN),21.466667,101.583333,,10,,8481,73,132,,2025-1805,1234567,,,36200287,,, +1359,CHN,zh,CNR 1,,Nanjing/Gulizhen (JS),31.862533,118.671722,,10,,8601,54,132,,2025-1805,1234567,,,36200167,,, +1359,CHN,zh,CNR 1,,Wayuan (YN),34.95,104.5,,1,,7515,61,132,,2025-1805,1234567,,,36201027,,, +1359,CHN,zh,CNR 1,,Wenshan/YNTS703 (YN),23.335278,104.298889,,10,,8495,69,132,,2025-1805,1234567,,,36200170,,, +1359,CHN,zh,CNR 1,,Yulin (SA),38.299722,109.735,,1,,7538,56,132,,2025-1805,1234567,,,36200171,,, +1359,CHN,zh,CNR 1,,Chongzuo (GX),22.416667,107.366667,,10,,8770,68,133,,2025-1805,1234567,,,36200298,,, +1359,CHN,zh,CNR 1,,Jingxi (GX),23.133333,106.416667,,10,,8647,68,133,,2025-1805,1234567,,,36201029,,, +1359,CHN,zh,CNR 1,,Longzhou (GX),22.35,106.85,,10,,8743,68,133,,2025-1805,1234567,,,36201028,,, +1359,CHN,zh,CNR 1,,Nantong (JS),31.855833,121.010556,,10,,8729,52,133,,2025-1805,1234567,,,36200168,,, +1359,CHN,zh,CNR 1,,Chengde/HBTS1084 (HB),40.966667,117.933333,,1,,7748,49,134,,2025-1805,1234567,,,36200299,,, +1359,CHN,zh,CNR 1,,Lishui (ZJ),28.465411,119.958611,,10,,8981,55,134,,2025-1805,1234567,,,36201318,,, +1359,CHN,zh,CNR 1,,Sanming/FJTS701 (FJ),26.242222,117.621289,,10,,9051,58,134,,2025-1805,1234567,,,36200285,,, +1359,CHN,zh,CNR 1,,Xiamen=Amoy/FJTS202 (FJ),24.492694,118.03595,,10,,9233,58,134,,2025-1805,1234567,,,36200280,,, +1359,THA,th,Thor. Phor. Song,,Sakon Nakhon/Fort Krit Siwara (snk),17.186944,104.105556,,10,,9018,73,134,,????-1405,1234567,,,50613,,, +1359,CHN,zh,CNR 1,,Maoxian/SCTS545 (SC),31,103.4,,1,,7781,65,135,,2025-1805,1234567,,,36200288,,, +1359,CHN,zh,CNR 1,,Shangrila=Xianggelila (YN),27.82,99.686389,,1,,7816,70,135,,2025-1805,1234567,,,36200284,,, +1359,CHN,zh,CNR 1,,Qinhuangdao (HB),39.868333,119.433889,,1,,7922,48,136,,2025-1805,1234567,,,36200169,,, +1359,CHN,,Yunnan RGD Xinwen Guangbo,,Menglian (YN),24.6,98.8,,1,,8031,73,137,,,,,,36200286,,, +1359,CHN,zh,CNR 1,,Ruili (YN),24.020556,97.873333,,1,,8020,74,137,,2025-1805,1234567,,,36201323,,, +1359,CHN,zh,CNR 1,,Baishan (JL),41.95,126.433333,,1,,8073,42,138,,2025-1805,1234567,,,36200302,,, +1359,CHN,zh,CNR 1,,Songjianghe/JLTS154 (JL),42.158839,127.475194,,1,,8101,42,138,,2025-1805,1234567,,,36200296,,, +1359,CHN,zh,CNR 1,,Wangqing (JL),43.316667,129.75,,1,,8094,40,138,,2025-1805,1234567,,,36201327,,, +1359,CHN,zh,CNR 1,,Zhenkang (YN),23.9,99.033333,,1,,8106,73,138,,2025-1805,1234567,,,36201024,,, +1359,CHN,zh,CNR 1,,Baoshan/YNTS702 (YN),26.366667,104.5,,1,,8246,67,139,,2025-1805,1234567,,,36200301,,, +1359,CHN,zh,CNR 1,,Lincang/YNTS699 (YN),23.9,100.033333,,1,,8171,72,139,,2025-1805,1234567,,,36200291,,, +1359,CHN,,Yunnan RGD Xinwen Guangbo,,Yuxi/YNTS693 (YN),24.402556,102.513944,,1,,8288,70,140,,,,,,36200276,,, +1359,CHN,zh,CNR 1,,Raoping (GD),23.698142,116.977539,,3,,9244,60,140,,2025-1805,1234567,,,36201322,,, +1359,CHN,zh,CNR 1,,Simao/YNTS655 (YN),22.81,100.978333,,1,,8326,72,140,,2025-1805,1234567,,,36200283,,, +1359,CHN,zh,CNR 1,,Xiuwen/GZTS645 (GZ),26.86685,106.725539,,1,,8341,65,140,,2025-1805,1234567,,,36201329,,, +1359,PHL,tl,DZYR-AM,,San Fernando (lun),16.616667,120.316667,,5,,10089,61,140,,2000-????,1234567,6,,50610,,, +1359,CHN,zh,CNR 1,,Gejiu/YNTS654 (YN),23.398333,103.161389,,1,,8417,70,141,,2025-1805,1234567,,,36200295,,, +1359,CHN,zh,CNR 1,,Guiyang (GZ),26.416667,106.6,,1,,8373,66,141,,2025-1805,1234567,,,36200163,,, +1359,CHN,zh,CNR 1,,Jiangcheng (YN),22.6,101.833333,,1,,8400,72,141,,2025-1805,1234567,,,49192,,, +1359,CHN,zh,CNR 1,,Jinping (YN),24.05,104.2,,1,,8427,69,141,,2025-1805,1234567,,,36201321,,, +1359,CHN,zh,CNR 1,,Kaili/GZTS706 (GZ),26.583333,107.983333,,1,,8444,65,141,,2025-1805,1234567,,,36200293,,, +1359,CHN,zh,CNR 1,,Luxi/YNTS705 (YN),24.516667,103.766667,,1,,8359,69,141,,2025-1805,1234567,,,36200289,,, +1359,KOR,,AFN Korea-Thunder AM,,Songtan/Osan Air Base (gye),37.116667,127.1,,1,,8553,45,142,,0000-2400,1234567,,,50607,,, +1359,CHN,zh,CNR 1,,Daxin (GX),22.846944,107.188889,,1,,8721,68,143,,2025-1805,1234567,,,36201031,,, +1359,CHN,zh,CNR 1,,Hangzhou/ZJTS4 (ZJ),30.266667,120.133333,,1,,8826,54,143,,2025-1805,1234567,,,36200162,,, +1359,CHN,zh,CNR 1,,Quzhou (ZJ),28.981778,118.833222,,1,,8871,55,143,,2025-1805,1234567,,,36201246,,, +1359,CHN,zh,CNR 1,,Jianyang/FJTS801 (FJ),27.316667,118.136111,,1,,8983,57,144,,2025-1805,1234567,,,36201320,,, +1359,CHN,zh,CNR 1,,Longyan/FJTS601 (FJ),25.063333,117.027778,,1,,9123,59,144,,2025-1805,1234567,,,36200166,,, +1359,CHN,zh,CNR 1,,Taizhou (ZJ),28.612222,121.415278,,1,,9048,54,144,,2025-1805,1234567,,,36201325,,, +1359,CHN,zh,CNR 1,,Xiapu/FJTS904 (FJ),26.883333,120,,1,,9128,56,144,,2025-1805,1234567,,,36201328,,, +1359,CHN,zh,CNR 1,,Zhangzhou/FJTS501 (FJ),24.5,117.666667,,1,,9211,59,144,,2025-1805,1234567,,,36201025,,, +1359,CHN,zh,CNR 1,,Chaozhou (GD),23.697778,116.977778,,1,,9244,60,145,,2025-1805,1234567,,,36200300,,, +1359,PHL,,DYSJ-AM IBC,,San Jose de Buenavista (atq),10.75,121.933333,,1,,10728,63,149,,,,,,33300004,,, +1359,J,,NHK R 2,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,0000-1500,1.....7,,,50589,,, +1359,J,,NHK R 2,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,0000-1635,.2345..,,,50589,,, +1359,J,,NHK R 2,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,0000-1640,.....6.,,,50589,,, +1359,J,,NHK R 2,,Nakatonbetsu (hok),44.966667,142.3,,0.1,,8426,31,151,,2030-2400,1234567,,,50589,,, +1359,J,,NHK R 2,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,0000-1500,1.....7,,,50596,,, +1359,J,,NHK R 2,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,0000-1635,.2345..,,,50596,,, +1359,J,,NHK R 2,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,0000-1640,.....6.,,,50596,,, +1359,J,,NHK R 2,,Rumoi (hok),43.933333,141.65,,0.1,,8506,31,152,,2030-2400,1234567,,,50596,,, +1359,J,,NHK R 2,,Esashi (hok),41.85,140.133333,,0.1,,8657,33,153,,0000-1500,1.....7,,,50581,,, +1359,J,,NHK R 2,,Esashi (hok),41.85,140.133333,,0.1,,8657,33,153,,0000-1635,.2345..,,,50581,,, +1359,J,,NHK R 2,,Esashi (hok),41.85,140.133333,,0.1,,8657,33,153,,0000-1640,.....6.,,,50581,,, +1359,J,,NHK R 2,,Esashi (hok),41.85,140.133333,,0.1,,8657,33,153,,2030-2400,1234567,,,50581,,, +1359,J,,NHK R 2,,Miyako (toh-iwa),39.633333,141.966667,,0.1,,8947,33,153,,2030-1500,1.....7,,,50587,,, +1359,J,,NHK R 2,,Miyako (toh-iwa),39.633333,141.966667,,0.1,,8947,33,153,,2030-1635,.2345..,,,50587,,, +1359,J,,NHK R 2,,Miyako (toh-iwa),39.633333,141.966667,,0.1,,8947,33,153,,2030-1640,.....6.,,,50587,,, +1359,J,,NHK R 2,,Nemuro (hok),43.333333,145.6,,0.1,,8702,29,153,,2030-1500,1.....7,,,50591,,, +1359,J,,NHK R 2,,Nemuro (hok),43.333333,145.6,,0.1,,8702,29,153,,2030-1635,.2345..,,,50591,,, +1359,J,,NHK R 2,,Nemuro (hok),43.333333,145.6,,0.1,,8702,29,153,,2030-1640,.....6.,,,50591,,, +1359,J,,NHK R 2,,Odate (toh-aki),40.266667,140.566667,,0.1,,8831,34,153,,2030-1500,1.....7,,,50593,,, +1359,J,,NHK R 2,,Odate (toh-aki),40.266667,140.566667,,0.1,,8831,34,153,,2030-1635,.2345..,,,50593,,, +1359,J,,NHK R 2,,Odate (toh-aki),40.266667,140.566667,,0.1,,8831,34,153,,2030-1640,.....6.,,,50593,,, +1359,J,,JOCZ NHK2,,Toyohashi (chu-aic),34.766667,137.366667,,0.1,,9246,39,154,,2030-1500,1.....7,,,50603,,, +1359,J,,JOCZ NHK2,,Toyohashi (chu-aic),34.766667,137.366667,,0.1,,9246,39,154,,2030-1635,.2345..,,,50603,,, +1359,J,,JOCZ NHK2,,Toyohashi (chu-aic),34.766667,137.366667,,0.1,,9246,39,154,,2030-1640,.....6.,,,50603,,, +1359,J,,JOUZ NHK2,,Shimonoseki (chu-yam),33.966667,130.933333,,0.1,,9034,44,154,,2030-1500,1.....7,,,50597,,, +1359,J,,JOUZ NHK2,,Shimonoseki (chu-yam),33.966667,130.933333,,0.1,,9034,44,154,,2030-1635,.2345..,,,50597,,, +1359,J,,JOUZ NHK2,,Shimonoseki (chu-yam),33.966667,130.933333,,0.1,,9034,44,154,,2030-1640,.....6.,,,50597,,, +1359,J,,NHK R 2,,Fukuchiyama (kns-kyo),35.3,135.116667,,0.1,,9096,40,154,,2030-1500,1.....7,,,50582,,, +1359,J,,NHK R 2,,Fukuchiyama (kns-kyo),35.3,135.116667,,0.1,,9096,40,154,,2030-1635,.2345..,,,50582,,, +1359,J,,NHK R 2,,Fukuchiyama (kns-kyo),35.3,135.116667,,0.1,,9096,40,154,,2030-1640,.....6.,,,50582,,, +1359,J,,NHK R 2,,Hamada (chg-shi),34.9,132.083333,,0.1,,8998,42,154,,2030-1500,1.....7,,,50583,,, +1359,J,,NHK R 2,,Hamada (chg-shi),34.9,132.083333,,0.1,,8998,42,154,,2030-1635,.2345..,,,50583,,, +1359,J,,NHK R 2,,Hamada (chg-shi),34.9,132.083333,,0.1,,8998,42,154,,2030-1640,.....6.,,,50583,,, +1359,J,,NHK R 2,,Ikeda (shi-tok),34.033333,133.816667,,0.1,,9161,42,154,,2030-1500,1.....7,,,50584,,, +1359,J,,NHK R 2,,Ikeda (shi-tok),34.033333,133.816667,,0.1,,9161,42,154,,2030-1635,.2345..,,,50584,,, +1359,J,,NHK R 2,,Ikeda (shi-tok),34.033333,133.816667,,0.1,,9161,42,154,,2030-1640,.....6.,,,50584,,, +1359,J,,NHK R 2,,Katsuyama (chu-fuk),36.016667,136.533333,,0.1,,9087,39,154,,2030-1500,1.....7,,,50585,,, +1359,J,,NHK R 2,,Katsuyama (chu-fuk),36.016667,136.533333,,0.1,,9087,39,154,,2030-1635,.2345..,,,50585,,, +1359,J,,NHK R 2,,Katsuyama (chu-fuk),36.016667,136.533333,,0.1,,9087,39,154,,2030-1640,.....6.,,,50585,,, +1359,J,,NHK R 2,,Kurayoshi (chg-tot),35.416667,133.8,,0.1,,9026,41,154,,2030-1500,1.....7,,,50586,,, +1359,J,,NHK R 2,,Kurayoshi (chg-tot),35.416667,133.8,,0.1,,9026,41,154,,2030-1635,.2345..,,,50586,,, +1359,J,,NHK R 2,,Kurayoshi (chg-tot),35.416667,133.8,,0.1,,9026,41,154,,2030-1640,.....6.,,,50586,,, +1359,J,,NHK R 2,,Miyakonojo (kyu-miy),31.766667,131.083333,,0.1,,9251,45,154,,2030-1500,1.....7,,,50588,,, +1359,J,,NHK R 2,,Miyakonojo (kyu-miy),31.766667,131.083333,,0.1,,9251,45,154,,2030-1635,.2345..,,,50588,,, +1359,J,,NHK R 2,,Miyakonojo (kyu-miy),31.766667,131.083333,,0.1,,9251,45,154,,2030-1640,.....6.,,,50588,,, +1359,J,,NHK R 2,,Nakatsugawa (chu-gif),35.483333,137.483333,,0.1,,9180,38,154,,2030-1500,1.....7,,,50590,,, +1359,J,,NHK R 2,,Nakatsugawa (chu-gif),35.483333,137.483333,,0.1,,9180,38,154,,2030-1635,.2345..,,,50590,,, +1359,J,,NHK R 2,,Nakatsugawa (chu-gif),35.483333,137.483333,,0.1,,9180,38,154,,2030-1640,.....6.,,,50590,,, +1359,J,,NHK R 2,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,2030-1500,1.....7,,,50592,,, +1359,J,,NHK R 2,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,2030-1635,.2345..,,,50592,,, +1359,J,,NHK R 2,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,2030-1640,.....6.,,,50592,,, +1359,J,,NHK R 2,,Ofunato (toh-iwa),39.083333,141.733333,,0.1,,8993,34,154,,2030-1500,1.....7,,,50594,,, +1359,J,,NHK R 2,,Ofunato (toh-iwa),39.083333,141.733333,,0.1,,8993,34,154,,2030-1635,.2345..,,,50594,,, +1359,J,,NHK R 2,,Ofunato (toh-iwa),39.083333,141.733333,,0.1,,8993,34,154,,2030-1640,.....6.,,,50594,,, +1359,J,,NHK R 2,,Okayasuwa (chu-nag),36.05,138.066667,,0.1,,9149,38,154,,2030-1500,1.....7,,,50595,,, +1359,J,,NHK R 2,,Okayasuwa (chu-nag),36.05,138.066667,,0.1,,9149,38,154,,2030-1635,.2345..,,,50595,,, +1359,J,,NHK R 2,,Okayasuwa (chu-nag),36.05,138.066667,,0.1,,9149,38,154,,2030-1640,.....6.,,,50595,,, +1359,J,,NHK R 2,,Shobara (chg-hir),34.85,133.033333,,0.1,,9046,42,154,,2030-1500,1.....7,,,50599,,, +1359,J,,NHK R 2,,Shobara (chg-hir),34.85,133.033333,,0.1,,9046,42,154,,2030-1635,.2345..,,,50599,,, +1359,J,,NHK R 2,,Shobara (chg-hir),34.85,133.033333,,0.1,,9046,42,154,,2030-1640,.....6.,,,50599,,, +1359,J,,NHK R 2,,Tadami (toh-fuk),37.3,139.366667,,0.1,,9078,36,154,,2030-1500,1.....7,,,50600,,, +1359,J,,NHK R 2,,Tadami (toh-fuk),37.3,139.366667,,0.1,,9078,36,154,,2030-1635,.2345..,,,50600,,, +1359,J,,NHK R 2,,Tadami (toh-fuk),37.3,139.366667,,0.1,,9078,36,154,,2030-1640,.....6.,,,50600,,, +1359,J,,NHK R 2,,Takachiho (chu-gif),32.7,131.3,,0.1,,9172,44,154,,2030-1500,1.....7,,,50601,,, +1359,J,,NHK R 2,,Takachiho (chu-gif),32.7,131.3,,0.1,,9172,44,154,,2030-1635,.2345..,,,50601,,, +1359,J,,NHK R 2,,Takachiho (chu-gif),32.7,131.3,,0.1,,9172,44,154,,2030-1640,.....6.,,,50601,,, +1359,J,,NHK R 2,,Takada (chu-nii),37.1,138.283333,,0.1,,9054,37,154,,2030-1500,1.....7,,,50602,,, +1359,J,,NHK R 2,,Takada (chu-nii),37.1,138.283333,,0.1,,9054,37,154,,2030-1635,.2345..,,,50602,,, +1359,J,,NHK R 2,,Takada (chu-nii),37.1,138.283333,,0.1,,9054,37,154,,2030-1640,.....6.,,,50602,,, +1359,J,,NHK R 2,,Tsuwano (chg-shi),34.45,131.766667,,0.1,,9027,43,154,,2030-1500,1.....7,,,50604,,, +1359,J,,NHK R 2,,Tsuwano (chg-shi),34.45,131.766667,,0.1,,9027,43,154,,2030-1635,.2345..,,,50604,,, +1359,J,,NHK R 2,,Tsuwano (chg-shi),34.45,131.766667,,0.1,,9027,43,154,,2030-1640,.....6.,,,50604,,, +1359,J,,NHK R 2,,Wajima (chu-ish),37.366667,136.916667,,0.1,,8971,38,154,,2030-1500,1.....7,,,50605,,, +1359,J,,NHK R 2,,Wajima (chu-ish),37.366667,136.916667,,0.1,,8971,38,154,,2030-1635,.2345..,,,50605,,, +1359,J,,NHK R 2,,Wajima (chu-ish),37.366667,136.916667,,0.1,,8971,38,154,,2030-1640,.....6.,,,50605,,, +1359,J,,NHK R 2,,Yonezawa (toh-yam),37.9,140.1,,0.1,,9048,35,154,,2030-1500,1.....7,,,50606,,, +1359,J,,NHK R 2,,Yonezawa (toh-yam),37.9,140.1,,0.1,,9048,35,154,,2030-1635,.2345..,,,50606,,, +1359,J,,NHK R 2,,Yonezawa (toh-yam),37.9,140.1,,0.1,,9048,35,154,,2030-1640,.....6.,,,50606,,, +1359,J,,NHK R 2,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,2030-1500,1.....7,,,50598,,, +1359,J,,NHK R 2,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,2030-1635,.2345..,,,50598,,, +1359,J,,NHK R 2,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,2030-1640,.....6.,,,50598,,, +1359,NZL,en,The Coast,,New Plymouth/Bell Block (TKI),-39.033111,174.131556,,2.5,,18280,38,170,,,,,,50608,,, +1359,AUS,en,4WK,,Toowoomba/37-41 Jones St (QLD),-27.538072,151.948867,,0.3,,16065,60,172,,0000-2400,1234567,9996,,50574,,, +1359,AUS,,Sport 927/Alive R,,Mildura/6 Byrne Court (VIC),-34.199083,142.172306,,0.2,,15996,78,174,,0000-2400,1234567,,,50573,,, +1359,NZL,,4XC More FM,,Queenstown (OTA),-45.05,168.7,,1,,18500,66,175,,,,,,50609,,, +1360,AFG,,R Nangarhar,,Jalalabad (nan),34.410667,70.4625,,10,,5350,85,101,,0230-0430,1234567,,,50617,,, +1360,AFG,,R Nangarhar,,Jalalabad (nan),34.410667,70.4625,,10,,5350,85,101,,1230-1430,1234567,,,50617,,, +1360,USA,,WDRC,,Hartford (D) (CT),41.813056,-72.696111,,5,,5806,292,108,,,,,,20016299,,, +1360,USA,,WDRC,,Hartford (N) (CT),41.813056,-72.696667,,5,,5806,292,108,,,,19,,41204,,, +1360,USA,en,WMNY,,McKeesport (D) (PA),40.408333,-79.927778,,5,,6362,295,114,,0000-1200,1234567,23,,42748,,, +1360,USA,en,WTAQ,,Green Bay (WI),44.430833,-88.080833,,5,,6537,304,115,,,,999,,43104,,, +1360,USA,en,WMOV,,Ravenswood (WV),38.964444,-81.769167,,5,,6587,295,116,,1200-2400,1234567,,,42372,,, +1360,USA,en,WSAI,,Cincinnati (OH),39.2475,-84.531111,,5,,6734,297,117,,,,0,,41019,,, +1360,USA,,WNJC,,Washington Township (NJ),39.789722,-75.103056,,0.8,,6107,292,119,,,,,,42475,,, +1360,USA,,KKBJ,,Bemidji (MN),47.442222,-94.865833,,2.5,,6671,310,120,,,,4,,38708,,, +1360,USA,,WKYO,,Caro (MI),43.458889,-83.394167,,1,,6340,300,120,,,,,,42107,,, +1360,USA,,WYOS,,Binghamton (NY),42.066944,-75.906111,,0.5,,5989,294,120,,,,1,,43540,,, +1360,USA,,WMNY,,McKeesport (N) (PA),40.311389,-79.849722,,1,,6365,295,121,,,,,,20016212,,, +1360,USA,,WPPA,,Pottsville (PA),40.698889,-76.195278,,0.5,,6108,293,121,,,,,,42725,,, +1360,USA,,KSCJ,,Sioux City (IA),42.556667,-96.336667,,5,,7148,307,122,,,,989,,39330,,, +1360,USA,en,WTOC,,Newton (NJ),41.039444,-74.738611,,0.32,,5991,293,122,,,,,,42487,,, +1360,USA,,WKMI,,Kalamazoo (MI),42.326667,-85.525833,,1,,6553,300,123,,,,,,42044,,, +1360,USA,,WCHL,,Chapel Hill (NC),35.938333,-79.026667,,1,,6651,291,124,,,,,,40995,,, +1360,USA,en,WHJC,,Matewan (WV),37.617222,-82.167778,,1,,6717,294,124,,,,,,41648,,, +1360,USA,,WGFA,,Watseka (IL),40.793611,-87.754722,,1,,6804,300,125,,,,,,41499,,, +1360,USA,,WLYN,,Lynn (MA),42.452778,-70.980556,,0.076,,5652,292,125,,,,,,42266,,, +1360,HTI,,R Liberte,,Port-au-Prince (oue),18.516667,-72.316667,,5,,7631,273,126,,,,,,52121,,, +1360,USA,,WHNR,,Cypress Gardens (FL),28.021111,-81.700556,,2.5,,7465,287,128,,,,9992,,41670,,, +1360,B,pt,ZYJ464 Rdio Bandeirantes,,Rio de Janeiro/So Gonalo (RJ),-22.794806,-43.055278,,50,,9611,225,129,,,,0,,36902212,,, +1360,USA,es,KKMO,,Tacoma (WA),47.305278,-122.4425,,5,,7940,326,129,,,,1,,38733,,, +1360,USA,,KDJW,,Amarillo (D) (TX),35.2425,-101.784167,,6,,8074,306,130,,,,,,38273,,, +1360,VEN,,YVTZ R Armonia,,Charallave (mir),10.316667,-66.816667,,5,,7961,263,130,,1000-0300,1234567,993,,45478,,, +1360,USA,,KUIK,,Hillsboro (OR),45.486944,-122.908611,,5,,8133,325,131,,,,998,,39572,,, +1360,VEN,,YVTW R Alegria,,Chivacoa (ycy),10.15,-68.9,,5,,8117,265,131,,,,,,45476,,, +1360,DOM,,HIXZ R Listin,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,,,,,37319,,, +1360,USA,,KNGN,,McCook (NE),40.222222,-100.693611,,1,,7581,308,133,,,,,,38993,,, +1360,USA,es,WKAT,,North Miami (FL),25.743333,-80.153889,,1,,7552,284,133,,,,0,,41955,,, +1360,VEN,,YVTI R Internacional,,Maracaibo (zul),10.666667,-71.666667,,5,,8261,267,133,,0000-2400,1234567,,,45468,,, +1360,GTM,,TGLK R Tic Tac LV del Tiempo,,Ciudad de Guatemala (gut),14.616667,-90.583333,,10,,9198,284,134,,1100-0500,1234567,,,40506,,, +1360,USA,,WOEN,,Olean (NY),42.105,-78.390278,,0.03,,6140,296,134,,,,,,42568,,, +1360,USA,en,WWOW,,Conneaut (OH),41.925556,-80.542222,,0.035,,6285,297,134,,,,35,,43421,,, +1360,MEX,es,XEZON-AM,,Tepetitlanapa (vcz),18.645122,-97.011461,,10,,9259,292,135,,,,,,45151,,, +1360,USA,,KHNC,,Johnstown (CO),40.386389,-104.905278,,1,,7788,311,135,,,,973,,38548,,, +1360,USA,,KMJM,,Cedar Rapids (IA),41.924444,-91.615278,,0.124,,6937,304,135,,,,,,38911,,, +1360,USA,,KRKK,,Rock Springs (WY),41.62,-109.238889,,1,,7896,315,136,,,,,,39254,,, +1360,CLM,es,HJMI,,Melgar (tol),4.2,-74.65,,5,,9029,266,137,,,,,,35901713,,, +1360,B,pt,ZYH469 Rdio Cultura de Paulo Afonso,,Paulo Afonso (BA),-9.393547,-38.230617,,1,,8051,227,138,,,,,,36902213,,, +1360,USA,es,KMNY,,Hurst (TX),32.774444,-96.964722,,0.89,,8014,301,138,,,,,,37928,,, +1360,USA,,KAHS,,El Dorado (KS),37.813056,-96.812222,,0.24,,7573,304,139,,,,,,37927,,, +1360,USA,,KWWJ,,Baytown (TX),29.774444,-95.015278,,1,,8158,297,139,,,,,,39766,,, +1360,USA,en,WWWJ,,Galax (VA),36.663333,-80.914444,,0.031,,6714,293,139,,,,,,43444,,, +1360,B,pt,ZYH650 Rdio Iracema,,Ip (CE),-4.303594,-40.691028,,0.25,,7677,231,140,,,,99,,36902209,,, +1360,B,pt,ZYJ605 Rdio Ouro Branco,,Currais Novos (RN),-6.261111,-36.509722,,0.25,,7655,227,140,,,,,,36902207,,, +1360,USA,,KOHU,,Hermiston (OR),45.865833,-119.3125,,0.5,,7954,323,140,,,,,,39066,,, +1360,USA,en,WCGL,,Jacksonville (FL),30.275833,-81.636667,,0.089,,7274,288,140,,,,,,40985,,, +1360,USA,en,WMOB,,Mobile (AL),30.690556,-88.025833,,0.212,,7648,293,140,,,,0,,42364,,, +1360,BOL,,CP270 Rdifusoras Jimenez,,El Alto (lpz),-16.5,-68.166667,,5,,10438,248,141,,0800-0100,1234567,,,52027,,, +1360,USA,,KRWC,,Buffalo (MN),45.166667,-93.919722,,0.027,,6803,308,141,,,,,,39317,,, +1360,USA,,WELP,,Easley (SC),34.839722,-82.639444,,0.036,,6968,293,141,,,,,,41290,,, +1360,USA,,WHCG,,Metter (GA),32.398889,-82.043333,,0.059,,7127,290,141,,,,,,41615,,, +1360,USA,,WLBK,,Dekalb (IL),41.938333,-88.750833,,0.024,,6772,302,141,,,,,,42134,,, +1360,USA,,WVRQ,,Viroqua (WI),43.534444,-90.873056,,0.023,,6766,305,141,,,,,,43342,,, +1360,CLM,es,HJTU R Oxigeno,,Cartagena (bol),10.468056,-75.5,,1,,8540,270,142,,,,968,,37651,,, +1360,EQA,,HCHG3 R Jerusalem AM,,Machala (oro),-3.25,-79.866667,,3,,10039,265,142,,,,,,36966,,, +1360,USA,,KBKB,,Fort Madison (IA),40.658333,-91.272222,,0.034,,7020,303,142,,,,,,38047,,, +1360,USA,,KFFA,,Helena (AR),34.5275,-90.63,,0.09,,7488,298,142,,,,,,38383,,, +1360,USA,,KKTX,,Corpus Christi (TX),27.800278,-97.461389,,1,,8478,298,142,,,,994,,38759,,, +1360,USA,,WFFF,,Columbia (MS),31.262222,-89.844722,,0.159,,7713,295,142,,,,,,41372,,, +1360,USA,en,WGJK,,Rome (GA),34.270833,-85.183333,,0.047,,7174,294,142,,,,,,43213,,, +1360,USA,en,WHBG,,Harrisonburg (VA),38.451111,-78.908056,,0.009,,6449,293,142,,,,,,41606,,, +1360,USA,en,WLWE,,Roanoke (AL),33.183889,-85.405833,,0.054,,7277,293,142,,,,,,41291,,, +1360,B,pt,ZYI383 Rdio Difusora Matogrossense Limi,,Corumb (MS),-19.016206,-57.664444,,2.5,,10029,238,143,,,,,,36902210,,, +1360,CLM,es,HJKB,,Zapatoca (sat),6.816667,-73.266667,,1,,8706,266,143,,,,,,35901714,,, +1360,USA,,KDJW,,Amarillo (N) (TX),35.242222,-101.783889,,0.32,,8075,306,143,,,,,,20012604,,, +1360,USA,,KFIV,i,Modesto (CA),37.689722,-120.953333,,0.95,,8805,320,143,,,,0,,38395,,, +1360,USA,,KLYR,,Clarksville (AR),35.4725,-93.491111,,0.098,,7579,300,143,,,,,,38868,,, +1360,USA,,KNIR,,New Iberia (LA),30.025556,-91.822222,,0.209,,7941,295,143,,,,,,38998,,, +1360,USA,,KPXQ,,Glendale (AZ),33.507778,-112.216944,,1,,8787,312,143,,,,9585,,39179,,, +1360,USA,,WBLC,,Lenoir City (TN),35.792222,-84.295833,,0.024,,6995,294,143,,,,,,40873,,, +1360,USA,,WFLW,,Monticello (KY),36.837222,-84.863889,,0.02,,6946,296,143,,,,,,41403,,, +1360,USA,en,KELE r:KELE-FM 92.5,,Mountain Grove (MO),37.135278,-92.249722,,0.06,,7367,301,143,,,,,,38322,,, +1360,CLM,es,HJRA,,Pereira (ris),4.716667,-75.666667,,1,,9053,267,144,,,,,,37634,,, +1360,CTR,,TICA R Celestial,,San Jos (sjs),9.933333,-84.066667,,1,,9170,277,144,,0000-2400,1234567,,,52158,,, +1360,HND,,HRDN,,Trinidad (bar),15.166667,-88.25,,1,,8995,283,144,,,,,,37747,,, +1360,HND,,HRLP18,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37784,,, +1360,USA,,WNAH,,Nashville (TN),36.191667,-86.773889,,0.027,,7116,296,144,,,,,,42424,,, +1360,USA,en,KLSD,,San Diego (CA),32.730278,-117.083611,,1,,9102,315,144,,,,,,38844,,, +1360,USA,en,WIXI,,Jasper (AL),33.82,-87.273889,,0.042,,7341,295,144,,,,,,43588,,, +1360,B,pt,ZYK281 Navegantes AM,,Porto Lucena (RS),-27.858056,-55.006111,,3,,10703,231,145,,,,,,36902211,,, +1360,MEX,es,XEY-AM R.Fiesta Retro,,Celaya (gua),20.51535,-100.765653,,1,,9326,296,145,,,,,,45080,,, +1360,B,pt,ZYK581 Rdio guas Quentes,,Fernandpolis (SP),-20.256219,-50.232311,,1,,9730,232,146,,,,,,36902205,,, +1360,EQA,,HCEG4 La Voz del C,, (pic),-0.25,-79.5,,1,,9750,267,146,,,,,,36913,,, +1360,EQA,,HCLE7,,Oriental (nap),-0.983333,-77.8,,1,,9699,265,146,,,,,,37007,,, +1360,EQA,,HCMT1,,Yaruqui (pic),-0.166667,-78.316667,,1,,9662,266,146,,,,,,37033,,, +1360,USA,,KMRN,,Cameron (MO),39.684722,-94.239444,,0.025,,7270,304,146,,,,,,38931,,, +1360,EQA,,HCEM4,,Portoviejo (man),-1.066667,-80.45,,1,,9887,267,147,,,,,,36920,,, +1360,MEX,es,XEDI-AM,,Chihuahua (chi),28.670636,-106.082722,,0.4,,8903,305,147,,,,,,43909,,, +1360,MEX,es,XEKF-AM La Z,,Iguala (gue),18.354039,-99.511872,,0.7,,9442,294,147,,,,,,44252,,, +1360,USA,,KACT,,Andrews (TX),32.347222,-102.556389,,0.24,,8374,304,147,,,,,,37913,,, +1360,PRU,,OAU3A R Intercontinental,,Yungay/Piquiq (anc),-9.138889,-77.744444,,1,,10413,260,148,,,,,,37000092,,, +1360,PRU,,OZX7R R Sicuani,,Sicuani (cus),-14.316667,-71.25,,1,,10441,252,148,,,,997,,40447,,, +1360,EQA,,HCRJ5,,Riobamba (chi),-1.666667,-78.65,,0.5,,9817,265,149,,,,,,37089,,, +1360,PRU,es,OCU4I La Nueva Q,,Lima (lim),-12.166667,-77.066667,,1,,10634,257,149,,,,8,,37000029,,, +1360,USA,,KBUY,,Ruidoso (NM),33.326111,-105.670556,,0.201,,8459,307,149,,,,,,38110,,, +1360,B,pt,ZYK261 Rdio Alvorada,,Marau/Morro dos Padres (RS),-28.452778,-52.207778,,0.5,,10613,229,152,,,,,,36902215,,, +1360,B,pt,ZYK759 Rdifuso Luzes da Ribalta,,Santa Brbara d'Oeste (SP),-22.766167,-47.403511,,0.25,,9823,228,152,,,,,,36902208,,, +1360,B,pt,ZYJ268 Lder AM,,Assa (PR),-23.381667,-50.856389,,0.25,,10061,231,153,,,,,,36902214,,, +1360,B,pt,ZYK739 Rdio Regional de Dracena,,Dracena/Rua Fortaleza (SP),-21.484511,-51.523967,,0.25,,9916,232,153,,,,,,36902206,,, +1360,B,pt,ZYJ265 Rdio Cidade Pato Branco,,Pato Branco (PR),-26.224167,-52.638333,,0.25,,10424,230,154,,,,,,36902217,,, +1360,PRG,,ZP37 R Yby Yau,,Araza Poty or Ybu Yau (cnc),-23,-56.5,,0.25,,10332,235,154,,0900-0300,1234567,,,51629,,, +1360,CHL,,CC136 R UBB,,Concepcin (BI),-36.716667,-73.066667,,1,,12504,239,155,,1040-0300,1234567,,,35811,,, +1360,URG,,CW41 R 41,,San Jos de Mayo (sj),-34.35,-56.666667,,0.5,,11393,229,155,,0900-0300,1234567,988,,36772,,, +1360,BOL,,CP143 R Libertad,,Villazon (pts),-22.116667,-65.616667,,0.25,,10784,243,156,,1100-0300,123456,,,36647,,, +1360,BOL,,CP143 R Libertad,,Villazon (pts),-22.116667,-65.616667,,0.25,,10784,243,156,,1100-2200,......7,,,36647,,, +1360,URG,,CV136,,Chiflero (ar),-30.416667,-56.5,,0.25,,11021,231,156,,,,,,36726,,, +1360,URG,,CW136 R Rio Branco,,Ro Branco (cl),-32.566667,-53.383333,,0.25,,11060,228,157,,0930-0230,1234567,,,36746,,, +1360,USA,,KWDJ,,Ridgecrest (CA),35.616111,-117.643056,,0.031,,8854,317,158,,,,,,39698,,, +1368,G,en,Manx R,,Douglas/Foxdale (IOM),54.168333,-4.605,,20,,769,292,52,,0600-0100,1234567,9977,,1371,,, +1368,I,,Challenger R,,Villa Estense (pd),45.157858,11.702367,,10,,865,151,56,,1200-1800,1234567,74,,4000009,,, +1368,I,en,Challenger R,,Villa Estense (pd),45.157858,11.702367,,10,,865,151,56,,1800-2400,1234567,74,,4000009,,, +1368,G,en,BBC R Humberside,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,1200-1400,1234567,1,,1368,,, +1368,G,en,BBC R Lincolnshire,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,0600-1200,12345..,1,,1368,,, +1368,G,en,BBC R Lincolnshire,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,0700-1200,.....67,1,,1368,,, +1368,G,en,BBC R Lincolnshire,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,1400-2400,1234567,1,,1368,,, +1368,G,en,BBC WS,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,0000-0600,12345..,1,,1368,,, +1368,G,en,BBC WS,,Lincoln/Swan Pool (EN-LIN),53.227694,-0.568111,,2,,486,288,59,,0000-0700,.....67,1,,1368,,, +1368,G,en,BBC R 5 Live,,Duxhurst (EN-SUR),51.193528,-0.200167,,0.5,,467,260,65,,0000-0500,1234567,0,,1369,,, +1368,G,en,BBC Surrey,,Duxhurst (EN-SUR),51.193528,-0.200167,,0.5,,467,260,65,,0500-2400,1234567,0,,1369,,, +1368,G,en,BBC R 5 Live,,Swindon (EN-WLT),51.571556,-1.816083,,0.4,,568,267,67,,0000-0600,1234567,,,1370,,, +1368,G,en,BBC R Wiltshire,,Swindon (EN-WLT),51.571556,-1.816083,,0.4,,568,267,67,,0600-2400,1234567,,,1370,,, +1368,ISR,he,Galei Zahal,,Shivta/Hivan (hdm),30.933333,34.633333,,20,,3287,125,77,,0000-2400,1234567,,,1374,,, +1368,GRC,el,unid,,unknown,38.4,24.65,,1,,2077,130,78,,,,,,3400048,,, +1368,IRN,fa,IRIB R Golestan,,Gonbad-e Qabus (gsn),37.235556,55.053444,,100,,4093,94,78,,0000-2400,1234567,996,,52633,,, +1368,EGY,ar,ERTU Al-Barnameg al-Aam,,El-Kharga (wjd),25.401194,30.553944,,10,,3597,136,83,,0300-2400,1234567,,,1367,,, +1368,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,Qasr el-Farafra (wjd),27.077617,27.978894,,1,,3313,139,90,,0200-2200,1234567,,,1850,,, +1368,CHN,zh,CNR 1,,Karamay/XJTS7605 (XJ),45.606111,84.845833,,10,,5499,64,102,,2025-1805,1234567,,,50623,,, +1368,IND,,AIR Vividh Bharati,,Delhi D (DL),28.698556,77.210917,,20,,6250,85,107,,0025-0435,1234567,997,,50624,,, +1368,IND,,AIR Vividh Bharati,,Delhi D (DL),28.698556,77.210917,,20,,6250,85,107,,0900-1200,1234567,997,,50624,,, +1368,IND,,AIR Vividh Bharati,,Delhi D (DL),28.698556,77.210917,,20,,6250,85,107,,1245-1730,1234567,997,,50624,,, +1368,CHN,mn,Nei Menggu RGD Mongyol,,Oroqen=Elunchun/NMTS051 (NM),50.583333,123.716667,,10,,7170,39,119,,2150-1605,1234567,,,36201023,,, +1368,CHN,mn,Nei Menggu RGD Mongyol,,Ulan Hua/NMTS078 (NM),41.527778,111.691667,,10,,7372,52,121,,2150-1605,1234567,,,36200275,,, +1368,SEY,,..,,Victoria (mhe),-4.618594,55.439722,,10,,7812,127,125,,0200-0930,1234567,,,2518,,, +1368,SEY,,SBC R,,Victoria (mhe),-4.618594,55.439722,,10,,7812,127,125,,1100-1800,1234567,,,2518,,, +1368,CHN,,Jixi JGD,,Jixi (HL),45.298056,130.938611,,10,,7959,38,127,,,,,,50622,,, +1368,THA,th,Sor. Wor. Thor. (R Thailand),,Nan/Ban Khowang (nan),18.700556,100.742778,,25,,8666,75,129,,2200-1700,1234567,,,50655,,, +1368,CHN,mn,Nei Menggu RGD Mongyol,,Jarud=Zalute/NMTS751 (NM),44.578917,120.913944,,1,,7576,44,133,,2150-1605,1234567,,,36201143,,, +1368,THA,th,Sor. Wor. Thor. (R Thailand),,Buriram/Niwat Road (brr),15.002222,103.100556,,10,,9144,76,134,,2200-1700,1234567,,,50653,,, +1368,THA,th,Thor. Or. 012,,Nakhon Pathom/Aviation School (npt),14.0975,99.944167,,10,,9013,79,134,,2200-1702,1234567,,,50654,,, +1368,J,,JOHP NHK1,,Takamatsu (shi-kag),34.315278,134.0625,,5,,9145,41,137,,0000-2400,1234567,,,50642,,, +1368,KRE,,KCBS Voice of Korea,,Pyongyang (pyo),39.153939,125.751983,,2,,8299,45,137,,0000-1800,1234567,,,50647,,, +1368,KRE,,KCBS Voice of Korea,,Pyongyang (pyo),39.153939,125.751983,,2,,8299,45,137,,2100-2400,1234567,,,50647,,, +1368,CHN,,Guangshui RGD,,Guangshui (HU),31.616667,113.816667,,1,,8350,57,141,,0000-0055,1234567,,,50621,,, +1368,CHN,,Guangshui RGD,,Guangshui (HU),31.616667,113.816667,,1,,8350,57,141,,0355-0515,1234567,,,50621,,, +1368,CHN,,Guangshui RGD,,Guangshui (HU),31.616667,113.816667,,1,,8350,57,141,,0955-1255,1234567,,,50621,,, +1368,CHN,,Guangshui RGD,,Guangshui (HU),31.616667,113.816667,,1,,8350,57,141,,2155-2400,1234567,,,50621,,, +1368,J,ja,JOTS HBC Hokkaido Hoso,,Wakkanai (hok),45.400833,141.672222,,1,,8361,31,141,,0000-2400,1234567,,,50645,,, +1368,KOR,ko,HLKO KBS 1 R,,Muju (jeb),36.007222,127.655278,,1,,8684,45,143,,,,,,52087,,, +1368,PHL,,DZBS-AM Radyo Ronda,,Baguio City/Bakawkan (bgt),16.416667,120.6,,2.5,,10124,61,143,,,,,,50649,,, +1368,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Changting/FJTS605 (FJ),25.266667,117.9,,1,,9155,58,144,,,,,,50620,,, +1368,J,,JOJP NHK1,,Tsuruoka (toh-yam),38.733333,139.866667,,1,,8956,35,144,,0000-2400,1234567,,,50644,,, +1368,J,,JOLG NHK1,,Tottori (chg-tot),35.516667,134.2,,1,,9034,41,144,,0000-2400,1234567,,,50643,,, +1368,PHL,tl,DXKO-AM Radyo Ronda,,Cagayan de Oro City (mor),8.472222,124.682778,,5,,11105,62,144,,2100-1300,1234567,1,,50650,,, +1368,TWN,,Chin Hsi chih Sheng/Fochiao KT,,Kaohsiung/Mituo (KH),22.775756,120.234861,,1,,9518,58,145,,,,,,50656,,, +1368,PHL,,DZRA-AM,,Virac/Catanduanes State College (ctd),13.585278,124.208889,,1,,10601,60,149,,,,,,50651,,, +1368,J,,NHK R 1,,Kawamoto (chg-shi),34.966667,132.483333,,0.1,,9010,42,154,,0000-2400,1234567,,,50636,,, +1368,J,,NHK R 1,,Koide (chu-nii),37.266667,138.983333,,0.1,,9066,36,154,,0000-2400,1234567,,,50637,,, +1368,J,,NHK R 1,,Nishiaizu (chg-yam),37.583333,139.65,,0.1,,9062,36,154,,0000-2400,1234567,,,50640,,, +1368,J,,NHK R 1,,Taisho (shi-koc),33.195,132.973056,,0.1,,9203,43,154,,0000-2400,1234567,,,50641,,, +1368,J,,NHK R 1,,Yawatahama (shi-ehi),33.466667,132.45,,0.1,,9153,43,154,,0000-2400,1234567,,,50646,,, +1368,J,ja,NHK R 1,,Susa,34.5,134,,0.1,,9124,41,154,,,,,,31400096,,, +1368,J,,NHK R 1,,Kumano (kns-mie),33.883333,136.1,,0.1,,9277,40,155,,0000-2400,1234567,,,50638,,, +1368,J,,NHK R 1,,Hirara (kyu-oki),24.8,125.283333,,0.1,,9613,53,156,,0000-2400,1234567,,,50635,,, +1368,AUS,,2GN,,Goulburn (NSW),-34.745681,149.696542,,2,,16533,71,166,,0000-2400,1234567,,,50619,,, +1368,NZL,,1XT Village R,,Tauranga (BOP),-37.816667,176.416667,,1,,18246,30,174,,2100-0500,......7,,,50648,,, +1368,NZL,,R Live,,Napier/Pakipaki (HKB),-39.692222,176.803333,,1,,18450,32,175,,,,,,32500006,,, +1370,USA,en,WQLL,,Pikesville (D) (MD),39.439722,-76.355556,,50,,6212,292,102,,,,,,43401,,, +1370,USA,,WDEA,,Ellsworth (ME),44.466667,-68.469722,,5,,5354,292,104,,,,3,,41143,,, +1370,USA,en,WQLL,,Pikesville (N) (MD),39.408056,-76.775556,,24,,6241,292,106,,,,,,20012582,,, +1370,USA,,WFEA,,Manchester (NH),42.907222,-71.4625,,5,,5651,293,107,,,,3,,41370,,, +1370,USA,en,WJIP (r:WKIP),,Ellenville (NY),41.738611,-74.396667,,5,,5919,293,109,,,,,,42937,,, +1370,USA,,WXXI,,Rochester (NY),43.100278,-77.573056,,5,,6017,296,110,,,,9982,,43499,,, +1370,USA,,WSPD,,Toledo (OH),41.600833,-83.536389,,5,,6491,299,115,,,,995,,43050,,, +1370,USA,,WVMR,,Frost (WV),38.290278,-79.931111,,5,,6525,294,115,,,,,,43312,,, +1370,CAN,en,CFOK,,Westlock (AB),54.087778,-113.878611,,10,,6980,325,117,,,,999,,35991,,, +1370,USA,,WHEE,,Martinsville (VA),36.685833,-79.903889,,5,,6649,292,117,,,,,,41621,,, +1370,USA,,KDTH,,Dubuque (IA),42.485,-90.644167,,5,,6837,304,118,,,,999,,38295,,, +1370,USA,,WDEF,,Chattanooga (TN),35.040556,-85.339444,,5,,7121,294,121,,,,,,41146,,, +1370,USA,,WLJW,,Cadillac (MI),44.231667,-85.4125,,1,,6400,302,121,,,,9987,,42178,,, +1370,USA,en,WWCB,,Corry (PA),41.936111,-79.655556,,0.5,,6230,297,122,,,,,,43359,,, +1370,DOM,,HIRP R Seybo,,Santa Cruz de El Seibo (sey),18.766667,-69.016667,,5,,7384,271,124,,0000-2400,1234567,,,37294,,, +1370,USA,,WLTH,,Gary (D) (IN),41.571389,-87.317222,,1,,6717,301,124,,,,,,20012597,,, +1370,USA,,WTKY,,Tompkinsville (KY),36.724167,-85.681389,,2.1,,7006,296,124,,,,,,43160,,, +1370,USA,,WBTN,,Bennington (VT),42.905278,-73.208889,,0.085,,5761,294,125,,,,,,40921,,, +1370,USA,,WALK,,East Patchogue (NY),40.753889,-72.987222,,0.102,,5901,291,126,,,,,,40696,,, +1370,USA,,WSHV,,South Hill (VA),36.744167,-78.161667,,0.41,,6533,291,126,,,,968,,43002,,, +1370,USA,en,WCOA,,Pensacola (FL),30.449167,-87.262778,,5,,7620,292,126,,,,,,41053,,, +1370,B,pt,ZYK766 Rdio Iguatemi,,So Paulo/Rua Jacofer 615 (SP),-23.509972,-46.678306,,100,,9858,227,127,,,,98,,36902220,,, +1370,USA,,KSUM,,Fairmont (MN),43.629167,-94.483333,,1,,6958,307,127,,,,986,,39431,,, +1370,USA,,KXTL,,Butte (MT),46.005833,-112.631667,,5,,7657,319,127,,,,988,,39828,,, +1370,USA,,WLTH,,Gary (N) (IN),41.539444,-87.3,,0.5,,6719,301,127,,,,,,42243,,, +1370,USA,,WLOV,,Washington (GA),33.733889,-82.719444,,1,,7062,292,128,,,,,,42213,,, +1370,PTR,xx,WIVV,,Viequez Island (PR),18.101944,-65.4725,,1,,7199,267,129,,0000-2400,1234567,983,,41821,,, +1370,USA,,WGCL,,Bloomington (IN),39.19,-86.634444,,0.5,,6866,299,129,,,,,,41487,,, +1370,USA,,KWTL,,Grand Forks (ND),47.883056,-97.112778,,0.27,,6752,312,130,,,,7,,39760,,, +1370,VEN,,YVOQ R La Pascua/Union R,,Valle de la Pascua (gco),9.266667,-66.066667,,5,,8002,262,130,,1000-0400,1234567,988,,45369,,, +1370,B,pt,ZYJ929 Rdio Capital do Agreste,,Itabaiana (SE),-10.673056,-37.383333,,5,,8136,225,131,,,,,,36902230,,, +1370,USA,,KSOP,,South Salt Lake (D) (UT),40.72,-111.928333,,5,,8107,316,131,,,,,,39399,,, +1370,USA,en,WPAZ,,Pottstown (PA),40.276389,-75.628889,,0.052,,6104,293,131,,,,,,42648,,, +1370,B,pt,ZYI892 Rdio Difusora AM,,Teresina (PI),-5.073889,-42.826667,,2.5,,7867,233,132,,,,,,36902225,,, +1370,USA,,KAWW,,Heber Springs (AR),35.486111,-92.034722,,1,,7492,299,132,,,,,,37991,,, +1370,VEN,es,YVSV RNV,,Acarigua/Araure (ptg),9.616667,-69.216667,,5,,8185,265,132,,1000-0400,1234567,987,,45461,,, +1370,USA,,KTPA,,Prescott (AR),33.793333,-93.395,,1,,7716,299,134,,1300-0100,1234567,,,39531,,, +1370,USA,,WKMC,,Roaring Spring (PA),40.323889,-78.394444,,0.038,,6274,294,134,,,,,,42042,,, +1370,USA,,WTAB,,Tabor City (NC),34.15,-78.861111,,0.109,,6782,289,134,,,,,,43098,,, +1370,VEN,,YVJI R Continente Cumbre,,Ejido (mrd),8.575,-71.183333,,5,,8410,265,134,,1000-0400,1234567,,,45346,,, +1370,HTI,,R Citadelle,,Cap-Hatien (nrd),19.75,-72.2,,0.5,,7518,274,135,,,,,,52122,,, +1370,HTI,,Rdiffusion Cayenne,,Les Cayes (sud),18.166667,-73.716667,,1,,7756,274,135,,,,,,35650,,, +1370,LAO,lo,LNR Champasak R,,Pakse=Pakx (cpk),15.115742,105.821822,,10,,9313,73,135,,2155-1400,1234567,,,50658,,, +1370,CLM,es,HJEQ RCN Cauca,,Popayn (cau),2.416667,-70.583333,,5,,8910,261,136,,,,,,37419,,, +1370,MEX,es,XEHF-AM R Frmula,,Nogales (son),31.313792,-110.935625,,5,,8925,310,136,,,,,,44111,,, +1370,USA,,KFRO,,Longview (TX),32.501944,-94.703333,,1,,7904,299,136,,,,,,38428,,, +1370,USA,,KZSF,,San Jose (CA),37.357778,-121.871389,,5,,8877,321,136,,,,33,,39908,,, +1370,CLM,es,HJKI R Mundial,,Bogot D. C. (bdc),4.583333,-74.116667,,5,,8959,265,137,,,,15,,37537,,, +1370,USA,,WCCN,,Neillsville (WI),44.571667,-90.585556,,0.042,,6667,305,137,,,,,,40966,,, +1370,USA,,WLLN,,Lillington (NC),35.387778,-78.806111,,0.049,,6681,290,137,,,,,,42188,,, +1370,USA,,KAST,,Astoria (OR),46.175278,-123.849444,,1,,8103,326,138,,,,1,,37975,,, +1370,USA,,KAWL,,York (NE),40.841667,-97.587778,,0.176,,7360,307,138,,,,,,37990,,, +1370,USA,,WVLY,,Moundsville (WV),39.905556,-80.778333,,0.02,,6453,295,138,,,,,,43308,,, +1370,B,pt,Rdio Vanguarda,,Caridade (CE),-4.237042,-39.202933,,0.25,,7592,230,139,,,,,,36902229,,, +1370,B,pt,ZYK374 Rdio Jornal da Manh,,Iju (RS),-28.367778,-53.897222,,10,,10692,230,139,,,,,,36902224,,, +1370,USA,,WGHN,,Grand Haven (MI),43.038056,-86.229444,,0.022,,6539,301,139,,,,,,41515,,, +1370,USA,,WGIV,,Pineville (NC),35.2125,-80.868333,,0.045,,6826,292,139,,,,,,42240,,, +1370,USA,,KWRT,,Boonville (MO),38.945556,-92.770556,,0.084,,7247,302,140,,,,,,39752,,, +1370,USA,,WRGS,,Rogersville (TN),36.416111,-82.984444,,0.04,,6863,294,140,,,,,,42845,,, +1370,USA,zh,KWRM,,Corona (CA),33.881111,-117.5425,,2.5,,9015,316,140,,,,9944,,39749,,, +1370,B,pt,ZYI800 Rdio Vale do Capibaribe,,Santa Cruz do Capibaribe (PE),-7.936075,-36.216278,,0.25,,7807,225,141,,,,,,36902226,,, +1370,B,pt,ZYJ618 Rdio Difusora AM,,So Miguel (RN),-6.216667,-38.5,,0.25,,7750,228,141,,,,,,36902218,,, +1370,USA,,KGNO,,Dodge City (KS),37.76,-100.098056,,0.23,,7761,306,141,,,,,,38500,,, +1370,USA,,KSOP,,South Salt Lake (N) (UT),40.72,-111.928056,,0.5,,8107,316,141,,,,,,20016197,,, +1370,USA,,WGOH,,Grayson (KY),38.328889,-82.975833,,0.021,,6711,296,141,,,,,,41544,,, +1370,USA,,WLLM,,Lincoln (IL),40.14,-89.386111,,0.035,,6953,301,141,,,,,,42187,,, +1370,USA,en,WRND,,Fort Campbell (KY),36.641111,-87.433611,,0.053,,7119,297,141,,,,,,42005,,, +1370,BOL,,CP288 Rdifusoras Coral,,Oruro (oru),-17.966667,-67.116667,,5,,10504,246,142,,1000-0400,123456,,,52029,,, +1370,BOL,,CP288 Rdifusoras Coral,,Oruro (oru),-17.966667,-67.116667,,5,,10504,246,142,,1100-2400,......7,,,52029,,, +1370,CLM,es,HJBD,,Ccuta (nsa),7.816667,-72.466667,,1,,8564,266,142,,,,,,37343,,, +1370,CLM,es,HJBO R Minuto de Dios,,Barranquilla (atl),10.866667,-74.783333,,1,,8456,270,142,,,,997,,37353,,, +1370,CLM,es,HJNI,,Sincelejo (suc),9.3,-75.316667,,1,,8629,269,142,,,,,,37587,,, +1370,USA,,KCRV,,Caruthersville (MO),36.213889,-89.690278,,0.063,,7291,298,142,,,,,,38207,,, +1370,USA,,WZTA,,Vero Beach (FL),27.600278,-80.3925,,0.074,,7414,286,142,,,,,,40782,,, +1370,CLM,es,HJNU,,Rionegro (ant),6.15,-75.333333,,1,,8905,267,143,,,,,,37598,,, +1370,EQA,,HCJS1,,Pimanpiro (imb),0.366667,-77.916667,,2,,9588,266,143,,,,,,36994,,, +1370,EQA,,HCRP7,,El Puyo (pas),-1.466667,-77.866667,,2,,9746,265,143,,,,,,37106,,, +1370,MEX,es,XEA-AM Ke Buena,,Campeche (cam),19.829392,-90.561931,,1,,8740,288,143,,,,,,43672,,, +1370,MEX,es,XEJE-AM R Reyna,,Dolores Hidalgo (gua),21.170056,-100.889836,,1.5,,9275,296,143,,,,,,44207,,, +1370,USA,,KJCE,,Rollingwood (TX),30.304167,-97.6475,,0.5,,8270,300,143,,,,,,38662,,, +1370,USA,,WDXE,,Lawrenceburg (TN),35.256944,-87.306667,,0.044,,7225,296,143,,,,,,41224,,, +1370,USA,,WLOP,,Jesup (GA),31.601667,-81.933333,,0.035,,7185,290,143,,,,,,42209,,, +1370,CLM,es,HJJQ,,Zarzal (val),4.4,-76.083333,,1,,9109,267,144,,,,,,35901727,,, +1370,HND,,HRBJ,,La Paz (lap),14.316667,-87.666667,,1,,9030,282,144,,,,,,37740,,, +1370,HND,,HRST,,San Pedro Sula (cor),15.466667,-88.016667,,1,,8953,283,144,,,,,,37846,,, +1370,HND,,HRTR,,Danli (elp),14.016667,-86.566667,,1,,8982,281,144,,,,,,37853,,, +1370,NCG,,Palabra de Mujer,,Bocana de Paiwas (ats),12.8,-85.133333,,1,,8992,279,144,,,,,,33700016,,, +1370,NCG,,R Patria,,Boaco (bco),12.466667,-85.666667,,1,,9057,279,144,,,,,,33700008,,, +1370,NCG,,YNRE R Somoto/R Fronteras,,Somoto (mdz),13.466667,-86.583333,,1,,9032,281,144,,,,,,52215,,, +1370,PNR,es,HOB64 R Sitrachilco,,Puerto Armuelles (chq),8.337778,-82.822222,,1,,9225,275,144,,1000-0200,1234567,,,52347,,, +1370,PRU,,OAZ7J R Santa Mnica,,Cusco (cus),-13.516667,-71.983333,,3,,10418,253,144,,,,,,2286,,, +1370,USA,en,KIOL,,Iola (KS),37.901944,-95.407222,,0.058,,7486,303,144,,,,,,37939,,, +1370,B,pt,ZYH555 Rdio Jornal Frande-Serto AM,,Monte Santo/Rua do Estadio (BA),-10.442222,-39.328889,,0.25,,8209,227,145,,,,,,36902231,,, +1370,B,pt,ZYJ267 Rdio Cano Nova,,Curitiba/Fazenda Guatup (PR),-25.486639,-49.132833,,2,,10173,228,145,,,,,,36902221,,, +1370,GTM,,TGAC LV de Colomba,,Colomba (qzt),14.683333,-91.716667,,1,,9266,285,145,,1200-0300,1234567,,,40472,,, +1370,HWA,en,KUPA,,Pearl City (HI),21.438333,-157.991389,,6.2,,11697,345,145,,,,0,,39587,,, +1370,MEX,es,XEGNK-AM Fiesta Mexicana,,Nuevo Laredo (tam),27.523403,-99.557272,,0.5,,8628,299,145,,,,,,44069,,, +1370,MEX,es,XEPJ-AM,,Guadalajara (jal),20.641853,-103.340219,,1,,9472,298,145,,,,996,,44552,,, +1370,USA,,KRAC,,Quincy (CA),39.948333,-120.898333,,0.5,,8585,321,145,,,,,,39132,,, +1370,USA,,WFDR,,Manchester (GA),32.887222,-84.598333,,0.028,,7250,292,145,,,,,,41369,,, +1370,USA,,WOCA,,Ocala (FL),29.201111,-82.151944,,0.033,,7396,288,146,,,,,,42558,,, +1370,EQA,,HCCP7,,Zamora (zam),-4.066667,-78.916667,,1,,10046,264,147,,,,,,36886,,, +1370,EQA,,HCEH3,,Progreso (loj),-3.95,-79.216667,,1,,10056,264,147,,,,,,36914,,, +1370,EQA,,R El Rocio,,Biblian (can),-2.7,-78.866667,,1,,9923,265,147,,,,8,,32600011,,, +1370,MEX,es,XEMON-AM R Frmula 2,,Monterrey (nvl),25.670947,-100.185289,,0.4,,8830,299,147,,,,,,44397,,, +1370,MEX,es,XESV-AM R Nicolaita,,Morelia (mic),19.689247,-101.200861,,0.5,,9427,296,148,,,,,,44778,,, +1370,URG,,CX42 Emis. Ciudad de Montevideo,,Montevideo (mo),-34.85,-56.133333,,2.5,,11411,228,148,,1100-0300,1234567,,,36818,,, +1370,BOL,,CP133 R Agricultura,,Achacachi (lpz),-16.016667,-68.65,,0.8,,10426,249,149,,1000-2400,1234567,,,36639,,, +1370,USA,,WMGO,,Canton (MS),32.626667,-90.029722,,0.028,,7610,296,149,,,,,,42318,,, +1370,USA,es,KWNC,,Quincy (WA),47.291667,-119.852778,,0.039,,7841,325,149,,,,,,39734,,, +1370,MEX,es,XEHG-AM Romntica 1370,,Mexicali (bcn),32.643822,-115.506411,,0.25,,9033,314,150,,,,,,44112,,, +1370,MEX,es,XERPU-AM La Z,,Durango (dur),24.030269,-104.617739,,0.25,,9241,301,150,,,,,,44703,,, +1370,ARG,,LRA54 R Nacional,,Ingeniero Jacobacci (rn),-41.283333,-69.583333,,3,,12692,233,151,,0900-0300,1234567,,,39957,,, +1370,ARG,,AM-1370,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,0000-2400,1234567,,,51856,,, +1370,B,pt,ZYK243 Me de Deus AM,,Flores da Cunha (RS),-29.106944,-51.181389,,0.5,,10622,228,152,,,,,,36902222,,, +1370,BOL,,CP158 R LV de Minero,,Llallagua/Campamento Siglo XX (pts),-18.366667,-66.616667,,0.5,,10508,246,152,,0900-1700,1234567,,,52028,,, +1370,BOL,,CP158 R LV de Minero,,Llallagua/Campamento Siglo XX (pts),-18.366667,-66.616667,,0.5,,10508,246,152,,2200-2300,1234567,,,52028,,, +1370,EQA,,HCUT2,,Milagro (gua),-2.166667,-79.866667,,0.3,,9944,266,152,,,,,,37156,,, +1370,PRU,,OAZ4O R Cosmos,,Huacho (lim),-13.166667,-76.5,,0.3,,10684,256,154,,,,,,40370,,, +1370,B,pt,ZYJ782 Rdio Peperi,,So Miguel do Oeste (SC),-26.716667,-53.533333,,0.25,,10518,231,155,,,,,,36902223,,, +1370,USA,,KGEN,,Tulare (CA),36.204444,-119.564722,,0.072,,8887,318,155,,,,,,38465,,, +1370,USA,en,WQFL351,,St. Rose/IMTT Corporation Yard (LA),29.941111,-90.326111,,0.01,,7855,294,155,,,,,,20010681,,, +1370,B,pt,ZYK334 Gazeta AM,,Alegrete (RS),-29.791667,-55.769444,,0.25,,10924,231,156,,,,,,36902227,,, +1370,CHL,,CD137 R Conun Hueno La Popular,,Temuco (AR),-38.75,-72.566667,,1,,12646,237,156,,1100-0400,12345.7,,,35876,,, +1370,CHL,,CD137 R Conun Hueno La Popular,,Temuco (AR),-38.75,-72.566667,,1,,12646,237,156,,1100-0800,.....6.,,,35876,,, +1370,USA,en,WQFL351,,Bayou Gauche (LA),29.811022,-90.427683,,0.01,,7872,294,156,,,,,,20010683,,, +1370,USA,en,WQFL351,,Boutte/Hahnville High School (LA),29.894311,-90.411008,,0.01,,7864,294,156,,,,,,20010680,,, +1370,USA,en,WQFL351,,Taft (LA),29.988333,-90.460961,,0.01,,7859,294,156,,,,,,20010682,,, +1370,BOL,,CP186 R Libertad,,Cliza (cbb),-17.6,-65.9,,0.15,,10395,245,157,,0930-0300,1234567,,,36673,,, +1370,URG,,CV137 R Real,,Minas de Corrales (rv),-31.583889,-55.444444,,0.25,,11074,230,157,,0930-0130,1234567,,,36727,,, +1370,URG,,CW137 R San Javier,,San Javier (rn),-32.666667,-58.116667,,0.25,,11314,231,157,,1000-2400,1234567,,,36747,,, +1370,PRU,,OAX6T R Moquegua,,Moquegua (moq),-17.316667,-70.916667,,0.05,,10686,250,162,,,,,,40342,,, +1372,INS,id,R Pesona Asturia,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,35400088,,, +1376,INS,id,R Angkasa Mega,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400089,,, +1377,F,fr,France Info,,Lille/Camphin-en-Carembault (59),50.518125,2.995008,,300,,296,235,35,,0000-2400,1234567,9999,,1377,,, +1377,ARM,ar,TWR Asia,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,ME,1900-2000,1234567,0,,52493,,, +1377,ARM,fa,ERF/TWR,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,ME,1715-1900,1234567,0,,52493,,, +1377,ARM,fa,Voice of Russia,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,ME,1500-1700,1234567,0,,52493,,, +1377,ARM,ku,ERF/TWR,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,ME,1700-1715,1234567,0,,52493,,, +1377,ARM,tr,Rusyanin Sesi (VoR),,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,,0200-0400,1234567,0,,52493,,, +1377,UKR,uk,R Khvylia,,Vinnytsya/Zarvantsi (VI),49.246594,28.398489,,7,,1575,93,64,,1000-1415,1234567,6,,51620,,, +1377,UKR,uk,R Kanal Mykolaiv,,Mykolaiv/Varvarivske ROC (MY),46.986972,31.928083,,3.7,,1916,97,70,,0600-1800,12345..,0,,1383,,, +1377,UKR,uk,R Kanal Mykolaiv,,Mykolaiv/Varvarivske ROC (MY),46.986972,31.928083,,3.7,,1916,97,70,,0800-1800,.....67,0,,1383,,, +1377,G,,Asian Sound R,,Ashton Moss/NGW (EN-GTM),53.482917,-2.128639,,0.08,,594,288,74,,0000-2400,1234567,55,,1378,,, +1377,IRN,fa,IRIB R Kermanshah,,Paveh (ksh),35.053417,46.344389,,10,,3668,105,84,,,,0,,1770,,, +1377,IRN,fa,IRIB R Zahedan,,Chah Bahar (sib),25.481778,60.537972,,50,,5378,102,94,,0000-2400,1234567,0,,1379,,, +1377,IRN,,unid Jammer,,unknown,32.5,53.625,,1,,4350,101,101,,,,,,10800004,,, +1377,TZA,,R Free Africa,,Mwanza (mwz),-2.484594,32.912156,,50,,6562,149,106,,0500-2400,1234567,9915,,1758,,, +1377,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,0000-0030,1234567,,,50666,,, +1377,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1030-1100,1234567,,,50666,,, +1377,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,2230-2300,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,0030-0600,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,0600-1000,1.34567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1000-1030,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,1100-1800,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,2000-2230,1234567,,,50666,,, +1377,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.645303,91.249483,,100,,7117,74,108,,2300-2400,1234567,,,50666,,, +1377,CHN,zh,CNR 1,,Xingyang/SARFT554 (HE),34.807833,113.388,,600,295,8045,55,110,,2025-1805,1234567,0,,50670,,, +1377,IND,,AIR South,,Hyderabad B (AP),17.338333,78.56,,20,,7282,93,117,,0025-0415,1234567,9980,,50671,,, +1377,IND,,AIR South,,Hyderabad B (AP),17.338333,78.56,,20,,7282,93,117,,0730-0930,1234567,9980,,50671,,, +1377,IND,,AIR South,,Hyderabad B (AP),17.338333,78.56,,20,,7282,93,117,,1200-1735,1234567,9980,,50671,,, +1377,CHN,zh,CNR 1,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,0000-0030,1234567,,,36201170,,, +1377,CHN,zh,CNR 1,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,1030-1100,1234567,,,36201170,,, +1377,CHN,zh,CNR 1,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,2230-2300,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,0030-0600,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,0600-1000,1.34567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,1000-1030,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,1100-1800,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,2000-2230,1234567,,,36201170,,, +1377,CHN,zh,Xizang RGD Hanyu,,Gonggar (XZ),29.297722,90.984194,,1,,7127,75,128,,2300-2400,1234567,,,36201170,,, +1377,CHN,,Qingdao RGD,,Qingdao/SDTS135 (SD),36.121111,120.350556,,10,,8306,50,130,,,,,,50667,,, +1377,CHN,,Qingtongxia RGD,,Qingtongxia (NX),38.013611,106.082778,,1,,7353,58,131,,,,,,50668,,, +1377,THA,th,Wor. Phon Sii,,Phitsanulok (psl),16.833333,100.266667,,10,,8796,77,133,,2100-1700,1234567,,,50684,,, +1377,THA,th,Sor. Wor. Thor. (R Thailand),,Chumphon (cpn),10.458056,99.131111,,10,,9276,81,135,,2200-1600,1234567,,,50683,,, +1377,J,ja,JOUC NHK2,,Yamaguchi/Hofu-Shi (chg-yam),34.030556,131.510556,,5,,9055,43,137,,2030-1500,1.....7,,,50677,,, +1377,J,ja,JOUC NHK2,,Yamaguchi/Hofu-Shi (chg-yam),34.030556,131.510556,,5,,9055,43,137,,2030-1635,.2345..,,,50677,,, +1377,J,ja,JOUC NHK2,,Yamaguchi/Hofu-Shi (chg-yam),34.030556,131.510556,,5,,9055,43,137,,2030-1640,.....6.,,,50677,,, +1377,PHL,tl,DXKP-AM Radyo Ronda,,Pagadian City (zds),7.816667,123.433333,,10,,11090,64,141,,2000-1200,1234567,,,50679,,, +1377,CHN,,Chuzhou RGD Gushi Fuwu,,Chuzhou (AH),32.285167,118.346917,,1,,8545,54,142,,,,,,50664,,, +1377,INS,id,RRI Pro-1,,Toli-Toli (ST-tol),1.0175,120.790278,,10,,11548,70,142,,2055-1600,1234567,,,35400015,,, +1377,J,ja,JOTZ NHK2,,Hachinohe (toh-aom),40.4625,141.469722,,1,,8845,33,143,,2030-1500,1.....7,,,50675,,, +1377,J,ja,JOTZ NHK2,,Hachinohe (toh-aom),40.4625,141.469722,,1,,8845,33,143,,2030-1635,.2345..,,,50675,,, +1377,J,ja,JOTZ NHK2,,Hachinohe (toh-aom),40.4625,141.469722,,1,,8845,33,143,,2030-1640,.....6.,,,50675,,, +1377,CHN,zh,CNR 2,,Yuhuan (ZJ),28.133333,121.233333,,1,,9082,54,144,,2100-1602,1234567,,,36201169,,, +1377,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Nanping/FJTS802 (FJ),26.65,118.166667,,1,,9045,57,144,,,,,,36200274,,, +1377,J,ja,JOAC NHK2,,Nagasaki (kyu-nag),32.720556,129.883889,,1,,9102,45,144,,2030-1500,1.....7,,,50676,,, +1377,J,ja,JOAC NHK2,,Nagasaki (kyu-nag),32.720556,129.883889,,1,,9102,45,144,,2030-1635,.2345..,,,50676,,, +1377,J,ja,JOAC NHK2,,Nagasaki (kyu-nag),32.720556,129.883889,,1,,9102,45,144,,2030-1640,.....6.,,,50676,,, +1377,INS,id,R Top FM,,Sukoharjo (JT-suk),-7.680556,110.841667,,0.25,,11665,83,158,,,,9,,50674,,, +1377,NZL,,2XX R Sport,,Levin/Te Horo (WGN),-40.8075,175.085278,,2,,18492,39,172,,0000-2400,1234567,,,50678,,, +1380,CAN,,CKPC,,Brantford (ON),43.051389,-80.313611,,25,,6187,298,105,,,,1,,36370,,, +1380,USA,zh,WKDM,,New York/Carlstadt [NJ] (NY),40.820278,-74.069167,,13,,5965,292,106,,,,9986,,41985,,, +1380,USA,,WPHM,,Port Huron (MI),42.863889,-82.494444,,5,,6332,299,113,,,,1,,42686,,, +1380,USA,en,WMYF,i,Portsmouth (NH),43.063333,-70.785833,,1,,5597,292,113,,,,,,42417,,, +1380,USA,,WSYB,,Rutland (VT),43.593056,-72.990278,,1,,5698,294,114,,,,8,,43092,,, +1380,USA,es,WBTK,,Richmond (VA),37.621111,-77.448889,,5,,6420,291,114,,,,,,40919,,, +1380,USA,,WAOK,,Atlanta (D) (GA),33.760833,-84.478333,,25,,7171,293,115,,,,,,20016295,,, +1380,USA,,WKJG,,Fort Wayne (IN),41.004167,-85.099167,,5,,6630,299,116,,,,4,,42023,,, +1380,USA,,WTJK,,South Beloit (IL),42.459444,-89.028611,,5,,6746,303,117,,,,9,,43148,,, +1380,USA,en,KLIZ,,Brainerd (MN),46.331944,-94.173889,,5,,6723,309,117,,,,8,,38822,,, +1380,USA,en,KRKO,i,Everett (WA),47.875556,-122.078333,,50,,7872,326,119,,,,0,,39255,,, +1380,USA,es,WFNW,,Naugatuck (CT),41.509722,-73.055556,,0.5,,5851,292,119,,,,,,41419,,, +1380,USA,,WOTE,,Clintonville (WI),44.566944,-88.7425,,1.8,,6564,304,120,,,,,,41364,,, +1380,USA,,WTOB,,Winston-Salem (NC),36.148056,-80.319722,,2.5,,6717,292,120,,,,,,43189,,, +1380,USA,en,KXFN,,St. Louis (D) (MO),38.750278,-90.162778,,5,,7111,300,121,,,,,,39378,,, +1380,USA,en,WABH r:WEHH,,Bath (NY),42.314444,-77.285833,,0.45,,6057,295,121,,,,2,,40627,,, +1380,USA,,WAOK,,Atlanta (N) (GA),33.76,-84.479167,,4.2,,7171,293,122,,,,,,40730,,, +1380,USA,,KOTA,,Rapid City (SD),44.033333,-103.1875,,5,,7383,312,124,,,,998,,39105,,, +1380,USA,en,WWMI,,St. Petersburg (FL),27.870833,-82.6175,,6.5,,7537,287,124,,,,,,43406,,, +1380,USA,,WGLM,,Greenville (MI),43.158333,-85.254444,,0.5,,6473,301,125,,,,,,42965,,, +1380,USA,,WAGS,,Bishopville (SC),34.209722,-80.226111,,1,,6865,290,126,,,,,,40670,,, +1380,USA,,WELE,,Ormond Beach (FL),29.269167,-81.081667,,2.5,,7321,287,126,,,,,,41286,,, +1380,USA,,WKJV,,Asheville (NC),35.605278,-82.591944,,1,,6904,293,126,,,,,,42027,,, +1380,B,pt,ZYI773 Rdio Novas de Paz,,Recife (PE),-8.085731,-34.948011,,5,,7761,224,128,,,,1,,36902252,,, +1380,USA,,KCIM,,Carroll (IA),42.041389,-94.885,,1,,7111,306,128,,,,13,,38158,,, +1380,USA,en,KXFN,,St. Louis (N) (MO),38.524167,-90.238056,,1,,7134,300,128,,,,,,20016082,,, +1380,PTR,,WOLA,,Barranquitas (PR),18.183611,-66.306667,,1,,7249,268,129,,0900-0200,1234567,,,42592,,, +1380,USA,en,KDXE,,North Little Rock (AR),34.880278,-92.233611,,2.5,,7554,299,129,,,,,,38301,,, +1380,VEN,,YVJC,,Soledad (azg),8.116667,-63.566667,,5,,7935,259,129,,,,,,45343,,, +1380,VEN,,YVME R Fantasia,,Ciudad Bolivar (blv),8.133333,-63.55,,5,,7932,259,129,,,,,,51697,,, +1380,VEN,,YVNG Ondas del Mar,,Puerto Cabello (cbb),10.485094,-67.9762,,5,,8025,264,130,,0900-0359,1234567,994,,45345,,, +1380,DOM,,HISC R Nacional,,Santiago de los Caballeros (sto),19.466667,-70.666667,,1,,7438,272,131,,1000-0300,1234567,,,37297,,, +1380,USA,,WLRM,,Millington (TN),35.315556,-89.923056,,1,,7379,298,131,,,,,,42225,,, +1380,B,pt,Rdio Jericoacoara,,Jijoca de Jericoacoara (CE),-2.794444,-40.516389,,1,,7521,232,132,,,,,,36902240,,, +1380,USA,,WGYV,,Greenville (AL),31.833611,-86.601944,,1,,7463,293,132,,,,,,41589,,, +1380,USA,,WNRI,,Woonsocket (RI),42.016111,-71.491667,,0.018,,5715,292,132,,,,,,42502,,, +1380,PNR,es,Mujer AM,,San Pedro (pnm),9.045025,-79.461889,,10,,8934,272,134,,1130-0400,1234567,,,52348,,, +1380,USA,,WDLW,,Lorain (OH),41.43,-82.151944,,0.057,,6420,298,134,,,,,,41178,,, +1380,B,pt,ZYH283 Rdio Alvorada,,Parintins (AM),-2.639481,-56.724983,,5,,8458,247,135,,,,,,36902250,,, +1380,B,pt,ZYH495 Rdio Unio de Gandu,,Gandu (BA),-13.763889,-39.490833,,5,,8546,226,135,,,,,,36902248,,, +1380,B,pt,ZYL204 Rdio Ita,,Ina (ES),-20.326808,-41.546667,,10,,9295,224,135,,,,72,,36902866,,, +1380,HTI,,R Port-au-Prince,,Port-au-Prince (oue),18.516667,-72.316667,,0.7,,7631,273,135,,,,,,35630,,, +1380,CLM,es,HJEE RCN,,Tunja (boy),5.516667,-73.366667,,5,,8826,265,136,,,,25,,37409,,, +1380,USA,,KKRX,,Lawton (OK),34.59,-98.362222,,1,,7938,303,136,,,,,,39780,,, +1380,USA,,KQKD,,Redfield (SD),44.898056,-98.506389,,0.142,,7069,310,136,,,,,,39194,,, +1380,USA,,WMLP,,Milton (PA),40.997778,-76.871389,,0.018,,6128,294,136,,,,,,42346,,, +1380,USA,,WNLA,,Indianola (D) (MS),33.478056,-90.641111,,0.5,,7576,297,136,,,,,,20016047,,, +1380,USA,,WTYM,,Kittanning (PA),40.788611,-79.534722,,0.028,,6309,295,136,,,,,,43242,,, +1380,USA,en,KTKZ,,Sacramento (D) (CA),38.508056,-121.579444,,5,,8754,321,136,,,,8,,39500,,, +1380,USA,en,KTKZ,,Sacramento (N) (CA),38.5575,-121.180833,,5,,8732,321,136,,,,,,20016045,,, +1380,CHL,,CB138 R Corporacin,,Santiago (RM),-33.366667,-70.65,,50,,12077,239,137,,0000-2400,1234567,994,,2105,,, +1380,CLM,,HJIO,,Vde Conquist (met),3.583333,-73.666667,,5,,9016,264,137,,,,,,37495,,, +1380,SLV,,YSMM,,San Salvador (ssl),13.75,-89.216667,,5,,9183,283,137,,,,,,45299,,, +1380,USA,,KSRV,,Ontario (OR),44.043056,-116.972778,,1,,8028,321,137,,,,996,,39414,,, +1380,USA,,WCBG,,Waynesboro (PA),39.738889,-77.602778,,0.02,,6268,293,137,,,,,,41633,,, +1380,USA,,WLRV,,Lebanon (VA),36.921667,-82.104444,,0.063,,6768,294,137,,,,,,42228,,, +1380,USA,,WTMC,,Wilmington (DE),39.729444,-75.551944,,0.014,,6140,292,137,,,,,,43171,,, +1380,MEX,es,XECO-AM Romntica 1380,,Mxico D.F/Barrio Zapotla (dif),19.396014,-99.120994,,5,,9325,294,138,,,,,,43858,,, +1380,USA,,WYSH,,Clinton (TN),36.113333,-84.141667,,0.08,,6960,294,138,,,,,,43547,,, +1380,USA,,WNRR,,North Augusta (SC),33.488056,-81.946111,,0.07,,7033,291,139,,,,,,42656,,, +1380,USA,en,WPRH381,,Dover (DE),39.15,-75.516667,,0.01,,6181,291,139,,,,,,20010688,,, +1380,USA,en,WPRH381,,Dover/Sign Shop (DE),39.146583,-75.511025,,0.01,,6181,291,139,,,,,,20010685,,, +1380,USA,en,WPRH381,,Milford (DE),38.961022,-75.427889,,0.01,,6190,291,139,,,,,,20010686,,, +1380,USA,en,WPRH381,,Rehoboth Beach (DE),38.712056,-75.111014,,0.01,,6188,291,139,,,,,,20010687,,, +1380,USA,,KAGE,,Winona (MN),44.033889,-91.605,,0.028,,6767,305,140,,,,,,37920,,, +1380,USA,,WMJR,,Winchester (KY),37.9075,-84.478333,,0.038,,6837,296,140,,,,,,42338,,, +1380,CLM,es,HJMM,,Valledupar (ces),10.583333,-73.216667,,1,,8374,268,141,,,,983,,37570,,, +1380,VEN,,YVTL R Triunfo 13-80,,Caja Seca (mrd),9.183333,-71.083333,,1,,8350,266,141,,0900-0400,1234567,,,45470,,, +1380,EQA,,HCWV7,,Macas (mor),-2.316667,-78.116667,,3,,9838,264,142,,,,,,37186,,, +1380,USA,,KBWD,,Brownwood (TX),31.71,-98.96,,0.5,,8224,301,142,,,,,,38111,,, +1380,USA,,WMTD,,Hinton (WV),37.684167,-80.915278,,0.013,,6634,294,142,,,,,,42401,,, +1380,USA,es,WWRF,,Lake Worth (FL),26.622778,-80.072222,,0.103,,7474,285,142,,,,,,43426,,, +1380,CLM,,HJLM,,Medelln (ant),6.25,-75.516667,,1,,8908,267,143,,,,,,37551,,, +1380,CLM,es,HJJD,,Medelln (ant),6.283333,-75.533333,,1,,8907,268,143,,,,,,35901732,,, +1380,CLM,es,HJLG La Voz de la Dorada/Caracol,,La Dorada (cal),5.466667,-74.7,,1,,8921,266,143,,,,995,,37546,,, +1380,EQA,,HCOF4,,Chone (man),-0.65,-80.083333,,2,,9825,267,143,,,,,,37050,,, +1380,USA,,KCII,,Washington (IA),41.305,-91.71,,0.025,,6993,303,143,,,,,,38156,,, +1380,USA,,WRAB,,Arab (AL),34.335,-86.468611,,0.049,,7248,295,143,,,,,,42809,,, +1380,CLM,es,HJEJ,,Palmira (val),3.5,-76.316667,,1,,9204,266,144,,,,,,37412,,, +1380,CTR,,TIMS R Guanacaste,,Liberia (gnc),10.616667,-85.416667,,1,,9202,278,144,,1000-0500,1234567,,,40592,,, +1380,CTR,,TIMS R Guanacaste,,San Jos (sjs),9.933333,-84.066667,,1,,9170,277,144,,1000-0500,1234567,,,52159,,, +1380,MEX,es,XEGW-AM Mazz W,,Ciudad Victoria (tam),23.718869,-99.131328,,1,,8940,297,144,,,,,,44089,,, +1380,MEX,es,XETP-AM Sensacin,,Banderilla (vcz),19.575003,-96.907597,,1,,9170,292,144,,,,,,44849,,, +1380,PRU,,OAX6O R San Martin,,Arequipa (are),-16.35,-71.566667,,3,,10642,251,144,,,,,,40336,,, +1380,USA,,KOSS,,Lancaster (D) (CA),34.711944,-118.176111,,1,,8965,317,144,,,,18,,39717,,, +1380,USA,,KUVR,,Holdrege (NE),40.440556,-99.4,,0.062,,7493,308,144,,,,,,39603,,, +1380,USA,,WMTA,,Central City (KY),37.276111,-87.144167,,0.023,,7050,297,144,,,,,,42399,,, +1380,B,,ZYJ470,,Campos (RJ),-21.75,-41.316667,,1,,9425,224,145,,,,,,46085,,, +1380,B,,unid,,unknown,-14.5,-53.1,,1,,9343,237,145,,,,9,,52471,,, +1380,CLM,es,HJID Gigante,,La Plata (hui),2.416667,-75.583333,,1,,9249,265,145,,,,,,37488,,, +1380,USA,,WVSA,,Vernon (AL),33.795833,-88.1175,,0.039,,7395,295,145,,,,,,43343,,, +1380,EQA,,HCCV1 R Cristal RCQ,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,866,,36893,,, +1380,USA,,KCNW,,Fairway (KS),39.071944,-94.682778,,0.029,,7346,304,146,,,,,,38187,,, +1380,USA,,KHEY,,El Paso (TX),31.757222,-106.375833,,0.5,,8639,307,146,,,,,,38538,,, +1380,USA,,WNLA,,Indianola (N) (MS),33.458889,-90.629167,,0.044,,7577,297,146,,,,,,42478,,, +1380,B,pt,ZYK623 Rdio Cultura,,Pederneiras (SP),-22.351111,-48.778333,,1,,9854,229,147,,,,,,36902239,,, +1380,BOL,,CP342 R Bandera Tricolor,,Cochabamba (cbb),-17.366667,-66.166667,,1.5,,10390,246,147,,1100-0300,1234567,,,52030,,, +1380,EQA,,HCHB3,,Pinas (oro),-3.616667,-79.716667,,1,,10061,265,147,,,,,,36964,,, +1380,GTM,,TGEB R Momostenango Educativa,,Momostenango (tot),15.05,-91.416667,,0.5,,9214,285,147,,1100-1900,1234567,,,40491,,, +1380,MEX,es,XERS-AM Romntica,,Gmez Palacio (dur),25.55585,-103.475483,,0.5,,9035,301,147,,,,,,43615,,, +1380,B,pt,ZYJ821 Rdio Cidade AM,,Itaipolis (SC),-26.36,-49.911667,,1,,10296,228,148,,,,,,36902236,,, +1380,BOL,,R Misericordia,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,0900-0330,1234567,,,52034,,, +1380,PRG,,ZP8 R Concepcion LV del Norte,,Concepcion (cnc),-23.383333,-57.45,,1,,10421,236,148,,0930-0100,1234567,,,45560,,, +1380,PRU,,OAX2W R Atahualpa,,Cajamarca (caj),-7.166667,-78.5,,1,,10290,262,148,,,,,,40287,,, +1380,USA,es,WPYR,,Baton Rouge (LA),30.460833,-91.223056,,0.062,,7867,295,148,,,,2,,43536,,, +1380,B,pt,ZYK372 Chiru AM,,Palmitinho (RS),-27.35,-53.547778,,1,,10578,231,149,,,,,,36902233,,, +1380,B,pt,ZYK616 Rdio Difusora de Mogi Guau,,Mogi Guau (SP),-22.365817,-46.951356,,0.5,,9761,228,149,,,,,,36902235,,, +1380,EQA,,HCJR6,,Ambato (tun),-1.25,-78.616667,,0.5,,9778,265,149,,,,,,36993,,, +1380,USA,,KWMF,,Pleasanton (TX),29,-98.530556,,0.16,,8436,299,149,,,,,,38412,,, +1380,B,pt,ZYL323 Rdio Gorutubana AM,,Janaba (MG),-15.832161,-43.290761,,0.25,,8940,228,150,,,,,,36902249,,, +1380,B,pt,ZYL284 Rdio Paranaba,,Rio Paranaba (MG),-19.187642,-46.248439,,0.25,,9418,229,151,,,,,,36902246,,, +1380,USA,,KRCM,,Beaumont (TX),30.195,-95.390278,,0.06,,8144,298,151,,,,,,39224,,, +1380,ARG,,R La Voz,,Monte Chingolo (ba),-34.716667,-58.333333,,1,,11513,230,152,,,,,,51857,,, +1380,ARG,es,R Buenas Nuevas,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000019,,, +1380,B,pt,ZYK311 Rdio Maristela,,Torres (RS),-29.333333,-49.716667,,0.5,,10570,227,152,,,,,,36902245,,, +1380,B,pt,ZYK772 Rdio Repblica,,Morro Agudo (SP),-20.733333,-48.066667,,0.25,,9661,230,152,,,,,,36902243,,, +1380,B,pt,ZYL218 Rdio Cidade Braspolis,,Braspolis (MG),-22.482533,-45.608567,,0.25,,9705,227,152,,,,,,36902238,,, +1380,B,pt,ZYN203 Rdio Estrela de Ibiuna,,Campina Verde (MG),-19.544983,-49.490589,,0.25,,9622,231,152,,,,,,36902254,,, +1380,BOL,,CP227 R Luis de Fuentes,,Tarija (trj),-21.55,-64.333333,,0.5,,10655,242,152,,0930-0400,1234567,,,52032,,, +1380,MEX,es,XEVD-AM R Sensacin,,Ciudad Allende (coa),28.330478,-100.848372,,0.1,,8633,301,152,,,,,,44955,,, +1380,ARG,,R Los Toldos,,Los Toldos=General Viamonte (ba),-34.983333,-61.033333,,1,,11680,232,153,,,,,,51858,,, +1380,B,pt,ZYJ276 Rdio Bom Jesus,,Siqueira Campos (PR),-23.689167,-49.840556,,0.25,,10037,230,153,,,,3,,36902244,,, +1380,B,pt,ZYK751 Rdio Globo,,Presidente Prudente (SP),-22.136483,-51.409278,,0.25,,9972,232,153,,,,,,36902251,,, +1380,B,pt,ZYJ367 Rdio Integraco,,Toledo (PR),-24.7,-53.706944,,0.25,,10338,232,154,,,,,,36902237,,, +1380,B,pt,ZYJ831 Rdio Frequencia News,,Garopaba (SC),-28.041667,-48.636667,,0.25,,10393,226,154,,,,97,,36902242,,, +1380,B,pt,ZYJ827 Rdio Barriga Verde,,Capinzal (SC),-27.347778,-51.585556,,0.25,,10476,229,155,,,,,,36902234,,, +1380,B,pt,ZYK350 Rdio Cultura Taperense,,Tapera (RS),-28.638611,-52.873333,,0.25,,10664,229,155,,,,,,36902232,,, +1380,USA,,KJUA,,Cheyenne (WY),41.122778,-104.801944,,0.008,,7718,311,155,,,,,,20016040,,, +1380,USA,,KLPZ,,Parker (AZ),34.153889,-114.2875,,0.058,,8831,314,155,,,,104,,38843,,, +1380,B,pt,ZYK293 Rdio Cultura,,Santana do Livramento (RS),-30.866667,-55.506944,,0.25,,11010,230,156,,,,,,36902241,,, +1380,PRU,,OCY4U R Nuevo Tiempo,,Lima (lim),-11.816667,-76.666667,,0.2,,10576,257,156,,,,11,,40443,,, +1380,USA,en,WPSK562,,Royse City/100 West Main St. (TX),32.975278,-96.3325,,0.01,,7960,300,157,,,,,,20010684,,, +1380,USA,,KOSS,,Lancaster (N) (CA),34.711667,-118.175833,,0.02,,8966,317,161,,,,,,20012568,,, +1383,INS,id,Pas R,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,35400090,,, +1386,LTU,be,Polskie R,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,1900-2000,1234567,0,,1392,,, +1386,LTU,be,R Baltic Waves Int.,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,0400-0430,1234567,0,,1392,,, +1386,LTU,pl,Polskie R,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,1800-1900,1234567,0,,1392,,, +1386,LTU,ru,NHK R Japan,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,0330-0400,1234567,0,,1392,,, +1386,LTU,ru,NHK R Japan,,Kaunas/Sitkūnai (Kau),55.043606,23.813067,,75,,1191,67,50,,1730-1800,1234567,0,,1392,,, +1386,IRL,en,Energy Power AM,,Dublin (D),53.266667,-6.383333,,0.4,,871,284,70,,,,,,52658,,, +1386,GRC,xx,R Makedonia,,Veria (cmc-ima),40.483333,22.316667,,2,,1771,131,72,,,,,,3400033,,, +1386,GRC,,unid (1980s Italo Disco),,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400061,,, +1386,GRC,el,Zografos R,,Athnai/Zografos (att-ath),37.975,23.773611,,1,,2070,133,78,,,,,,3400012,,, +1386,EGY,ar,ERTU Al-Quran al-Karim,,Al-Uqsur=Luxor (uqr),25.591417,32.561819,,10,,3676,133,84,,0200-0400,1234567,9993,,1852,,, +1386,EGY,ar,ERTU Al-Quran al-Karim,,Al-Uqsur=Luxor (uqr),25.591417,32.561819,,10,,3676,133,84,,2000-2300,1234567,9993,,1852,,, +1386,EGY,ar,ERTU Janub Sa'id Misr,,Al-Uqsur=Luxor (uqr),25.591417,32.561819,,10,,3676,133,84,,0400-2000,1234567,9993,,1852,,, +1386,G,,Anker R (LPAM),,Nuneaton (EN-WAR),52.533333,-1.466667,,0.001,,537,278,92,,,,0,,1386,,, +1386,G,,Blast 1386 (LPAM),,Reading (EN-BER),51.466667,-0.983333,,0.001,,513,265,92,,,,,,1384,,, +1386,G,en,Carillon R (LPAM),,Coalville (EN-LEI),52.733333,-1.333333,,0.001,,529,281,92,,,,58,,2574,,, +1386,G,en,Carillon R (LPAM),,Leicester/Loughborough Hospital (EN-LEI),52.772778,-1.223611,,0.001,,522,281,92,,,,996,,1385,,, +1386,EGY,ar,ERTU,,Baranis (bar),23.929722,35.419444,,1,,3981,131,97,,0300-2400,1234567,,,2300001,,, +1386,AFG,,R Paktin Voice,,Zareh Sharan (pka),33.175,68.786111,,5,,5328,88,103,,0230-1800,1234567,,,11000004,,, +1386,KEN,,KBC English Service,,Maralal/Kisima (rif),0.901517,36.781006,,50,,6356,143,104,,0200-2110,1234567,9948,,1760,,, +1386,IND,,AIR West,,Gwalior (MP),26.300556,78.1125,,20,,6505,87,109,,0020-0405,1234567,2,,50695,,, +1386,IND,,AIR West,,Gwalior (MP),26.300556,78.1125,,20,,6505,87,109,,0700-0930,1234567,2,,50695,,, +1386,IND,,AIR West,,Gwalior (MP),26.300556,78.1125,,20,,6505,87,109,,1130-1741,1234567,2,,50695,,, +1386,CHN,zh,Tianjin RGD Shenghuo Pindao Xin Chengshi zhi Sheng,,Yangliuqing (TJ),39.139189,117.022583,,50,,7862,50,119,,2055-1800,1234567,,,50693,,, +1386,J,ja,JOQC NHK2,,Morioka (toh-iwa),39.629167,141.135,,10,,8916,34,133,,2030-1500,1.....7,,,50704,,, +1386,J,ja,JOQC NHK2,,Morioka (toh-iwa),39.629167,141.135,,10,,8916,34,133,,2030-1635,.2345..,,,50704,,, +1386,J,ja,JOQC NHK2,,Morioka (toh-iwa),39.629167,141.135,,10,,8916,34,133,,2030-1640,.....6.,,,50704,,, +1386,KOR,ko,HLAM MBC,,Mokpo/Samho (jen),34.776208,126.470653,,10,,8741,46,133,,0000-2400,1234567,4,,50707,,, +1386,J,ja,JOJB NHK2,,Kanazawa (chu-ish),36.534411,136.606139,,10,,9040,38,134,,2030-1500,1.....7,,,50703,,, +1386,J,ja,JOJB NHK2,,Kanazawa (chu-ish),36.534411,136.606139,,10,,9040,38,134,,2030-1635,.2345..,,,50703,,, +1386,J,ja,JOJB NHK2,,Kanazawa (chu-ish),36.534411,136.606139,,10,,9040,38,134,,2030-1640,.....6.,,,50703,,, +1386,PHL,,DZTV-AM Radyo Budyong,,Quezon City (ncr),14.416667,121.033333,,25,,10335,62,134,,,,,,50710,,, +1386,THA,th,Witthayu Pheua Kaan Kaset,,Bangkok/Phahonyothin Rd (bmp),13.911111,100.621389,,10,,9074,78,134,,2133-1705,1234567,6,,50715,,, +1386,J,ja,JOHC NHK2,,Kagoshima/Kirishima-Shi (kyu-kag),31.726389,130.735278,,10,,9238,45,135,,2030-1500,1.....7,,,50702,,, +1386,J,ja,JOHC NHK2,,Kagoshima/Kirishima-Shi (kyu-kag),31.726389,130.735278,,10,,9238,45,135,,2030-1635,.2345..,,,50702,,, +1386,J,ja,JOHC NHK2,,Kagoshima/Kirishima-Shi (kyu-kag),31.726389,130.735278,,10,,9238,45,135,,2030-1640,.....6.,,,50702,,, +1386,CHN,,Liuzhou RGD,,Liuzhou/GXTS238 (GX),24.39875,109.344889,,5,,8719,65,136,,,,,,50691,,, +1386,J,ja,JOKB NHK2,,Okayama (chg-oka),34.612222,133.898333,,5,,9108,41,137,,2030-1500,1.....7,,,50705,,, +1386,J,ja,JOKB NHK2,,Okayama (chg-oka),34.612222,133.898333,,5,,9108,41,137,,2030-1635,.2345..,,,50705,,, +1386,J,ja,JOKB NHK2,,Okayama (chg-oka),34.612222,133.898333,,5,,9108,41,137,,2030-1640,.....6.,,,50705,,, +1386,TWN,,BCC Country Network,,Y-Li (HL),23.389722,121.33,,3.5,,9524,57,140,,0000-2400,1234567,,,50717,,, +1386,CHN,,Shishou RGD,,Shishou (HU),29.716667,112.4,,1,,8435,59,141,,,,,,50692,,, +1386,PHL,,DXCR-AM Voice of Hope,,Valencia/Malyabalay (buk),8.1,125.116667,,10,,11166,62,141,,,,9,,50711,,, +1386,CHN,,Jiangyin RGD,,Jiangyin (JS),31.9,120.266667,,1,,8685,53,143,,2200-1400,1234567,,,50690,,, +1386,PHL,,DYVW-AM R Veritas,,Borongan (sam),11.6,125.416667,,5,,10858,60,143,,2030-1300,1234567,,,50709,,, +1386,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Quanzhou/FJTS401 (FJ),24.882722,118.596917,,1,,9230,58,144,,0000-2400,1234567,,,50688,,, +1386,SLM,,SIBC R Temotu,,Lata (tem),-10.716667,165.833333,,5,,15053,29,157,,1300-1900,1234567,,,50714,,, +1386,SLM,,SIBC R Temotu,,Lata (tem),-10.716667,165.833333,,5,,15053,29,157,,1900-1130,1234567,,,50714,,, +1386,NZL,,1XOR R.Tarana/R.Korea/Chinese Life Comm.R.,,Auckland/Henderson (AUK),-36.849089,174.629694,,10,,18083,33,164,,0000-2400,1234567,,,50708,,, +1390,USA,en,WEGP,,Presque Isle (ME),46.654167,-68.05,,10,,5184,295,99,,0000-2400,1234567,12,,41268,,, +1390,USA,,WPLM,,Plymouth (MA),41.968056,-70.701667,,5,,5669,291,107,,0000-2400,1234567,0,,42705,,, +1390,USA,en,WCAT r:WIFY,,Burlington (VT),44.496389,-73.213611,,5,,5649,295,107,,0000-2400,1234567,9965,,43274,,, +1390,USA,,WFBL,,Syracuse (NY),43.152778,-76.193056,,5,,5928,296,109,,0000-2400,1234567,3,,41362,,, +1390,USA,,WNIO,,Youngstown (D) (OH),41.121389,-80.701389,,9.5,,6356,296,111,,,,,,20012562,,, +1390,USA,,WZHF,,Arlington (VA),38.904167,-77.165,,5,,6304,292,113,,0000-2400,1234567,,,43574,,, +1390,USA,,WNIO,,Youngstown (N) (OH),40.986389,-80.598333,,4.8,,6360,296,114,,0000-2400,1234567,3,,42471,,, +1390,USA,en,WRIG,,Schofield (WI),44.878333,-89.641389,,7.2,,6591,305,114,,0000-2400,1234567,994,,42854,,, +1390,USA,,WLCM,,Charlotte (D) (MI),42.567222,-84.866111,,5,,6495,300,115,,LSRi-LSSs,1234567,998,,42143,,, +1390,USA,,WLCM,,Charlotte (N) (MI),42.551944,-84.551389,,4.5,,6478,300,115,,,,,,20012602,,, +1390,USA,,WGRB,,Chicago (IL),41.736944,-87.7,,5,,6727,301,117,,0000-2400,1234567,0,,41557,,, +1390,USA,,WZQQ,,Hazard (KY),37.239167,-83.210833,,5,,6812,295,118,,1100-LSSs,1234567,,,42015,,, +1390,USA,,WRSC,,State College (PA),40.808333,-77.942222,,1,,6209,294,119,,0000-2400,1234567,,,42917,,, +1390,USA,en,WSPO,,Charleston (SC),32.824444,-80.002778,,5,,6962,289,120,,0000-2400,1234567,992,,43494,,, +1390,USA,,WTJS,,Jackson (D) (TN),35.646111,-88.8325,,5,,7286,297,123,,1100-0552,1234567,,,43150,,, +1390,USA,,WYXI,,Athens (TN),35.446667,-84.571944,,2.5,,7040,294,123,,,,,,43559,,, +1390,USA,,KXSS,,Waite Park (MN),45.541944,-94.261389,,1,,6791,308,125,,0000-2400,1234567,,,39824,,, +1390,USA,,KRRZ,,Minot (ND),48.2125,-101.241667,,1,,6931,314,126,,0000-2400,1234567,996,,39292,,, +1390,USA,en,WEOK,,Poughkeepsie (NY),41.720556,-73.908056,,0.106,,5889,293,126,,,,26,,41314,,, +1390,USA,,WANY,,Albany (KY),36.698333,-85.15,,1,,6975,296,127,,,,,,40728,,, +1390,USA,,WROA,,Gulfport (MS),30.458333,-89.079167,,5,,7733,294,127,,0000-2400,1234567,,,42894,,, +1390,USA,,WRIV,,Riverhead (NY),40.915278,-72.657778,,0.064,,5869,291,128,,,,,,42857,,, +1390,VEN,,YVTT R Terepaima,,Cabudare (lar),10.066667,-69.25,,10,,8148,265,129,,0000-2400,1234567,,,45474,,, +1390,VEN,es,YVZO R Lumen 2000,,Maracaibo (zul),10.766667,-71.566667,,10,,8245,267,129,,1030-0500,1234567,995,,2161,,, +1390,PTR,es,WISA,,Isabela (PR),18.501667,-67.033611,,1,,7271,269,130,,0000-2400,1234567,998,,41803,,, +1390,USA,,WHMA,,Anniston (AL),33.708611,-85.853889,,1,,7262,294,130,,,,,,41663,,, +1390,USA,,WTJS,,Jackson (N) (TN),35.647222,-88.833333,,1,,7286,297,130,,,,,,20016214,,, +1390,VEN,es,YVZA R Fe y Alegra,,Caracas (dcf),10.484417,-66.986181,,5,,7958,263,130,,0000-2400,1234567,5,,2107,,, +1390,DOM,,HIAR R San Cristobal,,San Cristbal (cri),18.416667,-70.1,,1,,7488,271,132,,1100-0300,1234567,,,51760,,, +1390,USA,,WKLP,,Keyser (WV),39.436667,-78.955833,,0.074,,6376,294,132,,0000-2400,1234567,,,42037,,, +1390,USA,,WMPO,,Middleport-Pomeroy (OH),39.010278,-82.066111,,0.12,,6602,295,132,,,,,,42377,,, +1390,USA,,WTNL,,Reidsville (GA),32.087222,-82.129722,,0.5,,7158,290,132,,,,,,43185,,, +1390,B,,ZYJ614,,Santa Cruz (RN),-6.216667,-36.016667,,1,,7626,226,133,,,,,,46131,,, +1390,B,pt,ZYO701 Rdio Rorama,,Caracara (RR),1.816667,-61.133333,,5,,8335,253,133,,,,216,,36902265,,, +1390,B,pt,ZYI535 Rdio Educadora,,Bragana (PA),-1.066389,-46.78,,1,,7708,239,134,,,,,,36902255,,, +1390,USA,,WBLL,,Bellefontaine (OH),40.368056,-83.733889,,0.081,,6598,298,134,,,,,,40876,,, +1390,USA,,KCRC,,Enid (OK),36.419722,-97.874444,,1,,7753,304,135,,0000-2400,1234567,,,38201,,, +1390,B,pt,ZYI788 Rdio Jornal,,Pesqueira (PE),-8.35745,-36.687056,,1,,7872,226,136,,,,982,,36902257,,, +1390,CLM,es,HJYW R Autentica,,Pacho (cun),5.166667,-74.116667,,5,,8908,266,136,,0000-2400,1234567,,,51758,,, +1390,PNR,es,R Mundo Internacional,,Coln (clo),9.363611,-79.903611,,6,,8936,273,136,,,,,,52350,,, +1390,USA,,KCLN,,Clinton (IA),41.909444,-90.224444,,0.091,,6859,303,136,,,,,,38174,,, +1390,USA,,KRFO,,Owatonna (MN),44.074722,-93.179444,,0.094,,6851,306,136,,0000-2400,1234567,,,39240,,, +1390,USA,en,WLAN,,Lancaster (PA),40.060556,-76.316389,,0.018,,6163,293,136,,0000-2400,1234567,,,42121,,, +1390,USA,es,KLOC,,Turlock (CA),37.53,-120.693611,,5,,8809,320,136,,0000-2400,1234567,9952,,38836,,, +1390,CLM,es,HJFO La Red de los Andes,,Manizales (cal),5.083333,-75.566667,,5,,9014,267,137,,0000-2400,1234567,997,,37439,,, +1390,CLM,es,HJFY R Avenida,,Espinal (tol),4.116667,-74.866667,,5,,9051,266,137,,1000-0400,1234567,,,37447,,, +1390,GTM,,TGYC R Istmania,,Ciudad de Guatemala (gut),14.616667,-90.583333,,5,,9198,284,137,,1130-0330,1234567,,,40561,,, +1390,HND,,HRVC La Voz Evanglica,,Tegucigalpa (fmz),14.25,-87.316667,,5,,9012,282,137,,0000-2400,1234567,999,,37864,,, +1390,MEX,es,XEKT-AM,,Tecate (bcn),32.529722,-116.692917,,5,,9102,314,137,,0000-2400,1234567,,,51762,,, +1390,USA,,WKPA,,Lynchburg (VA),37.464444,-79.1225,,0.034,,6538,292,137,,,,,,42057,,, +1390,USA,,WMCT,,Mountain City (TN),36.489722,-81.786667,,0.058,,6783,293,137,,,,,,42295,,, +1390,USA,,WZZB,,Seymour (IN),38.975833,-85.889167,,0.074,,6838,298,137,,1100-LSSs,1234567,,,43600,,, +1390,B,pt,ZYH907 Rdio Cultura do Rio Jordo,,Coroat (MS),-4.15,-44.116667,,0.5,,7849,235,138,,,,,,52381,,, +1390,B,pt,ZYJ599 Rdio Farol,,Touros (RN),-5.203333,-35.461111,,0.25,,7497,226,138,,,,,,36902270,,, +1390,B,pt,ZYJ687 Rdio Planalto 1390,,Ji-Paran/Rua Mato Grosso (RO),-10.863889,-61.894444,,5,,9534,246,138,,,,217,,36902260,,, +1390,USA,,KDQN,,De Queen (AR),34.0325,-94.328611,,0.5,,7751,300,138,,,,,,38288,,, +1390,USA,,KLTX,,Long Beach (CA),33.891667,-118.184167,,3.6,,9044,316,138,,0000-2400,1234567,6,,38851,,, +1390,USA,,WEED,,Rocky Mount (NC),35.961944,-77.826389,,0.03,,6573,290,138,,0000-2400,1234567,,,41255,,, +1390,USA,en,WPKW685,,Wilmington (DE),39.8165,-75.461011,,0.01,,6128,292,138,,,,,,20010690,,, +1390,B,pt,ZYK209 Rdio Esperana AM,,Porto Alegre/Ilha dos Marinheiros (RS),-29.991989,-51.229667,,10,,10708,227,139,,,,,,36902269,,, +1390,USA,,KENN,,Farmington (NM),36.7075,-108.147222,,1.3,,8285,311,139,,0000-2400,1234567,,,38330,,, +1390,USA,,WJRM,,Troy (NC),35.361944,-79.860556,,0.035,,6750,291,139,,,,,,41925,,, +1390,USA,,KBBO,,Yakima (WA),46.571389,-120.454167,,0.39,,7933,325,140,,0000-2400,1234567,,,38688,,, +1390,USA,,KJAM,,Madison (SD),44.010278,-97.171667,,0.062,,7072,309,140,,1200-0600,1234567,,,38656,,, +1390,USA,,KJPW r:FM-102.3,,Waynesville (MO),37.819167,-92.151667,,0.111,,7304,301,140,,1100-0600,1234567,,,38690,,, +1390,USA,,KLGN,,Logan (UT),41.734444,-111.853611,,0.5,,8011,316,140,,0000-2400,1234567,997,,38809,,, +1390,USA,,WFIW,,Fairfield (IL),38.379444,-88.325833,,0.058,,7032,299,140,,,,,,41390,,, +1390,USA,en,KWOD r:KFXX,,Salem (OR),44.995278,-123.070833,,0.69,,8187,325,140,,0000-2400,1234567,,,39382,,, +1390,MEX,es,XETY-AM Los 40 Principales,,Tecomn (col),18.91,-103.870611,,2.5,,9661,297,142,,1100-0300,1234567,,,44880,,, +1390,USA,,KFRA,,Franklin (LA),29.837222,-91.539444,,0.244,,7939,295,142,,,,,,38424,,, +1390,USA,,WMER,,Meridian (MS),32.344722,-88.692222,,0.101,,7551,295,142,,,,,,42303,,, +1390,CLM,es,HJZY LV de la Misericordia,,Bucaramanga (sat),7.116667,-73.116667,,1,,8669,266,143,,0000-2400,1234567,,,37670,,, +1390,MEX,es,XEOR-AM La Papaya,,Reynosa (tam),26.095833,-98.286389,,1,,8678,297,143,,1230-0600,1234567,,,44509,,, +1390,USA,,KBEC,,Waxahachie (TX),32.445833,-96.804167,,0.26,,8033,300,143,,1200-0500,1234567,,,38018,,, +1390,USA,,WFHT,,Avon Park (FL),27.617778,-81.496944,,0.077,,7485,286,143,,,,,,40777,,, +1390,HND,,HRVC La Voz Evanglica,,Santa Rosa de Copan (cop),14.766667,-88.783333,,1,,9065,283,144,,0000-2400,1234567,,,51761,,, +1390,MEX,,XEZG-AM R Mezquital,,Ixmiquilpan (hid),20.481944,-99.2225,,1,,9234,295,144,,1300-0100,1234567,,,45138,,, +1390,MEX,es,XETL-AM R Ola,,Tuxpan (vcz),20.950683,-97.432989,,1,,9081,294,144,,1200-0600,1234567,,,44831,,, +1390,MEX,es,XEXO-AM La Super Buena,,Ciudad Mante (tam),22.718044,-98.978453,,1,,9020,296,144,,1200-0600,1234567,,,45060,,, +1390,PRU,es,OAM7A Exitosa,,Sicuani (cus),-14.333333,-71.233333,,3,,10441,252,144,,,,,,37000124,,, +1390,USA,,KGNU,,Denver (CO),39.658056,-105.013611,,0.139,,7858,311,144,,0000-2400,1234567,,,38501,,, +1390,USA,,KHOB,,Hobbs (NM),32.739167,-103.18,,0.5,,8374,305,144,,,,,,38551,,, +1390,USA,,KNCK,,Concordia (KS),39.566111,-97.684444,,0.054,,7473,306,144,,,,,,38967,,, +1390,USA,,WAJD,,Gainesville (FL),29.665556,-82.290556,,0.051,,7367,288,144,,,,,,40680,,, +1390,USA,en,WABB,,Belton (SC),34.588611,-82.538056,,0.017,,6982,292,144,,,,,,42247,,, +1390,USA,en,WOHS,,Shelby (NC),35.291111,-81.5675,,0.016,,6864,292,144,,0000-2400,1234567,,,40647,,, +1390,EQA,,HCEA5 R Tropicana Canal 13-90,,Cuenca (azu),-2.85,-79,,1.5,,9945,265,145,,1200-0300,1234567,,,36922,,, +1390,EQA,,HCDN5 R Atenas,,Riobamba (chi),-0.616667,-78.666667,,1,,9726,266,146,,0900-0500,1234567,,,36902,,, +1390,ARG,,LR11 R Universidad,,La Plata (ba),-35.001764,-58.122322,,3,,11528,230,147,,0800-0300,1234567,990,,39922,,, +1390,B,pt,ZYJ242 Rdio Cultura,,Maring (PR),-23.363611,-51.9,,1,,10115,231,147,,,,,,36902267,,, +1390,EQA,,HCIE1 R Uno,,Urcuqui (nap),0.416667,-78.216667,,0.75,,9604,266,147,,,,,,36971,,, +1390,USA,,KULP,,El Campo (TX),29.209444,-96.263889,,0.18,,8282,298,147,,,,,,39577,,, +1390,B,pt,ZYL305 R Vitoriosa,,Uberlndia (MG),-18.85085,-48.298725,,0.5,,9492,231,148,,,,19,,36902268,,, +1390,USA,,KFFK,,Rogers (AR),36.388333,-94.192778,,0.03,,7543,301,148,,,,,,38384,,, +1390,B,pt,ZYJ473 Rdio Sul Fluminense,,Barra Mansa (RJ),-22.538392,-44.148144,,0.5,,9639,226,149,,,,,,36902261,,, +1390,PRU,es,OAU7T R Enlace,,Kunturkanki (cus),-14.533333,-71.3,,1,,10463,251,149,,????-0319,1234567,99,,37000013,,, +1390,EQA,,HCHE4 LV de Esmeraldas,,Esmeraldas (esm),0.966667,-79.716667,,0.4,,9658,268,150,,,,,,37164,,, +1390,MEX,,XEQC-AM,,Puerto Peasco (son),31.327047,-113.532428,,0.25,,9058,312,150,,1200-0100,1234567,,,44599,,, +1390,B,pt,ZYI209 Rdio Educadora,,Afonso Cludio (ES),-20.083356,-41.129206,,0.25,,9251,224,151,,,,,,36902711,,, +1390,MEX,es,XECTA-AM R Cuautla,,Cuautla (mor),18.790833,-98.936611,,0.25,,9367,293,151,,,,,,43880,,, +1390,MEX,es,XERW-AM R FrmulaBajo,,Len (gua),21.137431,-101.623344,,0.25,,9323,297,151,,,,,,44722,,, +1390,URG,es,CW45 Difusora Treinta y Tres,,Treinta y Tres (tt),-33.242303,-54.369044,,1,,11173,228,151,,0800-0300,1234567,,,36775,,, +1390,ARG,es,LRA6 R Nacional,,Valle de Uspallata (mz),-32.666667,-69.366667,,1.5,,11942,239,152,,1000-0500,1234567,,,51747,,, +1390,B,pt,ZYK570 Rdio Globo,,Campinas/Rua Bartira 345 (SP),-22.945939,-47.042639,,0.25,,9822,228,152,,0000-2400,1234567,,,36902262,,, +1390,B,pt,ZYK636 Rdio Cultura,,Promisso (SP),-21.533333,-49.866667,,0.25,,9832,231,152,,,,,,36902264,,, +1390,B,pt,ZYL358 Rdio Club Ouro Verde,,So Sebastio do Paraso (MG),-20.894039,-47.007944,,0.25,,9622,229,152,,,,,,36902259,,, +1390,B,pt,ZYK594 Rdio Anchieta,,Itanham (SP),-24.186111,-46.781111,,0.25,,9929,227,153,,,,,,36902258,,, +1390,CLM,,R Ciudad de Antioquia,,Santa F de Antioquia (ant),6.566667,-75.833333,,0.1,,8902,268,153,,1100-2300,1234567,,,51759,,, +1390,B,pt,ZYJ335 Rdio Independncia,,Salto do Lontra (PR),-25.779167,-53.303611,,0.25,,10418,231,154,,,,,,36902272,,, +1390,B,pt,ZYJ769 Rdio Globo,,Lages (SC),-27.774167,-50.302778,,0.25,,10451,228,154,,,,,,36902256,,, +1390,EQA,,HCFL2,,Guayaquil (gua),-2.2,-79.9,,0.2,,9949,266,154,,,,,,36938,,, +1390,B,pt,ZYK368 Rdio Atlntica,,Constantina (RS),-27.729167,-52.983889,,0.25,,10584,230,155,,,,,,36902263,,, +1390,BOL,,CP169 R LV Minera del Sud,,Mina Telamayu (pts),-20.933333,-66.216667,,0.25,,10714,244,155,,1100-0300,1234567,,,36664,,, +1390,USA,en,WPXK823,,Boomtown (NV),39.510389,-119.963528,,0.01,,8587,320,162,,,,,,20010689,,, +1394,MDG,mg,R Madagasikara,,Antananarivo (tan),-18.9,47.516667,,4,,8840,141,137,,0300-1500,1234567,,,2521,,, +1395,ALB,ar,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1915-1930,.....6.,851,,1395,,, +1395,ALB,bs,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1945-2030,......7,851,,1395,,, +1395,ALB,hr,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1930-1945,1234567,851,,1395,,, +1395,ALB,hr,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1945-2000,123456,851,,1395,,, +1395,ALB,hr,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,2000-2030,.....6.,851,,1395,,, +1395,ALB,hu,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1822-1900,1234567,851,,1395,,, +1395,ALB,pl,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1900-1915,1234567,851,,1395,,, +1395,ALB,pl,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,1915-1930,12345.7,851,,1395,,, +1395,ALB,sq,R Tirana,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,0900-1000,1234567,851,,1395,,, +1395,ALB,sr,TWR Europe,,Fllak (dur),41.3675,19.508217,,500,315,1552,135,46,,2000-2030,12345..,851,,1395,,, +1395,ARM,ru,Voice of Mongolia,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,,2148-2200,....56.,9994,,400002,,, +1395,ARM,ru,Voice of Russia,,Gavar (grk),40.425806,45.204306,,500,,3205,98,62,,0100-2400,1234567,9994,,400002,,, +1395,G,en,MAR-Merseyside Alternative R,,Mersey area (EN-MER),53.4,-2.9,,0.1,,642,287,73,,????-????,9999999,933,,2800030,,, +1395,G,en,WNKR,,unknown (EN-KNT),51.2,1.133333,,0.05,,378,257,74,,0000-2400,.....67,,,2800026,,, +1395,RUS,ru,Orenburgskaya GTRK,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0110-0200,12345..,999,,1397,,, +1395,RUS,ru,Orenburgskaya GTRK,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0210-0300,12345..,999,,1397,,, +1395,RUS,ru,R Rossii,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0000-0110,12345..,999,,1397,,, +1395,RUS,ru,R Rossii,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0000-2000,.....67,999,,1397,,, +1395,RUS,ru,R Rossii,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0200-0210,12345..,999,,1397,,, +1395,RUS,ru,R Rossii,,Buguruslan/RTPS (OB),53.663333,52.42,,5,,3038,68,80,,0300-2000,12345..,999,,1397,,, +1395,IRN,fa,IRIB R Khalij-e Fars,,Hajiabad (hrg),28.315722,55.936083,,50,,4838,103,88,,,,,,1813,,, +1395,IND,,AIR North,,Bikaner (RJ),28.022222,73.368611,,20,,6042,89,104,,0025-0435,1234567,,,50723,,, +1395,IND,,AIR North,,Bikaner (RJ),28.022222,73.368611,,20,,6042,89,104,,0630-0930,1234567,,,50723,,, +1395,IND,,AIR North,,Bikaner (RJ),28.022222,73.368611,,20,,6042,89,104,,1130-1740,1234567,,,50723,,, +1395,CHN,zh,Xilingol RGD Hanyu,,Xilinhot/NMTS680 (NM),43.970778,116.108611,,10,,7393,48,121,,2230-1450,1234567,,,50722,,, +1395,CHN,zh,Anhui RGD Xiaoshuo Pingshu Guangbo,,Hefei/Sanshitou (AH),31.986667,117.3275,,50,,8515,55,125,,,,,,36200219,,, +1395,CHN,zh,Anhui RGD Xiaoshuo Pingshu Guangbo,,Fuyang (AH),32.929167,115.804167,,10,,8346,55,130,,,,,,36200268,,, +1395,KOR,ko,HLCO KBS 1 R,,Cheorwon (gye),38.15,127.306389,,10,,8467,44,132,,0000-2400,1234567,,,50731,,, +1395,THA,th,Sathaanii Witthayu 914 Kao-Neung-Sii,,Chiang Rai/Mae Chan (cri),20.10975,99.886528,,10,,8487,75,132,,2200-1600,1234567,,,50737,,, +1395,CHN,zh,Anhui RGD Xiaoshuo Pingshu Guangbo,,Chizhou (AH),30.65,117.483333,,10,,8644,55,133,,2100-1650,1234567,,,50721,,, +1395,CHN,zh,CNR 1,,Fugong (YN),26.966667,98.9,,1,,7837,71,135,,2025-1805,1234567,,,50694,,, +1395,CHN,,Tonghai RGD,,Tonghai (YN),24.116667,102.766667,,1,,8329,70,140,,,,,,36200271,,, +1395,CHN,,Yunnan RGD Xinwen Guangbo,,Lancang/Pu'er (YN),22.533333,99.933333,,1,,8282,73,140,,,,,,36200273,,, +1395,PHL,,DYCH-AM (r:666 DZRH-AM),,Talisay City/Tangke (ceb),10.253056,123.864167,,10,,10891,62,140,,0000-2400,1234567,,,50733,,, +1395,CHN,zh,CNR 1,,Funing (YN),23.616667,105.633333,,1,,8555,68,142,,2025-1805,1234567,,,48420,,, +1395,PHL,,DZVT-AM Spirit AM,,San Jose/Puerto Gallenero (ocm),12.383333,121.05,,5,,10523,63,142,,????-1050,......7,959,,50734,,, +1395,PHL,,DZVT-AM Spirit AM,,San Jose/Puerto Gallenero (ocm),12.383333,121.05,,5,,10523,63,142,,????-1405,123456,959,,50734,,, +1395,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Hui'an/FJTS404 (FJ),25.033333,118.8,,1,,9228,58,144,,,,,,36200267,,, +1395,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Yongchun/FJTS403 (FJ),25.333333,118.283333,,1,,9171,58,144,,,,,,36200270,,, +1395,J,ja,JOCE CRK R Kansai,,Toyooka (kns-hyo),35.5025,134.838056,,1,,9064,40,144,,2000-1800,1234567,,,50730,,, +1395,J,ja,JOWE RFC Fukushima Hoso,,Aizuwakamatsu (toh-fuk),37.485,139.941667,,1,,9083,36,144,,0000-2400,1234567,,,50727,,, +1395,TWN,,Cheng Sheng BC,,Jenwu/Tafa (KH),22.704722,120.361111,,1,,9532,58,145,,0000-2400,1234567,,,50738,,, +1395,CHN,,Yunnan RGD Xinwen Guangbo,,Mojiang (YN),23.416667,101.733333,,0.1,,8323,71,150,,,,,,36200272,,, +1395,INS,id,R Nusantara Jaya,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400091,,, +1395,J,,RKC, Kochi Hoso,,Sukumo (shi-koc),32.933333,132.716667,,0.1,,9216,43,154,,0000-2400,1234567,,,50729,, +1395,J,,RKC, Kochi Hoso,,Tosashimizu (shi-koc),32.75,132.95,,0.1,,9245,43,154,,0000-2400,1234567,,,50728,, +1395,INS,id,RRI Pro-1,,Wamena (PA-jyw),-4.104397,138.927928,,1,,13128,56,157,,2000-1500,1234567,,,50726,,, +1395,AUS,,5AA,,Adelaide/Paralowie (SA),-34.757472,138.608694,,5,,15798,82,159,,0000-2400,1234567,,,50719,,, +1395,BOL,,R Horizontes,,Huanuni (oru),-19.066667,-68.366667,,0.1,,10680,247,159,,,,,,51757,,, +1395,NZL,,4ZW Newstalk ZB,,Oamaru (OTA),-45.071389,170.929722,,2,,18638,62,173,,0000-2400,1234567,,,50732,,, +1395,AUS,,2LG ABC Central West NSW,,Lithgow/Bracys Lookout (NSW),-33.487258,150.159672,,0.2,,16462,69,175,,0000-2400,1234567,,,50720,,, +1400,CAN,en,CBG,,Gander (NL),48.965833,-54.655,,4,,4201,290,93,,,,87,,35776,,, +1400,USA,,WJZN,,Augusta (ME),44.291667,-69.774167,,1,,5448,293,111,,,,,,41948,,, +1400,USA,,WWNZ,,Veazie (ME),44.847222,-68.68,,0.81,,5342,293,111,,,,921,,43417,,, +1400,USA,en,WGIN (r:WGAN),,Biddeford (ME),43.481111,-70.485556,,1,,5549,293,112,,,,,,43276,,, +1400,USA,,WLLH,,Lowell (U b) (MA),42.7075,-71.164167,,1,,5646,292,113,,,,,,20016209,,, +1400,USA,,WLTN,,Littleton (NH),44.313056,-71.768889,,1,,5572,294,113,,,,,,42244,,, +1400,USA,,WTSL,,Hanover (NH),43.684167,-72.296111,,1,,5648,294,113,,,,,,43216,,, +1400,USA,,WHTB,,Fall River (MA),41.689722,-71.145278,,1,,5717,291,114,,,,,,41690,,, +1400,USA,,WLLH,,Lowell (U a) (MA),42.658056,-71.317778,,1,,5659,292,114,,,,0,,42185,,, +1400,USA,,WAMC,,Albany (NY),42.689167,-73.793611,,1,,5813,294,115,,,,,,40703,,, +1400,USA,,WHMP,,Northampton (MA),42.326667,-72.657778,,1,,5767,293,115,,,,,,41664,,, +1400,USA,,WILI,,Willimantic (CT),41.715,-72.189722,,1,,5781,292,115,,,,,,41752,,, +1400,USA,,WSLB,,Ogdensburg (NY),44.705833,-75.465278,,1,,5772,297,115,,,,12,,43019,,, +1400,USA,,WEST,,Easton (PA),40.673056,-75.208333,,1,,6048,293,117,,,,,,41328,,, +1400,USA,,WICK,,Scranton (PA),41.418056,-75.661944,,1,,6022,294,117,,,,,,41726,,, +1400,USA,,WSTC,,Stamford (CT),41.046944,-73.526667,,0.78,,5914,292,117,,,,,,43071,,, +1400,USA,,WDNY,,Dansville (NY),42.538611,-77.6825,,1,,6065,296,118,,,,,,41191,,, +1400,USA,,WRAK,,Williamsport (PA),41.239444,-77.040833,,1,,6121,294,118,,,,,,42812,,, +1400,USA,en,WOND,,Pleasantville (NJ),39.39,-74.5125,,1,,6099,291,118,,,,991,,42604,,, +1400,USA,,WJET,,Erie (PA),42.124444,-80.065,,1,,6241,297,119,,,,,,41870,,, +1400,USA,,WKBI,,St. Marys (PA),41.415556,-78.565556,,1,,6202,295,119,,,,,,41962,,, +1400,USA,,WKNW,,Sault Sainte Marie (MI),46.488333,-84.329167,,0.95,,6168,303,119,,,,,,42051,,, +1400,USA,,WWWS,,Buffalo (NY),42.926111,-78.841111,,0.75,,6107,297,119,,,,,,43446,,, +1400,USA,en,WHGB,,Harrisburg (PA),40.249444,-76.8675,,1,,6184,293,119,,,,,,43125,,, +1400,USA,,WINC,,Winchester (VA),39.188056,-78.151944,,1,,6345,293,120,,,,,,41765,,, +1400,USA,,WQXO,,Munising (MI),46.408333,-86.639444,,1,,6304,305,120,,,,,,42806,,, +1400,USA,,WWGE,,Loretto (PA),40.503333,-78.636111,,1,,6275,295,120,,,,,,43379,,, +1400,USA,,WBBD,,Wheeling (WV),40.096944,-80.701667,,1,,6434,296,121,,,,,,40808,,, +1400,USA,,WCCY,,Houghton (MI),47.135,-88.564722,,1,,6357,306,121,,,,,,40970,,, +1400,USA,,WDTK,,Detroit (MI),42.406111,-83.112222,,1,,6404,299,121,,,,,,41212,,, +1400,USA,,WPCE,,Portsmouth (VA),36.829167,-76.323056,,1,,6409,290,121,,,,26,,42654,,, +1400,USA,,WSAM,,Saginaw (MI),43.416667,-83.918056,,1,,6374,300,121,,,,,,42948,,, +1400,USA,,WBFN,,Battle Creek (MI),42.304167,-85.192222,,1,,6535,300,122,,,,,,42820,,, +1400,USA,,WDUZ,,Green Bay (WI),44.493333,-87.986944,,1,,6527,304,122,,,,,,41218,,, +1400,USA,,WKAV,,Charlottesville (VA),38.030278,-78.489444,,1,,6455,292,122,,,,,,41956,,, +1400,USA,,WMAN,,Mansfield (U) (Aux) (OH),40.766667,-82.546667,,0.96,,6495,297,122,,,,,,20016211,,, +1400,USA,,WMAN,,Mansfield (U) (OH),40.770278,-82.543333,,0.92,,6495,297,122,,,,,,42273,,, +1400,USA,,WSMY,,Weldon (NC),36.411944,-77.618333,,1,,6525,290,122,,,,,,43032,,, +1400,USA,,WWIN,i,Baltimore (MD),39.301667,-76.569167,,0.5,,6236,292,122,,,,,,43386,,, +1400,USA,,WAJL,,South Boston (VA),36.709722,-78.874444,,1,,6581,292,123,,,,,,20000053,,, +1400,USA,,WATW,,Ashland (WI),46.573611,-90.865556,,0.78,,6526,307,123,,,,,,40764,,, +1400,USA,,WAVQ,,Jacksonville (NC),34.748889,-77.414167,,1,,6641,289,123,,,,,,20016108,,, +1400,USA,,WLJN,,Elmwood Township (MI),44.776667,-85.661944,,0.64,,6373,303,123,,,,,,42177,,, +1400,USA,,WRON,,Ronceverte (WV),37.76,-80.455,,1,,6599,293,123,,,,,,42901,,, +1400,USA,,WVRC,,Spencer (WV),38.806389,-81.361111,,1,,6574,295,123,,,,,,43341,,, +1400,GRD,en,Harbour Light of the Windwards,,Carriacou/Tarleton Point (cpm),12.487106,-61.427222,,5,,7408,260,124,,0953-0245,1234567,3,,47123,,, +1400,USA,,WBAT,,Marion (IN),40.561111,-85.691667,,1,,6701,299,124,,,,,,40802,,, +1400,USA,,WBIZ,,Eau Claire (WI),44.815556,-91.518611,,0.97,,6700,306,124,,,,,,40866,,, +1400,USA,,WBTH,,Williamson (WV),37.669167,-82.269167,,1,,6720,295,124,,,,,,40918,,, +1400,USA,,WHHV,,Hillsville (VA),36.75,-80.722222,,1,,6695,293,124,,,,,,41636,,, +1400,USA,,WKEW,,Greensboro (NC),36.066667,-79.796944,,1,,6690,292,124,,,,,,41997,,, +1400,USA,,WMFA,,Raeford (NC),34.978611,-79.208889,,1,,6739,290,124,,,,,,42307,,, +1400,USA,,WRDB,,Reedsburg (WI),43.541667,-90.034722,,1,,6718,304,124,,,,,,42826,,, +1400,USA,,WRJN,,Racine (WI),42.710556,-87.830278,,1,,6657,302,124,,,,,,42860,,, +1400,USA,,WSJM,,St. Joseph (MI),42.086667,-86.444444,,0.88,,6626,301,124,,,,,,43009,,, +1400,CAN,en,CBMD,,Chapais (QC),49.784444,-74.861944,,0.04,,5391,302,125,,,,,,20109194,,, +1400,USA,,KEYL,,Long Prairie (MN),45.9625,-94.869167,,1,,6790,309,125,,,,,,38359,,, +1400,USA,,KMNV,,Saint Paul (MN),44.957778,-93.206389,,1,,6781,307,125,,,,,,38778,,, +1400,USA,,WCYN,,Cynthiana (KY),38.405556,-84.292222,,1,,6786,296,125,,,,,,41114,,, +1400,USA,,WKPT,,Kingsport (TN),36.543611,-82.5225,,1,,6824,294,125,,,,,,42059,,, +1400,USA,,WSIC,,Statesville (NC),35.8025,-80.891667,,1,,6781,292,125,,,,,,43003,,, +1400,USA,en,WJMX,,Darlington (SC),34.316111,-79.888056,,1,,6835,290,125,,,,,,42674,,, +1400,USA,,KADR,,Elkader (IA),42.849167,-91.411944,,1,,6851,304,126,,,,,,37915,,, +1400,USA,,KQDJ,,Jamestown (ND),46.893611,-98.688889,,1,,6913,312,126,,,,,,39188,,, +1400,USA,,WCOS,,Columbia (SC),34.005,-81.011944,,1,,6932,291,126,,,,,,41061,,, +1400,USA,,WDWS,,Champaign (IL),40.084444,-88.248056,,1,,6890,300,126,,,,,,41223,,, +1400,USA,,WGTN,,Georgetown (SC),33.404167,-79.326667,,1,,6872,289,126,,,,,,41575,,, +1400,USA,,WIEL,,Elizabethtown (KY),37.686389,-85.871944,,1,,6940,297,126,,,,,,41734,,, +1400,USA,,WMXF,,Waynesville (NC),35.503889,-82.973611,,1,,6936,293,126,,,,,,42416,,, +1400,USA,en,WSPG,,Spartanburg (SC),34.973889,-81.926944,,1,,6912,292,126,,,,,,41991,,, +1400,USA,,KMHL,,Marshall (MN),44.449722,-95.761944,,1,,6961,308,127,,,,,,38899,,, +1400,USA,,WEOA,,Evansville (IN),37.938056,-87.530833,,1,,7020,298,127,,,,,,41313,,, +1400,USA,,WFTG,,London (KY),37.141667,-84.079167,,0.69,,6873,295,127,,,,,,41444,,, +1400,USA,,WGAP,,Maryville (TN),35.761389,-83.9825,,1,,6978,294,127,,,,,,41474,,, +1400,USA,,WGHC,,Clayton (GA),34.861389,-83.406944,,1,,7014,293,127,,,,,,41514,,, +1400,USA,,WHUB,,Cookeville (TN),36.173611,-85.511111,,1,,7040,295,127,,,,,,41695,,, +1400,USA,,WSGC,,Elberton (GA),34.113889,-82.881111,,1,,7042,292,127,,,,,,42992,,, +1400,USA,,KCOG,,Centerville (IA),40.744444,-92.908889,,1,,7107,304,128,,,,,,38190,,, +1400,USA,,KVFD,,Fort Dodge (IA),42.478889,-94.202778,,0.85,,7037,306,128,,,,,,39623,,, +1400,USA,,WGIL,,Galesburg (IL),40.942778,-90.344167,,0.74,,6944,302,128,,,,,,41519,,, +1400,USA,,WJZM,,Clarksville (TN),36.515833,-87.349167,,1,,7124,297,128,,,,,,41947,,, +1400,USA,,WLTA,,Alpharetta (GA),34.063611,-84.276111,,1,,7134,293,128,,,,,,42239,,, +1400,USA,,WLYY,,Copper Hill (TN),34.967778,-84.3275,,1,,7064,294,128,,,,,,42230,,, +1400,CAN,fr,CBOF-4,,Rolphton (ON),46.171667,-77.701944,,0.04,,5804,299,129,,,,,,20109195,,, +1400,PTR,,WIDA,,Carolina (PR),18.396944,-65.935,,1,,7205,268,129,,0000-2400,1234567,,,41730,,, +1400,USA,,KBJM,,Lemmon (SD),45.918056,-102.198611,,1,,7172,313,129,,,,,,38044,,, +1400,USA,,KFRU,,Columbia (MO),38.9625,-92.303889,,1,,7219,302,129,,,,,,38429,,, +1400,USA,,KJFF,,Festus (MO),38.232222,-90.397222,,1,,7167,300,129,,,,,,38667,,, +1400,USA,,KSIM,,Sikeston (MO),36.87,-89.608889,,1,,7232,299,129,,,,,,39362,,, +1400,USA,,KXGN,,Glendive (MT),47.094444,-104.713889,,1,,7194,315,129,,,,,,39793,,, +1400,USA,,WAWO,,Alma (GA),31.530556,-82.4625,,1,,7225,290,129,,,,,,40682,,, +1400,USA,,WCOH,,Newnan (GA),33.364722,-84.811667,,1,,7224,293,129,,,,,,41056,,, +1400,USA,,WFPA,,Fort Payne (AL),34.439167,-85.7025,,1,,7192,294,129,,,,,,41428,,, +1400,USA,,WNEX,,Macon (GA),32.851944,-83.653056,,1,,7193,292,129,,,,,,42462,,, +1400,USA,,WZNG,,Shelbyville (TN),35.473889,-86.445833,,1,,7154,296,129,,,,,,43580,,, +1400,VEN,,YVQZ R Anaco,,Anaco (azg),9.5,-64.466667,,5,,7874,261,129,,0900-0400,1234567,,,45439,,, +1400,USA,,KBRB,,Ainsworth (NE),42.554444,-99.831111,,1,,7336,309,130,,,,,,38080,,, +1400,USA,,KLIN,,Lincoln (NE),40.848333,-96.674722,,1,,7309,306,130,,,,998,,38818,,, +1400,USA,,WANI,,Opelika (AL),32.657222,-85.424167,,1,,7321,293,130,,,,,,40724,,, +1400,USA,,WJLD,,Fairfield (AL),33.476667,-86.883611,,1,,7345,294,130,,,,,,41892,,, +1400,USA,,WSEG,,Savannah (GA),32.074722,-81.071389,,0.65,,7091,289,130,,,,,,20016018,,, +1400,USA,,WWTM,,Decatur (AL),34.612222,-86.991111,,1,,7258,295,130,,,,,,43436,,, +1400,USA,,WZAZ,,Jacksonville (FL),30.328611,-81.695,,1,,7274,288,130,,,,,,43566,,, +1400,USA,en,WHLJ,,Moultrie (GA),31.165556,-83.766944,,1,,7338,290,130,,,,,,41611,,, +1400,CAN,en,CHNL-1,,Clearwater (BC),51.657222,-120.083056,,1,,7439,327,131,,,,,,36066,,, +1400,USA,,KGMY,,Springfield (MO),37.196111,-93.3225,,1,,7425,301,131,,,,,,38496,,, +1400,USA,,KWYN,,Wynne (AR),35.255833,-90.796944,,1,,7437,298,131,,,,,,39772,,, +1400,USA,,WBIP,,Booneville (MS),34.639167,-88.575833,,1,,7353,296,131,,,,,,40861,,, +1400,USA,,WIRA,,Fort Pierce (FL),27.435278,-80.361389,,1,,7425,285,131,,,,,,41796,,, +1400,USA,,WJWF,,Columbus (MS),33.491667,-88.403889,,1,,7438,295,131,,,,,,41940,,, +1400,USA,,WPRY,,Perry (FL),30.1075,-83.566667,,1,,7413,290,131,,,,,,42735,,, +1400,USA,,WSDO,,Sanford (FL),28.801111,-81.251667,,1,,7371,287,131,,,,,,42972,,, +1400,USA,,KCOW,,Alliance (DN) (NE),42.106111,-102.888056,,1,,7534,311,132,,,,,,20016281,,, +1400,USA,,KCOW,,Alliance (U) (NE),42.107222,-102.8875,,1,,7534,311,132,,,,,,38197,,, +1400,USA,,KVOE,,Emporia (KS),38.386111,-96.176667,,1,,7489,304,132,,,,,,39649,,, +1400,USA,en,WZHR,,Zephyrhills (FL),28.281667,-82.208333,,1,,7476,287,132,,,,,,43575,,, +1400,USA,pt,WFLL,,Fort Lauderdale (FL),26.153611,-80.169722,,1,,7519,284,132,,,,,,41398,,, +1400,USA,,KAYS,,Hays (KS),38.891389,-99.3675,,1,,7624,306,133,,,,,,37995,,, +1400,USA,,KBCK,,Deer Lodge (MT),46.414444,-112.721111,,1,,7624,320,133,,,,,,38012,,, +1400,USA,,KKTL,,Casper (WY),42.856111,-106.361389,,1,,7644,314,133,,,,,,38758,,, +1400,USA,,KODI,,Cody (WY),44.512778,-109.055556,,1,,7627,316,133,,,,,,39053,,, +1400,USA,,KSPT,,Sandpoint (ID),48.304444,-116.542222,,1,,7613,323,133,,,,,,39406,,, +1400,USA,,KWON,,Bartlesville (OK),36.764722,-95.959722,,1,,7614,303,133,,,,,,39741,,, +1400,USA,,KXGF,,Great Falls (MT),47.465556,-111.322778,,0.68,,7467,320,133,,,,,,39792,,, +1400,USA,,WJQS,,Jackson (MS),32.32,-90.190278,,1,,7646,296,133,,,,,,42097,,, +1400,USA,,WXAL,,Demopolis (AL),32.502222,-87.818611,,0.79,,7484,294,133,,,,,,43453,,, +1400,USA,en,WFDM,,Fort Walton Beach (FL),30.410556,-86.623056,,1,,7583,292,133,,,,,,40804,,, +1400,CAN,en,CIOR,,Princeton (BC),49.447222,-120.512778,,1,,7663,326,134,,,,,,36382,,, +1400,NCG,es,YNRG R Mara,,Managua (mng),12.103361,-86.095542,,10,,9118,279,134,,,,,,45223,,, +1400,USA,,KELD,,El Dorado (AR),33.237222,-92.665,,1,,7719,298,134,,,,,,38321,,, +1400,USA,,KFTM,,Fort Morgan (CO),40.258611,-103.851944,,1,,7745,310,134,,,,,,38437,,, +1400,USA,,WFOR,,Hattiesburg (MS),31.335,-89.326389,,1,,7675,294,134,,,,,,41424,,, +1400,B,pt,ZYI677 Rdio Espinharas,,Patos (PB),-7.0746,-37.282347,,1,,7774,227,135,,,,,,36902280,,, +1400,CLM,es,HJAS RCN Antena 2,,Barranquilla (atl),10.866667,-74.75,,5,,8454,270,135,,,,999,,37334,,, +1400,CUB,es,R Sagua,,Sagua La Grande (vc),22.806986,-80.112372,,1,,7796,282,135,,,,,,31600118,,, +1400,USA,,KREF,,Norman (OK),35.217778,-97.410278,,1,,7829,303,135,,,,,,39235,,, +1400,USA,,KRPL,,Moscow (ID),46.746389,-117.018333,,1,,7777,322,135,,,,,,39287,,, +1400,USA,,KTMC,,McAlester (OK),34.949444,-95.766944,,1,,7757,301,135,,,,,,39507,,, +1400,USA,,WFPR,,Hammond (LA),30.508611,-90.505,,1,,7818,295,135,,,,,,41430,,, +1400,USA,en,KKTK,,Texarkana (DN) (TX),33.442778,-94.055556,,1,,7785,299,135,,,,,,20016288,,, +1400,USA,en,KKTK,,Texarkana (U) (TX),33.441111,-94.054444,,1,,7785,299,135,,,,,,38757,,, +1400,B,pt,ZYH200 Rdifusora Acreana,,Rio Branco/Estrada da Sobral (AC),-9.999228,-67.830817,,10,,9834,251,136,,,,2,,36902284,,, +1400,CLM,es,HJDF,,Montelibano (cor),7.983333,-75.433333,,5,,8751,269,136,,,,,,35901744,,, +1400,USA,,KBLJ,,La Junta (CO),37.987222,-103.566944,,1,,7930,309,136,,,,,,38056,,, +1400,USA,,KEYE,,Perryton (TX),36.388889,-100.826944,,1,,7921,306,136,,,,,,38354,,, +1400,USA,,KGVL,,Greenville (TX),33.167222,-96.098611,,1,,7930,300,136,,,,,,38518,,, +1400,USA,es,KRSC,,Othello (WA),46.825556,-119.186944,,1,,7859,324,136,,,,,,39294,,, +1400,CTR,,TICJ R Sinai,,San Isidro del General (sjs),9.366667,-83.7,,5,,9194,276,137,,1000-0400,1234567,,,40574,,, +1400,DOM,,HIAC Ondas del Valle,,Concepcin de La Vega (veg),19.216667,-70.516667,,0.25,,7449,272,137,,1100-0200,1234567,,,37203,,, +1400,USA,,KAOK,,Lake Charles (LA),30.236111,-93.167222,,1,,8005,296,137,,,,,,37956,,, +1400,USA,,KART,,Jerome (ID),42.730833,-114.538056,,1,,8043,319,137,,,,999,,37968,,, +1400,USA,,KEBE,,Jacksonville (TX),31.969722,-95.264444,,1,,7983,299,137,,,,,,38309,,, +1400,USA,,KRLN,,Canon City (CO),38.459722,-105.223889,,1,,7976,310,137,,,,,,39262,,, +1400,USA,en,KITZ,,Silverdale (WA),47.629167,-122.664444,,0.89,,7918,326,137,,,,,,38643,,, +1400,USA,en,KLCK,,Goldendale (WA),45.823611,-120.837778,,1,,8020,324,137,,,,,,38785,,, +1400,B,pt,ZYH529 Rdio Vale do Vasa Barris,,Jeremoabo (BA),-10.080556,-38.343889,,1,,8125,226,138,,,,15,,36902277,,, +1400,B,pt,ZYJ339 Rdio Agape,,Balsa Nova (PR),-25.489167,-49.467222,,10,,10190,228,138,,,,,,36902283,,, +1400,USA,,KJDY,,John Day (OR),44.421389,-118.9525,,1,,8076,322,138,,,,,,38665,,, +1400,USA,,KSRR,,Provo (UT),40.258056,-111.706667,,1,,8139,315,138,,,,,,39413,,, +1400,USA,en,KEDO,,Longview (WA),46.149167,-122.974722,,1,,8072,326,138,,,,,,38314,,, +1400,USA,en,KJYE,,Delta (CO),38.760556,-108.091111,,1,,8096,312,138,,,,,,38294,,, +1400,USA,en,WPKN267,,Philadelphia (PA),39.960989,-75.142111,,0.01,,6097,292,138,,,,,,20010692,,, +1400,VEN,,YVNF R Sabana,,El Sombrero (gco),9.366667,-67.033333,,1,,8059,263,138,,1000-0200,1234567,,,45342,,, +1400,B,pt,ZYJ462 Rdio Rio de Janeiro,,Rio de Janeiro (RJ),-22.719975,-43.18685,,5,,9610,225,139,,,,1,,36902285,,, +1400,GTM,,TGRB R Portena,,Puerto Barrios (izb),15.716667,-88.566667,,3,,8968,284,139,,0000-2400,1234567,,,40525,,, +1400,USA,,KBCH,,Lincoln City (OR),44.990833,-123.979167,,1,,8223,326,139,,,,992,,38011,,, +1400,USA,,KHCB,,Galveston (TX),29.426389,-95.133333,,1,,8195,297,139,,,,,,38533,,, +1400,USA,,KREW,,Plainview (TX),34.215278,-101.723611,,1,,8162,305,139,,,,,,39238,,, +1400,USA,,KTEM,,Temple (TX),31.066944,-97.399167,,0.95,,8188,300,139,,,,,,39469,,, +1400,USA,,KTNM,,Tucumcari (NM),35.170833,-103.706944,,1,,8187,307,139,,,,,,39516,,, +1400,USA,,KVRP,,Stamford (TX),32.931111,-99.783333,,1,,8164,303,139,,,,,,39665,,, +1400,USA,,KWUF,,Pagosa Springs (CO),37.256667,-107.018333,,1,,8177,310,139,,,,,,39764,,, +1400,USA,,KBYG,,Big Spring (TX),32.222778,-101.476389,,1,,8324,303,140,,,,,,38112,,, +1400,USA,,KNND,,Cottage Grove (OR),43.761944,-123.078333,,0.95,,8307,325,140,,,,,,39003,,, +1400,USA,,KRUN,,Ballinger (TX),31.725278,-99.961667,,1,,8281,302,140,,,,,,39307,,, +1400,USA,,KVSF,,Santa Fe (NM),35.682222,-105.9725,,1,,8263,309,140,,,,,,39667,,, +1400,BOL,,CP3 R Nacional de Bolivia,,La Paz (lpz),-16.5,-68.116667,,5,,10435,248,141,,0900-0200,1234567,,,36690,,, +1400,USA,,KENT,,Parowan (UT),37.806111,-112.944444,,1,,8425,315,141,,,,,,38332,,, +1400,USA,,KFJL,,Central Point (D) (OR),42.348611,-122.914167,,1,,8437,324,141,,,,,,20016257,,, +1400,USA,,KFJL,,Central Point (N) (OR),42.348611,-122.914167,,1,,8437,324,141,,,,,,20016258,,, +1400,USA,,KWNA,,Winnemucca (NV),40.956389,-117.713333,,1,,8351,320,141,,,,,,39733,,, +1400,B,pt,ZYN660 Rdifuso Guara,,Guara (TO),-8.835833,-48.512778,,1,,8545,236,142,,,,,,36902275,,, +1400,CLM,es,HJBK,,Ccuta (nsa),7.816667,-72.466667,,1,,8564,266,142,,,,,,37349,,, +1400,EQA,,HCFL2 R Z-Uno,,Guayaquil (gua),-2.166667,-79.95,,3,,9949,266,142,,,,945,,36939,,, +1400,PRU,,OAU3O,,Chimbote (anc),-9.075,-78.583333,,5,,10464,260,142,,,,,,37000089,,, +1400,SLV,es,YSJI La Voz del Litoral,,Usulutn (usu),13.342458,-88.433233,,1.5,,9166,282,142,,,,,,45282,,, +1400,USA,,KCHS,,Truth Or Consequence (NM),33.140556,-107.231944,,1,,8560,308,142,,,,,,38153,,, +1400,USA,,KGWU,,Uvalde (TX),29.187778,-99.776667,,1,,8494,300,142,,,,,,39657,,, +1400,USA,,KIUN,,Pecos (TX),31.435833,-103.503889,,1,,8509,304,142,,,,,,38645,,, +1400,USA,,KNNR,,Sparks (NV),39.569444,-119.750833,,1,,8572,320,142,,,,,,38017,,, +1400,USA,,KQMS,,Redding (CA),40.558611,-122.33,,1,,8587,323,142,,,,,,39199,,, +1400,USA,,KUNO,,Corpus Christi (TX),27.76,-97.437222,,1,,8480,298,142,,,,,,39582,,, +1400,B,pt,ZYI926 Rdio Cantagalo,,Jaics (PI),-7.338922,-41.159028,,0.25,,7998,230,143,,,,,,36902288,,, +1400,CLM,es,HJD31,,Cimitarra (sat),6.316667,-73.95,,1,,8796,266,143,,,,,,35901749,,, +1400,CLM,es,HJLL RCN Antena 2,,Santa Brbara (ant),5.9,-75.516667,,1,,8939,267,143,,,,,,37366,,, +1400,MEX,es,XESH-AM R Sabinas,,Sabinas Hidalgo (nvl),26.488211,-100.183236,,1,,8757,299,143,,,,,,44741,,, +1400,USA,,KSHP,,North Las Vegas (NV),36.210833,-115.163056,,1,,8681,315,143,,,,,,39358,,, +1400,USA,,KSUN,,Phoenix (AZ),33.389722,-111.997778,,1,,8787,312,143,,,,,,39432,,, +1400,USA,,KTUC,,Tucson (AZ),32.276944,-110.980556,,1,,8838,310,143,,,,,,39548,,, +1400,USA,,KUKI,,Ukiah (CA),39.168333,-123.212778,,1,,8758,322,143,,,,,,39574,,, +1400,USA,,KVTO,,Berkeley (CA),37.849444,-122.295556,,1,,8848,321,143,,,,43,,39676,,, +1400,USA,en,KRZR,i,Visalia (CA),36.353889,-119.283889,,1,,8860,318,143,,,,,,39610,,, +1400,B,pt,ZYJ346 Rdio Jornal So Miguel,,So Miguel do Iguau (PR),-25.354722,-54.2125,,2.5,,10426,232,144,,,,,,36902279,,, +1400,CLM,,unid, ?,,,4.45,-74.4,,1,,8990,265,144,,,,82,,52277,, +1400,CLM,es,HJHM,,Calarca (qui),4.516667,-75.666667,,1,,9071,267,144,,,,,,37475,,, +1400,CLM,es,HJIT,,Quibdo (cho),5.766667,-76.7,,1,,9032,268,144,,,,,,37499,,, +1400,CLM,es,HJKM Emisora Mariana/R Multicultural,,Bogot D. C. (bdc),4.616667,-74.15,,1,,8958,265,144,,????-0459,1234567,15,,37527,,, +1400,HND,,HRYT,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37886,,, +1400,MEX,es,XEPF-AM,,Ensenada/Indeco Lomitas (bcn),31.889061,-116.579725,,1,,9158,314,144,,,,,,44544,,, +1400,MEX,es,XEWU-AM La Poderosa,,Matehuala (slp),23.646389,-100.642222,,1,,9038,298,144,,,,,,45037,,, +1400,PNR,es,HOT40 Digital R Luz,,La Chorrera (pnm),8.864558,-79.787311,,1,,8972,272,144,,,,,,37731,,, +1400,URG,,CX140 R Zorrilla de San Martin,,Tacuaremb (ta),-31.716667,-55.966667,,5,,11113,230,144,,0900-0300,1234567,889,,36789,,, +1400,USA,,KESQ,,Indio (CA),33.726944,-116.252778,,1,,8968,315,144,,,,,,38343,,, +1400,USA,,KIHH,,Eureka (CA),40.802778,-124.137778,,0.79,,8637,324,144,,,,,,20000010,,, +1400,USA,,KKJL,,San Luis Obispo (CA),35.264167,-120.665556,,1,,9027,319,144,,,,,,38724,,, +1400,USA,,KKZZ,,Santa Paula (CA),34.33,-119.091944,,1,,9045,317,144,,,,,,39583,,, +1400,USA,en,KCYK,,Yuma (AZ),32.651667,-114.651111,,1,,8990,313,144,,,,,,38684,,, +1400,ARG,,LRG202 R Cumbre,,Neuqun (nq),-38.965072,-68.097075,,10,,12413,234,145,,,,993,,51859,,, +1400,CLM,es,HJJJ,,Ipiales (nar),0.866667,-77.666667,,1,,9527,266,145,,,,,,37509,,, +1400,MEX,es,XEAC-AM Ke Buena,,Aguascalientes (agu),21.8695,-102.297858,,1,,9298,298,145,,,,,,43682,,, +1400,MEX,es,XEI-AM R Trece,,Morelia (mic),19.724475,-101.172706,,1,,9422,296,145,,,,,,44155,,, +1400,MEX,es,XEUBJ-AM R Universidad,,Oaxaca (oax),17.049725,-96.710422,,1,,9381,291,145,,,,,,44892,,, +1400,MEX,es,XEVI-AM Exa,,San Juan del Ro (que),20.351878,-99.963292,,1,,9292,295,145,,,,,,44966,,, +1400,MEX,es,XEXI-AM,,Ixtapan de la Sal (mex),18.837017,-99.671569,,1,,9409,294,145,,,,,,45051,,, +1400,PRU,es,OBX4W Callao Sper R,,Lima (lim),-12.166667,-77.066667,,2.5,,10634,257,145,,,,994,,40398,,, +1400,EQA,,HCVL1,,Multicolor (nap),-0.833333,-77.683333,,1,,9678,265,146,,,,,,37170,,, +1400,EQA,,HCVL6,,Salcedo (cot),-1.066667,-78.566667,,1,,9759,265,146,,,,,,37171,,, +1400,MEX,es,XEKJ-AM Mariachi Estreo,,Acapulco (gue),16.844817,-99.913592,,1,,9603,293,146,,,,,,44258,,, +1400,MEX,es,XEOJ-AM R Horizonte,,Ciudad Lzaro Crdenas (mic),18.005161,-102.2523,,1,,9644,296,146,,,,,,44489,,, +1400,MEX,es,XEAB-AM R Santa Ana,,Santa Ana (son),30.552778,-111.116667,,0.5,,9005,309,147,,,,,,43678,,, +1400,B,pt,ZYK376 Rdio Educadora,,So Joo da Urtiga (RS),-27.771111,-51.799167,,1.1,,10527,229,148,,,,,,36902278,,, +1400,CLM,es,HKZ25,,Ovejas (suc),9.533333,-75.233333,,0.25,,8603,269,148,,,,,,35901739,,, +1400,BOL,,R Comunidad,,Patacamaya (lpz),-17.233333,-67.916667,,1,,10488,247,149,,,,,,52036,,, +1400,CLM,es,HKZ22,,Majagual (suc),8.55,-74.633333,,0.25,,8647,268,149,,,,,,35901738,,, +1400,CHL,,CD140 R Belen,,Puerto Montt (LL),-41.466667,-72.916667,,5,,12891,235,150,,,,,,51955,,, +1400,ARG,,R Fantastica,,Lujan (ba),-34.566667,-59.1,,1,,11539,230,152,,,,,,51861,,, +1400,ARG,es,AM 1400,,Haedo (ba),-34.650556,-58.593333,,1,,11520,230,152,,,,,,33000085,,, +1400,ARG,es,R Malvinas Argentinas,,Rosario (sf),-32.95,-60.65,,1,,11475,233,152,,,,,,33000051,,, +1400,B,pt,ZYK658 Rdio Clube de So Carlos,,So Carlos/Chcara Pedra Branca (SP),-22.047317,-47.890686,,0.25,,9779,229,152,,,,,,36902281,,, +1400,B,pt,ZYK682 Rdio Metrpole AM,,So Jos do Rio Preto (SP),-20.854433,-49.355911,,0.25,,9740,231,152,,,,,,36902287,,, +1400,EQA,,HCBS4,,Manta (man),-1,-80.766667,,0.3,,9903,267,152,,,,,,36870,,, +1400,PRU,,OAX7I R La Hora,,Cusco/Cerro Osqollo (cus),-13.51875,-72.010236,,0.45,,10420,253,152,,,,,,40346,,, +1400,B,pt,ZYJ256 Rdio Globo,,Londrina (PR),-23.233333,-51.141667,,0.25,,10062,231,153,,,,,,36902282,,, +1400,B,pt,ZYK527 Rdio Difusora Luclia,,Luclia (SP),-21.718611,-51.009167,,0.25,,9911,232,153,,,,,,36902286,,, +1400,PRU,,OAX6J R Landa,,Arequipa (are),-16.366667,-71.566667,,0.45,,10643,251,153,,,,,,40332,,, +1400,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010691,,, +1400,B,,ZYJ291,,Rebouas (PR),-25.616667,-50.7,,0.25,,10266,229,154,,,,,,46014,,, +1400,B,,ZYL285,,Laranjeiras do Sul (PR),-25.383333,-52.383333,,0.25,,10331,231,154,,,,,,46712,,, +1400,B,pt,ZYJ299 Rdio Fronteira d'Oeste,,Terra Roxa (PR),-24.157222,-54.073889,,0.25,,10306,233,154,,,,,,36902276,,, +1400,B,,ZYK247,,Getlio Vargas (RS),-27.866667,-52.216667,,0.25,,10558,229,155,,,,,,46280,,, +1400,B,pt,ZYJ775 Rdio Entre Rios,,Palmitos (SC),-27.0675,-53.161111,,0.25,,10531,230,155,,,,,,36902274,,, +1400,CHL,,CD140 R La Amistad,,Los Angeles (BI),-37.466667,-72.333333,,1,,12525,238,155,,1030-0400,1234567,,,51954,,, +1400,PRG,,ZP37,,Carapegua (pgu),-25.75,-57.2,,0.25,,10626,234,155,,,,,,45533,,, +1400,CHL,,CA140 R Tarapaca,,Iquique (TA),-20.233333,-70.133333,,0.25,,10895,247,156,,1045-0600,1234567,,,35690,,, +1400,USA,,KRVZ,,Springerville (AZ),34.138056,-109.270833,,0.022,,8577,310,159,,,,,,39315,,, +1404,F,fr,France Info,,Brest/Quimerc'h (29),48.274167,-4.153056,,20,,863,245,53,,0000-2400,1234567,,,1403,,, +1404,ROU,de,SRR R Bukarest,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0820-0830,......7,8,,1412,,, +1404,ROU,de,SRR R Bukarest,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1200-1300,123456,8,,1412,,, +1404,ROU,hu,SRR Kolozsvri Rdi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0600-0800,123456,8,,1412,,, +1404,ROU,hu,SRR Kolozsvri Rdi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1200-1600,12345.7,8,,1412,,, +1404,ROU,hu,SRR Kolozsvri Rdi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1300-1600,.....6.,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0355-0430,123456,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0355-0600,......7,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0600-0820,......7,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0800-1200,.....6.,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0800-1200,12345..,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0830-1200,......7,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1600-1700,1234567,8,,1412,,, +1404,ROU,ro,SRR R Cluj,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1800-2000,1234567,8,,1412,,, +1404,ROU,ro,SRR R Romnia Actualităţi,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,2000-0355,1234567,8,,1412,,, +1404,ROU,ro,SRR R Sighet,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,0430-0600,123456,8,,1412,,, +1404,ROU,ro,SRR R Sighet,,Sighetu Marmaţiei/Vadu Izei (MM),47.877289,23.942892,,50,,1335,104,53,,1700-1800,1234567,8,,1412,,, +1404,F,fr,France Info,,Dijon/Couternon (21),47.338433,5.159789,,5,,538,190,55,,0000-2400,1234567,,,1400,,, +1404,F,fr,France Bleu Corse Frequenza Mora,,Ajaccio/Coti-Chiavari (20A),41.768056,8.768333,,20,,1164,170,56,,0000-2400,1234567,0,,1405,,, +1404,GRC,el,ERA Komotinis,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,0500-1600,12345..,,,1408,,, +1404,GRC,el,ERA Komotinis,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,0900-1100,.....6.,,,1408,,, +1404,GRC,el,ERA Komotinis,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,1100-1300,......7,,,1408,,, +1404,GRC,el,ERA Net/ERA 2/ERA Sport,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,0000-0900,.....6.,,,1408,,, +1404,GRC,el,ERA Net/ERA 2/ERA Sport,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,1300-0500,......7,,,1408,,, +1404,GRC,el,ERA Net/ERA 2/ERA Sport,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,1600-0500,1234...,,,1408,,, +1404,GRC,el,ERA Net/ERA 2/ERA Sport,,Komotini (emc-rod),41.098344,25.407006,,50,,1889,123,59,,1600-2400,....5..,,,1408,,, +1404,ROU,ro,SRR R Romnia Actualităţi,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0600-2200,1234567,996,,1413,,, +1404,UKR,uk,UR 1 Persha Prog.,,Izmail/OORTPTS (OD),45.333139,28.872194,,10,,1802,106,65,,0330-2200,1234567,,,8100020,,, +1404,POL,pl,Twoje R Chojnice Plus,,Chojnice/Komin Ciepłowni Rindipol (PM),53.690556,17.591111,,0.8,,769,72,66,,0700-0900,1234567,,,6400010,,, +1404,POL,pl,Twoje R Chojnice Plus,,Chojnice/Komin Ciepłowni Rindipol (PM),53.690556,17.591111,,0.8,,769,72,66,,1700-1900,1234567,,,6400010,,, +1404,POL,pl,Twoje R,,Chojnice/Komin Ciepłowni Rindipol (PM),53.690556,17.591111,,0.8,,769,72,66,,0900-1700,1234567,,,6400010,,, +1404,POL,pl,Twoje R,,Chojnice/Komin Ciepłowni Rindipol (PM),53.690556,17.591111,,0.8,,769,72,66,,1900-0700,1234567,,,6400010,,, +1404,I,it,R Luna 106,,Dinazzano di Casalgrande (re),44.567544,10.732728,,0.15,,897,158,74,,0700-1800,1234567,,,1409,,, +1404,G,,RED (LPAM),,Colchester (EN-ESX),51.9,0.9,,0.001,,378,269,91,,,,17,,1406,,, +1404,IRN,fa,IRIB R Iran,,Ghir=Qir/Karzin (frs),28.420772,53.083806,,10,,4641,106,93,,0000-2400,1234567,,,10800010,,, +1404,KGZ,ky,KTRK Birinchi R,,Jojomel=Dedemel (jld),41.433333,74.366667,,20,,5111,75,95,,0000-1900,1234567,,,47126,,, +1404,KGZ,ky,KTRK Birinchi R,,Ala Mishik (nan),42.4,75,,7,,5088,74,99,,0000-1900,1234567,,,50754,,, +1404,KGZ,ky,KTRK Birinchi R,,Khaidarkan (bat),39.941667,71.338889,,7,,5012,79,99,,0000-1900,1234567,,,47125,,, +1404,KGZ,ky,KTRK Birinchi R,,Naryn (nan),41.433333,76,,7,,5219,74,101,,0000-1900,1234567,,,47127,,, +1404,ARS,ar,BSKSA Idha'atu-i Jeddah,,unknown,24,45.45,,1,,4539,118,102,,,,,,10600016,,, +1404,KGZ,ky,KTRK Birinchi R,,Cholpon-Ata (ykl),42.633333,77.083333,,1,,5208,72,109,,0000-1900,1234567,,,2231,,, +1404,KGZ,ky,KTRK Birinchi R,,Orgochor (ykl),42.366667,78.05,,1,,5289,72,110,,0000-1900,1234567,,,47128,,, +1404,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629722,,20,,7129,78,115,,0100-0400,1234567,,,50745,,, +1404,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629722,,20,,7129,78,115,,1030-1600,1234567,,,50745,,, +1404,MWI,,MBC R 1,,Chitipa (ctp),-9.695958,33.263956,,10,,7336,151,120,,0253-2200,1234567,,,2498,,, +1404,CHN,,Hubei RGD Xinwen Zonghe Pinl,,Jingzhou (HU),30.363889,112.095,,50,,8360,59,124,,,,,,36200683,,, +1404,CHN,,Fujian JGD Interactive FM,,Fuzhou (FJ),26.1,119.4,,50,,9165,57,127,,,,,,36200199,,, +1404,CHN,,Dandong RGD News,,Dandong/LNTS311 (LN),40.182778,124.370833,,10,,8138,45,128,,,,,,50741,,, +1404,CHN,zh,Hubei RGD Xinwen Zonghe Pinl,,Chongyang (HU),31.483333,111.383333,,10,,8220,59,129,,2125-1700,1234567,22,,50742,,, +1404,CHN,zh,Hubei RGD Xinwen Zonghe Pinl,,Suizhou (HU),31.715,113.344722,,10,,8314,58,130,,,,,,36200266,,, +1404,KOR,,HLKP CBS,,Busan (bus),35.110833,129.121667,,10,,8839,44,133,,2000-1600,1234567,,,50758,,, +1404,THA,th,Jor. Sor. 3,,Yasothon/104 Thetsaban 1 Rd (yst),15.803889,104.143056,,10,,9142,74,134,,????-1305,1234567,,,50764,,, +1404,THA,th,Thor. Phor. Neung,,Suphanburi/Ban Samliam (shb),14.463333,100.044722,,10,,8988,78,134,,????-1758,1234567,871,,50763,,, +1404,J,ja,JOVR SBS Shizuoka Hoso,,Shizuoka (chu-shi),34.931389,138.380556,,10,90,9272,38,135,,0000-2400,1234567,,,50753,,, +1404,TWN,,Yi Shih Kuangpo Tientai,,Keelung=Chi-Lung (KLS),25.083333,121.672222,,10,,9387,55,135,,,,,,50767,,, +1404,J,ja,JOQL HBC Hokkaido Hoso,,Kushiro (hok),42.981944,144.403056,,5,,8697,30,136,,0000-2400,1234567,9997,,50752,,, +1404,THA,th,Sor. Wor. Thor. (R Thailand),,Songkhla (sgk),7.138333,100.569722,,10,,9664,82,136,,2200-1600,1234567,,,50762,,, +1404,PHL,,DXAQ-AM Kingdom R,,Davao City (dvs),7.066667,125.6,,15,,11291,62,140,,,,,,33300015,,, +1404,CHN,zh,CNR 1,,Shengsi (ZJ),30.716667,122.45,,1,,8911,52,143,,2025-1805,1234567,,,36200200,,, +1404,PHL,,DYKB-AM Radyo Ronda,,Bacolod City/Sumag (noc),10.6,122.916667,,5,,10801,62,143,,2000-1330,1234567,,,50761,,, +1404,CHN,zh,CNR 1,,Wenling (ZJ),28.366667,121.366667,,1,,9068,54,144,,2025-1805,1234567,,,50743,,, +1404,J,ja,JOVO SBS Shizuoka Hoso,,Hamamatsu (chu-shi),34.730278,137.709444,,1,90,9264,38,145,,,,,,31400006,,, +1404,INS,id,PM7CLA R Puspa Irama,,Belitang (SS-oku),-4.25,104.433333,,1,,10928,86,150,,,,,,50746,,, +1404,INS,id,Gema Prisma R,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,50748,,, +1404,INS,id,Karisma R,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400142,,, +1404,TMP,,R Timor Kmanek,,Dili (dil),-8.55,125.566667,,2.5,,12721,72,152,,2030-1500,1234567,,,50765,,, +1404,J,ja,SBS Shizuoka Hoso,,Haruno (chu-shi),34.983333,137.916667,,0.1,,9248,38,154,,,,,,31400007,,, +1404,J,ja,SBS Shizuoka Hoso,,Kakegawa,34.5,134,,0.1,,9124,41,154,,,,,,31400098,,, +1404,J,ja,SBS Shizuoka Hoso,,Misakubo (chu-shi),35.166667,137.866667,,0.1,,9227,38,154,,,,,,31400008,,, +1404,J,ja,SBS Shizuoka Hoso,,Sakuma (chu-shi),35.066667,137.783333,,0.1,,9234,38,154,,,,,,31400009,,, +1404,J,ja,SBS Shizuoka Hoso,,Tatsuyama (chu-shi),34.95,137.816667,,0.1,,9247,38,154,,,,,,31400010,,, +1404,J,ja,SBS Shizuoka Hoso,,Tenryu (chu-shi),34.933333,137.733333,,0.1,,9245,38,154,,,,,,31400011,,, +1404,AUS,,6TAB Racing R.,,Busselton/Kealy (WA),-33.658936,115.227556,,4,,14126,99,155,,0000-2400,1234567,,,50739,,, +1404,J,ja,SBS Shizuoka Hoso,,Gotenba (chu-shi),35.337778,138.911667,,0.1,,9254,37,155,,,,,,31400005,,, +1404,J,ja,SBS Shizuoka Hoso,,Mishima (chu-shi),35.1,138.916667,,0.1,,9278,37,155,,,,,,31400097,,, +1404,INS,id,RSPD Brebes,,Brebes (JT-bre),-6.883333,109.05,,0.25,,11473,84,158,,,,,,50747,,, +1404,AUS,,2PK,,Parkes/Forbes (NSW),-33.166667,148.207778,,2,,16311,71,165,,0000-2400,1234567,,,50740,,, +1404,NZL,,4XL NZs Rhema,,Invercargill/Tussock Creek (STL),-46.2475,168.468333,,2.5,,18562,70,171,,0000-2400,1234567,,,50759,,, +1410,CAN,xx,CJWI,,Saint-Constant (QC),45.368056,-73.6225,,10,,5614,296,103,,,,9935,,20109311,,, +1410,USA,,WPOP,i,Hartford (CT),41.693056,-72.758333,,5,,5819,292,108,,,,0,,42724,,, +1410,CAN,en,CKSL,,London (ON),42.883056,-81.223333,,10,,6254,298,110,,,,8,,36394,,, +1410,USA,,WELM,,Elmira (NY),42.119722,-76.810278,,5,,6042,295,110,,,,,,41288,,, +1410,USA,,WLSH,,Lansford (PA),40.844444,-75.843611,,5,,6075,293,111,,,,,,42234,,, +1410,USA,,WDOV,,Dover (DE),39.200833,-75.565278,,5,,6180,292,112,,,,,,41199,,, +1410,USA,,KQV,,Pittsburgh (PA),40.523333,-80.011111,,5,,6359,295,114,,,,,,39210,,, +1410,USA,,WSCW,,South Charleston (WV),38.376111,-81.703611,,5,,6629,295,116,,,,,,42970,,, +1410,USA,,WING,,Dayton (OH),39.682222,-84.159167,,5,,6677,297,117,,,,,,41768,,, +1410,CAN,en,CFTE,,Vancouver (BC),49.127778,-123.029444,,50,,7787,327,118,,,,0,,36016,,, +1410,USA,,WIZM,,La Crosse (WI),43.846944,-91.218611,,5,,6760,305,118,,,,982,,41830,,, +1410,USA,,WDOE,,Dunkirk (NY),42.463611,-79.355833,,0.5,,6173,297,122,,,,,,41195,,, +1410,USA,,WZBR,,Brockton (MA),42.058333,-71.044444,,0.156,,5684,291,122,,,,,,42397,,, +1410,USA,,KRWB,,Roseau (MN),48.845278,-95.726111,,1,,6604,312,123,,,,,,39316,,, +1410,USA,,WRMN,,Elgin (IL),42.005833,-88.298611,,1.3,,6740,302,123,,,,,,42881,,, +1410,USA,,WENU,,South Glen Falls (NY),43.329167,-73.648333,,0.103,,5758,294,124,,,,,,41311,,, +1410,USA,,WKKP,,McDonough (GA),33.429722,-84.131111,,2.5,,7176,292,125,,,,,,42030,,, +1410,B,pt,ZYJ614 Rdio Santa Cruz AM,,Santa Cruz/Rua das Marrecas (RN),-6.226944,-36.013333,,5,,7627,226,126,,,,,,36902294,,, +1410,USA,,WHTG,,Eatontown (NJ),40.269444,-74.071944,,0.126,,6006,292,126,,,,9955,,41692,,, +1410,USA,en,WMYR,,Fort Myers (FL),26.623056,-81.855,,5,,7591,286,126,,,,2,,42421,,, +1410,USA,en,WNGL,,Mobile (AL),30.706667,-88.061944,,4.6,,7649,293,127,,,,9990,,42256,,, +1410,BES,,PJF1 Voice of Saba,,Saba (sba),17.616667,-63.25,,1,,7089,265,128,,,,,,40460,,, +1410,DOM,,HICH R 14-10,,Santa Cruz de Barahona (bh),18.183333,-71.083333,,3,,7575,272,128,,0900-0400,1234567,,,37228,,, +1410,USA,,WNER,,Watertown (NY),43.946389,-75.947778,,0.058,,5856,296,128,,,,9899,,42460,,, +1410,USA,,WLAQ,,Rome (GA),34.26,-85.205278,,1,,7176,294,129,,,,,,42123,,, +1410,USA,,WYIS,,McRae (GA),32.056944,-82.865556,,1,,7208,291,129,,,,,,43520,,, +1410,USA,en,WRJD,,Durham (NC),36.028889,-78.85,,0.29,,6633,291,129,,,,,,43061,,, +1410,PTR,,WRSS,,San Sebastian (PR),18.320556,-66.979167,,1,,7283,269,130,,0000-2400,1234567,,,42921,,, +1410,USA,,WBBX,,Kingston (TN),35.880278,-84.515556,,0.5,,7002,295,130,,,,,,40816,,, +1410,USA,,WHAG,,Halfway (MD),39.6175,-77.738056,,0.099,,6286,293,130,,,,,,41592,,, +1410,VEN,,YVSP R Simpatia,,Valera (tjl),9.316667,-70.616667,,10,,8307,266,130,,,,982,,51699,,, +1410,USA,es,WIQR,,Prattville (AL),32.423056,-86.439167,,1,,7404,293,131,,,,,,41795,,, +1410,USA,,WVCB,,Shallotte (NC),33.972222,-78.383889,,0.168,,6765,289,132,,,,,,43284,,, +1410,VEN,,YVST R Turen,,Turen (ptg),9.816667,-69.75,,5,,8204,265,132,,0900-0400,1234567,,,45460,,, +1410,B,pt,ZYH639 Rdio Boas Novas,,Pacajus/Fazenda Guarany (CE),-4.214608,-38.474744,,1,,7552,229,133,,,,,,36902292,,, +1410,USA,,KKLO,,Leavenworth (KS),39.273333,-94.9075,,0.5,,7342,304,133,,,,,,38729,,, +1410,USA,en,KGSO,,Wichita (KS),37.734722,-97.351667,,1,,7610,304,133,,,,,,38955,,, +1410,VEN,,YVLY,,Guiria (suc),10.566667,-62.266667,,1,,7632,260,133,,,,,,45376,,, +1410,USA,en,WRTZ,,Roanoke (VA),37.279722,-79.991389,,0.072,,6608,293,134,,,,,,42856,,, +1410,MEX,es,XEBS-AM La Ms Perrona,,Mxico D.F/Iztacalco (dif),19.388756,-99.125003,,10,,9326,294,135,,,,0,,43789,,, +1410,MEX,es,XEKB-AM,,Guadalajara (jal),20.701894,-103.281375,,10,,9463,298,135,,,,,,44246,,, +1410,USA,,KIIX,,Fort Collins (CO),40.592778,-105.105,,1,,7781,311,135,,,,,,38598,,, +1410,USA,,KOOQ,,North Platte (NE),41.175,-100.751944,,0.5,,7502,309,135,,,,,,39093,,, +1410,USA,,WNWZ,,Grand Rapids (MI),42.987222,-85.623889,,0.048,,6507,301,135,,,,,,42539,,, +1410,USA,en,KDKT,,Beulah (ND),47.2875,-101.762778,,0.189,,7034,314,135,,,,,,38552,,, +1410,CLM,es,HJDU Emisora Cultural Universidad de Antioquia,,Medelln (ant),6.216667,-75.466667,,5,,8908,267,136,,,,997,,37401,,, +1410,USA,,WPCC,,Clinton (SC),34.445,-81.89,,0.1,,6952,292,136,,,,,,42653,,, +1410,B,pt,ZYK691 Rdio Amrica,,So Paulo/Rod. Raposo Tavares (SP),-23.588028,-46.795306,,10,100,9872,227,137,,,,991,,36902300,,, +1410,CLM,es,HJEI R Guadalajara,,Buga (val),3.866667,-76.316667,,5,,9172,267,137,,,,96,,37411,,, +1410,DOM,,HIJJ R Gr-Gr,,Ro San Juan (mts),19.616667,-70.066667,,0.25,,7384,272,137,,1000-0300,1234567,,,37252,,, +1410,DOM,,HIRM R Sol,,Salvalon de Higey (alt),18.616667,-68.7,,0.25,,7375,270,137,,1000-0300,1234567,,,37293,,, +1410,PNR,es,HOH779 R Mensab,,Las Tablas/El Cocal (lsn),7.75,-80.280833,,5,,9103,272,137,,1000-0300,1234567,3,,52351,,, +1410,USA,,KWYO,,Sheridan (WY),44.798333,-106.930833,,0.35,,7501,315,137,,,,,,39773,,, +1410,USA,,WSHY,,Lafayette (IN),40.360556,-86.877222,,0.06,,6787,300,137,,,,,,42125,,, +1410,USA,en,WTIX,,Concord (NC),35.411944,-80.611667,,0.067,,6794,292,137,,,,,,41267,,, +1410,USA,es,KCAL,,Redlands (D) (CA),34.068889,-117.201667,,5,,8981,316,137,,,,,,20016217,,, +1410,DOM,,HIAE R Revelacion en America,,Santo Domingo (sdo),18.566667,-69.916667,,0.25,,7463,271,138,,1200-0200,1234567,,,37196,,, +1410,USA,es,KCAL,,Redlands (N) (CA),34.110833,-117.153056,,4,,8974,316,138,,,,,,38121,,, +1410,HTI,,Voix de Nord-ouest,,Port-de-Paix (nou),19.916667,-72.816667,,0.2,,7546,274,139,,,,,,35631,,, +1410,NCG,,YNRA La Estacion de la Amistad/R Venceremos,,Len (leo),12.433333,-86.9,,3,,9143,280,139,,1000-0200,1234567,,,52214,,, +1410,USA,,KLFD,,Litchfield (MN),45.117222,-94.553611,,0.045,,6841,308,139,,,,,,38804,,, +1410,USA,,WHLN,,Harlan (KY),36.849722,-83.394722,,0.041,,6854,295,139,,,,,,41658,,, +1410,USA,,WIHM,,Taylorville (IL),39.543889,-89.275,,0.063,,6994,300,139,,,,,,41740,,, +1410,USA,,KGRN,,Grinnell (IA),41.744444,-92.705833,,0.047,,7013,304,140,,,,,,38508,,, +1410,USA,,KLEM,,Le Mars (IA),42.817778,-96.163056,,0.05,,7117,307,141,,,,,,38798,,, +1410,B,pt,ZYK294 Rdio Santa Rosa,,Santa Rosa (RS),-27.85,-54.498056,,5,,10676,231,142,,,,,,36902295,,, +1410,USA,,KTCS,,Fort Smith (AR),35.277778,-94.376389,,0.13,,7648,301,142,,,,,,39464,,, +1410,USA,,WCMT,,Martin (TN),36.3625,-88.849167,,0.058,,7228,298,142,,,,,,41041,,, +1410,USA,,WQBQ,,Leesburg (FL),28.786944,-81.890556,,0.09,,7414,287,142,,,,,,42765,,, +1410,CLM,es,HJTY,,Velez (sat),6.016667,-73.666667,,1,,8803,266,143,,,,,,37654,,, +1410,HND,,HRDD,,La Ceiba (atl),15.8,-86.816667,,1,,8844,282,143,,,,,,37744,,, +1410,USA,,KMYC,,Marysville (CA),39.138333,-121.554167,,1,,8692,321,143,,,,9991,,38953,,, +1410,USA,,WZZA,,Tuscumbia (AL),34.708056,-87.693056,,0.051,,7293,296,143,,,,,,43599,,, +1410,B,pt,Rdio Bandeirantes Braslia,,Taguatinga (DF),-15.833333,-48.056944,,1,,9189,232,144,,,,,,36902864,,, +1410,B,pt,ZYH467 Rdio So Gonalo,,So Gonalo dos Campos (BA),-12.440278,-38.944444,,0.5,,8388,226,144,,,,,,36902291,,, +1410,B,pt,ZYH803 Voz do Cerrado,,Santo Antnio do Descoberto (GO),-16.05095,-48.109281,,1,,9213,232,144,,,,,,36902289,,, +1410,CLM,es,HJFS,,Honda (tol),5.216667,-74.783333,,1,,8949,266,144,,,,,,37443,,, +1410,GTM,,TGGH R Xelaj,,Quetzaltenango (qzt),14.616667,-90.583333,,1,,9198,284,144,,1200-0600,1234567,,,40494,,, +1410,HND,,HRSY,,San Lorenzo (val),13.416667,-87.45,,1,,9094,281,144,,,,,,37848,,, +1410,USA,,KERI,,Bakersfield (CA),35.351944,-118.958056,,1,,8941,318,144,,,,76,,38338,,, +1410,USA,,KNAL,,Victoria (TX),28.778611,-97.003611,,0.5,,8364,298,144,,,,,,38961,,, +1410,ARG,es,R Folklorismo,,Jose Leon Suarez (ba),-34.533333,-58.583333,,5,,11509,230,145,,0000-0100,1234567,951,,51862,,, +1410,ARG,es,R Folklorismo,,Jose Leon Suarez (ba),-34.533333,-58.583333,,5,,11509,230,145,,1100-2400,1234567,951,,51862,,, +1410,URG,,CX44 AM Libre,,Montevideo (mo),-34.883333,-56.316667,,5,,11424,228,145,,0800-0400,1234567,986,,36819,,, +1410,USA,,KNTX,,Bowie (TX),33.585556,-97.806944,,0.15,,7993,302,145,,,,,,39024,,, +1410,B,pt,ZYJ799 Rdio Namb,,Ponte Serrada/Fazenda Baia (SC),-26.9,-52,,2,,10455,230,146,,,,,,36902297,,, +1410,EQA,,HCFA4,,Quininde (esm),0.366667,-79.516667,,1,,9697,267,146,,,,,,36930,,, +1410,EQA,,HCMS7,,El Coca (nap),-0.5,-77.95,,1,,9667,265,146,,,,,,37032,,, +1410,MEX,es,XEZHO-AM Aquamarina 1410,,Zihuatanejo (gue),17.637222,-101.563333,,1,,9635,295,146,,,,,,34900026,,, +1410,USA,,KCUL,,Marshall (TX),32.491667,-94.364444,,0.09,,7885,299,146,,,,,,38222,,, +1410,USA,,KLVQ,,Athens (TX),32.156111,-95.841944,,0.139,,8002,300,146,,,,,,38858,,, +1410,USA,,KNVR,,San Saba (TX),31.190556,-98.715278,,0.203,,8255,301,146,,,,,,38002,,, +1410,B,pt,ZYI382 Nova Rdio Clube de Corumb,,Corumb (MS),-19.016278,-57.629053,,1,,10026,238,147,,0000-0100,......7,7,,36902293,,, +1410,B,pt,ZYI382 Nova Rdio Clube de Corumb,,Corumb (MS),-19.016278,-57.629053,,1,,10026,238,147,,0700-2200,12345.7,7,,36902293,,, +1410,B,pt,ZYI382 Nova Rdio Clube de Corumb,,Corumb (MS),-19.016278,-57.629053,,1,,10026,238,147,,0700-2400,.....6.,7,,36902293,,, +1410,EQA,,HCKD5,,Gualaceo (azu),-2.916667,-78.816667,,1,,9938,264,147,,,,,,37000,,, +1410,MEX,es,XEIR-AM La Seal Perfecta,,Ciudad Valles (slp),22.012386,-98.999517,,0.5,,9084,295,147,,,,,,44178,,, +1410,USA,,KRIL,,Odessa (TX),31.825833,-102.355833,,0.235,,8409,304,147,,,,,,39248,,, +1410,B,pt,ZYJ486 Rdio Itaperuna,,Itaperuna/Fazenda do Entroncamento (RJ),-21.198822,-41.919269,,0.5,,9399,224,148,,,,993,,36902290,,, +1410,MEX,es,XEAS-AM Ke Buena,,Nuevo Laredo (tam),27.4935,-99.515428,,0.25,,8628,299,148,,,,,,43735,,, +1410,MEX,es,XECF-AM La Mexicana,,Los Mochis (sin),25.838333,-109.062889,,0.5,,9329,305,148,,,,997,,43833,,, +1410,PRU,,OAX2Y R Heroica,,Trujillo (lal),-8.116667,-79.033333,,1,,10410,261,148,,,,,,40289,,, +1410,PRU,,R Olmos,,Olomos (lam),-6.7,-79.916667,,1,,10345,263,148,,,,2,,2043,,, +1410,B,pt,ZYK246 Rdio Garibaldi,,Garibaldi (RS),-29.23,-51.533333,,1,,10652,228,149,,,,,,36902296,,, +1410,B,pt,ZYK683 Rdio Excelsior,,Rio Claro (SP),-22.410128,-47.585833,,0.5,,9798,228,149,,,,,,36902299,,, +1410,EQA,,HCJN1,,Quito (pic),-0.166667,-78.466667,,0.5,,9673,266,149,,,,,,36991,,, +1410,EQA,,HCRN5,,Guano (chi),-1.6,-78.616667,,0.5,,9809,265,149,,,,,,37099,,, +1410,MEX,es,XECUA-AM R Universidad,,Campeche (cam),19.832222,-90.515631,,0.25,,8737,288,149,,,,,,43884,,, +1410,PRU,,OBZ4V R Universal,,Santa Maria (anc),-10.166667,-77.666667,,1,,10498,259,149,,,,,,40425,,, +1410,USA,,KHCH,,Huntsville (TX),30.715,-95.528333,,0.087,,8107,298,149,,,,,,38534,,, +1410,USA,,WHBT,,Tallahassee (FL),30.484167,-84.286944,,0.018,,7428,290,149,,,,,,41612,,, +1410,EQA,,HCVM2,,Milagro (gua),-2.166667,-79.616667,,0.5,,9927,266,150,,,,,,37173,,, +1410,CLM,es,HKP86,,Chiquinquira (boy),5.616667,-73.816667,,0.15,,8848,266,151,,,,,,35901769,,, +1410,URG,,CW141 R Turistica,,Salto (sa),-31.516667,-57.916667,,1,,11198,231,151,,,,,,36748,,, +1410,USA,,KDBS,,Alexandria (LA),31.273611,-92.428611,,0.03,,7871,297,151,,,,,,38241,,, +1410,ARG,es,R COPE,,Chivilcoy (ba),-34.9,-60.019444,,1,,11618,231,152,,,,,,33000056,,, +1410,BOL,,R Robor,,Robor (scz),-18.333333,-59.75,,0.25,,10088,240,153,,1000-0400,1234567,,,52037,,, +1410,CHL,,CB141 R Quinta Region,,Valparaso (VS),-33.016667,-71.616667,,1,,12104,240,154,,,,,,35734,,, +1410,BOL,,CP124 R Atlantida,,Oruro (oru),-17.966667,-67.116667,,0.25,,10504,246,155,,1100-2400,1234567,,,36635,,, +1410,USA,en,KSMA,,Lompoc (CA),34.663056,-120.382778,,0.077,,9072,318,155,,,,,,39508,,, +1410,B,pt,ZYK284 Rdio Minuano,,Rio Grande (RS),-32.03,-52.09,,0.25,,10944,227,156,,,,,,36902298,,, +1410,CHL,,CD141 R Loncoche,,Loncoche (AR),-39.35,-72.616667,,1,,12699,236,156,,1100-0330,1234567,,,35877,,, +1410,USA,,KBNP,,Portland (OR),45.473333,-122.66,,0.009,,8125,325,159,,,,989,,38071,,, +1410,USA,,KRML,,Carmel (CA),36.536389,-121.903611,,0.016,,8959,320,161,,,,9970,,39267,,, +1413,MDA,ru,Vesti FM,,Grigoriopol/Maiac (TN),47.280189,29.436683,,500,,1733,99,47,,0000-2400,1234567,3,,52480,,, +1413,E,es,RNE R 5,,Girona/Campllong (CAT-GI),41.901139,2.847,,12,,1167,195,58,,0000-2400,1234567,9987,,1415,,, +1413,E,es,RNE R 5,,Vigo/Monte do Castro (GAL-PO),42.230928,-8.726633,,25,,1580,232,59,,0000-2400,1234567,0,,1416,,, +1413,G,en,Premier Christian R,,Dartford Marshes (EN-KNT),51.470917,0.235139,,0.5,,430,263,64,,0000-2400,1234567,9882,,1423,,, +1413,E,es,RNE R 5,,Jan/Las Lagunillas (AND-J),37.795017,-3.772844,,10,,1778,210,65,,0000-2400,1234567,999,,1417,,, +1413,G,en,Premier Christian R,,Heathrow Airport (EN-GTL),51.483917,-0.446833,,0.5,,476,264,65,,0000-2400,1234567,9995,,1424,,, +1413,G,en,BBC R 5 Live,,Berkeley Heath (EN-GLO),51.691889,-2.421194,,0.5,,607,269,66,,0000-0600,1234567,0,,1419,,, +1413,G,en,BBC R 5 Live,,Bourton-on-the-Water (EN-GLO),51.908917,-1.733444,,0.5,,558,271,66,,0000-0600,1234567,0,,1418,,, +1413,G,en,BBC R Gloucestershire,,Berkeley Heath (EN-GLO),51.691889,-2.421194,,0.5,,607,269,66,,0600-2400,1234567,0,,1419,,, +1413,G,en,BBC R Gloucestershire,,Bourton-on-the-Water (EN-GLO),51.908917,-1.733444,,0.5,,558,271,66,,0600-2400,1234567,0,,1418,,, +1413,OMA,dr,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0030-0100,1234567,9998,,1427,,, +1413,OMA,dr,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1800-1900,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0200-0230,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0300-0400,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1300-1400,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1730-1800,1234567,9998,,1427,,, +1413,OMA,en,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1900-2100,1234567,9998,,1427,,, +1413,OMA,fa,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0230-0300,1234567,9998,,1427,,, +1413,OMA,fa,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1600-1700,1234567,9998,,1427,,, +1413,OMA,hi,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0100-0130,1234567,9998,,1427,,, +1413,OMA,hi,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1400-1500,1234567,9998,,1427,,, +1413,OMA,hi,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1700-1730,1234567,9998,,1427,,, +1413,OMA,ur,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,0130-0200,1234567,9998,,1427,,, +1413,OMA,ur,BBC WS,,A'Seela (shq),21.928833,59.6275,,800,110 320,5617,106,84,,1500-1600,1234567,9998,,1427,,, +1413,G,,R Man United (RSL),,Manchester (EN-GTM),53.5,-2.25,,0.001,,602,288,93,,,,,,1425,,, +1413,IRN,fa,IRIB R Fars,,Estahban (frs),29.1225,54.074444,,10,,4649,104,94,,,,2,,1814,,, +1413,IRQ,,Voice of the Iraqi Communist Workers Party,,Baghdad (bgh),33.35,44.383333,,0.5,,3674,110,97,,,,,,1426,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Bortala=Bole/SARFT762 (XJ),44.878611,82.091389,,10,,5377,67,101,,,,,,36200246,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Xinyuan=Knes/SARFT8117 (XJ),43.46,83.263611,,5,,5548,68,106,,,,,,36200250,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Hami=Kumul/XJTS761 (XJ),42.872778,93.511667,,10,,6223,62,109,,,,,,36200247,,, +1413,IND,,AIR North,,Kota (RJ),25.131511,75.942811,,20,,6452,89,109,,0630-0930,1234567,,,51362,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Shache=Yarkant/SARFT8107 (XJ),38.417222,77.225833,,1,,5512,76,112,,,,,,36200249,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Kuqa=Kuche/SARFT8106 (XJ),41.717222,82.895278,,1,,5646,70,113,,,,,,36200248,,, +1413,CHN,ug,Xinjiang RGD Uighur/CNR 13,,Ruoqiang=Qarkilik/SARFT8105 (XJ),39.042222,88.170278,,1,,6179,69,119,,2300-1800,1234567,25,,47259,,, +1413,CHN,,Nei Menggu RGD Nongcun Muqu Guangbo Luye zhi Sheng,,unknown (NM),34.95,104.5,,10,,7515,61,122,,,,,,36201305,,, +1413,BGD,,Bangladesh Betar,,Comilla (cgg),23.356417,91.141,,10,,7630,79,123,,1100-1710,1234567,,,50770,,, +1413,J,ja,JOIF KBC-Kyushu Asahi Hoso,,Fukuoka (kyu-fuk),33.689444,130.403889,,50,,9035,44,127,,0000-1600,......7,999,,50778,,, +1413,J,ja,JOIF KBC-Kyushu Asahi Hoso,,Fukuoka (kyu-fuk),33.689444,130.403889,,50,,9035,44,127,,0000-2400,123456,999,,50778,,, +1413,J,ja,JOIF KBC-Kyushu Asahi Hoso,,Fukuoka (kyu-fuk),33.689444,130.403889,,50,,9035,44,127,,1850-2400,......7,999,,50778,,, +1413,CHN,,Wuzhong RGD,,Wuzhong (NX),38,106.2,,1,,7361,58,131,,,,,,50774,,, +1413,CHN,,Jiangsu RGD Xinwen Pinl,,Yancheng/Zhangzhuang (JS),33.371389,120.085278,,10,,8541,52,132,,,,,,36200262,,, +1413,CHN,,Hegang RGD,,Hegang/HLTS919 (HL),47.316944,130.213333,,1,,7740,37,134,,2125-????,1234567,,,50772,,, +1413,TWN,,BCC News Network,,Miaoli (ML),24.547839,120.807339,,10,,9388,56,135,,0000-2400,1234567,,,50785,,, +1413,CHN,,Tieling RGD News,,Tieling/LNTS325 (LN),42.353611,123.901667,,1,,7918,44,136,,,,,,50773,,, +1413,PHL,,DWRA-AM Super Radyo,,Baguio (bgt),16.4,120.583333,,5,,10125,61,140,,0000-2400,1234567,,,50781,,, +1413,CHN,,Jiangsu RGD Xinwen Pinl,,Binhai (JS),34,119.833333,,1,,8471,52,142,,,,,,36200263,,, +1413,CHN,,Jiangsu RGD Xinwen Pinl,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,2050-1600,1234567,,,50775,,, +1413,INS,id,RRI Pro-1,,Sungailiat (BB),-2.002778,106.111111,,5,,10845,84,143,,2200-1700,1234567,,,50777,,, +1413,PHL,,DYXW-AM Radyo Totoo,,Tacloban City (lyt),11.216667,125,,5,,10869,60,143,,2000-1520,1234567,,,50783,,, +1413,TWN,,BCC News Network,,Puli (NT),23.971111,120.969444,,1,,9450,57,145,,0000-2400,1234567,,,50786,,, +1413,AUS,,2EA SBS National,,Newcastle/Hexham (NSW),-32.855833,151.701556,,5,,16508,66,162,,0000-2400,1234567,,,50768,,, +1413,AUS,,Vision R,,Shepparton/Dookie (VIC),-36.378875,145.537583,,0.5,,16385,78,171,,,,,,50769,,, +1413,NZL,,1ZO Newstalk ZB,,Tokoroa/Wiltsdown (WKO),-38.165,175.793333,,2,,18259,32,171,,,,,,50780,,, +1413,NZL,,3XP R Ferrymead-Nga Hou E Wha,,Christchurch/Ferrymead (CAN),-43.568044,172.699067,,0.9,,18623,52,176,,,,,,50779,,, +1415,INS,id,R Suara Magaga,,Toli-Toli (ST-tol),1.05,120.816667,,1,,11547,70,152,,,,,,50788,,, +1420,CAN,en,CKDY,,Digby (NS),44.634167,-65.777778,,1,,5172,291,109,,,,,,36298,,, +1420,USA,,WCOJ,,Coatesville (PA),40.0225,-75.814722,,5,,6135,292,111,,,,,,41057,,, +1420,USA,,WBSM,,New Bedford (MA),41.650556,-70.916111,,1,,5705,291,114,,,,,,40910,,, +1420,USA,,WHK,,Cleveland (OH),41.358333,-81.6675,,5,,6396,297,114,,,,998,,42883,,, +1420,USA,,WBEC,,Pittsfield (MA),42.444444,-73.278611,,1,,5798,293,115,,,,,,40830,,, +1420,USA,,WLNA,,Peekskill (NY),41.308611,-73.916667,,1,,5920,292,116,,,,,,42194,,, +1420,USA,,WIMS,,Michigan City (IN),41.673889,-86.932778,,5,,6687,301,117,,,,,,41763,,, +1420,USA,,WLIS,,Old Saybrook (CT),41.327222,-72.389167,,0.5,,5822,292,118,,,,,,42174,,, +1420,USA,,KTOE,,Mankato (MN),44.168333,-93.910278,,5,,6883,307,119,,,,8,,39524,,, +1420,USA,,WAMV,,Amherst (D) (VA),37.539722,-79.052778,,2.2,,6528,292,119,,,,,,40717,,, +1420,USA,en,WOC,,Davenport (IA),41.55,-90.476944,,5,,6902,303,119,,,,0,,42557,,, +1420,USA,,WACK,,Newark (NY),43.018889,-77.078056,,0.5,,5992,296,120,,,,998,,40641,,, +1420,USA,,WASR,,Wolfeboro (NH),43.591944,-71.219722,,0.137,,5587,293,121,,,,,,40753,,, +1420,USA,,WRSA,,St. Albans (VT),44.831111,-73.090278,,0.107,,5618,295,123,,,,,,42915,,, +1420,USA,,WVOT,,Wilson (NC),35.735556,-77.883889,,0.5,,6594,290,126,,,,,,43336,,, +1420,USA,,WTCR,,Kenova (WV),38.411667,-82.603611,,0.5,,6682,295,127,,,,,,43122,,, +1420,USA,,WNRS,,Herkimer (NY),43.061111,-75.028889,,0.064,,5863,295,128,,,,,,42505,,, +1420,USA,,WFLT,,Flint (MI),43.021944,-83.643056,,0.142,,6388,300,129,,,,,,41402,,, +1420,USA,,WKSR,,Pulaski (TN),35.199722,-87.075278,,0.95,,7215,296,129,,,,,,42072,,, +1420,VEN,,YVRW R Cardenal,,Carora (lar),10.166667,-70.066667,,10,,8195,266,129,,1000-0400,1234567,,,51701,,, +1420,PTR,es,WUKQ,,Ponce (PR),17.989722,-66.6225,,1,,7287,268,130,,0000-2400,1234567,,,43258,,, +1420,USA,en,KITI,,Centralia-Chehalis (WA),46.702222,-122.932778,,5,,8017,326,130,,,,9960,,38641,,, +1420,VEN,,R Sintonia,,Caracas (dcf),10.5,-66.916667,,5,,7952,263,130,,,,996,,51700,,, +1420,USA,,WINI,,Murphysboro (IL),37.758333,-89.233889,,0.5,,7137,299,131,,,,,,41769,,, +1420,USA,,WBRD,,Palmetto (FL),27.545,-82.574444,,1,,7561,287,133,,,,,,40898,,, +1420,USA,,WKCW,,Warrenton (VA),38.731111,-77.778333,,0.06,,6356,293,133,,,,1,,41978,,, +1420,USA,,WXGM,,Gloucester (VA),37.41,-76.547778,,0.058,,6379,291,133,,,,,,43465,,, +1420,USA,,KGIM,,Aberdeen (SD),45.486667,-98.497222,,0.232,,7020,311,134,,,,,,38483,,, +1420,USA,es,KOTK,,Omaha (NE),41.199722,-95.909444,,0.33,,7237,306,134,,,,,,38545,,, +1420,CLM,,HJAP,,Cartagena (bol),10.466667,-75.5,,5,,8540,270,135,,,,,,37331,,, +1420,USA,,KBTN,,Neosho (MO),36.847778,-94.32,,0.5,,7512,302,135,,,,,,38105,,, +1420,USA,,KJCK,,Junction City (KS),39.025833,-96.81,,0.5,,7470,305,135,,,,,,38663,,, +1420,USA,,WCRE,,Cheraw (SC),34.68,-79.899444,,0.097,,6807,291,135,,,,,,41072,,, +1420,USA,,WJUB,,Plymouth (WI),43.7425,-87.939167,,0.062,,6583,303,135,,,,,,41937,,, +1420,USA,,WMYN,,Mayodan (NC),36.415,-79.987222,,0.068,,6675,292,135,,,,,,42419,,, +1420,USA,es,WDJA,,Delray Beach (FL),26.456111,-80.099444,,0.5,,7489,284,135,,,,,,41165,,, +1420,HTI,,R Messie Continental,,Dessalines (art),19.261111,-72.516667,,0.5,,7581,274,136,,,,,,52123,,, +1420,USA,,KPEL,,Lafayette (LA),30.277222,-92.064167,,1,,7934,296,136,,,,,,39135,,, +1420,USA,,KRLL,,California (MO),38.636667,-92.583333,,0.225,,7262,302,136,,,,,,39261,,, +1420,USA,,WAMV,,Amherst (N) (VA),37.539722,-79.091667,,0.047,,6531,292,136,,,,,,20012561,,, +1420,USA,,WAOC,,St. Augustine (FL),29.85,-81.330556,,0.25,,7289,288,136,,,,,,40729,,, +1420,USA,,WPEH,,Louisville (GA),33.013333,-82.3925,,0.159,,7100,291,136,,,,,,42663,,, +1420,USA,en,KUJ,,Walla Walla (WA),46.067222,-118.401389,,0.9,,7898,323,136,,,,79,,39573,,, +1420,DOM,,HIFD R Oro,,Cotu (szr),19.066667,-70.15,,0.25,,7436,272,137,,,,,,37245,,, +1420,USA,,WQBC,,Vicksburg (MS),32.332222,-90.85,,0.5,,7685,296,137,,,,,,42763,,, +1420,USA,,KULY,,Ulysses (KS),37.548056,-101.363611,,0.5,,7849,307,138,,,,,,39578,,, +1420,USA,,WKWN,,Trenton (GA),34.861944,-85.499722,,0.112,,7145,294,138,,,,,,42095,,, +1420,USA,,WGAS,,South Gastonia (NC),35.182778,-81.208333,,0.041,,6850,292,139,,,,,,41475,,, +1420,USA,,WHBN,,Harrodsburg (KY),37.734167,-84.813889,,0.046,,6871,296,139,,,,,,41609,,, +1420,USA,en,KRIZ,,Renton (WA),47.440278,-122.2025,,0.5,,7918,326,139,,,,,,39250,,, +1420,B,pt,ZYJ609 Rdio Farol,,Alexandria (RN),-6.411944,-38.0175,,0.25,,7745,228,140,,,,,,36902314,,, +1420,USA,,KPOC,,Pocahontas (AR),36.277222,-90.954444,,0.118,,7361,299,140,,,,,,39151,,, +1420,CLM,es,HJBH R Magdalena (Caracol),,Santa Marta (mag),11.166667,-74.15,,1,,8387,270,141,,,,989,,37346,,, +1420,MEX,es,XEXX-AM R Mexicana,,Tijuana/Col. Aviacin (bcn),32.5148,-117.005914,,2,,9119,315,141,,,,183,,45074,,, +1420,USA,,KPIR,,Granbury (TX),32.461944,-97.788611,,0.5,,8090,301,141,,,,,,39141,,, +1420,USA,,KTJS,,Hobart (OK),35.049167,-99.096667,,0.36,,7940,304,141,,,,,,39494,,, +1420,USA,,WACT,,Tuscaloosa (AL),33.175,-87.555,,0.108,,7411,295,141,,,,,,40645,,, +1420,USA,,WATB,,Decatur (GA),33.786944,-84.248056,,0.051,,7154,293,141,,,,,,40755,,, +1420,USA,,WRCG,,Columbus (GA),32.430278,-85.066111,,0.079,,7317,292,141,,,,,,42821,,, +1420,USA,,WCED,,Du Bois (PA),41.140278,-78.830556,,0.005,,6239,295,142,,,,989,,40976,,, +1420,USA,,WEMB,,Erwin (TN),36.116111,-82.446944,,0.02,,6854,293,142,,,,,,41296,,, +1420,CLM,es,HJD23,,Frontino (ant),6.783333,-76.133333,,1,,8904,268,143,,,,,,35901798,,, +1420,CLM,es,HJSN,,Zapatoca (sat),6.816667,-73.266667,,1,,8706,266,143,,,,,,35901791,,, +1420,MEX,es,XEEW-AM W1420,,Matamoros (tam),25.860556,-97.474722,,1,,8649,297,143,,,,,,43983,,, +1420,MEX,es,XEH-AM,,Monterrey (nvl),25.720942,-100.264467,,1,,8830,299,143,,,,,,44096,,, +1420,USA,,KSTN,,Stockton (CA),37.925556,-121.245556,,1,,8795,321,143,,,,9922,,39423,,, +1420,B,pt,ZYJ754 Rdio Guaruj,,Florianpolis/Rua Joo Meirelles (SC),-27.602944,-48.595306,,2.5,,10349,227,144,,,,,,36902301,,, +1420,CLM,es,HJHK R Recuerdos,,Manizales (cal),5.066667,-75.5,,1,,9011,267,144,,,,293,,37473,,, +1420,CLM,es,HJLE,,Ibagu (tol),4.433333,-75.233333,,1,,9048,266,144,,,,,,35901799,,, +1420,EQA,,HCTR3,,El Guabo (oro),-3.25,-79.816667,,2,,10036,265,144,,,,,,37142,,, +1420,GTM,,TGRP R Verdad,,Ciudad de Guatemala (gut),14.616667,-90.583333,,1,,9198,284,144,,1130-0600,1234567,,,40534,,, +1420,HND,,HRSAL,,Trinidad (bar),15.15,-88.166667,,1,,8991,283,144,,,,,,37840,,, +1420,MEX,es,XEPK-AM R Felicidad,,Pachuca (hid),20.123428,-98.735228,,1,,9236,294,144,,,,,,44554,,, +1420,USA,,KBHS,,Hot Springs (AR),34.455278,-93.057222,,0.087,,7639,299,144,,,,,,39813,,, +1420,USA,,KFYN,,Bonham (TX),33.577778,-96.165278,,0.148,,7898,301,144,,,,,,38449,,, +1420,USA,,WVJS,,Owensboro (KY),37.775,-87.158889,,0.02,,7011,298,144,,,,,,43301,,, +1420,B,pt,ZYK308 Rdio Tapense,,Tapes (RS),-30.676389,-51.406667,,3,,10782,227,145,,,,,,36902304,,, +1420,CTR,,TIRP R Pampa,,Nicoya (gnc),10.15,-85.45,,1,,9245,278,145,,1000-0300,1234567,,,52160,,, +1420,MEX,es,XEWE-AM,,Irapuato (gua),20.700922,-101.339836,,1,,9345,296,145,,,,,,45015,,, +1420,EQA,,HCRN1,,Otavalo (imb),0.216667,-78.266667,,1,,9625,266,146,,,,,,37093,,, +1420,HWA,en,KKEA,,Honolulu (HI),21.323889,-157.879722,,5,,11708,345,146,,0000-2400,1234567,1,,38714,,, +1420,MEX,es,XEF-AM Tu Recuerdo,,Ciudad Jurez (chi),31.686111,-106.429722,,0.5,,8649,307,146,,,,,,43988,,, +1420,USA,,KTAN,,Sierra Vista (AZ),31.546389,-110.274722,,0.5,,8868,309,146,,,,5,,39450,,, +1420,USA,en,KMOG,,Payson (AZ),34.266667,-111.315,,0.5,,8671,312,146,,,,414,,38921,,, +1420,B,pt,ZYH504 Rdio Cidade,,Irec (BA),-11.305667,-41.833508,,0.25,,8422,229,147,,,,,,36902309,,, +1420,BOL,,CP254 R Guadalquivir,,Tarija (trj),-21.55,-64.333333,,1.5,,10655,242,147,,0900-0100,1234567,,,52038,,, +1420,EQA,,HCNR3 La Voz de Hu As,,Huaquillas (oro),-3.5,-80.25,,1,,10087,265,147,,,,,,37043,,, +1420,EQA,,HCVN4,,Jipijapa (man),-1.316667,-80.583333,,1,,9918,267,147,,,,,,37174,,, +1420,PRU,,OAX8Z R Oriente,,Yurimaguas (lor),-5,-75.566667,,1,,9902,261,147,,,,,,40360,,, +1420,BOL,,CP49 R Centro,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,1000-0300,123456,,,36701,,, +1420,BOL,,CP49 R Centro,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,1100-0400,......7,,,36701,,, +1420,PRU,,R Ilucan,,Cutervo (caj),-6.366667,-78.85,,1,,10244,262,148,,,,14,,2044,,, +1420,URG,,CW43 R Lavalleja,,Minas (la),-34.366667,-55.266667,,2,,11323,228,148,,0830-0300,1234567,,,36773,,, +1420,USA,,KGNB,,New Braunfels (TX),29.6625,-98.174722,,0.196,,8357,300,148,,,,,,38497,,, +1420,USA,en,KJDL,,Lubbock (TX),33.613611,-101.875,,0.14,,8223,305,148,,,,,,38803,,, +1420,BOL,,R Real Audiencia,,Sucre (cqs),-19.016667,-65.283333,,1,,10484,244,149,,0900-0200,1234567,,,52039,,, +1420,PRU,es,OBZ4G R San Isidro,,Lima (lim),-12,-77,,1,,10615,257,149,,,,,,37000010,,, +1420,B,pt,ZYL286 R.Difusora de So Joo Nepumuceno,,So Joo Nepomuceno (MG),-21.544736,-43.012544,,0.25,,9486,225,151,,,,,,36902308,,, +1420,B,pt,ZYL288 Rdio Cultura de Sete Lagoas,,Sete Lagoas (MG),-19.472661,-44.221394,,0.25,,9343,227,151,,,,,,36902302,,, +1420,EQA,,HCMA6 R Alternativa,,Salcedo (cot),-0.966667,-78.583333,,0.3,,9751,265,151,,,,,,37013,,, +1420,MEX,es,XEWJ-AM WJ Frmula,,Tehuacn (pue),18.457097,-97.422083,,0.25,,9302,292,151,,,,,,45023,,, +1420,PRG,,ZP42 R Guyra Campana,,Horqueta (cnc),-23.3,-57.066667,,0.5,,10392,235,151,,,,0,,45538,,, +1420,ARG,,LRI220 AM Mil420,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,996,,33000009,,, +1420,ARG,,R Magica,,Lans (ba),-34.716667,-58.4,,1,,11516,230,152,,,,,,51864,,, +1420,B,pt,ZYK597 Rdio CRN,,Itatiba (SP),-22.983306,-46.832903,,0.25,,9815,228,152,,,,,,36902305,,, +1420,B,pt,ZYL313 Rdio Montanhs de Botelhos,,Botelhos (MG),-21.646944,-46.391944,,0.25,,9663,228,152,,,,,,36902315,,, +1420,ARG,es,LRJ359 R.Granaderos Puntanos,,San Lus (sl),-33.283333,-66.366667,,1,,11823,236,153,,,,,,51863,,, +1420,B,pt,ZYI397 Rdio Difusora Cacique AM,,Nova Andradina (MS),-22.256983,-53.358783,,0.25,,10089,233,153,,,,,,36902310,,, +1420,B,pt,ZYJ282 Rdio Educadora,,Jacarezinho (PR),-23.122222,-49.944444,,0.25,,9988,230,153,,,,,,36902313,,, +1420,B,pt,ZYK733 Rdio Nova So Manuel,,So Manuel (SP),-22.748333,-48.556667,,0.25,,9880,229,153,,,,,,36902312,,, +1420,B,pt,ZYJ269 Rdio Cultura,,Umuarama (PR),-23.857778,-53.195111,,0.25,,10231,232,154,,,,,,36902317,,, +1420,ARG,,R Genesis 2000,,General Conesa (rn),-40.1,-64.416667,,1,,12313,231,155,,,,,,51865,,, +1420,B,,ZYJ334,,Santo Antnio do Sudoeste (PR),-26.016667,-53.716667,,0.25,,10462,231,155,,,,,,46056,,, +1420,B,pt,ZYJ744 Rdio Cultura,,Campos Novos (SC),-27.38,-51.206944,,0.25,,10459,229,155,,,,,,36902303,,, +1420,CHL,,CC142 R Maule,,Cauquenes (ML),-35.966667,-72.25,,1,,12393,238,155,,1050-0430,1234567,,,35815,,, +1420,USA,,KIGO,,St. Anthony (ID),43.667222,-111.870556,,0.012,,7835,317,155,,,,997,,38591,,, +1420,USA,,KMHS,,Coos Bay (OR),43.368611,-124.203056,,0.041,,8389,325,155,,,,,,38900,,, +1420,B,pt,ZYK258 Rdio 14 de Julho AM,,Jlio de Castilhos (RS),-29.245278,-53.675833,,0.25,,10763,230,156,,,,,,36902318,,, +1420,URG,,CW142,,Artigas (ar),-30.416667,-56.466667,,0.25,,11019,231,156,,,,,,36749,,, +1420,URG,,CX142 R Felicidad,,Paysand (pa),-32.316667,-58.066667,,0.25,,11279,231,157,,1000-0300,1234567,,,36790,,, +1420,CHL,,CB142 R Panamericana,,Santiago (RM),-33.316667,-70.716667,,0.25,,12077,239,160,,1100-0400,1234567,,,35737,,, +1422,D,de,Deutschlandfunk,,Heusweiler/Am Sender (saa),49.345,6.914444,,400,,309,173,34,,0000-2400,1234567,9995,,1432,,, +1422,ALG,ar,R.Coran/R.Mitidja/R.UFC/R.Culture/Chane 3,,Ouled Fayet (16),36.722222,2.951389,,50,,1732,190,57,,0000-2400,1234567,9979,,200002,,, +1422,ROU,ro,SRR R Romnia Actualităţi,,Rmnicu Vlcea (VL),45.104667,24.335333,,7,,1525,114,64,,0000-2400,1234567,9970,,1435,,, +1422,EGY,ar,ERTU R Matruh,,Salum (mth),31.542278,25.162611,,10,,2747,139,74,,0200-2200,1234567,,,1853,,, +1422,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,Ras Gharib (bar),28.350583,33.080583,,10,,3440,130,81,,0200-2200,1234567,,,1854,,, +1422,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,1300-1400,1234567,0,,50794,,, +1422,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,1600-1700,1234567,0,,50794,,, +1422,CHN,kk,CNR 8,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0100-0300,1234567,0,,50794,,, +1422,CHN,kk,CNR 8,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0500-0600,1234567,0,,50794,,, +1422,CHN,kk,CNR 8,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,1100-1200,1234567,0,,50794,,, +1422,CHN,ug,CNR 13,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0600-0700,1234567,0,,50794,,, +1422,CHN,ug,CNR 13,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0800-0900,1234567,0,,50794,,, +1422,CHN,ug,CNR 13,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,2355-0100,1234567,0,,50794,,, +1422,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,1400-1600,1234567,0,,50794,,, +1422,CHN,zh,CNR 1,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0700-0800,1234567,0,,50794,,, +1422,CHN,zh,CNR 1,,Kashgar=Kashi/SAFRT2022 (XJ),39.351667,75.766944,,600,140 n200,5348,76,83,,0900-1100,1234567,0,,50794,,, +1422,ARS,,BSKSA R Saudi Int.,,Ar-Riyad (riy),24.816906,46.865469,,20,,4552,116,90,,0500-2100,1234567,,,47088,,, +1422,CHN,zh,Taiyuan RGD,,Taiyuan (SX),37.75,112.55,,10,,7742,54,124,,2155-1600,1234567,999,,50796,,, +1422,CHN,zh,Zigong RGD,,Zigong/SCTS507 (SC),29.45,104.666667,,10,,7991,65,127,,2220-1505,1234567,,,50798,,, +1422,MWI,,MBC R 1,,Matiya (zom),-15.6,35.366667,,10,,8031,151,127,,0253-2200,1234567,,,47131,,, +1422,J,ja,JORF RF R Nippon,,Yokohama (kan-kgw),35.548333,139.699722,,50,,9266,37,128,,0000-2400,1234567,9993,,50809,,, +1422,TWN,,CBS5,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0600-0900,1234567,,,50817,,, +1422,TWN,en,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0230-0300,1234567,,,50817,,, +1422,TWN,hk,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0200-0230,1234567,,,50817,,, +1422,TWN,id,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0300-0500,1234567,,,50817,,, +1422,TWN,id,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1200-1300,1234567,,,50817,,, +1422,TWN,id,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1500-1600,1234567,,,50817,,, +1422,TWN,tf,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0100-0200,1234567,,,50817,,, +1422,TWN,tf,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0500-0600,1234567,,,50817,,, +1422,TWN,tf,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0900-1000,1234567,,,50817,,, +1422,TWN,th,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1300-1500,1234567,,,50817,,, +1422,TWN,th,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,2300-2400,1234567,,,50817,,, +1422,TWN,vi,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1100-1200,1234567,,,50817,,, +1422,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,0000-0100,1234567,,,50817,,, +1422,TWN,zh,R Taiwan Int.,,Minhsiung (CY),23.565094,120.430875,,50,,9457,57,128,,1000-1100,1234567,,,50817,,, +1422,CHN,zh,Pujiang zhi Sheng,,Shanghai (SH),31.109167,121.514722,,20,,8824,52,130,,2200-1600,1234567,,,50795,,, +1422,THA,th,Sor. Wor. Phor. 4,,Phitsanulok (psl),16.813333,100.255,,10,,8797,77,133,,2200-1600,1234567,,,50815,,, +1422,THA,th,Phon Neung Ror. Or.,,Bangkok/Phitsanulok Road (bmp),13.766708,100.510042,,10,,9079,78,134,,0000-2400,1234567,,,50813,,, +1422,THA,th,Sor. Wor. Thor. (R Thailand),,Amnat Charoen (ach),15.903333,104.618889,,10,,9165,74,134,,,,,,50814,,, +1422,PHL,,DYZD-AM,,Ubay/Tapon (boh),10.05,124.466667,,5,,10946,61,143,,2100-1500,1234567,2,,50812,,, +1422,AFS,el,Hellenic R,,Bedfordview (GT),-26.150936,28.129567,,1,,8956,160,144,,0000-2400,1234567,18,,2529,,, +1422,PHL,,DXMU-AM,,Musuan (buk),7.816667,125.016667,,5,,11186,62,144,,,,,,50810,,, +1422,TWN,,Chien Kuo Kuangpo Tientai,,Kuanyin=Guanin (TY),25.015556,121.1175,,1,,9362,56,145,,????-1615,......7,,,50816,,, +1422,TWN,,Chien Kuo Kuangpo Tientai,,Kuanyin=Guanin (TY),25.015556,121.1175,,1,,9362,56,145,,????-1700,123456,,,50816,,, +1422,PHL,,DZOR-AM Radyo Olongapo,,Olongapo City (zmb),14.816667,120.283333,,1,,10253,62,148,,,,,,50790,,, +1422,INS,,Refa Music R 1422,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,0050-????,1234567,74,,50808,,, +1422,INS,id,R PMA,,Kraksaan (JI),-7.766667,113.416667,,1,,11846,81,153,,,,92,,35400003,,, +1422,CHR,,ABC R National,,Phosphate Hill (VLU2) (WA),-10.433333,105.683333,,0.5,,11553,89,155,,0000-2400,1234567,,,47119,,, +1422,AUS,,6GS,,Wagin/Brockman Road (WA),-33.331658,117.357611,,2,,14245,97,158,,0000-2400,1234567,,,50793,,, +1422,AUS,el,3XY R Hellas,,Melbourne/Truganina (VIC),-37.828211,144.7589,,5,,16438,80,161,,0000-2400,1234567,9960,,50791,,, +1422,AUS,,4AM,,Port Douglas (QLD),-16.499444,145.451111,,1,,14675,58,162,,0000-2400,1234567,9967,,50792,,, +1430,CAN,,CHKT,,Toronto Island (ON),43.6175,-79.380556,,50,,6089,298,101,,,,1,,36435,,, +1430,USA,,WNSW,,Newark (NJ),40.849722,-74.183056,,7,,5970,292,108,,,,9872,,42513,,, +1430,USA,en,WENE,,Endicott (NY),42.082222,-76.031389,,5,,5996,294,110,,,,1,,41305,,, +1430,USA,,WVAM,,Altoona (PA),40.495,-78.401667,,5,,6261,294,113,,,,9977,,43278,,, +1430,USA,es,WKOX,i,Everett (MA),42.403056,-71.074722,,1,,5662,292,114,,,,0,,43474,,, +1430,USA,,WDJS,,Mount Olive (NC),35.200278,-78.123056,,5,,6652,290,117,,,,,,41167,,, +1430,USA,,WXNT,,Indianapolis (IN),39.838333,-86.198889,,5,,6788,299,118,,,,1,,43484,,, +1430,USA,,WNAV,,Annapolis (MD),38.983333,-76.5225,,1,,6257,292,120,,,,,,42430,,, +1430,USA,,KZQZ,,St. Louis (MO),38.535833,-90.190556,,5,,7130,300,121,,,,,,42925,,, +1430,USA,,WDEX,,Monroe (NC),34.984444,-80.603889,,2.5,,6827,291,121,,,,,,41154,,, +1430,USA,,WEIR,,Weirton (WV),40.445,-80.628056,,1,,6403,296,121,,,,,,41272,,, +1430,PTR,es,WNEL,,Caguas (PR),18.248056,-66.023611,,5,,7224,268,122,,0000-2400,1234567,988,,42458,,, +1430,USA,,WFOB,,Fostoria (OH),41.101667,-83.399722,,1,,6521,298,122,,,,,,41422,,, +1430,VEN,,YVTP R Bahia,,Puerto La Cruz (azg),10.066667,-64.766667,,25,,7844,261,122,,0000-2400,1234567,6,,2152,,, +1430,USA,,WFHK,,Pell City (AL),33.586111,-86.326389,,5,,7301,294,123,,,,,,41381,,, +1430,USA,,WRXO,,Roxboro (NC),36.367778,-78.999444,,1,,6616,291,123,,,,,,42940,,, +1430,USA,,WBEV,,Beaver Dam (WI),43.428611,-88.8925,,1,,6662,303,124,,,,,,40836,,, +1430,USA,,WEEF,,Highland Park (IL),42.139444,-87.885278,,0.75,,6706,302,125,,,,,,41256,,, +1430,USA,,WLTG,,Panama City (FL),30.165278,-85.588611,,5,,7538,291,125,,,,,,42241,,, +1430,DOM,,HIJC R Emanuel,,Santiago de los Caballeros (sto),19.45,-70.7,,3,,7441,272,127,,0000-2400,1234567,1,,52248,,, +1430,USA,,KTBZ,,Tulsa (OK),36.236667,-95.955278,,5,,7658,302,127,,,,,,39460,,, +1430,USA,,WION,,Ionia (MI),43.004444,-85.085833,,0.33,,6475,301,127,,,,,,41782,,, +1430,USA,,WOWW,,Germantown (TN),35.213889,-89.796111,,2.5,,7380,298,127,,,,9941,,42633,,, +1430,USA,,WPLN,,Madison (TN),36.271944,-86.714722,,1,,7106,296,128,,,,0,,42706,,, +1430,VEN,,Llanerisima,,Guacara (cbb),10.166667,-68,,10,,8055,264,128,,0930-0400,1234567,908,,2269,,, +1430,USA,,KEZW,,Aurora (CO),39.563056,-104.929444,,5,,7862,310,129,,,,991,,38366,,, +1430,USA,,WYMC,,Mayfield (KY),36.786667,-88.654444,,1,,7181,298,129,,,,,,43529,,, +1430,VEN,,YVTM R Caicara,,Caicara del Orinoco (blv),7.65,-66.166667,,10,,8151,261,129,,,,,,45471,,, +1430,USA,,WRMG,,Red Bay (AL),34.414167,-88.136389,,1,,7345,296,130,,,,,,42880,,, +1430,USA,,KRGI,,Grand Island (NE),40.871389,-98.274167,,1,,7395,307,131,,,,,,39244,,, +1430,USA,en,KLO,,Ogden (UT),41.046944,-112.026944,,5,,8082,316,131,,,,0,,38834,,, +1430,USA,,KNSP,,Staples (MN),46.359444,-94.781944,,0.199,,6753,309,132,,,,,,39018,,, +1430,USA,,KSHJ,,Houston (D) (TX),29.755833,-95.276944,,5,,8175,298,132,,,,,,38192,,, +1430,USA,,KYKN,,Keizer (OR),44.926667,-122.955278,,5,,8189,325,132,,,,10,,39852,,, +1430,USA,en,WLKF,,Lakeland (FL),28.040833,-81.935556,,1,,7478,287,132,,,,,,42180,,, +1430,B,pt,ZYK707 Rdio Imaculada Conceio,,So Roque (SP),-23.538056,-47.065833,,25,,9881,227,133,,,,,,36902328,,, +1430,CTR,es,R San Carlos,,Ciudad Quesada (alj),10.333333,-84.433333,,12,,9160,277,133,,1100-0400,1234567,91,,52161,,, +1430,USA,en,WRDN,,Durand (WI),44.585278,-91.912222,,0.152,,6740,306,133,,,,,,42787,,, +1430,HTI,,R MBC,,Port-au-Prince (oue),18.516667,-72.316667,,0.8,,7631,273,134,,,,,,35640,,, +1430,USA,,KMRB,,San Gabriel (CA),34.118889,-118.081667,,9.8,,9018,316,134,,,,996,,38927,,, +1430,USA,,WNFO,,Sun City Hilton Head (SC),32.356667,-80.923056,,0.21,,7059,289,134,,,,,,42465,,, +1430,USA,en,WPNI,,Amherst (MA),42.356944,-72.486944,,0.011,,5754,293,134,,,,,,42718,,, +1430,CLM,es,HJPW,,Barranquilla (atl),10.966667,-74.8,,5,,8449,270,135,,,,,,35901804,,, +1430,CLM,es,HJQX,,Corozal (suc),9.316667,-75.3,,5,,8626,269,135,,,,,,35901810,,, +1430,PNR,es,R Union,,Ro Abajo/Bloiser (pnm),9.021111,-79.488889,,7.5,,8938,272,135,,,,,,52352,,, +1430,USA,,WBLR,,Batesburg (SC),33.880278,-81.554444,,0.163,,6976,291,135,,,,,,40877,,, +1430,USA,,WGFS,,Covington (GA),33.620556,-83.884444,,0.212,,7145,292,135,,,,,,41502,,, +1430,USA,,WKEX,,Blacksburg (VA),37.2325,-80.444444,,0.062,,6640,293,135,,,,,,41998,,, +1430,USA,en,KBRC,,Mount Vernon (WA),48.422778,-122.352778,,1,,7830,327,135,,,,995,,38081,,, +1430,USA,en,KCLK,,Asotin (WA),46.316389,-117.04,,1,,7818,322,135,,,,1,,38173,,, +1430,B,pt,ZYJ604 Rdio Libertadora Mossoroense,,Mossor (RN),-5.207222,-37.313889,,0.5,,7590,228,136,,,,,,36902327,,, +1430,CLM,,HJQX,,Sincelejo (suc),9.266667,-75.366667,,5,,8635,269,136,,,,,,37632,,, +1430,USA,,KEES,,Gladewater (TX),32.529444,-94.880556,,1,,7912,299,136,,,,,,38317,,, +1430,USA,,KYNO,,Fresno (CA),36.890833,-119.658333,,5,,8825,319,136,,,,9967,,38391,,, +1430,USA,,WCLT,,Newark (OH),40.033889,-82.402222,,0.048,,6543,297,136,,,,,,41030,,, +1430,USA,,WHAN,,Ashland (VA),37.746111,-77.495556,,0.031,,6414,291,136,,,,,,41596,,, +1430,USA,,WOIR,,Homestead (FL),25.452222,-80.516944,,0.5,,7600,284,136,,,,2,,42578,,, +1430,CLM,es,HJKU R 1430 AM,,Bogot D. C. (bdc),4.566667,-74.066667,,5,,8957,265,137,,,,997,,37534,,, +1430,USA,,KBRK,,Brookings (SD),44.303333,-96.766944,,0.1,,7026,309,137,,,,,,38086,,, +1430,USA,,WDIC,,Clinchco (VA),37.145,-82.389444,,0.054,,6768,294,137,,,,,,41161,,, +1430,B,pt,ZYJ200 RB2,,Curitiba/Estrada da Graciosa (PR),-25.393961,-49.171222,,10,,10166,228,138,,,,2,,36902319,,, +1430,USA,,KALV,,Alva (OK),36.818333,-98.643889,,0.5,,7762,305,138,,,,,,37941,,, +1430,USA,,KMRC,,Morgan City (LA),29.750833,-91.173333,,0.5,,7924,295,139,,,,,,38928,,, +1430,USA,,KSHJ,,Houston (N) (TX),29.755556,-95.276944,,1,,8175,298,139,,,,,,20012590,,, +1430,USA,,KVVN,,Santa Clara (CA),37.329722,-121.866111,,2.5,,8880,321,139,,,,11,,39677,,, +1430,USA,,WCMY,,Ottawa (IL),41.348056,-88.804167,,0.038,,6822,302,139,,,,,,41043,,, +1430,USA,,WMNC,,Morganton (NC),35.7525,-81.721944,,0.046,,6837,293,139,,,,,,42357,,, +1430,USA,,WDAL,,Dalton (GA),34.789722,-84.953333,,0.072,,7117,294,140,,,,,,41121,,, +1430,USA,,WXAM,,Buffalo (KY),37.530278,-85.713611,,0.042,,6943,297,140,,,,,,43454,,, +1430,USA,,KCRX,,Roswell (NM),33.436389,-104.605,,1,,8391,306,141,,,,,,38208,,, +1430,USA,,WCWC,,Williamsburg (KY),36.723333,-84.139722,,0.032,,6911,295,141,,,,,,41348,,, +1430,CLM,es,HJBP,,Pamplona (nsa),7.366667,-72.65,,1,,8615,266,142,,,,,,37354,,, +1430,USA,,KASI,,Ames (IA),42.038333,-93.681389,,0.032,,7044,305,142,,,,,,37971,,, +1430,VEN,,YVIT,,La Grita (tch),8.116667,-71.9,,1,,8499,266,142,,,,,,45339,,, +1430,CLM,es,HJMF,,Puerto Berrio (ant),6.516667,-74.4,,1,,8809,267,143,,,,,,37564,,, +1430,CLM,es,HJPK,,Yarumal (ant),6.966667,-75.466667,,1,,8842,268,143,,,,,,37624,,, +1430,HND,,HRSJ R Futura,,Tocoa (col),15.65,-86,,1,,8802,282,143,,,,99,,37843,,, +1430,CLM,es,HJIU,,Riosucio (cal),5.4,-75.666667,,1,,8993,267,144,,,,,,37500,,, +1430,CLM,es,HKX73,,Pereira (ris),4.816667,-75.7,,1,,9047,267,144,,,,,,35901811,,, +1430,GTM,,TGAG LV de Huehuetenango,,Huehuetenango (huh),15.316667,-91.466667,,1,,9194,286,144,,1100-0400,1234567,,,40474,,, +1430,HND,,HRIC,,Puerto Cortes (cor),15.466667,-87.916667,,1,,8946,283,144,,,,,,37768,,, +1430,HND,,HRVM R Maranatha,,Santiago de Puringla (lap),14.366667,-87.866667,,1,,9039,282,144,,,,,,37865,,, +1430,NCG,,YNLE R Liberacion La Tayacana,,Estel (esl),13.066667,-86.333333,,1,,9050,280,144,,1100-0300,1234567,,,45229,,, +1430,USA,,WTMN,,Gainesville (FL),29.623889,-82.288611,,0.045,,7370,288,144,,,,,,43176,,, +1430,B,pt,ZYJ671 Rdio Caiari,,Porto Velho (RO),-8.776644,-63.882433,,1,,9470,249,145,,,,7,,36902326,,, +1430,CLM,es,HJEG,,Popayn (cau),2.45,-76.616667,,1,,9317,266,145,,,,,,37410,,, +1430,MEX,es,XETT-AM R Tlaxcala,,Tlaxcala (tlx),19.300394,-98.231514,,1,,9278,293,145,,,,,,44864,,, +1430,USA,,KAOL,,Carrollton (MO),39.332778,-93.5375,,0.027,,7259,303,145,,,,,,37957,,, +1430,EQA,,HCJC6,,Guaranda (bol),-1.55,-78.966667,,1,,9828,265,146,,,,,,36982,,, +1430,MEX,es,XECOC-AM,,Colima (col),19.257867,-103.725008,,1,,9621,297,146,,,,,,43860,,, +1430,MEX,es,XEOX-AM Exa,,Ciudad Obregn (son),27.493064,-109.936217,,0.5,,9225,307,147,,,,,,44520,,, +1430,PRG,,ZP35 La Voz de Misiones,,San Juan Bautista (mis),-26.616667,-57.133333,,1.5,,10703,234,148,,1000-0130,1234567,,,45531,,, +1430,PRU,,OBX9H,,Bagua Grande/Cerro La Esperanza (ama),-5.75,-78.433333,,1,,10161,262,148,,,,,,37000080,,, +1430,USA,,KKOZ,,Ava (MO),36.93,-92.655278,,0.02,,7408,301,148,,,,,,38749,,, +1430,MEX,es,XERAC-AM R Frmula,,Campeche (cam),19.843611,-90.533333,,0.25,,8737,288,149,,,,,,44649,,, +1430,PRU,,OAZ3H,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000090,,, +1430,PRU,es,OAU6M R Lider,,Tacna (tac),-18,-70.25,,1,,10704,249,149,,,,3,,37000037,,, +1430,USA,,KHBM,,Monticello (AR),33.605,-91.787222,,0.03,,7635,298,149,,,,,,38530,,, +1430,EQA,,HCMB2,,Guayaquil (gua),-2.2,-79.9,,0.5,,9949,266,150,,,,,,37016,,, +1430,B,pt,ZYL371 Rdio Planalto de Perdizes,,Perdizes (MG),-19.353889,-47.278056,,0.25,,9487,230,151,,,,7,,36902324,,, +1430,EQA,,HCAA1,,Quito (pic),-0.166667,-78.5,,0.3,,9675,266,151,,,,,,36829,,, +1430,MEX,es,XEWD-AM La Grande,,Ciudad Miguel Alemn (tam),26.3827,-99.049181,,0.15,,8698,298,151,,,,14,,45013,,, +1430,URG,es,CW25 R Durazno,,Durazno (du),-33.403333,-56.573333,,1,,11301,229,151,,0900-0300,1234567,,,36765,,, +1430,ARG,,R Ilusiones,,Berazategui (ba),-34.766667,-58.216667,,1,,11511,230,152,,,,,,47303,,, +1430,ARG,,R Imagen,,Castelar (ba),-34.666667,-58.666667,,1,,11526,230,152,,,,,,51868,,, +1430,ARG,es,R 2001,,Quilmes Oeste (ba),-34.716667,-58.266667,,1,,11509,230,152,,,,,,33000022,,, +1430,ARG,es,R Jos de San Martn,,El Jagel (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51867,,, +1430,ARG,es,R Shekin,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000020,,, +1430,ARG,es,R Sonidos del Cielo,,Rafael Castillo (ba),-34.716667,-58.616667,,1,,11528,230,152,,,,,,33000021,,, +1430,B,pt,ZYK666 Rdio Transmissora de Serra Negra,,Serra Negra (SP),-22.612503,-46.689956,,0.25,,9772,228,152,,,,,,36902321,,, +1430,B,pt,ZYL239 Rdio Clube de Guaxup,,Guaxup (MG),-21.3,-46.716667,,0.25,,9646,228,152,,,,,,36902323,,, +1430,PRU,,OAZ4V R Universal,,El Tambo (jun),-12.116667,-75.266667,,0.5,,10510,256,152,,,,,,40375,,, +1430,ARG,es,La Red Pampeana,,General Pico (lp),-35.666667,-63.766667,,1,,11888,233,153,,,,,,33000052,,, +1430,BOL,,CP141 R Nuestra Senora de Burgos,,Mizque (cbb),-17.933333,-65.35,,0.25,,10391,245,154,,1000-0200,1234567,,,36646,,, +1430,CHL,,CC143 R Chilena Solonoticias,,Rancagua (LI),-34.166667,-70.7,,1,,12149,239,154,,1030-0500,1234567,,,35816,,, +1430,EQA,,HCCV3,,Loja (loj),-4,-79.166667,,0.2,,10057,264,154,,,,,,36894,,, +1430,B,pt,ZYK366 Rdio Guarita,,Coronel Bicaco (RS),-27.716667,-53.716667,,0.25,,10622,230,155,,,,,,36902320,,, +1430,BOL,,R Centinela,,Tupiza (pts),-21.416667,-65.716667,,0.25,,10727,243,155,,,,,,52041,,, +1430,B,,ZYK224,,Canguu (RS),-31.366667,-52.666667,,0.25,,10911,228,156,,,,,,46259,,, +1430,USA,en,KROO-AM,,Breckenridge (TX),32.792222,-98.94,,0.017,,8128,302,156,,,,,,39282,,, +1430,ARG,es,LT24 R San Nicols,,San Nicols de los Arroyos (ba),-33.316667,-60.216667,,0.25,,11485,232,158,,0000-2400,1234567,981,,40176,,, +1430,ARG,es,LV26 R Ro Tercero,,Ro Tercero (cb),-32.166667,-64.116667,,0.25,,11597,235,158,,0000-2400,1234567,,,40250,,, +1430,USA,,KWST,,El Centro (CA),32.8075,-115.538333,,0.036,,9020,314,158,,,,,,39757,,, +1430,ARG,,LRI235 R Balcarce,,Balcarce (ba),-37.825425,-58.227722,,0.25,,11790,228,159,,0900-0300,1234567,,,51866,,, +1430,USA,,KJAY,,Sacramento (CA),38.504722,-121.560833,,0.02,,8753,321,160,,,,9979,,38658,,, +1431,I,it,RAI Puglia,,Foggia/Istituto Cerealicoltura (fg),41.464653,15.500292,,5,,1369,146,64,,0620-0630,123456,25,,1446,,, +1431,I,it,RAI Puglia,,Foggia/Istituto Cerealicoltura (fg),41.464653,15.500292,,5,,1369,146,64,,1110-1130,123456,25,,1446,,, +1431,I,it,RAI Puglia,,Foggia/Istituto Cerealicoltura (fg),41.464653,15.500292,,5,,1369,146,64,,1140-1200,......7,25,,1446,,, +1431,I,it,RAI R1,,Foggia/Istituto Cerealicoltura (fg),41.464653,15.500292,,5,,1369,146,64,,0000-2400,1234567,25,,1446,,, +1431,G,en,Gold,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.35,,401,264,66,,0000-2400,1234567,0,,1436,,, +1431,G,en,Gold,,Reading/Manor Farm (EN-BER),51.432056,-0.979639,,0.14,,514,264,71,,0000-2400,1234567,6,,1437,,, +1431,IRN,fa,IRIB R Iran,,Esfahan/Habibabad (esf),32.836839,51.771592,,200,,4200,103,76,,0030-1830,1234567,89,,1447,,, +1431,GRC,el,1431 AM,,Thessaloniki/Aristotle University (cmc-tsk),40.626222,22.954722,,0.28,,1792,129,80,,,,,,1445,,, +1431,IRN,fa,IRIB R Fars,,Lamerd (frs),27.325889,53.224194,,50,,4741,107,87,,0000-2400,1234567,,,46836,,, +1431,DJI,ar,R Sawa,,Djibouti/Doraleh (djb),11.566597,43.067114,,300,325,5575,130,88,,1630-0400,1234567,0,,1863,,, +1431,DJI,so,Voice of America,,Djibouti/Doraleh (djb),11.566597,43.067114,,300,325,5575,130,88,,1600-1630,1234567,0,,1863,,, +1431,G,,Chichester Hospital R (LPAM),,Chichester (EN-WSU),50.833333,-0.8,,0.001,,519,257,92,,,,,,1441,,, +1431,G,,University R Falmer (LPAM),,Brighton (EN-ESU),50.833333,-0.166667,,0.001,,477,255,92,,,,,,1443,,, +1431,G,en,HBS R,,Sheffield/Northern General (EN-SYK),53.410556,-1.469167,,0.001,,549,288,92,,,,13,,2800007,,, +1431,G,,Viva,,Penketh (EN-CHE),53.383333,-2.666667,,0.001,,627,287,93,,,,,,2575,,, +1431,G,,Apple AM (LPAM),,Taunton (EN-SOM),51.016667,-3.1,,0.001,,668,263,94,,,,,,1440,,, +1431,G,en,Xtreme AM (LPAM),,Swansea (WA-SWA),51.633333,-3.95,,0.001,,713,270,94,,,,,,1444,,, +1431,BGD,,Bangladesh Betar,,Bandorban=Bandarban (cgg),22.220056,92.202222,,10,,7796,79,125,,0530-1030,1234567,,,36300001,,, +1431,CHN,,Shijiazhuang RGD Changshu Yule Guangbo,,Shijiazhuang (HB),37.833333,114.666667,,10,,7851,53,126,,0825-1500,1234567,,,50825,,, +1431,CHN,,Shijiazhuang RGD Changshu Yule Guangbo,,Shijiazhuang (HB),37.833333,114.666667,,10,,7851,53,126,,2155-0600,1234567,,,50825,,, +1431,CHN,zh,Huaibei RGD Xinwen,,Huaibei (AH),33.956972,116.783444,,10,,8309,54,130,,2115-1500,1234567,,,36200678,,, +1431,CHN,,Fengzhen RGD,,Fengzhen (NM),40.433333,113.15,,1,,7543,52,132,,,,,,36200679,,, +1431,THA,th,Sor. Thor. Ror. 6 KCS R,,Songkhla/Naval Base (sgk),7.195278,100.604167,,20,,9662,82,133,,2300-1305,1234567,,,50845,,, +1431,CHN,,Songyuan RGD News,,Songyuan (JL),45.1625,124.849778,,1,,7706,42,134,,,,,,50826,,, +1431,THA,th,Thor. Or. 03,,Korat=Nakhon Ratchasima (nrt),14.925,102.083333,,10,,9083,76,134,,????-1702,1234567,,,50844,,, +1431,TWN,,Han Sheng Kuangpo Tientai,,Chingsui (TC),24.15,120.683333,,10,,9417,57,135,,0655-0105,1234567,,,50846,,, +1431,J,ja,JOVF WBS Wakayama Hoso,,Wakayama (kns-wak),34.248611,135.144167,,5,,9199,41,137,,0000-2400,1234567,,,50839,,, +1431,J,ja,JOZF GBS Gifu Hoso,,Gifu (chu-gif),35.423333,136.702222,,5,,9153,39,137,,0000-2400,1234567,,,50832,,, +1431,CHN,,Danjiangkou RGD,,Danjiangkou (HU),32.548889,111.519722,,1,,8135,58,138,,,,,,50822,,, +1431,CHN,,Jinshi RGD,,Jinshi (HN),29.633333,111.883333,,1,,8412,60,141,,,,,,50824,,, +1431,CHN,,Huangshan RGD,,Huangshan (AH),30.15,118.266667,,1,,8733,55,143,,0920-1400,1234567,4,,50847,,, +1431,CHN,,Huangshan RGD,,Huangshan (AH),30.15,118.266667,,1,,8733,55,143,,2200-0600,1234567,4,,50847,,, +1431,PHL,,DYRS-AM,,San Carlos (noc),10.483333,123.416667,,5,,10842,62,143,,2100-1600,1234567,,,50819,,, +1431,J,,JOHL BSS, Sanin Hoso,,Tottori (chg-tot),35.5,134.2,,1,,9036,41,144,,0000-2400,1234567,,,50837,, +1431,J,,NBC, Nagasaki Hoso,,Fukue (kyu-nag),32.666667,128.85,,1,,9057,46,144,,0000-2400,1234567,,,50831,, +1431,J,ja,BSS Sanin Hoso,,Izumo (chg-shi),35.355,132.729167,,1,135,8984,42,144,,0000-2400,1234567,,,50834,,, +1431,J,ja,JOWW RFC R.Fukushima,,Iwaki (toh-fuk),37.059167,140.908611,,1,,9164,35,144,,0000-2400,1234567,,,50833,,, +1431,J,,GBS Gifu Hoso,,Ena (chu-gif),35.45,137.45,,0.5,,9182,38,147,,0000-2400,1234567,,,50830,,, +1431,J,,GBS Gifu Hoso,,Tajimi (chu-gif),35.333333,137.166667,,0.1,,9181,39,154,,0000-2400,1234567,,,50836,,, +1431,J,,JOHN BSS, Sanin Hoso,,Masuda (chg-shi),34.683333,131.833333,,0.1,,9007,43,154,,0000-2400,1234567,,,50835,, +1431,J,ja,WBS Wakayama Hoso,,Kushimoto,34.5,134,,0.1,,9124,41,154,,,,,,31400099,,, +1431,AUS,,Vision R,,Kalgoorlie/RFDS Radio Base (WA),-30.725556,121.466667,,2,,14324,92,158,,,,,,50820,,, +1431,AUS,,2RN ABC National,,Wollongong/Windang (NSW),-34.529167,150.864028,,2,,16591,69,166,,0000-2400,1234567,,,50821,,, +1431,NZL,,2XCK R Kidnappers,,Napier/Pakowhai (HKB),-39.561111,176.866111,,2,,18439,31,172,,,,,,50842,,, +1440,LUX,de,China R Int.,,Marnach (gld),50.045833,6.078333,,600,324,231,186,32,,0700-1200,1234567,0,,1452,,, +1440,LUX,de,China R Int.,,Marnach (gld),50.045833,6.078333,,600,324,231,186,32,,1900-2400,1234567,0,,1452,,, +1440,LUX,de,RTL R,,Marnach (gld),50.045833,6.078333,,600,324,231,186,32,,0400-0700,1234567,0,,1452,,, +1440,LUX,de,RTL R,,Marnach (gld),50.045833,6.078333,,600,324,231,186,32,,1200-1900,1234567,0,,1452,,, +1440,RUS,ru,R Zvezda,,Sankt-Peterburg/ul. Sofiyskaya (SP),59.855667,30.418778,,10,,1710,50,64,,0245-2200,1234567,3,,1454,,, +1440,SRB,sr,R Beograd 1,,Jagodina (Srb-pmr),43.973833,21.324472,,4,,1426,123,65,,0000-2400,1234567,4,,1455,,, +1440,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ras al-Khair (Ras al-Zawr) (shy),27.474444,49.301944,,1600,,4475,111,70,,0000-2400,1234567,5,,1451,,, +1440,NIG,,Adamawa BC,,Yola (adw),9.189933,12.525986,,58,,4805,171,87,,0430-2300,1234567,,,2532,,, +1440,CAF,,R Centrafrique,,Bangui (bgf),4.326278,18.524306,,20,,5430,164,98,,0430-1700,1234567,,,2531,,, +1440,RUS,ru,R Rossii,,Turochak (RA),52.255556,87.133333,,5,,5203,56,102,,2100-1700,1234567,,,6700068,,, +1440,RUS,ru,R Rossii,,Ust-Koksa=Kk-Suu (RA),50.268889,85.666667,,5,,5243,59,102,,2100-1700,1234567,,,6700067,,, +1440,RUS,ru,R Rossii,,Kosh-Agach (RA),50,88.666667,,5,,5434,58,104,,2100-1700,1234567,,,46968,,, +1440,USA,en,WRED,,Westbrook (ME),43.680556,-70.379722,,5,,5528,293,105,,,,4,,41835,,, +1440,USA,,WVEI,,Worcester (MA),42.290278,-71.846389,,5,,5718,292,107,,,,,,43291,,, +1440,USA,,WHKZ,,Warren (OH),41.164444,-80.846389,,5,,6361,297,114,,,,990,,41653,,, +1440,USA,,WNPV,,Lansdale (PA),40.238333,-75.316667,,2.5,,6087,292,114,,,,,,42499,,, +1440,USA,,WNYG,,Babylon (NY),40.795833,-72.992222,,1,,5899,291,116,,,,,,42542,,, +1440,CHN,mn,Chifeng RGD,,Chifeng/NMTS915 (NM),42.339722,118.878889,,50,,7675,47,117,,,,,,50851,,, +1440,USA,,WLXN,,Lexington (D) (NC),35.833889,-80.233889,,5,,6736,292,117,,,,,,20012564,,, +1440,USA,,WMAX,,Bay City (MI),43.524167,-83.966111,,2.5,,6369,300,117,,,,,,42275,,, +1440,CAN,en,CKJR,,Wetaskiwin (AB),52.958333,-113.451111,,10,,7064,324,118,,,,996,,36326,,, +1440,USA,en,WFNY,,Gloversville (NY),43.0325,-74.350556,,0.5,,5823,294,118,,,,,,41420,,, +1440,TZA,,R One,,Dar es Salaam (des),-6.690672,39.196933,,10,,7240,144,119,,,,2,,2245,,, +1440,CHN,mn,Alxa Zuoqi RGD,,Alxa Zuoqi=Alashan Zuoqi/NMTS782 (NM),38.821944,105.688333,,10,,7263,58,120,,,,,,50850,,, +1440,USA,,WGVL,,Greenville (SC),34.868333,-82.467778,,5,,6955,292,120,,,,,,41582,,, +1440,USA,,WDRJ,,Inkster (MI),42.256111,-83.363333,,1,,6430,299,121,,,,,,42341,,, +1440,USA,,WAJR,,Morgantown (WV),39.676111,-80.003333,,0.5,,6423,295,124,,,,,,40683,,, +1440,USA,,WLXN,,Lexington (N) (NC),35.832222,-80.287222,,1,,6740,292,124,,,,25,,42263,,, +1440,AGL,pt,RNA Em. Prov. da Lunda-Norte,,Dundo (lno),-7.402778,20.820833,,1,,6758,164,125,,0500-2300,1234567,,,2530,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Bose/GXTS242 (GX),23.890278,106.608889,,50,,8593,67,125,,2200-1600,1234567,,,50853,,, +1440,J,,JOWF STV-Sapporo TV Hoso,,Sapporo (hok),43.125833,141.467222,,50,,8580,32,125,,0000-2400,1234567,2,,50872,,, +1440,USA,,WGMI,,Bremen (GA),33.715556,-85.159444,,2.5,,7217,293,125,,,,,,41531,,, +1440,USA,,WNFL,,Green Bay (WI),44.477778,-88,,0.5,,6529,304,125,,,,,,42464,,, +1440,USA,,WJBS,,Holly Hill (SC),33.339722,-80.438333,,1,,6948,290,126,,,,,,41849,,, +1440,CHN,mn,Chifeng RGD,,Hexigten/NMTS052 (NM),43.320278,117.055,,3,,7497,48,127,,,,,,36200676,,, +1440,USA,,WHIS,,Bluefield (WV),37.275833,-81.251667,,0.5,,6687,294,127,,,,,,41644,,, +1440,USA,,WVGG,,Lucedale (MS),30.932778,-88.605833,,5,,7664,294,127,,,,,,42817,,, +1440,CHN,,Zhuanghe RGD,,Zhuanghe/LNTS305 (LN),39.755222,122.950833,,10,,8108,46,128,,,,,,36200245,,, +1440,IND,,AIR East,,Kurseong (WB),26.865,88.258611,,1,,7145,79,128,,0055-0400,1234567,,,50857,,, +1440,IND,,AIR East,,Kurseong (WB),26.865,88.258611,,1,,7145,79,128,,0620-1030,1234567,,,50857,,, +1440,IND,,AIR East,,Kurseong (WB),26.865,88.258611,,1,,7145,79,128,,1130-1700,12345..,,,50857,,, +1440,IND,,AIR East,,Kurseong (WB),26.865,88.258611,,1,,7145,79,128,,1130-1741,.....67,,,50857,,, +1440,USA,,KDIZ,,Golden Valley (MN),44.988889,-93.351667,,0.5,,6787,307,128,,,,,,38267,,, +1440,USA,,WGEM,,Quincy (IL),39.98,-91.323333,,1,,7078,302,128,,,,,,41495,,, +1440,USA,,WGIG,,Brunswick (GA),31.168611,-81.537222,,1,,7195,289,129,,,,,,41518,,, +1440,NCG,,YNRM R Maranatha,,Managua (mng),12.15,-86.283333,,25,,9126,280,130,,1000-0500,1234567,86,,1766,,, +1440,USA,,KKXL,,Grand Forks (ND),47.964444,-97.029444,,0.3,,6741,312,130,,,,,,38765,,, +1440,USA,,WROK,,Rockford (IL),42.279167,-89.0375,,0.27,,6761,302,130,,,,,,42898,,, +1440,USA,,WSGO,,Oswego (NY),43.415556,-76.466667,,0.045,,5926,296,130,,,,,,42996,,, +1440,USA,es,WMVB,,Millville (NJ),39.421944,-75.020556,,0.065,,6129,291,130,,,,,,42411,,, +1440,USA,,KMAJ,,Topeka (KS),39.018611,-95.572778,,1,,7401,304,131,,,,,,38873,,, +1440,USA,,WBLA,,Elizabethtown (NC),34.625556,-78.624444,,0.197,,6729,290,131,,,,,,40872,,, +1440,USA,,WLWI,,Montgomery (AL),32.306667,-86.276389,,1,,7403,293,131,,,,,,42258,,, +1440,USA,en,KODL,,The Dalles (OR),45.591944,-121.199167,,5,,8056,324,131,,,,,,39054,,, +1440,USA,en,WJJL,,Niagara Falls (NY),43.078611,-79.011111,,0.055,,6106,297,131,,,,,,41886,,, +1440,USA,es,WCDL,,Carbondale (PA),41.557778,-75.486389,,0.037,,6000,294,131,,,,,,40971,,, +1440,USA,fr,WPRD,,Winter Park (FL),28.588333,-81.381389,,1,,7397,287,131,,,,,,42728,,, +1440,CHN,,Chifeng RGD,,Linxi/NMTS726 (NM),43.6,118.05,,1,,7523,47,132,,2000-1730,1234567,,,36200244,,, +1440,USA,,WGLD,,Red Lion (PA),39.999444,-76.745556,,0.053,,6195,293,132,,,,,,43134,,, +1440,USA,,WPRS,,Paris (IL),39.605556,-87.725556,,0.25,,6898,300,132,,,,,,42732,,, +1440,B,pt,ZYH285 Rdio Globo,,Manaus (AM),-3.134511,-59.977472,,10,,8709,249,133,,,,,,36902343,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Jingxi (GX),23.133333,106.416667,,10,,8647,68,133,,,,,,36200239,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Longzhou (GX),22.35,106.85,,10,,8743,68,133,,,,,,36200240,,, +1440,CHN,mn,Chifeng RGD,,Daban/NMTS805 (NM),43.533333,118.666667,,1,,7559,46,133,,,,,,36200677,,, +1440,CHN,mn,Chifeng RGD,,Tianshan/NMTS806 (NM),43.865278,120.081944,,1,,7599,45,133,,,,,,36200675,,, +1440,CHN,mn,Chifeng RGD,,Wudan/NMTS804 (NM),42.933333,119.016667,,1,,7629,47,133,,,,,,36200674,,, +1440,USA,,WKLV,,Blackstone (VA),37.053889,-78.020833,,0.072,,6500,291,133,,,,,,42038,,, +1440,USA,es,WWCL,,Lehigh Acres (FL),26.601389,-81.558333,,1,60,260,7573,286,133,,,,,,43362,, +1440,VEN,,YVZI R Estelar 14-40,,Guanare (ptg),9.05,-69.716667,,5,,8269,265,133,,0900-0400,1234567,,,45486,,, +1440,B,pt,ZYJ757 Rdio Belos Vales,,Ibirama/Serra Urucana (SC),-27.086389,-49.590556,,25,,10349,228,134,,,,,,36902345,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Mengshan (GX),25.866667,110.166667,,7.5,,8641,63,134,,,,,,36200241,,, +1440,THA,th,Thor. Phor. Song,,Nakhon Phanom (npn),17.33,104.573889,,10,,9036,73,134,,????-1415,1234567,,,50885,,, +1440,THA,th,Wor. Por. Thor. 8,,Samut Sakhon (ssk),13.659444,100.296667,,10,,9075,79,134,,0000-1105,......7,,,50886,,, +1440,THA,th,Wor. Por. Thor. 8,,Samut Sakhon (ssk),13.659444,100.296667,,10,,9075,79,134,,0000-2400,123456,,,50886,,, +1440,THA,th,Wor. Por. Thor. 8,,Samut Sakhon (ssk),13.659444,100.296667,,10,,9075,79,134,,2230-2400,......7,,,50886,,, +1440,KOR,en,AFN Korea-Thunder AM,,Munsan/Camp Pelham (gye),37.869444,126.811944,,5,,8469,45,135,,,,,,52088,,, +1440,B,pt,ZYH603 Rdio Araripe,,Crato (CE),-7.245053,-39.4001,,1,,7898,229,136,,,,,,36902346,,, +1440,DOM,,HIFS R Bahia,,Nagua (mts),19.366667,-69.833333,,0.25,,7389,272,137,,1000-0500,1234567,,,37248,,, +1440,DOM,,HILF,,Salvalon de Higey (alt),18.616667,-68.716667,,0.25,,7377,270,137,,,,,,37268,,, +1440,USA,,WPGW,,Portland (IN),40.436111,-85.015556,,0.045,,6670,299,137,,,,,,42682,,, +1440,USA,,WRGM,,Ontario (OH),40.768056,-82.617778,,0.028,,6499,297,137,,,,,,42844,,, +1440,VEN,,YVRF R Orituco,,Altagracia del Orituco (gco),9.816667,-66.316667,,1,,7971,262,137,,,,,,45443,,, +1440,CLM,es,HJIB,,Florencia (caq),1.616667,-75.616667,,5,,9322,265,138,,,,,,35901827,,, +1440,DOM,,HIAD R San Juan,,San Juan de la Maguana (jua),18.766667,-71.2,,0.25,,7533,272,138,,1000-0300,1234567,,,37195,,, +1440,DOM,es,HIAK R Impacto,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,1000-0400,1234567,99,,37201,,, +1440,J,ja,STV-Sapporo TV Hoso,,Muroran (hok),42.3675,140.989167,,3,,8638,33,138,,0000-2400,1234567,,,50871,,, +1440,PHL,,DWDH-AM (r:666 DZRH-AM),,Dagupan City/Lucao (pgs),16.016667,120.333333,,10,,10145,61,138,,0000-2400,1234567,,,50884,,, +1440,USA,,KPUR,,Amarillo (TX),35.122222,-101.8025,,1,,8086,306,138,,,,,,39177,,, +1440,USA,,WIBH,,Anna (IL),37.445833,-89.25,,0.109,,7163,299,138,,,,,,41717,,, +1440,B,pt,ZYJ469 Rdio Livre,,Rio de Janeiro/So Gonalo (RJ),-22.837978,-43.096433,,5,,9617,225,139,,,,3,,36902344,,, +1440,USA,,WKPR,,Kalamazoo (MI),42.313056,-85.6175,,0.024,,6559,300,139,,,,,,42058,,, +1440,USA,es,KTUV,,Little Rock (AR),34.712778,-92.28,,0.24,,7571,299,139,,,,,,38640,,, +1440,USA,,KRDZ,,Wray (CO),40.082222,-102.190278,,0.212,,7673,309,140,,,,,,39232,,, +1440,USA,,WHDM,,McKenzie (TN),36.133056,-88.523333,,0.091,,7227,297,140,,,,,,41620,,, +1440,USA,,WZYX,,Cowan (TN),35.160833,-86.030833,,0.066,,7154,295,140,,,,,,43598,,, +1440,EQA,,HCMD7,,Puyo (pas),-1.5,-78,,3,,9758,265,141,,,,,,37021,,, +1440,USA,,KMED,,Medford (OR),42.31,-122.811389,,1,,8437,324,141,,,,9974,,38892,,, +1440,USA,,KPTO,,Pocatello (ID),42.945278,-112.415833,,0.35,,7926,317,141,,,,,,39173,,, +1440,USA,,WYGH,,Paris (KY),38.225,-84.249722,,0.025,,6798,296,141,,,,,,43516,,, +1440,J,ja,STV-Sapporo TV Hoso,,Tomakomai (hok),42.695,141.646389,,1,,8629,32,142,,0000-2400,1234567,,,50873,,, +1440,KOR,,AFN Korea-Thunder AM,,Pyeongtaek/Camp Humphreys (gye),36.953611,127.020556,,1,,8565,45,142,,0000-2400,1234567,,,50878,,, +1440,USA,,KEYS,,Corpus Christi (TX),27.783889,-97.458056,,1,,8479,298,142,,,,,,38361,,, +1440,USA,,KTNO,,Denton (TX),32.750556,-96.722778,,0.35,,8002,301,142,,,,,,39518,,, +1440,USA,en,WDXQ,,Cochran (GA),32.411944,-83.361667,,0.048,,7210,291,142,,,,,,43311,,, +1440,VEN,,YVTY R Sucesos,,Tariba (tch),7.816667,-72.216667,,1,,8547,266,142,,0950-0400,1234567,,,45477,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Daxin (GX),22.846944,107.188889,,1,,8721,68,143,,,,,,36200237,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Fengshan/GXTS233 (GX),24.533333,109.25,,1,,8702,65,143,,,,,,36200238,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Shangsi (GX),22.15,107.983333,,1,,8832,67,143,,,,,,36200242,,, +1440,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Yizhou/GXTS231 (GX),24.466667,108.583333,,1,,8666,65,143,,,,,,36200243,,, +1440,CLM,es,HJGM,,Sogamoso (boy),5.666667,-72.916667,,1,,8782,265,143,,,,,,37457,,, +1440,CLM,es,HJNZ Colmundo R,,Medelln (ant),6.283333,-75.616667,,1,,8912,268,143,,,,,,37602,,, +1440,EQA,,HCDY4,,Esmeraldas (esm),0.966667,-79.716667,,2,,9658,268,143,,,,,,36908,,, +1440,KOR,en,AFN Korea-Thunder AM,,Gunsan=Kunsan/Air Base (jeb),35.926067,126.621217,,1,,8641,46,143,,0000-2400,1234567,,,50876,,, +1440,USA,,KCHE,,Cherokee (IA),42.789167,-95.552222,,0.029,,7086,307,143,,,,,,38146,,, +1440,USA,,KVON,,Napa (CA),38.2625,-122.282222,,1,,8807,321,143,,,,76,,39654,,, +1440,USA,,WSEL,,Pontotoc (MS),34.252778,-88.96,,0.066,,7409,296,143,,,,,,42979,,, +1440,B,pt,ZYH466 Rdio Independncia,,Santo Amaro (BA),-12.57,-38.714444,,0.5,,8390,226,144,,0000-2400,1234567,,,36902341,,, +1440,B,pt,ZYJ930 Rdio Educadora,,Frei Paulo (SE),-10.543333,-37.526944,,0.25,,8131,225,144,,,,0,,36902339,,, +1440,CHN,zh,CNR 1,,Putian/FJTS301 (FJ),25.423056,119.028333,,1,,9206,57,144,,2025-1805,1234567,,,50855,,, +1440,CLM,,HJBM,,Honda (tol),5.2,-74.766667,,1,,8949,266,144,,,,,,37351,,, +1440,CLM,es,HJEK R Reloj,,Tulu (val),4.066667,-76.216667,,1,,9147,267,144,,,,98,,37413,,, +1440,EQA,,HCTB5,,Azogues (can),-2.716667,-78.766667,,2,,9917,265,144,,,,,,37137,,, +1440,USA,,KUHL,,Santa Maria (CA),34.983889,-120.452778,,1,,9044,318,144,,,,9974,,39571,,, +1440,USA,en,KFNY,i,Riverside (CA),34.026667,-117.3575,,1,,8992,316,144,,,,0,,38263,,, +1440,B,pt,ZYK221 Rdio Ceres AM,,No-Me-Toque (RS),-28.436111,-52.808333,,2.5,,10642,229,145,,,,,,36902336,,, +1440,GTM,,TGMS R Nacional,,Mazatenango (sup),14.516667,-91.5,,1,,9267,285,145,,0000-0400,1234567,,,40516,,, +1440,MEX,es,XEABCJ-AM ABC R,,Guadalajara (jal),20.612989,-103.298678,,1,,9472,298,145,,,,,,43824,,, +1440,MEX,es,XEEST-AM Cambio 1440,,Mxico D.F/Granjas Mxico (dif),19.397756,-99.101222,,1,,9323,294,145,,,,,,43980,,, +1440,PRU,,OBX1I R Cooperativa Tuman,,Chiclayo (lam),-6.75,-79.75,,2,,10338,263,145,,,,,,40384,,, +1440,BOL,,CP61 R Batallon Colorados,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1100-0100,123456,,,36707,,, +1440,BOL,,CP61 R Batallon Colorados,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,1100-2400,......7,,,36707,,, +1440,EQA,,HCDF1,,Ibarra (imb),0.35,-79.116667,,0.6,,9672,267,148,,,,,,36900,,, +1440,KOR,,AFN Korea-Thunder AM,,Chuncheon/Camp Page (gan),37.861111,127.733889,,0.25,,8514,44,148,,0000-2400,1234567,,,50875,,, +1440,KOR,,AFN Korea-Thunder AM,,Wonju/Camp Long (gan),37.366667,127.95,,0.25,,8571,44,148,,0000-2400,1234567,,,50879,,, +1440,PRU,,OAU2O R Frecuencia VH,,Celendn (caj),-6.866667,-78.15,,1,,10240,262,148,,1100-2300,1234567,,,52279,,, +1440,USA,en,KETX,,Livingston (TX),30.739722,-94.925,,0.091,,8069,298,148,,,,,,38345,,, +1440,CHL,,CA144 R Santa Maria de Guadalupe,,Arica (TA),-18.433333,-70.266667,,1,,10744,248,149,,1000-0430,1234567,,,35693,,, +1440,EQA,,HCCS5,,Riobamba (chi),-1.566667,-78.616667,,0.5,,9806,265,149,,,,,,36891,,, +1440,PRU,es,OAX4K R Imperial 2,,Lima/Cerro Papa (lim),-12.183333,-76.966667,,1,,10628,257,149,,,,928,,37000011,,, +1440,PRU,es,OAX6R R Santa Monica,,Cayma (are),-16.316667,-71.583333,,1,,10640,251,149,,,,251,,40340,,, +1440,PRU,es,R Solar,,Espinar (cus),-14.783333,-71.416667,,1,,10493,251,149,,,,245,,37000106,,, +1440,KIR,,T3K1 R Kiribati,,Betio Tarawa/Bairiki (trw),1.329722,172.993889,,10,,13941,17,150,,0000-0130,1234567,,,48561,,, +1440,KIR,,T3K1 R Kiribati,,Betio Tarawa/Bairiki (trw),1.329722,172.993889,,10,,13941,17,150,,0530-0930,1234567,,,48561,,, +1440,KIR,,T3K1 R Kiribati,,Betio Tarawa/Bairiki (trw),1.329722,172.993889,,10,,13941,17,150,,1800-2000,1234567,,,48561,,, +1440,ARG,,LRI221 R General Obligado,,Reconquista (sf),-29.15,-59.666667,,1,,11076,234,151,,,,983,,51873,,, +1440,INS,id,R Suara Edukasi,,Tangerang/Ciputat (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,50803,,, +1440,PHL,,DXSI-AM,,Cagayan de Oro City (mor),8.466667,124.633333,,1,,11103,62,151,,,,,,50883,,, +1440,ARG,,R Impacto,,Tapiales (ba),-34.7,-58.516667,,1,,11521,230,152,,,,,,51872,,, +1440,B,pt,ZYK568 Rdio Cultura de Cajuru,,Cajuru (SP),-21.276517,-47.300731,,0.25,,9674,229,152,,,,,,36902333,,, +1440,B,pt,ZYK752 Rdio Azul Celeste,,Americana (SP),-22.7317,-47.330833,,0.25,,9816,228,152,,,,,,36902332,,, +1440,B,pt,ZYL365 Rdio Som 2000,,Santa Vitria (MG),-18.854583,-50.128483,,0.25,,9590,232,152,,,,,,36902331,,, +1440,BOL,,CP104 R Oriente,,Camiri (scz),-20.05,-63.516667,,0.5,,10470,242,152,,,,,,36625,,, +1440,MRA,,KKMP,,Saipan/Garapan (D) (MP),15.157306,145.717817,,1.1,,11572,40,152,,,,,,50880,,, +1440,MRA,,KKMP,,Saipan/Garapan (N) (MP),15.157778,145.718056,,1.1,,11572,40,152,,,,,,20016267,,, +1440,URG,,CV144 AM 1440,,Chuy (ro),-33.7025,-53.450833,,0.75,,11169,227,152,,0000-2400,1234567,,,36728,,, +1440,URG,,CX144 R Rivera,,Rivera (rv),-30.883333,-55.533333,,0.75,,11013,230,152,,0830-0300,1234567,,,36791,,, +1440,B,pt,ZYK634 Rdio Comercial AM,,Presidente Prudente (SP),-22.132206,-51.41645,,0.25,,9972,232,153,,,,,,36902329,,, +1440,CHL,,CA144 R Agricultura,,La Serena (CO),-29.883333,-71.266667,,1,,11813,242,153,,1000-0400,1234567,,,35694,,, +1440,B,,ZYJ250,,Cascavel (PR),-24.933333,-53.45,,0.25,,10346,232,154,,,,,,45976,,, +1440,B,pt,ZYI407 Rdio Bela Vista,,Bela Vista (MS),-22.0991,-56.510078,,0.25,,10249,236,154,,,,,,36902334,,, +1440,B,pt,ZYJ353 Rdio Integraco Oeste,,Corblia (PR),-24.784444,-53.301389,,0.25,,10324,232,154,,,,,,36902340,,, +1440,BOL,,CP107 R Yaguari,,Vallegrande (scz),-18.5,-64.066667,,0.25,,10363,244,154,,1000-0200,1234567,,,36626,,, +1440,MEX,es,XEVSD-AM,,Villa Constitucin (bcs),25.011889,-111.6619,,0.15,,9550,307,154,,,,,,44988,,, +1440,B,,ZYK221,,Campo Real (RS),-28.466667,-52.816667,,0.25,,10645,229,155,,,,,,46256,,, +1440,B,pt,ZYJ792 Rdio Difusora Maravilha,,Maravilha (SC),-26.751667,-53.170556,,0.25,,10502,231,155,,,,,,36902338,,, +1440,B,pt,ZYK328 Rdio Excelsior,,Gramado (RS),-29.383333,-50.883333,,0.25,,10633,227,155,,,,,,36902342,,, +1440,B,pt,ZYK362 Rdio Caibat,,Caibat (RS),-28.314444,-54.658611,,0.25,,10728,231,155,,,,,,36902330,,, +1440,CHL,,CC144 R El Sembrador,,Chilln (BI),-36.566667,-72.083333,,1,,12434,238,155,,1030-0430,1234567,,,35817,,, +1440,ARG,,LRA53 R Nacional,,San Martn de los Andes (nq),-40.159486,-71.345647,,1,,12695,235,156,,1000-0400,1234567,,,39956,,, +1440,USA,,KAZG,,Scottsdale (AZ),33.478611,-111.94,,0.052,,8776,312,156,,,,9975,,37997,,, +1440,ARG,es,LV27 R San Francisco,,San Francisco (cb),-31.433333,-62.066667,,0.25,,11416,234,158,,0900-0300,1234567,,,40251,,, +1440,ARG,,LU36 R Coronel Suarez,,Coronel Suarez (ba),-37.466667,-61.916667,,0.25,,11949,231,159,,1000-0300,1234567,,,40230,,, +1440,ARG,,LV20 R Laboulaye,,Laboulaye (cb),-34.116667,-63.366667,,0.25,,11729,234,159,,0900-0300,1234567,,,40244,,, +1440,AUS,,1SBS,,Canberra/Barton Highway (ACT),-35.217728,149.118675,,2,,16532,72,166,,0000-2400,1234567,,,50849,,, +1440,NZL,en,GoldRush R,,Lawrence (OTA),-45.912778,169.659167,,0.5,,18617,67,178,,,,,,50881,,, +1440,NZL,mi,1XK Te Reo o Tauranga Moana,,Tauranga/Matapihi (BOP),-37.693889,176.196389,,0.2,,18226,30,181,,,,,,50882,,, +1445,BOL,,Super Broadcasting Alborada SBA,,Santa Cruz (scz),-17.766667,-63.166667,,0.5,,10242,243,151,,1000-0300,1234567,,,52045,,, +1449,I,it,RAI R1,,Belluno/La Costa (bl),46.140444,12.241194,,2.5,,787,145,61,,0500-2300,1234567,0,,1461,,, +1449,I,it,RAI Veneto,,Belluno/La Costa (bl),46.140444,12.241194,,2.5,,787,145,61,,0620-0630,123456,0,,1461,,, +1449,I,it,RAI Veneto,,Belluno/La Costa (bl),46.140444,12.241194,,2.5,,787,145,61,,1110-1130,123456,0,,1461,,, +1449,G,en,BBC R 4,,Aberdeen/Redmoss (SC-ABC),57.113583,-2.094583,,2,,780,319,62,,0600-0100,1234567,1,,1456,,, +1449,G,en,BBC WS,,Aberdeen/Redmoss (SC-ABC),57.113583,-2.094583,,2,,780,319,62,,0100-0600,1234567,1,,1456,,, +1449,G,,BBC Asian Network,,Peterborough/Gunthorpe (EN-CAM),52.617222,-0.247778,,0.15,,455,280,70,,0000-2400,1234567,0,,1457,,, +1449,IRN,ru,IRIB WS,,Bandar-e Torkaman (gsn),36.903778,54.0478,,400,70,4049,95,72,CAs,1430-1530,1234567,1,,1469,,, +1449,IRN,tk,IRIB WS,,Bandar-e Torkaman (gsn),36.903778,54.0478,,400,70,4049,95,72,,0230-0500,1234567,1,,1469,,, +1449,IRN,tk,IRIB WS,,Bandar-e Torkaman (gsn),36.903778,54.0478,,400,70,4049,95,72,,1330-1430,1234567,1,,1469,,, +1449,IRN,tk,IRIB WS,,Bandar-e Torkaman (gsn),36.903778,54.0478,,400,70,4049,95,72,,1530-1830,1234567,1,,1469,,, +1449,ARS,ar,BSKSA Idha'atu-i Riyadh,,Yanbu al-Bahr (mdh),24.083333,38.05,,100,,4106,127,78,,,,9993,,10600014,,, +1449,G,,Lyneham R,,RAF Lyneham (EN-WLT),51.507778,-1.981667,,0.001,,580,267,93,,,,,,2571,,, +1449,G,,University R Bath (LPAM),,Bath (EN-SOM),51.383333,-2.366667,,0.001,,609,266,93,,,,,,1458,,, +1449,ARS,ar,BSKSA Al-Quran al-Karim,,unknown,24,45.45,,1,,4539,118,102,,,,,,10600013,,, +1449,PAK,,PBC R Pakistan/NBS News,,Zhob (blc),31.335067,69.435122,,10,,5513,89,102,,0200-0400,1234567,,,50902,,, +1449,PAK,,PBC R Pakistan/NBS News,,Zhob (blc),31.335067,69.435122,,10,,5513,89,102,,1155-1600,1234567,,,50902,,, +1449,RUS,ru,R Rossii,,unknown,61.2,99.9,,1,,5299,41,110,,,,,,6700096,,, +1449,CHN,,Dongying RGD News Channel,,Dongying (SD),37.453889,118.569167,,10,,8093,50,128,,2150-1433,1234567,,,50892,,, +1449,MLD,,R Eke,,Male (mle),4.171667,73.517222,,10,,8095,106,128,,1740-0025,1234567,52,,2533,,, +1449,MLD,dv,Voice of Maldives,,Male (mle),4.171667,73.517222,,10,,8095,106,128,,0025-1200,1234567,52,,2533,,, +1449,MLD,dv,Voice of Maldives,,Male (mle),4.171667,73.517222,,10,,8095,106,128,,1400-1740,1234567,52,,2533,,, +1449,MLD,en,Voice of Maldives,,Male (mle),4.171667,73.517222,,10,,8095,106,128,,1200-1400,1234567,52,,2533,,, +1449,CHN,zh,Rizhao RGD,,Rizhao (SD),35.453611,119.361944,,10,,8314,51,130,,2130-1530,1234567,,,36200202,,, +1449,CHN,,Jiangxi RGD Xinwen Guangbo,,several locations,34.95,104.5,,1,,7515,61,132,,2000-1730,1234567,,,50893,,, +1449,KOR,,HLQB KBS 1 R,,Ulsan (uls),35.530833,129.346111,,10,,8810,44,133,,0000-2400,1234567,,,50898,,, +1449,THA,th,Thor. Phor. Saam.,,Phichit (pct),16.491667,100.141667,,10,,8818,77,133,,2200-1400,1234567,,,50906,,, +1449,J,ja,JOQM HBC Hokkaido Hoso,,Abashiri/Mount Tento (hok),44.002222,144.240278,,5,,8589,30,135,,0000-2400,1234567,,,50895,,, +1449,J,ja,JOKF RNC Nishi-Nippon Hoso,,Takamatsu (shi-kag),34.320833,134.072778,,5,,9145,41,137,,,,,,50897,,, +1449,THA,th,Wor. Sor. Por. 1449,,Chumphon/Fort Khet Udomsak (cpn),10.511111,99.109722,,5,,9270,81,138,,2300-1330,1234567,,,50905,,, +1449,PHL,,DYAC-AM,,Baybay/Pangasugan (lyt),10.683333,124.8,,5,,10907,61,143,,2100-0900,12345..,,,50903,,, +1449,J,ja,RNC Nishi-Nippon Hoso,,Marugame,34.5,134,,1,,9124,41,144,,,,,,31400100,,, +1449,PHL,,DXSA-AM,,Marawi City (lds),8.016667,124.3,,5,,11124,63,144,,,,,,50904,,, +1449,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Dongshan/FJTS504 (FJ),23.7,117.416667,,1,,9269,59,145,,0000-2400,1234567,,,36200201,,, +1449,FSM,,V6AH FSMBS Voice of Pohnpei,,Kolonia (pnp),6.965,158.207778,,10,,12921,32,147,,2000-1400,1234567,,,50899,,, +1449,J,,MBC Minami Nihon Hoso,,Naze (kyu-kag),28.383333,129.483333,,0.3,,9495,48,151,,0000-2400,1234567,,,50896,,, +1449,INS,id,R Khusus Informasi Pertanian,,Surabaya/Wonocolo (JI-ksu),-7.329167,112.730278,,1,,11762,82,153,,,,71,,35400004,,, +1449,J,ja,RNC Nishi-Nippon Hoso,,Kannoji,34.5,134,,0.1,,9124,41,154,,,,,,31400102,,, +1449,J,ja,RNC Nishi-Nippon Hoso,,Shiratori,34.5,134,,0.1,,9124,41,154,,,,,,31400101,,, +1449,AUS,en,6TAB Racing R.,,Mandurah/West Pinjarra (WA),-32.641917,115.803125,,2,,14087,98,157,,0000-2400,1234567,,,50890,,, +1449,AUS,,2MG,,Mudgee (NSW),-32.582014,149.571,,5,,16351,68,161,,0000-2400,1234567,,,50891,,, +1449,NZL,en,RNZ National,,Palmerston North/Kairanga (MWT),-40.509167,175.570556,,2.5,,18483,37,171,,0000-2400,1234567,,,50901,,, +1450,CAN,en,CFAB,,Windsor (NS),44.995278,-64.113611,,1,,5042,290,107,,,,,,35927,,, +1450,USA,en,WVOM,,Rockland (ME),44.126111,-69.138611,,1,,5420,292,111,,,,,,42866,,, +1450,USA,en,WKTQ,,South Paris (ME),44.221111,-70.528611,,1,,5501,293,112,,,,,,42078,,, +1450,CAN,xx,CHOU,,Montral (QC),45.495833,-73.743889,,1,,5612,296,113,,,,6,,20100002,,, +1450,USA,,WKXL,,Concord (NH),43.194167,-71.554722,,1,,5636,293,113,,,,,,42098,,, +1450,USA,,WNBP,,Newburyport (MA),42.823056,-70.861667,,1,,5619,292,113,,,,,,42437,,, +1450,USA,,WSNO,,Barre (VT),44.194444,-72.514444,,1,,5626,294,113,,,,,,43037,,, +1450,USA,,WLKW,,West Warwick (RI),41.695,-71.523889,,1,,5740,291,114,,,,,,42184,,, +1450,USA,,WTSA,,Brattleboro (VT),42.870278,-72.559722,,1,,5722,293,114,,,,,,43211,,, +1450,USA,,WWSC,,Glens Falls (NY),43.3125,-73.598611,,0.94,,5756,294,115,,,,,,43430,,, +1450,USA,en,WHLL,,Springfield (MA),42.108889,-72.612222,,1,,5780,292,115,,,,,,42274,,, +1450,USA,,WCUM,,Bridgeport (CT),41.219444,-73.202222,,1,,5881,292,116,,,,,,41105,,, +1450,USA,,WKAL,,Rome (NY),43.205,-75.479167,,1,,5880,295,116,,,,,,43515,,, +1450,USA,,WKIP,,Poughkeepsie (NY),41.705,-73.887778,,1,,5889,293,116,,,,,,42019,,, +1450,BER,en,VSB1 AM Gold,,Ireland Island South (-),32.313694,-64.842111,,1,,5997,278,117,,0000-2400,1234567,994,,46797,,, +1450,USA,,WYNY,,Milford (PA),41.336111,-74.795833,,1,,5973,293,117,,,,,,20016107,,, +1450,USA,en,WCTC,,New Brunswick (U) (NJ),40.492222,-74.419722,,1,,6012,292,117,,,,9930,,41095,,, +1450,USA,,WENI,,Corning (NY),42.116389,-77.04,,0.93,,6056,295,118,,,,,,41026,,, +1450,USA,,WHDL,,Olean (NY),42.0775,-78.475556,,1,,6147,296,118,,,,,,41619,,, +1450,USA,,WILM,i,Wilmington (DE),39.729444,-75.551944,,1,,6140,292,118,,,,,,41755,,, +1450,USA,,WPAM,,Pottsville (PA),40.690833,-76.194167,,1,,6109,293,118,,,,,,42643,,, +1450,USA,en,WPGG,,Atlantic City (NJ),39.378333,-74.448056,,1,,6096,291,118,,,,9958,,42103,,, +1450,USA,,WATZ,,Alpena (MI),45.066111,-83.485,,1,,6225,302,119,,,,,,40766,,, +1450,USA,,WNBY,,Newberry (MI),46.313333,-85.510556,,1,,6248,304,119,,,,,,42441,,, +1450,USA,en,WQWK,,State College (PA),40.808889,-77.841111,,1,,6203,294,119,,,,,,42270,,, +1450,USA,,WDAD,,Indiana (PA),40.638056,-79.146389,,1,,6297,295,120,,,,,,41117,,, +1450,USA,,WFRA,,Franklin (PA),41.391667,-79.811389,,0.99,,6281,296,120,,,,,,41431,,, +1450,USA,,WHLS,,Port Huron (MI),42.976944,-82.464444,,1,,6322,299,120,,,,,,41660,,, +1450,USA,,WTBO,,Cumberland (MD),39.645278,-78.751389,,1,,6347,294,120,,,,,,43113,,, +1450,USA,,WBVA,,Virginia Beach (Bayside) (VA),36.858056,-76.157778,,1,,6396,290,121,,,,,,40928,,, +1450,USA,,WFTR,,Front Royal (VA),38.908611,-78.176944,,1,,6368,293,121,,,,,,41451,,, +1450,USA,,WJER,,Dover-New Philadelphia (OH),40.512778,-81.456944,,1,,6448,296,121,,,,,,41868,,, +1450,USA,,WJPA,,Washington (PA),40.189722,-80.233889,,1,,6398,295,121,,,,,,41919,,, +1450,USA,,WMIQ,,Iron Mountain (MI),45.821111,-88.054444,,1,,6429,305,121,,,,,,42330,,, +1450,USA,,WPSE,,Erie (PA),42.136389,-80.040278,,0.77,,6239,297,121,,,,,,42737,,, +1450,USA,en,WCLM,,Highland Springs (VA),37.544167,-77.346389,,0.96,,6420,291,121,,,,,,41027,,, +1450,USA,,WHNK,,Parkersburg (WV),39.289722,-81.526667,,1,,6547,295,122,,,,,,41668,,, +1450,USA,,WHRY,,Hurley (WI),46.415556,-90.159444,,1,,6500,307,122,,,,,,41685,,, +1450,USA,,WKLA,,Ludington (MI),43.951389,-86.424444,,1,,6480,302,122,,,,,,42033,,, +1450,USA,,WLEC,,Sandusky (OH),41.441111,-82.687222,,1,,6452,298,122,,,,,,42151,,, +1450,USA,,WREL,,Lexington (VA),37.766667,-79.432222,,1,,6534,293,122,,,,,,42835,,, +1450,USA,,WVAX,,Charlottesville (VA),38.048333,-78.47,,1,,6452,292,122,,,,,,20016104,,, +1450,USA,,KFIZ,,Fond Du Lac (WI),43.791111,-88.471111,,1,,6610,303,123,,,,,,38396,,, +1450,USA,,WCTC,,New Brunswick (U) (Aux) (NJ),40.475833,-74.492778,,0.25,,6017,292,123,,,,,,20016206,,, +1450,USA,,WDLB,,Marshfield (WI),44.696944,-90.155556,,1,,6634,305,123,,,,,,41172,,, +1450,USA,,WELY,,Ely (MN),47.894444,-91.863889,,0.77,,6477,309,123,,,,,,41294,,, +1450,USA,,WHTC,,Holland (MI),42.794722,-86.106111,,1,,6551,301,123,,,,,,41691,,, +1450,USA,,WIBM,,Jackson (MI),42.237222,-84.364444,,0.81,,6491,300,123,,,,,,41718,,, +1450,USA,,WIZS,,Henderson (NC),36.325278,-78.41,,1,,6582,291,123,,,,,,41832,,, +1450,USA,,WLUX,,Dunbar (WV),38.349167,-81.748056,,1,,6634,295,123,,,,,,20016102,,, +1450,USA,,WLYV,,Fort Wayne (IN),41.070556,-85.119444,,1,,6626,299,123,,,,,,42267,,, +1450,USA,,WMVA,,Martinsville (VA),36.7,-79.851944,,1,,6644,292,123,,,,,,20016030,,, +1450,USA,,WNOS,,New Bern (NC),35.100833,-77.075833,,1,,6592,289,123,,,,,,42494,,, +1450,USA,,KBUN,,Bemidji (MN),47.465556,-94.905556,,1,,6671,310,124,,,,,,38108,,, +1450,USA,,WCEV,,Cicero (IL),41.8325,-87.705556,,1,,6719,301,124,,,,,,40979,,, +1450,USA,,WMOH,,Hamilton (OH),39.403333,-84.530556,,1,,6722,297,124,,,,,,42366,,, +1450,USA,,WOL,,Washington (DC),38.955278,-77.004167,,0.37,,6290,292,124,,,,,,42591,,, +1450,USA,,WRLL,,Cicero (IL),41.8325,-87.705556,,1,,6719,301,124,,,,,,20016032,,, +1450,USA,,WTHU,,Thurmont (MD),39.626944,-77.403056,,0.4,,6264,293,124,,,,,,20016006,,, +1450,USA,en,WFBX,,Spring Lake (NC),35.186389,-78.959722,,0.95,,6706,290,124,,,,,,41005,,, +1450,USA,,KNSI,,St. Cloud (MN),45.539167,-94.168056,,1,,6787,308,125,,,,,,39017,,, +1450,USA,,WASK,,Lafayette (IN),40.402222,-86.849722,,1,,6782,300,125,,,,,,40749,,, +1450,USA,,WATA,,Boone (NC),36.216389,-81.701667,,1,,6799,293,125,,,,,,40754,,, +1450,USA,,WGNC,,Gastonia (NC),35.275556,-81.201111,,1,,6842,292,125,,,,,,41536,,, +1450,USA,,WLKS,,West Liberty (KY),37.926667,-83.278056,,1,,6762,295,125,,,,,,42183,,, +1450,USA,,WRCO,,Richland Center (DN) (WI),43.316111,-90.3775,,1,,6755,304,125,,,,,,20016278,,, +1450,USA,,WRCO,,Richland Center (U) (WI),43.316111,-90.375278,,1,,6755,304,125,,,,,,42822,,, +1450,USA,,WRNN,,Myrtle Beach (SC),33.705556,-78.889722,,1,,6819,289,125,,,,,,42776,,, +1450,USA,,WTOD,,Hartsville (SC),34.354444,-80.068333,,1,,6843,290,125,,,,,,41686,,, +1450,CAN,xx,CHMO,,Moosonee (ON),51.2775,-80.644167,,0.05,,5620,306,126,,,,,,20109204,,, +1450,USA,,KATE,,Albert Lea (MN),43.633333,-93.370833,,1,,6897,306,126,,,,,,37978,,, +1450,USA,,KBMW,,Breckenridge (MN),46.280556,-96.588056,,1,,6855,310,126,,,,,,38066,,, +1450,USA,,KMRY,,Cedar Rapids (IA),42.006944,-91.708056,,1,,6936,304,126,,,,,,38933,,, +1450,USA,,KZZJ,,Rugby (ND),48.353889,-99.991944,,1,,6858,314,126,,,,,,39916,,, +1450,USA,,WHKP,,Hendersonville (NC),35.338889,-82.455556,,0.97,,6916,293,126,,,,,,41651,,, +1450,USA,,WKEI,,Kewanee (IL),41.226667,-89.934722,,1,,6897,302,126,,,,,,41993,,, +1450,USA,,WLAF,,La Follette (TN),36.381111,-84.125556,,1,,6937,295,126,,,,,,42118,,, +1450,USA,,WTCO,,Campbellsville (KY),37.335278,-85.375833,,1,,6938,296,126,,,,,,43121,,, +1450,USA,,WWXL,,Manchester (KY),37.151111,-83.7625,,1,,6853,295,126,,,,,,43448,,, +1450,USA,en,WXVW,,Jeffersonville (IN),38.294722,-85.751944,,1,,6884,297,126,,,,,,40773,,, +1450,VEN,,YVXC R Mega Vision,,Ciudad Guayana/San Flix (blv),8.347222,-62.65,,10,,7853,258,126,,,,,,51702,,, +1450,USA,,WAOV,,Vincennes (IN),38.707222,-87.495,,1,,6956,299,127,,,,,,40732,,, +1450,USA,,WCRS,,Greenwood (SC),34.209444,-82.151389,,1,,6988,292,127,,,,,,41079,,, +1450,USA,,WFMB,,Springfield (IL),39.76,-89.651389,,1,,6999,301,127,,,,,,41404,,, +1450,USA,,WLAR,,Athens (TN),35.445556,-84.611944,,1,,7043,294,127,,,,987,,42124,,, +1450,USA,,WSMG,,Greeneville (TN),36.169444,-82.847778,,0.67,,6875,294,127,,,,,,43026,,, +1450,USA,,WWKU,,Glasgow (KY),37.010278,-86.423889,,1,,7028,297,127,,,,,,40973,,, +1450,USA,en,CBS Sports R.,,Charleston (SC),32.818611,-79.961944,,0.85,,6959,289,127,,0600-1200,67,,,42784,,, +1450,USA,en,CBS Sports R.,,Charleston (SC),32.818611,-79.961944,,0.85,,6959,289,127,,1200-1800,12345,,,42784,,, +1450,USA,,KIRX,,Kirksville (MO),40.206667,-92.575278,,1,,7132,303,128,,,,,,38638,,, +1450,USA,,WCON,,Cornelia (GA),34.515833,-83.538889,,1,,7051,293,128,,,,,,41059,,, +1450,USA,,WGNS,,Murfreesboro (TN),35.840556,-86.390833,,1,,7121,296,128,,,,,,41538,,, +1450,USA,,WLMR,,Chattanooga (TN),35.048333,-85.273889,,1,,7116,294,128,,,,,,42192,,, +1450,USA,,WMVG,,Milledgeville (GA),33.082778,-83.250278,,1,,7149,292,128,,,,,,42412,,, +1450,USA,,KVCK,,Wolf Point (MT),48.088333,-105.656111,,1,,7153,317,129,,,,,,39613,,, +1450,USA,,KYLS,,Fredericktown (MO),37.583333,-90.291944,,1,,7214,300,129,,,,,,39853,,, +1450,USA,,WBHF,,Cartersville (GA),34.185833,-84.803611,,1,,7157,293,129,,,,,,40851,,, +1450,USA,,WDXR,,Paducah (KY),37.098611,-88.621944,,1,,7154,298,129,,,,,,41227,,, +1450,USA,,WKEU,,Griffin (GA),33.24,-84.248611,,1,,7199,292,129,,,,,,41996,,, +1450,USA,en,KYNT,,Yankton (SD),42.891667,-97.419444,,1,,7179,308,129,,,,,,39865,,, +1450,USA,en,WTKI,,Huntsville (AL),34.725,-86.604167,,1,,7225,295,129,,,,,,43154,,, +1450,VEN,,YVZQ Informativa 14-50,,Los Puertos de Altagracia (zul),10.766667,-71.566667,,10,,8245,267,129,,0900-0500,1234567,,,45488,,, +1450,CAN,en,CBLF,,Foleyet (ON),48.237778,-82.434722,,0.04,,5932,304,130,,,,,,20109202,,, +1450,PTR,,WCPR,,Coamo (PR),18.091389,-66.370833,,1,,7261,268,130,,1000-0200,1234567,,,41068,,, +1450,USA,,KOKO,,Warrensburg (MO),38.775556,-93.72,,1,,7316,303,130,,,,,,39077,,, +1450,USA,,WDNG,,Anniston (AL),33.666944,-85.848889,,1,,7265,294,130,,,,,,41189,,, +1450,USA,,WLAY,,Muscle Shoals (AL),34.756389,-87.685556,,1,,7289,296,130,,,,,,42127,,, +1450,USA,,WMFJ,,Daytona Beach (FL),29.225,-81.025,,1,,7321,287,130,,,,,,42311,,, +1450,USA,,WTRO,,Dyersburg (TN),36.050556,-89.368611,,1,,7285,298,130,,,,,,43206,,, +1450,USA,en,WGPC,,Albany (GA),31.581944,-84.199444,,1,,7332,291,130,,,,,,41553,,, +1450,VEN,,YVKJ Sonera 14-50 (R Maria),,Catia La Mar (vgs),10.601389,-67.0375,,5,,7951,263,130,,0900-0400,1234567,1,,45347,,, +1450,USA,,KBFS,,Belle Fourche (SD),44.667222,-103.856111,,1,,7361,313,131,,,,,,38025,,, +1450,USA,,KWPM,,West Plains (MO),36.741111,-91.833611,,1,,7375,300,131,,,,,,39745,,, +1450,USA,,WSTU,,Stuart (FL),27.214722,-80.256667,,1,,7437,285,131,,,,,,43076,,, +1450,USA,,WTAL,,Tallahassee (FL),30.427222,-84.245278,,1,,7430,290,131,,,,,,43101,,, +1450,USA,,WVLD,,Valdosta (GA),30.834722,-83.299167,,0.86,,7336,290,131,,,,,,43304,,, +1450,USA,,WWNT,,Dothan (AL),31.219444,-85.370556,,1,,7436,292,131,,,,,,43416,,, +1450,USA,,WZGX,,Bessemer (AL),33.423056,-86.954722,,1,,7354,294,131,,,,,,43573,,, +1450,CAN,en,CBOL,,Armstrong (ON),50.302222,-89.036667,,0.04,,6144,309,132,,,,,,20109201,,, +1450,USA,,KBBS,,Buffalo (WY),44.3425,-106.681667,,1,,7529,315,132,,,,,,38008,,, +1450,USA,,KQYX,,Joplin (MO),37.069444,-94.546944,,0.94,,7506,302,132,,,,,,39215,,, +1450,USA,,KYLW,,Lockwood (MT),45.810278,-108.427222,,1,,7482,317,132,,,,,,39857,,, +1450,USA,,WCOX,,Camden (AL),31.985833,-87.288056,,1,,7494,294,132,,,,,,41062,,, +1450,USA,,WOCN,,Miami (FL),25.839444,-80.189722,,1,,7546,284,132,,,,,,42560,,, +1450,USA,,WROX,,Clarksdale (MS),34.211111,-90.578333,,1,,7511,297,132,,,,,,42905,,, +1450,USA,,WWJB,,Brooksville (FL),28.550556,-82.417222,,1,,7467,288,132,,,,,,43392,,, +1450,USA,,WYHL,,Meridian (MS),32.385833,-88.693333,,1,,7548,295,132,,,,,,41374,,, +1450,USA,,KBFI,,Bonners Ferry (ID),48.688889,-116.334444,,1,,7569,323,133,,,,,,38024,,, +1450,USA,,KGRZ,,Missoula (MT),46.8775,-114.043333,,1,,7639,321,133,,,,,,38511,,, +1450,USA,,KMMS,,Bozeman (MT),45.698333,-111.028056,,1,,7612,318,133,,,,,,38917,,, +1450,USA,,KQDI,,Great Falls (MT),47.465556,-111.322778,,0.72,,7467,320,133,,,,,,39187,,, +1450,USA,,KWBE,,Beatrice (NE),40.263611,-96.774167,,0.53,,7364,306,133,,,,,,39691,,, +1450,USA,,KWBW,,Hutchinson (KS),38.072778,-97.964722,,1,,7616,305,133,,,,,,39693,,, +1450,USA,,WBSR,,Pensacola (FL),30.428889,-87.240833,,1,,7620,292,133,,,,,,40911,,, +1450,USA,,WSDV,,Sarasota (FL),27.336389,-82.573611,,1,,7579,287,133,,,,,,43065,,, +1450,CAN,en,CKDR-3,,Hudson (ON),50.089167,-92.165278,,0.04,,6323,311,134,,,,,,20109205,,, +1450,CAN,en,CKDR-4,,Ear Falls (ON),50.636111,-93.231111,,0.04,,6336,312,134,,,,,,20109200,,, +1450,CLM,,HJPM,,Santa Marta (mag),11.166667,-74.116667,,5,,8385,269,134,,,,,,37626,,, +1450,USA,,KENA,,Mena (AR),34.573056,-94.248611,,1,,7700,300,134,,,,,,38328,,, +1450,USA,,KNHD,,Camden (AR),33.563611,-92.843611,,1,,7702,298,134,,,,,,38995,,, +1450,USA,,KVOW,,Riverton (WY),43.026389,-108.345833,,1,,7726,315,134,,,,,,39658,,, +1450,USA,,WCJU,,Columbia (MS),31.237222,-89.84,,1,,7715,295,134,,,,,,41009,,, +1450,ALS,,KLAM,,Cordova (AK),60.538889,-145.759722,,0.25,,7246,345,135,,0000-2400,1234567,,,38771,,, +1450,B,pt,ZYI561,,Castanhal (PA),-1.322333,-47.892978,,1,,7797,240,135,,,,,,36902886,,, +1450,CUB,es,R Maboas,,Amancio (lt),20.836722,-77.575222,,1,,7791,279,135,,,,,,36586,,, +1450,USA,,KGFF,,Shawnee (DN) (OK),35.352778,-96.8775,,1,,7787,302,135,,,,,,20016282,,, +1450,USA,,KGFF,,Shawnee (U) (OK),35.360833,-96.894722,,1,,7787,302,135,,,,,,38469,,, +1450,USA,,KGRE,,Greeley (CO),40.4375,-104.723611,,1,,7775,311,135,,,,,,38507,,, +1450,USA,,KJCV,,Jackson (WY),43.4625,-110.793611,,1,,7804,317,135,,,,,,20016103,,, +1450,USA,,KSIW,,Woodward (OK),36.428333,-99.402778,,1,,7838,305,135,,,,,,39366,,, +1450,USA,,WNAT,,Natchez (MS),31.559167,-91.391667,,1,,7784,296,135,,,,,,42428,,, +1450,USA,en,KCLX,,Colfax (WA),46.913889,-117.324444,,0.9,,7774,323,135,,,,,,38178,,, +1450,CAN,xx,CBKE,,Fort Chipewyan (AB),58.720833,-111.145556,,0.04,,6471,327,136,,,,,,20109199,,, +1450,CLM,es,HJHH,,Bucaramanga (sat),7.133333,-73.133333,,5,,8669,266,136,,,,,,35901839,,, +1450,CUB,es,R Mayabeque,,Gines (my),22.807692,-82.018092,,1,,7923,283,136,,,,,,31600033,,, +1450,PNR,es,R Meloda AM Stereo,,Villalobos (pnm),9.079722,-79.439444,,5,,8929,272,136,,1000-0330,1234567,,,52353,,, +1450,USA,,KNOC,,Natchitoches (LA),31.763056,-93.063056,,1,,7868,297,136,,,,,,39006,,, +1450,USA,,KVSI,,Montpelier (ID),42.317222,-111.322222,,1,,7932,316,136,,,,,,39669,,, +1450,USA,en,KONP,,Port Angeles (WA),48.098611,-123.405556,,0.91,,7900,327,136,,,,3,,39092,,, +1450,USA,ko,KSUH,,Puyallup (WA),47.178056,-122.273333,,1,,7946,326,136,,,,,,39430,,, +1450,CLM,es,HJBY Oxgeno 1450,,Flandes (tol),4.283333,-74.816667,,5,,9033,266,137,,,,,,35901840,,, +1450,CLM,es,HJNL La Cariosa,,Manizales (cal),5.066667,-75.516667,,5,,9012,267,137,,,,15,,52502,,, +1450,DOM,,HIAC R Util,,Salcedo (hmb),19.366667,-70.366667,,0.25,,7426,272,137,,0900-0400,1234567,,,37194,,, +1450,USA,,KLBM,,La Grande (OR),45.329167,-118.066667,,1,,7954,322,137,,,,,,38780,,, +1450,USA,,KLMX,,Clayton (NM),36.444167,-103.19,,1,,8046,307,137,,,,,,38831,,, +1450,USA,,KSIG,,Crowley (LA),30.229167,-92.349722,,1,,7956,296,137,,,,,,39361,,, +1450,USA,,KWEI,,Notus (ID),43.845556,-116.755833,,1,,8037,321,137,,,,9960,,39702,,, +1450,USA,en,KBKW,,Aberdeen (WA),46.949722,-123.820278,,1,,8027,327,137,,,,997,,38050,,, +1450,DOM,,R Alfa y Omega,,Santo Domingo (sdo),18.466667,-69.9,,0.25,,7470,271,138,,,,,,52249,,, +1450,USA,,KBPS,,Portland (OR),45.527222,-122.650833,,1,,8119,325,138,,,,,,38079,,, +1450,USA,,KEYY,,Provo (UT),40.230278,-111.686667,,1,,8140,315,138,,,,,,38362,,, +1450,USA,,KEZJ,,Twin Falls (ID),42.543333,-114.470556,,1,,8057,318,138,,,,,,38364,,, +1450,USA,,KGIW,,Alamosa (CO),37.472222,-105.853611,,1,,8097,310,138,,,,,,38485,,, +1450,USA,,KIKR,,Beaumont (TX),30.064444,-94.12,,1,,8078,297,138,,,,,,38605,,, +1450,USA,,KMHT,,Marshall (TX),32.563889,-94.351111,,0.65,,7878,299,138,,,,,,38901,,, +1450,USA,en,KAVP,,Colona (CO),38.387778,-107.674444,,1,,8109,312,138,,,,,,37987,,, +1450,B,pt,ZYH623 Rdio Pinto Martins,,Camocim (CE),-2.933931,-40.857344,,0.25,,7553,232,139,,,,,,36902362,,, +1450,B,pt,ZYJ701 Rdio Transamrica Hits,,Alto Alegre (RR),3.0125,-61.275278,,1,,8237,254,139,,,,,,36902359,,, +1450,USA,,KNET,,Palestine (TX),31.772778,-95.616389,,0.63,,8021,299,139,,,,,,38984,,, +1450,USA,,KSNY,,Snyder (TX),32.725833,-100.941667,,1,,8249,303,139,,,,,,39394,,, +1450,USA,,KWHW,,Altus (OK),34.626389,-99.336111,,0.67,,7991,304,139,,,,,,39711,,, +1450,B,pt,ZYH601 Rdio Difusora Cristal,,Quixeramobim (CE),-5.193822,-39.299289,,0.25,,7691,230,140,,,,,,36902377,,, +1450,USA,,KCTI,,Gonzales (TX),29.509722,-97.414167,,1,,8325,299,140,,,,,,38217,,, +1450,USA,,KCYL,,Lampasas (TX),31.049167,-98.169444,,0.8,,8235,300,140,,,,,,38230,,, +1450,USA,,KRZY,,Albuquerque (NM),35.132222,-106.621667,,1,,8347,309,140,,,,,,39323,,, +1450,USA,,KSEL,,Portales (NM),34.1975,-103.323333,,0.95,,8252,306,140,,,,,,39341,,, +1450,USA,en,KLZS r:KKNX,,Eugene (OR),44.081667,-123.109444,,1,,8277,325,140,,,,,,39095,,, +1450,B,pt,Rdio Carinhosa,,Acopiara (CE),-6.1231,-39.441425,,0.25,,7790,229,141,,,,,,36902357,,, +1450,B,pt,ZYH531 Rdio Ipir,,Ipir (BA),-12.165872,-39.734642,,1,,8400,227,141,,,,,,36902355,,, +1450,B,pt,ZYI699 Rdio Itatiunga,,Patos (PB),-7.053367,-37.271419,,0.25,,7771,227,141,,,,,,36902360,,, +1450,USA,,KFLS,,Klamath Falls (OR),42.205278,-121.767778,,1,,8404,323,141,,,,,,38407,,, +1450,USA,,KMBL,,Junction (TX),30.492778,-99.761389,,1,,8378,301,141,,,,,,38885,,, +1450,ARG,es,R El Sol,,Quilmes (ba),-34.733333,-58.266667,,10,,11511,230,142,,,,991,,33000004,,, +1450,B,pt,ZYI794 Rdio Cultura dos Palmares,,Palmares (PE),-8.683333,-35.583333,,0.25,,7851,225,142,,,,,,36902350,,, +1450,CLM,es,HJMX,,El Carmen de Bolvar (bol),9.616667,-75.15,,1,,8590,269,142,,,,,,37576,,, +1450,EQA,,HCHW2,,Quevedo (gua),-1.05,-79.45,,3,,9817,266,142,,,,,,36968,,, +1450,EQA,,HCSC5 R Calidad,,Riobamba (chi),-1.633333,-78.616667,,3,,9812,265,142,,,,35,,2046,,, +1450,USA,,KBEN,,Carrizo Springs (TX),28.520833,-99.858333,,1,,8557,300,142,,,,,,38020,,, +1450,USA,,KHIT,,Reno (NV),39.574167,-119.846667,,1,,8576,320,142,,,,,,38542,,, +1450,USA,,KOBE,,Las Cruces (NM),32.301944,-106.802222,,1,,8613,307,142,,,,,,39048,,, +1450,USA,,KZNU,,St. George (UT),37.038056,-113.636667,,1,,8530,315,142,,,,,,39900,,, +1450,USA,en,KWES,,Ruidoso (NM),33.326111,-105.670556,,0.91,,8459,307,142,,,,,,20000059,,, +1450,CLM,,HJHH,,Floridablanca (sat),7.066667,-73.066667,,1,,8670,266,143,,,,,,37470,,, +1450,MEX,es,XEJM-AM La Caliente,,Monterrey (nvl),25.655778,-100.2552,,1,,8835,299,143,,,,,,44215,,, +1450,MEX,es,XERDO-AM,,Valle Hermoso (tam),25.750556,-97.806556,,1,,8679,297,143,,,,,,44964,,, +1450,USA,,KDAP,,Douglas (AZ),31.355,-109.551667,,1,,8848,309,143,,,,,,38237,,, +1450,USA,,KEST,,San Francisco (CA),37.760278,-122.382222,,1,,8860,321,143,,,,99977,,38344,,, +1450,USA,,KNOT,,Prescott (AZ),34.545,-112.446111,,1,,8703,313,143,,,,16,,39009,,, +1450,USA,,KQTE,,Helendale (CA),34.740556,-117.363889,,1,,8925,316,143,,,,,,20016092,,, +1450,USA,,KSKE,,Buena Vista (CO),38.818611,-106.159444,,0.25,,7992,311,143,,,,,,39372,,, +1450,USA,,KTIP,,Porterville (CA),36.095556,-119.052778,,1,,8874,318,143,,,,,,39489,,, +1450,USA,,KVML,,Sonora (CA),38.008333,-120.3625,,0.94,,8749,320,143,,,,9939,,39641,,, +1450,USA,,KVSL,,Show Low (AZ),34.211111,-110.005556,,0.95,,8609,311,143,,,,,,39670,,, +1450,USA,es,KTZR,i,Tucson (AZ),32.201111,-110.946667,,1,,8843,310,143,,,,,,39706,,, +1450,B,pt,ZYH900 Rdio Boa Esperana,,So Joo dos Patos (MA),-6.497778,-43.708056,,0.25,,8053,233,144,,,,,,36902354,,, +1450,CAN,en,CBKA,,Stewart (BC),55.942778,-129.993333,,0.04,,7353,335,144,,,,,,20109206,,, +1450,CAN,en,CIFL,,Fraser Lake (BC),54.054444,-124.848611,,0.05,,7378,331,144,,,,,,20109203,,, +1450,CLM,,HJNE,,Villamaria (cal),5.066667,-75.516667,,1,,9012,267,144,,,,,,37583,,, +1450,CLM,es,HJE20,,Urrao (ant),6.316667,-76.133333,,1,,8945,268,144,,,,,,35901836,,, +1450,GTM,,TGLG R Epoca,,Ciudad de Guatemala (gut),14.616667,-90.466667,,1,,9190,284,144,,,,,,40505,,, +1450,HND,,HRBR,,Santa Rosa de Copan (cop),15.05,-88.716667,,1,,9036,283,144,,,,,,37742,,, +1450,HND,,HRXZ3,,Tegucigalpa (fmz),14.116667,-87.216667,,1,,9017,282,144,,,,,,37880,,, +1450,MEX,es,XEBP-AM Bonita,,Gmez Palacio (dur),25.55585,-103.475483,,1,,9035,301,144,,,,,,44336,,, +1450,MEX,es,XECM-AM Bonita,,Ciudad Mante (tam),22.815,-98.945833,,1,,9009,296,144,,,,,,43853,,, +1450,USA,,KPTR,,Palm Springs (CA),33.801944,-116.462222,,0.96,,8971,315,144,,,,,,38457,,, +1450,USA,,KVEN,,Ventura (CA),34.260833,-119.241111,,1,,9058,317,144,,,,,,39620,,, +1450,USA,en,KFSD r:KSPA 1510 Ontario CA,,Escondido (CA),33.117222,-117.119167,,1,,9067,315,144,,,,,,38431,,, +1450,B,pt,ZYJ828 Rdio Belos Montes,,Seara (SC),-27.158333,-52.300556,,2.5,,10495,230,145,,,,,,36902369,,, +1450,B,pt,ZYJ932 Rdio Abais,,Estncia/Rua Frei Damio (SE),-11.233333,-37.418333,,0.25,,8194,225,145,,,,,,36902365,,, +1450,MEX,es,XECU-AM La Rancherita,,Los Mochis (sin),25.762367,-109.000283,,1,,9333,305,145,,,,,,43883,,, +1450,MEX,es,XENA-AM R Capital,,Quertaro (que),20.598611,-100.438889,,1,,9299,296,145,,,,,,44433,,, +1450,MEX,es,XERNB-AM R Impacto,,Sahuayo de Morelos (mic),20.066667,-102.716667,,1,,9486,297,145,,,,,,44048,,, +1450,MEX,es,XERY-AM,,Arcelia (gue),18.3266,-100.287003,,1,,9493,294,145,,,,,,44723,,, +1450,ARG,,R Las Cuarenta,,San Juan (sj),-31.516667,-68.516667,,5,,11792,239,146,,,,,,51875,,, +1450,B,pt,ZYI908 Rdio Cultura do Gurguia,,Bom Jesus (PI),-9.077778,-44.376667,,0.25,,8339,232,146,,,,,,36902364,,, +1450,B,pt,ZYJ674 Rdio Vilhena AM,,Vilhena (RO),-12.749392,-60.1207,,1,,9597,244,146,,0900-2400,1234567,,,36902349,,, +1450,EQA,,HCRI7,,Interoceanic (nap),-0.266667,-77.766667,,1,,9634,265,146,,,,,,37088,,, +1450,EQA,,HCSC1,,Sensacion (pic),-0.033333,-78.1,,1,,9636,266,146,,,,,,37128,,, +1450,USA,,KOBO,,Yuba City (CA),39.106111,-121.655278,,0.5,,8699,321,146,,,,16,,39049,,, +1450,B,pt,ZYI417 Rdio Difusora Rio Brilhante,,Rio Brilhante (MS),-21.788592,-54.536683,,1,,10109,234,147,,,,,,36902376,,, +1450,BOL,,R Amazonia,,Cobija (pdo),-11.033333,-68.733333,,1,,9985,252,147,,,,,,52047,,, +1450,CAN,en,CBKS,,Cache Creek (BC),50.811667,-121.327778,,0.04,,7564,327,147,,,,,,20109197,,, +1450,EQA,,HCDR2,,Minutera (gua),-2.683333,-79.933333,,1,,9994,265,147,,,,,,36906,,, +1450,EQA,,HCSE2,,S Elena (gua),-2.216667,-80.866667,,1,,10016,266,147,,,,,,37130,,, +1450,MEX,es,XEDJ-AM R Clave,,Magdalena de Kino (son),30.639056,-110.954592,,0.5,,8988,309,147,,,,,,43910,,, +1450,B,pt,ZYI208 Sim AM r:Tupi 1280,,Guarapari (ES),-20.652672,-40.520264,,0.5,,9279,223,148,,,,50,,36902375,,, +1450,B,pt,ZYI559 Rdio Juru,,So Flix do Xingu (PA),-6.636111,-51.983333,,0.25,,8539,240,148,,,,,,36902374,,, +1450,B,pt,ZYK591 RBN-Rdio Boa Nova,,Guarulhos/Av Andr Lus (SP),-23.437706,-46.543889,,0.7,,9845,227,148,,,,,,36902363,,, +1450,PRG,,ZP29,,Vallemi (cnc),-22.247778,-57.914444,,1,,10342,237,148,,,,,,45524,,, +1450,URG,,CX46 R America,,Montevideo (mo),-34.85,-56.366667,,2.5,,11423,228,148,,0900-0630,1234567,,,36820,,, +1450,BOL,,CP62 R Em. Bolivia,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,0900-0130,1234567,,,36708,,, +1450,BOL,,R Amanecer,,Huari (oru),-19,-66.8,,1,,10577,245,149,,,,,,52046,,, +1450,MEX,es,XEARE-AM,,Ojinaga (chi),29.533889,-104.461111,,0.25,,8733,304,149,,,,,,43730,,, +1450,MEX,es,XEPNO-AM Aro,,Santiago Pinotepa Nacional (oax),16.313056,-98.034167,,0.4,,9532,291,149,,,,,,44565,,, +1450,B,pt,ZYJ503 Rdio Feliz,,Santo Antnio de Pdua (RJ),-21.552192,-42.172778,,0.25,,9446,224,151,,,,,,36902356,,, +1450,B,pt,ZYL312 Rdio Diamante de Coromandel,,Coromandel (MG),-18.456633,-47.207692,,0.25,,9397,230,151,,,,,,36902368,,, +1450,BOL,,CP262 R Verde y Blanco,,Santa Cruz (scz),-17.766667,-63.166667,,0.5,,10242,243,151,,1000-0700,1234567,,,36645,,, +1450,ARG,,R Presencia,,Martinez (ba),-34.483333,-58.5,,1,,11500,230,152,,,,,,51876,,, +1450,ARG,es,R Banderas,,Moreno (ba),-34.633333,-58.791667,,1,,11529,230,152,,,,,,33000093,,, +1450,B,,ZYL270,,Ouro Fino (MG),-22.266667,-46.366667,,0.25,,9722,228,152,,,,,,46697,,, +1450,B,pt,ZYJ480 Rdio do Comercio,,Barra Mansa/Fazenda Boa Vista (RJ),-22.563889,-44.116667,,0.25,,9640,226,152,,,,,,36902366,,, +1450,B,pt,ZYK526 Rdio Cultura 1450,,Ituverava (SP),-20.342942,-47.769356,,0.25,,9608,230,152,,,,,,36902370,,, +1450,B,pt,ZYK587 RDG-Rdio Difusora Guararapes,,Guararapes (SP),-21.2453,-50.617936,,0.25,,9845,231,152,,,,,,36902348,,, +1450,B,pt,ZYK657 Rdio So Carlos,,So Carlos/Chcara So Pedro (SP),-22.016667,-47.9,,0.25,,9776,229,152,,,,,,36902372,,, +1450,B,,ZYJ225,,Telmaco Borba (PR),-24.316667,-50.616667,,0.25,,10137,230,153,,,,,,45952,,, +1450,B,,ZYJ293,,Irati (PR),-25.433333,-50.616667,,0.25,,10244,229,154,,,,,,46016,,, +1450,B,pt,ZYJ301 Rdio Difusora Ubiratanense,,Ubirat (PR),-24.553056,-52.993333,,0.25,,10285,232,154,,,,,,36902351,,, +1450,B,pt,ZYJ317 Rdio Rainha do Oeste,,Altnia (PR),-23.870717,-53.875031,,0.25,,10269,233,154,,,,,,36902371,,, +1450,B,pt,ZYJ802 Rdio So Bento AM,,So Bento do Sul (SC),-26.216667,-49.416667,,0.25,,10257,228,154,,,,,,36902379,,, +1450,CHL,,CB145 R Universidad Tecnica Federico Santa Maria,,Valparaso (VS),-33.033333,-71.5,,1,,12099,240,154,,1100-0300,1234567,,,35738,,, +1450,CHL,,CC145 R Libertad,,Curic (ML),-35.066667,-71.25,,1,,12258,238,154,,1000-0400,1234567,,,35818,,, +1450,B,pt,ZYJ822 Rdio Hulha Negra,,Cricima (SC),-28.695556,-49.325,,0.25,,10490,227,155,,,,,,36902378,,, +1450,B,pt,ZYK338 Rdio Cultura,,Arvorezinha (RS),-28.858056,-52.183889,,0.25,,10650,229,155,,,,,,36902361,,, +1450,B,pt,ZYK346 Rdio Cassino AM,,Rio Grande (RS),-32.03,-52.09,,0.25,,10944,227,156,,,,,,36902367,,, +1450,CHL,,CD145 R Santa Maria de Guadalupe,,Puerto Varas (LL),-41.3,-73.016667,,1,,12883,235,157,,0000-2400,1234567,,,51956,,, +1450,URG,,CW145 R Arapey,,Salto (sa),-31.516667,-57.916667,,0.25,,11198,231,157,,0000-2400,1234567,,,36752,,, +1455,BOL,,R Magnal,,Capinota (cbb),-17.716667,-66.266667,,0.5,,10428,246,151,,1000-1800,......7,,,52048,,, +1455,BOL,,R Magnal,,Capinota (cbb),-17.716667,-66.266667,,0.5,,10428,246,151,,1600-2400,123456,,,52048,,, +1458,G,,14 58 AM,,Brookmans Park/4 wire T aerial (EN-HTS),51.727778,-0.176389,,130,,454,267,40,,0000-2400,1234567,0,,1477,,, +1458,ALB,bg,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1700-1800,1234567,636,,1473,,, +1458,ALB,cs,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,2230-2330,1234567,636,,1473,,, +1458,ALB,el,R Tirana,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1645-1700,123456,636,,1473,,, +1458,ALB,hu,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,2000-2100,1234567,636,,1473,,, +1458,ALB,it,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1800-1900,1234567,636,,1473,,, +1458,ALB,pl,China R Int.,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,2130-2230,1234567,636,,1473,,, +1458,ALB,sq,R Tirana,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1500-1630,1234567,636,,1473,,, +1458,ALB,sr,R Tirana,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,2115-2130,123456,636,,1473,,, +1458,ALB,tu,R Tirana,,Fllak (dur),41.365,19.501389,,500,4,1552,135,46,,1930-2000,123456,636,,1473,,, +1458,G,,BBC Asian Network,,Birmingham/Langley Mill-A (EN-WMD),52.568333,-1.764889,,5,220,557,278,56,,0000-2400,1234567,,,1478,,, +1458,G,en,Gold,,Ashton Moss/Arqiva (EN-GTM),53.491111,-2.115,,5,,593,288,56,,0000-2400,1234567,48,,1479,,, +1458,ROU,ro,SRR R Romnia Actualităţi,,Constanţa/Techirghiol (CT),44.089806,28.6035,,50,,1863,110,59,,0000-2400,1234567,998,,1482,,, +1458,G,en,BBC R Newcastle,,Newcastle upon Tyne/Wrekenton (EN-TYW),54.932806,-1.572944,,2,,613,304,60,,0000-2400,1234567,0,,1475,,, +1458,G,en,BBC R 5 Live,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,2,,718,259,61,,0000-0400,12345..,,,1476,,, +1458,G,en,BBC R 5 Live,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,2,,718,259,61,,0000-0500,.....67,,,1476,,, +1458,G,en,BBC R Devon,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,2,,718,259,61,,0400-2400,12345..,,,1476,,, +1458,G,en,BBC R Devon,,Torbay/Occombe (EN-DVN),50.456306,-3.582083,,2,,718,259,61,,0500-2400,.....67,,,1476,,, +1458,G,en,BBC R 5 Live,,Whitehaven (EN-CUM),54.539583,-3.586472,,0.5,,716,296,67,,0000-0600,1234567,2,,1474,,, +1458,G,en,BBC R Cumbria,,Whitehaven (EN-CUM),54.539583,-3.586472,,0.5,,716,296,67,,0600-2400,1234567,2,,1474,,, +1458,GIB,en,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,0000-2400,......7,,,1480,,, +1458,GIB,en,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,1400-2400,.....6.,,,1480,,, +1458,GIB,en,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,1500-1300,12345..,,,1480,,, +1458,GIB,es,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,1300-1400,.....6.,,,1480,,, +1458,GIB,es,R Gibraltar,,Maida Vale (gib),36.129364,-5.348817,,2,,2004,212,74,,1300-1500,12345..,,,1480,,, +1458,ISR,he,IBA Reshet Aleph (A),,She'ar-Yeshuv (hzf),33.216111,35.644444,,10,,3144,120,78,,0000-2400,1234567,,,4300001,,, +1458,RUS,ru,R Rossii,,Kudymkar/Egva (PR),59.113056,54.7675,,7,,3061,56,79,,2300-1900,1234567,,,1483,,, +1458,ISR,he,IBA Reshet Aleph (A),,Eilat (hdm),29.556056,34.964317,,10,,3430,126,81,,0000-2400,1234567,,,1481,,, +1458,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Ghayen=Qaen (skh),33.745389,59.161972,,10,,4629,95,93,,,,1,,1815,,, +1458,BHR,ar,R Bahrain,,Al-Manamah (mnh),26.216667,50.583333,,10,,4664,111,94,,0000-2400,1234567,,,10900017,,, +1458,IND,,AIR North,,Barmer (RJ),25.813011,71.405997,,20,,6086,92,105,,0025-0430,1234567,3,,50915,,, +1458,IND,,AIR North,,Barmer (RJ),25.813011,71.405997,,20,,6086,92,105,,0630-0930,1234567,3,,50915,,, +1458,IND,,AIR North,,Barmer (RJ),25.813011,71.405997,,20,,6086,92,105,,1130-1740,1234567,3,,50915,,, +1458,CHN,mn,Nei Menggu RGD Mongyol,,Hohhot/NMTS610 (NM),40.736944,111.475278,,150,,7427,53,110,,2150-1605,1234567,999,,50913,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,0020-0425,123456,,,50916,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,0020-0435,......7,,,50916,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,0630-0955,123456,,,50916,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,0630-1025,......7,,,50916,,, +1458,IND,,AIR East,,Bhagalpur (BR),25.214167,86.970556,,20,,7195,81,116,,1130-1730,1234567,,,50916,,, +1458,AGL,pt,RNA Em. Prov. do Moxico,,Luena (mox),-11.783458,19.922178,,10,,7222,165,119,,0400-2300,1234567,61,,2368,,, +1458,CHN,mn,Nei Menggu RGD Mongyol,,Ordos=Eerduosi/NMTS881 (NM),39.800361,110.094056,,10,,7431,54,121,,,,,,36200662,,, +1458,CHN,,Zhengzhou RGD Yes R,,Zhengzhou (HE),34.7,113.7,,5,,8072,55,131,,,,,,50912,,, +1458,MYT,fr,Mayotte 1re,,Pamandzi (976),-12.76395,45.283089,,5,,8120,140,131,,1030-2400,1234567,9967,,2535,,, +1458,CHN,,Lianyungang RGD News,,Lianyungang (JS),34.666194,119.153972,,5,,8374,52,134,,2125-1515,1234567,,,50914,,, +1458,CHN,mn,Nei Menggu RGD Mongyol,,Tongliao/NMTS729 (NM),43.666667,122.216667,,1,,7719,44,134,,,,,,36200661,,, +1458,THA,th,Jor. Sor. 6,,Sisaket/1543-23 Si Sumang Rd (sis),15.101389,104.334167,,10,,9216,75,134,,2200-1502,1234567,,,50937,,, +1458,THA,th,Sor. Thor. Ror. 3,,Phuket (puk),7.868264,98.393083,,10,,9453,84,135,,0000-2400,1234567,,,50936,,, +1458,CHN,,Anshan RGD Traffic,,Anshan (LN),41.116667,122.966667,,1,,7985,45,137,,,,,,36200663,,, +1458,PHL,,DZJV-AM,,Calamba City (lag),14.208889,121.152222,,10,,10361,62,138,,????-0915,123456,,,50932,,, +1458,PHL,,DYZZ-AM Bantay Radyo,,Guihulngan (noc),10.116667,123.266667,,10,,10867,62,140,,????-1600,1234567,,,50933,,, +1458,KOR,,HLSD KBS 1 R,,Bonghwa (gsb),36.940556,128.918611,,1,,8656,44,143,,0000-2400,1234567,,,50929,,, +1458,KOR,,HLSH KBS 1 R,,Hamyang (gsn),35.516667,127.716667,,1,,8733,45,143,,0000-2400,1234567,,,50930,,, +1458,J,ja,IBS Ibaraki Hoso,,Sekijo (kan-iba),36.268333,139.954167,,1,,9204,36,144,,0000-2400,1234567,,,50926,,, +1458,J,ja,JOUO NBC Saga,,Saga (kyu-sag),33.251944,130.265833,,1,,9070,45,144,,0000-2400,1234567,,,50924,,, +1458,J,ja,JOWR RFC R.Fukushima,,Fukushima (toh-fuk),37.774444,140.491389,,1,,9076,35,144,,0000-2400,1234567,,,50922,,, +1458,J,ja,JOYL IBS Ibaraki Hoso,,Tsuchiura (kan-iba),36.073889,140.175,,1,,9233,36,144,,0000-2400,1234567,,,50927,,, +1458,J,ja,RCC,,Shobara (chg-hir),34.85,133.033333,,1,,9046,42,144,,,,,,31400104,,, +1458,INS,id,Ragesa 1458 AM,,Tangerang (BT-tan),-6.183333,106.633333,,1,,11247,86,151,,,,,,50910,,, +1458,INS,id,R Fajri,,Bandung (JB-ban),-6.95,107.566667,,1,,11378,85,152,,,,,,50917,,, +1458,INS,id,R Kareme Nuvula,,Parigi (ST-par),-0.833333,120.175,,1,,11676,71,153,,,,,,35400092,,, +1458,J,,JOSS Tokai Hoso,,Kamioka (chu-gif),36.316667,137.3,,0.1,,9090,38,154,,0000-2400,1234567,,,50923,,, +1458,J,,NBC Saga,,Arita (kyu-sag),33.183333,129.883333,,0.1,,9058,45,154,,0000-2400,1234567,,,50921,,, +1458,J,,SBC, Shinetsu Hoso,,Saku (chu-nag),36.283333,138.483333,,0.1,,9143,37,154,,0000-2400,1234567,,,50925,, +1458,J,ja,NBC Saga,,Karatsu (kyu-sag),33.466667,130,,0.1,,9037,45,154,,,,,,31400103,,, +1458,J,ja,RCC,,Miyoshi (chg-hir),34.8,132.85,,0.1,,9043,42,154,,,,,,31400106,,, +1458,J,ja,RCC,,Tojp,34.5,134,,0.1,,9124,41,154,,,,,,31400105,,, +1458,AUS,en,2PB ABC Newsr,,Newcastle/Beresfield (NSW),-32.800597,151.661661,,2,,16501,66,165,,0000-2400,1234567,,,50911,,, +1458,NZL,,RNZ National,,Westport/Cape Foulwind (WTC),-41.750167,171.466194,,2.5,,18404,50,171,,0000-2400,1234567,,,50931,,, +1460,USA,en,WOPG,i,Albany (NY),42.6225,-73.8025,,5,,5818,294,108,,,,9945,,41140,,, +1460,CAN,,CJOY,,Guelph (ON),43.485833,-80.245,,10,,6150,298,109,,,,999,,36204,,, +1460,USA,,WHIC,,Rochester (NY),43.083056,-77.647778,,5,,6023,296,110,,,,9993,,41637,,, +1460,USA,en,WGMF,,Tunkhannock (PA),41.562778,-75.969722,,5,,6030,294,110,,,,,,41302,,, +1460,USA,,WKDV,,Manassas (VA),38.75,-77.513611,,5,,6338,292,113,,,,2,,41988,,, +1460,USA,en,WTKT,i,Harrisburg (PA),40.308889,-76.936944,,4.2,,6184,293,113,,,,,,43159,,, +1460,USA,,WXBR,,Brockton (MA),42.048333,-71.055556,,1,,5686,291,114,,,,9757,,40834,,, +1460,USA,,WBRN,,Big Rapids (MI),43.663611,-85.481667,,2.5,,6447,301,118,,,,,,40903,,, +1460,USA,,WEKB,,Elkhorn City (KY),37.306944,-82.331389,,5,,6752,294,118,,,,,,40895,,, +1460,USA,,WEWO,,Laurinburg (NC),34.783333,-79.511111,,5,,6774,290,118,,,,,,41342,,, +1460,USA,,WKAM,,Goshen (IN),41.59,-85.815556,,2.5,,6627,300,119,,,,,,41950,,, +1460,USA,,KKAQ,,Thief River Fall (MN),48.123611,-96.141944,,2.5,,6683,311,120,,,,,,38704,,, +1460,USA,,KLTC,,Dickinson (ND),46.848333,-102.830278,,5,,7124,314,121,,,,999,,38846,,, +1460,USA,,WIFI,,Florence (NJ),40.081389,-74.794722,,0.5,,6066,292,121,,,,,,41737,,, +1460,USA,en,KXNO,,Des Moines (IA),41.645833,-93.536667,,5,,7068,305,121,,,,1,,39808,,, +1460,USA,,WKHZ,,Easton (MD),38.770278,-76.081944,,0.5,,6246,291,122,,,,,,41297,,, +1460,USA,,WPON,,Walled Lake (MI),42.543889,-83.499444,,0.76,,6416,299,122,,,,,,42723,,, +1460,USA,,WABQ,,Painesville (OH),41.738889,-81.235833,,0.5,,6341,297,123,,,,,,40633,,, +1460,USA,,WBNS,,Columbus (OH),39.951667,-82.906389,,1,,6580,297,123,,,,,,40887,,, +1460,USA,en,WQOP,,Jacksonville (FL),30.327778,-81.746944,,5,,7277,288,123,,,,,,43583,,, +1460,USA,,WBOG,,Tomah (WI),43.968611,-90.513889,,1,,6711,305,124,,,,,,40890,,, +1460,USA,,WMBA,,Ambridge (PA),40.585556,-80.203056,,0.5,,6366,296,124,,,,,,42277,,, +1460,USA,,WVOX,,New Rochelle (NY),40.928333,-73.775,,0.122,,5939,292,125,,,,,,43338,,, +1460,USA,,KDMA,,Montevideo (MN),44.934722,-95.7475,,1,,6920,309,126,,,,,,38281,,, +1460,USA,,WBCU,,Union (SC),34.719444,-81.662222,,1,,6916,292,126,,,,,,40827,,, +1460,USA,,WRAD,,Radford (VA),37.143056,-80.577222,,0.5,,6655,293,127,,,,,,42810,,, +1460,USA,,WNPL,,Golden Gate (FL),26.257222,-81.675833,,2,,7610,285,130,,,,9999,,20000012,,, +1460,USA,es,WJTI,,Racine (WI),43.008889,-88.035,,0.24,,6646,302,130,,,,,,40867,,, +1460,USA,en,KUTI,,Yakima (WA),46.558056,-120.450556,,3.7,,7934,325,131,,,,7,,39597,,, +1460,USA,,WRKB,,Kannapolis (NC),35.487222,-80.605,,0.194,,6787,292,132,,,,,,42865,,, +1460,USA,en,KARR,,Kirkland (WA),47.673056,-122.168889,,2.5,,7895,326,132,,,,1,,37966,,, +1460,B,pt,ZYK707 Rdio Universal,,So Roque/Morro do Itapecu (SP),-23.517794,-47.0324,,25,,9877,227,133,,,,,,36902383,,, +1460,PTR,,WLRP,,San Sebastian (PR),18.347222,-66.998889,,0.5,,7282,269,133,,0900-0400,1234567,,,42226,,, +1460,USA,,KION,,Salinas (CA),36.733056,-121.592222,,10,,8926,320,133,,,,95,,37906,,, +1460,USA,,WELZ,,Belzoni (MS),33.173333,-90.480833,,1,,7592,297,133,,,,,,41295,,, +1460,USA,,WMCJ,,Cullman (AL),34.178889,-86.866111,,0.5,,7286,295,133,,,,,,42290,,, +1460,VEN,,YVRJ R Jardin,,Bocono (tjl),9.25,-70.25,,5,,8287,265,133,,,,,,45444,,, +1460,CUB,,?,,Mayar Arriba/CTOM2 (sc),20.410894,-75.526333,,1,,7689,277,134,,,,,,31600128,,, +1460,USA,,WHBK,,Marshall (NC),35.801111,-82.68,,0.139,,6893,293,134,,,,,,41607,,, +1460,B,pt,ZYH300 Rdio Clube de Parintins,,Parintins (AM),-2.640583,-56.757356,,5,,8460,247,135,,,,,,36902386,,, +1460,CLM,es,HJVH,,Barranquilla (atl),10.966667,-74.8,,5,,8449,270,135,,,,,,35901853,,, +1460,PTR,,WRRE,,Juncos (PR),18.215,-65.909167,,0.27,,7219,268,135,,,,,,42912,,, +1460,USA,,KHOJ,,St. Charles (MO),38.834722,-90.468889,,0.21,,7122,301,135,,,,,,20016003,,, +1460,USA,,WXEM,,Buford (GA),34.120833,-83.976389,,0.193,,7110,293,135,,,,,,43461,,, +1460,B,pt,ZYH917 Rdio Vanguarda de Santa Luzia,,Santa Luzia (MA),-3.960556,-45.668056,,1,,7919,236,136,,,,,,36902397,,, +1460,USA,,WRVK,,Mount Vernon (KY),37.396944,-84.329167,,0.093,,6869,296,136,,,,,,42935,,, +1460,USA,en,WJCP,,North Vernon (IN),38.996111,-85.650556,,0.092,,6822,298,136,,,,,,42530,,, +1460,CLM,es,HJJH,,Armenia (qui),4.5,-75.716667,,5,,9075,267,137,,,,,,37508,,, +1460,DOM,,HIAN R Renacimiento,,Hato Mayor del Rey (hmr),18.75,-69.25,,0.25,,7402,271,137,,,,,,37206,,, +1460,USA,,WEEN,,Lafayette (TN),36.535,-86.0075,,0.119,,7041,296,137,,,,,,41258,,, +1460,USA,,WXRQ,,Mount Pleasant (TN),35.5225,-87.192778,,0.169,,7196,296,137,,,,,,43492,,, +1460,CLM,es,HJZU,,Pasto (nar),1.166667,-77.266667,,5,,9474,266,138,,,,,,37667,,, +1460,USA,,KZUE,,El Reno (OK),35.508333,-97.9,,0.5,,7832,303,138,,,,,,39913,,, +1460,USA,,WBUC,,Buckhannon (WV),38.974444,-80.207222,,0.024,,6490,294,138,,,,,,40924,,, +1460,USA,,WROY,,Carmi (IL),38.081667,-88.201111,,0.085,,7049,299,138,,,,,,42906,,, +1460,USA,sp,WKJR,,Rantoul (IL),40.310278,-88.215,,0.065,,6870,300,138,,,,,,41854,,, +1460,B,pt,ZYH595 Rdio Ressurreio,,Massap (CE),-3.597667,-40.347344,,0.25,,7590,232,139,,,,,,36902389,,, +1460,B,pt,ZYH616 Rdio Uirapuru,,Morada Nova (CE),-5.112361,-38.366753,,0.25,,7635,229,139,,,,70,,36902381,,, +1460,B,pt,ZYJ615 Rdio Agreste,,Santo Antnio (RN),-6.307778,-35.477778,,0.25,,7608,226,139,,,,992,,36902384,,, +1460,EQA,,HCIC6,,Latacunga (cot),-0.916667,-78.566667,,5,,9745,265,139,,,,,,36970,,, +1460,HTI,,Voix du Nord,,Cap-Hatien (nrd),19.75,-72.166667,,0.2,,7516,274,139,,,,,,35637,,, +1460,USA,,KDWA,,Hastings (MN),44.737222,-92.828333,,0.041,,6778,307,139,,,,,,38299,,, +1460,USA,,KZNT,,Colorado Springs (CO),38.826111,-104.741389,,0.54,,7918,310,139,,,,,,39899,,, +1460,USA,,WHAL,,Phenix City/Columbus (AL),32.432778,-84.950556,,0.14,,7309,292,139,,,,,,41594,,, +1460,USA,en,KCLE,,Burleson (TX),32.578611,-97.280556,,0.7,,8050,301,139,,,,,,39475,,, +1460,EQA,,HCCL3,,Cariamanga (loj),-4.35,-79.6,,5,,10117,264,140,,,,,,36879,,, +1460,USA,,WJAK,,Jackson (TN),35.643611,-88.773333,,0.105,,7282,297,140,,,,,,41837,,, +1460,USA,,WZEP,,Defuniak Springs (FL),30.729167,-86.117778,,0.186,,7524,292,140,,,,,,43570,,, +1460,USA,es,WQXM,,Bartow (FL),27.909444,-81.858056,,0.155,,7484,287,140,,,,,,42805,,, +1460,B,pt,ZYH536 Rdio Alvorada,,Cruz das Almas (BA),-12.6567,-39.127483,,1,,8419,226,141,,,,,,36902380,,, +1460,B,pt,ZYJ308 Rdio Ampre AM,,Ampre (PR),-25.933333,-53.483333,,5,,10442,231,141,,,,,,36902395,,, +1460,CHL,,CA146 R Antofagasta,,Antofagasta (AN),-23.466667,-70.366667,,10,,11196,245,141,,1130-0300,1234567,,,35695,,, +1460,CTR,,TILX R Columbia,,Limon (lmn),10,-83.016667,,2,,9093,276,141,,,,,,40591,,, +1460,USA,,KTKC,,Springhill (LA),33.007778,-93.478611,,0.22,,7787,298,141,,,,,,38095,,, +1460,USA,,WDOG,,Allendale (SC),33.223611,-81.359722,,0.045,,7017,290,141,,,,,,41196,,, +1460,USA,,WXOK,,Baton Rouge (LA),30.473611,-91.226111,,0.29,,7866,295,141,,,,,,43485,,, +1460,B,pt,ZYH253 Rdio Canavieiro,,Unio dos Palmares (AL),-9.15,-36.033333,,0.25,,7919,225,142,,,,,,45580,,, +1460,B,pt,ZYH472 Rdio Povo,,Jequi (BA),-13.836967,-40.070764,,1,,8582,226,142,,,,,,36902402,,, +1460,CLM,,HJMY,,Villa del Rosario (nsa),7.811111,-72.473611,,1,,8565,266,142,,,,,,37578,,, +1460,CLM,es,HJAL,,Sincelejo (suc),9.3,-75.4,,1,,8634,269,142,,,,,,37328,,, +1460,EQA,,HCC15,,Biblian (can),-2.683333,-78.9,,3,,9923,265,142,,,,,,36873,,, +1460,HND,,HRQX,,Comayagua (cmy),14.316667,-87.5,,1.5,,9019,282,142,,,,,,37832,,, +1460,USA,,WIXN,,Dixon (IL),41.827222,-89.486389,,0.023,,6823,302,142,,,,,,41826,,, +1460,B,pt,ZYI903 Rdio Cultura,,Amarante (PI),-6.232928,-42.854861,,0.25,,7981,232,143,,,,,,36902392,,, +1460,CLM,es,HJE26,,La Ceja (ant),6.033333,-75.433333,,1,,8922,267,143,,,,,,35901855,,, +1460,CLM,es,HJMN,,Amalfi (ant),8.116667,-76.616667,,1,,8821,270,143,,,,,,37571,,, +1460,CLM,es,HJTN,,Turbo (ant),8.1,-76.733333,,1,,8830,270,143,,,,,,35901854,,, +1460,HND,,HRIC,,Puerto Cortes (cor),15.833333,-87.916667,,1,,8914,283,143,,,,,,37769,,, +1460,CLM,,HJTF R Maria,,Turbo (ant),6.083333,-76.616667,,1,,8998,268,144,,,,48,,37642,,, +1460,CLM,es,HJJW R Nuevo Continente,,Bogot D. C. (bdc),4.616667,-74.066667,,1,,8953,265,144,,0000-2400,1234567,998,,37517,,, +1460,GTM,,TGRN R Petn,,Flores (pet),16.916667,-89.9,,1,,8951,285,144,,1100-0500,1234567,,,40532,,, +1460,HND,,HRMS2,,Campamento (ola),14.433333,-86.65,,1,,8952,281,144,,,,,,37801,,, +1460,MEX,es,XECB-AM R Ranchito,,San Luis Ro Colorado (son),32.460878,-114.817389,,1,,9017,313,144,,,,,,43821,,, +1460,USA,,KCNR,,Shasta (CA),40.553889,-122.381389,,0.75,,8589,323,144,,,,,,38186,,, +1460,USA,,KXPN,,Kearney (NE),40.7125,-99.170833,,0.056,,7457,308,144,,,,,,39817,,, +1460,USA,en,KKOY,,Chanute (KS),37.688333,-95.47,,0.057,,7507,303,144,,,,,,38748,,, +1460,B,pt,ZYL201 Rdio Cultura de Porto Novo,,Alm Paraba/Sitio Santa Monica (MG),-21.880278,-42.704444,,1,,9504,225,145,,,,,,36902399,,, +1460,CLM,es,HJFL,,San Agustin (hui),1.866667,-76.283333,,1,,9345,265,145,,,,,,37436,,, +1460,PRU,,OAX5K R Internacional,,Pisco (ica),-13.666667,-76.166667,,2.5,,10706,256,145,,,,,,40321,,, +1460,USA,,KBZO,,Lubbock (TX),33.547222,-101.823056,,0.243,,8226,305,145,,,,,,38115,,, +1460,USA,,KENO,,Las Vegas (NV),36.190278,-115.176389,,0.62,,8683,315,145,,,,9931,,38331,,, +1460,B,pt,Rdio Globo,,Costa Rica (MS),-18.553883,-53.1333,,1,,9727,235,146,,,,4,,36902390,,, +1460,HWA,ko,KHRA,,Honolulu (HI),21.323889,-157.875556,,5,,11708,345,146,,,,0,,38559,,, +1460,MEX,es,XEGRA-AM Soy Guerrero,,Acapulco (gue),16.908889,-99.825833,,1,,9592,293,146,,,,,,44076,,, +1460,B,pt,ZYH523 Rdio Cano Nova,,Morro do Chapu (BA),-11.545278,-41.145,,0.25,,8410,228,147,,,,,,36901100,,, +1460,EQA,,HCMG5,,Giron (azu),-3.2,-79.116667,,1,,9984,265,147,,,,,,37025,,, +1460,PNR,es,HOD42 La Voz de Almirante,,Almirante (bct),9.283333,-82.416667,,0.5,,9114,275,147,,1400-0400,1234567,,,37710,,, +1460,USA,,KTYM,,Inglewood (CA),34.007222,-118.365,,0.5,,9042,316,147,,,,8,,39556,,, +1460,MEX,es,XEKC-AM Stereo Exitos,,Oaxaca (oax),17.061842,-96.733306,,0.5,,9382,291,148,,,,,,44247,,, +1460,PRU,,OAX1V LV de Chira,,Sullana (piu),-4.566667,-81.316667,,1,,10253,265,148,,,,,,40275,,, +1460,USA,,KBRZ,,Freeport (TX),29.564444,-95.701667,,0.125,,8217,298,148,,,,,,38094,,, +1460,USA,,KCWM,,Hondo (TX),29.361667,-99.128333,,0.226,,8440,300,148,,,,,,38228,,, +1460,B,pt,ZYK312 Rdio Colonial AM,,Trs de Maio (RS),-28.55,-49.133333,,1,,10466,227,149,,,,,,36902404,,, +1460,CLM,es,HKY73,,San Andrs (sat),6.816667,-72.85,,0.25,,8677,266,149,,,,,,35901841,,, +1460,PRU,,OAX7W R El Sol de los Andes,,Juliaca (pun),-15.816667,-70.016667,,1,,10495,250,149,,,,,,40352,,, +1460,PRU,,OBX6C R Bahia,,Mollendo (are),-17,-72,,1,,10727,251,149,,,,,,40407,,, +1460,ARG,,R Contacto,,Ituzaingo (cn),-27.566667,-56.666667,,1,,10766,233,150,,0000-2400,1234567,,,51878,,, +1460,B,pt,ZYL356 Rdio Buritis,,Buritis (MG),-15.638264,-46.42535,,0.25,,9083,231,150,,,,,,36902406,,, +1460,ARG,,LRK146 R 21,,Yerba Buena (tm),-26.816667,-65.316667,,1,,11188,240,151,,0000-2400,1234567,,,51880,,, +1460,B,,ZYI685,,Barra do Garas (MT),-15.866667,-52.25,,0.25,,9424,236,151,,,,,,45877,,, +1460,B,pt,ZYH766 Rdio Morrinhos,,Morrinhos (GO),-17.737328,-49.096178,,0.25,,9428,232,151,,,,,,36902405,,, +1460,B,pt,ZYL363 Rdio Sociedade Entre Rios,,Raul Soares/Serra Matipozinho (MG),-20.1,-42.466667,,0.25,,9317,225,151,,,,,,36902398,,, +1460,CLM,es,HKR44,,Victoria (cal),5.316667,-74.916667,,0.2,,8949,266,151,,,,,,35901852,,, +1460,EQA,,HCLD4,,Junin (man),-0.916667,-80.216667,,0.35,,9858,267,151,,,,,,37005,,, +1460,ARG,,R Almirante Brown,,San Jos (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51881,,, +1460,ARG,,R Luminemos el Mundo,,Ezeiza (ba),-34.85,-58.533333,,1,,11535,230,152,,,,,,51879,,, +1460,ARG,,R Nativa,,Claypole (ba),-34.8,-58.333333,,1,,11520,230,152,,,,,,51877,,, +1460,B,,ZYL333,,Paraguau (MG),-21.55,-45.716667,,0.25,,9620,227,152,,,,,,46759,,, +1460,B,pt,ZYK548 Rdio Clube Ararense,,Araras (SP),-22.359856,-47.345125,,0.25,,9781,228,152,,,,928,,36902385,,, +1460,B,pt,ZYK608 Rdio Cultura de Lorena,,Lorena (SP),-22.736403,-45.092067,,0.25,,9704,226,152,,,,85,,36902393,,, +1460,PRU,,OCY4I R Imperial,,Junn (jun),-12.183333,-75.166667,,0.5,,10509,256,152,,,,,,40442,,, +1460,URG,,CX146 R Carmelo,,Carmelo (co),-34,-58.283333,,1,,11445,230,152,,0900-0300,1234567,,,36792,,, +1460,B,pt,ZYJ204 Rdio Difusora AM,,Paranagu (PR),-25.5175,-48.535,,0.25,,10145,228,153,,,,,,36902401,,, +1460,B,pt,ZYJ251 Rdio Cultura de Apucarana,,Apucarana (PR),-23.523611,-51.450556,,0.25,,10106,231,153,,,,,,36902403,,, +1460,B,pt,ZYJ318 Guadalupe AM,,Loanda (PR),-22.9,-53.166667,,0.25,,10139,233,153,,,,,,36902382,,, +1460,B,,ZYJ748,,Curitibanos (SC),-27.266667,-50.566667,,0.25,,10416,228,154,,,,,,46161,,, +1460,B,pt,ZYJ228 Rdio Central do Paran,,Ponta Grossa (PR),-25.051667,-50.118056,,0.25,,10182,229,154,,,,,,36902400,,, +1460,B,pt,ZYJ297 Rdio Guara,,Guara (PR),-24.097222,-54.279444,,0.25,,10312,233,154,,,,,,36902396,,, +1460,B,pt,ZYJ756 Rdio Sentinela do Vale AM,,Gaspar (SC),-26.885556,-48.825,,0.25,,10291,227,154,,,,,,36902387,,, +1460,CHL,,CB146 R Yungay,,Santiago (RM),-33.566667,-70.766667,,1,,12101,239,154,,1100-0400,1234567,,,35739,,, +1460,B,pt,ZYK373 Rdio Campinas do Sul AM,,Campinas do Sul (RS),-27.718056,-52.615833,,0.25,,10564,230,155,,,,,,36902388,,, +1460,B,,ZYK316,,Uruguaiana (RS),-29.766667,-57.066667,,0.25,,10991,232,156,,,,,,46343,,, +1460,B,pt,ZYK214 Rdio Cultura AM,,Bag (RS),-31.316667,-54.1,,0.25,,10979,229,156,,,,,,36902394,,, +1460,B,pt,ZYK378 Rdio Mostardas,,Mostardas (RS),-31.091667,-50.910556,,0.25,,10797,227,156,,,,,,36902391,,, +1460,URG,,CV146 R Jose Batlle y Ordonez,,Jos Batlle y Ordoez (la),-33.467222,-55.15,,0.25,,11233,228,157,,1100-0300,1234567,,,36729,,, +1460,USA,,KCKX,,Stayton (OR),44.802778,-122.734167,,0.015,,8193,325,157,,,,,,38167,,, +1460,ARG,,LT29 R Venado Tuerto,,Venado Tuerto (sf),-33.766667,-61.966667,,0.25,,11621,233,158,,0930-0330,1234567,,,40181,,, +1460,ARG,,LU30 R Maipu,,Maipu (ba),-36.366667,-57.883333,,0.25,,11640,229,158,,0900-2400,1234567,,,40226,,, +1460,USA,,KRRS,,Santa Rosa (CA),38.370278,-122.7275,,0.033,,8816,322,158,,,,9912,,39291,,, +1460,USA,en,WPXG674,,Magalia/14211 Wycliff Way (CA),39.824722,-121.6075,,0.01,,8627,322,162,,,,,,20010693,,, +1460,ARG,es,LU34 R Pigue,,Pigue (ba),-37.666667,-62.383333,,0.1,,11991,231,164,,1000-0300,1234567,,,40229,,, +1461,BOL,,R LV del Pueblo de Dios,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,0900-0100,123456,,,52049,,, +1461,BOL,,R LV del Pueblo de Dios,,Cochabamba (cbb),-17.366667,-66.166667,,1,,10390,246,148,,1100-0100,......7,,,52049,,, +1467,F,ar,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2115-2300,...4...,9970,,1487,,, +1467,F,ar,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2130-2300,123.567,9970,,1487,,, +1467,F,cs,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2013-2030,.....6.,9970,,1487,,, +1467,F,cs,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2013-2045,12345.7,9970,,1487,,, +1467,F,en,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2300-2315,123456,9970,,1487,,, +1467,F,en,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2300-2345,......7,9970,,1487,,, +1467,F,fr,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2030-2100,.....6.,9970,,1487,,, +1467,F,kb,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2045-2115,12345..,9970,,1487,,, +1467,F,kb,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2045-2130,......7,9970,,1487,,, +1467,F,kb,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2100-2130,.....6.,9970,,1487,,, +1467,F,tz,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2115-2130,1.3....,9970,,1487,,, +1467,F,us,TWR Europe,,Roumoules (3AM4) (04),43.793428,6.158506,,1000,,925,181,36,,2115-2130,....5..,9970,,1487,,, +1467,MCO,fr,R Maria,,Col de la Madone [F] (6),43.789317,7.418311,,50,,928,175,49,,0500-1900,1234567,1,,2500001,,, +1467,IRN,fa,IRIB R Qom,,Qom=Kum (qom),34.765931,50.882931,,100,,3992,101,77,,0000-2400,1234567,9800,,1816,,, +1467,KGZ,,TWR PANI,,Krasnaya Rechka (cuy),42.878467,74.995922,,500,210,5056,73,81,,,,995,,2140,,, +1467,ARS,ar,BSKSA Idha'atu-i Riyadh,,Hafar al-Batin=Hafrul Baten (shy),28.436153,46.067722,,50,,4188,113,82,,0000-2400,1234567,9994,,1486,,, +1467,IND,,AIR East,,Jeypore (OR),18.921111,82.563333,,100,,7421,89,111,,0025-0440,123456,997,,50947,,, +1467,IND,,AIR East,,Jeypore (OR),18.921111,82.563333,,100,,7421,89,111,,0025-0445,......7,997,,50947,,, +1467,IND,,AIR East,,Jeypore (OR),18.921111,82.563333,,100,,7421,89,111,,0700-0905,1234567,997,,50947,,, +1467,IND,,AIR East,,Jeypore (OR),18.921111,82.563333,,100,,7421,89,111,,1130-1742,1234567,997,,50947,,, +1467,THA,th,Sor. Wor. Sor.,,Pathum Thani/Khlong Ha (ptn),14.072333,100.71175,,100,270,9066,78,124,,2130-1700,1234567,995,,50966,,, +1467,CHN,zh,Baoding RGD,,Baoding (HB),38.85,115.55,,10,,7809,51,125,,2210-1500,1234567,,,50943,,, +1467,KOR,ko,HLKN KBS 1 R,,Mokpo/Yeongam (jen),34.7425,126.445278,,50,,8743,47,126,,0000-2400,1234567,999,,50962,,, +1467,CHN,zh,Fujian JGD Caifu Guangbo,,Zhangzhou/FJTS501 (FJ),24.5,117.666667,,50,,9211,59,127,,0000-2400,1234567,,,50944,,, +1467,CHN,zh,Shandong RGD Xinwen Pindao,,Dezhou (SD),37.4575,116.313333,,5,,7973,52,130,,2125-1700,1234567,,,50942,,, +1467,J,,NHK R 2,,Wakkanai (hok),45.375,141.711667,,1,,8365,31,141,,2030-1500,1.....7,,,50957,,, +1467,J,,NHK R 2,,Wakkanai (hok),45.375,141.711667,,1,,8365,31,141,,2030-1635,.2345..,,,50957,,, +1467,J,,NHK R 2,,Wakkanai (hok),45.375,141.711667,,1,,8365,31,141,,2030-1640,.....6.,,,50957,,, +1467,CHN,,Jingdezhen RGD,,Jingdezhen (JX),29.269111,117.176278,,1,,8751,56,143,,2200-1600,1234567,,,50945,,, +1467,J,ja,JOVB NHK2,,Hakodate (hok),41.811906,140.754967,,1,,8684,33,143,,2030-1500,1.....7,,,50951,,, +1467,J,ja,JOVB NHK2,,Hakodate (hok),41.811906,140.754967,,1,,8684,33,143,,2030-1635,.2345..,,,50951,,, +1467,J,ja,JOVB NHK2,,Hakodate (hok),41.811906,140.754967,,1,,8684,33,143,,2030-1640,.....6.,,,50951,,, +1467,J,,JOID NHK2,,Oita (kyu-oit),33.248056,131.575,,1,,9133,44,144,,2030-1500,1.....7,,,50956,,, +1467,J,,JOID NHK2,,Oita (kyu-oit),33.248056,131.575,,1,,9133,44,144,,2030-1635,.2345..,,,50956,,, +1467,J,,JOID NHK2,,Oita (kyu-oit),33.248056,131.575,,1,,9133,44,144,,2030-1640,.....6.,,,50956,,, +1467,J,ja,JONB NHK2,,Nagano (chu-nag),36.671944,138.256944,,1,,9095,37,144,,2030-1500,1.....7,,,50954,,, +1467,J,ja,JONB NHK2,,Nagano (chu-nag),36.671944,138.256944,,1,,9095,37,144,,2030-1635,.2345..,,,50954,,, +1467,J,ja,JONB NHK2,,Nagano (chu-nag),36.671944,138.256944,,1,,9095,37,144,,2030-1640,.....6.,,,50954,,, +1467,PHL,,DXVP-AM R Veritas,,Zamboanga City/Bolong (zds),7.1,122.233333,,5,,11082,65,144,,2100-1300,1234567,,,50963,,, +1467,J,ja,JOMC NHK2,,Miyazaki (kyu-miy),31.952778,131.44,,1,,9251,44,145,,2030-1500,1.....7,,,50953,,, +1467,J,ja,JOMC NHK2,,Miyazaki (kyu-miy),31.952778,131.44,,1,,9251,44,145,,2030-1635,.2345..,,,50953,,, +1467,J,ja,JOMC NHK2,,Miyazaki (kyu-miy),31.952778,131.44,,1,,9251,44,145,,2030-1640,.....6.,,,50953,,, +1467,J,ja,JORC NHK2,,Hirosaki (toh-aom),40.619444,140.452778,,0.5,,8792,34,146,,2030-1500,1.....7,9990,,50952,,, +1467,J,ja,JORC NHK2,,Hirosaki (toh-aom),40.619444,140.452778,,0.5,,8792,34,146,,2030-1635,.2345..,9990,,50952,,, +1467,J,ja,JORC NHK2,,Hirosaki (toh-aom),40.619444,140.452778,,0.5,,8792,34,146,,2030-1640,.....6.,9990,,50952,,, +1467,J,,NHK R 2,,Akune (kyu-kag),32.023997,130.202778,,0.1,,9184,45,154,,2030-1500,1.....7,,,50949,,, +1467,J,,NHK R 2,,Akune (kyu-kag),32.023997,130.202778,,0.1,,9184,45,154,,2030-1635,.2345..,,,50949,,, +1467,J,,NHK R 2,,Akune (kyu-kag),32.023997,130.202778,,0.1,,9184,45,154,,2030-1640,.....6.,,,50949,,, +1467,J,,NHK R 2,,Nanao (chu-ish),37.033333,137,,0.1,,9007,38,154,,2030-1500,1.....7,,,50955,,, +1467,J,,NHK R 2,,Nanao (chu-ish),37.033333,137,,0.1,,9007,38,154,,2030-1635,.2345..,,,50955,,, +1467,J,,NHK R 2,,Nanao (chu-ish),37.033333,137,,0.1,,9007,38,154,,2030-1640,.....6.,,,50955,,, +1467,J,,NHK R 2,,Yusuhara (shi-koc),33.383333,132.933333,,0.1,,9183,43,154,,2030-1500,1.....7,,,50958,,, +1467,J,,NHK R 2,,Yusuhara (shi-koc),33.383333,132.933333,,0.1,,9183,43,154,,2030-1635,.2345..,,,50958,,, +1467,J,,NHK R 2,,Yusuhara (shi-koc),33.383333,132.933333,,0.1,,9183,43,154,,2030-1640,.....6.,,,50958,,, +1467,J,ja,NHK R 2,,Fukuyamakinosyo (chg-hir),34.499722,133.35,,0.1,,9094,42,154,,2030-1500,1.....7,,,50950,,, +1467,J,ja,NHK R 2,,Fukuyamakinosyo (chg-hir),34.499722,133.35,,0.1,,9094,42,154,,2030-1635,.2345..,,,50950,,, +1467,J,ja,NHK R 2,,Fukuyamakinosyo (chg-hir),34.499722,133.35,,0.1,,9094,42,154,,2030-1640,.....6.,,,50950,,, +1467,AUS,en,3ML Easymix,,Mildura/Flora Avenue (VIC),-34.178681,142.122267,,2,,15991,78,164,,0000-2400,1234567,,,50941,,, +1470,USA,en,WLAM r:WLVP,,Lewiston (ME),44.063056,-70.25,,5,,5494,293,105,,,,4,,42120,,, +1470,USA,,WAZN,,Marlborough (MA),42.413611,-71.211111,,3.4,,5670,292,108,,,,,,40790,,, +1470,USA,en,WNYY,,Ithaca (NY),42.392222,-76.474722,,5,,6001,295,110,,,,45,,43157,,, +1470,USA,en,WMMW,,Meriden (CT),41.553889,-72.801944,,2.5,,5832,292,111,,,,,,42355,,, +1470,USA,en,WSAN,i,Allentown (PA),40.636111,-75.485,,5,,6068,293,111,,,,,,41952,,, +1470,USA,,WTZE,,Tazewell (VA),37.1325,-81.555833,,5,,6717,294,117,,,,,,43245,,, +1470,USA,,WWBG,,Greensboro (NC),36.150278,-79.913333,,5,,6691,292,117,,,,,,43357,,, +1470,CAN,xx,CJVB,,Vancouver (BC),49.193056,-123.022778,,50,,7781,328,118,,,,996,,36232,,, +1470,USA,es,KMNQ,,Brooklyn Park (MN),45.088056,-93.383056,,5,,6780,307,118,,,,999,,38782,,, +1470,USA,,WBKV,,West Bend (WI),43.370556,-88.166111,,2.5,,6625,303,119,,,,0,,40870,,, +1470,USA,,WMBD,,Peoria (IL),40.572778,-89.533333,,5,,6926,301,119,,,,996,,42278,,, +1470,USA,,WTTR,,Westminster (MD),39.576944,-77.0225,,1,,6244,293,119,,,,,,43228,,, +1470,USA,,WFNT,,Flint (MI),42.972778,-83.64,,1,,6392,300,121,,,,,,41418,,, +1470,USA,,WRGA,,Rome (GA),34.301389,-85.155278,,5,,7169,294,122,,,,10,,42842,,, +1470,USA,es,KWSL,,Sioux City (IA),42.411667,-96.425,,5,,7165,307,122,,,,993,,39755,,, +1470,USA,,WLOA,,Farrell (PA),41.199444,-80.522778,,0.5,,6339,296,123,,,,,,42199,,, +1470,USA,en,WLQR,,Toledo (OH),41.631667,-83.477222,,0.69,,6485,299,123,,,,,,42220,,, +1470,USA,,WCFJ,,Chicago Heights (IL),41.424722,-87.640833,,1,,6748,301,124,,,,,,40981,,, +1470,VEN,es,YVSY R Vibracin,,Carpano (suc),10.662492,-63.295294,,10,,7693,260,124,,,,994,,2124,,, +1470,PTR,,WKCK,,Orocovis (PR),18.256667,-66.416667,,2.5,,7250,268,126,,0900-0200,1234567,,,41974,,, +1470,USA,,KHND,,Harvey (ND),47.756389,-99.918333,,1,,6904,313,126,,,,,,38549,,, +1470,USA,,WVOL,,Berry Hill (TN),36.200278,-86.779722,,1,,7115,296,128,,,,,,43332,,, +1470,USA,,WXAG,,Athens (GA),33.987222,-83.338056,,1,,7081,292,128,,,,,,43452,,, +1470,USA,en,WPDM,,Potsdam (NY),44.643889,-75.058889,,0.044,,5752,296,128,,,,1,,42660,,, +1470,USA,en,WWNN,,Pompano Beach (FL),26.179444,-80.220833,,2.5,,7520,284,128,,,,998,,43413,,, +1470,VEN,es,YVJW Union R Cultural,,Valencia (cbb),10.081233,-68.005111,,10,,8062,264,128,,0000-2400,1234567,35,,45349,,, +1470,USA,,KWRD,,Henderson (TX),32.181944,-94.796944,,5,,7937,299,129,,,,,,39746,,, +1470,USA,,KAIR,,Atchison (KS),39.619167,-94.990833,,1,,7318,304,130,,,,,,37930,,, +1470,USA,,KMAL,,Malden (MO),36.552222,-89.978333,,1,,7280,299,130,,,,,,38874,,, +1470,DOM,,HIDE LV de la Alabanza,,San Francisco de Macors (dua),19.266667,-70.25,,1,,7426,272,131,,1000-0400,1234567,,,37239,,, +1470,DOM,,HICV R Emisoras Unidas,,Duverg (ind),18.366667,-71.516667,,1,,7589,272,133,,,,,,52251,,, +1470,USA,en,WJDY,,Salisbury (MD),38.391667,-75.646667,,0.043,,6247,291,133,,,,998,,41863,,, +1470,B,pt,Rdio Urbano Santos,,Urbano Santos (MA),-3.197778,-43.383333,,1,,7717,235,134,,,,,,36902436,,, +1470,USA,,WCLA,,Claxton (GA),32.17,-81.898889,,0.26,,7137,290,134,,,,,,41020,,, +1470,USA,,WLMC,,Georgetown (SC),33.370833,-79.2775,,0.147,,6871,289,134,,,,,,42191,,, +1470,USA,,WNAU,,New Albany (MS),34.496667,-89.014444,,0.5,,7392,297,134,,,,,,42429,,, +1470,USA,,WVBS,,Burgaw (NC),34.522778,-77.904722,,0.093,,6691,289,134,,,,,,43283,,, +1470,CUB,es,R Ciudad Bandera,,Crdenas/CTOM1 (ma),23.045514,-81.204964,,1,,7848,283,135,,,,2,,36487,,, +1470,PRU,es,OAU4B R Capital,,Lima/Pantanos de Villa (lim),-12.210669,-76.994231,,25,,10633,257,135,,0000-2400,1234567,0,,1883,,, +1470,USA,,WMGG,,Dunedin (FL),28.056389,-82.736944,,0.5,,7529,288,135,,,,,,42255,,, +1470,USA,,WTOE,,Spruce Pine (NC),35.906667,-82.105833,,0.103,,6849,293,135,,,,,,43191,,, +1470,USA,en,KBSN,,Moses Lake (WA),47.104444,-119.292222,,1,,7837,324,135,,,,5,,38096,,, +1470,HTI,,R Lakansyel,,Port-au-Prince (oue),18.516667,-72.366667,,0.5,,7634,273,136,,,,,,35625,,, +1470,USA,,KKTY,,Douglas (WY),42.763333,-105.392222,,0.5,,7604,313,136,,,,,,38760,,, +1470,USA,,WBTX,,Broadway-Timberville (VA),38.623333,-78.814444,,0.036,,6429,293,136,,,,,,40923,,, +1470,USA,,WQXL,,Columbia (SC),33.959444,-81.041111,,0.1,,6937,291,136,,,,,,42804,,, +1470,MEX,es,XERCN-AM R Hispana,,Tijuana/Cerro Colorado (bcn),32.474192,-116.898931,,5,,9118,315,137,,1300-0800,1234567,997,,44659,,, +1470,PNR,es,R La Primersima,,Juan Daz (pnm),9.0375,-79.473611,,5,,8935,272,137,,,,1,,2172,,, +1470,USA,en,KELA,,Centralia-Chehalis (WA),46.696389,-122.956389,,1,,8019,326,137,,,,997,,38320,,, +1470,USA,es,KUTY,,Palmdale (CA),34.665278,-118.011111,,5,,8962,317,137,,,,9935,,39601,,, +1470,MEX,es,XEAI-AM R Frmula 3,,Mxico D.F/Granjas Esmeralda (dif),19.3512,-99.114306,,5,,9328,294,138,,0000-2400,1234567,996,,2158,,, +1470,USA,,KWAY,,Waverly (IA),42.703611,-92.4725,,0.061,,6922,305,138,,,,,,39689,,, +1470,USA,,WBCR,,Alcoa (TN),35.752222,-83.917778,,0.082,,6975,294,138,,,,,,40826,,, +1470,B,pt,ZYH665 Rdio Guanancs de Itapag,,Itapag (CE),-3.6975,-39.565556,,0.25,,7558,231,139,,,,,,36902409,,, +1470,DOM,,HICH R Sur,,Santa Cruz de Barahona (bh),18.183333,-71.083333,,0.25,,7575,272,139,,,,,,52250,,, +1470,USA,,KYYW,,Abilene (TX),32.492222,-99.751944,,1,,8201,302,139,,,,,,39881,,, +1470,USA,,WGNR,,Anderson (IN),40.061944,-85.710278,,0.036,,6741,299,139,,,,,,41537,,, +1470,B,pt,ZYJ616 Rural AM,,Parelhas (RN),-6.683333,-36.666667,,0.25,,7704,226,140,,,,15,,36902415,,, +1470,USA,,KLCL,,Lake Charles (LA),30.258611,-93.268611,,0.5,,8010,296,140,,,,,,38786,,, +1470,USA,,WEVG,,Evergreen (AL),31.441389,-86.935556,,0.177,,7517,293,140,,,,,,41743,,, +1470,B,pt,ZYI548 Rdio Moreno Braga,,Vigia (PA),-0.867556,-48.116933,,0.25,,7767,240,141,,,,,,36902411,,, +1470,B,pt,ZYI928 Rdio AM Cidade de Castelo,,Castelo do Piau (PI),-5.326389,-41.556944,,0.25,,7823,232,141,,,,,,36902435,,, +1470,CLM,es,HJTB Ondas de Ibagu (R Maria),,Ibagu (tol),4.416667,-75.2,,2,,9048,266,141,,1000-0400,1234567,986,,37639,,, +1470,USA,,WBFC,,Stanton (KY),37.882778,-83.882222,,0.025,,6802,296,141,,,,,,40838,,, +1470,CLM,es,HJPX Colmundo,,Cartagena (bol),10.516667,-75.466667,,1,,8533,270,142,,0000-2400,1234567,,,37627,,, +1470,B,pt,Rdio Tradio,,Rio Branco do Sul (PR),-25.166667,-49.3,,3,,10151,228,143,,,,,,36902424,,, +1470,B,pt,ZYH908 Rdio Parano,,Presidente Dutra (MA),-5.298411,-44.454333,,0.25,,7979,234,143,,,,,,36902433,,, +1470,B,pt,ZYI822 Rdio Educadora de Belm,,Belm de So Francisco (PE),-8.756922,-38.967856,,0.25,,8025,228,143,,,,,,36902407,,, +1470,B,pt,ZYI827 Rdio Papacaa,,Bom Conselho (PE),-9.17,-36.691389,,0.25,,7953,225,143,,,,,,36902432,,, +1470,CLM,es,HJB63 R Uno,,Iza (boy),5.6,-72.983333,,1,,8793,265,143,,0000-2400,1234567,,,51786,,, +1470,CLM,es,HJHQ R Futurama,,Pacho (cun),5.166667,-74.116667,,1,,8908,266,143,,0930-0400,1234567,,,37478,,, +1470,CLM,es,HJIM R Popular,,Medelln (ant),6.266667,-75.566667,,1,,8910,268,143,,0000-2400,1234567,899,,37494,,, +1470,HND,,HRRD,,La Ceiba (atl),15.8,-86.816667,,1,,8844,282,143,,,,,,37834,,, +1470,MEX,,XEBAL-AM,,Becal (cam),20.427342,-90.0299,,1,,8654,288,143,,,,,,43758,,, +1470,USA,,KGND,,Vinita (OK),36.642778,-95.126389,,0.088,,7576,302,143,,,,,,20016012,,, +1470,USA,,KIID,i,Sacramento (CA),38.591667,-121.462778,,1,,8740,321,143,,,,,,38596,,, +1470,USA,,KSMM,,Liberal (KS),37.065278,-100.866389,,0.17,,7864,306,143,,,,,,39874,,, +1470,B,pt,ZYI913 Rdio Ingazeira,,Paulistana (PI),-8.131667,-41.153056,,0.25,,8076,230,144,,,,,,36902423,,, +1470,CLM,es,HJNT R Huellas,,Cali (val),3.516667,-76.333333,,1,,9204,266,144,,1100-0500,1234567,70,,37597,,, +1470,MEX,es,XECAV-AM Play 1470,,Durango (dur),24.052228,-104.620164,,1,,9239,301,144,,,,,,43818,,, +1470,MEX,es,XEIND-AM Hidalgo R,,Tlanchinol (hid),20.945278,-98.634722,,1,,9156,294,144,,,,,,44173,,, +1470,NCG,,YNRY R Yarrince,,Boaco (bco),12.466667,-85.666667,,1,,9057,279,144,,,,,,52213,,, +1470,B,pt,ZYI900 Rdio Difusora Vale do Urucui,,Uruu (PI),-7.272778,-44.551389,,0.25,,8174,233,145,,,,,,36902437,,, +1470,B,pt,ZYJ476 Rdio Absoluta,,Campos dos Goytacazes (RJ),-21.786464,-41.320222,,1,,9429,224,145,,,,,,36902408,,, +1470,B,pt,ZYK263 Rdio ABC 1470,,Novo Hamburgo (RS),-29.666667,-51.116667,,2.5,,10672,227,145,,????-0200,1234567,,,51781,,, +1470,CLM,es,HJIF R Tres Fronteras,,Puerto Ass (put),0.516667,-76.5,,1,,9479,265,145,,1100-0200,1234567,,,37489,,, +1470,MEX,es,XEIRG-AM La Campirana,,Irapuato (gua),20.677964,-101.345133,,1,,9347,296,145,,,,,,44180,,, +1470,B,pt,ZYJ676 Rdio Rondnia AM,,Cacoal (RO),-11.418056,-61.433333,,1,,9556,246,146,,,,,,36902440,,, +1470,B,pt,ZYK712 Rdio Nova Jornal AM,,Indaiatuba (SP),-23.055556,-47.175,,1,,9839,228,146,,,,,,36902429,,, +1470,EQA,,HCRD4,,Rich (man),-0.766667,-80.233333,,1,,9846,267,146,,,,,,37076,,, +1470,USA,,KFMZ,,Brookfield (MO),39.840556,-93.081111,,0.02,,7191,303,146,,,,,,38411,,, +1470,USA,,KUOL,,San Marcos (TX),29.898056,-97.912222,,0.25,,8321,300,146,,,,,,39585,,, +1470,USA,,WCHJ,,Brookhaven (MS),31.562778,-90.4475,,0.066,,7725,295,146,,,,,,40993,,, +1470,B,pt,ZYH509 Rdio Morro Verde,,Mairi/Rua do Coqueiro (BA),-11.711389,-40.1675,,0.25,,8377,227,147,,,,,,36902427,,, +1470,EQA,,HCLD2 R Ecos de Naranjito,,Naranjito (gua),-2.25,-79.5,,1,,9926,265,147,,,,,,37190,,, +1470,EQA,,HCNP5,,Alaus (chi),-2.25,-78.816667,,1,,9880,265,147,,,,,,37042,,, +1470,USA,,KDHN,,Dimmitt (TX),34.586389,-102.309722,,0.149,,8162,306,147,,,,,,38260,,, +1470,B,pt,Rdio Panorama,,Itapejara d'Oeste (PR),-25.954167,-52.813333,,1,,10408,231,148,,,,,,36902420,,, +1470,B,pt,ZYI413 Rdio Alvorada,,Dourados (MS),-22.183333,-54.866667,,1,,10165,234,148,,,,,,45826,,, +1470,B,pt,ZYJ781 Rdio Record,,So Jos (SC),-27.5725,-48.528056,,1,,10343,227,148,,,,76,,36902425,,, +1470,CLM,es,HKO96 Alcaldia de Baranoa,,Baranoa (atl),10.8,-74.916667,,0.25,,8471,270,148,,,,,,51785,,, +1470,MEX,es,XEACE-AM R Frmula,,Mazatln (sin),23.245794,-106.378683,,0.5,,9415,302,148,,,,,,43692,,, +1470,PRU,,OAX7G R Cusco,,Cusco (cus),-13.5,-72.016667,,1,,10418,253,148,,1000-0300,1234567,31,,40345,,, +1470,PRU,,OCX2G R Occidente,,Quiruvilca (lal),-7.966667,-78.2,,1,,10341,261,148,,,,,,51784,,, +1470,USA,en,KDEB,,Estes Park (CO),40.3375,-105.526667,,0.053,,7825,311,148,,,,,,20016062,,, +1470,B,pt,ZYK599 Rdio Mensagem,,Jacare/Av Malek Assad 535 (SP),-23.284989,-45.971039,,0.5,,9801,227,149,,,,,,36902426,,, +1470,MEX,es,XEHI-AM,,Ciudad Miguel Alemn (tam),26.391944,-99.026567,,0.25,,8696,298,149,,,,,,44117,,, +1470,PRU,es,OAU6E R Victoria,,Arequipa (are),-16.4,-71.533333,,1,,10644,251,149,,,,949,,51783,,, +1470,B,pt,ZYI214 Rdio So Francisco,,Barra de So Francisco (ES),-18.769444,-40.889444,,0.25,,9110,225,150,,,,,,36902410,,, +1470,EQA,,HCJC1 Ecos de Cayambe,,Cayambe (pic),0.05,-78.116667,,0.36,,9630,266,150,,,,8,,36911,,, +1470,B,pt,ZYH773 Rdio Difusora Serra dos Cristais,,Cristalina (GO),-16.784725,-47.625811,,0.25,,9258,231,151,,,,,,36902438,,, +1470,B,pt,ZYH779 Rdio Cidade de Gois,,Gois (GO),-15.947019,-50.1301,,0.25,,9313,234,151,,,,,,36902412,,, +1470,ARG,,Cadena 14-70,,Lans (ba),-34.716667,-58.4,,1,,11516,230,152,,,,,,51764,,, +1470,ARG,,R Mburucuya,,Jose Leon Suarez (ba),-34.533333,-58.583333,,1,,11509,230,152,,,,,,51763,,, +1470,B,pt,ZYJ481 RBP-Rdio Barra do Pira,,Barra do Pira (RJ),-22.4775,-43.833411,,0.25,,9617,225,152,,,,96,,36902439,,, +1470,B,pt,ZYK586 Rdio Cultura de Guara,,Guara (SP),-20.319394,-48.295942,,0.25,,9633,230,152,,,,,,36902430,,, +1470,B,pt,ZYK632 Rdio Primavera,,Porto Ferreira (SP),-21.856739,-47.468578,,0.25,,9739,229,152,,,,,,36902434,,, +1470,B,pt,ZYL247 Rdio Difusora de Ituiutaba,,Ituiutaba (MG),-18.972906,-49.474275,,0.25,,9567,232,152,,,,,,36902418,,, +1470,URG,,CX147 R Cristal del Uruguay,,La Paz (Las Piedras) (ca),-34.766667,-56.216667,,1,,11408,228,152,,0000-2400,1234567,995,,36793,,, +1470,B,pt,ZYJ294 Rdio Educadora,,Ibaiti (PR),-23.862778,-50.192222,,0.25,,10072,230,153,,,,,,36902416,,, +1470,B,pt,ZYK771 Bastos AM,,Bastos (SP),-21.928497,-50.723633,,0.25,,9915,231,153,,,,,,36902431,,, +1470,ARG,,LT26 R Nuevo Mundo,,Coln (er),-32.222819,-58.144797,,0.5,,11275,231,154,,0900-0300,1234567,,,40178,,, +1470,B,pt,ZYI413 Rdio Alvorada,,Itapor (MS),-22.120511,-54.7981,,0.25,,10155,234,154,,,,,,36902414,,, +1470,B,pt,ZYJ304 RJ AM 1470,,Assis Chateaubriand (PR),-24.416667,-53.533333,,0.25,,10302,232,154,,,,,,36902422,,, +1470,CLM,es,HJS20 Ecos de Palocabildo,,Palocabildo (tol),5.133333,-75.033333,,0.1,,8973,266,154,,,,,,35901869,,, +1470,ARG,,LT20 R Junin,,Junn (ba),-34.566667,-60.966667,,0.5,,11639,232,155,,0900-0300,1234567,,,40172,,, +1470,ARG,,LT28 R Rafaela,,Rafaela (sf),-31.25,-61.466667,,0.5,,11366,234,155,,0900-0300,1234567,982,,40180,,, +1470,ARG,,R Municipal,,Fray Luis Beltran (rn),-39.316667,-65.766667,,1,,12317,232,155,,1200-0100,1234567,32,,51765,,, +1470,B,pt,ZYJ798 Rdio Nova Lder do Vale,,Herval d'Oeste/Altos do Morro (SC),-27.17,-51.484722,,0.25,,10454,229,155,,,,,,36902417,,, +1470,B,pt,ZYK324 Cinderela AM,,Campo Bom (RS),-29.651389,-51.080833,,0.25,,10669,227,155,,,,,,36902419,,, +1470,BOL,,CP215 R CORDECH,,Alcala (cqs),-19.366667,-64.416667,,0.25,,10463,243,155,,1100-1600,1234567,,,52051,,, +1470,BOL,,CP215 R CORDECH,,Alcala (cqs),-19.366667,-64.416667,,0.25,,10463,243,155,,1900-0200,1234567,,,52051,,, +1470,PRU,,OAX6M R Tacna,,Tacna (tac),-18,-70.5,,0.3,,10720,249,155,,0900-0500,1234567,,,40338,,, +1470,B,pt,ZYK219 Rdio Cultura Cacequiense,,Cacequi (RS),-29.868056,-54.816667,,0.25,,10881,230,156,,,,,,36902421,,, +1470,ARG,,LU26 R Coronel Dorrego,,Coronel Dorrego (ba),-38.716667,-61.266667,,0.5,,12026,229,157,,1030-0300,1234567,,,40222,,, +1470,URG,,CW147 Abril 1470 AM,,Melo (cl),-32.366667,-54.116667,,0.25,,11078,228,157,,0830-0330,1234567,,,36753,,, +1470,USA,,KNXN,,Sierra Vista (AZ),31.548611,-110.244444,,0.039,,8867,309,157,,,,,,39039,,, +1475,BOL,,R Tiraque,,Tiraque (cbb),-17.416667,-65.716667,,1,,10367,245,148,,,,,,52052,,, +1475,INS,id,R.Khusus Daerah Tingat Dua,,Karawang (JB-kar),-6.316667,107.3,,1,,11304,85,151,,????-1700,1234567,99,,50969,,, +1476,G,en,R Britannia,,Yorkshire area (EN-NYK),53.966667,-1.083333,,1,,542,295,62,,????-????,9999999,,,2800033,,, +1476,I,,R Cosmo Milano,,Greater Milano area (mi),45.5,9.5,,1,,769,162,65,,,,,,4000058,,, +1476,I,,R Medjugorje Italia,,Villa Estense (pd),45.157858,11.702367,,1,,865,151,66,,????-????,9999999,999,,4000037,,, +1476,GRC,el,R Veteranos,,Veria (cmc-ima),40.483333,22.316667,,1,,1771,131,75,,,,,,3400051,,, +1476,GRC,el,Thenamites me Seneryate & Kharama,,Tyrnavos (the-lar),39.733333,22.283333,,1,,1836,132,75,,,,,,3400050,,, +1476,IRN,,IRIB R Kordestan,,Marivan=Merwan (kdn),35.517694,46.1735,,20,,3622,105,80,,0230-2230,1234567,256,,1494,,, +1476,EGY,ar,ERTU Al-Quran al-Karim,,Al-Minya=Menya (mny),28.057778,30.800194,,10,,3351,133,81,,0200-0400,1234567,31,,1855,,, +1476,EGY,ar,ERTU Al-Quran al-Karim,,Al-Minya=Menya (mny),28.057778,30.800194,,10,,3351,133,81,,2000-2200,1234567,31,,1855,,, +1476,EGY,ar,ERTU Shamal Sa'id Misr,,Al-Minya=Menya (mny),28.057778,30.800194,,10,,3351,133,81,,0400-2000,1234567,31,,1855,,, +1476,EGY,ar,ERTU Al-Quran al-Karim,,Sohag (shj),26.550761,31.620733,,10,,3537,134,82,,0200-0400,1234567,9995,,1493,,, +1476,EGY,ar,ERTU Al-Quran al-Karim,,Sohag (shj),26.550761,31.620733,,10,,3537,134,82,,2000-2200,1234567,9995,,1493,,, +1476,EGY,ar,ERTU Janub Sa'id Misr,,Sohag (shj),26.550761,31.620733,,10,,3537,134,82,,0400-2000,1234567,9995,,1493,,, +1476,TKM,tk,TR1 Watan R,,Trkmenbaşy (bal),40.051472,52.941556,,10,,3755,92,85,,0000-2400,1234567,2,,1878,,, +1476,AZE,,Azərbaycan R,,Sixli (qzx),41.311111,45.1,,1,,3139,97,88,,0200-2000,1234567,,,600001,,, +1476,RUS,ru,R Rossii,,Onguday (RA),50.75,86.133333,,20,,5239,58,96,,2100-1700,1234567,758,,46979,,, +1476,PAK,,PBC R Pakistan/NBS News,,Faisalabad (pjb),31.408333,73.109722,,10,,5758,86,105,,0045-0820,1234567,,,50993,,, +1476,CHN,,Xining RGD Health,,Xining (QH),36.583333,101.833333,,10,,7220,62,119,,,,,,50984,,, +1476,IND,,AIR North,,Jaipur A (RJ),26.91,75.75,,1,,6294,88,120,,0025-0430,123456,,,50986,,, +1476,IND,,AIR North,,Jaipur A (RJ),26.91,75.75,,1,,6294,88,120,,0025-0600,......7,,,50986,,, +1476,IND,,AIR North,,Jaipur A (RJ),26.91,75.75,,1,,6294,88,120,,0630-0931,1234567,,,50986,,, +1476,IND,,AIR North,,Jaipur A (RJ),26.91,75.75,,1,,6294,88,120,,1130-1741,1234567,,,50986,,, +1476,CHN,ko,Heilongjiang RGD,,Luobei (HL),47.578181,130.818239,,10,,7740,36,124,,1300-1500,1234567,,,36201101,,, +1476,CHN,ko,Heilongjiang RGD,,Luobei (HL),47.578181,130.818239,,10,,7740,36,124,,2100-2400,1234567,,,36201101,,, +1476,CHN,zh,Heilongjiang RGD Gushi,,Luobei (HL),47.578181,130.818239,,10,,7740,36,124,,0000-1300,1234567,,,36201101,,, +1476,CHN,zh,Heilongjiang RGD,,Luobei (HL),47.578181,130.818239,,10,,7740,36,124,,1500-2100,1234567,,,36201101,,, +1476,THA,th,Sor. Wor. Thor.,,Lamphun/Ban Pratu Khong (lpn),18.568389,99.041444,,50,,8564,76,125,,2200-1600,1234567,992,,50999,,, +1476,CHN,ko,Heilongjiang RGD,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,1300-1500,1234567,,,36201103,,, +1476,CHN,ko,Heilongjiang RGD,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,2100-2400,1234567,,,36201103,,, +1476,CHN,zh,Heilongjiang RGD Gushi,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,0000-1300,1234567,,,36201103,,, +1476,CHN,zh,Heilongjiang RGD,,Qiqihar (HL),47.329722,124.056389,,1,,7475,41,132,,1500-2100,1234567,,,36201103,,, +1476,CHN,,Qian Gorlos RGD,,Qian Gorlos (JL),45.133333,124.8,,1,,7707,42,134,,,,,,50980,,, +1476,CHN,ko,Heilongjiang RGD,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,1300-1500,1234567,,,50974,,, +1476,CHN,ko,Heilongjiang RGD,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,2100-2400,1234567,,,50974,,, +1476,CHN,zh,Heilongjiang RGD Gushi,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,0000-1300,1234567,,,50974,,, +1476,CHN,zh,Heilongjiang RGD,,Fujin/HLTS916 (HL),47.226667,131.950833,,1,,7819,36,135,,1500-2100,1234567,,,50974,,, +1476,CHN,,Leshan RGD,,Leshan/SCTS525 (SC),29.616667,103.666667,,1,,7915,66,136,,2200-1600,1234.67,,,50978,,, +1476,CHN,,Leshan RGD,,Leshan/SCTS525 (SC),29.616667,103.666667,,1,,7915,66,136,,2200-1700,....5..,,,50978,,, +1476,CHN,ko,Heilongjiang RGD,,Huanan (HL),46.216667,130.516667,,1,,7855,37,136,,1300-1500,1234567,,,36201102,,, +1476,CHN,ko,Heilongjiang RGD,,Huanan (HL),46.216667,130.516667,,1,,7855,37,136,,2100-2400,1234567,,,36201102,,, +1476,CHN,zh,Heilongjiang RGD Gushi,,Huanan (HL),46.216667,130.516667,,1,,7855,37,136,,0000-1300,1234567,,,36201102,,, +1476,CHN,zh,Heilongjiang RGD,,Huanan (HL),46.216667,130.516667,,1,,7855,37,136,,1500-2100,1234567,,,36201102,,, +1476,CHN,,Mudanjiang JGD,,Mudanjiang (HL),44.588889,129.585278,,1,,7968,39,137,,,,,,50979,,, +1476,CHN,,Zibo RGD Traffic & Arts,,Zibo (SD),36.8,118.05,,1,,8124,51,138,,,,,,36200664,,, +1476,CHN,,Laohekou RGD,,Laohekou (HU),32.383333,111.666667,,1,,8158,58,139,,,,,,50977,,, +1476,CHN,,Xinyu RGD,,Xinyu (JX),27.8,114.933333,,1,,8754,59,143,,,,,,36200665,,, +1476,CHN,,Zhejiang zhi Sheng,,Yueqing (ZJ),28.133333,120.95,,1,,9066,54,144,,2130-1605,1234567,,,50985,,, +1476,J,,JOSD NHK2,,Iida (chu-nag),35.5,137.85,,1,,9194,38,144,,2030-1500,1.....7,,,50989,,, +1476,J,,JOSD NHK2,,Iida (chu-nag),35.5,137.85,,1,,9194,38,144,,2030-1635,.2345..,,,50989,,, +1476,J,,JOSD NHK2,,Iida (chu-nag),35.5,137.85,,1,,9194,38,144,,2030-1640,.....6.,,,50989,,, +1476,PHL,tl,DXRJ-AM,,Iligan City (ldn),8.268056,124.258889,,5,,11099,63,144,,2050-1440,1234567,91,,50995,,, +1476,INS,id,R Rodja,,Bandung/Selacau (JB-ban),-6.933333,107.525,,2.5,,11374,85,148,,2000-1630,1234567,,,35400121,,, +1476,PHL,,DWRB-AM,,Lipa City (btg),13.933333,121.15,,1,,10386,62,148,,,,,,50996,,, +1476,PHL,,DZYA-AM,,Angeles City/Balibago (pam),15.166667,120.6,,1,,10240,62,148,,,,,,50994,,, +1476,INS,id,R Bhalqist,,Tangerang (BT-ktg),-6.183333,106.633333,,1,,11247,86,151,,,,,,35400144,,, +1476,INS,id,R HK-Biangnya Dangdut AM,,Semarang (JT-kse),-6.966667,110.483333,,1,,11578,83,152,,,,5,,50988,,, +1476,J,,NHK R 2,,Imabari (shi-ehi),34.05,133.016667,,0.1,,9123,42,154,,2030-1500,1.....7,,,50990,,, +1476,J,,NHK R 2,,Imabari (shi-ehi),34.05,133.016667,,0.1,,9123,42,154,,2030-1635,.2345..,,,50990,,, +1476,J,,NHK R 2,,Imabari (shi-ehi),34.05,133.016667,,0.1,,9123,42,154,,2030-1640,.....6.,,,50990,,, +1476,J,,NHK R 2,,Ozu (shi-ehi),33.516667,132.566667,,0.1,,9153,43,154,,2030-1500,1.....7,,,50991,,, +1476,J,,NHK R 2,,Ozu (shi-ehi),33.516667,132.566667,,0.1,,9153,43,154,,2030-1635,.2345..,,,50991,,, +1476,J,,NHK R 2,,Ozu (shi-ehi),33.516667,132.566667,,0.1,,9153,43,154,,2030-1640,.....6.,,,50991,,, +1476,INS,id,R 68H,,Paniai/Enarotali (PA-pan),-3.916667,136.35,,1,,12962,59,157,,,,,,50948,,, +1476,AUS,en,4ZR Zinc ZR,,Roma/St George (QLD),-26.56645,148.819194,,2,,15792,62,163,,0000-2400,1234567,9964,,50973,,, +1476,NZL,,1XD LiveSPORT/BBC WS,,Auckland/Henderson (AUK),-36.844383,174.631153,,5,,18083,33,167,,0000-2400,1234567,,,50992,,, +1476,AUS,,2KA Cool Country,,Penrith/Luddenham (NSW),-33.867233,150.718856,,0.27,,16529,69,174,,0000-2400,1234567,999,,50972,,, +1476,AUS,,5MG ABC Southeast SA,,Mount Gambier/60 Crouch St. N (SA),-37.8245,140.790389,,0.2,,16169,84,174,,0000-2400,1234567,1,,50971,,, +1480,USA,,WCFR,,Springfield (VT),43.281667,-72.489167,,5,,5689,293,107,,,,,,20016001,,, +1480,USA,,WSAR,,Fall River (MA),41.723889,-71.189167,,5,,5717,291,107,,,,9989,,42950,,, +1480,USA,,WHBC,,Canton (D) (OH),40.8975,-81.319444,,15,,6410,297,109,,,,,,20012550,,, +1480,USA,en,WRCK (r:WUSP-FM),,Remsen (NY),43.325278,-75.174722,,5,,5853,295,109,,,,14,,40654,,, +1480,USA,ko,WZRC,,New York/Ridgefield Park [NJ] (NY),40.845,-74.02,,5,,5960,292,110,,,,9974,,43590,,, +1480,USA,,WHBC,,Canton (N) (OH),40.720833,-81.441111,,5,,6431,297,114,,,,999,,41605,,, +1480,USA,,WGVU,,Kentwood (MI),42.843333,-85.618611,,5,,6518,301,115,,,,9966,,41585,,, +1480,USA,,WSDS,,Salem Township (MI),42.261667,-83.619444,,3.8,,6445,299,116,,,,,,42975,,, +1480,USA,es,WLMV,,Madison (WI),43.025,-89.396667,,5,,6723,303,117,,,,994,,42193,,, +1480,USA,,WIZD,,Neon (KY),37.198333,-82.711667,,5,,6784,294,118,,,,,,41346,,, +1480,USA,en,WDAS,i,Philadelphia (PA),39.998056,-75.211944,,1,,6098,292,118,,,,,,41125,,, +1480,USA,en,WGFY,,Charlotte (NC),35.284722,-80.876111,,5,,6821,292,118,,,,,,41505,,, +1480,USA,,WTOX,,Glen Allen (VA),37.682222,-77.563889,,1.5,,6423,291,119,,,,,,43197,,, +1480,USA,,WCNS,,Latrobe (PA),40.27,-79.386944,,1,,6339,295,120,,,,,,41049,,, +1480,USA,en,WCHZ,,Augusta (GA),33.516667,-82.01,,5,,7035,291,120,,,,,,41580,,, +1480,PTR,es,WMDD,,Fajardo (PR),18.362778,-65.64,,5,,7188,268,122,,0000-2400,1234567,998,,42298,,, +1480,USA,es,WPWC,,Dumfries-Triangle (VA),38.568333,-77.338889,,0.5,,6341,292,123,,,,,,42755,,, +1480,USA,,KAUS,,Austin (MN),43.622222,-92.990556,,1,,6877,306,126,,,,990,,37984,,, +1480,USA,,WPFR,,Terre Haute (IN),39.500556,-87.386111,,1,,6886,299,126,,,,,,42675,,, +1480,USA,,WRSW,,Warsaw (IN),41.2225,-85.838056,,0.5,,6657,300,127,,,,,,42922,,, +1480,USA,,WSPY,,Geneva (IL),41.906944,-88.295278,,0.5,,6748,302,127,,,,,,43056,,, +1480,USA,en,WTKD,,Mobile (AL),30.719722,-88.071111,,4.4,,7648,293,127,,,,,,40623,,, +1480,USA,,WIOS,,Tawas City-East Tawa (MI),44.263333,-83.545,,0.109,,6288,301,129,,,,,,41784,,, +1480,USA,,WDJO,,Cincinnati (OH),39.211944,-84.488889,,0.3,,6734,297,130,,,,,,41007,,, +1480,USA,,KLMS,,Lincoln (NE),40.796389,-96.582222,,0.75,,7308,306,131,,,,,,38830,,, +1480,B,pt,ZYH671 Rdio Princesa do Norte,,Morrinhos (CE),-3.233361,-40.122333,,1,,7543,231,132,,,,,,36902445,,, +1480,DOM,,HIAH R Villa,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,1000-0400,123456,,,37199,,, +1480,DOM,,HIAH R Villa,,Santo Domingo (sdo),18.466667,-69.875,,1,,7468,271,132,,1100-2300,......7,,,37199,,, +1480,USA,,KCZZ,,Mission (KS),39.068056,-94.7025,,0.5,,7348,304,133,,,,,,38231,,, +1480,USA,,KQAM,,Wichita (KS),37.739167,-97.270556,,1,,7605,304,133,,,,,,39185,,, +1480,USA,en,WVOI,,Marco Island (FL),25.991667,-81.625,,1,,7629,285,133,,,,,,43328,,, +1480,GTM,,TGBH R Buenas Nuevas,,Ciudad de Guatemala (gut),14.466667,-90.45,,10,,9202,284,134,,1030-????,1234567,,,40482,,, +1480,USA,,KBXD,,Dallas (TX),32.661667,-96.655556,,1.9,,8006,300,134,,,,,,38535,,, +1480,USA,,KKCQ,,Fosston (MN),47.564167,-95.724167,,0.09,,6706,311,134,,,,,,38709,,, +1480,USA,,WKND,,Windsor (CT),41.852778,-72.678611,,0.014,,5802,292,134,,,,,,42463,,, +1480,USA,en,KBMS,,Vancouver (WA),45.601667,-122.718333,,2.5,,8115,325,134,,,,995,,38062,,, +1480,USA,,WLEA,,Hornell (NY),42.2875,-77.646389,,0.019,,6081,296,135,,,,,,42150,,, +1480,B,pt,ZYH508 Rdio Alvorada,,Guanambi (BA),-14.224642,-42.797511,,5,,8757,228,136,,,,,,36902451,,, +1480,B,pt,ZYI929 Rdio Vale do Coroat,,Elesbo Veloso (PI),-6.192506,-42.144292,,1,,7939,232,136,,,,,,36902463,,, +1480,CLM,,HJTZ,,Lebrija (sat),7.083333,-73.2,,5,,8678,266,136,,,,,,37655,,, +1480,CLM,es,HJTZ RCN Antena 2,,Bucaramanga (sat),7.133333,-73.133333,,5,,8669,266,136,,,,,,35901889,,, +1480,USA,,KYOS,,Merced (CA),37.375,-120.459722,,5,,8814,320,136,,,,9949,,39868,,, +1480,CTR,xx,R Pacfico Sur,,Ciudad Cortes (pta),8.966667,-83.533333,,5,,9218,275,137,,,,,,8200002,,, +1480,USA,,KCHL,,San Antonio (TX),29.4125,-98.414444,,2.5,,8393,300,137,,,,,,38150,,, +1480,USA,,WYRN,,Louisburg (NC),36.112778,-78.280556,,0.035,,6590,291,137,,,,,,43545,,, +1480,USA,vi,KVNR,,Santa Ana (CA),33.751667,-117.910556,,5,,9045,316,137,,,,,,39645,,, +1480,VEN,,R Cumarebo,,Cumarebo (flc),11.466667,-69.316667,,1,,8031,266,137,,,,,,51703,,, +1480,MEX,xx,XECARH-AM,,Cardonal (hid),20.058333,-99.233333,,5,,9273,294,138,,,,,,34900023,,, +1480,USA,en,WQTM,,Fair Bluff (NC),34.323056,-79.001944,,0.048,,6777,290,138,,,,,,43571,,, +1480,B,pt,ZYJ601 Rdio Princesa do Vale,,Au (RN),-5.583333,-36.916667,,0.25,,7608,227,139,,,,,,36902444,,, +1480,USA,en,WNYD958,,Erie (PA),42.143944,-80.132556,,0.01,,6244,297,139,,,,,,20010694,,, +1480,USA,,KSDR,,Watertown (SD),44.932778,-97.105278,,0.05,,6992,309,140,,,,,,39337,,, +1480,USA,,WEEO,,Shippensburg (PA),40.075,-77.535833,,0.009,,6239,294,140,,,,,,41259,,, +1480,USA,,WTOY,,Salem (VA),37.2725,-80.081111,,0.02,,6614,293,140,,,,,,43198,,, +1480,USA,es,WZJY,,Mount Pleasant (SC),32.825,-79.831389,,0.044,,6951,289,140,,,,,,43576,,, +1480,B,pt,ZYI825 Rdio Cano Nova,,Gravat (PE),-8.211389,-35.602222,,0.25,,7805,225,141,,,,,,36902452,,, +1480,CLM,,HJOD,,El Rodadero (mag),11.166667,-74.2,,1,,8390,270,141,,,,,,37605,,, +1480,CLM,es,HJOD,,Santa Marta (mag),11.25,-74.2,,1,,8383,270,141,,,,,,35901885,,, +1480,USA,,WFLN,,Arcadia (FL),27.228611,-81.857778,,0.131,,7541,286,141,,,,,,41399,,, +1480,USA,,WJFC,,Jefferson City (TN),36.104167,-83.486111,,0.034,,6920,294,141,,,,,,41871,,, +1480,B,pt,ZYI790 Rdio A Voz do Serto,,Serra Talhada (PE),-7.977558,-38.280939,,0.25,,7913,227,142,,,,,,36902471,,, +1480,EQA,,HCBS3,,Pasaje (mor),-3.35,-78.783333,,3,,9974,264,142,,,,,,36869,,, +1480,USA,,KLVL,,Pasadena (TX),29.683889,-95.185833,,0.5,,8176,297,142,,,,,,38856,,, +1480,USA,,WJLE,,Smithville (TN),35.925278,-85.820556,,0.034,,7079,295,142,,,,,,41893,,, +1480,USA,,WTLO,,Somerset (KY),37.080556,-84.660833,,0.027,,6914,296,142,,,,,,43168,,, +1480,USA,,WYZE,,Atlanta (GA),33.723611,-84.368889,,0.044,,7167,293,142,,,,,,43562,,, +1480,B,pt,ZYH897 Rdio Itapecuru de Colinas,,Colinas (MA),-6.022581,-44.250978,,0.25,,8037,234,143,,,,,,36902448,,, +1480,CAN,en,CHLD,,Granisle (BC),54.881944,-126.202222,,0.05,,7342,332,143,,,,,,20109209,,, +1480,CAN,en,CIFJ,,Fort St James (BC),54.444444,-124.248333,,0.05,,7321,331,143,,,,,,20109208,,, +1480,CLM,,RCN,,Bucaramanga (sat),7.133333,-73.133333,,1,,8669,266,143,,,,272,,52484,,, +1480,MEX,es,XETKR-AM,,Guadalupe (nvl),25.6992,-100.207506,,1,,8829,299,143,,,,,,44829,,, +1480,USA,,KGOE,,Eureka (CA),40.741111,-124.201389,,1,,8645,324,143,,,,9968,,38504,,, +1480,USA,,WGNQ,,Bridgeport (AL),34.942778,-85.707222,,0.039,,7152,295,143,,,,,,43531,,, +1480,USA,,WJBM,,Jerseyville (IL),39.112778,-90.311944,,0.032,,7090,301,143,,,,,,41847,,, +1480,USA,,WUNA,,Ocoee (FL),28.557778,-81.541111,,0.071,,7410,287,143,,,,,,43262,,, +1480,CLM,es,HJFC,,Pereira (ris),4.833333,-75.666667,,1,,9043,267,144,,,,,,37428,,, +1480,CLM,es,HJVB,,Armero (Guayabal) (tol),5.033333,-74.883333,,1,,8972,266,144,,,,,,35901890,,, +1480,HND,,HREZ,,Tegucigalpa (fmz),14.066667,-87.016667,,1,,9008,281,144,,,,,,37751,,, +1480,USA,,KIOU,,Shreveport (LA),32.571667,-93.744167,,0.129,,7840,298,144,,,,,,38624,,, +1480,USA,,KTHS,,Berryville (AR),36.361667,-93.561111,,0.064,,7509,301,144,,,,,,39484,,, +1480,USA,,WHVO,,Hopkinsville (KY),36.870833,-87.511944,,0.024,,7105,297,144,,,,,,41699,,, +1480,B,pt,ZYJ928 Rdio Cidade de Sergipe,,Simo Dias (SE),-10.737778,-37.800833,,0.25,,8163,226,145,,,,,,36902469,,, +1480,CLM,,HJIB,,Florencia (caq),1.616667,-75.566667,,1,,9318,265,145,,,,,,37487,,, +1480,MEX,es,XEZJ-AM Ciudad 1480,,Guadalajara (jal),20.666439,-103.360094,,1,,9471,298,145,,,,,,45142,,, +1480,USA,,KLEE,,Ottumwa (IA),41.024444,-92.482222,,0.017,,7060,304,145,,,,,,38797,,, +1480,USA,,WBBP,,Memphis (TN),35.055,-90.0875,,0.041,,7411,298,145,,,,,,40812,,, +1480,EQA,,HCMC1,,Municipal Co I (pic),-0.3,-78.25,,1,,9670,266,146,,,,,,37017,,, +1480,MEX,es,XEHM-AM HM R,,Ciudad Delicias (chi),28.164722,-105.471667,,0.5,,8915,304,146,,,,9994,,44127,,, +1480,USA,,KAVA,,Pueblo (CO),38.315556,-104.6175,,0.107,,7957,309,146,,,,,,37985,,, +1480,USA,,KPHX,,Phoenix (AZ),33.400556,-112.107778,,0.5,,8792,312,146,,,,44,,39140,,, +1480,USA,,KRAE,,Cheyenne (WY),41.121389,-104.839444,,0.072,,7720,311,146,,,,,,39216,,, +1480,USA,,WPFJ,,Franklin (NC),35.182778,-83.3575,,0.013,,6985,293,146,,,,,,42673,,, +1480,USA,en,WQOH,,Irondale (AL),33.548333,-86.665556,,0.028,,7325,294,146,,,,,,42215,,, +1480,USA,es,KNTB,,Lakewood (WA),47.165556,-122.575556,,0.111,,7959,326,146,,,,,,39021,,, +1480,B,pt,ZYH510 Rdio Tribuna do Vale do So Fran,,Xique-Xique (BA),-10.827647,-42.718172,,0.25,,8421,230,147,,,,,,36902457,,, +1480,EQA,,HCJV4,,Jipijapa (man),-1.316667,-80.583333,,1,,9918,267,147,,,,,,36995,,, +1480,EQA,,HCWP5 R Atlntida,,Alaus (chi),-2.2,-78.85,,1,,9877,265,147,,,,11,,37185,,, +1480,USA,,KHQN,,Spanish Fork (UT),40.075,-111.661667,,0.133,,8153,315,147,,,,,,38558,,, +1480,USA,en,WKGC,,Southport (FL),30.295833,-85.661667,,0.034,,7531,291,147,,,,,,42006,,, +1480,B,pt,ZYH795 RCM-Rdio Cultura de Miracema,,Miracema do Tocantins (TO),-9.566667,-48.416667,,0.25,,8609,236,148,,,,,,36902458,,, +1480,B,pt,ZYJ370 Prola AM 1480,,Prola d'Oeste (PR),-25.826944,-53.729444,,1,,10445,231,148,,,,,,36902465,,, +1480,BOL,,R Amor de Dios,,La Paz (lpz),-16.5,-68.116667,,1,,10435,248,148,,,,,,52056,,, +1480,BOL,,R Chiwalaki,,Vacas (cbb),-17.533333,-65.583333,,1,,10369,245,148,,0900-1400,1234567,,,52054,,, +1480,BOL,,R Chiwalaki,,Vacas (cbb),-17.533333,-65.583333,,1,,10369,245,148,,2100-0100,1234567,,,52054,,, +1480,USA,,KRXR,,Gooding (ID),42.915,-114.711389,,0.093,,8034,319,148,,,,9980,,39319,,, +1480,B,pt,ZYH524 Rdio Santana,,Santana (BA),-12.983333,-44.05,,0.25,,8701,230,149,,,,,,36902442,,, +1480,B,pt,ZYK551 Rdio Tecnica de Atibaia,,Atibaia (SP),-23.102328,-46.5863,,0.5,,9814,227,149,,,,,,36902443,,, +1480,EQA,,HCCY6,,El Corazon (pic),-0.5,-78.666667,,0.5,,9716,266,149,,,,,,36896,,, +1480,EQA,,HCVQ7,,Baeza (nap),-0.116667,-77.75,,0.5,,9619,265,149,,,,,,37177,,, +1480,PRG,,ZP20 R America,,emby (cet),-25.459861,-57.404806,,1,,10611,234,149,,0000-2400,1234567,,,45515,,, +1480,URG,,CW43B R Internacional,,Rivera (rv),-30.866667,-55.516667,,1.5,,11011,230,149,,0800-0300,1234567,,,36774,,, +1480,B,pt,ZYK767 Rdio Nova Amrica,,Boituva (SP),-23.287786,-47.751017,,0.5,,9891,228,150,,,,,,36902460,,, +1480,MEX,es,XENS-AM,,Navojoa (son),27.075633,-109.469017,,0.25,,9238,306,150,,,,,,44458,,, +1480,B,pt,ZYL307 Rdio Emboabas de Minas Gerais,,Santa Cruz de Minas (MG),-21.120217,-44.228986,,0.25,,9504,226,151,,,,,,36902441,,, +1480,PRG,,ZP23 R Mariscal Francisco Solano Lopez,,Bella Vista Norte (amm),-22.1,-56.516667,,0.5,,10249,236,151,,1000-0100,1234567,,,45518,,, +1480,ARG,,La R del Corazon,,Tablada (ba),-34.7,-58.533333,,1,,11522,230,152,,,,,,51882,,, +1480,B,pt,ZYJ681 Rdio Rondnia AM,,Pimenta Bueno (RO),-11.666667,-61.2,,0.25,,9564,245,152,,,,,,36902450,,, +1480,B,pt,ZYK539 Rdio Clube Altinpolis AM,,Altinpolis (SP),-21.016667,-47.366667,,0.25,,9652,229,152,,,,,,36902468,,, +1480,B,pt,ZYL235 Nova Frutal AM,,Frutal (MG),-20.007772,-48.91015,,0.25,,9636,231,152,,,,,,36902470,,, +1480,MEX,es,XEVIC-AM R Tamaulipas,,Ciudad Victoria (tam),23.691944,-99.120833,,0.15,,8942,297,152,,,,,,44967,,, +1480,URG,,CW148 R Universo,,Castillos (ro),-34.166667,-53.85,,0.75,,11233,227,152,,0900-0300,1234567,,,36754,,, +1480,B,pt,ZYI393 Rdio Caula,,Trs Lagoas (MS),-20.781156,-51.713422,,0.25,,9860,233,153,,,,,,36902467,,, +1480,B,pt,ZYJ221 Rdio Brotas,,Pira do Sul (PR),-24.533333,-49.933333,,0.25,,10123,229,153,,,,,,36902474,,, +1480,B,pt,ZYJ230 Rdio Astorga,,Astorga (PR),-23.245556,-51.675833,,0.25,,10091,231,153,,,,,,36902472,,, +1480,CHL,,CA148 R Amanecer,,Ovalle (CO),-30.616667,-71.15,,1,,11869,241,153,,1100-0400,1234567,,,35696,,, +1480,MEX,es,XEXU-AM La Poderosa,,Villa Frontera (coa),26.936322,-101.443211,,0.1,,8792,300,153,,,,,,45069,,, +1480,URG,,CX148 Difusora Rio Negro,,Young (rn),-32.7,-57.616667,,0.7,,11290,231,153,,,,,,36794,,, +1480,B,pt,ZYJ270 Rdio Educadora,,Unio da Vitria (PR),-26.203889,-51.051111,,0.25,,10340,229,154,,,,,,36902453,,, +1480,B,pt,ZYJ302 Rdio Cultura,,Ipor (PR),-24.015,-53.723333,,0.25,,10274,232,154,,,,,,36902464,,, +1480,B,pt,ZYJ731 Rdio Difusora de Joinville,,Joinville/Rua Rio Doce (SC),-26.322222,-48.835278,,0.25,,10238,227,154,,,,,,36902447,,, +1480,B,pt,ZYJ762 Litoral AM 1480,,Imaru (SC),-28.35,-48.816667,,0.25,,10431,226,154,,,,,,36902475,,, +1480,PRG,,ZP74,,Lima (spd),-23.866667,-56.5,,0.25,,10413,235,154,,,,,,45558,,, +1480,B,pt,ZYJ826 Rdio Caibi AM,,Caibi (SC),-27.067778,-53.263333,,0.25,,10537,230,155,,,,,,36902473,,, +1480,B,pt,ZYK255 Rdio Guaramano,,Guarani das Misses (RS),-28.150556,-54.563056,,0.25,,10707,231,155,,,,,,36902446,,, +1480,B,pt,ZYK321 Veranense AM,,Veranpolis (RS),-28.924722,-51.531389,,0.25,,10623,228,155,,,,,,36902454,,, +1480,CHL,,CC148 R La Amistad AM,,Tome (BI),-36.6,-72.916667,,1,,12486,238,155,,1100-0230,1234567,,,35820,,, +1480,B,pt,ZYK244 Rdio So Roque AM,,Faxinal do Soturno (RS),-29.573333,-53.453333,,0.25,,10782,229,156,,,,,,36902449,,, +1480,CHL,,CD148 R General Baquedano,,Valdivia (LL),-39.866667,-73.25,,1,,12778,236,156,,,,,,35881,,, +1480,USA,,KSBQ,,Santa Maria (CA),34.950556,-120.489444,,0.061,,9049,318,156,,,,,,39328,,, +1480,BOL,,Patrimonio Rdifusion,,Potosi (pts),-19.566667,-65.766667,,0.1,,10564,244,159,,0950-0100,1234567,,,52053,,, +1484,NGR,,ORTN La Voix du Sahel,,Diffa (dff),13.315556,12.586944,,0.1,,4349,170,110,,0500-2300,1234567,,,2539,,, +1485,E,es,SER,,Santander/Soto de la Marina (CNT-S),43.466258,-3.891533,,10,,1229,223,59,,0000-2400,1234567,,,1508,,, +1485,E,es,SER,,Zamora (CAL-ZA),41.508706,-5.770625,,10,,1495,223,62,,0000-2400,1234567,,,1509,,, +1485,G,en,BBC R 5 Live,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,1,,482,256,62,,0000-0500,1234567,,,1515,,, +1485,G,en,BBC R 5 Live,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0000-0400,12345..,0,,1513,,, +1485,G,en,BBC R 5 Live,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0000-0500,.....67,0,,1513,,, +1485,G,en,BBC R Humberside,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0400-2400,12345..,0,,1513,,, +1485,G,en,BBC R Humberside,,Hull/Paull (EN-EYK),53.716028,-0.229778,,1,,479,294,62,,0500-2400,.....67,0,,1513,,, +1485,G,en,BBC Sussex,,Brighton/Southwick (EN-ESU),50.832306,-0.249194,,1,,482,256,62,,0500-2400,1234567,,,1515,,, +1485,G,en,Gold,,Newbury/Washwater (EN-BER),51.361806,-1.347944,,1,,540,264,62,,0000-2400,1234567,,,1516,,, +1485,E,es,COPE,,Vilanova i la Geltr/Masa Padruell (CAT-B),41.243125,1.70435,,5,,1260,198,63,,0000-2400,1234567,999,,1511,,, +1485,G,en,BBC R 5 Live,,Wallasey (EN-MER),53.425667,-3.046861,,1.2,,652,287,63,,0000-0500,1234567,0,,1514,,, +1485,G,en,BBC R Merseyside,,Wallasey (EN-MER),53.425667,-3.046861,,1.2,,652,287,63,,0500-2400,1234567,0,,1514,,, +1485,G,en,BBC R 4,,Carlisle/Brisco (EN-CUM),54.865111,-2.916639,,1,,688,300,64,,0600-0100,1234567,0,,1512,,, +1485,G,en,BBC WS,,Carlisle/Brisco (EN-CUM),54.865111,-2.916639,,1,,688,300,64,,0100-0600,1234567,0,,1512,,, +1485,D,en,AFN PowerNet,,Ansbach/Katterbach-Kammerforst (bay),49.321389,10.595556,,0.3,,428,135,66,,0000-2400,1234567,9955,,1504,,, +1485,E,es,SER,,Alcoy (VAL-A),38.670986,-0.475525,,5,,1586,202,66,,0000-2400,1234567,,,1507,,, +1485,D,en,AFN PowerNet,,Hohenfels-Nainhof/General Patton Road (bay),49.228611,11.825556,,0.3,,498,128,67,,0000-2400,1234567,21,,1505,,, +1485,D,en,AFN PowerNet,,Garmisch-Partenkirchen (bay),47.483056,11.055833,,0.3,,613,145,68,,0000-2400,1234567,,,2000014,,, +1485,POL,pl,R AM,,Zakopane/Gra Gubałowka (MP),49.297778,19.945833,,0.8,,1001,103,68,,,,,,6400033,,, +1485,I,it,Broadcastitalia,s,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,9999999,,,4000007,,, +1485,LVA,lv,R Merkurs,,Riga/Bolderaja (Rig),57.036111,24.010278,,1,,1255,57,70,,0000-2400,1234567,977,,5200001,,, +1485,ROU,ro,R Vocea Speranţei,,Oradea (BH),47.057778,21.966667,,1,,1251,111,70,,0000-2400,1234567,,,52649,,, +1485,SRB,,R Beograd 1,,Tutin (Srb-rsk),42.983333,20.3,,1,,1450,129,71,,0000-2400,1234567,,,1535,,, +1485,SRB,,R Priboj,,Priboj (Srb-zlb),43.575278,19.5365,,1,,1360,129,71,,,,,,1543,,, +1485,ROU,ro,R Vocea Speranţei,,Botoşani (BT),47.75,26.666667,,1,,1523,101,72,,0000-2400,1234567,,,1896,,, +1485,ROU,ro,R Vocea Speranţei,,Mediaş (SB),46.146667,24.338056,,1,,1458,110,72,,0000-2400,1234567,,,1906,,, +1485,SRB,,R Beograd 2,,Negotin (Srb-bor),44.216667,22.55,,1,,1479,120,72,,,,,,1536,,, +1485,E,es,Onda Cero,,Antequera/Santa Luca (AND-MA),36.999111,-4.593611,,2,,1888,211,73,,0000-2400,1234567,,,1510,,, +1485,ROU,ro,R Vocea Speranţei,,Bacău (BC),46.605556,26.927778,,1,,1600,104,73,,0000-2400,1234567,,,1893,,, +1485,ROU,ro,R Vocea Speranţei,,Iaşi (IS),47.166667,27.583333,,1,,1614,101,73,,0000-2400,1234567,,,6600004,,, +1485,SRB,,R Beograd 1,,Crna Trava (Srb-jab),42.802778,22.288889,,1,,1574,125,73,,0000-2400,1234567,,,1534,,, +1485,GRC,el,ERA Net,,Orestiada (emc-evr),41.498919,26.534572,,1,,1922,120,76,,0000-2400,1234567,,,1517,,, +1485,E,es,SER,,Melilla (MEL-ML),35.284333,-2.965667,,1,,2013,205,77,,0000-2400,1234567,,,1528,,, +1485,IRN,fa,IRIB R.Markaze Azerbaijaneh Gharb,,Khoy (waz),38.650361,45.067167,,10,,3318,101,80,,0000-2400,1234567,,,10800008,,, +1485,TUN,,RTT R Nationale,,Borj El Khadra (tat),30.252153,9.558539,,1,,2444,173,81,,0400-2400,1234567,,,7900001,,, +1485,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,El Tur=At Tur (jsn),28.244444,33.632778,,10,,3479,129,82,,0200-0500,1234567,,,1856,,, +1485,EGY,ar,ERTU Educational/ERTU Al-Quran al-Karim,,El Tur=At Tur (jsn),28.244444,33.632778,,10,,3479,129,82,,2000-2200,1234567,,,1856,,, +1485,NOR,no,NRK P1/NRK P2,,Longyearbyen (sp),78.216667,15.633333,,1,,2926,4,86,,0000-2400,1234567,997,,1532,,, +1485,IRN,fa,IRIB R Iran,,Damghan (smn),36.132556,54.312389,,10,,4122,96,88,,0000-2400,1234567,155,,52525,,, +1485,IRN,fa,IRIB Sedaye Abadan,,Abadan (kuz),30.335283,48.313447,,10,,4172,109,89,,0030-2100,1234567,,,1524,,, +1485,SDN,,SRTC Sudan Nat. R,,Al-Qadarif=Gedaref (gdr),14.033333,35.4,,5,,4955,138,100,,,,,,47147,,, +1485,ARS,,BSKSA R Saudi Int.,,Jeddah/Al-Nuzla (mkh),21.379111,39.423194,,1,,4436,128,101,,1500-2100,1234567,,,47089,,, +1485,BHR,ar,R Bahrain,,Al-Manamah (mnh),26.216667,50.583333,,1,,4664,111,104,,,,,,10900002,,, +1485,IRN,fa,IRIB R Fars,,Jahrom (frs),28.512644,53.624683,,1,,4669,105,104,,,,,,1818,,, +1485,UGA,xx,UBC West,,Arua (aw),3.010222,30.8965,,10,,5911,149,106,,0300-2100,12345..,,,2543,,, +1485,UGA,xx,UBC West,,Arua (aw),3.010222,30.8965,,10,,5911,149,106,,0345-2100,.....67,,,2543,,, +1485,CHN,zh,Kytun RGD Hanyu,,Kytun=Kuitun (XJ),44.39005,84.909406,,1,,5586,66,113,,,,,,36200668,,, +1485,IND,,AIR North/Vividh Bharati,,Drass (JK),34.430556,75.765,,1,,5708,81,114,,1030-1630,1234567,,,52626,,, +1485,IND,,AIR North/Vividh Bharati,,Khalsi (JK),34.320811,76.863378,,1,,5790,81,115,,1200-1700,1234567,,,51030,,, +1485,ETH,,ERTA Ethiopia National R,,3 stations,5.283333,39.683333,,1,,6035,138,117,,0300-0600,1234567,,,2541,,, +1485,ETH,,ERTA Ethiopia National R,,3 stations,5.283333,39.683333,,1,,6035,138,117,,0800-2100,1234567,,,2541,,, +1485,IND,,AIR North/Vividh Bharati,,Nyoma (JK),33.5,78.666667,,1,,5974,80,117,,1200-1600,1234567,,,32200011,,, +1485,AGL,pt,RNA Em. Prov. do Kwanza-Sul,,Sumbe (cus),-11.2159,13.843867,,10,,7078,172,118,,0400-2300,1234567,514,,2369,,, +1485,CHN,,Hami RGD,,Hami=Kumul (XJ),42.833333,93.333333,,1,,6215,62,119,,,,,,51011,,, +1485,IND,,AIR North,,Chamoli (UT),30.407875,79.323078,,1,,6258,82,120,,1200-1600,1234567,,,51026,,, +1485,IND,,AIR West,,Ahwa (GJ),20.762678,73.684578,,1,,6660,94,124,,1200-1600,1234567,,,51024,,, +1485,CHN,,Gansu RGD,,unknown (GS),38,102.333333,,1,,7134,61,128,,2150-1605,1234567,,,36200670,,, +1485,IND,,AIR South,,Adilabad (AP),19.669894,78.523211,,1,,7082,91,128,,0025-0430,1234567,,,51023,,, +1485,IND,,AIR South,,Adilabad (AP),19.669894,78.523211,,1,,7082,91,128,,0700-1000,1234567,,,51023,,, +1485,IND,,AIR South,,Adilabad (AP),19.669894,78.523211,,1,,7082,91,128,,1200-1735,1234567,,,51023,,, +1485,RUS,ru,R Rossii,,Kamenskoye (KM),62.469444,166.2125,,1,,7152,10,129,,1700-1300,1234567,,,46984,,, +1485,IND,,AIR East,,Joranda (OR),20.756139,85.720811,,1,,7481,85,132,,0530-1740,1234567,,,51029,,, +1485,IND,,AIR East,,Soro (OR),21.2925,86.687722,,1,,7502,84,132,,0025-0430,1234567,,,51028,,, +1485,IND,,AIR East,,Soro (OR),21.2925,86.687722,,1,,7502,84,132,,0700-0900,1234567,,,51028,,, +1485,IND,,AIR East,,Soro (OR),21.2925,86.687722,,1,,7502,84,132,,1130-1740,1234567,,,51028,,, +1485,IND,,AIR Northeast,,Nongstoin (ML),25.522489,91.271844,,1,,7457,77,132,,0925-1300,1234567,,,51031,,, +1485,CHN,,Shuozhou RGD,,Shuozhou (SX),39.316667,112.416667,,1,,7600,53,133,,,,,,36200667,,, +1485,CHN,,Chengdu RGD Culture & Leisure,,Chengdu/SCTS504 (SC),30.599722,104.098611,,1,,7858,65,136,,,,,,51008,,, +1485,CHN,,Gongzhuling RGD Traffic,,Gongzhuling (JL),43.5,124.816667,,1,,7856,43,136,,,,,,51014,,, +1485,CHN,,Panjin RGD News,,Panjin (LN),41.116667,122.05,,1,,7941,46,136,,,,,,51016,,, +1485,CHN,,Jixi RGD Traffic,,Jixi (HL),45.3,130.933333,,1,,7958,38,137,,,,,,36200669,,, +1485,CHN,zh,Shandong RGD Xinwen Pindao,,Liaocheng (SD),36.433333,115.966667,,1,,8044,53,137,,2125-1700,1234567,,,51006,,, +1485,CHN,,Shiyan RGD,,Shiyan (HU),32.613889,110.841944,,1,,8090,59,138,,,,,,51017,,, +1485,CHN,,Chuxiong RGD,,Chuxiong (YN),25.033333,101.466667,,1,,8167,70,139,,,,,,51009,,, +1485,CHN,,Wuzhou RGD,,Wuzhou (GX),23.482222,111.293611,,3,,8921,64,139,,2200-1600,1234567,,,51020,,, +1485,CHN,,Yunnan RGD Xinwen Guangbo,,Ximeng/Mengka Zhen (YN),22.736111,99.456944,,1,,8233,73,139,,2210-1555,1234567,,,51018,,, +1485,CHN,zh,Shandong RGD Xinwen Pindao,,Weihai (SD),37.516667,122.116667,,1,,8270,48,140,,2125-1700,1234567,,,36200315,,, +1485,CHN,,Honghe RGD,,Jinping (YN),24.05,104.2,,1,,8427,69,141,,,,,,51012,,, +1485,KOR,ko,HLQS KBS 1 R,,Gongju (ccg),36.473889,127.129167,,1,,8615,45,142,,0000-2400,1234567,,,51060,,, +1485,CHN,,Guangxi RGD Xinwen Zhonghe Guangbo,,Lingshan (GX),22.416667,109.283333,,1,,8890,66,143,,2200-1600,1234567,,,51015,,, +1485,CHN,,Guilin RGD,,Guilin/GXTS240 (GX),25.396278,110.323667,,1,,8692,64,143,,,,,,51010,,, +1485,CHN,,Jiujiang RGD City Life,,Jiujiang/JXTS803 (JX),29.65,116.166667,,1,,8660,57,143,,,,,,51013,,, +1485,CHN,zh,CNR 1,,Yichun/JXTS811 (JX),27.8,114.416667,,1,,8724,59,143,,2025-1805,1234567,,,36200666,,, +1485,J,,JOGO RAB, Aomori Hoso,,Hachinohe (toh-aom),40.5,141.466667,,1,,8842,33,143,,0000-2400,1234567,,,51040,, +1485,KOR,,HLQU KBS 1 R,,Goheung (jen),34.598889,127.276111,,1,,8798,46,143,,0000-2400,1234567,,,51059,,, +1485,PHL,,DYDH-AM (r:666 DZRH-AM),,Iloilo City (ilo),10.716667,122.566667,,5,,10769,63,143,,,,,,51061,,, +1485,AFS,en,R Today,,Johannesburg/Marks Park (GT),-26.161317,28.003572,,1,,8954,160,144,,0000-2400,1234567,,,2542,,, +1485,J,,JOPL KRY, Yamaguchi Hoso,,Hagi (chg-yam),34.416667,131.416667,,1,,9013,43,144,,0000-2400,1234567,,,51041,, +1485,TWN,,Fenlin Nan Tien Tientai,,Kaohsiung (KHS),22.633333,120.283333,,1,,9534,58,145,,,,164,,51623,,, +1485,BOL,,CP135 R LV del Valle,,Punata (cbb),-17.566667,-65.783333,,1,,10385,245,148,,1000-0300,1234567,,,36641,,, +1485,BIO,en,AFN,,Diego Garcia (dga),-7.260911,72.378372,,0.25,,9059,114,150,,0000-2400,1234567,,,51005,,, +1485,J,,JOYS STV, Sapporo TV Hoso,,Kitami (hok),43.816667,143.866667,,0.1,,8595,30,152,,0000-2400,1234567,,,51045,, +1485,J,,JOTO ABS, Akita Hoso,,Asamai (toh-aki),39.25,140.5,,0.1,,8929,34,153,,0000-2400,1234567,,,51037,, +1485,J,,RAB, Aomori Hoso,,Fukaura (toh-aom),40.633333,139.916667,,0.1,,8770,34,153,,0000-2400,1234567,,,51038,, +1485,J,,RAB, Aomori Hoso,,Towada (toh-aom),40.6,141.233333,,0.1,,8823,33,153,,0000-2400,1234567,0,,51053,, +1485,J,,BSN Niigata Hoso,,Shiozawa (chu-nii),37.016667,138.85,,0.1,,9086,37,154,,0000-2400,1234567,,,51051,,, +1485,J,,BSS Sanin Hoso,,Ota (chg-shi),35.183333,132.5,,0.1,,8990,42,154,,0000-2400,1234567,,,51050,,, +1485,J,,CBC Chubu-Nippon Hoso,,Ueno (kns-mie),34.75,136.116667,,0.1,,9193,40,154,,0000-2400,1234567,,,51055,,, +1485,J,,JOAE CBC Chubu-Nippon Hoso,,Toyohashi (chu-aic),34.75,137.4,,0.1,,9249,39,154,,0000-2400,1234567,,,51054,,, +1485,J,,JOBE KBS, Kinki Hoso,,Fukuchiyama (kns-kyo),35.3,135.133333,,0.1,,9097,40,154,,0000-2400,1234567,,,51039,, +1485,J,,JOIM KBC, Kyushu Asahi Hoso,,Omuta (kyu-fuk),33.033333,130.433333,,0.1,,9099,45,154,,0000-2400,1234567,,,51049,, +1485,J,,JOSN Tokai Hoso,,Takayama (chu-gif),36.15,137.266667,,0.1,,9105,38,154,,0000-2400,1234567,,,51052,,, +1485,J,,JOTM Tokai Hoso,,Gero (chu-gif),35.8,137.233333,,0.1,,9138,38,154,,0000-2400,1234567,,,51058,,, +1485,J,,KBC, Kyushu Asahi Hoso,,Yukuhashi (kyu-fuk),33.733333,131.016667,,0.1,,9060,44,154,,0000-2400,1234567,,,51057,, +1485,J,,MRO, Hokoriku Hoso,,Yamanaka (chu-ish),36.233333,136.366667,,0.1,,9059,39,154,,0000-2400,1234567,,,51056,, +1485,J,,SBC, Shinetsu Hoso,,Karuizawa (chu-nag),36.333333,138.616667,,0.1,,9143,37,154,,0000-2400,1234567,,,51044,, +1485,J,,WBS, Wakayama Hoso,,Hashimoto (kns-wak),34.3,135.583333,,0.1,,9214,40,154,,0000-2400,1234567,,,51042,, +1485,J,,WBS, Wakayama Hoso,,Koyasan (kns-wak),34.2,135.583333,,0.1,,9224,40,154,,0000-2400,1234567,,,51046,, +1485,J,,JORL RF R Nippon,,Odawara (kan-kgw),35.3,139.166667,,0.1,,9268,37,155,,0000-2400,1234567,,,51048,,, +1485,J,,Tokai Hoso,,Kumano (kns-mie),33.866667,136.083333,,0.1,,9278,40,155,,0000-2400,1234567,,,51047,,, +1485,INS,id,RKPD Madiun,,Madiun/Caruban (JI-mad),-7.55,111.65,,0.5,,11708,83,156,,,,,,35400093,,, +1485,AUS,,5LN ABC West Coast SA,,Port Lincoln/Cardiff Road (SA),-34.729478,135.879536,,0.2,,15611,84,172,,0000-2400,1234567,,,51002,,, +1485,AUS,,4HU ABC Northwest QLD,,Hughenden/Flinders Hwy (QLD),-20.842694,144.185694,,0.1,,15000,62,173,,0000-2400,1234567,,,51001,,, +1485,NZL,,LiveSPORT,,Gisborne/Wainui (GIS),-38.693889,178.062778,,1,,18390,27,175,,,,,,32500001,,, +1485,AUS,,2EA SBS National,,Wollongong/Windang (NSW),-34.517625,150.875119,,0.2,,16591,69,176,,0000-2400,1234567,,,51004,,, +1485,AUS,,2RN ABC National,,Wilcannia (NSW),-31.552778,143.379722,,0.1,,15868,74,176,,0000-2400,1234567,,,51003,,, +1490,USA,,WTVL,,Waterville (ME),44.564444,-69.610833,,1,,5420,293,111,,,,,,42564,,, +1490,USA,,WBAE,,Portland (ME),43.663333,-70.271389,,1,,5523,293,112,,,,999,,40796,,, +1490,USA,,WEMJ,,Laconia (NH),43.541389,-71.4625,,1,,5606,293,113,,,,,,41299,,, +1490,USA,,WIKE,,Newport (VT),44.941111,-72.226389,,1,,5557,295,113,,,,,,41746,,, +1490,USA,en,WKDR,,Berlin (NH),44.482778,-71.177222,,0.93,,5523,294,113,,,,,,20012535,,, +1490,USA,es,WCEC,,Haverhill (MA),42.772778,-71.100278,,1,,5637,292,113,,,,,,40965,,, +1490,USA,,WFAD,,Middlebury (VT),43.999167,-73.159722,,1,,5680,295,114,,,,,,41352,,, +1490,USA,,WICY,,Malone (NY),44.846111,-74.268611,,1,,5689,296,114,,,,,,41728,,, +1490,USA,,WKVT,,Brattleboro (VT),42.8475,-72.582222,,1,,5725,293,114,,,,,,42090,,, +1490,USA,,WMRC,,Milford (MA),42.136667,-71.513889,,1,,5708,292,114,,,,,,42382,,, +1490,USA,,WCSS,,Amsterdam (NY),42.961111,-74.176389,,1,,5817,294,115,,,,,,41089,,, +1490,USA,,WUVR,,Lebanon (NH),43.653333,-72.237778,,0.64,,5647,294,115,,,,,,43273,,, +1490,USA,,WACM,,West Springfield (DN) (Aux) (MA),42.101667,-72.623056,,0.83,,5781,292,116,,,,,,20016294,,, +1490,USA,,WACM,,West Springfield (U) (MA),42.098611,-72.629167,,0.83,,5782,292,116,,,,,,40642,,, +1490,USA,,WCDO,,Sidney (NY),42.323333,-75.3825,,1,,5938,294,116,,,,,,40972,,, +1490,USA,,WGCH,,Greenwich (CT),41.026944,-73.633056,,1,,5923,292,116,,,,,,41486,,, +1490,USA,,WKNY,,Kingston (NY),41.936389,-74.008333,,1,,5880,293,116,,,,,,42052,,, +1490,USA,,WOLF,,Syracuse (NY),43.058333,-76.166667,,1,,5933,295,116,,,,,,42595,,, +1490,USA,,WDLC,,Port Jervis (NY),41.363611,-74.678056,,1,,5964,293,117,,,,,,41173,,, +1490,USA,,WAZL,,Hazleton (PA),40.94,-75.967778,,1,,6076,293,118,,,,,,40789,,, +1490,USA,,WBCB,,Levittown (PA),40.168889,-74.835556,,1,,6062,292,118,,,,,,40819,,, +1490,USA,,WNBT,,Wellsboro (PA),41.744722,-77.293056,,1,,6099,295,118,,,,,,42439,,, +1490,USA,,WRCE,,Watkins Glen (NY),42.352222,-76.868333,,0.88,,6028,295,118,,,,,,43244,,, +1490,USA,,WBTA,,Batavia (NY),42.976389,-78.186667,,0.71,,6063,297,119,,,,,,40913,,, +1490,USA,,WESB,,Bradford (PA),41.965,-78.616944,,1,,6164,296,119,,,,,,41324,,, +1490,USA,,WARK,,Hagerstown (MD),39.626389,-77.711111,,1,,6284,293,120,,,,,,40740,,, +1490,USA,,WMGW,,Meadville (PA),41.631389,-80.176944,,1,,6285,297,120,,,,,,42321,,, +1490,USA,,WNTJ,,Johnstown (PA),40.323611,-78.896944,,1,,6305,295,120,,,,,,43052,,, +1490,USA,,WTIQ,,Manistique (MI),45.964167,-86.276944,,1,,6318,304,120,,,,,,43142,,, +1490,USA,,WERE,,Cleveland Heights (OH),41.513333,-81.601389,,1,,6381,297,121,,,,,,41898,,, +1490,USA,,WLPA,,Lancaster (PA),40.060556,-76.316389,,0.6,,6163,293,121,,,,,,42214,,, +1490,USA,,WMPX,,Midland (MI),43.613333,-84.221389,,1,,6377,301,121,,,,,,42379,,, +1490,USA,,WOHI,,East Liverpool (OH),40.629722,-80.6025,,1,,6387,296,121,,,,,,42574,,, +1490,USA,,WTCS,,Fairmont (WV),39.471944,-80.140556,,1,,6447,295,121,,,,,,43123,,, +1490,USA,en,WXTG,,Hampton (VA),37.030556,-76.375556,,0.97,,6397,290,121,,,,,,42227,,, +1490,USA,,WABJ,,Adrian (MI),41.900556,-84.014167,,1,,6496,299,122,,,,,,40629,,, +1490,USA,,WKLQ,,Whitehall (MI),43.384444,-86.325,,1,,6518,302,122,,,,,,43251,,, +1490,USA,,WMOA,,Marietta (OH),39.419167,-81.476389,,1,,6534,295,122,,,,,,42363,,, +1490,USA,,WMRN,,Marion (OH),40.613889,-83.129722,,1,,6542,297,122,,,,,,42386,,, +1490,USA,,WPAK,,Farmville (VA),37.313056,-78.394722,,1,,6504,292,122,,,,,,42642,,, +1490,USA,en,WBSS r:WTKU,,Pleasantville (NJ),39.39,-74.5125,,0.4,,6099,291,122,,,,,,43269,,, +1490,CAN,en,CBPP,,PEI National Park (PE),46.486389,-63.313611,,0.02,,4897,292,123,,,,,,20109217,,, +1490,USA,,WBEX,,Chillicothe (OH),39.331111,-82.996944,,1,,6634,296,123,,,,,,40837,,, +1490,USA,,WCVA,,Culpeper (VA),38.484444,-77.989444,,0.68,,6388,292,123,,,,,,41106,,, +1490,USA,,WDUR,,Durham (NC),35.9675,-78.888333,,1,,6640,291,123,,,,,,41216,,, +1490,USA,,WIGM,,Medford (WI),45.164167,-90.341111,,1,,6607,306,123,,,,,,41739,,, +1490,USA,,WOSH,,Oshkosh (WI),44.045833,-88.529167,,1,,6593,304,123,,,,,,42624,,, +1490,USA,,WRMT,,Rocky Mount (NC),35.9325,-77.830278,,1,,6575,290,123,,,,,,42885,,, +1490,USA,,WSGB,,Sutton (WV),38.653056,-80.719444,,0.9,,6546,294,123,,,,,,42989,,, +1490,USA,,WSWW,,Charleston (WV),38.357778,-81.616667,,1,,6625,295,123,,,,,,43091,,, +1490,USA,,WWNB,,New Bern (NC),35.133056,-77.065556,,1,,6589,289,123,,,,,,43409,,, +1490,USA,en,KQDS,,Duluth (MN),46.724444,-92.119722,,1,,6582,308,123,,,,,,39189,,, +1490,USA,,WAEY,,Princeton (WV),37.389722,-81.099444,,1,,6669,294,124,,,,,,40661,,, +1490,USA,,WAZZ,,Fayetteville (NC),35.068333,-78.9025,,1,,6712,290,124,,,,,,40793,,, +1490,USA,,WGEZ,,Beloit (WI),42.495833,-89.0175,,1,,6743,303,124,,,,,,41498,,, +1490,USA,,WKBV,,Richmond (IN),39.828056,-84.9325,,1,,6713,298,124,,,,,,41969,,, +1490,USA,,WLOE,,Eden (NC),36.505833,-79.771667,,1,,6654,292,124,,,,,,42203,,, +1490,USA,,WPNA,,Oak Park (IL),41.881111,-87.793889,,1,,6721,301,124,,,,,,42716,,, +1490,USA,,WSIP,,Paintsville (KY),37.805833,-82.766944,,1,,6740,295,124,,,,,,43004,,, +1490,USA,,WWIL,,Wilmington (NC),34.231111,-77.955,,1,,6717,289,124,,,,988,,43385,,, +1490,USA,,KXRA,,Alexandria (MN),45.868333,-95.363056,,1,,6824,309,125,,,,,,39820,,, +1490,USA,,WDAN,,Danville (IL),40.149444,-87.626389,,1,,6848,300,125,,,,,,41122,,, +1490,USA,,WDBQ,,Dubuque (IA),42.502778,-90.706667,,1,,6839,304,125,,,,,,41130,,, +1490,USA,,WKYW,,Frankfort (KY),38.203333,-84.913611,,1,,6840,297,125,,,,,,41393,,, +1490,USA,,WLFN,,La Crosse (WI),43.828333,-91.240833,,1,,6763,305,125,,,,,,42161,,, +1490,USA,,WOPI,,Bristol (VA),36.595833,-82.161667,,1,,6798,294,125,,,,,,42614,,, +1490,USA,,WSTP,,Salisbury (NC),35.688333,-80.495556,,1,,6765,292,125,,,,,,43074,,, +1490,USA,,WSVM,,Valdese (NC),35.734167,-81.567778,,1,,6829,293,125,,,,,,43085,,, +1490,USA,,KLGR,,Redwood Falls (MN),44.5425,-95.1325,,1,,6919,308,126,,,,,,38810,,, +1490,USA,,KOVC,,Valley City (ND),46.913333,-98.017222,,1,,6877,311,126,,,,,,39112,,, +1490,USA,,KRIB,,Mason City (IA),43.135,-93.207778,,1,,6928,306,126,,,,,,39247,,, +1490,USA,,WFXY,,Middlesboro (KY),36.613056,-83.709444,,1,,6893,295,126,,,,,,41463,,, +1490,USA,,WGCD,,Chester (SC),34.698333,-81.201667,,1,,6888,291,126,,,,,,41485,,, +1490,USA,,WZOE,,Princeton (IL),41.352222,-89.468056,,1,,6860,302,126,,,,,,43585,,, +1490,USA,,WCLU,,Glasgow (KY),36.983889,-85.872222,,1,,6996,296,127,,,,,,41031,,, +1490,USA,,WCSV,,Crossville (TN),35.950278,-85.035833,,1,,7028,295,127,,,,,,41091,,, +1490,USA,,WITA,,Knoxville (TN),35.969722,-83.965556,,1,,6960,294,127,,,,,,41813,,, +1490,USA,,WPCI,,Greenville (SC),34.851944,-82.415,,1,,6953,292,127,,,,,,42657,,, +1490,USA,,WTQS,,Cameron (SC),33.5525,-80.743889,,1,,6951,290,127,,,,,,20000011,,, +1490,USA,,WVGB,,Beaufort (SC),32.435556,-80.698333,,1,,7038,289,127,,,,,,43295,,, +1490,VEN,es,YVXD La Dinmica,,Caracas (dcf),10.5,-66.916667,,10,,7952,263,127,,,,13,,51704,,, +1490,CAN,en,CJSN,,Shaunavon (SK),49.641389,-108.4875,,1,,7148,319,128,,,,,,36223,,, +1490,USA,,KBUR,,Burlington (IA),40.823889,-91.1425,,0.76,,6999,303,128,,,,,,38109,,, +1490,USA,,KORN,,Mitchell (SD),43.703889,-97.999167,,1,,7142,309,128,,,,,,39100,,, +1490,USA,,WCHM,,Clarkesville (GA),34.6075,-83.5375,,0.88,,7043,293,128,,,,,,40996,,, +1490,USA,,WCOR,,Lebanon (TN),36.207222,-86.2675,,1,,7083,296,128,,,,,,41014,,, +1490,USA,,WJOC,,Chattanooga (TN),35.051944,-85.273333,,1,,7116,294,128,,,,,,41910,,, +1490,USA,,WKUN,,Monroe (GA),33.810278,-83.700278,,1,,7118,292,128,,,,,,42083,,, +1490,USA,,WOMI,,Owensboro (KY),37.741389,-87.116111,,0.83,,7011,298,128,,,,,,42598,,, +1490,USA,,WQQX,,East St. Louis (IL),38.621111,-90.16,,1,,7121,300,128,,,,,,41325,,, +1490,USA,,WSNT,,Sandersville (GA),32.973056,-82.809444,,1,,7130,291,128,,,,,,43039,,, +1490,USA,,WSYL,,Sylvania (GA),32.730833,-81.617778,,1,,7073,290,128,,,,,,43094,,, +1490,USA,,WYYZ,,Jasper (GA),34.475556,-84.436944,,1,,7110,293,128,,,,,,43560,,, +1490,USA,,KNDC,,Hettinger (ND),46.019722,-102.6925,,1,,7188,313,129,,,,997,,38971,,, +1490,USA,,KOMJ,,Omaha (NE),41.233056,-95.967222,,1,,7238,306,129,,,,,,20016080,,, +1490,USA,,WJJM,,Lewisburg (TN),35.450833,-86.7825,,1,,7177,296,129,,,,,,41887,,, +1490,USA,,WKRO,,Cairo (IL),37.043333,-89.183889,,1,,7192,299,129,,,,,,42065,,, +1490,PTR,es,WDEP,,Ponce (PR),17.981111,-66.614167,,1,,7287,268,130,,,,998,,41151,,, +1490,USA,,KTTR,,Rolla (MO),37.945,-91.746111,,1,,7270,301,130,,,,,,39546,,, +1490,USA,,WDXL,,Lexington (TN),35.634722,-88.392778,,1,,7260,297,130,,,,,,41226,,, +1490,USA,,WEKI,,Decatur (AL),34.587222,-86.986944,,1,,7260,295,130,,,,,,40681,,, +1490,USA,,WRLA,,West Point (GA),32.873889,-85.192222,,1,,7289,293,130,,,,,,42875,,, +1490,USA,en,WFZX,,Anniston (AL),33.6875,-85.830278,,1,,7262,294,130,,,,,,40721,,, +1490,VEN,,YVRP R El Sol,,Maracaibo (zul),10.666667,-71.616667,,10,,8257,267,130,,0000-2400,1234567,,,51705,,, +1490,USA,,KDRO,,Sedalia (MO),38.676389,-93.255,,0.78,,7297,302,131,,,,,,38289,,, +1490,USA,,KDRS,,Paragould (AR),36.050278,-90.462222,,1,,7351,299,131,,,,,,38290,,, +1490,USA,,KTOP,,Topeka (KS),39.0775,-95.679444,,1,,7402,304,131,,,,,,39527,,, +1490,USA,,KXLQ,,Indianola (IA),41.356667,-93.587778,,0.5,,7095,305,131,,,,,,39802,,, +1490,USA,,WHBB,,Selma (AL),32.433889,-87.011111,,1,,7439,294,131,,,,,,41603,,, +1490,USA,,WMOG,,Brunswick (GA),31.161667,-81.474444,,0.6,,7191,289,131,,,,9982,,42365,,, +1490,USA,,WSFB,,Quitman (GA),30.780833,-83.575,,1,,7358,290,131,,,,,,42984,,, +1490,USA,,WTJV,,Deland (FL),29.018056,-81.299722,,1,,7356,287,131,,,,,,42447,,, +1490,USA,,WTTB,,Vero Beach (FL),27.62,-80.416944,,1,,7414,286,131,,,,,,43221,,, +1490,USA,,WTUP,,Tupelo (MS),34.255,-88.69,,1,,7392,296,131,,,,,,43230,,, +1490,CAN,en,CFNC,,Cross Lake (MB),54.624444,-97.7825,,0.05,,6249,318,132,,,,,,20109216,,, +1490,USA,,KBSR,,Laurel (MT),45.653056,-108.7525,,1,,7511,317,132,,,,,,38097,,, +1490,USA,,KDMO,,Carthage (MO),37.182778,-94.361944,,1,,7486,302,132,,,,,,38282,,, +1490,USA,,KFCR,,Custer (SD),43.7175,-103.583333,,0.83,,7430,312,132,,,,,,38380,,, +1490,USA,,KKAN,,Phillipsburg (KS),39.792222,-99.331944,,1,,7544,307,132,,,,,,38703,,, +1490,USA,,WHOC,,Philadelphia (MS),32.764444,-89.13,,1,,7543,295,132,,,,,,41674,,, +1490,USA,,WIRB,,Level Plains (AL),31.299444,-85.790556,,1,,7456,292,132,,,,,,41797,,, +1490,USA,,WSIR,,Winter Haven (FL),28.013889,-81.750556,,1,,7468,287,132,,,,,,43005,,, +1490,USA,en,WMBM,,Miami Beach (FL),25.769444,-80.136389,,1,,7549,284,132,,,,,,42283,,, +1490,USA,,KGOS,,Torrington (WY),42.072222,-104.227778,,1,,7606,312,133,,,,,,38506,,, +1490,USA,,KWXT,,Dardanelle (AR),35.218889,-93.127222,,1,,7579,300,133,,,,,,39769,,, +1490,USA,,WCLD,,Cleveland (MS),33.733611,-90.713889,,1,,7559,297,133,,,,,,41023,,, +1490,USA,,WTKE,,Milton (FL),30.625,-87.048333,,1,,7592,292,133,,,,,,41247,,, +1490,CUB,es,R Mayar,,Mayar (ho),20.664344,-75.688744,,1,,7678,277,134,,,,4,,36574,,, +1490,USA,,KDBM,,Dillon (MT),45.236389,-112.645833,,1,,7727,319,134,,,,0,,38240,,, +1490,USA,,WAFZ,,Immokalee (FL),26.409444,-81.43,,0.7,,7581,285,134,,,,,,40664,,, +1490,USA,,WVBG,,Vicksburg (MS),32.345556,-90.867222,,1,,7685,296,134,,,,,,20016020,,, +1490,USA,,WWPR,,Bradenton (FL),27.476667,-82.535833,,0.8,,7564,287,134,,,,9875,,43424,,, +1490,USA,en,WXBD,,Biloxi (MS),30.393889,-88.999444,,1,,7734,294,134,,,,,,43455,,, +1490,USA,,KCFC,,Boulder (CO),40.028333,-105.251667,,1,,7838,311,135,,,,,,38140,,, +1490,USA,,KJNT,,Jackson (WY),43.474444,-110.768611,,1,,7801,317,135,,,,,,20000066,,, +1490,USA,,KMFS,,Guthrie (OK),35.882222,-97.392778,,1,,7771,303,135,,,,,,38896,,, +1490,USA,,KRUS,,Ruston (LA),32.513333,-92.665556,,1,,7780,298,135,,,,,,39308,,, +1490,USA,en,KEYG,,Grand Coulee (WA),47.884444,-118.972222,,0.96,,7750,324,135,,,,1,,38357,,, +1490,USA,,KEUN,,Eunice (LA),30.471389,-92.414167,,1,,7939,296,136,,,,,,38346,,, +1490,USA,,KJIN,,Houma (LA),29.570556,-90.728333,,1,,7912,294,136,,,,,,38669,,, +1490,USA,,KPLT,,Paris (TX),33.635278,-95.553889,,1,,7857,300,136,,,,,,39144,,, +1490,USA,,KRTK,,Chubbuck (ID),42.927222,-112.500833,,1,,7932,317,136,,,,,,39301,,, +1490,USA,,KUGR,,Green River (WY),41.515556,-109.436389,,1,,7915,315,136,,,,,,39568,,, +1490,USA,,KXAR,,Hope (AR),33.688889,-93.598611,,0.7,,7737,299,136,,,,,,39778,,, +1490,USA,,KXRE,,Manitou Springs (CO),38.861944,-104.925556,,1,,7924,310,136,,,,,,39822,,, +1490,USA,,KYZS,,Tyler (TX),32.374444,-95.273333,,1,,7949,299,136,,,,,,39882,,, +1490,USA,en,KTEL,,Walla Walla (WA),46.0425,-118.333333,,1,,7898,323,136,,,,,,39468,,, +1490,USA,en,KYNR,,Toppenish (WA),46.375833,-120.321667,,1,,7947,324,136,,,,992,,39863,,, +1490,USA,es,KBRO,,Bremerton (WA),47.564444,-122.657222,,1,,7924,326,136,,,,,,38089,,, +1490,CLM,es,HJZB LV de los Robles,,Tulu (val),4.066667,-76.216667,,5,,9147,267,137,,,,94,,52459,,, +1490,DOM,,HIAP LV del Cibao,,Moca (esp),19.383333,-70.516667,,0.25,,7435,272,137,,0000-2400,1234567,,,37207,,, +1490,USA,,KBIX,,Muskogee (OK),35.782222,-95.376944,,0.45,,7664,302,137,,,,,,38040,,, +1490,USA,,KBKR,,Baker (OR),44.788333,-117.809722,,1,,7994,322,137,,,,,,38049,,, +1490,USA,,KCID,,Caldwell (ID),43.664167,-116.636111,,1,,8049,320,137,,,,995,,38155,,, +1490,USA,,KQTY,,Borger (TX),35.684722,-101.388889,,1,,8014,306,137,,,,,,39206,,, +1490,USA,,KVWC,,Vernon (TX),34.153333,-99.269167,,1,,8028,303,137,,,,,,39678,,, +1490,USA,,KWUD,,Woodville (TX),30.747778,-94.432222,,1,,8038,298,137,,,,,,39763,,, +1490,USA,en,KFKB,,Forks (WA),47.953889,-124.388889,,1,,7950,328,137,,,,,,39608,,, +1490,B,pt,ZYH246 Emisora Rio So Francisco,,Penedo (AL),-10.285,-36.544167,,1,,8057,225,138,,,,,,36902488,,, +1490,MEX,es,XEKN-AM R Variedades,,Huetamo de Nuez (mic),18.626944,-100.899167,,5,,9504,295,138,,,,,,44263,,, +1490,USA,,KHVL,,Huntsville (TX),30.696667,-95.552222,,1,,8110,298,138,,,,,,38569,,, +1490,USA,,KNAM,,Silt (CO),39.560278,-107.651389,,0.74,,8002,312,138,,,,,,20016096,,, +1490,USA,,KOGN,,Ogden (UT),41.239722,-111.982778,,1,,8062,316,138,,,,,,39847,,, +1490,USA,,KPKE,,Gunnison (CO),38.565833,-106.925556,,1,,8054,311,138,,,,,,39143,,, +1490,USA,,KRTN,,Raton (NM),36.886667,-104.443056,,1,,8074,308,138,,,,,,39302,,, +1490,USA,en,KLOG,,Kelso (WA),46.116667,-122.885278,,1,,8072,326,138,,,,,,38838,,, +1490,USA,en,KWOK,,Hoquiam (WA),46.972222,-123.8525,,0.82,,8026,327,138,,,,995,,39740,,, +1490,PNR,es,Asamblea Nacional,,Penonom/Llano Marn (ccl),8.506111,-80.3375,,3,,9041,273,139,,,,,,35100009,,, +1490,USA,,KBZY,,Salem (DN) (OR),44.881667,-122.985,,1,,8195,325,139,,,,,,20016216,,, +1490,USA,,KBZY,,Salem (U) (OR),44.950833,-123.045278,,1,,8190,325,139,,,,,,38116,,, +1490,USA,,KCPX,,Spanish Valley (UT),38.467778,-109.438333,,1,,8191,313,139,,,,,,20016091,,, +1490,USA,,KZZN,,Littlefield (TX),33.938056,-102.343889,,1,,8221,305,139,,,,,,39917,,, +1490,USA,,KBST,,Big Spring (TX),32.262222,-101.460278,,1,,8319,303,140,,,,,,38098,,, +1490,USA,,KNEL,,Brady (TX),31.13,-99.3225,,1,,8296,301,140,,,,,,38982,,, +1490,USA,,KRSN,,Los Alamos (D/N) (NM),35.893889,-106.293056,,1,,8261,309,140,,,,,,20016195,,, +1490,USA,,KRSN,,Los Alamos (U) (NM),35.893889,-106.293056,,1,,8261,309,140,,,,,,39296,,, +1490,USA,en,KLGO,,Austin (TX),30.253611,-97.706944,,1,,8277,300,140,,,,,,38419,,, +1490,USA,,KIBL,,Beeville (TX),28.385556,-97.728333,,1,,8442,298,141,,,,,,38575,,, +1490,USA,,KSKR,,Roseburg (OR),43.193056,-123.360833,,1,,8373,325,141,,,,,,39275,,, +1490,VEN,,YVSQ R Merida 14-90,,Mrida (mrd),8.566667,-71.25,,1,,8415,266,141,,0000-2400,1234567,3,,45458,,, +1490,CLM,es,HJAY R Vida Nueva,,Barranquilla (atl),10.916667,-74.866667,,1,,8457,270,142,,,,9802,,37339,,, +1490,USA,,KBLF,,Red Bluff (CA),40.191111,-122.215,,1,,8618,322,142,,,,,,38053,,, +1490,USA,,KLNT,,Laredo (TX),27.494722,-99.471111,,1,,8625,299,142,,,,,,38833,,, +1490,USA,,KRUI,,Ruidoso Downs (NM),33.321389,-105.59,,1,,8455,307,142,,,,,,39306,,, +1490,USA,,KSYC,i,Yreka (CA),41.724444,-122.65,,1,,8487,323,142,,,,,,39446,,, +1490,USA,,KWMC,,Del Rio (TX),29.371389,-100.865278,,1,,8541,301,142,,,,,,39730,,, +1490,USA,en,KLZN,,Susanville (D) (CA),40.443889,-120.643056,,0.95,,8527,321,142,,,,,,20016260,,, +1490,CAN,en,CKBV,,New Hazelton (BC),55.249167,-127.580278,,0.05,,7349,333,143,,,,,,20109210,,, +1490,CLM,es,HJJO,,San Marcos (suc),8.616667,-75.116667,,1,,8675,269,143,,,,,,37610,,, +1490,MEX,es,XEMS-AM R Mexicana,,Matamoros (tam),25.862794,-97.571669,,1,,8655,297,143,,,,,,44408,,, +1490,USA,,KCUZ,,Clifton (AZ),33.041667,-109.294444,,1,,8679,309,143,,,,,,38224,,, +1490,USA,,KFFN,,Tucson (AZ),32.248889,-110.924722,,1,,8838,310,143,,,,,,38385,,, +1490,USA,,KOWL,,South Lake Tahoe (CA),38.942778,-119.956944,,1,,8641,320,143,,,,9965,,39116,,, +1490,USA,,KTOB,,Petaluma (CA),38.226944,-122.621389,,1,,8825,322,143,,,,24,,39522,,, +1490,USA,,KYCA,,Prescott (AZ),34.550833,-112.4625,,1,,8703,313,143,,,,0,,39841,,, +1490,USA,,KZZZ,,Bullhead City (AZ),35.168889,-114.637778,,1,,8753,314,143,,,,,,39919,,, +1490,USA,en,KLZN,,Susanville (N) (CA),40.443889,-120.643056,,0.87,,8527,321,143,,,,,,20016259,,, +1490,CLM,es,HJBS R Punto 5,,Bogot D. C. (bdc),4.566667,-74.116667,,1,,8961,265,144,,,,9987,,37356,,, +1490,CLM,es,HJTC,,Sonson (ant),5.716667,-75.316667,,1,,8942,267,144,,,,,,37640,,, +1490,EQA,,HCSM5 R Santa Mara,,Azogues (can),-2.75,-78.85,,2,,9926,265,144,,0930-0330,1234567,,,2184,,, +1490,HND,,HRLP23,,El Progreso (yor),15.366667,-87.783333,,1,,8946,283,144,,,,,,37787,,, +1490,MEX,es,XECJC-AM R Net,,Ciudad Jurez (chi),31.733611,-106.474722,,0.8,,8647,307,144,,,,,,43846,,, +1490,MEX,es,XEFF-AM La Nortea,,Matehuala (slp),23.644722,-100.640556,,1,,9038,298,144,,,,,,44003,,, +1490,MEX,es,XEYT-AM R Teocelo,,Teocelo (vcz),19.380172,-96.977767,,1,,9191,292,144,,,,,,45107,,, +1490,USA,,KMET,,Banning (CA),33.930278,-116.922222,,1,,8980,315,144,,,,,,38895,,, +1490,USA,,KRKC,,King City (CA),36.226111,-121.123889,,1,,8954,320,144,,,,,,39252,,, +1490,USA,es,KSPE,,Santa Barbara (CA),34.418611,-119.686111,,1,,9064,318,144,,,,,,38048,,, +1490,CLM,es,HJAG R Garzn,,Garzn (hui),2.166667,-75.65,,1,,9276,265,145,,,,923,,2048,,, +1490,GTM,,TGRE R Modelo,,Retalhuleu (ret),14.566667,-91.65,,1,,9272,285,145,,0900-0300,1234567,,,40527,,, +1490,MEX,es,XEGT-AM W R,,Zamora/Av. 5 de Mayo 501 (mic),19.98,-102.283333,,1,,9467,297,145,,,,,,44083,,, +1490,PRU,,OBU5C R Los Chankas,,Andahuaylas/Cerro San Jose (apu),-13.661358,-73.386467,,2.5,,10522,254,145,,,,,,37000095,,, +1490,USA,es,KWAC,,Bakersfield (CA),35.348056,-119.009167,,0.64,,8943,318,145,,,,,,39680,,, +1490,EQA,,HCMQ1,,Quito (pic),-0.166667,-78.466667,,1,,9673,266,146,,,,,,37031,,, +1490,PRU,,OAX8J R Nueva Atlantida,,Iquitos (lor),-3.75,-73.25,,1,,9635,260,146,,,,,,40355,,, +1490,URG,,CX149 R del Oeste,,Nueva Helvecia (co),-34.266667,-57.216667,,4,,11413,229,146,,0930-0300,1234567,,,36795,,, +1490,BOL,,CP172 R San Jos,,San Jos de Chiquitos (scz),-17.844444,-60.738889,,1,,10102,241,147,,1100-2300,......7,,,36667,,, +1490,BOL,,CP172 R San Jos,,San Jos de Chiquitos (scz),-17.844444,-60.738889,,1,,10102,241,147,,1100-2400,123456,,,36667,,, +1490,EQA,,HCBO2,,Guayaquil (gua),-2.2,-79.866667,,1,,9947,266,147,,,,,,36867,,, +1490,USA,,KGBA,,Calexico (CA),32.742222,-115.553056,,0.5,,9026,314,147,,,,,,38579,,, +1490,B,pt,ZYH478 Rdio Educadora de Ipia,,Ipia (BA),-14.13645,-39.724017,,0.25,,8595,226,148,,,,,,36902496,,, +1490,PRU,,OAX1L R Vision,,Chiclayo (lam),-6.7,-79.916667,,1,,10345,263,148,,,,,,40273,,, +1490,B,pt,ZYD999 Vila AM,,Vila Rica (MT),-10.006106,-51.106133,,0.25,,8805,238,149,,,,,,36902483,,, +1490,B,pt,ZYH512 Rdio Planalto do Oeste,,Correntina (BA),-13.351317,-44.621611,,0.25,,8767,230,149,,,,,,36902479,,, +1490,CHL,,CD149 R Malleco,,Victoria (AR),-38.233333,-72.316667,,5,,12588,237,149,,????-0300,1234567,992,,35882,,, +1490,CLM,es,HJJ76,,El Peon (bol),8.983333,-73.95,,0.2,,8563,268,149,,,,,,35901912,,, +1490,EQA,,HCAE4 R Unin,,Esmeraldas (esm),0.966667,-79.716667,,0.5,,9658,268,149,,,,,,36838,,, +1490,EQA,,HCVT7,,Smiguelpilla (tun),-1.166667,-78.533333,,0.5,,9765,265,149,,,,,,37182,,, +1490,MEX,es,XEAQ-AM La Caliente,,Agua Prieta (son),31.327089,-109.568875,,0.25,,8851,309,149,,,,,,43726,,, +1490,B,pt,ZYL231 Rdio Onda Viva,,Araguari (MG),-18.633333,-48.183333,,0.25,,9465,231,151,,,,,,36902477,,, +1490,B,pt,ZYL353 Rdio Pirapetinga,,Pirapetinga (MG),-21.648556,-42.346678,,0.25,,9464,225,151,,,,5,,36902478,,, +1490,INS,id,RKB-R Karya Bersama,,Jakarta/Kemang (JK-kjs),-6.266667,106.816667,,1,,11267,86,151,,,,,,50939,,, +1490,PRU,,OCX4P R La Luz,,Cerro de Pasco (pas),-10.666667,-76.316667,,0.5,,10452,258,151,,,,,,40432,,, +1490,ARG,,R Canaan Celestial,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,,,51883,,, +1490,ARG,,R Gama,,Valentin Alsina (ba),-34.683333,-58.416667,,1,,11514,230,152,,,,,,51860,,, +1490,ARG,es,R Ciudad de Ca-Cat,,Buenos Aires (df),-34.483333,-58.558333,,1,,11503,230,152,,,,,,33000091,,, +1490,ARG,es,R Unidad,,Rafael Calzada (ba),-34.8,-58.366667,,1,,11522,230,152,,,,,,52509,,, +1490,B,pt,ZYK530 Rdio Difusora Olmpia,,Olmpia (SP),-20.736406,-48.901236,,0.25,,9705,230,152,,,,,,36902494,,, +1490,B,pt,ZYK583 Rdio Educadora,,Fernandpolis (SP),-20.287428,-50.261453,,0.25,,9734,232,152,,,,,,36902484,,, +1490,B,pt,ZYK680 Rdio Cultura,,Vargem Grande do Sul (SP),-21.868817,-46.877139,,0.25,,9710,228,152,,,,2,,36902489,,, +1490,B,pt,ZYL274 Rdio Paraispolis,,Paraispolis (MG),-22.559781,-45.780483,,0.25,,9721,227,152,,,,,,36902481,,, +1490,CHL,,CA149 R Alicanto,,Salvador (AT),-26.166667,-69.5,,1,,11380,243,152,,1000-0400,1234567,,,35697,,, +1490,CLM,es,HKW24,,Guaitarilla (nar),1.133333,-77.55,,0.2,,9496,266,152,,,,,,35901903,,, +1490,MEX,es,XESK-AM La Costeita,,Ruiz (nay),21.958056,-105.143056,,0.2,,9460,300,152,,,,,,44751,,, +1490,ARG,,R Vida AM,,Mar del Plata (ba),-38,-57.566667,,1,,11773,227,153,,,,,,51884,,, +1490,B,pt,ZYJ210 Rdio Cornlio AM 1490,,Cornlio Procpio (PR),-23.174722,-50.644444,,0.25,,10030,230,153,,,,,,36902480,,, +1490,B,pt,ZYK580 Rdio Globo,,Dracena (SP),-21.50115,-51.527503,,0.25,,9918,232,153,,,,,,36902499,,, +1490,B,pt,ZYK764 Rdio Imaculada Conceio,,Mau/Rua America do Sul 235 (SP),-23.633983,-46.499583,,0.25,,9861,227,153,,,,,,36902502,,, +1490,BOL,,CP196 R Moxos,,San Ignacio de Moxos (ebn),-14.916667,-65.616667,,0.25,,10135,247,153,,,,,,36681,,, +1490,BOL,,CP198 R Pedro Domingo Murillo,,Quime (lpz),-16.980556,-67.216667,,0.35,,10421,247,153,,1000-1400,1234567,,,36682,,, +1490,USA,en,WPXZ439,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010695,,, +1490,B,,ZYJ217,,Lapa (PR),-25.766667,-49.716667,,0.25,,10229,228,154,,,,,,45943,,, +1490,B,,ZYJ300,,Marechal Cndido Rondon (PR),-24.566667,-54.066667,,0.25,,10345,232,154,,,,,,46023,,, +1490,B,,ZYJ757,,Ibirama (SC),-27.05,-49.516667,,0.25,,10342,228,154,,,,,,46169,,, +1490,B,pt,ZYI404 Rdio Nova Paiagus,,Glria de Dourados (MS),-22.418056,-54.226944,,0.25,,10151,234,154,,,,,,36902495,,, +1490,B,pt,ZYJ347 R.Difusora de So Jorge do Oeste,,So Jorge d'Oeste (PR),-25.693611,-52.909167,,0.25,,10389,231,154,,,,,,36902500,,, +1490,BOL,,R Mairana,,Mairana (scz),-18.116667,-63.933333,,0.25,,10320,244,154,,1100-0300,1234567,,,52058,,, +1490,CAN,en,CBPC-1,,Glacier Park (BC),51.3,-117.501111,,0.005,,7374,325,154,,,,,,20109212,,, +1490,CHL,,CB149 R El Canelo de Nos AM,,San Bernardo (RM),-33.6,-70.7,,1,,12100,239,154,,1100-0400,1234567,,,35741,,, +1490,B,,ZYK341,,Giru (RS),-28.016667,-54.35,,0.25,,10683,231,155,,,,,,46368,,, +1490,B,pt,ZYJ791 Rdio Cultura de Xaxim,,Xaxim (SC),-26.961944,-52.528333,,0.25,,10488,230,155,,,,,,36902492,,, +1490,B,pt,ZYK309 Rdio Taquara AM,,Taquara/Rua Sem Denominaco (RS),-29.673889,-50.778333,,0.25,,10656,227,155,,,,,,36902490,,, +1490,PRU,,OAX5N R Nazca,,Nazca (ica),-14.666667,-74.966667,,0.3,,10714,254,155,,,,,,40324,,, +1490,B,pt,ZYK208 Rdifuso Assisense,,So Francisco de Assis (RS),-29.55,-55.133333,,0.25,,10868,231,156,,,,,,36902486,,, +1490,B,pt,ZYK225 Rdio Liberdade AM,,Canguu (RS),-31.384444,-52.673611,,0.25,,10913,228,156,,,,,,36902476,,, +1490,URG,,CV149 Em. del Centro,,Baltasar Brum (ar),-30.701667,-57.318056,,0.25,,11091,231,157,,,,,,36730,,, +1490,ARG,,LV22 R Huinca Renanco,,Huinca Renanco (cb),-34.85,-64.366667,,0.25,,11849,234,159,,1000-0300,1234567,,,40246,,, +1490,ARG,,LU25 R Carhue,,Carhue (ba),-37.166667,-62.75,,0.1,,11967,231,163,,0900-0330,1234567,,,40221,,, +1494,F,fr,France Info,,Clermont-Ferrand/Ennezat (63),45.910556,3.216667,,20,,727,200,51,,0000-2400,1234567,0,,1552,,, +1494,F,fr,France Bleu Corse Frequenza Mora,,Bastia/Serra di Pigno (20B),42.695833,9.400278,,20,,1070,167,55,,0000-2400,1234567,4,,1553,,, +1494,MDA,ro,R Moldova Actualităţi,,Edineţ (ED),48.182778,27.300556,,20,,1545,98,59,,0400-2200,1234567,,,1558,,, +1494,MDA,ro,R Moldova Actualităţi,,Cahul (CH),45.935,28.275278,,30,,1727,105,60,,0400-2200,1234567,,,1559,,, +1494,I,it,R Speranza,,Pavullo (mo),44.333333,10.833333,,1,,924,158,66,,????-????,9999999,,,1556,,, +1494,IRN,fa,IRIB R Khorasan-e Razavi,,Taybad (rkh),34.736811,60.795147,,10,,4666,92,94,,0000-2400,1234567,995,,1819,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Tacheng=Qoqek/SARFT634 (XJ),46.745556,83.006667,,1,,5310,64,110,,2300-1800,1234567,,,36200003,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Kaba=Habahe/SARFT8114 (XJ),48.075,86.404722,,1,,5428,61,111,,2300-1800,1234567,,,36200234,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Yining=Gulja/XJTS632 (XJ),43.873889,81.345556,,1,,5398,68,111,,2300-1800,1234567,,,36200230,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Akesu=Aksu/XJTS636 (XJ),41.185833,80.280833,,1,,5516,72,112,,2300-1800,1234567,,,36200236,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Bachu/XJTS2041 (XJ),39.815278,78.535833,,1,,5499,74,112,,2300-1800,1234567,,,36200673,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Fuyun=Koktokay/XJTS8115 (XJ),46.994167,89.503889,,1,,5686,60,114,,2300-1800,1234567,,,36200235,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Korla/SARFT8104 (XJ),41.772778,86.214722,,1,,5853,67,116,,2300-1800,1234567,,,36200233,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Mori=Mulei/SARFT8112 (XJ),43.811111,90.274722,,1,,5958,63,117,,2300-1800,1234567,,,36200232,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Turfan/Gaochang Lu-SARFT8101 (XJ),42.957778,89.175833,,1,,5952,65,117,,2300-1800,1234567,,,51071,,, +1494,CHN,zh,Xinjiang RGD 738 Zonghe,,Yiwu/XTS8103 (XJ),43.247222,94.699444,,1,,6266,61,120,,2300-1800,1234567,,,36200231,,, +1494,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Hailar=Haila'er/NMTS861 (NM),49.234722,119.722222,,1,,7112,42,128,,2150-1605,1234567,,,51069,,, +1494,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Erenhot=Erlian/NMTS872 (NM),43.618056,111.999722,,1,,7211,50,129,,,,,,36200672,,, +1494,J,,JOYR RSK Sanyo Hoso,,Okayama (chg-oka),34.647222,133.835556,,10,,9102,41,134,,0000-2400,1234567,9998,,51078,,, +1494,THA,th,Or. Sor. Mor. Thor. Modern R,,Bangkok/Phetchakasem Rd (bmp),13.711861,100.360444,,10,,9074,78,134,,0000-2400,1234567,,,51085,,, +1494,TWN,en,BBC WS,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,1500-1600,1234567,,,51086,,, +1494,TWN,en,BBC WS,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,2200-2300,1234567,,,51086,,, +1494,TWN,fr,R France Int.,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,0830-0930,1234567,,,51086,,, +1494,TWN,fr,R France Int.,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,1600-1700,1234567,,,51086,,, +1494,TWN,zh,Chiao Y BS,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,1030-1500,1234567,,,51086,,, +1494,TWN,zh,Chiao Y BS,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,2300-0830,1234567,,,51086,,, +1494,TWN,zh,R France Int.,,New Taipei City/Sanchung (TP),25.050733,121.493711,,10,,9380,56,135,,0930-1030,1234567,,,51086,,, +1494,PHL,,DWSS-AM Entertainment R,,Quezon City (ncr),14.633333,120.95,,10,,10310,62,138,,1930-1700,1234567,130,,51083,,, +1494,J,,JOTL HBC, Hokkaido Hoso,,Nayoro (hok),44.35,142.483333,,1,,8494,31,142,,0000-2400,1234567,,,51077,, +1494,CHN,,Wuhu RGD,,Wuhu (AH),31.3,118.4,,1,,8637,54,143,,,,,,51072,,, +1494,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Lianjiang/FJTS902 (FJ),26.206389,119.526111,,1,,9163,56,144,,,,,,36200671,,, +1494,CHN,zh,Fujian RGD Xinwen Zhonghe Guangbo,,Fu'an/FJTS903 (FJ),27.111117,119.622122,,1,,9086,56,144,,,,,,51068,,, +1494,J,ja,RSK Sanyo Hoso,,Bizen,34.5,134,,1,,9124,41,144,,,,,,31400108,,, +1494,J,ja,RSK Sanyo Hoso,,Niimi (chg-oka),34.966667,133.466667,,1,,9055,41,144,,,,,,31400110,,, +1494,J,ja,RSK Sanyo Hoso,,Ochiai,34.5,134,,1,,9124,41,144,,,,,,31400107,,, +1494,J,ja,RSK Sanyo Hoso,,Takahashi,34.5,134,,1,,9124,41,144,,,,,,31400111,,, +1494,J,ja,RSK Sanyo Hoso,,Tsuyama (chg-oka),35.05,134,,1,,9071,41,144,,,,,,31400109,,, +1494,PHL,,DXOC-AM,,Ozamis City (moc),8.15,123.816667,,5,,11083,63,144,,1955-1400,1234567,1,,51082,,, +1494,FSM,,V6AI FSMBS R Yap,,Colonia (yap),9.490944,138.077222,,5,,11766,50,146,,2000-1315,1234567,99947,,51080,,, +1494,PNG,,NBC Kundu-R Enga,,Wabag (ega),-5.316667,143.733333,,10,,13512,52,149,,1930-1200,12345..,,,51084,,, +1494,INS,id,R Suara Kasih,,Tahuna (SA-san),3.616667,125.483333,,1,,11605,64,152,,,,,,35400094,,, +1494,J,ja,RSK Sanyo Hoso,,Kasaoka,34.5,134,,0.1,,9124,41,154,,,,,,31400112,,, +1494,AUS,en,2AY,,Albury/Thurgoona (NSW),-36.054489,146.964767,,2,,16455,76,165,,0000-2400,1234567,16,,51066,,, +1494,NZL,,Southern Star/RNZ Parliament,,Hamilton/Eureka (WKO),-37.691878,175.404903,,2.5,,18197,32,170,,,,3,,32500005,,, +1494,NZL,,R Sport,,Timaru/Saint Andrews (CAN),-44.515556,171.198333,,2.5,,18613,59,171,,0000-2400,1234567,11,,51081,,, +1494,LHW,,R Lord Howe Island,,Lord Howe Island (NSW),-31.466667,159.15,,0.1,,16830,55,180,,,,,,51079,,, +1495,BOL,,R Domingo Savio,,Villa Independencia (cbb),-17.116667,-66.883333,,1,,10413,247,148,,,,,,52055,,, +1500,AFG,,R Badghis,,Qalay-e-Naw (bdg),34.983333,63.133333,,6,,4807,90,97,,0133-0330,1234567,994,,11000003,,, +1500,AFG,,R Badghis,,Qalay-e-Naw (bdg),34.983333,63.133333,,6,,4807,90,97,,1330-1630,1234567,994,,11000003,,, +1500,USA,en,WFED,,Washington (DC),39.041944,-77.046389,,50,,6286,292,103,,,,992,,32091,,, +1500,USA,,KSTP,,Saint Paul (D) (MN),45.025556,-93.043889,,50,,6767,307,108,,,,,,20012594,,, +1500,USA,,KSTP,,Saint Paul (N) (MN),45.025556,-93.051667,,50,,6767,307,108,,,,14,,39425,,, +1500,USA,,WFIF,,Milford (CT),41.1925,-73.101389,,5,,5877,292,109,,,,9954,,41385,,, +1500,USA,,WLQV,,Detroit (MI),42.231111,-83.199444,,10,,6422,299,111,,,,3,,42221,,, +1500,AFG,,R Bamiyan,,Bamiyan (bam),34.816667,67.816667,,0.4,,5139,87,112,,1330-1500,1234567,,,46816,,, +1500,USA,en,WGHT,,Pompton Lakes (NJ),40.980833,-74.285,,1,,5967,292,117,,,,9962,,41517,,, +1500,USA,,WBRI,,Indianapolis (IN),39.870556,-86.088056,,5,,6779,299,118,,,,,,40900,,, +1500,AFG,,R Nuristan,,Parun (nur),35.420833,70.922222,,0.1,,5306,84,120,,,,,,11000009,,, +1500,USA,,WDPC,,Dallas (GA),33.944444,-84.824444,,5,,7178,293,122,,,,,,41201,,, +1500,HTI,,Hati Flambeau Carabes,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,,,,,52124,,, +1500,USA,,WASN,,Youngstown (OH),41.107222,-80.5825,,0.5,,6349,296,123,,,,,,40750,,, +1500,VEN,es,YVRZ R 2000 AM,,Cuman (suc),10.433333,-64.203889,,10,,7774,261,125,,0800-0400,1234567,7,,2195,,, +1500,USA,,WZZQ,,Gaffney (SC),35.088333,-81.644444,,1,,6885,292,126,,,,,,41233,,, +1500,USA,,WBZI,,Xenia (OH),39.713333,-83.913333,,0.5,,6660,297,127,,,,,,40936,,, +1500,USA,,WDEB,,Jamestown (TN),36.425278,-84.942222,,1,,6984,295,127,,,,,,41144,,, +1500,USA,,WVSM,,Rainsville (AL),34.498889,-85.842778,,1,,7196,294,129,,,,,,43344,,, +1500,USA,en,WAYS,,Macon (GA),32.813056,-83.626667,,1,,7194,292,129,,1200-2400,1234567,,,43371,,, +1500,USA,,KDFN,,Doniphan (D) (MO),36.614167,-90.822778,,1,,7326,299,130,,1300-0100,1234567,,,38254,,, +1500,USA,,WKAX,,Russellville (AL),34.528333,-87.711389,,1,,7309,296,130,,,,,,41957,,, +1500,USA,,WSEM,,Donalsonville (GA),31.073889,-84.879722,,1,,7417,291,131,,,,,,42980,,, +1500,USA,,WKXO,,Berea (KY),37.586667,-84.301111,,0.25,,6852,296,132,,,,,,42100,,, +1500,DOM,,HIRD R Juan Pablo Duarte,,Elas Pia (epi),18.875806,-71.678522,,1,,7557,273,133,,,,,,52253,,, +1500,USA,,WQMS,,Quitman (MS),32.064167,-88.724167,,1,,7577,295,133,,1300-0100,1234567,,,42782,,, +1500,USA,,WSMX,,Winston-Salem (NC),36.073889,-80.255278,,0.14,,6719,292,133,,1200-2400,1234567,,,43031,,, +1500,NCG,,YNPT R Minuto,,Managua (mng),12.15,-86.266667,,10,,9125,280,134,,,,,,45205,,, +1500,HTI,,4VBD,,Cap-Hatien (nrd),19.75,-72.2,,0.5,,7518,274,135,,,,,,35633,,, +1500,PTR,,WMNT,,Manati (PR),18.435,-66.498333,,0.25,,7240,268,135,,0900-0200,1234567,,,42360,,, +1500,USA,,WMJL,,Marion (KY),37.337778,-88.0675,,0.18,,7101,298,135,,,,,,42337,,, +1500,CLM,es,HJSH R Reloj / Ecos del Ricaurte,,Moniquir (boy),5.65,-73.566667,,5,,8828,266,136,,????-0100,1234567,11,,2222,,, +1500,USA,,KCLF,,New Roads (LA),30.735556,-91.416111,,1,,7855,296,136,,,,,,38171,,, +1500,USA,,KJIM,,Sherman (TX),33.691667,-96.558056,,1,,7911,301,136,,,,,,38668,,, +1500,USA,,KPGM,,Pawhuska (OK),36.761667,-96.199444,,0.5,,7628,303,136,,,,,,39138,,, +1500,USA,,KSJX,,San Jose (CA),37.357778,-121.871389,,5,,8877,321,136,,,,9993,,39371,,, +1500,CLM,es,HJUW R Mara - La Onda de Dis,,Manizales (cal),5.066667,-75.5,,5,,9011,267,137,,,,5,,52427,,, +1500,DOM,,HIPA R Color,,Salvalon de Higey (alt),18.6,-68.7,,0.25,,7377,270,137,,0900-0400,1234567,,,37284,,, +1500,PRU,es,OBX4I R Santa Rosa,,Lima/San Miguel (lim),-12.062153,-77.086272,,18,,10626,257,137,,,,85,,29304,,, +1500,MEX,es,XEDF-AM R Frmula 2,,Mxico D.F/Aculco (dif),19.379792,-99.102561,,5,,9325,294,138,,,,999,,47309,,, +1500,USA,,WPSO,,New Port Richey (FL),28.259167,-82.729167,,0.25,,7512,288,138,,,,,,42740,,, +1500,B,pt,ZYH615 Rdio Macio,,Baturit (CE),-4.336761,-38.882706,,0.25,,7585,230,139,,,,,,36902508,,, +1500,B,pt,ZYH487 Rdio Jacupe AM,,Riacho do Jacupe (BA),-11.8,-39.383333,,1,,8346,227,140,,,,,,36902504,,, +1500,B,pt,ZYI919 Rdio Voz do Longa,,Esperantina (PI),-3.903667,-42.252928,,0.25,,7723,233,140,,,,,,36902512,,, +1500,CHL,,CA150 R.Santa Maria de Guadalupe,,Iquique (TA),-20.25,-70.166667,,10,,10899,247,140,,1100-0500,1234567,,,35698,,, +1500,USA,,WAKE,,Valparaiso (IN),41.443333,-87.048333,,0.025,,6712,301,140,,,,,,40684,,, +1500,USA,,WKIZ,,Key West (FL),24.567222,-81.748333,,0.25,,7756,284,141,,,,,,42021,,, +1500,B,pt,ZYI779 Rdio Pajeu,,Afogados da Ingazeira (PE),-7.749631,-37.646572,,0.25,,7859,227,142,,,,,,36902513,,, +1500,CLM,es,HJMP,,Aguachica (ces),8.3,-73.616667,,1,,8600,267,142,,,,,,37572,,, +1500,EQA,,HCHG2,,Vinces (rio),-1.566667,-79.716667,,3,,9881,266,142,,,,,,36965,,, +1500,CLM,,HJZH,,Medelln (ant),6.333333,-75.583333,,1,,8906,268,143,,,,,,37664,,, +1500,HWA,en,KHKA,,Honolulu (HI),21.336111,-157.8925,,10,,11707,345,143,,0000-2400,1234567,999,,39580,,, +1500,USA,,KANI,,Wharton (TX),29.322778,-96.058889,,0.5,,8260,298,143,,,,,,37950,,, +1500,B,pt,ZYI542 Rdio Floresta,,Tucuru (PA),-3.777722,-49.66925,,0.25,,8133,240,144,,,,10,,36902510,,, +1500,CLM,es,HJLJ Sonora 1500 AM,,Cali (val),3.533333,-76.466667,,1,,9211,267,144,,,,256,,26525,,, +1500,CLM,es,HJTW,,Fusagasuga (cun),4.333333,-74.316667,,1,,8995,265,144,,,,,,37652,,, +1500,CTR,,TIRC R Cima,,Ciudad Quesada (alj),10.333333,-84.433333,,1,,9160,277,144,,1100-0300,1234567,,,52162,,, +1500,HND,,HRTX,,Choluteca (cho),13.3,-87.333333,,1,,9096,281,144,,,,,,37854,,, +1500,SLV,,YSDA,,San Salvador (ssl),13.566667,-89.116667,,1,,9192,283,144,,,,,,45269,,, +1500,ARG,,LRI214 R Bonaerense,,Llavallol (df),-34.775078,-58.454367,,5,,11524,230,145,,,,,,51885,,, +1500,USA,,KMXO,,Merkel (TX),32.471389,-100.005278,,0.25,,8218,303,145,,,,,,38952,,, +1500,USA,,KBRN,,Boerne (TX),29.812222,-98.728056,,0.25,,8377,300,147,,,,,,38088,,, +1500,BOL,,CP238 R Sagrado Corazon,,Mineros (scz),-17.119444,-63.230556,,1,,10187,244,148,,0930-0100,1234567,,,52059,,, +1500,MEX,es,XEFL-AM R Santa Fe,,Guanajuato (gua),21.038542,-101.27485,,0.5,,9311,297,148,,,,,,44011,,, +1500,PRU,,OBU2J R San Pablo,,San Pablo (cus),-14.2,-71.316667,,1,,10435,252,148,,,,458,,37000107,,, +1500,CHL,,CD150 R Tierra del Fuego,,Puerto Porvenir (MA),-53.283333,-70.316667,,10,,13705,224,149,,1100-0400,1234567,,,35883,,, +1500,EQA,,HCAD4,,El Carmen (man),-0.316667,-79.5,,0.5,,9756,267,149,,,,,,36836,,, +1500,EQA,,HCRO1,,Otavalo (imb),0.216667,-78.266667,,0.5,,9625,266,149,,,,,,37100,,, +1500,EQA,,HCVE3,,Santa Rosa (oro),-3.45,-79.966667,,0.7,,10063,265,149,,,,,,37163,,, +1500,EQA,,HCWN5,,Riobamba (chi),-1.666667,-78.466667,,0.5,,9804,265,149,,,,,,37184,,, +1500,MEX,es,XEJQ-AM La Explosiva,,Parras de la Fuente (coa),25.4375,-102.183333,,0.25,,8970,300,150,,,,,,44222,,, +1500,B,pt,ZYL215 Rdio Montanhesa AM,,Viosa (MG),-20.765606,-42.878028,,0.25,,9403,225,151,,,,,,36902505,,, +1500,USA,,WPJX,,Zion (IL),42.455278,-87.900833,,0.002,,6682,302,151,,,,,,42700,,, +1500,ARG,,LT45 R San Javier,,San Javier (mn),-27.883333,-55.133333,,0.5,,10712,231,152,,1100-0500,12345..,,,51887,,, +1500,ARG,,LT45 R San Javier,,San Javier (mn),-27.883333,-55.133333,,0.5,,10712,231,152,,1100-2100,.....67,,,51887,,, +1500,ARG,,R En Realidad,,Capilla del Senor (ba),-34.3,-59.1,,1,,11515,231,152,,,,,,51888,,, +1500,ARG,es,Frecuencia On,,La Reja (ba),-34.633333,-58.8,,1,,11530,230,152,,,,,,33000089,,, +1500,B,pt,ZYK549 Rdio Fraternidade,,Araras (SP),-22.365939,-47.401144,,0.25,,9784,228,152,,,,,,36902517,,, +1500,B,pt,ZYK626 Rdio Difusora Taubate,,Pindamonhangaba (SP),-22.933778,-45.470056,,0.25,,9742,226,152,,,,,,36902515,,, +1500,B,pt,ZYK706 Rdio Vale do Rio Grande,,Miguelpolis (SP),-20.174556,-48.025236,,0.25,,9605,230,152,,,,,,36902509,,, +1500,B,pt,ZYK773 Rdio Cumbica,,Guarulhos/Rua ngelo Caldini 1500 (SP),-23.474167,-46.396194,,0.25,,9841,227,152,,,,,,36902514,,, +1500,B,pt,ZYL340 Rdio Aparecida do Sul,,Ilicnea (MG),-20.933253,-45.834083,,0.25,,9566,228,152,,,,,,36902511,,, +1500,USA,,WTNE,,Trenton (TN),35.981111,-88.925556,,0.006,,7264,298,152,,,,,,43182,,, +1500,B,pt,ZYK776 Rdio Cidade de Apia,,Apia (SP),-24.491944,-48.931944,,0.25,,10067,228,153,,,,,,36902516,,, +1500,USA,en,WD2XUQ,,Merrimack (NH),42.808333,-71.4875,,0.0001,,5659,292,153,,,,,,20010699,,, +1500,USA,en,WD2XVL,,Litchfield/Antenna Test Range (NH),42.806111,-71.425833,,0.0001,,5655,292,153,,,,,,20010698,,, +1500,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010701,,, +1500,USA,en,WD9XEY,,Merrimack (NH),42.85,-71.516667,,0.0001,,5658,292,153,,,,,,20010704,,, +1500,B,,ZYJ336,,Prudentpolis (PR),-25.216667,-50.966667,,0.25,,10241,230,154,,,,,,46058,,, +1500,B,pt,ZYJ366 Rdio Araucria,,Mangueirinha (PR),-25.944444,-52.180278,,0.25,,10374,230,154,,,,,,36902518,,, +1500,URG,,CW150,,Paso de los Toros (ta),-32.766667,-56.466667,,0.5,,11236,230,154,,,,,,36755,,, +1500,USA,,WPMB,,Vandalia (IL),38.957778,-89.122778,,0.002,,7033,300,154,,,,,,42711,,, +1500,ARG,,R Municipal,,General Conesa (rn),-40.1,-64.416667,,1,,12313,231,155,,1000-2400,1234567,,,51886,,, +1500,B,pt,ZYK365 Rdio Simpatia AM,,Chapada (RS),-28.058056,-53.059722,,0.25,,10619,230,155,,,,,,36902507,,, +1500,USA,,WQCR,,Alabaster (AL),33.2075,-86.759444,,0.003,,7359,294,156,,,,,,42768,,, +1500,ARG,,LT34 R Nuclear,,Zarate (ba),-34.1,-59.016667,,0.25,,11492,231,158,,0900-2400,1234567,,,40185,,, +1500,ARG,,LV25 R Union,,Bell Ville (cb),-32.616667,-62.666667,,0.25,,11556,234,158,,0900-0400,1234567,,,40249,,, +1500,ARG,,LT22 R Nueva Era,,Pehuajo (ba),-35.783333,-61.866667,,0.25,,11796,232,159,,,,,,40174,,, +1500,CHL,,CB150 R Trasandina,,Los Andes (VS),-32.816667,-70.666667,,0.25,,12031,240,160,,1100-0400,1234567,,,35742,,, +1500,CHL,,CC150 R Centenario,,San Javier (ML),-35.616667,-71.716667,,0.25,,12332,238,161,,1100-0300,1234567,,,35821,,, +1500,USA,en,WPQY846,,Paradise/1250 Wagstaff Road (CA),39.777672,-121.595528,,0.01,,8632,322,162,,,,,,20010696,,, +1500,USA,en,WPKJ354,,Folsom/1150 Sibley St. (CA),38.659639,-121.177686,,0.01,,8722,321,163,,,,,,20010700,,, +1500,USA,en,WPLV688,,Yuba City/Sam Brannan Park (CA),39.144339,-121.633306,,0.01,,8694,321,163,,,,,,20010705,,, +1500,USA,en,WPUA214,,Sacramento (CA),38.54435,-121.427692,,0.01,,8743,321,163,,,,,,20010706,,, +1500,USA,en,WPDY857,,Anaheim (CA),33.811006,-117.908778,,0.01,,9039,316,164,,,,,,20010703,,, +1500,USA,en,WPIE851,,Beverly hills (CA),34.0725,-118.394317,,0.01,,9037,317,164,,,,,,20010702,,, +1500,USA,en,WPWT499,,San Diego (CA),32.771667,-117.138333,,0.01,,9101,315,164,,,,,,20010697,,, +1500,ARG,es,LU1 R.Libertador General San Martn,,Lisandro Olmos (ba),-34.6,-58.45,,0.04,,11508,230,166,,,,,,51889,,, +1503,SRB,sr,R Beograd 202,,Beograd/Krnjača (Srb-gbg),44.841239,20.473014,,10,,1311,122,60,,0000-2400,1234567,9958,,1576,,, +1503,G,en,BBC R 5 Live,,Stoke-on-Trent/Sideway (EN-SFS),52.98775,-2.185417,,1,,589,283,63,,0000-0600,1234567,9977,,1568,,, +1503,G,en,BBC R Stoke,,Stoke-on-Trent/Sideway (EN-SFS),52.98775,-2.185417,,1,,589,283,63,,0600-2400,1234567,9977,,1568,,, +1503,E,es,RNE R 5,,Monforte de Lemos/Pieira (GAL-LU),42.500906,-7.532717,,6,,1494,230,64,,0000-2400,1234567,995,,1565,,, +1503,E,es,RNE R 5,,La Lnea (RNE) (AND-CA),36.154056,-5.340656,,10,,2001,212,67,,0000-2400,1234567,993,,1566,,, +1503,RUS,ru,R Tsentr,,Moskva/Kurkino (MV),55.881361,37.391611,,10,,2050,66,68,,0400-0600,1234567,,,1574,,, +1503,RUS,ru,R Tserkov,,Moskva/Kurkino (MV),55.881361,37.391611,,10,,2050,66,68,,1600-1900,1234567,,,1574,,, +1503,BIH,bs,BH R 1,,Zavidovići/Mecevici (srp),44.453333,18.167917,,1,,1214,130,69,,0500-0600,1234567,87,,1564,,, +1503,BIH,bs,BH R 1,,Zavidovići/Mecevici (srp),44.453333,18.167917,,1,,1214,130,69,,2000-2300,1234567,87,,1564,,, +1503,BIH,bs,R 1503 Zavidovići,,Zavidovići/Mecevici (srp),44.453333,18.167917,,1,,1214,130,69,,0600-2000,1234567,87,,1564,,, +1503,HOL,,R 05-11,,unknown (fri),53.35,5.9,,0.03,,142,346,70,,0800-1700,.....67,,,3800016,,, +1503,I,it,Ondamedia Broadcast,,Piove di Sacco (pd),45.3,12.033333,,0.4,,862,149,70,,0600-0800,1234567,,,4000044,,, +1503,I,it,Ondamedia Broadcast,,Piove di Sacco (pd),45.3,12.033333,,0.4,,862,149,70,,1200-2230,1234567,,,4000044,,, +1503,I,it,Voice of Russia,,Piove di Sacco (pd),45.3,12.033333,,0.4,,862,149,70,,0800-1200,1234567,,,4000044,,, +1503,G,,Betar Bangla,,East London/Bow (EN-GTL),51.533056,-0.0175,,0.1,,446,264,71,,0000-2400,1234567,,,1570,,, +1503,EGY,ar,ERTU Al-Barnameg al-Aam,,El-Arish=Al-Arish (sin),31.114722,33.6975,,25,,3218,126,75,,0300-0405,1234567,4,,1567,,, +1503,EGY,ar,ERTU Al-Barnameg al-Aam,,El-Arish=Al-Arish (sin),31.114722,33.6975,,25,,3218,126,75,,0500-2300,1234567,4,,1567,,, +1503,EGY,ar,ERTU Shamal Sina',,El-Arish=Al-Arish (sin),31.114722,33.6975,,25,,3218,126,75,,0405-0500,1234567,4,,1567,,, +1503,I,it,R Poggio Lupo,,unknown (ct),37.405556,15.066667,,1,,1769,154,75,,????-????,9999999,,,4000042,,, +1503,IRN,fa,IRIB R Iran,,Bushehr (bus),28.935911,50.958667,,200,,4459,108,79,,1430-0215,1234567,9988,,1573,,, +1503,TJK,ru,Voice of Mongolia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,500,,4943,82,80,,2148-2200,....56.,33,,47101,,, +1503,TJK,ru,Voice of Russia,,Dushanbe/Yangiyul (dsb),38.478933,68.805778,,500,,4943,82,80,,0000-2300,1234567,33,,47101,,, +1503,G,,R Diamonds (RSL),,Irthlingborough (EN-NHA),52.316667,-0.6,,0.001,,478,276,92,,,,,,1571,,, +1503,AZR,en,AFN Island AM,,Base Area das Lajes (tce),38.711147,-27.152867,,0.1,,2976,253,97,,0000-2400,1234567,,,1563,,, +1503,RUS,ru,R Rossii,,Magistralnyy (IR),56.166667,107.441667,,1,,5986,43,117,,2100-1700,1234567,,,46989,,, +1503,TWN,km,R France Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1200-1300,1234567,9955,,51115,,, +1503,TWN,th,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1500-1600,1234567,9955,,51115,,, +1503,TWN,th,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,2200-2300,1234567,9955,,51115,,, +1503,TWN,vi,R Đp Lời Sng Ni,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1430-1500,1234567,9955,,51115,,, +1503,TWN,vi,R Chn Trời Mới,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1330-1400,1234567,9955,,51115,,, +1503,TWN,vi,R Free Asia,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1400-1430,1234567,9955,,51115,,, +1503,TWN,vi,R Free Asia,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,2300-2400,1234567,9955,,51115,,, +1503,TWN,zh,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1000-1200,1234567,9955,,51115,,, +1503,TWN,zh,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1300-1330,1234567,9955,,51115,,, +1503,TWN,zh,R Taiwan Int.,,Fangliao (PT),22.390833,120.562778,,600,247,9572,58,118,,1600-1700,1234567,9955,,51115,,, +1503,AGL,pt,RNA Em. Prov. de Benguela,,Benguela (bgu),-12.552167,13.426389,,10,,7222,172,119,,0500-2300,1234567,,,2544,,, +1503,J,ja,JOUK NHK1,,Akita (toh-aki),39.78,140.076389,,10,,8860,34,133,,0000-2400,1234567,,,51100,,, +1503,THA,th,Jor. Sor. 2,,Surat Thani/115 Tharathibodi Rd (stn),9.110889,99.235153,,10,,9401,82,135,,,,,,51112,,, +1503,CHN,,Liaoyang RGD Jiaotong Wenyi Pinl,,Liaoyang (LN),41.235556,123.183056,,1,,7985,45,137,,,,,,51094,,, +1503,CHN,,Fuyang JGD,,Fuyang (AH),32.9,115.85,,1,,8351,55,141,,????-1300,1234567,7,,51091,,, +1503,CHN,zh,Xiangtan RGD News Channel,,Xiangtan (HN),27.846617,112.949403,,1,,8633,60,142,,2200-1700,1234567,,,51095,,, +1503,CHN,,Zhejiang RGD News,,Huzhou (ZJ),30.833333,120.216667,,1,,8779,53,143,,,,,,51093,,, +1503,KOR,,HLSK KBS 1 R,,Gimcheon (gsb),36.1325,128.102778,,1,,8694,45,143,,0000-2400,1234567,,,51104,,, +1503,CHN,,Zhejiang RGD News,,Xinchang (ZJ),29.483333,120.9,,1,,8940,53,144,,,,,,36200710,,, +1503,CHN,,Zhejiang RGD Xinwen,,Zhoushan (ZJ),30.05,122.016667,,1,,8949,52,144,,,,,,36200709,,, +1503,J,,NHK R 1,,Aso (kyu-kum),32.966667,131.05,,1,,9135,44,144,,0000-2400,1234567,0,,51101,,, +1503,INS,id,R Balada Kamajaya,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,35400145,,, +1503,J,ja,NHK R 1,,Okuchi (kyu-kag),32.054167,130.595833,,0.1,,9200,45,154,,0000-2400,1234567,,,51102,,, +1503,J,,NHK R 1,,Yamashiro (shi-tok),33.951578,133.758975,,0.05,,9166,42,157,,,,,,51103,,, +1503,FSM,,V6AJ FSMBS Voice of Kosrae,,Tofol (ksa),5.326564,163.012917,,1,,13255,27,158,,0000-1400,1234567,,,51105,,, +1503,FSM,,V6AJ FSMBS Voice of Kosrae,,Tofol (ksa),5.326564,163.012917,,1,,13255,27,158,,2000-2400,1234567,,,51105,,, +1503,AUS,en,2BS Gold,,Bathurst/Eglinton (NSW),-33.371744,149.537717,,5,,16413,69,161,,0000-2400,1234567,,,51089,,, +1503,AUS,xx,3KND Kool 'n' Deadly,,Melbourne/Lower Plenty (VIC),-37.744556,145.110667,,5,,16456,80,161,,,,,,51090,,, +1503,NZL,,R Sport,,Wellington/Horokiwi (WGN),-41.210556,174.845556,,5,,18520,40,168,,0000-2400,1234567,,,51107,,, +1503,NZL,,R Sport,,Christchurch/Ouruhia (CAN),-43.445967,172.671261,,2.5,,18612,52,171,,0000-2400,1234567,,,51106,,, +1510,USA,en,Brother Stair,,Boston (Waverley) (MA),42.386111,-71.200278,,50,,5671,292,97,,0500-0600,1234567,6,,43450,,, +1510,USA,en,WUFC,,Boston (Waverley) (MA),42.386111,-71.200278,,50,,5671,292,97,,0600-0500,1234567,6,,43450,,, +1510,USA,es,WRRD,,Waukesha (WI),43.017222,-88.195278,,23,,6654,303,110,,1200-2300,1234567,9995,,40771,,, +1510,USA,,WLAC,,Nashville (TN),36.271944,-86.757778,,50,,7108,296,111,,,,5,,42116,,, +1510,USA,,WWSM,,Annville-Cleona (PA),40.295556,-76.462778,,5,,6155,293,112,,,,,,43433,,, +1510,USA,,WFAI,,Salem (NJ),39.582778,-75.460833,,2.5,,6145,292,114,,,,,,41353,,, +1510,USA,en,WWBC,,Cocoa (FL),28.353333,-80.779167,,50,,7377,286,114,,1200-2400,1234567,,,43355,,, +1510,USA,,WJKN,,Jackson (MI),42.186111,-84.3775,,5,,6496,300,115,,,,,,41890,,, +1510,USA,,WPUT,,Brewster (NY),41.409444,-73.624722,,1,,5894,292,116,,,,,,42752,,, +1510,USA,en,KCTE,,Independence (MO),39.070556,-94.449444,,10,,7333,303,120,,1400-0200,1234567,839,,38216,,, +1510,USA,,,,Littleton (CO),39.868889,-104.926944,,25,,7835,311,121,,,,1,,38223,,, +1510,USA,en,KGA,,Spokane (WA),47.502222,-117.385,,15,,7722,323,122,,,,987,,38452,,, +1510,USA,,WLGN,,Logan (OH),39.528611,-82.385,,1,,6581,296,123,,,,,,42163,,, +1510,USA,,WRNJ,,Hackettstown (NJ),40.816667,-74.826389,,0.23,,6013,293,123,,,,995,,42889,,, +1510,USA,,KMRF,,Marshfield (MO),37.319167,-92.961944,,5,,7393,301,124,,,,,,38929,,, +1510,USA,,WEAL,,Greensboro (NC),36.061667,-79.793056,,0.82,,6691,292,125,,,,,,41236,,, +1510,USA,,WLKR,,Norwalk (OH),41.279167,-82.656389,,0.5,,6462,298,125,,,,,,42182,,, +1510,USA,,WWHN,,Joliet (IL),41.513889,-88.052778,,1,,6765,301,125,,,,,,43382,,, +1510,USA,en,WQUL,,Woodruff (SC),34.756111,-82.055,,1,,6938,292,126,,1200-2400,1234567,,,20012513,,, +1510,USA,,KIFG,,Iowa Falls (IA),42.513611,-93.215833,,1,,6979,305,127,,,,,,38588,,, +1510,USA,,WLRB,,Macomb (IL),40.497222,-90.675,,1,,6999,302,127,,,,,,42223,,, +1510,USA,,KLLB,,West Jordan (UT),40.551667,-111.971389,,10,,8125,316,128,,,,,,38826,,, +1510,USA,,WQQW,,Highland (IL),38.748889,-89.569444,,1,,7076,300,128,,,,,,20016084,,, +1510,PTR,,WBSG,,Lajas (PR),18.036389,-67.082778,,1,,7314,269,130,,,,,,43057,,, +1510,USA,,WJOT,,Wabash (IN),40.786389,-85.821944,,0.25,,6691,299,130,,,,,,41915,,, +1510,USA,es,KBED,,Nederland (TX),30.061111,-93.98,,5,,8070,297,131,,1300-0100,1234567,,,39192,,, +1510,USA,,KIRV,,Fresno (CA),36.711667,-119.833056,,10,,8850,319,133,,,,9944,,38637,,, +1510,USA,,KTTT,,Columbus (NE),41.453889,-97.405556,,0.5,,7298,307,133,,,,,,39547,,, +1510,CLM,es,HJUH,,Santa Marta (mag),11.25,-74.2,,5,,8383,270,134,,,,,,35901990,,, +1510,USA,,KNNS,,Larned (KS),38.165,-99.101389,,1,,7671,306,134,,,,,,39004,,, +1510,USA,en,KOAZ,,Alamo Community (NM),34.979444,-106.736944,,5,,8367,309,134,,,,,,37909,,, +1510,B,pt,ZYH493 RDD-R.Difusora do Descobrimento,,Porto Seguro (BA),-16.482172,-39.073689,,5,,8796,224,136,,,,,,36902506,,, +1510,CLM,es,HJD24 LV de La Unin,,La Unin (ant),6.183333,-74.7,,5,,8859,267,136,,,,934,,52536,,, +1510,USA,,KAGY,,Port Sulphur (LA),29.484167,-89.704167,,1,,7855,293,136,,,,,,37925,,, +1510,B,pt,ZYJ797 Rdio Educadora,,Tai (SC),-27.138333,-49.984444,,13,,10374,228,137,,,,98,,36902540,,, +1510,USA,,KMND,,Midland (TX),31.963611,-102.081389,,2.4,,8381,304,137,,,,,,38918,,, +1510,DOM,,HIBL R Pueblo,,Santo Domingo (sdo),18.516667,-69.866667,,0.25,,7464,271,138,,1000-0300,1234567,,,52254,,, +1510,PNR,es,HOA95 Hosanna R,,Rana de Oro (pnm),9.086322,-79.428622,,3,,8928,272,139,,0000-2400,1234567,996,,37671,,, +1510,USA,zh,KSFN,,Piedmont (CA),37.817222,-122.286111,,2.4,,8851,321,139,,,,4,,38957,,, +1510,B,pt,ZYH608 Rdio Planalto da Ibiapaba,,So Benedito (CE),-4.035283,-40.8651,,0.25,,7661,232,140,,,,,,36902537,,, +1510,B,pt,ZYH630 Rdio Trapi,,Pedra Branca (CE),-5.492756,-39.714556,,0.25,,7742,230,140,,,,,,36902527,,, +1510,B,pt,ZYJ602 Rdio Centenrio,,Carabas (RN),-5.8,-37.55,,0.25,,7661,228,140,,,,,,36902532,,, +1510,USA,en,KWJB,,Canton (TX),32.541667,-95.8575,,0.5,,7969,300,140,,,,,,20016004,,, +1510,USA,,KSTV,,Stephenville (TX),32.202222,-98.248333,,0.5,,8139,301,141,,,,,,39426,,, +1510,B,pt,ZYI544 Rdio Oriente de Redenco,,Redeno (PA),-8.053217,-50.028414,,1,,8558,238,142,,,,,,36902535,,, +1510,USA,,KAGC,,Bryan (TX),30.651667,-96.385,,0.5,,8164,299,142,,,,,,37919,,, +1510,B,pt,Rdio Nordeste AM,,Picos (PI),-7.074094,-41.461494,,0.25,,7988,231,143,,,,,,36902538,,, +1510,B,pt,ZYI894 Rdio Difusora Floriano,,Floriano (PI),-6.766928,-43.008194,,0.25,,8041,232,143,,,,,,36902534,,, +1510,CLM,,HJHX,,Bucaramanga (sat),7.066667,-73.083333,,1,,8671,266,143,,,,,,37483,,, +1510,CLM,es,HJA22,,San Luis de Gaceno (boy),4.816667,-73.166667,,1,,8874,265,143,,,,,,35901962,,, +1510,EQA,,HCUC3,,Cariamanga (loj),-4.3,-79.55,,3,,10110,264,143,,,,,,37160,,, +1510,EQA,es,HCRC1 R Monumental,,Quito (pic),-0.166667,-78.466667,,2,,9673,266,143,,,,,,37072,,, +1510,CLM,,HJLE,,Armero (tol),4.783333,-74.9,,1,,8995,266,144,,,,,,37544,,, +1510,CLM,es,HJZA R Cristal,,Armenia (qui),4.5,-75.65,,1,,9071,266,144,,,,890,,37659,,, +1510,GTM,,TGDX R Centroamericana Nueva RCA,,Ciudad de Guatemala (gut),14.583333,-90.533333,,1,,9197,284,144,,1130-0500,1234567,,,40490,,, +1510,PRU,es,R Virgen de la Alta Gracia,,Huamachuco (lal),-7.8,-78.066667,,2.5,,10317,261,144,,,,,,37000046,,, +1510,USA,,KCTX,,Childress (TX),34.428056,-100.229722,,0.25,,8059,304,144,,,,,,38219,,, +1510,USA,en,KSPA,,Ontario (CA),34.094722,-117.612778,,1,,8998,316,144,,,,9968,,39402,,, +1510,EQA,,HCVL7,,Lago Agrio (suc),0.166667,-76.9,,1,,9537,265,145,,,,,,37172,,, +1510,USA,,KMSD,,Milbank (SD),45.194444,-96.639167,,0.014,,6946,309,145,,,,997,,38934,,, +1510,USA,,KROB,,Robstown (TX),27.7775,-97.631944,,0.5,,8490,298,145,,,,,,39277,,, +1510,B,pt,Rdio Athenas Paulista,,Jaboticabal (SP),-21.275272,-48.353428,,1,,9728,230,146,,,,,,36902522,,, +1510,EQA,,HCRY6,,Runacunapac (bol),-1.266667,-79,,1,,9806,266,146,,,,,,37123,,, +1510,EQA,,R Net,,Ambato (tun),-1.25,-78.616667,,1,,9778,265,146,,,,805,,51871,,, +1510,EQA,,HCHD2 INOCAR,,Guayaquil (gua),-2.2,-79.866667,,1,,9947,266,147,,0000-2400,1234567,993,,37148,,, +1510,EQA,,HCMC5 Voz de la Ju,, (can),-2.533333,-78.916667,,1,,9911,265,147,,,,,,37019,,, +1510,B,pt,ZYI896 Rdio Progresso AM,,Corrente (PI),-10.436111,-45.152222,,0.25,,8512,232,148,,,,,,36902526,,, +1510,PRU,,OBX7P R El Sur,,Wanchaq (cus),-13.466667,-72.016667,,1,,10415,253,148,,,,,,40412,,, +1510,MEX,es,XEQI-AM,,Monterrey (nvl),25.750556,-100.300278,,0.25,,8830,299,149,,,,,,44613,,, +1510,PRU,,OAX5F R LV Huamanga,,Nazca (ica),-14.05,-75.666667,,1,,10706,255,149,,,,,,40318,,, +1510,PRU,es,OCX4J R Tarma,,Tarma/Cerro Penitencia (jun),-11.408856,-75.691656,,1,,10475,257,149,,,,,,37000065,,, +1510,PRU,es,OCX6Q R Alegra,,Arequipa (are),-16.4,-71.533333,,1,,10644,251,149,,,,16,,37000108,,, +1510,PRU,es,R Las Vegas,,Mollendo (are),-17.016667,-72.016667,,1,,10730,251,149,,,,995,,37000032,,, +1510,B,,ZYL330,,Araua (MG),-16.85,-42.066667,,0.25,,8978,227,150,,,,,,46756,,, +1510,CLM,es,HKZ93 R Versalles,,Versalles (val),3.466667,-76.533333,,0.25,,9222,267,150,,,,,,2072,,, +1510,CLM,es,HKZ94,,Buenaventura (val),3.9,-77.066667,,0.25,,9220,267,150,,,,,,35902002,,, +1510,USA,,WPGR,,Monroeville (PA),40.470278,-79.851111,,0.001,,6353,295,150,,,,,,42680,,, +1510,ARG,es,R Belgrano,,Suardi (sf),-30.533333,-61.966667,,1,,11329,235,151,,,,,,33000038,,, +1510,B,pt,ZYH770 Rdio Goiatuba,,Goiatuba (GO),-18.016667,-49.366667,,0.25,,9469,232,151,,,,,,36902529,,, +1510,MEX,es,XEHUI-AM Hidalgo R,,Huichapan (hid),20.355489,-99.647561,,0.25,,9272,295,151,,,,,,44146,,, +1510,ARG,,LV del Oeste,,Libertad (ba),-34.7,-58.683333,,1,,11530,230,152,,0000-2400,1234567,,,51890,,, +1510,ARG,,R Alabanza,,Guernica (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51891,,, +1510,ARG,,R Sentimento Litoral,,Banfield (ba),-34.75,-58.4,,1,,11519,230,152,,,,,,51892,,, +1510,B,pt,ZYJ492 Rdio Terespolis,,Terespolis/Praa do Galo (RJ),-22.429183,-42.972289,,0.25,,9571,225,152,,,,,,36902536,,, +1510,USA,en,WPEP788,,Lakeland/4175 Medulla Road (FL),27.994292,-82.026194,,0.01,,7488,287,152,,,,,,20010709,,, +1510,USA,en,WPUR527,,Bartow (FL),27.9,-81.85,,0.01,,7484,287,152,,,,,,20010707,,, +1510,USA,en,WQAM844,,Lakeland/4175 Medulla Road (FL),27.993514,-82.026389,,0.01,,7488,287,152,,,,,,20010708,,, +1510,B,pt,ZYJ216 Rdio Educadora,,Wenceslau Braz (PR),-23.861111,-49.807222,,0.25,,10052,229,153,,,,,,36902520,,, +1510,B,pt,ZYK654 Rdio Difusora Cacique,,Santos/Rod. Piaaguera (SP),-23.909375,-46.292306,,0.25,,9878,227,153,,,,,,36902541,,, +1510,B,pt,ZYK665 Rdio Clube de So Manuel,,So Manuel/Chcara Miranda (SP),-22.736069,-48.588667,,0.25,,9881,229,153,,,,,,36902523,,, +1510,B,pt,ZYK770 Rdio Vale do Tiet,,Salto/Rua Roque Lazzazera (SP),-23.212233,-47.270333,,0.25,,9859,228,153,,,,,,36902539,,, +1510,CHL,,CA151 R Luis Alvarez Sierra,,Illapel (CO),-31.616667,-71.166667,,1,,11957,241,153,,1100-0400,1234567,,,51958,,, +1510,USA,,KFNN,,Mesa (AZ),33.692778,-112.0025,,0.1,,8759,312,153,,,,1566,,38413,,, +1510,B,,ZYJ328,,Pitanga (PR),-24.75,-51.766667,,0.25,,10239,231,154,,,,,,46050,,, +1510,B,pt,ZYJ326 Rdio Unio de Cu Azul,,Cu Azul (PR),-25.133333,-53.841667,,0.25,,10386,232,154,,,,,,36902519,,, +1510,CHL,es,CC151 R Poder Pentecostal,,Rancagua (LI),-34.2,-70.716667,,1,,12153,239,154,,1100-0400,1234567,13,,35822,,, +1510,B,,ZYK356,,Tapera (RS),-28.616667,-52.866667,,0.25,,10662,229,155,,,,,,46383,,, +1510,B,pt,ZYJ795 RCO-Rdio Centro Oeste AM,,Pinhalzinho (SC),-26.863333,-52.965833,,0.25,,10502,230,155,,,,,,36902531,,, +1510,CHL,,CD151 R Teniente Merino,,Lebu (BI),-37.616667,-73.666667,,1,,12615,238,156,,1130-0300,1234567,,,35885,,, +1510,URG,,CW151 R Ibirapita,,San Gregorio de Polanco (ta),-32.6,-55.816667,,0.25,,11187,229,157,,1000-0200,1234567,,,36756,,, +1510,URG,,CW57 R San Carlos,,San Carlos (ma),-34.766667,-54.883333,,0.25,,11340,227,157,,0830-0300,1234567,999,,36779,,, +1510,ARG,,LV21 R Champaqui,,Villa Dolores (cb),-31.933333,-65.2,,0.25,,11637,236,158,,1000-0100,1234567,,,40245,,, +1510,ARG,es,RBN-R de las Buenas Nuevas,,Banfield Oeste (ba),-34.75,-58.4,,0.25,,11519,230,158,,,,,,33000014,,, +1510,URG,,CV151 R Rincon,,Fray Bentos (rn),-33.116667,-58.316667,,0.25,,11366,231,158,,1000-0300,1234567,,,36732,,, +1512,GRC,el,ERA Hanion,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,0500-1100,12345..,929,,1580,,, +1512,GRC,el,ERA Hanion,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,1330-1800,12345..,929,,1580,,, +1512,GRC,el,ERT Kosmos 93.6/ERA Net/ERA 2/ERA Sport,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,0500-0459,.....67,929,,1580,,, +1512,GRC,el,ERT Kosmos 93.6/ERA Net/ERA 2/ERA Sport,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,1100-1330,12345..,929,,1580,,, +1512,GRC,el,ERT Kosmos 93.6/ERA Net/ERA 2/ERA Sport,,Khania (krt-kha),35.491242,24.058922,,50,,2315,136,63,,1800-0500,12345..,929,,1580,,, +1512,I,it,Ondamedia Broadcast,,San Pietro in Casale (bo),44.7,11.4,,0.4,,902,154,70,,0600-0800,1234567,987,,4000015,,, +1512,I,it,Ondamedia Broadcast,,San Pietro in Casale (bo),44.7,11.4,,0.4,,902,154,70,,1300-2230,1234567,987,,4000015,,, +1512,I,it,Voice of Russia,,San Pietro in Casale (bo),44.7,11.4,,0.4,,902,154,70,,0800-1300,1234567,987,,4000015,,, +1512,ARS,ar,BSKSA Al-Quran al-Karim,,Jeddah/Sumaymah (mkh),21.245906,39.157056,,1000,180,4434,128,71,,0000-0100,1234567,991,,1578,,, +1512,ARS,ar,BSKSA Al-Quran al-Karim,,Jeddah/Sumaymah (mkh),21.245906,39.157056,,1000,180,4434,128,71,,1300-2400,1234567,991,,1578,,, +1512,ARS,ar,BSKSA Idha'atu Nedaa al-Islam,,Jeddah/Sumaymah (mkh),21.245906,39.157056,,1000,180,4434,128,71,,0100-0300,1234567,991,,1578,,, +1512,IRN,fa,IRIB R Ardabil,,Ardabil (ard),38.361167,48.255694,,50,,3553,99,76,,0000-2400,1234567,997,,1820,,, +1512,PAK,,PBC R Pakistan,,Gilgit (ggb),35.918725,74.379278,,10,,5503,81,102,,1004-1700,1234567,,,51142,,, +1512,AFG,,R Herat,,Herat (her),34.333333,62.2,,0.1,,4792,92,115,,0300-0500,1234567,,,46817,,, +1512,AFG,,R Herat,,Herat (her),34.333333,62.2,,0.1,,4792,92,115,,1130-1330,1234567,,,46817,,, +1512,IND,,AIR Northeast,,Kokrajhar (AS),26.37295,90.303431,,20,,7322,77,117,,1230-1600,1234567,,,51126,,, +1512,CHN,,Linxia RGD,,Linxia/Luojiabao (GS),35.572222,103.170833,,10,,7384,62,121,,,,,,51124,,, +1512,CHN,zh,Chifeng RGD,,Linxi/NMTS726 (NM),43.6,118.05,,1,,7523,47,132,,,,,,36200259,,, +1512,THA,th,Kor. Wor. Sor. 4,,Phayao (pyo),19.194167,99.880556,,10,,8566,75,132,,,,,,51145,,, +1512,CHN,zh,Chifeng RGD,,Lindong/NMTS739 (NM),43.977778,119.383333,,1,,7555,46,133,,2130-1430,1234567,,,51122,,, +1512,CHN,zh,Chifeng RGD,,Xinhui/NMTS716 (NM),42.284922,119.926686,,1,,7732,46,134,,,,,,36200261,,, +1512,CHN,zh,Chifeng RGD,,Ningcheng/NMTS725 (NM),41.584089,119.321553,,1,,7764,47,135,,,,,,36200260,,, +1512,TWN,,Ching-Cha Kuangpo Tientai,,Chupei (HC),24.813333,121.025556,,10,,9376,56,135,,0000-2400,1234567,,,51146,,, +1512,THA,th,Thor. Or. 011,,Hat Yai/Airport (sgk),6.924089,100.410344,,10,,9672,83,136,,????-1300,1234567,,,51144,,, +1512,J,ja,JOZB NHK2,,Matsuyama (shi-ehi),33.823333,132.735556,,5,,9132,43,137,,2030-1500,1.....7,,,51134,,, +1512,J,ja,JOZB NHK2,,Matsuyama (shi-ehi),33.823333,132.735556,,5,,9132,43,137,,2030-1635,.2345..,,,51134,,, +1512,J,ja,JOZB NHK2,,Matsuyama (shi-ehi),33.823333,132.735556,,5,,9132,43,137,,2030-1640,.....6.,,,51134,,, +1512,CHN,,Jinan RGD Traffic,,Jinan/Daqiao (SD),36.791389,117.015556,,1,,8069,52,138,,2000-1630,1234567,,,51123,,, +1512,INS,id,RRI Pro-1,,Bukittinggi (SB-buk),-0.283333,100.333333,,10,,10300,87,138,,1000-1700,1234567,,,51128,,, +1512,INS,id,RRI Pro-1,,Bukittinggi (SB-buk),-0.283333,100.333333,,10,,10300,87,138,,2200-0100,1234567,,,51128,,, +1512,PHL,,DZAT-AM,,Lucena City (qzn),13.933333,121.6,,10,,10413,62,138,,,,,,33300019,,, +1512,PHL,tl,DYAB-AM Radyo Patrol,,Cebu City/Pardo (ceb),10.283333,123.85,,10,,10887,62,140,,2000-1510,1234567,,,51143,,, +1512,KOR,,AFN Korea-Thunder AM,,Pilsung/Kotar Range (gan),37.1,128.9,,1,,8640,44,143,,,,,,52092,,, +1512,J,,JOSC NHK2,,Matsumoto (chu-nag),36.216667,137.95,,1,,9127,38,144,,2030-1500,1.....7,,,51133,,, +1512,J,,JOSC NHK2,,Matsumoto (chu-nag),36.216667,137.95,,1,,9127,38,144,,2030-1635,.2345..,,,51133,,, +1512,J,,JOSC NHK2,,Matsumoto (chu-nag),36.216667,137.95,,1,,9127,38,144,,2030-1640,.....6.,,,51133,,, +1512,J,ja,JOCD NHK2,,Koriyama (toh-fuk),37.360556,140.355833,,1,,9112,35,144,,2030-1500,1.....7,,,51131,,, +1512,J,ja,JOCD NHK2,,Koriyama (toh-fuk),37.360556,140.355833,,1,,9112,35,144,,2030-1635,.2345..,,,51131,,, +1512,J,ja,JOCD NHK2,,Koriyama (toh-fuk),37.360556,140.355833,,1,,9112,35,144,,2030-1640,.....6.,,,51131,,, +1512,J,,JOAZ NHK2,,Sasebo (kyu-nag),33.133333,129.7,,0.5,,9054,45,147,,2030-1500,1.....7,,,51135,,, +1512,J,,JOAZ NHK2,,Sasebo (kyu-nag),33.133333,129.7,,0.5,,9054,45,147,,2030-1635,.2345..,,,51135,,, +1512,J,,JOAZ NHK2,,Sasebo (kyu-nag),33.133333,129.7,,0.5,,9054,45,147,,2030-1640,.....6.,,,51135,,, +1512,KOR,,AFN Korea-Thunder AM,,Jinhae/Naval Station (gsn),35.116667,128.65,,0.25,,8816,45,149,,0000-2400,1234567,,,51138,,, +1512,KOR,,AFN Korea-Thunder AM,,Pohang/Camp Libby (gsb),36.05,129.383333,,0.25,,8762,44,149,,0000-2400,1234567,,,51139,,, +1512,INS,id,PM3DTD R.Suara Mitra Dirgantara,,Balikpapan (KI-bal),-1.283333,116.833333,,1,,11499,74,152,,0000-1200,1234567,,,51127,,, +1512,AUS,en,6BAY Spirit R,,Geraldton/Morawa (WA),-29.299444,115.911111,,5,,13833,95,153,,0000-2400,1234567,3,,51118,,, +1512,J,,NHK R 2,,Komagane (chu-nag),35.716667,137.933333,,0.1,,9176,38,154,,2030-1500,1.....7,,,51130,,, +1512,J,,NHK R 2,,Komagane (chu-nag),35.716667,137.933333,,0.1,,9176,38,154,,2030-1635,.2345..,,,51130,,, +1512,J,,NHK R 2,,Komagane (chu-nag),35.716667,137.933333,,0.1,,9176,38,154,,2030-1640,.....6.,,,51130,,, +1512,J,,NHK R 2,,Tsuruga (chu-fuk),35.65,136.05,,0.1,,9102,39,154,,2030-1500,1.....7,,,51136,,, +1512,J,,NHK R 2,,Tsuruga (chu-fuk),35.65,136.05,,0.1,,9102,39,154,,2030-1635,.2345..,,,51136,,, +1512,J,,NHK R 2,,Tsuruga (chu-fuk),35.65,136.05,,0.1,,9102,39,154,,2030-1640,.....6.,,,51136,,, +1512,J,ja,NHK R 2,,Isimi,34.5,134,,0.1,,9124,41,154,,2030-1500,1.....7,,,51129,,, +1512,J,ja,NHK R 2,,Isimi,34.5,134,,0.1,,9124,41,154,,2030-1635,.2345..,,,51129,,, +1512,J,ja,NHK R 2,,Isimi,34.5,134,,0.1,,9124,41,154,,2030-1640,.....6.,,,51129,,, +1512,J,,NHK R 2,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,2030-1500,1.....7,,,51132,,, +1512,J,,NHK R 2,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,2030-1635,.2345..,,,51132,,, +1512,J,,NHK R 2,,Kushima (kyu-miy),31.466667,131.233333,,0.1,,9287,45,155,,2030-1640,.....6.,,,51132,,, +1512,KOR,,AFN Korea-Thunder AM,,Sandong (jej),33.416667,126.5,,0.05,,8870,47,156,,0000-2400,1234567,,,51137,,, +1512,AUS,en,2RN ABC National,,Newcastle/Beresfield (NSW),-32.799878,151.662542,,10,,16501,66,158,,0000-2400,1234567,1,,51119,,, +1512,NZL,,1ZU Classic Hits,,Taumarunui (MWT),-38.883333,175.266667,,1,,18311,35,174,,,,,,51140,,, +1512,NZL,,Coast Access R,,Waikanae (WGN),-40.883333,175.066667,,0.3,,18498,39,180,,,,,,51141,,, +1514,INS,id,R Primadona Ikhwan,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,51147,,, +1517,PRU,,OCX2Q R Inca,,Los Baos del Inca (caj),-7.166667,-78.466667,,1,,10288,262,148,,0800-0300,1234567,8,,52278,,, +1518,AFG,,Balkh R,,Mazar-e Sharif (bal),36.666667,67.133333,,2,,4958,85,104,,0230-0430,1234567,,,51149,,, +1518,AFG,,Balkh R,,Mazar-e Sharif (bal),36.666667,67.133333,,2,,4958,85,104,,1230-1530,1234567,,,51149,,, +1518,AFG,,R Nimroz,,Zaranj (nim),30.966667,61.883333,,2,,5027,95,104,,0330-0530,1234567,,,46818,,, +1518,AFG,,R Nimroz,,Zaranj (nim),30.966667,61.883333,,2,,5027,95,104,,1230-1500,1234.67,,,46818,,, +1518,AFG,,R Nimroz,,Zaranj (nim),30.966667,61.883333,,2,,5027,95,104,,1230-1930,....5..,,,46818,,, +1519,INS,id,R Arisha,,Tangerang/Karang Timur (BT-tan),-6.225,106.716667,,1,,11257,86,151,,,,,,35400146,,, +1520,USA,en,WWKB,,Buffalo (NY),42.769444,-78.842778,,50,,6119,297,101,,,,106,,43395,,, +1520,USA,en,WIZZ,,Greenfield (MA),42.603333,-72.605833,,10,,5744,293,104,,,,3,,41833,,, +1520,USA,es,WTRI,,Brunswick (MD),39.311389,-77.607222,,17,,6301,293,108,,,,,,43204,,, +1520,PTR,es,WVOZ,,San Juan (PR),18.353056,-66.2025,,25,,7227,268,115,,0000-2400,1234567,994,,32232,,, +1520,USA,en,KOLM,,Rochester (DC) (MN),43.986944,-92.418056,,10,,6816,306,115,,,,,,20012605,,, +1520,USA,,WARR,,Warrenton (NC),36.405,-78.135833,,5,,6558,291,116,,,,,,40743,,, +1520,USA,,WTHE,,Mineola (NY),40.745833,-73.624722,,1,,5943,292,116,,,,,,43133,,, +1520,USA,,WLGC,,Greenup (KY),38.595556,-82.855556,,5,,6683,296,117,,,,,,42162,,, +1520,USA,,WCHE,,West Chester (PA),39.966111,-75.631944,,1,,6127,292,118,,,,,,40991,,, +1520,USA,,WDSL,,Mocksville (NC),35.880556,-80.540556,,5,,6752,292,118,,,,,,41208,,, +1520,USA,en,KOKC,,Oklahoma City (OK),35.333333,-97.504444,,50,,7825,303,118,,,,1,,39073,,, +1520,USA,,WHOW,,Clinton (IL),40.095278,-88.964167,,5,,6931,301,119,,,,,,41681,,, +1520,USA,en,KKXA,i,Snohomish (WA),47.875556,-122.077778,,50,,7872,326,119,,,,16,,20012526,,, +1520,USA,,WINW,,Canton (OH),40.844722,-81.350556,,1,,6416,297,121,,,,,,20016005,,, +1520,USA,,WJMP,,Kent (OH),41.160278,-81.304444,,1,,6389,297,121,,,,,,41899,,, +1520,USA,,WKVI,,Knox (IN),41.322222,-86.604722,,1.8,,6695,300,121,,,,,,42086,,, +1520,USA,,WMLM,,St. Louis (MI),43.352222,-84.604167,,1,,6420,301,121,,,,,,42345,,, +1520,USA,en,KMSR,,Mayville (ND),47.499167,-97.350833,,1.3,,6795,311,124,,1400-0200,1234567,994,,38881,,, +1520,USA,,WDCY,,Douglasville (GA),33.763333,-84.741111,,2.5,,7187,293,125,,,,,,41136,,, +1520,USA,,KOLM,,Rochester (N) (MN),43.9875,-92.427778,,0.8,,6816,306,126,,,,996,,39082,,, +1520,USA,,WKMG,,Newberry (SC),34.253333,-81.595556,,1,,6949,291,126,,,,,,42043,,, +1520,USA,,WNWT,,Toledo (OH),41.508889,-83.551944,,0.4,,6499,299,126,,,,,,41183,,, +1520,USA,,KRHW,,Sikeston (MO),36.823611,-89.595833,,1.6,,7235,299,127,,,,,,39246,,, +1520,USA,es,KGDD,,Oregon City (OR),45.412222,-122.576944,,15,,8128,325,127,,,,2,,38462,,, +1520,USA,,KSIB,,Creston (IA),41.037778,-94.393889,,1,,7166,305,129,,,,,,39359,,, +1520,USA,,WVOH,,Spindale (NC),35.35,-81.938333,,0.5,,6883,292,129,,,,,,41530,,, +1520,USA,,WTLM,,Opelika (AL),32.657222,-85.424167,,1,,7321,293,130,,,,,,43166,,, +1520,DOM,,HIWJ R Saman R 15-20,,Santa Brbara de Saman (smn),19.197222,-69.3125,,1,,7368,271,131,,0930-0400,1234567,,,37317,,, +1520,USA,,KZOY,,Sioux Falls (SD),43.557778,-96.796111,,0.5,,7090,308,131,,,,,,39407,,, +1520,USA,en,WEXY,,Wilton Manors (FL),26.173889,-80.1575,,0.8,,7517,284,133,,,,,,41345,,, +1520,CUB,es,R Baragu,,Palma Soriano (sc),20.166667,-75.966667,,1,,7739,277,134,,,,9957,,36560,,, +1520,USA,,KYND,,Cypress (TX),30.010278,-95.694444,,3,,8178,298,134,,,,,,39860,,, +1520,USA,en,KUNX,,Port Hueneme (CA),34.167222,-119.133889,,10,,9062,317,134,,,,100,,39674,,, +1520,B,pt,ZYI801 Rdio Surubim,,Surubim (PE),-7.830278,-35.755278,,1,,7774,225,135,,,,,,36902570,,, +1520,USA,,WXYB,,Indian Rocks Beach (FL),27.845833,-82.7725,,0.6,,7549,287,135,,,,,,43500,,, +1520,B,pt,ZYH530 Rdio Povo,,Poes/Rua Dulce Pazzi 6 (BA),-14.511872,-40.355522,,5,,8663,226,136,,,,,,36902563,,, +1520,USA,,KMPG,,Hollister (CA),36.835,-121.418611,,5,,8908,320,136,,,,9936,,38926,,, +1520,USA,,WNWS,,Brownsville (TN),35.608333,-89.244444,,0.25,,7314,297,136,,,,,,42538,,, +1520,USA,en,WBZW,,Apopka (FL),28.652222,-81.494444,,0.35,,7399,287,136,,,,,,41639,,, +1520,CLM,es,HJLI R Libertad,,Bogot D. C. (bdc),4.716667,-74.116667,,5,,8947,265,137,,,,998,,37547,,, +1520,USA,,KQQB,,Stockdale (D) (TX),29.193056,-97.866667,,2.5,,8380,299,137,,,,,,20016060,,, +1520,B,pt,ZYJ610 Rdio Salinas,,Macau (RN),-5.116944,-36.625278,,0.25,,7547,227,138,,,,,,36902545,,, +1520,USA,en,KFXZ,,Lafayette (LA),30.280833,-92.014722,,0.5,,7931,296,139,,,,,,38447,,, +1520,B,pt,ZYH635 Rdio Regional de Ip,,Ip (CE),-4.336678,-40.726606,,0.25,,7682,231,140,,,,997,,36902547,,, +1520,B,pt,ZYH653 Rdio Cachoeira,,Solonpole (CE),-5.742444,-38.999589,,0.25,,7729,229,140,,,,,,36902569,,, +1520,B,pt,ZYH928 Mirante AM,,Chapadinha (MA),-3.734189,-43.340756,,0.25,,7766,234,141,,,,,,36902553,,, +1520,CLM,es,HJLQ R Minuto,,Barranquilla (atl),10.9,-74.766667,,1,,8452,270,142,,,,145,,26531,,, +1520,CLM,es,HJMZ,,Sincelejo (suc),9.3,-75.366667,,1,,8632,269,142,,,,,,37569,,, +1520,EQA,,HCJJ2,,Quevedo (gua),-1.05,-79.45,,3,,9817,266,142,,,,,,36985,,, +1520,MEX,es,XEART-AM La Seal 152,,Zacatepec (mor),18.667594,-99.194636,,2,,9394,294,142,,,,,,43733,,, +1520,B,pt,ZYH797 Rdio Cristal,,Cristalndia (TO),-10.593889,-49.191389,,1,,8751,236,143,,,,,,36902548,,, +1520,GTM,,R Taysal,,Santa Elena de la Cruz (pet),17.05,-89.166667,,1,,8891,285,143,,,,,,52138,,, +1520,CLM,es,HJAM R Altamiza,,Dolores (tol),3.75,-74.883333,,1,,9084,265,144,,,,,,37329,,, +1520,CLM,es,HJMA,,Jerico (ant),5.816667,-75.866667,,1,,8970,267,144,,,,,,37560,,, +1520,CLM,es,HJRL,,Santa Rosa de Cabal (ris),4.866667,-75.616667,,1,,9036,267,144,,,,,,35902035,,, +1520,CTR,,TIECC R Cartago,,Cartago (ctg),9.9,-83.666667,,1,,9146,276,144,,1100-0400,1234567,,,40594,,, +1520,HND,,HRBN,,Marcala (lap),14.066667,-88,,1,,9074,282,144,,,,,,37741,,, +1520,HND,,HRFU,,San Pedro Sula (cor),15.466667,-88.016667,,1,,8953,283,144,,,,,,37752,,, +1520,MEX,es,XEVO-AM La Furia,,San Rafael (vcz),20.190067,-96.868356,,1,,9113,293,144,,,,,,44978,,, +1520,USA,,WLUV,,Loves Park (IL),42.33,-89.082778,,0.0125,,6760,303,144,,,,,,42248,,, +1520,USA,en,WRCI,,Three Rivers (MI),41.928611,-85.6375,,0.008,,6590,300,144,,,,,,42181,,, +1520,B,pt,ZYJ931 Rdio Ilha,,Tobias Barreto (SE),-11.166667,-38.004444,,0.25,,8216,226,145,,,,,,36902560,,, +1520,CLM,,HJLS,,Popayn (cau),2.366667,-76.516667,,1,,9317,266,145,,,,,,37556,,, +1520,GTM,,TGRS R Superior,,Coatepeque (qzt),14.683333,-91.866667,,1,,9276,286,145,,,,,,52139,,, +1520,B,pt,Rdio Torre Forte AM,,Buritama (SP),-21.061006,-50.151717,,1,,9802,231,146,,,,,,36902544,,, +1520,B,pt,ZYK627 Clube AM,,Esprito Santo do Pinhal (SP),-22.199444,-46.779444,,1,,9737,228,146,,,,,,36902555,,, +1520,EQA,,HCTI1,,Ibarra (imb),0.266667,-78.116667,,1,,9611,266,146,,,,,,37138,,, +1520,MEX,es,XEJCC-AM,,Ciudad Jurez (chi),31.682728,-106.357019,,0.5,,8645,307,146,,,,,,44202,,, +1520,USA,,WQCT,,Bryan (OH),41.478611,-84.580278,,0.005,,6563,299,146,,,,,,42769,,, +1520,EQA,,HCRN2 LV de Naranjal,,Naranjal (gua),-2.666667,-79.5,,1,,9963,265,147,,,,2,,26075,,, +1520,MEX,es,XEYP-AM Bonita,,El Limn (tam),22.833333,-99,,0.5,,9011,296,147,,,,,,45104,,, +1520,B,pt,ZYJ292 Nova Rdio Cultura Palotinense,,Palotina (PR),-23.866667,-53.083333,,1,,10226,232,148,,,,,,36902567,,, +1520,BOL,,CP179 R Petrolera,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,1200-0330,12345..,,,36670,,, +1520,BOL,,CP179 R Petrolera,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,1400-2300,.....67,,,36670,,, +1520,BOL,,R Nueva Esperanza,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,0900-2400,1234567,,,52064,,, +1520,MEX,es,XEVUC-AM La Norteita,,Villa Unin (coa),28.235561,-100.747233,,0.25,,8635,300,148,,,,,,44996,,, +1520,PRU,,OAX1C R Delcar,,Chiclayo (lam),-6.7,-79.816667,,1,,10339,263,148,,,,,,40266,,, +1520,URG,,CX152 R Acuarela,,Melo (cl),-32.35,-54.166667,,2,,11079,228,148,,0900-0300,1234567,,,36796,,, +1520,B,pt,ZYH806 RCB-Rdio Campos Belos,,Campos Belos (GO),-13.028664,-46.767567,,0.25,,8850,232,149,,,,,,36902561,,, +1520,B,pt,ZYJ491 Rdio Continental,,So Joo de Meriti/Praa Elvira 10 (RJ),-22.801889,-43.338222,,0.5,,9625,225,149,,,,,,36902556,,, +1520,B,pt,ZYK614 R Iguatemi,,Mogi das Cruzes (SP),-23.512375,-46.197511,,0.5,,9835,227,149,,,,988,,36902557,,, +1520,BOL,,R Melodia,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,,,,,52063,,, +1520,CLM,es,HKT20,,Montera (cor),8.75,-75.883333,,0.25,,8715,269,149,,,,,,35902059,,, +1520,EQA,,HCRI5,,Guamote (chi),-1.883333,-78.7,,0.5,,9839,265,149,,,,,,37087,,, +1520,PRG,,ZP36,,Ypoa (pgu),-25.5825,-57.135278,,1,,10607,234,149,,,,,,45532,,, +1520,USA,,WSVX,,Shelbyville (IN),39.558056,-85.770278,,0.004,,6784,298,149,,,,,,42093,,, +1520,MEX,es,XEEH-AM R xitos,,San Luis Ro Colorado (son),32.483192,-114.786761,,0.25,,9013,313,150,,,,,,43962,,, +1520,B,,ZYH802,,Santa Helena de Gois (GO),-17.866667,-50.533333,,0.25,,9518,233,151,,,,,,45760,,, +1520,B,pt,ZYL245 Rdio Clube de Itana,,Itana (MG),-20.066667,-44.583333,,0.25,,9419,227,151,,,,,,36902552,,, +1520,EQA,,HCEB4,,Manta (man),-1,-80.766667,,0.35,,9903,267,151,,,,,,36910,,, +1520,MEX,es,XEATL-AM R Mexiquense,,Atlacomulco (mex),19.791894,-99.874403,,0.25,,9336,295,151,,,,,,43738,,, +1520,ARG,,AM Reverendo Aquiles Acosta,,San Justo (ba),-34.666667,-58.55,,1,,11520,230,152,,,,,,51895,,, +1520,ARG,,R Metropolitana,,Ciudadela (ba),-34.633333,-58.533333,,1,,11516,230,152,,,,,,51896,,, +1520,ARG,,R Modelo,,Monte Grande (ba),-34.833333,-58.466667,,1,,11530,230,152,,,,,,51894,,, +1520,B,,ZYI424,,Rosrio Oeste (MT),-14.836111,-56.4275,,0.25,,9568,240,152,,,,,,45839,,, +1520,B,pt,ZYL223 Rdio Cultura,,Cssia (MG),-20.583333,-46.933333,,0.25,,9588,229,152,,,,,,36902550,,, +1520,B,pt,ZYJ218 Rdio Serra do Mar,,Antonina (PR),-25.467778,-48.686389,,0.25,,10148,228,153,,,,,,36902565,,, +1520,B,pt,ZYJ358 Rdifuso Guairac,,Terra Rica (PR),-22.726389,-52.611111,,0.25,,10092,232,153,,,,,,36902543,,, +1520,B,pt,ZYK760 Rdio Manchester,,Votorantim (SP),-23.539167,-47.422222,,0.25,,9899,228,153,,,,,,36902566,,, +1520,B,pt,ZYN605 Rdio Campo Alegre,,Rio Verde de Mato Grosso (MS),-18.909283,-54.855194,,0.25,,9857,236,153,,,,,,36902546,,, +1520,EQA,,HCPB5,,Giron (azu),-3.2,-79.116667,,0.25,,9984,265,153,,,,,,37056,,, +1520,B,,ZYJ287,,Ivaipor (PR),-24.216667,-51.666667,,0.25,,10183,231,154,,,,,,46011,,, +1520,B,,ZYJ758,,Imbituba (SC),-28.216667,-48.666667,,0.25,,10411,226,154,,,,,,46170,,, +1520,B,pt,ZYI405 Rdio Jornal,,Amamba (MS),-23.106667,-55.255328,,0.25,,10273,234,154,,,,,,36902568,,, +1520,B,pt,ZYJ340 Rdio Internacional,,Quedas do Iguau (PR),-25.448333,-52.935278,,0.25,,10367,231,154,,,,,,36902554,,, +1520,B,pt,ZYJ806 Cultura AM Timb,,Timb (SC),-26.802778,-49.281667,,0.25,,10306,228,154,,,,,,36902564,,, +1520,BOL,,CP207 R LV del Cobre,,Corocoro (lpz),-17.2,-68.483333,,0.25,,10521,248,155,,1000-0400,1234567,,,52062,,, +1520,CHL,,CC152 R Nueva Soberania,,Linares (ML),-35.816667,-71.65,,1,,12346,238,155,,1030-0430,1234567,,,35823,,, +1520,CLM,es,HKW43,,Tangua (nar),1.1,-77.4,,0.1,,9489,266,155,,,,,,35902041,,, +1520,B,,ZYK308,,Tapes (RS),-30.666667,-51.416667,,0.25,,10782,227,156,,,,,,46337,,, +1520,B,pt,ZYK217 RDC-Rdio Difusora Cachoeirense,,Cachoeira do Sul/Rua Paraguai (RS),-30.039167,-52.893889,,0.25,,10797,229,156,,,,,,36902551,,, +1520,USA,en,WQCT908,,Gig Harbor (WA),47.577664,-122.576694,,0.01,,7919,326,156,,,,,,20010714,,, +1520,USA,en,WQED923,,Gig Harbor (WA),47.310997,-122.576694,,0.01,,7945,326,156,,,,,,20010712,,, +1520,CHL,,CB152 R Integracion,,San Antonio (VS),-33.566667,-71.6,,0.5,,12150,240,157,,0900-0500,1234567,,,35743,,, +1520,URG,,CV152 R Paz La nueva r,,Guichn (pa),-32.366667,-57.216667,,0.25,,11239,230,157,,1000-2300,1234567,,,36733,,, +1520,USA,en,WPVZ859,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010710,,, +1520,USA,en,WPVZ859,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010711,,, +1520,USA,en,WPVZ859,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010713,,, +1520,USA,en,WPVZ859,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010715,,, +1520,ARG,,LT38 R Gualeguay,,Gualeguay (er),-33.133333,-59.316667,,0.25,,11420,231,158,,0900-0300,1234567,,,40189,,, +1520,ARG,,R Chascomus,,Chascomus (ba),-35.566667,-58.016667,,0.25,,11574,229,158,,0000-2400,1234567,,,2073,,, +1520,CHL,,CD152 R Anibal Pinto,,Lautaro (AR),-38.516667,-72.416667,,0.1,,12618,237,166,,,,,,35886,,, +1521,ARS,ar,BSKSA Idha'atu Nedaa al-Islam,,Duba (tbk),27.444444,35.590833,,2000,295,3659,127,61,,1500-1700,1234567,0,,1582,,, +1521,ARS,ar,BSKSA Idha'atu-i Riyadh,,Duba (tbk),27.444444,35.590833,,2000,295,3659,127,61,,1700-0300,1234567,0,,1582,,, +1521,E,es,SER,,Castelln/Ramell (VAL-CS),40.004061,-0.009056,,5,,1433,203,64,,0000-2400,1234567,9994,,1583,,, +1521,G,en,Flame CCR,,Birkenhead/Bidston (EN-MER),53.401944,-3.077778,,0.03,,654,286,79,,,,9997,,2800029,,, +1521,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.164014,86.895514,,500,310,5725,65,87,,0000-0056,1234567,0,,1763,,, +1521,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT654 (XJ),44.164014,86.895514,,500,310,5725,65,87,,1100-1956,1234567,0,,1763,,, +1521,BHR,ar,Bahrain FM,,Al-Manamah (mnh),26.216667,50.583333,,10,,4664,111,94,,0500-1700,1234567,997,,10900018,,, +1521,RUS,ru,R Rossii,,Boguchany (KN),58.373403,97.515972,,5,,5366,45,104,,0000-1800,1234567,0,,46992,,, +1521,RUS,ru,R Rossii,,Boguchany (KN),58.373403,97.515972,,5,,5366,45,104,,2200-2400,1234567,0,,46992,,, +1521,IND,,AIR Northeast,,Tawang (AR),27.584156,91.864589,,10,,7326,75,120,,0025-0430,1234567,,,51174,,, +1521,IND,,AIR Northeast,,Tawang (AR),27.584156,91.864589,,10,,7326,75,120,,1000-1630,1234567,,,51174,,, +1521,CHN,,Langfang RGD Wan=Play,,Langfang (HB),39.528333,116.729722,,25,,7812,50,121,,,,,,51160,,, +1521,CHN,mn,Ulanqab RGD,,Jining/NMTS585 (NM),41.023056,113.073611,,10,,7489,52,122,,,,,,36200257,,, +1521,IND,,AIR West,,Aurangabad (MH),19.875167,75.344444,,1,,6848,94,125,,0025-0430,1234567,,,51173,,, +1521,IND,,AIR West,,Aurangabad (MH),19.875167,75.344444,,1,,6848,94,125,,0630-0930,1234567,,,51173,,, +1521,IND,,AIR West,,Aurangabad (MH),19.875167,75.344444,,1,,6848,94,125,,1200-1741,1234567,,,51173,,, +1521,CHN,zh,Xinxiang RGD Traffic,,Xinxiang (HE),35.283611,113.923056,,10,,8033,55,127,,,,,,36200258,,, +1521,CHN,,Heze Shi JGD,,Heze (SD),35.272778,115.445833,,10,,8118,54,128,,,,,,36200705,,, +1521,CHN,,Xiangyang RGD,,Xiangfan/Xiangyang (HU),32.1,112.2,,10,,8214,58,129,,,,,,36200699,,, +1521,CHN,,Yakeshi RGD,,Yakeshi/NMTS785 (NM),49.3105,120.807556,,1,,7154,41,129,,,,,,36200447,,, +1521,CHN,,Huai'an JGD,,Huai'an/Lzhuang Cun (JS),33.5575,119.103889,,10,,8471,52,132,,,,,,51157,,, +1521,CHN,,Zhejiang RGD Lyou zhi Sheng,,unknown (ZJ),34.95,104.5,,1,,7515,61,132,,,,,,36200695,,, +1521,CHN,,Taonan RGD,,Taonan (JL),45.333333,122.783333,,1,,7596,43,133,,,,,,51165,,, +1521,CHN,zh,CNR 1,,Xuzhou/Damiao Zhen (JS),34.271389,117.271944,,5,,8308,53,133,,2025-1805,1234567,,,36201335,,, +1521,THA,th,Witthayu Krajaisiang 919,,Bangkok/Viphavadee-Rangsit Rd (bmp),13.774222,100.551222,,10,,9082,78,134,,2100-1500,1234567,,,51190,,, +1521,CHN,,Changzhi RGD,,Qinxian (SX),36.75,112.683333,,1,,7836,55,135,,,,,,51162,,, +1521,CHN,,Hebei RGD Lyou yu Wenhua,,Baoding (HB),38.85,115.55,,1,,7809,51,135,,,,,,36200708,,, +1521,CHN,,Hebei RGD Jingji Guangbo,,Xingtai (HB),37.066667,114.516667,,1,,7910,53,136,,,,,,36200698,,, +1521,CHN,,Shaanxi Xinwen Guangbo,,Shangluo (SA),33.855861,109.933278,,1,,7930,58,136,,2150-1710,1234567,,,51164,,, +1521,CHN,,Suzhou JGD,,Suzhou (JS),31.412778,120.693056,,5,,8752,52,136,,,,,,36200701,,, +1521,CHN,zh,CNR 3,,Beidaihe (HB),39.85,119.416667,,1,,7923,48,136,,2200-1600,1234567,,,36200707,,, +1521,CHN,,Jiaozuo RGD,,Jiaozuo (HE),35.192222,113.262778,,1,,8004,55,137,,,,,,51159,,, +1521,CHN,,Luoyang RGD Traffic,,Luoyang (HE),34.7,112.4,,1,,7998,56,137,,,,,,36200702,,, +1521,CHN,,Yunnan JGD,,Dali/SARFT653 (YN),25.716667,100.166667,,1,,8025,71,137,,,,,,51155,,, +1521,CHN,zh,CNR 1,,Dazhou (SC),31.216667,107.5,,1,,8013,62,137,,2025-1805,1234567,,,36200706,,, +1521,CHN,,Henan RGD My R,,Zhengzhou/HETS104 (HE),34.743611,113.858056,,1,,8077,55,138,,????-1500,1234567,,,51172,,, +1521,CHN,,Pingdingshan RGD,,Pingdingshan (HE),33.7,113.283333,,1,,8136,56,138,,,,,,51161,,, +1521,CHN,zh,Changzhou RGD Literary,,Changzhou (JS),31.768333,119.782778,,3,,8670,53,138,,2130-1435,1234567,,,51153,,, +1521,CHN,,Anshun RGD,,Anshun (GZ),26.25,105.916667,,1,,8345,66,140,,,,,,51152,,, +1521,CHN,,Qujing RGD,,Qujing (YN),25.466667,103.666667,,1,,8270,68,140,,,,,,51163,,, +1521,CHN,,Xiamen RGD Music,,Xiamen=Amoy/FJTS201 (FJ),24.595833,118.113889,,3,,9229,58,140,,,,,,51169,,, +1521,CHN,,Honghe RGD,,Gejiu/YNTS654 (YN),23.398333,103.161389,,1,,8417,70,141,,,,,,51156,,, +1521,CHN,,Jingzhou RGD News,,Jingzhou (HU),30.35,112.183333,,1,,8367,59,141,,,,,,36200703,,, +1521,CHN,,Yangzhou Traffic Station,,Yangzhou/Huaisi Zhen (JS),32.463056,119.446389,,1,,8589,53,142,,2120-????,1234567,,,51170,,, +1521,CHN,,Huzhou JGD,,Huzhou (ZJ),30.838611,120.221111,,1,,8779,53,143,,,,,,36200704,,, +1521,CHN,,Wuxi RGD Urban Life,,Wuxi/Huangshi Daqiao (JS),31.629444,120.263056,,1,,8709,53,143,,????-1800,1234567,,,51167,,, +1521,CHN,,Zhangjiagang RGD Music,,Zhangjiagang (JS),31.866667,120.533333,,1,,8702,52,143,,,,,,36200697,,, +1521,J,ja,JOTC NHK2,,Aomori (toh-aom),40.793889,140.7575,,1,,8786,33,143,,2030-1500,1.....7,9995,,51179,,, +1521,J,ja,JOTC NHK2,,Aomori (toh-aom),40.793889,140.7575,,1,,8786,33,143,,2030-1635,.2345..,9995,,51179,,, +1521,J,ja,JOTC NHK2,,Aomori (toh-aom),40.793889,140.7575,,1,,8786,33,143,,2030-1640,.....6.,9995,,51179,,, +1521,CHN,zh,CNR 1,,Zhaoqing (GD),23.05,112.45,,1,,9030,63,144,,2025-1805,1234567,,,51171,,, +1521,CHN,zh,CNR 2,,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,2100-1602,1234567,,,36200696,,, +1521,J,ja,JOFC NHK2,,Fukui (chu-fuk),36.040833,136.233611,,1,,9072,39,144,,2030-1500,1.....7,,,51180,,, +1521,J,ja,JOFC NHK2,,Fukui (chu-fuk),36.040833,136.233611,,1,,9072,39,144,,2030-1635,.2345..,,,51180,,, +1521,J,ja,JOFC NHK2,,Fukui (chu-fuk),36.040833,136.233611,,1,,9072,39,144,,2030-1640,.....6.,,,51180,,, +1521,J,ja,JOJC NHK2,,Yamagata (toh-yam),38.279167,140.326111,,1,,9019,35,144,,2030-1500,1.....7,,,51187,,, +1521,J,ja,JOJC NHK2,,Yamagata (toh-yam),38.279167,140.326111,,1,,9019,35,144,,2030-1635,.2345..,,,51187,,, +1521,J,ja,JOJC NHK2,,Yamagata (toh-yam),38.279167,140.326111,,1,,9019,35,144,,2030-1640,.....6.,,,51187,,, +1521,J,ja,JOLZ NHK2,,Yonago (chg-tot),35.446667,133.314167,,1,,9001,41,144,,2030-1500,1.....7,,,51188,,, +1521,J,ja,JOLZ NHK2,,Yonago (chg-tot),35.446667,133.314167,,1,,9001,41,144,,2030-1635,.2345..,,,51188,,, +1521,J,ja,JOLZ NHK2,,Yonago (chg-tot),35.446667,133.314167,,1,,9001,41,144,,2030-1640,.....6.,,,51188,,, +1521,J,ja,NHK R 2,,Nakamura/Shimanto (shi-koc),32.991944,132.916111,,1,,9220,43,144,,2030-1500,1.....7,,,51185,,, +1521,J,ja,NHK R 2,,Nakamura/Shimanto (shi-koc),32.991944,132.916111,,1,,9220,43,144,,2030-1635,.2345..,,,51185,,, +1521,J,ja,NHK R 2,,Nakamura/Shimanto (shi-koc),32.991944,132.916111,,1,,9220,43,144,,2030-1640,.....6.,,,51185,,, +1521,J,ja,JODC NHK2,,Hamamatsu (chu-shi),34.674167,137.764167,,1,,9272,38,145,,2030-1500,1.....7,,,51182,,, +1521,J,ja,JODC NHK2,,Hamamatsu (chu-shi),34.674167,137.764167,,1,,9272,38,145,,2030-1635,.2345..,,,51182,,, +1521,J,ja,JODC NHK2,,Hamamatsu (chu-shi),34.674167,137.764167,,1,,9272,38,145,,2030-1640,.....6.,,,51182,,, +1521,J,ja,NHK R 2,,Ishigaki (kyu-oki),24.363889,124.157778,,1,,9593,54,146,,2030-1500,1.....7,,,51183,,, +1521,J,ja,NHK R 2,,Ishigaki (kyu-oki),24.363889,124.157778,,1,,9593,54,146,,2030-1635,.2345..,,,51183,,, +1521,J,ja,NHK R 2,,Ishigaki (kyu-oki),24.363889,124.157778,,1,,9593,54,146,,2030-1640,.....6.,,,51183,,, +1521,INS,id,PM7CLY R.Suara Musi Jaya Pertama,,Sekayu (SS-mba),-2.85,103.85,,1,,10765,86,150,,,,,,51177,,, +1521,J,,NHK R 2,,Kure (chg-hir),34.25,132.6,,0.1,,9084,42,154,,2030-1500,1.....7,,,51184,,, +1521,J,,NHK R 2,,Kure (chg-hir),34.25,132.6,,0.1,,9084,42,154,,2030-1635,.2345..,,,51184,,, +1521,J,,NHK R 2,,Kure (chg-hir),34.25,132.6,,0.1,,9084,42,154,,2030-1640,.....6.,,,51184,,, +1521,J,,NHK R 2,,Saiki (kyu-oit),32.966667,131.916667,,0.1,,9176,44,154,,2030-1500,1.....7,,,51186,,, +1521,J,,NHK R 2,,Saiki (kyu-oit),32.966667,131.916667,,0.1,,9176,44,154,,2030-1635,.2345..,,,51186,,, +1521,J,,NHK R 2,,Saiki (kyu-oit),32.966667,131.916667,,0.1,,9176,44,154,,2030-1640,.....6.,,,51186,,, +1521,J,ja,NHK R 2,,Gujohachiman,34.5,134,,0.1,,9124,41,154,,,,,,31400113,,, +1521,J,ja,NHK R 2,,Hanawa,34.5,134,,0.1,,9124,41,154,,,,,,31400114,,, +1521,INS,id,RSPDK Klaten,,Klaten (JT),-7.703611,110.600556,,0.1,,11650,84,162,,,,,,51192,,, +1521,AUS,en,2QN QN Country,,Deniliquin (NSW),-35.625989,144.913356,,2,,16287,77,165,,0000-2400,1234567,8,,51150,,, +1521,NZL,,1XTR Classic Good Time Oldies,,Tauranga/Matapihi (BOP),-37.693889,176.196389,,1,22,18226,30,174,,,,,,51189,,, +1523,INS,id,PM3BIX R Primadona,,Cikampek (JB-kar),-6.416667,107.466667,,1,,11324,85,151,,,,,,35400096,,, +1530,ROU,ro,SRR R Romnia Actualităţi,,Rădăuţi (SV),47.857336,25.913753,,14,,1467,101,60,,0000-2400,1234567,61,,1596,,, +1530,G,en,Pulse 2,,Huddersfield/Vicars Lot (EN-WYK),53.651778,-1.89275,,0.74,,583,290,64,,0000-2400,1234567,5,,1592,,, +1530,ROU,ro,SRR R Constanţa,,Nufăru/Releul Delta (TL),45.150194,28.924583,,14,,1817,106,64,,0236-2208,1234567,1,,1597,,, +1530,G,en,BBC Essex,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.15,,401,264,69,,0300-2400,12345..,1,,1591,,, +1530,G,en,BBC Essex,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.15,,401,264,69,,0500-2400,.....67,1,,1591,,, +1530,G,en,BBC R 5 Live,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.15,,401,264,69,,0000-0300,12345..,1,,1591,,, +1530,G,en,BBC R 5 Live,,Southend/Rayleigh (EN-ESX),51.58325,0.64,,0.15,,401,264,69,,0000-0500,.....67,1,,1591,,, +1530,GRC,el,R Iperohos,,Thessaloniki (cmc-tsk),40.633333,22.933333,,1,,1791,129,75,,,,,,3400013,,, +1530,G,,Celtic Music R,,Glasgow (SC-GCC),55.883333,-4.25,,0.05,,812,305,78,,,,999,,2800004,,, +1530,MDR,pt,PEF-Posto Emissor do Funchal,,Poiso/Cho dos Balces (md),32.709919,-16.908203,,3,,2859,230,81,,0000-2400,1234567,997,,1595,,, +1530,AZE,,Azad Azərbaycan R,,Baku (bak),40.398197,49.846197,,7,,3521,94,84,,,,7,,47116,,, +1530,IRN,fa,IRIB R Iran,,Yazd/Fahraj (yzd),31.771792,54.536278,,50,,4468,101,85,,0030-1730,1234567,973,,1602,,, +1530,STP,en,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,0300-0430,1234567,2,,1764,,, +1530,STP,en,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,0600-0700,1234567,2,,1764,,, +1530,STP,en,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,1600-1700,1234567,2,,1764,,, +1530,STP,en,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,2000-2200,1234567,2,,1764,,, +1530,STP,fr,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,0530-0600,1234567,2,,1764,,, +1530,STP,fr,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,1830-2000,1234567,2,,1764,,, +1530,STP,ha,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,0500-0530,1234567,2,,1764,,, +1530,STP,pt,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,1700-1800,1234567,2,,1764,,, +1530,STP,pt,Voice of America,,Pinheira/Ponta Praio (sao),0.294039,6.758911,,600,,5762,180,87,,1800-1830,12345..,2,,1764,,, +1530,IRN,,Al-Alam,,unknown,32.5,53.625,,1,,4350,101,101,,1100-2000,1234567,976,,10800007,,, +1530,IND,,AIR North,,Agra (UP),27.133389,78.049667,,20,,6433,86,108,,0025-0400,1234567,,,51197,,, +1530,IND,,AIR North,,Agra (UP),27.133389,78.049667,,20,,6433,86,108,,0700-0930,1234567,,,51197,,, +1530,IND,,AIR North,,Agra (UP),27.133389,78.049667,,20,,6433,86,108,,1200-1740,1234567,,,51197,,, +1530,USA,en,WCKY,,Cincinnati (D) (OH),39.068611,-84.605556,,50,,6753,297,108,,1200-2400,1234567,,,20016133,,, +1530,USA,en,WCKY,,Cincinnati (N) (OH),39.065278,-84.6075,,50,,6753,297,108,,0000-1200,1234567,0,,42945,,, +1530,USA,,WDJZ,,Bridgeport (CT),41.169167,-73.220556,,5,,5886,292,109,,,,,,41168,,, +1530,AGL,pt,RNA Em. Prov. do Cabinda,,Tenda (cab),-5.256556,12.154528,,10,,6402,173,111,,0500-2300,1234567,,,47110,,, +1530,USA,,WYMM,,Jacksonville (FL),30.363889,-81.748333,,50,,7274,289,113,,,,,,43530,,, +1530,AFG,,R Nangarhar,,Jalalabad (nan),34.421467,70.470161,,0.4,,5349,85,114,,0130-0330,1234567,,,46815,,, +1530,AFG,,R Nangarhar,,Jalalabad (nan),34.421467,70.470161,,0.4,,5349,85,114,,1230-1500,1234567,,,46815,,, +1530,USA,en,WLCO,,Lapeer (MI),43.026389,-83.286667,,5,,6367,300,114,,,,998,,42236,,, +1530,USA,es,WLLQ,,Chapel Hill (NC),35.968611,-79.002778,,10,,6648,291,114,,1200-2400,1234567,,,42929,,, +1530,USA,,KQSP,,Shakopee (MN),44.807222,-93.556944,,8.6,,6812,307,116,,,,,,39390,,, +1530,USA,es,WJDM,,Elizabeth (NJ),40.690278,-74.261111,,1,,5987,292,117,,,,9940,,41861,,, +1530,USA,,WTTI,,Dalton (GA),34.785833,-85.044444,,10,,7123,294,118,,,,,,43224,,, +1530,USA,,WCTR,,Chestertown (MD),39.226389,-76.088889,,1,,6212,292,119,,,,,,41098,,, +1530,USA,en,WMCE,,North East (PA),42.201389,-79.861944,,1,,6223,297,119,,,,,,43534,,, +1530,USA,,WOBX,,Wanchese (NC),35.864444,-75.650278,,1,,6440,289,121,,,,,,42556,,, +1530,USA,,WFIC,,Collinsville (VA),36.715556,-79.920833,,1,,6647,292,123,,,,,,41384,,, +1530,USA,,WYGR,,Wyoming (MI),42.927222,-85.747222,,0.5,,6519,301,125,,,,,,43518,,, +1530,USA,en,WCKG,,Elmhurst (IL),41.8675,-87.918611,,0.76,,6729,301,125,,1300-0100,1234567,,,41885,,, +1530,CHN,,Zhejiang RGD Chengshi zhi Sheng,,Hangzhou/ZJTS4 (ZJ),30.266667,120.133333,,50,,8826,54,126,,2130-1605,1234567,,,51194,,, +1530,USA,,WASC,,Spartanburg (SC),34.949444,-81.959167,,1,,6916,292,126,,,,,,40747,,, +1530,USA,,WLIQ,,Quincy (IL),39.930833,-91.429444,,1.4,,7088,302,126,,,,,,20016035,,, +1530,USA,en,KFBK,i,Sacramento (CA),38.848333,-121.482778,,50,,8716,321,126,,,,13,,38378,,, +1530,CHN,zh,Jilin RGD,,Fuyuan (JL),41.9,125.333333,,10,,8026,43,127,,0000-2400,1234567,,,36201120,,, +1530,USA,,KXTD,,Wagoner (OK),35.975,-95.491667,,5,,7654,302,127,,,,,,39826,,, +1530,CHN,zh,Jilin RGD,,Yanji=Yeon'gil (JL),42.933211,129.501367,,10,,8119,40,128,,0000-2400,1234567,,,36200692,,, +1530,VEN,,YVNP R San Felipe el Fuerte,,San Felipe (ycy),10.5,-68.716667,,10,,8074,265,128,,,,,,51708,,, +1530,USA,,KVDW,,England (AR),34.545833,-91.984444,,2.5,,7568,299,129,,,,,,39617,,, +1530,USA,,WWDX,,Huntingdon (TN),36.001111,-88.433889,,1,,7232,297,129,,,,,,41124,,, +1530,USA,es,WLWB,,Chilton (WI),44.019444,-88.158889,,0.25,,6574,303,129,,,,,,42279,,, +1530,USA,,KZNX,,Creedmoor (DC) (TX),30.077222,-97.635556,,10,,8289,299,130,,,,,,39901,,, +1530,USA,,KLBW,,New Boston (TX),33.482222,-94.423611,,2.5,,7803,299,131,,,,,,38963,,, +1530,USA,,KCLR,,Ralls (TX),33.666667,-101.378889,,5,,8191,304,132,,,,,,38175,,, +1530,CLM,es,HJOZ LV de Prov de Padilla,,San Juan del Cesar (lag),10.783333,-72.966667,,5,,8339,268,133,,,,,,37617,,, +1530,PNR,es,R Avivamiento,,Pedregal/San Jos (pnm),9.106944,-79.420278,,10,,8926,272,133,,,,994,,52329,,, +1530,THA,th,Wor. Por. Thor. 14,,Uttaradit/13-7 Prachanimit Rd (utr),17.632903,100.098167,,10,,8716,76,133,,2200-1700,1234567,,,51213,,, +1530,USA,,KGBT,,Harlingen (TX),26.375833,-97.895278,,10,,8629,297,133,,,,,,38460,,, +1530,USA,,KQNK,,Norton (KS),39.826944,-99.868889,,1,,7571,307,133,,,,,,39202,,, +1530,CHN,,Jilin RGD,,Tongyu (JL),44.8,123.1,,1,,7659,43,134,,,,,,51196,,, +1530,PHL,tl,DZME-AM Radyo Uno,,Obando/78 Kalye Plamingco (bul),14.700056,120.943433,,25,,10303,62,134,,0000-2400,1234567,118,,51209,,, +1530,USA,,KMAM,,Butler (MO),38.248889,-94.321667,,0.5,,7394,303,134,,,,,,38875,,, +1530,CHN,,Jinzhong RGD,,Jinzhong (SX),37.683333,112.733333,,1,,7758,54,135,,,,,,36200694,,, +1530,KOR,en,AFN Korea-Thunder AM,,Yongsan=Youngsan (seo),37.522806,126.976417,,5,,8509,45,135,,0000-2400,1234567,,,51206,,, +1530,THA,th,Thor. Phor. Neung,,Chanthaburi/Bang Kacha (ctb),12.583333,102.058333,,10,,9286,78,135,,????-1700,1234567,,,51212,,, +1530,B,pt,ZYI781 Rdio Bitury,,Belo Jardim (PE),-8.368097,-36.4303,,1,,7860,225,136,,,,,,36902596,,, +1530,CHN,,Jilin RGD,,Liaoyuan (JL),42.866667,125.166667,,1,,7930,43,136,,,,,,36200693,,, +1530,PTR,,WUPR,,Utuado (PR),18.267778,-66.709722,,0.25,,7269,268,136,,1000-0300,1234567,,,43266,,, +1530,DOM,,HIJN R 1530,,Santiago de los Caballeros (sto),19.466667,-70.666667,,0.25,,7438,272,137,,0000-2400,1234567,,,37260,,, +1530,J,ja,JOXF CRT Tochigi Hoso,,Utsunomiya (kan-toc),36.548611,139.800278,,5,,9170,36,137,,0000-2400,1234567,,,51205,,, +1530,B,pt,ZYJ603 Rdio Curimatau,,Nova Cruz (RN),-6.466667,-35.433333,,0.25,,7622,225,139,,,,,,36902575,,, +1530,B,pt,ZYJ685 Rdio Planalto,,Vilhena (RO),-12.744872,-60.110714,,5,,9596,244,139,,0900-0330,1234567,,,36902574,,, +1530,PRU,es,OBU4C R Milenia,,Lima/Fundo Villa (lim),-12.188889,-77.016667,,10,,10632,257,139,,,,,,37000012,,, +1530,MEX,es,XEGQ-AM,,Los Reyes (mic),19.584981,-102.467733,,3.5,,9514,297,140,,,,,,44072,,, +1530,USA,,WVBF,,Middleborough Center (MA),41.923889,-70.935278,,0.002,,5687,291,141,,,,,,43281,,, +1530,B,pt,ZYH666 Rdio das Trs Fronteiras,,Campos Sales (CE),-7.076119,-40.3908,,0.25,,7932,230,142,,,,,,36902576,,, +1530,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20010717,,, +1530,CHN,,Hengyang RGD,,Hengyang (HN),26.883333,112.616667,,1,,8699,61,143,,,,,,51195,,, +1530,CLM,,HJGD,,Chiquinquira (boy),5.666667,-73.716667,,1,,8837,266,143,,,,,,37451,,, +1530,CLM,es,HJDN La Voz de Jesucristo,,Medelln (ant),6.283333,-75.566667,,1,,8909,268,143,,,,,,37394,,, +1530,B,pt,ZYI432 Rdio Atual,,Peixoto de Azevedo (MT),-10.257747,-54.998622,,1,,9057,241,144,,,,,,36902592,,, +1530,B,pt,ZYJ348 Rdio Vale do Iguau,,Ver (PR),-25.871389,-52.906389,,2.5,,10405,231,144,,,,,,36902589,,, +1530,CLM,,HJPE,,Melgar (tol),4.166667,-74.616667,,1,,9030,265,144,,,,,,37621,,, +1530,CLM,es,HJJB,,Sevilla (val),4.266667,-75.95,,1,,9112,267,144,,,,,,37503,,, +1530,J,,JODO BSN Niigata Hoso,,Joetsu (chu-nii),37.161111,138.241111,,1,,9046,37,144,,0000-2400,1234567,,,51202,,, +1530,J,ja,JOEO RCC Chugoku Hoso,,Fukuyama (chg-hir),34.501944,133.363611,,1,,9095,42,144,,0000-2400,1234567,,,51200,,, +1530,J,ja,RCC Chugoku Hoso,,Mihara (chg-hir),34.386111,133.05,,1,,9092,42,144,,0000-2400,1234567,,,51203,,, +1530,MEX,es,XEUR-AM R Fiesta,,Mxico D.F/Barrio Zapotla (dif),19.396014,-99.120994,,1,,9325,294,145,,,,,,44925,,, +1530,B,pt,ZYH479 Rdio Cultura de Guanambi,,Guanambi/Fazenda Piranha (BA),-14.226981,-42.752331,,0.5,,8755,228,146,,,,,,36902584,,, +1530,EQA,,HCJY1,,Uno (pic),-0.016667,-79,,1,,9696,266,146,,,,,,36999,,, +1530,USA,,KZNX,,Creedmoor (N) (TX),30.345556,-97.634444,,0.22,,8265,300,146,,,,,,20012598,,, +1530,EQA,,HCMC2,,Libertad (gua),-2.216667,-80.866667,,1,,10016,266,147,,,,,,37018,,, +1530,EQA,,HCVP5 La Voz de Pa,,Pallatanga (chi),-2,-78.95,,1,,9867,265,147,,,,,,37176,,, +1530,EQA,es,HCCC5 Ondas Caaris - R Universitaria Catolica,,Azogues (can),-2.716667,-78.766667,,1,,9917,265,147,,,,,,36875,,, +1530,NCG,,YNRST LV de Santa Teresa,,Santa Teresa (crz),11.8,-86.166667,,0.5,,9149,279,147,,1400-0200,1234567,,,52212,,, +1530,B,pt,Rdio AM Atalaia,,Sete Quedas (MS),-23.968056,-55.017778,,1,,10340,233,148,,,,,,36902585,,, +1530,CLM,es,HKN57,,San Juan de Uraba (ant),8.766667,-76.533333,,0.25,,8758,270,149,,,,,,35902107,,, +1530,CLM,es,HKN65,,Caucasia (ant),7.983333,-75.2,,0.25,,8735,268,149,,,,,,35902119,,, +1530,EQA,es,HCMZ6 R Dorado Deportes,,Pelileo (tun),-1.316667,-78.516667,,0.5,,9777,265,149,,,,,,37036,,, +1530,PRU,,OBZ4S R 15-15,,Huancayo (jun),-12.066667,-75.233333,,1,,10503,256,149,,,,,,40422,,, +1530,B,,ZYH782,,Formoso (GO),-13.616667,-48.9,,0.25,,9023,234,150,,,,,,45749,,, +1530,B,pt,ZYJ502 Rdio Princesinha do Norte,,Miracema (RJ),-21.4037,-42.186294,,0.25,,9432,225,151,,,,12,,36902583,,, +1530,CLM,es,HKV82 Alcaravan R,,Puerto Lleras (met),3.266667,-73.366667,,0.2,,9024,264,151,,,,,,35902144,,, +1530,INS,id,R Masjid Sunda Kelapa,,Jakarta/Menteng (JK-kjp),-6.191667,106.833333,,1,,11262,86,151,,,,,,35400147,,, +1530,ARG,,R Contempornea,,Lomas de Zamora (ba),-34.766667,-58.4,,1,,11521,230,152,,,,,,51898,,, +1530,ARG,,R Portea,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51843,,, +1530,ARG,es,R La Roca/Eco Portea,,Gregorio de Laferrere (ba),-34.749722,-58.609444,,1,,11530,230,152,,,,,,33000016,,, +1530,B,pt,ZYJ482 Rdio Bzios,,Cabo Frio (RJ),-22.816614,-41.984139,,0.25,,9562,224,152,,,,,,36902582,,, +1530,B,pt,ZYL262 Rdio Progresso AM,,Monte Santo de Minas (MG),-21.1772,-46.969639,,0.25,,9647,229,152,,,,,,36902580,,, +1530,B,pt,ZYL280 Rdio Clube de Pouso Alegre,,Pouso Alegre (MG),-22.236289,-45.926608,,0.25,,9697,227,152,,,,3,,36902573,,, +1530,CLM,es,HKS56,,Becerril (ces),9.7,-73.283333,,0.1,,8455,268,152,,,,,,35902179,,, +1530,CLM,es,HKS58,,El Copey (ces),10.15,-73.966667,,0.1,,8463,269,152,,,,,,35902177,,, +1530,EQA,,HCNI4,,San Lorenzo (esm),1.3,-78.866667,,0.25,,9571,267,152,,,,,,37041,,, +1530,B,pt,ZYK677 Rdio Difusora,,Tupi Paulista (SP),-21.434708,-51.5399,,0.25,,9912,232,153,,,,,,36902581,,, +1530,B,pt,ZYK714 Rdio Notcias de Tatu,,Tatu (SP),-23.342433,-47.864275,,0.25,,9902,228,153,,,,,,36902571,,, +1530,B,pt,ZYK755 Rdio Universal,,Teodoro Sampaio (SP),-22.513683,-52.177872,,0.25,,10049,232,153,,,,,,36902595,,, +1530,B,,ZYJ321,,Cianorte (PR),-23.616667,-52.616667,,0.25,,10177,232,154,,,,,,46043,,, +1530,B,,ZYJ339,,Balsa Nova (PR),-25.566667,-49.616667,,0.25,,10205,228,154,,,,,,46060,,, +1530,B,pt,ZYJ761 Rdio Difusora Itaja,,Itaja (SC),-26.909167,-48.677222,,0.25,,10286,227,154,,,,,,36902578,,, +1530,BOL,,CP111 R Em. Ballivian,,San Borja (ebn),-14.866667,-66.866667,,0.25,,10209,248,154,,1030-0100,1234567,,,36628,,, +1530,CHL,,CB153 R Nexo,,Quillota (VS),-32.883333,-71.25,,1,,12071,240,154,,1100-0600,1234567,,,35744,,, +1530,J,,BSN Niigata Hoso,,Itoigawa (chu-nii),37.05,137.866667,,0.1,,9042,37,154,,,,,,51201,,, +1530,J,ja,RCC Chugoku Hoso,,Fuchu (chg-hir),34.562222,133.229444,,0.1,,9083,42,154,,0000-2400,1234567,,,51199,,, +1530,USA,,KCMN,,Colorado Springs (CO),38.818889,-104.775556,,0.015,,7920,310,154,,,,,,38180,,, +1530,AUS,xx,ARDS Yolngu R Service,,Darwin/Ludmilla (NT),-12.424,130.849667,,2,,13410,69,155,,,,,,37700012,,, +1530,B,pt,ZYJ780 Rdio Difusora So Joaquim,,So Joaquim (SC),-28.302222,-49.923056,,0.25,,10482,227,155,,,,,,36902597,,, +1530,B,pt,ZYJ796 Rdio Porto Feliz AM,,Monda (SC),-27.095,-53.412222,,0.25,,10547,231,155,,,,,,36902590,,, +1530,B,pt,ZYK300 Rdio Progresso AM,,So Leopoldo (RS),-29.741389,-51.160278,,0.25,,10681,227,155,,,,,,36902587,,, +1530,B,pt,ZYK304 Rdio Tapejara,,Tapejara (RS),-28.070278,-51.985833,,0.25,,10565,229,155,,,,,,36902588,,, +1530,BOL,,CP200 R Litoral,,Llica (pts),-19.866667,-68.266667,,0.25,,10745,246,155,,1400-0300,1234567,,,52065,,, +1530,CHL,,CC153 R Corporacion,,Coronel (Lota?) (BI),-37,-73.15,,1,,12533,238,155,,,,,,35824,,, +1530,MEX,es,XESD-AM Los 40 Principales,,Silao (gua),20.94,-101.433056,,0.1,,9329,297,155,,,,,,44734,,, +1530,B,pt,ZYK235 Sulina AM,,Dom Pedrito (RS),-30.960833,-54.663056,,0.25,,10975,229,156,,,,,,36902593,,, +1530,ARG,,LRJ200 R Centro Morteros,,Morteros (cb),-30.716667,-62,,0.25,,11348,235,157,,0900-0300,1234567,,,51897,,, +1530,CHL,,CD153 R Calbuco,,Calbuco (LL),-41.783333,-73.15,,1,,12931,235,157,,,,,,35889,,, +1530,ARG,,LRJ376 LV del Futuro,,General San Martn (ba),-34.575,-58.533333,,0.25,,11510,230,158,,,,,,40090,,, +1530,URG,,CX153 Emisora Cono Sur,,Nueva Palmira (co),-33.866667,-58.366667,,0.25,,11437,230,158,,0900-0300,1234567,,,36797,,, +1530,USA,en,WPUI734,,Provo/1860 South University Ave (UT),40.211944,-111.658333,,0.01,,8141,315,158,,,,,,20010716,,, +1530,USA,en,WPUI734,,South Ogden (UT),41.148361,-111.933556,,0.01,,8068,316,158,,,,,,20010718,,, +1530,GUM,,KVOG,,Agana (GU),13.456667,144.672222,,0.25,,11697,42,159,,,,,,20016098,,, +1530,USA,,WENG,,Englewood (FL),26.970833,-82.323333,,0.001,,7593,286,163,,,,,,41306,,, +1530,AUS,en,2VM,,Moree/Gwydir Highway (NSW),-29.485133,149.891758,,2,,16111,64,164,,,,111,,51193,,, +1530,NZL,,The Coast,,Napier/Pakipaki (HKB),-39.692222,176.803333,,1,,18450,32,175,,,,,,51207,,, +1539,E,es,SER,,Manresa/Buflvent (CAT-B),41.708089,1.852983,,5,,1207,198,62,,0000-2400,1234567,9945,,1601,,, +1539,E,es,SER,,Elche=Elx (VAL-A),38.257222,-0.746944,,6,,1637,203,66,,0000-2400,1234567,9995,,1600,,, +1539,GRC,el,R Vassilis,,Nafpaktos (wgr-ait),38.394444,21.833333,,1,,1937,136,76,,,,,,3400052,,, +1539,IRN,fa,IRIB R Golestan,,Gorgan (gsn),36.852889,54.435631,,50,,4079,95,81,,0000-2400,1234567,0,,1822,,, +1539,UAE,ml,Asianet R,,Al-Dhabbaya (abd),24.23025,54.405306,,100,,5079,109,88,,0200-1400,1234567,,,47103,,, +1539,DJI,,RTD R Nationale,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0300-0700,1234567,2,,2548,,, +1539,DJI,,RTD R Nationale,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0900-2000,1234.67,2,,2548,,, +1539,DJI,,RTD R Nationale,,Djibouti/Doraleh (djb),11.590256,43.084528,,40,,5574,130,97,,0900-2200,....5..,2,,2548,,, +1539,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.422642,94.99685,,300,,6812,67,100,,2025-1805,1234567,998,,36201054,,, +1539,IRN,fa,IRIB R Iran,,unknown,32.5,53.625,,1,,4350,101,101,,,,9493,,10800037,,, +1539,CHN,bo,Qinghai RGD/CNR 11,,Maqn=Maqin/QHTS921 (QH),34.455278,101.2625,,1,,7360,64,131,,2250-1600,1234567,,,36201280,,, +1539,CHN,bo,Qinghai RGD,,several locations,34.95,104.5,,1,,7515,61,132,,,,,,36200362,,, +1539,CHN,zh,CNR 1,,several locations,34.95,104.5,,1,,7515,61,132,,,,,,36200361,,, +1539,THA,th,Phon Ror. Kao,,Kanchanaburi/Fort Surasi (knb),14.033333,99.569444,,10,,8993,79,134,,0000-2400,1234567,18,,51245,,, +1539,CHN,zh,CNR 1,,Zhenjiang (JS),32.216667,119.433333,,1,,8611,53,142,,2025-1805,1234567,,,36200360,,, +1539,PHL,tl,DZYM-AM Radyo Pilipinas,,San Jose/Puerto Gallenero (ocm),12.383333,121.05,,5,,10523,63,142,,,,32,,51244,,, +1539,KOR,,HLQC KBS 1 R,,Gosan (jej),33.300278,126.198889,,1,,8866,47,143,,0000-2400,1234567,,,51242,,, +1539,J,,NHK R 2,,Engaru (hok),44.05,143.516667,,0.1,,8560,30,152,,2030-1500,1.....7,,,51225,,, +1539,J,,NHK R 2,,Engaru (hok),44.05,143.516667,,0.1,,8560,30,152,,2030-1635,.2345..,,,51225,,, +1539,J,,NHK R 2,,Engaru (hok),44.05,143.516667,,0.1,,8560,30,152,,2030-1640,.....6.,,,51225,,, +1539,J,,NHK R 2,,Imakane (hok),42.416667,139.966667,,0.1,,8595,33,152,,2030-1500,1.....7,,,51227,,, +1539,J,,NHK R 2,,Imakane (hok),42.416667,139.966667,,0.1,,8595,33,152,,2030-1635,.2345..,,,51227,,, +1539,J,,NHK R 2,,Imakane (hok),42.416667,139.966667,,0.1,,8595,33,152,,2030-1640,.....6.,,,51227,,, +1539,J,,NHK R 2,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,2030-1500,1.....7,,,51234,,, +1539,J,,NHK R 2,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,2030-1635,.2345..,,,51234,,, +1539,J,,NHK R 2,,Kuji (toh-iwa),40.183333,141.8,,0.1,,8886,33,153,,2030-1640,.....6.,,,51234,,, +1539,J,,NHK R 2,,Nakashibetsu (hok),43.533333,144.983333,,0.1,,8661,29,153,,2030-1500,1.....7,,,51236,,, +1539,J,,NHK R 2,,Nakashibetsu (hok),43.533333,144.983333,,0.1,,8661,29,153,,2030-1635,.2345..,,,51236,,, +1539,J,,NHK R 2,,Nakashibetsu (hok),43.533333,144.983333,,0.1,,8661,29,153,,2030-1640,.....6.,,,51236,,, +1539,J,,NHK R 2,,Aizuwakamatsu (toh-fuk),37.483333,139.95,,0.1,,9083,36,154,,2030-1500,1.....7,,,51224,,, +1539,J,,NHK R 2,,Aizuwakamatsu (toh-fuk),37.483333,139.95,,0.1,,9083,36,154,,2030-1635,.2345..,,,51224,,, +1539,J,,NHK R 2,,Aizuwakamatsu (toh-fuk),37.483333,139.95,,0.1,,9083,36,154,,2030-1640,.....6.,,,51224,,, +1539,J,,NHK R 2,,Ina (chu-nag),35.833333,137.95,,0.1,,9165,38,154,,2030-1500,1.....7,,,51228,,, +1539,J,,NHK R 2,,Ina (chu-nag),35.833333,137.95,,0.1,,9165,38,154,,2030-1635,.2345..,,,51228,,, +1539,J,,NHK R 2,,Ina (chu-nag),35.833333,137.95,,0.1,,9165,38,154,,2030-1640,.....6.,,,51228,,, +1539,J,,NHK R 2,,Iwaki (toh-fuk),37.05,140.883333,,0.1,,9163,35,154,,2030-1500,1.....7,,,51229,,, +1539,J,,NHK R 2,,Iwaki (toh-fuk),37.05,140.883333,,0.1,,9163,35,154,,2030-1635,.2345..,,,51229,,, +1539,J,,NHK R 2,,Iwaki (toh-fuk),37.05,140.883333,,0.1,,9163,35,154,,2030-1640,.....6.,,,51229,,, +1539,J,,NHK R 2,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,2030-1500,1.....7,,,51230,,, +1539,J,,NHK R 2,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,2030-1635,.2345..,,,51230,,, +1539,J,,NHK R 2,,Kamioka (chu-gif),36.333333,137.3,,0.1,,9089,38,154,,2030-1640,.....6.,,,51230,,, +1539,J,,NHK R 2,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,2030-1500,1.....7,,,51231,,, +1539,J,,NHK R 2,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,2030-1635,.2345..,,,51231,,, +1539,J,,NHK R 2,,Kesennuma (toh-miy),38.9,141.566667,,0.1,,9005,34,154,,2030-1640,.....6.,,,51231,,, +1539,J,,NHK R 2,,Kobayashi (kyu-miy),32,130.966667,,0.1,,9223,45,154,,2030-1500,1.....7,,,51232,,, +1539,J,,NHK R 2,,Kobayashi (kyu-miy),32,130.966667,,0.1,,9223,45,154,,2030-1635,.2345..,,,51232,,, +1539,J,,NHK R 2,,Kobayashi (kyu-miy),32,130.966667,,0.1,,9223,45,154,,2030-1640,.....6.,,,51232,,, +1539,J,,NHK R 2,,Komoro (chu-nag),36.316667,138.433333,,0.1,,9138,37,154,,2030-1500,1.....7,,,51233,,, +1539,J,,NHK R 2,,Komoro (chu-nag),36.316667,138.433333,,0.1,,9138,37,154,,2030-1635,.2345..,,,51233,,, +1539,J,,NHK R 2,,Komoro (chu-nag),36.316667,138.433333,,0.1,,9138,37,154,,2030-1640,.....6.,,,51233,,, +1539,J,,NHK R 2,,Masuda (chg-shi),34.683333,131.85,,0.1,,9008,43,154,,2030-1500,1.....7,,,51235,,, +1539,J,,NHK R 2,,Masuda (chg-shi),34.683333,131.85,,0.1,,9008,43,154,,2030-1635,.2345..,,,51235,,, +1539,J,,NHK R 2,,Masuda (chg-shi),34.683333,131.85,,0.1,,9008,43,154,,2030-1640,.....6.,,,51235,,, +1539,J,,NHK R 2,,Shinjo (toh-yam),38.783333,140.316667,,0.1,,8969,35,154,,2030-1500,1.....7,,,51238,,, +1539,J,,NHK R 2,,Shinjo (toh-yam),38.783333,140.316667,,0.1,,8969,35,154,,2030-1635,.2345..,,,51238,,, +1539,J,,NHK R 2,,Shinjo (toh-yam),38.783333,140.316667,,0.1,,8969,35,154,,2030-1640,.....6.,,,51238,,, +1539,J,,NHK R 2,,Toyooka (kns-hyo),35.533333,134.833333,,0.1,,9061,40,154,,2030-1500,1.....7,,,51240,,, +1539,J,,NHK R 2,,Toyooka (kns-hyo),35.533333,134.833333,,0.1,,9061,40,154,,2030-1635,.2345..,,,51240,,, +1539,J,,NHK R 2,,Toyooka (kns-hyo),35.533333,134.833333,,0.1,,9061,40,154,,2030-1640,.....6.,,,51240,,, +1539,J,,NHK R 2,,Tsunan (chu-nii),37.033333,138.683333,,0.1,,9077,37,154,,2030-1500,1.....7,,,51241,,, +1539,J,,NHK R 2,,Tsunan (chu-nii),37.033333,138.683333,,0.1,,9077,37,154,,2030-1635,.2345..,,,51241,,, +1539,J,,NHK R 2,,Tsunan (chu-nii),37.033333,138.683333,,0.1,,9077,37,154,,2030-1640,.....6.,,,51241,,, +1539,J,ja,NHK R 2,,Johen,34.5,134,,0.1,,9124,41,154,,,,,,31400115,,, +1539,J,,NHK R 2,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,2030-1500,1.....7,,,51237,,, +1539,J,,NHK R 2,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,2030-1635,.2345..,,,51237,,, +1539,J,,NHK R 2,,Owase (kns-mie),34.066667,136.2,,0.1,,9264,40,155,,2030-1640,.....6.,,,51237,,, +1539,J,,NHK R 2,,Tokunoshima (kyu-kag),27.75,129.016667,,0.1,,9532,48,155,,2030-1500,1.....7,,,51239,,, +1539,J,,NHK R 2,,Tokunoshima (kyu-kag),27.75,129.016667,,0.1,,9532,48,155,,2030-1635,.2345..,,,51239,,, +1539,J,,NHK R 2,,Tokunoshima (kyu-kag),27.75,129.016667,,0.1,,9532,48,155,,2030-1640,.....6.,,,51239,,, +1539,AUS,en,5TAB,,Adelaide/Paralowie (SA),-34.757472,138.608694,,10,,15798,82,156,,0000-2400,1234567,996,,51215,,, +1539,AUS,it,2RF Rete Italia,,Sydney/Bicentennial Park (NSW),-33.847789,151.081294,,1,,16550,68,169,,0000-2400,1234567,,,51217,,, +1539,NZL,,2ZE R Sport,,Blenheim (MBH),-41.516667,173.966667,,1,,18508,44,175,,0000-2400,1234567,,,51243,,, +1540,USA,en,WDCD,i,Albany (NY),42.733611,-73.863611,,50,,5814,294,98,,,,2,,41132,,, +1540,USA,,WNWR,,Philadelphia (PA),40.046111,-75.2375,,50,,6096,292,101,,,,,,42537,,, +1540,CAN,xx,CHIN,,Toronto Island (ON),43.615278,-79.380278,,30,,6089,298,103,,0000-2400,1234567,984,,36049,,, +1540,USA,en,KXEL,,Waterloo (D) (IA),42.179722,-92.310556,,50,,6956,304,110,,,,997,,20012595,,, +1540,USA,en,KXEL,,Waterloo (N) (IA),42.18,-92.310556,,50,,6956,304,110,,,,9987,,39785,,, +1540,USA,,WACA,,Wheaton (MD),39.013889,-77.029444,,5,,6287,292,113,,,,,,40637,,, +1540,USA,,WECZ,,Punxsutawney (PA),40.96,-79.002222,,5,,6263,295,113,,,,,,41250,,, +1540,BAH,en,ZNS-1 R Bahamas,,Nassau/South Beach (npr),25.003917,-77.350333,,50,,7427,281,114,,0000-2400,1234567,998,,45502,,, +1540,USA,,WADK,,Newport (RI),41.503611,-71.311944,,1,,5741,291,114,,,,,,40651,,, +1540,USA,,WSIV,,East Syracuse (D) (NY),43.094444,-76.033333,,1,,5922,295,116,,,,,,20012572,,, +1540,USA,,WTBI,,Pickens (SC),34.860278,-82.723611,,10,,6972,293,117,,,,,,43111,,, +1540,USA,,WYNC,,Yanceyville (NC),36.414444,-79.335,,2.5,,6634,292,119,,,,958,,43532,,, +1540,USA,,WOGR,,Charlotte (NC),35.273889,-80.861111,,2.4,,6821,292,121,,,,,,42572,,, +1540,USA,,WWGK,,Cleveland (OH),41.502778,-81.6325,,1,,6383,297,121,,,,,,20000074,,, +1540,USA,,WYCL,,Niles (OH),41.132222,-80.761111,,0.5,,6358,296,124,,,,,,42926,,, +1540,USA,,WBCO,,Bucyrus (OH),40.764167,-82.934722,,0.5,,6519,297,125,,,,,,40824,,, +1540,USA,,WTXY,,Whiteville (NC),34.323056,-78.713056,,1,,6759,289,125,,,,,,43240,,, +1540,USA,,KTGG,,Spring Arbor (MI),42.153611,-84.549167,,0.45,,6508,300,126,,,,,,39478,,, +1540,USA,,WTKM,,Hartford (WI),43.28,-88.383889,,0.5,,6645,303,126,,,,,,43155,,, +1540,USA,en,WKVQ,,Eatonton (GA),33.321944,-83.4175,,1.6,,7140,292,126,,,,,,20012399,,, +1540,USA,,WSMI,,Litchfield (IL),39.1725,-89.570556,,1,,7042,300,127,,,,,,43027,,, +1540,USA,en,WGRK,,Greensburg (KY),37.259444,-85.515833,,1,,6952,296,127,,1300-0100,1234567,,,40691,,, +1540,USA,,WMYJ,,Martinsville (IN),39.408611,-86.419444,,0.5,,6835,299,128,,,,,,42288,,, +1540,USA,ko,KMPC,,Los Angeles (CA),34.078611,-118.184722,,37,,9026,316,128,,,,9865,,38925,,, +1540,PTR,es,WIBS,,Guayama (PR),17.995556,-66.0775,,1,,7249,268,129,,,,,,41721,,, +1540,USA,,WSIV,,East Syracuse (N) (NY),43.022778,-76.159444,,0.057,,5935,295,129,,,,,,43007,,, +1540,USA,en,WJZI,,Decatur (IN),40.820556,-84.92,,0.25,,6634,299,129,,,,,,40652,,, +1540,USA,es,R Misin Cristiana,,Bellevue (WA),47.591389,-122.182222,,5,,7903,326,129,,1100-1500,12345..,,,39815,,, +1540,USA,xx,KXPA,,Bellevue (WA),47.591389,-122.182222,,5,,7903,326,129,,0000-2400,1234567,,,39815,,, +1540,USA,,WLOI,,La Porte (IN),41.633611,-86.759167,,0.25,,6680,301,130,,,,,,42205,,, +1540,USA,,KGLA,,Gretna (LA),29.8875,-90.084167,,1,,7844,294,135,,,,,,38487,,, +1540,B,pt,ZYI824 Rdio Voluntrios da Patria,,Ouricuri (PE),-7.925808,-40.105256,,1,,8001,229,137,,,,,,36902610,,, +1540,DOM,,HIBU LV de La Romana,,La Romana (rom),18.416667,-68.966667,,0.25,,7411,270,137,,0930-0400,1234567,,,37225,,, +1540,MEX,es,XEHOS-AM La Poderosa,,Villa de Seris (son),29.049283,-111.007133,,5,,9139,308,137,,,,,,44132,,, +1540,B,pt,ZYJ611 Rdio Baixa Verde,,Joo Cmara (RN),-5.530556,-35.805556,,0.25,,7547,226,138,,,,994,,36902601,,, +1540,DOM,,HIFP R Criolla Comercial,,Santo Domingo (sdo),18.466667,-69.875,,0.25,,7468,271,138,,,,,,37247,,, +1540,USA,,WXEX,,Exeter (NH),42.989722,-70.937222,,0.003,,5612,292,138,,,,,,41521,,, +1540,USA,es,KZMP,,University Park (TX),32.8125,-97.008333,,0.75,,8014,301,138,,,,,,39893,,, +1540,B,pt,ZYH611 Rdio Sant'ana,,Tiangu (CE),-3.743489,-41.006275,,0.25,,7640,232,139,,,,99,,36902618,,, +1540,B,pt,ZYH631 Rdio Sertes,,Mombaa (CE),-5.748189,-39.626669,,0.25,,7762,230,141,,,,,,36902621,,, +1540,B,pt,ZYI694 Rdio Santa Maria,,Monteiro (PB),-7.896867,-37.123925,,0.25,,7847,226,141,,,,,,36902620,,, +1540,PRU,es,OCU2X R Turbo Mix,,Cajamarca (caj),-7.158522,-78.461972,,5,,10287,262,141,,,,500,,37000033,,, +1540,USA,,KEDA,,San Antonio (TX),29.358333,-98.351389,,1,,8394,299,141,,,,,,38313,,, +1540,B,pt,ZYH921 Rdio Santa Maura,,Lago da Pedra (MA),-4.293794,-45.242272,,0.25,,7926,236,142,,,,,,36902599,,, +1540,B,pt,ZYI545 Rdio Boa Vista,,So Sebastio da Boa Vista (PA),-1.716667,-49.530556,,0.25,,7931,241,142,,,,,,36902603,,, +1540,CLM,,HJBV,,Cartagena (bol),10.566667,-75.466667,,1,,8529,270,142,,,,,,37359,,, +1540,EQA,,HCHG3 R Flecha AM,,Machala (oro),-3.266667,-79.966667,,3,,10047,265,142,,,,,,36967,,, +1540,PRU,es,OAX6Q R Milenio Universal,,Arequipa (are),-16.316667,-71.566667,,5,,10639,251,142,,,,,,40339,,, +1540,CLM,es,HJA26,,Belmira (ant),6.6,-75.666667,,1,,8888,268,143,,,,,,35902261,,, +1540,CLM,es,HJHD,,Barrancabermeja (sat),7.066667,-73.816667,,1,,8721,267,143,,,,,,37467,,, +1540,USA,en,WREJ,,Richmond (VA),37.618889,-77.424167,,0.007,,6419,291,143,,,,98,,42834,,, +1540,CLM,es,HJZF R Cndor,,Manizales (cal),5.15,-75.583333,,1,,9009,267,144,,,,994,,37662,,, +1540,CTR,,Enlace R,,Pavas (sjs),9.95,-84.133333,,1,,9173,277,144,,,,,,52163,,, +1540,HND,,HRYK,,Tegucigalpa (fmz),14.083333,-87.2,,1,,9019,282,144,,,,,,37883,,, +1540,USA,,WBTC,,Uhrichsville (OH),40.423889,-81.363056,,0.005,,6449,296,144,,,,,,40915,,, +1540,CAN,en,CBXH,,Cooper Creek (BC),50.206944,-116.970556,,0.04,,7454,325,145,,,,,,20109219,,, +1540,MEX,es,XENC-AM La Autntica,,Celaya (gua),20.506667,-100.811944,,1,,9330,296,145,,,,,,44442,,, +1540,MEX,es,XERTP-AM La Poderosa,,San Martin Texmelucan (pue),19.266158,-98.3922,,1,,9291,293,145,,,,,,44716,,, +1540,USA,,KGBC,,Galveston (TX),29.315278,-94.805278,,0.25,,8185,297,145,,,,,,20012581,,, +1540,EQA,,HCDP1 Caracol,,Quito (pic),-0.216667,-78.5,,1,,9679,266,146,,,,,,36903,,, +1540,EQA,,HCPV1,,Mira (nap),-0.566667,-78.016667,,1,,9677,265,146,,,,,,37064,,, +1540,EQA,,HCVB7 La Voz del Upano,,Macas (mor),-2.316667,-78.2,,1,,9844,264,146,,,,,,37145,,, +1540,HWA,ko,KREA,,Honolulu (HI),21.324167,-157.879722,,5,,11708,345,146,,,,0,,39233,,, +1540,MEX,es,XESTN-AM R RED,,Monterrey (nvl),25.668056,-100.311944,,0.5,,8838,299,146,,,,,,44773,,, +1540,B,pt,ZYK723 Rdio Nova Difusora,,So Paulo/Osasco (SP),-23.559611,-46.792167,,1,,9869,227,147,,,,,,36902623,,, +1540,B,pt,ZYN601 Rdio Regional Piravev,,Ivinhema (MS),-22.292222,-53.810556,,1,,10117,233,147,,,,,,36902622,,, +1540,GTM,,TGRF R Cultura y Deportes,,Ciudad de Guatemala (gut),14.616667,-90.516667,,0.5,,9193,284,147,,,,,,40528,,, +1540,PRU,es,OBX1B R La Voz de la Frontera,,Tumbes (tum),-3.566667,-80.5,,1,,10110,265,147,,,,,,40380,,, +1540,B,pt,ZYH511 Rdio Jornal,,Souto Soares (BA),-12.087778,-41.646944,,0.25,,8489,228,148,,,,3,,36902608,,, +1540,B,pt,ZYJ206 Litornea AM,,Guaratuba (PR),-25.911111,-48.569722,,1,,10185,227,148,,,,84,,36902617,,, +1540,BOL,,R.Bendita Trindad y Espirito Santo,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,,,429,,52448,,, +1540,CLM,es,HKP50,,Arjona (bol),10.25,-75.35,,0.25,,8548,270,148,,,,,,35902264,,, +1540,URG,es,CX154 R Patria,,Treinta y Tres (tt),-33.216667,-54.366667,,2,,11170,228,148,,0800-0300,1234567,18,,36798,,, +1540,B,pt,Alto do Vale AM,,Lageado (RS),-29.466944,-51.961389,,1,,10696,228,149,,,,,,36902604,,, +1540,BOL,,R Sariri,,Escoma (lpz),-15.661111,-69.125,,0.8,,10424,249,149,,1000-1300,1234567,206,,52066,,, +1540,BOL,,R Sariri,,Escoma (lpz),-15.661111,-69.125,,0.8,,10424,249,149,,2200-0235,1234567,206,,52066,,, +1540,EQA,,HCMH6,,Latacunga (cot),-0.916667,-78.566667,,0.5,,9745,265,149,,,,,,37026,,, +1540,PRU,es,OBZ4U R Barranca,,Barranca (lim),-10.816667,-77.75,,1,,10561,259,149,,,,,,40424,,, +1540,B,pt,ZYK282 Rdio Quara AM,,Quara/Estrada Vicinal (RS),-30.364444,-56.446111,,1,,11013,231,150,,,,,,36902605,,, +1540,EQA,,HCFM2,,Ventanas (rio),-1.5,-79.5,,0.45,,9860,266,150,,,,,,36940,,, +1540,B,pt,ZYL217 Rdio Difusora Bondespachense,,Bom Despacho (MG),-19.745361,-45.239372,,0.25,,9420,228,151,,,,,,36902615,,, +1540,B,pt,ZYL226 Rdio Clube de Minas Gerais,,Conselheiro Lafaiete (MG),-20.64815,-43.790628,,0.25,,9436,226,151,,,,,,36902600,,, +1540,CLM,es,HKR80,,Sacama (cas),6.1,-72.25,,0.15,,8699,265,151,,,,,,35902284,,, +1540,ARG,,R Fuego,,Longchamps (ba),-34.866667,-58.383333,,1,,11529,230,152,,,,,,51900,,, +1540,ARG,es,AM 15-40,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51899,,, +1540,ARG,es,R Cotidiana,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000018,,, +1540,B,pt,Ativa AM 1540,,Barra do Bugres (MT),-15.0719,-57.211839,,0.25,,9636,240,152,,,,,,36902602,,, +1540,B,pt,ZYJ508 Super Rdio Clube,,Paraba do Sul (RJ),-22.151322,-43.274233,,0.25,,9558,225,152,,,,98,,36902619,,, +1540,B,pt,ZYK514 Rdio Cultura,,Leme (SP),-22.1813,-47.368942,,0.25,,9765,228,152,,,,,,36902612,,, +1540,B,pt,ZYL293 Rdio Tropical de Trs Coraes,,Trs Coraes (MG),-21.689733,-45.235711,,0.25,,9609,227,152,,,,,,36902613,,, +1540,USA,,WBIN,,Benton (TN),35.180556,-84.642778,,0.004,,7066,294,152,,,,,,40860,,, +1540,B,pt,ZYK564 Rdio Emissora de Botucatu,,Botucatu (SP),-22.877114,-48.436494,,0.25,,9887,229,153,,,,,,36902614,,, +1540,B,pt,ZYK737 Rdio Central de Pompia,,Pompia/Rua Zaki Haddad (SP),-22.096206,-50.186861,,0.25,,9903,231,153,,,,,,36902609,,, +1540,USA,en,WQCX654,,Pensacola (FL),30.416667,-87.216667,,0.01,,7620,292,153,,,,,,20010719,,, +1540,USA,en,WQCX654,,Pensacola/6575 North W Street (FL),30.482778,-87.261944,,0.01,,7617,292,153,,,,,,20010720,,, +1540,CHL,,CB154 R Sudamerica,,Santiago (RM),-33.516667,-70.666667,,1,,12091,239,154,,1200-0030,1234567,,,35745,,, +1540,PRU,es,OBX4N R Corporacion,,Cerro de Pasco (pas),-10.666667,-76,,0.3,,10431,257,154,,,,942,,40394,,, +1540,B,pt,ZYJ803 Rdio Capinzal,,Capinzal (SC),-27.347778,-51.585556,,0.25,,10476,229,155,,,,,,36902607,,, +1540,CHL,,CC154 R Central,,Chilln (BI),-36.533333,-72.066667,,1,,12431,238,155,,,,,,35825,,, +1540,USA,,WKDG,,Sumiton (AL),33.763889,-87.063056,,0.003,,7332,295,155,,,,,,42920,,, +1540,B,,ZYK297,,Santiago (RS),-29.183333,-54.866667,,0.25,,10820,231,156,,,,,,46327,,, +1540,PRG,,ZP54,,Ita Cora Nee (neb),-27.166667,-58.166667,,0.25,,10811,234,156,,,,,,45551,,, +1540,USA,,WJJT,,Jellico (TN),36.583056,-84.136111,,0.001,,6922,295,156,,,,,,41889,,, +1540,USA,,WBNL,,Boonville (IN),38.066111,-87.274167,,0.001,,6994,298,157,,,,,,40885,,, +1540,ARG,,LT35 R Mon,,Pergamino (ba),-33.883333,-60.566667,,0.25,,11555,232,158,,0930-0400,1234567,,,40186,,, +1540,ARG,,LU28 R Tuyu,,General Madariaga (ba),-37,-57.116667,,0.25,,11659,228,158,,1000-0300,1234567,,,40224,,, +1540,USA,,WKXG,,Greenwood (MS),33.52,-90.141111,,0.002,,7542,297,159,,,,,,42096,,, +1540,USA,,KASA,,Phoenix (AZ),33.376667,-112.090278,,0.019,,8793,312,160,,,,9982,,37970,,, +1540,USA,,KBOA,,Kennett (MO),36.253056,-90.048889,,0.001,,7309,298,160,,,,,,38072,,, +1540,USA,,KNGL,,McPherson (KS),38.338611,-97.668056,,0.002,,7577,305,160,,,,,,38992,,, +1540,URG,,CW154 R Charrua,,Paysand (pa),-32.166667,-58.016667,,0.1,,11263,231,161,,1000-0300,1234567,,,36757,,, +1540,CHL,,CD154 R San Jose de Alcudia,,Ro Bueno (LL),-40.316667,-72.966667,,0.25,,12799,236,162,,0955-0300,1234567,,,35890,,, +1540,URG,,CV154 R Centro,,Cardona (so),-33.866667,-57.366667,,0.1,,11385,230,162,,0900-0200,1234567,98,,36734,,, +1540,USA,,KLKC,,Parsons (KS),37.343056,-95.231944,,0.001,,7523,303,162,,,,,,38823,,, +1540,USA,,KDYN,,Ozark (AR),35.487778,-93.811944,,0.001,,7597,300,163,,,,,,38305,,, +1542,INS,id,R Idola Siaran Gema Isa,,Jakarta area (JK),-6.166667,106.833333,,1,,11259,86,151,,,,,,51249,,, +1545,BOL,,CP191 R Mejillones,,Tarata (cbb),-17.6,-66.016667,,0.35,,10402,246,153,,1900-0400,1234567,,,36677,,, +1548,G,en,Gold,,London/Saffron Green (EN-HTS),51.665556,-0.242222,,98,,459,266,42,,0000-2400,1234567,0,,1612,,, +1548,MDA,,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1830-1845,1234567,0,,1620,,, +1548,MDA,,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1915-1945,12345..,0,,1620,,, +1548,MDA,bg,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1800-1830,1234567,0,,1620,,, +1548,MDA,ro,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1845-1915,12345..,0,,1620,,, +1548,MDA,ro,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1845-1945,.....67,0,,1620,,, +1548,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,0400-0800,1234567,0,,1620,,, +1548,MDA,ru,Voice of Russia,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1700-1800,1234567,0,,1620,,, +1548,MDA,sr,TWR Europe,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1945-2000,1234567,0,,1620,,, +1548,MDA,sr,Voice of Russia,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,1500-1700,1234567,0,,1620,,, +1548,MDA,sr,Voice of Russia,,Grigoriopol/Maiac (TN),47.278247,29.442828,,500,245,1733,99,47,,2000-2130,1234567,0,,1620,,, +1548,G,en,BBC R 5 Live,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,5,,614,267,56,,0000-0600,123456,,,1611,,, +1548,G,en,BBC R 5 Live,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,5,,614,267,56,,0000-0700,......7,,,1611,,, +1548,G,en,BBC R Bristol,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,5,,614,267,56,,0600-2400,123456,,,1611,,, +1548,G,en,BBC R Bristol,,Bristol/Mangotsfield (EN-BRI),51.5005,-2.4735,,5,,614,267,56,,0700-2400,......7,,,1611,,, +1548,G,en,Forth 2,,Edinburgh/Colinswell (SC-FIF),56.061667,-3.253167,,2.2,,767,309,61,,0000-2400,1234567,992,,1615,,, +1548,G,en,Magic Liverpool,,Liverpool/Bebington (EN-MER),53.347889,-2.975444,,1,,646,286,63,,0000-2400,1234567,9958,,1614,,, +1548,G,en,Magic AM,,Sheffield/Skew Hill (EN-SYK),53.436444,-1.506917,,0.74,,552,289,64,,0000-2400,1234567,9983,,1613,,, +1548,KWT,ar,R Sawa,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,600,323,4201,110,71,,0000-2400,1234567,988,,1619,,, +1548,IRN,fa,IRIB R Iran,,Shahroud (smn),36.383528,55.018883,,50,,4152,95,82,,0000-2400,1234567,,,10800002,,, +1548,IRN,fa,IRIB R Iran,,Sanandaj (kdn),35.320278,46.986056,,10,,3690,104,84,,0000-2400,1234567,,,1824,,, +1548,IRN,fa,IRIB R Mazandaran,,Larijan (mzd),35.908031,52.226678,,10,,3997,98,87,,0000-2400,1234567,,,1823,,, +1548,IRN,fa,IRIB R Yasuj,,Gachsaran (kba),30.361933,50.794097,,15,,4332,106,89,,0330-2100,1234567,,,1825,,, +1548,IRN,fa,IRIB Sedaye Khorasan-e Jonubi,,Ferdows (skh),34.029417,58.172278,,10,,4540,95,92,,0000-2400,1234567,,,1618,,, +1548,CLN,,Athmeeya Yathra,,Trincomalee (tcm),8.748528,81.120639,,400,35,8199,97,113,,0000-0045,1234567,990,,51260,,, +1548,CLN,,Athmeeya Yathra,,Trincomalee (tcm),8.748528,81.120639,,400,35,8199,97,113,,1300-1530,1234567,990,,51260,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Linyi (SD),35.078333,118.328056,,200,,8293,52,117,,2125-1700,1234567,,,51251,,, +1548,CHN,bo,Xizang RGD,,Nyalam=Nielamu (XZ),27.991111,85.983889,,1,,6901,79,126,,2100-1805,1234567,,,36201225,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Jining (SD),35.466667,116.583333,,10,,8164,53,129,,2125-1700,1234567,,,36200363,,, +1548,PHL,tl,DZST-AM Super Radyo,,Dagupan City (pgs),16.033333,120.333333,,10,,10144,61,138,,2015-1505,1234567,,,51256,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Longkou (SD),37.659389,120.328333,,1,,8166,49,139,,2125-1700,1234567,,,36201224,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Weifang (SD),36.731389,119.136667,,1,,8187,50,139,,2125-1700,1234567,,,36200255,,, +1548,CHN,zh,Shandong RGD Xinwen Pindao,,Qingdao/SDTS135 (SD),36.121111,120.350556,,1,,8306,50,140,,2125-1700,1234567,,,36200364,,, +1548,PHL,tl,DYDM-AM Radyo Totoo,,Maasin City (lyt),10.133333,124.85,,5,,10961,61,143,,2030-1330,1234567,,,51258,,, +1548,AFS,en,R Islam,,Lenasia (GT),-26.357472,27.89945,,1,,8973,161,144,,0000-2400,1234567,,,2549,,, +1548,AUS,en,4QD ABC Capricornia,,Emerald (QLD),-23.459422,148.1493,,50,,15474,60,148,,0000-2400,1234567,127,,51250,,, +1548,NZL,,1XN LiveSPORT,,Rotorua/Hinemoa Point (BOP),-38.124444,176.289722,,0.99,,18273,31,174,,,,,,51255,,, +1548,NZL,,The Coast,,Palmerston North/Setters Line (MWT),-40.3,175.6,,1,,18464,36,175,,,,,,32500004,,, +1550,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,0600-1215,1234567,30,,1624,,, +1550,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,1700-1715,1234567,30,,1624,,, +1550,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,1800-2330,1234567,30,,1624,,, +1550,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,1215-1300,1234567,30,,1624,,, +1550,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,50,,2986,209,70,,1715-1800,1234567,30,,1624,,, +1550,USA,,WITK,,Pittston (PA),41.345833,-75.785556,,10,,6035,294,107,,,,,,41817,,, +1550,CAN,fr,CBEF,,Windsor (ON),42.215556,-82.920833,,10,,6407,299,111,,,,2,,35774,,, +1550,USA,en,WSDK,,Bloomfield (CT),41.863056,-72.733611,,2.4,,5805,292,111,,,,9981,,41231,,, +1550,USA,,WKBA,,Vinton (VA),37.29,-79.922778,,10,,6602,293,113,,,,,,41958,,, +1550,CAN,fr,CBSI-8,,La Romaine (QC),50.216111,-60.674722,,0.04,,4512,295,116,,,,,,20109220,,, +1550,USA,,WHIT,,Madison (WI),43.002222,-89.386944,,5,,6724,303,117,,,,,,43231,,, +1550,USA,,WCGR,,Canandaigua (NY),42.881111,-77.250556,,0.25,,6013,296,123,,,,,,40987,,, +1550,USA,es,WRHC,,Coral Gables (D) (FL),25.650556,-80.16,,10,,7560,284,123,,,,,,42848,,, +1550,USA,,WBFJ,,Winston-Salem (NC),36.109167,-80.245556,,1,,6715,292,124,,,,,,40840,,, +1550,CUB,es,R Rebelde,,Santa Clara/CTOM4 (vc),22.404711,-79.893633,,10,,7815,281,125,,,,2,,31600121,,, +1550,USA,xx,KRPI,,Ferndale (WA),48.843056,-122.601389,,10,,7799,327,125,,,,6,,39286,,, +1550,USA,,KUAZ,i,Tucson (AZ),32.3725,-111.097778,,50,,8835,310,126,,,,26,,39561,,, +1550,USA,en,KKOV,,Vancouver (WA),45.646389,-122.514167,,12,,8103,325,127,,,,996,,38701,,, +1550,CUB,es,R Rebelde,,Cienfuegos/Tulipn (cf),22.157414,-80.430478,,5,,7872,282,129,,,,,,31600066,,, +1550,CUB,es,R Rebelde,,Circunvalacin (ma),23.016667,-81.616667,,5,,7878,283,129,,,,,,31600091,,, +1550,CUB,es,R Rebelde,,Crdenas/CTOM1 (ma),23.045514,-81.204964,,5,,7848,283,129,,,,9957,,31600094,,, +1550,USA,,WLTI,,New Castle (IN),39.933056,-85.407222,,0.25,,6733,298,130,,,,,,42299,,, +1550,VEN,,YVXO R Impacto,,Ciudad Ojeda (zul),10.2,-71.316667,,10,,8277,267,130,,,,,,51710,,, +1550,USA,,WNDI,,Sullivan (IN),39.075556,-87.399167,,0.25,,6921,299,132,,,,,,42451,,, +1550,USA,,KESJ,,St. Joseph (MO),39.8275,-94.810833,,0.5,,7290,304,133,,,,,,39350,,, +1550,USA,,KZDG,,San Francisco (CA),37.530278,-122.274722,,10,,8878,321,133,,,,9962,,39844,,, +1550,CUB,es,R Rebelde,,Guantnamo/CTOM2 (gu),20.1671,-75.169889,,1,,7685,276,134,,,,,,31600073,,, +1550,MEX,es,XERUV-AM R UV,,Xalapa (vcz),19.58545,-96.999206,,10,,9175,292,134,,,,,,44719,,, +1550,SLV,es,YSCZ,,San Salvador (ssl),13.716667,-89.2,,10,,9185,283,134,,,,,,31100011,,, +1550,CLM,es,HKX29,,Tib (nsa),8.65,-72.733333,,5,,8509,267,135,,,,,,35902308,,, +1550,CUB,es,R Rebelde,,Sagua La Grande (vc),22.806986,-80.112372,,1,,7796,282,135,,,,,,31600119,,, +1550,CUB,es,R Rebelde,,Yaguajay (ss),22.311972,-79.216556,,1,,7777,281,135,,,,,,31600117,,, +1550,PTR,,WKFE,,Yauco (PR),18.023333,-66.867222,,0.25,,7301,268,136,,0000-2400,1234567,,,42002,,, +1550,USA,,WNZF,,Bunnell (FL),29.469167,-81.266667,,0.25,,7317,287,136,,,,,,20000060,,, +1550,USA,es,WRHC,,Coral Gables (N) (FL),25.743333,-80.314444,,0.5,,7563,284,136,,,,,,20016111,,, +1550,CLM,es,HJE68,,Aguadas (cal),5.616667,-75.466667,,5,,8961,267,137,,,,,,35902359,,, +1550,CLM,es,HJZI G12 R,,Bogot D. C. (bdc),4.716667,-74.116667,,5,,8947,265,137,,,,42,,37665,,, +1550,USA,,WDLR,,Delaware (OH),40.298889,-83.046111,,0.029,,6562,297,138,,,,,,43486,,, +1550,B,pt,ZYJ606 Rdio Ivipanin,,Areia Branca (RN),-4.95,-37.133333,,0.25,,7556,228,139,,,,,,36902638,,, +1550,USA,,KXEX,,Fresno (CA),36.770556,-119.922222,,2.5,,8848,319,139,,,,,,39791,,, +1550,USA,en,WNTN,,Newton (MA),42.3575,-71.241667,,0.003,,5675,292,139,,,,9981,,42520,,, +1550,B,pt,ZYI550 Rdio Cabano,,Maracan (PA),-0.781161,-47.45045,,0.25,,7720,240,140,,,,,,36902626,,, +1550,B,pt,ZYI700 Rdio Jardim da Borborema,,Areia (PB),-6.964511,-35.697861,,0.25,,7685,225,140,,,,,,36902636,,, +1550,BOL,,CP115 R Caranavi,,Caranavi (lpz),-15.8,-67.516667,,5,,10334,248,141,,0930-1800,1234567,,,36631,,, +1550,BOL,,CP115 R Caranavi,,Caranavi (lpz),-15.8,-67.516667,,5,,10334,248,141,,2200-0200,1234567,,,36631,,, +1550,USA,,WAMA,,Tampa (FL),27.921111,-82.394722,,0.133,,7518,287,141,,,,,,40701,,, +1550,USA,,WTTC,,Towanda (PA),41.765278,-76.486111,,0.004,,6047,294,141,,,,,,43222,,, +1550,USA,en,WUSP,,Utica (NY),43.113333,-75.256944,,0.003,,5873,295,141,,,,,,43271,,, +1550,B,pt,ZYJ814 Rdio Imigrantes AM,,Turvo (SC),-28.932778,-49.681667,,5,,10530,227,142,,,,,,36902642,,, +1550,CLM,es,HJCB R El Sol La Carinosa,,Barranquilla (atl),10.866667,-74.75,,1,,8454,270,142,,1000-0300,1234567,998,,37364,,, +1550,USA,,KAPE,,Cape Girardeau (MO),37.279444,-89.559722,,0.048,,7195,299,142,,,,,,37958,,, +1550,USA,,WMRE,,Charlestown (WV),39.273056,-77.865556,,0.006,,6320,293,142,,,,,,42384,,, +1550,CLM,,HJGY,,Lorica (cor),9.216667,-75.833333,,1,,8671,270,143,,,,,,37465,,, +1550,USA,,KMRI,,West Valley City (UT),40.721111,-112.041389,,0.34,,8112,316,143,,,,,,38930,,, +1550,USA,,WLOR,,Huntsville (AL),34.8525,-86.652778,,0.044,,7217,295,143,,,,,,42211,,, +1550,USA,en,WPSK550,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010721,,, +1550,B,pt,ZYJ217 Itay AM,,Tibagy/Lapa (PR),-25.773611,-49.730833,,2.5,,10231,228,144,,,,,,36902643,,, +1550,CLM,es,HJLT Revivir en Cristo,,Cali (val),3.5,-76.516667,,1,,9218,267,144,,,,73,,37557,,, +1550,CLM,es,HJQD R Reloj 1550,,Calarca (qui),4.516667,-75.616667,,1,,9067,266,144,,,,97,,37630,,, +1550,HND,,HRNN37,,San Pedro Sula (cor),15.5,-88.016667,,1,,8950,283,144,,,,,,37816,,, +1550,MEX,es,XEBG-AM Cadena 1550,,Tijuana (bcn),32.51215,-117.015714,,1,,9120,315,144,,,,3,,43776,,, +1550,USA,,WCLY,,Raleigh (NC),35.760278,-78.657222,,0.008,,6642,291,144,,,,,,41033,,, +1550,USA,en,WZUM,,Reserve Township (PA),40.413056,-79.853889,,0.004,,6357,295,144,,,,,,20000054,,, +1550,B,pt,ZYH518 Rdio So Francisco,,Juazeiro (BA),-9.446433,-40.496556,,0.25,,8171,229,145,,,,5,,36902641,,, +1550,MEX,es,XEREL-AM R Michoacn,,Morelia (mic),19.679928,-101.234303,,1,,9430,296,145,,,,,,44668,,, +1550,USA,,KDCC,,Dodge City (KS),37.787222,-100.031944,,0.09,,7755,306,145,,,,,,38243,,, +1550,USA,en,KNSH,,Canyon (TX),34.981667,-101.955,,0.219,,8107,306,145,,,,,,39907,,, +1550,USA,en,WPSL489,,North Wilkesboro (NC),36.166667,-81.15,,0.01,,6768,293,145,,,,,,20010722,,, +1550,EQA,,HCEI6,,Montalvo (tun),-1.216667,-78.633333,,1,,9776,265,146,,,,,,36915,,, +1550,EQA,,HCRA7,,Amazonas (nap),-0.3,-77.766667,,1,,9637,265,146,,,,,,37069,,, +1550,USA,,KKLE,,Winfield (KS),37.236389,-97.025278,,0.052,,7634,304,146,,,,,,38727,,, +1550,USA,,KMAD,,Madill (OK),34.106667,-96.775,,0.09,,7888,301,146,,,,,,38872,,, +1550,USA,,WKTF,,Vienna (GA),32.128889,-83.796111,,0.023,,7261,291,146,,,,,,42076,,, +1550,USA,es,KWRN,,Apple Valley (CA),34.536667,-117.156111,,0.5,,8934,316,146,,,,9968,,39750,,, +1550,B,pt,ZYK590 Rdio Guaruj AM,,Guaruj (SP),-23.998483,-46.277339,,1,,9886,227,147,,,,98,,36902640,,, +1550,BOL,,CP205 R Tamengo,,Puerto Quijarro (scz),-17.783333,-57.766667,,1,,9920,239,147,,,,,,52069,,, +1550,EQA,,HCAD5,,Santa Isabel (loj),-3.316667,-79.316667,,1,,10007,265,147,,,,,,36837,,, +1550,USA,,KICS,,Hastings (NE),40.5675,-98.375278,,0.027,,7426,307,147,,,,,,38580,,, +1550,USA,,KLFJ,,Springfield (MO),37.195833,-93.318611,,0.028,,7424,301,147,,,,,,38807,,, +1550,USA,,WCSJ,,Morris (IL),41.341389,-88.425278,,0.006,,6800,301,147,,,,,,41084,,, +1550,USA,,WIGN,,Bristol (TN),36.565833,-82.1575,,0.006,,6800,294,147,,,,,,40828,,, +1550,USA,,WJIL,,Jacksonville (IL),39.722222,-90.195278,,0.01,,7034,301,147,,,,,,41880,,, +1550,USA,,WTHB,,Augusta (GA),33.5,-81.934167,,0.011,,7031,291,147,,,,,,43132,,, +1550,USA,en,WPTC653,,Cherokee (NC),35.473056,-83.321111,,0.01,,6960,293,147,,,,,,20010724,,, +1550,USA,es,WAZX,,Smyrna (GA),33.857778,-84.644167,,0.016,,7174,293,147,,,,,,40792,,, +1550,MEX,es,XENU-AM La Rancherita,,Nuevo Laredo (tam),27.494722,-99.547778,,0.25,,8630,299,148,,,,,,44461,,, +1550,USA,,KYAL,,Sapulpa (OK),36.018889,-96.098611,,0.04,,7685,302,148,,,,,,39839,,, +1550,USA,,WCVL,,Crawfordsville (IN),40.065556,-86.933611,,0.005,,6814,299,148,,,,,,41109,,, +1550,USA,,WEVR,,River Falls (WI),44.888611,-92.650556,,0.004,,6756,307,148,,,,,,41339,,, +1550,USA,,WIRV,,Irvine (KY),37.715833,-83.974722,,0.005,,6821,296,148,,,,,,41801,,, +1550,USA,,WOCC,,Corydon (IN),38.190556,-86.133333,,0.006,,6915,297,148,,,,,,42559,,, +1550,USA,en,WPSQ852,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20010723,,, +1550,PRU,,OAU3D,,Chimbote (anc),-9.075,-78.583333,,1,,10464,260,149,,,,,,37000091,,, +1550,USA,,WPFC,,Baton Rouge (LA),30.501944,-91.210833,,0.042,,7862,295,149,,,,,,42671,,, +1550,USA,en,WSRY,,Elkton (MD),39.595833,-75.797222,,0.001,,6165,292,149,,,,,,43467,,, +1550,B,pt,ZYK377 AM 1550,,Capo do Leo (RS),-31.759444,-52.408056,,1,,10935,227,150,,,,,,36902645,,, +1550,EQA,,HCAD2,,El Triunfo (gua),-2.166667,-79.416667,,0.5,,9913,265,150,,,,,,36835,,, +1550,EQA,,HCDP1,,Quito (pic),-0.166667,-78.466667,,0.36,,9673,266,150,,,,,,36904,,, +1550,USA,,KIWA,,Sheldon (IA),43.181389,-95.865556,,0.006,,7071,307,150,,,,,,38648,,, +1550,USA,,WMSK,,Morganfield (KY),37.667778,-87.929444,,0.006,,7066,298,150,,,,,,42391,,, +1550,B,pt,ZYL211 Rdio Cultura,,Monte Carmelo (MG),-18.717711,-47.498678,,0.25,,9437,230,151,,,,,,36902632,,, +1550,CLM,es,HKW50,,Mallama (nar),1.133333,-77.85,,0.25,,9516,266,151,,,,,,35902313,,, +1550,USA,,KCOM,,Comanche (TX),31.898333,-98.587222,,0.054,,8186,301,151,,,,,,38194,,, +1550,ARG,,R Trompeta de Dios,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,,,51902,,, +1550,ARG,,R Urkupia,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,,,51893,,, +1550,B,pt,Suprema AM,,Cacoal (RO),-11.418056,-61.433333,,0.25,,9556,246,152,,,,,,36902633,,, +1550,B,pt,ZYJ479 Rdio Imperial,,Petrpolis/Colina de Fatima (RJ),-22.512317,-43.186314,,0.25,,9589,225,152,,,,7,,36902627,,, +1550,B,pt,ZYK528 Rdio Tamba,,Tamba/Chcara Ip (SP),-21.701211,-47.284647,,0.25,,9714,229,152,,,,,,36902625,,, +1550,B,pt,ZYK659 Lidersom AM,,So Joaquim da Barra (SP),-20.58,-47.869167,,0.25,,9636,230,152,,,,,,36902629,,, +1550,B,pt,ZYK740 Rdio Nova Difusora,,Auriflama (SP),-20.695322,-50.556056,,0.25,,9789,232,152,,,,,,36902628,,, +1550,B,pt,ZYL222 Rdio Difusora,,Carmo do Rio Claro (MG),-20.970958,-46.133717,,0.25,,9585,228,152,,,,,,36902646,,, +1550,B,pt,ZYL289 Rdio Difusora Santaritense,,Santa Rita do Sapuca (MG),-22.238989,-45.703033,,0.25,,9686,227,152,,,,,,36902624,,, +1550,ARG,,R Tiempo,,Mar del Plata (ba),-38,-57.566667,,1,,11773,227,153,,,,,,51901,,, +1550,B,,ZYJ206,,Jacarezinho (PR),-23.133333,-49.966667,,0.25,,9990,230,153,,,,,,45933,,, +1550,B,pt,ZYK501 Rdio Clube de Itarar,,Itarar (SP),-24.105972,-49.332017,,0.25,,10051,229,153,,,,,,36902637,,, +1550,B,pt,ZYK572 Caique AM-R.Cacique de Capivari,,Capivari (SP),-23.000706,-47.511717,,0.25,,9851,228,153,,,,,,36902634,,, +1550,USA,,KXTO,,Reno (NV),39.5775,-119.847778,,0.094,,8576,320,153,,,,,,39830,,, +1550,B,pt,ZYJ213 Rdio Ipiranga,,Palmeira/Alto da Escola Rural (PR),-25.417222,-50.021389,,0.25,,10212,229,154,,,,,,36902635,,, +1550,B,pt,ZYJ303 Rdio Pioneira AM,,Formosa do Oeste (PR),-24.336111,-53.288889,,0.25,,10281,232,154,,,,,,36902631,,, +1550,B,pt,ZYJ315 Rdio Cristal AM,,Marmeleiro (PR),-26.144444,-53.018889,,0.25,,10437,231,154,,,,,,36902644,,, +1550,CHL,,CC155 R Manuel Rodriguez,,San Fernando (LI),-34.566667,-71,,1,,12201,239,154,,1100-0400,1234567,,,35826,,, +1550,USA,,WZRK,,Lake Geneva (WI),42.594167,-88.39,,0.001,,6699,302,154,,,,,,43592,,, +1550,B,,ZYJ734,,Ararangu (SC),-28.916667,-49.5,,0.25,,10520,227,155,,,,,,46148,,, +1550,B,pt,ZYK375 Rdio Soledade,,Soledade (RS),-28.835278,-52.5,,0.25,,10664,229,155,,,,,,36902639,,, +1550,CLM,es,HKW53,,El Tabln (nar),1.433333,-77.1,,0.1,,9439,266,155,,,,,,35902324,,, +1550,CLM,es,HKW55,,Guachucal (nar),0.966667,-77.733333,,0.1,,9523,266,155,,,,,,35902316,,, +1550,USA,,KWBC,,Navasota (TX),30.38,-96.100278,,0.026,,8171,299,155,,,,,,39690,,, +1550,USA,en,KRKE,,Albuquerque (NM),35.170556,-106.630833,,0.027,,8344,309,156,,,,,,38726,,, +1550,ARG,,LT40 R LV de la Paz,,La Paz (er),-30.716667,-59.616667,,0.25,,11216,233,157,,0900-0100,1234567,,,40192,,, +1550,URG,,CV155 R Agraciada,,Mercedes (so),-33.216667,-58,,0.25,,11358,231,157,,0800-0300,1234567,,,36735,,, +1550,URG,,CW155 R Sarandi del Yi,,Sarand del Y (du),-33.316667,-55.616667,,0.25,,11243,229,157,,1030-0130,1234567,,,36758,,, +1550,ARG,,LT23 R Regional,,San Genaro Norte (sf),-32.366667,-61.283333,,0.25,,11457,233,158,,0900-0300,1234567,967,,40175,,, +1550,ARG,,LT32 R Chivilcoy,,Chivilcoy (ba),-34.883333,-60.016667,,0.25,,11616,231,158,,1000-0400,1234567,,,40183,,, +1550,PRU,,OBX4P R Independencia,,Lima/Cerro los Incas (lim),-12,-77.066667,,0.1,,10619,258,159,,,,,,40396,,, +1550,CHL,,CB155 R Provincia AM,,Putaendo (VS),-32.65,-70.716667,,0.25,,12019,240,160,,,,,,35746,,, +1550,CHL,,CD155 R Regional,,Traiguen (AR),-38.216667,-72.666667,,0.25,,12607,237,162,,,,,,35891,,, +1557,F,fr,France Info,,Col de la Madone (06),43.796344,7.414878,,300,,927,175,42,,0000-2400,1234567,0,,1626,,, +1557,G,en,Gold,,Northampton/Kings Heath (EN-NHA),52.2635,-0.917139,,0.76,,500,275,63,,0000-2400,1234567,9994,,1628,,, +1557,G,en,Gold,,Southampton/Veals Farm (EN-HPS),50.883667,-1.436139,,0.5,,560,259,66,,0000-2400,1234567,,,1629,,, +1557,G,en,BBC R 5 Live,,Oxcliffe (EN-LNC),54.045389,-2.849444,,0.25,,654,293,70,,0000-0600,1234567,5,,1627,,, +1557,G,en,BBC R Lancashire,,Oxcliffe (EN-LNC),54.045389,-2.849444,,0.25,,654,293,70,,0600-2400,1234567,5,,1627,,, +1557,GRC,el,Erasitehnikos AM,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400017,,, +1557,IRN,fa,IRIB R Iran,,Zabol (sib),31.039217,61.546739,,50,,4998,96,90,,0000-2400,1234567,178,,1826,,, +1557,PAK,,PBC R Pakistan,,Skardu (ggb),35.297236,75.612736,,10,,5633,81,103,,1000-1700,1234567,93,,51297,,, +1557,TWN,zh,R Taiwan Int.,,Kouhu (YL),23.537083,120.174472,,300,315,9445,57,120,,0300-0800,.....67,998,,1867,,, +1557,TWN,zh,RTI iLoveMusic 1557,,Kouhu (YL),23.537083,120.174472,,300,315,9445,57,120,,0900-1700,1234567,998,,1867,,, +1557,CHN,,Cangzhou zhi Sheng,,Cangzhou (HB),38.3,116.85,,25,,7927,51,122,,,,,,51264,,, +1557,THA,th,Siang Adison=Voice of Adison,,Phetchabun/Nong Khwai (pbn),16.754167,101.207778,,10,,8865,76,133,,????-1400,1234567,,,51300,,, +1557,CHN,zh,Fuxin RGD Jingji Shenghuo Guangbo,,Fuxin/LNTS322 (LN),41.995119,121.732717,,1,,7846,45,135,,,,,,51263,,, +1557,THA,th,Sor. Wor. Thor. (R Thailand),,Trat/Ban Kraja (trt),12.237792,102.532917,,10,,9348,78,135,,2158-1502,1234567,,,51301,,, +1557,CHN,,Nangong RGD,,Nangong (HB),37.35,115.366667,,1,,7931,53,136,,,,,,51265,,, +1557,CHN,zh,CNR 1,,Fuzhou/Wenshanzhou (FJ),25.971361,119.294444,,1,,9171,57,144,,2025-1805,1234567,,,36201336,,, +1557,CHN,zh,CNR 1,,Xiamen=Amoy (FJ),24.607778,118.086111,,1,,9226,58,144,,2200-1600,1234567,,,36201337,,, +1557,MHL,,V7RR Micronesia Heatwave,,Majuro,7.087222,171.377778,,10,,13279,17,148,,0000-2400,1234567,,,51295,,, +1557,INS,id,R Pesona Nostalgia,,Rempoa (BT-tan),-6.3,106.766667,,1,,11267,86,151,,,,11,,51268,,, +1557,J,,JOHS HBC, Hokkaido Hoso,,Rumoi (hok),43.95,141.65,,0.1,,8504,31,152,,0000-2400,1234567,,,51284,, +1557,J,,ABS Akita Hoso,,Honjo (toh-aki),39.383333,140.05,,0.1,,8899,35,153,,0000-2400,1234567,,,51274,,, +1557,J,,JODN IBC, Iwate Hoso,,Miyako (toh-iwa),39.633333,141.933333,,0.1,,8946,33,153,,0000-2400,1234567,,,51278,, +1557,J,,JOTE ABS, Akita Hoso,,Odate (toh-aki),40.283333,140.5,,0.1,,8827,34,153,,,,,,51283,, +1557,J,,BSS Sanin Hoso,,Kurayoshi (chg-tot),35.45,133.816667,,0.1,,9024,41,154,,0000-2400,1234567,,,51276,,, +1557,J,,CBC Chubu-Nippon Hoso,,Nakatsugawa (chu-gif),35.5,137.483333,,0.1,,9178,38,154,,0000-2400,1234567,,,51280,,, +1557,J,,CBC Chubu-Nippon Hoso,,Shinshiro (chu-aic),34.9,137.516667,,0.1,,9239,38,154,,0000-2400,1234567,,,51287,,, +1557,J,,FBC Fukui Hoso,,Obama (chu-fuk),35.5,135.75,,0.1,,9104,39,154,,0000-2400,1234567,,,51275,,, +1557,J,,FBC Fukui Hoso,,Tsuruga (chu-fuk),35.616667,136.066667,,0.1,,9106,39,154,,0000-2400,1234567,,,51292,,, +1557,J,,JOAO CBC, Chubu-Nippon Hoso,,Takayama (chu-gif),36.15,137.25,,0.1,,9105,38,154,,0000-2400,1234567,,,51289,, +1557,J,,JOGN OBS, Oita Hoso,,Hita (kyu-oit),33.333333,130.916667,,0.1,,9093,44,154,,0000-2400,1234567,,,51273,, +1557,J,,JOHM BSS, Sanin Hoso,,Hamada (chg-shi),34.9,132.05,,0.1,,8996,42,154,,0000-2400,1234567,,,51272,, +1557,J,,JOVM WBS, Wakayama Hoso,,Gobo (kns-wak),33.866667,135.166667,,0.1,,9238,41,154,,0000-2400,1234567,,,51271,, +1557,J,,OBS, Oita Hoso,,Nakatsu (kyu-oit),33.583333,131.216667,,0.1,,9084,44,154,,0000-2400,1234567,,,51279,, +1557,J,,OBS, Oita Hoso,,Taketa (kyu-oit),32.966667,131.366667,,0.1,,9150,44,154,,0000-2400,1234567,,,51290,, +1557,J,,SBS, Shizuoka Hoso,,Fujinomiya (chu-shi),35.266667,138.6,,0.1,,9248,38,154,,0000-2400,1234567,,,51270,, +1557,J,,TBC, Tohoku Hoso,,Naruko (toh-miy),38.733333,140.7,,0.1,,8989,34,154,,0000-2400,1234567,,,51281,, +1557,J,,Tokai Hoso,,Ueno (kns-mie),34.75,136.15,,0.1,,9195,40,154,,0000-2400,1234567,,,51293,,, +1557,J,,JOVN WBS, Wakayama Hoso,,Shingu (kns-wak),33.716667,136,,0.1,,9289,40,155,,0000-2400,1234567,,,51285,, +1557,J,,RKC, Kochi Hoso,,Suzaki (shi-koc),34.666667,138.2,,0.1,,9291,38,155,,0000-2400,1234567,,,51288,, +1557,J,,SBS, Shizuoka Hoso,,Atami (chu-shi),35.033333,139.183333,,0.1,,9295,37,155,,0000-2400,1234567,,,51269,, +1557,AUS,en,2RE Coastal R,,Taree (NSW),-31.925278,152.465236,,2,,16477,64,165,,0000-2400,1234567,9965,,51262,,, +1557,AUS,en,5TAB Wild Country,,Renmark/Loxton (Berri) (SA),-34.227889,140.644444,,0.5,,15896,80,169,,,,,,51261,,, +1557,NZL,,2ZH Newstalk ZB,,Rotokare (TKI),-39.463236,174.300833,,2,,18329,38,171,,0000-2400,1234567,,,51296,,, +1560,USA,en,WQEW,i,New York/Queens (NY),40.716667,-73.917778,,50,,5963,292,100,,,,9972,,42770,,, +1560,USA,en,WAGL,,Lancaster (SC),34.831389,-80.868889,,50,,6856,291,109,,,,,,40667,,, +1560,USA,,KKAA,,Aberdeen (SD),45.418056,-98.476667,,10,,7024,311,117,,,,999,,38700,,, +1560,USA,,WCNW,,Fairfield (OH),39.338889,-84.525,,5,,6727,297,117,,,,,,41050,,, +1560,USA,,WNWN,,Portage (MI),42.183056,-85.591667,,4.1,,6568,300,117,,,,,,42536,,, +1560,USA,,KLNG,,Council Bluffs (IA),41.207778,-95.906667,,10,,7237,306,119,,,,,,38832,,, +1560,USA,,WSBV,,South Boston (VA),36.709722,-78.874444,,2.5,,6581,292,119,,,,,,42962,,, +1560,USA,,WKIK,,La Plata (MD),38.543333,-76.993611,,1,,6321,292,120,,,,,,42017,,, +1560,USA,,WFSP,,Kingwood (WV),39.480556,-79.719722,,1,,6420,294,121,,,,,,41440,,, +1560,USA,,WTNS,,Coshocton (OH),40.275,-81.826944,,1,,6489,296,122,,,,,,43186,,, +1560,HTI,,Voix de l'Esperance,,Port-au-Prince (oue),18.516667,-72.316667,,10,,7631,273,123,,0000-2400,1234567,,,52125,,, +1560,USA,en,KGOW,,Bellaire (D) (TX),29.326944,-95.55,,46,,8229,297,123,,1400-0200,1234567,9302,,38607,,, +1560,USA,,WLZR,,Melbourne (FL),28.127778,-80.708056,,5,,7391,286,124,,,,,,41773,,, +1560,USA,,WYZD,,Dobson (NC),36.393333,-80.734722,,1,,6724,292,124,,,,,,43561,,, +1560,USA,,WQXY,,Hazard (KY),37.274167,-83.191389,,1,,6808,295,125,,,,,,42807,,, +1560,USA,,WRIN,,Rensselaer (IN),40.961389,-87.151944,,1,,6756,300,125,,,,,,42855,,, +1560,USA,,KBEW,,Blue Earth (MN),43.645556,-94.0925,,1,,6936,307,126,,,,,,38022,,, +1560,USA,,WKDO,,Liberty (KY),37.306111,-84.917222,,1,,6912,296,126,,,,,,41986,,, +1560,USA,en,KGOW,,Bellaire (N) (TX),29.901389,-95.804167,,15,,8194,298,127,,0200-1400,1234567,,,20012516,,, +1560,USA,en,WAHT,,Clemson (SC),34.700833,-82.825556,,1,,6991,293,127,,,,,,40672,,, +1560,USA,,KTUI,,Sullivan (MO),38.195,-91.186667,,1,,7217,301,129,,,,,,39550,,, +1560,USA,,WGLB,,Elm Grove (WI),43.008889,-88.035,,0.25,,6646,302,129,,,,,,41526,,, +1560,USA,,WPAD,,Paducah (KY),37.052222,-88.600833,,1,,7157,298,129,,,,,,42641,,, +1560,USA,en,WLYG,,Centre (AL),34.128056,-85.640833,,1,,7214,294,129,,1200-2400,1234567,,,43595,,, +1560,PTR,,WRSJ,,Bayamon (PR),18.401389,-66.120556,,0.75,,7218,268,130,,0000-2400,1234567,,,42918,,, +1560,VEN,,YVLZ R Difusora Andina,,Mrida (mrd),8.6,-71.15,,10,,8405,265,131,,,,,,51711,,, +1560,USA,,WSEZ,,Paoli (IN),38.540278,-86.478333,,0.25,,6908,298,132,,,,,,42983,,, +1560,PNR,es,R Adventista de Panam,,Llano Bonito (pnm),9.037778,-79.461578,,10,,8934,272,134,,1000-0300,1234567,9908,,52330,,, +1560,USA,,KNZR,,Bakersfield (CA),35.308333,-119.046111,,10,,8949,318,134,,,,13,,39040,,, +1560,MEX,es,XEINFO-AM,,San Jernimo Tepetlacalco (mex),19.519617,-99.204711,,10,,9319,294,135,,,,,,43992,,, +1560,USA,,WSLA,,Slidell (LA),30.25,-89.762778,,1,,7794,294,135,,,,,,43018,,, +1560,USA,en,KEBC,,Del City (D) (OK),35.440556,-97.49,,1,,7815,303,135,,,,,,20012554,,, +1560,USA,,WBOL,,Bolivar (TN),35.258333,-88.980556,,0.25,,7327,297,136,,,,,,40892,,, +1560,B,pt,ZYH257 Rdio Princesa das Matas,,Viosa (AL),-9.373606,-36.230156,,1,,7951,225,137,,,,551,,36902667,,, +1560,CLM,es,HJLP RCN - La Cariosa,,Tulu (val),4.066667,-76.216667,,5,,9147,267,137,,,,16,,2171,,, +1560,USA,en,KZIZ,,Sumner (WA),47.236111,-122.228889,,0.9,,7939,326,137,,,,,,39892,,, +1560,CTR,,TIRN R Nicoya,,Nicoya (gnc),10.15,-85.45,,5,,9245,278,138,,1000-0300,1234567,,,52164,,, +1560,USA,en,KVAN,,Burbank (WA),46.169722,-119.025556,,0.7,,7914,323,138,,,,2,,20000002,,, +1560,B,pt,ZYH622 Rdio Difusora Vale do Curu,,Pentecoste (CE),-3.781944,-39.264722,,0.25,,7551,230,139,,,,,,36902663,,, +1560,DOM,,HIPZ R Pedernales,,Pedernales (pnl),18.016667,-71.716667,,0.25,,7632,272,139,,0900-0400,1234567,,,37288,,, +1560,B,pt,ZYJ608 Rdio Cultura do Oeste,,Pau dos Ferros (RN),-6.108333,-38.186111,,0.25,,7724,228,140,,,,,,36902652,,, +1560,CLM,es,HJPZ,,Agustn Codazzi (ces),10.083333,-73.266667,,1,,8421,268,141,,,,,,37629,,, +1560,USA,en,KEBC,,Del City (N) (OK),35.440833,-97.49,,0.25,,7815,303,141,,,,,,39052,,, +1560,USA,en,WPKL659,,Scott Township (PA),40.412278,-80.076722,,0.01,,6371,295,141,,,,,,20010725,,, +1560,B,pt,ZYH903 Rdio gua Branca,,Vitorino Freire (MA),-4.125,-45.168333,,0.25,,7906,236,142,,,,,,36902648,,, +1560,USA,,KLTI,,Macon (MO),39.709444,-92.463889,,0.041,,7166,303,142,,,,,,38848,,, +1560,CLM,es,HJHE,,Malaga (sat),6.7,-72.716667,,1,,8678,266,143,,,,,,37468,,, +1560,CLM,es,HJXZ Santa Maria de la Paz R,,Medelln (ant),6.283333,-75.566667,,1,,8909,268,143,,,,993,,26635,,, +1560,MEX,es,XEJPV-AM R Viva,,Zaragoza (chi),31.641944,-106.369444,,1,,8649,307,143,,,,,,44219,,, +1560,CHL,,CA156 R Parinacota,,Putre (Parinacota) (TA),-18.2,-69.55,,3,,10677,248,144,,0000-2400,1234567,,,35700,,, +1560,CLM,es,HJCP,,Arbelaez (cun),4.266667,-74.416667,,1,,9007,265,144,,,,,,37376,,, +1560,EQA,,HCCS2,,Daule (gua),-2.2,-79.9,,2,,9949,266,144,,,,,,36890,,, +1560,EQA,,HCZD1,,Urcuqui (nap),-0.416667,-78.216667,,1.5,,9678,265,144,,,,,,37191,,, +1560,NCG,,YNCN R America,,Managua (mng),12.066667,-86.216667,,1,,9129,280,144,,1600-0200,1234567,,,45178,,, +1560,USA,,KABI,,Abilene (KS),38.929444,-97.246111,,0.058,,7503,305,144,,,,,,37905,,, +1560,USA,,KHBR,,Hillsboro (TX),32.015833,-97.109167,,0.25,,8089,300,144,,,,,,38531,,, +1560,USA,,WBYS,,Canton (IL),40.544444,-90.020833,,0.018,,6957,302,144,,,,,,40933,,, +1560,B,pt,Rdio Canaa,,Guarapari (ES),-20.669722,-40.498889,,1,,9280,223,145,,,,,,36902653,,, +1560,B,pt,ZYH526 Rdio Povo,,Ribeira do Pombal (BA),-10.831642,-38.520811,,0.25,,8208,226,145,,,,,,36902669,,, +1560,EQA,,HCEI6,,Ambato (tun),-1.25,-78.616667,,1.5,,9778,265,145,,,,,,36916,,, +1560,EQA,,HCAI5 Eco de los A,,Cajabamba (chi),-1.7,-78.783333,,1,,9829,265,146,,,,,,36845,,, +1560,MEX,es,XELAC-AM R Azul,,Guacamayas (mic),18.025267,-102.196342,,1,,9639,295,146,,,,,,44287,,, +1560,EQA,,HCTR3 La Voz del Guabo,,El Guabo (oro),-3.233333,-79.866667,,1,,10037,265,147,,,,,,37143,,, +1560,URG,,CW51 R Maldonado,,Maldonado (ma),-34.866667,-54.966667,,3,,11354,227,147,,0000-2400,1234567,992,,36776,,, +1560,USA,,WWYC,,Toledo (OH),41.616667,-83.621389,,0.003,,6495,299,147,,,,,,43190,,, +1560,B,pt,ZYJ275 Rdio Capanema,,Capanema (PR),-25.583333,-53.55,,1,,10412,231,148,,,,,,36902665,,, +1560,PRU,es,OAZ7N R Mara,,Wanchaq (cus),-13.516667,-71.983333,,1,,10418,253,148,,,,,,37000109,,, +1560,USA,,KNGR,,Daingerfield (TX),33.026389,-94.706111,,0.06,,7859,299,148,,,,,,38994,,, +1560,BOL,,CP255 R Occidental,,Oruro (oru),-17.966667,-67.116667,,1,,10504,246,149,,0930-2400,1234567,,,52070,,, +1560,MEX,es,XESE-AM,,Champoton (cam),19.3525,-90.713889,,0.25,,8792,288,149,,,,,,44737,,, +1560,USA,,KIQS,,Willows (CA),39.528889,-122.169167,,0.25,,8680,322,149,,,,174,,38632,,, +1560,ARG,,R Castanares,,Ituzaingo (cn),-27.566667,-56.666667,,1,,10766,233,150,,,,,,51904,,, +1560,B,pt,Rdio Barigui,,Almirante Tamandar (PR),-25.349783,-49.285236,,0.5,,10167,228,151,,,,81,,36902654,,, +1560,B,pt,ZYL256 Rdio Jornal,,Leopoldina/Morro Arranca Toco (MG),-21.533878,-42.648014,,0.25,,9467,225,151,,,,,,36902664,,, +1560,BOL,,R Urkupina,,Quillacollo (cbb),-17.4,-66.3,,0.5,,10402,246,151,,1000-2400,1234567,,,52071,,, +1560,CLM,es,HKV90,,Villavicencio (met),4.15,-73.633333,,0.2,,8964,265,151,,,,,,35902405,,, +1560,MEX,es,XEMAS-AM Ke Buena,,Salamanca (gua),20.586264,-101.224036,,0.25,,9348,296,151,,,,,,44349,,, +1560,ARG,,R Almirante Brown,,Rafael Calzada (ba),-34.8,-58.366667,,1,,11522,230,152,,,,,,51906,,, +1560,ARG,,R Ebenezer,,Ezeiza (ba),-34.85,-58.533333,,1,,11535,230,152,,,,,,51905,,, +1560,ARG,,R Rencar,,Quilmes Oeste (ba),-34.733333,-58.266667,,1,,11511,230,152,,,,,,51903,,, +1560,B,pt,ZYJ501 Rdio Grande Rio,,Itagua (RJ),-22.875856,-43.809211,,0.25,,9655,225,152,,,,977,,36902670,,, +1560,B,pt,ZYK593 Rdio Show,,Igarapava (SP),-20.053033,-47.740186,,0.25,,9579,230,152,,,,,,36902651,,, +1560,B,pt,ZYK725 Regional AM,,Pedreira (SP),-22.733333,-46.883333,,0.25,,9793,228,152,,,,,,36902656,,, +1560,CLM,es,HKS65,,Tamalameque (ces),8.866667,-73.816667,,0.1,,8564,268,152,,,,,,35902386,,, +1560,EQA,,HCUI5,,Caar (can),-0.566667,-78.916667,,0.25,,9738,266,152,,,,,,37149,,, +1560,USA,,KZQQ,,Abilene (TX),32.455833,-99.799722,,0.045,,8207,302,152,,,,,,39905,,, +1560,USA,,WMBH,,Joplin (MO),37.069444,-94.546944,,0.009,,7506,302,152,,,,,,42281,,, +1560,B,pt,ZYJ361 Rdio Cultura Serpin,,Ribeiro do Pinhal (PR),-23.398056,-50.355278,,0.25,,10036,230,153,,,,,,36902650,,, +1560,B,pt,ZYK679 Rdio Valparaso,,Valparaso (SP),-21.217867,-50.868139,,0.25,,9856,232,153,,,,,,36902658,,, +1560,B,pt,ZYK778 Rdio Vale do Rio Parana,,Presidente Epitcio (SP),-21.757594,-52.094081,,0.25,,9973,232,153,,,,,,36902649,,, +1560,USA,,WMRO,,Gallatin (TN),36.400833,-86.450833,,0.003,,7079,296,153,,,,,,42387,,, +1560,ARG,es,LT11 R General Francisco Ramrez,,Concepcion del Uruguay/Villaguay (er),-32.466667,-58.216667,,0.5,,11301,231,154,,????-0300,1234567,11,,40163,,, +1560,B,,ZYJ286,,Palmas (PR),-26.466667,-51.966667,,0.25,,10412,230,154,,,,,,46010,,, +1560,B,,ZYJ797,,Tai (SC),-27.116667,-49.966667,,0.25,,10371,228,154,,,,,,46207,,, +1560,B,pt,ZYJ364 Rdio Clube de Mallet,,Mallet/Rua Tiradentes (PR),-25.889722,-50.838333,,0.25,,10299,229,154,,,,,,36902668,,, +1560,BOL,,CP156 1 de Octubre,,Capinota (cbb),-17.716667,-66.266667,,0.25,,10428,246,154,,1030-0100,1234567,,,36655,,, +1560,CHL,,CB156 R Manantial,,Talagante (RM),-33.75,-71.016667,,1,,12132,239,154,,1100-0400,1234567,,,35747,,, +1560,B,pt,ZYJ825 Rdio Cidade,,So Miguel do Oeste (SC),-26.716667,-53.533333,,0.25,,10518,231,155,,,,,,36902660,,, +1560,B,pt,ZYK310 Aoriana AM,,Taquari (RS),-29.778056,-51.845,,0.25,,10719,228,155,,,,,,36902659,,, +1560,B,pt,ZYK369 Rdio Poat,,So Jos do Ouro (RS),-27.768889,-51.584444,,0.25,,10516,229,155,,,,,,36902661,,, +1560,ARG,,AM 1560 Tandil,,Tandil (ba),-37.316667,-59.116667,,0.5,,11790,229,156,,,,,,33000002,,, +1560,B,,ZYK282,,Quara (RS),-30.366667,-56.45,,0.25,,11014,231,156,,,,,,46311,,, +1560,CHL,,CD156 R Parque Nacional,,Villarrica (AR),-39.266667,-72.25,,1,,12671,236,156,,1100-0400,1234567,,,35892,,, +1560,URG,,CV156 R Vichadero,,Vichadero (rv),-31.766667,-54.666667,,0.25,,11050,229,156,,1000-0200,1234567,,,36736,,, +1560,URG,,CX156 Dif. Americana,,Trinidad (fs),-33.516667,-56.916667,,0.25,,11329,230,157,,0930-0130,1234567,,,36799,,, +1560,ARG,,LT33 R Nueve de Julio,,Nueve de Julio (ba),-35.45,-60.866667,,0.25,,11713,231,159,,0900-0300,1234567,,,40184,,, +1566,HOL,hi,Vahon Hindustani R,,Den Haag/Leidschenveen (zho),52.057167,4.409056,,1,,137,268,53,,0000-2400,1234567,9949,,3800015,,, +1566,G,en,Eagle Extra,,Guildford/Peasmarsh (EN-SUR),51.204111,-0.592444,,0.75,,493,261,63,,0000-2400,1234567,0,,1635,,, +1566,G,en,BBC R 5 Live,,Taunton (EN-SOM),51.022333,-3.088167,,0.63,,667,263,66,,0000-0700,1234567,1,,1634,,, +1566,G,en,BBC Somerset,,Taunton (EN-SOM),51.022333,-3.088167,,0.63,,667,263,66,,0700-2400,1234567,1,,1634,,, +1566,I,it,R Studio X,,Momigno (pt),43.966667,10.8,,0.35,,962,159,71,,0000-2400,......7,,,1636,,, +1566,I,,R Kolbe Sat,,Colli Berici (vi),45.333333,11.566667,,0.2,,843,151,72,,,,,,4000039,,, +1566,I,it,R Melody,,Lido Adriano (ra),44.411111,12.308333,,0.25,,960,151,73,,????-????,1234567,,,4000040,,, +1566,GRC,el,R Asteras,,Kilkis (cmc-kil),41,22.866667,,1,,1756,128,75,,,,,,3400005,,, +1566,GRC,el,R Apithanos,,Patra (wgr-akh),38.25,21.75,,1,,1946,136,76,,,,,,3400029,,, +1566,BEN,bao,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2130-2245,1......,9998,,2251,,, +1566,BEN,bm,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2215-2245,12345..,9998,,2251,,, +1566,BEN,en,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,0255-0330,1234567,9998,,2251,,, +1566,BEN,en,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,0430-0500,1234567,9998,,2251,,, +1566,BEN,en,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,1740-1820,1234567,9998,,2251,,, +1566,BEN,fr,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2040-2130,1234567,9998,,2251,,, +1566,BEN,fr,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2130-2145,123456,9998,,2251,,, +1566,BEN,fr,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2145-2215,1234567,9998,,2251,,, +1566,BEN,fr,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,2215-2245,.....67,9998,,2251,,, +1566,BEN,xx,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,0330-0430,1234567,9998,,2251,,, +1566,BEN,xx,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,0500-0530,1234567,9998,,2251,,, +1566,BEN,xx,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,1700-1740,1234567,9998,,2251,,, +1566,BEN,xx,TWR Africa,,Parakou/Srarou (bor),9.604886,2.650017,,100,,4739,185,84,,1820-2040,1234567,9998,,2251,,, +1566,IRN,fa,IRIB R Iran,,Bandar-e Abbas (hrg),27.255167,56.413556,,100,,4957,104,87,,0000-2400,1234567,163,,1637,,, +1566,IND,,AIR National Channel,,Nagpur/Buttibori (MH),20.895556,78.996389,,1000,,7011,90,97,,1325-0043,1234567,27,,1765,,, +1566,KOR,en,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1730-1830,1234567,3,,1968,,, +1566,KOR,ja,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1230-1345,1234567,3,,1968,,, +1566,KOR,ko,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1900-1100,1234567,3,,1968,,, +1566,KOR,ru,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1830-1900,1234567,3,,1968,,, +1566,KOR,zh,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1100-1230,1234567,3,,1968,,, +1566,KOR,zh,HLAZ FEBC,,Jeju=Cheju (jej),33.486778,126.385333,,250,,8858,47,119,,1345-1730,1234567,3,,1968,,, +1566,CHN,,Zhangjiakou RGD,,Zhangjiakou/HBTS710 (HB),40.816667,114.85,,10,,7601,51,123,,,,,,51310,,, +1566,CHN,,Linhe RGD,,Linhe/NMTS691 (NM),40.729444,107.354444,,1,,7200,55,129,,,,,,51306,,, +1566,CHN,zh,Hubei RGD Xinwen Zonghe Pinl,,Jingmen (HU),31.033333,112.2,,10,,8308,59,130,,,,29,,36200324,,, +1566,CHN,zh,Yuncheng RGD,,Yuncheng (SX),35.016667,111,,1,,7891,57,136,,2200-1600,1234567,,,51308,,, +1566,CHN,zh,Liaocheng RGD Jiaotong Tai,,Liaocheng (SD),36.433333,115.966667,,1,,8044,53,137,,,,,,36201253,,, +1566,CHN,,Yanbian RGD,,Songjiangzhen (JL),42.575,128.333333,,1,,8101,41,138,,2130-1510,1234567,,,36200366,,, +1566,PHL,,DXID-AM,,Pagadian City (zds),7.816667,123.416667,,10,,11089,64,141,,2100-1400,1234567,,,51314,,, +1566,CHN,,Pingliang RGD,,Pingliang (GS),35.555,136.616667,,1,,9136,39,144,,,,,,36200256,,, +1566,AUS,en,3NE,,Wangaratta (VIC),-36.313611,146.371944,,5,,16435,77,161,,0000-2400,1234567,31,,51304,,, +1566,AUS,en,4GM ABC Wide Bay,,Gympie (QLD),-26.210778,152.689011,,0.2,,15989,57,174,,0000-2400,1234567,2383,,51303,,, +1566,NFK,,VL2NI Norfolk Island Broadcasting Service,,Kingston,-29.05,167.933333,,0.05,,17033,38,183,,0000-2400,1234567,9993,,51313,,, +1570,CAN,fr,CJLV,,Laval (QC),45.530833,-73.841389,,10,,5616,297,103,,,,15,,35933,,, +1570,USA,,WFLR,,Dundee (NY),42.544444,-76.993056,,5,,6022,295,110,,,,,,41401,,, +1570,CAN,en,CKMW,,Morden (Winkler) (MB),49.121111,-98.0675,,10,,6699,313,114,,,,0,,36345,,, +1570,USA,,WISP,,Doylestown (PA),40.326111,-75.161111,,0.9,,6071,292,118,,,,9813,,41809,,, +1570,USA,,WFTU,,Riverhead (NY),40.913333,-72.654444,,0.5,,5869,291,119,,,,,,41452,,, +1570,USA,,WQTW,,Latrobe (PA),40.301944,-79.365556,,1,,6336,295,120,,,,,,42800,,, +1570,USA,,WCLE,,Cleveland (TN),35.181944,-84.848611,,5,,7079,294,121,,,,,,41024,,, +1570,MEX,es,XERF-AM La Poderosa,,Ciudad Acua (coa),29.349017,-101.033264,,100,,8553,301,122,,0000-2400,1234567,5,,33529,,, +1570,USA,,WVTL,,Amsterdam (NY),42.910556,-74.217778,,0.204,,5823,294,122,,,,,,43346,,, +1570,USA,,WKKS,,Vanceburg (KY),38.597222,-83.347222,,1,,6713,296,124,,,,,,42031,,, +1570,USA,es,WMVX,,Beverly (MA),42.556111,-70.836944,,0.085,,5636,292,124,,,,,,42508,,, +1570,USA,,KBCV,,Hollister (D) (MO),36.614444,-93.213611,,5,,7467,301,125,,,,,,20016086,,, +1570,USA,,WLKD,,Minocqua (WI),45.820278,-89.724167,,0.5,,6522,306,125,,,,,,42179,,, +1570,USA,,WPGM,,Danville (PA),40.986111,-76.626944,,0.221,,6114,294,125,,,,,,42679,,, +1570,USA,,WTLK,,Taylorsville (D) (NC),35.931667,-81.171389,,0.9,,6788,292,125,,,,,,43165,,, +1570,USA,,WNST,,Towson (MD),39.417778,-76.556389,,0.237,,6227,292,126,,,,29,,42512,,, +1570,USA,,KBCV,,Hollister (N) (MO),36.614167,-93.213889,,3,,7467,301,127,,,,,,38016,,, +1570,USA,,WBGX,,Harvey (IL),41.603889,-87.679167,,0.5,,6736,301,127,,,,998,,40846,,, +1570,USA,,WFUR,,Grand Rapids (MI),42.953889,-85.697778,,0.307,,6514,301,127,,,,,,41456,,, +1570,USA,,WFRL,,Freeport (IL),42.3125,-89.593889,,0.5,,6791,303,128,,,,,,41434,,, +1570,USA,,WIZK,,Bay Springs (MS),31.965556,-89.300833,,3.2,,7621,295,128,,,,,,41829,,, +1570,USA,,WSCO,,Appleton (WI),44.217778,-88.409167,,0.331,,6573,304,128,,,,,,42966,,, +1570,USA,,WWCK,,Flint (MI),43.010833,-83.650833,,0.179,,6389,300,128,,,,,,43361,,, +1570,USA,,WKBH,,Holmen (WI),43.925556,-91.267222,,0.36,,6757,305,129,,,,,,41961,,, +1570,USA,,WNCA,,Siler City (NC),35.727778,-79.488333,,0.28,,6697,291,129,,,,,,42443,,, +1570,USA,,WPTW,,Piqua (OH),40.140278,-84.268611,,0.25,,6648,298,129,,,,,,42749,,, +1570,USA,,KAKK,,Walker (MN),47.078889,-94.590278,,0.25,,6686,310,130,,,,,,37933,,, +1570,USA,,WECU,,Winterville (NC),35.5375,-77.418333,,0.2,,6580,290,130,,,,,,20000073,,, +1570,USA,,WYTI,,Rocky Mount (VA),36.976944,-79.895833,,0.22,,6625,292,130,,,,,,43553,,, +1570,USA,en,WHTX,,Warren (OH),41.206111,-80.841389,,0.116,,6358,297,130,,,,,,40726,,, +1570,USA,,KYCR,,Golden Valley (MN),44.960833,-93.356944,,0.23,,6789,307,131,,,,,,39843,,, +1570,USA,,WGLL,,Auburn (IN),41.333611,-85.052222,,0.151,,6602,299,131,,,,,,41528,,, +1570,USA,,WILO,,Frankfort (IN),40.277778,-86.485278,,0.25,,6770,299,131,,,,,,41756,,, +1570,USA,,WNDA,,New Albany (IN),38.327778,-85.782222,,0.233,,6883,297,132,,,,,,42133,,, +1570,USA,,WTLK,,Taylorsville (N) (NC),35.9325,-81.171944,,0.2,,6788,292,132,,,,,,20012586,,, +1570,B,pt,RIR-Rede Integrada de Rdifuso,,Angicos (RN),-5.666667,-36.6,,1,,7600,227,133,,,,,,52385,,, +1570,USA,,KZLI,,Pryor (OK),36.265278,-95.710278,,1,,7642,302,133,,,,,,38943,,, +1570,USA,,WSWV,,Pennington Gap (VA),36.733889,-83.042778,,0.191,,6842,294,133,,,,,,43090,,, +1570,USA,,WTAY,,Robinson (IL),39.008056,-87.778056,,0.188,,6949,299,134,,,,,,43108,,, +1570,B,pt,ZYH907 Rdio Cultura Rio Jordo AM,,Coroat (MA),-4.144444,-44.115,,1,,7849,235,135,,,,,,36902683,,, +1570,USA,,WLBQ,,Morgantown (KY),37.219167,-86.689167,,0.15,,7027,297,135,,,,,,42137,,, +1570,USA,en,WPII600,,Glastonbury/2108 Main St. (CT),41.710989,-72.610083,,0.01,,5808,292,135,,,,,,20010726,,, +1570,EQA,,HCPG1,,Quito (pic),0.066667,-79.05,,10,,9692,266,136,,,,,,37060,,, +1570,USA,,KQWC,,Webster City (IA),42.467778,-93.796667,,0.137,,7015,305,136,,,,,,39212,,, +1570,USA,,KMCD,,Fairfield (IA),41.006944,-92.013889,,0.109,,7034,303,137,,,,,,38889,,, +1570,PRU,,OCU4J R Bethel,,Lima (lim),-12.05,-77.05,,10,,10622,257,139,,,,1,,37000036,,, +1570,PTR,,WPPC,,Penuelas (PR),18.063056,-66.717778,,0.126,,7287,268,139,,1000-2400,1234567,,,42726,,, +1570,USA,,WBGZ,,Alton (IL),38.928056,-90.2175,,0.074,,7100,301,139,,,,,,40847,,, +1570,B,pt,ZYH621 Rdio Serto Central,,Senador Pompeu (CE),-5.591844,-39.367636,,0.25,,7734,230,140,,,,,,36902698,,, +1570,USA,,KVTK,,Vermillion (SD),42.792222,-97.000833,,0.071,,7164,308,140,,,,1,,39675,,, +1570,HWA,en,KUAU,,Haiku (HI),20.791667,-156.466944,,15,,11740,343,141,,,,999,,39560,,, +1570,USA,en,WMAK,,Lobelville (TN),35.766944,-87.831111,,0.066,,7215,297,141,,,,,,42476,,, +1570,USA,en,WPLQ318,,Cleveland (OH),41.444306,-81.810992,,0.01,,6399,297,141,,,,,,20010727,,, +1570,USA,,WCRL,,Oneonta (AL),33.954444,-86.472222,,0.064,,7280,294,142,,,,,,41074,,, +1570,USA,,WIGO,,Morrow (GA),33.601389,-84.311111,,0.05,,7173,293,142,,,,,,43067,,, +1570,B,pt,ZYI798 Rdio Asa Branca,,Salgueiro (PE),-8.082308,-39.113167,,0.25,,7966,228,143,,,,,,36902685,,, +1570,CLM,,HJIP,,Envigado (ant),6.166667,-75.566667,,1,,8919,267,143,,,,,,37496,,, +1570,CLM,es,HKO22,,Dabeiba (ant),7,-76.266667,,1,,8894,269,143,,,,,,35902534,,, +1570,USA,,WTRB,,Ripley (TN),35.729444,-89.5425,,0.053,,7322,298,143,,,,,,43201,,, +1570,CLM,es,HJZT R Sensacin,,Manizales (cal),5.116667,-75.583333,,1,,9012,267,144,,,,991,,26643,,, +1570,GTM,,TGVE Voz Evangelica de Amrica (R VEA),,Ciudad de Guatemala (gut),14.616667,-90.583333,,1,,9198,284,144,,1030-0600,1234567,995,,29464,,, +1570,HND,es,HRRF RCN R Cadena Nacional de Noticias,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,0000-2400,1234567,,,37756,,, +1570,USA,,KLEX,,Lexington (MO),39.187222,-93.834167,,0.04,,7288,303,144,,,,,,38800,,, +1570,USA,es,WVOJ,,Fernandina Beach (FL),30.675833,-81.459722,,0.03,,7230,289,144,,,,,,43329,,, +1570,B,,unid,,unknown,-14.5,-53.1,,1,,9343,237,145,,,,75,,52529,,, +1570,B,,unid,,unknown,-14.5,-53.1,,1,,9343,237,145,,,,86,,52472,,, +1570,B,pt,ZYI418 Cidade AM,,Aparecida do Taboado (MS),-20.087981,-51.092311,,1,,9760,232,146,,,,,,36902680,,, +1570,EQA,,HCRZ1,,Tabacundo (pic),0.05,-78.2,,1,,9635,266,146,,,,,,37124,,, +1570,USA,,KCVR,i,Lodi (CA),38.086111,-121.215833,,0.5,,8779,321,146,,,,19,,38226,,, +1570,USA,,KNDY,,Marysville (KS),39.850556,-96.647778,,0.033,,7391,305,146,,,,,,38975,,, +1570,USA,,KTGE,,Salinas (CA),36.660556,-121.541389,,0.5,,8931,320,146,,,,9902,,39477,,, +1570,PRU,es,OAU7Z R Carrviz,,Juliaca (pun),-15.816667,-70.016667,,1.5,,10495,250,147,,,,77,,37000030,,, +1570,B,pt,ZYH496 Rdio Povo,,Jaguaquara (BA),-13.544622,-39.969133,,0.25,,8548,226,148,,,,,,36902671,,, +1570,B,pt,ZYI409 Nova Difusora AM,,Caarap (MS),-22.628392,-54.837994,,1,,10205,234,148,,,,,,36902673,,, +1570,CLM,es,HKP58,,Santa Rosa Sur (bol),10.45,-75.366667,,0.25,,8532,270,148,,,,,,35902545,,, +1570,PRU,,R Julcn,,Julcn (lal),-8.05,-78.5,,1,,10368,261,148,,,,25,,52452,,, +1570,PRU,,R Vilcanota,,Sicuani (cus),-14.316667,-71.25,,1,,10441,252,148,,,,,,37000110,,, +1570,USA,,KBRI,,Brinkley (AR),34.867222,-91.201111,,0.023,,7494,298,148,,,,,,38085,,, +1570,B,,ZYL...,,Pedra Azul (MG),-16,-41.283333,,0.25,,8856,226,149,,,,,,52383,,, +1570,PRG,,R Oriental AM 1570,,Caaguazu (cgz),-25.416667,-56.1,,1,,10535,234,149,,,,,,51739,,, +1570,B,pt,ZYK651 Rdio Emissora ABC,,Santo Andr/Rua Aruj 858 (SP),-23.645133,-46.516242,,0.5,,9863,227,150,,,,995,,36902699,,, +1570,CLM,es,HKX78,,Balboa (ris),4.95,-75.95,,0.25,,9052,267,150,,,,,,35902457,,, +1570,EQA,,HCUJ3,,Pasaje (mor),-3.35,-78.783333,,0.5,,9974,264,150,,,,,,37150,,, +1570,USA,,WTWB,,Auburndale (FL),28.075556,-81.821944,,0.013,,7468,287,150,,,,,,43235,,, +1570,B,pt,ZYJ678 Rdio Sociedade Espigo,,Espigo d'Oeste (RO),-11.521667,-61.018056,,0.25,,9540,245,151,,,,4,,36902690,,, +1570,B,pt,ZYL344 Rdio Cidade,,Corinto (MG),-18.362128,-44.449306,,0.25,,9246,228,151,,,,,,36902681,,, +1570,B,pt,ZYL364 Rdio Difusora de Piranga,,Piranga (MG),-20.690333,-43.29745,,0.25,,9416,226,151,,,,,,36902687,,, +1570,BOL,,R 1 de Mayo,,Villa Primero de Mayo (scz),-17.791667,-63.122222,,0.5,,10241,243,151,,1000-0200,123456,,,52072,,, +1570,BOL,,R 1 de Mayo,,Villa Primero de Mayo (scz),-17.791667,-63.122222,,0.5,,10241,243,151,,1000-1800,......7,,,52072,,, +1570,USA,,KPRO,,Riverside (CA),33.931667,-117.396389,,0.194,,9003,316,151,,,,1,,39164,,, +1570,USA,,WOKC,,Okeechobee (FL),27.215833,-80.811667,,0.012,,7473,286,151,,,,,,42583,,, +1570,ARG,,R Interactiva,,Ciudad Madero (ba),-34.6,-58.45,,1,,11508,230,152,,,,,,51908,,, +1570,ARG,,R Rocha,,La Plata (ba),-34.916667,-57.95,,1,,11511,229,152,,,,,,51907,,, +1570,ARG,es,R Alegra,,Luis Palacios (sf),-32.780556,-60.905556,,1,,11474,233,152,,,,,,33000053,,, +1570,B,,ZYK636,,Promisso (SP),-21.516667,-49.866667,,0.25,,9831,231,152,,,,,,46518,,, +1570,B,pt,ZYJ493 Rdio Cultura,,Valena/Fazenda So Jose (RJ),-22.230956,-43.72925,,0.25,,9588,225,152,,,,37,,36902686,,, +1570,B,pt,ZYK648 Rdio Zequinha de Abreu,,Santa Rita do Passa Quatro (SP),-21.695192,-47.496511,,0.25,,9724,229,152,,,,,,36902677,,, +1570,B,pt,ZYK667 Rdio Nossa Senhora do Socorro,,Socorro/Chcara So Joo (SP),-22.580375,-46.531956,,0.25,,9761,228,152,,,,,,36902691,,, +1570,B,pt,ZYK670 RCT-Rdio Clube de Tanabi,,Tanabi/Jardim Santa Mnica (SP),-20.634167,-49.662222,,0.25,,9736,231,152,,,,,,36902694,,, +1570,B,pt,ZYL242 Rdio Universitria Itajub,,Itajub (MG),-22.411231,-45.447467,,0.25,,9690,227,152,,,,,,36902693,,, +1570,CLM,es,HKQ82,,Santa Mara (boy),4.866667,-73.266667,,0.15,,8876,265,152,,,,,,35902572,,, +1570,CLM,es,HKU42,,Cajica (cun),4.916667,-74.033333,,0.15,,8924,265,152,,,,,,35902475,,, +1570,URG,,CX157 R Canelones,,Canelones (ca),-34.5,-56.266667,,1,,11386,229,152,,1055-0200,1234567,,,36800,,, +1570,USA,,KPIO,,Loveland (CO),40.391944,-105.0975,,0.018,,7798,311,152,,,,,,39444,,, +1570,B,pt,ZYJ209 Rdio CBN,,Paranagu (PR),-25.5175,-48.535,,0.25,,10145,228,153,,,,,,36902682,,, +1570,B,pt,ZYJ324 Rdio Nova Brasileira,,Bela Vista do Paraso (PR),-23.002778,-51.184722,,0.25,,10042,231,153,,,,,,36902688,,, +1570,B,pt,ZYJ365 Rdio Arapoti Popular,,Arapoti (PR),-24.158056,-49.837778,,0.25,,10082,229,153,,,,,,36902697,,, +1570,B,pt,ZYK552 Rdio Avar,,Avar (SP),-23.11825,-48.935708,,0.25,,9935,229,153,,,,,,36902678,,, +1570,B,pt,ZYK605 Rdio Junqueirpolis,,Junqueirpolis/Rua da Paz (SP),-21.513567,-51.443561,,0.25,,9915,232,153,,,,,,36902675,,, +1570,CLM,es,HKQ83,,Maripi (boy),5.55,-74.016667,,0.1,,8868,266,153,,,,,,35902517,,, +1570,USA,,WABL,,Amite (LA),30.708611,-90.525278,,0.015,,7802,295,153,,,,,,40630,,, +1570,ARG,,LRK365 R Nuevo Mundo,,General Pinto (ba),-29.116667,-62.633333,,0.5,,11239,236,154,,,,,,40121,,, +1570,B,,ZYJ223,,Guarapuava (PR),-25.383333,-51.45,,0.25,,10282,230,154,,,,,,45949,,, +1570,B,,ZYK288,,Dois Vizinhos (PR),-25.766667,-53.033333,,0.25,,10402,231,154,,,,,,46318,,, +1570,B,pt,Rdio Tangar,,Tangar (SC),-27.104167,-51.230833,,0.25,,10434,229,154,,,,,,36902672,,, +1570,B,pt,ZYJ341 Rdio Club de Nova Aurora,,Nova Aurora/Rua Melissa 520 (PR),-24.5225,-53.234167,,0.25,,10295,232,154,,,,,,36902676,,, +1570,B,pt,ZYJ777 Rdio Rio Negrinho,,Rio Negrinho/Rua Alfredo Girardi 138 (SC),-26.253333,-49.519444,,0.25,,10266,228,154,,,,,,36902679,,, +1570,CHL,,CC157 R Niebla,,Rancagua (LI),-34.166667,-70.716667,,1,,12150,239,154,,0000-2400,1234567,,,35827,,, +1570,CLM,es,HKX80,,Marsella (ris),4.933333,-75.733333,,0.1,,9039,267,154,,,,,,35902460,,, +1570,B,pt,ZYJ829 Rdio Modelo,,Modelo (SC),-26.775833,-53.063611,,0.25,,10499,230,155,,,,,,36902695,,, +1570,B,pt,ZYK358 Metrpole AM,,Gravata (Cachoeirinha) (RS),-29.926667,-51.041389,,0.25,,10693,227,155,,,,5,,36902689,,, +1570,URG,,CW157,,Young (rn),-32.7,-57.616667,,0.25,,11290,231,157,,,,,,36759,,, +1570,URG,,CW157A R Celeste,,Toms Gomensoro (ar),-30.416667,-57.416667,,0.25,,11070,232,157,,0900-0300,1234567,,,36760,,, +1570,USA,,KLLA,,Leesville (LA),31.141111,-93.295556,,0.006,,7936,297,159,,,,,,38825,,, +1570,USA,,KPYK,,Terrell (TX),32.754722,-96.239444,,0.006,,7973,300,159,,,,,,39180,,, +1570,USA,,KTAT,,Frederick (OK),34.391667,-99.030833,,0.006,,7994,303,159,,,,,,39453,,, +1570,USA,,KVLG,,La Grange (TX),29.882778,-96.865833,,0.011,,8260,299,159,,,,,,39636,,, +1570,CHL,,CC157 R Familia del Maule,,Talca (ML),-35.366667,-71.65,,0.25,,12307,239,161,,0000-2400,1234567,,,35828,,, +1570,CHL,,CD157 R Acuarela,,Nueva Imperial (AR),-38.95,-73.316667,,0.25,,12706,237,162,,1155-1810,1234567,,,35893,,, +1570,CHL,,CD157 R Acuarela,,Nueva Imperial (AR),-38.95,-73.316667,,0.25,,12706,237,162,,2200-0200,1234567,,,35893,,, +1575,I,it,RAI Liguria,,Genova/Portofino (ge),44.332222,9.171389,,30,,889,166,51,,0620-0630,123456,0,,1651,,, +1575,I,it,RAI Liguria,,Genova/Portofino (ge),44.332222,9.171389,,30,,889,166,51,,1110-1130,123456,0,,1651,,, +1575,I,it,RAI R1,,Genova/Portofino (ge),44.332222,9.171389,,30,,889,166,51,,0500-2300,1234567,0,,1651,,, +1575,E,es,SER,,Pamplona (NAV-NA),42.816667,-1.633333,,5,,1196,213,62,,0000-2400,1234567,,,1644,,, +1575,E,es,SER,,Crdoba (AND-CO),37.858369,-4.765758,,10,,1807,213,65,,0000-2400,1234567,,,1643,,, +1575,IRN,fa,IRIB R Iran,,Abadan (kuz),30.430444,48.290167,,800,33,4163,109,70,,0000-2400,1234567,9666,,10800034,,, +1575,UAE,fa,R Farda,,Al-Dhabbaya (abd),24.232944,54.416056,,800,0,5080,109,79,,0000-2400,1234567,0,,47306,,, +1575,EGY,ar,ERTU Al-Shabab wal Riyadah,,Hurghada (bar),27.26575,33.791806,,10,,3579,130,83,,0415-2200,1234567,45,,1857,,, +1575,G,en,Stoke Mandeville Hospital R. (LPAM),,Aylesbury/Mandeville Road (EN-BKS),51.798417,-0.801972,,0.001,,495,269,92,,,,,,1646,,, +1575,G,en,Hospital R Tyneside (LPAM),,Newcastle upon Tyne (EN-TYW),54.983333,-1.583333,,0.001,,617,304,93,,,,,,1647,,, +1575,IRN,fa,IRIB R Iran,,Ghayen=Qaen (skh),33.745389,59.161972,,10,,4629,95,93,,0000-2400,1234567,22,,1655,,, +1575,NGR,,ORTN La Voix du Sahel,,Niamey (nmy),13.541667,2.058333,,1,,4306,187,100,,0500-2300,1234567,,,2553,,, +1575,IRN,,unid Jammer,,unknown,32.5,53.625,,1,,4350,101,101,,,,70,,10800005,,, +1575,THA,bn,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1600-1700,1234567,995,,51329,,, +1575,THA,en,VOA Music Mix,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1100-1200,.....67,995,,51329,,, +1575,THA,en,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,0030-0100,1234567,995,,51329,,, +1575,THA,en,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,2230-2400,....56.,995,,51329,,, +1575,THA,km,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1330-1430,1234567,995,,51329,,, +1575,THA,km,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,2200-2230,1234567,995,,51329,,, +1575,THA,lo,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1230-1300,1234567,995,,51329,,, +1575,THA,my,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,0000-0030,1234567,995,,51329,,, +1575,THA,my,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1430-1500,1234567,995,,51329,,, +1575,THA,my,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1500-1530,.....67,995,,51329,,, +1575,THA,my,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1530-1600,1234567,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1030-1100,1234567,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1100-1130,12345..,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1200-1230,12345..,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1500-1530,1234567,995,,51329,,, +1575,THA,th,R Saranrom,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,2230-2400,1234..7,995,,51329,,, +1575,THA,vi,Voice of America,,Ban Phachi/Rasom (pay),14.406111,100.78,,500,145-355,9042,78,117,,1300-1330,1234567,995,,51329,,, +1575,CHN,zh,CNR 1,,Tongxin (NX),36.98575,105.904472,,10,,7428,59,121,,2025-1805,1234567,,,51318,,, +1575,CHN,zh,CNR 2,,Hanzhong (SA),33.154944,106.962472,,10,,7815,61,125,,2100-1602,1234567,,,36200691,,, +1575,RUS,ru,Ekho Usolye,,Usolye Sibirskoje (IR),52.766667,103.65,,0.2,,6054,48,125,,,,,,47053,,, +1575,CHN,zh,CNR 1,,Songyuan (JL),45.1625,124.849778,,1,,7706,42,134,,2025-1805,1234567,,,36200686,,, +1575,CHN,,Dalian RGD Shequ,,Dalian (LN),38.9,121.583333,,2,,8118,47,135,,,,,,51319,,, +1575,CHN,zh,CNR 1,,Fuyu/Sanchahe (JL),44.983333,126.016667,,1,,7775,41,135,,2025-1805,1234567,,,36201291,,, +1575,CHN,,Lishu RGD,,Lishu (JL),43.3,124.333333,,1,,7852,43,136,,,,,,51320,,, +1575,CHN,zh,CNR 1,,Dunhua (JL),43.366667,128.216667,,1,,8022,40,137,,2025-1805,1234567,,,36201290,,, +1575,CHN,,Jilin JGD,,Tumen (JL),42.966667,129.85,,1,,8131,40,138,,,,,,36201296,,, +1575,CHN,zh,CNR 2,,Panzhihua/SCTS516 (SC),26.529167,101.708333,,1,,8055,69,138,,2100-1602,1234567,,,36200687,,, +1575,CHN,,Yunnan RGD Xinwen Guangbo,,Kunming (YN),25.166667,102.833333,,1,,8243,69,139,,,,,,36200690,,, +1575,CHN,,Kaiyuan RGD,,Kaiyuan (YN),23.70675,103.269139,,1,,8397,70,141,,,,,,36201294,,, +1575,PHL,,DXJR-AM Radyo Higala,,Manolo Fortich/Damilag (buk),8.36915,124.814133,,10,,11123,62,141,,2100-1330,1234567,97,,51326,,, +1575,CHN,,Guangxi JGD Caifu Guangbo,,Hechi (GX),24.7,108.033333,,1,,8612,66,142,,,,,,36201292,,, +1575,MAU,en,BBC WS,,Port Louis (mau),-20.165458,57.478333,,2,,9432,133,142,,0000-2400,1234567,,,2552,,, +1575,CHN,,Guangxi JGD Caifu Guangbo,,Daxin (GX),22.846944,107.188889,,1,,8721,68,143,,,,,,36201289,,, +1575,CHN,,Guangxi JGD Caifu Guangbo,,Nanning (GX),22.846944,108.3625,,1,,8795,67,143,,,,,,36200689,,, +1575,CHN,,Guangxi JGD Caifu Guangbo,,Pingxiang (GX),22.097778,106.752278,,1,,8759,68,143,,,,,,36201295,,, +1575,J,,AFN-The Thunder,,Iwakuni (chg-yam),34.161353,132.23345,,1,,9076,43,144,,0000-2400,1234567,,,51322,,, +1575,J,en,AFN-The Thunder,,Misawa (toh-aom),40.697633,141.354747,,0.6,,8818,33,145,,0000-2400,1234567,2,,51323,,, +1575,J,,AFN-The Thunder,,Sasebo (kyu-nag),33.167717,129.717331,,0.25,,9052,45,150,,0000-2400,1234567,,,51324,,, +1575,AUS,it,2RF Rete Italia,,Wollongong/Windang (NSW),-34.517194,150.873625,,5,,16591,69,162,,0000-2400,1234567,,,51317,,, +1575,NZL,,4XS Hills AM,,Dunedin/Centre Road (OTA),-45.886944,170.5675,,2.5,,18672,65,172,,0000-2400,1234567,,,51325,,, +1578,BOL,,CP237 R Don Bosco,,Kami (cbb),-17.366667,-66.8,,1,,10430,246,148,,0900-1330,1234567,,,52074,,, +1578,BOL,,CP237 R Don Bosco,,Kami (cbb),-17.366667,-66.8,,1,,10430,246,148,,2100-0200,1234567,,,52074,,, +1580,CAN,en,CKDO,,Oshawa (ON),43.871583,-78.764111,,10,,6033,298,107,,0000-2400,1234567,2,,52604,,, +1580,USA,,WTTN,,Columbus (D) (WI),43.334722,-89.165556,,5,,6685,303,117,,0000-2400,1234567,,,20016070,,, +1580,USA,es,WLIM,,Patchogue (NY),40.795833,-72.992222,,0.5,,5899,291,119,,0000-2400,1234567,9969,,42172,,, +1580,USA,,WDAB,,Travelers Rest (SC),34.948611,-82.443889,,5,,6947,292,120,,0000-2400,1234567,,,20016009,,, +1580,USA,en,WNPZ,,Knoxville (TN),35.911667,-83.8925,,5,,6960,294,120,,0000-2400,1234567,,,40671,,, +1580,AFG,,R Kunar,,Asadabad (knr),34.866667,71.133333,,0.1,,5361,84,121,,0330-0530,1234567,,,46819,,, +1580,AFG,,R Kunar,,Asadabad (knr),34.866667,71.133333,,0.1,,5361,84,121,,0930-1230,1234567,,,46819,,, +1580,USA,es,WNTF,,Bithlo (FL),28.536389,-81.085,,10,,7382,287,121,,,,,,42517,,, +1580,DOM,,HIAJ R Amanecer,,San Pedro de Macors (pms),18.466667,-69.866667,,10,,7468,271,122,,1000-0400,1234567,,,37200,,, +1580,USA,,WTCL,,Chattahoochee (FL),30.670556,-84.835556,,10,,7448,291,122,,0000-2400,1234567,,,43119,,, +1580,USA,,WWDN,,Danville (VA),36.5675,-79.380556,,1,,6625,292,123,,,,,,41747,,, +1580,DOM,,HIJR R Amanecer,,Santiago de los Caballeros (sto),19.45,-70.7,,5,,7441,272,124,,,,,,52229,,, +1580,PTR,,WEKO,,Morovis (PR),18.342222,-66.418889,,2.5,,7243,268,125,,0000-2400,1234567,,,41277,,, +1580,USA,,WTTN,,Columbus (CN) (WI),43.334167,-89.165833,,0.8,,6685,303,125,,,,,,43227,,, +1580,VEN,,YVTK Manzanares 15-80,,Cuman (suc),10.5,-64.166667,,10,,7766,261,125,,,,3,,51713,,, +1580,USA,,KMIK,i,Tempe (AZ),33.456111,-111.833611,,50,,8773,311,126,,0000-2400,1234567,9998,,38905,,, +1580,USA,,WVOK,,Oxford (D) (AL),33.590833,-85.831667,,2.5,,7270,294,126,,,,,,43331,,, +1580,USA,en,WHLY,,South Bend (IN),41.685833,-86.164722,,0.5,,6640,300,126,,,,,,41187,,, +1580,USA,en,WJFK,,Morningside (MD),38.868611,-76.896944,,0.27,,6290,292,126,,0000-2400,1234567,,,42678,,, +1580,USA,,WPJK,,Orangeburg (SC),33.478611,-80.879444,,1,,6965,290,127,,,,,,42696,,, +1580,USA,,WPMO,,Pascagoula-moss Poin (MS),30.383611,-88.535278,,5,,7706,293,127,,,,,,20016022,,, +1580,USA,es,KBLA,,Santa Monica (CA),34.085556,-118.256667,,50,,9029,316,127,,0000-2400,1234567,13,,38051,,, +1580,USA,,WVKO,,Columbus (OH),40.061667,-82.944722,,0.29,,6574,297,128,,0000-2400,1234567,,,43302,,, +1580,VEN,,YVYV R Venezolana,,Calabozo (gco),8.916667,-67.5,,10,,8130,263,128,,1000-0200,1234567,,,51712,,, +1580,USA,,WAMW,,Washington (D) (IN),38.646389,-87.28,,0.5,,6948,299,129,,,,,,40719,,, +1580,USA,,WIOL,,Columbus (GA),32.465278,-85.022778,,1,,7311,292,130,,,,,,41237,,, +1580,VEN,,YVYO R Celestial San Francisco,,Maracaibo (zul),10.666667,-71.616667,,10,,8257,267,130,,,,1,,2259,,, +1580,USA,en,WPGY,,Ellijay (GA),34.703889,-84.476389,,0.5,,7094,294,131,,,,,,42683,,, +1580,USA,ht,WSRF,,Fort Lauderdale (FL),26.0775,-80.2175,,1.5,,7528,284,131,,0000-2400,1234567,997,,43062,,, +1580,DOM,,HIPK R Neiba,,Neiba (brc),18.466667,-71.416667,,1,,7574,272,133,,0900-0400,1234567,,,37286,,, +1580,CTR,,R Mi Pais,,Siquirres (lmn),10.1,-83.516667,,10,,9118,276,134,,,,,,52167,,, +1580,MEX,es,XEDM-AM DM Noticias,,Hermosillo (son),29.061747,-110.942678,,10,,9134,308,134,,1300-0700,1234567,,,43921,,, +1580,CLM,es,HJQZ R Maria,,Barranquilla (atl),10.916667,-74.766667,,5,,8451,270,135,,,,0,,37633,,, +1580,CLM,es,HJRM Caracol Colombia,,Sincelejo (suc),9.3,-75.4,,5,,8634,269,136,,,,0,,35902611,,, +1580,CLM,es,HJQT AvivaR Candela,,Bogot D. C. (bdc),4.6,-74.083333,,5,,8955,265,137,,0000-2400,1234567,4,,52631,,, +1580,CLM,es,HJSQ R.Robledo/RCN Antena 2,,Cartago (val),4.75,-75.916667,,5,,9067,267,137,,1100-0500,1234567,994,,35902599,,, +1580,USA,,KXZZ,,Lake Charles (LA),30.257778,-93.198611,,1,,8005,296,137,,0000-2400,1234567,,,39836,,, +1580,USA,en,WQEL333,,Metuchen/500 Main Street (NJ),40.543611,-74.363056,,0.01,,6004,292,137,,,,,,20010753,,, +1580,USA,en,WPSH264,,Cheektowaga (NY),42.938611,-78.739444,,0.01,,6100,297,138,,,,,,20010755,,, +1580,B,pt,ZYJ506 Resende AM,,Resende (RJ),-22.469461,-44.491233,,5,,9649,226,139,,,,,,36902715,,, +1580,USA,,KGAL,,Lebanon (OR),44.573611,-122.918056,,1,,8222,325,139,,,,9801,,38456,,, +1580,USA,en,WWTF,,Georgetown (KY),38.168056,-84.593611,,0.045,,6823,296,139,,0000-2400,1234567,,,43488,,, +1580,B,,ZYK626,,Jaguaribe (CE),-5.866667,-38.566667,,0.25,,7719,229,140,,,,,,46508,,, +1580,USA,,KKTS,,Evansville (D) (WY),42.881667,-106.286944,,0.22,,7638,313,140,,,,,,20016264,,, +1580,USA,,KKTS,,Evansville (N) (WY),42.881667,-106.286944,,0.22,,7638,313,140,,,,,,20016263,,, +1580,USA,,WGYM,,Hammonton (NJ),39.625833,-74.795556,,0.006,,6100,291,140,,0000-2400,1234567,,,41588,,, +1580,CLM,es,HJFU,,Villa del Rosario (nsa),7.833333,-72.466667,,1,,8562,266,142,,,,,,35902580,,, +1580,CLM,es,HJLC,,El Banco (mag),9.016667,-73.95,,1,,8560,268,142,,,,,,37542,,, +1580,EQA,,HCAE5,,Giron (azu),-3.133333,-79.166667,,3,,9981,265,142,,,,,,36839,,, +1580,USA,,KGAF,,Gainesville (TX),33.628333,-97.106944,,0.25,,7949,301,142,,,,,,38454,,, +1580,USA,,WCCF,,Punta Gorda (FL),26.893611,-82.050833,,0.11,,7581,286,142,,,,,,40964,,, +1580,USA,,WVZN,,Columbia (PA),40.014722,-76.470278,,0.005,,6176,293,142,,,,,,43350,,, +1580,B,pt,ZYI898 Rdio Santa Clara,,Floriano (PI),-6.783139,-43.026411,,0.25,,8044,232,143,,,,,,36902721,,, +1580,CLM,,HJKF,,Zipaquir (cun),5.016667,-74,,1,,8913,266,143,,,,,,37524,,, +1580,USA,en,WQAC662,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010749,,, +1580,CAN,xx,CBPK,,Revelstoke (BC),50.99,-118.22,,0.05,,7431,326,144,,,,,,20109222,,, +1580,CLM,,Caracol,,,4.45,-74.4,,1,,8990,265,144,,,,291,,52489,,, +1580,CLM,es,HJDE R Miraflores,,Rovira (tol),4.2,-75.216667,,1,,9068,266,144,,,,,,37606,,, +1580,EQA,,HCHA2,,Eloy Alfaro (gua),-2.25,-79.816667,,2,,9948,266,144,,,,,,36963,,, +1580,PNR,es,Hosanna Manantial,,Chorrera/La Pitahaya (pnm),8.826389,-79.780278,,1,,8975,272,144,,,,896,,52331,,, +1580,USA,,WORV,,Hattiesburg (MS),31.3425,-89.298056,,0.088,,7673,294,144,,0000-2400,1234567,,,42623,,, +1580,USA,,WZKY,,Albemarle (NC),35.360556,-80.1775,,0.012,,6770,291,144,,,,,,43577,,, +1580,USA,,KREL,,Colorado Springs (CO),38.719722,-104.721111,,0.14,,7926,310,145,,0000-2400,1234567,,,39771,,, +1580,USA,,KTLU,,Rusk (TX),31.82,-95.171944,,0.165,,7991,299,145,,,,,,39505,,, +1580,EQA,,HCLF1 Ecos de Orellana,,Machachi (pic),-0.5,-78.566667,,1,,9709,266,146,,1030-0230,1234567,829,,37008,,, +1580,EQA,,HCUA4,,Esmeraldas (esm),0.966667,-79.716667,,1,,9658,268,146,,,,,,37144,,, +1580,USA,,KCHA,,Charles City (IA),43.051389,-92.666667,,0.01,,6905,305,146,,0000-2400,1234567,,,38145,,, +1580,USA,,KESM,,Eldorado Springs (MO),37.864167,-94.015,,0.032,,7409,302,146,,,,,,38341,,, +1580,USA,,KHGG,,Van Buren (AR),35.391667,-94.331667,,0.049,,7636,301,146,,,,,,38539,,, +1580,USA,,KWED,,Seguin (TX),29.58,-97.984722,,0.253,,8353,299,146,,,,,,39701,,, +1580,USA,,WESY,,Leland (MS),33.379444,-90.929722,,0.048,,7602,297,146,,,,,,41330,,, +1580,USA,,WVOK,,Oxford (N) (AL),33.448611,-86.065,,0.022,,7296,294,146,,,,,,20016077,,, +1580,B,pt,ZYH464 Rdiovox,,Muritiba/Chcara So Jose (BA),-12.624167,-38.985278,,0.25,,8409,226,147,,,,76,,36902714,,, +1580,EQA,,HCCP2 Canal del Pueblo,,Samborondon (gua),-1.95,-79.716667,,1,,9914,266,147,,,,,,36883,,, +1580,USA,,KOKB,,Blackwell (OK),36.809722,-97.263889,,0.049,,7684,304,147,,,,,,39072,,, +1580,USA,,WWSJ,,St. Johns (MI),42.970556,-84.549722,,0.003,,6446,300,147,,,,,,43432,,, +1580,USA,en,WLPK,,Connersville (IN),39.638333,-85.148333,,0.005,,6741,298,147,,0000-2400,1234567,,,41044,,, +1580,B,pt,ZYH497 RBM-Rdio Barra do Mendes,,Barra do Mendes (BA),-11.805978,-42.067419,,0.25,,8483,229,148,,,,,,36901760,,, +1580,BOL,,R Andres Ibanez,,Santa Cruz (scz),-17.766667,-63.166667,,1,,10242,243,148,,1000-0300,1234567,,,52075,,, +1580,BOL,,R El Fuego del Espiritu Santo,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,1000-2400,1234567,51,,52076,,, +1580,MEX,es,XEAF-AM La Temeraria,,Ojo Seco (gua),20.389142,-100.797044,,0.5,,9340,296,148,,,,,,43701,,, +1580,PRU,es,OBX1M R Naylamp,,Lambayeque (lam),-6.683333,-79.9,,1,,10343,263,148,,1000-0200,1234567,,,37000113,,, +1580,USA,,KIRT,,Mission (TX),26.293333,-98.330556,,0.302,,8663,298,148,,,,,,38636,,, +1580,USA,,WAMY,,Amory (MS),33.975833,-88.491389,,0.018,,7403,296,148,,,,,,40720,,, +1580,USA,,WBCP,,Urbana (IL),40.126389,-88.290278,,0.006,,6889,300,148,,,,,,40825,,, +1580,USA,,WLIJ,,Shelbyville (TN),35.455278,-86.451944,,0.012,,7156,296,148,,,,,,42169,,, +1580,USA,,WPKY,,Princeton (KY),37.120556,-87.858611,,0.009,,7106,298,148,,,,,,42702,,, +1580,B,pt,ZYH502 Rdio Atalaia de Canavieiras,,Canavieiras (BA),-15.68,-38.948889,,0.25,,8710,224,149,,,,,,36902720,,, +1580,B,pt,ZYL329 Rdio Educadora,,Espinosa (MG),-14.897317,-42.794486,,0.25,,8823,228,149,,,,,,36902719,,, +1580,CLM,es,HKT34,,San Antero (cor),9.383333,-75.75,,0.25,,8651,270,149,,,,,,35902614,,, +1580,USA,,WAMW,,Washington (N) (IN),38.651111,-87.165278,,0.005,,6941,298,149,,,,,,20012576,,, +1580,CLM,es,HKV44,,Yaguara (hui),2.666667,-75.516667,,0.25,,9223,265,150,,,,,,35902591,,, +1580,CTR,,TIRCC R Cultural de Corredores,,Ciudad Neily (pta),8.65,-82.933333,,0.25,,9205,275,150,,,,,,52170,,, +1580,CTR,,TIRCL R Cultural,,Los Chiles (alj),11.033333,-84.716667,,0.25,,9118,278,150,,,,,,52165,,, +1580,CTR,,TIRCLC R Cultural,,La Cruz (gnc),11.066667,-85.65,,0.25,,9178,278,150,,,,,,52166,,, +1580,CTR,,TIRCLS R Cultural Los Santos,,San Marcos de Tarraz (sjs),9.666667,-84.033333,,0.25,,9191,276,150,,,,,,52169,,, +1580,CTR,,TIRCM R Cultural Malecu,,Tonjibe (alj),10.616667,-84.783333,,0.25,,9159,277,150,,,,,,52168,,, +1580,EQA,,HCAB3,,Catacocha (loj),-4.033333,-79.616667,,0.5,,10091,264,150,,,,,,36832,,, +1580,USA,,KAMI,,Cozad (NE),40.838333,-99.938889,,0.017,,7488,308,150,,0000-2400,1234567,,,37944,,, +1580,USA,,KTGR,,Columbia (MO),38.9625,-92.303889,,0.008,,7219,302,150,,,,,,39480,,, +1580,USA,,WDQN,,Duquoin (IL),38.032222,-89.241667,,0.0066,,7115,299,150,,,,,,41203,,, +1580,B,pt,ZYJ487 Rdio Popular Fluminense,,Conceio de Macabu (RJ),-22.069628,-41.869522,,0.25,,9483,224,151,,,,,,36902705,,, +1580,B,pt,ZYL210 Liberdade AM,,Itapecerica (MG),-20.466667,-45.116667,,0.25,,9484,227,151,,,,,,36902703,,, +1580,B,pt,ZYL290 Rdio Cultura,,Santos Dumont (MG),-21.473144,-43.540692,,0.25,,9505,226,151,,,,,,36902702,,, +1580,MEX,es,XELI-AM Super 94.7,,Chilpancingo (gue),17.537372,-99.494539,,0.25,,9514,293,151,,,,,,44306,,, +1580,MEX,es,XEVAB-AM Super Stereo Miled,,Valle de Bravo (mex),19.191944,-100.134444,,0.25,,9406,295,151,,,,,,44946,,, +1580,PRU,,OBX7Q R El Triunfo,,Cusco (cus),-13.466667,-72,,0.5,,10414,253,151,,,,,,40413,,, +1580,URG,,CW54 Emisoras del Este,,Minas (la),-34.366667,-55.216667,,1,,11320,228,151,,0800-0200,1234567,,,36778,,, +1580,USA,,KNIM,,Maryville (MO),40.3175,-94.870556,,0.007,,7253,305,151,,0000-2400,1234567,,,38997,,, +1580,ARG,,R Activa,,Longchamps (ba),-34.866667,-58.383333,,1,,11529,230,152,,,,,,51911,,, +1580,ARG,,R Planeta,,Rosario (sf),-32.95,-60.666667,,1,,11476,233,152,,,,,,51912,,, +1580,B,pt,ZYJ505 Rdio Gerao 2000,,Terespolis/Rua Torre da Radio (RJ),-22.310556,-42.824444,,0.25,,9552,225,152,,,,95,,36902710,,, +1580,B,pt,ZYK504 Rdio Difusora de Amparo,,Amparo (SP),-22.716847,-46.794378,,0.25,,9787,228,152,,,,,,36902706,,, +1580,B,pt,ZYL335 Rdio Nova Guaransia AM,,Guaransia (MG),-21.306594,-46.791628,,0.25,,9651,228,152,,,,,,36902722,,, +1580,EQA,,HCTI6,,Quero (tun),-1.366667,-78.616667,,0.3,,9788,265,152,,,,,,37139,,, +1580,ARG,,R Tradicion,,San Martn (mz),-33.066667,-68.466667,,1,,11924,238,153,,,,,,51910,,, +1580,B,pt,ZYK743 Rdio Pedra Bonita,,Itaporanga (SP),-23.670833,-49.505556,,0.25,,10018,229,153,,,,,,36902707,,, +1580,URG,,CW158,,Tranqueras (rv),-31.183333,-55.75,,0.5,,11052,230,153,,,,,,36761,,, +1580,USA,en,WPWL619,,Pensacola (FL),30.543497,-87.204444,,0.01,,7609,292,153,,,,,,20010748,,, +1580,B,pt,ZYI415 Rdio Laguna,,Jardim (MS),-21.470231,-56.171539,,0.25,,10171,236,154,,,,,,36902701,,, +1580,B,pt,ZYJ342 R.So Joo do Sudoeste do Paran,,So Joo (PR),-25.819722,-52.7175,,0.25,,10390,231,154,,,,,,36902717,,, +1580,B,pt,ZYJ818 Rdio Pomerode AM,,Pomerode/Rua Elisa Utpadel (SC),-26.698333,-49.156389,,0.25,,10290,228,154,,,,,,36902716,,, +1580,CHL,,CC158 R Colchagua,,Santa Cruz (LI),-34.616667,-71.366667,,1,,12227,239,154,,,,,,35829,,, +1580,USA,,KDOM,,Windom (MN),43.861389,-95.097222,,0.002,,6973,307,154,,,,,,38286,,, +1580,ARG,,LT36 R Chacabuco,,Chacabuco (ba),-34.616667,-60.466667,,0.5,,11616,231,155,,1000-0400,1234567,,,40187,,, +1580,B,pt,ZYK237 Encanto AM,,Encantado (RS),-29.243611,-51.863611,,0.25,,10670,228,155,,,,,,36902712,,, +1580,CLM,es,HKW74,,Pupiales (nar),0.866667,-77.65,,0.1,,9526,266,155,,,,,,35902583,,, +1580,USA,en,WQHL398,,Coulee City (WA),47.611025,-119.365111,,0.01,,7792,324,155,,,,,,20010733,,, +1580,USA,en,WQHL398,,Wenatchee (WA),47.416667,-120.316667,,0.01,,7848,325,155,,,,,,20010732,,, +1580,USA,en,WQHM720,,San Juan County (WA),48.57,-122.97,,0.01,,7839,327,155,,,,,,20016248,,, +1580,USA,en,WQHM720,,Skagit County (WA),48.48,-121.78,,0.01,,7803,326,155,,,,,,20016247,,, +1580,USA,en,WQHM720,,Snohomish County (WA),48.04,-121.71,,0.01,,7842,326,155,,,,,,20016246,,, +1580,USA,en,WQHM720,,Whatcom County (WA),48.83,-121.9,,0.01,,7774,327,155,,,,,,20010728,,, +1580,B,pt,ZYK339 Rdio Difusora Fronteira AM,,Arroio Grande (RS),-32.246667,-53.079167,,0.25,,11014,228,156,,,,,,36902704,,, +1580,USA,en,WPUI731,,Pendleton (OR),45.643333,-118.692778,,0.01,,7950,323,156,,,,,,20010740,,, +1580,USA,en,WPUI773,,Pt Townsend (WA),48.010969,-122.877664,,0.01,,7889,327,156,,,,,,20010743,,, +1580,USA,en,WPUJ295,,Forks (WA),48.077686,-124.278889,,0.01,,7934,328,156,,,,,,20010742,,, +1580,USA,en,WPWG300,,Puyallup (WA),47.210181,-122.297778,,0.01,,7944,326,156,,,,,,20010746,,, +1580,USA,en,WPWY976,,Pt Angeles (WA),48.099472,-123.544358,,0.01,,7905,327,156,,,,,,20010751,,, +1580,USA,en,WQGK745,,Fife/5000 26th St. E (WA),47.243481,-122.362778,,0.01,,7943,326,156,,,,,,20010730,,, +1580,USA,en,WQGK745,,Orting/409 Washington Ave. (WA),47.110189,-122.210556,,0.01,,7950,326,156,,,,,,20010729,,, +1580,USA,en,WQHM720,,Island County (WA),48.15,-122.58,,0.01,,7865,327,156,,,,,,20016251,,, +1580,USA,en,WQHM720,,King County (WA),47.47,-121.84,,0.01,,7902,326,156,,,,,,20016250,,, +1580,USA,en,WQHM720,,Pierce County (WA),47.05,-122.11,,0.01,,7952,326,156,,,,,,20016249,,, +1580,ARG,,LT27 R LV del Montiel,,Villaguay (er),-31.866667,-59.016667,,0.25,,11289,232,157,,0900-0300,1234567,,,40179,,, +1580,URG,,CV158,,El Pororo (la),-34.2,-54.816667,,0.25,,11284,228,157,,,,,,36737,,, +1580,USA,en,WPQE577,,Dallas/3447 Hawes Ave (TX),32.844328,-96.837778,,0.01,,8001,301,157,,,,,,20010754,,, +1580,USA,en,WPXE446,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20010750,,, +1580,URG,,CW158 R San Salvador,,Dolores (so),-33.516667,-58.2,,0.25,,11396,230,158,,0000-2400,1234567,998,,36801,,, +1580,USA,en,WQAV954,,West Point/3016 West 300 North (UT),41.127653,-112.094347,,0.01,,8078,316,158,,,,,,20010747,,, +1580,USA,en,WPHV350,,Victoria (TX),28.690278,-96.942778,,0.01,,8368,298,161,,,,,,20010741,,, +1580,USA,en,WPVP652,,Oroville (CA),39.611003,-121.627694,,0.01,,8649,322,162,,,,,,20010731,,, +1580,USA,en,WPVP765,,Hornbrook (CA),41.992361,-122.60975,,0.01,,8459,323,162,,,,,,20010737,,, +1580,USA,en,WPQK812,,Auburn (CA),38.977669,-121.0155,,0.01,,8684,321,163,,,,,,20010752,,, +1580,USA,en,WPQK812,,Newcastle (CA),38.860983,-121.146833,,0.01,,8701,321,163,,,,,,20010745,,, +1580,CHL,,CD158B R Continental,,Collipulli (AR),-37.95,-72.416667,,0.05,,12570,237,168,,1100-0430,1234567,,,35895,,, +1580,CHL,,CD158A R Millaray,,Canete (BI),-37.766667,-73.366667,,0.05,,12610,238,169,,,,,,35894,,, +1584,HOL,nl,R Paradijs,,Utrecht/Galgenwaard (utr),52.07615,5.142667,,0.1,,87,268,45,,0000-2400,1234567,61,,3800007,,, +1584,I,it,R Studio X,,Momigno (pt),43.966667,10.8,,12,,962,159,56,,0000-2400,1234567,988,,1677,,, +1584,G,en,BBC R 5 Live,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0000-0600,12345..,0,,1669,,, +1584,G,en,BBC R 5 Live,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0100-0700,.....67,0,,1669,,, +1584,G,en,BBC R Nottingham,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0600-0100,....5..,0,,1669,,, +1584,G,en,BBC R Nottingham,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0600-2400,1234...,0,,1669,,, +1584,G,en,BBC R Nottingham,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0700-0100,.....6.,0,,1669,,, +1584,G,en,BBC R Nottingham,,Clipstone (EN-NHS),53.171611,-1.128667,,1,,522,286,62,,0700-2400,......7,0,,1669,,, +1584,E,es,SER,,Ourense (GAL-OU),42.373528,-7.916436,,5,,1525,230,65,,0000-2400,1234567,,,1667,,, +1584,IRL,en,Zenith Classic Rock,,Waterford (WD),52.233333,-7.166667,,1,,925,276,66,,0000-2400,....567,,,4100025,,, +1584,POL,pl,Twoje R Andrychw,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,0600-0700,1234567,,,6400007,,, +1584,POL,pl,Twoje R Andrychw,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1000-1100,1234567,,,6400007,,, +1584,POL,pl,Twoje R Andrychw,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1500-1600,1234567,,,6400007,,, +1584,POL,pl,Twoje R Andrychw,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1900-2000,1234567,,,6400007,,, +1584,POL,pl,Twoje R,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,0700-1000,1234567,,,6400007,,, +1584,POL,pl,Twoje R,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1100-1500,1234567,,,6400007,,, +1584,POL,pl,Twoje R,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,1600-1900,1234567,,,6400007,,, +1584,POL,pl,Twoje R,,Andrychw/Wieża Ciśnień (MP),49.8525,19.338056,,0.8,,938,100,67,,2000-0600,1234567,,,6400007,,, +1584,BIH,,R Bosanski Petrovac,,Bosanski Petrovac (usk),44.566667,16.366667,,1,,1114,135,68,,,,,,46829,,, +1584,G,en,BBC R 5 Live,,Woofferton (EN-SHP),52.318111,-2.718278,,0.3,,622,276,68,,0000-0600,1234567,0,,1670,,, +1584,G,en,BBC R Hereford & Worcester,,Woofferton (EN-SHP),52.318111,-2.718278,,0.3,,622,276,68,,0600-2400,1234567,0,,1670,,, +1584,G,tr,London Turkish R,,East London/Lea Bridge Road (EN-GTL),51.561944,-0.038611,,0.2,,447,265,68,,0000-2400,1234567,,,1672,,, +1584,E,es,SER,,Ganda/Rafalcaid (VAL-V),38.974469,-0.163639,,2,,1546,202,69,,0000-2400,1234567,995,,1666,,, +1584,ROU,ro,R Vocea Speranţei,,Snnicolau Mare (TM),46.083333,20.633333,,1,,1230,117,69,,0000-2400,1234567,,,1914,,, +1584,E,es,Rl,,Ceuta (CEU-CE),35.897778,-5.291667,,5,,2025,212,70,,0000-2400,1234567,,,1664,,, +1584,POL,pl,R AM,,Busko-Zdrj/Komin KZC Ponidzie (SK),50.4675,20.735556,,0.5,,1011,95,70,,0000-2400,1234567,,,6400012,,, +1584,ROU,ro,R Vocea Speranţei,,Sighetu Marmaţiei (MM),47.933333,23.891667,,1,,1328,104,70,,0000-2400,1234567,,,1915,,, +1584,ROU,ro,R Vocea Speranţei,,Zalău (SJ),47.19575,23.040356,,1,,1312,108,70,,0000-2400,1234567,,,6600006,,, +1584,FIN,fi,R Hami,,Ryskl (kh),60.749444,24.120556,,1,,1444,41,71,,0500-2100,9999999,,,2600005,,, +1584,SRB,,R Prijepolje,,Prijepolje (Srb-zlb),43.4,19.65,,1,,1381,129,71,,,,,,1689,,, +1584,G,en,R Tay,,Perth/Friarton Road (SC-PEK),56.375833,-3.4275,,0.21,,795,311,72,,0000-2400,1234567,0,,1671,,, +1584,ROU,ro,R Vocea Speranţei,,Craiova (DJ),44.333333,23.816667,,1,,1546,117,72,,0000-2400,1234567,,,1899,,, +1584,ROU,ro,R Vocea Speranţei,,Făgăraş (BV),45.845222,24.958631,,1,,1516,110,72,,0000-2400,1234567,,,1901,,, +1584,ROU,ro,R Vocea Speranţei,,Suceava (SV),47.633333,26.25,,1,,1501,101,72,,0000-2400,1234567,,,1916,,, +1584,ROU,ro,R Vocea Speranţei,,Vatra Dornei (SV),47.35,25.366667,,1,,1456,104,72,,0000-2400,1234567,,,1911,,, +1584,POL,pl,R AM,,Słupsk/Komin ZPZ Stolon (PM),54.474444,17.019722,,0.1,,752,65,74,,,,,,6400034,,, +1584,ROU,,R Sud,,Giurgiu (GR),43.9,25.966667,,1,,1709,115,74,,,,,,52650,,, +1584,ROU,ro,R Vocea Speranţei,,Tecuci (GL),45.841667,27.427778,,1,,1677,106,74,,0000-2400,1234567,,,6600005,,, +1584,I,it,R Verona,,Verona (vr),45.45,11,,0.1,,813,154,75,,????-????,9999999,,,4000002,,, +1584,GRC,el,RSA 92,7,,Kastro (wgr-ili),37.888364,21.166372,,1,,1953,138,77,,0000-2400,1234567,9936,,1674,, +1584,IRN,fa,IRIB R Iran,,Biarjmand (smn),36.087889,55.805911,,50,,4227,95,82,,2230-0230,1234567,996,,1827,,, +1584,IRN,fa,IRIB R Semnan,,Biarjmand (smn),36.087889,55.805911,,50,,4227,95,82,,0230-2230,1234567,996,,1827,,, +1584,EGY,ar,ERTU Al-Barnameg al-Aam,,Edfu=Idfu (asn),24.993597,32.908778,,10,,3751,133,85,,0300-2300,1234567,,,1668,,, +1584,RUS,ru,R MTUCI,,Moskva/MTUCI (MV),55.755222,37.712333,,0.1,,2070,66,88,,0500-1500,1234567,,,6700142,,, +1584,EGY,ar,ERTU R Al-Wadi al-Gaded,,Baris (wjd),24.666,30.602111,,1,,3672,137,94,,0400-2200,1234567,,,1858,,, +1584,AFG,,R Balkh,,Mazar-e Sharif (bal),36.666667,67.133333,,10,,4958,85,97,,0230-0430,1234.67,,,46820,,, +1584,AFG,,R Balkh,,Mazar-e Sharif (bal),36.666667,67.133333,,10,,4958,85,97,,0230-0730,....5..,,,46820,,, +1584,AFG,,R Balkh,,Mazar-e Sharif (bal),36.666667,67.133333,,10,,4958,85,97,,1230-1530,1234567,,,46820,,, +1584,SDN,ar,SRTC Sudan Nat. R,,Kosti (wnl),13.166667,32.666667,,5,,4923,142,99,,,,,,9400013,,, +1584,AFG,,R Nimroz,,Zaranj (nim),30.961111,61.858333,,2,,5026,95,104,,1230-1430,1234.67,,,51333,,, +1584,AFG,,R Nimroz,,Zaranj (nim),30.961111,61.858333,,2,,5026,95,104,,1230-1930,....5..,,,51333,,, +1584,BHR,en,R Bahrain FM,,Al-Manamah (mnh),26.216667,50.583333,,1,,4664,111,104,,0300-2100,1234567,,,1662,,, +1584,AFG,,R Ghor,,Chaghcharan (gho),34.519444,65.255556,,0.5,,4987,89,110,,,,,,11000006,,, +1584,IND,,AIR North,,Kargil B (JK),34.539928,76.138106,,1,,5725,81,114,,1130-1630,1234567,,,51359,,, +1584,IND,,AIR North/Vividh Bharati,,Padam (JK),33.475678,76.872925,,1,,5855,81,116,,0025-0430,1234567,,,32200002,,, +1584,IND,,AIR North/Vividh Bharati,,Padam (JK),33.475678,76.872925,,1,,5855,81,116,,0700-0930,1234567,,,32200002,,, +1584,IND,,AIR North/Vividh Bharati,,Padam (JK),33.475678,76.872925,,1,,5855,81,116,,1200-1740,1234567,,,32200002,,, +1584,PAK,,PBC R Pakistan,,Chitral (kpk),35.845833,71.784722,,0.25,,5333,83,116,,1045-1530,1234567,,,51393,,, +1584,IND,,AIR North,,Kalpa (HP),31.5,78.166667,,1,,6095,82,118,,0100-0430,1234567,,,51358,,, +1584,IND,,AIR North,,Kalpa (HP),31.5,78.166667,,1,,6095,82,118,,0700-0930,1234567,,,51358,,, +1584,IND,,AIR North,,Kalpa (HP),31.5,78.166667,,1,,6095,82,118,,1100-1740,1234567,,,51358,,, +1584,PAK,,NBS News,,Turbat (blc),26.007,63.064389,,0.25,,5504,99,118,,0200-0400,1234567,,,51395,,, +1584,PAK,,PBC R Pakistan,,Sibbi (blc),29.55,67.883333,,0.25,,5547,92,118,,0755-1108,1234567,,,51394,,, +1584,PAK,,PBC R Pakistan/NBS News,,Turbat (blc),26.007,63.064389,,0.25,,5504,99,118,,1300-1810,1234567,,,51395,,, +1584,RUS,xx,R Rossii,,Taksimo (BU),56.35,114.916667,,1,,6305,39,120,,2057-1700,1234567,,,47001,,, +1584,IND,,AIR North,,Kota (RJ),25.186,75.858544,,1,,6442,89,121,,0025-0400,1234567,,,32200051,,, +1584,IND,,AIR North,,Kota (RJ),25.186,75.858544,,1,,6442,89,121,,1130-1740,1234567,,,32200051,,, +1584,IND,,AIR North/Vividh Bharati,,Mathura/Brindavan (UP),27.51615,77.674439,,1,,6377,86,121,,0025-0430,1234567,,,51363,,, +1584,IND,,AIR North/Vividh Bharati,,Mathura/Brindavan (UP),27.51615,77.674439,,1,,6377,86,121,,0700-0930,1234567,,,51363,,, +1584,IND,,AIR North/Vividh Bharati,,Mathura/Brindavan (UP),27.51615,77.674439,,1,,6377,86,121,,1130-1740,......7,,,51363,,, +1584,IND,,AIR North/Vividh Bharati,,Mathura/Brindavan (UP),27.51615,77.674439,,1,,6377,86,121,,1200-1740,123456,,,51363,,, +1584,IND,,AIR West,,Himmat Nagar (GJ),23.608011,72.977892,,1,,6375,93,121,,0025-0430,1234567,,,52629,,, +1584,IND,,AIR West,,Himmat Nagar (GJ),23.608011,72.977892,,1,,6375,93,121,,0630-0930,1234567,,,52629,,, +1584,IND,,AIR West,,Himmat Nagar (GJ),23.608011,72.977892,,1,,6375,93,121,,1200-1740,1234567,,,52629,,, +1584,CHN,,Changzhi RGD,,Changzhi (SX),36.166667,113.1,,10,,7910,55,126,,????-1505,1234567,,,51343,,, +1584,RUS,ru,R Rossii,,Belaya Gora (RS),68.533333,146.416667,,0.2,,6203,17,126,,1900-1500,1234567,,,47002,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,0025-0400,123456,,,51357,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,0025-1200,......7,,,51357,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,0700-1000,123456,,,51357,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,1130-1740,123456,,,51357,,, +1584,IND,,AIR East,,Jamshedpur (JH),22.787903,86.166406,,1,,7341,83,130,,1245-1740,......7,,,51357,,, +1584,IND,,AIR East,,Keonjhar (OR),21.648275,85.624767,,1,,7400,84,131,,0025-0430,1234567,,,51361,,, +1584,IND,,AIR East,,Keonjhar (OR),21.648275,85.624767,,1,,7400,84,131,,0630-1130,1234567,,,51361,,, +1584,IND,,AIR East,,Keonjhar (OR),21.648275,85.624767,,1,,7400,84,131,,1200-1630,1234567,,,51361,,, +1584,IND,,AIR South,,Kavaratti (Lakshadweep) (LD),10.566667,72.641667,,1,,7469,103,132,,0110-0415,123456,,,51360,,, +1584,IND,,AIR South,,Kavaratti (Lakshadweep) (LD),10.566667,72.641667,,1,,7469,103,132,,0300-0415,......7,,,51360,,, +1584,IND,,AIR South,,Kavaratti (Lakshadweep) (LD),10.566667,72.641667,,1,,7469,103,132,,0630-0930,1234567,,,51360,,, +1584,IND,,AIR South,,Kavaratti (Lakshadweep) (LD),10.566667,72.641667,,1,,7469,103,132,,1130-1500,1234567,,,51360,,, +1584,IND,,AIR Northeast,,Diphu (AS),25.840689,93.454933,,1,,7576,76,133,,0025-0430,1234567,,,51027,,, +1584,IND,,AIR Northeast,,Diphu (AS),25.840689,93.454933,,1,,7576,76,133,,1000-1600,1234567,,,51027,,, +1584,IND,,AIR Northeast,,Mon (NL),26.716667,95.033333,,1,,7607,74,133,,0000-0500,1234567,,,51364,,, +1584,IND,,AIR Northeast,,Mon (NL),26.716667,95.033333,,1,,7607,74,133,,0700-0900,1234567,,,51364,,, +1584,IND,,AIR Northeast,,Mon (NL),26.716667,95.033333,,1,,7607,74,133,,1000-1630,1234567,,,51364,,, +1584,CHN,,Chengde RGD,,Chengde/HBTS1084 (HB),40.966667,117.933333,,1,,7748,49,134,,,,,,51344,,, +1584,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Tongliao (NM),43.666667,122.216667,,1,,7719,44,134,,0955-1700,1234567,,,51347,,, +1584,CHN,zh,Nei Menggu RGD Xinwen Zhonghe Guangbo,,Tongliao (NM),43.666667,122.216667,,1,,7719,44,134,,2215-0800,1234567,,,51347,,, +1584,RUS,ru,R Rossii,,Klyuchi/RV620 (KM),56.304428,160.869758,,1,,7735,15,134,,1700-1300,1234567,,,46996,,, +1584,CHN,,Jinzhong RGD,,Jinzhong (SX),37.683333,112.733333,,1,,7758,54,135,,,,,,51348,,, +1584,CHN,,Meihekou RGD,,Meihekou/Hesheng Cun (JL),42.533333,125.683333,,1,,7985,43,137,,,,,,51350,,, +1584,CHN,,Suizhou RGD,,Suizhou (HU),31.716667,113.366667,,1,,8315,57,140,,,,,,36200685,,, +1584,CHN,,Zunyi RGD,,Zunyi/GZTS691 (GZ),27.533333,106.833333,,1,,8290,65,140,,,,,,51356,,, +1584,PHL,,DYAY-AM,,Minglanilla (ceb),10.25,123.783333,,10,,10886,62,140,,,,,,51396,,, +1584,CHN,,Anqing RGD,,Anqing (AH),30.516667,117.05,,1,,8632,56,142,,,,,,51341,,, +1584,CHN,,Ma'anshan RGD,,Ma'anshan (AH),31.680722,118.53,,1,,8610,54,142,,2150-1500,1234567,,,51349,,, +1584,KOR,,HLDK KBS 1 R,,Danyang (ccb),36.976667,128.363889,,1,,8627,44,142,,0000-2400,1234567,,,51389,,, +1584,CHN,,Yingtan RGD,,Yingtan (JX),28.233333,117,,1,,8835,57,143,,,,,,51353,,, +1584,KOR,,HLQZ KBS 1 R,,Geumsan (ccg),36.096944,127.502778,,1,,8668,45,143,,0000-2400,1234567,,,51390,,, +1584,KOR,,KBS 1 R,,Sancheong (gsn),35.42,127.881389,,1,,8750,45,143,,0000-2400,1234567,,,51391,,, +1584,CHN,,Rui'an RGD,,Rui'an (ZJ),27.783333,120.633333,,1,,9081,55,144,,,,,,51351,,, +1584,PLW,,T8AA Voice of Palau,,Koror/Malakal Island (kor),7.331667,134.453056,,5,,11780,54,146,,1900-1300,1234567,62,,51398,,, +1584,PHL,tl,DWBR-AM Radyo Batay,,Talavera (nve),13,122,,1,,10524,62,149,,????-1005,1234567,9,,51397,,, +1584,INS,id,R Suara Kemang,,Jakarta/Bungur (JK-kju),-6.166667,106.855556,,1,,11261,86,151,,,,,,35400098,,, +1584,J,,NHK R 1,,Shinkitami (hok),43.8,143.866667,,0.1,,8597,30,152,,0000-2400,1234567,,,51383,,, +1584,J,,JOQG NHK1,,Fukaura (toh-aom),40.65,139.933333,,0.1,,8769,34,153,,0000-2400,1234567,,,51370,,, +1584,J,,NHK R 1,,Hiroo (hok),42.3,143.316667,,0.1,,8728,31,153,,0000-2400,1234567,,,51371,,, +1584,J,,NHK R 1,,Nemuro (hok),43.333333,145.6,,0.1,,8702,29,153,,0000-2400,1234567,,,51378,,, +1584,J,,NHK R 1,,Yuzawa (toh-aki),39.15,140.483333,,0.1,,8939,34,153,,0000-2400,1234567,,,51388,,, +1584,HKG,en,RTHK R 3,,Chung Hom Kok (sou),22.213611,114.205056,,0.1,,9212,63,154,,0000-2400,1234567,,,51619,,, +1584,J,,JOBG NHK1,,Shimabara (kyu-nag),32.783333,130.383333,,0.1,,9120,45,154,,0000-2400,1234567,,,51382,,, +1584,J,,NHK R 1,,Atsumi (toh-yam),38.616667,139.583333,,0.1,,8957,35,154,,0000-2400,1234567,,,51368,,, +1584,J,,NHK R 1,,Fujiyoshida (chu-yam),35.5,138.816667,,0.1,,9234,37,154,,0000-2400,1234567,,,51369,,, +1584,J,,NHK R 1,,Karatsu (kyu-sag),33.45,130,,0.1,,9039,45,154,,0000-2400,1234567,,,51372,,, +1584,J,,NHK R 1,,Kasumi (kns-hyo),35.633333,134.633333,,0.1,,9042,40,154,,0000-2400,1234567,,,51373,,, +1584,J,,NHK R 1,,Katsuyama (chu-fuk),36.016667,136.533333,,0.1,,9087,39,154,,0000-2400,1234567,,,51374,,, +1584,J,,NHK R 1,,Mikata (chu-fuk),35.566667,135.9,,0.1,,9104,39,154,,0000-2400,1234567,,,51375,,, +1584,J,,NHK R 1,,Misakubo (chu-shi),35.166667,137.866667,,0.1,,9227,38,154,,,,,,51376,,, +1584,J,,NHK R 1,,Mugi (shi-tok),33.666667,134.416667,,0.1,,9223,41,154,,0000-2400,1234567,,,51377,,, +1584,J,,NHK R 1,,Okayasuwa (chu-nag),36.05,138.066667,,0.1,,9149,38,154,,0000-2400,1234567,,,51379,,, +1584,J,,NHK R 1,,Okuwa (chu-nag),35.675,137.6375,,0.1,,9168,38,154,,0000-2400,1234567,,,51380,,, +1584,J,,NHK R 1,,Osaka (kns-osk),34.55,135.566667,,0.1,,9189,40,154,,0000-2400,1234567,,,51381,,, +1584,J,,NHK R 1,,Tadami (toh-fuk),37.3,139.366667,,0.1,,9078,36,154,,0000-2400,1234567,,,51385,,, +1584,J,,NHK R 1,,Takachiho (chu-gif),32.7,131.3,,0.1,,9172,44,154,,0000-2400,1234567,,,51386,,, +1584,J,,NHK R 1,,Wajima (chu-ish),37.366667,136.916667,,0.1,,8971,38,154,,0000-2400,1234567,,,51387,,, +1584,J,ja,NHK R 1,,Hikimi,34.5,134,,0.1,,9124,41,154,,,,,,31400117,,, +1584,J,ja,NHK R 1,,Hino,34.5,134,,0.1,,9124,41,154,,,,,,31400123,,, +1584,J,ja,NHK R 1,,Hokubo,34.5,134,,0.1,,9124,41,154,,,,,,31400122,,, +1584,J,ja,NHK R 1,,Kannoji,34.5,134,,0.1,,9124,41,154,,,,,,31400121,,, +1584,J,ja,NHK R 1,,Miyoshi (chg-hir),34.8,132.85,,0.1,,9043,42,154,,,,,,31400118,,, +1584,J,ja,NHK R 1,,Oguni (toh-yam),38.066667,139.75,,0.1,,9018,35,154,,,,,,31400116,,, +1584,J,ja,NHK R 1,,Tosashimizu (shi-koc),32.75,132.95,,0.1,,9245,43,154,,,,,,31400119,,, +1584,J,ja,NHK R 1,,Uwa,34.5,134,,0.1,,9124,41,154,,,,,,31400120,,, +1584,AUS,,4CC/t Zinc 1584,,Rockhampton/Pink Lily (QLD),-23.353056,150.462778,,0.5,,15600,58,168,,0000-2400,1234567,14,,51336,,, +1584,AUS,,4VL/t,,Cunnamulla (QLD),-28.111806,145.691931,,0.2,,15732,68,173,,,,,,51334,,, +1584,AUS,,5WM ABC North & West SA,,Woomera (SA),-31.201667,136.825556,,0.1,,15405,80,175,,0000-2400,1234567,,,51339,,, +1584,AUS,,2EC/t,,Narooma/Beach (NSW),-36.228333,150.138333,,0.2,,16677,73,176,,0000-2400,1234567,,,51335,,, +1584,AUS,,2WA ABC Broken Hill,,Wilcannia (NSW),-31.552778,143.379722,,0.1,,15868,74,176,,0000-2400,1234567,,,51338,,, +1584,NZL,,2ZF R Classic Hits,,Picton (MBH),-41.285833,174.015,,0.4,,18489,43,179,,,,,,51392,,, +1584,AUS,,7SH ABC National,,St. Helens (TAS),-41.333753,148.287033,,0.1,,16916,83,180,,0000-2400,1234567,,,51337,,, +1590,USA,,WARV,,Warwick (RI),41.727778,-71.462778,,5,,5734,291,107,,0000-2400,1234567,0,,40745,,, +1590,USA,,WSMN,,Nashua (NH),42.744444,-71.497778,,5,,5664,292,107,,0000-2400,1234567,999,,43029,,, +1590,TUR,en,AFN,,Incirlik/Air Base (akd-ada),37,35.433333,,0.005,,2817,115,108,,0000-2400,1234567,,,1704,,, +1590,USA,,WAKR,,Akron (OH),41.020556,-81.505556,,5,,6412,297,114,,,,4,,40689,,, +1590,USA,,WASB,,Brockport (NY),43.195556,-77.951389,,1,,6033,297,117,,,,,,40746,,, +1590,USA,,WAUB,,Auburn (NY),42.909444,-76.6025,,1,,5971,296,117,,,,9995,,40767,,, +1590,USA,,WNTS,,Beech Grove (D) (IN),39.739167,-86.091389,,5,,6789,299,118,,,,,,20016044,,, +1590,USA,,WPWA,,Chester (PA),39.8775,-75.456389,,1,,6123,292,118,,,,,,42754,,, +1590,USA,,WFBR,,Glen Burnie (MD),39.176667,-76.622222,,1,,6249,292,119,,,,,,41926,,, +1590,USA,,WCGO,,Evanston (IL),42.022222,-87.711944,,2.5,,6705,301,120,,,,1,,42610,,, +1590,USA,,WQCH,,Lafayette (GA),34.715833,-85.268333,,5,,7143,294,121,,,,,,42767,,, +1590,USA,,WTVB,,Coldwater (MI),41.909444,-85.005833,,1,,6554,300,123,,,,,,43232,,, +1590,USA,en,KGFK,,East Grand Forks (MN),47.878056,-97.006667,,1,,6747,312,124,,0000-2400,1234567,,,38185,,, +1590,USA,,WGBW,,Denmark (WI),44.313889,-87.787778,,0.5,,6530,303,125,,0000-2400,1234567,,,43209,,, +1590,USA,,WVOE,,Chadbourn (NC),34.351389,-78.843889,,1,,6765,290,125,,,,,,43325,,, +1590,USA,en,WIJK,,Ocean City (MD),38.404444,-75.126944,,0.23,,6212,291,125,,,,,,20016031,,, +1590,USA,,KVGB,,Great Bend (KS),38.313889,-98.793056,,5,,7641,306,126,,,,998,,39624,,, +1590,VEN,,YVUD R Deporte 15-90,,Caracas (dcf),10.5,-66.916667,,10,,7952,263,127,,0000-2400,1234567,998,,51715,,, +1590,USA,,WNTS,,Beech Grove (N) (IN),39.739167,-86.090556,,0.5,,6789,299,128,,,,,,42524,,, +1590,USA,,WPVL,,Platteville (WI),42.746111,-90.474444,,0.5,,6806,304,128,,,,,,42753,,, +1590,USA,en,KLFE,,Seattle (WA),47.655278,-122.518333,,5,,7910,326,129,,,,995,,38805,,, +1590,PTR,es,WXRF,,Guayama (PR),17.961111,-66.138889,,1,,7256,268,130,,0000-2400,1234567,,,43489,,, +1590,USA,,WALG,,Albany (GA),31.621944,-84.1525,,1,,7326,291,130,,,,,,40694,,, +1590,USA,,WHLX,,Marine City (MI),42.728333,-82.520833,,0.102,,6344,299,130,,,,1,,41661,,, +1590,USA,,WVNA,,Tuscumbia (AL),34.756667,-87.686111,,1,,7289,296,130,,,,993,,43314,,, +1590,USA,,KWBG,,Boone (IA),42.022778,-93.876667,,0.5,,7056,305,131,,,,664,,39692,,, +1590,B,pt,Rdio Veneza AM,,Eusbio (CE),-3.898817,-38.438836,,1,,7519,230,132,,,,,,36902876,,, +1590,USA,,KDEX,,Dexter (MO),36.788889,-89.907778,,0.62,,7257,299,132,,,,,,38253,,, +1590,USA,,KMIC,,Houston (TX),29.843889,-95.4475,,5,,8178,298,132,,,,,,38904,,, +1590,USA,,WHGT,,Chambersburg (PA),39.806389,-77.779167,,0.058,,6274,293,132,,0000-2400,1234567,0,,40953,,, +1590,USA,en,WRXB,,St. Petersburg Beach (FL),27.734167,-82.685556,,1,,7553,287,133,,,,,,42939,,, +1590,B,pt,ZYL369 Rdio Guaicu,,Vrzea da Palma (MG),-17.616556,-44.722556,,10,,9187,228,134,,,,,,36902737,,, +1590,B,pt,ZYI703 Rdio Correio do Vale,,Itaporanga (PB),-7.310389,-38.136875,,1,,7840,228,135,,,,5,,36902729,,, +1590,MEX,es,XEVOZ-AM La Mexicana,,Los Reyes Acaquilpan (mex),19.360667,-98.992717,,10,,9320,294,135,,,,0,,44981,,, +1590,USA,,KQLO,,Sun Valley (NV),39.415833,-119.714167,,5,,8585,320,135,,,,9966,,39196,,, +1590,USA,,WIXK,,New Richmond (WI),45.086111,-92.571944,,0.095,,6736,307,135,,0000-2400,1234567,,,41825,,, +1590,USA,,WPSN,,Honesdale (PA),41.553611,-75.255,,0.015,,5986,293,135,,,,,,42739,,, +1590,CLM,es,HJIP BBN,,Envigado (ant),6.166667,-75.566667,,5,,8919,267,136,,,,0,,2163,,, +1590,CLM,es,HJWB,,Socorro (sat),6.466667,-73.266667,,5,,8736,266,136,,,,,,35902672,,, +1590,USA,,KDJS,,Willmar (MN),45.085278,-95.005278,,0.089,,6868,308,136,,,,,,38272,,, +1590,USA,,KLIV,,San Jose (CA),37.329167,-121.856389,,5,,8880,321,136,,,,4,,38819,,, +1590,DOM,,HIAC R Libertad,,Santiago de los Caballeros (sto),19.45,-70.7,,0.25,,7441,272,137,,0000-2400,1234567,,,52255,,, +1590,USA,,WGGO,,Salamanca (NY),42.173333,-78.685278,,0.014,,6153,296,137,,,,,,41510,,, +1590,USA,en,KVTA,,Ventura (CA),34.236944,-119.2025,,5,,9059,317,137,,,,980,,38769,,, +1590,USA,en,WQEP918,,Trenton (NJ),40.216667,-74.75,,0.01,,6053,292,137,,,,,,20010757,,, +1590,USA,en,WQEP918,,Trenton (NJ),40.216667,-74.75,,0.01,,6053,292,137,,,,,,20010758,,, +1590,USA,en,WQEP918,,Trenton (NJ),40.216667,-74.75,,0.01,,6053,292,137,,,,,,20010760,,, +1590,B,pt,Rdio Bom Jesus,,Camocim (CE),-2.9,-40.833333,,0.25,,7548,232,138,,,,,,36902735,,, +1590,USA,,WFTH,,Richmond (VA),37.500556,-77.457778,,0.019,,6430,291,138,,,,,,41445,,, +1590,USA,,KDAV,,Lubbock (TX),33.520833,-101.774167,,1,,8226,305,139,,,,,,38238,,, +1590,USA,,KTIL,,Tillamook (OR),45.456944,-123.871944,,1,,8173,326,139,,,,,,38883,,, +1590,USA,,WAIK,,Galesburg (IL),40.961944,-90.308333,,0.055,,6940,302,139,,,,,,40674,,, +1590,USA,,WHPY,,Clayton (NC),35.646944,-78.505833,,0.025,,6641,290,139,,,,,,41684,,, +1590,USA,,KMOZ,,Rolla (MO),37.944444,-91.811667,,0.085,,7274,301,140,,,,,,38924,,, +1590,USA,,WSRW,,Hillsboro (OH),39.166111,-83.606944,,0.025,,6684,297,140,,,,,,43066,,, +1590,B,pt,R Restauraco,,Bezerros (PE),-8.309444,-35.8475,,0.25,,7826,225,141,,,,997,,36902724,,, +1590,CTR,,TILGJ Rado 16,,Grecia (alj),10.066667,-84.316667,,2,,9175,277,141,,1100-0400,1234567,,,52171,,, +1590,USA,,WBHN,,Bryson City (NC),35.428056,-83.438333,,0.037,,6971,294,141,,,,,,40852,,, +1590,USA,en,WCSL,,Cherryville (NC),35.374167,-81.404444,,0.03,,6847,292,141,,,,14,,41085,,, +1590,PRU,,OAZ4Z R Agricultura,,Lima (lim),-12.05,-77.05,,5,,10622,257,142,,,,,,2185,,, +1590,USA,,KTCH,,Wayne (NE),42.234444,-97.055278,,0.047,,7214,307,142,,,,,,39461,,, +1590,USA,,WCAM,,Camden (SC),34.223889,-80.678611,,0.027,,6893,291,142,,,,,,40944,,, +1590,USA,,WRCY,,Mt. Vernon (IN),37.934167,-87.928333,,0.035,,7044,298,142,,,,,,42825,,, +1590,USA,en,WKTP,,Jonesborough (TN),36.331667,-82.474167,,0.023,,6838,294,142,,,,,,42077,,, +1590,USA,en,WLBN,,Lebanon (KY),37.598611,-85.246389,,0.024,,6909,296,142,,,,,,42136,,, +1590,USA,,KELP,,El Paso (TX),31.743889,-106.395833,,0.8,,8642,307,143,,,,,,38326,,, +1590,USA,,WABV,,Abbeville (SC),34.150833,-82.392778,,0.027,,7008,292,143,,,,,,40635,,, +1590,USA,,WDBL,,Springfield (TN),36.495,-86.906111,,0.03,,7099,297,143,,,,,,41128,,, +1590,USA,,WYSR,,High Point (NC),35.984444,-80.068889,,0.014,,6714,292,143,,,,,,43551,,, +1590,USA,en,WPSL,,Port St. Lucie (FL),27.307778,-80.307222,,0.063,,7432,285,143,,,,,,42738,,, +1590,USA,en,WPSL698,,Delaware (OH),40.3,-83.066667,,0.01,,6563,297,143,,,,,,20010756,,, +1590,CLM,,HJJQ,,Zarzal (val),4.2,-76.066667,,1,,9126,267,144,,,,,,37513,,, +1590,CLM,es,HJQM Ecos de la Miel,,Samana (cal),5.416667,-76,,1,,9014,267,144,,,,,,2074,,, +1590,GTM,,TGXC R Triunfadora,,Chimaltenango (cmt),14.566667,-90.816667,,1,,9217,285,144,,,,,,40557,,, +1590,MEX,es,XEHC-AM R Baha,,Ensenada/Indeco Lomitas (bcn),31.889061,-116.579725,,1,,9158,314,144,,,,,,44102,,, +1590,USA,,KPRT,,Kansas City (MO),39.068056,-94.536111,,0.047,,7338,303,144,,,,,,39165,,, +1590,USA,,KDAE,,Sinton (TX),28.021111,-97.470556,,0.5,,8459,298,145,,,,,,38233,,, +1590,USA,,KGAS,,Carthage (TX),32.153333,-94.314444,,0.128,,7911,298,145,,,,,,38458,,, +1590,USA,,WPUL,,South Daytona (FL),29.154444,-81.022222,,0.032,,7327,287,145,,,,,,42751,,, +1590,USA,,WTGA,,Thomaston (GA),32.895833,-84.302778,,0.025,,7231,292,145,,,,,,43130,,, +1590,USA,en,WXRS,,Swainsboro (GA),32.556944,-82.341389,,0.023,,7133,291,145,,,,,,43493,,, +1590,EQA,,HCGG6,,La Mana (cot),-0.916667,-79.25,,1,,9792,266,146,,,,,,36955,,, +1590,EQA,,HCOT6 R Panamericana,,Quero (tun),-1.35,-78.566667,,1,,9783,265,146,,,,,,37053,,, +1590,EQA,,HCRZ1 R Mensaje,,Cajambe (pic),-0.05,-78.216667,,1,,9645,266,146,,,,,,37125,,, +1590,USA,,KYNG,,Springdale (AR),36.206944,-94.119167,,0.05,,7554,301,146,,,,,,39906,,, +1590,B,pt,Rdio Vale do Jiquiri,,Jiquiri (BA),-13.266111,-39.575556,,0.25,,8501,226,148,,,,,,36902727,,, +1590,BOL,,R Globo,,La Guardia (scz),-17.9,-63.333333,,1,,10264,243,148,,,,,,52079,,, +1590,USA,,KKAY,,White Castle (LA),30.183611,-91.1075,,0.067,,7883,295,148,,,,,,38707,,, +1590,USA,en,KBJT,,Fordyce (AR),33.802778,-92.436111,,0.035,,7657,298,148,,,,,,38046,,, +1590,BOL,,R Kollasuyo Marka,,Tiwanacu=Tiawanaku (lpz),-16.55,-68.7,,1,,10476,248,149,,,,432,,52077,,, +1590,MEX,es,XEBZ-AM Extasis,,Ciudad Delicias (chi),28.190567,-105.449164,,0.25,,8911,304,149,,,,,,43802,,, +1590,PRU,,OCX6S R Mundo,,Arequipa/Cerro Colorado (are),-16.4,-71.533333,,1,,10644,251,149,,,,,,2162,,, +1590,PRU,,R Huaynaroque,,Juliaca (pun),-15.816667,-70.016667,,1,,10495,250,149,,,,,,52412,,, +1590,B,pt,ZYK774 Rdio Japi,,Cabreva/Av So Paulo 100 (SP),-23.247542,-47.067275,,0.5,,9853,228,150,,,,,,36902738,,, +1590,CHL,,CD159 Em. Tepual,,Llanquihue (LL),-41.25,-73.016667,,5,,12879,235,150,,,,,,51959,,, +1590,EQA,,HCAS2,,Libertad (gua),-2.216667,-80.866667,,0.5,,10016,266,150,,,,,,36852,,, +1590,USA,,KLRK,,Mexia (TX),31.62,-96.751667,,0.065,,8102,300,150,,,,,,39288,,, +1590,B,pt,Rdio Sim Tupi r:Tupi 1280,,Cachoeiro de Itapemirim (ES),-20.85,-41.1,,0.25,,9326,224,151,,,,982,,36902725,,, +1590,B,pt,ZYL368 Rdio Cidade Carinho,,Ub (MG),-21.100278,-42.930556,,0.25,,9438,225,151,,,,,,36902736,,, +1590,USA,,KWEY,,Weatherford (OK),35.559167,-98.719722,,0.032,,7875,304,151,,,,,,39704,,, +1590,ARG,,R Stentor,,Buenos Aires (df),-34.605556,-58.375,,1,,11505,230,152,,,,,,33000054,,, +1590,ARG,es,AM 1590 Sin Fronteras,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000090,,, +1590,ARG,es,R Guaviyu,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,51914,,, +1590,ARG,es,R Voz,,Lomas de Zamora (ba),-34.766667,-58.4,,1,,11521,230,152,,,,,,51913,,, +1590,B,pt,ZYN207 Rdio Globo,,Lambari (MG),-21.973736,-45.335769,,0.25,,9642,227,152,,,,96,,36902726,,, +1590,BOL,,R Producciones Pusisuyu,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,0000-0400,123456,43,,52078,,, +1590,BOL,,R Producciones Pusisuyu,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,1000-1300,123456,43,,52078,,, +1590,BOL,,R Producciones Pusisuyu,,Oruro (oru),-17.966667,-67.116667,,0.5,,10504,246,152,,1200-1300,......7,43,,52078,,, +1590,URG,,CX159 R Real,,Colonia (co),-34.45,-57.766667,,1,,11459,230,152,,0930-0300,1234567,,,36802,,, +1590,USA,en,WPWL619,,Pensacola (FL),31.527678,-87.327683,,0.01,,7534,293,152,,,,,,20010763,,, +1590,USA,es,KVTR,,Victorville (CA),34.5375,-117.311667,,0.131,,8941,316,152,,,,,,39298,,, +1590,B,,ZYJ316,,Faxinal (PR),-23.966667,-51.316667,,0.25,,10141,231,153,,,,,,46038,,, +1590,B,pt,ZYJ290 Rdio Cultura,,Andir/Fazenda So Gabriel (PR),-23.043056,-50.240833,,0.25,,9996,230,153,,,,,,36902732,,, +1590,USA,en,WQFS211,,Pinecrest (FL),25.660978,-80.327306,,0.01,,7570,284,153,,,,,,20010759,,, +1590,B,,ZYJ224,,Araucria (PR),-25.566667,-49.383333,,0.25,,10193,228,154,,,,,,45950,,, +1590,B,,ZYJ799,,Ponte Serrada (SC),-26.866667,-51.966667,,0.25,,10450,230,154,,,,,,46209,,, +1590,B,pt,ZYI403 Eldorado AM,,Eldorado (MS),-23.787292,-54.29305,,0.25,,10284,233,154,,,,,,36902739,,, +1590,B,pt,ZYJ296 Rdio Hava,,Capito Lenidas Marques (PR),-25.441111,-53.596389,,0.25,,10401,232,154,,,,,,36902733,,, +1590,B,pt,ZYJ823 Rdio Clube de Joinville,,Joinville (SC),-26.275833,-48.776944,,0.25,,10230,227,154,,,,99,,36902723,,, +1590,BOL,,CP118,,Viacha (lpz),-16.666667,-66.283333,,0.25,,10335,246,154,,,,,,36633,,, +1590,CHL,,CB159 R Aconcagua,,San Felipe (VS),-32.766667,-70.716667,,1,,12029,240,154,,1100-0430,1234567,,,35749,,, +1590,URG,,CX159A,,Paso de los Toros (ta),-32.766667,-56.466667,,0.5,,11236,230,154,,,,,,36803,,, +1590,B,pt,ZYK281 Rdio Navegantes,,Porto Lucena (RS),-27.85,-55.016667,,0.25,,10703,231,155,,,,,,46310,,, +1590,USA,en,WPPU297,,Jackson (WY),43.477681,-110.794347,,0.01,,7802,317,155,,,,,,20010762,,, +1590,USA,en,WPPU297,,Victor (WY),43.594347,-111.111019,,0.01,,7806,317,155,,,,,,20010761,,, +1590,B,pt,ZYK212 Rdio Clube de Bag AM,,Bag (RS),-31.316667,-54.1,,0.25,,10979,229,156,,,,,,36902728,,, +1590,BOL,,CP155 R Bermejo,,Bermejo (trj),-22.683333,-64.366667,,0.25,,10760,241,156,,0930-0100,1234567,,,36654,,, +1590,PRG,,R Villeta,,Villeta (cet),-25.466667,-57.6,,0.2,,10622,235,156,,,,,,1947,,, +1590,URG,,CV159 R Regional,,Constitucion (sa),-31.066667,-57.816667,,0.25,,11151,232,157,,1000-0200,1234567,,,36738,,, +1590,URG,,CW159 R Regional La Nueva R,,Lascano (ro),-33.666667,-54.216667,,0.25,,11205,228,157,,0900-0300,1234567,,,36731,,, +1590,USA,en,WPLX298,,Trinidad/136 W Main St (CO),37.177625,-104.511031,,0.01,,8052,309,157,,,,,,20010764,,, +1590,ARG,es,La R de la Regin,,Dolores (ba),-36.316667,-57.666667,,0.25,,11624,228,158,,,,,,33000057,,, +1590,CHL,,CC159 R Rengo,,Rengo (LI),-34.366667,-70.866667,,0.25,,12176,239,160,,1000-0400,1234567,,,35830,,, +1593,F,,Bretagne 5,,Saint-Gouno (22),48.305556,-2.55,,5,,764,240,58,,0000-2400,9999999,,,2500002,,, +1593,ROU,de,SRR R Bukarest,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0820-0830,......7,994,,1702,,, +1593,ROU,de,SRR R Bukarest,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1200-1300,123456,994,,1702,,, +1593,ROU,de,SRR R Bukarest,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0820-0830,......7,993,,1700,,, +1593,ROU,de,SRR R Bukarest,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,1200-1300,123456,993,,1700,,, +1593,ROU,de,SRR R Neumarkt,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0830-0900,......7,994,,1702,,, +1593,ROU,de,SRR R Neumarkt,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1900-2000,123456,994,,1702,,, +1593,ROU,hu,SRR Kolozsvri Rdi,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0600-0800,123456,993,,1700,,, +1593,ROU,hu,SRR Kolozsvri Rdi,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,1300-1600,1234567,993,,1700,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0600-0900,.....6.,994,,1702,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0800-0820,......7,994,,1702,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0900-1200,123456,994,,1702,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0900-1700,......7,994,,1702,,, +1593,ROU,hu,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1300-1600,123456,994,,1702,,, +1593,ROU,ro,SRR Antena Braşovului,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0600-0700,1234...,994,,1702,,, +1593,ROU,ro,SRR Antena Braşovului,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1600-1700,1234...,994,,1702,,, +1593,ROU,ro,SRR Marosvsrhelyi Rdi,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1300-1700,....56.,994,,1702,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0355-0600,1234567,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0600-0820,......7,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0800-1200,12345..,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0800-1300,.....6.,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,0830-1300,......7,993,,1700,,, +1593,ROU,ro,SRR R Cluj,,Oradea/Rontău (BH),46.999403,22.005028,,7,,1257,111,61,,1600-2000,1234567,993,,1700,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0350-0600,1234567,994,,1702,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0600-0800,......7,994,,1702,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,0700-0900,12345..,994,,1702,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1700-1900,1234567,994,,1702,,, +1593,ROU,ro,SRR R Trgu Mureş,,Miercurea Ciuc (HR),46.367278,25.8145,,14,,1540,107,61,,1900-1955,......7,994,,1702,,, +1593,ROU,de,SRR R Bukarest,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0820-0830,......7,,,1701,,, +1593,ROU,de,SRR R Bukarest,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1200-1300,123456,,,1701,,, +1593,ROU,hu,SRR Kolozsvri Rdi,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0600-0800,123456,,,1701,,, +1593,ROU,hu,SRR Kolozsvri Rdi,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1300-1600,1234567,,,1701,,, +1593,ROU,ro,SRR Antena Sibiului,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1630-1900,1234567,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0355-0600,1234567,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0600-0820,......7,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0800-1200,12345..,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0800-1300,.....6.,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,0830-1300,......7,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1600-1630,1234567,,,1701,,, +1593,ROU,ro,SRR R Cluj,,Sibiu (SB),45.793272,24.138119,,7,,1467,112,63,,1900-2000,1234567,,,1701,,, +1593,ROU,ro,SRR R Romnia Actualităţi,,Ion Corvin (CT),44.116958,27.801311,,14,,1810,111,64,,0000-2400,1234567,9890,,1900,,, +1593,I,it,R Gold Italia,,unknown (me),38.266667,15.627778,,1,,1697,151,74,,????-????,9999999,,,4000043,,, +1593,EGY,ar,ERTU R Matruh/ERTU Al-Quran al-Karim,,Matruh (mth),31.330194,27.266556,,10,,2865,136,76,,0200-2200,1234567,993,,1694,,, +1593,KWT,ar,R Free Iraq,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,0200-0700,1234567,22,,1697,,, +1593,KWT,ar,R Free Iraq,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,1500-1530,1234567,22,,1697,,, +1593,KWT,ar,R Free Iraq,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,1830-2000,1234567,22,,1697,,, +1593,KWT,ar,R Free Iraq,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,2100-2300,1234567,22,,1697,,, +1593,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,0130-0200,.23456.,22,,1697,,, +1593,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,2300-0130,1234567,22,,1697,,, +1593,KWT,fa,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,1530-1830,1234567,22,,1697,,, +1593,KWT,ku,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,1400-1500,1234567,22,,1697,,, +1593,KWT,ku,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.502778,47.686944,,150,350,4201,110,77,,2000-2100,1234567,22,,1697,,, +1593,MRC,,SNRT C,,Marrakech (mth),31.666667,-8,,1,,2556,213,83,,0600-0100,1234567,,,1699,,, +1593,RUS,ru,ZS1SDR,,Sankt-Peterburg/SPBGuT (SP),59.902778,30.488889,,0.01,,1715,50,94,,1200-1330,..3....,,,6700144,,, +1593,CHN,mn,Xinjiang RGD Mongγol/CNR 8,,Korla/SARFT8104 (XJ),41.772778,86.214722,,10,,5853,67,106,,2300-1800,1234567,,,52557,,, +1593,IND,,AIR West,,Bhopal A (MP),23.254444,77.483333,,10,,6711,90,114,,0025-0530,1234567,,,51409,,, +1593,IND,,AIR West,,Bhopal A (MP),23.254444,77.483333,,10,,6711,90,114,,0700-1115,1234567,,,51409,,, +1593,IND,,AIR West,,Bhopal A (MP),23.254444,77.483333,,10,,6711,90,114,,1130-1740,1234567,,,51409,,, +1593,CHN,zh,CNR 1,,Changzhou/SARFT623 (JS),31.703556,120.105806,,600,233,8694,53,115,,1000-1805,1234567,0,,52559,,, +1593,CHN,zh,CNR 1,,Changzhou/SARFT623 (JS),31.703556,120.105806,,600,233,8694,53,115,,2025-2330,1234567,0,,52559,,, +1593,CHN,,Suihua RGD,,Suihua (HL),46.566667,126.833333,,1,,7666,39,134,,,,,,51405,,, +1593,J,,JOQB NHK2,,Niigata (chu-nii),37.845,138.9175,,10,,9006,36,134,,2030-1500,1.....7,,,51411,,, +1593,J,,JOQB NHK2,,Niigata (chu-nii),37.845,138.9175,,10,,9006,36,134,,2030-1635,.2345..,,,51411,,, +1593,J,,JOQB NHK2,,Niigata (chu-nii),37.845,138.9175,,10,,9006,36,134,,2030-1640,.....6.,,,51411,,, +1593,J,,JOTB NHK2,,Matsue/Izumo-Shi (chg-shi),35.378333,132.745556,,10,,8982,42,134,,2030-1500,1.....7,,,51410,,, +1593,J,,JOTB NHK2,,Matsue/Izumo-Shi (chg-shi),35.378333,132.745556,,10,,8982,42,134,,2030-1635,.2345..,,,51410,,, +1593,J,,JOTB NHK2,,Matsue/Izumo-Shi (chg-shi),35.378333,132.745556,,10,,8982,42,134,,2030-1640,.....6.,,,51410,,, +1593,THA,,Sor. Wor. Thor. (R Thailand),,Ratchaburi (rtb),13.533333,99.816667,,10,,9053,79,134,,2200-1550,1234567,,,51419,,, +1593,THA,th,Neung Por. Nor.,,Buriram (brr),14.983611,103.088889,,10,,9145,76,134,,????-1405,1234567,,,51418,,, +1593,TWN,,Taiwan Ch Yuyeh Kuangpo Tientai,,Yilan (YL),24.753319,121.735689,,3,,9421,56,140,,0000-2400,1234567,,,51420,,, +1593,PHL,tl,DXFM-AM/DXSK-AM Radyo Ranaw,,Marawi City (lds),8.016667,124.3,,10,,11124,63,141,,2325-????,1234567,,,51415,,, +1593,FSM,,V6AK FSMBS R Chuuk,,Weno (chu),7.458133,151.849511,,5,,12623,38,149,,2000-1400,1234567,974,,51412,,, +1593,AUS,it,3RG Rete Italia,,Melbourne/Epping (VIC),-37.638556,145.018611,,5,,16442,80,161,,,,,,1953,,, +1593,NZL,,1XCB R.Asia Pacific/R.Samoa,,Auckland (AUK),-36.95,174.866667,,2,,18102,33,171,,0000-2400,1234567,12,,1952,,, +1593,NZL,,The Coast,,Christchurch/Marshland (CAN),-43.489747,172.637478,,2.5,,18613,52,171,,,,,,51414,,, +1593,AUS,en,2KY Sky Sports R,,Murwillumbah/Terranora (NSW),-28.242722,153.511333,,0.2,,16219,59,174,,,,9914,,51403,,, +1600,USA,,WUNR,,Brookline (MA),42.288889,-71.189167,,20,,5677,292,101,,0000-2400,1234567,0,,43265,,, +1600,USA,es,WWRL,,New York/Secaucus (Radio Av.) [NJ] (NY),40.795556,-74.055,,5,,5966,292,110,,0000-2400,1234567,9915,,43427,,, +1600,USA,,WHNP,,East Longmeadow (MA),42.073611,-72.524444,,2.5,,5777,292,111,,0000-2400,1234567,,,41669,,, +1600,USA,en,WAAM,,Ann Arbor (MI),42.192222,-83.685833,,5,,6454,299,115,,0000-2400,1234567,5,,40619,,, +1600,USA,,WRPN,,Ripon (WI),43.816944,-88.846944,,5,,6629,304,116,,,,997,,42908,,, +1600,USA,,KPNP,,Watertown (MN),44.923056,-93.782222,,5,,6815,307,118,,,,0,,39889,,, +1600,USA,en,WXMY,,Saltville (VA),36.861944,-81.724722,,5,,6749,294,118,,1200-2400,1234567,,,43481,,, +1600,USA,,WRJE,,Dover (DE),39.169722,-75.553611,,1,,6182,291,119,,0000-2400,1234567,,,41994,,, +1600,USA,en,KGYM,,Cedar Rapids (IA),41.970833,-91.533611,,5,,6929,304,119,,,,11,,38202,,, +1600,PTR,es,WCMA,,Bayamon (PR),18.360556,-66.158333,,5,,7224,268,122,,1100-0400,1234567,997,,42249,,, +1600,USA,,KATZ,,St. Louis (MO),38.617222,-90.082778,,3.5,,7117,300,123,,,,,,37983,,, +1600,USA,,WLXE,,Rockville (MD),39.097778,-77.151111,,0.5,,6289,292,123,,,,,,42260,,, +1600,DOM,,HIFG R Revelacion en Amrica,,Santo Domingo (sdo),18.466667,-69.9,,5,,7470,271,125,,1200-0200,1234567,,,52256,,, +1600,USA,,WEHH,,Elmira Hts-Horsehds (NY),42.119722,-76.810278,,0.17,,6042,295,125,,0000-2400,1234567,,,41269,,, +1600,USA,ht,WHTY,,Riviera Beach (FL),26.748611,-80.132778,,4.7,,7467,285,125,,,,,,42358,,, +1600,USA,xx,KVRI,,Blaine (WA),48.954167,-122.743333,,10,,7794,327,125,,0000-2400,1234567,2,,39664,,, +1600,EQA,es,HCPN1 Ilusin AM,,Quito (pic),-0.183333,-78.5,,100,,9676,266,126,,,,15,,2054,,, +1600,USA,,KEPN,,Lakewood (CO),39.655556,-105.074444,,5,,7862,311,129,,,,,,20016019,,, +1600,USA,,KLGA,,Algona (IA),43.068056,-94.304444,,0.5,,6994,306,130,,,,,,38808,,, +1600,USA,,WHOL,,Allentown (PA),40.5925,-75.478333,,0.056,,6071,293,130,,,,,,41676,,, +1600,USA,en,WLRS (r:WNDA),,Eminence (KY),38.3525,-85.185833,,0.32,,6845,297,130,,,,,,43220,,, +1600,USA,,WXVI,,Montgomery (AL),32.394444,-86.289167,,1,,7397,293,131,,,,,,43497,,, +1600,USA,,WHIY,,Huntsville (AL),34.758889,-86.643056,,0.5,,7225,295,132,,,,,,41335,,, +1600,USA,,WIDU,,Fayetteville (NC),35.098333,-78.886667,,0.147,,6709,290,132,,,,,,41733,,, +1600,USA,xx,KAHZ,,Pomona (CA),34.03,-117.726389,,15,,9009,316,132,,,,9997,,38920,,, +1600,VEN,,YVJR,,Barquisimeto (lar),10.066667,-69.283333,,5,,8151,265,132,,,,,,45348,,, +1600,USA,,WMCR,,Oneida (NY),43.084444,-75.693056,,0.02,,5902,295,133,,,,,,42293,,, +1600,B,pt,ZYK779 Rdio Nove de Julho,,So Paulo (SP),-23.501944,-46.6925,,20,,9858,227,134,,0000-2400,1234567,9869,,36902740,,, +1600,USA,,WJSA,,Jersey Shore (PA),41.225556,-77.266944,,0.02,,6136,294,135,,,,,,41928,,, +1600,CLM,es,HJHV,,Zipaquir (cun),5.033333,-74,,5,,8912,266,136,,,,,,35902728,,, +1600,CLM,es,HJO72,,Carepa (ant),7.766667,-76.666667,,5,,8854,269,136,,,,,,35902809,,, +1600,USA,,KDAK,,Carrington (ND),47.428611,-99.084167,,0.09,,6889,312,136,,,,,,38234,,, +1600,USA,,WKKX,,Wheeling (WV),40.090556,-80.703056,,0.033,,6434,296,136,,0000-2400,1234567,9959,,42032,,, +1600,USA,,WPDC,,Elizabethtown (PA),40.1625,-76.576667,,0.018,,6172,293,136,,,,,,42659,,, +1600,USA,es,KGST,,Fresno (CA),36.71,-119.835,,5,,8850,319,136,,,,9976,,38512,,, +1600,GTM,,TGML R Mara LV de la Familia,,Ciudad de Guatemala (gut),14.566667,-90.466667,,5,,9194,284,137,,1130-0500,1234567,,,52140,,, +1600,USA,,KOGT,,Orange (TX),30.140278,-93.753056,,1,,8049,297,137,,,,,,39064,,, +1600,USA,,KRVA,,Cockrell Hill (TX),32.739722,-96.711389,,0.93,,8003,301,137,,,,,,39309,,, +1600,USA,,WAYC,,Bedford (PA),40.043056,-78.503611,,0.018,,6302,294,137,,,,,,41647,,, +1600,USA,,WCPK,,Chesapeake (VA),36.802778,-76.282778,,0.023,,6409,290,137,,,,,,41066,,, +1600,USA,,WARU,,Peru (IN),40.764722,-86.040556,,0.037,,6705,299,138,,,,,,40744,,, +1600,USA,,WULM,,Springfield (OH),39.953056,-83.868611,,0.034,,6639,297,138,,,,,,43260,,, +1600,USA,en,WKWF,,Key West (FL),24.571389,-81.740278,,0.5,,7755,284,138,,,,9998,,42092,,, +1600,USA,es,KTUB,,Centerville (UT),40.902222,-111.927778,,1,,8090,316,138,,,,,,39289,,, +1600,USA,,KUBA,,Yuba City (CA),39.106111,-121.655,,2.5,,8699,321,139,,,,53,,39562,,, +1600,USA,,WTTF,,Tiffin (OH),41.125556,-83.231944,,0.019,,6509,298,139,,,,,,43223,,, +1600,USA,,WZZW,,Milton (WV),38.429444,-82.105833,,0.026,,6650,295,139,,,,,,43603,,, +1600,CTR,,TIJV R 88 Stereo,,San Isidro del General (sjs),9.366667,-83.7,,3,,9194,276,140,,1100-0300,1234567,,,52174,,, +1600,USA,,KOPB,,Eugene (OR),44.051389,-123.063333,,1,,8278,325,140,,,,,,38315,,, +1600,USA,,WZNZ,,Atlantic Beach (FL),30.324722,-81.43,,0.089,,7257,288,140,,,,,,42786,,, +1600,USA,es,WAOS,,Austell (GA),33.809444,-84.656944,,0.067,,7178,293,140,,0000-2400,1234567,5,,40731,,, +1600,CTR,,TIMMCH R Golfito,,Puerto Golfito (pta),8.65,-83.15,,2,,9220,275,141,,0000-2400,1234567,,,52173,,, +1600,USA,,WRSL,,Corbin (KY),37.018333,-84.099444,,0.027,,6885,295,141,,,,,,20012401,,, +1600,CTR,,TIMQ R Pococ,,Gupiles (lmn),10.216667,-83.766667,,1.5,,9125,276,142,,1100-0400,1234567,,,52172,,, +1600,USA,,KLEB,,Golden Meadow (LA),29.395278,-90.266944,,0.25,,7898,294,142,,,,,,38796,,, +1600,USA,,WFIS,,Fountain Inn (SC),34.707778,-82.227778,,0.025,,6952,292,142,,,,,,41389,,, +1600,USA,,KXEW,,South Tucson (AZ),32.196111,-110.983889,,1,,8846,310,143,,,,,,39790,,, +1600,USA,en,WKZK,,North Augusta (SC),33.493611,-81.997778,,0.027,,7036,291,143,,,,,,42112,,, +1600,EQA,,HCPB5,,Giron (azu),-2.916667,-78.983333,,2,,9950,265,144,,,,,,37057,,, +1600,HND,,HRPC,,San Luis del Pacayal (bar),15.116667,-88.283333,,1,,9001,283,144,,,,,,37823,,, +1600,HND,,HRXN,,Tegucigalpa (fmz),14.066667,-87.216667,,1,,9022,282,144,,,,,,37873,,, +1600,USA,,KTTN,,Trenton (MO),40.083333,-93.558333,,0.033,,7198,304,144,,,,,,39544,,, +1600,USA,en,WATX,,Algood (TN),36.188611,-85.473056,,0.02,,7036,295,144,,,,,,40765,,, +1600,MEX,es,XETPA-AM Soy Guerrero,,Tlapa de Comonfort (gue),17.556111,-98.530556,,1,,9452,292,145,,,,,,44851,,, +1600,USA,,KNCY,,Nebraska City (NE),40.674167,-95.885556,,0.031,,7280,305,145,,,,,,38970,,, +1600,USA,,KNWA,,Bellefonte (AR),36.246944,-93.085,,0.05,,7490,300,145,,,,,,39030,,, +1600,USA,,KRFS,,Superior (NE),40.025,-98.077222,,0.044,,7456,306,145,,,,,,39241,,, +1600,USA,,WMQM,,Lakeland (TN),35.176111,-89.936111,,0.035,,7392,298,145,,0000-2400,1234567,,,42380,,, +1600,USA,,WTZQ,,Hendersonville (NC),35.314722,-82.432778,,0.012,,6917,293,145,,,,,,43247,,, +1600,URG,,CW160,,Tacuaremb (ta),-31.683333,-55.966667,,3,,11110,230,146,,,,,,36762,,, +1600,USA,,KMDO,,Fort Scott (KS),37.783611,-94.7,,0.035,,7455,303,146,,,,,,38891,,, +1600,USA,,KUSH,,Cushing (OK),35.986389,-96.710278,,0.07,,7723,303,146,,,,,,39596,,, +1600,USA,es,WLAA,,Winter Garden (FL),28.568056,-81.518889,,0.035,,7407,287,146,,,,,,42581,,, +1600,EQA,,HCIP2,,Consular (gua),-2.616667,-80.366667,,1,,10017,266,147,,,,,,36974,,, +1600,EQA,,Ondas de Caluma,,Caluma (bol),-1.5,-79.333333,,1,,9849,266,147,,,,27,,2115,,, +1600,BOL,,R La Voz de Dios,,El Alto (lpz),-16.5,-68.166667,,1,,10438,248,148,,0850-0200,1234567,,,52081,,, +1600,USA,en,KIVA,,Albuquerque (NM),35.051111,-106.642778,,0.175,,8356,309,148,,,,,,37951,,, +1600,CLM,es,HKO63,,Jardin (ant),6.966667,-75.533333,,0.25,,8847,268,149,,,,,,35902835,,, +1600,CLM,es,HKT39,,Valencia (cor),8.266667,-76.15,,0.25,,8776,269,149,,,,,,35902727,,, +1600,PRU,es,OBU4R R Nuevo Tempo,,Huancayo (jun),-12.133333,-75.25,,1,,10510,256,149,,1000-0500,1234567,,,37000122,,, +1600,URG,,CV160 Emisora Continental,,Pando/Joaqun Surez (ca),-34.780556,-55.98825,,2,,11398,228,149,,0915-0300,1234567,,,36739,,, +1600,CLM,es,HKX83,,La Celia (ris),5.05,-76.016667,,0.25,,9048,267,150,,,,,,35902778,,, +1600,CTR,,LV de Talamanca,,Talamanca (sjs),9.5,-83.666667,,0.25,,9181,276,150,,,,,,52181,,, +1600,CTR,,R Quepos,,Puerto Quepos (pta),9.416667,-84.166667,,0.25,,9222,276,150,,,,,,52179,,, +1600,CTR,,TIRCBA R Cultural,,Buenos Aires (alj),10.066667,-84.433333,,0.25,,9183,277,150,,,,,,52177,,, +1600,CTR,,TIRCP R Cultural,,Pital (alj),10.45,-84.283333,,0.25,,9139,277,150,,,,,,52178,,, +1600,CTR,,TIRCT R Cultural,,Turrialba (ctg),9.9,-83.683333,,0.25,,9147,276,150,,,,,,52175,,, +1600,CTR,,TIRCU R Cultural,,Upala (alj),10.9,-85.033333,,0.25,,9151,278,150,,,,,,52180,,, +1600,USA,en,WPBE684,,Kansas City (MO),39.056111,-94.495778,,0.01,,7337,303,150,,,,,,20010767,,, +1600,ARG,,R Armonia,,Jose Ingenieros (ba),-34.6,-58.45,,1.2,,11508,230,151,,0000-2400,1234567,,,51915,,, +1600,BOL,,CP153 R Continental,,Punata (cbb),-17.566667,-65.783333,,0.5,,10385,245,151,,1000-0200,1234567,,,52080,,, +1600,CTR,,TIRCN R Cultural Nicoyano,,Nicoya (gnc),10.15,-85.45,,0.25,,9245,278,151,,,,,,52176,,, +1600,MEX,es,XEGEM-AM R Mexiquense,,Metepec (mex),19.249517,-99.5874,,0.25,,9367,294,151,,,,,,44052,,, +1600,ARG,,R Belgrano,,Junn (ba),-34.566667,-60.966667,,1,,11639,232,152,,,,,,51917,,, +1600,ARG,,R Copacabana,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,,,51918,,, +1600,ARG,es,Region Centro,,Montes de Oca (sf),-32.566667,-61.766667,,1,,11502,234,152,,,,,,33000058,,, +1600,USA,en,WQCX525,,Great Falls/15 Upper River Road (MT),47.4925,-111.3075,,0.01,,7464,320,152,,,,,,20010772,,, +1600,ARG,,R Fenix,,General Viamonte (ba),-34.983333,-61.033333,,1,,11680,232,153,,,,,,51916,,, +1600,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20010768,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010765,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010766,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010769,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010773,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010774,,, +1600,USA,en,WPVB549,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20010775,,, +1600,USA,en,WPWW707,,Bozeman (MT),45.683333,-111.033333,,0.01,,7614,318,153,,,,,,20010778,,, +1600,USA,en,WPWW707,,Bozeman (MT),45.683333,-111.033333,,0.01,,7614,318,153,,,,,,20010780,,, +1600,CLM,es,HKX84,,Dosquebradas (ris),4.833333,-75.666667,,0.1,,9043,267,154,,,,,,35902777,,, +1600,CLM,es,HKZ77,,Venadillo (tol),4.716667,-74.933333,,0.1,,9003,266,154,,,,,,35902759,,, +1600,CLM,es,HKZ79,,Cajamarca (tol),4.45,-75.433333,,0.1,,9060,266,154,,,,,,35902794,,, +1600,USA,en,WPWA784,,West Yellowstone (MT),44.7095,-111.098167,,0.01,,7705,318,154,,,,,,20010770,,, +1600,URG,,CX160 R Litoral,,Fray Bentos (rn),-33.133333,-58.266667,,0.5,,11365,231,155,,1000-0300,1234567,,,36805,,, +1600,USA,,KYBC,,Cottonwood (AZ),34.720833,-111.998611,,0.046,,8664,312,156,,,,36,,39840,,, +1600,USA,,KOHI,,St. Helens (OR),45.854167,-122.819722,,0.012,,8095,326,157,,,,,,39065,,, +1600,USA,en,WQHE837,,Stevenson (WA),45.662306,-121.910964,,0.01,,8078,325,158,,,,,,20010779,,, +1600,CHL,,CB160A R Nuevo Tiempo,,Santiago (RM),-33.566667,-70.666667,,0.25,,12096,239,160,,,,804,,35751,,, +1600,CHL,,CB160B Rcable,,Valparaso (Via del Mar) (VS),-33.016667,-71.533333,,0.25,,12099,240,160,,,,,,35750,,, +1600,USA,,KTAP,,Santa Maria (CA),34.98,-120.453333,,0.026,,9045,318,160,,,,,,39451,,, +1600,CHL,,CC160 R Llacolen,,Concepcin (BI),-36.783333,-73.016667,,0.25,,12507,238,161,,1000-0430,1234567,,,35831,,, +1600,USA,en,WQHR432,,San Fernando (CA),34.28375,-118.438111,,0.01,,9019,317,164,,,,,,20010783,,, +1600,USA,en,WQHR432,,San Fernando (CA),34.294325,-118.444306,,0.01,,9018,317,164,,,,,,20010782,,, +1602,HOL,en,R Seagull,,Harlingen/Pietersbierum (fri),53.205233,5.470167,,1,,137,333,53,,0000-2400,1234567,30,,2361,,, +1602,E,es,SER,,Segovia/San Agustn (CAL-SG),40.933967,-4.094583,,5,,1477,217,65,,0000-2400,1234567,17,,1707,,, +1602,E,es,SER,,Onteniente=Ontinyent (VAL-V),38.823011,-0.573306,,5,,1573,203,66,,0000-2400,1234567,992,,1709,,, +1602,E,es,SER,,Cartagena (MUR-MU),37.62875,-0.964667,,5,,1710,203,67,,0000-2400,1234567,990,,1706,,, +1602,E,es,SER,,Linares (AND-J),38.11425,-3.67535,,5,,1742,211,67,,0000-2400,1234567,994,,1708,,, +1602,G,en,BBC R 5 Live,,Tonbridge/Rusthall (EN-KNT),51.139472,0.224556,,0.25,,440,258,67,,0000-0600,1234567,0,,1710,,, +1602,G,en,BBC R Kent,,Tonbridge/Rusthall (EN-KNT),51.139472,0.224556,,0.25,,440,258,67,,0600-2400,1234567,0,,1710,,, +1602,POL,pl,R AM,,Krakw/Rajsko (MP),49.99,19.971944,,0.8,,975,99,68,,0000-2400,1234567,,,6400026,,, +1602,ROU,,R CNM,,Arad (AR),46.183333,21.316667,,1,,1265,115,70,,,,9968,,1735,,, +1602,ROU,ro,R Vocea Speranţei,,Bistriţa (BN),47.133333,24.483333,,1,,1410,106,71,,0000-2400,1234567,,,1683,,, +1602,ROU,ro,R Vocea Speranţei,,Piatra Neamţ (NT),46.916667,26.333333,,1,,1544,104,72,,0000-2400,1234567,,,1909,,, +1602,SRB,sr,R Beograd 1,,Leskovac (Srb-jab),43.011433,21.961297,,1,,1539,125,72,,0500-2300,1234567,9785,,1737,,, +1602,G,,Desi R,,London/Glade Lane (EN-GTL),51.504444,-0.359722,,0.07,,470,264,73,,,,114,,1711,,, +1602,ROU,ro,R Vocea Speranţei,,Tulcea (TL),45.166667,28.8,,1,,1808,106,75,,0000-2400,1234567,,,1918,,, +1602,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377861,23.623556,,0.4,,1532,35,76,,0700-1900,.....6.,,,2600003,,, +1602,EGY,ar,ERTU R Matruh,,Siwa (mth),29.185194,25.534917,,10,,2996,141,77,,0200-2200,1234567,,,1861,,, +1602,ROU,,R Sud-Est,,Slobozia (IL),44.666667,27.416667,,0.5,,1749,110,77,,,,,,1734,,, +1602,GRC,,ERA Net,,Samos (neg-sam),37.683333,26.883333,,1,,2259,127,80,,,,,,1722,,, +1602,EGY,ar,ERTU Janub Sa'id Misr/ERTU Al-Quran al-Karim,,Nag Hammadi (qna),25.997358,32.282739,,10,,3623,133,83,,0400-2000,1234567,,,1860,,, +1602,IRN,fa,IRIB R Semnan,,Damghan (smn),36.132556,54.312389,,10,,4122,96,88,,,,174,,10800009,,, +1602,RUS,ru,R Zeleny Glazh,,Moskva (MV),55.830833,37.64,,0.1,,2065,66,88,,1700-2000,1234567,,,6700141,,, +1602,G,en,Motor Racing RSLs,,Brands Hatch (EN-KNT),51.358333,0.261111,,0.001,,431,261,91,,,,,,1721,,, +1602,G,en,Motor Racing RSLs,,Snetterton (EN-NFK),52.416667,0.75,,0.001,,387,277,91,,,,,,1716,,, +1602,G,en,Horse Racing RSLs,,Ascot (EN-BER),51.4,-0.666667,,0.001,,493,264,92,,,,,,1712,,, +1602,G,en,Horse Racing RSLs,,Doncaster (EN-SYK),53.533333,-1.116667,,0.001,,530,290,92,,,,,,1714,,, +1602,G,en,Horse Racing RSLs,,York (EN-NYK),53.966667,-1.083333,,0.001,,542,295,92,,,,,,1713,,, +1602,G,en,Motor Racing RSLs,,Donington Park (EN-LEI),52.833333,-1.383333,,0.001,,534,282,92,,,,,,1715,,, +1602,G,en,Motor Racing RSLs,,Silverstone (EN-NHA),52.1,-1.033333,,0.001,,508,273,92,,,,,,1720,,, +1602,G,en,Motor Racing RSLs,,Castle Coombe (EN-SOM),51.383333,-2.366667,,0.001,,609,266,93,,,,,,1718,,, +1602,G,en,Motor Racing RSLs,,Oulton Park (EN-CHE),53.15,-2.666667,,0.001,,623,284,93,,,,,,1719,,, +1602,IRN,fa,IRIB R Ahwaz,,Dezful (kuz),32.408056,48.418444,,1,,4012,106,97,,0300-2100,1234567,,,1773,,, +1602,SDN,,SRTC Sudan Nat. R,,Kaduqli=Kadugli (ks),11.004328,29.716261,,5,,5029,147,100,,,,,,9400011,,, +1602,IRN,fa,IRIB R Fars,,Kazeroun (frs),29.633111,51.617667,,1,,4445,106,101,,0000-2400,1234567,,,1772,,, +1602,IRN,fa,IRIB R Iran,,Behabad (yzd),31.843044,56.044333,,1,,4563,100,103,,0000-2400,1234567,,,1771,,, +1602,IRN,fa,IRIB R Iran,,Estahban (frs),29.1225,54.074444,,1,,4649,104,103,,0000-2400,1234567,,,1728,,, +1602,QAT,,QBS,,Doha=Ad-Dawha (daw),25.283333,51.533333,,1,,4804,111,105,,0245-0700,1234567,,,1733,,, +1602,QAT,,QBS,,Doha=Ad-Dawha (daw),25.283333,51.533333,,1,,4804,111,105,,1300-1900,1234567,,,1733,,, +1602,AFG,,R Khost,,Khost (kho),33.366667,69.95,,0.5,,5393,87,114,,0230-0630,1234567,,,2118,,, +1602,AFG,,R Khost,,Khost (kho),33.366667,69.95,,0.5,,5393,87,114,,1130-1530,1234567,,,2118,,, +1602,IND,,AIR North/Vividh Bharati,,Tiesuru/Panikhar (JK),34.100889,75.945178,,1,,5745,82,114,,1030-1630,1234567,,,32200012,,, +1602,IND,,AIR North/Vividh Bharati,,Diskit (JK),34.5512,77.537933,,1,,5818,80,115,,1200-1700,1234567,,,52630,,, +1602,IND,,AIR North,,Pauri (UT),30.154139,78.76715,,1,,6241,83,119,,1125-1600,1234567,,,51429,,, +1602,IND,,AIR North,,Uttarkashi (UT),30.723472,78.434461,,1,,6173,83,119,,1130-1630,1234567,,,51435,,, +1602,PAK,,PBC R Pakistan,,Abbottabad (kpk),34.18,73.231111,,0.25,,5555,83,119,,0845-1415,1234567,,,51472,,, +1602,RUS,xx,R Rossii,,Ust-Barguzin (BU),53.379619,109.014422,,1,,6271,44,120,,2057-1700,1234567,,,47007,,, +1602,IND,,AIR North,,Pithoragarh (UT),29.577244,80.204569,,1,,6384,82,121,,1130-1630,1234567,,,51430,,, +1602,RUS,xx,R Rossii,,Novoilinsk (BU),51.683333,108.666667,,1,,6386,46,121,,2057-1700,1234567,,,47005,,, +1602,IND,,AIR Vividh Bharati,,Varanasi B (UP),25.333333,83,,1,,6916,84,126,,0025-0435,1234567,,,51436,,, +1602,IND,,AIR Vividh Bharati,,Varanasi B (UP),25.333333,83,,1,,6916,84,126,,0900-1200,1234567,,,51436,,, +1602,IND,,AIR Vividh Bharati,,Varanasi B (UP),25.333333,83,,1,,6916,84,126,,1245-1740,1234567,,,51436,,, +1602,IND,,AIR Northeast,,William Nagar (ML),25.5104,90.604333,,1,,7414,78,131,,0925-1330,1234567,,,51437,,, +1602,IND,,AIR Northeast,,Ziro (AR),27.633333,93.833333,,1,,7452,74,132,,0025-0430,1234567,,,51438,,, +1602,IND,,AIR Northeast,,Ziro (AR),27.633333,93.833333,,1,,7452,74,132,,1000-1630,1234567,,,51438,,, +1602,CHN,,Shuozhou RGD,,Shuozhou (SX),39.316667,112.416667,,1,,7600,53,133,,,,,,51427,,, +1602,IND,,AIR Northeast,,Tuensang (NL),26.233333,94.8,,1,,7632,74,133,,1000-1600,1234567,,,51433,,, +1602,IND,,AIR South,,Udhagamandalam (TN),11.418989,76.672983,,1,,7664,99,134,,1130-1700,1234567,,,51434,,, +1602,IND,,AIR Northeast,,Saiha (MZ),22.483333,92.966667,,1,,7825,78,135,,0930-1330,1234567,,,51431,,, +1602,J,,NHK R 2,,Enbetsu (hok),44.716667,141.8,,1,,8433,31,141,,2030-1500,1.....7,,,51444,,, +1602,J,,NHK R 2,,Enbetsu (hok),44.716667,141.8,,1,,8433,31,141,,2030-1635,.2345..,,,51444,,, +1602,J,,NHK R 2,,Enbetsu (hok),44.716667,141.8,,1,,8433,31,141,,2030-1640,.....6.,,,51444,,, +1602,CHN,,Jiangsu RGD,,Hongze (JS),33.3,118.85,,1,,8481,53,142,,2050-1600,1234567,,,51426,,, +1602,J,,JOCC NHK2,,Asahikawa (hok),43.766667,142.416667,,1,,8550,31,142,,2030-1500,1.....7,,,51443,,, +1602,J,,JOCC NHK2,,Asahikawa (hok),43.766667,142.416667,,1,,8550,31,142,,2030-1635,.2345..,,,51443,,, +1602,J,,JOCC NHK2,,Asahikawa (hok),43.766667,142.416667,,1,,8550,31,142,,2030-1640,.....6.,,,51443,,, +1602,KOR,ko,HLQE KBS 1 R,,Sabuk (gan),37.231389,128.818333,,1,,8624,43,142,,0000-2400,1234567,0,,51470,,, +1602,J,,JOFD NHK2,,Fukushima (toh-fuk),37.766667,140.483333,,1,,9076,35,144,,2030-1500,1.....7,,,51445,,, +1602,J,,JOFD NHK2,,Fukushima (toh-fuk),37.766667,140.483333,,1,,9076,35,144,,2030-1635,.2345..,,,51445,,, +1602,J,,JOFD NHK2,,Fukushima (toh-fuk),37.766667,140.483333,,1,,9076,35,144,,2030-1640,.....6.,,,51445,,, +1602,J,,JOKC NHK2,,Kofu (chu-yam),35.65,138.533333,,1,,9208,37,144,,2030-1500,1.....7,,,51455,,, +1602,J,,JOKC NHK2,,Kofu (chu-yam),35.65,138.533333,,1,,9208,37,144,,2030-1635,.2345..,,,51455,,, +1602,J,,JOKC NHK2,,Kofu (chu-yam),35.65,138.533333,,1,,9208,37,144,,2030-1640,.....6.,,,51455,,, +1602,J,,JOSB NHK2,,Kitakyushu (kyu-fuk),33.883333,130.866667,,1,,9039,44,144,,2030-1500,1.....7,,,51454,,, +1602,J,,JOSB NHK2,,Kitakyushu (kyu-fuk),33.883333,130.866667,,1,,9039,44,144,,2030-1635,.2345..,,,51454,,, +1602,J,,JOSB NHK2,,Kitakyushu (kyu-fuk),33.883333,130.866667,,1,,9039,44,144,,2030-1640,.....6.,,,51454,,, +1602,J,,NHK R 2,,Hitoyoshi (kyu-kum),32.216667,130.783333,,1,,9194,45,144,,2030-1500,1.....7,,,51449,,, +1602,J,,NHK R 2,,Hitoyoshi (kyu-kum),32.216667,130.783333,,1,,9194,45,144,,2030-1635,.2345..,,,51449,,, +1602,J,,NHK R 2,,Hitoyoshi (kyu-kum),32.216667,130.783333,,1,,9194,45,144,,2030-1640,.....6.,,,51449,,, +1602,J,,NHK R 2,,Nobeoka (kyu-miy),32.566667,131.683333,,1,,9203,44,144,,2030-1500,1.....7,,,51462,,, +1602,J,,NHK R 2,,Nobeoka (kyu-miy),32.566667,131.683333,,1,,9203,44,144,,2030-1635,.2345..,,,51462,,, +1602,J,,NHK R 2,,Nobeoka (kyu-miy),32.566667,131.683333,,1,,9203,44,144,,2030-1640,.....6.,,,51462,,, +1602,J,,NHK R 2,,Uwajima (shi-ehi),33.216667,132.566667,,1,,9182,43,144,,2030-1500,1.....7,,,51468,,, +1602,J,,NHK R 2,,Uwajima (shi-ehi),33.216667,132.566667,,1,,9182,43,144,,2030-1635,.2345..,,,51468,,, +1602,J,,NHK R 2,,Uwajima (shi-ehi),33.216667,132.566667,,1,,9182,43,144,,2030-1640,.....6.,,,51468,,, +1602,J,ja,NHK R 2,,Onomichi (chg-hir),34.4,133.2,,1,,9097,42,144,,,,,,31400125,,, +1602,J,,NHK R 2,,Naze (kyu-kag),28.4,129.5,,1,,9495,48,145,,2030-1500,1.....7,,,51460,,, +1602,J,,NHK R 2,,Naze (kyu-kag),28.4,129.5,,1,,9495,48,145,,2030-1635,.2345..,,,51460,,, +1602,J,,NHK R 2,,Naze (kyu-kag),28.4,129.5,,1,,9495,48,145,,2030-1640,.....6.,,,51460,,, +1602,PHL,,DZUP-AM,,Quezon City/Diliman UP (ncr),14.651944,121.063056,,1,,10315,62,148,,0330-0800,1234567,,,51473,,, +1602,INS,,Alwaish R Jakarta,,Jakarta (JK),-6.183333,106.833333,,1,,11261,86,151,,,,,,51441,,, +1602,INS,id,PM3BIW R Swadaya Cempaka,,Karawang (JB-kar),-6.316667,107.3,,1,,11304,85,151,,,,,,51442,,, +1602,J,,NHK R 2,,Iwaizumi (toh-iwa),39.85,141.8,,0.1,,8919,33,153,,2030-1500,1.....7,,,51450,,, +1602,J,,NHK R 2,,Iwaizumi (toh-iwa),39.85,141.8,,0.1,,8919,33,153,,2030-1635,.2345..,,,51450,,, +1602,J,,NHK R 2,,Iwaizumi (toh-iwa),39.85,141.8,,0.1,,8919,33,153,,2030-1640,.....6.,,,51450,,, +1602,J,,NHK R 2,,Urakawa (hok),42.166667,142.783333,,0.1,,8723,31,153,,2030-1500,1.....7,0,,51467,,, +1602,J,,NHK R 2,,Urakawa (hok),42.166667,142.783333,,0.1,,8723,31,153,,2030-1635,.2345..,0,,51467,,, +1602,J,,NHK R 2,,Urakawa (hok),42.166667,142.783333,,0.1,,8723,31,153,,2030-1640,.....6.,0,,51467,,, +1602,J,,NHK R 2,,Yokote (toh-aki),39.3,140.566667,,0.1,,8927,34,153,,2030-1500,1.....7,,,51469,,, +1602,J,,NHK R 2,,Yokote (toh-aki),39.3,140.566667,,0.1,,8927,34,153,,2030-1635,.2345..,,,51469,,, +1602,J,,NHK R 2,,Yokote (toh-aki),39.3,140.566667,,0.1,,8927,34,153,,2030-1640,.....6.,,,51469,,, +1602,J,,NHK R 2,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,2030-1500,1.....7,,,51447,,, +1602,J,,NHK R 2,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,2030-1635,.2345..,,,51447,,, +1602,J,,NHK R 2,,Hagiwara (chu-gif),35.816667,137.233333,,0.1,,9137,38,154,,2030-1640,.....6.,,,51447,,, +1602,J,,NHK R 2,,Kamaishi (toh-iwa),39.266667,141.883333,,0.1,,8980,33,154,,2030-1500,1.....7,,,51451,,, +1602,J,,NHK R 2,,Kamaishi (toh-iwa),39.266667,141.883333,,0.1,,8980,33,154,,2030-1635,.2345..,,,51451,,, +1602,J,,NHK R 2,,Kamaishi (toh-iwa),39.266667,141.883333,,0.1,,8980,33,154,,2030-1640,.....6.,,,51451,,, +1602,J,,NHK R 2,,Kawamoto (chg-shi),34.966667,132.483333,,0.1,,9010,42,154,,2030-1500,1.....7,,,51452,,, +1602,J,,NHK R 2,,Kawamoto (chg-shi),34.966667,132.483333,,0.1,,9010,42,154,,2030-1635,.2345..,,,51452,,, +1602,J,,NHK R 2,,Kawamoto (chg-shi),34.966667,132.483333,,0.1,,9010,42,154,,2030-1640,.....6.,,,51452,,, +1602,J,,NHK R 2,,Kisofukushima (chu-nag),35.846667,137.696111,,0.1,,9153,38,154,,2030-1500,1.....7,,,51453,,, +1602,J,,NHK R 2,,Kisofukushima (chu-nag),35.846667,137.696111,,0.1,,9153,38,154,,2030-1635,.2345..,,,51453,,, +1602,J,,NHK R 2,,Kisofukushima (chu-nag),35.846667,137.696111,,0.1,,9153,38,154,,2030-1640,.....6.,,,51453,,, +1602,J,,NHK R 2,,Maizuru (kns-kyo),35.466667,135.4,,0.1,,9092,40,154,,2030-1500,1.....7,,,51458,,, +1602,J,,NHK R 2,,Maizuru (kns-kyo),35.466667,135.4,,0.1,,9092,40,154,,2030-1635,.2345..,,,51458,,, +1602,J,,NHK R 2,,Maizuru (kns-kyo),35.466667,135.4,,0.1,,9092,40,154,,2030-1640,.....6.,,,51458,,, +1602,J,,NHK R 2,,Tajima (toh-fuk),37.2,139.766667,,0.1,,9104,36,154,,2030-1500,1.....7,,,51463,,, +1602,J,,NHK R 2,,Tajima (toh-fuk),37.2,139.766667,,0.1,,9104,36,154,,2030-1635,.2345..,,,51463,,, +1602,J,,NHK R 2,,Tajima (toh-fuk),37.2,139.766667,,0.1,,9104,36,154,,2030-1640,.....6.,,,51463,,, +1602,J,,NHK R 2,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,2030-1500,1.....7,,,51466,,, +1602,J,,NHK R 2,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,2030-1635,.2345..,,,51466,,, +1602,J,,NHK R 2,,Ueda (chu-nag),36.4,138.266667,,0.1,,9122,37,154,,2030-1640,.....6.,,,51466,,, +1602,J,ja,NHK R 2,,Taira,34.5,134,,0.1,,9124,41,154,,,,,,31400124,,, +1602,J,ja,NHK R 2,,Tojp,34.5,134,,0.1,,9124,41,154,,,,,,31400126,,, +1602,J,,NHK R 2,,Koza (kns-wak),33.516667,135.833333,,0.1,,9301,40,155,,2030-1500,1.....7,,,51456,,, +1602,J,,NHK R 2,,Koza (kns-wak),33.516667,135.833333,,0.1,,9301,40,155,,2030-1635,.2345..,,,51456,,, +1602,J,,NHK R 2,,Koza (kns-wak),33.516667,135.833333,,0.1,,9301,40,155,,2030-1640,.....6.,,,51456,,, +1602,J,,NHK R 2,,Kumano (kns-mie),33.883333,136.1,,0.1,,9277,40,155,,2030-1500,1.....7,,,51457,,, +1602,J,,NHK R 2,,Kumano (kns-mie),33.883333,136.1,,0.1,,9277,40,155,,2030-1635,.2345..,,,51457,,, +1602,J,,NHK R 2,,Kumano (kns-mie),33.883333,136.1,,0.1,,9277,40,155,,2030-1640,.....6.,,,51457,,, +1602,J,,NHK R 2,,Nichinan (kyu-miy),31.6,131.383333,,0.1,,9282,45,155,,2030-1500,1.....7,,,51461,,, +1602,J,,NHK R 2,,Nichinan (kyu-miy),31.6,131.383333,,0.1,,9282,45,155,,2030-1635,.2345..,,,51461,,, +1602,J,,NHK R 2,,Nichinan (kyu-miy),31.6,131.383333,,0.1,,9282,45,155,,2030-1640,.....6.,,,51461,,, +1602,J,,NHK R 2,,Tanabe (kns-wak),33.75,135.4,,0.1,,9259,41,155,,2030-1500,1.....7,,,51464,,, +1602,J,,NHK R 2,,Tanabe (kns-wak),33.75,135.4,,0.1,,9259,41,155,,2030-1635,.2345..,,,51464,,, +1602,J,,NHK R 2,,Tanabe (kns-wak),33.75,135.4,,0.1,,9259,41,155,,2030-1640,.....6.,,,51464,,, +1602,NZL,,2XA R Reading Service,,Levin (WGN),-40.635556,175.268056,,2.5,182,18483,38,171,,0000-2400,1234567,,,51471,,, +1602,AUS,,5LC ABC North & West SA,,Leigh Creek (SA),-30.599694,138.403847,,0.2,,15463,77,172,,0000-2400,1234567,,,51424,,, +1602,AUS,,3WL ABC Western Victoria,,Warrnambool (VIC),-38.336444,142.508611,,0.3,,16322,83,173,,0000-2400,1234567,,,51425,,, +1602,AUS,,2CP ABC Southeast NSW,,Cooma (NSW),-36.228472,149.1375,,0.1,,16611,74,179,,0000-2400,1234567,,,51423,,, +1605,USA,en,WD2XKZ,,San Antonio (TX),29.441389,-98.632222,,0.0001,,8404,300,181,,,,,,20010784,,, +1609,BEN,,TYA Cotonou R,4,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900255,,, +1610,AIA,en,Caribbean Beacon,,The Valley (tvy),18.219367,-63.018511,,50,,7021,265,110,,0000-2400,1234567,998,,2138,,, +1610,CAN,xx,CHHA,,Toronto (ON),43.641911,-79.340211,,6.3,,6084,298,110,,,,0,,47293,,, +1610,USA,en,WQDK533,,Millinocket/64 Balsam Drive (ME),45.658389,-68.027625,,0.01,,5247,293,129,,,,,,20011125,,, +1610,USA,en,WPVS949,,Augusta (ME),44.303889,-69.808056,,0.01,,5450,293,131,,,,,,20011236,,, +1610,USA,en,WPKW775,,Gray (ME),43.894314,-70.342,,0.01,,5511,293,132,,,,,,20010922,,, +1610,USA,en,WPKW775,,Portland (ME),43.732861,-70.299778,,0.01,,5520,293,132,,,,,,20010923,,, +1610,USA,en,WPKW775,,Saco (ME),43.510978,-70.482833,,0.01,,5547,293,132,,,,,,20010921,,, +1610,USA,en,WPKW775,,Scarborough (ME),43.609806,-70.366167,,0.01,,5532,293,132,,,,,,20010924,,, +1610,USA,en,WPVS949,,Auburn (ME),43.997778,-70.308056,,0.01,,5502,293,132,,,,,,20011252,,, +1610,USA,en,WPVS949,,Bowdoinham (ME),44.073056,-70.041667,,0.01,,5480,293,132,,,,,,20011249,,, +1610,USA,en,WPVS949,,Lewiston (ME),44.073056,-70.193497,,0.01,,5490,293,132,,,,,,20011251,,, +1610,USA,en,WPVS949,,Manmouth (ME),44.189444,-69.860147,,0.01,,5461,293,132,,,,,,20011248,,, +1610,USA,en,WQHY753,,Pittsburgh (NH),45.128,-71.226,,0.01,,5482,295,132,,,,,,20011307,,, +1610,USA,en,WNCF832,,Franconia (NH),44.210969,-71.693417,,0.01,,5574,294,133,,,,,,20010945,,, +1610,USA,en,WNCF832,,Lincoln (NH),44.048944,-71.68175,,0.01,,5585,294,133,,,,,,20010927,,, +1610,USA,en,WNUE384,,Concord (NH),43.2,-71.533333,,0.01,,5635,293,133,,,,,,20011044,,, +1610,USA,en,WPKW775,,Wells (ME),43.327647,-70.610975,,0.01,,5567,292,133,,,,,,20010899,,, +1610,USA,en,WPKW775,,York (ME),43.160083,-70.660056,,0.01,,5582,292,133,,,,,,20010897,,, +1610,USA,en,WPZS690,,Durham (NH),43.12675,-70.844306,,0.01,,5596,292,133,,,,,,20011136,,, +1610,USA,en,WQIX458,,Derry (NH),42.895,-71.2875,,0.01,,5640,292,133,,,,,,20011285,,, +1610,USA,en,WNSX853,,Falmouth (MA),41.5765,-70.610961,,0.01,,5691,291,134,,,,,,20011047,,, +1610,USA,en,WNUE384,,Nashua (NH),42.777306,-71.491722,,0.01,,5662,292,134,,,,,,20011045,,, +1610,USA,en,WPKW969,,Providence (RI),41.682333,-71.444306,,0.01,,5736,291,134,,,,,,20010920,,, +1610,USA,en,WQEA969,,Hyannis/89 Yarmouth Road (MA),41.661025,-70.278,,0.01,,5663,291,134,,,,,,20011258,,, +1610,USA,en,WNVV205,,Albany (NY),42.595083,-73.794319,,0.01,,5819,294,135,,,,,,20011059,,, +1610,USA,en,WNVV205,,Albany (NY),42.660983,-73.827656,,0.01,,5817,294,135,,,,,,20011043,,, +1610,USA,en,WNVV205,,Albany (NY),42.698417,-73.845667,,0.01,,5815,294,135,,,,,,20011036,,, +1610,USA,en,WNVV205,,Schenectady (NY),42.744806,-73.927653,,0.01,,5817,294,135,,,,,,20011037,,, +1610,USA,en,WPFI377,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010824,,, +1610,USA,en,WPFM233,,Albany (NY),42.65,-73.75,,0.01,,5813,294,135,,,,,,20010848,,, +1610,USA,en,WPLT709,,Greenport/500 Beach Road (NY),41.109278,-72.360978,,0.01,,5836,291,135,,,,,,20010855,,, +1610,USA,en,WPQH451,,Rocky Hill/1107 Cromwell Ave (CT),41.644322,-72.679528,,0.01,,5817,292,135,,,,,,20011297,,, +1610,USA,en,WPUK798,,Castleton (NY),42.493514,-73.671111,,0.01,,5819,293,135,,,,,,20011210,,, +1610,USA,en,WQHG625,,Albany (NY),42.632611,-73.77775,,0.01,,5816,294,135,,,,,,20011263,,, +1610,USA,en,WQHG625,,Schenectady (NY),42.760964,-73.932806,,0.01,,5816,294,135,,,,,,20011262,,, +1610,USA,en,WQHG625,,Selkirk (NY),42.54435,-73.7805,,0.01,,5822,294,135,,,,,,20011264,,, +1610,USA,en,WNVV205,,Kingston (NY),41.946194,-74.02875,,0.01,,5881,293,136,,,,,,20011041,,, +1610,USA,en,WNZV592,,White Plains (NY),41.033333,-73.766667,,0.01,,5931,292,136,,,,,,20011012,,, +1610,USA,en,WPMK888,,Newburgh (NY),41.51175,-74.077664,,0.01,,5915,293,136,,,,,,20010977,,, +1610,USA,en,WPML750,,Trumbull (CT),41.244311,-73.163167,,0.01,,5877,292,136,,,,,,20010860,,, +1610,USA,en,WQDD427,,Cooperstown/68 Linden Ave (NY),42.693572,-74.943547,,0.01,,5884,294,136,,,,,,20011111,,, +1610,USA,en,WQIX462,,Bethel (NY),41.710978,-74.879944,,0.01,,5951,293,136,,,,,,20011288,,, +1610,USA,en,WPAS758,,Cranbury (NJ),40.32765,-74.494328,,0.01,,6028,292,137,,,,,,20011001,,, +1610,USA,en,WPAS758,,Elizabeth (NJ),40.6665,-74.17875,,0.01,,5983,292,137,,,,,,20011000,,, +1610,USA,en,WPAS759,,Woodbridge (NJ),40.55,-74.283333,,0.01,,5999,292,137,,,,,,20011023,,, +1610,USA,en,WPBG740,,Harrisburg (PA),41.444311,-75.616306,,0.01,,6017,294,137,,,,,,20011032,,, +1610,USA,en,WPFP986,,Jamesburg (NJ),40.350111,-74.477083,,0.01,,6026,292,137,,,,,,20010842,,, +1610,USA,en,WPFQ441,,Woodbridge (NJ),40.543167,-74.294331,,0.01,,6000,292,137,,,,,,20010845,,, +1610,USA,en,WPIG908,,Randolph (NJ),40.859833,-74.597111,,0.01,,5996,292,137,,,,,,20010794,,, +1610,USA,en,WPIJ669,,Union Beach (NJ),40.444322,-74.161,,0.01,,5999,292,137,,,,,,20010814,,, +1610,USA,en,WPLU399,,Wall Township (NJ),40.177656,-74.110994,,0.01,,6015,292,137,,,,,,20010869,,, +1610,USA,en,WPNT550,,Watchung/57 Mountain Blvd (NJ),40.644322,-74.461,,0.01,,6003,292,137,,,,,,20010888,,, +1610,USA,en,WPQJ968,,Neshanic (NJ),40.510992,-74.644333,,0.01,,6024,292,137,,,,,,20011313,,, +1610,USA,en,WPRT265,,Harrisburg (PA),41.310556,-75.759167,,0.01,,6036,294,137,,,,,,20011138,,, +1610,USA,en,WPRT265,,Harrisburg (PA),41.312222,-75.545556,,0.01,,6022,293,137,,,,,,20011137,,, +1610,USA,en,WPRT265,,Harrisburg (PA),41.408056,-75.504167,,0.01,,6012,294,137,,,,,,20011143,,, +1610,USA,en,WPRT265,,Harrisburg (PA),41.482778,-75.694444,,0.01,,6019,294,137,,,,,,20011112,,, +1610,USA,en,WPSH270,,Peapack/160 Main Street (NJ),40.716778,-74.659333,,0.01,,6010,292,137,,,,,,20011099,,, +1610,USA,en,WPSQ379,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011078,,, +1610,USA,en,WPUN933,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011140,,, +1610,USA,en,WPVY987,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011310,,, +1610,USA,en,WPWC517,,Rochester (NY),43.198333,-77.548333,,0.01,,6008,296,137,,,,,,20011091,,, +1610,USA,en,WPWC517,,Webster (NY),43.220833,-77.399167,,0.01,,5997,296,137,,,,,,20011152,,, +1610,USA,en,WPZN807,,Henrietta (NY),43.060958,-77.650111,,0.01,,6024,296,137,,,,,,20011235,,, +1610,USA,en,WPZN807,,LeRoy (NY),43.032056,-77.964694,,0.01,,6046,296,137,,,,,,20011225,,, +1610,USA,en,WPZN807,,Victor (NY),43.032056,-77.444339,,0.01,,6014,296,137,,,,,,20011223,,, +1610,USA,en,WQDC328,,Oceanport/175 Oceanport Ave (NJ),40.305556,-74.015833,,0.01,,6000,292,137,,,,,,20011131,,, +1610,USA,en,WQFI219,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011338,,, +1610,MEX,es,XEUACH-AM R Chapingo,,Chapingo (mex),19.495731,-98.893428,,5,,9302,294,138,,,,,,34900022,,, +1610,USA,en,WPAN997,,Blasdell (NY),42.794308,-78.827628,,0.01,,6116,297,138,,,,,,20010998,,, +1610,USA,en,WPAN997,,Bowmansville (NY),42.947833,-78.710958,,0.01,,6097,297,138,,,,,,20011008,,, +1610,USA,en,WPAN997,,Buffalo (NY),42.876444,-78.796972,,0.01,,6108,297,138,,,,,,20011006,,, +1610,USA,en,WPAN997,,Buffalo (NY),42.895611,-78.910958,,0.01,,6113,297,138,,,,,,20011004,,, +1610,USA,en,WPAN997,,Niagra (NY),43.061722,-78.994308,,0.01,,6106,297,138,,,,,,20011003,,, +1610,USA,en,WPAN997,,Tonawanda (NY),42.9943,-78.911972,,0.01,,6106,297,138,,,,,,20011015,,, +1610,USA,en,WPAS758,,Moorestown (NJ),39.980389,-74.594339,,0.01,,6060,292,138,,,,,,20011002,,, +1610,USA,en,WPFP978,,Bordentown (NJ),40.126778,-74.711,,0.01,,6057,292,138,,,,,,20010853,,, +1610,USA,en,WPHD215,,Cherry Hill (NJ),39.933333,-75.033333,,0.01,,6092,292,138,,,,,,20010793,,, +1610,USA,en,WPIR381,,Pleasantville (NJ),39.394325,-74.510972,,0.01,,6099,291,138,,,,,,20010813,,, +1610,USA,en,WPQY335,,Lancaster (NY),42.960969,-78.599472,,0.01,,6090,297,138,,,,,,20011301,,, +1610,USA,en,WPRS936,,Harrisburg (PA),41.146667,-75.964444,,0.01,,6061,294,138,,,,,,20011141,,, +1610,USA,en,WQHI499,,Jonestown (PA),40.427683,-76.527631,,0.01,,6149,293,138,,,,,,20011274,,, +1610,USA,en,WQHY657,,Williamsville (NY),42.961019,-78.760975,,0.01,,6099,297,138,,,,,,20011306,,, +1610,USA,en,KNNI499,,Towson (MD),39.411778,-76.611028,,0.01,,6231,292,139,,,,,,20010992,,, +1610,USA,en,KNNS365,,Linthicum (MD),39.210989,-76.644367,,0.01,,6248,292,139,,,,,,20010988,,, +1610,USA,en,WNHC787,,Mackinaw City (MI),45.848611,-84.727642,,0.01,,6238,303,139,,,,,,20010937,,, +1610,USA,en,WNQA283,,Salisbury (MD),38.37765,-75.594342,,0.01,,6244,291,139,,,,,,20010954,,, +1610,USA,en,WNQA286,,Severna Park (MD),39.014556,-76.408861,,0.01,,6248,292,139,,,,,,20010961,,, +1610,USA,en,WNQA288,,Denton (MD),38.842611,-75.798,,0.01,,6222,291,139,,,,,,20010949,,, +1610,USA,en,WNQA289,,Queenstown (MD),38.982333,-76.160222,,0.01,,6235,292,139,,,,,,20010948,,, +1610,USA,en,WNQA290,,Easton (MD),38.797056,-76.0605,,0.01,,6242,291,139,,,,,,20010947,,, +1610,USA,en,WNVP742,,Baltimore (MD),39.497056,-76.677694,,0.01,,6228,293,139,,,,,,20011039,,, +1610,USA,en,WNVY509,,Bradshaw (MD),39.427056,-76.394364,,0.01,,6216,292,139,,,,,,20011067,,, +1610,USA,en,WPCT627,,Baltimore (MD),39.313722,-76.544367,,0.01,,6234,292,139,,,,,,20011024,,, +1610,USA,en,WPCT627,,Baltimore (MD),39.347333,-76.746083,,0.01,,6244,292,139,,,,,,20011016,,, +1610,USA,en,WPDX549,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011017,,, +1610,USA,en,WPEA856,,Harrisburg (PA),40.244361,-76.977675,,0.01,,6191,293,139,,,,,,20010785,,, +1610,USA,en,WPEA856,,Harrisburg (PA),40.278944,-76.827686,,0.01,,6179,293,139,,,,,,20010849,,, +1610,USA,en,WPEA856,,Harrisburg (PA),40.36175,-76.749694,,0.01,,6168,293,139,,,,,,20010836,,, +1610,USA,en,WPEI224,,Hanover (MD),39.194317,-76.675528,,0.01,,6251,292,139,,,,,,20010838,,, +1610,USA,en,WPEP712,,Elkton (MD),39.644322,-75.811022,,0.01,,6163,292,139,,,,,,20010834,,, +1610,USA,en,WPEW742,,Reisterstown (MD),39.477656,-76.844367,,0.01,,6240,293,139,,,,,,20010829,,, +1610,USA,en,WPFJ882,,Ocean City (MD),38.394322,-75.111008,,0.01,,6212,291,139,,,,,,20010823,,, +1610,USA,en,WPHW256,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20010807,,, +1610,USA,en,WPJR508,,Havre de Grace (MD),39.577658,-76.144353,,0.01,,6189,292,139,,,,,,20010801,,, +1610,USA,en,WPUN696,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011103,,, +1610,USA,en,WPUN745,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011081,,, +1610,USA,en,WPUN745,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011104,,, +1610,USA,en,WPUP271,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011124,,, +1610,USA,en,WPUP271,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011356,,, +1610,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011108,,, +1610,USA,en,WPYI899,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011172,,, +1610,USA,en,WQBU641,,Tionesta/105 Bridge St. (PA),41.494,-79.459167,,0.01,,6251,296,139,,,,,,20011101,,, +1610,USA,en,WQHI497,,Etters (PA),40.161003,-76.827686,,0.01,,6188,293,139,,,,,,20011265,,, +1610,USA,en,WQHI497,,Mechanicsburg (PA),40.177306,-76.994356,,0.01,,6197,293,139,,,,,,20011277,,, +1610,USA,en,WQHI497,,Shippensburg (PA),40.015806,-77.533278,,0.01,,6243,293,139,,,,,,20011269,,, +1610,USA,en,WQHI499,,Carlisle (PA),40.161003,-77.310975,,0.01,,6218,293,139,,,,,,20011270,,, +1610,USA,en,WQHI499,,Carlisle (PA),40.244325,-77.127833,,0.01,,6201,293,139,,,,,,20011271,,, +1610,USA,en,WQHI499,,Dauphin (PA),40.396139,-77.011033,,0.01,,6182,294,139,,,,,,20011272,,, +1610,USA,en,WQHI499,,Grantville (PA),40.377689,-76.681972,,0.01,,6163,293,139,,,,,,20011273,,, +1610,USA,en,WQHI499,,Middletown (PA),40.21375,-76.711,,0.01,,6177,293,139,,,,,,20011275,,, +1610,USA,en,WQIN410,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011312,,, +1610,USA,en,WQIN410,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011314,,, +1610,ALS,en,WQLE259,,Prudhoe Bay/PBOC (AK),70.247508,-148.396856,,0.01,,6260,350,140,,,,,,20016227,,, +1610,USA,en,WNQA284,,Cumberland (MD),39.660981,-78.748083,,0.01,,6346,294,140,,,,,,20010944,,, +1610,USA,en,WNQA285,,Piney Grove (MD),39.700083,-78.380278,,0.01,,6320,294,140,,,,,,20010952,,, +1610,USA,en,WNQA287,,Myersville (MD),39.544317,-77.605278,,0.01,,6283,293,140,,,,,,20010950,,, +1610,USA,en,WNSL337,,Hancock (MD),39.115111,-77.410206,,0.01,,6304,293,140,,,,,,20011050,,, +1610,USA,en,WNSL338,,Williamsport (MD),39.410944,-77.543611,,0.01,,6290,293,140,,,,,,20011049,,, +1610,USA,en,WNVY506,,Dorsey (MD),39.195944,-76.764417,,0.01,,6257,292,140,,,,,,20011068,,, +1610,USA,en,WPED444,,Cambridge (MD),38.560986,-75.994389,,0.01,,6256,291,140,,,,,,20010852,,, +1610,USA,en,WPFK879,,Cranberry (PA),40.716444,-80.110967,,0.01,,6350,296,140,,,,,,20010850,,, +1610,USA,en,WPGK505,,Fairfax/4400 University Drive (VA),38.832056,-77.31275,,0.01,,6319,292,140,,,,,,20010819,,, +1610,USA,en,WPGS990,,Bowie (MD),38.960389,-76.694364,,0.01,,6270,292,140,,,,,,20010809,,, +1610,USA,en,WPGV481,,Old Stanton (PA),40.226472,-79.593361,,0.01,,6355,295,140,,,,,,20010795,,, +1610,USA,en,WPIG897,,Gambrills (MD),39.0665,-76.649972,,0.01,,6259,292,140,,,,,,20010816,,, +1610,USA,en,WPIY489,,Erie (PA),41.942833,-80.475917,,0.01,,6280,297,140,,,,,,20010806,,, +1610,USA,en,WPKT865,,Union Township (PA),41.5943,-80.176444,,0.01,,6288,297,140,,,,,,20010893,,, +1610,USA,en,WPLS727,,Port Huron (MI),42.99975,-82.427139,,0.01,,6318,299,140,,,,,,20010881,,, +1610,USA,en,WPMT969,,Arlington (VA),38.883333,-77.083333,,0.01,,6301,292,140,,,,,,20010857,,, +1610,USA,en,WPMU747,,Arlington (VA),38.883333,-77.083333,,0.01,,6301,292,140,,,,,,20010879,,, +1610,USA,en,WPPZ626,,Churchhill (PA),40.444308,-79.827,,0.01,,6353,295,140,,,,,,20010884,,, +1610,USA,en,WPXC773,,Hollidaysburg (PA),40.433333,-78.383333,,0.01,,6265,294,140,,,,,,20011162,,, +1610,USA,en,WPXX843,,Newburg/Gov. Nice Memorial Bridge (MD),38.363111,-76.982556,,0.01,,6334,292,140,,,,,,20011190,,, +1610,USA,en,WQHI497,,Chambersburg (PA),39.82765,-77.710961,,0.01,,6268,293,140,,,,,,20011267,,, +1610,USA,en,WQHI497,,Chambersburg (PA),39.928722,-77.644344,,0.01,,6257,293,140,,,,,,20011257,,, +1610,USA,en,WQIV322,,Ludington (MI),45.962167,-86.459889,,0.01,,6328,304,140,,,,,,20011282,,, +1610,USA,en,KNNV404,,Madison Heights (MI),42.510961,-83.127675,,0.01,,6396,299,141,,,,,,20010984,,, +1610,USA,en,KNNY474,,Warrensville Heights (OH),41.444303,-81.497611,,0.01,,6380,297,141,,,,,,20010873,,, +1610,USA,en,WNXM360,,Elyria/621 Midway Blvd (OH),41.399778,-82.242111,,0.01,,6428,298,141,,,,,,20011069,,, +1610,USA,en,WNYU723,,Harrisonburg (VA),38.444319,-78.866694,,0.01,,6447,293,141,,,,,,20011055,,, +1610,USA,en,WNZD692,,Akron (OH),41.079222,-81.52765,,0.01,,6409,297,141,,,,,,20011054,,, +1610,USA,en,WPDF247,,Richmond (VA),37.55,-77.466667,,0.01,,6427,291,141,,,,,,20011021,,, +1610,USA,en,WPFS415,,Washington (PA),40.182861,-80.228111,,0.01,,6398,295,141,,,,,,20010839,,, +1610,USA,en,WPGV481,,N Belle Vernon (PA),40.144314,-79.846167,,0.01,,6377,295,141,,,,,,20010796,,, +1610,USA,en,WPHE813,,Kirby (PA),39.797306,-80.077556,,0.01,,6418,295,141,,,,,,20010791,,, +1610,USA,en,WPJY811,,Salem/1200 E 6th St. (OH),40.910975,-80.845361,,0.01,,6380,296,141,,,,,,20010917,,, +1610,USA,en,WPKS940,,Middleburg Heights (OH),41.360972,-81.827661,,0.01,,6406,297,141,,,,,,20010894,,, +1610,USA,en,WPLQ318,,Cleveland (OH),41.480333,-81.663194,,0.01,,6387,297,141,,,,,,20010910,,, +1610,USA,en,WPLX293,,Richmond (VA),37.55,-77.466667,,0.01,,6427,291,141,,,,,,20010868,,, +1610,USA,en,WPPZ626,,Enlow (PA),40.477636,-80.227639,,0.01,,6376,296,141,,,,,,20010885,,, +1610,USA,en,WPPZ626,,Millvale (PA),40.478028,-79.976856,,0.01,,6360,295,141,,,,,,20010882,,, +1610,USA,en,WPPZ626,,Pittsburgh (PA),40.447444,-80.165444,,0.01,,6374,296,141,,,,,,20010883,,, +1610,USA,en,WPQB866,,Mount Pleasant/200 N Main St. (MI),43.610964,-84.776417,,0.01,,6410,301,141,,,,,,20010889,,, +1610,USA,en,WPRF876,,Streetsboro (OH),41.260967,-81.377653,,0.01,,6386,297,141,,,,,,20011346,,, +1610,USA,en,WPSK541,,Tallmadge (OH),41.097778,-81.421389,,0.01,,6401,297,141,,,,,,20011105,,, +1610,USA,en,WPWF986,,Ross Township (PA),40.507222,-80.043531,,0.01,,6362,295,141,,,,,,20011107,,, +1610,USA,en,WPWY441,,Wooster/130 Oldman Road (OH),40.844353,-81.944306,,0.01,,6453,297,141,,,,,,20011234,,, +1610,USA,en,WPXM377,,New Market/8895 Collins Drive (VA),38.661944,-78.670278,,0.01,,6417,293,141,,,,,,20011188,,, +1610,USA,en,WPYD802,,Clinton Township (MI),42.596111,-82.928611,,0.01,,6378,299,141,,,,,,20011158,,, +1610,USA,en,WPYF269,,Detroit/2660 West Fort Steeet (MI),42.326881,-83.075556,,0.01,,6407,299,141,,,,,,20011159,,, +1610,USA,en,WPYF538,,Wickliffe (OH),41.588889,-81.479167,,0.01,,6367,297,141,,,,,,20011160,,, +1610,USA,en,WQCF652,,Hermitage/2511 Highland Road (PA),40.241667,-80.463889,,0.01,,6408,296,141,,,,,,20011109,,, +1610,USA,en,WQEE251,,Rochester Hills/1000 Rochester Hills Rd (MI),42.661139,-83.161025,,0.01,,6387,299,141,,,,,,20011343,,, +1610,USA,en,WQFG874,,Ontonagon (MI),46.813056,-89.633056,,0.01,,6440,307,141,,,,,,20011320,,, +1610,USA,en,WQHK788,,Goochland (VA),37.611028,-77.710983,,0.01,,6438,292,141,,,,,,20011247,,, +1610,USA,en,WQHK788,,Goochland (VA),37.677644,-77.683083,,0.01,,6431,292,141,,,,,,20011276,,, +1610,USA,en,WQHK788,,Goochland (VA),37.695222,-77.894339,,0.01,,6443,292,141,,,,,,20011266,,, +1610,USA,en,WQHK788,,Goochland (VA),37.708889,-77.960278,,0.01,,6446,292,141,,,,,,20011238,,, +1610,USA,en,WQHK788,,Goochland (VA),37.844333,-77.99375,,0.01,,6438,292,141,,,,,,20011239,,, +1610,USA,en,WQHK788,,Goochland/Elementary School (VA),37.694292,-77.794778,,0.01,,6437,292,141,,,,,,20011245,,, +1610,USA,en,WQHK789,,Goochland (VA),37.744347,-78.056111,,0.01,,6449,292,141,,,,,,20011240,,, +1610,USA,en,WNMJ728,,Toledo/1189 W Central Ave (OH),41.676167,-83.577689,,0.01,,6487,299,142,,,,,,20010935,,, +1610,USA,en,WPKI666,,Grand Rapids/5500 44th St SE (MI),42.894292,-85.529194,,0.01,,6509,301,142,,,,,,20010903,,, +1610,USA,en,WPMI903,,Oak Harbor (OH),41.627633,-83.194342,,0.01,,6468,298,142,,,,,,20010871,,, +1610,USA,en,WQBV479,,Speed (NC),35.976881,-77.444306,,0.01,,6547,290,142,,,,,,20011077,,, +1610,USA,en,WQBV479,,Whitakers (NC),36.077697,-77.666611,,0.01,,6554,290,142,,,,,,20011089,,, +1610,USA,en,WQCB655,,Battle Creek (MI),42.276856,-85.198333,,0.01,,6537,300,142,,,,,,20011085,,, +1610,USA,en,WQCB655,,Battle Creek (MI),42.338889,-85.277778,,0.01,,6537,300,142,,,,,,20011088,,, +1610,USA,en,WQCB655,,Battle Creek/20 North Division St. (MI),42.327625,-85.178889,,0.01,,6532,300,142,,,,,,20011084,,, +1610,USA,en,WQDC941,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20011121,,, +1610,USA,en,WQJE902,,Blackstone (VA),37.079417,-77.998917,,0.01,,6497,291,142,,,,,,20011291,,, +1610,USA,en,WNBR326,,Morrisville (NC),35.882361,-78.660556,,0.01,,6632,291,143,,,,,,20010953,,, +1610,USA,en,WNJW446,,Chapel Hill/South Road (NC),35.910139,-79.043889,,0.01,,6655,291,143,,,,,,20010930,,, +1610,USA,en,WNXY474,,Dublin/6555 Shier Rings Road (OH),40.094167,-83.176814,,0.01,,6586,297,143,,,,,,20011057,,, +1610,USA,en,WPDM638,,Fort Wayne (IN),40.9795,-85.194367,,0.01,,6638,299,143,,,,,,20011019,,, +1610,USA,en,WPHE255,,Durham (NC),36.010997,-78.923056,,0.01,,6639,291,143,,,,,,20010799,,, +1610,USA,en,WPJN440,,Covington (VA),37.811222,-80.194306,,0.01,,6579,293,143,,,,,,20010802,,, +1610,USA,en,WPMD631,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20010854,,, +1610,USA,en,WPNY994,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20011371,,, +1610,USA,en,WPPV364,,Columbus/200 Georgesville Rd (OH),39.950056,-83.111014,,0.01,,6593,297,143,,,,,,20011321,,, +1610,USA,en,WPSK550,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20011102,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),42.958667,-87.933333,,0.01,,6644,302,143,,,,,,20011203,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),43.022222,-87.926906,,0.01,,6639,302,143,,,,,,20011205,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),43.030306,-87.994294,,0.01,,6642,302,143,,,,,,20011198,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),43.110989,-88.056667,,0.01,,6639,303,143,,,,,,20011197,,, +1610,USA,en,WPTJ444,,Milwaukee (WI),43.192111,-88.127672,,0.01,,6637,303,143,,,,,,20011196,,, +1610,USA,en,WPTM738,,Troy (OH),40.046444,-84.227686,,0.01,,6653,298,143,,,,,,20011218,,, +1610,USA,en,WPZK577,,Brookfield (WI),43.026,-88.127653,,0.01,,6650,303,143,,,,,,20011217,,, +1610,USA,en,WPZK577,,Grafton (WI),43.309,-87.927669,,0.01,,6616,303,143,,,,,,20011192,,, +1610,USA,en,WPZK577,,Milwaukee (WI),43.144356,-87.911722,,0.01,,6628,302,143,,,,,,20011195,,, +1610,USA,en,WPZK577,,New Berlin (WI),42.958667,-88.080667,,0.01,,6652,302,143,,,,,,20011219,,, +1610,USA,en,WPZK577,,Thiensville (WI),43.227653,-87.927639,,0.01,,6623,303,143,,,,,,20011226,,, +1610,USA,en,WQBV479,,Conetoe (NC),35.827669,-77.460997,,0.01,,6560,290,143,,,,,,20011076,,, +1610,USA,en,WQBV479,,Pinetops (NC),35.788333,-77.631278,,0.01,,6574,290,143,,,,,,20011075,,, +1610,USA,en,WQBV479,,Rocky Mount (NC),35.910978,-77.744308,,0.01,,6572,290,143,,,,,,20011074,,, +1610,USA,en,WQBV479,,Tarboro (NC),35.911556,-77.594367,,0.01,,6562,290,143,,,,,,20011073,,, +1610,USA,en,WQFG868,,New Bern (NC),35.116667,-77.05,,0.01,,6589,289,143,,,,,,20011330,,, +1610,USA,en,WQFU301,,Pine Knoll Shores/314 Salter Path Road (NC),34.695333,-76.824444,,0.01,,6607,288,143,,,,,,20011373,,, +1610,USA,en,KMH441,,Northfield (IL),42.094297,-87.777636,,0.01,,6703,302,144,,,,,,20010976,,, +1610,USA,en,KNIG425,,Hillside (IL),41.877631,-87.910972,,0.01,,6728,301,144,,,,,,20010971,,, +1610,USA,en,KNIG426,,Addison (IL),41.960861,-88.028389,,0.01,,6728,302,144,,,,,,20010996,,, +1610,USA,en,KNNU879,,Deerfield (WI),42.998611,-89.198722,,0.01,,6713,303,144,,,,,,20010985,,, +1610,USA,en,WNHX776,,Chicago (IL),41.810958,-87.630889,,0.01,,6717,301,144,,,,,,20010932,,, +1610,USA,en,WNVK825,,Hammond (WI),44.943306,-92.444344,,0.01,,6741,307,144,,,,,,20011051,,, +1610,USA,en,WNZG592,,Madison (WI),43.066667,-89.4,,0.01,,6720,303,144,,,,,,20011035,,, +1610,USA,en,WPED201,,Greensboro (NC),36.045417,-79.777631,,0.01,,6691,292,144,,,,,,20010840,,, +1610,USA,en,WPFP929,,Naperville (IL),41.750028,-88.125056,,0.01,,6750,301,144,,,,,,20010846,,, +1610,USA,en,WPFP929,,Naperville (IL),41.780583,-88.133389,,0.01,,6748,302,144,,,,,,20010847,,, +1610,USA,en,WPFP929,,Naperville (IL),41.79725,-88.147833,,0.01,,6748,302,144,,,,,,20010844,,, +1610,USA,en,WPGG384,,Wytheville (VA),36.960983,-81.094308,,0.01,,6702,293,144,,,,,,20010837,,, +1610,USA,en,WPKX383,,Lexington (NC),35.742361,-80.362278,,0.01,,6752,292,144,,,,,,20010919,,, +1610,USA,en,WPPG958,,Carolina Beach (NC),34.044333,-77.911025,,0.01,,6729,289,144,,,,,,20011333,,, +1610,USA,en,WPSK564,,West Alexandria (OH),39.744167,-84.527222,,0.01,,6695,298,144,,,,,,20011110,,, +1610,USA,en,WPTJ444,,Waukesha (WI),43.05,-88.293572,,0.01,,6657,303,144,,,,,,20011230,,, +1610,USA,en,WPVW207,,Kettering (OH),39.693583,-84.147139,,0.01,,6676,297,144,,,,,,20011339,,, +1610,USA,en,WPZK577,,Kenosha (WI),42.589167,-87.960214,,0.01,,6674,302,144,,,,,,20011221,,, +1610,USA,en,WQDX479,,Pine City/12551 Voyageur Lane (MN),45.8225,-93.0075,,0.01,,6701,308,144,,,,,,20011216,,, +1610,USA,en,WQEL334,,Surf City/102 Juniper Trail (NC),34.461006,-77.565278,,0.01,,6674,289,144,,,,,,20011344,,, +1610,USA,en,WZM835,,Hebron/Cincinnati-KY Airport (OH),39.077636,-84.661019,,0.01,,6755,297,144,,,,,,20011295,,, +1610,USA,en,KNIJ419,,Nashville (IN),39.149222,-86.228333,,0.01,,6845,298,145,,,,,,20010995,,, +1610,USA,en,KNNM248,,Ottawa (IL),41.34975,-88.793417,,0.01,,6821,302,145,,,,,,20010991,,, +1610,USA,en,KNNU862,,Florence (SC),34.194339,-79.644303,,0.01,,6829,290,145,,,,,,20010997,,, +1610,USA,en,WNMQ215,,Saint Paul (MN),44.982472,-93.262167,,0.01,,6782,307,145,,,,,,20010958,,, +1610,USA,en,WNVK825,,Woodbury (WI),44.947472,-92.911019,,0.01,,6766,307,145,,,,,,20011040,,, +1610,USA,en,WPBX286,,Saint Paul (MN),44.95,-93.1,,0.01,,6776,307,145,,,,,,20011031,,, +1610,USA,en,WPCD785,,Bloomington/500 W Simpson Chapel Rd (IN),39.282,-86.523611,,0.01,,6852,299,145,,,,,,20011029,,, +1610,USA,en,WPCE615,,Utica/Starved Rock State Park (IL),41.316694,-88.997306,,0.01,,6835,302,145,,,,,,20011027,,, +1610,USA,en,WPFZ723,,Richmond/130 Carr Lane (KY),37.798694,-84.327692,,0.01,,6836,296,145,,,,,,20010815,,, +1610,USA,en,WPKX383,,Kanapolis (NC),35.497083,-80.566167,,0.01,,6784,292,145,,,,,,20010918,,, +1610,USA,en,WPKX437,,Big Stone Gap (VA),36.860978,-82.761008,,0.01,,6814,294,145,,,,,,20010912,,, +1610,USA,en,WPLU260,,New Whiteland (IN),39.560967,-86.106944,,0.01,,6804,298,145,,,,,,20010891,,, +1610,USA,en,WPMG253,,Moorhead (MN),46.8777,-96.727306,,0.01,,6813,311,145,,,,,,20010862,,, +1610,USA,en,WPPC978,,Indianapolis/1004 W Vermont St. (IN),39.775056,-86.173056,,0.01,,6791,299,145,,,,,,20011396,,, +1610,USA,en,WPPH325,,Indianapolis (IN),39.775056,-86.173056,,0.01,,6791,299,145,,,,,,20011326,,, +1610,USA,en,WPPH326,,Indianapolis (IN),39.775056,-86.173056,,0.01,,6791,299,145,,,,,,20011325,,, +1610,USA,en,WPTZ502,,Westfield (IN),40.05975,-86.128028,,0.01,,6766,299,145,,,,,,20011176,,, +1610,USA,en,WQBT682,,Winchester (KY),38.010986,-84.22765,,0.01,,6813,296,145,,,,,,20011080,,, +1610,USA,en,WQCV448,,Aynor/1800 Highway 501 North (SC),34.016667,-79.226897,,0.01,,6816,290,145,,,,,,20011114,,, +1610,USA,en,WQDL429,,Owatonna/3900 West Frontage Road (MN),44.130111,-93.261,,0.01,,6851,306,145,,,,,,20011126,,, +1610,USA,en,WQGT919,,Northfield (MN),44.461014,-93.164278,,0.01,,6819,307,145,,,,,,20011375,,, +1610,USA,en,WPAB672,,Corbin (KY),36.910639,-84.133,,0.01,,6895,295,146,,,,,,20011010,,, +1610,USA,en,WPBC251,,Princeton (IL),41.377631,-89.477644,,0.01,,6858,302,146,,,,,,20011007,,, +1610,USA,en,WPCD785,,Bloomington (IN),39.177833,-86.51,,0.01,,6859,298,146,,,,,,20011030,,, +1610,USA,en,WPCD785,,Bloomington/100 W Dillman Road (IN),39.094222,-86.548611,,0.01,,6868,298,146,,,,,,20011028,,, +1610,USA,en,WPCI801,,Louisville (KY),38.25,-85.766667,,0.01,,6888,297,146,,,,,,20011026,,, +1610,USA,en,WPJT281,,Le Claire/900 Eagle Ridge Road (IA),41.594297,-90.377658,,0.01,,6893,303,146,,,,,,20010841,,, +1610,USA,en,WPNQ589,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010863,,, +1610,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20010886,,, +1610,USA,en,WPQA407,,Peoria/101 Lorentz St. (IL),40.727633,-89.560978,,0.01,,6915,302,146,,,,,,20010880,,, +1610,USA,en,WPTZ502,,Underwood (IN),38.594344,-85.779722,,0.01,,6862,298,146,,,,,,20011175,,, +1610,USA,en,WPUN647,,Terre Haute (IL),39.446944,-87.446111,,0.01,,6894,299,146,,,,,,20011093,,, +1610,USA,en,WPZW904,,Clyde (NC),35.544325,-82.927658,,0.01,,6929,293,146,,,,,,20011224,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.131389,-85.644367,,0.01,,6890,297,146,,,,,,20011397,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.146389,-85.808056,,0.01,,6899,297,146,,,,,,20011395,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.24435,-85.525917,,0.01,,6874,297,146,,,,,,20011394,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.249861,-85.778306,,0.01,,6889,297,146,,,,,,20011393,,, +1610,USA,en,WQFQ816,,Louisville (KY),38.264667,-85.677678,,0.01,,6882,297,146,,,,,,20011398,,, +1610,USA,en,WQFX538,,Clyde (NC),35.544317,-82.911833,,0.01,,6928,293,146,,,,,,20011370,,, +1610,USA,en,WNKX409,,Ames (IA),42.094367,-93.566889,,0.01,,7033,305,147,,,,,,20010951,,, +1610,USA,en,WPAA521,,Charleston (SC),32.844336,-79.963417,,0.01,,6957,289,147,,,,,,20011011,,, +1610,USA,en,WPQZ702,,Athens (IL),39.960972,-89.677658,,0.01,,6984,301,147,,,,,,20011359,,, +1610,USA,en,WPQZ702,,Petersburg (IL),39.965056,-89.844322,,0.01,,6994,301,147,,,,,,20011360,,, +1610,USA,en,WPUA399,,Folly Beach/21 Center Street (SC),32.660972,-79.944358,,0.01,,6971,289,147,,,,,,20011157,,, +1610,USA,en,WPUN647,,Springfield (IL),39.8,-89.65,,0.01,,6996,301,147,,,,,,20011161,,, +1610,USA,en,WPVB565,,Beaufort (SC),32.363778,-80.877678,,0.01,,7055,289,147,,,,,,20011318,,, +1610,USA,en,WPVB565,,Beaufort/Lady's Island Fire Department (SC),32.410983,-80.644364,,0.01,,7036,289,147,,,,,,20011135,,, +1610,USA,en,WQDL503,,Bismarck (ND),46.831667,-100.793514,,0.01,,7024,313,147,,,,,,20011127,,, +1610,USA,en,WQIV246,,Ellendale (ND),46.01675,-98.527675,,0.01,,6977,311,147,,,,,,20011280,,, +1610,USA,en,WPMP254,,Nashville (TN),36.144306,-86.676831,,0.01,,7114,296,148,,,,,,20010859,,, +1610,USA,en,WPNY753,,Tullahoma/201 W Grundy St. (TN),35.36175,-86.213056,,0.01,,7149,295,148,,,,,,20011381,,, +1610,USA,en,WPQX600,,Watkinsville (GA),33.866667,-83.416667,,0.01,,7095,292,148,,,,,,20011305,,, +1610,USA,en,WPQX600,,Watkinsville/1291 Greensboro Hwy (GA),33.860986,-83.399611,,0.01,,7095,292,148,,,,,,20011309,,, +1610,USA,en,WPTZ519,,Brentwood/13 Robert E Lee Way (TN),35.989444,-86.8225,,0.01,,7135,296,148,,,,,,20011178,,, +1610,USA,en,WPWA750,,Marion (IL),37.728333,-88.975833,,0.01,,7124,299,148,,,,,,20011255,,, +1610,USA,en,WPWA784,,Culbertson (MT),48.146833,-104.511006,,0.01,,7094,316,148,,,,,,20011368,,, +1610,USA,en,WPZK220,,Calvert City/1315 Fifth Avenue (KY),37.026839,-88.344292,,0.01,,7143,298,148,,,,,,20011170,,, +1610,USA,en,WQBJ215,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011092,,, +1610,ALS,en,WPHC769,,Anchorage/3211 Providence Dr (AK),61.191944,-149.81525,,0.01,,7241,348,149,,,,,,20012313,,, +1610,ARG,es,R Maranata AM,,Puerto Iguaz (mn),-25.6,-54.566667,,1,,10468,232,149,,0000-2400,1234567,,,51921,,, +1610,PRU,,R Carabamba,,Julcan (jun),-11.733333,-75.416667,,1,,10486,256,149,,,,15,,2197,,, +1610,PRU,,R Haquira,,Haquira (apu),-14.216667,-72.183333,,1,,10493,252,149,,,,4,,2198,,, +1610,PRU,,R Inka,,Puno (pun),-15.844444,-70.025,,1,,10498,250,149,,,,,,37000111,,, +1610,USA,en,WNWU238,,Paducah/4810 Blandville Road (KY),37.060969,-88.658944,,0.01,,7159,298,149,,,,,,20011066,,, +1610,USA,en,WPIX910,,Jefferson City (MO),38.583333,-92.166667,,0.01,,7242,302,149,,,,,,20010808,,, +1610,USA,en,WPKL577,,Mount Pleasant/108 Public Square (TN),35.544308,-87.2075,,0.01,,7195,296,149,,,,,,20010896,,, +1610,USA,en,WPKL577,,Spring Hill (TN),35.731722,-86.953611,,0.01,,7164,296,149,,,,,,20010907,,, +1610,USA,en,WPKW668,,Perry (GA),32.443472,-83.761014,,0.01,,7233,291,149,,,,,,20010915,,, +1610,USA,en,WPTK859,,Forsyth (GA),33.033111,-83.944319,,0.01,,7197,292,149,,,,,,20011220,,, +1610,USA,en,WPWA784,,Wibaux (MT),47,-104.216667,,0.01,,7178,315,149,,,,,,20011365,,, +1610,USA,en,WPWV584,,Pierre (SD),44.366667,-100.35,,0.01,,7209,311,149,,,,,,20011199,,, +1610,ALS,en,WPTI714,,Portage (AK),60.844167,-148.982222,,0.01,,7266,347,150,,,,,,20012315,,, +1610,ARG,,R Exitos,,Ituzaingo (cn),-27.566667,-56.666667,,1,,10766,233,150,,,,,,51920,,, +1610,USA,en,WPAC848,,Saint Augustine (FL),29.8777,-81.294308,,0.01,,7285,288,150,,,,,,20011009,,, +1610,USA,en,WPKX395,,Bonner springs (KS),39.097222,-94.881083,,0.01,,7355,304,150,,,,,,20010913,,, +1610,USA,en,WPLY698,,Bonner springs (KS),39.097222,-94.881083,,0.01,,7355,304,150,,,,,,20010870,,, +1610,USA,en,WPUQ404,,Hoover (AL),33.383333,-86.807222,,0.01,,7348,294,150,,,,,,20011361,,, +1610,USA,en,WPUQ404,,Hoover (AL),33.4,-86.816667,,0.01,,7347,294,150,,,,,,20011384,,, +1610,USA,en,WPWA756,,Blue Springs (MO),39.044306,-94.341667,,0.01,,7329,303,150,,,,,,20011382,,, +1610,USA,en,WPWA756,,Liberty (MO),39.226822,-94.475639,,0.01,,7321,304,150,,,,,,20011374,,, +1610,USA,en,WQBX883,,Leeds (AL),33.542833,-86.610972,,0.01,,7322,294,150,,,,,,20011070,,, +1610,USA,en,WQEY818,,Palm Coast/4510 Belle Terre Parkway (FL),29.5305,-81.227631,,0.01,,7309,288,150,,,,,,20011327,,, +1610,USA,en,WQGU299,,Florence (AL),34.827686,-87.659222,,0.01,,7282,296,150,,,,,,20011376,,, +1610,USA,en,WQI284,,Kansas City (MO),39.312222,-94.711033,,0.01,,7328,304,150,,,,,,20011319,,, +1610,USA,en,WNDX581,,Memphis (TN),35.044308,-89.994314,,0.01,,7406,298,151,,,,,,20010941,,, +1610,USA,en,WNDX581,,Memphis (TN),35.060361,-89.99675,,0.01,,7405,298,151,,,,,,20010940,,, +1610,USA,en,WNDX581,,Memphis (TN),35.077642,-89.960981,,0.01,,7401,298,151,,,,,,20010939,,, +1610,USA,en,WNNC526,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20010956,,, +1610,USA,en,WPGU770,,Hardin (MT),45.74525,-107.544308,,0.01,,7446,316,151,,,,,,20010797,,, +1610,USA,en,WPIX911,,Branson (MO),36.643111,-92.227672,,0.01,,7407,300,151,,,,,,20010817,,, +1610,USA,en,WPKX395,,East Topeka (KS),39.028611,-95.6277,,0.01,,7403,304,151,,,,,,20010925,,, +1610,USA,en,WPKX395,,West Lawrence (KS),38.989167,-95.261031,,0.01,,7386,304,151,,,,,,20010914,,, +1610,USA,en,WPLY698,,East Topeka (KS),39.028611,-95.6277,,0.01,,7403,304,151,,,,,,20010866,,, +1610,USA,en,WPLY698,,West Lawrence (KS),38.989167,-95.261031,,0.01,,7386,304,151,,,,,,20010865,,, +1610,USA,en,WPQD502,,Ocala (FL),29.19525,-82.179806,,0.01,,7399,288,151,,,,,,20010878,,, +1610,USA,en,WPQH630,,Kearney (NE),40.676897,-99.042583,,0.01,,7453,307,151,,,,,,20011296,,, +1610,USA,en,WPRF526,,Melbourne Beach (FL),28.061417,-80.560611,,0.01,,7387,286,151,,,,,,20011358,,, +1610,USA,en,WPWU365,,Custer (SD),43.827686,-103.638333,,0.01,,7423,312,151,,,,,,20011194,,, +1610,USA,en,WQBQ322,,Deltona/1685 Providence Blvd (FL),28.906667,-81.225833,,0.01,,7360,287,151,,,,,,20011100,,, +1610,USA,en,WQGS506,,Micanopy (FL),29.559667,-82.330528,,0.01,,7378,288,151,,,,,,20011363,,, +1610,ARG,,R Guayviy,,Gregorio de Laferrere (ba),-34.75,-58.583333,,1,,11529,230,152,,,,996,,52659,,, +1610,ARG,es,AM Fortaleza,,Ezeiza/Calle Independencia 646 (ba),-34.85,-58.533333,,1,,11535,230,152,,,,,,33000001,,, +1610,PRU,,OAU60 R El Sabor,,Arequipa (are),-16.4,-71.55,,0.5,,10645,251,152,,,,32,,2277,,, +1610,PRU,es,OAU6O R Flor de los Andes,,Jos Luis Bustamente y Rivero (are),-16.433333,-71.516667,,0.5,,10646,251,152,,,,144,,37000116,,, +1610,USA,en,WPDA943,,Sunrise (FL),26.15,-80.330833,,0.01,,7530,284,152,,,,,,20011022,,, +1610,USA,en,WPDA943,,Sunrise (FL),26.176881,-80.291667,,0.01,,7525,284,152,,,,,,20011033,,, +1610,USA,en,WPED445,,Emporia (KS),38.413611,-96.243547,,0.01,,7490,304,152,,,,,,20010826,,, +1610,USA,en,WPKJ773,,Bartow (FL),27.9,-81.85,,0.01,,7484,287,152,,,,,,20010900,,, +1610,USA,en,WPKJ773,,Lakeland/4225 Ewell Road (FL),27.960961,-82.044308,,0.01,,7492,287,152,,,,,,20010901,,, +1610,USA,en,WPKN330,,Rogers/3101 W Oak St (AR),36.33175,-94.166306,,0.01,,7546,301,152,,,,,,20010895,,, +1610,USA,en,WPKX395,,Admire (KS),38.660189,-96.030556,,0.01,,7457,304,152,,,,,,20010916,,, +1610,USA,en,WPLY698,,Admire (KS),38.660189,-96.030556,,0.01,,7457,304,152,,,,,,20010867,,, +1610,USA,en,WPLY701,,Tarpon Springs (FL),28.142778,-82.744722,,0.01,,7523,288,152,,,,,,20010864,,, +1610,USA,en,WPMU718,,Conway/1105 Prairie St. (AR),35.094311,-92.444339,,0.01,,7549,299,152,,,,,,20010856,,, +1610,USA,en,WPQG483,,Cassoday (KS),38.060958,-96.644297,,0.01,,7543,304,152,,,,,,20010978,,, +1610,USA,en,WPZK221,,Fort Lauderdale/730 North Federal Highway (FL),26.126814,-80.143497,,0.01,,7519,284,152,,,,,,20011171,,, +1610,USA,en,WQFG712,,Fredonia (KS),37.5443,-95.812833,,0.01,,7539,303,152,,,,,,20011340,,, +1610,USA,en,WQFG985,,Ulm/2 Millegan Road (MT),47.432528,-111.510972,,0.01,,7478,320,152,,,,,,20011332,,, +1610,USA,en,WYZ235,,Tampa/Int.Airport (FL),27.976694,-82.532306,,0.01,,7523,287,152,,,,,,20011294,,, +1610,USA,en,KNNY473,,Key Largo (FL),25.211222,-80.427639,,0.01,,7615,284,153,,,,,,20010981,,, +1610,USA,en,WPHN567,,Dover (ID),48.261011,-116.643806,,0.01,,7621,323,153,,,,,,20010792,,, +1610,USA,en,WPJL233,,Newton (KS),38.025,-97.344292,,0.01,,7585,305,153,,,,,,20010805,,, +1610,USA,en,WPQG483,,El Dorado (KS),37.827628,-96.910958,,0.01,,7578,304,153,,,,,,20010876,,, +1610,USA,en,WPQG483,,Wellington (KS),37.277633,-97.344303,,0.01,,7649,304,153,,,,,,20010877,,, +1610,USA,en,WPQG483,,Wichita (KS),37.675861,-97.228389,,0.01,,7608,304,153,,,,,,20010875,,, +1610,USA,en,WPTR459,,Little Rock (AR),34.744364,-92.277692,,0.01,,7569,299,153,,,,,,20011164,,, +1610,USA,en,WPTR459,,Mabevale (AR),34.677625,-92.394317,,0.01,,7581,299,153,,,,,,20011165,,, +1610,USA,en,WPUW403,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20011250,,, +1610,USA,en,WPWA784,,Clark Fork (MT),48.093333,-116.093333,,0.01,,7614,323,153,,,,,,20011385,,, +1610,USA,en,WPWA784,,Three Forks (MT),45.911667,-111.498611,,0.01,,7614,319,153,,,,,,20011386,,, +1610,USA,en,WPWA784,,Troy (MT),48.4725,-115.911017,,0.01,,7571,323,153,,,,,,20011369,,, +1610,USA,en,WQAL914,,Helena (MT),46.6,-112.033333,,0.01,,7576,319,153,,,,,,20011206,,, +1610,USA,en,WQAW405,,Miami/Int.Airport (FL),25.797528,-80.293361,,0.01,,7557,284,153,,,,,,20011211,,, +1610,USA,en,WQBN524,,Pensacola (FL),30.566694,-87.383556,,0.01,,7618,293,153,,,,,,20011097,,, +1610,USA,en,WQGH480,,McIntosh/Police Dept. (AL),31.277667,-88.043556,,0.01,,7600,294,153,,,,,,20011372,,, +1610,USA,en,WQGU312,,Cape Coral (FL),26.596556,-81.981639,,0.01,,7602,286,153,,,,,,20011378,,, +1610,USA,en,WQGU312,,Cape Coral (FL),26.677697,-82.009083,,0.01,,7597,286,153,,,,,,20011377,,, +1610,USA,en,WQHN733,,Torrington (WY),42.0777,-104.194322,,0.01,,7604,312,153,,,,,,20011243,,, +1610,USA,en,WQHN733,,Wheatland (WY),42.044361,-104.96575,,0.01,,7646,312,153,,,,,,20011244,,, +1610,USA,en,WQHN733,,Worland (WY),44.027644,-107.931722,,0.01,,7617,315,153,,,,,,20011256,,, +1610,USA,en,WQHS744,,Casper (WY),42.877658,-106.344083,,0.01,,7641,314,153,,,,,,20011237,,, +1610,USA,en,WQHS744,,Cody (WY),44.512028,-109.014639,,0.01,,7625,316,153,,,,,,20011268,,, +1610,USA,en,WQHS744,,Douglas (WY),42.761583,-105.411022,,0.01,,7605,313,153,,,,,,20011300,,, +1610,USA,en,WQIQ627,,Clearwater (MT),47.011028,-113.377678,,0.01,,7598,320,153,,,,,,20011317,,, +1610,USA,en,WQJE903,,Evaro (MT),47.076831,-114.070833,,0.01,,7622,321,153,,,,,,20011292,,, +1610,USA,en,WNHL839,,Spokane (WA),47.564056,-117.627689,,0.01,,7726,323,154,,,,,,20010934,,, +1610,USA,en,WNHL839,,Spokane (WA),47.711008,-117.063806,,0.01,,7689,323,154,,,,,,20010926,,, +1610,USA,en,WNMV556,,Vicksburg (MS),32.342639,-90.860983,,0.01,,7685,296,154,,,,,,20010957,,, +1610,USA,en,WPHF829,,Spokane (WA),47.631556,-117.527444,,0.01,,7716,323,154,,,,,,20010790,,, +1610,USA,en,WPJZ253,,Laramie (WY),41.281917,-105.526881,,0.01,,7741,312,154,,,,,,20010906,,, +1610,USA,en,WPKI981,,Dodge City/500 W Trail St. (KS),37.7943,-100.044333,,0.01,,7755,306,154,,,,,,20010902,,, +1610,USA,en,WPLP689,,Cheyenne (WY),41.133333,-104.816667,,0.01,,7718,311,154,,,,,,20010911,,, +1610,USA,en,WQBA735,,Buford (WY),41.127658,-105.310986,,0.01,,7744,312,154,,,,,,20011212,,, +1610,USA,en,WQCL720,,Jet (OK),36.742667,-98.132333,,0.01,,7739,304,154,,,,,,20011130,,, +1610,USA,en,WQFQ782,,Dubois (WY),43.548167,-109.677633,,0.01,,7743,316,154,,,,,,20011388,,, +1610,USA,en,WQHS744,,Alcova (WY),42.494028,-107.144353,,0.01,,7715,314,154,,,,,,20011303,,, +1610,USA,en,WQHS744,,Dubois (WY),43.694317,-109.962111,,0.01,,7743,316,154,,,,,,20011302,,, +1610,USA,en,WQHS744,,Riverton (WY),43.011,-108.381944,,0.01,,7729,315,154,,,,,,20011304,,, +1610,USA,en,WNWU499,,Oklahoma City (OK),35.466667,-97.516667,,0.01,,7814,303,155,,,,,,20011065,,, +1610,USA,en,WPKC467,,Denver (CO),39.733333,-104.983333,,0.01,,7850,311,155,,,,,,20010905,,, +1610,USA,en,WPPZ664,,Loveland/2539 N Custer Drive (CO),40.427692,-105.094364,,0.01,,7795,311,155,,,,,,20010872,,, +1610,USA,en,WPRW858,,Scenic (WA),47.746111,-121.088056,,0.01,,7846,326,155,,,,,,20011087,,, +1610,USA,en,WPTC509,,Rawlins/301 East Airport Road (WY),41.792278,-107.211025,,0.01,,7781,313,155,,,,,,20011208,,, +1610,USA,en,WPTC509,,Walcott (WY),41.742639,-106.829583,,0.01,,7766,313,155,,,,,,20011207,,, +1610,USA,en,WPUL478,,Leavenworth/90 Mill Street (WA),47.590833,-120.671389,,0.01,,7845,325,155,,,,,,20011213,,, +1610,USA,en,WPVC279,,Pomeroy (WA),46.474167,-117.612222,,0.01,,7827,323,155,,,,,,20011287,,, +1610,USA,en,WPVC282,,Clarkston (WA),46.426897,-117.070278,,0.01,,7809,322,155,,,,,,20011289,,, +1610,USA,en,WQFQ782,,Moran Junction (WY),43.841944,-110.511017,,0.01,,7756,317,155,,,,,,20011387,,, +1610,USA,en,WQHN733,,Lander (WY),42.729167,-108.645889,,0.01,,7767,315,155,,,,,,20011246,,, +1610,ARG,,R Buenas Nuevas,,Laboulaye (cb),-34.116667,-63.366667,,0.5,,11729,234,156,,,,,,51922,,, +1610,USA,en,KNEF687,,Cle Elum (WA),47.194322,-120.92765,,0.01,,7893,325,156,,,,,,20010970,,, +1610,USA,en,KNEF687,,Ellensburg (WA),47.010994,-120.594311,,0.01,,7897,325,156,,,,,,20010972,,, +1610,USA,en,KNEF687,,Hyak (WA),47.425389,-121.414528,,0.01,,7890,326,156,,,,,,20010979,,, +1610,USA,en,KNEF687,,Northbend (WA),47.480111,-121.794322,,0.01,,7899,326,156,,,,,,20010962,,, +1610,USA,en,KNNV605,,Idaho Falls (ID),43.527681,-112.059417,,0.01,,7856,318,156,,,,,,20010982,,, +1610,USA,en,KNNV605,,Pocatello (ID),42.861014,-112.427697,,0.01,,7934,317,156,,,,,,20010983,,, +1610,USA,en,WNHC788,,Monroe (WA),47.8665,-121.981806,,0.01,,7869,326,156,,,,,,20010936,,, +1610,USA,en,WNVQ843,,Port Angeles (WA),48.114806,-123.432694,,0.01,,7900,327,156,,,,,,20011038,,, +1610,USA,en,WPEA526,,Othello (WA),46.827658,-119.138056,,0.01,,7856,324,156,,,,,,20010874,,, +1610,USA,en,WPKL360,,Woodinville (WA),47.760986,-122.164,,0.01,,7886,326,156,,,,,,20010890,,, +1610,USA,en,WPKV296,,Zillah/320 Cutler Way (WA),46.411528,-120.277633,,0.01,,7941,324,156,,,,,,20010892,,, +1610,USA,en,WPLR917,,Baton Rouge (LA),30.512417,-91.159,,0.01,,7858,295,156,,,,,,20010909,,, +1610,USA,en,WPQH924,,Ramah (LA),30.411014,-91.510992,,0.01,,7889,295,156,,,,,,20011286,,, +1610,USA,en,WPQH925,,East Iberville (LA),30.209917,-91.130667,,0.01,,7882,295,156,,,,,,20011281,,, +1610,USA,en,WPSH253,,Pendleton (OR),45.663333,-118.776667,,0.01,,7952,323,156,,,,,,20011072,,, +1610,USA,en,WPTJ537,,Cripple Creek (CO),38.75,-105.195,,0.01,,7948,310,156,,,,,,20011229,,, +1610,USA,en,WPUI731,,Pendleton (OR),45.660444,-118.782361,,0.01,,7952,323,156,,,,,,20011227,,, +1610,USA,en,WPUJ642,,Kingston (WA),47.811028,-122.577689,,0.01,,7897,326,156,,,,,,20011209,,, +1610,USA,en,WPVC272,,Dayton (WA),46.311667,-117.992778,,0.01,,7858,323,156,,,,,,20011308,,, +1610,USA,en,WPWZ971,,Roslyn (WA),47.246972,-121.194328,,0.01,,7898,325,156,,,,,,20011233,,, +1610,USA,en,WPXA477,,North Bend (WA),47.396417,-121.497583,,0.01,,7896,326,156,,,,,,20011232,,, +1610,USA,en,WPXG660,,Baton Rouge (LA),30.45,-91.15,,0.01,,7863,295,156,,,,,,20011155,,, +1610,USA,en,WPYR637,,George (WA),47.082917,-119.860889,,0.01,,7861,324,156,,,,,,20011166,,, +1610,USA,en,WQAG362,,Richland (WA),46.260389,-119.427639,,0.01,,7922,324,156,,,,,,20011200,,, +1610,USA,en,WQBJ389,,Rock Springs (WY),41.561006,-109.311028,,0.01,,7905,315,156,,,,,,20011095,,, +1610,USA,en,WQBJ389,,Rock Springs (WY),41.593667,-109.194361,,0.01,,7896,315,156,,,,,,20011096,,, +1610,USA,en,WQBX491,,Davis (OK),34.4277,-97.143444,,0.01,,7882,302,156,,,,,,20011079,,, +1610,USA,en,WQFW846,,La Grande (OR),45.332556,-118.064222,,0.01,,7953,322,156,,,,,,20011367,,, +1610,USA,en,WQIY296,,Pueblo (CO),38.310556,-104.577778,,0.01,,7955,309,156,,,,,,20011278,,, +1610,USA,en,KNAX787,,The Dalles (OR),45.610986,-121.181472,,0.01,,8054,324,157,,,,,,20010975,,, +1610,USA,en,KNFG751,,Toutle (WA),46.327656,-122.744322,,0.01,,8046,326,157,,,,,,20010969,,, +1610,USA,en,WPHF897,,South Bend (WA),46.678722,-123.760722,,0.01,,8051,327,157,,,,,,20010787,,, +1610,USA,en,WPHF897,,Tumwater (WA),47.000083,-122.910972,,0.01,,7988,326,157,,,,,,20010788,,, +1610,USA,en,WPSH253,,Boardman (OR),45.833,-119.766667,,0.01,,7976,324,157,,,,,,20011071,,, +1610,USA,en,WPUI731,,Boardman (OR),45.833,-119.776872,,0.01,,7976,324,157,,,,,,20011215,,, +1610,USA,en,WPUL479,,Maryhill (WA),45.696417,-120.827656,,0.01,,8032,324,157,,,,,,20011133,,, +1610,USA,en,WPVW617,,DuPont (WA),47.094294,-122.643444,,0.01,,7968,326,157,,,,,,20011259,,, +1610,USA,en,WQBJ389,,Evanston (WY),41.259139,-110.994356,,0.01,,8013,315,157,,,,,,20011094,,, +1610,USA,en,WQEL572,,LaPush (WA),47.913056,-124.643547,,0.01,,7964,328,157,,,,3,,20011341,,, +1610,USA,en,WQEL572,,Westport (WA),46.904167,-124.110189,,0.01,,8042,327,157,,,,,,20011353,,, +1610,USA,en,WQHF993,,Corsicana (TX),32.03,-96.471667,,0.01,,8050,300,157,,,,,,20011261,,, +1610,USA,en,WQIH846,,Olympia (WA),47.033333,-122.9,,0.01,,7984,326,157,,,,,,20011299,,, +1610,USA,en,WNZF322,,Baytown/10500 Pinehurst Dr (TX),29.794353,-94.911014,,0.01,,8150,297,158,,,,,,20011025,,, +1610,USA,en,WNZF322,,Baytown/201 E Wye Drive (TX),29.761022,-94.961028,,0.01,,8155,297,158,,,,,,20011053,,, +1610,USA,en,WPAX543,,Hammond/Mooring Basin (OR),46.210986,-123.960994,,0.01,,8104,327,158,,,,,,20011005,,, +1610,USA,en,WPMC553,,Raton (CO),36.992528,-104.474444,,0.01,,8066,309,158,,,,,,20010803,,, +1610,USA,en,WPMZ421,,Amarillo/5715 Canyon Drive (TX),35.160969,-101.879361,,0.01,,8087,306,158,,,,,,20010861,,, +1610,USA,en,WPWK548,,Forest Grove (OR),45.660172,-123.275278,,0.01,,8131,326,158,,,,,,20011098,,, +1610,USA,en,WQCA312,,Gresham/1333 NW Eastman Parkway (OR),45.511025,-122.444294,,0.01,,8113,325,158,,,,,,20011083,,, +1610,USA,en,WQCI718,,Beaverton/4755 SW Griffith Drive (OR),45.494361,-122.797389,,0.01,,8128,325,158,,,,,,20011134,,, +1610,USA,en,WQCY923,,Madras (OR),44.666667,-121.127683,,0.01,,8142,324,158,,,,,,20011119,,, +1610,USA,en,WQEL572,,Ilwaco/Fort Canby Road (WA),46.2775,-124.040833,,0.01,,8100,327,158,,,,,,20011354,,, +1610,PRG,,R.Colegio Tecnico Municipal,,emby (cet),-25.366667,-57.6,,0.1,,10613,235,159,,1000-2000,12345..,,,51741,,, +1610,USA,en,WNZF322,,Baytown/7210 Bayway Drive (TX),29.777686,-95.031583,,0.01,,8158,297,159,,,,,,20010999,,, +1610,USA,en,WPTS344,,Brookshire (TX),29.777778,-95.976831,,0.01,,8215,298,159,,,,,,20011185,,, +1610,USA,en,WPTS344,,Galveston (TX),29.293547,-94.864167,,0.01,,8190,297,159,,,,,,20011193,,, +1610,USA,en,WPTS344,,Houston (TX),29.482778,-95.410147,,0.01,,8207,297,159,,,,,,20011181,,, +1610,USA,en,WPTS344,,Houston (TX),29.561111,-95.689444,,0.01,,8217,298,159,,,,,,20011180,,, +1610,USA,en,WPWK548,,Tillamook (OR),45.493333,-123.6125,,0.01,,8160,326,159,,,,,,20011090,,, +1610,USA,en,WPXH924,,Clute/206 Stratton Ridge Road (DC),29.060983,-95.360967,,0.01,,8240,297,159,,,,,,20011179,,, +1610,USA,en,WPXH924,,Freeport (DC),28.925972,-95.359028,,0.01,,8252,297,159,,,,,,20011177,,, +1610,USA,en,WPXH924,,Freeport/2301 Brazosport Blvd (DC),28.99,-95.410989,,0.01,,8250,297,159,,,,,,20011154,,, +1610,USA,en,WPXH924,,Lake Jackson (DC),29.060986,-95.46,,0.01,,8246,297,159,,,,,,20011183,,, +1610,USA,en,WPXH924,,Oyster Creek (DC),29.010222,-95.331778,,0.01,,8243,297,159,,,,,,20011128,,, +1610,USA,en,WPXH924,,Surfside/2213 Blue Water Highway (DC),28.976278,-95.261031,,0.01,,8242,297,159,,,,,,20011174,,, +1610,USA,en,WQCY923,,Prineville/498 SE Lynn Blvd (OR),44.293806,-120.842444,,0.01,,8166,324,159,,,,,,20011118,,, +1610,USA,en,WQCY923,,Redmond/3893 SW Airport Way (OR),44.244322,-121.180583,,0.01,,8185,324,159,,,,,,20011117,,, +1610,USA,en,WQDR701,,Manti (UT),39.277664,-111.63025,,0.01,,8225,315,159,,,,,,20011129,,, +1610,USA,en,WQEL382,,Depoe Bay (OR),44.81,-124.06,,0.01,,8243,326,159,,,,,,20011347,,, +1610,USA,en,WQEL382,,Garibaldi (OR),45.559,-123.927669,,0.01,,8165,326,159,,,,,,20011345,,, +1610,USA,en,WQEL629,,Tucumcari (NM),35.176906,-103.680667,,0.01,,8185,307,159,,,,,,20011331,,, +1610,USA,en,WQFT995,,Lubbock/115 N Indiana Avenue (TX),33.599167,-101.888056,,0.01,,8225,305,159,,,,,,20011364,,, +1610,USA,en,WQGW426,,Fairview (UT),39.630611,-111.444331,,0.01,,8184,315,159,,,,,,20011379,,, +1610,USA,en,WQGW426,,Huntington (UT),39.344317,-110.980639,,0.01,,8187,314,159,,,,,,20011380,,, +1610,USA,en,WNGV539,,Austin/360 Manor Road (TX),30.294344,-97.710239,,0.01,,8274,300,160,,,,,,20010938,,, +1610,USA,en,WNLA427,,Reedsport (OR),43.694833,-124.032611,,0.01,,8351,325,160,,,,,,20010933,,, +1610,USA,en,WNQU737,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20010989,,, +1610,USA,en,WPEZ840,,Austin/Mansfield Dam Hwy 620 (TX),30.39435,-97.905556,,0.01,,8277,300,160,,,,,,20010835,,, +1610,USA,en,WPEZ840,,Buchanan Dam (TX),30.761008,-98.427625,,0.01,,8276,300,160,,,,,,20010818,,, +1610,USA,en,WPEZ840,,Marble Falls/Wirtz Power Plant (TX),30.561014,-98.344297,,0.01,,8288,300,160,,,,,,20010828,,, +1610,USA,en,WPTI468,,Austin (TX),30.266667,-97.75,,0.01,,8279,300,160,,,,,,20011204,,, +1610,USA,en,WPXK767,,Carlin (NV),40.725694,-116.0825,,0.01,,8300,318,160,,,,,,20011186,,, +1610,USA,en,WPXK767,,Dunphy (NV),40.710967,-116.514972,,0.01,,8321,319,160,,,,,,20011187,,, +1610,USA,en,WPXK767,,LaMoille (NV),40.798667,-115.714111,,0.01,,8276,318,160,,,,,,20011173,,, +1610,USA,en,WQEL382,,Newport (OR),44.625,-124.0575,,0.01,,8261,326,160,,,,,,20011348,,, +1610,USA,en,WQEL629,,Santa Rosa (NM),34.945167,-104.710972,,0.01,,8262,307,160,,,,,,20011357,,, +1610,USA,en,WQFH234,,Florence (OR),44.010214,-124.122778,,0.01,,8323,326,160,,,,,,20011335,,, +1610,USA,en,WQFJ525,,Los Alamos (NM),35.881111,-106.310972,,0.01,,8263,309,160,,,,,,20011366,,, +1610,USA,en,WQFJ525,,White Rock/301 Meadow Lane (NM),35.827028,-106.197806,,0.01,,8262,309,160,,,,,,20011329,,, +1610,USA,en,KNDX476,,San Antonio (TX),29.544356,-98.577633,,0.01,,8391,300,161,,,,,,20010974,,, +1610,USA,en,KNNH639,,Ashland (OR),42.210994,-122.694297,,0.01,,8442,324,161,,,,,,20010993,,, +1610,USA,en,WPGU506,,Midland (TX),31.977656,-102.094328,,0.01,,8381,304,161,,,,,,20010798,,, +1610,USA,en,WQCP583,,Rockport/489 Ivy Lane (TX),28.025,-97.094444,,0.01,,8436,298,161,,,,,,20011139,,, +1610,USA,en,WQEL382,,Charleston (OR),43.344722,-124.323333,,0.01,,8396,325,161,,,,,,20011362,,, +1610,USA,en,WQEL382,,Winchester Bay (OR),43.680833,-124.1775,,0.01,,8358,325,161,,,,,,20011349,,, +1610,USA,en,WQFH234,,Bandon/USCG Station Coquille River (OR),43.127636,-124.427642,,0.01,,8421,325,161,,,,,,20011337,,, +1610,USA,en,KNEU564,,Floriston (CA),39.39575,-120.027683,,0.01,,8601,320,162,,,,,,20010967,,, +1610,USA,en,KNEU564,,Kings Beach (CA),39.238333,-120.031611,,0.01,,8616,320,162,,,,,,20010987,,, +1610,USA,en,KNEU564,,Soda Springs (CA),39.327675,-120.444347,,0.01,,8626,321,162,,,,,,20010965,,, +1610,USA,en,KNEU564,,Soda Springs (CA),39.342972,-120.344347,,0.01,,8620,321,162,,,,,,20010966,,, +1610,USA,en,KNEU564,,Tahoe City (CA),39.16325,-120.149917,,0.01,,8629,320,162,,,,,,20010964,,, +1610,USA,en,KNEU564,,Truckee/10152 Keiser Ave (CA),39.331028,-120.194342,,0.01,,8614,320,162,,,,,,20010968,,, +1610,USA,en,KNNU877,,Freer/402 S Main St. (TX),27.883361,-98.613917,,0.01,,8540,299,162,,,,,,20010986,,, +1610,USA,en,WNJR464,,Hornbrook (CA),41.992639,-122.611139,,0.01,,8459,323,162,,,,,,20010931,,, +1610,USA,en,WNQS653,,Alta (CA),39.261006,-120.732722,,0.01,,8644,321,162,,,,,,20010946,,, +1610,USA,en,WNQS653,,Baxter (CA),39.2135,-120.777444,,0.01,,8651,321,162,,,,,,20010942,,, +1610,USA,en,WNQS653,,Soda Springs (CA),39.309056,-120.544083,,0.01,,8632,321,162,,,,,,20011014,,, +1610,USA,en,WPDG260,,Pecos (TX),31.382361,-103.511,,0.01,,8514,304,162,,,,,,20011020,,, +1610,USA,en,WPFK506,,Burney (CA),40.944339,-121.611031,,0.01,,8520,322,162,,,,,,20010820,,, +1610,USA,en,WPFK506,,Mount Shasta (CA),41.344306,-122.345556,,0.01,,8511,323,162,,,,,,20010821,,, +1610,USA,en,WPFK506,,Red Bluff (CA),40.180722,-122.226389,,0.01,,8619,322,162,,,,,,20010843,,, +1610,USA,en,WPFK506,,Redding (CA),40.594861,-122.361389,,0.01,,8585,323,162,,,,,,20010825,,, +1610,USA,en,WPFK506,,Yreka (CA),41.694328,-122.644292,,0.01,,8490,323,162,,,,,,20010822,,, +1610,USA,en,WPFK508,,Chilcoot (CA),39.727681,-120.044344,,0.01,,8570,321,162,,,,,,20010851,,, +1610,USA,en,WPFK508,,Susanville (CA),40.377669,-120.578833,,0.01,,8530,321,162,,,,,,20010827,,, +1610,USA,en,WPHF858,,Fort Stockton (TX),30.911,-102.915167,,0.01,,8522,304,162,,,,,,20010789,,, +1610,USA,en,WPIS369,,South Lake Tahoe (CA),38.861008,-120.027681,,0.01,,8652,320,162,,,,,,20010811,,, +1610,USA,en,WPIS369,,South Lake Tahoe/1160 Rufus Allen Blvd (CA),38.94435,-119.977683,,0.01,,8642,320,162,,,,,,20010812,,, +1610,USA,en,WPJM982,,Reno (NV),39.511017,-119.777681,,0.01,,8579,320,162,,,,,,20010804,,, +1610,USA,en,WPMQ285,,Laredo (TX),27.598917,-99.495861,,0.01,,8617,299,162,,,,,,20010858,,, +1610,USA,en,WPPD491,,Eureka/1650 Albee Street (CA),40.792639,-124.175861,,0.01,,8639,324,162,,,,,,20011399,,, +1610,USA,en,WPPY836,,Carson City (NV),39.166667,-119.766667,,0.01,,8612,320,162,,,,,,20011352,,, +1610,USA,en,WPUH752,,Arcata (CA),40.910994,-124.094303,,0.01,,8625,324,162,,,,,,20011222,,, +1610,USA,en,WPVP711,,Gasquet (CA),41.977653,-123.748417,,0.01,,8507,324,162,,,,,,20011311,,, +1610,USA,en,WPWI606,,Keddie (CA),40.044336,-120.994353,,0.01,,8580,321,162,,,,,,20011106,,, +1610,USA,en,WPXX642,,Eagar (AZ),34.111006,-109.415639,,0.01,,8587,310,162,,,,,,20011189,,, +1610,USA,en,WPXX879,,Adin (CA),41.182944,-120.961025,,0.01,,8469,322,162,,,,,,20011191,,, +1610,USA,en,WPXX879,,Quincy (CA),39.943481,-120.909944,,0.01,,8586,321,162,,,,,,20011163,,, +1610,USA,en,WPXX879,,Weaverville (CA),40.744328,-122.947806,,0.01,,8594,323,162,,,,,,20011184,,, +1610,USA,en,WPXX879,,Weed (CA),41.427683,-122.395222,,0.01,,8505,323,162,,,,,,20011182,,, +1610,USA,en,WQCT745,,El Paso (TX),31.810992,-106.264,,0.01,,8628,307,162,,,,,,20011142,,, +1610,USA,en,WQCT746,,El Paso (TX),31.747167,-106.344353,,0.01,,8638,307,162,,,,,,20011148,,, +1610,USA,en,WQCT746,,El Paso (TX),31.766194,-106.510981,,0.01,,8646,307,162,,,,,,20011146,,, +1610,USA,en,WQCT746,,El Paso (TX),31.778472,-106.427658,,0.01,,8640,307,162,,,,,,20011147,,, +1610,USA,en,WQCT746,,El Paso (TX),31.823611,-106.561006,,0.01,,8643,307,162,,,,,,20011145,,, +1610,USA,en,WQCT746,,El Paso (TX),31.908389,-106.582333,,0.01,,8637,307,162,,,,,,20011144,,, +1610,USA,en,WQCT746,,El Paso (TX),31.982556,-106.5943,,0.01,,8631,307,162,,,,,,20011132,,, +1610,USA,en,WQCT748,,El Paso (TX),31.544306,-106.143278,,0.01,,8646,306,162,,,,,,20011151,,, +1610,USA,en,WQCT748,,El Paso (TX),31.644325,-106.227642,,0.01,,8641,306,162,,,,,,20011150,,, +1610,USA,en,WQCT748,,El Paso (TX),31.692417,-106.277681,,0.01,,8640,307,162,,,,,,20011149,,, +1610,USA,en,WQCT748,,El Paso (TX),31.860961,-106.444314,,0.01,,8634,307,162,,,,,,20011113,,, +1610,USA,en,WQCT748,,El Paso (TX),31.931194,-106.427667,,0.01,,8626,307,162,,,,,,20011120,,, +1610,USA,en,WQCT748,,El Paso (TX),31.9943,-106.360969,,0.01,,8617,307,162,,,,,,20011122,,, +1610,USA,en,WQDF361,,Winslow (AZ),35.108333,-111.033333,,0.01,,8579,312,162,,,,,,20011123,,, +1610,USA,en,WQEL382,,Harbor (OR),42.061389,-124.276856,,0.01,,8519,325,162,,,,,,20011351,,, +1610,USA,en,WQFH234,,Gold Beach/USCG Rouge River Station (OR),42.426667,-124.427642,,0.01,,8490,325,162,,,,,,20011336,,, +1610,USA,en,WQFQ817,,Corning (CA),39.944806,-122.19775,,0.01,,8641,322,162,,,,,,20011391,,, +1610,USA,en,WQIX460,,Yreka (CA),41.794311,-122.594328,,0.01,,8478,323,162,,,,,,20011298,,, +1610,USA,en,KNEC996,,Sacramento (CA),38.583333,-121.5,,0.01,,8743,321,163,,,,,,20010973,,, +1610,USA,en,KNIP553,,Los Altos Hills (CA),37.361889,-122.127472,,0.01,,8888,321,163,,,,,,20010994,,, +1610,USA,en,KNNN869,,Willits (CA),39.411003,-123.360164,,0.01,,8741,323,163,,,,,,20010990,,, +1610,USA,en,KNNN870,,Clearlake (CA),38.929611,-122.627694,,0.01,,8757,322,163,,,,,,20010980,,, +1610,USA,en,WNHN752,,Monterey/351 Madison St. (CA),36.611028,-121.897167,,0.01,,8951,320,163,,,,,,20010943,,, +1610,USA,en,WNKB689,,Gilroy (CA),37.011022,-121.562444,,0.01,,8898,320,163,,,,,,20010929,,, +1610,USA,en,WNMM758,,Van Horn (TX),31.044333,-105.846361,,0.01,,8675,306,163,,,,,,20010960,,, +1610,USA,en,WNMQ214,,Newark/37440 Filbert St (CA),37.359667,-122.044361,,0.01,,8885,321,163,,,,9730,,51944,,, +1610,USA,en,WNSV220,,San Leandro/14200 Chapman Road (CA),37.711014,-122.144364,,0.01,,8855,321,163,,,,,,20011048,,, +1610,USA,en,WNUU667,,Morgan Hill/17555 Peak Ave (CA),37.127692,-121.662167,,0.01,,8891,320,163,,,,,,20011034,,, +1610,USA,en,WNUW920,,San Ramon/One Annabel Lane (CA),37.777681,-121.977697,,0.01,,8841,321,163,,,,,,20011042,,, +1610,USA,en,WNXK966,,Buttonwillow (CA),35.427692,-119.427656,,0.01,,8955,318,163,,,,,,20011052,,, +1610,USA,en,WNXK966,,Greenfield (CA),35.208861,-119.009556,,0.01,,8957,318,163,,,,,,20011063,,, +1610,USA,en,WNXK966,,Lost Hills (CA),35.616361,-119.660992,,0.01,,8947,318,163,,,,,,20011060,,, +1610,USA,en,WNXK966,,McFarland (CA),35.6455,-119.227653,,0.01,,8925,318,163,,,,,,20011064,,, +1610,USA,en,WNXY470,,San Francisco/Int. Airport (CA),37.618,-122.388028,,0.01,,8874,321,163,,,,42,,51945,,, +1610,USA,en,WNYD243,,Tehachapi (CA),35.111033,-118.345917,,0.01,,8935,317,163,,,,,,20011056,,, +1610,USA,en,WNZV591,,Berkeley/2100 Martin Luther King Way (CA),37.877686,-122.277647,,0.01,,8845,321,163,,,,,,20011013,,, +1610,USA,en,WPDU922,,Springville (CA),36.213,-118.694311,,0.01,,8846,318,163,,,,,,20011018,,, +1610,USA,en,WPIS369,,South Lake Tahoe (CA),38.81075,-120.126028,,0.01,,8661,320,163,,,,,,20010810,,, +1610,USA,en,WPIW546,,Mojave/7021 Oak Creek Rd (CA),35.049972,-118.260978,,0.01,,8937,317,163,,,,,,20010800,,, +1610,USA,en,WPKL489,,Globe/1360 N Broad St. (AZ),33.416444,-110.794319,,0.01,,8723,311,163,,,,,,20010898,,, +1610,USA,en,WPKX394,,San Anselmo/150 Butterfield Road (CA),37.99435,-122.576361,,0.01,,8846,321,163,,,,,,20010908,,, +1610,USA,en,WPPY737,,Benicia/257 Essex Way (CA),38.077694,-122.161361,,0.01,,8820,321,163,,,,,,20011350,,, +1610,USA,en,WPSE479,,Needles/800 San Clemente St. (CA),34.824444,-114.611028,,0.01,,8784,314,163,,,,,,20011086,,, +1610,USA,en,WPSG912,,Mountain Pass (CA),35.477694,-115.543333,,0.01,,8768,315,163,,,,,,20011082,,, +1610,USA,en,WPTJ432,,Fort Bragg (CA),39.427672,-123.810967,,0.01,,8758,323,163,,,,,,20011201,,, +1610,USA,en,WPTR243,,Saratoga/19700 Allendale Ave (CA),37.276814,-122.026822,,0.01,,8892,321,163,,,,,,20011168,,, +1610,USA,en,WPVQ733,,Merced (CA),37.294356,-120.461014,,0.01,,8822,320,163,,,,,,20011279,,, +1610,USA,en,WPVQ742,,Jamestown (CA),37.911008,-120.477417,,0.01,,8763,320,163,,,,,,20011253,,, +1610,USA,en,WPXB744,,Pine Grove (CA),38.411017,-120.649917,,0.01,,8723,320,163,,,,,,20011231,,, +1610,USA,en,WPXB746,,Angels Camp/98 S Main St. (CA),38.079361,-120.561014,,0.01,,8751,320,163,,,,,,20011228,,, +1610,USA,en,WPXB970,,Lee Vining (CA),37.960983,-119.127628,,0.01,,8699,319,163,,,,,,20011167,,, +1610,USA,en,WPYC654,,Coleville/774 Eastside Road (CA),38.539444,-119.456944,,0.01,,8658,320,163,,,,,,20011156,,, +1610,USA,en,WPZH433,,Phoenix (AZ),33.810972,-112.146806,,0.01,,8756,312,163,,,,,,20011169,,, +1610,USA,en,WQCY276,,Kingman (AZ),35.183333,-114.05,,0.01,,8723,314,163,,,,,,20011115,,, +1610,USA,en,WQCY276,,Kingman (AZ),35.183333,-114.05,,0.01,,8723,314,163,,,,,,20011116,,, +1610,USA,en,WQDL670,,Flagstaff/12941 E Delgado St. (AZ),34.561667,-112.258333,,0.01,,8692,312,163,,,,,,20011260,,, +1610,USA,en,WQEL573,,Phoenix (AZ),34.25,-111.666667,,0.01,,8691,312,163,,,,,,20011355,,, +1610,USA,en,WQEV751,,Crowley Lake (CA),37.577694,-118.761003,,0.01,,8719,319,163,,,,,,20011323,,, +1610,USA,en,WQEV891,,Markleeville (CA),38.616667,-119.8,,0.01,,8666,320,163,,,,,,20011324,,, +1610,USA,en,WQFH233,,Oildale (CA),35.4425,-119.031667,,0.01,,8935,318,163,,,,,,20011334,,, +1610,USA,en,WQFQ815,,Lodi (CA),38.116806,-121.39825,,0.01,,8784,321,163,,,,,,20011389,,, +1610,USA,en,WQFQ815,,Markleeville (CA),38.775333,-119.927669,,0.01,,8656,320,163,,,,,,20011392,,, +1610,USA,en,WQFQ815,,Martell (CA),38.376083,-120.810967,,0.01,,8733,320,163,,,,,,20011383,,, +1610,USA,en,WQFQ815,,Stockton (CA),37.944297,-121.260964,,0.01,,8794,321,163,,,,,,20011390,,, +1610,USA,en,WQHK867,,Lake Havasu City (AZ),34.478222,-114.327683,,0.01,,8803,314,163,,,,,,20011241,,, +1610,USA,en,WQHK911,,Kirkwood (CA),38.710239,-120.071111,,0.01,,8669,320,163,,,,,,20011242,,, +1610,USA,en,WXK790,,Phoenix/3400 E Sky Harbor Blvd (AZ),33.444303,-112.011,,0.01,,8783,312,163,,,,,,20011293,,, +1610,USA,en,WNDQ665,,Descanso (CA),32.848389,-116.580306,,0.01,,9067,315,164,,,,,,20010963,,, +1610,USA,en,WNKI578,,Idyllwild (CA),33.746972,-116.715028,,0.01,,8988,315,164,,,,,,20010928,,, +1610,USA,en,WNPF405,,San Diego/2125 Park Blvd (CA),32.700056,-117.146972,,0.01,,9108,315,164,,,,,,20010955,,, +1610,USA,en,WNUB568,,Chula Vista/391 Oxford St. (CA),32.610967,-117.063361,,0.01,,9113,315,164,,,,,,20011046,,, +1610,USA,en,WNXK966,,Old River (CA),35.209139,-119.162333,,0.01,,8964,318,164,,,,,,20011062,,, +1610,USA,en,WPEA446,,Lancaster (CA),34.541667,-118.15925,,0.01,,8981,317,164,,,,,,20011061,,, +1610,USA,en,WPET708,,Arleta (CA),34.245556,-118.427647,,0.01,,9022,317,164,,,,,,20010832,,, +1610,USA,en,WPET708,,Canyon Country (CA),34.392222,-118.477647,,0.01,,9010,317,164,,,,,,20010831,,, +1610,USA,en,WPET708,,Lebec (CA),34.794694,-118.860975,,0.01,,8989,317,164,,,,,,20010830,,, +1610,USA,en,WPET708,,Santa Clarita (CA),34.410556,-118.57675,,0.01,,9013,317,164,,,,,,20010833,,, +1610,USA,en,WPHJ962,,Los Angelese (CA),34.028611,-118.447028,,0.01,,9044,317,164,,,,,,20010786,,, +1610,USA,en,WPKF567,,Borrego Springs/1550 Rango Way (CA),33.227628,-116.340556,,0.01,,9019,315,164,,,,,,20010904,,, +1610,USA,en,WPNT814,,Frazier Park (CA),34.861028,-119.177653,,0.01,,8998,317,164,,,,,,20010887,,, +1610,USA,en,WPVQ736,,Grapevine (CA),34.963028,-118.944322,,0.01,,8977,317,164,,,,,,20011254,,, +1610,USA,en,WPYR591,,Goleta (CA),34.421944,-119.860189,,0.01,,9071,318,164,,,,,,20011153,,, +1610,USA,en,WQED842,,Los Angeles (CA),34.077639,-118.477692,,0.01,,9040,317,164,,,,,,20011342,,, +1610,USA,en,WQEU877,,Calabasas (CA),34.149556,-118.69725,,0.01,,9044,317,164,,,,,,20011322,,, +1610,USA,en,WQFE310,,Santa Paula (CA),34.366667,-119.065278,,0.01,,9040,317,164,,,,,,20011328,,, +1610,USA,en,WQIP267,,San Luis Obispo (CA),35.302861,-120.661,,0.01,,9023,319,164,,,,,,20011315,,, +1610,USA,en,WQIQ379,,Temecula (CA),33.496833,-117.127647,,0.01,,9032,315,164,,,,,,20011316,,, +1610,USA,en,WQIW679,,Wrightwood/County Transportation Yard (CA),34.361003,-117.629806,,0.01,,8973,316,164,,,,,,20011283,,, +1610,USA,en,WQIX414,,Oakview (CA),34.414917,-119.281861,,0.01,,9045,317,164,,,,,,20011284,,, +1610,USA,en,WQJA925,,Camarillo (CA),34.1625,-119.041111,,0.01,,9058,317,164,,,,,,20011290,,, +1610,ARG,,R Luz del Mundo,,Rafael Calzada (ba),-34.8,-58.366667,,0.05,,11522,230,165,,,,,,51919,,, +1610,HWA,,WPZH37,,Honolulu Oahu (HI),21.3,-157.85,,0.01,,11710,345,173,,,,,,51481,,, +1610,HWA,en,WQAG957,,Honolulu/1801 Kalakaua Avenue (HI),21.290444,-157.835583,,0.01,,11711,345,173,,,,999,,51482,,, +1611,GRC,el,R Anatolia,,Kilkis (cmc-kil),41,22.866667,,1,,1756,128,75,,,,,,3400065,,, +1611,AUS,it,8RF Rete Italia,,Darwin (NT),-12.466667,130.833333,,0.4,,13412,69,162,,,,,,37700103,,, +1611,AUS,,6GS,,Wagin (WA),-33.333333,117.083333,,0.4,,14226,98,165,,0000-2400,1234567,,,51517,,, +1611,AUS,,Gold MX,,Albany (WA),-35.016667,117.816667,,0.4,,14403,99,165,,0000-2400,1234567,9881,,51483,,, +1611,AUS,en,6UCB Vision R Network,,Margaret River/1719 Bussell Highway (WA),-33.8825,115.084444,,0.4,,14133,100,165,,0000-2400,1234567,9903,,51503,,, +1611,AUS,it,Rete Italia,,Esperance/Pattersons Road (WA),-33.791944,121.856667,,0.4,,14585,95,166,,0000-2400,1234567,,,51495,,, +1611,AUS,,4KZ,,Karumba (QLD),-17.483333,140.833333,,0.3,,14491,63,167,,0000-2400,1234567,,,51501,,, +1611,AUS,en,Hot Country,,Emerald (QLD),-23.45,148.166667,,0.4,,15474,60,169,,0000-2400,1234567,,,51494,,, +1611,AUS,,Hot Country,,Roma/201 Miscamble Street (QLD),-26.563889,148.813056,,0.4,,15791,62,170,,0000-2400,1234567,,,51509,,, +1611,AUS,,Hot Country,,Saint George/Thuraggi Road (QLD),-28.039444,148.611944,,0.4,,15908,64,170,,0000-2400,1234567,,,51510,,, +1611,AUS,,Hot Country,,Goondiwindi/Boundary Road (QLD),-28.525,150.303889,,0.4,,16054,63,171,,0000-2400,1234567,,,51496,,, +1611,AUS,,3UCB Vision R Network,,Melbourne/Hoppers Crossing (VIC),-37.816667,144.966667,,0.4,,16451,80,172,,0000-2400,1234567,,,51504,,, +1611,AUS,it,2RF Rete Italia,,Griffith/44-46 Altin Street (NSW),-34.290556,146.091667,,0.4,,16263,74,172,,0000-2400,1234567,,,51498,,, +1611,AUS,en,Traffic 1611,,St.Marys/Elizabeth Dr (NSW),-33.869756,150.727822,,0.4,,16529,69,173,,0000-2400,1234567,969,,51511,,, +1611,AUS,it,Rete Italia,,Devonport/19 Lillico Road (Quioba) (TAS),-41.181389,146.2875,,0.4,,16770,84,173,,0000-2400,1234567,,,51492,,, +1611,AUS,it,7RF Rete Italia,,Launceston (TAS),-41.45,147.166667,,0.4,,16847,84,174,,,,,,37700037,,, +1611,AUS,en,4KIK,,Croydon (QLD),-18.216667,142.233333,,0.05,,14643,62,175,,,,,,37700038,,, +1611,AUS,,3?? Old Gold,,Mildura/6 Byrne Court (VIC),-34.199083,142.172306,,0.1,,15996,78,177,,0000-2400,1234567,,,51505,,, +1611,AUS,,Willetton State Senior High School,,Willetton (WA),-32.060556,115.877778,,0.005,,14047,97,183,,,,,,37700002,,, +1611,AUS,en,Francis Greenway High School R.,,Newcastle/Lawson Avenue (NSW),-32.797778,151.661111,,0.001,,16501,66,198,,,,,,37700001,,, +1612,EGY,,SUQ Ismailia R,4,Ismailia (ism),30.470311,32.36675,,1,,3205,129,89,,????-????,1234567,,,19900505,,, +1613,BEN,,TYA Cotonou R,4,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900256,,, +1614,EGY,,SUH Al-Iskandariya R,4,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,????-????,1234567,,,19900500,,, +1614,KRE,,Chonyon Chobyong Durulwihan Pangsong,,unknown,40.45,127.5,,1,,8261,43,140,,1400-2000,1234567,,,51519,,, +1615,BEN,,TYA Cotonou R,4,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900257,,, +1615.5,GRC,,SVH Iraklion Kritis R,4,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,????-????,1234567,-1615.5,,19900603,,, +1616,DNK,,OZNRH,,Hillerd (hvs),55.938889,12.291667,,0.13,,573,40,72,,1200-1400,.....6.,,,2100010,,, +1616,DNK,,OZNRH,,Hillerd (hvs),55.938889,12.291667,,0.13,,573,40,72,,2000-2300,1234567,,,2100010,,, +1618.5,EGY,,SUK Al-Qusair R,4,Al-Qusayr=Quseir (bar),26.110889,34.280083,,1,,3714,130,94,,????-????,1234567,-1618.5,,19900506,,, +1620,GRC,el,R Ouranio Toxo,,Larissa (the-lar),39.633333,22.416667,,1,,1852,132,76,,,,,,3400006,,, +1620,USA,en,WDND,,South Bend (IN),41.636111,-86.285833,,1,,6651,300,124,,,,87,,41662,,, +1620,CUB,es,R Rebelde,,Guanabacoa/CTOM2 (ch),23.121261,-82.315258,,5,,7916,284,129,,,,9906,,31600027,,, +1620,USA,en,KOZN,,Bellevue (NE),41.189167,-96.005278,,1,,7244,306,129,,,,3,,39124,,, +1620,USA,en,WPTK490,,Syracuse/Collamer (NY),43.098056,-76.0475,,0.05,,5923,295,129,,,,,,20000072,,, +1620,VIR,en,WDHP,,Frederiksted (stc),17.724444,-64.884167,,1,,7191,267,129,,,,989,,41159,,, +1620,DOM,es,HISR R Taina/R Planeta,,San Pedro de Macors (pms),18.45,-69.3,,1,,7430,271,131,,,,,,52257,,, +1620,USA,en,WNRP,,Gulf Breeze (FL),30.436667,-87.220278,,1,,7618,292,133,,,,9955,,42503,,, +1620,CUB,es,R Rebelde,,Guantnamo/CTOM3 (gu),20.110272,-75.218842,,1,,7693,276,134,,,,,,31600023,,, +1620,USA,en,WPRI268,,Lancaster/185 Kaleva Rd (MA),42.528139,-71.694314,,0.01,,5692,292,134,,,,,,20011542,,, +1620,USA,en,WQHF306,,Plymouth/159 Camelot Road (MA),41.93,-70.646667,,0.01,,5668,291,134,,,,,,20011437,,, +1620,USA,en,WQII343,,Brockton (MA),42.096583,-71.065194,,0.01,,5683,291,134,,,,,,20011432,,, +1620,CUB,es,CMNL R Bayamo,,Bayamo (gr),20.346253,-76.597683,,1,,7767,278,135,,,,983,,31600131,,, +1620,CUB,es,R Rebelde,,Santa Clara (vc),22.416667,-79.916667,,1,,7815,281,135,,,,,,31600070,,, +1620,USA,en,WPBX388,,Windsor/360 Bloomfield Ave (CT),41.860983,-72.662583,,0.01,,5801,292,135,,,,,,20011485,,, +1620,USA,en,WQHF734,,Little Falls (NY),43.027653,-74.82765,,0.01,,5853,295,135,,,,,,20011418,,, +1620,USA,en,KYIZ,,Renton (WA),47.441111,-122.202778,,1,,7918,326,136,,,,9901,,39850,,, +1620,USA,en,WPTK490,,Liverpool (NY),43.109722,-76.266111,,0.01,,5936,296,136,,,,,,20011541,,, +1620,USA,en,WPTK490,,Syracuse (NY),43.095278,-76.166389,,0.01,,5931,295,136,,,,,,20011555,,, +1620,USA,en,WPTK490,,Syracuse (NY),43.098056,-76.0475,,0.01,,5923,295,136,,,,,,20011540,,, +1620,USA,en,WPTQ900,,Liverpool (NY),43.109722,-76.266111,,0.01,,5936,296,136,,,,,,20011536,,, +1620,USA,en,WPTQ900,,Syracuse (NY),43.095278,-76.166389,,0.01,,5931,295,136,,,,,,20011552,,, +1620,USA,en,WPTQ900,,Syracuse (NY),43.098056,-76.0475,,0.01,,5923,295,136,,,,,,20011505,,, +1620,USA,en,WPVT612,,Hudson-On-Hastings/Hillside Ave (NY),40.994331,-73.875917,,0.01,,5940,292,136,,,,,,20011405,,, +1620,USA,en,WPXX927,,Malverne (NY),40.666667,-73.670833,,0.01,,5951,292,136,,,,,,20011460,,, +1620,USA,en,WQDJ505,,La Fayette (NY),42.911003,-76.111778,,0.01,,5941,295,136,,,,,,20011423,,, +1620,USA,en,WQHF734,,Herkimer (NY),43.016472,-74.992444,,0.01,,5864,295,136,,,,,,20011443,,, +1620,USA,en,WNWN396,,North Arlington/214 Ridge Road (NJ),40.794322,-74.130972,,0.01,,5971,292,137,,,,,,20011521,,, +1620,USA,en,WNZE748,,Roosevelt Island (NY),40.764278,-73.947361,,0.01,,5962,292,137,,,,,,20011497,,, +1620,USA,en,WPUN933,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011499,,, +1620,USA,en,WPUU352,,Wilkes-Barre (PA),41.233333,-75.858333,,0.01,,6048,294,137,,,,,,20011492,,, +1620,USA,en,WPWS698,,Edison/745 New Durham Road (NJ),40.539167,-74.381333,,0.01,,6006,292,137,,,,,,20011403,,, +1620,USA,en,WPYD365,,Long Branch/Annex Building (NJ),40.310239,-73.993333,,0.01,,5998,292,137,,,,,,20011458,,, +1620,USA,en,WPYS541,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011456,,, +1620,USA,en,WQAL487,,Manasquan/Stockton Lake Park (NJ),40.127669,-74.033333,,0.01,,6014,291,137,,,,,,20011472,,, +1620,USA,en,WQBQ314,,Basking Ridge (NJ),40.666667,-74.580833,,0.01,,6009,292,137,,,,,,20011473,,, +1620,USA,en,WQFW997,,New Providence (NJ),40.6975,-74.4105,,0.01,,5996,292,137,,,,,,20011415,,, +1620,USA,en,WQFX368,,Waterloo (NY),42.965556,-76.849194,,0.01,,5982,296,137,,,,,,20011414,,, +1620,USA,en,WQFX821,,Geneva (NY),42.960969,-76.979167,,0.01,,5990,296,137,,,,,,20011413,,, +1620,USA,en,WQIQ629,,Leonardo (NJ),40.409833,-74.061014,,0.01,,5995,292,137,,,,,,20011431,,, +1620,USA,en,WPJP633,,Niagara Falls/1022 Main St. (NY),43.098389,-79.060969,,0.01,,6108,297,138,,,,,,20011498,,, +1620,USA,en,WPTU717,,Ocean City/835 Central Avenue (NJ),39.2785,-74.577692,,0.01,,6112,291,138,,,,,,20011515,,, +1620,USA,en,WQCQ524,,Cinnaminson/900 Manor Road (NJ),39.997333,-74.995444,,0.01,,6085,292,138,,,,,,20011416,,, +1620,USA,en,WQCT657,,Amhearst (NY),42.997667,-78.782528,,0.01,,6098,297,138,,,,,,20011424,,, +1620,USA,en,WQEA211,,Mount Holly (NJ),39.85,-74.633333,,0.01,,6073,292,138,,,,,,20011422,,, +1620,USA,,WTAW,,College Station (TX),30.620833,-96.254444,,1,,8159,299,139,,,,9989,,43106,,, +1620,USA,en,WPXI241,,Middletown/513 Airport Drive (PA),40.197222,-76.763889,,0.01,,6181,293,139,,,,,,20011481,,, +1620,USA,en,WQCQ947,,Arbutus (MD),39.261019,-76.711025,,0.01,,6248,292,139,,,,,,20011453,,, +1620,USA,en,WQHP749,,Baltimore (MD),39.312639,-76.544297,,0.01,,6234,292,139,,,,,,20011445,,, +1620,USA,en,WQHP749,,Rosedale (MD),39.360967,-76.483167,,0.01,,6226,292,139,,,,,,20011434,,, +1620,USA,en,WQHP749,,White Marsh (MD),39.409944,-76.413944,,0.01,,6218,292,139,,,,,,20011433,,, +1620,USA,en,WPMT969,,Aldie (VA),38.977653,-77.6225,,0.01,,6327,293,140,,,,,,20011534,,, +1620,USA,en,WPMT969,,Aquia Harbor (VA),38.514556,-77.363861,,0.01,,6346,292,140,,,,,,20011533,,, +1620,USA,en,WPMT969,,Arlington (VA),38.883333,-77.083333,,0.01,,6301,292,140,,,,,,20011549,,, +1620,USA,en,WPMT969,,Garrisonville (VA),38.4625,-77.406944,,0.01,,6353,292,140,,,,,,20011551,,, +1620,USA,en,WPMU747,,Alexandria (VA),38.796333,-77.061003,,0.01,,6306,292,140,,,,,,20011502,,, +1620,USA,en,WPMU747,,Arlington (VA),38.883333,-77.083333,,0.01,,6301,292,140,,,,,,20011538,,, +1620,USA,en,WPMU747,,Franconia (VA),38.796167,-77.139167,,0.01,,6311,292,140,,,,,,20011501,,, +1620,USA,en,WPMU747,,Lorton (VA),38.679333,-77.227689,,0.01,,6325,292,140,,,,,,20011556,,, +1620,USA,en,WPQK609,,Harrisburg (PA),40.398667,-79.577639,,0.01,,6341,295,140,,,,,,20011509,,, +1620,USA,en,WPSG992,,Cranberry (PA),40.693531,-80.096389,,0.01,,6351,296,140,,,,,,20011487,,, +1620,USA,en,WPXI292,,Port Huron (MI),42.983333,-82.483333,,0.01,,6322,299,140,,,,,,20011462,,, +1620,USA,en,WPYM226,,Saegertown/Park and Ride (PA),41.716333,-80.200028,,0.01,,6280,297,140,,,,,,20011457,,, +1620,USA,en,WQAV955,,Annapolis (MD),38.994319,-76.563583,,0.01,,6259,292,140,,,,,,20011478,,, +1620,USA,en,WPMD582,,Kent/217 E Summit Street (OH),41.15,-81.355833,,0.01,,6393,297,141,,,,,,20011523,,, +1620,USA,en,WPMD582,,Kent/319 S Water St. (OH),41.160969,-81.360992,,0.01,,6393,297,141,,,,,,20011484,,, +1620,USA,en,WPMT969,,Leesburg (VA),38.110992,-77.545806,,0.01,,6389,292,141,,,,,,20011537,,, +1620,USA,en,WPMT969,,Markham (VA),38.910989,-78.010214,,0.01,,6357,293,141,,,,,,20011553,,, +1620,USA,en,WPMT969,,Purcellville (VA),38.14875,-77.692222,,0.01,,6395,292,141,,,,,,20011535,,, +1620,USA,en,WPMU382,,Pittsburgh (PA),40.444306,-80.012833,,0.01,,6365,295,141,,,,,,20011529,,, +1620,USA,en,WPQE514,,Ashland (VA),37.759028,-77.459417,,0.01,,6410,291,141,,,,,,20011554,,, +1620,USA,en,WPQE514,,Bottoms Bridge (VA),37.514028,-77.194367,,0.01,,6412,291,141,,,,,,20011503,,, +1620,USA,en,WPQE514,,Chester (VA),37.360994,-77.377694,,0.01,,6436,291,141,,,,,,20011539,,, +1620,USA,en,WPQE514,,Oilville (VA),37.712083,-77.781389,,0.01,,6434,292,141,,,,,,20011530,,, +1620,USA,en,WPRV887,,Manteo/410 Ananias Dare St. (NC),35.909333,-75.677675,,0.01,,6439,289,141,,,,,,20011490,,, +1620,USA,en,WQBQ687,,Wayne/35200 Forest Avenue (MI),42.2775,-83.393522,,0.01,,6430,299,141,,,,,,20011482,,, +1620,USA,en,WPJM404,,Churchville (VA),38.226528,-79.162806,,0.01,,6482,293,142,,,,,,20011495,,, +1620,USA,en,WPJM404,,Mint Spring (VA),38.044331,-79.126417,,0.01,,6494,293,142,,,,,,20011504,,, +1620,USA,en,WPJM404,,Staunton/1250 Richmond Rd (VA),38.127667,-79.048083,,0.01,,6482,293,142,,,,,,20011493,,, +1620,USA,en,WPJM404,,Waynesboro (VA),38.047361,-78.910964,,0.01,,6480,293,142,,,,,,20011483,,, +1620,USA,en,WPJM404,,Weyers Cave (VA),38.278194,-78.944294,,0.01,,6464,293,142,,,,,,20011491,,, +1620,USA,en,WPKM208,,Roanoke Rapids (NC),36.544333,-77.57775,,0.01,,6512,291,142,,,,,,20011544,,, +1620,USA,en,WPQE514,,Carson (VA),37.064306,-77.377697,,0.01,,6459,291,142,,,,,,20011543,,, +1620,USA,en,WPSF938,,Surf City/100 Deer Run Road (NC),36.448611,-77.576889,,0.01,,6519,290,142,,,,,,20011489,,, +1620,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20011455,,, +1620,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20011474,,, +1620,USA,en,WQAP201,,Ashland (OH),40.866667,-82.316667,,0.01,,6474,297,142,,,,,,20011480,,, +1620,ARG,es,LU9 Universo FM/LRI309 AM 1620,,Mar del Plata (ba),-38,-57.55,,10,,11772,227,143,,,,988,,51923,,, +1620,USA,,KSMH,,Auburn (West Sacramento) (CA),38.588056,-121.468056,,1,,8741,321,143,,,,9988,,39388,,, +1620,USA,en,WPKS942,,Milwaukee (WI),43.033333,-87.9,,0.01,,6636,302,143,,,,,,20011547,,, +1620,USA,en,WPSK550,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20011514,,, +1620,USA,en,WPZQ722,,Christiansburg (VA),37.096944,-80.475556,,0.01,,6652,293,143,,,,,,20011463,,, +1620,USA,en,WPZQ722,,Christiansburg (VA),37.174444,-80.310147,,0.01,,6636,293,143,,,,,,20011452,,, +1620,USA,en,WPZQ722,,Roanoke (VA),37.499444,-79.748611,,0.01,,6575,293,143,,,,,,20011449,,, +1620,USA,en,WPZQ722,,Salem (VA),37.293889,-80.094444,,0.01,,6613,293,143,,,,,,20011451,,, +1620,USA,en,WPZQ722,,Salem (VA),37.361667,-79.958333,,0.01,,6599,293,143,,,,,,20011450,,, +1620,USA,en,WNGE271,,Dayton (OH),39.777633,-84.211019,,0.01,,6673,297,144,,,,,,20011402,,, +1620,USA,en,WNWZ910,,Bensenville/100 N Church Road (IL),41.960967,-87.9495,,0.01,,6723,302,144,,,,,,20011520,,, +1620,USA,en,WNYB218,,Glen Ellyn/30 S Lambert St. (IL),41.850028,-88.076444,,0.01,,6740,302,144,,,,,,20011516,,, +1620,USA,en,WPKM208,,Dobson (NC),36.482083,-80.760967,,0.01,,6719,293,144,,,,,,20011557,,, +1620,USA,en,WPZK948,,Chicago/2059 South Canal St. (IL),41.854167,-87.643572,,0.01,,6714,301,144,,,,,,20011446,,, +1620,USA,en,WPZQ722,,Pulaski (VA),36.993481,-80.821944,,0.01,,6682,293,144,,,,,,20011454,,, +1620,USA,en,WQBR256,,Fox Lake (IL),42.448333,-88.111667,,0.01,,6694,302,144,,,,,,20011468,,, +1620,USA,en,WQBR256,,Grays Lake (IL),42.379361,-88.063528,,0.01,,6697,302,144,,,,,,20011467,,, +1620,USA,en,WQBR256,,Lake Zurich (IL),42.194294,-88.110967,,0.01,,6714,302,144,,,,,,20011466,,, +1620,USA,en,WQBR256,,Libertyville (IL),42.310833,-87.905,,0.01,,6693,302,144,,,,,,20011470,,, +1620,USA,en,WQBR256,,Lincolnshire (IL),42.199722,-87.888889,,0.01,,6701,302,144,,,,,,20011469,,, +1620,USA,en,WQBR256,,Lindenhurst (IL),42.465,-87.964167,,0.01,,6684,302,144,,,,,,20011471,,, +1620,J,ja,Traffic Information,,Tokyo (kan-tok),35.683333,139.75,,1,,9254,37,145,,,,,,51542,,, +1620,USA,en,WPTN887,,Sparta (KY),38.710972,-84.912972,,0.01,,6800,297,145,,,,,,20011532,,, +1620,USA,en,WQHK635,,Lawrenceburg (KY),38.02765,-84.910997,,0.01,,6854,297,145,,,,,,20011442,,, +1620,USA,en,WQHP685,,Kingsport (TN),36.461022,-82.527681,,0.01,,6831,294,145,,,,,,20011436,,, +1620,USA,en,WPNS435,,Anchorage/11318 Ridge Road (KY),38.265361,-85.543583,,0.01,,6874,297,146,,,,,,20011524,,, +1620,USA,en,WQAQ377,,Lancaster/206 West Arch Street (SC),34.727625,-80.777656,,0.01,,6859,291,146,,,,,,20011479,,, +1620,USA,en,WQBJ215,,Knoxville (TN),36.013778,-83.86175,,0.01,,6950,294,146,,,,,,20011475,,, +1620,USA,en,WQHP685,,Caryville (TN),36.245972,-84.177833,,0.01,,6951,295,146,,,,,,20011439,,, +1620,USA,en,WQHP685,,Dandridge (TN),36.044314,-83.444331,,0.01,,6922,294,146,,,,,,20011427,,, +1620,USA,en,WQHP685,,Williamsburg (TN),36.627633,-84.110972,,0.01,,6917,295,146,,,,,,20011438,,, +1620,USA,en,WPWH450,,Bismarck (ND),46.8,-100.783333,,0.01,,7026,313,147,,,,,,20011404,,, +1620,USA,en,WPZW904,,Sylva (NC),35.366667,-83.233333,,0.01,,6963,293,147,,,,,,20011447,,, +1620,USA,en,WQBJ215,,Knoxville (TN),35.910778,-84.127656,,0.01,,6975,294,147,,,,,,20011477,,, +1620,USA,en,WQBJ215,,Knoxville (TN),35.97765,-83.978778,,0.01,,6960,294,147,,,,,,20011476,,, +1620,USA,en,WQCL656,,Estherville (IA),43.383333,-94.683333,,0.01,,6989,307,147,,,,,,20011444,,, +1620,USA,en,WQHP685,,Harriman (TN),35.893917,-84.545278,,0.01,,7002,295,147,,,,,,20011441,,, +1620,USA,en,WQHP685,,Harriman (TN),35.894528,-84.545278,,0.01,,7002,295,147,,,,,,20011440,,, +1620,USA,en,WPED202,,Cleveland (TN),35.258944,-84.832806,,0.01,,7072,294,148,,,,,,20011548,,, +1620,USA,en,WPED202,,Riceville (TN),35.344367,-84.761011,,0.01,,7060,294,148,,,,,,20011545,,, +1620,USA,en,WPSQ852,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011527,,, +1620,USA,en,WPWA751,,Carbondale/200 South Illinois Avenue (IL),37.725639,-89.227683,,0.01,,7139,299,148,,,,,,20011406,,, +1620,USA,en,WPWK972,,Snellville (GA),33.860972,-83.995611,,0.01,,7132,293,148,,,,,,20011401,,, +1620,USA,en,WPWK972,,Stone Mountain (GA),33.827681,-84.160986,,0.01,,7146,293,148,,,,,,20011400,,, +1620,USA,en,WQBJ215,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011464,,, +1620,USA,en,WQIQ778,,Snellville (GA),33.860972,-83.995611,,0.01,,7132,293,148,,,,,,20011428,,, +1620,USA,en,WQIQ778,,Stone Mountain (GA),33.827681,-84.160986,,0.01,,7146,293,148,,,,,,20011429,,, +1620,USA,en,WPYC491,,Rome/5 Government Plaza (GA),34.2575,-85.176881,,0.01,,7174,294,149,,,,,,20011459,,, +1620,USA,en,WQCI868,,Fort Pierre/20439 Marina Loop Road (SD),44.444319,-100.397833,,0.01,,7205,311,149,,,,,,20011425,,, +1620,USA,en,WPZS817,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20011448,,, +1620,ARG,,R Italia,,Villa Martelli (ba),-34.6,-58.45,,1,,11508,230,152,,,,3,,2069,,, +1620,ARG,es,R Sentir,,Merlo (ba),-34.666667,-58.733333,,1,,11529,230,152,,,,,,33000017,,, +1620,USA,en,WPKT270,,Miami (FL),25.766667,-80.2,,0.01,,7553,284,152,,,,,,20011546,,, +1620,USA,en,WQCA305,,Hialeah Gardens (FL),25.894317,-80.360989,,0.01,,7553,284,152,,,,,,20011465,,, +1620,USA,en,WQFL341,,Plantation/1050 W Sunrise Blvd (FL),26.145861,-80.297056,,0.01,,7528,284,152,,,,,,20011419,,, +1620,USA,en,WQFL341,,Plantation/550 NW 65th Avenue (FL),26.128611,-80.244344,,0.01,,7526,284,152,,,,,,20011420,,, +1620,USA,en,WQFL416,,Delray Beach/501 W Atlantic Ave (FL),26.4625,-80.079167,,0.01,,7487,284,152,,,,,,20011409,,, +1620,USA,en,WQFQ236,,Hallandale Beach/215 NW 6th Ave (FL),25.994306,-80.160972,,0.01,,7532,284,152,,,,,,20011417,,, +1620,USA,en,WQIQ635,,Wellington (FL),26.623333,-80.231667,,0.01,,7484,285,152,,,,,,20011430,,, +1620,USA,en,WQFW220,,Coral Gables (FL),25.711014,-80.259889,,0.01,,7562,284,153,,,,,,20011426,,, +1620,ARG,,Cadena Vida,,,-38.5,-63,,1,,12098,231,154,,,,6,,2267,,, +1620,USA,en,WPQH923,,Plaquemine (LA),30.277417,-91.260986,,0.01,,7884,295,156,,,,,,20011500,,, +1620,USA,en,WPMV714,,Lewisville/188 N Valley Parkway (TX),33.060983,-97.005,,0.01,,7992,301,157,,,,,,20011496,,, +1620,USA,en,WPSH203,,Houston/11602 Aerospace Drive (TX),29.611022,-95.178,,0.01,,8182,297,159,,,,,,20011525,,, +1620,USA,en,WPMV720,,Lakeway (TX),30.361014,-97.999722,,0.01,,8285,300,160,,,,,,20011488,,, +1620,USA,en,WPXK227,,South Padre Island (TX),26.094356,-97.163806,,0.01,,8610,297,162,,,,,,20011461,,, +1620,USA,en,WNZA955,,Pebble Beach (CA),36.594364,-121.944353,,0.01,,8955,320,163,,,,,,20011512,,, +1620,USA,en,WNZA955,,Pebble Beach/Forest Lake Reservoir (CA),36.593139,-121.943361,,0.01,,8955,320,163,,,,,,20011508,,, +1620,USA,en,WPFE596,,Milpitas (CA),37.449667,-121.909944,,0.01,,8870,321,163,,,,27,,51946,,, +1620,USA,en,WPTV287,,Big Bear/477 Summit Blvd. (CA),34.244028,-116.894356,,0.01,,8949,316,163,,,,,,20011517,,, +1620,USA,en,WQEL573,,Phoenix (AZ),34.25,-111.666667,,0.01,,8691,312,163,,,,,,20011421,,, +1620,AUS,,R Two,,Perth/Mundaring (WA),-31.933333,115.833333,,0.4,,14034,97,164,,0000-2400,1234567,955,,51536,,, +1620,B,,ZZ,b,Petrobras XIV Platform (SC),-26.770833,-46.791667,,0.025,,10180,226,164,,,,,,85898,,, +1620,J,,Traffic Information,,Nationwide,34.5,134,,0.01,,9124,41,164,,0000-2400,1234567,,,51541,,, +1620,USA,en,KNNN868,,Diamond Bar (CA),33.999778,-117.844353,,0.01,,9018,316,164,,,,,,20011407,,, +1620,USA,en,KNNN868,,Santa Ana (CA),33.725583,-117.8443,,0.01,,9044,316,164,,,,,,20011408,,, +1620,USA,en,WNSB415,,San Ysidro (CA),32.577683,-117.066361,,0.01,,9116,315,164,,,,,,20011531,,, +1620,USA,en,WNZF285,,Fullerton (CA),33.881139,-117.909222,,0.01,,9032,316,164,,,,,,20011506,,, +1620,USA,en,WPGG527,,Lakewood (CA),33.842528,-118.127633,,0.01,,9046,316,164,,,,,,20011507,,, +1620,USA,en,WPGR283,,Chatsworth (CA),34.277222,-118.610978,,0.01,,9027,317,164,,,,,,20011513,,, +1620,USA,en,WPGR283,,Duarte (CA),34.143531,-117.965611,,0.01,,9010,316,164,,,,,,20011511,,, +1620,USA,en,WPGR283,,Los Angeles (CA),34.033056,-118.360975,,0.01,,9039,316,164,,,,,,20011510,,, +1620,USA,en,WPIH303,,Burbank (CA),34.193572,-118.345083,,0.01,,9023,317,164,,,,,,20011494,,, +1620,USA,en,WPKE794,,Torrance/20500 Madrona Ave (CA),33.845028,-118.34425,,0.01,,9056,316,164,,,,,,20011528,,, +1620,USA,en,WPMR237,,Morro Bay/170 Atascadero Rd (CA),35.379694,-120.859333,,0.01,,9024,319,164,,,,,,20011550,,, +1620,USA,en,WPMW407,,San Juan Capistrano (CA),33.527631,-117.666444,,0.01,,9054,316,164,,,,,,20011486,,, +1620,USA,en,WPQY890,,Oceano/928 Pacific Blvd (CA),35.112194,-120.626278,,0.01,,9040,319,164,,,,,,20011522,,, +1620,USA,en,WPTD929,,Agoura Hills (CA),34.111111,-118.804722,,0.01,,9052,317,164,,,,,,20011519,,, +1620,USA,en,WPTD929,,Malibu (CA),34.014167,-118.8125,,0.01,,9062,317,164,,,,,,20011518,,, +1620,USA,en,WQGT276,,Fillmore/711 Sespe Place (CA),34.333333,-118.926881,,0.01,,9037,317,164,,,,,,20011412,,, +1620,USA,en,WQHB985,,Ventura (CA),34.259889,-119.222778,,0.01,,9058,317,164,,,,,,20011410,,, +1620,USA,en,WQHB985,,Ventura (CA),34.2655,-119.292222,,0.01,,9060,317,164,,,,,,20011411,,, +1620,USA,en,WQHB985,,Ventura (CA),34.327675,-119.156944,,0.01,,9048,317,164,,,,,,20011435,,, +1620,AUS,,4KZ,,Taylors Beach (QLD),-18.624167,146.326111,,0.5,,14924,58,166,,,,,,37700035,,, +1620,AUS,it,Rete Italia,,Rockhampton (QLD),-23.583333,150.85,,1,,15643,57,166,,,,,,37700033,,, +1620,AUS,it,Rete Italia,,Townsville (QLD),-19.25,146.8,,0.4,,15009,58,167,,,,,,37700034,,, +1620,AUS,it,Rete Italia,,Gladstone/2-38 Lord Street (QLD),-23.843611,151.246667,,0.4,,15690,57,170,,0000-2400,1234567,,,51528,,, +1620,AUS,it,Rete Italia,,Sunshine Coast (Caloundra) (QLD),-26.8,153.133333,,0.4,,16068,57,171,,0000-2400,1234567,,,51537,,, +1620,AUS,it,Rete Italia,,Toowoomba (QLD),-27.6,151.916667,,0.4,,16069,60,171,,0000-2400,1234567,8,,51539,,, +1620,AUS,,3GB R Two,,Melbourne/Bayswater (VIC),-37.816667,144.966667,,0.4,,16451,80,172,,0000-2400,1234567,987,,51531,,, +1620,AUS,ar,2MORO Sawt el Ghad,,Sydney/Homebush Bay (NSW),-33.839586,151.062786,,0.4,,16548,68,173,,0000-2400,1234567,997,,51538,,, +1621.5,NOR,,LGT Tjme R,2,Tjme (ve),59.116667,10.4,,1,,818,16,65,,????-????,1234567,-1621.5,,19901152,,, +1621.5,NOR,,LGP Bod R,2,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,????-????,1234567,-1621.5,,19901140,,, +1621.5,NOR,,National Norwegian Channel,2,-,68.5,11.05,,1,,1839,6,75,,????-????,1234567,-1621.5,,19901156,,, +1621.5,NOR,,LGV Vard R,2,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,????-????,1234567,-1621.5,,19901154,,, +1621.5,NOR,,LGS Bod R,2,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,????-????,1234567,-1621.5,,19901148,,, +1624.5,DNK,,OXZ Lyngby R,2,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,????-????,1234567,-1624.5,,19900488,,, +1624.5,DNK,,OXZ Lyngby R,2,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,????-????,1234567,-1624.5,,2100006,,, +1624.5,FRO,,OXJ Trshavn R,2,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,????-????,1234567,-1624.5,,19900537,,, +1625,GRC,el,R Nikolas Dynamitis,,Tyrnavos (the-lar),39.733333,22.283333,,1,,1836,132,75,,,,,,3400018,,, +1626,GRC,el,R Delta Dimitris,,unknown,38.4,24.65,,1,,2077,130,78,,,,,,3400008,,, +1627.5,HOL,,Den Helder SAR,2,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,-1627.5,,19900637,,, +1629,J,,Traffic Information,,Nationwide,34.5,134,,0.01,,9124,41,164,,0000-2400,1234567,,,51561,,, +1629,J,ja,Michino-Eki R,,Shirakawa (chu-gif),35.583333,137.183333,,0.01,,9157,38,164,,0000-2400,1234567,,,51563,,, +1629,AUS,it,Rete Italia,,Albany/Ulster Road (WA),-34.995833,117.906667,,0.4,,14407,99,166,,0000-2400,1234567,97,,51544,,, +1629,J,ja,Suzuka Information R,,Suzuka (kns-mie),34.883333,136.583333,,0.005,,9200,39,167,,,,,,51564,,, +1629,AUS,it,Rete Italia,,Mackay/Cremorne (113 Palm Street) (QLD),-21.135556,149.19,,0.4,,15322,57,169,,0000-2400,1234567,,,51555,,, +1629,AUS,it,Rete Italia,,Adelaide/523 South Rd (SA),-34.863333,138.568056,,0.4,,15803,82,170,,0000-2400,1234567,1,,51543,,, +1629,J,,Parking Information,,Numazu (chu-shi),35.1,138.866667,,0.003,,9276,37,170,,,,,,51562,,, +1629,AUS,en,Hot Country,,Dalby (QLD),-27.15,151.3,,0.4,,15992,60,171,,0000-2400,1234567,9567,,51552,,, +1629,AUS,it,Rete Italia,,Compton (Mt Gambier) (SA),-37.781111,140.698889,,0.4,,16160,84,171,,0000-2400,1234567,,,51551,,, +1629,AUS,en,Traffic 1611,,Dubbo (Brocklehurst) (NSW),-32.266667,148.666667,,0.4,,16268,69,172,,0000-2400,1234567,,,51553,,, +1629,AUS,en,Vision R Network,,Bathurst (NSW),-33.366667,149.533333,,0.4,,16413,69,172,,0000-2400,1234567,,,51546,,, +1629,AUS,it,Rete Italia,,Shepparton/Central Avenue (VIC),-36.369444,145.495,,0.4,,16381,78,172,,0000-2400,1234567,35,,51559,,, +1629,AUS,it,Rete Italia,,Canberra/Murrumbateman (ACT),-35.216667,149.116667,,0.4,,16532,72,173,,0000-2400,1234567,,,51550,,, +1629,AUS,,Newcastle Hospital R,,Newcastle/St Josephs Home (NSW),-32.859444,151.701389,,0.1,,16508,66,178,,0000-2400,1234567,,,51557,,, +1630,GRC,el,R Asteras,,Kilkis (cmc-kil),41,22.866667,,1,,1756,128,75,,,,,,3400007,,, +1630,CAN,,CHYW,,Ottawa (ON),45.320833,-75.665833,,0.099,,5741,297,124,,,,9908,,20100026,,, +1630,USA,en,KCJJ,s,Iowa City (IA),41.600833,-91.501111,,1,,6957,303,127,,,,70,,38162,,, +1630,USA,en,WRDW,,Augusta (GA),33.516667,-82.01,,1,,7035,291,127,,,,13,,31733,,, +1630,USA,,WQEU865,,Toledo/I-280 (OH),41.688333,-83.517778,,0.1,,6483,299,132,,,,,,20000075,,, +1630,USA,en,WPKL358,,Johnston (RI),41.843522,-71.565556,,0.01,,5732,292,134,,,,,,20011620,,, +1630,USA,en,WPKL358,,Providence (RI),41.944325,-71.462278,,0.01,,5719,292,134,,,,,,20011622,,, +1630,USA,en,WPKL358,,Warwick (RI),41.67765,-71.498389,,0.01,,5740,291,134,,,,,,20011621,,, +1630,USA,en,WPQB669,,North Kingston (RI),41.582833,-71.510969,,0.01,,5748,291,134,,,,,,20011665,,, +1630,USA,en,WPQB669,,Providence (RI),41.810992,-71.410969,,0.01,,5725,291,134,,,,,,20011687,,, +1630,USA,en,WPQB669,,Providence (RI),41.816667,-71.416667,,0.01,,5725,291,134,,,,,,20011694,,, +1630,USA,en,WPTJ441,,South Kingston (RI),41.494167,-71.456111,,0.01,,5751,291,134,,,,,,20011585,,, +1630,USA,en,WQAM781,,Natick/22 East Central Ave (MA),42.294308,-71.3445,,0.01,,5686,292,134,,,,,,20011560,,, +1630,USA,en,WQCP849,,Newport (RI),41.511,-71.315361,,0.01,,5740,291,134,,,,,,20011647,,, +1630,USA,en,WQFL674,,Tiverton (RI),41.644339,-71.211031,,0.01,,5724,291,134,,,,,,20011642,,, +1630,USA,en,WQHJ540,,Sharon/215 South Main Street (MA),42.114167,-71.186944,,0.01,,5689,292,134,,,,,,20011584,,, +1630,USA,es,KRND,,Cheyenne/Fox Farm (WY),41.122778,-104.801944,,1,,7718,311,134,,,,991,,38764,,, +1630,USA,en,WPQB669,,Westerly (RI),41.477692,-71.811025,,0.01,,5774,291,135,,,,,,20011702,,, +1630,USA,en,WPTJ441,,Richmond (RI),41.510197,-71.705556,,0.01,,5765,291,135,,,,,,20011631,,, +1630,USA,en,WPWL406,,Narragansett (RI),41.394319,-71.494328,,0.01,,5760,291,135,,,,,,20011666,,, +1630,USA,en,WPYY798,,West Hartford/567 Fern Street (CT),41.766278,-72.761003,,0.01,,5814,292,135,,,,,,20011705,,, +1630,USA,en,WQFI351,,Manchester/75 Center Street (CT),41.775667,-72.527647,,0.01,,5798,292,135,,,,,,20011595,,, +1630,USA,en,KNNV688,,Stony Brook (NY),40.910989,-73.127653,,0.01,,5899,292,136,,,,,,20011661,,, +1630,USA,en,WPMI899,,Hempstead (NY),40.747611,-73.594333,,0.01,,5940,292,136,,,,,,20011575,,, +1630,USA,en,WQAW502,,White Plains/198 Central Avenue (NY),41.0375,-73.779167,,0.01,,5931,292,136,,,,,,20011563,,, +1630,USA,en,WQGF721,,Shinnecock Hills (NY),40.894367,-72.494339,,0.01,,5860,291,136,,,,,,20011606,,, +1630,USA,,KKGM,,Fort Worth (TX),32.81,-97.123333,,1,,8021,301,137,,,,9993,,38718,,, +1630,USA,en,KNAA585,,Jamaica (NJ),40.659,-73.778194,,0.01,,5959,292,137,,,,,,20011689,,, +1630,USA,en,WPMQ427,,Palmer Heights (PA),40.6815,-75.294336,,0.01,,6053,293,137,,,,,,20011568,,, +1630,USA,en,WPQJ970,,North Plainfield/252 Steiner Pl (NJ),40.627656,-74.431806,,0.01,,6002,292,137,,,,,,20011676,,, +1630,USA,en,WPUS415,,Rumson/51 Center St. (NJ),40.371389,-73.996667,,0.01,,5994,292,137,,,,,,20011664,,, +1630,USA,en,WPXA217,,Fort Lee/320 Main Street (NJ),40.860214,-73.973333,,0.01,,5956,292,137,,,,,,20011686,,, +1630,USA,en,WPYJ708,,Clifton (NJ),40.877653,-74.16125,,0.01,,5967,292,137,,,,,,20011692,,, +1630,USA,en,WQCT720,,Staten Island (NY),40.531944,-74.223611,,0.01,,5996,292,137,,,,,,20011592,,, +1630,USA,en,WQCT720,,Staten Island (NY),40.611031,-74.077,,0.01,,5981,292,137,,,,,,20011643,,, +1630,USA,en,WQCT720,,Staten Island (NY),40.613056,-74.153611,,0.01,,5986,292,137,,,,,,20011617,,, +1630,USA,en,WQCV630,,Newark (NJ),40.733333,-74.166667,,0.01,,5978,292,137,,,,,,20011594,,, +1630,USA,en,WQFG844,,Point Pleasant Beach (NJ),40.093539,-74.049167,,0.01,,6017,291,137,,,,,,20011600,,, +1630,USA,en,WQFI274,,Bedminster (NJ),40.643,-74.644336,,0.01,,6015,292,137,,,,,,20011593,,, +1630,USA,en,WQFU348,,Staten Island (NY),40.531944,-74.223611,,0.01,,5996,292,137,,,,,,20011649,,, +1630,USA,en,WQFU348,,Staten Island (NY),40.613056,-74.153611,,0.01,,5986,292,137,,,,,,20011632,,, +1630,USA,en,WQFU348,,Staten Island/I-278 at Hyland Blvd (NY),40.611031,-74.077,,0.01,,5981,292,137,,,,,,20011634,,, +1630,USA,en,WPCD802,,Philadelphia/Int.Airport (PA),39.876778,-75.249639,,0.01,,6110,292,138,,,,,,20011672,,, +1630,USA,en,WPMQ427,,Allentown (PA),40.626831,-75.510983,,0.01,,6071,293,138,,,,,,20011570,,, +1630,USA,en,WPMQ427,,Center Valley (PA),40.560986,-75.429361,,0.01,,6070,293,138,,,,,,20011567,,, +1630,USA,en,WPMQ427,,Fogelsville (PA),40.580639,-75.626306,,0.01,,6081,293,138,,,,,,20011588,,, +1630,USA,en,WPVN712,,Bethlehem (PA),40.649917,-75.410528,,0.01,,6062,293,138,,,,,,20011660,,, +1630,USA,en,WPVT502,,Avalon/3088 Dune Drive (NJ),39.095833,-74.724722,,0.01,,6135,291,138,,,,,,20011678,,, +1630,USA,en,WNQA283,,Salisbury (MD),38.37765,-75.594342,,0.01,,6244,291,139,,,,,,20011711,,, +1630,USA,en,WNQA286,,Severna Park (MD),39.014556,-76.408861,,0.01,,6248,292,139,,,,,,20011704,,, +1630,USA,en,WNQA288,,Denton (MD),38.842611,-75.798,,0.01,,6222,291,139,,,,,,20011708,,, +1630,USA,en,WNQA289,,Queenstown (MD),38.982333,-76.160222,,0.01,,6235,292,139,,,,,,20011709,,, +1630,USA,en,WNQA290,,Easton (MD),38.797056,-76.0605,,0.01,,6242,291,139,,,,,,20011673,,, +1630,USA,en,WNVP742,,Baltimore (MD),39.497056,-76.677694,,0.01,,6228,293,139,,,,,,20011659,,, +1630,USA,en,WNVY509,,Bradshaw (MD),39.427056,-76.394364,,0.01,,6216,292,139,,,,,,20011681,,, +1630,USA,en,WPCT627,,Baltimore (MD),39.313722,-76.544367,,0.01,,6234,292,139,,,,,,20011710,,, +1630,USA,en,WPCT627,,Baltimore (MD),39.347333,-76.746083,,0.01,,6244,292,139,,,,,,20011693,,, +1630,USA,en,WPEP712,,Elkton (MD),39.644322,-75.811022,,0.01,,6163,292,139,,,,,,20011558,,, +1630,USA,en,WPEW742,,Reisterstown (MD),39.477656,-76.844367,,0.01,,6240,293,139,,,,,,20011574,,, +1630,USA,en,WPFJ882,,Ocean City (MD),38.394322,-75.111008,,0.01,,6212,291,139,,,,,,20011590,,, +1630,USA,en,WPMQ427,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011569,,, +1630,USA,en,WPMQ427,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011571,,, +1630,USA,en,WQHB708,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011562,,, +1630,USA,en,WQIW678,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011688,,, +1630,USA,en,KNIC273,,Rockville (MD),39.110389,-77.194361,,0.01,,6290,292,140,,,,,,20011698,,, +1630,USA,en,WNQI569,,Berwyn (MD),39.061778,-76.927694,,0.01,,6277,292,140,,,,,,20011671,,, +1630,USA,en,WNSL337,,Hancock (MD),39.115111,-77.410206,,0.01,,6304,293,140,,,,,,20011690,,, +1630,USA,en,WNVY507,,Rockville (MD),39.016222,-77.127694,,0.01,,6293,292,140,,,,,,20011683,,, +1630,USA,en,WNVY508,,Largo (MD),38.92765,-76.861028,,0.01,,6283,292,140,,,,,,20011669,,, +1630,USA,en,WNVY510,,Frederick (MD),39.410989,-77.433583,,0.01,,6283,293,140,,,,,,20011667,,, +1630,USA,en,WPEW741,,Cooksville (MD),39.327653,-76.978861,,0.01,,6260,293,140,,,,,,20011589,,, +1630,USA,en,WPGS990,,Bowie (MD),38.960389,-76.694364,,0.01,,6270,292,140,,,,,,20011638,,, +1630,USA,en,WPHG707,,Oxon Hill (MD),38.810983,-76.998861,,0.01,,6301,292,140,,,,,,20011573,,, +1630,USA,en,WPIG897,,Gambrills (MD),39.0665,-76.649972,,0.01,,6259,292,140,,,,,,20011628,,, +1630,USA,en,WPMI334,,Williamsport (MD),39.410944,-77.543611,,0.01,,6290,293,140,,,,,,20011625,,, +1630,USA,en,WPMI335,,Piney Grove (MD),39.700083,-78.380278,,0.01,,6320,294,140,,,,,,20011635,,, +1630,USA,en,WPMI336,,Cumberland (MD),39.660981,-78.748083,,0.01,,6346,294,140,,,,,,20011636,,, +1630,USA,en,WPMI340,,Dorsey (MD),39.195944,-76.764417,,0.01,,6257,292,140,,,,,,20011637,,, +1630,USA,en,WPMI342,,Myersville (MD),39.544317,-77.605278,,0.01,,6283,293,140,,,,,,20011639,,, +1630,USA,en,WPPU761,,Altoona (PA),40.444806,-78.444294,,0.01,,6268,294,140,,,,,,20011618,,, +1630,USA,en,WPPU761,,Johnstown (PA),40.2805,-78.848333,,0.01,,6305,295,140,,,,,,20011616,,, +1630,USA,en,WQHK899,,Annandale (VA),38.844292,-77.244294,,0.01,,6314,292,140,,,,,,20011701,,, +1630,USA,en,WQHK899,,City of Alexandria (VA),38.844317,-77.113917,,0.01,,6305,292,140,,,,,,20011703,,, +1630,USA,en,WQHK899,,Manassas (VA),38.8095,-77.527636,,0.01,,6334,292,140,,,,,,20011706,,, +1630,USA,en,WQHK899,,Springfield (VA),38.762889,-77.177675,,0.01,,6316,292,140,,,,,,20011696,,, +1630,USA,en,WQHK899,,Sterling (VA),39.029333,-77.394333,,0.01,,6309,293,140,,,,,,20011700,,, +1630,USA,en,WQHK899,,Woodbridge (VA),38.616444,-77.293083,,0.01,,6334,292,140,,,,,,20011695,,, +1630,USA,en,WPQF661,,Glenfield (PA),40.527639,-80.131444,,0.01,,6366,296,141,,,,,,20011670,,, +1630,USA,en,WPQF661,,Wexford (PA),40.627689,-80.096361,,0.01,,6356,296,141,,,,,,20011712,,, +1630,USA,en,WPQG491,,Amwell township (PA),40.182583,-80.229222,,0.01,,6398,295,141,,,,,,20011572,,, +1630,USA,en,WPZV583,,Beachwood/Family Aquatic Center (OH),41.494328,-81.511003,,0.01,,6377,297,141,,,,,,20011576,,, +1630,USA,en,WQHF578,,Chesterfield (VA),37.277644,-77.465639,,0.01,,6448,291,141,,,,,,20011579,,, +1630,USA,en,WQHJ332,,Chesterfield (VA),37.276944,-77.566667,,0.01,,6454,291,141,,,,,,20011582,,, +1630,USA,en,WQHJ332,,Chesterfield (VA),37.327636,-77.394356,,0.01,,6439,291,141,,,,,,20011583,,, +1630,USA,en,WQHJ332,,Chesterfield (VA),37.531167,-77.646583,,0.01,,6440,291,141,,,,,,20011580,,, +1630,USA,en,WQHJ332,,Chesterfield/Central Library (VA),37.38225,-77.513889,,0.01,,6443,291,141,,,,,,20011581,,, +1630,USA,en,WQHJ332,,Chesterfield/Fire Station 16 SR 604 (VA),37.450167,-77.646583,,0.01,,6446,291,141,,,,,,20011566,,, +1630,USA,en,WQEU865,,Toledo (OH),41.533278,-83.625694,,0.01,,6501,299,142,,,,,,20011614,,, +1630,USA,en,WQEU865,,Toledo (OH),41.694322,-83.694667,,0.01,,6493,299,142,,,,,,20011613,,, +1630,USA,en,WQEU865,,Toledo (OH),41.694356,-83.527683,,0.01,,6483,299,142,,,,,,20011624,,, +1630,USA,en,WQHJ332,,Chesterfield/Grange Hall Elemen.School (VA),37.388056,-77.7665,,0.01,,6458,291,142,,,,,,20011578,,, +1630,USA,en,WPRS255,,Raleigh (NC),35.810994,-78.726856,,0.01,,6642,291,143,,,,,,20011596,,, +1630,USA,en,WPYF783,,Grove City/6220 Young Road (OH),39.844353,-83.097778,,0.01,,6600,297,143,,,,,,20011697,,, +1630,USA,en,WQIZ337,,Springfield (OH),39.877389,-83.965306,,0.01,,6650,297,143,,,,,,20011662,,, +1630,MEX,es,XEUT-AM R Universidad,,Tijuana (bcn),32.533936,-116.968333,,1,,9115,315,144,,1400-0600,1234567,9932,,44930,,, +1630,USA,en,WPGE863,,Mokena/9430 Hickory Creek Dr (IL),41.54975,-87.8445,,0.01,,6750,301,144,,,,,,20011565,,, +1630,USA,en,WPGE863,,Naperville (IL),41.778083,-88.210972,,0.01,,6753,302,144,,,,,,20011651,,, +1630,USA,en,WPGE863,,Northfield (IL),42.160958,-87.844308,,0.01,,6701,302,144,,,,,,20011559,,, +1630,USA,en,WPGE863,,Roselle/2000 S Springinsguth Rd (IL),41.994297,-88.113139,,0.01,,6730,302,144,,,,,,20011564,,, +1630,USA,en,WPGE863,,University Park (IL),41.460964,-87.727642,,0.01,,6750,301,144,,,,,,20011640,,, +1630,USA,en,WPNK720,,High Point (NC),35.933194,-79.993639,,0.01,,6713,292,144,,,,,,20011668,,, +1630,USA,en,WQHF736,,Chicago (IL),41.793,-87.761019,,0.01,,6726,301,144,,,,,,20011577,,, +1630,USA,en,WQHF741,,Chicago (IL),41.977692,-87.894336,,0.01,,6719,302,144,,,,,,20011587,,, +1630,USA,en,WQIZ337,,Clayton (OH),39.860989,-84.326806,,0.01,,6674,298,144,,,,,,20011674,,, +1630,USA,en,WQIQ626,,Arden (NC),35.482222,-82.558889,,0.01,,6911,293,146,,,,,,20011685,,, +1630,USA,en,WNVZ342,,Charleston (SC),32.744336,-79.994317,,0.01,,6968,289,147,,,,,,20011684,,, +1630,USA,en,WPVB565,,Beaufort (SC),32.460989,-80.733111,,0.01,,7038,289,147,,,,,,20011611,,, +1630,USA,en,WPWK972,,Atlanta (GA),33.75,-84.383333,,0.01,,7166,293,149,,,,,,20011679,,, +1630,ARG,es,LRM991 R Amrica,,San Jos (er),-32.202053,-58.209686,,1,,11276,231,151,,,,829,,33000024,,, +1630,USA,en,WPKJ773,,Davenport/101 Adventure Cresent (FL),28.227631,-81.644917,,0.01,,7444,287,151,,,,,,20011623,,, +1630,USA,en,WPWL619,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20011677,,, +1630,ARG,,AM Restauracin,,Hurlingham (ba),-34.6,-58.633333,,1,,11518,230,152,,,,986,,51630,,, +1630,ARG,,R Diagonal 1630,,La Plata (ba),-34.916667,-57.95,,1,,11511,229,152,,,,979,,51924,,, +1630,ARG,es,Super Sport AM,,Temperley (ba),-34.783333,-58.4,,1,,11522,230,152,,,,6,,33000025,,, +1630,USA,en,KNEM463,,Branson (MO),36.660972,-93.294083,,0.01,,7468,301,152,,,,,,20011663,,, +1630,USA,en,WPLP691,,West Palm Beach (FL),26.694308,-80.0795,,0.01,,7468,285,152,,,,,,20011598,,, +1630,USA,en,WPYM991,,Hialeah/4200 West 8th Ave (FL),25.859444,-80.310156,,0.01,,7553,284,152,,,,,,20011699,,, +1630,USA,en,WQFL350,,Hollywood (FL),26.011556,-80.194322,,0.01,,7532,284,152,,,,,,20011650,,, +1630,USA,en,WQFL350,,Hollywood (FL),26.014556,-80.127675,,0.01,,7528,284,152,,,,,,20011658,,, +1630,USA,en,WQFL350,,Hollywood (FL),26.044353,-80.227333,,0.01,,7532,284,152,,,,,,20011648,,, +1630,USA,en,WQHF575,,Wilton Manors (FL),26.155833,-80.14,,0.01,,7517,284,152,,,,,,20011561,,, +1630,USA,en,WQES975,,Daphne/29750 Larry Dee Cawyer Dr (AL),30.658333,-87.911778,,0.01,,7643,293,153,,,,,,20011610,,, +1630,USA,en,WQES975,,Mobile/51 Water Street (AL),30.694339,-88.044339,,0.01,,7649,293,153,,,,,,20011612,,, +1630,USA,en,WQFS424,,Bay Minette (AL),30.947417,-87.860972,,0.01,,7616,293,153,,,,,,20011656,,, +1630,USA,en,WQFS424,,Creola (AL),30.894347,-88.025889,,0.01,,7631,293,153,,,,,,20011653,,, +1630,USA,en,WQFS424,,Loxley (AL),30.64525,-87.711008,,0.01,,7632,293,153,,,,,,20011657,,, +1630,USA,en,WQFS424,,Mobile (AL),30.727639,-88.163333,,0.01,,7653,293,153,,,,,,20011654,,, +1630,USA,en,WQFS424,,Theodore (AL),30.577681,-88.182167,,0.01,,7667,293,154,,,,,,20011655,,, +1630,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20011691,,, +1630,USA,en,WQFL242,,Mt. Vernon/18839 Cedardale Rd (WA),48.371667,-122.3325,,0.01,,7834,327,155,,,,,,20011645,,, +1630,USA,en,WQHG816,,Blaine (WA),48.974889,-122.722806,,0.01,,7791,327,155,,,,,,20000099,,, +1630,USA,en,WQHG816,,Blaine (WA),48.977675,-122.727631,,0.01,,7791,327,155,,,,,,20011586,,, +1630,USA,en,WPLR917,,Baton Rouge (LA),30.44575,-91.243722,,0.01,,7869,295,156,,,,,,20011615,,, +1630,USA,en,WQBV569,,Union Gap (WA),46.559972,-120.477656,,0.01,,7935,325,156,,,,,,20011627,,, +1630,USA,en,WQFX391,,Sequim/71 Carlsborg Rd.-Fire Station (WA),48.080472,-123.177647,,0.01,,7894,327,156,,,,,,20011630,,, +1630,USA,en,WQFX391,,Sequim/Battelle Corp.Headquarters (WA),48.077,-123.046306,,0.01,,7889,327,156,,,,,,20011641,,, +1630,USA,en,WQFX391,,Sequim/Police Headquarters (WA),48.077778,-123.116278,,0.01,,7892,327,156,,,,,,20011629,,, +1630,USA,en,WPPH957,,Seabrook/1400 Cook Road (TX),29.564944,-95.027681,,0.01,,8176,297,159,,,,,,20011619,,, +1630,USA,en,WPQH631,,Galena Park/304 Stewart St. (TX),29.74435,-95.244356,,0.01,,8174,298,159,,,,,,20011707,,, +1630,USA,en,WQEA455,,Paradise/11300 Hwy 70 (CA),39.727644,-121.515861,,0.01,,8633,322,162,,,,,,20011608,,, +1630,USA,en,WQEL573,,Phoenix (AZ),34.25,-111.666667,,0.01,,8691,312,163,,,,,,20011609,,, +1630,USA,en,WPLX517,,Los Angeles (CA),34.076839,-118.446472,,0.01,,9039,317,164,,,,,,20011652,,, +1630,USA,en,WPPZ918,,Los Angeles (CA),34.045833,-118.277644,,0.01,,9034,316,164,,,,,,20011680,,, +1630,USA,en,WPPZ918,,Los Angeles (CA),34.045833,-118.376111,,0.01,,9039,316,164,,,,,,20011675,,, +1630,USA,en,WQGJ267,,Redondo Beach/801 N. Prospect Ave (CA),33.860972,-118.393514,,0.01,,9057,316,164,,,,,,20011633,,, +1630,USA,en,WQIX897,,Calabasas/Water Tank (CA),34.145556,-118.676831,,0.01,,9043,317,164,,,,,,20011682,,, +1632,PNG,,OKT,b,Ok Tedi Mine (wes),-5.395833,141.291667,,0.025,,13385,55,174,,,,0,L1020 U1020 ,85900,,, +1635,NOR,,LGV Vard R,u,Hammerfest (fi),70.716944,23.800044,,1,,2247,17,79,,1203-1218,1234567,,,6300001,,, +1635,NOR,,LGV Vard R,u,Hammerfest (fi),70.716944,23.800044,,1,,2247,17,79,,2303-2318,1234567,,,6300001,,, +1636.4,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-1636.4,,19900066,,, +1638,PHL,,DWGI-AM,,Manila/Quiapo (ncr),14.600278,120.985278,,0.6,,10315,62,150,,,,,,33300016,,, +1638,AUS,ar,2ME R,,Darwin/5 Nemarluk Drive (NT),-12.424444,130.853611,,0.4,,13410,69,162,,,,,,37700003,,, +1638,AUS,en,CRI Easy FM,,Brisbane/Long Pocket (QLD),-27.515156,152.997664,,0.4,,16124,58,171,,0000-2400,1234567,35,,51567,,, +1638,AUS,ar,2ME R,,Melbourne/South Morang (VIC),-37.644608,145.089078,,0.4,,16447,80,172,,0000-2400,1234567,993,,51568,,, +1638,AUS,en,The Goanna,,Armidale (NSW),-30.5,151.666667,,0.4,,16307,63,172,,0000-2400,1234567,995,,51566,,, +1638,AUS,ar,2ME R Arabic,,Sydney/Bicentennial Park (NSW),-33.847789,151.081294,,0.4,,16550,68,173,,0000-2400,1234567,994,,51569,,, +1638,AUS,en,The Goanna,,Hobart/Mount Stuart (TAS),-42.8725,147.301667,,0.4,,16946,86,174,,,,,,37700004,,, +1640,USA,en,WKSH,,Sussex (WI),43.077222,-88.192222,,1,,6650,303,124,,,,0,,42069,,, +1640,DOM,es,R Juventus Don Bosco,,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,,,991,,2196,,, +1640,USA,,KDIA,,Vallejo (D) (CA),37.895556,-122.324167,,10,,8845,321,133,,,,3,,38262,,, +1640,USA,,KDIA,,Vallejo (N) (CA),38.134167,-122.425556,,10,,8826,321,133,,,,,,20016083,,, +1640,USA,en,WQFH340,,York (ME),43.144311,-70.711944,,0.01,,5587,292,133,,,,,,20011723,,, +1640,USA,en,WQIZ298,,Bedford (MA),42.494367,-71.282889,,0.01,,5668,292,134,,,,,,20011776,,, +1640,USA,en,WTNI,,Biloxi (Gulfport) (MS),30.474167,-88.856389,,1,,7718,294,134,,,,12,,32081,,, +1640,USA,en,KZLS,,Enid (OK),36.115278,-97.756389,,1,,7772,303,135,,,,9955,,38417,,, +1640,USA,en,WQFL236,,Schenectady (NY),42.794339,-73.87765,,0.01,,5810,294,135,,,,,,20011737,,, +1640,USA,en,WPLT248,,New York (NY),40.82765,-73.809861,,0.01,,5948,292,136,,,,,,20011853,,, +1640,USA,en,WPLT248,,New York (NY),40.844319,-73.877664,,0.01,,5951,292,136,,,,,,20011806,,, +1640,USA,en,WPLT248,,New York (NY),40.847333,-73.932083,,0.01,,5955,292,136,,,,,,20011868,,, +1640,USA,en,WPLT248,,New York (NY),40.860944,-73.827917,,0.01,,5947,292,136,,,,,,20011782,,, +1640,USA,en,WPLT248,,New York (NY),40.879833,-73.910994,,0.01,,5951,292,136,,,,,,20011845,,, +1640,USA,en,WPXF203,,East Meadow (NY),40.689722,-73.577678,,0.01,,5944,292,136,,,,,,20011807,,, +1640,USA,en,WPXF203,,Elmont (NY),40.694311,-73.727653,,0.01,,5953,292,136,,,,,,20011830,,, +1640,USA,en,WPXF203,,Farmingdale (NY),40.711022,-73.447778,,0.01,,5934,292,136,,,,,,20011838,,, +1640,USA,en,WQBN316,,Nyack/Memorial Park (NY),41.094294,-73.927675,,0.01,,5936,292,136,,,,,,20011812,,, +1640,USA,en,WQBN316,,Sloatsburg (NY),41.160969,-74.1943,,0.01,,5948,292,136,,,,,,20011808,,, +1640,USA,en,WQBN316,,Sparkill/Joe Clark Memorial Park (NY),41.030111,-73.926083,,0.01,,5941,292,136,,,,,,20011811,,, +1640,USA,en,WQBN316,,Suffern (NY),41.121389,-74.144322,,0.01,,5948,292,136,,,,,,20011809,,, +1640,USA,en,WQBN316,,Tomkins Cove/25 Buckberg Road (NY),41.261008,-73.994308,,0.01,,5928,292,136,,,,,,20011796,,, +1640,USA,en,WQBN316,,West Nyack/Germonds Park (NY),41.114639,-73.993572,,0.01,,5939,292,136,,,,,,20011810,,, +1640,USA,en,WQBN317,,Haverstraw/50 West Broad Street (NY),41.197361,-73.965778,,0.01,,5931,292,136,,,,,,20011813,,, +1640,USA,en,WQBN317,,Pomona/Fire Training Center (NY),41.177647,-74.044303,,0.01,,5938,292,136,,,,,,20011814,,, +1640,USA,en,WPLT248,,New York (NY),40.810986,-73.916528,,0.01,,5956,292,137,,,,,,20011860,,, +1640,USA,en,WPMG676,,Monmouth Beach/14 Willow Ave (NJ),40.330667,-73.977361,,0.01,,5995,292,137,,,,,,20011865,,, +1640,USA,en,WPNX700,,Lake Harmony (PA),41.077647,-75.711014,,0.01,,6050,293,137,,,,,,20011834,,, +1640,USA,en,WPRS936,,Harrisburg (PA),41.421389,-75.610231,,0.01,,6018,294,137,,,,,,20011714,,, +1640,USA,en,WPSH236,,Middlesex (NJ),40.580556,-74.510147,,0.01,,6011,292,137,,,,,,20011873,,, +1640,USA,en,WPSQ379,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011828,,, +1640,USA,en,WPVY987,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011738,,, +1640,USA,en,WPWE235,,Clarkes Summit (PA),41.493506,-75.681389,,0.01,,6017,294,137,,,,,,20011843,,, +1640,USA,en,WPWE235,,Scranton (PA),41.383056,-75.7275,,0.01,,6028,294,137,,,,,,20011855,,, +1640,USA,en,WPWE235,,Wilkes-Barre (PA),41.199444,-75.791944,,0.01,,6046,293,137,,,,,,20011841,,, +1640,USA,en,WPWE235,,Wilkes-Barre (PA),41.281111,-75.776856,,0.01,,6039,294,137,,,,,,20011858,,, +1640,USA,en,WPWK636,,Roselle/725 Chesnut Street (NJ),40.660189,-74.261333,,0.01,,5989,292,137,,,,,,20011874,,, +1640,USA,en,WPYS541,,Clearfield (PA),40.8,-75.35,,0.01,,6048,293,137,,,,,,20011821,,, +1640,USA,en,WQBR758,,Spring Lake/515 Monmouth Ave (NJ),40.146833,-74.044361,,0.01,,6013,291,137,,,,,,20011870,,, +1640,USA,en,WQBX398,,Paterson (NJ),40.911008,-74.147639,,0.01,,5964,292,137,,,,,,20011848,,, +1640,USA,,KDZR,i,Lake Oswego (OR),45.453889,-122.546389,,1,,8122,325,138,,,,988,,38306,,, +1640,USA,en,WNRW290,,Franklin Township (PA),40.844311,-75.677681,,0.01,,6065,293,138,,,,,,20011722,,, +1640,USA,en,WNRW290,,Washington Township (PA),40.73175,-75.62825,,0.01,,6070,293,138,,,,,,20011721,,, +1640,USA,en,WPKX724,,Calico Corner (PA),40.133167,-75.977686,,0.01,,6137,293,138,,,,,,20011794,,, +1640,USA,en,WPKX724,,Hatboro (PA),40.163167,-75.127669,,0.01,,6081,292,138,,,,,,20011771,,, +1640,USA,en,WPKX724,,Kulpsville (PA),40.249556,-75.344339,,0.01,,6088,292,138,,,,,,20011770,,, +1640,USA,en,WPKX724,,Lionville (PA),40.07765,-75.677686,,0.01,,6122,292,138,,,,,,20011787,,, +1640,USA,en,WPKX724,,Norristown (PA),40.109,-75.294336,,0.01,,6095,292,138,,,,,,20011754,,, +1640,USA,en,WPKX724,,Valley Forge (PA),40.082889,-75.444347,,0.01,,6107,292,138,,,,,,20011785,,, +1640,USA,en,WPNX700,,Conshohocken (PA),40.064833,-75.327681,,0.01,,6101,292,138,,,,,,20011859,,, +1640,USA,en,WPNX700,,Festerville Trevose (PA),40.133167,-74.977669,,0.01,,6073,292,138,,,,,,20011826,,, +1640,USA,en,WPNX700,,Morgantown (PA),40.162306,-75.882722,,0.01,,6128,293,138,,,,,,20011820,,, +1640,USA,en,WPRR689,,Greene Township (PA),41.061028,-77.2975,,0.01,,6150,294,138,,,,,,20011769,,, +1640,USA,en,WPRR689,,Greene Township (PA),41.062861,-77.2155,,0.01,,6145,294,138,,,,,,20011779,,, +1640,USA,en,WPRT265,,Harrisburg (PA),41.043333,-76.023056,,0.01,,6072,293,138,,,,,,20011713,,, +1640,USA,en,WPVN442,,Brigantine (NJ),39.396667,-74.38,,0.01,,6090,291,138,,,,,,20011743,,, +1640,USA,en,WPWD996,,Bristol (PA),40.121667,-74.860197,,0.01,,6067,292,138,,,,,,20011727,,, +1640,USA,en,WPWD996,,Fort Washington (PA),40.143497,-75.196389,,0.01,,6087,292,138,,,,,,20011742,,, +1640,USA,en,WPWD996,,Quakertown (PA),40.443547,-75.4225,,0.01,,6079,293,138,,,,,,20011780,,, +1640,USA,en,WPWD996,,Reamstown (PA),40.214722,-76.081667,,0.01,,6137,293,138,,,,,,20011730,,, +1640,USA,en,WPWE235,,Allentown (PA),40.593333,-75.576881,,0.01,,6077,293,138,,,,,,20011872,,, +1640,USA,en,WQBV596,,Mount Laurel Twp. (NJ),39.977633,-74.911833,,0.01,,6081,292,138,,,,,,20011850,,, +1640,USA,en,WQCQ727,,Mount Laurel Twp. (NJ),39.977633,-74.911833,,0.01,,6081,292,138,,,,,,20011715,,, +1640,USA,en,WQFF632,,Brooklawn (NJ),39.878528,-75.127675,,0.01,,6102,292,138,,,,,,20011739,,, +1640,USA,en,WQFL338,,Wilmington (DE),39.760967,-75.564611,,0.01,,6138,292,138,,,,,,20011733,,, +1640,USA,en,WQFL338,,Wilmington/Concord Pike (DE),39.7777,-75.5443,,0.01,,6136,292,138,,,,,,20011720,,, +1640,USA,en,WQFL338,,Wilmington/Public Works Department (DE),39.727689,-75.544356,,0.01,,6140,292,138,,,,,,20011725,,, +1640,USA,en,WQGS571,,North Wildwood (NJ),39.011022,-74.796611,,0.01,,6146,291,138,,,,,,20011864,,, +1640,USA,en,WQGW857,,Plymouth Meeting (PA),40.108333,-75.293564,,0.01,,6095,292,138,,,,,,20011839,,, +1640,USA,en,WQGW857,,Wayne (PA),40.082778,-75.440833,,0.01,,6106,292,138,,,,,,20011803,,, +1640,USA,en,WQGW857,,West Conshohocken (PA),40.077675,-75.327661,,0.01,,6100,292,138,,,,,,20011800,,, +1640,USA,es,KBJA,,Sandy (UT),40.713056,-111.931389,,1,,8108,316,138,,,,999,,38042,,, +1640,USA,en,WPNX499,,Carlisle (PA),40.229528,-77.161028,,0.01,,6204,293,139,,,,,,20011827,,, +1640,USA,en,WPNX700,,New Cumberland (PA),40.210639,-76.88275,,0.01,,6188,293,139,,,,,,20011819,,, +1640,USA,en,WPRR689,,Marion Township (PA),41.059694,-77.4315,,0.01,,6159,294,139,,,,,,20011786,,, +1640,USA,en,WPRR689,,Porter Township (PA),41.030778,-77.526806,,0.01,,6167,294,139,,,,,,20011784,,, +1640,USA,en,WPRR689,,Springs Township (PA),40.961022,-77.761,,0.01,,6186,294,139,,,,,,20011756,,, +1640,USA,en,WPRR689,,Woodland (PA),41.027639,-78.361,,0.01,,6219,295,139,,,,,,20011777,,, +1640,USA,en,WPUV623,,Clearfield (PA),40.981,-78.144342,,0.01,,6209,295,139,,,,,,20011734,,, +1640,USA,en,WPUV623,,Clearfield (PA),41.044367,-78.398528,,0.01,,6220,295,139,,,,,,20011718,,, +1640,USA,en,WPUV623,,Clearfield (PA),41.098722,-78.525639,,0.01,,6224,295,139,,,,,,20011729,,, +1640,USA,en,WPUV623,,Clearfield (PA),41.144944,-78.794339,,0.01,,6237,295,139,,,,,,20011732,,, +1640,USA,en,WPUV623,,Dubois (PA),41.127633,-78.694339,,0.01,,6232,295,139,,,,,,20011740,,, +1640,USA,en,WPUV623,,Lock Haven (PA),41.027669,-77.949194,,0.01,,6193,295,139,,,,,,20011741,,, +1640,USA,en,WPVQ775,,McKinney (PA),40.153611,-77.613056,,0.01,,6238,294,139,,,,,,20011781,,, +1640,USA,en,WPVQ775,,Willow Hill (PA),40.094722,-77.813889,,0.01,,6255,294,139,,,,,,20011744,,, +1640,USA,en,WPVQ775,,Winding Heights (PA),40.1975,-76.976111,,0.01,,6195,293,139,,,,,,20011778,,, +1640,USA,en,WPWD996,,Highspire (PA),40.216667,-76.786944,,0.01,,6181,293,139,,,,,,20011731,,, +1640,USA,en,WPWD996,,Mastersonville (PA),40.231667,-76.443556,,0.01,,6159,293,139,,,,,,20011728,,, +1640,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011842,,, +1640,USA,en,WPYI899,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20011823,,, +1640,USA,en,WQEY257,,Reynoldsville (PA),41.161011,-78.912472,,0.01,,6243,295,139,,,,,,20011749,,, +1640,USA,en,WQEY258,,Brookville (PA),41.143497,-78.982417,,0.01,,6248,295,139,,,,,,20011748,,, +1640,USA,en,WQEY258,,Brookville (PA),41.166917,-79.046278,,0.01,,6251,295,139,,,,,,20011746,,, +1640,USA,en,WQEY258,,Brookville (PA),41.177644,-79.09775,,0.01,,6253,295,139,,,,,,20011783,,, +1640,USA,en,WPED444,,Cambridge (MD),38.560986,-75.994389,,0.01,,6256,291,140,,,,,,20011857,,, +1640,USA,en,WPLS956,,Adelphi (MD),39.02765,-76.961028,,0.01,,6282,292,140,,,,,,20011735,,, +1640,USA,en,WPLS956,,College Park (MD),38.992611,-76.944367,,0.01,,6283,292,140,,,,,,20011719,,, +1640,USA,en,WPNX499,,Bedford (PA),40.060978,-78.510961,,0.01,,6301,294,140,,,,,,20011833,,, +1640,USA,en,WPNX499,,Breezewood (PA),39.994314,-78.260147,,0.01,,6290,294,140,,,,,,20011829,,, +1640,USA,en,WPNX499,,Monroeville (PA),40.444303,-79.760969,,0.01,,6349,295,140,,,,,,20011837,,, +1640,USA,en,WPNX499,,Zelienople (PA),40.679222,-80.110969,,0.01,,6353,296,140,,,,,,20011836,,, +1640,USA,en,WPVQ775,,Donegal (PA),40.108611,-79.381389,,0.01,,6351,295,140,,,,,,20011755,,, +1640,USA,en,WPVQ775,,Fort Littleton (PA),40.060172,-77.960833,,0.01,,6267,294,140,,,,,,20011745,,, +1640,USA,en,WPVQ775,,Somerset (PA),40.026889,-79.081667,,0.01,,6339,294,140,,,,,,20011768,,, +1640,USA,en,WPWE236,,Gibsonia (PA),40.611111,-79.946667,,0.01,,6348,296,140,,,,,,20011869,,, +1640,USA,en,WPWE236,,Indianola (PA),40.541944,-79.825,,0.01,,6346,295,140,,,,,,20011844,,, +1640,USA,en,WPWE236,,Irwin (PA),40.312778,-79.679444,,0.01,,6354,295,140,,,,,,20011852,,, +1640,USA,en,WPXC773,,Hollidaysburg (PA),40.433333,-78.383333,,0.01,,6265,294,140,,,,,,20011797,,, +1640,USA,en,WPYM226,,Erie (PA),42.031778,-80.294331,,0.01,,6262,297,140,,,,,,20011822,,, +1640,USA,en,WQEY257,,Emlenton (PA),41.177658,-79.744364,,0.01,,6293,296,140,,,,,,20011750,,, +1640,USA,en,WQEY257,,Emlenton (PA),41.183,-79.677642,,0.01,,6288,296,140,,,,,,20011751,,, +1640,USA,en,WQEY257,,Knox (PA),41.194361,-79.5443,,0.01,,6279,296,140,,,,,,20011752,,, +1640,USA,en,WQEY257,,Shippenville (PA),41.194111,-79.425889,,0.01,,6272,296,140,,,,,,20011753,,, +1640,USA,en,WQEY258,,Clarion (PA),41.17625,-79.347333,,0.01,,6268,296,140,,,,,,20011790,,, +1640,USA,en,WQEY258,,Corsica (PA),41.183583,-79.244417,,0.01,,6261,296,140,,,,,,20011791,,, +1640,USA,en,WQEY258,,Corsica (PA),41.194319,-79.197306,,0.01,,6258,296,140,,,,,,20011792,,, +1640,USA,en,WPMQ789,,Akron (OH),41.083333,-81.516667,,0.01,,6408,297,141,,,,,,20011824,,, +1640,USA,en,WPNX499,,New Stanton (PA),40.227647,-79.610961,,0.01,,6356,295,141,,,,,,20011798,,, +1640,USA,en,WPUN649,,Garfield Heights (OH),41.416667,-81.6,,0.01,,6388,297,141,,,,,,20011875,,, +1640,USA,en,WPWE236,,Homewood (PA),40.814722,-80.345972,,0.01,,6357,296,141,,,,,,20011846,,, +1640,USA,en,WPWE236,,New Castle (PA),40.837778,-80.373611,,0.01,,6357,296,141,,,,,,20011847,,, +1640,USA,en,WPWE236,,Petersburg (PA),40.904167,-80.493889,,0.01,,6359,296,141,,,,,,20011849,,, +1640,USA,en,WQEL350,,Middleburg Heights/13213 Pearl Road (OH),41.316667,-81.84435,,0.01,,6410,297,141,,,,,,20011831,,, +1640,USA,en,WQGH532,,Mayfield (OH),41.540833,-81.440278,,0.01,,6369,297,141,,,,,,20011867,,, +1640,USA,en,WQIY899,,Romulus (MI),42.232472,-83.361031,,0.01,,6432,299,141,,,,,,20011724,,, +1640,USA,en,WPSK550,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20011805,,, +1640,USA,en,WQFQ810,,Columbus (OH),39.997778,-82.894294,,0.01,,6576,297,143,,,,,,20011861,,, +1640,USA,en,WPSF938,,Hampstead (NC),34.389167,-77.6875,,0.01,,6687,289,144,,,,,,20011856,,, +1640,USA,en,WPXX639,,Benson (NC),35.3925,-78.526881,,0.01,,6662,290,144,,,,,,20011840,,, +1640,USA,en,WQHG634,,Greensboro/724 Stirling St (NC),36.064222,-79.811361,,0.01,,6691,292,144,,,,,,20011818,,, +1640,USA,en,WPKM208,,Rowland (NC),34.495722,-79.244294,,0.01,,6779,290,145,,,,,,20011757,,, +1640,USA,en,WPSL489,,North Wilkesboro (NC),36.166667,-81.15,,0.01,,6768,293,145,,,,,,20011817,,, +1640,USA,en,WPNZ651,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20011862,,, +1640,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20011801,,, +1640,USA,en,WPVB565,,Beaufort (SC),32.433333,-80.666667,,0.01,,7036,289,147,,,,,,20011758,,, +1640,USA,en,WQBS681,,Beaufort (SC),32.396444,-80.765361,,0.01,,7045,289,147,,,,,,20011863,,, +1640,USA,en,WQBS681,,Gardens Corner (SC),32.610967,-80.76025,,0.01,,7028,290,147,,,,,,20011871,,, +1640,USA,en,WPVB565,,Okatie (SC),32.2943,-80.944311,,0.01,,7065,289,148,,,,,,20011759,,, +1640,USA,en,WPVV612,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011716,,, +1640,ARG,,R Boanerges,,Posadas (mn),-27.366667,-55.866667,,1,,10704,232,149,,,,,,51926,,, +1640,PRU,es,R Kalikanto,,Chamaca (cus),-14.3,-71.85,,1,,10478,252,149,,,,13,,37000052,,, +1640,USA,en,WPKU228,,Saint Cloud (FL),28.096694,-81.277642,,0.01,,7431,287,151,,,,,,20011762,,, +1640,USA,en,WPRF555,,Fort Pierce (FL),27.411694,-80.398944,,0.01,,7430,285,151,,,,,,20011766,,, +1640,USA,en,WPRF555,,Orlando (FL),28.4775,-81.446472,,0.01,,7410,287,151,,,,,,20011767,,, +1640,USA,en,WPRF555,,Stuart (FL),27.160889,-80.310967,,0.01,,7445,285,151,,,,,,20011765,,, +1640,USA,en,WPRF555,,Wildwood (FL),28.837222,-82.045639,,0.01,,7419,288,151,,,,,,20011832,,, +1640,USA,en,WPSG968,,Tallahassee (FL),30.444306,-84.310972,,0.01,,7433,290,151,,,,,,20011854,,, +1640,USA,en,WPWL619,,Tallahassee (FL),30.433333,-84.283333,,0.01,,7432,290,151,,,,,,20011816,,, +1640,USA,en,WPXY389,,Nevada/Fire Department (MO),37.844297,-94.358917,,0.01,,7430,302,151,,,,,,20011825,,, +1640,USA,en,WQCC789,,Nevada (MO),37.844297,-94.358917,,0.01,,7430,302,151,,,,,,20011804,,, +1640,USA,en,WQDC927,,Casselberry (FL),28.6725,-81.343572,,0.01,,7387,287,151,,,,,,20011795,,, +1640,USA,en,WQEY603,,Orlando (FL),28.446,-81.38,,0.01,,7408,287,151,,,,,,20011788,,, +1640,USA,en,WQEY603,,Sanford (FL),28.661006,-81.232,,0.01,,7381,287,151,,,,,,20011789,,, +1640,ARG,,Hosanna AM 1640,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,987,,33000008,,, +1640,USA,en,WPKU228,,Lake Worth (FL),26.644303,-80.177642,,0.01,,7479,285,152,,,,,,20011761,,, +1640,USA,en,WPRF555,,Deerfield (FL),26.310981,-80.177639,,0.01,,7506,284,152,,,,,,20011764,,, +1640,USA,en,WPRF555,,Miramar (FL),25.977647,-80.244306,,0.01,,7539,284,152,,,,,,20011760,,, +1640,USA,en,WPUR527,,Bartow (FL),27.9,-81.85,,0.01,,7484,287,152,,,,,,20011736,,, +1640,USA,en,WQDM970,,Sunrise/Sawgrass Expressway (FL),26.176611,-80.30975,,0.01,,7526,284,152,,,,,,20011747,,, +1640,USA,en,WPKU228,,Sweetwater (FL),25.760111,-80.382833,,0.01,,7566,284,153,,,,,,20011763,,, +1640,USA,en,WPSH372,,Fort Myers Beach (FL),26.448056,-81.9425,,0.01,,7611,286,153,,,,,,20011866,,, +1640,USA,en,WQHY745,,Tukwila (WA),47.476839,-122.262778,,0.01,,7917,326,156,,,,,,20011799,,, +1640,USA,en,WPAM217,,Channelview/8280 Sheldon Road (TX),29.844353,-95.116056,,0.01,,8158,297,159,,,,,,20011835,,, +1640,USA,en,WPUJ590,,Temple/3620 Range Road (TX),31.130528,-97.34825,,0.01,,8180,300,159,,,,,,20011815,,, +1640,USA,en,WPUJ590,,Temple/Lyon Park (TX),31.061944,-97.411019,,0.01,,8189,300,159,,,,,,20011851,,, +1640,USA,en,WQDH211,,Austin/Bergstrom Int.Airport (TX),30.194319,-97.677661,,0.01,,8281,300,160,,,,,,20011793,,, +1640,USA,en,WQCY276,,Kingman (AZ),35.183333,-114.05,,0.01,,8723,314,163,,,,,,20011773,,, +1640,USA,en,WQCY276,,Kingman (AZ),35.183333,-114.05,,0.01,,8723,314,163,,,,,,20011775,,, +1640,USA,en,WPKA209,,Irvine (CA),33.660189,-117.829861,,0.01,,9050,316,164,,,,,,20011772,,, +1640,USA,en,WPKA209,,Irvine (CA),33.676139,-117.764194,,0.01,,9045,316,164,,,,,,20011717,,, +1640,USA,en,WPKA209,,Irvine (CA),33.725972,-117.745556,,0.01,,9039,316,164,,,,,,20011774,,, +1640,USA,en,WQIY892,,Murrieta (CA),33.555,-117.2125,,0.01,,9030,315,164,,,,,,20011726,,, +1641,FRO,,OXJ Trshavn R,u,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,0020-0040,1234567,,,2700001,,, +1641,FRO,,OXJ Trshavn R,u,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,0520-0540,1234567,,,2700001,,, +1642.5,HOL,,Den Helder SAR,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,-1642.5,,19900638,,, +1644,CNR,,Arrecife R,u,Montaa de Hara (LPM-LA),29.124022,-13.519211,,1,,3038,220,87,,0703-0718,1234567,,,1500001,,, +1644,CNR,,Arrecife R,u,Montaa de Hara (LPM-LA),29.124022,-13.519211,,1,,3038,220,87,,1233-1248,1234567,,,1500001,,, +1644,CNR,,Arrecife R,u,Montaa de Hara (LPM-LA),29.124022,-13.519211,,1,,3038,220,87,,1903-1918,1234567,,,1500001,,, +1644,QAT,,IS,b,Halul Island (kwr),25.675,52.408333,,0.025,,4827,109,121,,,,,,85902,,, +1645,B,,MLZ,b,Platform Merluza (SP),-25.270833,-45.291667,,0.025,,9961,225,163,,,,,L405 U386 4.8s,85903,,, +1647,AUS,,Vision R Network,,Mackay (QLD),-21.116667,149.216667,,1,,15322,57,165,,,,,,37700032,,, +1649.5,J,ja,Bisan Martis,u,Aonoyama (shi-kag),34.303278,133.820944,,0.01,,9135,41,164,,:00-:15,1234567,-1649.5,,31400025,,, +1649.5,J,ja,Bisan Martis,u,Aonoyama (shi-kag),34.303278,133.820944,,0.01,,9135,41,164,,:30-:45,1234567,-1649.5,,31400025,,, +1649.5,J,ja,Kanmon Martis,u,Matsubara (kyu-fuk),33.897208,130.918894,,0.01,,9040,44,164,,:00-:15,1234567,-1649.5,,31400019,,, +1649.5,J,ja,Kanmon Martis,u,Matsubara (kyu-fuk),33.897208,130.918894,,0.01,,9040,44,164,,:30-:45,1234567,-1649.5,,31400019,,, +1649.5,J,ja,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,:15-:30,1234567,-1649.5,,31400020,,, +1649.5,J,ja,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,:45-:00,1234567,-1649.5,,31400020,,, +1649.5,J,ja,Osaka Martis,u,Matsuhosaki (kns-hyo),34.608458,135.003164,,0.01,,9158,40,164,,:15-:30,1234567,-1649.5,,31400027,,, +1649.5,J,ja,Osaka Martis,u,Matsuhosaki (kns-hyo),34.608458,135.003164,,0.01,,9158,40,164,,:45-:00,1234567,-1649.5,,31400027,,, +1650,F,fr,CROSS Gris-Nez,u,Cap Gris-Nez (62),50.867778,1.5825,,1,,362,249,61,,0550-0605,1234567,,,2500004,,, +1650,F,fr,CROSS Gris-Nez,u,Cap Gris-Nez (62),50.867778,1.5825,,1,,362,249,61,,1755-1805,1234567,,,2500004,,, +1650,F,fr,CROSS Jobourg,u,Jobourg (50),49.684083,-1.907144,,1,,642,248,63,,0815-0825,1234567,,,2500025,,, +1650,F,fr,CROSS Jobourg,u,Jobourg (50),49.684083,-1.907144,,1,,642,248,63,,2015-2025,1234567,,,2500025,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0000-0015,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0600-0615,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0635-0645,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0715-0730,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1835-1845,1234567,,,2500008,,, +1650,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1915-1930,1234567,,,2500008,,, +1650,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,????-????,1234567,,,2500003,,, +1650,EST,,Kuressaare Piirivalve MRSCC,u,Kuressaare (Saa),58.25,22.5,,1,,1224,50,69,,????-????,1234567,,,19900513,,, +1650,EST,,ESP Prnu R,u,Prnu (Pae),58.375,24.516667,,1,,1336,52,70,,????-????,1234567,,,19900516,,, +1650,EST,,Kardla Piirivalve MRSCC,u,Kardla (Hii),59,22.75,,1,,1276,47,70,,????-????,1234567,,,19900512,,, +1650,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,0433-0443,1234567,,,2400002,,, +1650,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,1333-1343,1234567,,,2400002,,, +1650,EST,,Narva-Jesuu Piirivalve MRSCC,u,Narva-Jesuu (Ida),59.458333,28.038889,,1,,1569,50,73,,????-????,1234567,,,19900514,,, +1650,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,????-????,1234567,,,4000013,,, +1650,GRC,el,R Thessalos,,Larissa (the-lar),39.633333,22.416667,,1,,1852,132,76,,,,,,3400009,,, +1650,GRC,el,unid,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400059,,, +1650,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900835,,, +1650,BEN,,TYA Cotonou R,u,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900258,,, +1650,TGO,,5VA Lom R,u,Lom (mar),6.139522,1.27935,,1,,5133,187,108,,????-????,1234567,,,19901403,,, +1650,CAN,xx,CJRS,,Montral (QC),45.4875,-73.668611,,1,,5608,296,113,,,,0,,20100001,,, +1650,CAN,xx,CINA,,Mississauga (ON),43.625556,-79.631111,,0.68,,6103,298,120,,,,997,,20100006,,, +1650,USA,en,WHKT,,Portsmouth (VA),36.802778,-76.282778,,1,,6409,290,121,,,,10,,30560,,, +1650,USA,en,KCNZ,,Cedar Falls (IA),42.413056,-92.4375,,1,,6944,305,126,,,,103,,38188,,, +1650,USA,en,KYHN,,Fort Smith (AR),35.274722,-94.459722,,1,,7653,301,134,,,,,,39710,,, +1650,USA,en,WQBQ732,,East Boston (MA),42.37765,-71.028944,,0.01,,5661,292,134,,,,,,20011955,,, +1650,USA,es,KBJD,,Denver (CO),39.798889,-104.97,,1,,7844,311,135,,,,28,,38043,,, +1650,USA,en,WQFQ235,,Harvey Cedars (NJ),39.6925,-74.142833,,0.01,,6053,291,137,,,,,,20011892,,, +1650,USA,en,WQFQ235,,Harvey Cedars/1 West Salem Ave (NJ),39.6925,-74.142778,,0.01,,6053,291,137,,,,,,20011877,,, +1650,MEX,es,XEAZR-AM ZER R 1650,,Mxico D.F. (dif),19.433333,-99.133333,,5,,9322,294,138,,,,990,,34900029,,, +1650,USA,en,WQEA211,,Mount Holly (NJ),39.85,-74.633333,,0.01,,6073,292,138,,,,,,20011916,,, +1650,USA,en,WPMG694,,Chardon (OH),41.616667,-81.15,,0.01,,6345,297,140,,,,,,20011894,,, +1650,USA,en,WQAJ522,,Washington (DC),38.83,-77.026831,,0.01,,6301,292,140,,,,,,20011948,,, +1650,USA,en,WQAJ522,,Washington (DC),38.875,-76.974722,,0.01,,6294,292,140,,,,,,20011952,,, +1650,USA,en,WQAJ522,,Washington (DC),38.910206,-77.056111,,0.01,,6297,292,140,,,,,,20011947,,, +1650,USA,en,WQAJ522,,Washington (DC),38.956111,-77.010181,,0.01,,6290,292,140,,,,,,20011949,,, +1650,USA,en,WQAJ522,,Washington (DC),38.960206,-77.074167,,0.01,,6294,292,140,,,,,,20011954,,, +1650,USA,en,WQAJ522,,Washington/1403 W Street NE (DC),38.926864,-76.993547,,0.01,,6292,292,140,,,,,,20011950,,, +1650,USA,en,WQEL336,,Fairfax/3730 Old Lee Highway (VA),38.860164,-77.299167,,0.01,,6316,292,140,,,,,,20011957,,, +1650,USA,en,WQEL336,,Fairfax/4081 University Drive (VA),38.843556,-77.311022,,0.01,,6318,292,140,,,,,,20011958,,, +1650,USA,en,WPME348,,Chardon/13281 Ravenna Rd (OH),41.510972,-81.192889,,0.01,,6356,297,141,,,,,,20011900,,, +1650,USA,en,WPMU972,,Bridgeville (PA),40.360972,-80.127636,,0.01,,6378,295,141,,,,,,20011913,,, +1650,USA,en,WPWK899,,Riverview/14100 Civic Park Place (MI),42.177,-83.194,,0.01,,6426,299,141,,,,,,20011932,,, +1650,USA,en,WQGD298,,Cuyahoga Falls/Wyoga Lake Rd. (MI),41.1645,-81.494358,,0.01,,6401,297,141,,,,,,20011898,,, +1650,USA,en,WQGH391,,Farmington Hills (MI),42.493506,-83.358333,,0.01,,6412,299,141,,,,,,20011896,,, +1650,USA,en,WQHC395,,Marysville (OH),40.243539,-83.366667,,0.01,,6585,297,143,,,,,,20011908,,, +1650,USA,en,WQII422,,Columbus (OH),40.213333,-83.005,,0.01,,6566,297,143,,,,,,20011910,,, +1650,USA,es,KSVE,,El Paso (TX),31.753611,-106.416111,,0.85,,8642,307,143,,,,,,38039,,, +1650,USA,en,WPXZ497,,Evanston/2020 Asbury Ave (IL),42.060997,-87.694314,,0.01,,6701,301,144,,,,,,20011956,,, +1650,USA,en,WPZZ656,,Aurora/500 N Ohio St. (IL),41.765722,-88.2935,,0.01,,6759,302,145,,,,,,20011929,,, +1650,USA,en,WQFD910,,Kankakee (IL),41.305833,-87.981389,,0.01,,6777,301,145,,,,,,20011893,,, +1650,USA,en,WQEX428,,Shelbyville (KY),38.216667,-85.216667,,0.01,,6858,297,146,,,,,,20011911,,, +1650,USA,en,WQBR594,,Algood/191 Loftis Dr (TN),36.216111,-85.444311,,0.01,,7032,295,147,,,,,,20011940,,, +1650,USA,en,WQBR594,,Baxter/404 Elm St. (TN),36.160975,-85.64435,,0.01,,7049,296,147,,,,,,20011942,,, +1650,USA,en,WQBR594,,Cookeville/511 E Veterans Dr (TN),36.14,-85.5,,0.01,,7042,295,147,,,,,,20011943,,, +1650,USA,ko,KFOX,,Torrance (CA),34.019444,-118.344722,,0.49,,9040,316,147,,,,9999,,38421,,, +1650,USA,en,WQBR594,,Silver Point (TN),36.092889,-85.743514,,0.01,,7060,296,148,,,,,,20011931,,, +1650,USA,en,WQFS212,,Athens (GA),33.956667,-83.370833,,0.01,,7085,292,148,,,,,,20011906,,, +1650,USA,en,WQID284,,Heflin (AL),33.644722,-85.439167,,0.01,,7241,293,149,,,,,,20011905,,, +1650,USA,en,WQII416,,Guntersville (AL),34.35,-86.3,,0.01,,7237,295,149,,,,,,20011901,,, +1650,USA,en,WQIM209,,Alexander City (AL),32.95,-85.95,,0.01,,7330,293,150,,,,,,20011895,,, +1650,USA,en,WQDN417,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20011927,,, +1650,USA,en,WQDW634,,Melbourne/701 S Babcock St. (FL),28.095,-80.620833,,0.01,,7388,286,151,,,,,,20011928,,, +1650,USA,en,WQEL638,,Orlando (FL),28.444319,-81.361006,,0.01,,7407,287,151,,,,,,20011888,,, +1650,USA,en,WQEL638,,Orlando (FL),28.527669,-81.376333,,0.01,,7401,287,151,,,,,,20011883,,, +1650,USA,en,WQEL638,,Orlando (FL),28.593547,-81.430333,,0.01,,7400,287,151,,,,,,20011886,,, +1650,USA,en,WQEL638,,Orlando/110 N Andes Ave (FL),28.541667,-81.325,,0.01,,7397,287,151,,,,,,20011876,,, +1650,ARG,,R Fortaleza,,Ezeiza (ba),-34.85,-58.533333,,1,,11535,230,152,,,,,,51927,,, +1650,ARG,es,LRI227 Antares AM,,Pilar (ba),-34.467572,-58.973217,,1,,11524,230,152,,,,,,33000005,,, +1650,ARG,es,R El Mensajero,,Rafael Castillo (ba),-34.716667,-58.616667,,1,,11528,230,152,,,,,,33000092,,, +1650,ARG,es,R Guarani,,Buenos Aires (df),-34.616667,-58.466667,,1,,11511,230,152,,,,989,,33000076,,, +1650,USA,en,WPQJ971,,Boca Raton (FL),26.36175,-80.082833,,0.01,,7496,284,152,,,,,,20011903,,, +1650,USA,en,WPZQ420,,Aventura/3401 NE 213th Street (FL),25.973333,-80.143489,,0.01,,7532,284,152,,,,,,20011935,,, +1650,USA,en,WQBV776,,Miami (FL),25.794333,-80.264667,,0.01,,7555,284,152,,,,,,20011921,,, +1650,USA,en,WQBV776,,Miami (FL),25.794356,-80.210972,,0.01,,7552,284,152,,,,,,20011917,,, +1650,USA,en,WQFF542,,Lauderhill/1980 NW 56th Ave (FL),26.160214,-80.221667,,0.01,,7522,284,152,,,,,,20011914,,, +1650,USA,en,WQFM352,,Greenacres (FL),26.632278,-80.145611,,0.01,,7478,285,152,,,,,,20011879,,, +1650,ARG,es,R Regional AM,,Laboulaye (cb),-34.116667,-63.4,,1,,11731,234,153,,,,,,33000075,,, +1650,USA,en,WPWL619,,Pensacola (FL),30.461,-87.227697,,0.01,,7617,292,153,,,,,,20011924,,, +1650,USA,en,WQBV776,,Miami (FL),25.782167,-80.325,,0.01,,7560,284,153,,,,,,20011923,,, +1650,USA,en,WQBV776,,Miami (FL),25.793489,-80.411,,0.01,,7565,284,153,,,,,,20011919,,, +1650,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20011933,,, +1650,USA,en,WQHM720,,San Juan County (WA),48.57,-122.97,,0.01,,7839,327,155,,,,,,20011880,,, +1650,USA,en,WQHM720,,Skagit County (WA),48.48,-121.78,,0.01,,7803,326,155,,,,,,20011887,,, +1650,USA,en,WQHM720,,Snohomish County (WA),48.04,-121.71,,0.01,,7842,326,155,,,,,,20011882,,, +1650,USA,en,WQHM720,,Whatcom County (WA),48.83,-121.9,,0.01,,7774,327,155,,,,,,20011904,,, +1650,USA,en,WPLR917,,Baton Rouge (LA),30.394342,-91.065111,,0.01,,7862,295,156,,,,,,20011897,,, +1650,USA,en,WPUJ289,,Kent/220 4th Avenue South (WA),47.380222,-122.244344,,0.01,,7926,326,156,,,,,,20011941,,, +1650,USA,en,WPXL907,,Tacoma (WA),47.244317,-122.394325,,0.01,,7944,326,156,,,,,,20011953,,, +1650,USA,en,WQBM442,,Tacoma (WA),47.244317,-122.394325,,0.01,,7944,326,156,,,,,,20011951,,, +1650,USA,en,WQHF574,,Snoqualmie/3484 Jacobia Street (WA),47.516,-121.876,,0.01,,7899,326,156,,,,,,20011909,,, +1650,USA,en,WQHK903,,Redmond/8450 161st Ave NE (WA),47.6775,-122.126111,,0.01,,7893,326,156,,,,,,20011885,,, +1650,USA,en,WQHK904,,Vashon (WA),47.426856,-122.463889,,0.01,,7930,326,156,,,,,,20011890,,, +1650,USA,en,WQHK904,,Vashon (WA),47.486944,-122.476897,,0.01,,7924,326,156,,,,,,20011891,,, +1650,USA,en,WQHM720,,Island County (WA),48.15,-122.58,,0.01,,7865,327,156,,,,,,20011881,,, +1650,USA,en,WQHM720,,King County (WA),47.47,-121.84,,0.01,,7902,326,156,,,,,,20011884,,, +1650,USA,en,WQHM720,,Pierce County (WA),47.05,-122.11,,0.01,,7952,326,156,,,,,,20011889,,, +1650,USA,en,WQIY272,,North Bend (WA),47.494303,-121.777639,,0.01,,7897,326,156,,,,,,20011899,,, +1650,USA,en,WQDG717,,Keller/133 S Elm St. (TX),32.933167,-97.260164,,0.01,,8018,301,157,,,,,,20011922,,, +1650,USA,en,WPZQ660,,Astoria (OR),46.194303,-123.860978,,0.01,,8101,326,158,,,,,,20011946,,, +1650,USA,en,WPZQ660,,Saeside (OR),45.944331,-123.927669,,0.01,,8128,326,158,,,,,,20011936,,, +1650,USA,en,WPMZ659,,Friendswood/1600 Whitaker Drive (TX),29.496611,-95.211019,,0.01,,8194,297,159,,,,,,20011912,,, +1650,USA,en,WPZQ660,,Grande Ronde (OR),45.061944,-123.577664,,0.01,,8200,326,159,,,,,,20011945,,, +1650,USA,en,WPZQ660,,Lincoln City (OR),45.02765,-123.977658,,0.01,,8219,326,159,,,,,,20011944,,, +1650,USA,en,WPZQ660,,Tillamook (OR),45.461022,-123.83025,,0.01,,8171,326,159,,,,,,20011938,,, +1650,USA,en,WPZS256,,Corvallis (OR),44.561017,-123.264639,,0.01,,8237,325,159,,,,,,20011930,,, +1650,USA,en,WQDK405,,Salem (OR),44.963861,-123.0325,,0.01,,8189,325,159,,,,,,20011925,,, +1650,USA,en,WQET299,,Jefferson (OR),44.744322,-123.061025,,0.01,,8211,325,159,,,,,,20011878,,, +1650,USA,en,WQHQ959,,Bryan (TX),30.677633,-96.375722,,0.01,,8161,299,159,,,,,,20011902,,, +1650,USA,en,WPNY210,,Cedar Park/600 N Bell Blvd (TX),30.527681,-97.860147,,0.01,,8263,300,160,,,,,,20011907,,, +1650,USA,en,WPZQ660,,Florence (OR),43.979667,-124.110983,,0.01,,8326,325,160,,,,,,20011926,,, +1650,USA,en,WPZS256,,Newport (OR),44.644311,-124.045833,,0.01,,8259,326,160,,,,,,20011939,,, +1650,USA,en,WPZS256,,Reedsport (OR),43.710967,-124.110975,,0.01,,8352,325,160,,,,,,20011937,,, +1650,USA,en,WPZS256,,Veneta (OR),44.061011,-123.347806,,0.01,,8288,325,160,,,,,,20011915,,, +1650,USA,en,WPZS256,,Bandon (OR),43.127653,-124.398639,,0.01,,8420,325,161,,,,,,20011920,,, +1650,USA,en,WPZS256,,Coos Bay (OR),43.29575,-124.216056,,0.01,,8397,325,161,,,,,,20011918,,, +1650,USA,en,WPTK527,,Auburn (CA),38.923889,-121.060964,,0.01,,8691,321,163,,,,,,20011934,,, +1650,USA,en,KBXZ,,Flagstaff (AZ),35.2,-111.616667,,0.001,,8600,312,172,,,,,,20012534,,, +1653,POR,,Olho Pescas R,u,Olho (agv),37.033333,-7.833333,,1,,2013,219,77,,????-????,1234567,,,19901304,,, +1656,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,????-????,1234567,,,4000011,,, +1656,E,,EAC Chipiona R,u,Chipiona (AND-CA),36.673678,-6.406417,,1,,1989,215,77,,0733-0748,1234567,,,2200023,,, +1656,E,,EAC Chipiona R,u,Chipiona (AND-CA),36.673678,-6.406417,,1,,1989,215,77,,1233-1248,1234567,,,2200023,,, +1656,E,,EAC Chipiona R,u,Chipiona (AND-CA),36.673678,-6.406417,,1,,1989,215,77,,1933-1948,1234567,,,2200023,,, +1656,ERI,,ETC Assab R,u,Assab=Aseb (dkb),13.016667,42.741667,,1,,5417,130,111,,????-????,1234567,,,19900510,,, +1656,AUS,ar,2ME R,,Perth/Holmes Street (WA),-32.101111,115.964444,,0.4,,14056,97,164,,,,,,37700005,,, +1656,AUS,el,Rythmos 1656,,Melbourne (VIC),-37.816667,144.966667,,1,,16451,80,168,,,,,,37700160,,, +1656,AUS,zh,VAC-Voice of Australian Chinese,,Brisbane/Sunnybank Hills (QLD),-27.610883,153.053889,,0.4,,16136,58,171,,,,9952,,37700028,,, +1656,AUS,el,2MM Greek R,,Sydney/Kareela (NSW),-34.011944,151.084167,,0.4,,16563,68,173,,,,997,,37700006,,, +1656,AUS,,The Axe,,Broken Hill/622 Beryl St (NSW),-31.933333,141.483333,,0.05,,15774,76,179,,,,,,37700031,,, +1656,AUS,,VJS577,,Adelaide/Willunga (SA),-35.266111,138.553056,,0.0005,,15832,83,199,,,,,,37700007,,, +1657.5,HOL,,Den Helder SAR,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,-1657.5,,19900639,,, +1659,ISL,,TFT Hornafjrur R,u,Hornafjrur (au),64.252778,-15.205556,,1,,1834,326,75,,????-????,1234567,,,19900824,,, +1659,NOR,,LGP Bod R,u,Andenes (no),69.316667,16.122222,,1,,1979,11,77,,0623-0638,1234567,,,6300004,,, +1659,NOR,,LGP Bod R,u,Andenes (no),69.316667,16.122222,,1,,1979,11,77,,1203-1218,1234567,,,6300004,,, +1659,NOR,,LGP Bod R,u,Andenes (no),69.316667,16.122222,,1,,1979,11,77,,2303-2318,1234567,,,6300004,,, +1660,GRC,el,R Aquarius,,Athnai (att-ath),38,23.75,,1,,2067,133,78,,,,,,3400053,,, +1660,USA,,WWRU,,Jersey City/Carlstadt (N) (NJ),40.820278,-74.069167,,10,,5965,292,107,,,,24,,20016215,,, +1660,USA,ko,WWRU,,Jersey City/Carlstadt (D) (NJ),40.820278,-74.067778,,10,,5965,292,107,,,,24,,32312,,, +1660,USA,en,WQLR,,Kalamazoo (MI),42.236389,-85.576944,,1,,6563,300,123,,,,9980,,42793,,, +1660,USA,en,KQWB,,West Fargo (ND),46.975833,-96.583889,,1,,6798,311,125,,,,9935,,39211,,, +1660,USA,en,WBCN,,Charlotte (NC),35.248889,-80.862222,,1,,6823,292,125,,,,0,,41412,,, +1660,PTR,es,WGIT,,Canvanas (PR),18.385833,-65.921111,,1,,7205,268,129,,0000-2400,1234567,998,,30428,,, +1660,USA,en,KUDL,,Kansa City (KS),39.038056,-94.615556,,1,,7345,303,130,,,,0,,39831,,, +1660,USA,en,WCNZ,,Marco Island (FL),25.991667,-81.625,,1,,7629,285,133,,,,21,,41052,,, +1660,USA,en,KRZI,,Waco (TX),31.518333,-97.088056,,1,,8131,300,138,,,,,,39321,,, +1660,USA,es,KXOL,,Brigham City (UT),41.315,-112.078611,,1,,8060,316,138,,,,2,,39812,,, +1660,USA,en,WQEY864,,Lakewood (OH),41.477678,-81.814722,,0.01,,6396,297,141,,,,,,20011962,,, +1660,USA,es,KTIQ,,Merced (CA),37.278056,-120.626389,,1,,8831,320,143,,,,83,,39490,,, +1660,USA,en,WPVW207,,Kettering (OH),39.693583,-84.147139,,0.01,,6676,297,144,,,,,,20011980,,, +1660,USA,en,WQBW823,,Lisle/4905 Yackley Ave (IL),41.794167,-88.09,,0.01,,6745,302,144,,,,,,20011976,,, +1660,USA,en,WQFE239,,Palatine (IL),42.120278,-88.048889,,0.01,,6717,302,144,,,,,,20011963,,, +1660,USA,en,WQIQ672,,Skokie (IL),42.044314,-87.746806,,0.01,,6705,301,144,,,,,,20011965,,, +1660,USA,en,WQEY238,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20011974,,, +1660,USA,en,WQDN417,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20011979,,, +1660,USA,en,WQEN596,,Orlando (FL),28.533333,-81.383333,,0.01,,7401,287,151,,,,,,20011964,,, +1660,USA,en,WQEX384,,Marion (TN),35.161028,-90.09625,,0.01,,7403,298,151,,,,,,20011983,,, +1660,USA,en,WQEX384,,Memphis (TN),35.161008,-90.027669,,0.01,,7398,298,151,,,,,,20011985,,, +1660,USA,en,WQEX384,,Memphis (TN),35.177675,-89.844303,,0.01,,7386,298,151,,,,,,20011988,,, +1660,USA,en,WQEX384,,Memphis (TN),35.177683,-89.911019,,0.01,,7390,298,151,,,,,,20011987,,, +1660,USA,en,WQEX384,,Memphis (TN),35.194356,-89.961006,,0.01,,7392,298,151,,,,,,20011986,,, +1660,USA,en,WQEX384,,West Memphis (TN),35.177642,-90.18175,,0.01,,7406,298,151,,,,,,20011984,,, +1660,USA,en,WQEX385,,Memphis (TN),35.027647,-90.010992,,0.01,,7408,298,151,,,,,,20011969,,, +1660,USA,en,WQEX385,,Memphis (TN),35.076028,-89.994294,,0.01,,7403,298,151,,,,,,20011975,,, +1660,USA,en,WQEX385,,Memphis (TN),35.110333,-90.029639,,0.01,,7403,298,151,,,,,,20011977,,, +1660,USA,en,WQEX385,,Memphis (TN),35.110989,-90.076472,,0.01,,7406,298,151,,,,,,20011981,,, +1660,USA,en,WQEX385,,Memphis (TN),35.147722,-89.944139,,0.01,,7394,298,151,,,,,,20011982,,, +1660,USA,en,WQEX385,,Memphis (TN),35.194194,-89.793083,,0.01,,7381,298,151,,,,,,20011989,,, +1660,USA,en,WQEY238,,Memphis (TN),35.027833,-89.776583,,0.01,,7394,297,151,,,,,,20011973,,, +1660,USA,en,WQEY238,,Memphis (TN),35.060972,-89.830917,,0.01,,7395,297,151,,,,,,20011972,,, +1660,USA,en,WQEY238,,Memphis (TN),35.080139,-89.929417,,0.01,,7399,298,151,,,,,,20011970,,, +1660,USA,en,WQEY238,,Memphis (TN),35.110994,-89.877686,,0.01,,7393,298,151,,,,,,20011971,,, +1660,ARG,es,R Revivir AM,,Isidro Casanova (ba),-34.7,-58.583333,,1,,11524,230,152,,,,7,,33000006,,, +1660,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20011967,,, +1660,USA,en,WQEB205,,Eugene (OR),43.9925,-122.994389,,0.01,,8281,325,160,,,,,,20011959,,, +1660,USA,en,WQEB206,,Eugene (OR),44.061022,-122.944306,,0.01,,8273,325,160,,,,,,20011978,,, +1660,USA,en,WQEQ530,,Eugene (OR),44.094339,-123.076694,,0.01,,8275,325,160,,,,,,20011968,,, +1660,USA,en,WD2XFY,,Durham (NC),35.919444,-78.846111,,0.0001,,6641,291,163,,,,,,20011966,,, +1660,USA,en,WPTV288,,Mission (TX),26.206944,-98.344317,,0.01,,8671,297,163,,,,,,20011961,,, +1660,USA,en,WPJP551,,San Diego/111 W Harbor Drive (CA),32.707778,-117.164167,,0.01,,9108,315,164,,,,,,20011960,,, +1660.4,TUN,,3VZ Zarzis R,u,Zarzis (med),33.5,11.116667,,1,,2104,168,78,,????-????,1234567,-1660.4,,19901428,,, +1662,BUL,,LZL Burgas R,u,Burgas (bur),42.5,27.472222,,1,,1903,116,76,,????-????,1234567,,,19900277,,, +1662.5,G,,GUC SAR Guernsey,u,St Peter Port/Trinity House (GUE),49.461111,-2.536111,,1,,694,248,64,,????-????,1234567,-1662.5,,19900568,,, +1663,ERI,,ETC Assab R,u,Assab=Aseb (dkb),13.016667,42.741667,,1,,5417,130,111,,????-????,1234567,,,19900511,,, +1663.5,MDR,,Faial R,u,Faial (md),32.783333,-16.85,,1,,2849,230,85,,????-????,1234567,-1663.5,,19900224,,, +1663.5,AZR,,CUG So Miguel R,u,So Miguel (smg),37.766667,-25.5,,1,,2939,250,86,,????-????,1234567,-1663.5,,19900231,,, +1663.5,J,ja,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,:15-:30,1234567,-1663.5,,31400017,,, +1663.5,J,ja,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,:45-:00,1234567,-1663.5,,31400017,,, +1663.5,J,ja,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,:00-:15,1234567,-1663.5,,31400018,,, +1663.5,J,ja,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,:30-:45,1234567,-1663.5,,31400018,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,0233-0248,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,0633-0648,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,1033-1048,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,1433-1448,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,1833-1848,1234567,,,6300005,,, +1665,NOR,,LGT Tjme R,u,Tjme (ve),59.116667,10.4,,1,,818,16,65,,2233-2248,1234567,,,6300005,,, +1665,BUL,,LZW Varna R,u,Varna/Bolyartsi (vrn),43.068056,27.786111,,1,,1881,114,76,,????-????,1234567,,,19900280,,, +1665,GRL,,Ittoqqotoormiit R,u,Ittoqqotoormiit (sms-itt),70.484528,-21.952292,,1,,2493,335,82,,????-????,1234567,,,3500017,,, +1665,J,,Nagoya Harbour Radar,u,Nagoya (chu-aic),35.166667,136.916667,,0.05,,9187,39,157,,,,,,19900900,,, +1665,AUS,el,2MM Greek R,,Sydney/Marrickville (NSW),-33.915778,151.1635,,0.4,,16561,68,173,,0000-2400,1234567,9974,,51573,,, +1667,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,????-????,1234567,,,4000017,,, +1669,J,ja,Weather Info,h,Yagishiri (hok),44.440556,141.325,,0.05,,8444,31,154,,,,,,51601,,, +1669,J,ja,Weather Info,h,Shakotan (hok),43.370472,140.467628,,0.05,,8519,32,155,,,,,,51593,,, +1669,J,ja,Weather Info,h,Erimo (hok),41.926025,143.243144,,0.05,,8763,31,156,,,,,,51578,,, +1669,J,ja,Weather Info,h,Hegura (chu-ish),37.85,136.916667,,0.05,,8924,38,156,,,,,,51581,,, +1669,J,ja,Weather Info,h,Kamitsushima (kyu-nag),34.662,129.479889,,0.05,,8898,44,156,,,,,,51584,,, +1669,J,ja,Weather Info,h,Nyudosaki (toh-aki),40.004944,139.701361,,0.05,,8824,35,156,,,,,,51591,,, +1669,J,ja,Weather Info,h,Shiriyazaki (toh-aom),41.429444,141.462222,,0.05,,8749,33,156,,,,,,51595,,, +1669,J,ja,Weather Info,h,Tappikaitei (toh-aom),41.259444,140.342389,,0.05,,8724,34,156,,,,,,51597,,, +1669,J,ja,Weather Info,h,Ashizuri (shi-koc),32.723333,133.004722,,0.05,,9250,43,157,,,,,,51574,,, +1669,J,ja,Weather Info,h,Awashima (shi-kag),34.272222,133.633333,,0.05,,9129,42,157,,,,,,51575,,, +1669,J,ja,Weather Info,h,Echizenmisaki (chu-fuk),35.982222,135.961111,,0.05,,9066,39,157,,,,,,51577,,, +1669,J,ja,Weather Info,h,Hagimishima (chg-yam),34.76,131.147778,,0.05,,8968,43,157,,,,,,51580,,, +1669,J,ja,Weather Info,h,Kinkasan (toh-miy),38.277419,141.582989,,0.05,,9068,34,157,,,,,,51585,,, +1669,J,ja,Weather Info,h,Meshima (kyu-nag),31.983333,128.35,,0.05,,9097,47,157,,,,,,51587,,, +1669,J,ja,Weather Info,h,Takohana (chg-shi),35.602583,133.090111,,0.05,,8976,41,157,,,,,,51596,,, +1669,J,ja,Weather Info,h,Todogasaki (toh-iwa),39.546661,142.071072,,0.05,,8959,33,157,,,,,,51598,,, +1669,J,ja,Weather Info,h,Wakamiya Shima (kyu-nag),33.868811,129.686456,,0.05,,8984,45,157,,,,,,51600,,, +1669,J,ja,Weather Info,h,Daio (kns-mie),34.285833,136.890833,,0.05,,9272,39,158,,,,,,51576,,, +1669,J,ja,Weather Info,h,Hachijojima (kan-tok),33.079444,139.853611,,0.05,,9517,38,158,,,,,,51579,,, +1669,J,ja,Weather Info,h,Inubo (kan-chi),35.707347,140.8681,,0.05,,9297,36,158,,,,,,51582,,, +1669,J,ja,Weather Info,h,Iro (chu-shi),34.603611,138.843056,,0.05,,9324,38,158,,,,,,51583,,, +1669,J,ja,Weather Info,h,Muroto (shi-koc),33.251556,134.177083,,0.05,,9253,42,158,,,,,,51589,,, +1669,J,ja,Weather Info,h,Nojima (kan-chi),34.902711,139.888817,,0.05,,9337,37,158,,,,,,51590,,, +1669,J,ja,Weather Info,h,Shionomisaki (kns-wak),33.442889,135.784056,,0.05,,9306,40,158,,,,,,51594,,, +1669,J,ja,Weather Info,h,Toi (kyu-miy),31.362028,131.335778,,0.05,,9302,45,158,,,,,,51599,,, +1669,J,ja,Weather Info,h,Miyakojima (kyu-oki),24.766667,125.283333,,0.05,,9617,53,159,,,,,,51588,,, +1670,CAN,fr,CJEU,,Gatineau (QC),45.507778,-75.695,,1,,5730,298,114,,,,3,,20100004,,, +1670,USA,en,WOZN,,Madison (WI),43.025278,-89.396111,,1,,6723,303,124,,,,13,,32023,,, +1670,USA,en,WPLA,,Dry Branch (GA),32.804444,-83.604444,,1,,7194,292,129,,,,135,,31327,,, +1670,USA,es,KHPY,,Moreno Valley (CA),34.011667,-117.184167,,9,,8985,316,134,,,,9996,,38557,,, +1670,USA,,WQDG293,,Old Saybrook (CT),41.316667,-72.383333,,0.01,,5822,292,135,,,,,,20000029,,, +1670,USA,,WQDG293,,Waterford (CT),41.35,-72.15,,0.01,,5805,291,135,,,,,,20000030,,, +1670,USA,en,WNQN649,,East Hartford (CT),41.777675,-72.594333,,0.01,,5802,292,135,,,,,,20012076,,, +1670,USA,en,WPML750,,Branford (CT),41.295,-72.761944,,0.01,,5848,292,135,,,,,,20012012,,, +1670,USA,en,WQDG293,,Madison (CT),41.290833,-72.572222,,0.01,,5836,292,135,,,,,,20000027,,, +1670,USA,en,WQDG293,,North Haven/311 State St (CT),41.377697,-72.882778,,0.01,,5850,292,135,,,,,,20012064,,, +1670,USA,en,WQDG293,,Old Saybrook/660 Middlesex Turnpike (CT),41.320833,-72.376389,,0.01,,5822,292,135,,,,,,20012054,,, +1670,USA,en,WQDG293,,Waterford (CT),41.372222,-72.130556,,0.01,,5802,291,135,,,,,,20012053,,, +1670,USA,en,WQEA416,,Southington (CT),41.612778,-72.899556,,0.01,,5834,292,135,,,,,,20012090,,, +1670,USA,en,WQEA416,,Waterbury (CT),41.548583,-73.062028,,0.01,,5849,292,135,,,,,,20012086,,, +1670,USA,en,WPML750,,Fairfield (CT),41.146194,-73.260992,,0.01,,5890,292,136,,,,,,20012009,,, +1670,USA,en,WPML750,,Stamford (CT),41.060981,-73.512611,,0.01,,5912,292,136,,,,,,20012008,,, +1670,USA,en,WPML750,,Stratford (CT),41.17765,-73.160989,,0.01,,5882,292,136,,,,,,20012007,,, +1670,USA,en,WPML750,,West Haven (CT),41.277861,-72.964278,,0.01,,5862,292,136,,,,,,20012011,,, +1670,USA,en,WQFQ235,,Harvey Cedars (NJ),39.6925,-74.142833,,0.01,,6053,291,137,,,,,,20012035,,, +1670,USA,en,WQFJ980,,Tonawanda/130 N Syracuse St. (NY),43.010969,-78.866,,0.01,,6102,297,138,,,,,,20012082,,, +1670,USA,en,WQFV859,,Tuckerton/111 N. Green St.-Police Dept. (NJ),39.604167,-74.339167,,0.01,,6072,291,138,,,,,,20011997,,, +1670,USA,en,WPUP271,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20012062,,, +1670,USA,en,WPWF725,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20012052,,, +1670,USA,en,WQFG978,,Burke (VA),38.777658,-77.277658,,0.01,,6321,292,140,,,,,,20012036,,, +1670,USA,en,WQFG978,,Fairfax (VA),38.845361,-77.315083,,0.01,,6318,292,140,,,,,,20012040,,, +1670,USA,en,WQFG978,,Franconia (VA),38.777683,-77.111389,,0.01,,6310,292,140,,,,,,20012033,,, +1670,USA,en,WQFG978,,Reston (VA),38.962111,-77.360997,,0.01,,6312,292,140,,,,,,20012042,,, +1670,USA,en,WQHS749,,Alexandria (VA),38.731278,-77.110992,,0.01,,6314,292,140,,,,,,20012039,,, +1670,USA,en,WQHS749,,Annandale (VA),38.828306,-77.194303,,0.01,,6312,292,140,,,,,,20012067,,, +1670,USA,en,WQHS749,,Great Falls (VA),38.998167,-77.294303,,0.01,,6305,292,140,,,,,,20012091,,, +1670,USA,en,WQHS749,,Lorton (VA),38.698278,-77.213361,,0.01,,6323,292,140,,,,,,20012072,,, +1670,USA,en,WQIC880,,Centreville (VA),38.844344,-77.444322,,0.01,,6326,292,140,,,,,,20012057,,, +1670,USA,en,WQIC880,,Chantilly (VA),38.894333,-77.410981,,0.01,,6320,292,140,,,,,,20012034,,, +1670,USA,en,WQIC880,,Falls Church (VA),38.910981,-77.211014,,0.01,,6306,292,140,,,,,,20012047,,, +1670,USA,en,WQIY393,,Gaithersburg (MD),39.127683,-77.177028,,0.01,,6288,292,140,,,,,,20012063,,, +1670,USA,en,WQIY393,,Laurel (MD),39.071667,-76.907222,,0.01,,6275,292,140,,,,,,20012038,,, +1670,USA,en,WQIY393,,Olney (MD),39.126839,-77.075,,0.01,,6282,292,140,,,,,,20012055,,, +1670,USA,en,WQIY393,,Silver Spring (MD),39.088056,-76.999722,,0.01,,6280,292,140,,,,,,20012037,,, +1670,USA,en,WQJB782,,Gaithersburg (MD),39.127683,-77.177028,,0.01,,6288,292,140,,,,,,20012093,,, +1670,USA,en,WQJB782,,Laurel (MD),39.071667,-76.907222,,0.01,,6275,292,140,,,,,,20012073,,, +1670,USA,en,WQJB782,,Olney (MD),39.126839,-77.075,,0.01,,6282,292,140,,,,,,20012071,,, +1670,USA,en,WQJB782,,Silver Spring (MD),39.088056,-76.999722,,0.01,,6280,292,140,,,,,,20012081,,, +1670,USA,en,WPZV580,,Wyandotte/3575 11th Street (MI),42.196667,-83.165833,,0.01,,6423,299,141,,,,,,20012065,,, +1670,USA,en,WPZY431,,Livonia/14190 Farmington Road (MI),42.393506,-83.3725,,0.01,,6420,299,141,,,,,,20012014,,, +1670,USA,en,WQDC928,,Pepper Pike/28000 Shaker Blvd (OH),41.477528,-81.481111,,0.01,,6376,297,141,,,,,,20012061,,, +1670,USA,en,WQGH347,,Troy/City Hall (MI),42.5635,-83.161022,,0.01,,6394,299,141,,,,,,20012023,,, +1670,USA,en,WQHF983,,Chesterfield (VA),37.360278,-77.538056,,0.01,,6446,291,141,,,,,,20012010,,, +1670,USA,en,WQIH716,,Etna/2 Pine Street (PA),40.5,-79.945,,0.01,,6356,295,141,,,,,,20012068,,, +1670,USA,en,KNRO,,Redding (CA),40.558611,-122.33,,1,,8587,323,142,,,,9952,,39013,,, +1670,USA,en,WQCQ541,,Chicago (IL),41.715,-87.640833,,0.01,,6725,301,144,,,,,,20012092,,, +1670,USA,en,WQCQ541,,Chicago (IL),41.774167,-87.626667,,0.01,,6719,301,144,,,,,,20012088,,, +1670,USA,en,WQCQ541,,Chicago (IL),41.866667,-87.644444,,0.01,,6713,301,144,,,,,,20012074,,, +1670,USA,en,WQGT211,,St. John (IN),41.45,-87.477633,,0.01,,6736,301,144,,,,,,20012016,,, +1670,MEX,es,XEANAH-AM,,Huixquilucan (mex),19.366667,-99.35,,1,,9342,294,145,,,,,,34900006,,, +1670,USA,en,WPVB565,,Bluffton (SC),32.244356,-80.977633,,0.01,,7071,289,148,,,,,,20012079,,, +1670,USA,en,WQFA538,,Des Moines (IA),41.598333,-93.776111,,0.01,,7086,305,148,,,,,,20012056,,, +1670,USA,en,WQFA538,,Des Moines (IA),41.627833,-93.576167,,0.01,,7072,305,148,,,,,,20012049,,, +1670,USA,en,WPWV584,,Pierre (SD),44.366667,-100.35,,0.01,,7209,311,149,,,,,,20012046,,, +1670,USA,en,WPZH604,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20012026,,, +1670,ARG,es,R Gratitud,,Glew (ba),-34.884167,-58.365,,1,,11530,230,152,,,,,,33000084,,, +1670,ARG,es,R Rubi,,Rafael Castillo (ba),-34.716667,-58.616667,,1,,11528,230,152,,,,7,,33000086,,, +1670,USA,en,WPMN326,,Fort Lauderdale (FL),26.077644,-80.160972,,0.01,,7525,284,152,,,,,,20012013,,, +1670,USA,en,WPTK330,,Boynton Beach/551 NW 14th St. (FL),26.541111,-80.071667,,0.01,,7480,285,152,,,,,,20012018,,, +1670,USA,en,WQBV751,,Miami Beach/2800 N. Meridian Ave (FL),25.803889,-80.143514,,0.01,,7546,284,152,,,,,,20012002,,, +1670,USA,en,WQFL543,,Coral Springs/3800 NW 85th Ave (FL),26.2775,-80.240833,,0.01,,7513,284,152,,,,,,20012070,,, +1670,USA,en,WQFL554,,North Miami Beach (FL),25.93,-80.191667,,0.01,,7539,284,152,,,,,,20012075,,, +1670,USA,en,WQFU302,,Pembroke Pines (FL),26.011033,-80.327681,,0.01,,7541,284,152,,,,,,20012003,,, +1670,USA,en,WQFU302,,Pembroke Pines (FL),26.029194,-80.413222,,0.01,,7545,284,152,,,,,,20012001,,, +1670,USA,en,WQFW850,,Palm Beach Gardens (FL),26.830389,-80.110206,,0.01,,7459,285,152,,,,,,20011990,,, +1670,USA,en,WQCR876,,Laramie (WY),41.313889,-105.559722,,0.01,,7740,312,154,,,,,,20012089,,, +1670,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20012027,,, +1670,USA,en,WPLR917,,Baton Rouge (LA),30.444347,-91.027656,,0.01,,7856,295,156,,,,,,20012087,,, +1670,USA,en,WQBX491,,Ardmore (OK),34.36225,-97.194361,,0.01,,7891,302,156,,,,,,20011992,,, +1670,USA,en,WPIW244,,Farmers Branch (TX),32.944319,-96.879444,,0.01,,7995,301,157,,,,,,20012004,,, +1670,USA,en,WPMG537,,Midlothian/235 N 8th St. (TX),32.494325,-96.995,,0.01,,8040,301,157,,,,,,20012022,,, +1670,USA,en,WPPG486,,Watauga/7101 Whitley Road (TX),32.877667,-97.260964,,0.01,,8023,301,157,,,,,,20012044,,, +1670,USA,en,WQDL980,,Murphy/206 N Murphy Ave (TX),33.0145,-96.609167,,0.01,,7973,301,157,,,,,,20012066,,, +1670,USA,en,WQDG929,,Camas/1129 SE Polk St. (WA),45.579167,-122.39,,0.01,,8104,325,158,,,,,,20012048,,, +1670,USA,en,WQDG929,,Camas/4321 NW Parker St. (WA),45.608333,-122.460197,,0.01,,8104,325,158,,,,,,20012045,,, +1670,USA,en,WQGT206,,Cleburne (TX),32.3625,-97.409167,,0.01,,8076,301,158,,,,,,20012017,,, +1670,USA,en,WQHQ316,,Kurten (TX),30.794303,-96.264694,,0.01,,8144,299,158,,,,,,20012080,,, +1670,USA,en,WPEZ840,,Eagle Lake/Prairie Plant (TX),29.610994,-96.378861,,0.01,,8254,298,159,,,,,,20012032,,, +1670,USA,en,WPEZ840,,La Grange (TX),29.927683,-96.761025,,0.01,,8250,299,159,,,,,,20012019,,, +1670,USA,en,WQFW866,,Katy/Community Fire Station (TX),29.704167,-95.744331,,0.01,,8208,298,159,,,,,,20011996,,, +1670,USA,en,WQFW866,,Missouri City (TX),29.543497,-95.526856,,0.01,,8209,298,159,,,,,,20011994,,, +1670,USA,en,WQFW866,,Needville/Brazos Bend State Park (TX),29.377636,-95.596778,,0.01,,8227,298,159,,,,,,20011991,,, +1670,USA,en,WQFW866,,Sugarland/Fire Station (TX),29.627658,-95.637778,,0.01,,8208,298,159,,,,,,20011995,,, +1670,USA,en,WQFW866,,Thompsons/Parish Power Plant (TX),29.479722,-95.643547,,0.01,,8221,298,159,,,,,,20011993,,, +1670,USA,en,WQFW867,,Beasley/Volunteer Fire Department (TX),29.496639,-95.916722,,0.01,,8236,298,159,,,,,,20012030,,, +1670,USA,en,WQFW867,,Fulshear (TX),29.695,-95.910164,,0.01,,8219,298,159,,,,,,20012028,,, +1670,USA,en,WQFW867,,Needville/9110 Long Street (TX),29.395833,-95.840833,,0.01,,8240,298,159,,,,,,20012020,,, +1670,USA,en,WQFW867,,Orchard/Volunteer Fire Department (TX),29.610986,-95.977678,,0.01,,8230,298,159,,,,,,20012029,,, +1670,USA,en,WQFW867,,Rosenburg/5320 Reading Rd.-Fire Station (TX),29.561025,-95.777664,,0.01,,8222,298,159,,,,,,20012031,,, +1670,USA,en,WQHQ316,,Milligan (TX),30.477697,-96.214639,,0.01,,8169,299,159,,,,,,20012078,,, +1670,USA,en,WQIQ632,,Tucumcari (NM),35.160983,-103.728056,,0.01,,8189,307,159,,,,,,20012041,,, +1670,USA,en,WPEZ840,,Bastrop/Sim Gideon Power Plant (TX),30.149111,-97.271667,,0.01,,8261,299,160,,,,,,20012006,,, +1670,USA,en,WPTZ515,,Lago Vista (TX),30.460194,-97.994297,,0.01,,8276,300,160,,,,,,20012077,,, +1670,USA,en,WQBV749,,Smithville/Rail Yard (TX),30.005556,-97.161389,,0.01,,8267,299,160,,,,,,20012000,,, +1670,USA,en,WQBV749,,Webberville (TX),30.23,-97.516667,,0.01,,8268,299,160,,,,,,20011999,,, +1670,USA,en,WQIV256,,Wharton (TX),29.327639,-96.110172,,0.01,,8263,298,160,,,,,,20012060,,, +1670,USA,en,WQGD297,,Devine (TX),29.093547,-98.961167,,0.01,,8454,300,161,,,,,,20012025,,, +1670,USA,en,KNIG427,,Camino (CA),38.749056,-120.61575,,0.01,,8689,320,163,,,,,,20012051,,, +1670,USA,en,KNIG427,,Placerville/3065 Blairs Lane (CA),38.731028,-120.783278,,0.01,,8698,321,163,,,,,,20012050,,, +1670,USA,en,WPIN401,,Dixon (CA),38.494347,-121.811028,,0.01,,8765,321,163,,,,,,20011998,,, +1670,USA,en,WPMW520,,Menlo Park/701 Laurel St. (CA),37.454111,-122.179417,,0.01,,8881,321,163,,,,,,20012005,,, +1670,USA,en,WPRI265,,Sacramento (CA),38.509639,-121.460222,,0.01,,8748,321,163,,,,,,20012069,,, +1670,USA,en,WPRI265,,Sacramento (CA),38.564917,-121.344353,,0.01,,8738,321,163,,,,,,20012015,,, +1670,USA,en,WPRI265,,Sacramento (CA),38.627683,-121.5155,,0.01,,8739,321,163,,,,,,20012083,,, +1670,USA,en,WPRI265,,Sacramento (CA),38.699333,-121.316889,,0.01,,8724,321,163,,,,,,20012085,,, +1670,USA,en,WPSH292,,Woodland (CA),38.677681,-121.644364,,0.01,,8740,321,163,,,,,,20012021,,, +1670,USA,en,WPWG225,,Colfax (CA),39.111003,-120.949389,,0.01,,8668,321,163,,,,,,20012043,,, +1670,USA,en,WPWG225,,Gold Run (CA),39.180444,-120.861017,,0.01,,8658,321,163,,,,,,20012059,,, +1670,USA,en,WQFI529,,Sacramento (CA),38.583333,-121.5,,0.01,,8743,321,163,,,,,,20012084,,, +1670,USA,en,WQGH344,,Cupertino/City Hall (CA),37.327653,-122.028694,,0.01,,8887,321,163,,,,18,,20012024,,, +1670,USA,en,WTNR210,,Menlo Park (CA),37.45,-122.183333,,0.01,,8882,321,163,,,,9801,,51947,,, +1670.5,J,ja,Kushiro Harbor Radar,h,Kushiro (hok),42.983333,144.416667,,0.05,,8698,30,156,,,,-1670.5,,51586,,, +1671,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,0750-0930,1234567,,,2500018,,, +1672.4,TUN,,3VS Sfax R,u,Sfax (sfa),34.733333,10.766667,,1,,1963,168,77,,????-????,1234567,-1672.4,,19901421,,, +1674,S,,SDJ Stockholm R,u,Stavsns (st),59.288889,18.686111,,1,,1105,39,68,,1550-1607,1234567,,,6800004,,, +1674,S,,SDJ Stockholm R,u,Stavsns (st),59.288889,18.686111,,1,,1105,39,68,,2220-2237,1234567,,,6800004,,, +1674,GHA,,9GX Tema R,u,Tema (gac),5.633333,-0.002778,,1,,5201,189,109,,????-????,1234567,,,19900590,,, +1674,PHL,tl,DZBF-AM Radyo Marikina,,Marikina City/Engineering Center (ncr),14.640556,121.102778,,1,,10318,62,148,,2213-1130,1234567,993,,51605,,, +1674,AUS,en,Vision R Network,,Logan (QLD),-27.633333,153.116667,,1,,16142,58,167,,,,396,,37700102,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0033-0048,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0433-0448,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,0833-0848,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1233-1248,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,1633-1648,1234567,,,4100010,,, +1677,IRL,en,EJM Malin Head Coastguard R,u,Malin Head (DL),55.363278,-7.33925,,1,,972,297,67,,2033-2048,1234567,,,4100010,,, +1677,E,,EAS Cabo de Peas R,u,Cabo de Peas (AST-O),43.6555,-5.848517,,1,,1308,229,70,,0703-0718,1234567,,,2200020,,, +1677,E,,EAS Cabo de Peas R,u,Cabo de Peas (AST-O),43.6555,-5.848517,,1,,1308,229,70,,1303-1318,1234567,,,2200020,,, +1677,E,,EAS Cabo de Peas R,u,Cabo de Peas (AST-O),43.6555,-5.848517,,1,,1308,229,70,,1903-1918,1234567,,,2200020,,, +1677,E,,EAS Cabo de Peas R,u,Cabo de Peas (AST-O),43.6555,-5.848517,,1,,1308,229,70,,2003-2008,1234567,,,2200020,,, +1680,I,,IPN Venezia R,u,Venezia (ve),45.439722,12.3125,,1,,858,147,66,,????-????,1234567,,,19900678,,, +1680,NOR,,LGL Flor R,u,Flor (sf),61.597625,4.998556,,1,,1058,356,68,,1215-1230,1234567,,,6300006,,, +1680,NOR,,LGL Flor R,u,Flor (sf),61.597625,4.998556,,1,,1058,356,68,,2315-2330,1234567,,,6300006,,, +1680,POR,,Matosinhos Pescas R,u,Matosinhos (prt),41.183333,-8.7,,1,,1669,229,74,,????-????,1234567,,,19901302,,, +1680,POR,,Setbal Pescas R,u,Setbal (set),38.516667,-8.869444,,1,,1918,224,76,,????-????,1234567,,,19901307,,, +1680,AFG,,R Helmand,,Lashkar Ga (hel),31.583333,64.333333,,0.1,,5146,93,118,,1230-1500,1234567,,,46821,,, +1680,USA,es,WTTM,,Lindenwold (NJ),39.887778,-75.001389,,1,,6093,292,118,,0000-2400,1234567,9961,,43226,,, +1680,USA,en,WPRR,,Ada (MI),42.935833,-85.457222,,0.68,,6502,301,124,,,,18,,41211,,, +1680,DOM,,HISV R Senda,,San Pedro de Macors (pms),18.466667,-69.283333,,1,,7428,271,131,,,,998,,21100001,,, +1680,USA,en,WOKB,,Winter Garden (FL),28.568889,-81.518889,,1,,7407,287,131,,0000-2400,1234567,0,,20000022,,, +1680,USA,en,KRJO,,Monroe (LA),32.456667,-92.018333,,1,,7746,297,134,,0000-2400,1234567,997,,39251,,, +1680,USA,es,KNTS,,Seattle (WA),47.655556,-122.518056,,1,,7910,326,136,,0000-2400,1234567,3,,39470,,, +1680,USA,en,WPUS416,,Secaucus (NJ),40.777778,-74.063889,,0.01,,5968,292,137,,,,,,20012094,,, +1680,USA,en,WPMQ427,,Harrisburg (PA),40.266667,-76.883333,,0.01,,6184,293,139,,,,,,20012095,,, +1680,USA,en,WQBU642,,Falls Church/300 Park Avenue (VA),38.894353,-77.172222,,0.01,,6305,292,140,,,,,,20012139,,, +1680,USA,en,WQCX404,,Westlake (OH),41.461389,-81.927633,,0.01,,6404,297,141,,,,,,20012157,,, +1680,USA,en,WQCX405,,Virginia Beach/1632 Deere Court (VA),36.661006,-76.010997,,0.01,,6402,290,141,,,,,,20012138,,, +1680,USA,en,WQCX405,,Virginia Beach/4722 Jericho Drive (VA),36.861,-76.144297,,0.01,,6395,290,141,,,,,,20012156,,, +1680,USA,en,WQCX405,,Virginia Beach/Juvenal Detention Center (VA),36.761025,-76.063972,,0.01,,6398,290,141,,,,,,20012136,,, +1680,USA,en,WQCX405,,Virginia Beach/Seatack Park (VA),36.845917,-75.994333,,0.01,,6387,290,141,,,,,,20012140,,, +1680,USA,en,WPNY994,,Garner (NC),35.599611,-78.577222,,0.01,,6649,290,143,,,,,,20012164,,, +1680,USA,en,WPNY994,,Manson (NC),36.429861,-78.296389,,0.01,,6566,291,143,,,,,,20012144,,, +1680,USA,en,WPNY994,,Mebane (NC),36.077639,-79.210961,,0.01,,6652,291,143,,,,,,20012160,,, +1680,USA,en,WPNY994,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20012150,,, +1680,USA,es,KGED,,Fresno (CA),36.660278,-119.683611,,1,,8848,319,143,,0000-2400,1234567,100,,37988,,, +1680,USA,en,WPPD925,,Fayetteville (NC),34.944342,-78.927631,,0.01,,6723,290,144,,,,,,20012159,,, +1680,USA,en,WPPD925,,Fayetteville (NC),35.009611,-78.826139,,0.01,,6712,290,144,,,,,,20012153,,, +1680,USA,en,WPPD925,,Fayetteville (NC),35.094333,-78.794297,,0.01,,6703,290,144,,,,,,20012134,,, +1680,USA,en,WPPD925,,Fayetteville (NC),35.159056,-78.714472,,0.01,,6693,290,144,,,,,,20012154,,, +1680,USA,en,WQFQ244,,Downers Grove (IL),41.816667,-88.016667,,0.01,,6739,301,144,,,,,,20012142,,, +1680,USA,en,WPNQ589,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20012113,,, +1680,USA,en,WPNZ651,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20012165,,, +1680,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20012114,,, +1680,USA,en,WPPZ513,,Columbia (SC),34,-81.033333,,0.01,,6933,291,146,,,,,,20012116,,, +1680,USA,en,WQHC967,,Oakdale (IA),41.710983,-91.609,,0.01,,6954,304,146,,,,,,20012168,,, +1680,USA,en,WQHC968,,Davenport (IA),41.599306,-90.627653,,0.01,,6907,303,146,,,,,,20012167,,, +1680,USA,en,WQHC968,,Silvis (IA),41.510972,-90.411,,0.01,,6902,303,146,,,,,,20012170,,, +1680,USA,en,WQEY408,,Antioch (TN),36.07575,-86.693972,,0.01,,7120,296,148,,,,,,20012191,,, +1680,USA,en,WQEY408,,Hermitage (TN),36.177672,-86.610958,,0.01,,7107,296,148,,,,,,20012192,,, +1680,USA,en,WQEY408,,Nashville (TN),36.143361,-86.698139,,0.01,,7115,296,148,,,,,,20012188,,, +1680,USA,en,WQEY408,,Nashville (TN),36.145944,-86.879583,,0.01,,7126,296,148,,,,,,20012185,,, +1680,USA,en,WQEY408,,Nashville (TN),36.148639,-86.780722,,0.01,,7120,296,148,,,,,,20012186,,, +1680,USA,en,WQEY408,,Nashville (TN),36.226722,-86.861389,,0.01,,7118,296,148,,,,,,20012184,,, +1680,USA,en,WQEY409,,Goodlettsville (TN),36.29,-86.7277,,0.01,,7105,296,148,,,,,,20012179,,, +1680,USA,en,WQEY409,,Goodlettsville (TN),36.331972,-86.709278,,0.01,,7100,296,148,,,,,,20012187,,, +1680,USA,en,WQEY409,,Hendersonville (TN),36.330944,-86.627636,,0.01,,7095,296,148,,,,,,20012177,,, +1680,USA,en,WQEY409,,Nashville (TN),36.227625,-86.692528,,0.01,,7108,296,148,,,,,,20012135,,, +1680,USA,en,WQEY409,,Nashville (TN),36.227689,-86.777672,,0.01,,7113,296,148,,,,,,20012190,,, +1680,USA,en,WQEY409,,Whites Creek (TN),36.293861,-86.810889,,0.01,,7110,296,148,,,,,,20012158,,, +1680,USA,en,WQEY599,,Nashville (TN),36.065694,-86.777681,,0.01,,7126,296,148,,,,,,20012147,,, +1680,USA,en,WQEY599,,Nashville (TN),36.080583,-86.961006,,0.01,,7136,296,148,,,,,,20012146,,, +1680,USA,en,WQEY599,,Nashville (TN),36.166667,-86.783333,,0.01,,7118,296,148,,,,,,20012145,,, +1680,USA,en,WQBN524,,Jacksonville (FL),30.683583,-81.666861,,0.01,,7243,289,149,,,,,,20012174,,, +1680,USA,en,WPTR460,,Blytheville (AR),35.972222,-89.875,,0.01,,7322,298,150,,,,,,20012124,,, +1680,USA,en,WQBN524,,Jennings (FL),30.600194,-83.133528,,0.01,,7344,290,150,,,,,,20012173,,, +1680,USA,en,WPTR460,,Jericho (AR),35.245278,-90.226856,,0.01,,7403,298,151,,,,,,20012126,,, +1680,USA,en,WPTR460,,West Memphis (AR),35.170833,-90.210214,,0.01,,7409,298,151,,,,,,20012103,,, +1680,ARG,es,R Jetro,,Lans Oeste (ba),-34.716667,-58.4,,1,,11516,230,152,,,,,,51928,,, +1680,USA,en,WPSK543,,Meto (AR),34.798333,-91.993611,,0.01,,7547,299,152,,,,,,20012178,,, +1680,USA,en,WPSK543,,Screeton (AR),34.808333,-91.676814,,0.01,,7527,299,152,,,,,,20012175,,, +1680,USA,en,WPTR459,,Carlisle (AR),34.797389,-91.749722,,0.01,,7532,299,152,,,,,,20012127,,, +1680,USA,en,WPTR459,,Hazen (AR),34.816778,-91.576667,,0.01,,7520,298,152,,,,,,20012118,,, +1680,USA,en,WPTR460,,Meto (AR),34.791667,-92.063333,,0.01,,7552,299,152,,,,,,20012131,,, +1680,USA,en,WPUV867,,Weston/600 Indian Trace (FL),26.111025,-80.394111,,0.01,,7537,284,152,,,,,,20012098,,, +1680,USA,en,WQCF602,,Miami/Hadley Park (FL),25.820278,-80.226847,,0.01,,7551,284,152,,,,,,20012152,,, +1680,USA,en,WQCU480,,Council Grove (KS),38.663111,-96.494331,,0.01,,7483,304,152,,,,,,20012143,,, +1680,USA,en,WQCU481,,Cottonwood Falls (KS),38.377636,-96.544331,,0.01,,7510,304,152,,,,,,20012182,,, +1680,USA,en,WQCW625,,Cassoday (KS),38.0325,-96.644364,,0.01,,7545,304,152,,,,,,20012141,,, +1680,USA,en,WQCY420,,Wellington/14001 Pierson Road (FL),26.644356,-80.27765,,0.01,,7485,285,152,,,,,,20012149,,, +1680,USA,en,WQEI665,,Oakland Park/2100 NW 39th St. (FL),26.173333,-80.171667,,0.01,,7517,284,152,,,,,,20012166,,, +1680,USA,en,WPTR460,,Alexander (AR),34.629722,-92.475,,0.01,,7590,299,153,,,,,,20012128,,, +1680,USA,en,WPTR460,,Maumelle (AR),34.878889,-92.373333,,0.01,,7563,299,153,,,,,,20012129,,, +1680,USA,en,WPTR461,,Fort Smith (AR),35.496944,-94.1625,,0.01,,7617,301,153,,,,,,20012112,,, +1680,USA,en,WPUY239,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20012097,,, +1680,USA,en,WQBV597,,Sanibel (FL),26.461006,-82.142944,,0.01,,7623,286,153,,,,,,20012161,,, +1680,USA,en,WQBV597,,Sanibel/1500 Causeway Road (FL),26.460978,-82.044319,,0.01,,7617,286,153,,,,,,20012162,,, +1680,USA,en,WQCF602,,Miami/4101 NW 7th St. (FL),25.778333,-80.263,,0.01,,7556,284,153,,,,,,20012151,,, +1680,USA,en,WQCF602,,Miami/Shenandoah Park (FL),25.755,-80.229167,,0.01,,7556,284,153,,,,,,20012148,,, +1680,USA,en,WPTR461,,Texarkana (AR),33.508333,-93.947778,,0.01,,7773,299,155,,,,,,20012115,,, +1680,USA,en,WQIW791,,Chalmette (LA),29.95,-89.966667,,0.01,,7832,294,155,,,,,,20012099,,, +1680,USA,en,WQIW791,,Chalmette (LA),29.960989,-89.977628,,0.01,,7832,294,155,,,,,,20012120,,, +1680,USA,en,WQIW791,,Saint Bernard (LA),29.860989,-89.778278,,0.01,,7828,294,155,,,,,,20012132,,, +1680,USA,en,WQIW791,,Violet/Canal (LA),29.900028,-89.896083,,0.01,,7832,294,155,,,,,,20012119,,, +1680,USA,en,WPLR660,,Dallas Fort Worth (TX),32.877664,-97.013889,,0.01,,8008,301,157,,,,,,20012163,,, +1680,USA,en,WQEB401,,Dallas (TX),32.793522,-96.805556,,0.01,,8003,301,157,,,,,,20012180,,, +1680,USA,en,WQHF993,,Corsicana (TX),32.03,-96.471667,,0.01,,8050,300,157,,,,,,20012096,,, +1680,USA,en,WQO7,,Dallas Airport (TX),32.898056,-97.039167,,0.01,,8008,301,157,,,,,,20000033,,, +1680,USA,en,WQFG871,,Clearfield/497 S Main St. (UT),41.111014,-112.027658,,0.01,,8076,316,158,,,,,,20012137,,, +1680,USA,en,WPTR871,,Houston (TX),29.680556,-95.376889,,0.01,,8188,298,159,,,,,,20012108,,, +1680,USA,en,WPTR871,,Houston (TX),29.682778,-95.459167,,0.01,,8192,298,159,,,,,,20012107,,, +1680,USA,en,WPTR871,,Houston (TX),29.7075,-95.276897,,0.01,,8179,298,159,,,,,,20012109,,, +1680,USA,en,WPTR871,,Houston (TX),29.778611,-95.443522,,0.01,,8183,298,159,,,,,,20012106,,, +1680,USA,en,WPTR871,,Houston (TX),29.803889,-95.293572,,0.01,,8172,298,159,,,,,,20012110,,, +1680,USA,en,WPTR871,,Houston (TX),29.814444,-95.3775,,0.01,,8176,298,159,,,,,,20012111,,, +1680,USA,en,WPTS344,,Houston (TX),29.689722,-95.031111,,0.01,,8166,297,159,,,,,,20012104,,, +1680,USA,en,WPTS344,,Houston (TX),29.79,-95.060164,,0.01,,8159,297,159,,,,,,20012105,,, +1680,USA,en,WQEL390,,Richmond (TX),29.583333,-95.766667,,0.01,,8220,298,159,,,,,,20012172,,, +1680,USA,en,WQCL730,,Austin (TX),30.276831,-97.743514,,0.01,,8278,300,160,,,,,,20012183,,, +1680,USA,en,WQEL629,,Santa Rosa (NM),34.945167,-104.644342,,0.01,,8258,307,160,,,,,,20012176,,, +1680,USA,en,WQGD297,,San Antonio (TX),29.494317,-98.24435,,0.01,,8376,299,161,,,,,,20012181,,, +1680,USA,en,WPPD481,,Pescadero/1000 Pescadero Road (CA),37.243833,-122.40025,,0.01,,8911,321,163,,,,,,20012155,,, +1680,USA,en,WPUJ472,,Foster City/1030 East Hillsdale Ave (CA),37.560278,-122.271389,,0.01,,8875,321,163,,,,9989,,51948,,, +1680,USA,en,WPPZ918,,Carson (CA),33.8375,-118.2875,,0.01,,9054,316,164,,,,,,20012121,,, +1680,USA,en,WPPZ918,,Los Angeles (CA),34.016667,-118.174167,,0.01,,9032,316,164,,,,,,20012122,,, +1680,USA,en,WPPZ918,,Los Angeles (CA),34.030833,-118.432167,,0.01,,9043,317,164,,,,,,20012125,,, +1680,USA,en,WPPZ918,,Los Angeles (CA),34.045833,-118.376111,,0.01,,9039,316,164,,,,,,20012100,,, +1680,USA,en,WPPZ918,,San Fernando (CA),34.288333,-118.408333,,0.01,,9017,317,164,,,,,,20012123,,, +1680,USA,en,WPPZ918,,Woodland Hills (CA),34.176906,-118.610239,,0.01,,9037,317,164,,,,,,20012133,,, +1680,USA,en,WPSZ634,,Glendale/131 North Isabel St. (CA),34.147833,-118.247833,,0.01,,9023,316,164,,,,,,20012171,,, +1680,USA,en,WQGR425,,Santa Monica (CA),34.029167,-118.482222,,0.01,,9045,317,164,,,,,,20012189,,, +1680,USA,en,WQHK800,,Montecito (CA),34.44,-119.631667,,0.01,,9059,318,164,,,,,,20012117,,, +1680,USA,en,WE2XFZ,,Chilocco (OK),36.937222,-97.071389,,0.0001,,7663,304,174,,,,,,20012102,,, +1680,USA,en,WE2XFZ,,Flying Horse/Felix Canyon Road (NM),33.002222,-105.048333,,0.0001,,8454,306,181,,,,,,20012169,,, +1680,USA,en,WD2XUM,,El Centro NAF (CA),32.89,-115.787222,,0.0001,,9024,314,184,,,,,,20012101,,, +1683,AUS,el,R Club AM,,Sydney/Lakemba (27 Leslie St) (NSW),-33.931389,151.088056,,0.4,,16557,68,173,,0000-2400,1234567,2238,,51609,,, +1683.5,MDR,,Faial R,u,Faial (md),32.783333,-16.85,,1,,2849,230,85,,????-????,1234567,-1683.5,,19900225,,, +1686,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,????-????,1234567,,,19900528,,, +1687.4,TUN,,3VB Bizerte R,u,Bizerte (biz),37.266675,9.883333,,1,,1673,169,74,,????-????,1234567,-1687.4,,19901415,,, +1689,POR,,Peniche Pescas R,u,Peniche (lei),39.363889,-9.4,,1,,1866,227,76,,????-????,1234567,,,19901305,,, +1689,CNR,,EAL Las Palmas R,u,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,0803-0818,1234567,,,1500002,,, +1689,CNR,,EAL Las Palmas R,u,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,1233-1248,1234567,,,1500002,,, +1689,CNR,,EAL Las Palmas R,u,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,1903-1918,1234567,,,1500002,,, +1690,GRC,el,Samurai R,,Kalamata (pel-mes),37.033333,22.116667,,1,,2078,138,78,,,,,,3400010,,, +1690,CAN,en,CJLO,,Montral (QC),45.447608,-73.658375,,1,,5610,296,113,,0000-2400,1234567,1,,20100005,,, +1690,CAN,xx,CHTO,,Toronto/Scarborough (ON),43.712778,-79.315,,1,,6078,298,118,,0000-2400,1234567,0,,20100003,,, +1690,USA,en,WPTX,,Lexington Park (MD),38.282778,-76.560833,,1,,6313,291,120,,0000-2400,1234567,992,,31654,,, +1690,USA,en,WVON,,Berwyn (IL),41.737222,-87.701111,,1,,6727,301,124,,0000-2400,1234567,0,,42876,,, +1690,USA,en,WMLB,,Avondale Estates (GA),33.811667,-84.360278,,1,,7159,293,129,,0000-2400,1234567,43,,43351,,, +1690,VIR,,WIGT,,Charlotte Amalie (sto),18.315833,-64.883889,,0.92,,7140,267,129,,,,,,20016308,,, +1690,USA,en,KDDZ,,Arvada (CO),39.655833,-105.074167,,1,,7862,311,136,,0000-2400,1234567,3,,38248,,, +1690,USA,en,WPKF714,,New York City/2300 Southern Blvd (NY),40.860986,-73.877661,,0.01,,5950,292,136,,,,,,20012205,,, +1690,USA,en,WPYB598,,Freeport/76 Church Street (NY),40.660972,-73.582778,,0.01,,5946,292,136,,,,,,20012219,,, +1690,USA,en,WPZN819,,Oradell/355 Kinderkamack Rd (NJ),40.960969,-74.032333,,0.01,,5953,292,136,,,,,,20012231,,, +1690,USA,en,WPTI908,,Queens (NY),40.665278,-73.806389,,0.01,,5960,292,137,,,,,,20012239,,, +1690,USA,en,WPXA218,,Bellville/228 Chestnut St. (NJ),40.827669,-74.161025,,0.01,,5971,292,137,,,,,,20012199,,, +1690,USA,en,WQEL577,,Westfield/425 E Broad St. (NJ),40.655,-74.345833,,0.01,,5995,292,137,,,,,,20012215,,, +1690,USA,en,WQFG689,,Secaucus (NJ),40.793522,-74.058333,,0.01,,5967,292,137,,,,,,20012193,,, +1690,USA,en,WQFG689,,West Bergen (NJ),40.712222,-74.089444,,0.01,,5974,292,137,,,,,,20012206,,, +1690,USA,en,WPZC633,,Warren/29900 Civic Center Blvd (MI),42.513333,-83.024444,,0.01,,6390,299,141,,,,,,20012228,,, +1690,USA,en,WQCN317,,Wheeling (WV),40.06325,-80.593639,,0.01,,6430,295,141,,,,,,20012242,,, +1690,USA,en,WQCN317,,Wheeling/North Park Landfill (WV),40.094358,-80.711556,,0.01,,6435,296,141,,,,,,20012238,,, +1690,USA,en,WQEQ301,,Dearborn Heights/25637 Michigan Ave (MI),42.296667,-83.294303,,0.01,,6423,299,141,,,,,,20012210,,, +1690,USA,en,WQFI879,,Garfield Heights (OH),41.414694,-81.614889,,0.01,,6389,297,141,,,,,,20012197,,, +1690,USA,en,WPMD631,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20012227,,, +1690,USA,en,WQAC662,,Raleigh (NC),35.766667,-78.633333,,0.01,,6640,291,143,,,,,,20012220,,, +1690,USA,xx,KFSG,,Roseville (CA),38.747778,-121.4925,,1,,8727,321,143,,0000-2400,1234567,9965,,38432,,, +1690,USA,en,WPSL489,,North Wilkesboro (NC),36.166667,-81.15,,0.01,,6768,293,145,,,,,,20012225,,, +1690,USA,en,WPVB565,,Bluffton (SC),32.244311,-80.810917,,0.01,,7061,289,148,,,,,,20012213,,, +1690,USA,en,WPYP221,,Gadsden/501 Reservoir Road (AL),34.027689,-85.994889,,0.01,,7244,294,149,,,,,,20012222,,, +1690,USA,en,WQHY820,,Independence (MO),39.044356,-94.344342,,0.01,,7329,303,150,,,,,,20012196,,, +1690,USA,en,WQHY820,,Kansas City/1351 Summit Street (MO),39.076194,-94.593194,,0.01,,7341,303,150,,,,,,20012200,,, +1690,USA,en,WQHY820,,Kansas City/1701 NE Parvin Road (MO),39.165583,-94.561017,,0.01,,7331,304,150,,,,,,20012198,,, +1690,USA,en,WQHY820,,Pleasant Valley/8900 Liberty Drive (MO),39.227683,-94.477633,,0.01,,7321,304,150,,,,,,20012202,,, +1690,USA,en,WPZH604,,Montgomery (AL),32.366667,-86.3,,0.01,,7400,293,151,,,,,,20012230,,, +1690,USA,en,WQGC573,,Montgomery (AL),32.311014,-86.344353,,0.01,,7407,293,151,,,,,,20012233,,, +1690,USA,en,WQGC573,,Montgomery (AL),32.364167,-86.213667,,0.01,,7395,293,151,,,,,,20012234,,, +1690,USA,en,WQGC573,,Prattville (AL),32.482472,-86.410961,,0.01,,7397,293,151,,,,,,20012232,,, +1690,USA,en,WQGC573,,Prattville (AL),32.577658,-86.46475,,0.01,,7393,293,151,,,,,,20012221,,, +1690,ARG,,R Apocalipsis II,,San Justo (ba),-34.666667,-58.55,,1,,11520,230,152,,,,969,,51929,,, +1690,USA,en,WPUA224,,Little Rock (AR),34.792778,-92.058333,,0.01,,7551,299,152,,,,,,20012241,,, +1690,USA,en,WQFX549,,Lake Worth/1020 Lucerne Ave.-Fire Station (FL),26.626814,-80.061,,0.01,,7472,285,152,,,,,,20012224,,, +1690,USA,en,WQGC573,,Greenville (AL),31.883278,-86.610967,,0.01,,7460,293,152,,,,,,20012229,,, +1690,USA,en,WPUA224,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20012240,,, +1690,USA,en,WPUA224,,Little Rock (AR),34.796389,-92.310206,,0.01,,7566,299,153,,,,,,20012237,,, +1690,USA,en,WPUY239,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20012208,,, +1690,USA,en,WPWL619,,East Milton (FL),30.564444,-87.038056,,0.01,,7596,292,153,,,,,,20012204,,, +1690,USA,en,WPYX975,,New Orleans (LA),29.915,-90.1,,0.01,,7843,294,155,,,,,,20012235,,, +1690,USA,en,WQDD428,,Lake Charles (LA),30.233333,-93.216667,,0.01,,8009,296,157,,,,,,20012207,,, +1690,USA,en,WQIQ734,,Farmington (UT),40.961694,-111.928861,,0.01,,8085,316,158,,,,,,20012217,,, +1690,USA,en,WQEL390,,Richmond (TX),29.583333,-95.766667,,0.01,,8220,298,159,,,,,,20012214,,, +1690,USA,en,WQHK802,,College Station (TX),30.5575,-96.256111,,0.01,,8165,299,159,,,,,,20012226,,, +1690,USA,en,WQHK802,,College Station (TX),30.615556,-96.3125,,0.01,,8163,299,159,,,,,,20012218,,, +1690,USA,en,WQIH892,,Pasadena (TX),29.582778,-95.057222,,0.01,,8177,297,159,,,,,,20012203,,, +1690,USA,en,WQIH892,,Pasadena (TX),29.671944,-95.163333,,0.01,,8175,297,159,,,,,,20012194,,, +1690,USA,en,WQCL730,,Austin (TX),30.276831,-97.743514,,0.01,,8278,300,160,,,,,,20012236,,, +1690,USA,en,WPQZ230,,Los Angeles (CA),34.11,-118.24925,,0.01,,9026,316,164,,,,,,20012216,,, +1690,USA,en,WPUA825,,San Diego/2980 Pacific Highway (CA),32.737222,-117.176389,,0.01,,9106,315,164,,,,,,20012195,,, +1690,USA,en,WPUJ467,,Bell Gardens/6662 Loveland Street (CA),33.977694,-118.145056,,0.01,,9034,316,164,,,,,,20012201,,, +1690,USA,en,WPYR619,,Long Beach/1250 Bellflower Blvd (CA),33.783333,-118.126906,,0.01,,9052,316,164,,,,,,20012223,,, +1690,USA,en,WQIZ328,,La Habra (CA),33.906667,-117.962222,,0.01,,9032,316,164,,,,,,20012209,,, +1690,USA,en,WQJC283,,Palm Springs (CA),33.827664,-116.510861,,0.01,,8970,315,164,,,,,,20012211,,, +1690,USA,en,WQO808,,Culver City/9690 Jefferson Blvd (CA),34.016389,-118.394308,,0.01,,9042,316,164,,,,,,20012212,,, +1692,NOR,,LGQ Rogaland R,u,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,1215-1230,1234567,,,6300007,,, +1692,NOR,,LGQ Rogaland R,u,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,2315-2330,1234567,,,6300007,,, +1692,BEN,,TYA Cotonou R,u,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900259,,, +1692,AUS,,Vision R Network,,Nanango/Drayton Street (QLD),-26.658056,151.962222,,0.4,,15987,59,171,,,,119,,37700008,,, +1695,NOR,,LGV Vard R,u,Berlevg (fi),70.872292,29.080389,,1,,2375,20,81,,1203-1218,1234567,,,6300008,,, +1695,NOR,,LGV Vard R,u,Berlevg (fi),70.872292,29.080389,,1,,2375,20,81,,2303-2318,1234567,,,6300008,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0003-0018,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0403-0418,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0550-0605,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0733-0748,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0803-0818,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1203-1218,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1333-1348,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1503-1518,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1603-1618,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1750-1815,1234567,,,2500005,,, +1696,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,2003-2013,1234567,,,2500005,,, +1696.4,TUN,,3VM Mahdia R,u,Mahdia (mah),35.5,11.066667,,1,,1883,167,76,,????-????,1234567,-1696.4,,19901419,,, +1698,E,,EAR La Corua R,u,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,0703-0718,1234567,,,2200021,,, +1698,E,,EAR La Corua R,u,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,1303-1318,1234567,,,2200021,,, +1698,E,,EAR La Corua R,u,La Corua (GAL-C),43.367028,-8.451861,,1,,1472,235,72,,1903-1918,1234567,,,2200021,,, +1698,GRC,,Aspropyrgos Attikis Coastguard JRCC,u,Aspropyrgos (att-wst),38.066667,23.583333,,1,,2052,133,78,,????-????,1234567,,,19900600,,, +1698,GRC,,SXE2 Piraeus Coastguard,u,Piraeus (att-pir),37.966667,23.633333,,1,,2064,133,78,,????-????,1234567,,,19900604,,, +1699.4,TUN,,3VS Sfax R,u,Sfax (sfa),34.733333,10.766667,,1,,1963,168,77,,????-????,1234567,-1699.4,,19901422,,, +1700,USA,en,KKLF,,Richardson (D) (TX),33.423056,-96.6625,,10,,7941,301,126,,1300-0100,1234567,,,20012536,,, +1700,USA,en,KBGG,,Des Moines (IA),41.591667,-93.528611,,1,,7072,305,128,,0000-2400,1234567,19,,38027,,, +1700,USA,en,WEUP,,Huntsville (AL),34.758889,-86.643056,,1,,7225,295,129,,0000-2400,1234567,9934,,41337,,, +1700,DOM,es,R Eternidad,,Santo Domingo (sdo),18.475,-69.833333,,1,,7465,271,132,,0001-2359,1234567,987,,21100002,,, +1700,USA,ht,WJCC,,Miami Springs (FL),25.900556,-80.363889,,1,,7553,284,133,,0000-2400,1234567,14,,30759,,, +1700,MEX,en,XEPE-AM ESPN 1700,,Tijuana (bcn),32.538317,-116.988561,,10,,9116,315,134,,0000-2400,1234567,7,,51950,,, +1700,USA,en,WPSK539,,Boston (MA),42.366667,-71.066667,,0.01,,5664,292,134,,0000-2400,1234567,,,20012271,,, +1700,USA,en,WQCP342,,White Plains/240 Airport Road (NY),41.077633,-73.711025,,0.01,,5924,292,136,,,,,,20012301,,, +1700,USA,en,KKLF,,Richardson (N) (TX),33.121389,-96.581944,,1,,7962,301,137,,0100-1300,1234567,3,,39457,,, +1700,USA,en,KNAA585,,Jamaica (NY),40.683333,-73.8,,0.01,,5958,292,137,,0000-2400,1234567,,,20000031,,, +1700,USA,en,WPSH468,,Manville (NJ),40.5455,-74.594353,,0.01,,6019,292,137,,,,,,20012272,,, +1700,USA,en,WPSK807,,Clark (NJ),40.625,-74.314167,,0.01,,5995,292,137,,,,,,20012268,,, +1700,USA,en,WPUV838,,Lyndhurst/367 Valley Brook Avenue (NJ),40.8125,-74.124722,,0.01,,5969,292,137,,,,,,20012296,,, +1700,USA,en,WQBY208,,Red Bank (NJ),40.348333,-74.055278,,0.01,,5999,292,137,,,,,,20012278,,, +1700,USA,en,WQCV630,,Newark (NJ),40.733333,-74.166667,,0.01,,5978,292,137,,,,,,20012276,,, +1700,USA,en,KNAA585,,Jamaica (NJ),40.661472,-76.763583,,0.01,,6147,294,138,,,,,,20012312,,, +1700,USA,en,WPIC749,,Philadelphia (PA),39.960986,-75.144339,,0.01,,6097,292,138,,,,,,20012307,,, +1700,USA,en,WPWX202,,Eagleswood (NJ),39.644339,-74.294306,,0.01,,6066,291,138,,,,,,20012280,,, +1700,USA,en,WQEA211,,Mount Holly (NJ),39.85,-74.633333,,0.01,,6073,292,138,,,,,,20012264,,, +1700,USA,en,WQEL632,,Cape May (NJ),38.944294,-74.914972,,0.01,,6158,291,139,,,,,,20012266,,, +1700,USA,en,WQGU295,,Harrisburg (PA),40.291667,-76.893547,,0.01,,6182,293,139,,,,,,20012289,,, +1700,USA,en,WPPZ755,,Westland/450 S Venoy Road (MI),43.310964,-83.365222,,0.01,,6350,300,140,,,,,,20012310,,, +1700,USA,en,WQCR505,,Clarksville (MD),39.211,-76.944339,,0.01,,6267,292,140,,,,,,20012292,,, +1700,USA,en,WQCR563,,Arlington (VA),38.879056,-77.127628,,0.01,,6304,292,140,,,,,,20012299,,, +1700,USA,en,WQFI512,,Columbia (MD),39.278528,-76.927664,,0.01,,6261,292,140,,,,,,20012286,,, +1700,B,,CRJ,b,Carajs (PA),-6.111489,-50.003306,,1,,8373,239,141,,0000-2400,1234567,957,L774 U700 9.0s,ID+4 gap,85907,, +1700,USA,en,WPTC520,,Sterling Heights (MI),42.591111,-83.011111,,0.01,,6383,299,141,,,,,,20012273,,, +1700,USA,en,WPUA590,,Trenton/24525 Meridian Road (MI),42.1285,-83.161025,,0.01,,6428,299,141,,,,,,20012290,,, +1700,USA,en,WPWI622,,Southfield (MI),42.480556,-83.233333,,0.01,,6405,299,141,,,,,,20012309,,, +1700,USA,en,WPZK932,,Brunswick/3637 Center Road (OH),41.238333,-81.816167,,0.01,,6415,297,141,,,,,,20012300,,, +1700,USA,en,WPZK932,,Brunswick/505 Substation Road (OH),41.260278,-81.859722,,0.01,,6416,297,141,,,,,,20012283,,, +1700,USA,en,WQCL647,,Newport News (VA),37.006944,-76.429167,,0.01,,6402,290,141,,,,,,20012281,,, +1700,USA,en,WQCL647,,Newport News (VA),37.020833,-76.445833,,0.01,,6402,290,141,,,,,,20012279,,, +1700,USA,en,WQCL647,,Newport News (VA),37.071944,-76.493889,,0.01,,6401,290,141,,,,,,20012293,,, +1700,USA,en,WQCL647,,Newport News (VA),37.164444,-76.560222,,0.01,,6399,290,141,,,,,,20012284,,, +1700,USA,en,WQGR416,,Ashland (VA),37.627656,-77.299944,,0.01,,6410,291,141,,,,,,20012295,,, +1700,USA,en,WQGR416,,Ashland (VA),37.666028,-77.382333,,0.01,,6412,291,141,,,,,,20012311,,, +1700,USA,en,WQGR416,,Ashland (VA),37.814194,-77.6785,,0.01,,6420,292,141,,,,,,20012249,,, +1700,USA,en,WQGR416,,Ashland (VA),37.850111,-77.464806,,0.01,,6404,292,141,,,,,,20012254,,, +1700,USA,en,WQGR416,,Ashland (VA),37.944356,-77.660978,,0.01,,6409,292,141,,,,,,20012252,,, +1700,USA,en,WQGR416,,Ashland/Taylor Complex Hwy 54 (VA),37.760967,-77.433361,,0.01,,6408,291,141,,,,,,20012267,,, +1700,USA,en,WQGT209,,Ashland (VA),37.777861,-77.542917,,0.01,,6414,292,141,,,,,,20012270,,, +1700,USA,en,WQHW374,,Mayfield Heights (OH),41.527644,-81.458972,,0.01,,6371,297,141,,,,,,20012291,,, +1700,USA,en,KVNS,,Brownsville (Villa Nueva) (TX),25.949167,-97.554167,,0.88,,8646,297,143,,0000-2400,1234567,7,,28156,,, +1700,CAN,en,AIR Algonquin,,Ottawa/Algonquin College (ON),45.346944,-75.757944,,0.001,,5745,297,144,,,,,,20109299,,, +1700,USA,en,WPMI800,,Sturtevant/14116 Washington Ave (WI),42.726972,-87.958972,,0.01,,6664,302,144,,,,,,20012263,,, +1700,USA,en,WQIZ337,,Miamisburg (OH),39.62775,-84.229111,,0.01,,6686,297,144,,,,,,20012244,,, +1700,USA,en,WQIZ337,,Vandalia (OH),39.892222,-84.194353,,0.01,,6663,298,144,,,,,,20012255,,, +1700,USA,,WQKH253,,Lexington (KY),37.983333,-84.483333,,0.01,,6831,296,145,,,,738,,20016305,,, +1700,USA,en,WQEX428,,Shelbyville (KY),38.233333,-85.333333,,0.01,,6863,297,146,,,,,,20012253,,, +1700,USA,en,WQFG448,,Orlando/One Airport Blvd (FL),28.431389,-81.308056,,0.01,,7405,287,151,,,,,,20012294,,, +1700,ARG,,R City,,Almirante Brown (ba),-34.783333,-58.4,,1,,11522,230,152,,,,,,33000007,,, +1700,ARG,es,Fantstico FM 91.9,,Tigre (ba),-34.429339,-58.581717,,1,,11500,230,152,,,,992,,33000013,,, +1700,ARG,es,R Juventud,,Florencio Varela (ba),-34.789058,-58.281394,,1,,11517,230,152,,,,,,33000048,,, +1700,USA,en,WD9XEB,,Litchfield (NH),42.85,-71.483333,,0.0001,,5656,292,153,,,,,,20012250,,, +1700,USA,en,WPUY239,,Little Rock (AR),34.75,-92.283333,,0.01,,7568,299,153,,,,,,20012265,,, +1700,USA,en,WPWW707,,Bozeman (MT),45.683333,-111.033333,,0.01,,7614,318,153,,,,,,20012277,,, +1700,USA,en,WC2XUV,,Albany (NY),42.672222,-73.735833,,0.0001,,5810,294,155,,,,,,20012256,,, +1700,USA,en,WNKG901,,Mandeville (LA),30.2,-90.122222,,0.01,,7820,294,155,,,,,,20012247,,, +1700,USA,en,WNKG901,,Mandeville (LA),30.365667,-90.094167,,0.01,,7805,294,155,,,,,,20012243,,, +1700,USA,en,WNKG901,,Mandeville (LA),30.409333,-90.094336,,0.01,,7801,294,155,,,,,,20012248,,, +1700,USA,en,WNKG901,,Metairie (LA),30.027656,-90.160986,,0.01,,7837,294,155,,,,,,20012246,,, +1700,USA,en,WQHR733,,Issaquah (WA),47.561008,-122.048333,,0.01,,7901,326,156,,,,,,20012287,,, +1700,USA,en,WQIH568,,Auburn/1305 C St SW (WA),47.297583,-122.232861,,0.01,,7933,326,156,,,,,,20012282,,, +1700,USA,en,WC2XUV,,Ewing Township (NJ),40.2675,-74.785833,,0.0001,,6051,292,157,,,,,,20012269,,, +1700,USA,en,WPHF897,,Lake Quinalt (WA),47.460983,-123.897111,,0.01,,7980,327,157,,,,,,20012305,,, +1700,USA,en,WQDD428,,Lake Charles (LA),30.233333,-93.216667,,0.01,,8009,296,157,,,,,,20012303,,, +1700,USA,en,WQBA734,,Ashland/455 Siskiyou Blvd (OR),42.193333,-122.7075,,0.01,,8444,324,161,,,,,,20012260,,, +1700,USA,en,WC2XUV,,Lansing (MI),42.732222,-84.555556,,0.0001,,6464,300,162,,,,,,20012258,,, +1700,USA,en,WPXY385,,Truckee/Northstar Drive (CA),39.286944,-120.106389,,0.01,,8615,320,162,,,,,,20012302,,, +1700,USA,en,WC2XUV,,Raleigh-Durham Airport (NC),35.866667,-78.783333,,0.0001,,6642,291,163,,,,,,20012261,,, +1700,USA,en,WPT201,,Moffett Field (CA),37.415278,-122.048333,,0.01,,8880,321,163,,,,9943,,51949,,, +1700,USA,en,WPTZ516,,Oakland/Int. Airport (CA),37.726167,-122.202833,,0.01,,8856,321,163,,,,9919,,52597,,, +1700,USA,en,WE2XEH,,Charlotte (NC),36.101667,-80.829444,,0.0001,,6753,292,164,,,,,,20012251,,, +1700,USA,en,WNCM749,,Burbank (CA),34.166667,-118.348972,,0.01,,9026,317,164,,,,,,20012297,,, +1700,USA,en,WPDP334,,San Diego (CA),32.7943,-117.127625,,0.01,,9098,315,164,,,,,,20012285,,, +1700,USA,en,WPET709,,Los Angeles (CA),33.930556,-118.377644,,0.01,,9050,316,164,,,,,,20012298,,, +1700,USA,en,WPIG463,,Anaheim (CA),33.847528,-117.891722,,0.01,,9035,316,164,,,,,,20012304,,, +1700,USA,en,WPMD956,,Norwalk (CA),33.894292,-118.095333,,0.01,,9040,316,164,,,,9628,,20012308,,, +1700,USA,en,WQBU640,,Carmel Highlands/73 Fern Canyon Road (CA),36.510997,-121.944344,,0.01,,8963,320,164,,,,,,20012306,,, +1700,USA,en,WC2XUV,,Tallahassee (FL),30.383333,-84.366667,,0.0001,,7441,290,171,,,,,,20012262,,, +1700,HWA,en,WC2XUV,,Honolulu (HI),21.306667,-157.858611,,0.01,,11710,345,173,,,,,,20012317,,, +1700,USA,en,WC2XUV,,Denver (CO),39.694167,-104.9875,,0.0001,,7854,311,175,,0000-2400,1234567,,,20012275,,, +1700,USA,en,WC2XUV,,Austin (TX),30.3,-97.7,,0.0001,,8273,300,180,,0000-2400,1234567,,,20012274,,, +1700,USA,en,WC2XUV,,Sacramento (CA),38.516667,-121.5,,0.0001,,8749,321,183,,0000-2400,1234567,,,20012259,,, +1700,USA,en,WD2XZO,,San Diego (CA),32.822778,-117.142778,,0.0001,,9096,315,184,,0000-2400,1234567,,,20012245,,, +1701,POR,,Portimo Pescas R,u,Portimo (agv),37.133333,-8.533333,,1,,2034,221,77,,????-????,1234567,,,19901306,,, +1701,AUS,hi,R Brisvaani,,Brisbane/Seventeen Mile Rocks (QLD),-27.54,152.956667,,0.4,,16124,58,171,,0000-2400,1234567,66,,51612,,, +1701,AUS,ar,VMV503 Islamic Voice R,,Melbourne/223-224 Union Road (VIC),-37.639722,144.940556,,0.4,,16437,80,172,,,,19,,37700009,,, +1701,AUS,,Voice of Charity,,Sydney/Silverwater (NSW),-33.830742,151.045433,,0.4,,16546,68,173,,,,62,,37700011,,, +1702,J,ja,Weather Info,u,unknown,34.5,134,,1,,9124,41,144,,1430-1440,1234567,,,31400044,,, +1704,DNK,,OXZ Lyngby R,u,Skamlebk (vsj),55.837222,11.421111,,1,,528,36,62,,0533-0553,1234567,,,2100001,,, +1704,DNK,,OXZ Lyngby R,u,Skamlebk (vsj),55.837222,11.421111,,1,,528,36,62,,1743-1803,1234567,,,2100001,,, +1704,DNK,,OXZ Lyngby R,u,Skamlebk (vsj),55.837222,11.421111,,1,,528,36,62,,2133-2153,1234567,,,2100001,,, +1704,E,,EAC Tarifa R,u,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,0733-0748,1234567,,,2200024,,, +1704,E,,EAC Tarifa R,u,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,1233-1248,1234567,,,2200024,,, +1704,E,,EAC Tarifa R,u,Tarifa (AND-CA),36.042,-5.556606,,1,,2020,213,77,,1933-1948,1234567,,,2200024,,, +1704,BEN,,TYA Cotonou R,u,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900260,,, +1707,E,,Cabo Matxitxako R,u,Cabo Matxitxako (PVA-BI),43.454039,-2.75275,,1,,1179,219,69,,0703-0718,1234567,,,2200019,,, +1707,E,,Cabo Matxitxako R,u,Cabo Matxitxako (PVA-BI),43.454039,-2.75275,,1,,1179,219,69,,1303-1318,1234567,,,2200019,,, +1707,E,,Cabo Matxitxako R,u,Cabo Matxitxako (PVA-BI),43.454039,-2.75275,,1,,1179,219,69,,1903-1918,1234567,,,2200019,,, +1710,S,,SDJ Stockholm R,u,Grimeton (ha),57.103056,12.385556,,1,,675,32,64,,0800-0815,1234567,,,6800003,,, +1710,S,,SDJ Stockholm R,u,Grimeton (ha),57.103056,12.385556,,1,,675,32,64,,1600-1615,1234567,,,6800003,,, +1710,NOR,,LGP Bod R,u,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,1203-1218,1234567,,,6300009,,, +1710,NOR,,LGP Bod R,u,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,2303-2318,1234567,,,6300009,,, +1710,USA,ht,R Soleil International,,Brockton (MA),42.083333,-71.016667,,1,,5681,291,114,,,,,,20012400,,, +1710,USA,ht,R Top Inter,,Boston (MA),42.366667,-71.066667,,1,,5664,292,114,,,,15,,52547,,, +1710,USA,en,W807,,Glasford (IL),40.569444,-89.811111,,0.1,,6943,302,136,,,,,,20016304,,, +1710,USA,es,R Celestial,,Bronx/3138 Webster Ave (NY),40.872222,-73.87525,,0.01,,5949,292,136,,,,29,,20012363,,, +1710,USA,,WQFG689,,Jersey City/OEM intersection Summit / Laidlaw (NJ),40.740333,-74.057667,,0.01,,5970,292,137,,,,,,20016188,,, +1710,USA,,WQFG689,,Kearny/Davis Avenue (NJ),40.752167,-74.150667,,0.01,,5975,292,137,,,,,,20016189,,, +1710,USA,,WQFG689,,Lincroft/Hackensack Avenue (NJ),40.7225,-74.1115,,0.01,,5975,292,137,,,,,,20016187,,, +1710,USA,,WQFG689,,Secaucus/Meadowview County Hospital (NJ),40.785,-74.058333,,0.01,,5967,292,137,,,,,,20016191,,, +1710,USA,,WQFG689,,West Bergen/College & Culver Streets (NJ),40.712222,-74.089444,,0.01,,5974,292,137,,,,,,20016190,,, +1710,ARG,es,AM 1710,,Buenos Aires (df),-34.583333,-58.666667,,1,,11518,230,152,,,,,,52495,,, +1713,ISL,,TFV Vestmannaeyjar R,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,0550-0610,1234567,,,19900841,,, +1713,ISL,,TFV Vestmannaeyjar R,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,0800-0815,1234567,,,19900841,,, +1713,ISL,,TFV Vestmannaeyjar R,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,1750-1810,1234567,,,19900841,,, +1713,ISL,,TFV Vestmannaeyjar R,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,2000-2015,1234567,,,19900841,,, +1713,NOR,,LGV Vard R,u,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,0803-0818,1234567,,,6300003,,, +1713,NOR,,LGV Vard R,u,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,1203-1218,1234567,,,6300003,,, +1713,NOR,,LGV Vard R,u,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,2303-2318,1234567,,,6300003,,, +1715,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900203,,, +1715,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901254,,, +1716,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,????-????,1234567,,,19900664,,, +1720,GRC,el,R 1 Arta,,Arta (epi-art),39.15,20.983333,,1,,1826,136,75,,,,,,3400054,,, +1720,AFG,,OKN,b,Kandahar (kan),31.479167,65.875,,0.025,,5259,92,126,,,,5,L1719 U1721 8.1s,ID+4 gap,85908,, +1720.4,MNE,,Bar R,u,Bar (BR),42.086111,19.075,,1,,1466,134,72,,0850-0900,1234567,-1720.4,,19901102,,, +1720.4,MNE,,Bar R,u,Bar (BR),42.086111,19.075,,1,,1466,134,72,,1420-1430,1234567,-1720.4,,19901102,,, +1720.4,MNE,,Bar R,u,Bar (BR),42.086111,19.075,,1,,1466,134,72,,2050-2100,1234567,-1720.4,,19901102,,, +1722,HOL,,PBF3 Koninklijke Marine,u,Rotterdam/Marine (zho),51.891667,4.422222,,1,,138,261,54,,????-????,1234567,,,19900651,,, +1722,NOR,,LJB Bod R,u,Bjrnya/Herwighamna (sp),74.504028,18.996944,,1,,2555,9,83,,0000-0015,1234567,,,6300015,,, +1725,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900204,,, +1725,PNG,,GA,b,Goroka (ehd),-6.0625,145.375,,0.025,,13672,51,175,,,,992,L1030 U1008 6.5s,85909,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0333-0348,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0503-0518,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0533-0548,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,0733-0748,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1133-1148,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1533-1548,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1703-1718,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1733-1748,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,1933-1948,1234567,,,19900067,,, +1726,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,2333-2348,1234567,,,19900067,,, +1728,NOR,,LGN Rogaland R,u,Bergen (ho),60.356944,4.95,,1,,921,355,66,,1215-1230,1234567,,,6300010,,, +1728,NOR,,LGN Rogaland R,u,Bergen (ho),60.356944,4.95,,1,,921,355,66,,2315-2330,1234567,,,6300010,,, +1728.5,J,,JFC,u,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,-1728.5,,19900891,,, +1730,B,,FRA,b,Juiz de Fora (MG),-21.770833,-43.375,,0.2,,9526,225,152,,,,,7.0s,85910,,, +1731,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,1203-1218,1234567,,,6300011,,, +1731,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,2303-2318,1234567,,,6300011,,, +1734,DNK,,OXZ Lyngby R,u,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,1743-1803,1234567,,,2100003,,, +1734,DNK,,OXZ Lyngby R,u,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,2133-2153,1234567,,,2100003,,, +1734,GRC,,Aspropyrgos Attikis Coastguard JRCC,u,Aspropyrgos (att-wst),38.066667,23.583333,,1,,2052,133,78,,????-????,1234567,,,19900601,,, +1734,B,,XPC,b,Chapeco (SC),-27.145833,-52.625,,0.025,,10511,230,165,,,,,,85911,,, +1735,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901255,,, +1737,I,,Trapani R,u,Trapani (tp),38.016667,12.483333,,1,,1637,161,73,,????-????,1234567,,,19900676,,, +1737,PNG,,KUT,b,Kutubu / Kumul Platform (gul),-8.0625,144.541667,,0.05,,13821,53,173,,,,5,L372 U374 5.45s,ID+2 gap,85913,, +1739,NOR,,LJN Ny-lesund R,u,Ny-lesund (sp),78.918425,11.892033,,1,,2989,2,87,,????-????,1234567,,,6300012,,, +1740,POR,,Aveiro Pescas R,u,Aveiro (avo),40.633333,-8.65,,1,,1715,228,74,,????-????,1234567,,,19901296,,, +1741.4,TUN,,3VL Klibia R,u,Klibia (nab),36.85,11.1,,1,,1736,166,74,,????-????,1234567,-1741.4,,19901417,,, +1743,G,en,Stornoway Coastguard,u,Butt of Lewis (SC-WIL),58.515139,-6.261478,,1,,1069,317,68,,0710-0725,1234567,,,2800022,,, +1743,G,en,Stornoway Coastguard,u,Butt of Lewis (SC-WIL),58.515139,-6.261478,,1,,1069,317,68,,1910-1925,1234567,,,2800022,,, +1743,TUN,,3VW La Goulette Port R,u,La Goulette (tun),36.816667,10.3,,1,,1728,168,74,,0405-0420,1234567,,,19901418,,, +1743,TUN,,3VW La Goulette Port R,u,La Goulette (tun),36.816667,10.3,,1,,1728,168,74,,1905-1920,1234567,,,19901418,,, +1743,NOR,,LMJ Bod R,u,Srlaguna (jm),70.969444,-8.541667,,1,,2227,346,79,,1203-1218,1234567,,,6300013,,, +1743,NOR,,LMJ Bod R,u,Srlaguna (jm),70.969444,-8.541667,,1,,2227,346,79,,2303-2318,1234567,,,6300013,,, +1743,MRC,,CND3 Safi R,u,Safi (dka),32.3,-9.233333,,1,,2540,216,82,,0000-0015,1234567,,,19901118,,, +1743,MRC,,CND3 Safi R,u,Safi (dka),32.3,-9.233333,,1,,2540,216,82,,0915-0930,1234567,,,19901118,,, +1743,MRC,,CND3 Safi R,u,Safi (dka),32.3,-9.233333,,1,,2540,216,82,,1635-1650,1234567,,,19901118,,, +1746,IRL,,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,????-????,1234567,,,19900802,,, +1750,NOR,,LMR Hopen Metro R,u,Hopen (sp),76.583333,25.166667,,1,,2835,10,85,,????-????,1234567,,,19901142,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,0233-0248,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,0633-0648,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,1033-1048,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,1433-1448,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,1833-1848,1234567,,,4100011,,, +1752,IRL,en,EJK Valentia Coastguard R,u,Valentia (KY),51.929756,-10.349028,,1,,1144,276,68,,2233-2248,1234567,,,4100011,,, +1755,E,,EAO Palma R,u,Palma (BAL-ML),39.366667,2.791667,,1,,1444,193,71,,0750-0805,1234567,,,2200026,,, +1755,E,,EAO Palma R,u,Palma (BAL-ML),39.366667,2.791667,,1,,1444,193,71,,1303-1318,1234567,,,2200026,,, +1755,E,,EAO Palma R,u,Palma (BAL-ML),39.366667,2.791667,,1,,1444,193,71,,1950-2005,1234567,,,2200026,,, +1755,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901256,,, +1757,NOR,,Jan Mayen Metro R,u,Jan Mayen (jm),70.983333,-8.466667,,1,,2227,346,79,,????-????,1234567,,,19901143,,, +1757,NOR,,LJB Bod R,u,Bjrnya/Herwighamna (sp),74.504028,18.996944,,1,,2555,9,83,,1005-1015,1234567,,,6300021,,, +1757,NOR,,LJB Bod R,u,Bjrnya/Herwighamna (sp),74.504028,18.996944,,1,,2555,9,83,,2205-2215,1234567,,,6300021,,, +1758,DNK,,OXZ Lyngby R,u,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,0600-0615,1234567,,,2100002,,, +1758,DNK,,OXZ Lyngby R,u,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,1743-1803,1234567,,,2100002,,, +1758,FRO,,OXJ Trshavn R,u,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,????-????,1234567,,,2700002,,, +1761,ISL,,TFM Neskaupstaur R,u,Neskaupstaur (au),65.140278,-13.738889,,1,,1843,329,75,,0550-0610,1234567,,,19900832,,, +1761,ISL,,TFM Neskaupstaur R,u,Neskaupstaur (au),65.140278,-13.738889,,1,,1843,329,75,,1750-1810,1234567,,,19900832,,, +1764,E,,EAF Finisterre R,u,Cabo Finisterre (GAL-C),42.882361,-9.271944,,1,,1556,235,73,,0703-0718,1234567,,,2200022,,, +1764,E,,EAF Finisterre R,u,Cabo Finisterre (GAL-C),42.882361,-9.271944,,1,,1556,235,73,,1303-1318,1234567,,,2200022,,, +1764,E,,EAF Finisterre R,u,Cabo Finisterre (GAL-C),42.882361,-9.271944,,1,,1556,235,73,,1903-1918,1234567,,,2200022,,, +1764,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,????-????,1234567,,,19900666,,, +1767,DNK,,OXZ Lyngby R,u,Bovbjerg (mjy),56.529964,8.166625,,1,,504,12,62,,1743-1803,1234567,,,2100004,,, +1767,G,,Milford Haven Coastguard,u,Milford Haven (WA-PEM),51.716667,-5.033333,,1,,785,271,65,,????-????,1234567,,,19900560,,, +1767,E,,EAO Cabo de Gata R,u,Cabo de Gata (AND-AL),36.721583,-2.192983,,1,,1839,205,75,,0750-0805,1234567,,,2200025,,, +1767,E,,EAO Cabo de Gata R,u,Cabo de Gata (AND-AL),36.721583,-2.192983,,1,,1839,205,75,,1303-1318,1234567,,,2200025,,, +1767,E,,EAO Cabo de Gata R,u,Cabo de Gata (AND-AL),36.721583,-2.192983,,1,,1839,205,75,,1950-2005,1234567,,,2200025,,, +1768.4,TUN,,3VT Tunis R,u,Tunis (tun),36.8,10.183333,,1,,1728,169,74,,????-????,1234567,-1768.4,,19901426,,, +1770,G,en,Shetland Coastguard,u,Collafirth (SC-SHE),60.391944,-1.27,,1,,1034,336,67,,0710-0725,1234567,,,2800021,,, +1770,G,en,Shetland Coastguard,u,Collafirth (SC-SHE),60.391944,-1.27,,1,,1034,336,67,,1910-1925,1234567,,,2800021,,, +1770,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900836,,, +1771,TUN,,3VM Mahdia R,u,Mahdia (mah),35.5,11.066667,,1,,1883,167,76,,????-????,1234567,,,19901420,,, +1772,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,????-????,1234567,,,19900661,,, +1773,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,????-????,1234567,,,19900665,,, +1775,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900205,,, +1775,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901257,,, +1779,S,,SDJ Stockholm R,u,Bjurklubb (vb),64.461639,21.591833,,1,,1626,27,73,,0733-0748,1234567,,,6800001,,, +1779,S,,SDJ Stockholm R,u,Bjurklubb (vb),64.461639,21.591833,,1,,1626,27,73,,1533-1548,1234567,,,6800001,,, +1780.4,TUN,,3VK Tabarka R,u,Tabarka (jen),36.95,8.75,,1,,1696,173,74,,????-????,1234567,-1780.4,,19901423,,, +1782,NOR,,LGL Flor R,u,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,1215-1230,1234567,,,6300014,,, +1782,NOR,,LGL Flor R,u,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,1830-1845,1234567,,,6300014,,, +1782,NOR,,LGL Flor R,u,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,2315-2330,1234567,,,6300014,,, +1782,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,????-????,1234567,,,19900667,,, +1785,NOR,,LGZ Rogaland R,u,Farsund/Haugviga (st),58.068778,6.743244,,1,,663,2,64,,1215-1230,1234567,,,6300002,,, +1785,NOR,,LGZ Rogaland R,u,Farsund/Haugviga (st),58.068778,6.743244,,1,,663,2,64,,1830-1845,1234567,,,6300002,,, +1785,NOR,,LGZ Rogaland R,u,Farsund/Haugviga (st),58.068778,6.743244,,1,,663,2,64,,2315-2330,1234567,,,6300002,,, +1792,NOR,,LFO rlandet R,u,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,????-????,1234567,,,19901146,,, +1792,ALG,,7TA Alger R,u,Algiers (16),36.766667,3.05,,1,,1726,190,74,,????-????,1234567,,,19900012,,, +1797,S,,SDJ Stockholm R,u,Gislvshammar (sn),55.488917,14.314222,,1,,640,51,63,,0800-0815,1234567,,,6800002,,, +1797,S,,SDJ Stockholm R,u,Gislvshammar (sn),55.488917,14.314222,,1,,640,51,63,,1600-1615,1234567,,,6800002,,, +1813,BEN,,TYA Cotonou R Metro,u,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,,,19900261,,, +1813,GUI,,3XC Conakry R,u,Conakry (cnk),9.508333,-13.711111,,1,,5075,208,108,,????-????,1234567,,,19900629,,, +1813,DJI,,J2A Djibouti R,u,Djibouti (djb),11.608333,43.15,,1,,5576,130,113,,????-????,1234567,,,19900477,,, +1815,BLR,,EW1OZ,b,Minsk,53.883333,27.45,,0.025,,1416,74,87,,,,,,55001,,, +1836.2,S,,SK2AU,b,Skelleftea,64.683333,20.95,,0.0004,,1626,25,107,,,,-1836.2,LW A1 ?,55002,,, +1837,I,,IW3FZQ,b,Monselice (pd),45.216667,11.783333,,0.008,,862,151,87,,,,,Dipole TEST,55003,,, +1840,CZE,,OK0EK,b,Kromeriz,49.266667,17.366667,,0.004,,833,108,89,,,,,Vertical Omni A1 T NonOp,55004,,, +1848,I,,Trapani R,u,Trapani (tp),38.016667,12.483333,,1,,1637,161,73,,????-????,1234567,,,19900677,,, +1850,TUR,,Canakkale R,u,Canakkale,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901434,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,0135-0145,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,0333-0348,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,0735-0745,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,0833-0848,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,1233-1248,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,1335-1345,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,1633-1648,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,1935-1945,1234567,,,4000014,,, +1852,I,,IPP Palermo R,u,Baia del Corallo (pa),38.202611,13.268611,,1,,1635,158,73,,2033-2048,1234567,,,4000014,,, +1853,CZE,,OK0EV,b,near Prague,49.883333,14.366667,,0.0001,,609,111,103,,,,,25m Vert Omni A1 PT,55005,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,0133-0148,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,0433-0448,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,0733-0748,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,0933-0948,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,1333-1348,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,1733-1748,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,1933-1948,1234567,,,4000026,,, +1855,I,,IQP San Benedetto del Tronto R.,u,San Benedetto del Tronto (ap),42.970889,13.865917,,1,,1159,148,69,,2133-2148,1234567,,,4000026,,, +1856,ARS,,HZH Jeddah R,u,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,,,19900068,,, +1862,I,,Marina Militare,u,Palermo (pa),38.116667,13.366667,,1,,1647,158,73,,????-????,1234567,,,19900670,,, +1862,ISL,,TFT Hornafjrur R,u,Hornafjrur (au),64.252778,-15.205556,,1,,1834,326,75,,????-????,1234567,,,19900825,,, +1862,ISL,,safjrur Landhelgisgsla,u,safjrur (vf),66.068056,-23.123611,,1,,2253,325,80,,????-????,1234567,,,19900828,,, +1869,G,,Yarmouth Coastguard,u,Yarmouth (EN-IOW),50.705556,-1.5,,1,,570,257,63,,????-????,1234567,,,19900569,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,0135-0145,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,0333-0348,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,0735-0745,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,0833-0848,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,1233-1248,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,1335-1345,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,1633-1648,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,1935-1945,1234567,,,4000012,,, +1876,I,,IQN Lampedusa R,u,Lampedusa (ag),35.527222,12.541944,,1,,1907,163,76,,2033-2048,1234567,,,4000012,,, +1876,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900837,,, +1880,G,,Holyhead Coastguard,u,Holyhead (WA-GWY),53.3,-4.633333,,1,,755,284,65,,????-????,1234567,,,19900555,,, +1880,KOR,,Jeju Port Service,u,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,,,19900951,,, +1881,MTN,,5TA Nouadhibou R,u,Nouadhibou (dnd),20.908333,-17.040278,,1,,4014,219,97,,????-????,1234567,,,19901127,,, +1881.4,KOR,,Pohang PTMS,u,Pohang (gsb),36.033333,129.366667,,1,,8763,44,143,,????-????,1234567,-1881.4,,19900985,,, +1883,G,en,Belfast Coastguard,u,Tiree (SC-AGB),56.503722,-6.964222,,1,,993,305,67,,0210-0225,1234567,,,2800023,,, +1883,G,en,Belfast Coastguard,u,Tiree (SC-AGB),56.503722,-6.964222,,1,,993,305,67,,0810-0825,1234567,,,2800023,,, +1883,G,en,Belfast Coastguard,u,Tiree (SC-AGB),56.503722,-6.964222,,1,,993,305,67,,1410-1425,1234567,,,2800023,,, +1883,G,en,Belfast Coastguard,u,Tiree (SC-AGB),56.503722,-6.964222,,1,,993,305,67,,2010-2035,1234567,,,2800023,,, +1883,ISL,,Siglufjrur Landhelgisgsla,u,Fjallabygg (ne),66.152778,-18.911111,,1,,2098,328,78,,????-????,1234567,,,19900821,,, +1883,ISL,,TFX Siglufjrur R,u,Fjallabygg (ne),66.152778,-18.911111,,1,,2098,328,78,,2010-2020,1234567,,,4200018,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,0144-0204,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,0544-0604,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,0744-0804,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,0944-1004,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,1344-1404,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,1733-1748,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,1844-1904,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,1944-2044,1234567,,,4000022,,, +1888,I,,IPD Civitavecchia R,u,Civitavecchia (rm),42.175972,11.7375,,1,,1175,158,69,,2344-0004,1234567,,,4000022,,, +1890,HOL,,Den Helder SAR,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,,,19900640,,, +1890,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,0940-0950,1234567,,,3800013,,, +1890,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,2140-2150,1234567,,,3800013,,, +1890,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900838,,, +1904,GRC,,SXE2 Piraeus Coastguard,u,Piraeus (att-pir),37.966667,23.633333,,1,,2064,133,78,,????-????,1234567,,,19900605,,, +1911,ALG,,Annaba R,u,Annaba (23),36.9,7.766667,,1,,1695,176,74,,????-????,1234567,,,19900015,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,0000-0015,1234567,,,19901124,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,0915-0930,1234567,,,19901124,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,1018-1033,1234567,,,19901124,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,1635-1650,1234567,,,19901124,,, +1911,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,1748-1803,1234567,,,19901124,,, +1911,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,0000-0015,1234567,,,19901109,,, +1911,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,0935-0950,1234567,,,19901109,,, +1911,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,1048-1103,1234567,,,19901109,,, +1911,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,1615-1643,1234567,,,19901109,,, +1918,ISR,,4XT Tel Aviv R,u,Tel Aviv (tav),32.066667,34.766667,,1,,3193,123,89,,????-????,1234567,,,19900855,,, +1919,OCE,,Maihi Atoll Sail Mail,p,Manihi Atoll (igm),-14.459444,-146.058333,,1,,15169,320,164,,????-????,1234567,,,19901274,,, +1925,G,,Humber Coastguard,u,Flamborough Head (EN-EYK),54.116681,-0.077861,,1,,487,300,62,,????-????,1234567,,,19900556,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0133-0148,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0333-0348,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0733-0748,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0833-0848,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1233-1248,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1333-1348,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1633-1648,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1933-1948,1234567,,,4000018,,, +1925,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,2033-2048,1234567,,,4000018,,, +1981,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901258,,, +1982,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901259,,, +1983,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901260,,, +1984,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901261,,, +1985,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901262,,, +1986,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901263,,, +1987,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901264,,, +1988,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901265,,, +1989,NZL,,Fishing Buoys,c,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901266,,, +2003.5,IND,,VWB Mumbai R,u,Mumbai=Bombay (MH),19.083239,72.834033,,1,,6744,96,124,,????-????,1234567,-2003.5,,19900687,,, +2003.5,IND,,VWT Tuticorin R,u,Tuticorin (TN),8.783333,78.133333,,1,,7994,99,137,,????-????,1234567,-2003.5,,19900698,,, +2008,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900206,,, +2008,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700138,,, +2009,KOR,,HLU Ulleung R,u,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900992,,, +2012,CKH,,ZKJ Penrhyn R,u,Penrhyn (pen),-8.958336,-157.925289,,1,,15010,338,164,,????-????,1234567,,,19900400,,, +2012,NZL,,Auckland Harbour R,u,Auckland/Harbour (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901161,,, +2012,NZL,,Manukau Harbour R,u,Manukau (AUK),-37,174.866667,,1,,18107,33,174,,????-????,1234567,,,19901193,,, +2012,NZL,,New Plymouth Harbour R,u,New Plymouth/Harbour (TKI),-39.059722,174.045833,,1,,18279,38,174,,????-????,1234567,,,19901201,,, +2012,NZL,,Onehunga Harbour R,u,Onehunga/Harbour,-36.916667,174.783333,,1,,18096,33,174,,????-????,1234567,,,19901205,,, +2012,NZL,,Gisborne Harbour R,u,Gisborne/Harbour (GIS),-38.65,178,,1,,18383,27,175,,????-????,1234567,,,19901170,,, +2012,NZL,,Lyttleton Harbour R,u,Lyttelton (CAN),-43.583333,172.7,,1,,18624,52,175,,????-????,1234567,,,19901187,,, +2012,NZL,,Wanganui Harbour R,u,Wanganui (MWT),-39.933333,175.05,,1,,18406,37,175,,????-????,1234567,,,19901237,,, +2012,NZL,,Wellington Harbour R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901241,,, +2012,NZL,,Westport Harbour R,u,Westport (WTC),-41.75,171.566667,,1,,18409,50,175,,????-????,1234567,,,19901248,,, +2012,NZL,,Taiaroa Head Signal Station,u,Taiaroa Head (OTA),-45.773722,170.728514,,1,,18675,65,176,,????-????,1234567,,,19901219,,, +2017.5,J,en,Bisan Martis,u,Aonoyama (shi-kag),34.303278,133.820944,,0.01,,9135,41,164,,:15-:30,1234567,-2017.5,,31400026,,, +2017.5,J,en,Bisan Martis,u,Aonoyama (shi-kag),34.303278,133.820944,,0.01,,9135,41,164,,:45-:00,1234567,-2017.5,,31400026,,, +2017.5,J,en,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,:00-:15,1234567,-2017.5,,31400023,,, +2017.5,J,en,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,:30-:45,1234567,-2017.5,,31400023,,, +2017.5,J,en,Kanmon Martis,u,Matsubara (kyu-fuk),33.897208,130.918894,,0.01,,9040,44,164,,:15-:30,1234567,-2017.5,,31400021,,, +2017.5,J,en,Kanmon Martis,u,Matsubara (kyu-fuk),33.897208,130.918894,,0.01,,9040,44,164,,:45-:00,1234567,-2017.5,,31400021,,, +2017.5,J,en,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,:00-:15,1234567,-2017.5,,31400022,,, +2017.5,J,en,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,:30-:45,1234567,-2017.5,,31400022,,, +2017.5,J,en,Osaka Martis,u,Matsuhosaki (kns-hyo),34.608458,135.003164,,0.01,,9158,40,164,,:00-:15,1234567,-2017.5,,31400028,,, +2017.5,J,en,Osaka Martis,u,Matsuhosaki (kns-hyo),34.608458,135.003164,,0.01,,9158,40,164,,:30-:45,1234567,-2017.5,,31400028,,, +2017.5,J,en,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,:15-:30,1234567,-2017.5,,31400024,,, +2017.5,J,en,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,:45-:00,1234567,-2017.5,,31400024,,, +2025,ATA,,Ship Tactical/Conference,u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900102,,, +2032,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900207,,, +2032,AUS,,VMR250 Ballina Coastguard,u,Ballina (NSW),-28.87,153.575,,1,,16279,59,168,,????-????,1234567,,,19900126,,, +2032,AUS,,VZX Penta Comstat Firefly R,u,Firefly (NSW),-32.083333,152.25,,1,,16477,64,168,,????-????,1234567,,,19900152,,, +2037.5,IND,,VWP Port Blair R,u,Port Blair (AN),11.666667,92.75,,1,,8738,86,143,,????-????,1234567,-2037.5,,19900691,,, +2042.5,IND,,VWZ Ratnagiri R,u,Ratnagiri (MH),16.983333,73.3,,1,,6955,98,127,,????-????,1234567,-2042.5,,19900695,,, +2042.5,IND,,VWM Chennai R,u,Chennai=Madras (TN),13.082778,80.287222,,1,,7765,95,135,,????-????,1234567,-2042.5,,19900680,,, +2044,KOR,,HLY Yeosu R,u,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19900997,,, +2045,NZL,,Houhora R,u,Houhora,-34.783333,173.1,,1,,17817,34,173,,????-????,1234567,,,19901180,,, +2045,NZL,,Kerikeri R,u,Kerikeri (NTL),-35.216667,173.966667,,1,,17893,33,173,,????-????,1234567,,,19901184,,, +2045,NZL,,Onerahi R,u,Onerahi (NTL),-35.766667,174.366667,,1,,17964,32,173,,????-????,1234567,,,19901206,,, +2045,NZL,,Waitangi Fisherman's R,u,Waitangi (NTL),-35.25,174.083333,,1,,17901,32,173,,????-????,1234567,,,19901234,,, +2045,NZL,,Great Barrier Island R,u,Great Barrier Island,-36.166667,175.416667,,1,,18042,30,174,,????-????,1234567,,,19901173,,, +2045,NZL,,Little Barrier Island R,u,Little Barrier Island,-36.2,175.083333,,1,,18034,31,174,,????-????,1234567,,,19901186,,, +2045,NZL,,New Plymouth Harbour R,u,New Plymouth/Harbour (TKI),-39.059722,174.045833,,1,,18279,38,174,,????-????,1234567,,,19901202,,, +2045,NZL,,Taranaki Harbour R,u,Taranaki (TKI),-39.059722,174.030556,,1,,18279,38,174,,????-????,1234567,,,19901223,,, +2045,NZL,,Tauranga Harbour R,u,Tauranga (BOP),-37.683333,176.166667,,1,,18224,30,174,,????-????,1234567,,,19901227,,, +2045,NZL,,Whakatane Coastguard R,u,Whakatane (BOP),-37.983333,177,,1,,18282,29,174,,????-????,1234567,,,19901251,,, +2045,NZL,,Bluff Fisherman's R,u,Bluff,-46.6,168.333333,,1,,18575,72,175,,????-????,1234567,,,19901166,,, +2045,NZL,,Gisborne Harbour R,u,Gisborne/Harbour (GIS),-38.65,178,,1,,18383,27,175,,????-????,1234567,,,19901171,,, +2045,NZL,,Greymouth Fisherman's R,u,Greymouth,-42.466667,171.2,,1,,18451,53,175,,????-????,1234567,,,19901176,,, +2045,NZL,,Half Moon Bay R,u,Half Moon Bay,-46.9,168.133333,,1,,18579,73,175,,????-????,1234567,,,19901177,,, +2045,NZL,,Hokitika Coastguard R,u,Hokitika,-42.716667,170.966667,,1,,18458,54,175,,????-????,1234567,,,19901179,,, +2045,NZL,,Lyttleton Harbour R,u,Lyttelton (CAN),-43.583333,172.7,,1,,18624,52,175,,????-????,1234567,,,19901188,,, +2045,NZL,,Marlborough Marine R,u,Picton/Marine (MBH),-41.2875,174.005556,,1,,18489,43,175,,????-????,1234567,,,19901195,,, +2045,NZL,,Napier Association R,u,Napier (HKB),-39.483333,176.916667,,1,,18433,31,175,,????-????,1234567,,,19901196,,, +2045,NZL,,Napier Harbour R,u,Napier/Harbour (HKB),-39.478889,176.918056,,1,,18433,31,175,,????-????,1234567,,,19901199,,, +2045,NZL,,Nelson Marine R,u,Nelson/Marine (NSN),-41.283333,173.283333,,1,,18454,45,175,,????-????,1234567,,,19901200,,, +2045,NZL,,Preservation Inlet R,u,Preservation Inlet (STL),-46.155556,166.612222,,1,,18436,73,175,,????-????,1234567,,,19901212,,, +2045,NZL,,Riverton Fisherman's R,u,Riverton (STL),-46.35,168.016667,,1,,18539,72,175,,????-????,1234567,,,19901214,,, +2045,NZL,,Sumner Life Boat Institute,u,Sumner (CAN),-43.570833,172.775,,1,,18627,52,175,,????-????,1234567,,,19901215,,, +2045,NZL,,Timaru Fisherman's R,u,Timaru (CAN),-44.4,171.25,,1,,18607,58,175,,????-????,1234567,,,19901231,,, +2045,NZL,,Wanganui Harbour R,u,Wanganui (MWT),-39.933333,175.05,,1,,18406,37,175,,????-????,1234567,,,19901238,,, +2045,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901242,,, +2045,NZL,,Westport Harbour R,u,Westport (WTC),-41.75,171.566667,,1,,18409,50,175,,????-????,1234567,,,19901249,,, +2045,NZL,,Port Chalmers R,u,Port Chalmers (OTA),-45.815833,170.627222,,1,,18671,65,176,,????-????,1234567,,,19901211,,, +2045,NZL,,Taiaroa Head Signal Station,u,Taiaroa Head (OTA),-45.773722,170.728514,,1,,18675,65,176,,????-????,1234567,,,19901220,,, +2045,NZL,,Kaingaroa Fisherman's R,u,Chatham Islands/Kaingaroa,-44,-176.583333,,1,,19086,15,177,,????-????,1234567,,,19901167,,, +2045,NZL,,Pitt Island Fisherman's R,u,Pitt Island,-44.244444,-176.233333,,1,,19119,14,177,,????-????,1234567,,,19901210,,, +2046,CLM,,HKB Barranquilla R,u,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900406,,, +2046,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900860,,, +2048,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,,,,,19900861,,, +2049,CLM,,HKC Buenaventura R,u,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900412,,, +2049,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,,,,,19900862,,, +2050,KOR,,HLC Incheon R,c,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900960,,, +2050,KOR,,HLK Gangneung R,c,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900968,,, +2050,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900943,,, +2053,CLM,,HKB Barranquilla R,u,Barranquilla (atl),10.966667,-74.8,,1,,8449,270,141,,????-????,1234567,,,19900407,,, +2053,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900863,,, +2054,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0340-0608,1234567,,,19900025,,, +2054,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0950-1208,1234567,,,19900025,,, +2054,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1540-1808,1234567,,,19900025,,, +2054,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,2150-0028,1234567,,,19900025,,, +2054,CAN,,VAJ Prince Rupert Coastguard,u,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,0105-0125,1234567,,,20109236,,, +2054,CAN,,VAJ Prince Rupert Coastguard,u,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,0705-0725,1234567,,,20109236,,, +2054,CAN,,VAJ Prince Rupert Coastguard,u,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,1305-1325,1234567,,,20109236,,, +2054,CAN,,VAJ Prince Rupert Coastguard,u,Prince Rupert (BC),54.2975,-130.418333,,1,,7528,334,132,,1905-1925,1234567,,,20109236,,, +2054,CAN,,VOH498 Prince Rupert Coastguard,u,Hunter Point (BC),53.258611,-132.714722,,1,,7698,335,134,,0105-0125,1234567,,,20109237,,, +2054,CAN,,VOH498 Prince Rupert Coastguard,u,Hunter Point (BC),53.258611,-132.714722,,1,,7698,335,134,,0705-0725,1234567,,,20109237,,, +2054,CAN,,VOH498 Prince Rupert Coastguard,u,Hunter Point (BC),53.258611,-132.714722,,1,,7698,335,134,,1305-1325,1234567,,,20109237,,, +2054,CAN,,VOH498 Prince Rupert Coastguard,u,Hunter Point (BC),53.258611,-132.714722,,1,,7698,335,134,,1905-1925,1234567,,,20109237,,, +2054,CAN,,VAC Comox R,u,Comox (BC),49.683333,-124.933333,,1,,7802,329,135,,????-????,1234567,,,19900282,,, +2054,CAN,,XLK835 Tofino Coastguard,u,Amphitrite Point (BC),48.924833,-125.541806,,1,,7898,329,136,,0050-0110,1234567,,,20109235,,, +2054,CAN,,XLK835 Tofino Coastguard,u,Amphitrite Point (BC),48.924833,-125.541806,,1,,7898,329,136,,0650-0710,1234567,,,20109235,,, +2054,CAN,,XLK835 Tofino Coastguard,u,Amphitrite Point (BC),48.924833,-125.541806,,1,,7898,329,136,,1250-1310,1234567,,,20109235,,, +2054,CAN,,XLK835 Tofino Coastguard,u,Amphitrite Point (BC),48.924833,-125.541806,,1,,7898,329,136,,1850-1910,1234567,,,20109235,,, +2055,TWN,,XSX Keelung R,u,Keelung=Chi-Lung (KLS),25.133333,121.733333,,1,,9386,55,145,,????-????,1234567,,,19901450,,, +2056,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1000-2300,1234567,,,37700022,,, +2056,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900864,,, +2060,HKG,,VRX Hong Kong R,u,Cape d'Aguillar (sou),22.209444,114.256111,,1,,9215,63,144,,????-????,1234567,,,19900636,,, +2064,F,,FUB Marine Nationale,4,Brest (29),48.4,-4.483333,,1,,876,246,66,,????-????,1234567,,,19900522,,, +2065,ARG,,Prefectura Naval Buenos Aires,u,Buenos Aires/Prefectura Naval (df),-34.583333,-58.666667,,1,,11518,230,152,,????-????,1234567,,,19900039,,, +2065,ARG,,Prefectura Naval Mar del Plata,u,Mar del Plata/Prefectura Naval (ba),-38,-57.55,,1,,11772,227,153,,????-????,1234567,,,19900047,,, +2065,ARG,,Prefectura Naval Comodoro Rivadavia,u,Comodoro Rivadavia/Prefectura Naval (ch),-45.866667,-67.5,,1,,12966,228,157,,????-????,1234567,,,19900042,,, +2065,ARG,,Prefectura Naval Ushuaia,u,Ushuaia/Prefectura Naval (tf),-54.8,-68.3,,1,,13729,222,159,,????-????,1234567,,,19900061,,, +2065,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900865,,, +2068,NZL,,Half Moon Bay R,u,Half Moon Bay,-46.9,168.133333,,1,,18579,73,175,,????-????,1234567,,,19901178,,, +2068,NZL,,Inter-Ship Communications,u,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901267,,, +2072,IND,,Mumbai Naval Metro,c,Mumbai/Naval Metro (MH),18.983333,72.833333,,1,,6752,96,125,,????-????,1234567,,,19900686,,, +2079,ARG,es,LPW Baha Blanca R,u,Baha Blanca (ba),-38.716667,-62.283333,,1,,12079,230,154,,????-????,1234567,,,19900035,,, +2079,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900866,,, +2080,TON,,A3A Nuku'alofa R,u,Nuku'alofa (ttp),-21.141667,-175.177778,,1,,16569,3,169,,????-????,1234567,,,19901410,,, +2082.5,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,-2082.5,,19900867,,, +2085,IND,,VWN Cochin R,u,Cochin (KL),9.966667,76.233333,,1,,7762,100,135,,????-????,1234567,,,19900682,,, +2086,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,19900239,,, +2086,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,19900233,,, +2086,USA,,Mississippi River System,u,-,37,-119.3,,1,,8798,319,143,,????-????,1234567,,,19901572,,, +2086,B,,PPC Itaja R,u,Itaja (SC),-26.85,-48.636111,,1,,10279,227,148,,????-????,1234567,,,19900235,,, +2086,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,19900237,,, +2086,ARG,,General Pacheco R,u,Buenos Aires/General Pacheco (df),-34.440556,-58.62,,1,,11503,230,152,,????-????,1234567,,,19900044,,, +2089,NZL,,Onerahi Sports R,u,Onerahi (NTL),-35.766667,174.366667,,1,,17964,32,173,,????-????,1234567,,,19901209,,, +2089,NZL,,Tutukaka Coastguard R,u,Tutukaka (NTL),-35.6,174.533333,,1,,17953,32,173,,????-????,1234567,,,19901233,,, +2089,NZL,,Whangaroa Coastguard R,u,Whangaroa (NTL),-35.045556,173.746111,,1,,17868,33,173,,????-????,1234567,,,19901252,,, +2089,NZL,,Taranaki Harbour R,u,Taranaki (TKI),-39.059722,174.030556,,1,,18279,38,174,,????-????,1234567,,,19901224,,, +2089,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901243,,, +2089.5,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,-2089.5,,19900240,,, +2089.5,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,-2089.5,,19900234,,, +2090.9,ARG,,LPZ Trelew R,u,Trelew (ch),-43.25,-65.3,,1,,12632,229,156,,????-????,1234567,-2090.9,,19900059,,, +2091,KOR,,HLC Incheon R,c,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900961,,, +2091,KOR,,HLK Gangneung R,c,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900969,,, +2091,KOR,,HLM Mokpo R,c,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900978,,, +2091,KOR,,HLN Gunsan R,c,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900973,,, +2091,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900944,,, +2091,KOR,,HLU Ulleung R,c,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900993,,, +2091,KOR,,HLY Yeosu R,c,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19900998,,, +2096,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,????-????,1234567,,,2500019,,, +2096.5,B,,PPC Itaja R,u,Itaja (SC),-26.85,-48.636111,,1,,10279,227,148,,????-????,1234567,-2096.5,,19900236,,, +2096.5,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,-2096.5,,19900238,,, +2096.5,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,-2096.5,,19900868,,, +2097,IND,,VWV Vishakhapatnam R,u,Vishakhapatnam (AP),17.7,83.3,,1,,7575,89,133,,????-????,1234567,,,19900700,,, +2097,IND,,VWY Paradip R,u,Paradip (OR),20.316667,86.616667,,1,,7579,85,133,,????-????,1234567,,,19900689,,, +2099,UKR,,UHZ Kherson R,u,Kherson (KE),46.633333,32.6,,1,,1979,97,77,,????-????,1234567,,,19901462,,, +2103.5,ARG,,LPG Rio Gallegos R,u,Ro Gallegos (sc),-51.633333,-69.216667,,1,,13522,225,159,,????-????,1234567,-2103.5,,19900056,,, +2104,NZL,,Waitangi Fisherman's R,u,Waitangi (NTL),-35.25,174.083333,,1,,17901,32,173,,????-????,1234567,,,19901235,,, +2104,NZL,,Kaingaroa Fisherman's R,u,Chatham Islands/Kaingaroa,-44,-176.583333,,1,,19086,15,177,,????-????,1234567,,,19901168,,, +2110,KOR,,Donghae MRCC,u,Donghae (gan),37.55,129.1,,1,,8607,43,142,,????-????,1234567,,,19900987,,, +2110,KOR,,Incheon MRCC,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900958,,, +2110,KOR,,Busan MRCC,u,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900945,,, +2110,KOR,,Jeju MRCC,u,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,,,19900952,,, +2110,KOR,,Mokpo MRCC,u,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900979,,, +2111,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,????-????,1234567,,,19900536,,, +2112,AUS,,Limited Coastal Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900209,,, +2112,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,37700124,,, +2112,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,19900150,,, +2112,AUS,,VMR488 Bundaberg Marine Rescue,u,Burnett Heads (QLD),-24.760833,152.401478,,0.4,,15840,56,170,,????-????,1234567,,,37700158,,, +2112,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700139,,, +2112,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700148,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0000-0010,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0035-0040,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0335-0340,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0635-0640,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0805-0815,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,0935-0940,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1235-1240,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1305-1315,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1535-1540,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1805-1815,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,1835-1840,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,2135-2140,1234567,,,3500008,,, +2116,GRL,,OYR Aasiaat R,u,Nuuk=Godthb (sms-nuk),64.1828,-51.732528,,1,,3515,315,92,,2305-2315,1234567,,,3500008,,, +2120,VEN,,YVG La Guaira R,u,La Guaira (vgs),10.6,-66.933333,,1,,7944,263,136,,????-????,1234567,,,19901616,,, +2122.9,USA,,WHX Annapolis R,p,Annapolis (MD),38.983333,-76.5,,1,,6256,292,120,,????-????,1234567,-2122.9,,19901496,,, +2126.4,USA,,WHX Annapolis R,p,Annapolis (MD),38.983333,-76.5,,1,,6256,292,120,,????-????,1234567,-2126.4,,19901497,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0000-0010,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0035-0040,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0335-0340,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0635-0640,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0805-0815,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,0935-0940,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1235-1240,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1305-1315,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1535-1540,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1805-1815,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,1835-1840,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,2135-2140,1234567,,,3500011,,, +2129,GRL,,OYR Aasiaat R,u,Qaqortoq=Julianehb (kuj-qqt),60.715889,-46.045217,,1,,3267,308,90,,2305-2315,1234567,,,3500011,,, +2129,NZL,,Kerikeri R,u,Kerikeri (NTL),-35.216667,173.966667,,1,,17893,33,173,,????-????,1234567,,,19901185,,, +2129,NZL,,Onerahi R,u,Onerahi (NTL),-35.766667,174.366667,,1,,17964,32,173,,????-????,1234567,,,19901207,,, +2129,NZL,,Auckland Coastguard R,u,Auckland (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901159,,, +2129,NZL,,Auckland Harbour R,u,Auckland/Harbour (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901162,,, +2129,NZL,,Manukau Coastguard R,u,Manukau (AUK),-37,174.866667,,1,,18107,33,174,,????-????,1234567,,,19901194,,, +2129,NZL,,Sumner Life Boat Institute,u,Sumner (CAN),-43.570833,172.775,,1,,18627,52,175,,????-????,1234567,,,19901216,,, +2129,NZL,,Wellington Coastguard R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901244,,, +2129,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901245,,, +2129,NZL,,Banks Peninsula Cruising Club,u,Akaroa (CAN),-43.809722,172.961667,,1,,18657,53,176,,????-????,1234567,,,19901268,,, +2129,NZL,,Taiaroa Head Signal Station,u,Taiaroa Head (OTA),-45.773722,170.728514,,1,,18675,65,176,,????-????,1234567,,,19901221,,, +2135,UAE,,Port Zayed R,u,Abu Dhabi/Port Zayed (abd),24.522222,54.377778,,1,,5053,108,108,,????-????,1234567,,,19901454,,, +2142,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900869,,, +2150,J,,Nagasaki R,u,Nagasaki (kyu-nag),32.75,129.866667,,1,,9099,45,144,,????-????,1234567,,,19900898,,, +2161,CAN,,VCT Tors Cove R,u,Tors Cove (NL),47.216667,-52.85,,1,,4179,287,99,,????-????,1234567,,,19900307,,, +2162,PTC,,Pitcairn R,u,Pitcairn,-25.068333,-130.105556,,1,,15296,293,164,,????-????,1234567,,,19901320,,, +2162,NZL,,Auckland Harbour R,u,Auckland/Harbour (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901163,,, +2162,NZL,,New Plymouth Harbour R,u,New Plymouth/Harbour (TKI),-39.059722,174.045833,,1,,18279,38,174,,????-????,1234567,,,19901203,,, +2162,NZL,,Tauranga Harbour R,u,Tauranga (BOP),-37.683333,176.166667,,1,,18224,30,174,,????-????,1234567,,,19901228,,, +2162,NZL,,Gisborne Harbour R,u,Gisborne/Harbour (GIS),-38.65,178,,1,,18383,27,175,,????-????,1234567,,,19901172,,, +2162,NZL,,Harbour Authority Working Frequency,u,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901269,,, +2162,NZL,,Lyttleton Harbour R,u,Lyttelton (CAN),-43.583333,172.7,,1,,18624,52,175,,????-????,1234567,,,19901189,,, +2162,NZL,,Timaru Harbour R,u,Timaru (CAN),-44.4,171.25,,1,,18607,58,175,,????-????,1234567,,,19901232,,, +2162,NZL,,Wanganui Harbour R,u,Wanganui (MWT),-39.933333,175.05,,1,,18406,37,175,,????-????,1234567,,,19901239,,, +2162,NZL,,Westport Harbour R,u,Westport (WTC),-41.75,171.566667,,1,,18409,50,175,,????-????,1234567,,,19901250,,, +2162,NZL,,Taiaroa Head Signal Station,u,Taiaroa Head (OTA),-45.773722,170.728514,,1,,18675,65,176,,????-????,1234567,,,19901222,,, +2164,AUS,,Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900211,,, +2167,SLM,,H4H Honiara R,u,Honiara (cth),-9.427778,159.958333,,1,,14700,36,163,,????-????,1234567,,,19901383,,, +2168,VUT,,YJM Port Vila R,u,Port Vila (sef),-17.758333,168.305556,,1,,15880,29,166,,????-????,1234567,,,19901621,,, +2170.5,BEL,,OST Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,-2170.5,,19900250,,, +2170.5,NOR,,Common Norwegian Channel,2,-,68.5,11.05,,1,,1839,6,75,,????-????,1234567,-2170.5,,19901157,,, +2170.5,ARS,,HZH Jeddah R,4,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-2170.5,,19900069,,, +2170.5,KEN,,5ZF Mombasa R,u,Mombasa (coa),-4.066667,39.672222,,1,,6989,142,127,,????-????,1234567,-2170.5,,19900935,,, +2174.5,POL,,SPS Witowo R,4,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,????-????,1234567,-2174.5,,19901290,,, +2174.5,LVA,,Riga Rescue R,4,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,-2174.5,,19901044,,, +2174.5,TUR,,Izmir Turk Radyo,4,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,????-????,1234567,-2174.5,,19901440,,, +2174.5,TUR,,Samsun Turk Radyo,4,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,????-????,1234567,-2174.5,,19901443,,, +2174.5,TUR,,Antalya Turk Radyo,4,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,????-????,1234567,-2174.5,,19901429,,, +2174.5,ARS,,HZH Jeddah R,4,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-2174.5,,19900070,,, +2174.5,BEN,,TYA Cotonou R,4,Cotonou,6.358333,2.433333,,1,,5100,186,108,,????-????,1234567,-2174.5,,19900262,,, +2174.5,KOR,,DSK51,4,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,-2174.5,,19900962,,, +2174.5,KOR,,Donghae R,4,Donghae (gan),37.55,129.1,,1,,8607,43,142,,????-????,1234567,-2174.5,,19900988,,, +2174.5,KOR,,HLE Jeju R,4,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,-2174.5,,19900953,,, +2174.5,KOR,,HLM Mokpo R,4,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,-2174.5,,19900980,,, +2174.5,KOR,,HLP Busan R,4,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,-2174.5,,19900946,,, +2174.5,J,,JNT Nagoya Coastguard R,4,Nagoya (chu-aic),35.166667,136.916667,,1,,9187,39,144,,????-????,1234567,-2174.5,,19900901,,, +2174.5,J,,Shiogama Coastguard R,4,Shiogama (toh-miy),38.316667,141.033333,,1,,9043,34,144,,????-????,1234567,-2174.5,,19900920,,, +2174.5,EQA,,Puerto Ayora R,4,Puerto Ayora (gal),-0.741667,-90.313889,,1,,10531,275,149,,????-????,1234567,-2174.5,,19900508,,, +2174.5,NZL,,ZLM Taupo Maritime R,2,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,????-????,1234567,-2174.5,,19901225,,, +2177,BEL,,OST Oostende R,2,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,,,19900251,,, +2177,DNK,,OXZ Lyngby R,2,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,????-????,1234567,,,19900489,,, +2177,DNK,,OXZ Lyngby R,2,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,????-????,1234567,,,2100007,,, +2177,NOR,,LGQ Rogaland R,2,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,????-????,1234567,,,19901147,,, +2177,NOR,,LGT Tjme R,2,Tjme (ve),59.116667,10.4,,1,,818,16,65,,????-????,1234567,,,19901153,,, +2177,NOR,,LGN Rogaland R,2,Bergen (ho),60.356944,4.95,,1,,921,355,66,,????-????,1234567,,,19901138,,, +2177,NOR,,LFO rlandet R,2,rlandet (st),63.661194,9.5455,,1,,1297,7,70,,????-????,1234567,,,19901145,,, +2177,FRO,,OXJ Trshavn R,2,Trshavn (str),62.014944,-6.800056,,1,,1355,329,71,,????-????,1234567,,,19900539,,, +2177,NOR,,LGP Bod R,2,Sandnessjen (no),66.016667,12.616667,,1,,1585,10,73,,????-????,1234567,,,19901141,,, +2177,ISL,,TFM Neskaupstaur R,2,Neskaupstaur (au),65.140278,-13.738889,,1,,1843,329,75,,????-????,1234567,,,19900833,,, +2177,ISL,,TFT Hornafjrur R,2,Hornafjrur (au),64.252778,-15.205556,,1,,1834,326,75,,????-????,1234567,,,19900826,,, +2177,NOR,,Common Norwegian Channel,2,-,68.5,11.05,,1,,1839,6,75,,????-????,1234567,,,19901158,,, +2177,ISL,,-,2,-,64.775,-18.9,,1,,2012,324,77,,????-????,1234567,,,19900845,,, +2177,ISL,,Vestmannaeyjar Landhelgisgsla,2,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,????-????,1234567,,,19900842,,, +2177,GRC,,Aspropyrgos Attikis Coastguard JRCC,2,Aspropyrgos (att-wst),38.066667,23.583333,,1,,2052,133,78,,????-????,1234567,,,19900602,,, +2177,ISL,,Siglufjrur Landhelgisgsla,2,Fjallabygg (ne),66.152778,-18.911111,,1,,2098,328,78,,????-????,1234567,,,19900822,,, +2177,ISL,,TFA Reykjavk R,2,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900839,,, +2177,ISL,,safjrur Landhelgisgsla,2,safjrur (vf),66.068056,-23.123611,,1,,2253,325,80,,????-????,1234567,,,19900829,,, +2177,NOR,,LGV Vard R,2,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,????-????,1234567,,,19901155,,, +2177,NOR,,LGS Bod R,2,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,????-????,1234567,,,19901150,,, +2177,J,,Otaru Coastguard R,2,Otaru (hok),43.183333,141,,1,,8557,32,142,,????-????,1234567,,,19900911,,, +2177,J,,Kushiro Coastguard R,2,Kushiro (hok),42.983333,144.366667,,1,,8696,30,143,,????-????,1234567,,,19900887,,, +2177,J,,Hiroshima Coastguard R,2,Hiroshima (chg-hir),34.4,132.45,,1,,9063,42,144,,????-????,1234567,,,19900877,,, +2177,J,,JGD Kobe Coastguard R,2,Kobe (kns-hyo),34.683333,135.166667,,1,,9158,40,144,,????-????,1234567,,,19900884,,, +2177,J,,JNT Nagoya Coastguard R,2,Nagoya (chu-aic),35.166667,136.916667,,1,,9187,39,144,,????-????,1234567,,,19900902,,, +2177,J,,Maizuru Coastguard R,2,Maizuru (kns-kyo),35.45,135.333333,,1,,9091,40,144,,????-????,1234567,,,19900889,,, +2177,J,,Moji Coastguard R,2,Moji (kyu-fuk),33.95,130.966667,,1,,9037,44,144,,????-????,1234567,,,19900896,,, +2177,J,,Niigata Coastguard R,2,Niigata (chu-nii),37.916667,139.05,,1,,9005,36,144,,????-????,1234567,,,19900908,,, +2177,J,,Sasebo R,2,Sasebo (kyu-nag),33.166667,129.716667,,1,,9052,45,144,,????-????,1234567,,,19900917,,, +2177,J,,Shiogama Coastguard R,2,Shiogama (toh-miy),38.316667,141.033333,,1,,9043,34,144,,????-????,1234567,,,19900921,,, +2177,J,,Yokohama Coastguard R,2,Yokohama (kan-kgw),35.433333,139.633333,,1,,9274,37,145,,????-????,1234567,,,19900923,,, +2177,J,,Ishigaki Coastguard R,2,Ishigaki (kyu-oki),24.333333,124.15,,1,,9595,54,146,,????-????,1234567,,,19900879,,, +2177,J,,JNB Naha Coastguard R,2,Naha (kyu-oki),26.2,127.666667,,1,,9609,50,146,,????-????,1234567,,,19900904,,, +2177,CHL,,CBV Valparaso Playa Ancha R,2,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,19900373,,, +2182,IRL,en,Shanwick SAR,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,????-????,1234567,,,4100034,,, +2182,HRV,,Rijeka MRCC,u,Rijeka (ri),45.322222,14.447222,,1,,957,139,67,,????-????,1234567,,,19900654,,, +2182,RUS,,UIW Kaliningrad R,u,Kaliningrad (KA),54.716667,20.5,,1,,976,67,67,,????-????,1234567,,,19901338,,, +2182,F,,CROSS Jobourg,u,Jobourg (50),49.684083,-1.907144,,0.25,,642,248,69,,????-????,1234567,,,2500024,,, +2182,LVA,,Riga Rescue R,u,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,,,5200002,,, +2182,FIN,,Rescue Centre Helsinki MRSC,u,Helsinki,60.183333,24.933333,,1,,1448,44,71,,????-????,1234567,,,19900531,,, +2182,FIN,,Rescue Centre Vaasa MRSC,u,Vaasa,63.1,21.616667,,1,,1513,30,72,,????-????,1234567,,,19900532,,, +2182,ALB,,ZAV3 Aulona-Vlor R,u,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900002,,, +2182,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,,,6600010,,, +2182,MRC,,MRSC Al Hocema,u,Al Hocema,35.233333,-3.933333,,1,,2048,208,77,,????-????,1234567,,,19901112,,, +2182,MRC,,MRSC Tanger,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,????-????,1234567,,,19901122,,, +2182,MRC,,MRCC Rabat,u,Rabat (rsz),34.016667,-6.833333,,1,,2273,213,80,,????-????,1234567,,,19901117,,, +2182,RUS,,UDK2 Murmansk Metro,u,Murmansk (MU),68.966667,33.083333,,1,,2335,27,80,,????-????,1234567,,,19901354,,, +2182,MRC,,MRSC Agadir,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,????-????,1234567,,,19901110,,, +2182,EGY,,SUH Al-Iskandariya R,u,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,????-????,1234567,,,19900501,,, +2182,AOE,,MRSC Dakhla,u,Dakhla (odl),23.683333,-15.955556,,1,,3688,220,94,,????-????,1234567,,,32000001,,, +2182,IRN,,EQL Bandar Anzali R,u,Bandar Anzali (gln),37.477778,49.466667,,1,,3697,99,94,,????-????,1234567,,,19900807,,, +2182,IRN,,Amirabad R,u,Amirabad/Port (mzd),36.852778,53.358333,,1,,4005,96,97,,????-????,1234567,,,19900804,,, +2182,IRN,,EQN Bandar-e Imam Khomeini R,u,Bandar-e Imam Khomeini (kuz),30.440278,49.088889,,1,,4214,108,99,,????-????,1234567,,,19900811,,, +2182,CPV,,D4A So Vicente R,u,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900433,,, +2182,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,11700003,,, +2182,VCT,,St Vincent & the Grenadines Coastguard,u,Trinidad (san),13.157278,-61.245639,,1,,7337,260,130,,????-????,1234567,,,19901613,,, +2182,GUF,,CROSS AG MRSC Cayenne,u,Cayenne (973),4.941667,-52.3,,1,,7484,247,132,,????-????,1234567,,,19900627,,, +2182,MLD,,Male GMDSS Operation Centre,u,Male/GMDSS (mle),4.179444,73.506389,,1,,8094,106,138,,????-????,1234567,,,19901098,,, +2182,NMB,,V5L Walvis Bay R,u,Walvis Bay (ego),-23.054278,14.625278,,1,,8396,172,141,,????-????,1234567,,,19901137,,, +2182,CHN,,XSN Ningbo R,u,Ningbo,29.883333,121.55,,1,,8939,53,143,,????-????,1234567,,,19900388,,, +2182,MOZ,,C9L2 Maputo R MRCC,u,Maputo (mpc),-25.955556,32.544444,,1,,9046,156,144,,????-????,1234567,,,19901105,,, +2182,MAU,,3BM Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,????-????,1234567,,,19901050,,, +2182,URG,,CWC34 Punta del Este Prefectura R,u,Punta del Este (ma),-34.966667,-54.95,,1,,11362,227,151,,????-????,1234567,,,19901491,,, +2182,URG,,La Paloma Prefectura R,u,La Paloma/Prefectura (ro),-34.666667,-54.166667,,1,,11295,227,151,,????-????,1234567,,,19901485,,, +2182,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,????-????,1234567,,,19901482,,, +2182,URG,,Montevideo Armanda,u,Montevideo/Armanda (mo),-34.85,-56.166667,,1,,11413,228,152,,????-????,1234567,,,19901486,,, +2182,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,????-????,1234567,,,19901489,,, +2182,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800010,,, +2182,PNG,,P2M Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,????-????,1234567,,,19901286,,, +2182,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.4,,14915,58,167,,????-????,1234567,,,37700128,,, +2182,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,37700125,,, +2182,AUS,,VMR488 Bundaberg Marine Rescue,u,Burnett Heads (QLD),-24.760833,152.401478,,0.4,,15840,56,170,,????-????,1234567,,,37700159,,, +2182,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700132,,, +2182,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700151,,, +2182,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.4,,16726,74,173,,????-????,1234567,,,37700141,,, +2182,AUS,,VMR251 Kingscliff Coastguard,u,Kingscliff/Faulks Park (NSW),-28.257656,153.583189,,0.1,,16225,58,178,,????-????,1234567,,,37700121,,, +2182,AUS,,VMR225 Coastal Patrol Sydney,u,Sydney/Terrey Hills (NSW),-33.69265,151.222661,,0.1,,16546,68,179,,????-????,1234567,,,37700146,,, +2182,IW,,Calling & Distress,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900870,,, +2183.4,KOR,,Pohang PTMS,u,Pohang (gsb),36.033333,129.366667,,1,,8763,44,143,,????-????,1234567,-2183.4,,19900986,,, +2187.5,DNK,,OXZ Lyngby R,2,Blvand (sdk),55.555556,8.113333,,1,,399,16,61,,????-????,1234567,-2187.5,,2100008,,, +2187.5,DNK,,OXZ Lyngby R,2,Skagen (njy),57.738736,10.574667,,1,,680,21,64,,????-????,1234567,-2187.5,,2100009,,, +2187.5,LVA,,Riga Rescue R,2,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,-2187.5,,5200003,,, +2187.5,ROU,,YQI Constanţa R,r,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-2187.5,,6600009,,, +2187.5,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,-2187.5,,35400111,,, +2187.5,CHL,,CBV Valparaso Playa Ancha R,2,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0000-2400,1234567,-2187.5,,36800011,,, +2187.5,IW,,GMDSS,,GMDSS,,,-,,,?,?,400,,????-????,1234567,-2187.5,,19900858,,, +2189.5,ISL,,-,2,-,64.775,-18.9,,1,,2012,324,77,,????-????,1234567,-2189.5,,19900846,,, +2189.5,J,,Ise-wan Martis,u,Iragomisaki (kns-mie),34.5805,137.016361,,0.01,,9249,39,164,,????-????,1234567,-2189.5,,19900925,,, +2189.5,J,,Kurushima Martis,u,Imabari (shi-ehi),34.090167,132.987903,,0.01,,9117,42,164,,????-????,1234567,-2189.5,,19900886,,, +2189.5,J,,Tokyo Martis,u,Kannonsaki (kan-tok),35.256167,139.743417,,0.01,,9296,37,165,,????-????,1234567,-2189.5,,19900926,,, +2191,TWN,,XSX Keelung R,u,Keelung=Chi-Lung (KLS),25.133333,121.733333,,1,,9386,55,145,,????-????,1234567,,,19901451,,, +2192,COD,,9PA Banana R,u,Banana,-6.002778,12.4,,1,,6487,173,122,,????-????,1234567,,,19900419,,, +2197,LBY,,5AT Tarabulus=Tripoli R,u,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901021,,, +2197.5,NCL,,FJP Nouma R,u,Nouma (sud),-22.315389,166.473231,,1,,16289,35,168,,????-????,1234567,-2197.5,,19901133,,, +2198,CUB,,Nueva Gerona R,u,Nueva Gerona (ij),21.883333,-82.8,,1,,8053,283,138,,????-????,1234567,,,19900446,,, +2200,KWT,,9KK Kuwait R,u,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901011,,, +2201,NRU,,C2N Nauru R,u,Nauru,-0.533333,166.911111,,1,,13998,24,160,,????-????,1234567,,,19901132,,, +2201,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0800-2100,1234567,,,37700016,,, +2201,AUS,,Iluka/Yamba Coastguard,u,Iluka (NSW),-29.416667,153.359722,,1,,16315,60,168,,????-????,1234567,,,19900158,,, +2201,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,19900148,,, +2201,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700140,,, +2201.1,G,,GYA Royal Navy,r,London (EN-GTL),51.5,-0.116667,,1,,454,264,62,,????-????,1234567,-2201.1,,19900558,,, +2202,AUS,,Iluka/Yamba Coastguard,u,Iluka (NSW),-29.416667,153.359722,,1,,16315,60,168,,????-????,1234567,,,19900159,,, +2203,G,,GYA Royal Navy,r,London (EN-GTL),51.5,-0.116667,,1,,454,264,62,,????-????,1234567,,,19900559,,, +2203,G,,MGJ Royal Navy Faslane,r,Faslane/Royal Navy Base (SC-AGB),56.056067,-4.814572,,1,,852,305,66,,????-????,1234567,,,19900553,,, +2203.3,CHN,,Chiwan R,u,Chiwan,22.466667,113.883333,,1,,9169,63,144,,????-????,1234567,-2203.3,,19900376,,, +2204,HOL,,PBB Koninklijke Marine,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,,,19900645,,, +2207,CKH,,ZKR Rarotonga R,u,Rarotonga (rtg),-21.208333,-159.775,,1,,16379,336,168,,????-????,1234567,,,19900401,,, +2207,NIU,,ZKN Niue R,u,Niue,-19.066667,-169.922222,,1,,16327,354,168,,????-????,1234567,,,19901136,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0003-0013,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0133-0143,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0533-0543,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0803-0813,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1333-1343,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1733-1743,1234567,,,32500026,,, +2207,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2003-2013,1234567,,,32500026,,, +2210,S,,Fiskeri vervakning,u,-,62,17.6,,1,,1287,27,70,,????-????,1234567,,,19901377,,, +2210,TUN,,3VB Bizerte R,u,Bizerte (biz),37.266675,9.883333,,1,,1673,169,74,,????-????,1234567,,,19901416,,, +2212,TRD,,Chaguaramas Sail Mail,p,Chaguaramas,10.681944,-61.645833,,1,,7580,259,133,,????-????,1234567,,,19901412,,, +2217,KIR,,T3C Tarawa R,u,Tarawa Atoll/Takaronga,1.361111,173.155561,,1,,13941,16,160,,????-????,1234567,,,19900940,,, +2221,I,,Marina Militare,u,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,,,19900671,,, +2225,GRL,,OYG Mestersvig R,u,Mestersvig (neg),72.233333,-23.933333,,1,,2673,338,84,,????-????,1234567,,,19900615,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0000-0010,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0035-0040,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0335-0340,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0635-0640,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0805-0815,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,0935-0940,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1235-1240,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1305-1315,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1535-1540,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1805-1815,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,1835-1840,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,2135-2140,1234567,,,3500009,,, +2225,GRL,,OYR Aasiaat R,u,Paamiut=Frederikshb (sms-paa),61.992428,-49.674472,,1,,3441,311,91,,2305-2315,1234567,,,3500009,,, +2226,G,en,Humber Coastguard,u,Flamborough Head (EN-EYK),54.116681,-0.077861,,1,,487,300,62,,0650-0705,1234567,,,2800017,,, +2226,G,en,Humber Coastguard,u,Flamborough Head (EN-EYK),54.116681,-0.077861,,1,,487,300,62,,1850-1905,1234567,,,2800017,,, +2226,G,en,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,0033-0036,1234567,,,2800020,,, +2226,G,en,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,0630-0645,1234567,,,2800020,,, +2226,G,en,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,1830-1845,1234567,,,2800020,,, +2226,G,en,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,2130-2145,1234567,,,2800020,,, +2226,G,en,Falmouth Coastguard,u,Lizard Point (EN-CNW),49.960444,-5.202028,,1,,845,258,65,,0610-0625,1234567,,,2800018,,, +2226,G,en,Falmouth Coastguard,u,Lizard Point (EN-CNW),49.960444,-5.202028,,1,,845,258,65,,1810-1825,1234567,,,2800018,,, +2226,G,,Shetland Coastguard,u,Collafirth (SC-SHE),60.391944,-1.27,,1,,1034,336,67,,????-????,1234567,,,19900552,,, +2226,G,,Stornoway Coastguard,u,Butt of Lewis (SC-WIL),58.515139,-6.261478,,1,,1069,317,68,,????-????,1234567,,,19900550,,, +2230,DNK,,OVF Kongelige Danske Marine,u,Stevns (sjl),55.322222,12.445833,,1,,534,46,62,,????-????,1234567,,,19900490,,, +2230,DNK,,OVK Kongelige Danske Marine,u,Aarhus (arh),56.15,10.216667,,1,,513,27,62,,????-????,1234567,,,19900479,,, +2230,DNK,,OVG Kongelige Danske Marine,u,Frederikshavn (njy),57.445833,10.55,,1,,650,22,63,,????-????,1234567,,,19900482,,, +2250,J,,JFC,u,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,19900892,,, +2256,BEL,,OST Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,,,19900252,,, +2264,UKR,,Sevastopol' R 3,u,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901474,,, +2264,RUS,,UGN Nikolayevsk-na-Amure R,u,Nikolayevsk-na-Amure (KH),53.133333,140.733333,,1,,7566,28,133,,????-????,1234567,,,19901359,,, +2264,RUS,,UDC Korsakov R,u,Korsakov (SL),46.633333,142.783333,,1,,8276,29,140,,????-????,1234567,,,19901344,,, +2265,GRL,,OYG Mestersvig R,u,Mestersvig (neg),72.233333,-23.933333,,1,,2673,338,84,,????-????,1234567,,,19900616,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0000-0010,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0035-0040,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0335-0340,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0635-0640,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0805-0815,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,0935-0940,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1235-1240,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1305-1315,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1535-1540,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1805-1815,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,1835-1840,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,2135-2140,1234567,,,3500012,,, +2265,GRL,,OYR Aasiaat R,u,Ikerasassuaq (kuj-nnt),60.05,-43.166667,,1,,3118,306,88,,2305-2315,1234567,,,3500012,,, +2266,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901308,,, +2270,MEX,,XFS Tampico R,u,Tampico (tam),22.277778,-97.8,,1,,8986,295,144,,????-????,1234567,,,19901092,,, +2282,ALB,,ZAC Shengjin R,u,Shngjin (lzh),41.816667,19.6,,1,,1516,134,72,,????-????,1234567,,,19900006,,, +2282,ALB,,ZAD Durres R,u,Durres (dur),41.316667,19.433333,,1,,1553,135,73,,????-????,1234567,,,19900003,,, +2282,ALB,,ZAV Vlor R,u,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900010,,, +2282,ALB,,ZAS Sarand R,u,Sarand (vre),39.883333,20,,1,,1712,137,74,,????-????,1234567,,,19900004,,, +2282,AUS,,Ship Stations in Pleasure Vessels,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900213,,, +2284,KOR,,HLC Incheon R,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900963,,, +2284,KOR,,HLC Incheon R,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900964,,, +2284,KOR,,HLC Incheon R,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,,,19900965,,, +2284,AUS,,Rhiannon Game Fishing Club,u,Botany Bay (NSW),-33.966667,151.166667,,1,,16565,68,169,,????-????,1234567,,,19900129,,, +2291,I,,Marina Militare,u,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,,,19900672,,, +2295,IND,,Vishakhapatnam Naval Metro,c,Vishakhapatnam/Naval Metro (AP),17.691667,83.291667,,1,,7575,89,133,,????-????,1234567,,,19900701,,, +2296,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901034,,, +2297,DNK,,RCC Karup,u,Karup (mjy),56.308333,9.169444,,1,,500,20,62,,????-????,1234567,,,19900485,,, +2299,KOR,,HLE Jeju R,u,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,,,19900954,,, +2301,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901035,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0000-0010,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0035-0040,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0335-0340,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0635-0640,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0805-0815,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,0935-0940,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1235-1240,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1305-1315,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1535-1540,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1805-1815,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,1835-1840,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,2135-2140,1234567,,,3500004,,, +2304,GRL,,OYR Aasiaat R,u,Qeqertarsuaq=Godhavn (qaa-qeq),69.242672,-53.527025,,1,,3571,325,93,,2305-2315,1234567,,,3500004,,, +2309,ALS,,WSX78 Kodiak R,u,Kodiak (AK),57.783333,-152.4,,1,,7645,348,133,,????-????,1234567,,,19900026,,, +2310,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,????-????,1234567,,,19901460,,, +2310,GEO,,Georgia MRCC,u,-,42.6,43.5,,1,,2949,96,86,,????-????,1234567,,,19900588,,, +2310,GEO,,Poti R,u,Poti,42.15,41.683333,,1,,2854,99,86,,????-????,1234567,,,19900585,,, +2311,IRL,,Arklow Shipping Company,u,Arklow (WW),52.791667,-6.143056,,1,,853,280,66,,????-????,1234567,,,19900801,,, +2311,ISL,,TFM Neskaupstaur R,u,Neskaupstaur (au),65.140278,-13.738889,,1,,1843,329,75,,????-????,1234567,,,19900834,,, +2311,ISL,,TFT Hornafjrur R,u,Hornafjrur (au),64.252778,-15.205556,,1,,1834,326,75,,????-????,1234567,,,19900827,,, +2311,ISL,,Vestmannaeyjar Landhelgisgsla,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,????-????,1234567,,,19900843,,, +2311,ISL,,Siglufjrur Landhelgisgsla,u,Fjallabygg (ne),66.152778,-18.911111,,1,,2098,328,78,,????-????,1234567,,,19900823,,, +2311,ISL,,TFA Reykjavk R,u,Reykjavk (ho),64.084056,-21.846972,,1,,2098,320,78,,????-????,1234567,,,19900840,,, +2311,ISL,,safjrur Landhelgisgsla,u,safjrur (vf),66.068056,-23.123611,,1,,2253,325,80,,????-????,1234567,,,19900830,,, +2312,ALS,,WSX77 Cordova R,u,Cordova (AK),60.55,-145.75,,1,,7245,345,129,,????-????,1234567,,,19900021,,, +2312,ALS,,WDU29 Sitka R,u,Sitka (AK),57.051389,-135.358333,,1,,7387,338,131,,????-????,1234567,,,19900029,,, +2312,ALS,,WSX74 Cold Bay R,u,Cold Bay (AK),55.183333,-162.716667,,1,,8043,354,137,,????-????,1234567,,,19900019,,, +2320,LBY,,5AT Tarabulus=Tripoli R,u,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901022,,, +2320,MEX,,XFS Tampico R,u,Tampico (tam),22.277778,-97.8,,1,,8986,295,144,,????-????,1234567,,,19901093,,, +2325,RUS,,Arkhangelsk MRSC,u,Archangelsk (AR),64.566667,40.533333,,1,,2380,41,81,,????-????,1234567,,,19901331,,, +2325,AUS,en,VL8T ABC Darwin,,Tennant Creek (NT),-19.669722,134.2625,,50,,14272,71,144,,0830-2130,1234567,9999,,37700015,,, +2332,FIN,,Finnish Ice Breakers,u,-,65.375,25.75,,1,,1833,29,75,,????-????,1234567,,,19900533,,, +2334.4,KOR,,HLM Mokpo R,u,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,-2334.4,,19900981,,, +2335,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901309,,, +2338,FIN,,Finnish Ice Breakers,u,-,65.375,25.75,,1,,1833,29,75,,????-????,1234567,,,19900534,,, +2340,CHL,es,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1230-1300,1234567,,,36800025,,, +2341,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901036,,, +2341,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901310,,, +2341,CPV,,D4D Praia R,u,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900426,,, +2347,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901311,,, +2350,KRE,ko,KCBS Chosun Jungang Pangsong,,Sariwon (hwb),38.4867,125.451094,,5,ND,8346,45,133,,2000-1800,1234567,,,50015957,,, +2350,J,,JFC,c,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,19900893,,, +2352.5,PAK,,ASK Karachi R,u,Karachi (shd),24.851944,67.0425,,1,,5868,97,116,,????-????,1234567,-2352.5,,19901284,,, +2353,POR,,Inter-Ship Portuguese Vessels,u,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,,,19901312,,, +2357.5,DNK,,OUA32 Kongelige Danske Marine,c,Aarhus (arh),56.15,10.216667,,1,,513,27,62,,????-????,1234567,-2357.5,,19900480,,, +2358.4,KOR,,HLM Mokpo R,u,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,-2358.4,,19900982,,, +2368,G,,Royal Navy Cape Wrath,u,Cape Wrath (SC-HIL),58.6255,-4.998889,,1,,1020,320,67,,????-????,1234567,,,19900551,,, +2368.5,AUS,el,R Symban,,Leppington (NSW),-33.961667,150.803333,,1,,16542,69,169,,0100-1900,1234567,47,,37700010,,, +2368.5,AUS,xx,RLMS,,Leppington (NSW),-33.961667,150.803333,,1,,16542,69,169,,1900-0100,1234567,47,,37700010,,, +2376,BEL,,OST Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,,,19900253,,, +2379.9,B,pt,ZYG852 Rdio Educadora,,Limeira/Praa Dr. Milton Silveira (SP),-22.560444,-47.419556,,0.25,,9804,228,152,,2000-1030,1234567,-2379.9,,40000008,,, +2388,G,,Guardian Oilfield Services,u,-,55.55,-2.65,,1,,706,306,64,,????-????,1234567,,,19900575,,, +2390,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900871,,, +2390.1,MEX,es,XEJN-OC R Huayacocotla,,Huayacocotla (vcz),20.566667,-98.45,,0.8,,9178,294,145,,1200-1500,1234567,-2390.1,,40000010,,, +2390.1,MEX,es,XEJN-OC R Huayacocotla,,Huayacocotla (vcz),20.566667,-98.45,,0.8,,9178,294,145,,2100-0200,1234567,-2390.1,,40000010,,, +2394,ALG,,Annaba R,u,Annaba (23),36.9,7.766667,,1,,1695,176,74,,????-????,1234567,,,19900016,,, +2394.5,J,,Nagasaki R,u,Nagasaki (kyu-nag),32.75,129.866667,,1,,9099,45,144,,????-????,1234567,-2394.5,,19900899,,, +2395,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900872,,, +2397,ALS,,WSX77 Cordova R,u,Cordova (AK),60.55,-145.75,,1,,7245,345,129,,????-????,1234567,,,19900022,,, +2397,ALS,,WGG56 Ketchikan R,u,Ketchikan (AK),55.35,-131.65,,1,,7459,336,132,,????-????,1234567,,,19900024,,, +2400,ALB,,ZAC Shengjin R,u,Shngjin (lzh),41.816667,19.6,,1,,1516,134,72,,????-????,1234567,,,19900007,,, +2400,ALB,,ZAV Vlor R,u,Vlor (vre),40.466667,19.466667,,1,,1633,137,73,,????-????,1234567,,,19900011,,, +2400,ALB,,ZAS Sarand R,u,Sarand (vre),39.883333,20,,1,,1712,137,74,,????-????,1234567,,,19900005,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0000-0010,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0035-0040,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0335-0340,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0635-0640,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0805-0815,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,0935-0940,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1235-1240,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1305-1315,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1535-1540,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1805-1815,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,1835-1840,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,2135-2140,1234567,,,3500010,,, +2400,GRL,,OYR Aasiaat R,u,Maniitsoq (qqa-maq),65.423386,-52.887856,,1,,3557,318,93,,2305-2315,1234567,,,3500010,,, +2400,ALS,,WGG55 Nome R,u,Nome (AK),64.5,-165.4,,1,,7029,356,127,,????-????,1234567,,,19900028,,, +2400,ALS,,WAB976 Juneau R,u,Juneau (AK),58.3,-134.416667,,1,,7237,339,129,,????-????,1234567,,,19900023,,, +2400,RUS,,UBY Magadan R,u,Magadan (MA),59.566667,150.8,,1,,7193,19,129,,????-????,1234567,,,19901347,,, +2401,LTU,,Lietuvos Kariuomenė,u,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901037,,, +2401,ATA,,LSB Centro Meteorologico Base Marambio,f,Base Marambio [ARG] (aar),-64.24,-56.625278,,1,,14026,209,160,,????-????,1234567,,,19900078,,, +2410,B,pt,ZYF202 Rdio Transamaznica,,Senador Guiomard (AC),-10.5,-67.616667,,1,,9865,251,147,,,,,,36902878,,, +2417.5,J,,Otaru Coastguard R,4,Otaru (hok),43.183333,141,,1,,8557,32,142,,????-????,1234567,-2417.5,,19900912,,, +2417.5,J,,Kushiro Coastguard R,4,Kushiro (hok),42.983333,144.366667,,1,,8696,30,143,,????-????,1234567,-2417.5,,19900888,,, +2417.5,J,,Hiroshima Coastguard R,4,Hiroshima (chg-hir),34.4,132.45,,1,,9063,42,144,,????-????,1234567,-2417.5,,19900878,,, +2417.5,J,,JGD Kobe Coastguard R,4,Kobe (kns-hyo),34.683333,135.166667,,1,,9158,40,144,,????-????,1234567,-2417.5,,19900885,,, +2417.5,J,,JNT Nagoya Coastguard R,4,Nagoya (chu-aic),35.166667,136.916667,,1,,9187,39,144,,????-????,1234567,-2417.5,,19900903,,, +2417.5,J,,Maizuru Coastguard R,4,Maizuru (kns-kyo),35.45,135.333333,,1,,9091,40,144,,????-????,1234567,-2417.5,,19900890,,, +2417.5,J,,Moji Coastguard R,4,Moji (kyu-fuk),33.95,130.966667,,1,,9037,44,144,,????-????,1234567,-2417.5,,19900897,,, +2417.5,J,,Niigata Coastguard R,4,Niigata (chu-nii),37.916667,139.05,,1,,9005,36,144,,????-????,1234567,-2417.5,,19900909,,, +2417.5,J,,Sasebo Coastguard R,4,Sasebo (kyu-nag),33.166667,129.716667,,1,,9052,45,144,,????-????,1234567,-2417.5,,19900918,,, +2417.5,J,,Shiogama Coastguard R,4,Shiogama (toh-miy),38.316667,141.033333,,1,,9043,34,144,,????-????,1234567,-2417.5,,19900922,,, +2417.5,J,,JNJ Kagoshima Coastguard,4,Kagoshima (kyu-kag),31.302222,130.536944,,1,,9269,45,145,,????-????,1234567,-2417.5,,19900881,,, +2417.5,J,,Ishigaki Coastguard R,4,Ishigaki (kyu-oki),24.333333,124.15,,1,,9595,54,146,,????-????,1234567,-2417.5,,19900880,,, +2417.5,J,,JNB Naha Coastguard R,4,Naha (kyu-oki),26.2,127.666667,,1,,9609,50,146,,????-????,1234567,-2417.5,,19900905,,, +2418,LBY,,5AT Tarabulus=Tripoli R,u,Tarabulus=Tripoli (tbl),32.905556,13.236111,,1,,2205,163,79,,????-????,1234567,,,19901023,,, +2430,MKD,,Makedonsko R 1/R Makedonija,,Ovče Pole (EA),41.783278,21.890389,,1,,1637,128,73,,????-????,1234567,,,5600001,,, +2431,MEX,,XFY Guaymas R,u,Guaymas,27.933333,-110.9,,1,,9236,308,144,,????-????,1234567,,,19901080,,, +2431,MEX,,XFQ Salina Cruz R,u,Salina Cruz (oax),16.166667,-95.2,,1,,9363,289,145,,????-????,1234567,,,19901089,,, +2431,MEX,,XFK La Paz R,u,La Paz (bcs),24.166667,-110.3,,1,,9553,305,146,,????-????,1234567,,,19901083,,, +2433,KOR,,HLK Gangneung R,u,Gangneung (gan),37.75,128.9,,1,,8579,43,142,,????-????,1234567,,,19900970,,, +2434.4,KOR,,HLP Busan R,u,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,-2434.4,,19900947,,, +2434.4,KOR,,HLY Yeosu R,u,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,-2434.4,,19900999,,, +2436,AUS,,Limited Coastal & Ship Stations,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900215,,, +2436,AUS,,VMR250 Ballina Coastguard,u,Ballina (NSW),-28.87,153.575,,1,,16279,59,168,,????-????,1234567,,,37700099,,, +2436.52,GIB,,GYU Royal Navy,r,Gibraltar (gib),36.148611,-5.3625,,1,,2002,212,77,,????-????,1234567,-2436.52,,19900591,,, +2436.92,GIB,,GYU Royal Navy,r,Gibraltar (gib),36.148611,-5.3625,,1,,2002,212,77,,????-????,1234567,-2436.92,,19900592,,, +2439,CPV,,D4A So Vicente R,u,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900434,,, +2439,CPV,,D4D Praia R,u,Praia (san-pra),14.916667,-23.516667,,1,,4910,224,106,,????-????,1234567,,,19900427,,, +2440,NZL,,Sumner Life Boat Institute,u,Sumner (CAN),-43.570833,172.775,,1,,18627,52,175,,????-????,1234567,,,19901217,,, +2442,USA,,WDR Miami R,u,Miami (FL),25.766667,-80.2,,1,,7553,284,133,,????-????,1234567,,,19901535,,, +2444,NZL,,Houhora Marine R,u,Houhora/Marine,-34.783333,173.1,,1,,17817,34,173,,????-????,1234567,,,19901182,,, +2444,NZL,,Great Barrier Island R,u,Great Barrier Island,-36.166667,175.416667,,1,,18042,30,174,,????-????,1234567,,,19901174,,, +2444,NZL,,Leigh Association R,u,Leigh,-36.283333,174.816667,,1,,18033,32,174,,????-????,1234567,,,19901270,,, +2444,NZL,,Napier Association R,u,Napier (HKB),-39.483333,176.916667,,1,,18433,31,175,,????-????,1234567,,,19901197,,, +2444,NZL,,Preservation Inlet R,u,Preservation Inlet (STL),-46.155556,166.612222,,1,,18436,73,175,,????-????,1234567,,,19901213,,, +2444,NZL,,Te Anau Fiordland Fisherman's R,u,Te Anau (STL),-45.416667,167.716667,,1,,18462,69,175,,????-????,1234567,,,19901229,,, +2444,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901246,,, +2450,USA,,WOU Boston R,u,Boston (MA),42.366667,-71.066667,,1,,5664,292,114,,????-????,1234567,,,19901501,,, +2450,USA,,KQP Galveston R,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,????-????,1234567,,,19901519,,, +2450,USA,,Kneeland/Eureka R,u,Kneeland/Eureka (CA),40.8,-124.166667,,1,,8638,324,143,,????-????,1234567,,,19901531,,, +2456,NZL,,Inter-Ship Communications,u,-,-40.5,172.5,,1,,18345,45,175,,????-????,1234567,,,19901271,,, +2457.5,PAK,,AQP2 Pakistan Navy,c,Karachi/Pakistan Navy (shd),24.8,66.972222,,1,,5868,97,116,,????-????,1234567,-2457.5,,19901285,,, +2461.5,IRL,,Irish Defence Forces,4,-,53.45,-8.5,,1,,1012,284,67,,????-????,1234567,-2461.5,,19900803,,, +2463,I,,Marina Militare,r,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,,,19900673,,, +2464,UKR,,UWD9 Yalta Port Control,u,Yalta (KR),44.495556,34.172222,,1,,2204,102,79,,????-????,1234567,,,19901480,,, +2464,GEO,,UFF Sukhumi R,u,Sukhumi=Aqwa (abk),42.983333,40.972222,,1,,2754,98,85,,????-????,1234567,,,19900587,,, +2466,USA,,WFA Tampa R,u,Tampa (FL),27.95,-82.466667,,1,,7520,287,132,,????-????,1234567,,,19901569,,, +2466,USA,,KOU San Pedro R,u,San Pedro (TX),27.783333,-97.683333,,1,,8493,298,142,,????-????,1234567,,,19901559,,, +2467,I,,Marina Militare,r,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,,,19900674,,, +2470,MEX,,XFY Guaymas R,u,Guaymas,27.933333,-110.9,,1,,9236,308,144,,????-????,1234567,,,19901081,,, +2470,MEX,,XFL Mazatln R,u,Mazatln (sin),23.216667,-106.416667,,1,,9420,302,145,,????-????,1234567,,,19901086,,, +2474,HOL,,PBC32 Koninklijke Marine,r,Goeree-Overflakkee (zho),51.822222,4.038889,,1,,166,260,59,,????-????,1234567,,,19900649,,, +2480,NZL,,Bay of Islands Maritime R,u,Russell (NTL),-35.261111,174.125,,1,,17904,32,173,,????-????,1234567,,,19901165,,, +2480,NZL,,Far North Marine R,u,Mangonui (NTL),-34.983333,173.533333,,1,,17854,33,173,,????-????,1234567,,,19901191,,, +2480,NZL,,Houhora R,u,Houhora,-34.783333,173.1,,1,,17817,34,173,,????-????,1234567,,,19901181,,, +2480,NZL,,Mangonui R,u,Mangonui (NTL),-34.983333,173.533333,,1,,17854,33,173,,????-????,1234567,,,19901192,,, +2480,NZL,,Onerahi R,u,Onerahi (NTL),-35.766667,174.366667,,1,,17964,32,173,,????-????,1234567,,,19901208,,, +2480,NZL,,Waitangi Fisherman's R,u,Waitangi (NTL),-35.25,174.083333,,1,,17901,32,173,,????-????,1234567,,,19901236,,, +2480,NZL,,Whangaroa Coastguard R,u,Whangaroa (NTL),-35.045556,173.746111,,1,,17868,33,173,,????-????,1234567,,,19901253,,, +2480,NZL,,Great Barrier Island R,u,Great Barrier Island,-36.166667,175.416667,,1,,18042,30,174,,????-????,1234567,,,19901175,,, +2480,NZL,,NZ Steel Mining Ltd Offshore Terminal,u,Taharoa (WKO),-38.173611,174.706944,,1,,18219,35,174,,????-????,1234567,,,19901218,,, +2480,NZL,,New Plymouth Harbour R,u,New Plymouth/Harbour (TKI),-39.059722,174.045833,,1,,18279,38,174,,????-????,1234567,,,19901204,,, +2480,NZL,,Napier Association R,u,Napier (HKB),-39.483333,176.916667,,1,,18433,31,175,,????-????,1234567,,,19901198,,, +2480,NZL,,Te Anau Fiordland Fisherman's R,u,Te Anau (STL),-45.416667,167.716667,,1,,18462,69,175,,????-????,1234567,,,19901230,,, +2480,NZL,,Wellington R,u,Wellington (WGN),-41.3,174.783333,,1,,18525,41,175,,????-????,1234567,,,19901247,,, +2480,NZL,,Kaingaroa Fisherman's R,u,Chatham Islands/Kaingaroa,-44,-176.583333,,1,,19086,15,177,,????-????,1234567,,,19901169,,, +2484,BEL,,OST Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,????-????,1234567,,,19900254,,, +2485,AUS,en,VL8K ABC Darwin,,Katherine (NT),-14.395,132.179444,,50,,13671,69,142,,0830-2130,1234567,4,,40000016,,, +2490,USA,,WDR Miami R,u,Miami (FL),25.766667,-80.2,,1,,7553,284,133,,????-????,1234567,,,19901536,,, +2500,CHN,,BPM,,Lintong/Pucheng (SA),34.947778,109.552389,,10,,7813,58,125,,0759-0930,1234567,,,36200215,,, +2500,USA,en,WWV,,Fort Collins (CO),40.682,-105.042028,,10,,7769,311,125,,0000-2400,1234567,,,20000084,,, +2500,HWA,en,WWVH,,Kekaha (HI),21.989139,-159.764556,,5,,11667,347,146,,0000-2400,1234567,,,20000089,,, +2506,USA,,WOU Boston R,u,Boston (MA),42.366667,-71.066667,,1,,5664,292,114,,????-????,1234567,,,19901502,,, +2506,VIR,,WAH Saint Thomas R,u,Saint Thomas (sto),18.35,-64.872222,,1,,7137,267,128,,????-????,1234567,,,19901619,,, +2506,USA,,Delcambre Marine Operator,u,Delcambre (LA),29.95,-91.983333,,1,,7957,295,137,,????-????,1234567,,,19901515,,, +2506,USA,,Kneeland/Eureka R,u,Kneeland/Eureka (CA),40.8,-124.166667,,1,,8638,324,143,,????-????,1234567,,,19901532,,, +2506,USA,,Point Reyes R,u,Point Reyes (CA),38.10375,-122.935944,,1,,8851,322,143,,????-????,1234567,,,19901551,,, +2506,GUM,,Public Correspondence Guam,u,Guam (GU),13.433333,144.733333,,1,,11702,42,153,,????-????,1234567,,,19900632,,, +2506,AMS,,St. Paul & Amsterdam R,u,Base Martin de Vivis,-37.798694,77.570003,,1,,12130,128,154,,????-????,1234567,,,19900034,,, +2507,KOR,,HLN Gunsan R,u,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900974,,, +2510,CAN,,VCT Tors Cove R,u,Tors Cove (NL),47.216667,-52.85,,1,,4179,287,99,,????-????,1234567,,,19900308,,, +2512,ALS,,KCI95 Cold Bay Metro,u,Cold Bay (AK),55.183333,-162.716667,,1,,8043,354,137,,????-????,1234567,,,19900020,,, +2513,LBY,,5AB Benghazi R,u,Benghazi (bga),32.116667,20.066667,,1,,2483,148,82,,????-????,1234567,,,19901017,,, +2513,ATA,,HF Frequency Pool S-098 (SOAR),u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900103,,, +2514,CAN,,VAW Iqaluit Coastguard,u,Killinek (NU),60.427403,-64.838361,,1,,4269,311,100,,1340-1400,9999999,,,20109244,,, +2514,CAN,,VAW Iqaluit Coastguard,u,Killinek (NU),60.427403,-64.838361,,1,,4269,311,100,,1705-1725,9999999,,,20109244,,, +2514,CAN,,VAW Iqaluit Coastguard,u,Killinek (NU),60.427403,-64.838361,,1,,4269,311,100,,2235-2255,9999999,,,20109244,,, +2514,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,0110-0130,9999999,,,20109240,,, +2514,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,1320-1340,9999999,,,20109240,,, +2514,USA,,Fort Lauderdale R,u,Fort Lauderdale (FL),26.116667,-80.15,,1,,7521,284,132,,????-????,1234567,,,19901516,,, +2514,USA,,WDR Miami R,u,Miami (FL),25.766667,-80.2,,1,,7553,284,133,,????-????,1234567,,,19901537,,, +2516,G,,GYA Royal Navy,r,-,55.55,-2.65,,1,,706,306,64,,????-????,1234567,,,19900576,,, +2517,DNK,,OVG Kongelige Danske Marine,u,Frederikshavn (njy),57.445833,10.55,,1,,650,22,63,,????-????,1234567,,,19900483,,, +2520,J,,JFC,u,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,19900894,,, +2522,USA,,WOX New York R,u,New York (NY),40.716667,-74,,1,,5968,292,117,,????-????,1234567,,,19901544,,, +2522,BAH,,C6N Nassau R,u,Nassau (npr),25.05,-77.333333,,1,,7422,281,131,,????-????,1234567,,,19900246,,, +2522,CUB,,Santa Cruz del Sur R,u,Santa Cruz del Sur,20.716667,-78,,1,,7830,279,135,,????-????,1234567,,,19900449,,, +2522,USA,,KOU San Pedro R,u,San Pedro (TX),27.783333,-97.683333,,1,,8493,298,142,,????-????,1234567,,,19901560,,, +2524,AUS,,Exmouth Sea Rescue,u,Exmouth (WA),-21.933333,114.133333,,1,,13112,90,157,,????-????,1234567,,,19900151,,, +2524,AUS,,Buccaneer Rescue Club,u,Derby (WA),-17.311111,123.638889,,1,,13366,79,158,,????-????,1234567,,,19900142,,, +2524,AUS,,Carnarvon Sea Rescue,u,Carnarvon (WA),-24.866667,113.633333,,1,,13320,93,158,,????-????,1234567,,,19900135,,, +2524,AUS,,Coral Bay Sea Rescue,u,Coral Bay (NT),-11.183333,132.05,,1,,13374,67,158,,????-????,1234567,,,19900139,,, +2524,AUS,,Geraldton Sea Rescue,u,Geraldton (WA),-28.766667,114.6,,1,,13701,95,159,,????-????,1234567,,,19900155,,, +2524,AUS,,Kalbarri Sea Rescue,u,Kalbarri (WA),-27.666667,114.166667,,1,,13584,95,159,,????-????,1234567,,,19900163,,, +2524,AUS,,Fremantle Sea Rescue Group,u,Fremantle (WA),-32.05,115.766667,,1,,14038,97,160,,????-????,1234567,,,19900154,,, +2524,AUS,,Jurien Bay Sea Rescue,u,Jurien Bay (WA),-30.305556,115.041667,,1,,13853,96,160,,????-????,1234567,,,19900162,,, +2524,AUS,,Lancelin Sea Rescue,u,Lancelin (WA),-31.016667,115.333333,,1,,13929,97,160,,????-????,1234567,,,19900166,,, +2524,AUS,,Mandurah Water Rescue,u,Mandurah (WA),-32.55,115.7,,1,,14073,98,160,,????-????,1234567,,,19900172,,, +2524,AUS,,Seisia Coastguard,u,Seisia (QLD),-10.85,142.369444,,1,,13966,57,160,,????-????,1234567,,,19900186,,, +2524,AUS,,Torres Strait Coastguard,u,Torres Strait (QLD),-10.577778,142.219444,,1,,13932,57,160,,????-????,1234567,,,19900195,,, +2524,AUS,,Augusta Sea Rescue,u,Augusta (WA),-34.316667,115.166667,,1,,14171,100,161,,????-????,1234567,,,19900125,,, +2524,AUS,,Windy Harbour Sea Rescue,u,Windy Harbour (WA),-34.833333,116.033333,,1,,14269,100,161,,????-????,1234567,,,19900200,,, +2524,AUS,,Cooktown Coastguard,u,Cooktown (QLD),-15.466667,145.25,,1,,14567,57,162,,????-????,1234567,,,19900138,,, +2524,AUS,,Esperance Sea Rescue,u,Esperance (WA),-33.866667,121.9,,1,,14593,95,162,,????-????,1234567,,,19900147,,, +2524,AUS,,Cairns Coastguard,u,Cairns (QLD),-16.928333,145.779444,,1,,14734,58,163,,????-????,1234567,,,19900132,,, +2524,AUS,,Townsville Coastguard,u,Townsville (QLD),-19.25,146.8,,1,,15009,58,164,,????-????,1234567,,,19900196,,, +2524,AUS,,VZX Penta Comstat Firefly R,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900217,,, +2524,AUS,,Rockhampton Coastguard,u,Rockhampton (QLD),-23.383333,150.5,,1,,15604,58,165,,????-????,1234567,,,19900183,,, +2524,AUS,,Thirsty Sound Coastguard,u,Thirsty Sound (QLD),-22.133333,150.041667,,1,,15463,57,165,,????-????,1234567,,,19900193,,, +2524,AUS,,Yeppoon Coastguard,u,Yeppoon (QLD),-23.133333,150.741667,,1,,15595,57,165,,????-????,1234567,,,19900202,,, +2524,AUS,,Hervey Bay Marine Rescue,u,Hervey Bay (QLD),-25,153,,1,,15896,56,166,,????-????,1234567,,,19900156,,, +2524,AUS,,Sandy Straits Coastguard,u,Sandy Straits (QLD),-25.25,152.816667,,1,,15908,56,166,,????-????,1234567,,,19900185,,, +2524,AUS,,VMR471 Keppel Sands Coastguard,u,Keppel Sands (QLD),-23.3375,150.797222,,1,,15617,57,166,,????-????,1234567,,,19900164,,, +2524,AUS,,Redcliffe Coastguard,u,Redcliffe (QLD),-27.233056,153.1175,,1,,16106,58,167,,????-????,1234567,,,19900181,,, +2524,AUS,,Redland Bay Coastguard,u,Redland Bay (QLD),-27.616667,153.316667,,1,,16152,58,167,,????-????,1234567,,,19900182,,, +2524,AUS,,Southport Coastguard,u,Southport (QLD),-27.966667,153.4,,1,,16188,58,167,,????-????,1234567,,,19900187,,, +2524,AUS,,Tin Can Bay Coastguard,u,Tin Can Bay (QLD),-25.916667,153,,1,,15980,57,167,,????-????,1234567,,,19900194,,, +2524,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.4,,14915,58,167,,????-????,1234567,,,19900161,,, +2524,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,19900197,,, +2524,AUS,,Iluka/Yamba Coastguard,u,Iluka (NSW),-29.416667,153.359722,,1,,16315,60,168,,????-????,1234567,,,19900160,,, +2524,AUS,,Melbourne Coastguard,u,Melbourne (VIC),-37.816667,144.966667,,1,,16451,80,168,,????-????,1234567,,,19900174,,, +2524,AUS,,Queenscliff Coastguard,u,Queenscliff (VIC),-38.266667,144.65,,1,,16462,81,168,,????-????,1234567,,,19900180,,, +2524,AUS,,VMR250 Ballina Coastguard,u,Ballina (NSW),-28.87,153.575,,1,,16279,59,168,,????-????,1234567,,,19900127,,, +2524,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,19900149,,, +2524,AUS,,Westernport Coastguard,u,Westernport (VIC),-38.366667,145.333333,,1,,16515,81,168,,????-????,1234567,,,19900198,,, +2524,AUS,,Yamba Coastal Patrol,u,Yamba (NSW),-29.433333,153.366667,,1,,16317,60,168,,????-????,1234567,,,19900201,,, +2524,AUS,,Bermagui Coastguard,u,Bermagui (NSW),-36.416667,150.05,,1,,16685,73,169,,????-????,1234567,,,19900128,,, +2524,AUS,,Coast R Devonport,u,Devonport (TAS),-41.166667,146.35,,1,,16774,84,169,,????-????,1234567,,,19900143,,, +2524,AUS,,Cottage Point Coastguard,u,Cottage Point (NSW),-33.616667,151.2,,1,,16539,68,169,,????-????,1234567,,,19900140,,, +2524,AUS,,Loch Sport Coastguard,u,Loch Sport (VIC),-38.038889,147.591667,,1,,16643,78,169,,????-????,1234567,,,19900167,,, +2524,AUS,,Mersey R Devonport,u,Devonport (TAS),-41.166667,146.35,,1,,16774,84,169,,????-????,1234567,,,19900144,,, +2524,AUS,,Port Stephens Coastguard,u,Port Stephens (NSW),-32.683333,152.075,,1,,16517,65,169,,????-????,1234567,,,19900179,,, +2524,AUS,,Swansea Coastguard,u,Swansea (NSW),-33.083333,151.616667,,1,,16521,67,169,,????-????,1234567,,,19900188,,, +2524,AUS,,Sydney Coastguard,u,Sydney (NSW),-33.883333,151.216667,,1,,16561,68,169,,????-????,1234567,,,19900189,,, +2524,AUS,,Sydney Coastguard,u,Sydney (NSW),-33.883333,151.216667,,1,,16561,68,169,,????-????,1234567,,,19900190,,, +2524,AUS,,Coast R Hobart,u,Hobart (TAS),-42.916667,147.333333,,1,,16951,86,170,,????-????,1234567,,,19900157,,, +2524,AUS,,VMR488 Bundaberg Marine Rescue,u,Burnett Heads (QLD),-24.760833,152.401478,,0.4,,15840,56,170,,????-????,1234567,,,19900131,,, +2524,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,19900130,,, +2524,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,19900176,,, +2524,AUS,,VMR251 Kingscliff Coastguard,u,Kingscliff/Faulks Park (NSW),-28.257656,153.583189,,0.4,,16225,58,172,,????-????,1234567,,,19900165,,, +2524,AUS,,VMR225 Coastal Patrol Sydney,u,Sydney/Terrey Hills (NSW),-33.69265,151.222661,,0.4,,16546,68,173,,????-????,1234567,,,19900192,,, +2524,AUS,,Eden Marine Rescue RVCP,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.06,,16726,74,181,,????-????,1234567,,,19900146,,, +2524,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.06,,16726,74,181,,????-????,1234567,,,19900145,,, +2525,UKR,,Sevastopol' R 3,u,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901475,,, +2525,RUS,,Naryan-Mar R,u,Naryan-Mar (NE),67.65,53.05,,1,,3013,37,87,,????-????,1234567,,,19901357,,, +2525,RUS,,UCT2 Beringovskiy R,c,Beringovskiy,63.05,179.316667,,1,,7195,4,129,,????-????,1234567,,,19901335,,, +2526,CTI,,Abidjan R,u,Abidjan,5.333333,-4.022222,,1,,5289,194,110,,????-????,1234567,,,19900436,,, +2527,JMC,,Jamaican Defence Emergency Force,u,-,18,-77.25,,1,,8010,276,137,,????-????,1234567,,,19900929,,, +2530,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,????-????,1234567,,,19900304,,, +2530,PTR,,NMR USCG San Juan,u,Isabela (PR),18.464444,-67.066667,,1,,7277,269,130,,????-????,1234567,,,19901322,,, +2530,USA,,KQP Galveston R,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,????-????,1234567,,,19901520,,, +2530,HWA,,KBP Honolulu Metro,u,Honolulu (HI),21.305556,-157.877778,,1,,11710,345,153,,????-????,1234567,,,19900656,,, +2538,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,????-????,1234567,,,19900300,,, +2538,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,????-????,1234567,,,19900285,,, +2538,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,????-????,1234567,,,19900290,,, +2538,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,????-????,1234567,,,19900292,,, +2538,CAN,,VAR9 Saint John Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,????-????,1234567,,,19900298,,, +2538,USA,,Point Harbor R,u,Point Harbor (NC),36.083333,-75.8,,1,,6433,289,121,,????-????,1234567,,,19901549,,, +2538,USA,,Corpus Christi R,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,????-????,1234567,,,19901512,,, +2540,RUS,,RKLM Archangelsk R,c,Archangelsk (AR),64.566667,40.533333,,1,,2380,41,81,,????-????,1234567,,,19901332,,, +2545,MAF,,CROSS AG Saint-Martin,u,Saint-Martin (978),18.077778,-63.05,,1,,7036,265,127,,????-????,1234567,,,19900001,,, +2545,GLP,,CROSS AG Guadeloupe,u,Pointe--Pitre (971),16.225,-61.530556,,1,,7091,263,128,,????-????,1234567,,,19900584,,, +2545,MRT,,CROSS AG Martinique,u,Fort-de-France (972),14.603611,-61.078889,,1,,7200,261,129,,0000-0015,1234567,,,19901125,,, +2545,MRT,,CROSS AG Martinique,u,Fort-de-France (972),14.603611,-61.078889,,1,,7200,261,129,,1215-1230,1234567,,,19901125,,, +2545,MRT,,CROSS AG Martinique,u,Fort-de-France (972),14.603611,-61.078889,,1,,7200,261,129,,2133-2148,1234567,,,19901125,,, +2550,USA,,WFA Tampa R,u,Tampa (FL),27.95,-82.466667,,1,,7520,287,132,,????-????,1234567,,,19901570,,, +2555,GUY,,8RB Demerara R,u,Georgetown (dem),6.816667,-58.158333,,1,,7692,254,134,,????-????,1234567,,,19900634,,, +2555,RUS,,UGH2 Yuzhno-Sakhalinsk R,c,Yuzhno-Sakhalinsk (SL),46.966667,142.733333,,1,,8241,29,139,,????-????,1234567,,,19901373,,, +2556,USA,,KOU San Pedro R,u,San Pedro (TX),27.783333,-97.683333,,1,,8493,298,142,,????-????,1234567,,,19901561,,, +2558,CAN,,VFC Inuvik Coastguard,u,Cambridge Bay (NU),69.114722,-105.0195,,1,,5438,334,111,,0235-0255,1234567,,,20109250,,, +2558,CAN,,VFC Inuvik Coastguard,u,Cambridge Bay (NU),69.114722,-105.0195,,1,,5438,334,111,,1435-1455,1234567,,,20109250,,, +2558,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,0235-0255,1234567,,,20109249,,, +2558,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,1435-1455,1234567,,,20109249,,, +2558,USA,,Bodkin Point R,u,Bodkin Point (MD),39.143056,-76.455556,,1,,6241,292,119,,????-????,1234567,,,19901500,,, +2558,BAH,,C6N2 Nassau R,u,Nassau (npr),25.05,-77.333333,,1,,7422,281,131,,????-????,1234567,,,19900247,,, +2558,GUY,,8RB Demerara R,u,Georgetown (dem),6.816667,-58.158333,,1,,7692,254,134,,????-????,1234567,,,19900635,,, +2560,MEX,,XFL Mazatln R,u,Mazatln (sin),23.216667,-106.416667,,1,,9420,302,145,,????-????,1234567,,,19901087,,, +2560,MEX,,XFQ Salina Cruz R,u,Salina Cruz (oax),16.166667,-95.2,,1,,9363,289,145,,????-????,1234567,,,19901090,,, +2560,MEX,,XFK La Paz R,u,La Paz (bcs),24.166667,-110.3,,1,,9553,305,146,,????-????,1234567,,,19901084,,, +2566,USA,,WOU Boston R,u,Boston (MA),42.366667,-71.066667,,1,,5664,292,114,,????-????,1234567,,,19901503,,, +2566,USA,,Charleston R,u,Charleston (SC),32.866667,-80.016667,,1,,6959,289,127,,????-????,1234567,,,19901508,,, +2566,USA,,Jacksonville R,u,Jacksonville (FL),30.333333,-81.65,,1,,7271,288,130,,????-????,1234567,,,19901530,,, +2566,USA,,Coos Bay R,u,Coos Bay (OR),43.366667,-124.216667,,1,,8390,325,141,,????-????,1234567,,,19901511,,, +2569,CUB,,Arroyos de Mantua R,u,Arroyos de Mantua,22.35,-84.383333,,1,,8118,285,138,,????-????,1234567,,,19900437,,, +2570,ATA,,Antarctic RATT,,-,-70,0,,1,,13588,183,159,,????-????,1234567,,,19900119,,, +2575,MOZ,,C9L2 Maputo R MRCC,u,Maputo (mpc),-25.955556,32.544444,,1,,9046,156,144,,????-????,1234567,,,19901106,,, +2578,CHN,,XSA2 Nanjing R,u,Nanjing (JS),32.066667,118.783333,,1,,8589,53,142,,????-????,1234567,,,19900386,,, +2579,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,????-????,1234567,,,19900663,,, +2579,MDG,,5RO Mahajanga R,u,Mahajanga (mhj),-15.716667,46.316667,,1,,8465,140,142,,????-????,1234567,,,19901057,,, +2579,MDG,,5RT Toliara R,u,Toliara=Tular (tlr),-23.35,43.666667,,1,,9138,146,144,,????-????,1234567,,,19901070,,, +2579,MDG,,Manakara-Sud R,u,Manakara-Sud (fsa),-22.133333,48.016667,,1,,9190,142,144,,????-????,1234567,,,19901059,,, +2582,POR,,CUL Lisbao R,u,Lisbao (lis),38.7,-9.173611,,1,,1916,225,76,,????-????,1234567,,,19901298,,, +2582,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,1340-1400,9999999,,,20109242,,, +2582,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,1705-1725,9999999,,,20109242,,, +2582,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,2235-2255,9999999,,,20109242,,, +2582,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,????-????,1234567,,,19900301,,, +2582,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,1240-1300,9999999,,,20109238,,, +2582,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,1705-1725,9999999,,,20109238,,, +2582,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,2310-2330,9999999,,,20109238,,, +2582,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,????-????,1234567,,,19900286,,, +2582,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,????-????,1234567,,,19900302,,, +2582,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,????-????,1234567,,,19900291,,, +2582,CAN,,VCJ Stephenville Coastguard,u,Stephenville (NL),48.55,-58.566667,,1,,4473,292,102,,????-????,1234567,,,19900303,,, +2582,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,????-????,1234567,,,19900293,,, +2582,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,????-????,1234567,,,19900305,,, +2582,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,????-????,1234567,,,19900296,,, +2582,CAN,,VCF Mont-Joli Coastguard,u,Mont-Joli (QC),48.591667,-68.194444,,1,,5070,297,108,,????-????,1234567,,,19900289,,, +2582,CAN,,VAR9 Saint John Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,????-????,1234567,,,19900284,,, +2582,CAN,,VBA4 Churchill Coastguard,u,Churchill (MB),58.761667,-93.944167,,1,,5767,320,115,,0040-0100,1234567,,,20109245,,, +2582,CAN,,VBA4 Churchill Coastguard,u,Churchill (MB),58.761667,-93.944167,,1,,5767,320,115,,1410-1430,1234567,,,20109245,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,0035-0050,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,0435-0450,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,0835-0850,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,1235-1250,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,1635-1650,1234567,,,36000001,,, +2582,BER,en,ZBR Bermuda R,u,Fort George Hill (-),32.380389,-64.682778,,1.2,,5982,278,116,,2035-2050,1234567,,,36000001,,, +2582,CAN,,VBA Thunder Bay Coastguard,u,Thunder Bay (ON),48.563514,-88.656311,,1,,6253,308,120,,????-????,1234567,,,19900306,,, +2582,BRB,,Barbados Coastguard,u,Spring Garden (smi),13.127778,-59.633333,,1,,7231,259,129,,????-????,1234567,,,19900273,,, +2582,BAH,,C6X2 Marsh Harbour R,u,Marsh Harbour (Great Abaco) (cab),26.55,-77.05,,1,,7279,282,130,,????-????,1234567,,,19900244,,, +2583,KOR,,HLE Jeju R,c,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,,,19900955,,, +2583,KOR,,HLM Mokpo R,c,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,,,19900983,,, +2583,KOR,,HLN Gunsan R,c,Gunsan=Kunsan (jeb),35.983333,126.716667,,1,,8641,46,143,,????-????,1234567,,,19900975,,, +2583,KOR,,HLP Busan R,c,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,,,19900948,,, +2583,KOR,,HLU Ulleung R,c,Ulleung (gsb),37.483333,130.9,,1,,8697,42,143,,????-????,1234567,,,19900994,,, +2583,KOR,,HLY Yeosu R,c,Yeosu (jen),34.766667,127.666667,,1,,8801,46,143,,????-????,1234567,,,19901000,,, +2585,VIR,,WAH Saint Thomas R,u,Saint Thomas (sto),18.35,-64.872222,,1,,7137,267,128,,????-????,1234567,,,19901620,,, +2586,DNK,,OXZ Lyngby R,u,Rnne (hvs),55.106944,14.708333,,1,,640,55,63,,1743-1803,1234567,,,2100005,,, +2586,ALG,,Oran R,u,Oran (31),35.683333,-0.65,,1,,1910,200,76,,????-????,1234567,,,19900017,,, +2586,MRC,,CNP Casablanca R,u,Casablanca (gcb),33.6,-7.633333,,1,,2346,214,80,,????-????,1234567,,,19901114,,, +2586,CNR,,Arrecife R,u,Montaa de Hara (LPM-LA),29.124022,-13.519211,,1,,3038,220,87,,????-????,1234567,,,19900416,,, +2586,GUI,,3XC5 Conakry R,u,Conakry (cnk),9.508333,-13.711111,,1,,5075,208,108,,????-????,1234567,,,19900630,,, +2586,TGO,,5VA Lom R,u,Lom (mar),6.139522,1.27935,,1,,5133,187,108,,????-????,1234567,,,19901404,,, +2586,DJI,,J2A Djibouti R,u,Djibouti (djb),11.608333,43.15,,1,,5576,130,113,,????-????,1234567,,,19900478,,, +2587,TCA,,Turks & Caicos R,u,Grand Turk (gtu),21.505556,-71.133333,,1,,7298,274,130,,????-????,1234567,,,19901398,,, +2587,JMC,,Jamaican Defence Emergency Force,u,-,18,-77.25,,1,,8010,276,137,,????-????,1234567,,,19900930,,, +2590,JOR,,Aqaba R,u,Aqaba (aqb),29.530556,35,,1,,3434,126,91,,????-????,1234567,,,19900932,,, +2590,USA,,WOX New York R,u,New York (NY),40.716667,-74,,1,,5968,292,117,,????-????,1234567,,,19901545,,, +2590,TCA,,Turks & Caicos R,u,Grand Turk (gtu),21.505556,-71.133333,,1,,7298,274,130,,????-????,1234567,,,19901399,,, +2590.6,HOL,,PBC Koninklijke Marine,r,Goeree-Overflakkee (zho),51.822222,4.038889,,1,,166,260,59,,????-????,1234567,-2590.6,,19900650,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,0133-0148,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,0333-0348,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,0733-0748,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,0833-0848,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,1233-1248,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,1333-1348,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,1633-1648,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,1933-1948,1234567,,,4000023,,, +2591,I,,IPL Livorno R,u,Livorno/Castellaccio (li),43.490361,10.360694,,1,,1002,161,67,,2033-2048,1234567,,,4000023,,, +2593,MRC,,CND Agadir R,u,Agadir (smd),30.4,-9.6,,1,,2746,215,84,,????-????,1234567,,,19901111,,, +2595,YEM,,7OA Aden R,u,Aden (adn),12.766111,45.052861,,1,,5565,127,113,,????-????,1234567,,,19901624,,, +2595,KEN,,5ZF Mombasa R,u,Mombasa (coa),-4.066667,39.672222,,1,,6989,142,127,,????-????,1234567,,,19900936,,, +2595,SEY,,Seychelles R,u,Victoria (mhe),-4.629778,55.464856,,1,,7815,127,135,,????-????,1234567,,,19901380,,, +2596,G,,United Kingdom Coastguard,u,-,55.55,-2.65,,1,,706,306,64,,????-????,1234567,,,19900578,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,0107-0130,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,0907-0930,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,1237-1300,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,1337-1400,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,1907-1930,1234567,,,20109227,,, +2598,CAN,,VCM Saint Anthony Coastguard,u,Saint Anthony (NL),51.498889,-55.825,,1,,4145,295,98,,1937-2000,1234567,,,20109227,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,0137-0200,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,1007-1030,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,1107-1130,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,1437-1500,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,2037-2100,1234567,,,20109230,,, +2598,CAN,,VOK Labrador Coastguard,u,Cartwright (NL),53.708611,-57.021667,,1,,4114,298,98,,2307-2330,1234567,,,20109230,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,0007-0030,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,0837-0900,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,1307-1330,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,1637-1700,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,2007-2030,1234567,,,20109226,,, +2598,CAN,,VON Saint John's Coastguard,u,Saint John's (NL),47.611111,-52.666944,,1,,4146,287,98,,2207-2230,1234567,,,20109226,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,0137-0200,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,1007-1030,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,1107-1130,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,1437-1500,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,2037-2100,1234567,,,20109229,,, +2598,CAN,,VOK4 Hopedale Coastguard,u,Hopedale (NL),55.458889,-60.209778,,1,,4223,302,99,,2307-2330,1234567,,,20109229,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,0048-0110,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,0737-0800,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,1137-1200,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,1607-1630,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,1807-1830,1234567,,,20109225,,, +2598,CAN,,VCP4 Placentia Coastguard,u,Saint Lawrence (NL),46.928333,-55.380556,,1,,4361,288,101,,2137-2200,1234567,,,20109225,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,0207-0230,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,0807-0830,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,1207-1230,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,1507-1530,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,1837-1900,1234567,,,20109224,,, +2598,CAN,,VOJ6 Port aux Basques Coastguard,u,Port aux Basques (NL),48.554722,-58.762222,,1,,4485,292,102,,2107-2130,1234567,,,20109224,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,0437-0500,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,0837-0900,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,0937-1000,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,1407-1430,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,1737-1800,1234567,,,20109228,,, +2598,CAN,,CJH22 Natashquan Coastguard,u,Natashquan (QC),50.144444,-61.8,,1,,4586,295,103,,2317-2330,1234567,,,20109228,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0437-0457,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0847-0907,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0937-0957,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1407-1427,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1737-1757,1234567,,,19900297,,, +2598,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,2317-2337,1234567,,,19900297,,, +2598,USA,,New Orleans Metro,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,????-????,1234567,,,19901542,,, +2598,USA,,KOU San Pedro R,u,San Pedro (TX),27.783333,-97.683333,,1,,8493,298,142,,????-????,1234567,,,19901562,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,0133-0148,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,0333-0348,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,0733-0748,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,0833-0848,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,1233-1248,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,1333-1348,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,1633-1648,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,1933-1948,1234567,,,4000029,,, +2600,I,,IQQ Mazara R,u,Mazara del Vallo (tp),37.65,12.583333,,1,,1678,161,74,,2033-2048,1234567,,,4000029,,, +2600,CHN,,Longkou R,u,Longkou (SD),37.65,120.333333,,1,,8167,49,139,,????-????,1234567,,,19900385,,, +2600,CHN,,XSM Xiamen R,u,Xiamen=Amoy (FJ),24.6,118.116667,,1,,9228,58,144,,????-????,1234567,,,19900394,,, +2600,REU,,La Runion R,u,La Runion (974),-20.927778,55.288889,,1,,9399,135,145,,????-????,1234567,,,19901326,,, +2601,CPV,,D4A So Vicente R,u,Ribeira de Vinha (svc-slz),16.853683,-25.002583,,1,,4790,227,105,,????-????,1234567,,,19900435,,, +2601,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,????-????,1234567,,,19901323,,, +2601,AGL,,D3E Luanda R,u,Luanda (lua),-8.772889,13.329511,,1,,6802,172,125,,????-????,1234567,,,19900000,,, +2601,MOZ,,C9C2 Beira R Metro,u,Beira (sfl),-19.85,34.833333,,1,,8463,153,142,,????-????,1234567,,,19901104,,, +2604,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,19901276,,, +2605,RUS,,UIK Vladivostok R,u,Vladivostok (PM),43.133333,131.9,,1,,8204,38,139,,????-????,1234567,,,19901370,,, +2605,CHN,,XSH Dongfang R,u,Dongfang (HA),19.116667,108.633333,,1,,9141,69,144,,????-????,1234567,,,19900380,,, +2605,CHN,,XSI Sanya R,u,Sanya (HA),18.232222,109.495833,,1,,9274,69,145,,????-????,1234567,,,19900390,,, +2607,BHR,,A9M Bahrain R,u,Hamala (shm),26.156944,50.473889,,1,,4662,111,104,,????-????,1234567,,,19900269,,, +2607,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,19901277,,, +2608.3,ARS,,HZH Jeddah R,4,Jeddah (mkh),21.342222,39.155833,,1,,4425,128,101,,????-????,1234567,-2608.3,,19900071,,, +2608.5,F,,FUO Marine Nationale,r,Toulon (83),43.108333,5.933333,,1,,1002,182,67,,????-????,1234567,-2608.5,,19900527,,, +2610,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,????-????,1234567,,,19900519,,, +2610,MDR,,CUB Madeira R,u,Funchal (md),32.641944,-16.9175,,1,,2865,230,86,,????-????,1234567,,,19901077,,, +2616,FSM,,KUP69 Yap R,u,Yap (yap),9.516667,138.119444,,1,,11766,50,153,,????-????,1234567,,,19900547,,, +2616,PLW,,KUP68 Koror R,u,Koror (kor),7.345833,134.488889,,1,,11781,54,153,,????-????,1234567,,,23200005,,, +2616,FSM,,KUP67 Truk R,u,Truk (chu),7.416667,151.783333,,1,,12624,38,156,,????-????,1234567,,,19900545,,, +2616,FSM,,KUP66 Pohnpei R,u,Pohnpei (pnp),6.983333,158.202778,,1,,12919,32,157,,????-????,1234567,,,19900543,,, +2616,MHL,,KUP65 Majuro R,u,Majuro,7.084722,171.366944,,1,,13279,17,158,,????-????,1234567,,,22700001,,, +2618.5,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,2000-0600,1234567,-2618.5,,19900561,,, +2620,RUS,,UCW4 Sankt-Peterburg R,u,Sankt-Peterburg (SP),59.9,30.266667,,1,,1704,50,74,,????-????,1234567,,,19901364,,, +2620,CHN,,XSQ Guangzhou R,u,Guangzhou (GD),23.15,113.483333,,1,,9084,63,144,,????-????,1234567,,,19900383,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0030-0045,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0230-0245,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0700-0715,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,1845-1900,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,2100-2115,1234567,,,37500001,,, +2620,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,2200-2215,1234567,,,37500001,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,0133-0148,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,0433-0448,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,0733-0748,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,0933-0948,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,1333-1348,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,1733-1748,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,1933-1948,1234567,,,4000021,,, +2624,I,,IQX Trieste R,u,Trieste/Monte Radio (ts),45.674111,13.765889,,1,,894,140,66,,2133-2148,1234567,,,4000021,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,0730-0745,1234567,,,3400019,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,0903-0918,1234567,,,3400019,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,1533-1548,1234567,,,3400019,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,2133-2148,1234567,,,3400019,,, +2624,GRC,,Rhodos R,u,Rhodos (seg-dod),36.444089,28.211822,,1,,2441,127,81,,2333-2348,1234567,,,3400019,,, +2625,MLT,,Malta RCC,u,Malta (mt),35.878889,14.498889,,1,,1914,157,76,,????-????,1234567,,,19901099,,, +2627,CHN,,XSU Yantai R,u,Yantai (SD),37.533333,121.4,,1,,8232,48,139,,????-????,1234567,,,19900396,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,0133-0148,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,0333-0348,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,0733-0748,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,0833-0848,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,1233-1248,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,1333-1348,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,1633-1648,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,1933-1948,1234567,,,4000032,,, +2628,I,,IQA Augusta R,u,Augusta (sr),37.238722,15.240078,,1,,1792,154,75,,2033-2048,1234567,,,4000032,,, +2628,ISL,,Vestmannaeyjar Landhelgisgsla,u,Vestmannaeyjar (sl),63.447222,-20.275,,1,,1998,319,77,,????-????,1234567,,,19900844,,, +2628,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0900-0945,1234567,,,19900137,,, +2628,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1015-1715,1234567,,,19900137,,, +2628,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1800-1845,1234567,,,19900137,,, +2629,TUR,,Izmir Turk Radyo,u,Izmir-Cesme/TAN (ege-izm),38.275833,26.2675,,1,,2174,127,79,,????-????,1234567,,,19901441,,, +2629,TUR,,Iskendern R,u,Iskendern,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901435,,, +2630,RUS,,Arkhangelsk MRSC,u,Archangelsk (AR),64.566667,40.533333,,1,,2380,41,81,,????-????,1234567,,,19901333,,, +2630,NIG,,5OZ Port Harcourt R,u,Port Harcourt (riv),4.769444,7.055556,,1,,5264,179,110,,????-????,1234567,,,19901135,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,0133-0148,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,0333-0348,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,0733-0748,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,0833-0848,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,1233-1248,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,1333-1348,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,1633-1648,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,1933-1948,1234567,,,4000030,,, +2632,I,,IQH Napoli R,u,Napoli (na),41,14.316667,,1,,1373,151,71,,2033-2048,1234567,,,4000030,,, +2635,MRC,,CNW Tanger R,u,Tanger (ttn),35.783333,-5.816667,,1,,2056,213,78,,????-????,1234567,,,19901123,,, +2635,MRC,,CND3 Safi R,u,Safi (dka),32.3,-9.233333,,1,,2540,216,82,,????-????,1234567,,,19901119,,, +2638,IRN,,Bahregan Marine,u,Bahregan/Marine (bus),29.833333,50.266667,,1,,4340,107,100,,????-????,1234567,,,19900808,,, +2638,IRN,,Sorush Terminal,u,Soroush/Terminal (bus),29.270833,50.284722,,1,,4388,108,101,,????-????,1234567,,,19900818,,, +2638,IRN,,Lavan Marine,u,Lavan/Marine (hrg),26.797222,53.386111,,1,,4796,107,105,,????-????,1234567,,,19900816,,, +2638,IRN,,Sirri Marine,u,Sirri/Marine (hrg),25.895,54.55,,1,,4947,107,106,,????-????,1234567,,,19900817,,, +2638,UAE,,Port Zayed R,u,Abu Dhabi/Port Zayed (abd),24.522222,54.377778,,1,,5053,108,108,,????-????,1234567,,,19901455,,, +2638,BAH,,ZFP61 Freeport Harbour Control,u,Freeport,26.533333,-78.7,,1,,7390,284,131,,????-????,1234567,,,19900242,,, +2638,DOM,,HIA Santo Domingo Piloto R,u,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,????-????,1234567,,,19900494,,, +2638,VEN,,Venezuelan Marinas,u,-,6.5,-66.5,,1,,8275,260,140,,????-????,1234567,,,19901617,,, +2638,PRU,,OBF4 Mollendo R,u,Mollendo (are),-17.016667,-72.016667,,1,,10730,251,149,,????-????,1234567,,,19901315,,, +2638,ARG,,Prefectura Naval Recalada Rio de Plata,u,Recalada Rio de Plata/Prefectura Naval,-38.5,-63,,1,,12098,231,154,,????-????,1234567,,,19900050,,, +2638,OCE,,Papeete Port R,u,Papeete (idv),-17.536111,-149.576389,,1,,15634,322,166,,????-????,1234567,,,19901275,,, +2638,NZL,,Lyttelton Harbour R,u,Lyttelton (CAN),-43.583333,172.7,,1,,18624,52,175,,????-????,1234567,,,19901190,,, +2638,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900873,,, +2639.4,KOR,,Donghae MRCC,u,Donghae (gan),37.55,129.1,,1,,8607,43,142,,????-????,1234567,-2639.4,,19900989,,, +2639.4,KOR,,Incheon MRCC,u,Incheon (inc),37.45,126.733333,,1,,8505,45,142,,????-????,1234567,-2639.4,,19900959,,, +2639.4,KOR,,Busan MRCC,u,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,-2639.4,,19900949,,, +2639.4,KOR,,Jeju MRCC,u,Jeju=Cheju (jej),33.516667,126.516667,,1,,8861,47,143,,????-????,1234567,-2639.4,,19900956,,, +2639.4,KOR,,Mokpo MRCC,u,Mokpo (jen),34.8,126.383333,,1,,8735,47,143,,????-????,1234567,-2639.4,,19900984,,, +2641,LBN,,ODR Beirut R,u,Beirut=Bayrut (bei),33.9,35.472222,,1,,3075,120,88,,????-????,1234567,,,19901014,,, +2642,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0133-0158,1234567,,,4000019,,, +2642,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1933-1958,1234567,,,4000019,,, +2642,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,,,19900598,,, +2643,BHR,,A9M Bahrain R,4,Hamala (shm),26.156944,50.473889,,1,,4662,111,104,,????-????,1234567,,,19900272,,, +2648,ATA,,Antarctic Broadcast,u,-,-70,0,,1,,13588,183,159,,????-????,1234567,,,19900120,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,0303-0318,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,0703-0718,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,1103-1118,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,1503-1518,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,1903-1918,1234567,,,4300004,,, +2649,ISR,,4XO Haifa R,u,Haifa (haf),32.827806,34.969306,,1,,3138,122,88,,2303-2318,1234567,,,4300004,,, +2649,ISR,,4XA Eilat R,u,Eilat (hdm),29.566667,34.95,,1,,3428,126,91,,????-????,1234567,,,19900847,,, +2650,PNR,,HPPM2 Pedro Miguel Sail Mail,p,Pedro Miguel (pnm),9.017222,-79.610556,,1,,8946,272,144,,????-????,1234567,,,19901289,,, +2652,MTN,,5TA Nouadhibou R,u,Nouadhibou (dnd),20.908333,-17.040278,,1,,4014,219,97,,????-????,1234567,,,19901128,,, +2652,MDG,,5RN Nosy B R,u,Nosy B (ats),-13.333333,48.25,,1,,8311,138,140,,????-????,1234567,,,19901063,,, +2652,MDG,,Morondava R,u,Morondava (tlr),-20.283333,44.283333,,1,,8847,144,143,,????-????,1234567,,,19901061,,, +2652,MDG,,Mananjary R,u,Mananjary (fsa),-21.216667,48.333333,,1,,9110,141,144,,????-????,1234567,,,19901060,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,0133-0148,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,0433-0448,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,0733-0748,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,0933-0948,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,1333-1348,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,1733-1748,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,1933-1948,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,2103-2123,1234567,,,4000020,,, +2656,I,,IPA Ancona R,u,Ancona (an),43.6,13.466667,,1,,1082,148,68,,2133-2148,1234567,,,4000020,,, +2656,ISR,,4XA Eilat R,u,Eilat (hdm),29.566667,34.95,,1,,3428,126,91,,????-????,1234567,,,19900848,,, +2656,BHR,,A9M Bahrain R,u,Hamala (shm),26.156944,50.473889,,1,,4662,111,104,,????-????,1234567,,,19900270,,, +2656.4,USA,,KZN508 Rock Hill Sail Mail,p,Rock Hill (SC),34.933333,-81.025,,1,,6858,292,126,,????-????,1234567,-2656.4,,19901552,,, +2657,POR,,CTA Centro de Comunicaes,u,Marinha Grande (lei),39.75,-8.933333,,1,,1808,227,75,,????-????,1234567,,,19901301,,, +2657,POR,,CTV Monsanto R,u,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,0905-0920,1234567,,,6500002,,, +2657,POR,,CTV Monsanto R,u,Lisboa/Monsanto (lis),38.731611,-9.190611,,1,,1914,225,76,,2105-2120,1234567,,,6500002,,, +2657,MDR,,CTQ Centro de Comunicaes,u,-,32.85,-16.75,,1,,2837,230,85,,????-????,1234567,,,19901078,,, +2657,MDR,,CTQ Porto Santo R Naval,u,Porto Santo (pst),33.066278,-16.355417,,1,,2797,230,85,,????-????,1234567,,,19901074,,, +2657,AZR,,Marinha Ponta Delgada,u,Ponta Delgada (smg),37.733333,-25.666667,,1,,2952,250,87,,????-????,1234567,,,19900228,,, +2657,AZR,,CTH Marinha Horta,u,Horta (fai),38.529872,-28.628922,,1,,3086,255,88,,????-????,1234567,,,700012,,, +2657,AZR,,Flores R Naval,,Flores/Naval (flo),39.378333,-31.170833,,1,,3194,259,89,,????-????,1234567,,,700011,,, +2662,SYR,,YKO Tartus R,u,Tartus (tat),34.883333,35.883333,,1,,3017,118,87,,????-????,1234567,,,19901396,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,0133-0148,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,0333-0348,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,0733-0748,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,0833-0848,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,1233-1248,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,1333-1348,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,1633-1648,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,1933-1948,1234567,,,4000028,,, +2663,I,,IPC Crotone R,u,Crotone (kr),39.081708,17.132589,,1,,1668,146,74,,2033-2043,1234567,,,4000028,,, +2663,MRC,,CNP Casablanca R,u,Casablanca (gcb),33.6,-7.633333,,1,,2346,214,80,,????-????,1234567,,,19901115,,, +2663,MYT,,FJN Dzaoudzi R,u,Dzaoudzi (976),-12.782222,45.233889,,1,,8120,140,138,,????-????,1234567,,,19901130,,, +2663,MDG,,Antalaha R,u,Antalaha (ats),-14.883333,50.283333,,1,,8561,137,142,,????-????,1234567,,,19901051,,, +2665,MEX,,XFK La Paz R,u,La Paz (bcs),24.166667,-110.3,,1,,9553,305,146,,????-????,1234567,,,19901085,,, +2670,G,,Falmouth Coastguard,u,Lizard Point (EN-CNW),49.960444,-5.202028,,1,,845,258,65,,????-????,1234567,,,19900557,,, +2670,LVA,,UNI Ventspils R,u,Ventspils (Ven),57.390278,21.533333,,1,,1131,53,68,,????-????,1234567,,,19901046,,, +2670,TUN,,3VT Tunis R,u,Tunis (tun),36.8,10.183333,,1,,1728,169,74,,????-????,1234567,,,19901427,,, +2670,TUR,,Turk R,u,-,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901448,,, +2670,USA,en,USCG Southwest Harbor,u,Southwest Harbor (ME),44.283333,-68.333333,,1,,5358,292,111,,1135-1150,1234567,,,19901566,,, +2670,USA,en,USCG Southwest Harbor,u,Southwest Harbor (ME),44.283333,-68.333333,,1,,5358,292,111,,2335-2350,1234567,,,19901566,,, +2670,USA,en,NMF2 USCG SE New England,u,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,0440-0455,1234567,,,19901571,,, +2670,USA,en,NMF2 USCG SE New England,u,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,1640-1655,1234567,,,19901571,,, +2670,USA,en,NMF7 USGC Boston,u,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,1035-1050,1234567,,,19901504,,, +2670,USA,en,NMF7 USGC Boston,u,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,2235-2250,1234567,,,19901504,,, +2670,USA,,USCG New Haven Long Island,u,New Haven (NY),41.316667,-72.916667,,1,,5856,292,116,,????-????,1234567,,,19901541,,, +2670,USA,en,NMY42 USCG Moriches,u,Moriches (NY),40.8,-72.816667,,1,,5887,291,116,,0010-0025,1234567,,,19901540,,, +2670,USA,en,NMY42 USCG Moriches,u,Moriches (NY),40.8,-72.816667,,1,,5887,291,116,,1210-1225,1234567,,,19901540,,, +2670,USA,,USCG New York,u,New York (NY),40.716667,-74,,1,,5968,292,117,,????-????,1234567,,,19901546,,, +2670,USA,en,USCG Atlantic City,u,Atlantic City (NJ),39.366667,-74.416667,,1,,6095,291,118,,1103-1118,1234567,,,19901499,,, +2670,USA,en,USCG Atlantic City,u,Atlantic City (NJ),39.366667,-74.416667,,1,,6095,291,118,,2303-2318,1234567,,,19901499,,, +2670,USA,,NMK2 USCG Cape May,u,Cape May (NJ),38.933333,-74.9,,1,,6158,291,119,,????-????,1234567,,,19901507,,, +2670,USA,,NMN70 USCG Chincoteague,u,Chincoteague (VA),37.933333,-75.383333,,1,,6264,290,120,,????-????,1234567,,,19901510,,, +2670,USA,en,NMN13 USCG Cape Hatteras,u,Cape Hatteras (NC),35.238889,-75.533333,,1,,6481,288,122,,0133-0148,1234567,,,19901506,,, +2670,USA,en,NMN13 USCG Cape Hatteras,u,Cape Hatteras (NC),35.238889,-75.533333,,1,,6481,288,122,,1303-1318,1234567,,,19901506,,, +2670,USA,en,NMN37 USCG Fort Macon,u,Fort Macon (NC),34.695833,-76.681,,1,,6598,288,123,,0103-0118,1234567,,,19901517,,, +2670,USA,en,NMN37 USCG Fort Macon,u,Fort Macon (NC),34.695833,-76.681,,1,,6598,288,123,,1233-1248,1234567,,,19901517,,, +2670,USA,en,NMB USCG Charleston,u,Charleston (SC),32.866667,-80.016667,,1,,6959,289,127,,0420-0435,1234567,,,19901509,,, +2670,USA,en,NMB USCG Charleston,u,Charleston (SC),32.866667,-80.016667,,1,,6959,289,127,,1620-1635,1234567,,,19901509,,, +2670,PTR,,NMR USCG San Juan,u,Isabela (PR),18.464444,-67.066667,,1,,7277,269,130,,0305-0320,1234567,,,19901321,,, +2670,PTR,,NMR USCG San Juan,u,Isabela (PR),18.464444,-67.066667,,1,,7277,269,130,,1505-1520,1234567,,,19901321,,, +2670,USA,en,NMV USCG Mayport,u,Mayport (FL),30.4,-81.433333,,1,,7251,288,130,,0620-0635,1234567,,,19901534,,, +2670,USA,en,NMV USCG Mayport,u,Mayport (FL),30.4,-81.433333,,1,,7251,288,130,,1820-1835,1234567,,,19901534,,, +2670,USA,en,NME USCG St. Petersburg,u,St. Petersburg (FL),27.757222,-82.630556,,1,,7547,287,132,,0320-0335,1234567,,,19901567,,, +2670,USA,en,NME USCG St. Petersburg,u,St. Petersburg (FL),27.757222,-82.630556,,1,,7547,287,132,,1420-1435,1234567,,,19901567,,, +2670,ALS,,NOJ USCG Kodiak,u,Kodiak/Buskin River (AK),57.778028,-152.530111,,1,,7647,348,133,,????-????,1234567,,,19900027,,, +2670,USA,en,NMA USCG Miami,u,Miami (FL),25.623944,-80.386389,,1,,7577,284,133,,0350-0405,1234567,,,19901538,,, +2670,USA,en,NMA USCG Miami,u,Miami (FL),25.623944,-80.386389,,1,,7577,284,133,,1550-1605,1234567,,,19901538,,, +2670,USA,en,USCG Mobile,u,Mobile (AL),30.7,-88.05,,1,,7649,293,133,,1020-1035,1234567,,,19901539,,, +2670,USA,en,USCG Mobile,u,Mobile (AL),30.7,-88.05,,1,,7649,293,133,,1220-1235,1234567,,,19901539,,, +2670,USA,en,USCG Mobile,u,Mobile (AL),30.7,-88.05,,1,,7649,293,133,,1620-1635,1234567,,,19901539,,, +2670,USA,en,USCG Mobile,u,Mobile (AL),30.7,-88.05,,1,,7649,293,133,,2220-2235,1234567,,,19901539,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,0550-0605,1234567,,,19901543,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,1035-1050,1234567,,,19901543,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,1235-1250,1234567,,,19901543,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,1635-1650,1234567,,,19901543,,, +2670,USA,en,NMG2 USCG New Orleans,u,New Orleans (LA),29.95,-90.083333,,1,,7839,294,135,,2235-2250,1234567,,,19901543,,, +2670,USA,en,NOW USCG Port Angeles,u,Port Angeles (WA),48.139958,-123.402344,,1,,7896,327,136,,0615-0630,1234567,,,19901550,,, +2670,USA,en,NOW USCG Port Angeles,u,Port Angeles (WA),48.139958,-123.402344,,1,,7896,327,136,,0815-1830,1234567,,,19901550,,, +2670,USA,en,NMW USCG Columbia River,u,Astoria (OR),46.203989,-123.955639,,1,,8104,327,138,,0533-0548,1234567,,,19901498,,, +2670,USA,en,NMW USCG Columbia River,u,Astoria (OR),46.203989,-123.955639,,1,,8104,327,138,,1733-1748,1234567,,,19901498,,, +2670,USA,en,USCG Galveston,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,1050-1105,1234567,,,19901521,,, +2670,USA,en,USCG Galveston,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,1250-1305,1234567,,,19901521,,, +2670,USA,en,USCG Galveston,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,1650-1705,1234567,,,19901521,,, +2670,USA,en,USCG Galveston,u,Galveston (TX),29.3,-94.8,,1,,8186,297,139,,2250-2305,1234567,,,19901521,,, +2670,USA,en,USCG North Bend,u,North Bend (OR),43.433333,-124.266667,,1,,8385,325,141,,0603-0618,1234567,,,19901547,,, +2670,USA,en,USCG North Bend,u,North Bend (OR),43.433333,-124.266667,,1,,8385,325,141,,1803-1818,1234567,,,19901547,,, +2670,USA,en,NOY8 USCG Corpus Christi,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,1040-1055,1234567,,,19901513,,, +2670,USA,en,NOY8 USCG Corpus Christi,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,1240-1255,1234567,,,19901513,,, +2670,USA,en,NOY8 USCG Corpus Christi,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,1640-1655,1234567,,,19901513,,, +2670,USA,en,NOY8 USCG Corpus Christi,u,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,2240-2255,1234567,,,19901513,,, +2670,USA,,NMC6 USCG Humboldt,u,Humboldt Bay (CA),40.741111,-124.213333,,1,,8646,324,143,,????-????,1234567,,,19901529,,, +2670,USA,en,NMC17 USCG San Francisco,u,San Francisco (CA),37.766667,-122.416667,,1,,8861,321,143,,0203-0218,1234567,,,19901556,,, +2670,USA,en,NMC17 USCG San Francisco,u,San Francisco (CA),37.766667,-122.416667,,1,,8861,321,143,,1403-1418,1234567,,,19901556,,, +2670,USA,,NMQ USCG,u,Cambria (CA),35.522722,-121.064106,,1,,9020,319,144,,????-????,1234567,,,19901533,,, +2670,TWN,,XSX Keelung R,u,Keelung=Chi-Lung (KLS),25.133333,121.733333,,1,,9386,55,145,,????-????,1234567,,,19901452,,, +2670,GUM,,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,????-????,1234567,,,20012512,,, +2670,HWA,,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,1,,11701,345,153,,????-????,1234567,,,19900657,,, +2676,AUS,,Royal Volunteer Coastal Patrol,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900219,,, +2676,AUS,,Royal Volunteer Coastal Patrol,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900220,,, +2676,AUS,,Royal Volunteer Coastal Patrol,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900221,,, +2677,F,fr,CROSS Gris-Nez,u,Cap Gris-Nez (62),50.867778,1.5825,,1,,362,249,61,,0733-0748,1234567,,,2500006,,, +2677,F,fr,CROSS Gris-Nez,u,Cap Gris-Nez (62),50.867778,1.5825,,1,,362,249,61,,1933-1948,1234567,,,2500006,,, +2677,F,,CROSS A tel,u,tel/Chteau de la Garenne (56),47.661683,-3.201911,,1,,847,238,65,,????-????,1234567,,,19900526,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0000-0015,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0635-0645,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,0715-0730,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1835-1845,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,1915-1930,1234567,,,2500009,,, +2677,F,fr,FRC CROSS Corsen,u,Pointe de Corsen (29),48.414056,-4.788056,,1,,895,247,66,,2003-2013,1234567,,,2500009,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0550-0605,1234567,,,2500007,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,0733-0748,1234567,,,2500007,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1333-1348,1234567,,,2500007,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1503-1518,1234567,,,2500007,,, +2677,F,fr,FRL CROSS Med La Garde,u,Fort Sainte-Marguerite (83),43.104306,5.991389,,1,,1002,182,67,,1750-1815,1234567,,,2500007,,, +2677.4,AUS,,VMR225 Coastal Patrol Sydney,u,Sydney/Terrey Hills (NSW),-33.69265,151.222661,,0.4,,16546,68,173,,????-????,1234567,-2677.4,,37700147,,, +2677.4,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.1,,16726,74,179,,????-????,1234567,-2677.4,,37700143,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,0133-0148,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,0303-0318,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,0733-0748,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,0803-0818,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,1203-1218,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,1333-1348,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,1603-1618,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,1933-1948,1234567,,,4000024,,, +2680,I,,IDC Cagliari R,u,Cagliari/Quartu Sant'Elena (ca),39.227506,9.234094,,1,,1449,170,71,,2003-2018,1234567,,,4000024,,, +2680,ISR,,4XZ Israeli Navy,c,Haifa/Israeli Navy (haf),32.816667,34.983333,,1,,3140,122,88,,????-????,1234567,,,19900852,,, +2680,STP,,S9M So Tom R,u,So Tom (sao),0.345833,6.7375,,1,,5756,180,115,,????-????,1234567,,,19901388,,, +2680,THA,,Songkhla R,u,Songkhla (sgk),7.191667,100.607222,,1,,9662,82,146,,????-????,1234567,,,19901407,,, +2686,THA,,HSA6 Bangkok R,u,Bangkok (bmp),13.75,100.516667,,1,,9081,78,144,,????-????,1234567,,,19901405,,, +2686.4,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.15,,11709,345,161,,????-????,1234567,-2686.4,,19900658,,, +2689,F,,FUE Marine Nationale,r,Brest (29),48.4,-4.483333,,1,,876,246,66,,????-????,1234567,,,19900523,,, +2690,INS,,Ulee-Lheue R,u,Ulee-Lheue (AC),5.583333,95.333333,,1,,9444,87,145,,????-????,1234567,,,19900797,,, +2690,INS,,Pangkal Balam R,u,Pangkal Balam (BB-pan),-2.091667,106.15,,1,,10855,84,150,,????-????,1234567,,,19900760,,, +2690,INS,,PKX Jakarta R,u,Jakarta (JK),-6.166667,106.833333,,1,,11259,86,151,,????-????,1234567,,,19900733,,, +2690,INS,,Panjang R,u,Panjang,-5.483333,105.3,,1,,11095,86,151,,????-????,1234567,,,19900759,,, +2690,INS,,Siau R,u,Siau,0.183333,115.516667,,1,,11281,75,151,,????-????,1234567,,,19900780,,, +2690,INS,,PKD33 Bawean R,u,Bawean (JI),-5.841667,112.644444,,1,,11625,81,152,,????-????,1234567,,,19900709,,, +2690,INS,,PKM9 Donggala R,u,Donggala (ST-don),-0.683333,119.75,,1,,11635,72,152,,????-????,1234567,,,19900725,,, +2690,INS,,PKN Balikpapan R,u,Balikpapan (KI-bal),-1.283333,116.833333,,1,,11499,74,152,,????-????,1234567,,,19900704,,, +2690,INS,,PKZ2 Cirebon R,u,Cirebon (JB-cir),-6.733333,108.566667,,1,,11427,85,152,,????-????,1234567,,,19900722,,, +2690,INS,,Pulang Pisau R,u,Pulang Pisau,-2.766667,114.233333,,1,,11459,77,152,,????-????,1234567,,,19900768,,, +2690,INS,,Tahuna R,u,Tahuna (SA-san),3.616667,125.483333,,1,,11605,64,152,,????-????,1234567,,,19900786,,, +2690,INS,,Masalembo R,u,Masalembo,-5.566667,114.416667,,1,,11720,79,153,,????-????,1234567,,,19900750,,, +2690,INS,,Meneng R,u,Ketapang (JI-ban),-8.125833,114.39775,,1,,11944,81,153,,????-????,1234567,,,19900753,,, +2690,INS,,PKD36 Kalianget R,u,Kalianget (JI),-7.05,113.933333,,1,,11818,80,153,,????-????,1234567,,,19900737,,, +2690,INS,,PKD51 Gresik R,u,Gresik (JI-gre),-7.15,112.65,,1,,11740,81,153,,????-????,1234567,,,19900729,,, +2690,INS,,PKM5 Luwuk R,u,Luwuk (ST-bgg),-0.95,122.783333,,1,,11855,69,153,,????-????,1234567,,,19900746,,, +2690,INS,,PKM8 Gorontalo R,u,Gorontalo (GO-grt),0.533333,123.066667,,1,,11737,68,153,,????-????,1234567,,,19900728,,, +2690,INS,,Panarukan R,u,Panarukan,-7.7,113.933333,,1,,11875,81,153,,????-????,1234567,,,19900756,,, +2690,INS,,Poso R,u,Poso (ST-pos),-1.4,120.75,,1,,11765,71,153,,????-????,1234567,,,19900766,,, +2690,INS,,Probolinggo R,u,Probolinggo (JI-pro),-7.75,113.216667,,1,,11831,81,153,,????-????,1234567,,,19900767,,, +2690,INS,,PKD3 Lembar R,u,Lembar,-8.75,116.066667,,1,,12111,80,154,,????-????,1234567,,,19900744,,, +2690,INS,,PKD30 Celukan Bawang R,u,Celukan Bawang (BA),-8.2,114.833333,,1,,11980,80,154,,????-????,1234567,,,19900719,,, +2690,INS,,PKD34 Bima R,u,Bima (NB-bim),-8.466667,118.716667,,1,,12264,77,154,,????-????,1234567,,,19900715,,, +2690,INS,,PKD5 Benoa R,u,Benoa (BA-den),-8.766667,115.216667,,1,,12056,80,154,,????-????,1234567,,,19900713,,, +2690,INS,,Padang Bai R,u,Padang Bai (BA),-8.533333,115.505556,,1,,12055,80,154,,????-????,1234567,,,19900757,,, +2690,INS,,Maumere R,u,Maumere (NT-sik),-8.616667,122.233333,,1,,12510,74,155,,????-????,1234567,,,19900751,,, +2690,INS,,PKD20 Ende R,u,Ende (NT-end),-8.833333,121.65,,1,,12491,75,155,,????-????,1234567,,,19900727,,, +2690,INS,,PKD50 Larantuka R,u,Larantuka (NT),-8.35,122.983333,,1,,12535,74,155,,????-????,1234567,,,19900743,,, +2690,INS,,PKE Ambon R,u,Ambon (MA-amb),-3.716667,128.2,,1,,12450,66,155,,????-????,1234567,,,19900702,,, +2690,INS,,Waingapu R,u,Waingapu (NT),-9.65,120.266667,,1,,12471,77,155,,????-????,1234567,,,19900798,,, +2690,INS,,PKD35 Kalabahi R,u,Kalabahi (NT),-8.216667,124.516667,,1,,12623,72,156,,????-????,1234567,,,19900736,,, +2690,INS,,PKD52 Atapupu R,u,Atapupu (NT-bel),-9,124.85,,1,,12715,72,156,,????-????,1234567,,,19900703,,, +2690,INS,,PKK Kupang R,u,Kupang (NT-kpg),-10.166667,123.583333,,1,,12737,74,156,,????-????,1234567,,,19900741,,, +2690,INS,,PKY2 Biak R,u,Biak (PA-bia),-1.166667,136.1,,1,,12686,57,156,,????-????,1234567,,,19900714,,, +2690,INS,,PKY25 Kaimana R,u,Kaimana (PB-kai),-3.665278,133.761111,,1,,12785,61,156,,????-????,1234567,,,19900738,,, +2690,INS,,PKY33 Bintuni R,u,Bintuni (PB-tlb),-2.116667,133.533333,,1,,12626,60,156,,????-????,1234567,,,19900716,,, +2690,INS,,Tual R,u,Tual,-5.666667,132.75,,1,,12911,63,157,,????-????,1234567,,,19900796,,, +2691,G,,Aberdeen Coastguard,u,Aberdeen/Girdleness (SC-ABC),57.138472,-2.048889,,1,,779,319,65,,????-????,1234567,,,19900549,,, +2691,ALG,,7TA Alger R,u,Algiers (16),36.766667,3.05,,1,,1726,190,74,,????-????,1234567,,,19900013,,, +2693,POR,,CUL Lisbao R,u,Lisbao (lis),38.7,-9.173611,,1,,1916,225,76,,????-????,1234567,,,19901299,,, +2693,TUR,,Samsun Turk Radyo,u,Samsun/TAF (kdz-sam),41.386667,36.188333,,1,,2538,106,82,,????-????,1234567,,,19901444,,, +2693,TUR,,Antalya Turk Radyo,u,Antalya/TAL (akd-ant),36.1525,32.44,,1,,2706,121,84,,????-????,1234567,,,19901430,,, +2694,CUB,,Nuevitas R,u,Nuevitas (cm),21.55,-77.266667,,1,,7710,279,134,,????-????,1234567,,,19900448,,, +2695,UKR,,URL8 Sevastopol' Metro,u,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901476,,, +2700,CYP,,5BA Cyprus R,u,Nicosia (kyp-nic),35.047778,33.283056,,1,,2849,121,85,,0733-0748,1234567,,,19900452,,, +2700,CYP,,5BA Cyprus R,u,Nicosia (kyp-nic),35.047778,33.283056,,1,,2849,121,85,,1533-1548,1234567,,,19900452,,, +2700.4,KOR,,HLP Busan R,u,Busan (bus),35.1,129.033333,,1,,8836,44,143,,????-????,1234567,-2700.4,,19900950,,, +2701.4,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.15,,11709,345,161,,????-????,1234567,-2701.4,,19900659,,, +2703,RUS,,Posyet R,c,Posyet,42.65,130.8,,1,,8202,39,139,,????-????,1234567,,,19901363,,, +2705,COG,,TNA Pointe-Noire R,u,Pointe-Noire,-4.794444,11.836111,,1,,6348,174,120,,????-????,1234567,,,19900421,,, +2710,MEX,,XFY Guaymas R,u,Guaymas,27.933333,-110.9,,1,,9236,308,144,,????-????,1234567,,,19901082,,, +2712,MDG,,5RL Antsiranana R,u,Antsiranana (ats),-12.266667,49.283333,,1,,8252,136,140,,????-????,1234567,,,19901053,,, +2712,MDG,,Maintirano R,u,Maintirano (mhj),-18.066667,44.016667,,1,,8609,144,142,,????-????,1234567,,,19901058,,, +2712,MDG,,5RD Tlanaro R,u,Tlanaro=Fort-Dauphin (tln),-25.033333,47,,1,,9442,144,145,,????-????,1234567,,,19901067,,, +2713.4,USA,,San Luis Obispo Sail Mail,p,San Luis Obispo (CA),35.283333,-120.666667,,1,,9025,319,144,,????-????,1234567,-2713.4,,19901557,,, +2716,MHL,,Range Command Centre,u,Kwajalein/Missile Range,9.394447,167.483336,,1,,12941,21,157,,????-????,1234567,,,19901095,,, +2716,ATA,,NGD McMurdo Station Port Control,u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900104,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,0133-0148,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,0303-0318,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,0733-0748,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,0803-0818,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,1203-1218,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,1333-1348,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,1603-1618,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,1933-1948,1234567,,,4000027,,, +2719,I,,IZN Porto Torres R,u,Porto Torres (ss),40.834667,8.419722,,1,,1263,172,70,,2003-2018,1234567,,,4000027,,, +2719,ALG,,Oran R,u,Oran (31),35.683333,-0.65,,1,,1910,200,76,,????-????,1234567,,,19900018,,, +2719,THA,,Songkhla R,u,Songkhla (sgk),7.191667,100.607222,,1,,9662,82,146,,????-????,1234567,,,19901408,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,0133-0143,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,0533-0543,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,0733-0743,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,0933-0943,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,1033-1043,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,1333-1343,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,1733-1743,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,1933-1943,1234567,,,6400030,,, +2720,POL,,SPS Witowo R,u,Jarosławiec (ZP),54.538889,16.541667,,1,,724,64,64,,2133-2143,1234567,,,6400030,,, +2720,RUS,,UBR3 Vanino R,u,Vanino (KH),49.083333,140.25,,1,,7947,30,136,,????-????,1234567,,,19901368,,, +2720,RUS,,UBC7 Uglegorsk R,u,Uglegorsk (SL),49.083333,142.033333,,1,,8007,29,137,,????-????,1234567,,,19901367,,, +2720,RUS,,UDB4 Poronaysk R,u,Poronaysk,49.216667,143.116667,,1,,8029,28,137,,????-????,1234567,,,19901362,,, +2720,ATA,,VLV,u,Mawson Station [AUS] (aat),-67.602222,62.875003,,1,,14110,157,161,,????-????,1234567,,,19900098,,, +2720,ATA,,VLZ,u,Davis Station [AUS] (aat),-68.577392,77.982811,,1,,14632,152,162,,????-????,1234567,,,19900091,,, +2720,ATA,,VNJ,u,Casey Station [AUS] (aat),-66.282494,110.526439,,1,,15736,141,166,,????-????,1234567,,,19900087,,, +2720,AUS,,VJM,u,Macquarie Island (TAS),-54.49655,158.941783,,1,,18183,109,174,,????-????,1234567,,,19900168,,, +2720.8,USA,,Corpus Christi Texas Sail Mail,p,Corpus Christi (TX),27.8,-97.4,,1,,8474,298,142,,????-????,1234567,-2720.8,,19901514,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0133-0148,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0333-0348,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0733-0748,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,0833-0848,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1233-1248,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1333-1348,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1633-1648,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,1933-1948,1234567,,,4000016,,, +2722,I,,ICB Genova R,u,Genova/Forte Castellaccio (ge),44.429014,8.933656,,1,,874,167,66,,2033-2048,1234567,,,4000016,,, +2722.1,URG,,CWC34 Punta del Este Prefectura R,u,Punta del Este (ma),-34.966667,-54.95,,1,,11362,227,151,,????-????,1234567,-2722.1,,19901492,,, +2722.1,URG,,La Paloma R,u,La Paloma (ro),-34.666667,-54.166667,,1,,11295,227,151,,????-????,1234567,-2722.1,,19901484,,, +2722.1,URG,,Ro Branco R,u,Ro Branco (cl),-32.566667,-53.416667,,1,,11061,228,151,,????-????,1234567,-2722.1,,19901493,,, +2722.1,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,????-????,1234567,-2722.1,,19901483,,, +2722.1,URG,,Montevideo Trouville Metro,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,????-????,1234567,-2722.1,,19901488,,, +2722.1,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,0833-0848,1234567,-2722.1,,19901487,,, +2722.1,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,1603-1618,1234567,-2722.1,,19901487,,, +2722.1,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,2203-2218,1234567,-2722.1,,19901487,,, +2722.1,URG,,Nueva Palmira R,u,Nueva Palmira (co),-33.883333,-58.416667,,1,,11441,230,152,,????-????,1234567,-2722.1,,19901490,,, +2723,BRB,,Barbados Coastguard,u,Spring Garden (smi),13.127778,-59.633333,,1,,7231,259,129,,????-????,1234567,,,19900274,,, +2724,ISL,,TFZ safjrur R,u,safjrur (vf),66.068056,-23.123611,,1,,2253,325,80,,????-????,1234567,,,19900831,,, +2724,FSM,,KUP69 Yap R,u,Yap (yap),9.516667,138.119444,,1,,11766,50,153,,????-????,1234567,,,19900548,,, +2724,PLW,,KUP68 Koror R,u,Koror (kor),7.345833,134.488889,,1,,11781,54,153,,????-????,1234567,,,23200006,,, +2724,FSM,,KUP67 Truk R,u,Truk (chu),7.416667,151.783333,,1,,12624,38,156,,????-????,1234567,,,19900546,,, +2724,FSM,,KUP66 Pohnpei R,u,Pohnpei (pnp),6.983333,158.202778,,1,,12919,32,157,,????-????,1234567,,,19900544,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,0033-0048,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,0730-0745,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,0903-0918,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,1533-1548,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,1635-1650,1234567,,,3400020,,, +2730,GRC,,SVL Limnos R,u,Limnos (neg-les),39.866667,25.066667,,1.5,,1972,126,75,,2133-2148,1234567,,,3400020,,, +2730,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900082,,, +2733,S,,SDJ Stockholm R,u,Hrnsand (vn),62.616667,18.05,,1,,1356,26,71,,0733-0748,1234567,,,6800005,,, +2733,S,,SDJ Stockholm R,u,Hrnsand (vn),62.616667,18.05,,1,,1356,26,71,,0833-0848,1234567,,,6800005,,, +2733,S,,SDJ Stockholm R,u,Hrnsand (vn),62.616667,18.05,,1,,1356,26,71,,1533-1548,1234567,,,6800005,,, +2733,S,,SDJ Stockholm R,u,Hrnsand (vn),62.616667,18.05,,1,,1356,26,71,,2033-2048,1234567,,,6800005,,, +2735,TCA,,Turks & Caicos R,u,Grand Turk (gtu),21.505556,-71.133333,,1,,7298,274,130,,????-????,1234567,,,19901400,,, +2735,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1250-1300,1234567,,,33400001,,, +2735,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1850-1900,1234567,,,33400001,,, +2738,TCA,,Turks & Caicos R,u,Grand Turk (gtu),21.505556,-71.133333,,1,,7298,274,130,,????-????,1234567,,,19901401,,, +2738,BAH,,ZFP61 Freeport Harbour Control,u,Freeport,26.533333,-78.7,,1,,7390,284,131,,????-????,1234567,,,19900243,,, +2738,BAH,,Air Sea Rescue,u,-,23.5,-76,,1,,7461,279,132,,????-????,1234567,,,19900249,,, +2738,DOM,,HIA Santo Domingo Piloto R,u,Santo Domingo (sdo),18.466667,-69.9,,1,,7470,271,132,,????-????,1234567,,,19900495,,, +2738,HTI,,Port-au-Prince R,u,Port-au-Prince (oue),18.558333,-72.35,,1,,7629,273,133,,????-????,1234567,,,19900655,,, +2738,JMC,,Kingston Coastguard R,u,Kingston (kgs),17.934722,-76.843056,,1,,7988,276,137,,????-????,1234567,,,19900928,,, +2738,VEN,,Venezuelan Marinas,u,-,6.5,-66.5,,1,,8275,260,140,,????-????,1234567,,,19901618,,, +2738,PRU,,OBY2 Paita R,u,Paita (piu),-5.083333,-81.116667,,1,,10285,265,148,,????-????,1234567,,,19901316,,, +2738,CHL,,CBA2,u,Arica (TA),-18.483333,-70.333333,,1,,10752,248,149,,????-????,1234567,,,19900316,,, +2738,PRU,,OBC3 Callao R,u,Callao (lim),-12.066667,-77.15,,1,,10630,258,149,,????-????,1234567,,,19901314,,, +2738,CHL,,CBA3,u,Iquique (TA),-20.216667,-70.166667,,1,,10896,247,150,,????-????,1234567,,,19900336,,, +2738,CHL,,CBA Antofagasta R,u,Antofagasta (AN),-23.65,-70.4,,1,,11214,245,151,,????-????,1234567,,,19900315,,, +2738,CHL,,CBA21 Tocopilla R,u,Tocopilla (AN),-22.083333,-70.2,,1,,11063,246,151,,????-????,1234567,,,19900369,,, +2738,CHL,,CBA22 Mejillones R,u,Mejillones (AN),-23.1,-70.45,,1,,11168,246,151,,????-????,1234567,,,19900349,,, +2738,CHL,,CBA23 Chaaral R,u,Chaaral,-26.35,-70.616667,,1,,11465,244,152,,????-????,1234567,,,19900327,,, +2738,CHL,,CBA27 Taltal R,u,Taltal (AN),-25.4,-70.483333,,1,,11373,244,152,,????-????,1234567,,,19900368,,, +2738,CHL,,CBA5,u,Caldera (AT),-27.066667,-70.833333,,1,,11541,243,152,,????-????,1234567,,,19900324,,, +2738,CHL,,CBA24 Huasco R,u,Huasco (AT),-28.466667,-71.216667,,1,,11686,243,153,,????-????,1234567,,,19900335,,, +2738,CHL,,CBA4 Coquimbo R,u,Coquimbo (CO),-29.95,-71.35,,1,,11823,242,153,,????-????,1234567,,,19900329,,, +2738,CHL,,CBA26 Los Vilos R,u,Los Vilos,-31.916667,-71.516667,,1,,12004,241,154,,????-????,1234567,,,19900346,,, +2738,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1235-1250,1234567,,,19900374,,, +2738,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2335-2350,1234567,,,19900374,,, +2738,CHL,,CBV22,u,San Antonio (VS),-33.6,-71.616667,,1,,12154,240,154,,????-????,1234567,,,19900363,,, +2738,CHL,,CBT Talcahuano R,u,Talcahuano (BI),-36.715056,-73.108,,1,,12506,239,155,,0045-0100,1234567,,,19900367,,, +2738,CHL,,CBT Talcahuano R,u,Talcahuano (BI),-36.715056,-73.108,,1,,12506,239,155,,1245-1300,1234567,,,19900367,,, +2738,CHL,,CBT2 Faro Cabo Carranza R,u,Cabo Carranza,-35.560625,-72.617458,,1,,12380,239,155,,????-????,1234567,,,19900320,,, +2738,CHL,,CBT21 Constitucin R,u,Constitucin (ML),-35.333333,-72.416667,,1,,12349,239,155,,????-????,1234567,,,19900328,,, +2738,CHL,,CBT24 Coronel R,u,Coronel (BI),-37.016667,-73.133333,,1,,12533,238,155,,????-????,1234567,,,19900330,,, +2738,CHL,,CBF Juan Fernndez R,u,Juan Fernndez,-33.66475,-78.932167,,1,,12601,245,156,,????-????,1234567,,,19900343,,, +2738,CHL,,CBT25 Lebu R,u,Lebu (BI),-37.616667,-73.65,,1,,12614,238,156,,????-????,1234567,,,19900344,,, +2738,CHL,,CBT4,u,Valdivia (LL),-39.8,-73.233333,,1,,12771,236,156,,????-????,1234567,,,19900371,,, +2738,CHL,,Faro Isla Mocha,u,Isla Mocha (BI),-38.333333,-73.941667,,1,,12690,238,156,,????-????,1234567,,,19900340,,, +2738,CHL,,CBP Puerto Montt R,u,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,1130-1145,1234567,,,19900355,,, +2738,CHL,,CBP Puerto Montt R,u,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,2325-2340,1234567,,,19900355,,, +2738,CHL,,CBP21,u,Castro (LL),-42.466667,-73.8,,1,,13023,235,157,,????-????,1234567,,,19900325,,, +2738,CHL,,CBP23 Ancud R,u,Ancud (LL),-41.866667,-73.816667,,1,,12975,235,157,,????-????,1234567,,,19900314,,, +2738,CHL,,CBP23 Quelln R,u,Quelln (LL),-43.116667,-73.608333,,1,,13065,234,157,,????-????,1234567,,,19900361,,, +2738,CHL,,CBP24 Chaiten R,u,Chaiten,-42.9,-72.666667,,1,,12995,234,157,,????-????,1234567,,,19900326,,, +2738,CHL,,CBP29 Melinka R,u,Melinka,-43.883333,-73.766667,,1,,13136,234,157,,????-????,1234567,,,19900350,,, +2738,CHL,,CBP30 Puerto Cisnes R,u,Puerto Cisnes (AI),-44.747222,-72.697222,,1,,13148,232,157,,????-????,1234567,,,19900353,,, +2738,CHL,,CBP4 Faro Isla Guafo R,u,Isla Guafo,-43.566611,-74.827319,,1,,13169,235,157,,????-????,1234567,,,19900337,,, +2738,CHL,,CBP70 Faro Punta Corona R,u,Punta Corona,-41.784,-73.879833,,1,,12971,235,157,,????-????,1234567,,,19900358,,, +2738,CHL,,Baker R,u,Baker,-47.8,-73.55,,1,,13437,230,158,,????-????,1234567,,,19900319,,, +2738,CHL,,CBM2 Faro Cabo Raper R,u,Cabo Raper,-46.803333,-75.637917,,1,,13470,232,158,,????-????,1234567,,,19900323,,, +2738,CHL,,CBM31 Tortel R,u,Tortel,-47.833333,-73.566667,,1,,13441,230,158,,????-????,1234567,,,19900370,,, +2738,CHL,,CBP3,u,Puerto Aysn (AI),-45.4,-72.7,,1,,13201,232,158,,????-????,1234567,,,19900352,,, +2738,CHL,,CBP31 Puerto Aguirre R,u,Puerto Aguirre,-45.166667,-73.533333,,1,,13227,232,158,,????-????,1234567,,,19900351,,, +2738,CHL,,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,0035-0050,1234567,,,19900348,,, +2738,CHL,,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1235-1250,1234567,,,19900348,,, +2738,CHL,,CBM21 Puerto Edn R,u,Puerto Edn,-49.133333,-74.433333,,1,,13588,230,159,,????-????,1234567,,,19900354,,, +2738,CHL,,CBM22 Puerto Natales R,u,Puerto Natales (MA),-51.733333,-72.516667,,1,,13692,227,159,,????-????,1234567,,,19900356,,, +2738,CHL,,CBM5 Punta Delgada R,u,Punta Delgada,-52.455722,-69.545972,,1,,13603,224,159,,????-????,1234567,,,19900359,,, +2738,CHL,,CBM71 Faro Punta Dngeness R,u,Punta Dngeness,-52.394722,-68.431111,,1,,13546,224,159,,????-????,1234567,,,19900332,,, +2738,CHL,,CBM72 Faro Espiritu Santo R,u,Faro Espiritu Santo,-52.658875,-68.606594,,1,,13575,224,159,,????-????,1234567,,,19900333,,, +2738,CHL,,CBN Cabo de Hornos R,u,Cabo de Hornos,-55.972778,-67.270556,,1,,13775,220,159,,????-????,1234567,,,19900321,,, +2738,CHL,,CBN Wollaston R,u,Isla Wollaston (MA),-55.7,-67.436111,,1,,13761,221,159,,????-????,1234567,,,19900375,,, +2738,CHL,,CBS San Pedro R,u,San Pedro,-47.7,-74.883333,,1,,13500,231,159,,????-????,1234567,,,19900365,,, +2738,CHL,,CBW,u,Puerto Williams (MA),-54.933333,-67.616667,,1,,13709,221,159,,????-????,1234567,,,19900357,,, +2738,ATA,,CBZ20 Baha Fildes R,u,Baha Fildes [CHL] (ssi),-62.210167,-58.935028,,1,,13939,211,160,,0150-0205,1234567,,,19900076,,, +2738,ATA,,CBZ20 Baha Fildes R,u,Baha Fildes [CHL] (ssi),-62.210167,-58.935028,,1,,13939,211,160,,1350-1405,1234567,,,19900076,,, +2738,ATA,,CCZ Base Arturo Prat R,u,Base Naval Capitn Arturo Prat [CHL] (tca),-62.478872,-59.663722,,1,,13987,211,160,,????-????,1234567,,,22400001,,, +2738,CHL,,CBM3 Faro Isotes Evangelistas,u,Faro Islote Evangelistas,-52.386111,-75.097778,,1,,13870,227,160,,????-????,1234567,,,19900341,,, +2738,CHL,,CBM30 Diego Ramrez R,u,Diego Ramrez,-56.516667,-68.700278,,1,,13881,221,160,,????-????,1234567,,,19900331,,, +2738,CHL,,CBM4 Faro Fairway R,u,Faro Islote Fairway,-52.731667,-73.781111,,1,,13830,226,160,,????-????,1234567,,,19900334,,, +2738,CHL,,CBX Bahia Felix R,u,Baha Felix,-52.958611,-74.072778,,1,,13862,226,160,,????-????,1234567,,,19900318,,, +2738,ATA,,CBZ21 Baha Paraso R,u,Baha Paraso [ARG] (aar),-64.824061,-62.8571,,1,,14282,211,161,,????-????,1234567,,,19900077,,, +2738,PAQ,,CBV3 Hanga Roa R,u,Hanga Roa (vlp),-27.151389,-109.438333,,1,,14095,272,161,,????-????,1234567,,,19901318,,, +2738,PAQ,,CBY Isla de Pascua R,u,Hanga Roa (vlp),-27.151389,-109.438333,,1,,14095,272,161,,????-????,1234567,,,19901319,,, +2738,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,,,,,19900874,,, +2740,SDN,,Port Sudan R,u,Bur Sudan=Port Sudan (rs),19.608333,37.236111,,1,,4491,132,102,,????-????,1234567,,,19901379,,, +2742,MDR,,Faial R,u,Faial (md),32.783333,-16.85,,1,,2849,230,85,,????-????,1234567,,,19900226,,, +2742,AZR,,CUG So Miguel R,u,So Miguel (smg),37.766667,-25.5,,1,,2939,250,86,,????-????,1234567,,,19900232,,, +2745,MEX,,XFQ Salina Cruz R,u,Salina Cruz (oax),16.166667,-95.2,,1,,9363,289,145,,????-????,1234567,,,19901091,,, +2746,THA,,HSA7 Bangkok R,u,Bangkok (bmp),13.75,100.516667,,1,,9081,78,144,,????-????,1234567,,,19901406,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,0733-0753,1234567,,,6600002,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,1033-1053,1234567,,,6600002,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,1333-1353,1234567,,,6600002,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,1633-1653,1234567,,,6600002,,, +2748,ROU,,YQI Constanţa R,u,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,1933-1953,1234567,,,6600002,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,0040-0100,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,0740-0800,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,1440-1500,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,1510-1530,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,2110-2130,1234567,,,20109232,,, +2749,CAN,,VCO Sydney Coastguard,u,Glace Bay (NS),46.187222,-59.892389,,1,,4697,289,104,,2140-2200,1234567,,,20109232,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0437-0457,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0847-0907,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,0937-0957,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1407-1427,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,1737-1757,1234567,,,20109273,,, +2749,CAN,,VCG Rivire-au-Renard Coastguard,u,Sept-les (QC),50.195,-66.109889,,1,,4846,298,105,,2317-2337,1234567,,,20109273,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,0633-0653,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,1118-1138,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,1218-1238,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,1735-1755,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,1818-1838,1234567,,,20109231,,, +2749,CAN,,VCN Grindstone Coastguard,u,Grindstone (QC),47.357222,-61.926667,,1,,4756,292,105,,2333-2353,1234567,,,20109231,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,0110-0130,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,0810-0830,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,1310-1330,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,1540-1600,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,1910-1930,1234567,,,20109233,,, +2749,CAN,,VCS2 Halifax Coastguard,u,Sambro (NS),44.472222,-63.621111,,1,,5045,290,107,,2010-2030,1234567,,,20109233,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,0140-0200,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1040-1100,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1240-1300,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1640-1700,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1940-2000,1234567,,,20109234,,, +2749,CAN,,VAR3 Yarmouth Coastguard,u,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,2040-2100,1234567,,,20109234,,, +2750,BUL,,LZL Burgas R,u,Burgas (bur),42.5,27.472222,,1,,1903,116,76,,????-????,1234567,,,19900278,,, +2750,JOR,,Aqaba R,u,Aqaba (aqb),29.530556,35,,1,,3434,126,91,,????-????,1234567,,,19900933,,, +2750,KWT,,9KK Kuwait R,u,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901012,,, +2752,GMB,,C5G Banjul R,u,Banjul (bjl),13.45,-16.575,,1,,4762,214,105,,????-????,1234567,,,19900593,,, +2752.9,HOL,,PFC Koninklijke Marine,u,-,52.35,5.125,,1,,91,287,37,,????-????,1234567,-2752.9,,19900653,,, +2755,GMB,,C5G Banjul R,u,Banjul (bjl),13.45,-16.575,,1,,4762,214,105,,????-????,1234567,,,19900594,,, +2755,ASC,,ZBI Ascension Island R,u,Georgetown,-7.925,-14.412222,,1,,6964,203,127,,????-????,1234567,,,19900075,,, +2756,MEX,,XFS Tampico R,u,Tampico (tam),22.277778,-97.8,,1,,8986,295,144,,????-????,1234567,,,19901094,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,0133-0148,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,0333-0348,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,0733-0748,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,0833-0848,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,1233-1248,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,1333-1348,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,1633-1648,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,1933-1948,1234567,,,4000025,,, +2759,I,,IPB Bari R,u,Bari/San Giorgio (ba),41.098389,16.95755,,1,,1462,143,72,,2033-2048,1234567,,,4000025,,, +2759,USA,,San Diego Sail Mail,p,San Diego (CA),32.716667,-117.15,,1,,9107,315,144,,????-????,1234567,,,19901554,,, +2760,TUR,,TAR Zonguldak Turk R,u,Zonguldak (kdz-zon),41.45,31.758333,,1,,2247,112,79,,????-????,1234567,,,19901447,,, +2760,CAN,,VCT Tors Cove R,u,Tors Cove (NL),47.216667,-52.85,,1,,4179,287,99,,????-????,1234567,,,19900309,,, +2760,CUB,,Baracoa R,u,Baracoa (gu),20.35,-74.5,,1,,7624,276,133,,????-????,1234567,,,19900438,,, +2760,CUB,,Santa Cruz del Sur R,u,Santa Cruz del Sur,20.716667,-78,,1,,7830,279,135,,????-????,1234567,,,19900450,,, +2760,CUB,,CLT La Habana R,u,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,0205-0220,1234567,,,19900444,,, +2760,CUB,,CLT La Habana R,u,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,0605-0620,1234567,,,19900444,,, +2760,CUB,,CLT La Habana R,u,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,1405-1420,1234567,,,19900444,,, +2760,CUB,,CLT La Habana R,u,La Habana (ch),23.133333,-82.366667,,1,,7918,284,136,,1805-1820,1234567,,,19900444,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,0234-0254,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,0634-0654,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,0820-0840,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,1034-1054,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,1434-1454,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,1720-1740,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,1834-1854,1234567,,,800001,,, +2761,BEL,,OSU Oostende R,u,Middelkerke (vlg-wvl),51.182222,2.806944,,1,,269,249,60,,2234-2254,1234567,,,800001,,, +2765,KWT,,9KK Kuwait R,u,Madinat al-Kuwayt (kuw),29.351389,48.100833,,1,,4240,110,99,,????-????,1234567,,,19901013,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,0433-0448,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,0503-0518,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,0833-0848,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,1003-1018,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,1233-1248,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,1603-1618,1234567,,,19901324,,, +2768,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,1633-1648,1234567,,,19901324,,, +2768,AUS,,Royal Australian Navy Darwin,u,Darwin (NT),-12.466667,130.833333,,1,,13412,69,158,,????-????,1234567,,,19900141,,, +2768,AUS,,Royal Australian Navy Freemantle,u,Fremantle (WA),-32.05,115.766667,,1,,14038,97,160,,????-????,1234567,,,19900153,,, +2768,AUS,,Royal Australian Navy,u,Cairns (QLD),-16.916667,145.766667,,1,,14732,58,163,,????-????,1234567,,,19900133,,, +2768,AUS,,Royal Australian Navy Nowra,u,Nowra (NSW),-34.883333,150.6,,1,,16602,70,169,,????-????,1234567,,,19900177,,, +2768,AUS,,Royal Australian Navy,u,Canberra (ACT),-35.283333,149.216667,,1,,16544,72,169,,????-????,1234567,,,19900134,,, +2768,AUS,,Royal Australian Navy,u,Sydney (NSW),-33.883333,151.216667,,1,,16561,68,169,,????-????,1234567,,,19900191,,, +2768.5,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0000-0015,1234567,-2768.5,,31200006,,, +2768.5,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1400-1415,1234567,-2768.5,,31200006,,, +2768.5,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1900-1915,1234567,-2768.5,,31200006,,, +2773,ATA,,Scott Base (NZL),u,Scott Base [NZL] (rdp),-77.849283,166.763469,,1,,17045,171,170,,????-????,1234567,,,19900118,,, +2775,ALG,,7TA Alger R,u,Algiers (16),36.766667,3.05,,1,,1726,190,74,,????-????,1234567,,,19900014,,, +2780,POR,,CUL Lisbao R,u,Lisbao (lis),38.7,-9.173611,,1,,1916,225,76,,????-????,1234567,,,19901300,,, +2780,STP,,S9M So Tom R,u,So Tom (sao),0.345833,6.7375,,1,,5756,180,115,,????-????,1234567,,,19901389,,, +2780,CUB,,Isabela de Sagua R,u,Isabela de Sagua,22.933333,-80.016667,,1,,7779,282,135,,????-????,1234567,,,19900445,,, +2782,S,,Kustbevakningen,u,-,62,17.6,,1,,1287,27,70,,????-????,1234567,,,19901378,,, +2782,USA,,Mississippi River System,u,-,37,-119.3,,1,,8798,319,143,,????-????,1234567,,,19901610,,, +2783,CUB,,CLC Cienfuegos R,u,Cienfuegos (cf),22.15,-80.433333,,1,,7873,282,136,,????-????,1234567,,,19900442,,, +2783,CHN,,XSJ Zhanjiang R,u,Zhanjiang (GD),21.2,110.4,,1,,9068,66,144,,????-????,1234567,,,19900399,,, +2787,F,,FUE Marine Nationale,r,Brest (29),48.4,-4.483333,,1,,876,246,66,,????-????,1234567,,,19900524,,, +2789,S,,SAA Stockholm R,u,Karlskrona (bl),56.166667,15.583333,,1,,748,49,64,,????-????,1234567,,,19901376,,, +2789,F,,FUE Marine Nationale,r,Brest (29),48.4,-4.483333,,1,,876,246,66,,????-????,1234567,,,19900525,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,0133-0148,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,0333-0348,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,0733-0748,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,0833-0848,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,1233-1248,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,1333-1348,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,1633-1648,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,1933-1948,1234567,,,4000031,,, +2789,I,,IDF Messina R,u,Messina (me),38.183333,15.566667,,1,,1704,152,74,,2033-2048,1234567,,,4000031,,, +2790,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900083,,, +2792,AUS,,Challis Venture Storage Terminal,u,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900222,,, +2794,CUB,,Baracoa R,u,Baracoa (gu),20.35,-74.5,,1,,7624,276,133,,????-????,1234567,,,19900439,,, +2794.4,USA,,Friday Harbour Sail Mail,p,Friday Harbor (WA),48.533333,-123.016667,,1,,7844,327,135,,????-????,1234567,-2794.4,,19901518,,, +2795,EST,,ESA Tallinn R,4,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,????-????,1234567,,,19900520,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,0730-0745,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,0903-0918,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,1533-1548,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,1733-1800,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,2133-2148,1234567,,,3400021,,, +2799,GRC,,SVH Iraklion Kritis R,u,Iraklion (krt-ira),35.322222,25.748611,,1,,2413,133,81,,2333-2358,1234567,,,3400021,,, +2800,GEO,,Georgia MRCC,u,-,42.6,43.5,,1,,2949,96,86,,????-????,1234567,,,19900589,,, +2800,ISR,,4XZ Israeli Navy,c,Haifa/Israeli Navy (haf),32.816667,34.983333,,1,,3140,122,88,,????-????,1234567,,,19900853,,, +2800.4,USA,,San Luis Obispo Sail Mail,p,San Luis Obispo (CA),35.283333,-120.666667,,1,,9025,319,144,,????-????,1234567,-2800.4,,19901558,,, +2805,UKR,,UTT Odesa R,u,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,????-????,1234567,,,19901470,,, +2805,UKR,,Mariupol' R,u,Mariupol' (DO),47.1,37.55,,1,,2293,92,80,,????-????,1234567,,,19901465,,, +2805,RUS,,UWT Taganrog R,u,Taganrog (RO),47.216667,38.916667,,1,,2381,90,81,,????-????,1234567,,,19901366,,, +2805,GUI,,3XC6 Conakry R,u,Conakry (cnk),9.508333,-13.711111,,1,,5075,208,108,,????-????,1234567,,,19900631,,, +2805,MEX,,XFL Mazatln R,u,Mazatln (sin),23.216667,-106.416667,,1,,9420,302,145,,????-????,1234567,,,19901088,,, +2806,I,,IGJ41 Marina Militare,r,Augusta (sr),37.216667,15.216667,,1,,1793,154,75,,????-????,1234567,,,19900662,,, +2807.8,USA,,South Daytona Florida Sail Mail,p,South Daytona (FL),29.166667,-81,,1,,7324,287,130,,????-????,1234567,-2807.8,,19901565,,, +2813,JOR,,Aqaba R,u,Aqaba (aqb),29.530556,35,,1,,3434,126,91,,????-????,1234567,,,19900934,,, +2813.3,G,,MTI Royal Navy Plymouth,r,Plymouth (EN-DVN),50.4,-4.133333,,1,,757,260,65,,????-????,1234567,-2813.3,,19900563,,, +2813.3,G,,MTI Royal Navy Plymouth,u,Plymouth (EN-DVN),50.4,-4.133333,,1,,757,260,65,,????-????,1234567,-2813.3,,19900564,,, +2813.9,G,,MTI Royal Navy Plymouth,r,Plymouth (EN-DVN),50.4,-4.133333,,1,,757,260,65,,????-????,1234567,-2813.9,,19900565,,, +2813.9,G,,MTI Royal Navy Plymouth,u,Plymouth (EN-DVN),50.4,-4.133333,,1,,757,260,65,,????-????,1234567,-2813.9,,19900566,,, +2815,B,,Terminal de Petrleo Tramanda,u,Tramanda (RS),-29.966667,-50.133333,,1,,10651,227,149,,????-????,1234567,,,19900241,,, +2816,LBY,,5AB Benghazi R,u,Benghazi (bga),32.116667,20.066667,,1,,2483,148,82,,????-????,1234567,,,19901018,,, +2816,MHL,,KUP65 Majuro R,u,Majuro,7.084722,171.366944,,1,,13279,17,158,,????-????,1234567,,,19901096,,, +2817.5,LTU,,Klaipėda R,2,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,-2817.5,,19901026,,, +2818,SUR,,PZN Paramaribo R,u,Paramaribo (pmb),5.866667,-55.166667,,1,,7583,250,133,,????-????,1234567,,,19901391,,, +2820,CNR,,EAL Las Palmas R,u,Maspalomas (LPM-GC),27.758522,-15.605361,,1,,3267,223,90,,????-????,1234567,,,19900417,,, +2820,CHN,,XSK4 Haimen R,u,Haimen,23.2,116.616667,,1,,9267,60,145,,????-????,1234567,,,19900384,,, +2822,BAH,,C6N2 Nassau R,u,Nassau (npr),25.05,-77.333333,,1,,7422,281,131,,????-????,1234567,,,19900248,,, +2824,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,????-????,1234567,,,3800014,,, +2824,EGY,,Abu Tig Marina Sail Mail,p,El Gouna/Abu Tig Marina (bar),27.409722,33.675,,1,,3560,130,93,,????-????,1234567,,,19900499,,, +2824,AUS,,VZX Penta Comstat Firefly R,p,-,-26.5,136.5,,1,,15002,75,164,,????-????,1234567,,,19900223,,, +2828.5,CHL,,CEV773 Los Lagos Sail Mail,p,Los Lagos,-39.85,-72.833333,,1,,12753,236,156,,????-????,1234567,-2828.5,,19900345,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,0033-0048,1234567,,,3400022,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,0730-0745,1234567,,,3400022,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,0903-0918,1234567,,,3400022,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,1533-1548,1234567,,,3400022,,, +2830,GRC,,SVK Kerkyra R,u,Kerkyra (ion-ker),39.616667,19.916667,,1,,1733,138,74,,2133-2148,1234567,,,3400022,,, +2830,ATA,,HF Frequency Pool S-098 (SOAR),u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900105,,, +2841,E,,EBA Madrid Naval,c,Madrid (MAD-M),40.4,-3.683333,,1,,1513,215,72,,????-????,1234567,,,19900496,,, +2843,MDR,,CUB Madeira R,u,Funchal (md),32.641944,-16.9175,,1,,2865,230,86,,????-????,1234567,,,19901079,,, +2845,HOL,,PBB Koninklijke Marine,r,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,,,19900646,,, +2850,KRE,ko,KCBS Chosun Jungang Pangsong,,Pyongyang (pyo),39.153611,125.751389,,50,ND,8299,45,123,,2000-1800,1234567,,,50013416,,, +2857.5,DNK,,OUA32 Kongelige Danske Marine,c,-,56.3,11.6,,1,,575,34,63,,????-????,1234567,-2857.5,,19900492,,, +2863,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:10-:14,1234567,,,31400001,,, +2863,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:40-:44,1234567,,,31400001,,, +2863,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:15-:18,1234567,,,33800002,,, +2863,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:45-:48,1234567,,,33800002,,, +2863,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:25-:39,1234567,,,20000093,,, +2863,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:55-:09,1234567,,,20000093,,, +2869,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:00-:04,1234567,,,6700025,,, +2869,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:30-:34,1234567,,,6700025,,, +2869,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:15-:19,1234567,,,6700033,,, +2869,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:45-:49,1234567,,,6700033,,, +2869,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:05-:09,1234567,,,6700029,,, +2869,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:35-:39,1234567,,,6700029,,, +2869,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:20-:24,1234567,,,6700018,,, +2869,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:50-:54,1234567,,,6700018,,, +2869,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:10-:14,1234567,,,6700021,,, +2869,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:40-:44,1234567,,,6700021,,, +2869,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012424,,, +2869,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,0400-1800,1234567,,,20012447,,, +2872,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,2000-0900,1234567,,,4100019,,, +2872,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,2100-1000,1234567,,,4200005,,, +2872,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109254,,, +2872,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200024,,, +2878,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700097,,, +2878,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100001,,, +2878,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500002,,, +2881,ARG,es,Ezeiza Volmet,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,:15-:25,1234567,,,33000042,,, +2887,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2030-0830,1234567,,,20012408,,, +2887,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400004,,, +2887,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902900,,, +2899,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,2000-0900,1234567,,,4100016,,, +2899,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,2100-1000,1234567,,,4200002,,, +2899,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109255,,, +2899,INS,id,RPDT2 Ngada,,Bajawa (NT-nga),-8.783333,120.983333,,0.5,,12442,76,158,,1000-1355,1234567,,,35400021,,, +2905,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500003,,, +2905,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700098,,, +2909,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100011,,, +2910,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400005,,, +2922,ISR,,4XZ Israeli Navy,c,Tel Aviv/Israeli Navy (tav),32.066667,34.766667,,1,,3193,123,89,,????-????,1234567,,,19900857,,, +2932,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,0800-2000,1234567,,,20012445,,, +2941,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:05-:09,1234567,,,6700013,,, +2941,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:35-:39,1234567,,,6700013,,, +2941,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:25-:29,1234567,,,6700037,,, +2941,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:55-:59,1234567,,,6700037,,, +2944,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100010,,, +2944,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500020,,, +2960,INS,id,RPDT 2 Manggarai,,Ruteng (NT-man),-8.666667,120.45,,0.3,,12397,76,160,,0900-1400,1234567,,,40000022,,, +2960,INS,id,RPDT 2 Manggarai,,Ruteng (NT-man),-8.666667,120.45,,0.3,,12397,76,160,,2130-2300,1234567,,,40000022,,, +2962,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,0000-0800,1234567,,,700005,,, +2962,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2030-0830,1234567,,,20012391,,, +2965,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,1515-0120,1234567,,,31500006,,, +2965,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:16-:19,1234567,,,31500006,,, +2965,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:46-:49,1234567,,,31500006,,, +2965,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:25-:29,1234567,,,32200003,,, +2965,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:55-:59,1234567,,,32200003,,, +2965,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,1305-0240,1234567,,,32200006,,, +2965,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:05-:09,1234567,,,32200006,,, +2965,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:35-:39,1234567,,,32200006,,, +2965,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1210-2245,1234567,,,32900003,,, +2965,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:10-:15,1234567,,,32900003,,, +2965,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:40-:45,1234567,,,32900003,,, +2971,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0100-0800,1234567,,,4100026,,, +2971,NOR,en,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,1600-0800,1234567,,,6300017,,, +2971,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,2100-1000,1234567,,,4200006,,, +2971,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109267,,, +2983,NOR,,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,,,,,6300022,,, +2983,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500008,,, +2986,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900003,,, +2992,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900011,,, +2998,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,1000-2200,1234567,,,20012444,,, +2998,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012497,,, +3000,ATA,,DGPS Corrections,,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900106,,, +3007,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,????-????,1234567,,,32500037,,, +3011,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901038,,, +3016,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,2000-0900,1234567,,,4100017,,, +3016,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,2100-0800,1234567,,,700004,,, +3016,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109266,,, +3016,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2030-0830,1234567,,,20012388,,, +3016,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300010,,, +3023,HOL,,Den Helder SAR,u,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,,,19900647,,, +3023,IRL,en,Shanwick SAR,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,????-????,1234567,,,4100035,,, +3023,G,,United Kingdom Coastguard,u,-,55.55,-2.65,,1,,706,306,64,,????-????,1234567,,,19900582,,, +3023,NOR,,Bod SAR,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,????-????,1234567,,,6300026,,, +3023,MLA,,9MG25 Pinang R,u,Pulau Pinang (ppn),5.419444,100.341667,,1,,9800,84,146,,????-????,1234567,,,19901097,,, +3023,URG,,CWM30,u,-,-32.5,-55.71,,1,,11172,229,151,,????-????,1234567,,,19901495,,, +3023,FJI,,Nadi SAR,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,????-????,1234567,,,22500011,,, +3023,ATA,,VLV,u,Mawson Station [AUS] (aat),-67.602222,62.875003,,1,,14110,157,161,,????-????,1234567,,,19900099,,, +3023,ATA,,VNJ,u,Casey Station [AUS] (aat),-66.282494,110.526439,,1,,15736,141,166,,????-????,1234567,,,19900088,,, +3023,AUS,,VJM,u,Macquarie Island (TAS),-54.49655,158.941783,,1,,18183,109,174,,????-????,1234567,,,19900169,,, +3024,DNK,,RCC Karup,u,Karup (mjy),56.308333,9.169444,,1,,500,20,62,,????-????,1234567,,,19900486,,, +3025.6,KRE,ko,Chonyon Chobyong Durulwihan Pangsong,,Pyongyang (pyo),39.046706,125.694311,,15,,8306,45,128,,0830-1030,1234567,-3025.6,,40000023,,, +3025.6,KRE,ko,Chonyon Chobyong Durulwihan Pangsong,,Pyongyang (pyo),39.046706,125.694311,,15,,8306,45,128,,2030-2330,1234567,-3025.6,,40000023,,, +3031,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901039,,, +3046,RUS,,Krasnoyarsk Aero,u,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700107,,, +3054,DNK,,RCC Karup,u,Karup (mjy),56.308333,9.169444,,1,,500,20,62,,????-????,1234567,,,19900487,,, +3102,ATA,,NGD McMurdo Station Air to Ship,u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900107,,, +3107,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900875,,, +3111,LVA,,Latvijas Krasta Apsardzes,u,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,,,19901047,,, +3116,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:00-:04,1234567,,,6700042,,, +3116,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:30-:34,1234567,,,6700042,,, +3116,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:25-:29,1234567,,,6700058,,, +3116,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:55-:59,1234567,,,6700058,,, +3116,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:10-:14,1234567,,,6700046,,, +3116,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:40-:44,1234567,,,6700046,,, +3116,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:20-:24,1234567,,,6700054,,, +3116,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:50-:54,1234567,,,6700054,,, +3116,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:15-:19,1234567,,,6700050,,, +3116,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:45-:49,1234567,,,6700050,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0000-0010,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0035-0040,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0335-0340,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0635-0640,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0805-0815,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,0935-0940,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1235-1240,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1305-1315,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1535-1540,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1805-1815,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,1835-1840,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,2135-2140,1234567,,,3500005,,, +3125,GRL,,OYR Aasiaat R,u,Sisimiut (qqa-sis),66.934889,-53.698792,,1,,3583,320,93,,2305-2315,1234567,,,3500005,,, +3128,HOL,,PBV Koninklijke Marine,r,Valkenburg (lim),50.866667,5.833333,,1,,144,196,56,,????-????,1234567,,,19900652,,, +3160,UKR,,Sevastopol' R 3,u,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901477,,, +3160,RUS,,UGH2 Yuzhno-Sakhalinsk R,c,Yuzhno-Sakhalinsk (SL),46.966667,142.733333,,1,,8241,29,139,,????-????,1234567,,,19901374,,, +3160,RUS,,RSSZ/UNB4,c,Korsakov (SL),46.633333,142.783333,,1,,8276,29,140,,????-????,1234567,,,19901346,,, +3162,SHN,,ZHH Saint Helena R,u,Jamestown (shl),-15.919444,-5.716667,,1,,7655,193,134,,????-????,1234567,,,19901382,,, +3164,USA,,Seawave Communications,p,Burrillville (RI),41.916667,-71.716667,,1,,5737,292,114,,????-????,1234567,,,19901505,,, +3165,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1250-1300,1234567,,,33400002,,, +3165,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1850-1900,1234567,,,33400002,,, +3165,RUS,,UFL Vladivostok R,r,Vladivostok (PM),43.133333,131.9,,1,,8204,38,139,,????-????,1234567,,,19901371,,, +3172.5,I,,Roma Metro,r,Roma (rm),41.9,12.483333,,1,,1224,156,69,,????-????,1234567,-3172.5,,19900675,,, +3172.6,PRU,,R Municipal Marcawana,,Panao (huc),-9.9,-75.95,,1,,10360,258,148,,0900-1300,1234567,-3172.6,,40000024,,, +3175,GRL,,OZW Qaanaaq R,u,Qaanaaq=Thule (qaa-qaq),77.468697,-69.209778,,1,,4063,339,98,,????-????,1234567,,,3500015,,, +3175,ATA,,VLV,u,Mawson Station [AUS] (aat),-67.602222,62.875003,,1,,14110,157,161,,????-????,1234567,,,19900100,,, +3175,ATA,,VLZ,u,Davis Station [AUS] (aat),-68.577392,77.982811,,1,,14632,152,162,,????-????,1234567,,,19900092,,, +3175,ATA,,VNJ,u,Casey Station [AUS] (aat),-66.282494,110.526439,,1,,15736,141,166,,????-????,1234567,,,19900089,,, +3175,AUS,,VJM,u,Macquarie Island (TAS),-54.49655,158.941783,,1,,18183,109,174,,????-????,1234567,,,19900170,,, +3180,INS,,Sabang R,u,Sabang (AC-sab),5.9,95.316667,,1,,9416,87,145,,????-????,1234567,,,19900771,,, +3180,INS,,PKB29 Gunungsitoli R,u,Gunungsitoli (SU-nia),1.283333,97.616667,,1,,9977,88,147,,????-????,1234567,,,19900730,,, +3180,INS,,PKB30 Lahewa R,u,Lahewa (SU),1.4,97.183333,,1,,9937,89,147,,????-????,1234567,,,19900742,,, +3180,INS,,Sibolga R,u,Sibolga (SU-sib),1.75,98.8,,1,,10017,87,147,,????-????,1234567,,,19900782,,, +3180,INS,,Teluk Dalam R,u,Teluk Dalam (SU),0.566667,97.816667,,1,,10054,89,147,,????-????,1234567,,,19900792,,, +3180,INS,,PKP38 Batu Ampar R,u,Batu Ampar (KR-bat),1.166667,104.025,,1,,10424,83,148,,????-????,1234567,,,19900708,,, +3180,INS,,Pulau Sambu R,u,Pulau Sambu (KR-bat),1.141667,103.922222,,1,,10419,83,148,,????-????,1234567,,,19900762,,, +3180,INS,,Selat Panjang R,u,Selat Panjang,1,102.716667,,1,,10350,84,148,,????-????,1234567,,,19900776,,, +3180,INS,,Tanjung Balai Karimum R,u,Tanjung Balai Karimum (KR-kar),0.994444,103.413889,,1,,10398,84,148,,????-????,1234567,,,19900799,,, +3180,INS,,Tanjung Uban R,u,Tanjung Uban (KR-tjp),1.066667,104.216667,,1,,10446,83,148,,????-????,1234567,,,19900800,,, +3180,INS,,Dabo Singkep R,u,Dabo Singkep (KR-lin),-0.575,104.441667,,1,,10606,84,149,,????-????,1234567,,,19900724,,, +3180,INS,,PKC3 Jambi R,u,Jambi (JA-jam),-1.6,103.616667,,1,,10640,85,149,,????-????,1234567,,,19900734,,, +3180,INS,,PKC53 Bengkulu R,u,Bengkulu (BE-bku),-3.8,102.266667,,1,,10741,88,149,,????-????,1234567,,,19900711,,, +3180,INS,,Rengat R,u,Rengat,-0.4,102.55,,1,,10462,85,149,,????-????,1234567,,,19900769,,, +3180,INS,,Tanjung Pinang R,u,Tanjung Pinang (KR-tjp),0.916667,104.45,,1,,10475,83,149,,????-????,1234567,,,19900787,,, +3180,INS,,Tembilahan R,u,Tembilahan,-0.316667,103.15,,1,,10495,85,149,,????-????,1234567,,,19900793,,, +3180,INS,,Pontianak R,u,Pontianak (KB-ptk),-0.033333,109.333333,,1,,10888,80,150,,????-????,1234567,,,19900765,,, +3180,INS,,PKZ34 Cigading R,u,Cilegon (BT-cil),-6.016667,106.041667,,1,,11192,86,151,,????-????,1234567,,,19900720,,, +3180,INS,,Sampit R,u,Sampit (KT),-2.533333,112.95,,1,,11353,78,151,,????-????,1234567,,,19900774,,, +3180,INS,,Sunda Kelapa R,u,Sunda Kelapa,-6.116667,106.8,,1,,11253,86,151,,????-????,1234567,,,19900784,,, +3180,INS,,Tarakan R,u,Tarakan (KU-tar),3.3,117.633333,,1,,11138,71,151,,????-????,1234567,,,19900788,,, +3180,INS,,Teluk Bayur R,u,Teluk Bayur,2.15,117.4,,1,,11227,72,151,,????-????,1234567,,,19900791,,, +3180,INS,,PKG Banjarmasin R,u,Banjarmasin (KS-kbm),-3.333333,114.583333,,1,,11533,78,152,,????-????,1234567,,,19900707,,, +3180,INS,,PKR3 Cilacap R,u,Cilacap (JT-cil),-7.733333,109,,1,,11544,85,152,,????-????,1234567,,,19900721,,, +3180,INS,,PKZ2 Cirebon R,u,Cirebon (JB-cir),-6.733333,108.566667,,1,,11427,85,152,,????-????,1234567,,,19900723,,, +3180,INS,,Samarinda R,u,Samarinda (KI-sam),-0.5,117.15,,1,,11449,74,152,,????-????,1234567,,,19900773,,, +3180,INS,,Semarang R,u,Semarang (JT-kse),-6.966667,110.416667,,1,,11573,83,152,,????-????,1234567,,,19900778,,, +3180,INS,,Tegal R,u,Tegal (JT-kte),-6.866667,109.133333,,1,,11477,84,152,,????-????,1234567,,,19900789,,, +3180,INS,,Toli-Toli R,u,Toli-Toli (ST-tol),1.05,120.816667,,1,,11547,70,152,,????-????,1234567,,,19900795,,, +3180,INS,,Manado R,u,Manado (SA-man),1.5,124.85,,1,,11761,66,153,,????-????,1234567,,,19900752,,, +3180,INS,,Meneng R,u,Ketapang (JI-ban),-8.125833,114.39775,,1,,11944,81,153,,????-????,1234567,,,19900754,,, +3180,INS,,Parigi R,u,Parigi (ST),-0.816667,120.183333,,1,,11675,71,153,,????-????,1234567,,,19900761,,, +3180,INS,,PKF25 Banabungi R,u,Banabungi (SN-waj),-5.504167,122.519444,,1,,12250,72,154,,????-????,1234567,,,19900705,,, +3180,INS,,PKF3 Kendari R,u,Kendari (SG-ken),-3.95,122.5,,1,,12108,71,154,,????-????,1234567,,,19900739,,, +3180,INS,,Ternate R,u,Ternate (MU-ter),0.8,127.4,,1,,11983,64,154,,????-????,1234567,,,19900794,,, +3180,INS,,Manokwari R,u,Manokwari (PB-man),-0.866667,134.083333,,1,,12541,59,155,,????-????,1234567,,,19900748,,, +3180,INS,,Sorong R,u,Sorong (PB-srg),-0.883333,131.25,,1,,12374,62,155,,????-????,1234567,,,19900775,,, +3180,INS,,Serui R,u,Serui (PA-yap),-1.883333,136.233333,,1,,12762,58,156,,????-????,1234567,,,19900779,,, +3180,INS,,Merauke R,u,Merauke (PA-mer),-8.461111,140.333333,,1,,13623,58,159,,????-????,1234567,,,19900749,,, +3185,USA,en,Overcomer Ministry,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,,0000-1200,1234567,,,20016302,,, +3185,USA,,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,1,,7115,295,128,NAm,0000-1300,1234567,,,50022258,,, +3185,USA,,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,1,,7115,295,128,NAm,2245-1300,1234567,,,50022258,,, +3190,UKR,,Mariupol' R,c,Mariupol' (DO),47.1,37.55,,1,,2293,92,80,,????-????,1234567,,,19901466,,, +3192,RUS,,RMP CIS Baltic Fleet,c,Kaliningrad (KA),54.716667,20.5,,1,,976,67,67,,????-????,1234567,,,19901339,,, +3192,NZL,,Royal New Zealand Navy,u,Auckland (AUK),-36.866667,174.766667,,1,,18090,33,174,,????-????,1234567,,,19901160,,, +3192,NZL,,Royal New Zealand Navy,u,Irirangi,-39.533333,175.666667,,1,,18391,35,175,,????-????,1234567,,,19901183,,, +3195,USA,,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,0200-0500,1234567,,,50017601,,, +3195,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900084,,, +3200,SWZ,Nda,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,,1645-1700,1234567,,,50010798,,, +3200,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,,0400-0430,12345..,,,50010798,,, +3200,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0400-0430,1234567,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,9,1745-2000,12345..,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0255-0325,......7,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,1745-2045,1234567,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,9,9062,157,127,,1700-2030,.....67,,,50010798,,, +3200,SWZ,nd,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0255-0310,.....6.,,,50010798,,, +3200,SWZ,nd,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0255-0325,12345..,,,50010798,,, +3200,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,25,233,9062,157,130,,0400-0500,.....67,,,50010798,,, +3200,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,25,233,9062,157,130,SAf,0430-0500,.....67,,,50010798,,, +3200,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,25,233,9062,157,130,SAf,0430-0500,12345..,,,50010798,,, +3202,IRN,,EQM Bushehr R,u,Bushehr (bus),28.962225,50.822794,,1,,4448,108,101,,????-????,1234567,,,19900813,,, +3205,PNG,,NBC Kundu-R Sandaun,,Vanimo (san),-2.666667,141.333333,,10,,13124,53,147,,0700-1300,1234567,97,,40000026,,, +3205,PNG,,NBC Kundu-R Sandaun,,Vanimo (san),-2.666667,141.333333,,10,,13124,53,147,,1900-2200,1234567,97,,40000026,,, +3208,ATA,,HF Frequency Pool S-098 (SOAR),u,McMurdo Station [USA] (rdp),-77.845903,166.709697,,1,,17044,171,170,,????-????,1234567,,,19900108,,, +3210,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901027,,, +3210,RUS,,UDJ Mezen R,u,Mezen,65.85,44.233333,,1,,2588,39,83,,????-????,1234567,,,19901351,,, +3210,AUS,en,Vintage FM,,Razorback (NSW),-33.466667,138.95,,0.25,,15724,80,172,,,,,,37700162,,, +3215,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901028,,, +3215,USA,,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,2100-0100,1234567,,,50011355,,, +3215,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,46,7122,296,108,NAm,0200-1100,1234567,,,50009581,,, +3215,USA,en,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,0030-0100,1234567,,,50011355,,, +3215,USA,en,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,0100-0200,1234567,,,50011355,,, +3215,MDG,mg,Adventist World R,,Talata-Volonondry (tan),-18.751667,47.614444,,50,20,8830,141,126,EAf,0230-0330,1234567,,,50010137,,, +3216,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901040,,, +3220,KRE,ko,KCBS Chosun Jungang Pangsong,,Hamhung (han),39.9,127.583333,,5,ND,8316,43,133,,2000-1800,1234567,86,,50015961,,, +3220,PNG,,NBC R Morobe,,Lae/Bubia (mrb),-6.675872,146.907383,,10,25,13813,50,150,,0700-1300,1234567,,,40000033,,, +3220,PNG,,NBC R Morobe,,Lae/Bubia (mrb),-6.675872,146.907383,,10,25,13813,50,150,,1900-2200,1234567,,,40000033,,, +3222,UKR,,RCV Black Sea Fleet HQ,c,Sevastopol' (KR),44.6,33.533333,,1,,2155,102,79,,????-????,1234567,,,19901478,,, +3230,DNK,,OVF Kongelige Danske Marine,u,Stevns (sjl),55.322222,12.445833,,1,,534,46,62,,????-????,1234567,,,19900491,,, +3230,DNK,,OVK Kongelige Danske Marine,u,Aarhus (arh),56.15,10.216667,,1,,513,27,62,,????-????,1234567,,,19900481,,, +3230,DNK,,OVG Kongelige Danske Marine,u,Frederikshavn (njy),57.445833,10.55,,1,,650,22,63,,????-????,1234567,,,19900484,,, +3230,EST,,ESP Prnu R,u,Prnu (Pae),58.375,24.516667,,1,,1336,52,70,,????-????,1234567,,,19900517,,, +3232,INS,id,RRI Pro-1,,Bukittinggi (SB-buk),-0.416667,100.466667,,2.5,,10321,87,144,,1030-1700,1234567,,,40000038,,, +3232,INS,id,RRI Pro-1,,Bukittinggi (SB-buk),-0.416667,100.466667,,2.5,,10321,87,144,,2200-0300,1234567,,,40000038,,, +3234.9,PRU,,OAW3A R Luz y Sonido,,Hunuco (huc),-9.916667,-76.183333,,1,,10377,258,148,,0900-0300,123456,-3234.9,,40000039,,, +3235,PNG,,NBC R West New Britain,,Kimbe (wnb),-5.555017,150.160428,,10,,13867,46,150,,0700-1300,1234567,,,40000040,,, +3235,PNG,,NBC R West New Britain,,Kimbe (wnb),-5.555017,150.160428,,10,,13867,46,150,,1900-2200,1234567,,,40000040,,, +3240,SWZ,NDA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,ZWE,0325-0340,1234567,,,50010799,,, +3240,SWZ,sn,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,ZWE,0255-0325,1234567,,,50010799,,, +3241,CHN,,BDF2,f,Shanghai (SH),31.216667,121.45,,1,,8811,52,143,,????-????,1234567,,,19900392,,, +3247,ATA,,Ship Tactical,u,-,-70,0,,1,,13588,183,159,,????-????,1234567,,,19900121,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0945-1000,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1045-1100,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1145-1200,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1245-1300,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1345-1400,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1445-1500,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1545-1600,1234567,-3247.4,,19901164,,, +3247.4,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1645-1700,1234567,-3247.4,,19901164,,, +3250,GRL,,OZW Qaanaaq R,u,Qaanaaq=Thule (qaa-qaq),77.468697,-69.209778,,1,,4063,339,98,,????-????,1234567,,,3500016,,, +3250,KRE,de,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,1600-1700,1234567,,,50007357,,, +3250,KRE,en,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,0400-0500,1234567,,,50007357,,, +3250,KRE,en,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,0600-0700,1234567,,,50007357,,, +3250,KRE,ja,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,J,0700-1300,1234567,,,50007357,,, +3250,KRE,ja,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,J,2100-2400,1234567,,,50007357,,, +3250,KRE,ko,KCBS Pyongyang Pangsong,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,1800-2000,1234567,,,50007357,,, +3250,KRE,ko,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,0300-0400,1234567,,,50007357,,, +3250,KRE,ko,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,ND,8299,45,120,,1300-1400,1234567,,,50007357,,, +3250,KRE,ko,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,ND,8299,45,120,,2000-2100,1234567,,,50007357,,, +3250,KRE,ru,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,1400-1600,1234567,,,50007357,,, +3250,KRE,ru,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,1700-1800,1234567,,,50007357,,, +3250,KRE,zh,KCBS Voice of Korea,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,,0500-0600,1234567,,,50007357,,, +3250.01,HND,es,HRCP R Luz y Vida,,San Lus Pajon (bar),15.083333,-88.383333,,1,,9011,283,144,,1100-1600,1234567,1,,40000044,,, +3251.1,CAN,,VFF Iqaluit Coastguard,f,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,2100-2330,9999999,-3251.1,,19900288,,, +3251.1,CAN,,VFR Resolute Coastguard,f,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,0010-0900,9999999,-3251.1,,19900295,,, +3255,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,SAf,0500-0600,1234567,,,50009582,,, +3255,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,SAf,1600-2000,1234567,,,50009582,,, +3260,PNG,,NBC R Madang,,Madang (ehd),-5.218889,145.806111,,10,,13613,50,149,,0700-1400,1234567,995,,40000048,,, +3260,PNG,,NBC R Madang,,Madang (ehd),-5.218889,145.806111,,10,,13613,50,149,,1900-2200,1234567,995,,40000048,,, +3260,EQA,es,La Voz del Carrizal,,Calceta (man),-0.85,-80.166667,,0.3,,9849,267,152,,1130-0400,1234567,,,32600004,,, +3264.4,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,1900-2400,1234567,-3264.4,,6800018,,, +3275,PNG,,NBC R.Southern Highlands,,Mendi (shd),-6.166667,143.666667,,10,,13590,53,149,,0700-1300,1234567,992,,40000053,,, +3275,PNG,,NBC R.Southern Highlands,,Mendi (shd),-6.166667,143.666667,,10,,13590,53,149,,1900-2200,1234567,992,,40000053,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0000-0010,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0035-0040,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0335-0340,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0635-0640,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0805-0815,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,0935-0940,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1235-1240,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1305-1315,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1535-1540,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1805-1815,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,1835-1840,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,2135-2140,1234567,,,3500007,,, +3276,GRL,,OYR Aasiaat R,u,Upernavik (qaa-upk),72.793383,-56.143164,,1,,3682,331,94,,2305-2315,1234567,,,3500007,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0000-0010,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0035-0040,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0335-0340,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0635-0640,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0805-0815,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,0935-0940,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1235-1240,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1305-1315,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1535-1540,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1805-1815,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,1835-1840,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,2135-2140,1234567,,,3500006,,, +3280,GRL,,OYR Aasiaat R,u,Uummannaq (qaa-umq),70.676944,-52.130083,,1,,3525,328,92,,2305-2315,1234567,,,3500006,,, +3280,UZB,,Toshkent 2,f,Toshkent (tkt),41.316667,69.25,,1,,4779,79,105,,????-????,1234567,,,19901611,,, +3280,EQA,es,HCVN7 La Voz del Napo,,Tena (nap),-1,-77.8,,2.5,,9701,265,142,,0700-1230,1234567,9,,40000054,,, +3280,EQA,es,HCVN7 La Voz del Napo,,Tena (nap),-1,-77.8,,2.5,,9701,265,142,,2200-0500,1234567,9,,40000054,,, +3280,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900085,,, +3280.5,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,????-????,1234567,-3280.5,,19900562,,, +3282,CLM,,HKC Buenaventura R,u,Buenaventura (val),3.9,-77.066667,,1,,9220,267,144,,????-????,1234567,,,19900413,,, +3287.7,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,10,,8843,141,133,,0300-0500,1234567,-3287.7,,40000057,,, +3287.7,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,10,,8843,141,133,,1500-1900,1234567,-3287.7,,40000057,,, +3287.7,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,10,,8843,141,133,,1900-2100,1.....7,-3287.7,,40000057,,, +3290,GUY,en,BBC WS,,Vreed en Hoop (dem),6.766583,-58.231539,,5,,7701,254,127,GUY,0400-0800,1234567,,,50010138,,, +3290,GUY,en,NCN Voice of Guyana/BBC WS,,Vreed en Hoop (dem),6.766583,-58.231539,,5,,7701,254,127,,2200-0400,1234567,99,,40000060,,, +3290,EQA,es,R Centro Ambato,,Ambato (tun),-1.25,-78.616667,,0.5,,9778,265,149,,0800-0400,1234567,,,32600005,,, +3290,PNG,,NBC Karai National R,,Port Moresby/Waigani (ncd),-9.429167,147.183611,,10,25,14096,51,151,,0700-1300,1234567,998,,40000059,,, +3290,PNG,,NBC Karai National R,,Port Moresby/Waigani (ncd),-9.429167,147.183611,,10,25,14096,51,151,,1900-2200,1234567,998,,40000059,,, +3291,ISR,he,GalGalatz,u,unknown,31.5,34.75,,1,,3243,124,89,,,,,,4300014,,, +3303,CHN,zh,Zhoushan Maritime Meteo,u,Putuoshanzhen (ZJ),29.980556,122.386111,,1,,8975,52,144,,0000-0005,1234567,,,36201273,,, +3303,CHN,zh,Zhoushan Maritime Meteo,u,Putuoshanzhen (ZJ),29.980556,122.386111,,1,,8975,52,144,,0300-0305,1234567,,,36201273,,, +3303,CHN,zh,Zhoushan Maritime Meteo,u,Putuoshanzhen (ZJ),29.980556,122.386111,,1,,8975,52,144,,1100-1105,1234567,,,36201273,,, +3305,PNG,,NBC R Western,,Daru (wes),-9.066667,143.2,,10,,13844,55,150,,0700-1300,1234567,97,,40000062,,, +3305,PNG,,NBC R Western,,Daru (wes),-9.066667,143.2,,10,,13844,55,150,,1900-2200,1234567,97,,40000062,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,0233-0243,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,0633-0643,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,1033-1043,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,1433-1443,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,1833-1843,1234567,,,2400003,,, +3310,EST,,ESA Tallinn R,u,Suurupi (Har),59.4644,24.357294,,1,,1381,47,71,,2233-2243,1234567,,,2400003,,, +3310,EST,,Tallinn-Kopli MRSCC,u,Tallinn/Kopli (Har),59.463889,24.656944,,1,,1396,47,71,,????-????,1234567,,,19900521,,, +3310,UKR,,UTT Odesa R,u,Odesa (OD),46.377611,30.748222,,1,,1868,100,76,,0000-0100,1234567,,,8100014,,, +3310,BOL,qu,R Mosoj Chaski,,Cochabamba (cbb),-17.366667,-66.166667,,10,,10390,246,138,,0830-1300,1234567,97,,40000064,,, +3310,BOL,qu,R Mosoj Chaski,,Cochabamba (cbb),-17.366667,-66.166667,,10,,10390,246,138,,2100-0130,1234567,97,,40000064,,, +3315,PNG,,NBC Karai-R Manus,,Lorengau (mns),-2.028056,147.279444,,10,,13373,47,148,,0700-1300,1234567,997,,40000065,,, +3315,PNG,,NBC Karai-R Manus,,Lorengau (mns),-2.028056,147.279444,,10,,13373,47,148,,1900-2200,1234567,997,,40000065,,, +3317,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,????-????,1234567,,,2500020,,, +3319,ATA,,Ship Tactical,u,-,-70,0,,1,,13588,183,159,,????-????,1234567,,,19900122,,, +3319.7,KRE,ko,KCBS Pyongyang Pangsong,,Pyongyang (pyo),39.046706,125.694311,,50,,8306,45,123,,2100-1900,1234567,-3319.7,,40000066,,, +3320,AFS,af,SABC R Sonder Grense,,Meyerton (SABC) (GT),-26.600933,28.140833,,100,275,9005,160,124,,1700-0500,1234567,996,,40000067,,, +3325,B,pt,ZYG867 Rdio Mundial,,Guarulhos (SP),-23.433333,-46.416667,,2.5,,9838,227,142,,0600-2359,1234567,,,40000071,,, +3325,INS,id,RRI Pro-1,,Palangkaraya (KT-kpr),-2.189517,113.896383,,10,,11385,77,142,,0800-1700,1234567,999,,40000069,,, +3325,INS,id,RRI Pro-1,,Palangkaraya (KT-kpr),-2.189517,113.896383,,10,,11385,77,142,,2000-2155,9999999,999,,40000069,,, +3325,INS,id,RRI Pro-1,,Palangkaraya (KT-kpr),-2.189517,113.896383,,10,,11385,77,142,,2155-0200,1234567,999,,40000069,,, +3325,PNG,,NBC R Bougainville,,Kubu (Buka Island) (bgv),-5.402778,154.680556,,5,,14062,41,153,,0730-1200,1234567,0,,40000070,,, +3325,PNG,,NBC R Bougainville,,Kubu (Buka Island) (bgv),-5.402778,154.680556,,5,,14062,41,153,,1955-2200,1234567,0,,40000070,,, +3330,CAN,,CHU,,Ottawa (ON),45.295556,-75.757222,,3,,5749,297,110,,0000-2400,1234567,,,20100015,,, +3330,PRU,es,OAX3Q Ondas del Huallaga,,Hunuco/Moras Pampas (huc),-9.916667,-76.183333,,5,,10377,258,141,,0930-0500,1234567,5,,40000072,,, +3331,COM,,Moroni Metro,u,Moroni,-11.7,43.255556,,1,,7924,142,136,,????-????,1234567,,,19900422,,, +3335,PNG,,NBC R East Sepik,,Wewak (ese),-3.583333,143.666667,,10,,13340,51,148,,0700-1300,1234567,970,,40000073,,, +3335,PNG,,NBC R East Sepik,,Wewak (ese),-3.583333,143.666667,,10,,13340,51,148,,1900-2200,1234567,970,,40000073,,, +3340,HND,es,HRMI LV de Misiones Internacionales,,Comayagela (gra),15.2,-83.85,,1,,8697,280,143,,1200-0500,1234567,98,,40000074,,, +3345,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,0300-0400,12345..,,,50003895,,, +3345,INS,id,RRI Pro-1,,Ternate (MU-ter),0.764761,127.368739,,10,,11985,64,144,,0750-1515,1234567,873,,40000075,,, +3345,INS,id,RRI Pro-1,,Ternate (MU-ter),0.764761,127.368739,,10,,11985,64,144,,1800-0030,1234567,873,,40000075,,, +3345,PNG,,NBC R Northern,,Popondetta (nor),-8.75,148.25,,10,25,14086,50,151,,0700-1305,1234567,32,,40000077,,, +3345,PNG,,NBC R Northern,,Popondetta (nor),-8.75,148.25,,10,25,14086,50,151,,1950-2200,1234567,32,,40000077,,, +3355,B,pt,Rdio Educadora 6 de Agosto,,Xapur (AC),-10.6625,-68.488889,,2,,9936,252,144,,0930-0250,1234567,87,,40000046,,, +3355,PRU,es,OAW4Y R JPJ,,Puente Piedra/Cerro Tinaja (lim),-11.932778,-77.100111,,1,,10615,258,149,,0950-0410,1234567,,,37000053,,, +3360,CHN,zh,Maoming Maritime Meteo,u,Maoming (GD),21.498333,111.000278,,1,,9079,66,144,,0940-0945,1234567,,,36201272,,, +3365,B,pt,ZYG855 Rdio Cultura Araraquara,,Araraquara (SP),-21.819444,-48.206889,,1,,9773,229,146,,0700-0300,1234567,89,,40000084,,, +3365,PNG,,NBC R Milne Bay,,Alotau (mba),-10.3,150.466667,,10,,14352,48,151,,0730-1200,1234567,984,,40000083,,, +3365,PNG,,NBC R Milne Bay,,Alotau (mba),-10.3,150.466667,,10,,14352,48,151,,1900-2200,1234567,984,,40000083,,, +3375.1,B,pt,ZYF276 Rdio Municipal,,So Gabriel da Cachoeira (AM),-0.126678,-67.087708,,5,,8902,257,136,,0900-1300,1234567,-3375.1,,40000089,,, +3375.1,B,pt,ZYF276 Rdio Municipal,,So Gabriel da Cachoeira (AM),-0.126678,-67.087708,,5,,8902,257,136,,2100-0100,1234567,-3375.1,,40000089,,, +3375.3,PRU,es,OAW6B R San Antonio,,San Antonio de Padua de Callalli (are),-2.366667,-78.133333,,1,,9843,264,146,,1000-1400,1234567,-3375.3,,40000090,,, +3375.3,PRU,es,OAW6B R San Antonio,,San Antonio de Padua de Callalli (are),-2.366667,-78.133333,,1,,9843,264,146,,2200-0200,1234567,-3375.3,,40000090,,, +3380,EQA,es,Centro R Imbabura,,Ibarra/Los Ceibos (imb),0.35,-78.116667,,1,,9603,266,146,,1100-0100,1234567,,,32600006,,, +3381,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901041,,, +3385,PNG,,NBC R East New Britain,,Rabaul (enb),-4.211667,152.115833,,10,25,13825,43,150,,0700-1406,1234567,995,,40000093,,, +3385,PNG,,NBC R East New Britain,,Rabaul (enb),-4.211667,152.115833,,10,25,13825,43,150,,1900-2200,1234567,995,,40000093,,, +3390,G,,MGJ Royal Navy Faslane,r,Faslane/Royal Navy Base (SC-AGB),56.056067,-4.814572,,1,,852,305,66,,????-????,1234567,,,19900554,,, +3390,CAF,,R ICDI,,Boali (mpk),4.8,18.116667,,1,,5370,164,111,,1500-2105,1234567,,,9300001,,, +3407,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:05-:09,1234567,,,4500001,,, +3407,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:35-:39,1234567,,,4500001,,, +3407,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:20-:24,1234567,,,34500001,,, +3407,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:50-:54,1234567,,,34500001,,, +3407,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:10-:19,1234567,,,4500005,,, +3407,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:40-:49,1234567,,,4500005,,, +3411,LVA,,Latvijas Krasta Apsardzes,u,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,,,19901048,,, +3413,IRL,en,EIP Shannon Volmet,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100005,,, +3413,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012425,,, +3413,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012446,,, +3418,ATA,,VLV,u,Mawson Station [AUS] (aat),-67.602222,62.875003,,1,,14110,157,161,,????-????,1234567,,,19900101,,, +3418,ATA,,VLZ,u,Davis Station [AUS] (aat),-68.577392,77.982811,,1,,14632,152,162,,????-????,1234567,,,19900093,,, +3418,ATA,,VNJ,u,Casey Station [AUS] (aat),-66.282494,110.526439,,1,,15736,141,166,,????-????,1234567,,,19900090,,, +3418,AUS,,VJM,u,Macquarie Island (TAS),-54.49655,158.941783,,1,,18183,109,174,,????-????,1234567,,,19900171,,, +3425,FJI,,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500008,,, +3452,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500005,,, +3452,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000003,,, +3452,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012426,,, +3455,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016230,,, +3455,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902907,,, +3455,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012442,,, +3455,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012498,,, +3458,CHN,en,Beijing Volmet,u,Beijing/Airport (BJ),40.087778,116.605556,,1,,7757,50,135,,0915-1700,1234567,,,36200225,,, +3458,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:00-:14,1234567,,,36200221,,, +3458,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:30-:44,1234567,,,36200221,,, +3467,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300005,,, +3467,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400003,,, +3467,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600012,,, +3467,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300003,,, +3467,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500006,,, +3467,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200033,,, +3467,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500001,,, +3467,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012443,,, +3467,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500009,,, +3467,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500003,,, +3467,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700075,,, +3467,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700080,,, +3467,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500003,,, +3467,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500032,,, +3470,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200029,,, +3470,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900006,,, +3470,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700085,,, +3476,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0100-0800,1234567,,,4100027,,, +3476,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109268,,, +3476,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200013,,, +3476,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500008,,, +3476,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500003,,, +3479,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500021,,, +3480,KRE,ko,Korean Nat. Democratic Front,,Wonsan (kan),39.15,127.416667,,15,,8379,43,129,,0757-1403,1234567,,,31700004,,, +3480,KRE,ko,Korean Nat. Democratic Front,,Wonsan (kan),39.15,127.416667,,15,,8379,43,129,,2157-0403,1234567,,,31700004,,, +3485,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:20-:29,1234567,,,20100017,,, +3485,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:50-:59,1234567,,,20100017,,, +3485,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:00-:19,1234567,,,20000080,,, +3485,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:30-:49,1234567,,,20000080,,, +3490,SYR,,YKM7 Latakia R,u,Latakia (lat),35.508333,35.766667,,1,,2958,117,87,,????-????,1234567,,,19901394,,, +3494,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,2200-0500,1234567,,,6800048,,, +3494,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012410,,, +3494,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012490,,, +3494,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012427,,, +3494,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012476,,, +3494,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900020,,, +3494,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012503,,, +3535,JMC,,Jamaican Defence Emergency Force,u,-,18,-77.25,,1,,8010,276,137,,????-????,1234567,,,19900931,,, +3560,KRE,ar,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1500-1600,1234567,,,50017226,,, +3560,KRE,ar,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1700-1800,1234567,,,50017226,,, +3560,KRE,en,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0400-0500,1234567,,,50017226,,, +3560,KRE,en,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1000-1100,1234567,,,50017226,,, +3560,KRE,en,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1600-1700,1234567,,,50017226,,, +3560,KRE,en,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1900-2000,1234567,,,50017226,,, +3560,KRE,es,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0300-0400,1234567,,,50017226,,, +3560,KRE,es,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0500-0600,1234567,,,50017226,,, +3560,KRE,fr,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0600-0700,1234567,,,50017226,,, +3560,KRE,fr,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1100-1200,1234567,,,50017226,,, +3560,KRE,fr,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1400-1500,1234567,,,50017226,,, +3560,KRE,fr,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1800-1900,1234567,,,50017226,,, +3560,KRE,ko,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,,8231,44,128,FE,1200-1300,1234567,,,50017226,,, +3560,KRE,ko,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0900-1000,1234567,,,50017226,,, +3560,KRE,ko,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,2000-2100,1234567,,,50017226,,, +3560,KRE,ko,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,2300-2400,1234567,,,50017226,,, +3560,KRE,ru,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,0700-0900,1234567,,,50017226,,, +3560,KRE,zh,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,1300-1400,1234567,,,50017226,,, +3560,KRE,zh,KCBS Voice of Korea,d,Kujang (pyb),40.079167,126.109444,,15,ND,8231,44,128,FE,2100-2300,1234567,,,50017226,,, +3577,I,,IZ3DVW,b,Monselice (pd),45.216667,11.783333,,0.0011,,862,151,95,,,,,Inv V A1 24,55006,,, +3577.5,UKR,,UW5KW,b,Zdolbuniv,50.516667,26.866667,,0.0007,,1428,89,103,,,,-3577.5,?,55007,,, +3579,D,,DKWCY Aurora Beacon,c,Scheggerott (shs),54.668453,9.823456,,0.03,,363,37,76,,0520-0700,1234567,,,2000021,,, +3579,D,,DKWCY Aurora Beacon,c,Scheggerott (shs),54.668453,9.823456,,0.03,,363,37,76,,1400-1700,1234567,,,2000021,,, +3579.8,S,,SM2IUF,b,Kalix,65.85,23.116667,,0.0001,,1790,25,115,,,,-3579.8,15-07UT,55009,,, +3585,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,1200-2400,1234567,,,34600009,,, +3594.5,CZE,,OK0EU,b,Panska Ves,50.516667,14.533333,,0.001,,591,104,93,,,,-3594.5,Mag Loop N-S A1 24qq,55010,,, +3600,CZE,,OK0EN,b,near Kladno,50.1,14.033333,,0.00015,,577,110,101,,,,,Corner Dip 90/270A1 24,55011,,, +3605,RUS,,UFO Kholmsk R,c,Kholmsk (SL),47.023556,142.045056,,1,,8212,30,139,,????-????,1234567,,,19901342,,, +3622.5,J,,JMH,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0000-2400,1234567,-3622.5,,31400035,,, +3623,IW,,Inter-Ship Communications,u,-,,,-,,,?,?,400,,????-????,1234567,,,19900876,,, +3624,SYR,,YKM7 Latakia R,u,Latakia (lat),35.508333,35.766667,,1,,2958,117,87,,????-????,1234567,,,19901395,,, +3628,YEM,,7OA Aden R,u,Aden (adn),12.766111,45.052861,,1,,5565,127,113,,????-????,1234567,,,19901625,,, +3632.5,IND,,Port Blair Harbour R,u,Port Blair/Harbour (AN),11.666667,92.75,,1,,8738,86,143,,????-????,1234567,-3632.5,,19900692,,, +3636,TUR,,Bandirma Turk Radyo,c,Bandirma,40.361111,27.988889,,1,,2098,120,78,,????-????,1234567,,,19901432,,, +3641,TWN,,BMB Taipei R,u,Taipei (TP),25.033333,121.533333,,1,,9384,56,145,,????-????,1234567,,,19901453,,, +3645,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,????-????,1234567,,,19901151,,, +3648,TUR,,Iskendern R,u,Iskendern,38.55,35,,1,,2668,113,84,,????-????,1234567,,,19901436,,, +3651.4,GRC,,SXA32 Navy Piraeus,c,Piraeus (att-pir),37.966667,23.633333,,1,,2064,133,78,,????-????,1234567,-3651.4,,19900606,,, +3651.4,GRC,,SXA34 Navy Spata Attikis,c,Spata-Loutsa (att-est),37.966667,23.916667,,1,,2078,132,78,,????-????,1234567,-3651.4,,19900608,,, +3656,ISR,,4XA Eilat R,u,Eilat (hdm),29.566667,34.95,,1,,3428,126,91,,????-????,1234567,,,19900849,,, +3670,RUS,,RRR34 Moskva 1 R,u,Moskva (MV),55.75,37.616667,,1,,2064,66,78,,????-????,1234567,,,19901352,,, +3673,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,0940-0950,1234567,,,3800009,,, +3673,HOL,,Netherlands Coastguard,u,Den Haag (zho),52.094611,4.257222,,1,,147,270,57,,2140-2150,1234567,,,3800009,,, +3673,QAT,,A7D Doha R,u,Doha=Ad-Dawha (daw),25.291667,51.572222,,1,,4806,111,105,,????-????,1234567,,,19901325,,, +3678,GRC,,SXH32 Souda Bay R,r,Souda (krt-kha),35.488889,24.070833,,1,,2316,136,80,,????-????,1234567,,,19900607,,, +3678.3,POR,,CTP Marinha Portuguesa,r,-,39.575,-7.75,,1,,1767,224,75,,????-????,1234567,-3678.3,,19901313,,, +3681,LTU,,Lietuvos Kariuomenė,,-,55.125,23.95,,1,,1201,67,69,,????-????,1234567,,,19901042,,, +3690,UZB,,Toshkent 1 Metro,f,Toshkent (tkt),41.316667,69.25,,1,,4779,79,105,,????-????,1234567,,,19901612,,, +3694,AUS,,VK6SH,b,E.Carrington WA (WA),-32.016667,115.95,,0.003,,14048,97,186,,,,,Horiz Loop A1 10-22UTC,55012,,, +3705.5,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.1,,16726,74,179,,????-????,1234567,-3705.5,,37700144,,, +3712,GRC,,SXA33 Spata Naval,u,Spata-Loutsa (att-est),37.966667,23.916667,,1,,2078,132,78,,????-????,1234567,,,19900609,,, +3717.5,AUS,,VJG539 Capricorn Helios Rescue,u,Rockhampton (QLD),-23.383333,150.5,,1,,15604,58,165,,????-????,1234567,-3717.5,,19900184,,, +3722,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,????-????,1234567,,,2500021,,, +3730,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901033,,, +3730,RUS,,Magadan-6 Ice Operations,u,Magadan (MA),59.566667,150.8,,1,,7193,19,129,,????-????,1234567,,,19901348,,, +3730,RUS,,UCT2 Beringovskiy R,c,Beringovskiy,63.05,179.316667,,1,,7195,4,129,,????-????,1234567,,,19901336,,, +3735,ATA,,UGE2 Bellingshausen R,c,Bellingshausen Station [RUS] (ssi),-62.199489,-58.961525,,1,,13940,211,160,,????-????,1234567,,,19900086,,, +3737,TRC,,ZOE Tristan da Cunha R,c,Tristan da Cunha,-37.067306,-12.312222,,1,,10081,195,147,,????-????,1234567,,,19901411,,, +3740,BUL,,LZW Varna R,u,Varna/Bolyartsi (vrn),43.068056,27.786111,,1,,1881,114,76,,0703-0713,1234567,,,1300001,,, +3740,BUL,,LZW Varna R,u,Varna/Bolyartsi (vrn),43.068056,27.786111,,1,,1881,114,76,,1903-1913,1234567,,,1300001,,, +3740,RUS,,UDK2 Murmansk Metro,c,Murmansk (MU),68.966667,33.083333,,1,,2335,27,80,,????-????,1234567,,,19901355,,, +3740,RUS,,UDK2 Murmansk Metro,r,Murmansk (MU),68.966667,33.083333,,1,,2335,27,80,,????-????,1234567,,,19901356,,, +3742,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,19901278,,, +3745,BHR,,A9M Bahrain R,u,Hamala (shm),26.156944,50.473889,,1,,4662,111,104,,????-????,1234567,,,19900271,,, +3745,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,????-????,1234567,,,19901279,,, +3750,GMB,,C5G Banjul R,u,Banjul (bjl),13.45,-16.575,,1,,4762,214,105,,????-????,1234567,,,19900595,,, +3763,GMB,,C5G Banjul R,u,Banjul (bjl),13.45,-16.575,,1,,4762,214,105,,????-????,1234567,,,19900596,,, +3764,BUL,,LZL Burgas R,u,Burgas (bur),42.5,27.472222,,1,,1903,116,76,,????-????,1234567,,,19900279,,, +3764.4,HOL,,PBB Koninklijke Marine,r,Den Helder (nho),52.961111,4.8,,1,,144,312,56,,????-????,1234567,-3764.4,,19900648,,, +3765,ISR,,4XT Tel Aviv R,u,Tel Aviv (tav),32.066667,34.766667,,1,,3193,123,89,,????-????,1234567,,,19900856,,, +3765,ISR,,4XA Eilat R,u,Eilat (hdm),29.566667,34.95,,1,,3428,126,91,,????-????,1234567,,,19900850,,, +3782,POR,,CTP Marinha Portuguesa,r,Oeiras (lis),38.677778,-9.325,,1,,1925,225,76,,????-????,1234567,,,19901303,,, +3810,EQA,,HD2IOA,l,Guayaquil/Base Naval Sur (gua),-2.268889,-79.906667,,1,,9955,266,147,,0000-1200,1234567,,,32600002,,, +3821,LVA,,Latvijas Krasta Apsardzes,u,Riga (Rig),57.036667,24.085556,,1,,1259,57,70,,????-????,1234567,,,19901049,,, +3855,D,,DDH3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,0430-1235,1234567,,,19900459,,, +3855,D,,DDH3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,1520-1630,1234567,,,19900459,,, +3855,D,,DDH3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,1800-1952,1234567,,,19900459,,, +3855,D,,DDH3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,2100-2211,1234567,,,19900459,,, +3875,UAE,,Zirku Marine Terminal,u,Zirku/Marine Terminal (abd),24.88,53.085,,1,,4939,109,106,,????-????,1234567,,,19901456,,, +3882,ISR,,4XZ Israeli Navy,c,Haifa/Israeli Navy (haf),32.816667,34.983333,,1,,3140,122,88,,????-????,1234567,,,19900854,,, +3890,UKR,,UWS3 Kyiv R,c,Kyiv (KY),50.469444,30.538889,,1,,1680,87,74,,????-????,1234567,,,19901463,,, +3900,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,0210-0700,1.34567,6,,40000612,,, +3900,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,0900-1440,1234567,6,,40000612,,, +3900,CHN,zh,Hulun Buir RGD Zonghe Pindao,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,2130-0210,1234567,6,,40000612,,, +3905,PNG,,NBC R New Ireland,,Kavieng (nir),-2.583333,150.816667,,10,,13600,43,149,,0700-1300,1234567,960,,40000615,,, +3905,PNG,,NBC R New Ireland,,Kavieng (nir),-2.583333,150.816667,,10,,13600,43,149,,1900-2200,1234567,960,,40000615,,, +3912,KOR,ko,Voice of the People,,Goyang (gye),37.594611,126.844722,,50,,8496,45,125,,0500-2300,1234567,0,,34600001,,, +3915,PNG,,R Fly,,Kiunga (wes),-6.116667,141.3,,1,,13455,55,158,,0000-2400,1234567,,,36100001,,, +3925,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,25,064 244,9294,36,131,,2155-1200,.....6.,,,40000621,,, +3925,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,25,064 244,9294,36,131,,2225-1330,12345..,,,40000621,,, +3925,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,25,064 244,9294,36,131,,2225-1415,......7,,,40000621,,, +3925,J,ja,NSB R Nikkei,,Sapporo/Nemuro (JOZ4) (hok),43.288611,145.563611,,10,,8705,29,133,,0800-1200,.....67,,,40000622,,, +3925,J,ja,NSB R Nikkei,,Sapporo/Nemuro (JOZ4) (hok),43.288611,145.563611,,10,,8705,29,133,,0800-1330,1234...,,,40000622,,, +3925,J,ja,NSB R Nikkei,,Sapporo/Nemuro (JOZ4) (hok),43.288611,145.563611,,10,,8705,29,133,,0800-1415,....5..,,,40000622,,, +3925,J,ja,NSB R Nikkei,,Sapporo/Nemuro (JOZ4) (hok),43.288611,145.563611,,10,,8705,29,133,,2225-2300,1234567,,,40000622,,, +3930,TKM,fa,Voice of Kurdistan,,unknown,39,59.5,,1,,4274,88,100,ME,0300-0330,1234567,,,50021892,,, +3930,TKM,ku,Voice of Kurdistan,,unknown,39,59.5,,1,,4274,88,100,ME,0200-0300,1234567,,,50021892,,, +3945,IND,en,AIR North,,Gorakhpur (UP),26.875,83.464722,,50,,6822,82,108,,0245-0300,1234567,,,40000629,,, +3945,IND,hi,AIR North,,Gorakhpur (UP),26.875,83.464722,,50,,6822,82,108,,0230-0245,1234567,,,40000629,,, +3945,IND,ne,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,NPL,0130-0230,1234567,,,50009585,,, +3945,IND,ne,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,NPL,1330-1430,1234567,,,50009585,,, +3945,IND,ur,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,PAK,1430-1735,1234567,,,50009585,,, +3945,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,10,,9294,36,135,,0000-0800,12345..,,,40000630,,, +3945,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,10,,9294,36,135,,2300-0900,.....67,,,40000630,,, +3945,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,10,,9294,36,135,,2300-2400,1234567,,,40000630,,, +3945,VUT,bi,R Vanuatu,,Port Vila/Enten Lagoon (SW) (sef),-17.756694,168.362028,,1,,15881,29,166,,1830-1230,1234567,80,,40000628,,, +3950,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1205-1800,1234567,,,40000631,,, +3950,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0300,1234567,,,40000631,,, +3955,G,de,KBS World R,,Woofferton (EN-SHP),52.313333,-2.722778,,250,114,622,276,39,WEu,2000-2100,1234567,0,,50019824,,, +3955,G,fr,KBS World R,,Woofferton (EN-SHP),52.313333,-2.722778,,250,114,622,276,39,WEu,2100-2200,1234567,0,,50019824,,, +3955,G,en,BBC WS,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,SEu,0500-0600,1234567,,,50019823,,, +3955,G,en,BBC WS,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,SEu,0600-0700,1234567,,,50019823,,, +3955,G,de,R Taiwan Int.,,Woofferton (EN-SHP),52.313333,-2.722778,,1,,622,276,63,Eu,1900-2000,1234567,,,50023658,,, +3959,KRE,ko,KCBS Chosun Jungang Pangsong,,Kanggye (cha),40.966667,126.583333,,5,ND,8171,43,132,,2000-1800,1234567,,,50017333,,, +3960,LBR,,Star R,,Monrovia (mos),6.25,-10.7,,2.5,,5335,203,106,,0500-0900,1234567,,,4700001,,, +3960,LBR,,Star R,,Monrovia (mos),6.25,-10.7,,2.5,,5335,203,106,,1800-2100,1234567,,,4700001,,, +3962,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,,,,,50017458,,, +3965,F,en,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,345,660,211,37,Eu,1800-1900,1234567,0,,50003914,,, +3965,F,de,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,250,50,660,211,40,Eu,2100-2200,1234567,0,,50003914,,, +3965,F,es,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,250,210,660,211,40,Eu,2000-2100,1234567,0,,50003914,,, +3965,F,fr,R France Int.,D,Issoudun (36),46.947222,1.894444,,1,210,660,211,64,Eu,2200-1800,1234567,,,50003911,,, +3965,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,1,,3912,100,96,EEu,1650-1750,1234567,,,50022436,,, +3965,IRN,ur,IRIB WS,,Zahedan (sib),29.475,60.864444,,1,,5075,98,108,SAs,0120-0220,1234567,,,50022437,,, +3967,INS,id,RRI Pro-1,,Palu (ST-kot),-0.854511,119.88635,,10,,11660,72,143,,0900-1600,1234567,,,40000634,,, +3967,INS,id,RRI Pro-1,,Palu (ST-kot),-0.854511,119.88635,,10,,11660,72,143,,2100-2400,1234567,,,40000634,,, +3970,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,1,,8299,45,140,KOR,0400-0600,1234567,,,50019566,,, +3970,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,1,,8299,45,140,KOR,1200-1400,1234567,,,50019566,,, +3970,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,1,,8299,45,140,KOR,2200-2400,1234567,,,50019566,,, +3971,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,1,,3595,109,93,,,,,,50019828,,, +3975,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,1,,1205,156,69,SEu,1940-2000,1234567,,,50022438,,, +3975,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,1,,1205,156,69,CEu,2140-2200,1234567,,,50022438,,, +3975,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,1,,1205,156,69,SEu,0630-0700,1234567,,,50022438,,, +3975,PAK,,Azad Kashmir R,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,0045-0425,1234567,,,31500027,,, +3975,PAK,,Azad Kashmir R,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,0900-1600,1234567,,,31500027,,, +3975,PAK,,Azad Kashmir R,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,1615-1700,1234567,,,31500027,,, +3975,PAK,en,PBC/NBS Rawalpindi III,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,1600-1615,1234567,,,31500027,,, +3975,PAK,en,PBC/NBS Rawalpindi III,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,,1700-1710,1234567,,,31500027,,, +3976,INS,id,RRI Pro-1,,Pontianak (KB-ptk),0.041111,109.333611,,50,,10882,80,133,,1000-1700,1234567,54,,40000641,,, +3980,SOM,so,R Hage,,Gaalkacyo (mud),6.783333,47.433333,,1.3,,6272,129,119,,0300-0500,1234567,,,9500003,,, +3980,SOM,so,R Hage,,Gaalkacyo (mud),6.783333,47.433333,,1.3,,6272,129,119,,0900-1000,1234567,,,9500003,,, +3985,D,de,R 700,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,2200-1600,1234567,18,,2000061,,, +3985,D,de,Polskie R,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,1700-1730,1234567,,,50022440,,, +3985,D,de,Polskie R,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,2030-2100,1234567,,,50022440,,, +3985,D,de,R Prague,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,1630-1700,1234567,,,50022439,,, +3985,D,de,R Prague,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,2000-2030,1234567,,,50022439,,, +3985,D,de,R Slovakia Int.,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,1600-1630,1234567,,,50022441,,, +3985,D,de,R Slovakia Int.,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,1930-2000,1234567,,,50022441,,, +3985,D,de,R Ukraine Int.,,Kall/Auf der Heide (nrw),50.478056,6.523194,,1,,182,177,59,CEu,2100-2200,1234567,,,50022442,,, +3985,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0900-1430,1234567,,,40000644,,, +3985,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,1430-1500,1234567,,,40000644,,, +3985,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,1500-1605,1234567,,,40000644,,, +3985,KOR,ko,Echo of Hope,,Hwaseong (gye),37.211944,126.776111,,1,,8529,45,142,KRE,0555-2400,1234567,,,50014058,,, +3990,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1500-1600,9999999,0,,40000645,,, +3990,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1155-1500,9999999,0,,40000645,,, +3990,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1600-1800,9999999,0,,40000645,,, +3990,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0300,9999999,0,,40000645,,, +3990,CHN,,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,0600-1300,1234567,,,40000646,,, +3990,CHN,bo,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,1300-1400,1234567,,,40000646,,, +3990,CHN,bo,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,2220-0600,1234567,,,40000646,,, +3990,CHN,zh,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,1400-1430,1234567,,,40000646,,, +3990,J,,Japanese Navy,c,-,34.5,134,,1,,9124,41,144,,????-????,1234567,,,19900927,,, +3995,D,,Ichtys R,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,,0800-0900,1234567,16,,50016430,,, +3995,D,,Ichtys R,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,,2130-2230,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,0430-1700,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,2030-2100,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,2100-2200,.....67,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,2200-2330,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,,0430-0900,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,,1000-1700,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,,2030-2330,1234567,16,,50016430,,, +3995,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,CEu,1730-2000,1234567,16,,50016430,,, +3995,D,en,Life FM,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,,2230-2400,1234567,16,,50016430,,, +3995,D,nds,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,CEu,1700-1730,1234567,16,,50016430,,, +3995,D,nds,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,CEu,2000-2030,1234567,16,,50016430,,, +3995,D,ru,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,0400-0430,123.567,16,,50016430,,, +3995,D,ru,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,ND,136,27,51,,0400-0430,1234567,16,,50016430,,, +3995,D,uk,HCJB Global,,Weenermoor (nds),53.2,7.325,,1.5,,136,27,51,CEu,0400-0430,...4...,16,,50016430,,, +3995,D,de,R ZP30,,Weenermoor (nds),53.2,7.325,,1,,136,27,53,CEu,2100-2200,12345..,,,50022259,,, +3995,D,en,Life FM Cork,,Weenermoor (nds),53.2,7.325,,1,,136,27,53,CEu,2330-0400,1234567,,,50019568,,, +3995,PAK,en,VoJammu-Kashmir Freedom,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,1,,5607,84,113,SAs,0300-0415,1234567,,,50020339,,, +3995,PAK,en,VoJammu-Kashmir Freedom,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,1,,5607,84,113,SAs,1300-1415,1234567,,,50020339,,, +3995,INS,id,RRI Pro-1,,Kendari/Lepo-Lepo (SG-ken),-4.017953,122.504528,,5,,12115,71,147,,0900-1550,1234567,23,,40000650,,, +3995,INS,id,RRI Pro-1,,Kendari/Lepo-Lepo (SG-ken),-4.017953,122.504528,,5,,12115,71,147,,2030-0015,1234567,23,,40000650,,, +4005,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,1,,3912,100,96,EEu,1920-2020,1234567,,,50022443,,, +4010,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,0000-1630,1234567,986,,40000652,,, +4010,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,1630-1700,12345.7,986,,40000652,,, +4010,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,1700-1730,12345..,986,,40000652,,, +4010,KGZ,ru,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,1630-1700,.....6.,986,,40000652,,, +4010,KGZ,ru,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,50,,5055,73,91,,1700-1730,.....67,986,,40000652,,, +4014,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0430-0600,1234567,,,20300027,,, +4014,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,1600-1730,1234567,,,20300027,,, +4014,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,2230-2300,1234567,,,20300027,,, +4016.5,USA,,KKL24,p,Vashon (WA),47.370808,-122.48775,,3,,7936,326,132,,????-????,1234567,-4016.5,,20016160,,, +4026,G,en,Laser Hot Hits,,unknown (EN-SOM),51.333333,-2.5,,1,,619,266,63,,,,,,2800035,,, +4043.5,ROU,,YQI43 Constanţa R,p,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-4043.5,,6600011,,, +4055,GTM,es,TGAV R Verdad,,Chiquimula (cqm),14.747667,-89.514761,,1,,9115,284,144,,1000-0705,1234567,995,,40000656,,, +4074,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902768,,, +4074,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902814,,, +4074,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902849,,, +4077,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902769,,, +4086,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902816,,, +4086,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902850,,, +4110,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902818,,, +4119,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,????-????,1234567,,,2500023,,, +4125,ALS,en,KCB53,u,Barrow (AK),71.258333,-156.583333,,1,,6231,353,119,,0400-0415,1234567,,,20016126,,, +4125,ALS,en,KCB53,u,Barrow (AK),71.258333,-156.583333,,1,,6231,353,119,,1530-1545,1234567,,,20016126,,, +4125,ALS,en,KCI94,u,Nome (AK),64.505556,-165.416667,,1,,7029,356,127,,0630-0645,1234567,,,20016131,,, +4125,ALS,en,KCI94,u,Nome (AK),64.505556,-165.416667,,1,,7029,356,127,,2030-2045,1234567,,,20016131,,, +4125,ALS,en,KDG91,u,Yakutat (AK),59.516667,-139.677778,,1,,7235,342,129,,0430-0445,1234567,,,20016125,,, +4125,ALS,en,KDG91,u,Yakutat (AK),59.516667,-139.677778,,1,,7235,342,129,,1415-1430,1234567,,,20016125,,, +4125,ALS,en,KDG58,u,Annette Island (AK),55.126389,-131.577778,,1,,7479,335,132,,0040-0055,1234567,,,20016127,,, +4125,ALS,en,KDG58,u,Annette Island (AK),55.126389,-131.577778,,1,,7479,335,132,,1600-1615,1234567,,,20016127,,, +4125,ALS,en,KCI98,u,King Salmon (AK),58.691667,-156.656944,,1,,7600,351,133,,0130-0145,1234567,,,20016130,,, +4125,ALS,en,KCI98,u,King Salmon (AK),58.691667,-156.656944,,1,,7600,351,133,,1830-1845,1234567,,,20016130,,, +4125,ALS,en,KWL38,u,Kodiak (AK),57.783333,-152.4,,1,,7645,348,133,,0400-0415,1234567,,,20016128,,, +4125,ALS,en,KWL38,u,Kodiak (AK),57.783333,-152.4,,1,,7645,348,133,,1700-1715,1234567,,,20016128,,, +4125,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1250-1300,1234567,,,33400003,,, +4125,TRD,,North Post R,u,North Post (dmn),10.7471,-61.561625,,1,,7569,259,133,,1850-1900,1234567,,,33400003,,, +4125,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902782,,, +4125,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902765,,, +4125,ALS,en,KCI95,u,Cold Bay (AK),55.183333,-162.716667,,1,,8043,354,137,,0530-0545,1234567,,,20016129,,, +4125,ALS,en,KCI95,u,Cold Bay (AK),55.183333,-162.716667,,1,,8043,354,137,,1930-1945,1234567,,,20016129,,, +4125,CHL,,CBV Valparaso Playa Ancha R,c,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,0000-2400,1234567,,,36800012,,, +4125,AUS,,VMR471 Keppel Sands Coastguard,u,Keppel Sands (QLD),-23.3375,150.797222,,1,,15617,57,166,,????-????,1234567,,,37700095,,, +4125,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.4,,14915,58,167,,????-????,1234567,,,37700129,,, +4125,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,37700126,,, +4125,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,37700091,,, +4125,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700100,,, +4125,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700152,,, +4125,AUS,,VMR251 Kingscliff Coastguard,u,Kingscliff/Faulks Park (NSW),-28.257656,153.583189,,0.1,,16225,58,178,,????-????,1234567,,,37700122,,, +4134,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,37700092,,, +4134,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700136,,, +4146,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,0833-0848,1234567,,,31200002,,, +4146,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,1603-1618,1234567,,,31200002,,, +4146,URG,,Montevideo Trouville R,u,Montevideo/Punta Trouville (mo),-34.920181,-56.1467,,1,,11419,228,152,,2203-2218,1234567,,,31200002,,, +4146,CHL,,CBP Puerto Montt R,u,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,1130-1145,1234567,,,36800023,,, +4146,CHL,,CBP Puerto Montt R,u,Puerto Montt (LL),-41.489983,-72.957744,,1,,12896,235,157,,2325-2340,1234567,,,36800023,,, +4146,CHL,,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,0035-0050,1234567,,,36800021,,, +4146,CHL,,CBM Magallanes R,u,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1235-1250,1234567,,,36800021,,, +4146,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700150,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0003-0013,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0133-0143,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0533-0543,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0803-0813,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1333-1343,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1733-1743,1234567,,,32500027,,, +4146,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2003-2013,1234567,,,32500027,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,0233-0245,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,0633-0645,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,1033-1045,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,1433-1445,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,1833-1845,1234567,,,8100012,,, +4149,UKR,,Kerch R,u,Kerch (KR),45.347222,36.544444,,1,,2315,97,80,,2233-2245,1234567,,,8100012,,, +4149,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2300-1000,1234567,,,37700023,,, +4207.5,GRC,,Olympia R,2,Agia Paraskevi (wgr-ili),37.603056,21.486389,,1,,1995,138,77,,,,-4207.5,,3400069,,, +4207.5,TUR,,Istanbul R,2,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,,,-4207.5,,8000026,,, +4207.5,EGY,,Al-Iskandariya R,2,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,,,-4207.5,,2300015,,, +4207.5,USA,,COMMSTA Boston,2,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,,,-4207.5,,20016318,,, +4207.5,USA,,COMMSTA Portsmouth,2,Portsmouth (USCG COMMSTA) (VA),36.833333,-76.3,,1,,6407,290,121,,,,-4207.5,,20016319,,, +4207.5,USA,,KHT,u,Cedar Rapids (IA),42.034722,-91.643611,,1,,6930,304,126,,,,-4207.5,,20016311,,, +4207.5,USA,,COMMSTA Miami,2,Miami (USCG COMMSTA) (FL),25.619444,-80.386389,,1,,7578,284,133,,,,-4207.5,,20016320,,, +4207.5,USA,,COMMSTA New Orleans,2,Belle Chasse (USCG) (LA),29.881389,-89.942778,,1,,7836,294,135,,,,-4207.5,,20016321,,, +4207.5,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,-4207.5,,35400112,,, +4207.5,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,-4207.5,,36800013,,, +4209.5,TUR,tr,Istanbul Turk Radyo,b,Istanbul/TAH (mam-ist),41.066667,28.95,,0.025,,2101,117,94,,,,-4209.5,Navtex 02:00 +4h UTC slots M,N,O,86169, +4212,VTN,,R Lai Chu 1,,Lai Chu (lic),22.066667,103.166667,,0.5,,8532,71,145,,0400-0600,1234567,,,33200005,,, +4212,VTN,,R Lai Chu 1,,Lai Chu (lic),22.066667,103.166667,,0.5,,8532,71,145,,1000-1400,1234567,,,33200005,,, +4212,VTN,,R Lai Chu 1,,Lai Chu (lic),22.066667,103.166667,,0.5,,8532,71,145,,2200-2400,1234567,,,33200005,,, +4213,NOR,,LGV24 Vard R,p,Vard (fi),70.370889,31.097389,,1,,2384,23,81,,????-????,1234567,,,6300036,,, +4217,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,????-????,1234567,,,37700114,,, +4218,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,,,34700009,,, +4220,CHN,bo,CNR 11,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0800-0900,1.34567,,,40000632,,, +4220,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0600-0800,1.34567,,,40000632,,, +4220,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0900-1600,1234567,,,40000632,,, +4220,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,2255-0600,1234567,,,40000632,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1115-1145,1234567,,,36800007,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1630-1700,1234567,,,36800007,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1915-1945,1234567,,,36800007,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2200-2245,1234567,,,36800007,,, +4228,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2310-2340,1234567,,,36800007,,, +4233,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0400-0500,1234567,,,11700008,,, +4233,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1500-1700,1234567,,,11700008,,, +4235,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0230-0506,1234567,,,20016153,,, +4235,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0745-1041,1234567,,,20016153,,, +4242.5,D,,DAO24 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,-4242.5,,2000049,,, +4250.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0000-2400,1234567,-4250.5,,7300005,,, +4259,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800019,,, +4261,AFS,,ZRK6961 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300031,,, +4266,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0600-0730,1234567,,,36902810,,, +4266,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1845-1930,1234567,,,36902810,,, +4266,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1945-2115,1234567,,,36902810,,, +4298,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0340-0608,1234567,,,20016141,,, +4298,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0950-1208,1234567,,,20016141,,, +4298,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1540-1808,1234567,,,20016141,,, +4298,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,2150-0028,1234567,,,20016141,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0330-0400,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0515-0545,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0930-1000,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1115-1145,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1530-1600,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1715-1745,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2130-2200,1234567,,,20012367,,, +4316,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2315-2345,1234567,,,20012367,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0145-0300,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0430-0450,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0540-0800,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,1100-1200,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,1335-1530,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,1645-2000,1234567,,,31400038,,, +4316,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,2215-2245,1234567,,,31400038,,, +4317.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0000-0305,1234567,-4317.9,,20016149,,, +4317.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0600-0855,1234567,-4317.9,,20016149,,, +4317.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1200-1505,1234567,-4317.9,,20016149,,, +4317.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1800-2105,1234567,-4317.9,,20016149,,, +4319,BIO,en,AFN,u,Diego Garcia (SW) (dga),-7.4302,72.441114,,1,,9078,114,144,,1400-0200,1234567,,,12200002,,, +4321,B,,PPO Olinda Rdio,c,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0430-0440,1234567,,,36902783,,, +4321,B,,PPO Olinda Rdio,c,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1630-1640,1234567,,,36902783,,, +4321,B,,PPL Belm Rdio,c,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1000-1030,1234567,,,36902763,,, +4321,B,,PPL Belm Rdio,c,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,2200-2230,1234567,,,36902763,,, +4321,B,,PPJ Juno Rdio,c,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,0000-0030,1234567,,,36902845,,, +4321,B,,PPJ Juno Rdio,c,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1200-1230,1234567,,,36902845,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,0350-0420,1234567,,,36800020,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1550-1635,1234567,,,36800020,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1730-1800,1234567,,,36800020,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,2005-2035,1234567,,,36800020,,, +4322,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,2240-2325,1234567,,,36800020,,, +4346,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0140-0415,1234567,,,20016144,,, +4346,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0655-1015,1234567,,,20016144,,, +4346,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1120-1230,1234567,,,20016144,,, +4346,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1400-1615,1234567,,,20016144,,, +4347,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800020,,, +4351,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,2335-2400,1234567,,,36700001,,, +4357,NOR,,LGZ24 Rogaland R,p,Farsund/Haugviga (st),58.068778,6.743244,,1,,663,2,64,,????-????,1234567,,,6300038,,, +4357,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,1203-1218,1234567,,,6300016,,, +4357,NOR,,LGS Bod R,u,Kapp Linn (sp),78.061667,13.616389,,1,,2900,3,86,,2303-2318,1234567,,,6300016,,, +4357,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1235-1250,1234567,,,36800016,,, +4357,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2335-2350,1234567,,,36800016,,, +4357.4,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-4357.4,,31200007,,, +4357.4,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-4357.4,,31200007,,, +4357.4,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-4357.4,,31200007,,, +4363,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,0720-0740,1234567,,,5300001,,, +4363,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1203-1223,1234567,,,5300001,,, +4363,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1720-1740,1234567,,,5300001,,, +4363,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,1340-1400,9999999,,,20109243,,, +4363,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,1705-1725,9999999,,,20109243,,, +4363,CAN,,VFF Iqaluit Coastguard,u,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,2235-2255,9999999,,,20109243,,, +4363,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,1240-1300,9999999,,,20109239,,, +4363,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,1705-1725,9999999,,,20109239,,, +4363,CAN,,VFR Resolute Coastguard,u,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,2310-2330,9999999,,,20109239,,, +4363,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,0110-0130,9999999,,,20109252,,, +4363,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,1320-1340,9999999,,,20109252,,, +4363,CAN,,VFC Inuvik Coastguard,u,Cambridge Bay (NU),69.114722,-105.0195,,1,,5438,334,111,,0235-0255,1234567,,,20109251,,, +4363,CAN,,VFC Inuvik Coastguard,u,Cambridge Bay (NU),69.114722,-105.0195,,1,,5438,334,111,,1435-1455,1234567,,,20109251,,, +4363,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,0115-0135,9999999,,,20109247,,, +4363,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,1315-1335,9999999,,,20109247,,, +4366,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901032,,, +4366,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1500-0300,1234567,,,11700004,,, +4366,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902767,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0103-0118,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0603-0618,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1003-1018,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1203-1218,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1503-1518,1234567,,,36902813,,, +4366,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,2103-2118,1234567,,,36902813,,, +4366,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902848,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0000-0015,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0400-0415,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0500-0515,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0600-0615,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1300-1315,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1600-1615,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1700-1715,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1800-1815,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,2200-2215,1234567,,,20012380,,, +4369,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,2300-2315,1234567,,,20012380,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0103-0118,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0603-0618,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1003-1018,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1203-1218,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1503-1518,1234567,,,36902785,,, +4369,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,2103-2118,1234567,,,36902785,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,0103-0118,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,0603-0618,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1003-1018,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1203-1218,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1503-1518,1234567,,,36902766,,, +4369,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,2103-2118,1234567,,,36902766,,, +4372,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0003-0018,1234567,,,22500001,,, +4372,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0403-0418,1234567,,,22500001,,, +4372,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0803-0818,1234567,,,22500001,,, +4372,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,2003-2018,1234567,,,22500001,,, +4375,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1015-1030,1234567,,,20300007,,, +4375,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1333-1348,1234567,,,20300007,,, +4375,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1815-1830,1234567,,,20300007,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0000-0010,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0035-0040,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0335-0340,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0635-0640,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0805-0815,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0935-0940,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1235-1240,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1305-1315,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1535-1540,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1805-1815,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1835-1840,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,2135-2140,1234567,,,3500003,,, +4381,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,2305-2315,1234567,,,3500003,,, +4381,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902815,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,0103-0118,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,0603-0618,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1003-1018,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1203-1218,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1503-1518,1234567,,,36902847,,, +4381,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,2103-2118,1234567,,,36902847,,, +4396,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016233,,, +4399,NOR,,LGL24 Flor R,p,Flor (sf),61.597625,4.998556,,1,,1058,356,68,,????-????,1234567,,,6300034,,, +4401,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000064,,, +4402,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902817,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,0115-0130,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,0433-0448,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,0730-0745,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,1233-1248,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,1315-1330,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,1603-1618,1234567,,,20800001,,, +4402,MAU,,3BB Mauritius R,u,Port Louis (mau),-20.1675,57.478222,,1,,9432,133,145,,1930-1945,1234567,,,20800001,,, +4405,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1000-1015,1234567,,,8000024,,, +4405,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1800-1815,1234567,,,8000024,,, +4407,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,0000-0015,1234567,,,36100003,,, +4407,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,0603-0618,1234567,,,36100003,,, +4407,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,2203-2218,1234567,,,36100003,,, +4411,F,fr,R Vacation Pche,u,Saint-Gunol (29),47.818333,-4.379306,,1,,906,242,66,,0730-0750,1234567,,,2500022,,, +4416,CAN,,VCO Sydney Coastguard,f,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,1121-1741,1234567,,,20109296,,, +4417,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1500-0300,1234567,,,11700005,,, +4420,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901031,,, +4426,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0330-0400,1234567,,,20000101,,, +4426,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0515-0545,1234567,,,20000101,,, +4426,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0930-1000,1234567,,,20000101,,, +4426,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0430-0505,1234567,,,20012373,,, +4426,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1030-1105,1234567,,,20012373,,, +4426,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2100-0800,1234567,,,37700017,,, +4426,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700133,,, +4450,KRE,ko,KCBS Pyongyang Pangsong/AINDF,,Kujang (pyb),40.079167,126.109444,,15,,8231,44,128,,,,992,,40000677,,, +4450,KOR,ko,Voice of the People,,Goyang (gye),37.594611,126.844722,,1,,8496,45,142,,0500-2300,1234567,,,34600007,,, +4481,GRC,,SVJ4,f,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,0845-1100,1234567,,,3400038,,, +4483,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,37700093,,, +4483,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700153,,, +4483,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.1,,14915,58,173,,????-????,1234567,,,37700130,,, +4483,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.1,,16726,74,179,,????-????,1234567,,,37700142,,, +4485.9,PRU,es,R Frecuencia VH,,Celendn (caj),-6.883333,-78.15,,0.5,,10242,261,151,,2300-0300,1234567,-4485.9,,40000680,,, +4500,CHN,mn,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1600-1700,1234567,,,40000682,,, +4500,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0000-0330,1234567,,,40000682,,, +4500,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1230-1600,1234567,,,40000682,,, +4500,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1700-1800,1234567,,,40000682,,, +4523,PRU,es,R Superior,,Bambamarca (caj),-6.683333,-78.533333,,1,,10250,262,148,,0000-2400,1234567,,,37000039,,, +4557,KRE,ko,KCBS Pyongyang Pangsong/AINDF,,Haeju (hwn),38.032389,125.708556,,50,,8401,45,124,,0800-0400,1234567,,,40000687,,, +4583,D,,DDK2 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0000-2400,1234567,,,19900458,,, +4605,INS,id,RRI Pro-1,,Serui (PA-yap),-1.883333,136.233333,,1,,12762,58,156,,0000-0500,1234567,,,40000689,,, +4605,INS,id,RRI Pro-1,,Serui (PA-yap),-1.883333,136.233333,,1,,12762,58,156,,0845-1400,1234567,,,40000689,,, +4605,INS,id,RRI Pro-1,,Serui (PA-yap),-1.883333,136.233333,,1,,12762,58,156,,2000-2315,1234567,,,40000689,,, +4610,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,0000-2400,1234567,,,2800046,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0040-0140,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0305-0550,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0700-0740,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0905-1030,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1300-1340,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1505-1740,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1900-1940,1234567,,,21800036,,, +4616,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,2050-2230,1234567,,,21800036,,, +4620,PRU,es,R Espacial,,Otuzco (lal),-7.9,-78.566667,,0.5,,10359,261,151,,0900-0200,1234567,,,40000692,,, +4620,AUS,,VMR412 Tully Coastguard,u,Hull Heads (QLD),-17.990889,146.065878,,0.4,,14850,58,167,,????-????,1234567,,,37700127,,, +4620,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700154,,, +4625,RUS,,MDZhB,x,unknown (PS),58.666667,28.166667,,10,,1546,53,62,,0000-2400,1234567,,,6700135,,, +4645,EST,en,Tallinn Volmet,u,Tallinn/Airport (Har),59.407222,24.798333,,0.8,,1400,47,72,,0000-2400,1234567,,,2400001,,, +4654.9,PRU,es,R Centinela del Norte,,Cortegana (ama),-6.416667,-78.35,,1,,10214,262,148,,0000-0200,1234567,-4654.9,,40000097,,, +4660,IND,,AIR North,,Leh (JK),34.124744,77.588978,,7,,5854,80,107,,0130-0415,1234567,997,,40000120,,, +4660,IND,,AIR North,,Leh (JK),34.124744,77.588978,,7,,5854,80,107,,1130-1631,1234567,997,,40000120,,, +4660,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500010,,, +4663,UZB,en,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:10-:15,1234567,,,34500006,,, +4663,UZB,en,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:40-:45,1234567,,,34500006,,, +4666,NOR,,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,,,,,6300023,,, +4666,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012448,,, +4666,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012499,,, +4669,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500022,,, +4675,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0100-0800,1234567,,,4100028,,, +4675,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1100-1800,1234567,,,4100028,,, +4675,NOR,en,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,0000-2400,1234567,,,6300018,,, +4675,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200007,,, +4675,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109269,,, +4675,ARG,es,Resistencia Volmet,u,Resistencia (cc),-27.463333,-59.07,,1,,10888,235,150,,:20-:29,1234567,,,33000047,,, +4675,ARG,,Comodoro Rivadavia Volmet,u,Comodoro Rivadavia (ch),-45.791944,-67.481944,,1,,12959,228,157,,0930-2340,1234567,,,33000045,,, +4675,ARG,es,Comodoro Rivadavia Volmet,u,Comodoro Rivadavia (ch),-45.791944,-67.481944,,1,,12959,228,157,,:30-:40,1234567,,,33000045,,, +4679,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700099,,, +4681,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300011,,, +4687,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900010,,, +4699.8,BOL,es,CP114 R San Miguel,,Riberalta (ebn),-10.996722,-66.066944,,1.5,,9810,249,145,,1100-0300,1234567,32,,40000222,,, +4700,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0300-0700,1234567,,,8400003,,, +4700,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0930-1100,1234567,,,8400003,,, +4700,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1400-1800,1234567,,,8400003,,, +4712,RUS,,Magadan Aero,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,,,,,6700133,,, +4716.7,BOL,,R Yura,,Yura (pts),-20.116667,-66.166667,,1,,10638,244,149,,1000-0200,1234567,71,,40000103,,, +4739.7,VTN,vi,Sơn La R,,Sơn La (sla),21.333333,103.9,,1,,8643,71,143,,0300-0500,1234567,68,,40000107,,, +4739.7,VTN,vi,Sơn La R,,Sơn La (sla),21.333333,103.9,,1,,8643,71,143,,1150-1400,1234567,68,,40000107,,, +4739.7,VTN,vi,Sơn La R,,Sơn La (sla),21.333333,103.9,,1,,8643,71,143,,2200-0030,1234567,68,,40000107,,, +4747,PRU,es,OAZ5B R Huanta 2000,,Huanta/Tirapampa (aya),-12.9,-74.216667,,0.5,,10509,255,152,,0930-1300,1234567,8,,40000117,,, +4747,PRU,es,OAZ5B R Huanta 2000,,Huanta/Tirapampa (aya),-12.9,-74.216667,,0.5,,10509,255,152,,2000-0100,1234567,8,,40000117,,, +4750,BGD,bn,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,0600-1705,1234567,10,,50003926,,, +4750,BGD,en,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,1235-1245,1......,10,,50003926,,, +4750,BGD,en,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,1252-1255,1234567,10,,50003926,,, +4750,BGD,en,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,1430-1445,1234567,10,,50003926,,, +4750,BGD,en,Bangladesh Betar,,Dhaka B/Savar (SW) (dha),23.865278,90.263333,,100,,7528,79,112,SAs,1530-1545,1234567,10,,50003926,,, +4750,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0900-1600,1234567,989,,40000111,,, +4750,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,2150-0200,1234567,989,,40000111,,, +4750,UGA,,Dunamis Shortwave,,Mukono (mkn),0.361111,32.75,,1,,6256,148,120,,1500-1900,1234567,994,,40000109,,, +4750,INS,id,RRI Pro-1,,Makassar (SN-mak),-5.271139,119.425139,,20,,12026,75,141,,0745-1355,1234567,949,,40000115,,, +4750,INS,id,RRI Pro-1,,Makassar (SN-mak),-5.271139,119.425139,,20,,12026,75,141,,2030-2130,1234567,949,,40000115,,, +4753.5,B,pt,ZYF904 Rdio Imaculada Conceio,,Campo Grande (MS),-20.422078,-54.614178,,10,,9986,235,137,,0700-0300,1234567,-4753.5,,40000116,,, +4755,FSM,,V6MP The Cross R,,Pohnpei/Ninseitamw (pnp),6.965833,158.204722,,1,,12921,32,157,,1900-1100,1234567,50,,39900002,,, +4760,LBR,,R ELWA,,Monrovia (ELWA) (mos),6.242222,-10.6975,,1,,5336,203,110,,0530-1000,1234567,,,4700002,,, +4760,LBR,,R ELWA,,Monrovia (ELWA) (mos),6.242222,-10.6975,,1,,5336,203,110,,1700-2200,1234567,,,4700002,,, +4760,IND,,AIR South,,Port Blair (AN),11.614167,92.750833,,8.5,,8742,86,134,,1030-1701,1234567,10,,40000121,,, +4760,IND,,AIR South,,Port Blair (AN),11.614167,92.750833,,8.5,,8742,86,134,,2355-0300,1234567,10,,40000121,,, +4760,SWZ,SGA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1545-1615,......7,995,,50022444,,, +4760,SWZ,SGA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1600-1630,.....6.,995,,50022444,,, +4760,SWZ,SGA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1630-1645,.23.56.,995,,50022444,,, +4760,SWZ,TSH,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1600-1630,12345..,995,,50022444,,, +4760,SWZ,TSH,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1615-1645,......7,995,,50022444,,, +4760,SWZ,TSH,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1645-1700,......7,995,,50022444,,, +4760,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,1,,9062,157,144,MOZ,1630-1645,1..4...,995,,50022444,,, +4765,TJK,tg,Tojikiston R 1,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,,2300-2000,1234567,53,,34200001,,, +4765,CUB,es,R Progreso,,Bauta/Corralillo (ch),22.951111,-82.546111,,50,,7945,284,120,,0130-0504,1234567,,,31600137,,, +4765,B,pt,ZYG363 Rdio Rural,,Santarm (PA),-2.446831,-54.731744,,10,,8316,245,130,,0800-0300,1234567,,,40000125,,, +4765,B,pt,ZYF200 Rdio Integrao,,Cruzeiro do Sul (AC),-7.618944,-72.655667,,5,45,9939,257,140,,,,,,40000126,,, +4775,IND,,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,,7707,76,117,,0030-0215,1234567,21,,40000129,,, +4775,IND,,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,,7707,76,117,,1030-1700,1234567,21,,40000129,,, +4775,SWZ,LO,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,MOZ,0342-0357,1234567,992,,50010802,,, +4775,SWZ,Lom,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,,0342-0400,1234567,992,,50010802,,, +4775,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,,0400-0430,12345..,992,,50010802,,, +4775,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,,0400-0500,.....67,992,,50010802,,, +4775,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,SAf,0400-0430,1234567,992,,50010802,,, +4775,SWZ,de,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,3,9062,157,127,SAf,0430-0500,.....67,992,,50010802,,, +4775,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,SAf,0500-0800,1234567,992,,50010802,,, +4775,B,pt,ZYG207 Rdifusora de Congonhas,,Congonhas (MG),-20.508761,-43.86235,,1,,9426,226,145,,0900-2400,1234567,,,40000130,,, +4775,PRU,es,OCX4E R Tarma,,Tarma/Cerro Penitencia (jun),-11.408856,-75.691639,,1,,10475,257,149,,1000-1300,1234567,95,,40000131,,, +4775,PRU,es,OCX4E R Tarma,,Tarma/Cerro Penitencia (jun),-11.408856,-75.691639,,1,,10475,257,149,,2200-0600,1234567,95,,40000131,,, +4779.7,GTM,es,TGLT R Cultural Coatn,,Coatn (huh),15.75,-91.583333,,1,,9164,286,144,,1100-1500,1234567,-4779.7,,40000133,,, +4779.7,GTM,es,TGLT R Cultural Coatn,,Coatn (huh),15.75,-91.583333,,1,,9164,286,144,,2200-0230,1234567,-4779.7,,40000133,,, +4780,DJI,,RTD R Nationale,,Arta (art),11.519444,42.846944,,50,,5568,131,96,,0300-2100,1234567,9993,,40000134,,, +4781.6,EQA,,HCLE7 R Oriental,,Tena (nap),-1,-77.8,,5,,9701,265,139,,1000-1400,1234567,66,,40000136,,, +4781.6,EQA,,HCLE7 R Oriental,,Tena (nap),-1,-77.8,,5,,9701,265,139,,2200-0200,1234567,66,,40000136,,, +4785,B,pt,ZYG790 Rdio Caiar,,Porto Velho (RO),-8.75,-63.916667,,10,45,9470,249,135,,0900-1400,1234567,,,40000141,,, +4785,B,pt,ZYG790 Rdio Caiar,,Porto Velho (RO),-8.75,-63.916667,,10,45,9470,249,135,,1900-0300,1234567,,,40000141,,, +4790,PRU,es,OAX8J R Atlntida,,Iquitos (lor),-3.85,-73.216667,,1,,9642,259,146,,0900-0500,1234567,,,40000147,,, +4790,PRU,es,OAW1D R Visin,,Chiclayo (lam),-6.783333,-79.866667,,1,,10349,263,148,,0555-0245,1234567,925,,40000148,,, +4790,INS,id,RRI Pro-1,,Fak-Fak (PB-fak),-2.952375,132.350944,,1,,12634,62,156,,0700-1455,1234567,5,,40000145,,, +4790,INS,id,RRI Pro-1,,Fak-Fak (PB-fak),-2.952375,132.350944,,1,,12634,62,156,,2000-2230,1234567,5,,40000145,,, +4800,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0600-0900,1.34567,10,,40000155,,, +4800,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0900-1805,1234567,10,,40000155,,, +4800,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,2025-0600,1234567,10,,40000155,,, +4800,IND,hi,AIR South,,Hyderabad (AP),17.3375,78.561389,,50,,7282,93,113,,0020-0215,1234567,25,,40000156,,, +4800,IND,hi,AIR South,,Hyderabad (AP),17.3375,78.561389,,50,,7282,93,113,,1130-1745,1234567,25,,40000156,,, +4800,MEX,es,XERTA-OC R.Transcontinental de Amrica,,Mxico D.F/Cuauhtmoc (dif),19.441472,-99.151622,,5,,9323,294,138,,0000-2400,1234567,,,40000159,,, +4805,B,pt,ZYF273 Rdifusora do Amaznas,,Manaus (AM),-3.137447,-59.980817,,10,90,8709,249,133,,0930-1330,1234567,,,40000157,,, +4805,B,pt,ZYF273 Rdifusora do Amaznas,,Manaus (AM),-3.137447,-59.980817,,10,90,8709,249,133,,1500-1800,1234567,,,40000157,,, +4805,B,pt,ZYF273 Rdifusora do Amaznas,,Manaus (AM),-3.137447,-59.980817,,10,90,8709,249,133,,2000-0100,1234567,,,40000157,,, +4805,PRU,es,OAW5D R Rasuwilca,,Faldas del Cerro la Picota (aya),-13.122222,-74.225,,1,,10530,255,149,,1000-0200,1234567,,,37000041,,, +4810,ARM,ar,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1900-1930,1234567,,,400001,,, +4810,ARM,asy,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1530-1600,1234567,,,400001,,, +4810,ARM,az,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,,1400-1415,12345..,,,400001,,, +4810,ARM,az,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1345-1400,1234567,,,400001,,, +4810,ARM,fa,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1430-1500,1234567,,,400001,,, +4810,ARM,ku,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1315-1345,1234567,,,400001,,, +4810,ARM,ku,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1600-1630,1234567,,,400001,,, +4810,ARM,tr,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,,1400-1415,.....67,,,400001,,, +4810,ARM,tr,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1415-1430,1234567,,,400001,,, +4810,ARM,yz,Voice of Armenia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1500-1530,1234567,,,400001,,, +4810,IND,en,AIR West,,Bhopal (MP),23.253889,77.480833,,50,,6711,90,107,,1530-1545,1234567,9979,,40000158,,, +4810,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,,6711,90,107,,0025-0215,1234567,9979,,40000158,,, +4810,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,,6711,90,107,,1130-1530,1234567,9979,,40000158,,, +4810,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,,6711,90,107,,1545-1745,1234567,9979,,40000158,,, +4810,PRU,es,OAW9A R Logos,,Chazuta (sam),-6.573111,-76.1343,,1,,10079,260,147,,0900-1100,1234567,,,37000115,,, +4810,PRU,es,OAW9A R Logos,,Chazuta (sam),-6.573111,-76.1343,,1,,10079,260,147,,2330-0310,1234567,,,37000115,,, +4814.9,EQA,,HCAX3 R El Buen Pastor,,Saraguro/Loma de Carbocillo (loj),-3.548056,-79.177778,,1,,10018,264,147,,1000-1500,1234567,-4814.9,,40000160,,, +4814.9,EQA,,HCAX3 R El Buen Pastor,,Saraguro/Loma de Carbocillo (loj),-3.548056,-79.177778,,1,,10018,264,147,,2200-0300,1234567,-4814.9,,40000160,,, +4815,B,pt,ZYG640 Rdio Difusora Londrina,,Londrina/Gleba Ribeiro Cafezal (PR),-23.338056,-51.221111,,10,,10076,231,137,,0755-0355,1234567,0,,40000162,,, +4820,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,0000-1630,1234567,,,40000150,,, +4820,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,1630-1700,12345.7,,,40000150,,, +4820,KGZ,ky,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,1700-1730,12345..,,,40000150,,, +4820,KGZ,ru,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,1630-1700,.....6.,,,40000150,,, +4820,KGZ,ru,KTRK Birinchi R,,Krasnaya Rechka (cuy),42.882222,74.991667,,15,,5055,73,96,,1700-1730,.....67,,,40000150,,, +4820,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0030,1234567,4,,40000164,,, +4820,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1030-1100,1234567,4,,40000164,,, +4820,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0030-0600,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0600-1000,12.4567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1030,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1100-1800,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2000-2230,1234567,4,,40000164,,, +4820,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,4,,40000164,,, +4820,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,,7521,82,115,,0025-0215,1234567,9936,,40000165,,, +4820,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,,7521,82,115,,1130-1843,1234567,9936,,40000165,,, +4824.5,PRU,es,OAX8R La Voz de la Selva,,Iquitos/Moronacocha (lor),-3.733333,-73.266667,,10,,9635,260,136,,0950-0300,0.234567,48,,40000166,,, +4824.5,PRU,es,OAX8R La Voz de la Selva,,Iquitos/Moronacocha (lor),-3.733333,-73.266667,,10,,9635,260,136,,1000-1700,1......,48,,40000166,,, +4825,B,pt,ZYG364 R.Educadora de Bragana,,Bragana (PA),-1.063333,-46.773333,,10,,7707,239,124,,0830-0300,1234567,,,40000169,,, +4825,B,pt,ZYG868 Rdio Cano Nova,,Cachoeira Paulista/Santa Cruz (SP),-22.64425,-45.077111,,10,,9695,226,136,,0000-2400,1234567,935,,40000168,,, +4826.7,PRU,es,OAX7T R Sicuani,,Sicuani (cus),-14.35,-71.216667,,0.7,,10442,252,150,,0930-0400,1234567,-4826.7,,40000170,,, +4828,ZWE,,Voice of Zimbabwe,,Gweru (mdl),-19.520444,29.937,,100,,8285,157,120,,0530-0700,1234567,,,20400001,,, +4828,ZWE,,Voice of Zimbabwe,,Gweru (mdl),-19.520444,29.937,,100,,8285,157,120,,1530-1900,1234567,,,20400001,,, +4830,MNG,mn,Mongoliin R 1,,Altaii=Altay (gvi),46.3225,96.256944,,12,,6129,57,108,,0655-1500,1234567,,,40000173,,, +4830,MNG,mn,Mongoliin R 1,,Altaii=Altay (gvi),46.3225,96.256944,,12,,6129,57,108,,2200-0500,1234567,,,40000173,,, +4830,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1300-1430,1234567,,,36201276,,, +4830,CHN,hk,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1430-1500,1234567,,,36201276,,, +4831,RUS,,Intermodulation 4831 + 1089 = 5920 kHz,,Armavir/Tblisskaya/Krasnodar (KD),45.473056,40.103056,,1,,2550,93,82,,2000-2200,1234567,,,6700139,,, +4835,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629444,,10,,7129,78,118,,0100-0415,1234567,,,40000177,,, +4835,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629444,,10,,7129,78,118,,1030-1600,1234567,,,40000177,,, +4835,AUS,en,VL8A ABC Alice Springs,,Alice Springs (NT),-23.814167,133.846944,,50,,14602,75,145,,0000-2400,1234567,3,,40000178,,, +4835,PRU,es,OAX7Q Ondas del Sur Oriente,,Quillabamba (cus),-12.816667,-72.683333,,1,,10401,254,148,,0955-0235,1234567,,,40000308,,, +4840,IND,,AIR West,,Mumbai=Bombay (MH),19.182778,72.807778,,50,,6734,96,107,,1230-1730,1234567,2,,40000182,,, +4840,IND,,AIR West,,Mumbai=Bombay (MH),19.182778,72.807778,,50,,6734,96,107,,2350-0400,1234567,2,,40000182,,, +4840,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,40,7122,296,108,NAm,0100-1300,1234567,,,50009589,,, +4845,B,pt,ZYF278 Rdio Cultura (Amazonas),,Manaus (AM),-3.121725,-60.04205,,5,,8712,249,136,,0800-0200,1234567,237,,40000186,,, +4845,B,pt,ZYG869 Rdio Meteorologia Paulista,,Ibitinga/Fazenda Vista Alegre (SP),-21.773,-48.835639,,1,,9801,230,146,,0800-0200,1234567,,,40000185,,, +4850,CHN,kk,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1400-1500,1234567,,,40000668,,, +4850,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1155-1400,1234567,,,40000668,,, +4850,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1500-1800,1234567,,,40000668,,, +4850,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,2330-0300,1234567,,,40000668,,, +4850,IND,,AIR Northeast,,Kohima (NL),25.719722,94.039444,,50,,7625,75,116,,0000-0415,1234567,,,40000188,,, +4850,IND,,AIR Northeast,,Kohima (NL),25.719722,94.039444,,50,,7625,75,116,,1000-1600,1234567,,,40000188,,, +4850,PRU,es,OAW5E R Gnesis,,Huanta (aya),-12.9,-74.216667,,1,,10509,255,149,,1000-1200,1234567,,,37000038,,, +4850,PRU,es,OAW5E R Gnesis,,Huanta (aya),-12.9,-74.216667,,1,,10509,255,149,,2230-0130,1234567,,,37000038,,, +4855,PRU,es,OAZ7A R La Hora,,Cusco/Cerro Osqollo (cus),-13.519,-72.010139,,2,,10420,253,145,,1000-1500,1234567,47,,40000190,,, +4855,PRU,es,OAZ7A R La Hora,,Cusco/Cerro Osqollo (cus),-13.519,-72.010139,,2,,10420,253,145,,1700-0100,1234567,47,,40000190,,, +4860,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,,,184,,50017460,,, +4860,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,,6062,83,101,,0025-0200,1234567,,,40000264,,, +4860,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,,6062,83,101,,1235-1730,1234567,,,40000264,,, +4860,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,,6062,83,101,,1730-1741,.....67,,,40000264,,, +4865,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,,,66,,50014061,,, +4865,B,pt,ZYG366 R.Missoes da Amaznia,,bidos (PA),-1.916667,-55.516667,,5,,8316,246,133,,0900-0200,1234567,,,40000196,,, +4865,B,pt,ZYF203 Rdio Verdes Florestas,,Cruzeiro do Sul (AC),-7.618139,-72.698875,,5,90,9941,257,140,,1000-1400,1234567,0,,40000195,,, +4865,B,pt,ZYF203 Rdio Verdes Florestas,,Cruzeiro do Sul (AC),-7.618139,-72.698875,,5,90,9941,257,140,,2300-0300,1234567,0,,40000195,,, +4865,B,pt,ZYG641 Rdio Alvorada AM,,Londrina/Estrada da Cegonha (PR),-23.404444,-51.155556,,5,,10079,231,140,,0000-2400,1234567,16,,40000194,,, +4870,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,1,,3595,109,93,,,,,,50019832,,, +4870,IND,ne,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,ND,6248,85,100,NPL,1330-1430,1234567,,,50014472,,, +4870,IND,ks,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,1,,6248,85,119,SAs,0230-0310,1234567,,,50014292,,, +4870,IND,ks,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,1,,6248,85,119,SAs,1430-1510,1234567,,,50014292,,, +4870,IND,xnr,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,1,,6248,85,119,SAs,0310-0330,1234567,,,50014292,,, +4870,IND,xnr,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,1,,6248,85,119,SAs,1510-1530,1234567,,,50014292,,, +4870,EQA,,HCVB7 La Voz del Upano,,Macas (mor),-2.366667,-78.133333,,5,,9843,264,140,,1000-0800,1234567,,,40000199,,, +4870,INS,id,RRI Pro-1,,Wamena (PA-jyw),-4.103183,138.927456,,0.3,,13128,56,163,,0800-1405,1234567,93,,40000198,,, +4870,INS,id,RRI Pro-1,,Wamena (PA-jyw),-4.103183,138.927456,,0.3,,13128,56,163,,2000-0100,1234567,93,,40000198,,, +4874.6,INS,id,RRI Pro-1,,Sorong (PB-srg),-1,131.333333,,10,,12390,62,145,,0800-1300,1234567,-4874.6,,40000200,,, +4874.6,INS,id,RRI Pro-1,,Sorong (PB-srg),-1,131.333333,,10,,12390,62,145,,2000-0100,1234567,-4874.6,,40000200,,, +4875,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,1,,3595,109,93,,,,,,50019833,,, +4876,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,1,,3595,109,93,,,,,,50019834,,, +4876,B,pt,ZYG810 Rdio Roraima AM,,Boa Vista (RR),2.816667,-60.666667,,10,,8215,253,129,,0800-0405,1234567,41,,40000202,,, +4880,IND,hi,AIR North,,Lucknow (UP),26.881667,81.043333,,50,,6657,84,107,,0025-0430,1234567,,,40000204,,, +4880,IND,hi,AIR North,,Lucknow (UP),26.881667,81.043333,,50,,6657,84,107,,1215-1740,1234567,,,40000204,,, +4880,AFS,en,SW R Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,,1700-1900,1234567,2,,20300002,,, +4885,B,pt,ZYG362 Rdio Clube do Par,,Belm/Ananindeua (PA),-1.404444,-48.413556,,5,,7836,240,128,,0000-2400,1234567,2,,40000206,,, +4885,B,pt,ZYF692 Rdio Maria,,Anpolis (GO),-16.256944,-49.018889,,1,,9282,233,145,,0000-2400,1234567,,,40000208,,, +4886.6,PRU,es,R Virgen del Carmen,,Huancavelica (huv),-12.75,-75.05,,1.5,,10551,255,147,,1100-2330,1234567,-4886.6,,40000209,,, +4890.1,PRU,es,R Macedonia,,Arequipa (are),-16.416667,-71.533333,,1,,10646,251,149,,0600-0430,1234567,-4890.1,,40000212,,, +4895,MNG,mn,Mongoliin R 1,,Mrn=Murun (kgl),49.621667,100.172778,,50,,6104,52,101,,0655-1500,1234567,,,40000216,,, +4895,MNG,mn,Mongoliin R 1,,Mrn=Murun (kgl),49.621667,100.172778,,50,,6104,52,101,,2300-0500,1234567,,,40000216,,, +4895,IND,,AIR East,,Kurseong (WB),26.864722,88.258333,,20,,7145,79,115,,0055-0405,1234567,1,,40000214,,, +4895,IND,,AIR East,,Kurseong (WB),26.864722,88.258333,,20,,7145,79,115,,1130-1700,1234567,1,,40000214,,, +4895,IND,,AIR East,,Kurseong (WB),26.864722,88.258333,,20,,7145,79,115,,1700-1740,1.....7,1,,40000214,,, +4895,AFS,,Zimbabwe Community R.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,,1755-1855,1234567,45,,20300006,,, +4895,B,pt,ZYR200 Rdio IPB-Novo Tempo,,Campo Grande (MS),-20.561267,-54.636069,,5,,10000,235,140,,0000-2400,1234567,91,,40000217,,, +4895,AFS,en,Amateur R Today,,Meyerton (SW) (GT),-26.585833,28.138889,,1,,9003,160,144,SAf,1630-1730,1......,,,50022445,,, +4905,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2300-2400,1234567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0000-0700,1234567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0800-0950,1.34567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0950-1600,1234567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1700-1805,1234567,1,,40000221,,, +4905,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2050-2230,1234567,1,,40000221,,, +4905,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0700-0800,1.34567,1,,40000221,,, +4905,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1600-1700,1234567,1,,40000221,,, +4905,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2230-2300,1234567,1,,40000221,,, +4905,B,pt,ZYG683 Rdio Relgio Federal,,Rio de Janeiro/So Gonalo (RJ),-22.780389,-42.993667,,5,,9607,225,139,,0730-0200,1234567,,,40000219,,, +4909.3,EQA,es,R Chaskis del Norte,,Otavalo (imb),0.216667,-78.25,,0.5,,9624,266,149,,1000-0530,1234567,-4909.3,,40000224,,, +4910,IND,,AIR North,,Jaipur (RJ),26.91,75.748611,,50,,6294,88,103,,0025-0415,1234567,,,40000226,,, +4910,IND,,AIR North,,Jaipur (RJ),26.91,75.748611,,50,,6294,88,103,,1130-1740,1234567,,,40000226,,, +4910,ZMB,en,CVC Christian Voice,,Lusaka/Makeni Ranch (lsk),-15.538578,28.002717,,100,ND,7806,158,115,,0200-0515,1234567,,,50019194,,, +4910,ZMB,en,CVC Christian Voice,,Lusaka/Makeni Ranch (lsk),-15.538578,28.002717,,100,ND,7806,158,115,,1600-2200,1234567,,,50019194,,, +4910,AUS,en,VL8T ABC Darwin,,Tennant Creek (NT),-19.669722,134.2625,,50,,14272,71,144,,2130-0830,1234567,,,40000227,,, +4915,B,pt,ZYF360 Rdio Difusora Amap,,Macap (AP),0.011181,-51.064406,,10,,7862,243,126,,0000-2400,1234567,97,,40000230,,, +4915,B,pt,ZYF691 Rdio Daqui,,Goinia/Fazenda Botafogo (GO),-16.659167,-49.227222,,10,,9332,233,135,,0900-0400,1234567,962,,40000231,,, +4919,EQA,es,HCQR1 R Quito,,Quito (pic),-0.233333,-78.5,,5,,9681,266,139,,2200-1300,1234567,,,40000232,,, +4920,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2300-2400,1234567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0000-0700,1234567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0800-0950,12.4567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0950-1600,1234567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1700-1805,1234567,,,40000234,,, +4920,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2050-2230,1234567,,,40000234,,, +4920,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0700-0800,12.4567,,,40000234,,, +4920,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1600-1700,1234567,,,40000234,,, +4920,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2230-2300,1234567,,,40000234,,, +4920,IND,hi,AIR South,,Chennai=Madras (TN),13.135556,80.125278,,50,,7749,95,118,,0015-0245,1234567,,,40000235,,, +4920,IND,hi,AIR South,,Chennai=Madras (TN),13.135556,80.125278,,50,,7749,95,118,,1200-1740,1234567,,,40000235,,, +4925,B,pt,ZYF271 Rdio Educao Rural,,Tef (AM),-3.351389,-64.711667,,5,,9034,253,137,,1030-0300,1234567,22,,40000237,,, +4925,INS,id,RRI Pro-1,,Jambi (JA-jam),-1.633333,103.566667,,10,,10639,85,139,,0900-1600,1234567,,,40000236,,, +4925,INS,id,RRI Pro-1,,Jambi (JA-jam),-1.633333,103.566667,,10,,10639,85,139,,1900-2200,1234567,,,40000236,,, +4925,INS,id,RRI Pro-1,,Jambi (JA-jam),-1.633333,103.566667,,10,,10639,85,139,,2200-0205,1234567,,,40000236,,, +4930,BOT,ZWE,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,ZWE,1700-1800,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1720-1740,....567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1730-1800,1234...,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1830-1930,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1930-2000,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,2000-2100,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,0300-0600,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,1400-1700,1234567,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,1800-1830,.....67,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,1800-1830,12345..,1,,50003933,,, +4930,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,SAf,1830-2100,1234567,1,,50003933,,, +4930,BOT,nd,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1740-1800,....567,1,,50003933,,, +4930,BOT,sn,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1700-1720,....567,1,,50003933,,, +4930,BOT,sn,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,20,8490,160,122,,1700-1730,1234...,1,,50003933,,, +4935,B,pt,ZYF641 Rdio Capixaba,,Vitria (ES),-20.390944,-40.368822,,1,,9246,223,145,,0000-2400,1234567,237,,40000242,,, +4940,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,,1900-1930,1234567,0,,50003934,,, +4940,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,,1930-2000,1234567,0,,50003934,,, +4940,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,,2000-2030,1234567,0,,50003934,,, +4940,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,2030-2100,.....67,0,,50003934,,, +4940,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,2030-2100,12345..,0,,50003934,,, +4940,IND,,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,,7430,77,114,,0000-0415,1234567,5,,40000246,,, +4940,IND,,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,,7430,77,114,,0415-0450,......7,5,,40000246,,, +4940,IND,,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,,7430,77,114,,1115-1700,12345.7,5,,40000246,,, +4940,IND,,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,,7430,77,114,,1700-1741,.....6.,5,,40000246,,, +4940,CHN,en,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1500-1530,.....6.,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0000-0400,1234567,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0400-0950,12.4567,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0950-1500,1234567,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1500-1530,12345.7,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1530-1600,1234567,73,,36200264,,, +4940,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,2225-2400,1234567,73,,36200264,,, +4940,PRU,es,OAW5A R San Antonio,,Villa Atalaya (uca),-10.716667,-73.766667,,1,,10287,256,148,,1000-1300,1234567,97,,40000247,,, +4940,PRU,es,OAW5A R San Antonio,,Villa Atalaya (uca),-10.716667,-73.766667,,1,,10287,256,148,,2200-0200,1234567,97,,40000247,,, +4949.75,AGL,pt,RNA Canal A,,Mulenvos/Baixo (lua),-8.854444,13.316667,,10,,6811,172,115,,0000-2400,1234567,752,,40000250,,, +4950,IND,,AIR North/AIR R Kashmir,,Srinagar (JK),34.03,74.905833,,50,,5680,82,97,,0000-0120,1......,986,,40000252,,, +4950,IND,,AIR North/AIR R Kashmir,,Srinagar (JK),34.03,74.905833,,50,,5680,82,97,,0120-0215,1234567,986,,40000252,,, +4950,IND,,AIR North/AIR R Kashmir,,Srinagar (JK),34.03,74.905833,,50,,5680,82,97,,1120-1743,1234567,986,,40000252,,, +4950,PRU,es,OBX7I R Madre de Dios,,Puerto Maldonado/San Jacinto (mdd),-12.616667,-69.183333,,5,,10156,251,141,,1000-0150,1234567,762,,40000253,,, +4955,PRU,es,OAX5S R Cultural Amauta,,Huanta/Pasaje Amauta (aya),-12.923889,-74.247778,,5,,10514,255,142,,0930-1400,1234567,0,,40000255,,, +4955,PRU,es,OAX5S R Cultural Amauta,,Huanta/Pasaje Amauta (aya),-12.923889,-74.247778,,5,,10514,255,142,,2100-0150,1234567,0,,40000255,,, +4960,TJK,AFG,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,180,4943,82,86,AFG,1200-1400,1234567,,,50020264,,, +4960,TJK,en,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,180,4943,82,86,ME,1400-1900,1234567,,,50020264,,, +4960,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,0400-0500,1234567,994,,50003936,,, +4960,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,0530-0630,12345..,994,,50003936,,, +4960,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,0500-0530,1234567,994,,50003936,,, +4960,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,30,5762,180,95,WAf,0700-0730,1234567,994,,50003936,,, +4965,B,pt,ZYF275 Rdio Alvorada,,Parintins (AM),-2.638878,-56.725622,,5,,8458,247,135,,2200-0200,1234567,,,40000265,,, +4965,PRU,es,OAZ7B R Santa Mnica,,Cerro Osccollopata (cus),-14.066667,-71.833333,,1,,10457,252,149,,0800-0400,1234567,,,40000266,,, +4970,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440389,91.807667,,50,,7500,77,115,,0025-0400,1234567,,,40000269,,, +4970,IND,,AIR Northeast,,Shillong/Mawjrong (ML),25.440389,91.807667,,50,,7500,77,115,,1056-1630,1234567,,,40000269,,, +4974.8,PRU,es,OAZ4X Pacfico R,,Lima/El Agustino (lim),-12.038833,-76.98175,,5,,10617,257,142,,1030-1400,1234567,75,,40000270,,, +4974.8,PRU,es,OAZ4X Pacfico R,,Lima/El Agustino (lim),-12.038833,-76.98175,,5,,10617,257,142,,2300-0100,1234567,75,,40000270,,, +4974.9,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/FJTS102 (FJ),26.023333,119.276667,,10,,9165,57,134,,0930-1030,1234567,-4974.9,,40000271,,, +4974.9,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/FJTS102 (FJ),26.023333,119.276667,,10,,9165,57,134,,2250-2320,1234567,-4974.9,,40000271,,, +4975,B,pt,ZYG865 Rdio Iguatemi,,So Paulo (SP),-23.514294,-46.595589,,1,,9855,227,147,,0000-2400,1234567,997,,40000273,,, +4976,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,0215-0345,.23456.,965,,40000274,,, +4976,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,0345-0600,1234567,965,,40000274,,, +4976,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,1300-1400,12345..,965,,40000274,,, +4976,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,1400-2105,.....67,965,,40000274,,, +4980,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1500-1600,1234567,,,40000275,,, +4980,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1130-1500,1234567,,,40000275,,, +4980,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1600-1800,1234567,,,40000275,,, +4980,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0300,1234567,,,40000275,,, +4985,B,pt,ZYF690 Rdio Brasil Central,,Goinia/Fazenda Bananal (GO),-16.588014,-49.216389,,10,,9325,233,135,,0000-2400,1234567,11,,40000277,,, +4985,PRU,es,OAW4G R Manantial,,Huancayo (jun),-12.133333,-75.266667,,1,,10511,256,149,,0000-2400,1234567,38,,37000043,,, +4990,IND,,AIR Northeast,,Itanagar (AR),27.0775,93.590556,,50,,7482,75,115,,0020-0400,1234567,,,40000280,,, +4990,IND,,AIR Northeast,,Itanagar (AR),27.0775,93.590556,,50,,7482,75,115,,1000-1630,1234567,,,40000280,,, +4990,CHN,zh,Hunan RGD,,Xiangtan (HN),27.849444,112.950556,,10,,8633,60,133,,2100-1700,1234567,979,,40000279,,, +4990,SUR,xx,R Apintie,,Paramaribo (pmb),5.866667,-55.233333,,0.5,180,7587,250,136,,0600-0300,1234567,98,,40000282,,, +4996,RUS,,RWM,,Elektrougli (MO),55.737778,38.153889,,5,,2098,66,71,,0000-2400,1234567,,,6700070,,, +4998,E,es,EBC,,San Fernando/ROA (AND-CA),36.464222,-6.206111,,10,,2002,215,67,,1030-1055,12345..,,,2200017,,, +5000,I,,IBF,,Torino/Torre Bert (to),45.043711,7.703583,,0.1,,791,173,75,,0000-2400,1234567,,,4000041,,, +5000,CHN,,BPM,,Lintong/Pucheng (SA),34.947778,109.552389,,10,,7813,58,125,,0000-2400,1234567,,,36200216,,, +5000,USA,en,WWV,,Fort Collins (CO),40.678361,-105.04025,,10,,7770,311,125,,0000-2400,1234567,,,20000085,,, +5000,KOR,,HLA,,Daejon=Daejeon (daj),36.387611,127.366681,,2,,8634,45,139,,0100-0800,12345..,,,34600005,,, +5000,HWA,en,WWVH,,Kekaha (HI),21.986333,-159.762444,,10,,11667,347,143,,0000-2400,1234567,,,20000090,,, +5000,EQA,,HD2IOA,l,Guayaquil/Base Naval Sur (gua),-2.268889,-79.906667,,1,,9955,266,147,,1200-1300,1234567,,,32600008,,, +5005,GNE,,R.Nacional Guinea Ecuatorial,,Bata/Nsueeman (bat),1.825833,9.779167,,100,,5600,176,93,,0530-2213,1234567,2,,40000287,,, +5005.7,PRU,es,R LTC,,Juliaca/Cerro 3 de Mayo (pun),-15.5,-70.083333,,1,,10471,250,149,,0900-0200,1234567,-5005.7,,40000289,,, +5006,J,,JG2XA HFD R,,Tokyo/UEC Chofu (kan-tok),35.657194,139.544444,,0.2,,9248,37,151,,0000-2400,1234567,,,31400015,,, +5010,IND,,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,,7942,100,119,,0020-0215,1234567,7,,40000291,,, +5010,IND,,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,,7942,100,119,,1130-1740,1234567,7,,40000291,,, +5010,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,1,,7449,61,131,FE,2200-2400,1234567,,,50023659,,, +5010,DOM,es,R Pueblo,,Santo Domingo (sdo),18.516667,-69.866667,,1,,7464,271,132,,1100-0430,1234567,,,21100003,,, +5010,IND,ml,FEBA R,,Thiruvananthapuram (KL),8.456111,76.936944,,1,,7942,100,136,SAs,1130-1200,1234567,,,50010149,,, +5010,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,1,,9444,57,145,FE,2200-2400,1234567,,,50023660,,, +5014.7,PRU,es,OBZ4B R Altura,,Cerro de Pasco (pas),-10.716667,-76.25,,5,,10452,258,142,,0950-0350,1234567,-5014.7,,40000292,,, +5015,TKM,,TR1 Watan R,,Aşgabat/Karatamak (asb),37.859444,58.367222,,50,,4275,91,83,,0100-2100,1234567,,,40000293,,, +5015,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,100,,8843,141,123,,0230-2100,12345..,902,,40000290,,, +5015,B,pt,ZYF903 Rdio Cultura de Cuiab,,Cuiab (MT),-15.618667,-56.097756,,1,90,9621,239,146,,0000-2400,1234567,95,,36902752,,, +5020,SLM,en,SIBC R Hapi Isles,,Honiara/Henderson Field (cth),-9.435556,160.06,,10,,14705,36,153,,1856-1200,1234567,87,,40000297,,, +5024.9,PRU,es,OAX7Q R Quillabamba,,Quillabamba (cus),-12.816667,-72.683333,,5,,10401,254,141,,0700-0300,1234567,91,,40000765,,, +5025,CUB,es,R Rebelde,,Bauta/Corralillo (ch),22.951111,-82.546111,,100,,7945,284,117,,0000-2400,1234567,3,,40000768,,, +5025,AUS,en,VL8K ABC Darwin,,Katherine (NT),-14.395,132.179444,,50,,13671,69,142,,2130-0830,1234567,987,,40000767,,, +5030,MLA,ms,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,,10817,78,140,ND,2200-1000,1234567,,,50013434,,, +5030,MLA,ms,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,1000-1600,1234567,,,50013434,,, +5030,PRU,es,OAZ2A R.Virgen de la Alta Gracia,,Huamachuco (lal),-7.8,-78.066667,,3,,10317,261,143,,1000-1400,1234567,,,37000045,,, +5030,PRU,es,OAZ2A R.Virgen de la Alta Gracia,,Huamachuco (lal),-7.8,-78.066667,,3,,10317,261,143,,2030-0400,1234567,,,37000045,,, +5035,CAF,fr,R Centrafrique,,Bangui (bgf),4.323611,18.520833,,1,,5430,164,111,,1630-1940,1234567,2,,9300003,,, +5035,B,pt,ZYG853 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,10,,9721,226,136,,0830-0400,123456,5,,40000776,,, +5035,B,pt,ZYG853 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,10,,9721,226,136,,0900-0300,......7,5,,40000776,,, +5035,B,pt,ZYF272 Rdio Educao Rural,,Coar (AM),-4.09425,-63.137389,,5,,8999,251,137,,1000-0045,1234567,,,36902882,,, +5039.3,PRU,es,OCY4Y R Libertad,,Junn (jun),-12.183333,-75.166667,,1,,10509,256,149,,1000-1330,1234567,18,,37000047,,, +5039.3,PRU,es,OCY4Y R Libertad,,Junn (jun),-12.183333,-75.166667,,1,,10509,256,149,,2230-0205,1234567,18,,37000047,,, +5039.9,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/FJTS102 (FJ),26.023333,119.276667,,10,140,9165,57,134,,0925-1035,1234567,-5039.9,,40000777,,, +5039.9,CHN,,Fujian RGD Xinwen Zhonghe Guangbo,,Fuzhou/FJTS102 (FJ),26.023333,119.276667,,10,140,9165,57,134,,2235-2325,1234567,-5039.9,,40000777,,, +5040,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0500-0600,1234567,,,50015977,,, +5040,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,CAm,2300-2400,1234567,,,50015977,,, +5040,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0100-0400,1234567,,,50015977,,, +5040,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0400-0500,1234567,,,50015977,,, +5040,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,CAm,0100-0500,1234567,,,50015977,,, +5040,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,Car,2100-2300,1234567,,,50015977,,, +5040,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,CAm,0030-0100,1234567,,,50015977,,, +5040,CUB,ht,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,CAm,0000-0030,1234567,,,50015977,,, +5040,IND,,AIR East,,Jeypore (OR),18.921389,82.561667,,10,,7421,89,121,,0025-0435,1234567,11,,40000778,,, +5040,IND,,AIR East,,Jeypore (OR),18.921389,82.561667,,10,,7421,89,121,,0435-0445,1......,11,,40000778,,, +5040,IND,,AIR East,,Jeypore (OR),18.921389,82.561667,,10,,7421,89,121,,1130-1741,1234567,11,,40000778,,, +5050,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705833,,10,,7702,78,124,,0025-0400,1234567,,,40000784,,, +5050,IND,,AIR Northeast,,Aizawl (MZ),23.734167,92.705833,,10,,7702,78,124,,1130-1630,1234567,,,40000784,,, +5050,USA,en,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,1,,7115,295,128,NAm,2200-0500,1234567,,,50023661,,, +5050,CHN,,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2240-2300,1234567,,,40000783,,, +5050,CHN,ct,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1000-1100,1234567,,,40000783,,, +5050,CHN,th,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1100-1130,12345..,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,0000-0100,12345..,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1100-1130,.....67,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1130-1330,1234567,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1500-1600,1234567,,,40000783,,, +5050,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2300-2400,....56.,,,40000783,,, +5050,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,0000-0100,.....67,,,40000783,,, +5050,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1330-1500,1234567,,,40000783,,, +5050,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2300-2400,1234..7,,,40000783,,, +5059.2,PRU,es,La Voz de las Huarinjas,,Huancabamba (piu),-5.283333,-79.466667,,0.25,,10190,264,154,,1000-0215,1234567,-5059.2,,40000579,,, +5060,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1200-1800,1234567,986,,40000305,,, +5060,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0300,1234567,986,,40000305,,, +5066.4,COD,fr,R.Candip/Voix du Peuple,,Bunia (ksi),2,30.333333,,1,,5998,150,117,,0400-0900,1234567,-5066.4,,40000306,,, +5066.4,COD,fr,R.Candip/Voix du Peuple,,Bunia (ksi),2,30.333333,,1,,5998,150,117,,1300-1905,1234567,-5066.4,,40000306,,, +5066.5,OCE,,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,-5066.5,,37500008,,, +5070,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,1,,7122,296,128,NAm,2300-0100,1234567,,,50022446,,, +5080,PAK,fa,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,ND,5607,84,93,,1445-1545,1234567,,,50019836,,, +5080,PAK,ps,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,ND,5607,84,93,,1345-1445,1234567,,,50019836,,, +5085,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,NAm,0000-0100,1234567,,,50017763,,, +5085,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,NAm,0100-1300,1234567,,,50017763,,, +5085,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,NAm,1300-1500,9999999,,,50017763,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0015-0215,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0245-0330,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0400-0500,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0600-0945,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1015-1715,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1800-1845,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1915-2045,1234567,,,37700104,,, +5100,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2215-2400,1234567,,,37700104,,, +5110,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,0000-0300,....567,,,50015981,,, +5110,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0000-0400,1234567,,,50015981,,, +5110,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0000-2400,1234567,,,50015981,,, +5110,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0400-1100,.23456.,,,50015981,,, +5130,KGZ,AFG,R Sedaye Zindagi,,Krasnaya Rechka (cuy),42.882222,74.991667,,1,,5055,73,108,AFG,1630-1900,1234567,965,,50019572,,, +5195,D,,DRA5 aurora beacon,c,Scheggerott (shs),54.668453,9.823456,,0.03,,363,37,76,,0000-2400,1234567,9970,,2000022,,, +5258.6,CZE,,OK1IF,b,Liberec JO70MS,49.6,15.5,,0.005,,696,110,87,,,,-5258.6,?,55014,,, +5289.5,DNK,,OV1BCN,b,Vinstrup,55.35,11.533333,,0.03,,493,41,77,,,,-5289.5,Fold.Dip usb+cw+MT63 24,55015,,, +5290,G,,GB3RAL,b,near Didcot (EN-OXF),51.55,-1.283333,,0.01,,532,266,82,,,,,Inv. Vee A1+psk zzz,55016,,, +5290,G,,GB3WES,b,Cumbria (EN-CUM),54.55,-2.616667,,0.01,,657,298,84,,,,,Inv. Vee A1+psk zzz,55017,,, +5290,G,,GB3ORK,b,Orkney (SC-ORK),59.016667,-3.2,,0.01,,975,326,87,,,,,Inv. Vee A1+psk zzz,55018,,, +5315,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800021,,, +5323.6,PRU,es,La Voz del Anta,,Acobamba (huv),-12.866667,-74.566667,,1,,10530,255,149,,????-1200,1234567,-5323.6,,40000446,,, +5323.6,PRU,es,La Voz del Anta,,Acobamba (huv),-12.866667,-74.566667,,1,,10530,255,149,,????-2350,1234567,-5323.6,,40000446,,, +5384.3,PRU,es,R Huarmaca,,Huarmaca (piu),-5.6,-79.583333,,0.3,,10226,263,153,,1100-0100,1234567,-5384.3,,40000321,,, +5398.5,GRC,,SZ1SV,b,,37.966667,23.7,,0.03,,2067,133,93,,,,-5398.5,psk31 H+0+15+30+45,55019,,, +5415,ARG,es,R Continental/La Red,l,Buenos Aires (df),-34.633333,-58.466667,,5,,11512,230,145,,,,,,40000322,,, +5433,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800022,,, +5450,G,en,MVU RAF Volmet,u,St Eval (EN-CNW),50.478167,-4.999583,,10,,813,262,55,,0000-2400,1234567,,,2800010,,, +5451,URG,,Carrasco Volmet,u,Carrasco (mo),-34.824722,-56.019444,,1,,11403,228,152,,1015-2025,1234567,,,31200013,,, +5451,URG,es,Carrasco Volmet,u,Carrasco (mo),-34.824722,-56.019444,,1,,11403,228,152,,:15-:24,1234567,,,31200013,,, +5460.2,PRU,es,R Emisora Bolvar,,Bolvar (lal),-16.3,-77.433333,,0.5,,11020,255,153,,1000-0310,1234567,90,,40000326,,, +5475,ARG,es,Salta Volmet,u,Salta (sa),-24.833333,-65.45,,1,,11018,241,150,,:15-:24,1234567,,,33000041,,, +5475,ARG,es,Crdoba Volmet,u,Crdoba (cb),-31.309444,-64.216944,,1,,11526,236,152,,:25-:34,1234567,,,33000039,,, +5485.6,PRU,es,R Frecuencia Popular,,Olmos (lam),-5.983333,-79.75,,0.5,,10271,263,151,,1000-0200,1234567,-5485.6,,37000034,,, +5486.7,PRU,es,R Reina de la Selva,,Chachapoyas (ama),-6.216667,-77.9,,0.06,,10166,262,160,,1000-0130,1234567,-5486.7,,40000328,,, +5493,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100002,,, +5493,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500004,,, +5505,IRL,en,EIP Shannon Volmet,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100006,,, +5517,LBY,,Tripoli Aero,u,Tarabulus=Tripoli (tbl),32.905864,13.290006,,1,,2206,163,79,,,,,,4800005,,, +5517,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300006,,, +5517,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400004,,, +5517,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600006,,, +5517,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300002,,, +5517,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500004,,, +5517,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500002,,, +5520,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012409,,, +5520,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902908,,, +5526,GUF,,Cayenne Aero,u,Cayenne (973),4.824111,-52.361667,,1,,7499,247,132,,,,,,32300001,,, +5526,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400006,,, +5526,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500023,,, +5526,ARG,,Ezeiza Aero,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,,,,,33000063,,, +5541,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800049,,, +5544,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900004,,, +5547,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012429,,, +5547,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012468,,, +5550,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012385,,, +5550,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902901,,, +5550,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100012,,, +5553,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902869,,, +5565,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000008,,, +5565,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100003,,, +5565,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300015,,, +5574,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012428,,, +5574,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012467,,, +5580.3,BOL,es,R San Jos,,San Jos de Chiquitos (scz),-17.844444,-60.738889,,0.25,,10102,241,153,,1030-0200,1234567,28,,40000332,,, +5587.1,CLM,es,R Juventud,,Pasto (nar),1.216667,-77.283333,,1,,9470,266,145,,????-0200,1234567,-5587.1,,35902899,,, +5589,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500004,,, +5589,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100013,,, +5597,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,0330-0430,1234567,,,33200006,,, +5597,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,0945-1100,1234567,,,33200006,,, +5597,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,1145-1400,1234567,,,33200006,,, +5597,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,2200-2300,1234567,,,33200006,,, +5598,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100012,,, +5598,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,0000-2400,1234567,,,700001,,, +5598,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,2030-0830,1234567,,,20109256,,, +5598,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2000-1700,1234567,,,20012389,,, +5601,ARG,es,Ezeiza Volmet,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,:15-:25,1234567,,,33000043,,, +5602,PRU,es,R San Francisco,,San Francisco (cus),-12.6,-73.816667,,1,,10457,255,149,,2230-0200,1234567,,,37000048,,, +5616,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100018,,, +5616,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200001,,, +5616,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0000-2400,1234567,,,20109257,,, +5622,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700100,,, +5628,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012483,,, +5628,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012458,,, +5634,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200014,,, +5634,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500009,,, +5634,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300016,,, +5643,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012449,,, +5643,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500004,,, +5643,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700076,,, +5643,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700081,,, +5643,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500004,,, +5643,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500033,,, +5649,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100020,,, +5649,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200008,,, +5649,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0000-2400,1234567,,,20109265,,, +5652,ALG,,Alger Aero,u,Algiers (16),36.7,3.2,,1,,1732,190,74,,,,,,200012,,, +5652,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012450,,, +5652,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012500,,, +5655,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900011,,, +5658,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300010,,, +5658,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900012,,, +5658,DJI,,Djibouti Aero,u,Djibouti (djb),11.535556,43.156667,,1,,5583,130,113,,,,,,8800003,,, +5658,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600016,,, +5658,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500010,,, +5658,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200030,,, +5658,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500003,,, +5661,MLT,,Malta Aero,u,Benghisa (mt),35.815694,14.528403,,1,,1922,157,76,,,,,,5800001,,, +5667,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012459,,, +5668,URG,es,Emisora Chan FM,,Tacuaremb (ta),-31.733333,-55.983333,,1,,11116,230,151,,0900-1440,1234567,,,31200001,,, +5668,URG,es,Emisora Chan FM,,Tacuaremb (ta),-31.733333,-55.983333,,1,,11116,230,151,,2300-0200,1234567,,,31200001,,, +5670,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0300-0700,1234567,,,8400005,,, +5670,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200031,,, +5670,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200028,,, +5673,CHN,en,Beijing Volmet,u,Beijing/Airport (BJ),40.087778,116.605556,,1,,7757,50,135,,0915-1700,1234567,,,36200226,,, +5673,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:00-:14,1234567,,,36200222,,, +5673,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:30-:44,1234567,,,36200222,,, +5680,IRL,en,Shanwick SAR,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,????-????,1234567,,,4100036,,, +5680,NOR,,Bod SAR,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,????-????,1234567,,,6300027,,, +5680,FJI,,Nadi SAR,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500012,,, +5680,OCE,,Tahiti SAR,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500012,,, +5691,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:00-:04,1234567,,,6700043,,, +5691,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:30-:34,1234567,,,6700043,,, +5691,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:25-:29,1234567,,,6700059,,, +5691,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:55-:59,1234567,,,6700059,,, +5691,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:10-:14,1234567,,,6700047,,, +5691,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:40-:44,1234567,,,6700047,,, +5691,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:20-:24,1234567,,,6700055,,, +5691,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:50-:54,1234567,,,6700055,,, +5691,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:15-:19,1234567,,,6700051,,, +5691,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:45-:49,1234567,,,6700051,,, +5696,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,????-????,1234567,,,20000103,,, +5720,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200019,,, +5745,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,ENA,0230-0300,......7,,,50021790,,, +5745,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,ENA,0930-1000,......7,,,50021790,,, +5755,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1100-1715,1234567,,,37700108,,, +5755,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1845,1234567,,,37700108,,, +5755,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1915-2045,1234567,,,37700108,,, +5765,GUM,en,AFN,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,0900-2100,1234567,,,20000016,,, +5770,MYA,my,Myanmar Defence Forces BC,,Taunggyi/Kalaw (shn),20.636944,96.591667,,10,,8224,77,129,,0030-0430,1234567,18,,40000341,,, +5770,MYA,my,Myanmar Defence Forces BC,,Taunggyi/Kalaw (shn),20.636944,96.591667,,10,,8224,77,129,,0630-0930,1234567,18,,40000341,,, +5770,MYA,my,Myanmar Defence Forces BC,,Taunggyi/Kalaw (shn),20.636944,96.591667,,10,,8224,77,129,,1130-1530,1234567,18,,40000341,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0000-0015,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0100-0115,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0200-0215,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0300-0315,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0400-0415,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0900-0915,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1000-1015,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1100-1115,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1200-1215,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1300-1315,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1400-1415,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1500-1515,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1600-1615,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2100-2115,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2200-2215,1234567,,,32500042,,, +5807,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2300-2315,1234567,,,32500042,,, +5810,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,0000-0500,1234567,,,50000077,,, +5820,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2230-2400,1234567,,,50022447,,, +5820,AFS,en,RT R Worldwide,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,1930-2000,1234567,,,50011864,,, +5825,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023662,,, +5830,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,1730-1930,1234567,,,50022450,,, +5830,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,50,7067,296,108,NAm,0000-0100,1234567,,,50019574,,, +5830,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,50,7067,296,108,NAm,0100-1400,1234567,,,50019574,,, +5830,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,50,7067,296,108,NAm,1400-1500,9999999,,,50019574,,, +5830,USA,en,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,50,7067,296,108,,0000-1400,1234567,,,50019574,,, +5830,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023663,,, +5830,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2300-2400,1234567,,,50023664,,, +5833,D,,DAO24 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,,,2000058,,, +5836,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,,,20016135,,, +5845,THA,bn,BBC WS,d,Nakhon Sawan (nsn),15.810278,100.064167,,100,290,8872,77,123,SAs,1330-1400,1234567,,,50016519,,, +5845,THA,en,BBC WS,d,Nakhon Sawan (nsn),15.810278,100.064167,,100,290,8872,77,123,SAs,1400-1800,1234567,,,50016519,,, +5850,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,0000-0300,1234567,,,50022452,,, +5850,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,1930-2400,1234567,,,50022452,,, +5855,MRA,ko,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1900,1234567,,,50022453,,, +5857.5,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,0000-2400,1234567,-5857.5,,34600011,,, +5860,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,0000-0300,1234567,,,50022454,,, +5860,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,58,4199,110,75,IRN,0300-0330,1234567,,,50003981,,, +5860,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,,8219,99,115,IRN,2230-2400,1234567,,,50003982,,, +5860,CHN,zh,Jingling zhi Sheng,,Nanjing (JS),32.033333,118.733333,,50,161,8589,54,125,,1430-1605,1234567,,,40000349,,, +5865,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,0400-0500,1234567,,,50022455,,, +5865,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0500-0600,1234567,,,50022455,,, +5865,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0600-0700,1234567,,,50022455,,, +5865,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0605-0700,1234567,,,50022455,,, +5865,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0600-0605,1234567,,,50022455,,, +5865,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1800-2100,1234567,,,50023665,,, +5865,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1800-2100,1234567,,,50022457,,, +5875,G,ar,BBC WS,d,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,EAf,0300-0400,1234567,,,50009601,,, +5875,G,en,BBC WS,d,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,SEu,0700-0800,1234567,,,50009601,,, +5875,G,en,BBC WS,d,Woofferton (EN-SHP),52.313333,-2.722778,,100,114,622,276,43,SEu,0800-0900,1234567,,,50009601,,, +5875,BUL,de,KBS World R,D,Sofia/Kostinbrod (sof),42.808889,23.186944,,1,,1624,123,73,Eu,1900-2000,1234567,,,50022458,,, +5875,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,CAf,0500-0600,1234567,,,50020343,,, +5875,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023666,,, +5875,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,325,8872,77,119,SAs,1630-1700,1234567,,,50009602,,, +5875,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,325,8872,77,119,FE,1200-1500,1234567,,,50009602,,, +5875,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,AFG,1700-1730,1234567,,,50009602,,, +5875,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,AFG,1800-1900,1234567,,,50009602,,, +5875,THA,my,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,325,8872,77,119,SEA,0000-0030,1234567,,,50009602,,, +5875,THA,ps,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,AFG,1730-1800,1234567,,,50009602,,, +5875,THA,km,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,144,8917,74,120,SEA,1115-1130,1234567,,,50014480,,, +5875,THA,lo,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,30,8917,74,120,SEA,1130-1145,1234567,,,50014480,,, +5875,THA,my,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,284,8917,74,120,SEA,1145-1200,1234567,,,50014480,,, +5875,THA,vi,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,144,8917,74,120,SEA,1100-1115,1234567,,,50014480,,, +5875,PHL,ko,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1900-2100,1234567,,,50022459,,, +5875,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023667,,, +5885,CVA,ar,VoA Darfur,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0300-0330,1234567,,,50022462,,, +5885,BUL,de,KBS World R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,1900-2000,1234567,,,50022461,,, +5885,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,46,4199,110,75,,1000-1100,1234567,,,50021643,,, +5885,KWT,km,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,78,4199,110,75,,2230-2330,1234567,,,50020345,,, +5885,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,0330-0830,1234567,,,50022463,,, +5885,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023668,,, +5885,CLN,km,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,2230-2330,1234567,,,50022464,,, +5885,THA,ru,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2000-2100,1234567,,,50022465,,, +5885,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023669,,, +5890,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1800-1900,1234567,,,50022466,,, +5890,UZB,en,BBC WS,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0000-0100,1234567,,,50023670,,, +5890,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,,0000-0100,.23456.,,,50004001,,, +5890,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,,2330-2400,12345..,,,50004001,,, +5890,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,,0200-1200,1234567,,,50009605,,, +5890,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,NAm,0300-1300,1234567,,,50009605,,, +5890,MRA,ko,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1200-1500,1234567,,,50022467,,, +5895,NOR,en,R Romania Int.,D,Kvitsy (ro),59.066667,5.4375,,65,220,776,356,47,,1800-1830,1234567,,,50019202,,, +5895,BUL,en,Brother Stair,d,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,1600-1800,1234567,,,50023672,,, +5895,BUL,en,Brother Stair,d,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,2000-2200,1234567,,,50023672,,, +5895,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0000-2400,9999999,,,6800045,,, +5895,NOR,no,LKB/LLE-3 Bergen Kringkaster,u,Erdal (ho),60.448778,5.216944,,0.05,,930,356,79,,0500-0800,.23....,,,6300043,,, +5895,NOR,no,LKB/LLE-3 Bergen Kringkaster,u,Erdal (ho),60.448778,5.216944,,0.05,,930,356,79,,0730-1000,.....6.,,,6300043,,, +5895,NOR,no,LKB/LLE-3 Bergen Kringkaster,u,Erdal (ho),60.448778,5.216944,,0.05,,930,356,79,,1400-1600,...4...,,,6300043,,, +5895,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023671,,, +5895,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023673,,, +5900,BUL,de,RTR2 Powerstation,,Sofia/Kostinbrod (sof),42.808889,23.186944,,50,306,1624,123,56,,1800-2000,9999999,,,800006,,, +5900,RUS,en,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,FE,1500-1800,1234567,,,50022468,,, +5900,RUS,mn,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,MNG,1300-1400,123456,,,50022469,,, +5900,RUS,zh,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,FE,1000-1300,1234567,,,50022469,,, +5905,UZB,bn,FEBA R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0000-0030,1234567,,,50022471,,, +5905,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,1200-1400,1234567,,,50004011,,, +5905,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,ND,5347,76,91,CAs,0100-0200,1234567,,,50004011,,, +5905,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,0,0400-0530,1234567,,,50017882,,, +5905,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,EAf,0300-0400,1234567,,,50017882,,, +5905,ASC,pt,Deutsche Welle,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,100,6960,203,103,SAf,0530-0600,1234567,,,50020350,,, +5905,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023674,,, +5905,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,2300-2400,1234567,,,50022470,,, +5905,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023675,,, +5910,F,es,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,290,660,211,37,CAm,0400-0430,1234567,,,50020351,,, +5910,AUT,pl,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,30,849,119,46,300,0544-0600,12345..,,,50020353,,, +5910,AUT,pl,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,30,849,119,46,Eu,0644-0659,12345..,,,50020353,,, +5910,LTU,ru,NHK R Japan,,Kaunas/Sitkūnai (Kau),55.043611,23.807778,,100,,1191,67,49,Eu,0430-0500,1234567,,,50022474,,, +5910,ROU,,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,240,1660,112,54,,1430-1500,1234567,,,50017886,,, +5910,ROU,,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,240,1660,112,54,,1830-1900,1234567,,,50017886,,, +5910,ROU,,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,240,1660,112,54,270,1630-1700,1234567,,,50017886,,, +5910,ROU,it,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1600-1630,1234567,,,50017886,,, +5910,ROU,it,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1800-1830,1234567,,,50017886,,, +5910,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,240,1660,112,54,ENA,0100-0300,1234567,,,50017886,,, +5910,ROU,sr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1530-1600,1234567,,,50017886,,, +5910,ROU,sr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1730-1800,1234567,,,50017886,,, +5910,ROU,sr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,270,1660,112,54,,1930-2000,1234567,,,50017886,,, +5910,ROU,uk,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,30,1660,112,54,,1500-1530,1234567,,,50017886,,, +5910,ROU,uk,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,30,1660,112,54,,1700-1730,1234567,,,50017886,,, +5910,ROU,uk,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,30,1660,112,54,,1900-1930,1234567,,,50017886,,, +5910,UAE,fa,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,AFG,1800-1900,1234567,,,50022473,,, +5910,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1700-1730,1234567,,,50022472,,, +5910,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1730-1800,1234567,,,50022472,,, +5910,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1500-1600,1234567,,,50004018,,, +5910,RUS,vi,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,SEA,1200-1300,1234567,,,50022475,,, +5910,J,K,M,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1600-1700,.2.....,,,50022262,, +5910,J,en,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,....5..,,,50022262,,, +5910,J,en,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1600-1700,....5..,,,50022262,,, +5910,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,.....67,,,50022262,,, +5910,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,1.34...,,,50022262,,, +5910,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1600-1700,.....67,,,50022262,,, +5910,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1600-1700,1.34...,,,50022262,,, +5910,J,zh,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,.2.....,,,50022262,,, +5910,CLM,es,HJDH Alcaravn R,,Lomalinda (ant),7.15,-74.583333,,5,,8766,267,136,,2300-1200,1234567,92,,40000353,,, +5915,IRN,zh,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,FE,2320-0020,1234567,,,50022479,,, +5915,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,2300-2400,1234567,,,50004027,,, +5915,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,209,5347,76,91,SAs,1600-1700,1234567,,,50004027,,, +5915,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,0200-0300,1234567,,,50004027,,, +5915,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1200-1300,1234567,,,50004025,,, +5915,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1400-1500,1234567,,,50004025,,, +5915,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,1000-1200,1234567,,,50004025,,, +5915,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1300-1400,1234567,,,50004025,,, +5915,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1500-1600,1234567,,,50004025,,, +5915,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,2200-2300,1234567,,,50022476,,, +5915,ZMB,,ZNBC R 1,,Lusaka (lsk),-15.494444,28.243889,,100,,7807,158,115,,0240-2200,1234567,,,11200001,,, +5915,ZMB,en,CVC Christian Voice,,Lusaka/Makeni Ranch (lsk),-15.538578,28.002717,,100,ND,7806,158,115,,0515-1600,1234567,,,50019205,,, +5915,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,2200-2300,1234567,,,50022477,,, +5915,MYA,my,Myanmar R-Minorities,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,356,8233,77,122,,0800-1430,1234567,0,,22100001,,, +5915,MYA,my,Myanmar R-Minorities,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,356,8233,77,122,,2330-0530,1234567,0,,22100001,,, +5920,IRN,ku,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1320-1620,1234567,,,50022481,,, +5920,IRN,ru,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,EEu,1650-1750,1234567,,,50022480,,, +5920,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,2300-2400,.....67,,,50015987,,, +5920,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,173,0900-1100,12345..,,,50015987,,, +5920,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,0800-0900,.....6.,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,0330-0400,12345..,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,0430-0800,12345..,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1200-1300,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,25,0000-0200,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,CAm,0300-0430,1.....1,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0430-0530,1.....1,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0530-0700,12345.7,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0700-0800,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0800-0900,.....67,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,0900-1000,.....6.,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Car,1000-1100,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0000-0100,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0100-0130,1.....1,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0130-0200,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0200-0300,1234567,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,SAm,2300-2400,12345.7,,,50015987,,, +5920,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,315,7046,290,108,,0500-1200,1234567,,,50015987,,, +5921.3,PRU,es,OAX6A R Bethel,,Arequipa (are),-16.416667,-71.533333,,1,,10646,251,149,,0000-2400,1234567,-5921.3,,40000364,,, +5925,D,fa,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,AFG,0100-0130,1234567,,,50022486,,, +5925,D,ps,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,AFG,0030-0100,1234567,,,50022486,,, +5925,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0600-0700,1234567,,,50022483,,, +5925,ALG,fr,R Algrie Int.,,Bchar (8),31.566667,-2.35,,100,,2393,201,61,CAf,0400-0600,1234567,,,50022482,,, +5925,KWT,ru,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,EEu,2000-2100,1234567,,,50022485,,, +5925,IRN,sq,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1820-1920,1234567,,,50022484,,, +5925,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2055-1705,1234567,,,40000356,,, +5925,VTN,vi,VOV2,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,2155-1700,1234567,,,40000357,,, +5930,D,be,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1700-1800,1234567,,,50022488,,, +5930,G,vi,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,Eu,2130-2230,1234567,,,50022489,,, +5935,IRN,sq,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,2020-2120,1234567,,,50022490,,, +5935,UAE,KUN,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1800-1830,......7,,,50023677,,, +5935,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1800-1830,1234567,,,50023676,,, +5935,UAE,ti,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1800-1815,1234...,,,50023677,,, +5935,UAE,tig,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1800-1830,.....6.,,,50023677,,, +5935,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,85,7122,296,108,NAm,0100-1300,1234567,,,50009612,,, +5935,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0030,1234567,,,40000360,,, +5935,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1030-1100,1234567,,,40000360,,, +5935,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0030-0600,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0600-1000,12.4567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1030,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1100-1800,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2000-2230,1234567,,,40000360,,, +5935,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,,,40000360,,, +5939.3,PRU,es,OBX6I R Meloda,,Arequipa (are),-16.416667,-71.533333,,1,,10646,251,149,,0900-0500,1234567,-5939.3,,40000361,,, +5940,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,2000-2015,1234567,,,50022493,,, +5940,AUT,fa,BBC WS,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,AFG,0130-0200,1234567,,,50022491,,, +5940,AUT,ps,BBC WS,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,AFG,0100-0130,1234567,,,50022491,,, +5940,ROU,it,R Romania Int.,d,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1900-1930,1234567,,,50022496,,, +5940,ROU,rup,R Romania Int.,d,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEE,1930-2000,1234567,,,50022496,,, +5940,ROU,en,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,WEu,1800-1900,1234567,,,50022497,,, +5940,ROU,ru,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,EEu,1600-1700,1234567,,,50022497,,, +5940,IRN,hy,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Cau,1620-1720,1234567,,,50022494,,, +5940,IRN,ur,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1520-1620,1234567,,,50022495,,, +5940,UAE,fa,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,AFG,0230-0315,1234567,,,50023678,,, +5940,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,1500-1900,1234567,,,50014042,,, +5940,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,0030-0100,1234567,,,50022492,,, +5940,B,pt,Rdio Paz no Vale (Voz Missionria),,Cambori (SC),-27.025,-48.653014,,10,,10296,227,138,,2100-0800,1234567,82,,36902746,,, +5940,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,334,16373,78,148,SEA,1300-1700,1234567,,,50017057,,, +5945,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,ME,1800-1900,1234567,,,50022499,,, +5945,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,220,7797,50,115,,1000-1805,1234567,,,40000363,,, +5945,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,220,7797,50,115,,2025-0100,1234567,,,40000363,,, +5950,F,fr,KBS World R,,Issoudun (36),46.947222,1.894444,,250,182,660,211,40,WAf,2000-2100,1234567,,,50014503,,, +5950,D,LUR,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,0400-0430,1....67,,,50022500,,, +5950,IRN,bs,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,60,4724,102,77,Eu,2120-2220,1234567,,,50019580,,, +5950,IRN,tg,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,60,4724,102,77,CAs,0050-0220,1234567,,,50019580,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,0300-0530,1234567,0,,50014043,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,0530-0900,.....67,0,,50014043,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,0930-1030,12345..,0,,50014043,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,1100-1500,.....67,0,,50014043,,, +5950,ETH,ti,Dimtsi Woyane Tigray,,Addis Abeba/Lideta (aab),9.019167,38.72,,100,,5613,137,93,EAf,1500-1900,1234567,0,,50014043,,, +5950,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,100,,18351,32,155,Oc,1300-1550,1234567,,,50022501,,, +5952.5,BOL,es,CP60 R Po XII,,Llallagua/Campamento Siglo XX (pts),-18.366667,-66.616667,,1,,10508,246,149,,0830-0230,1234567,441,,40000368,,, +5955,AUT,en,Voice of Vietnam,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WEu,1800-1830,1234567,,,50022506,,, +5955,AUT,fr,Voice of Vietnam,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,SEu,1930-2000,1234567,,,50022506,,, +5955,AUT,vi,Voice of Vietnam,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,Eu,1830-1930,1234567,,,50022506,,, +5955,ROU,it,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1700-1730,1234567,,,50022504,,, +5955,ROU,sr,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1630-1700,1234567,,,50022504,,, +5955,ROU,uk,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,UKR,1600-1630,1234567,,,50022504,,, +5955,UAE,my,R Australia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,85,5075,109,81,SEA,2300-2330,1234567,,,50017627,,, +5955,RUS,en,Voice of Russia,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,SAs,1600-1800,1234567,,,50022505,,, +5955,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1355-1600,1234567,,,8400004,,, +5955,ERI,ti,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0300-0700,1234567,,,8400004,,, +5955,ERI,ti,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0930-1100,1234567,,,8400004,,, +5955,ERI,ti,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1600-1800,1234567,,,8400004,,, +5955,RUS,,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1245-1530,1234567,,,50022503,,, +5955,RUS,BB,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1315-1330,....5..,,,50022503,,, +5955,RUS,BH,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1500-1515,.....67,,,50022503,,, +5955,RUS,BON,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,......7,,,50022503,,, +5955,RUS,BUN,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1345-1415,.....6.,,,50022503,,, +5955,RUS,CD,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1445-1500,.....67,,,50022503,,, +5955,RUS,DD,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1515-1530,..34...,,,50022503,,, +5955,RUS,GA,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,.....6.,,,50022503,,, +5955,RUS,GM,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1500-1515,123....,,,50022503,,, +5955,RUS,HAR,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,....5..,,,50022503,,, +5955,RUS,HO,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1300-1315,.....6.,,,50022503,,, +5955,RUS,KHR,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1400-1415,......7,,,50022503,,, +5955,RUS,KUI,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1245-1300,.....6.,,,50022503,,, +5955,RUS,KUM,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1300-1315,......7,,,50022503,,, +5955,RUS,MCH,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1515-1530,12.....,,,50022503,,, +5955,RUS,MEW,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1315-1330,..34...,,,50022503,,, +5955,RUS,MUN,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1415-1430,.23....,,,50022503,,, +5955,RUS,NG,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1430-1445,.....67,,,50022503,,, +5955,RUS,VV,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1500-1515,...45..,,,50022503,,, +5955,RUS,bn,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1315-1330,.....6.,,,50022503,,, +5955,RUS,bo,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,...4...,,,50022503,,, +5955,RUS,kru,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1345-1400,......7,,,50022503,,, +5955,RUS,kru,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1415-1430,...456.,,,50022503,,, +5955,RUS,ks,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,..3....,,,50022503,,, +5955,RUS,mag,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1415-1430,1.....1,,,50022503,,, +5955,RUS,mai,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1330-1345,12.....,,,50022503,,, +5955,RUS,mai,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1345-1415,12345..,,,50022503,,, +5955,RUS,mwr,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1315-1330,12....7,,,50022503,,, +5955,RUS,sat,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1245-1300,......7,,,50022503,,, +5955,RUS,sd,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,1430-1500,12345..,,,50022503,,, +5955,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,FE,1100-1600,1234567,,,50004080,,, +5955,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1000-1100,1234567,,,50022502,,, +5955,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,015 063,7773,50,115,,2100-2300,1234567,,,36201070,,, +5955,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,015 063,7773,50,115,,2300-0100,1234567,,,36201070,,, +5955,CTR,es,R Republica,,Gupiles (ELCOR) (lmn),10.216667,-83.766667,,100,,9125,276,124,,,,28,,8200003,,, +5955,PHL,km,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,,1330-1430,1234567,,,50021647,,, +5955,B,pt,ZYE962 Rdio Gazeta,,So Paulo/Estrada de Riveira (SP),-23.707156,-46.742239,,10,305,9881,227,137,,0230-2200,1234567,,,40000371,,, +5960,D,ru,Christl.Wissenschaft,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-2000,.....6.,,,50022507,,, +5960,F,ja,NHK R Japan,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAm,0200-0400,1234567,,,50022508,,, +5960,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,310,1609,135,51,WEu,2000-2200,1234567,,,50004095,,, +5960,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,500,150,2469,114,55,ENA,2300-2400,1234567,3,,50000240,,, +5960,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,100,ND,4236,111,79,ME,0150-0900,1234567,,,50015992,,, +5960,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1100,12.4.67,,,40000372,,, +5960,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1100-1800,1234567,,,40000372,,, +5960,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,2300-0800,1234567,,,40000372,,, +5965,TUR,az,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Cau,1630-1730,1234567,,,50022512,,, +5965,IRN,ja,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,J,2050-2150,1234567,,,50022510,,, +5965,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,ME,2200-2300,1234567,,,50022509,,, +5965,CHN,ko,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,1100-1500,1234567,,,50004105,,, +5965,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,55,7797,50,108,Sib,1500-1600,1234567,,,50004104,,, +5965,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,FE,0900-1100,1234567,,,50004104,,, +5965,MLA,ms,RTM R Klasik,,Kajang (slg),3.011111,101.784444,,100,,10109,84,127,,0000-2400,1234567,90,,40000375,,, +5965,B,pt,ZYE857 Rdio Transmundial,,Santa Maria/Vila Palmas (RS),-29.738333,-53.555278,,7.5,,10803,229,141,,0700-0100,1234567,,,40000376,,, +5969.6,CHN,,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,0950-1300,1234567,-5969.6,,40000379,,, +5969.6,CHN,bo,CNR 11,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,1300-1400,1234567,-5969.6,,40000379,,, +5969.6,CHN,bo,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,0420-0620,1234567,-5969.6,,40000379,,, +5969.6,CHN,bo,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,2220-0100,1234567,-5969.6,,40000379,,, +5969.6,CHN,zh,Gannan RGD,,Hezuo (GS),34.971111,102.908889,,15,,7418,62,119,,1400-1430,1234567,-5969.6,,40000379,,, +5970,D,fa,Voice of America,,Biblis (hes),49.687222,8.490278,,100,105,306,151,40,,0130-0230,1234567,,,50021648,,, +5970,AUT,pa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,PAK,0230-0300,1234567,,,50022515,,, +5970,AUT,ur,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,PAK,0200-0230,1234567,,,50022515,,, +5970,ALB,de,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,330,1609,135,51,WEu,1600-1800,1234567,1,,50004115,,, +5970,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,310,1609,135,51,SEu,1800-2000,1234567,1,,50004115,,, +5970,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,Eu,2300-2400,.....67,,,50022513,,, +5970,TUR,fr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,WEu,2030-2130,1234567,,,50022514,,, +5970,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,SAs,0000-0100,1234567,,,50009620,,, +5970,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,SAs,0100-0200,1234567,,,50009620,,, +5970,B,pt,ZYE523 Rdio Itatiaia,,Belo Horizonte (MG),-20.005822,-43.969178,,10,,9382,227,135,,0800-0300,1234567,,,40000380,,, +5975,D,ady,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,0340-0400,1234567,,,50022521,,, +5975,D,av,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,0300-0320,1234567,,,50022521,,, +5975,D,ce,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,0320-0340,1234567,,,50022521,,, +5975,G,ha,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,WAf,0530-0600,1234567,,,50022516,,, +5975,F,bg,Adventist World R,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SEE,0400-0430,1234567,,,50022520,,, +5975,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ENA,0200-0300,1234567,,,50022519,,, +5975,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1400-1500,1234567,,,50022517,,, +5975,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1500-1600,1234567,,,50022517,,, +5975,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,63,7773,50,115,,2200-2300,1234567,,,36201071,,, +5975,CHN,zh,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,63,7773,50,115,,2155-2200,1234567,,,36201071,,, +5975,VTN,vi,VOV1,,H Nội/Me Tri (hno),20.999028,105.782444,,50,,8793,70,126,ND,2145-1700,1234567,,,50015993,,, +5980,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0430-0445,1234567,,,50022525,,, +5980,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0445-0450,12345..,,,50022525,,, +5980,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1700-2200,1234567,,,50022527,,, +5980,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0600-0900,.....6.,,,50004137,,, +5980,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0600-0900,9999999,,,50004137,,, +5980,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,1500-1900,.....6.,,,50004137,,, +5980,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,1500-1900,9999999,,,50004137,,, +5980,UAE,ur,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0130-0200,1234567,,,50022524,,, +5980,RUS,ja,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,J,1200-1400,1234567,,,50022526,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,0900-1000,0.234567,,,50004143,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,0900-1300,1234567,,,50004143,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,1000-1300,1234567,,,50004143,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,,0900-1200,1234567,,,50004143,,, +5980,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,CUB,0700-0900,0.234567,,,50004143,,, +5980,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023679,,, +5980,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1500-1600,1234567,,,50022522,,, +5980,CLN,bo,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,FE,0000-0100,1234567,,,50022528,,, +5980,PRU,,OBX4M R Chaski,,Urubamba/Cerro Sacro (cus),-13.358917,-72.112,,5,,10412,253,141,,1000-1500,1234567,,,37000117,,, +5980,PRU,,OBX4M R Chaski,,Urubamba/Cerro Sacro (cus),-13.358917,-72.112,,5,,10412,253,141,,2200-0100,1234567,,,37000117,,, +5985,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,IRN,0230-0330,1234567,,,50022531,,, +5985,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,NAf,0500-0700,1234567,,,50022529,,, +5985,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,SAf,2000-2100,1234567,,,50004146,,, +5985,CHN,pt,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,SAf,1900-2000,1234567,,,50004146,,, +5985,CHN,sw,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,EAf,1600-1800,1234567,,,50004146,,, +5985,USA,es,WYFR Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,181,7461,286,112,,0000-0200,1234567,,,50020267,,, +5985,USA,zh,R Taiwan Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,355,7461,286,112,,0300-0400,1234567,,,50014516,,, +5985,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,2200-2300,1234567,,,50022530,,, +5985,MYA,my,Padauk Myay R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,2300-0130,1234567,0,,22100010,,, +5985.8,MYA,en,Myanmar R,,Yangon/Yay Kuu (ygn),16.863194,96.161778,,25,176 356,8519,80,128,,1530-1635,1234567,83,,40000388,,, +5985.8,MYA,my,Myanmar R,,Yangon/Yay Kuu (ygn),16.863194,96.161778,,25,176 356,8519,80,128,,0930-1530,1234567,83,,40000388,,, +5990,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1800-2100,1234567,,,50022533,,, +5990,IRN,ur,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,SAs,0120-0220,1234567,,,50022532,,, +5990,IND,sd,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,334,6235,85,95,PAK,0100-0200,1234567,,,50015994,,, +5990,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1200-1300,1234567,,,50004153,,, +5990,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1400-1500,1234567,,,50004153,,, +5990,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,0000-0100,1234567,,,50004153,,, +5990,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,2300-2400,1234567,,,50004153,,, +5990,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1300-1400,1234567,,,50004153,,, +5990,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,1500-1600,1234567,,,50004153,,, +5990,CHN,bo,CNR 11,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0830-0900,1.34567,,,36201088,,, +5990,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0900-1600,1234567,,,36201088,,, +5990,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,2250-0200,1234567,,,36201088,,, +5990,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,CAm,2300-2400,1234567,,,50004154,,, +5990,CUB,es,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Car,0000-0100,1234567,,,50004154,,, +5995,D,en,PCJ R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,1330-1430,......7,,,50023680,,, +5995,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ME,1700-1800,1234567,,,50022534,,, +5995,KWT,ady,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,Cau,0340-0400,1234567,,,50022266,,, +5995,KWT,av,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,Cau,0300-0320,1234567,,,50022266,,, +5995,KWT,ce,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,Cau,0320-0340,1234567,,,50022266,,, +5995,MLI,,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,0600-0800,1234567,1,,40000393,,, +5995,MLI,,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,1800-2400,1234567,1,,40000393,,, +5995,SWZ,CW,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,5,9062,157,124,MWI,0400-0445,.....67,,,50010808,,, +5995,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,1400-1800,1234567,,,50015995,,, +5995,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,0800-0900,1234567,,,50015996,,, +5995,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,1000-1100,.....67,,,50015996,,, +5995,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,1100-1200,1234567,,,50015996,,, +5995,AUS,tpi,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,0900-1000,1234567,,,50015996,,, +5995,AUS,tpi,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,1000-1100,12345..,,,50015996,,, +5995,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,5,10,15065,58,157,WOc,1200-1400,1234567,,,50015996,,, +5999.8,B,pt,ZYE852 Rdio Guaba,,Porto Alegre/Ilha da Pintada (RS),-30.02375,-51.255433,,10,307,10713,227,139,,0000-2400,1234567,-5999.8,,40000397,,, +6000,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,EAf,1600-1800,1234567,,,50023681,,, +6000,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,CAs,0100-0300,1234567,,,50022536,,, +6000,RUS,es,Voice of Russia,D,Taldom/Severnyj Radiotsentr 3 (MO),56.745833,37.621111,,1,,2064,63,78,SEu,2000-2100,1234567,,,50022535,,, +6000,RUS,pt,Voice of Russia,D,Taldom/Severnyj Radiotsentr 3 (MO),56.745833,37.621111,,1,,2064,63,78,SEu,2100-2200,1234567,,,50022535,,, +6000,IND,,AIR North,,Leh (JK),34.124744,77.588978,,10,130,5854,80,106,,0630-0700,......7,,,40000400,,, +6000,IND,,AIR North,,Leh (JK),34.124744,77.588978,,10,130,5854,80,106,,0700-0930,1234567,,,40000400,,, +6000,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,2100-2400,1234567,,,40000509,,, +6000,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0830-0900,1.34567,0,,40000678,,, +6000,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0900-1805,1234567,0,,40000678,,, +6000,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,2025-0100,1234567,0,,40000678,,, +6000,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,WNA,0500-0700,1234567,,,50015997,,, +6000,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,ENA,0100-0500,1234567,,,50015997,,, +6000,CUB,eo,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,WNA,0700-0730,......7,,,50015997,,, +6000,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Am,1100-1300,1234567,,,50015997,,, +6000,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,ENA,2300-2400,12345..,,,50015997,,, +6003,KOR,ko,Echo of Hope,,Hwaseong (gye),37.211944,126.776111,,100,,8529,45,122,KRE,0555-2400,1234567,,,50014065,,, +6005,D,de,Polskie R,,Kall/Auf der Heide (nrw),50.478056,6.523194,,100,,182,177,39,CEu,1700-1730,1234567,,,50023683,,, +6005,D,de,R Gloria,,Kall/Auf der Heide (nrw),50.478056,6.523194,,100,,182,177,39,Eu,1000-1100,......9,,,50020377,,, +6005,D,de,R Prague,,Kall/Auf der Heide (nrw),50.478056,6.523194,,100,,182,177,39,CEu,1630-1700,1234567,,,50023682,,, +6005,D,de,R Slovakia Int.,,Kall/Auf der Heide (nrw),50.478056,6.523194,,100,,182,177,39,CEu,1600-1630,1234567,,,50023684,,, +6005,D,de,BR R Belarus,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,Eu,0700-0900,1234567,,,50016527,,, +6005,D,de,Missionswerk Freundesdienst,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,1000-1015,1234567,,,2000028,,, +6005,D,de,Missionswerk Freundesdienst,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,1630-1645,123456,,,2000028,,, +6005,D,de,R 700,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,0800-1000,123456,,,2000028,,, +6005,D,de,R 700,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,1015-1630,1234567,,,2000028,,, +6005,D,de,R Gloria International,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,0900-1000,......7,,,2000028,,, +6005,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0000-0100,1234567,,,50022537,,, +6005,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,1400-1600,1234567,,,50022537,,, +6005,YEM,ar,Yemen R,,Aden/Al-Hiswah (adn),12.825,44.905667,,100,,5551,128,93,ME,2000-2200,1234567,,,50023685,,, +6005,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0500-0700,1234567,,,50009625,,, +6010,ROU,de,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,1900-2000,1234567,,,50022543,,, +6010,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SEu,2000-2100,1234567,,,50022543,,, +6010,IRN,es,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAm,0020-0320,1234567,,,50022542,,, +6010,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,2300-2400,1234567,,,50022544,,, +6010,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,SEu,1800-1900,1234567,,,50022540,,, +6010,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023686,,, +6010,CHN,vi,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,SEA,1600-1700,1234567,,,50017948,,, +6010,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1030-1400,1234567,,,40000407,,, +6010,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1430-1605,1234567,,,40000407,,, +6010,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2155-2400,1234567,,,40000407,,, +6010,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1400-1430,1234567,,,40000407,,, +6010,B,pt,ZYE521 Rdio Inconfidncia,,Belo Horizonte/Contagem (MG),-19.900733,-44.052794,,25,122,9376,227,131,,0000-2400,1234567,88,,40000412,,, +6010,CLM,es,La Voz de tu Conciencia,,Puerto Lleras (met),3,-74,,5,,9090,264,137,,0000-2400,1234567,225,,40000413,,, +6010,MEX,es,XEOI-OC R Mil,,Mxico D.F/Iztacalco (dif),19.379722,-98.959444,,0.25,,9316,294,151,,0000-2400,1234567,96,,40000411,,, +6015,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,2300-2400,1234567,,,50022545,,, +6015,CHN,kk,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1400-1500,1234567,798,,40000416,,, +6015,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1150-1400,1234567,798,,40000416,,, +6015,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1500-1800,1234567,798,,40000416,,, +6015,CHN,kk,Xinjiang RGD Kazakh/CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,2330-0300,1234567,798,,40000416,,, +6015,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Dole (zbw),-6.101981,39.257778,,50,,7182,143,112,,0300-0600,1234567,,,40000415,,, +6015,KOR,ko,KBS Hanminjok Bangsong 1,,Hwaseong (gye),37.211944,126.776111,,100,ND,8529,45,122,FE,0350-2400,1234567,,,50013449,,, +6020,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,300,305,1609,135,48,NAm,0000-0200,1234567,,,50004204,,, +6020,ALB,zh,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,300,305,1609,135,48,NAm,0200-0400,1234567,,,50004204,,, +6020,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WNA,0400-0500,1234567,,,50022548,,, +6020,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0300,1234567,,,50022546,,, +6020,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,Af,0530-0630,12345..,,,50022551,,, +6020,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,0500-0530,1234567,,,50022551,,, +6020,RUS,zh,R Vaticana,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,125,6080,48,98,,1230-1300,12345.7,,,50017956,,, +6020,RUS,zh,R Vaticana,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,125,6080,48,98,,1230-1315,.....6.,,,50017956,,, +6020,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,169,6062,83,101,,0215-0410,1234567,,,40000417,,, +6020,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,169,6062,83,101,,0410-1000,......7,,,40000417,,, +6020,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,169,6062,83,101,,0700-0930,123456,,,40000417,,, +6020,IND,,AIR North,,Shimla (HP),31.088889,77.2075,,50,169,6062,83,101,,1130-1230,1234567,,,40000417,,, +6020,CHN,bg,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,SEE,1830-1900,1234567,,,50009378,,, +6020,CHN,es,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,SEu,2100-2300,1234567,,,50009378,,, +6020,CHN,pl,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,Eu,2000-2100,1234567,,,50009378,,, +6020,CHN,sq,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,SEE,1900-2000,1234567,,,50009378,,, +6020,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023687,,, +6020,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1700-1800,1234567,,,50023687,,, +6020,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1900-2100,1234567,,,50023687,,, +6020,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1600,1234567,,,50022549,,, +6020,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1700-1800,1234567,,,50022549,,, +6020,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1900-2100,1234567,,,50022549,,, +6020,VTN,vi,VOV4,,Bun M Thuột (dkk),12.644278,108.02055,,20,,9675,73,133,,2145-1700,1234567,95,,40000418,,, +6020.3,PRU,es,OAX4Q R Victoria,,Lima (lim),-12.040278,-77.07,,3,,10623,257,144,,2145-1300,1234567,-6020.3,,40000420,,, +6025,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,1600-1700,1234567,,,50022552,,, +6025,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2300-2400,1234567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0000-0700,1234567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0800-0950,1.34567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0950-1600,1234567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1700-1805,1234567,,,40000317,,, +6025,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2050-2230,1234567,,,40000317,,, +6025,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0700-0800,1.34567,,,40000317,,, +6025,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1600-1700,1234567,,,40000317,,, +6025,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2230-2300,1234567,,,40000317,,, +6025,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,1500-1600,1234567,,,50022553,,, +6025,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1425-1455,1234567,,,50017963,,, +6025,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1525-1555,.....67,,,50017963,,, +6025,SWZ,nd,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,,1455-1510,1234567,,,50017963,,, +6025,SWZ,nd,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1525-1555,12345..,,,50017963,,, +6025,SWZ,sn,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,,1510-1525,1234567,,,50017963,,, +6025,SWZ,sn,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1455-1525,1234567,,,50017963,,, +6025,SWZ,sn,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,ZWE,1555-1625,1234567,,,50017963,,, +6025,BOL,ay,Red Patria Nueva,,La Paz (lpz),-16.5,-68.116667,,100,,10435,248,128,,,,,,36500033,,, +6025,DOM,es,HIAJ R Amanecer,,Santo Domingo (sdo),18.5,-69.95,,1,,7471,271,132,,0330-0700,.......,9,,40000426,,, +6025,DOM,es,HIAJ R Amanecer,,Santo Domingo (sdo),18.5,-69.95,,1,,7471,271,132,,1000-0330,1234567,9,,40000426,,, +6030,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1800-1900,1234567,,,50022557,,, +6030,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-2000,......7,,,50022554,,, +6030,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1930-1945,.....6.,,,50022554,,, +6030,D,ru,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-1915,....5..,,,50022554,,, +6030,D,ru,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-1930,.2.....,,,50022554,,, +6030,D,uk,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1900-1915,...4...,,,50022554,,, +6030,ROU,en,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,2130-2200,1234567,,,50022556,,, +6030,ROU,fr,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,2100-2130,1234567,,,50022556,,, +6030,ROU,sr,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,2030-2100,1234567,,,50022555,,, +6030,ROU,uk,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,UKR,2000-2030,1234567,,,50022555,,, +6030,ETH,om,R Oromia,,Addis Abeba (Oromia) (aab),9.033333,38.7,,100,,5611,137,93,EAf,0325-0600,1234567,,,50013667,,, +6030,ETH,om,R Oromia,,Addis Abeba (Oromia) (aab),9.033333,38.7,,100,,5611,137,93,EAf,0900-1100,1234567,,,50013667,,, +6030,ETH,om,R Oromia,,Addis Abeba (Oromia) (aab),9.033333,38.7,,100,,5611,137,93,EAf,1530-1900,1234567,,,50013667,,, +6030,IND,en,AIR Uttaranchal,,Delhi/Khampur (DL),28.8225,77.1275,,100,102,6235,85,99,,0245-0300,1234567,,,40000431,,, +6030,IND,hi,AIR Uttaranchal,,Delhi/Khampur (DL),28.8225,77.1275,,100,102,6235,85,99,,0200-0245,1234567,,,40000431,,, +6030,IND,hi,AIR Uttaranchal,,Delhi/Khampur (DL),28.8225,77.1275,,100,102,6235,85,99,,1215-1430,1234567,,,40000431,,, +6030,IND,pa,AIR Uttaranchal,,Delhi/Khampur (DL),28.8225,77.1275,,100,102,6235,85,99,,0300-0310,1234567,,,40000431,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,0900-1000,0.234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,1000-1200,1234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,,0300-1200,0.234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,CUB,0000-0300,1234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,CUB,0300-0900,0.234567,,,50004231,,, +6030,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,CUB,0900-1200,1234567,,,50004231,,, +6030,CAF,,R ICDI,,Boali (mpk),4.8,18.116667,,1,,5370,164,111,,0530-1600,1234567,,,9300002,,, +6030,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023688,,, +6030,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0600-0900,1.34567,,,40000430,,, +6030,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0900-1805,1234567,,,40000430,,, +6030,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,2025-0600,1234567,,,40000430,,, +6030,MYA,,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,2330-0130,1234567,,,22100051,,, +6030,MYA,en,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,0130-0200,1234567,,,22100051,,, +6030,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,325,9364,56,125,FE,1300-1400,1234567,,,50020268,,, +6030,CAN,en,CFVP,,Calgary (AB),50.900622,-113.876161,,0.1,,7266,323,140,,0000-2400,1234567,,,40000433,,, +6035,ASC,ha,Voice of America,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0500-0530,1234567,,,50014525,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,,7186,77,109,,0900-0940,...4...,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,,7186,77,109,,0900-1000,123.567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0300-0400,1234567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0400-0500,1234567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0600-0700,1234567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0900-1000,1234567,40,,40000436,,, +6035,BTN,,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,1000-1100,1234567,40,,40000436,,, +6035,BTN,dz,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,,7186,77,109,,1600-2400,1234567,40,,40000436,,, +6035,BTN,dz,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0000-0300,1234567,40,,40000436,,, +6035,BTN,dz,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0700-0800,1234567,40,,40000436,,, +6035,BTN,dz,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,1100-1500,1234567,40,,40000436,,, +6035,BTN,en,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0500-0600,1234567,40,,40000436,,, +6035,BTN,en,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,0800-0900,1234567,40,,40000436,,, +6035,BTN,en,BBS R,,Thimpu/Sangaygang (tmp),27.484167,89.623889,,100,ND,7186,77,109,,1500-1600,1234567,40,,40000436,,, +6035,BOT,ha,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,0,2030-2100,12345..,,,50019223,,, +6035,CHN,vi,Voice of Shangri-La,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1030-1100,1234567,,,40000437,,, +6035,CHN,vi,Voice of Shangri-La,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1130-1200,1234567,,,40000437,,, +6035,CHN,vi,Voice of Shangri-La,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1230-1300,1234567,,,40000437,,, +6035,CHN,vi,Voice of Shangri-La,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,2230-0130,1234567,,,40000437,,, +6035,CHN,zh,CNR 1,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1000-1030,1234567,,,40000437,,, +6035,CHN,zh,CNR 1,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1100-1130,1234567,,,40000437,,, +6035,CHN,zh,CNR 1,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1200-1230,1234567,,,40000437,,, +6035,CHN,zh,Shangri-La zhi Sheng,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,0945-1000,1234567,,,40000437,,, +6035,CHN,zh,Shangri-La zhi Sheng,,Kunming/Lantau (YN),25.066667,102.683333,,50,147,8242,69,122,,1300-1415,1234567,,,40000437,,, +6035,MYA,my,Myanmar R-National,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,1000-1430,1234567,,,22100007,,, +6035,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,FE,1700-1900,1234567,,,50022558,,, +6035,CLM,es,HJOY La Voz del Guaviare,,San Jos del Guaviare (guv),2.566667,-72.633333,,3,,9036,263,139,,0800-0230,1234567,99,,40000435,,, +6040,ROU,it,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1500-1530,1234567,,,50022560,,, +6040,ROU,rup,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEE,1530-1600,1234567,,,50022560,,, +6040,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1920-2020,1234567,,,50019588,,, +6040,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,1600-1800,1234567,,,50022559,,, +6040,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,2030-2100,123456,,,50022561,,, +6040,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,INS,1400-1500,1234567,,,50004241,,, +6040,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,0300-0400,1234567,,,40000743,,, +6040,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,1400-1500,1234567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,0400-0600,1234567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,0600-0950,1.34567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,0950-1400,1234567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,1500-1605,1234567,,,40000743,,, +6040,CHN,mn,Nei Menggu RGD/CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,263,7433,53,114,,2150-0300,1234567,,,40000743,,, +6040,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,180,7773,50,114,,2055-0030,1234567,,,40000440,,, +6045,D,en,European Music R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,0900-1000,9999999,,,50022563,,, +6045,D,en,R Iceman,,Nauen (brb),52.647778,12.908611,,100,275,445,80,42,Eu,1000-1100,......9,,,50021908,,, +6045,D,en,Shortwave Rock,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,1000-1100,......7,,,50022267,,, +6045,D,en,XVRB R,,Nauen (brb),52.647778,12.908611,,100,275,445,80,42,Eu,1000-1100,......7,,,50021907,,, +6045,G,ko,KBS World R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,Eu,0700-0800,1234567,,,50022564,,, +6045,AUT,fr,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,NAf,0430-0500,1234567,,,50022565,,, +6045,IND,ur,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,334,6248,85,100,PAK,1430-1930,1234567,1,,50016002,,, +6045,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1400,1234567,,,50023689,,, +6045,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1200-1400,1234567,,,50022566,,, +6045,ZWE,,ZBC R 2,,Gweru (mdl),-19.520444,29.937,,50,,8285,157,123,,0000-2400,1234567,,,40000442,,, +6045,MEX,es,XEXQ-OC R Universidad,,San Luis Potos (slp),22.153161,-100.977889,,0.25,,9192,297,150,,1300-0500,1234567,,,40000444,,, +6045.2,URG,es,CXA61 R Sarand,l,Montevideo/Av. Luis Batlle Berres (mo),-34.845278,-56.257778,,0.3,,11417,228,157,,0000-2400,1234567,-6045.2,,40000445,,, +6047.2,PRU,es,OCY4H R Santa Rosa,,Lima/San Miguel (lim),-12.074444,-77.083889,,3,,10627,257,144,,1800-1230,1234567,-6047.2,,37000015,,, +6050,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,WEu,1930-2030,1234567,,,50022567,,, +6050,TUR,fr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,WAf,2030-2130,1234567,,,50022567,,, +6050,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,300,,4236,111,75,ME,1600-2100,1234567,0,,50017980,,, +6050,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0030,1234567,15,,40000448,,, +6050,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1030-1100,1234567,15,,40000448,,, +6050,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0030-0600,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0600-1000,12.4567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1030,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1100-1800,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2000-2230,1234567,15,,40000448,,, +6050,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,15,,40000448,,, +6050,MLA,,RTM Asyik FM,,Kajang (slg),3.011111,101.784444,,50,,10109,84,130,,0500-1500,1234567,2,,32800009,,, +6050,MLA,,RTM Salam FM,,Kajang (slg),3.011111,101.784444,,50,,10109,84,130,,1500-2400,1234567,2,,32800009,,, +6050,EQA,CHA,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,SAm,2130-2200,12345..,,,50020381,,, +6050,EQA,COF,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,SAm,0000-0030,1234567,,,50020381,,, +6050,EQA,SUA,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,SAm,2330-2400,12345..,,,50020381,,, +6050,EQA,WAO,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0100-0130,.23456.,,,50020381,,, +6050,EQA,Wao,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,0100-0130,12345..,,,50020381,,, +6050,EQA,en,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0330-0345,.23456.,,,50020381,,, +6050,EQA,en,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0330-0345,1234567,,,50020381,,, +6050,EQA,en,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2345-2400,.....6.,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0130-0300,.23456.,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0300-0330,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0330-0345,1.....1,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0345-0500,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,1100-1130,12345..,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,1130-1500,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2130-2200,.....67,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2200-2330,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2330-2345,.....67,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2330-2400,.....67,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,2345-2400,......7,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,1100-1500,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,2130-2200,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,2130-2400,.....67,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,2200-2330,12345..,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,SAm,1900-2130,1234567,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0130-0300,12345..,,,50020381,,, +6050,EQA,es,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,1900-2200,1234567,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0030-0100,.23456.,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0030-0300,1.....1,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,0825-1100,1234567,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,,9677,266,136,SAm,1100-1130,.....67,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,172,9677,266,136,,0830-1100,12345..,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0030-0100,12345..,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0030-0300,.....67,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0300-0500,1234567,,,50020381,,, +6050,EQA,qu,HCJB Global,,Pico Pichincha (pic),-0.166111,-78.526944,,10,18,9677,266,136,,0830-1130,.....67,,,50020381,,, +6055,D,de,Evang.Missionsgemeinden,,Nauen (brb),52.647778,12.908611,,130,222,445,80,40,Eu,1130-1200,.....67,,,50021909,,, +6055,D,de,Missionshaus Arche,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,1200-1215,......7,,,50022569,,, +6055,G,fr,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,NAf,0600-0630,1234567,,,50022568,,, +6055,E,en,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,290,1547,213,49,NAm,0000-0100,1234567,,,50009629,,, +6055,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,290,1547,213,49,NAm,2300-2400,1234567,,,50009629,,, +6055,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,240,1609,135,51,WAf,1800-2000,1234567,0,,50004272,,, +6055,RRW,,R Rwanda,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,,0255-0600,123456,32,,40000451,,, +6055,RRW,,R Rwanda,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,,0600-0900,......7,32,,40000451,,, +6055,RRW,,R Rwanda,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,,0900-2100,1234567,32,,40000451,,, +6055,RRW,,R Rwanda,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,,1600-2100,123456,32,,40000451,,, +6055,RRW,rw,IBRA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,RRW,1305-1320,.2.....,,,50020382,,, +6055,RRW,rw,IBRA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,RRW,1845-1900,......7,,,50020382,,, +6055,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1400-1500,1234567,,,50004273,,, +6055,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,2025-1500,1234567,,,40000453,,, +6060,KWT,tk,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,CAs,1400-1600,1234567,,,50022572,,, +6060,IRN,ar,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,NAf,1620-0220,1234567,,,50022571,,, +6060,CHN,tl,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,PHL,1130-1200,1234567,,,50022570,,, +6060,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,ENA,0500-0700,1234567,,,50016007,,, +6060,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,ENA,0000-0200,1234567,,,50016007,,, +6060,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,ENA,0200-0500,1234567,,,50016007,,, +6060,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,ENA,0000-0500,1234567,,,50016007,,, +6060,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1600-1700,1234567,,,50004288,,, +6060,CHN,zh,Sichuan RGD Xinwen Guangbo,,Chengdu/SCTS520 (SC),30.906111,104.123056,,50,,7834,64,118,,0930-1515,1234567,,,40000457,,, +6060,CHN,zh,Sichuan RGD Xinwen Guangbo,,Chengdu/SCTS520 (SC),30.906111,104.123056,,50,,7834,64,118,,2125-0135,1234567,,,40000457,,, +6060,THA,ko,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,38,8917,74,120,,1900-2100,1234567,,,50020384,,, +6060,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,1300-1500,12345..,,,50004286,,, +6060,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,SAm,0900-1000,12345..,,,50004286,,, +6060,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,SAm,2200-2400,12345..,,,50004286,,, +6060,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,ND,11502,230,132,,2300-2400,12345..,,,50004286,,, +6060,ARG,ja,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,ND,11502,230,132,FE,1100-1200,12345..,,,50004286,,, +6060,ARG,pt,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,1200-1300,12345..,,,50004286,,, +6060,ARG,zh,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,ND,11502,230,132,FE,1000-1100,12345..,,,50004286,,, +6060,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,30,,11502,230,137,,0000-0230,......7,,,40000458,,, +6060,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,30,,11502,230,137,,0000-0300,1......,,,40000458,,, +6060,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,30,,11502,230,137,,1800-2400,......7,,,40000458,,, +6060,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,30,,11502,230,137,,2000-2400,.....6.,,,40000458,,, +6060,B,pt,ZYE727 Super Rdio Deus Amor,,Curitiba/Corpo de Bombeiros (PR),-25.449444,-49.125,,10,330,10169,228,138,,0000-2400,1234567,94,,36902742,,, +6060,PRU,,OAD4A Aroma Caf R,,Pichanaki/Cerro El Mirador (jun),-10.945833,-74.880556,,1,,10381,256,148,,1130-2200,1234567,99,,37000064,,, +6065,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0000-2400,9999999,,,6800007,,, +6065,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,0220-0320,1234567,,,50022574,,, +6065,CHN,ps,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,AFG,0200-0230,1234567,,,50022573,,, +6065,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,220,7773,50,114,,1430-1500,1234567,,,40000462,,, +6065,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,220,7773,50,114,,1200-1430,1234567,,,40000462,,, +6065,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,220,7773,50,114,,1500-1605,1234567,,,40000462,,, +6065,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,120,220,7773,50,114,,2100-2330,1234567,,,40000462,,, +6065,IND,hi,AIR Northeast,,Kohima (NL),25.719722,94.039444,,50,15,7625,75,116,,0430-0510,1234567,,,40000463,,, +6065,IND,hi,AIR Northeast,,Kohima (NL),25.719722,94.039444,,50,15,7625,75,116,,0700-0900,1234567,,,40000463,,, +6070,D,en,R Channel 292,,Rohrbach (bay),48.609756,11.576836,,0.6,,534,135,65,,0000-2400,1234567,996,,2000020,,, +6070,IRN,uz,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1450-1550,1234567,,,50022576,,, +6070,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,1700-1900,1234567,,,50022575,,, +6070,KRE,ja,KCBS Voice of Korea,,Kanggye (cha),40.966667,126.583333,,250,109,8171,43,115,J,0900-1300,1234567,8,,50016010,,, +6070,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Car,0100-0400,1234567,,,50023690,,, +6070,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Car,0400-0500,1234567,,,50023690,,, +6070,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Car,2300-0100,1234567,,,50023690,,, +6070,CAN,en,CFRX-SW,,Toronto/Oakville (ON),43.506544,-79.633028,,1,,6112,298,118,,0000-2400,1234567,961,,40000466,,, +6074,URG,es,CXA3 La Voz de Artigas,,Artigas (ar),-30.4,-56.466667,,1,,11017,231,150,,,,,,31200005,,, +6075,D,be,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,0400-0500,1234567,,,50022579,,, +6075,CVA,Aud,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SEu,0915-1000,..3....,,,50022577,,, +6075,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Eu,1940-2000,1234567,,,50022577,,, +6075,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,NAf,2140-2200,1234567,,,50022577,,, +6075,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Eu,0630-0700,1234567,,,50022577,,, +6075,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50004307,,, +6075,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1600,1234567,,,50004307,,, +6075,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1800,1234567,,,50023691,,, +6075,RUS,VN,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,SEA,1200-1300,1234567,,,50021795,,, +6075,RUS,en,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,SEA,0900-1200,1234567,,,50021795,,, +6075,RUS,mn,Voice of Russia,,Tavrichanka (PM),43.333111,131.894028,,100,270,8184,38,119,,1300-1400,123456,,,50021650,,, +6075,RUS,zh,Voice of Russia,,Tavrichanka (PM),43.333111,131.894028,,100,270,8184,38,119,,1000-1300,1234567,,,50021650,,, +6075,J,id,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,2130-2200,1234567,,,50022578,,, +6075,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,CHN,1400-1800,1234567,,,50000488,,, +6080,CVA,en,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAf,0300-0400,1234567,,,50022582,,, +6080,BLR,be,BR Pershy Kanal,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,127,1438,73,50,,1430-1700,.....67,,,40000468,,, +6080,BLR,be,BR Pershy Kanal,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,127,1438,73,50,,1700-2205,1234567,,,40000468,,, +6080,BLR,be,BR Radyjo Stalitsa,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,127,1438,73,50,,1430-1700,12345..,,,40000468,,, +6080,IRN,fr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1820-1920,1234567,,,50022581,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,,0300-0600,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,,1730-1830,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,1400-1530,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,1800-2000,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,CAf,2000-2200,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,EAf,1700-1800,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,SAf,0400-0600,1234567,,,50004324,,, +6080,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,WAf,0600-0700,1234567,,,50004324,,, +6080,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,236,6812,67,105,,1200-1805,1234567,,,40000469,,, +6080,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,236,6812,67,105,,2025-0100,1234567,,,40000469,,, +6080,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,Sib,1100-1200,1234567,,,50022580,,, +6080,CHN,mn,CNR 8,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,1200-1300,1234567,,,40000318,,, +6080,CHN,mn,Hulun Buir RGD,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,0600-0955,1.34567,,,40000318,,, +6080,CHN,mn,Hulun Buir RGD,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,0955-1200,1234567,,,40000318,,, +6080,CHN,mn,Hulun Buir RGD,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,1300-1500,1234567,,,40000318,,, +6080,CHN,mn,Hulun Buir RGD,,Hailar/Nanmen Wai (NM),49.184167,119.724444,,10,,7116,42,118,,2150-0600,1234567,,,40000318,,, +6080,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,Af,1530-1700,1234567,,,50020389,,, +6080,B,pt,ZYE441 Rdio Daqui,,Goinia/Fazenda Botafogo (GO),-16.659167,-49.227222,,5,,9332,233,138,,0800-0300,1234567,98,,40000471,,, +6080,B,pt,ZYE726 Rdio Novas de Paz,,Curitiba/Campo Largo (PR),-25.432389,-49.393128,,10,,10181,228,138,,0700-0100,1234567,,,40000470,,, +6080,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,1000-1100,.....67,,,50016012,,, +6080,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,1100-1300,1234567,,,50016012,,, +6080,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,1730-2030,1234567,,,50016012,,, +6080,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,0900-1000,1234567,,,50016012,,, +6080,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,5,16373,78,148,WOc,1000-1100,12345..,,,50016012,,, +6085,IRN,tr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0420-0550,1234567,,,50022583,,, +6085,IND,,AIR Northeast,,Gangtok (SK),27.368056,88.629444,,10,180,7129,78,118,,0415-1030,1234567,,,40000477,,, +6089.9,CHL,es,CE609 R Esperanza,,Temuco (AR),-38.723056,-72.635,,10,,12648,237,146,,0000-2400,1234567,-6089.9,,40000480,,, +6090,ROU,rup,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEE,1730-1800,1234567,,,50022585,,, +6090,ROU,uk,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,UKR,1800-1830,1234567,,,50022585,,, +6090,NIG,ha,FRCN Kaduna,,Kaduna (kdn),10.555556,7.449444,,250,,4622,178,79,,0430-2305,1234567,855,,40000479,,, +6090,ETH,om,R Amhra,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,,0255-0600,1234567,,,9600011,,, +6090,ETH,om,R Amhra,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,,0900-1100,1234567,,,9600011,,, +6090,ETH,om,R Amhra,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,,1400-1900,1234567,,,9600011,,, +6090,CHN,en,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,1430-1500,1234567,,,40000482,,, +6090,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,1000-1430,1234567,,,40000482,,, +6090,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,1500-1605,1234567,,,40000482,,, +6090,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,2055-0300,1234567,,,40000482,,, +6090,AIA,en,Caribbean Beacon,,The Valley (SW) (tvy),18.219522,-63.019178,,100,320,7022,265,107,NAm,2200-1000,1234567,,,50014044,,, +6090,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,EAf,1600-1700,1234567,,,50022584,,, +6090,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1700-1800,1234567,,,50004333,,, +6090,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1130-1200,1234567,,,50004338,,, +6090,J,ru,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,330,9208,36,120,FE,1100-1130,1234567,,,50004338,,, +6090,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,0900-0930,1234567,,,50004338,,, +6090,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1200-1230,1234567,,,50004338,,, +6090,B,pt,ZYE956 Rdio Bandeirantes,,So Paulo/Jardim Santa Emilia (SP),-23.645956,-46.601278,,10,,9868,227,137,,0000-2400,1234567,,,40000483,,, +6095,D,en,KBC R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,WEu,0900-1600,.....67,,,50022268,,, +6095,D,nl,Transportr,,Nauen (brb),52.647778,12.908611,,100,230,445,80,42,Eu,0900-1100,12345..,,,50021911,,, +6095,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NAf,1500-1600,1234567,,,50004344,,, +6095,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,ENA,1300-1330,......7,,,50021796,,, +6095,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1900-2200,1234567,,,50023692,,, +6095,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,290,8663,46,119,CHN,1230-1330,1234567,,,50015824,,, +6095,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,290,8663,46,119,CHN,1130-1230,1234567,,,50015824,,, +6095,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1900-2200,1234567,,,50022587,,, +6100,D,bg,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SEE,1600-1630,1234567,,,50022590,,, +6100,BIH,de,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,Eu,2100-2130,12345.7,997,,50016014,,, +6100,BIH,en,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,WEu,2200-2230,1234567,997,,50016014,,, +6100,BIH,en,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,Eu,1930-2000,1234567,997,,50016014,,, +6100,BIH,es,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,Eu,2000-2030,1234567,997,,50016014,,, +6100,BIH,fr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,WEu,2130-2200,1234567,997,,50016014,,, +6100,BIH,it,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,Eu,1830-1900,1234567,997,,50016014,,, +6100,BIH,ru,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,Eu,1900-1930,1234567,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,WEu,2100-2130,.....6.,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,,1248,126,46,WEu,2230-2300,....5..,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,,1930-2000,12345.7,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,,1930-2030,.....6.,997,,50016014,,, +6100,BIH,sr,Int. R Serbia,,Bijeljina/Jabanua (srp),44.700556,19.166111,,250,310,1248,126,46,Eu,2030-2100,1234567,997,,50016014,,, +6100,IRN,ur,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,0120-0220,1234567,,,50022589,,, +6100,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,AFG,1600-1700,1234567,,,50022588,,, +6100,CHN,mn,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,90,5727,65,94,MNG,1100-1200,1234567,,,50016539,,, +6100,CHN,mn,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,90,5727,65,94,MNG,1300-1400,1234567,,,50016539,,, +6100,IND,hi,AIR Vividh Bharati,D,Delhi/Khampur (DL),28.822222,77.127778,,100,134,6235,85,99,SAs,0900-1200,1234567,,,50010197,,, +6100,IND,ks,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,100,134,6248,85,100,SAs,0730-0810,1234567,,,50014120,,, +6100,IND,xnr,R Sedaye Kashmir,,Delhi/Kingsway (DL),28.719444,77.198611,,100,134,6248,85,100,SAs,0810-0830,1234567,,,50014120,,, +6100,CHN,ar,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,NAf,2000-2200,1234567,,,50004358,,, +6100,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,Eu,1700-1800,1234567,,,50004354,,, +6100,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,Eu,1800-1900,1234567,,,50004354,,, +6100,CHN,es,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SAm,2200-2300,1234567,,,50004354,,, +6100,CHN,mn,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,,1300-1400,1234567,,,50004354,,, +6100,CHN,pt,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SAm,0000-0100,1234567,,,50004354,,, +6100,CHN,pt,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SAm,2300-2400,1234567,,,50004354,,, +6100,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,EEu,1900-2000,1234567,,,50004354,,, +6100,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,55,7797,50,108,Sib,1200-1300,1234567,,,50004354,,, +6100,KRE,ko,KCBS Pyongyang Pangsong,,Kanggye (cha),40.966667,126.583333,,250,ND,8171,43,115,,1300-1800,1234567,,,50013455,,, +6100,KRE,ko,KCBS Pyongyang Pangsong,,Kanggye (cha),40.966667,126.583333,,250,ND,8171,43,115,,2000-0835,1234567,,,50013455,,, +6100,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Am,0500-0700,1234567,,,50020395,,, +6100,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Car,2300-0400,1234567,,,50020395,,, +6100,CHN,si,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,,8246,70,118,CLN,2330-0030,1234567,,,50004355,,, +6100,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,2200-2300,1234567,,,50004355,,, +6104.8,B,pt,ZYE728 Rdio Cultura Filadlfia,,Foz do Iguau/Rua Sumar (PR),-25.5175,-54.508333,,7.5,,10458,232,140,,0830-0010,1234567,-6104.8,,40000492,,, +6105,D,be,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,0400-0500,1234567,,,50022270,,, +6105,D,en,Trans World R,,Nauen (brb),52.647778,12.908611,,100,285,445,80,42,Eu,0800-0820,1234567,,,50020397,,, +6105,D,en,Trans World R,,Nauen (brb),52.647778,12.908611,,100,285,445,80,42,Eu,0820-0850,12345..,,,50020397,,, +6105,D,hu,Trans World R,,Nauen (brb),52.647778,12.908611,,100,285,445,80,42,Eu,0930-1000,1234567,,,50020397,,, +6105,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50023693,,, +6105,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2400,1234567,,,50023693,,, +6105,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,EEu,1500-1600,1234567,,,50022591,,, +6105,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,267,9444,57,125,FE,1200-1230,1234567,,,50000548,,, +6105,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,267,9444,57,125,FE,1230-1300,1234567,,,50000548,,, +6105,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,FE,1000-1100,1234567,,,50000548,,, +6105,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,FE,2200-2400,1234567,,,50000548,,, +6105,BOL,es,CP92 R Panamricana,,La Paz (lpz),-16.5,-68.166667,,7.5,,10438,248,140,,1000-0300,1234567,,,40000496,,, +6105,MEX,es,XEMH-OC Candela FM,,Mrida (yuc),20.966667,-89.5,,0.25,,8573,288,148,,0000-1100,1234567,75,,34900001,,, +6105,MEX,ma,XEMQ-OC R Yol Iik,,Mrida (yuc),20.966667,-89.5,,0.25,,8573,288,148,,1100-0000,1234567,75,,34900001,,, +6110,IRN,zh,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,FE,2320-0020,1234567,,,50022592,,, +6110,IND,hi,AIR North,,Srinagar (JK),34.03,74.905833,,50,200,5680,82,97,,0225-0510,1234567,,,40000498,,, +6110,IND,hi,AIR North,,Srinagar (JK),34.03,74.905833,,50,200,5680,82,97,,0510-0600,......7,,,40000498,,, +6110,IND,hi,AIR North,,Srinagar (JK),34.03,74.905833,,50,200,5680,82,97,,0600-1115,1234567,,,40000498,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0300-0530,1234567,,,50004383,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0530-0800,.....67,,,50004383,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0900-1100,1234567,,,50004383,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,1200-1400,.....67,,,50004383,,, +6110,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,1500-2102,1234567,,,50004383,,, +6110,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,1900-2000,1234567,,,50004381,,, +6110,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,2300-2400,1234567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,0000-0700,1234567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,0800-0950,1.34567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,0950-1600,1234567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,1700-1805,1234567,,,40000497,,, +6110,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,2050-2230,1234567,,,40000497,,, +6110,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,0700-0800,1.34567,,,40000497,,, +6110,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,1600-1700,1234567,,,40000497,,, +6110,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,220,7116,74,111,,2230-2300,1234567,,,40000497,,, +6115,LTU,ru,NHK R Japan,,Kaunas/Sitkūnai (Kau),55.043611,23.807778,,100,,1191,67,49,Eu,0430-0500,1234567,,,50022596,,, +6115,RUS,ur,Trans World R,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,SAs,1500-1530,1234567,,,50022595,,, +6115,RUS,zh,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,FE,1100-1400,1234567,,,50022597,,, +6115,COG,fr,RTC National,,Brazzaville/M'Pila (bzv),-4.266667,15.283333,,100,,6325,169,100,,0555-0830,1234567,,,40000503,,, +6115,COG,fr,RTC National,,Brazzaville/M'Pila (bzv),-4.266667,15.283333,,100,,6325,169,100,,1700-1830,1234567,,,40000503,,, +6115,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,,7122,296,108,NAm,2100-0200,1234567,,,50022599,,, +6115,CHN,fr,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SEu,2030-2230,1234567,,,50022594,,, +6115,RUS,en,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,FE,1400-1500,1234567,,,50022598,,, +6115,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,350,10171,62,124,,2100-2300,1234567,,,50004395,,, +6115,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,350,10171,62,124,FE,2100-2257,1234567,,,50004395,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0000-0400,1234567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0400-1000,12.4567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1000-1025,1234567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1055-1430,1234567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1500-1600,1234567,,,40000504,,, +6115,CHN,ao,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,2230-2300,1234567,,,40000504,,, +6115,CHN,hk,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1430-1500,1234567,,,40000504,,, +6115,CHN,zh,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,1025-1055,1234567,,,40000504,,, +6115,CHN,zh,Haixia zhi Sheng Minnanhua Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,2300-2400,1234567,,,40000504,,, +6115,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,230,9294,36,128,,0000-0800,12345..,,,40000505,,, +6115,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,230,9294,36,128,,2300-2400,1234567,,,40000505,,, +6115,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,50,9294,36,128,,0000-0900,.....67,,,40000505,,, +6115,PRU,es,R Unin-La Rompe,,Lima/Lomas de Villa (lim),-12.216694,-76.978094,,10,,10632,257,139,,0200-1700,1234567,97,,40000501,,, +6120,D,be,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1500-1700,1234567,,,50022602,,, +6120,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,1700-2200,1234567,,,50022601,,, +6120,ROU,ru,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,EEu,0530-0600,1234567,,,50022600,,, +6120,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1500-1600,1234567,,,40000506,,, +6120,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1200-1500,1234567,,,40000506,,, +6120,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1600-1800,1234567,,,40000506,,, +6120,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,2300-0300,1234567,,,40000506,,, +6120,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,315,7939,284,112,,2300-0500,1234567,,,50016016,,, +6120,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,233,9062,157,127,SAf,0500-0800,1234567,,,50010812,,, +6120,B,pt,ZYE969 Super Rdio Deus Amor,,So Paulo/Rua Hilia Amaznica (SP),-23.606111,-46.538611,,10,320,9861,227,137,,1100-0900,1234567,,,36902754,,, +6125,E,en,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,242,1547,213,49,Eu,2200-2300,.....67,,,50009639,,, +6125,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,242,1547,213,49,,2300-0500,1234567,,,50009639,,, +6125,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,242,1547,213,49,LAm,2300-0600,1234567,,,50009639,,, +6125,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,1000-1805,1234567,,,36201056,,, +6125,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,2025-2300,1234567,,,36201056,,, +6125,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,1000-1805,1234567,,,40000792,,, +6125,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,2025-0100,1234567,,,40000792,,, +6125.2,URG,es,CXA4 RNU,,Santiago Vzquez (mo),-34.806944,-56.361944,,0.25,,11419,228,158,,0000-2400,1234567,-6125.2,,40000793,,, +6130,RUS,fr,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,1800-1900,1234567,,,50022603,,, +6130,RUS,it,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,1700-1800,1234567,,,50022603,,, +6130,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2300-2400,1234567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0000-0700,1234567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0800-0950,1.34567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0950-1600,1234567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1700-1805,1234567,,,40000795,,, +6130,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2050-2230,1234567,,,40000795,,, +6130,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0700-0800,1.34567,,,40000795,,, +6130,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1600-1700,1234567,,,40000795,,, +6130,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2230-2300,1234567,,,40000795,,, +6130,SWZ,CKW,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1820-1835,1234567,,,50010813,,, +6130,SWZ,FT,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,....5..,,,50010813,,, +6130,SWZ,KK,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1850-1905,.2345.7,,,50010813,,, +6130,SWZ,KWA,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,......7,,,50010813,,, +6130,SWZ,LUC,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,..3....,,,50010813,,, +6130,SWZ,LUN,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,.....6.,,,50010813,,, +6130,SWZ,LUV,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1850-1905,1......,,,50010813,,, +6130,SWZ,LUV,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,...4...,,,50010813,,, +6130,SWZ,kmb,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1950-2005,1234567,,,50010813,,, +6130,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1850-1905,.....6.,,,50010813,,, +6130,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1905-1920,12.....,,,50010813,,, +6130,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1920-1950,1234567,,,50010813,,, +6130,SWZ,umb,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1750-1820,12345..,,,50010813,,, +6130,SWZ,umb,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,312,9062,157,124,AGL,1835-1850,1234567,,,50010813,,, +6130,LAO,en,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,1415-1430,12.....,,,40000796,,, +6130,LAO,fr,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,1415-1430,..34...,,,40000796,,, +6130,LAO,hm,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,0600-0700,1234567,,,40000796,,, +6130,LAO,hm,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,2200-2230,1234567,,,40000796,,, +6130,LAO,km,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,0700-0800,1234567,,,40000796,,, +6130,LAO,km,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,2230-2300,1234567,,,40000796,,, +6130,LAO,lo,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,0900-1415,1234...,,,40000796,,, +6130,LAO,lo,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,0900-1600,....567,,,40000796,,, +6130,LAO,lo,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,1430-1600,1234...,,,40000796,,, +6130,LAO,lo,Lao National R,,Vientiane/Ban Chommany Neuk (vtn),18.007778,102.631111,,25,,8850,74,129,,2300-0600,1234567,,,40000796,,, +6135,G,ru,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EEu,2000-2030,1234567,,,50022605,,, +6135,IRN,it,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1920-1950,1234567,,,50022604,,, +6135,YEM,ar,Yemen R,,Aden/Al-Hiswah (adn),12.825,44.905667,,100,,5551,128,93,ME,0500-0800,1234567,,,50023695,,, +6135,YEM,ar,Yemen R,,Aden/Al-Hiswah (adn),12.825,44.905667,,100,,5551,128,93,ME,1300-1500,1234567,,,50023695,,, +6135,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,70,6960,203,103,CAf,0430-0500,1234567,,,50009641,,, +6135,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,0530-0600,1234567,,,50009641,,, +6135,CHN,hr,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,Eu,2100-2200,1234567,,,50010207,,, +6135,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1500-1600,1234567,,,50023694,,, +6135,TWN,zh,R Taiwan Int.,,Huwei (SW) (YL),23.726389,120.417222,,100,310,9441,57,125,,1000-1500,1234567,,,50021654,,, +6135,MDG,mg,R Madagasikara,,Fendarivo (tan),-18.952222,47.442222,,30,,8843,141,128,,0500-1506,1234567,20,,40000799,,, +6135,B,pt,ZYE954 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,25,,9721,226,132,,0700-0215,1234567,72,,40000798,,, +6135,BOL,es,CP32 R Santa Cruz,,Santa Cruz (scz),-17.75,-63.233333,,10,,10244,243,138,,0500-1200,1234567,84,,40000797,,, +6135,BOL,es,CP32 R Santa Cruz,,Santa Cruz (scz),-17.75,-63.233333,,10,,10244,243,138,,2100-0110,1234567,84,,40000797,,, +6139.8,CLM,es,HJQE R Lider,,Bogot D. C. (bdc),4.633333,-74.083333,,1,,8952,265,144,,0000-2400,1234567,-6139.8,,40000803,,, +6140,D,az,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,Cau,1830-1900,1234567,,,50022608,,, +6140,F,,European Music R,,Issoudun (36),46.947222,1.894444,,100,50,660,211,44,,1000-1100,......7,,,50014563,,, +6140,F,,MV Baltic R,,Issoudun (36),46.947222,1.894444,,100,80,660,211,44,,1000-1100,......7,,,50014562,,, +6140,F,,R Gloria,,Issoudun (36),46.947222,1.894444,,100,80,660,211,44,,1000-1100,......7,,,50017606,,, +6140,IRN,bs,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,320,4724,102,77,Eu,1720-1820,1234567,,,50020409,,, +6140,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,173,5347,76,91,SAs,1700-1800,1234567,,,50004438,,, +6140,RUS,ru,R Vaticana,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,Sib,1330-1400,1234567,,,50022606,,, +6140,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,1600-1700,1234567,,,40000804,,, +6140,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,2200-2300,1234567,,,50004437,,, +6140,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,2300-2400,1234567,,,50004437,,, +6140,J,en,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,....5..,,,50023696,,, +6140,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,.....67,,,50023696,,, +6140,J,ja,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,1.34...,,,50023696,,, +6140,J,zh,Shiokaze,,Ibaragi-Koga-Yamata (kan-iba),36.166667,139.833333,,100,,9210,36,124,KRE,1330-1430,.2.....,,,50023696,,, +6140,SNG,en,R Australia,,Kranji (nw),1.423056,103.7325,,100,13,10381,83,128,SEA,1100-1300,1234567,,,50007761,,, +6140,SOM,,R Puntland,,Garowe (nug),8.401389,48.472222,,0.05,,6172,126,132,,1900-0300,1234567,,,9500012,,, +6145,F,pl,China R Int.,,Issoudun (36),46.947222,1.894444,,500,60,660,211,37,Eu,2000-2100,1234567,0,,50004450,,, +6145,F,hu,China R Int.,,Issoudun (36),46.947222,1.894444,,250,85,660,211,40,Eu,2130-2200,1234567,0,,50004450,,, +6145,F,sq,China R Int.,,Issoudun (36),46.947222,1.894444,,250,105,660,211,40,SEE,2100-2130,1234567,0,,50004450,,, +6145,AUT,fa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,IRN,0330-0400,1234567,,,50022613,,, +6145,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ENA,0100-0200,1234567,,,50022612,,, +6145,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,0500-0600,1234567,,,50022612,,, +6145,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0250-0320,1234567,,,50022611,,, +6145,CHN,ro,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,1900-2000,1234567,,,50022610,,, +6145,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1800,1234567,,,50023697,,, +6145,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0200-0600,1234567,,,40000567,,, +6145,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0600-0800,1.34567,,,40000567,,, +6145,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0800-0900,1234567,,,40000567,,, +6145,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,2300-2400,1234567,,,50022609,,, +6145,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,1500-1700,1234567,,,36201090,,, +6145,CHN,zh,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,1700-1705,1234567,,,36201090,,, +6145,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,267,9434,57,125,CHN,1400-1800,1234567,,,50011334,,, +6150,CYP,de,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,0600-0700,..3....,,,40000508,,, +6150,CYP,de,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,1210-1215,1234567,,,40000508,,, +6150,CYP,de,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,1630-1700,......7,,,40000508,,, +6150,CYP,tu,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,0000-1210,12.456.,,,40000508,,, +6150,CYP,tu,Bayrak International,,Yeni Iskele (kib),35.294517,33.916178,,7.5,,2865,120,77,,1215-2400,12.456.,,,40000508,,, +6150,CHN,zh,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,Eu,1730-1830,1234567,,,50022614,,, +6150,IND,hi,AIR Northeast,,Itanagar (AR),27.0775,93.590556,,50,30,7482,75,115,,0700-0900,1234567,,,40000510,,, +6150,B,pt,ZYE959 Rdio Record,,So Paulo/Avenida Guarapiranga (SP),-23.683889,-46.743056,,10,,9878,227,137,,0700-0230,1234567,,,40000512,,, +6150,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1000-1100,.....67,,,50020413,,, +6150,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1100-1400,1234567,,,50020413,,, +6150,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,0900-1000,1234567,,,50020413,,, +6150,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1000-1100,12345..,,,50020413,,, +6155,F,en,R France Int.,,Issoudun (36),46.947222,1.894444,,250,345,660,211,40,,1800-1900,1234567,,,50021655,,, +6155,AUT,de,R Austria Int.,,Moosbrunn (nie),48.006667,16.461944,,300,220,849,119,41,Eu,0600-0715,1234567,,,50004468,,, +6155,AUT,de,R Austria Int.,,Moosbrunn (nie),48.006667,16.461944,,300,ND,849,119,41,,0600-0710,.....67,,,50004468,,, +6155,AUT,de,R Austria Int.,,Moosbrunn (nie),48.006667,16.461944,,300,ND,849,119,41,,0600-0715,12345..,,,50004468,,, +6155,BLR,de,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1800-2000,1234567,,,50022616,,, +6155,BLR,en,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2000-2200,1234567,,,50022616,,, +6155,BLR,es,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2000-2020,1....67,,,50022616,,, +6155,BLR,fr,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1940-2000,1..4.67,,,50022616,,, +6155,BLR,pl,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1705-1800,1234567,,,50022616,,, +6155,BLR,ru,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2200-2300,1234567,,,50022616,,, +6155,IRN,kk,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0120-0220,1234567,,,50022620,,, +6155,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1620-1720,1234567,,,50022620,,, +6155,IND,ur,All India R GOS,,Aligarh (UP),27.997222,78.097222,,500,325,6367,85,94,PAK,0015-0430,1234567,,,50016549,,, +6155,IND,ur,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,60,7561,97,106,PAK,1430-1930,1234567,,,50016021,,, +6155,IND,ur,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,60,7561,97,106,PAK,1557-1930,1234567,,,50016021,,, +6155,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,0,7773,50,115,,1430-1500,1234567,,,40000514,,, +6155,CHN,ru,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,EEu,2000-2100,1234567,,,50022617,,, +6155,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,0,7773,50,115,,1000-1430,1234567,,,40000514,,, +6155,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,0,7773,50,115,,1500-1605,1234567,,,40000514,,, +6155,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,0,7773,50,115,,2100-0100,1234567,,,40000514,,, +6155,CHN,en,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1600-1700,1234567,,,50022618,,, +6155,CHN,en,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1700-1800,1234567,,,50022618,,, +6155,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,,8663,46,123,FE,0800-0900,1234567,,,50004476,,, +6155,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0300-0400,12345..,,,50022615,,, +6155,MDG,mg,Adventist World R,,Talata-Volonondry (tan),-18.751667,47.614444,,50,20,8830,141,126,EAf,1430-1530,1234567,,,50017162,,, +6160,CAN,en,CKZN,,Saint John's/Mount Pearl (NL),47.569417,-52.814333,,1,320,4158,287,99,,0800-0405,1234567,855,,40000518,,, +6160,CHN,de,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,WEu,1800-2000,1234567,,,50022621,,, +6160,THA,my,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SEA,2330-0030,1234567,,,50022622,,, +6160,B,pt,ZYE245 Rdio Rio Mar,,Manaus (AM),-3.122039,-60.042167,,10,,8712,249,133,,0000-2400,1234567,6,,36902761,,, +6160,CAN,en,CKZU,,Vancouver/Steveston (BC),49.139094,-123.195672,,1,325,7792,328,135,,1300-0805,1234567,982,,20100013,,, +6165,IRN,es,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SEu,2020-2120,1234567,,,50022625,,, +6165,TCD,fr,RNT-R.Nationale Tchadienne,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,65,4515,167,82,,0427-0730,1234567,958,,40000521,,, +6165,TCD,fr,RNT-R.Nationale Tchadienne,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,65,4515,167,82,,0730-1000,.....67,958,,40000521,,, +6165,TCD,fr,RNT-R.Nationale Tchadienne,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,65,4515,167,82,,1000-2230,1234567,958,,40000521,,, +6165,TCD,fr,RNT-R.Nationale Tchadienne,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,65,4515,167,82,,2230-2300,.....6.,958,,40000521,,, +6165,TCD,fr,United Nations R,,N'Djamena/Gredia (ndj),12.114722,15.078056,,100,,4515,167,82,CAf,1905-1920,.....6.,,,50017771,,, +6165,UZB,fa,BBC WS,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,IRN,0230-0330,1234567,,,50022624,,, +6165,CHN,fa,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,IRN,1500-1530,1234567,,,50004482,,, +6165,CHN,ps,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,AFG,1530-1600,1234567,,,50004482,,, +6165,CHN,tr,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1600-1700,1234567,,,50004482,,, +6165,OMA,hi,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,SAs,0100-0130,1234567,,,50022623,,, +6165,OMA,ur,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,SAs,0130-0200,1234567,,,50022623,,, +6165,IND,bal,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,65,6235,85,95,PAK,1500-1600,1234567,,,50016024,,, +6165,IND,sd,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,65,6235,85,95,PAK,1230-1500,1234567,,,50016024,,, +6165,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,288,7797,50,108,IRN,1700-1800,1234567,,,50004481,,, +6165,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0900-1605,1234567,,,40000523,,, +6165,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2155-0105,1234567,,,40000523,,, +6165,ZMB,en,ZNBC R 2,,Lusaka (lsk),-15.494444,28.243889,,100,,7807,158,115,,0245-2210,1234567,,,40000522,,, +6165,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CNA,0100-0500,1234567,,,50019436,,, +6165,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CNA,0500-0700,1234567,,,50019436,,, +6165,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,340,7939,284,116,,0100-0700,1234567,,,50019436,,, +6165,MYA,,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,1130-1205,1234567,,,22100052,,, +6165,MYA,en,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,1430-1500,1234567,,,22100052,,, +6165,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,1030-1130,1234567,,,22100052,,, +6165,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.017744,96.550197,,50,,8103,76,121,,1205-1430,1234567,,,22100052,,, +6165,MYA,ci,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,2330-0030,1234567,997,,22100011,,, +6165,MYA,kc,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0030-0130,1234567,997,,22100011,,, +6165,VTN,do,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,0000-0030,1234567,,,40000524,,, +6165,VTN,do,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,1330-1400,1234567,,,40000524,,, +6165,VTN,do,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,2230-2300,1234567,,,40000524,,, +6165,VTN,hm,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,1300-1330,1234567,,,40000524,,, +6165,VTN,hm,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,2200-2230,1234567,,,40000524,,, +6165,VTN,hm,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,2300-2400,1234567,,,40000524,,, +6165,VTN,vi,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,1400-1600,1234567,,,40000524,,, +6170,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1900-2000,1234567,,,50022627,,, +6170,FIN,fi,R Hami,,Ryskl (kh),60.749444,24.120556,,2.5,,1444,41,67,,0500-2100,9999999,,,2600006,,, +6170,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,EEu,1750-1850,1234567,,,50022626,,, +6170,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SAs,0030-0100,1234567,,,50022628,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0000-0600,.....6.,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0000-0600,9999999,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0900-1500,.....6.,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,0900-1500,9999999,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,1900-2200,.....6.,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,1900-2200,9999999,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,2200-2400,....5..,,,50004490,,, +6170,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.1,,1532,35,82,Eu,2200-2400,9999999,,,50004490,,, +6170,KRE,de,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1600-1700,1234567,,,50018049,,, +6170,KRE,de,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1800-2000,1234567,,,50018049,,, +6170,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1000-1100,1234567,,,50018049,,, +6170,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1100-1200,1234567,,,50018049,,, +6170,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1200-1300,1234567,,,50018049,,, +6170,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2000-2100,1234567,,,50018049,,, +6170,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1400-1600,1234567,,,50018049,,, +6170,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1700-1800,1234567,,,50018049,,, +6170,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,SEA,1300-1400,1234567,,,50018049,,, +6170,PHL,tl,DZRM-AM Radyo Magasin,,Quezon City (ncr),14.633333,120.95,,0.5,155,10310,62,151,,0000-0400,1234567,,,33300006,,, +6170,PHL,tl,DZRM-AM Radyo Magasin,,Quezon City (ncr),14.633333,120.95,,0.5,155,10310,62,151,,0800-1400,1234567,,,33300006,,, +6173.9,PRU,es,OAX7C R Tawantinsuyo,,Cusco/Cerro Osqollo (cus),-13.533333,-71.95,,5,,10417,253,141,,1000-0300,1234567,90,,40000527,,, +6175,G,en,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ENA,0100-0130,1234567,,,50022632,,, +6175,G,en,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ENA,0230-0300,1234567,,,50022632,,, +6175,G,vi,Voice of Vietnam,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ENA,0130-0230,1234567,,,50022632,,, +6175,ALB,es,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,280,1609,135,51,NAf,2300-2400,1234567,,,50004494,,, +6175,ALB,pt,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,280,1609,135,51,NAf,2200-2300,1234567,,,50004494,,, +6175,IRN,tr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1550-1720,1234567,,,50022631,,, +6175,IRN,uz,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0220-0250,1234567,,,50022631,,, +6175,UAE,de,Voice of Vietnam,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,WEu,2030-2130,1234567,,,50022633,,, +6175,UAE,ur,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,1500-1600,1234567,,,50022630,,, +6175,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50022629,,, +6175,USA,VN,Voice of Vietnam,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,260,7046,290,104,CAm,0430-0530,1234567,,,50018059,,, +6175,USA,en,Voice of Vietnam,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0330-0400,1234567,,,50018059,,, +6175,USA,es,Voice of Vietnam,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0300-0330,1234567,,,50018059,,, +6175,USA,es,Voice of Vietnam,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0400-0430,1234567,,,50018059,,, +6175,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0900-1805,1234567,0,,40000529,,, +6175,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,2025-2400,1234567,0,,40000529,,, +6180,ROU,sr,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,SEu,1830-1900,1234567,,,50022636,,, +6180,UAE,so,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1700-1730,1234567,,,50023699,,, +6180,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0000-0100,1234567,,,50004504,,, +6180,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,1500-1600,1234567,,,50022634,,, +6180,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1500,1234567,,,50023698,,, +6180,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1400-1500,1234567,,,36201072,,, +6180,CHN,mn,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1300-1400,1234567,,,36201072,,, +6180,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1200-1300,1234567,,,36201072,,, +6180,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2000-2400,1234567,,,36201072,,, +6180,B,pt,ZYE365 Rdio Nacional da Amaznia,,Braslia/Rodeador (DF),-15.603333,-48.130556,,250,344,9171,232,120,,0200-0550,......7,,,40000535,,, +6180,B,pt,ZYE365 Rdio Nacional da Amaznia,,Braslia/Rodeador (DF),-15.603333,-48.130556,,250,344,9171,232,120,,0550-0200,1234567,,,40000535,,, +6180,AFS,pt,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,1900-1933,1234567,,,50022635,,, +6180,TWN,en,R Taiwan Int.,,Huwei (SW) (YL),23.726389,120.417222,,100,,9441,57,125,CHN,1600-1700,1234567,,,50022272,,, +6180,TWN,zh,R Taiwan Int.,,Huwei (SW) (YL),23.726389,120.417222,,100,,9441,57,125,CHN,1000-1500,1234567,,,50022272,,, +6185,CVA,be,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,BLR,1800-1820,1234567,,,50022640,,, +6185,CVA,hy,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Cau,0310-0330,1234567,,,50022640,,, +6185,CVA,hy,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Cau,1650-1710,1234567,,,50022640,,, +6185,CVA,ru,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EEu,1710-1740,1234567,,,50022640,,, +6185,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,UKR,1740-1800,1234567,,,50022640,,, +6185,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,193,1609,135,51,NAf,2000-2200,1234567,,,50004513,,, +6185,TUR,it,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1500-1530,1234567,,,50022641,,, +6185,CHN,mn,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,MNG,2300-2400,1234567,,,50022639,,, +6185,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1000-1100,1234567,,,50019241,,, +6185,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1100-1200,1234567,,,50019241,,, +6185,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1200-1300,1234567,,,50019241,,, +6185,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,,1300-1400,1234567,,,50019241,,, +6185,CHN,zh,Zhongguo Huayun GD,,Fuzhou (FJ),26.066667,119.3,,15,,9163,57,133,,0400-1000,123.567,,,40000533,,, +6185,CHN,zh,Zhongguo Huayun GD,,Fuzhou (FJ),26.066667,119.3,,15,,9163,57,133,,1000-0400,1234567,,,40000533,,, +6185,MEX,es,XEPPM-OC R Educacin,,Mxico D.F/Ejrcito de Oriente (dif),19.364244,-99.028567,,10,,9322,294,135,,0000-1200,1234567,,,40000534,,, +6190,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,100,,384,64,41,CEu,0700-1300,9999999,,,50019439,,, +6190,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,100,,384,64,41,CEu,0900-1200,..3..6.,,,50019439,,, +6190,CHN,kg,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,1200-1230,1234567,990,,40000541,,, +6190,CHN,mn,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,1600-1700,1234567,990,,40000541,,, +6190,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,1230-1600,1234567,990,,40000541,,, +6190,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,1700-1800,1234567,990,,40000541,,, +6190,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,150,,5761,65,93,,2300-0330,1234567,990,,40000541,,, +6190,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,2055-2400,1234567,,,40000540,,, +6190,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,315,7424,348,111,FE,1600-1800,1234567,,,50018066,,, +6190,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1230-1300,1234567,,,50004525,,, +6190,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1330-1400,1234567,,,50004525,,, +6190,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1430-1500,1234567,,,50004525,,, +6190,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1300-1330,1234567,,,50004525,,, +6190,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1400-1430,1234567,,,50004525,,, +6190,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1530-1600,1234567,,,50004525,,, +6190,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,,0500-0600,1234567,,,50009653,,, +6190,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,0,0600-0800,1234567,,,50009653,,, +6190,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,SAf,0500-0800,1234567,,,50009653,,, +6190,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,SAf,1600-2000,1234567,,,50009653,,, +6192.2,PRU,es,R Cusco,,Cusco (cus),-13.533333,-71.95,,1,,10417,253,148,,0800-1230,1234567,84,,40000543,,, +6192.2,PRU,es,R Cusco,,Cusco (cus),-13.533333,-71.95,,1,,10417,253,148,,2130-0200,1234567,84,,40000543,,, +6195,D,TAH,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,1930-2000,1234567,,,50022643,,, +6195,D,ar,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,1900-1930,1234567,,,50022643,,, +6195,D,fr,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,2000-2030,1234567,,,50022643,,, +6195,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,335,5617,106,89,ME,1700-1900,1234567,,,50009657,,, +6195,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,ME,0300-0400,1234567,,,50009657,,, +6195,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,ME,1500-1700,1234567,,,50009657,,, +6195,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0130-0200,1234567,,,50009657,,, +6195,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0230-0300,1234567,,,50009657,,, +6195,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0100-0130,1234567,,,50009657,,, +6195,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0200-0230,1234567,,,50009657,,, +6195,USA,es,NHK R Japan,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,SAm,0400-0430,1234567,,,50017471,,, +6195,USA,es,NHK R Japan,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,SAm,0930-1000,1234567,,,50017471,,, +6195,USA,pt,NHK R Japan,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,SAm,0900-0930,1234567,,,50017471,,, +6195,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,130,,10381,83,127,INS,0000-0100,1234567,,,50009654,,, +6195,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,130,,10381,83,127,SEA,1100-1500,1234567,,,50009654,,, +6200,IRN,tg,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,1550-1720,1234567,,,50022644,,, +6200,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2300-2400,1234567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0000-0700,1234567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0800-0950,1.34567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0950-1600,1234567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1700-1805,1234567,,,40000546,,, +6200,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2050-2230,1234567,,,40000546,,, +6200,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,0700-0800,1.34567,,,40000546,,, +6200,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,1600-1700,1234567,,,40000546,,, +6200,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,,7116,74,111,,2230-2300,1234567,,,40000546,,, +6205,IRN,de,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1720-1820,1234567,,,50022645,,, +6206,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700137,,, +6210,GRC,,Voice of Greece,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,,1800-2400,1234567,,,3400043,,, +6210,COD,fr,R Kahuzi,,Bukavu (skv),-2.486111,28.858611,,0.8,,6427,153,122,,0530-0700,1234567,98,,8600001,,, +6210,COD,fr,R Kahuzi,,Bukavu (skv),-2.486111,28.858611,,0.8,,6427,153,122,,1630-2010,1234567,98,,8600001,,, +6210,COD,sw,R Kahuzi,,Bukavu (skv),-2.486111,28.858611,,0.8,,6427,153,122,,1100-1200,.234.67,98,,8600001,,, +6214.1,ARG,es,R Baluarte,,Puerto Iguaz (mn),-25.65,-54.583333,,0.8,,10474,232,150,,0000-2400,1234567,-6214.1,,40000550,,, +6215,AUS,,Cairns Coastguard,u,Cairns (QLD),-16.928333,145.779444,,1,,14734,58,163,,????-????,1234567,,,37700098,,, +6215,AUS,,VMR471 Keppel Sands Coastguard,u,Keppel Sands (QLD),-23.3375,150.797222,,1,,15617,57,166,,????-????,1234567,,,37700096,,, +6215,AUS,,VMR407 Ingham Coastguard,u,Lucinda (QLD),-18.530189,146.3346,,0.4,,14915,58,167,,????-????,1234567,,,37700131,,, +6215,AUS,,VMR259 Evans Head Coastguard,u,Evans Head (NSW),-29.116667,153.441111,,1,,16293,60,168,,????-????,1234567,,,37700094,,, +6215,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700135,,, +6215,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700149,,, +6215,AUS,,VMR251 Kingscliff Coastguard,u,Kingscliff/Faulks Park (NSW),-28.257656,153.583189,,0.1,,16225,58,178,,????-????,1234567,,,37700123,,, +6218.6,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,0235-0255,9999999,-6218.6,,20109246,,, +6218.6,CAN,,VFA Inuvik Coastguard,u,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,1435-1455,9999999,-6218.6,,20109246,,, +6218.6,CAN,,XNR88 Inuvik Coastguard,u,Hay River (NT),60.841,-115.770028,,1,,6450,331,122,,0115-0135,9999999,-6218.6,,20109248,,, +6218.6,CAN,,XNR88 Inuvik Coastguard,u,Hay River (NT),60.841,-115.770028,,1,,6450,331,122,,1315-1335,9999999,-6218.6,,20109248,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0003-0013,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0133-0143,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0303-0313,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0533-0543,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0803-0813,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0903-0913,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1333-1343,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1503-1513,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1733-1743,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2003-2013,1234567,,,32500028,,, +6224,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2103-2113,1234567,,,32500028,,, +6225,TJK,my,Dem.Voice of Burma,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,SEA,1430-1530,1234567,,,50022646,,, +6230,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1000-2300,1234567,,,37700024,,, +6236,JMC,,Kingston Coastguard R,u,Kingston (kgs),17.934722,-76.843056,,1,,7988,276,137,,????-????,1234567,,,35700001,,, +6240,TWN,zh,Xi Wang zhi Sheng SOH,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,310,9434,57,125,FE,1300-1400,1234567,,,50019896,,, +6250,GNE,,R.Nacional Guinea Ecuatorial,,Malabo/Semu (bin),3.75,8.8,,10,,5382,177,101,,0530-2300,1234567,,,40000554,,, +6250,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,KOR,0400-0600,1234567,,,50019605,,, +6250,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,KOR,1200-1400,1234567,,,50019605,,, +6250,KRE,ko,Tong-il-e Meari Pangsong,,Pyongyang (pyo),39.153611,125.751389,,100,,8299,45,120,KOR,2200-2400,1234567,,,50019605,,, +6250,KOR,ko,Echo of Hope,,Hwaseong (gye),37.211944,126.776111,,100,,8529,45,122,KRE,0555-2400,1234567,,,50023700,,, +6255,CNR,,Horizon FM / Atlantis FM,,Tenerife Norte (STC-TF),28.45,-16.333333,,0.075,,3233,224,101,,,,,,1500020,,, +6260,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,153,4779,79,85,SAs,0000-0400,1234567,,,50016029,,, +6260,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,153,4779,79,85,SAs,1400-2000,1234567,,,50016029,,, +6275,TJK,ko,R Free North Korea,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,KRE,1530-1630,1234567,,,50023701,,, +6280,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,,9364,56,120,FE,2200-2300,....56.,,,50009661,,, +6280,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,,9364,56,120,FE,2300-2400,....56.,,,50009661,,, +6280,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,2200-2400,....56.,,,50009661,,, +6290,EGY,ar,ERTU Al-Barnameg al-Aam,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,,1900-0700,1234567,,,2300003,,, +6300,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,20,,2986,209,74,,0700-0900,1234567,182,,200009,,, +6300,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,20,,2986,209,74,,0900-1000,.....6.,182,,200009,,, +6300,ALG,ar,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,20,,2986,209,74,,1700-2300,1234567,182,,200009,,, +6300,ALG,es,Saharawi Arab Dem.Rep.Nat. R,,Rabouni (Tindouf) (37),27.553333,-8.098889,,20,,2986,209,74,,2300-2330,1234567,182,,200009,,, +6312,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,,,35400113,,, +6312,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800014,,, +6317,VTN,vi,Điện Bin R,,Điện Bin Phu (dbn),22.033333,103.166667,,1,,8535,71,142,,0400-0600,1234567,,,40000559,,, +6317,VTN,vi,Điện Bin R,,Điện Bin Phu (dbn),22.033333,103.166667,,1,,8535,71,142,,1200-1330,1234567,,,40000559,,, +6317,VTN,vi,Điện Bin R,,Điện Bin Phu (dbn),22.033333,103.166667,,1,,8535,71,142,,2200-0030,1234567,,,40000559,,, +6324,AUS,,VZG420 Townsville R,u,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,0700-0800,1234567,,,37700113,,, +6329,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,,,34700015,,, +6335,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,1600-1700,1234567,,,10500021,,, +6335,IRQ,,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,1800-1900,1234567,,,10500021,,, +6335,IRQ,ku,V.o.Iranian Kurdistan,,Salah ad-Din (sad),34.022222,43.982222,,5,,3595,109,86,,1700-1800,1234567,,,10500021,,, +6340.5,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0230-0506,1234567,-6340.5,,20016154,,, +6340.5,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0745-1041,1234567,-6340.5,,20016154,,, +6340.5,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1400-1600,1234567,-6340.5,,20016154,,, +6340.5,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1720-2241,1234567,-6340.5,,20016154,,, +6348,KOR,ko,Echo of Hope,,Hwaseong (gye),37.211944,126.776111,,100,,8529,45,122,KRE,0555-2400,1234567,,,50014072,,, +6352,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-1200,1234567,,,6800023,,, +6352.5,USA,,WHL26 Saint Augustine R,p,Saint Augustine (FL),29.750833,-81.28,,1,,7294,288,130,,????-????,1234567,-6352.5,,20016176,,, +6368.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0000-2400,1234567,-6368.5,,7300006,,, +6396,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800004,,, +6400,KRE,ko,KCBS Pyongyang Pangsong,,Kanggye (cha),40.966667,126.583333,,50,ND,8171,43,122,,2100-1800,1234567,,,50013466,,, +6434,D,,DAO36 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,,,2000056,,, +6435.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0000-2400,1234567,-6435.5,,7300002,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,0700-0715,1234567,-6445.5,,6700136,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,0800-0815,1234567,-6445.5,,6700136,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,1400-1500,1234567,-6445.5,,6700136,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,1850-1900,1234567,-6445.5,,6700136,,, +6445.5,RUS,,RBW41 Murmansk Meteo,f,Murmansk (MU),68.783333,32.983333,,1,,2319,27,80,,2000-2015,1234567,-6445.5,,6700136,,, +6448,B,,PPR Rio Rdio,r,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0600-0730,1234567,,,36902807,,, +6448,B,,PPR Rio Rdio,r,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1845-1930,1234567,,,36902807,,, +6475,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,19901030,,, +6478,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800024,,, +6487,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000065,,, +6493.5,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,-6493.5,,19901029,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0330-0400,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0515-0545,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0930-1000,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1115-1145,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1530-1600,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2130-2200,1234567,,,20000100,,, +6501,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2315-2345,1234567,,,20000100,,, +6501,ALS,en,NOJ USCG Kodiak,u,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0203-0238,1234567,,,20012377,,, +6501,ALS,en,NOJ USCG Kodiak,u,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1645-1720,1234567,,,20012377,,, +6501,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,0600-0635,1234567,,,20012370,,, +6501,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,1200-1235,1234567,,,20012370,,, +6501,GUM,en,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,0930-1005,1234567,,,20012378,,, +6501,GUM,en,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,1530-1605,1234567,,,20012378,,, +6504,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,????-????,1234567,,,22500014,,, +6507,GRC,,SVO Olympia R,u,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,????-????,1234567,,,3400002,,, +6507,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0800-2100,1234567,,,37700018,,, +6507,AUS,,VMR402 Brisbane Coastguard,u,Brisbane/Manly (QLD),-27.453078,153.188694,,0.4,,16130,58,171,,????-????,1234567,,,37700134,,, +6513,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,0110-0130,9999999,,,20109241,,, +6513,CAN,,VFU Coral Harbour Coastguard,u,Coral Harbour (NU),64.150556,-83.375833,,1,,4967,322,107,,1320-1340,9999999,,,20109241,,, +6515.7,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,0000-0015,1234567,-6515.7,,36100004,,, +6515.7,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,0603-0618,1234567,-6515.7,,36100004,,, +6515.7,PNG,,Port Moresby R,u,Port Moresby (ncd),-9.481111,147.146667,,1,,14099,51,161,,2203-2218,1234567,-6515.7,,36100004,,, +6518.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-6518.8,,31200008,,, +6518.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-6518.8,,31200008,,, +6518.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-6518.8,,31200008,,, +6519,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016231,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0000-0010,1234567,,,3500018,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,0805-0815,1234567,,,3500018,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1305-1315,1234567,,,3500018,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,1805-1815,1234567,,,3500018,,, +6522,GRL,,OYR Aasiaat R,u,Aasiaat (qaa-aas),68.708211,-52.860344,,1,,3543,324,92,,2305-2315,1234567,,,3500018,,, +6532,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012451,,, +6535,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500006,,, +6535,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000001,,, +6535,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300026,,, +6535,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900012,,, +6536.1,PRU,es,La Voz del Rondero/Super Sensacin,,Huancabamba (piu),-5.283333,-79.466667,,0.8,,10190,264,149,,1200-0230,1234567,-6536.1,,40000571,,, +6544,NOR,,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,,,,,6300024,,, +6547,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902870,,, +6556,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900007,,, +6556,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700086,,, +6559,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300017,,, +6577,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012407,,, +6577,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400007,,, +6577,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902902,,, +6577,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100018,,, +6583,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200023,,, +6586,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012416,,, +6586,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100004,,, +6586,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902909,,, +6586,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500005,,, +6589,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100014,,, +6592,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500012,,, +6596,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700101,,, +6600,KOR,ko,Voice of the People,,Goyang (gye),37.594611,126.844722,,50,,8496,45,125,,0500-2300,1234567,987,,34600002,,, +6604,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:20-:29,1234567,,,20100018,,, +6604,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:50-:59,1234567,,,20100018,,, +6604,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:00-:19,1234567,,,20000081,,, +6604,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:30-:49,1234567,,,20000081,,, +6617,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:05-:09,1234567,,,6700014,,, +6617,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:35-:39,1234567,,,6700014,,, +6617,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:25-:29,1234567,,,6700038,,, +6617,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:55-:59,1234567,,,6700038,,, +6622,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100029,,, +6622,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1130-0730,1234567,,,20109270,,, +6628,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,2300-1900,1234567,,,700006,,, +6628,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,2100-1300,1234567,,,20012392,,, +6628,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500011,,, +6637,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500038,,, +6640,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012411,,, +6640,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012491,,, +6640,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012437,,, +6640,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012477,,, +6640,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900021,,, +6640,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012504,,, +6649,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100019,,, +6649,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500024,,, +6655,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012484,,, +6655,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200021,,, +6655,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012460,,, +6661,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016241,,, +6661,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200032,,, +6664,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,0330-0430,1234567,,,33200008,,, +6664,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,0945-1100,1234567,,,33200008,,, +6664,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,1145-1400,1234567,,,33200008,,, +6664,VTN,vi,VOV Lo Cai R,,Lo Cai (loc),22.491667,103.961111,,0.1,,8546,70,152,,2200-2300,1234567,,,33200008,,, +6673,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500007,,, +6673,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000004,,, +6673,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012430,,, +6676,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:16-:19,1234567,,,31500007,,, +6676,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:46-:49,1234567,,,31500007,,, +6676,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:25-:29,1234567,,,32200004,,, +6676,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:55-:59,1234567,,,32200004,,, +6676,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:05-:09,1234567,,,32200007,,, +6676,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:35-:39,1234567,,,32200007,,, +6676,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:10-:15,1234567,,,32900004,,, +6676,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:40-:45,1234567,,,32900004,,, +6676,SNG,en,Singapore Volmet,u,Singapore/Yio Chu Kang (ne),1.380139,103.854722,,1,,10394,83,148,,:20-:24,1234567,,,33100002,,, +6676,SNG,en,Singapore Volmet,u,Singapore/Yio Chu Kang (ne),1.380139,103.854722,,1,,10394,83,148,,:50-:54,1234567,,,33100002,,, +6676,AUS,en,Australian Volmet,u,Ningi/Telstra (QLD),-27.066111,153.055556,,6,,16087,58,159,,:00-:04,1234567,,,37700029,,, +6676,AUS,en,Australian Volmet,u,Ningi/Telstra (QLD),-27.066111,153.055556,,6,,16087,58,159,,:30-:34,1234567,,,37700029,,, +6678,URG,es,R Info Ideas,,Jos Pedro Varela (la),-33.45,-54.533333,,0.025,,11200,228,167,,,,3,,31200015,,, +6679,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:10-:14,1234567,,,31400002,,, +6679,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:40-:44,1234567,,,31400002,,, +6679,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:15-:18,1234567,,,33800003,,, +6679,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:45-:48,1234567,,,33800003,,, +6679,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:25-:39,1234567,,,20000094,,, +6679,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:55-:09,1234567,,,20000094,,, +6679,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:20-:24,1234567,,,32500016,,, +6679,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:50-:54,1234567,,,32500016,,, +6693,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:00-:04,1234567,,,6700026,,, +6693,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:30-:34,1234567,,,6700026,,, +6693,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:15-:19,1234567,,,6700034,,, +6693,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:45-:49,1234567,,,6700034,,, +6693,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:05-:09,1234567,,,6700030,,, +6693,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:35-:39,1234567,,,6700030,,, +6693,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:20-:24,1234567,,,6700017,,, +6693,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:50-:54,1234567,,,6700017,,, +6693,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:10-:14,1234567,,,6700022,,, +6693,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:40-:44,1234567,,,6700022,,, +6704,RUS,,Krasnoyarsk Aero,u,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700108,,, +6712,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200020,,, +6730,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:05-:09,1234567,,,4500002,,, +6730,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:35-:39,1234567,,,4500002,,, +6730,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:20-:24,1234567,,,34500002,,, +6730,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:50-:54,1234567,,,34500002,,, +6730,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:10-:19,1234567,,,4500006,,, +6730,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:40-:49,1234567,,,4500006,,, +6750,CHN,zh,Shangdong Shidao Maritime R.,u,Shidao (SD),36.883333,122.416667,,1,,8343,48,140,,0020-0025,1234567,,,36201091,,, +6750,CHN,zh,Shangdong Shidao Maritime R.,u,Shidao (SD),36.883333,122.416667,,1,,8343,48,140,,0920-0925,1234567,,,36201091,,, +6754,CAN,en,CHR Trenton Volmet,u,Trenton/Point Petre (ON),43.844444,-77.146667,,1,,5937,297,116,,2310-1100,1234567,,,20100022,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0000-0200,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0300-0500,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0600-0800,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0900-1100,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1200-1400,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1500-1700,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1800-2000,1234567,1,,32900001,,, +6765.1,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,2100-2300,1234567,1,,32900001,,, +6801,OCE,,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500009,,, +6915,SOM,so,R Hage,,Gaalkacyo (mud),6.783333,47.433333,,1.3,,6272,129,119,,0300-0400,1234567,,,9500002,,, +6915,SOM,so,R Hage,,Gaalkacyo (mud),6.783333,47.433333,,1.3,,6272,129,119,,0900-1000,1234567,,,9500002,,, +6915.1,CAN,,VCO Sydney Coastguard,f,Chebogue Point (NS),43.744256,-66.121786,,1,,5253,290,110,,2200-2331,1234567,-6915.1,,20109297,,, +6936.3,PRU,es,R Andina,,Huancayo (jun),-12.083333,-75.2,,2.5,,10502,256,145,,0930-1400,1234567,-6936.3,,40000285,,, +6936.3,PRU,es,R Andina,,Huancayo (jun),-12.083333,-75.2,,2.5,,10502,256,145,,1900-0300,1234567,-6936.3,,40000285,,, +6970,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,,9364,56,125,FE,2000-1700,1234567,,,50019898,,, +6970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1800,1234567,,,50020272,,, +7023,AFS,,ZS6SRL,b,Johannesburg (GT),-26.1,27.866667,,0.0004,,8944,161,177,,,,,IRREG,55020,,, +7023,AFS,,ZS4BFN,b,Bloemfontein (FS),-29.1,26.283333,,0.0004,,9236,163,178,,,,,IRREG,55022,,, +7023,AFS,,ZS6YI,b,Johannesburg (GT),-26.683333,27.95,,0.0004,,9009,161,178,,,,,IRREG,55021,,, +7023,AFS,,ZS1AFU,b,Simonstown (NC),-32.433333,20.616667,,0.0004,,9502,168,179,,,,,IRREG,55023,,, +7023,AFS,,ZS1HMO,b,Somerset West (WC),-34.433333,19.283333,,0.0004,,9704,169,180,,,,,IRREG,55025,,, +7023,AFS,,ZS2LAW,b,Grahamstown (EC),-33.3,26.533333,,0.0004,,9697,163,180,,,,,IRREG,55024,,, +7025,AFS,,ZS1AGI,b,George Airport (WC),-33.966667,22.366667,,0.0002,,9697,167,183,,,,,1/2 Dipole E-W A1 QRT?,55026,,, +7028,CZE,,OK1IF,b,Liberec JO70MS,49.6,15.5,,0.00025,,696,110,100,,,,,?,55027,,, +7030,B,,PY5ZW,b,Medianeira (PR),-25.3,-54.116667,,0.025,,10416,232,164,,,,,A1 ?,55028,,, +7032,B,,PU2NJL,b,Guarulhos (SP),-23.466667,-46.533333,,0.025,,9847,227,162,,,,,?,55029,,, +7033,B,,PY2LL,b,Guarulhos (SP),-19.683333,-51.2,,0.004,,9727,233,170,,,,,A1 ?,55030,,, +7034,B,,PT9BCN,b,Campo Grande (MS),-20.433333,-54.533333,,0.012,,9982,235,166,,,,,A1 24?,55031,,, +7035,B,,PS8RF,b,Teresina (PI),-5.1,-42.783333,,0.025,,7868,233,152,,,,,A1 ?,55033,,, +7035,CAN,,VA3NDO,b,Toronto ON (ON),43.716667,-79.366667,,0.0001,,6081,298,158,,,,,?,55032,,, +7038.5,CZE,,OK0EU,b,Panska Ves,50.516667,14.533333,,0.001,,591,104,93,,,,-7038.5,Mag Loop N-S A1 24,55034,,, +7039.5,CZE,,OK0EPB,b,Prague,49.516667,15.033333,,0.01,,670,112,84,,,,-7039.5,Dipole A1 day,55035,,, +7039.6,I,,IZ3DVW,b,Monselice (pd),45.216667,11.783333,,0.0005,,862,151,99,,,,-7039.6,Inv V A1 24,55036,,, +7047.5,INS,,YD0MWK,b,Bekasi (JB-kbk),-6.3,107.033333,,0.005,,11285,85,174,,,,-7047.5,Inv Vee@15m A1 Planned,55037,,, +7082.65,CLM,,HK3QQ,b,Bogota,4.716667,-74.033333,,0.01,,8942,265,163,,,,-7082.65,Dipole A1 PT,55038,,, +7120,SOM,,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,1930-2000,1234567,,,9500001,,, +7120,SOM,ar,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,1900-1915,1234567,,,9500001,,, +7120,SOM,en,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,1915-1930,1234567,,,9500001,,, +7120,SOM,so,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,0900-1200,1234567,,,9500001,,, +7120,SOM,so,R Hargeisa,,Hargeisa=Hargaysa (woq),9.574622,44.059844,,100,,5822,130,95,,1500-1900,1234567,,,9500001,,, +7160,CAF,,R ICDI,,Boali (mpk),4.8,18.116667,,1,,5370,164,111,,0500-0800,12345..,,,9300004,,, +7160,CAF,,R ICDI,,Boali (mpk),4.8,18.116667,,1,,5370,164,111,,1600-2000,12345..,,,9300004,,, +7195,UGA,xx,UBC Red Channel,,Kampala/Bugolobi (kmp),0.314167,32.622222,,10,,6257,148,110,,0600-1300,1234567,,,40000738,,, +7200,AFG,en,R Afghanistan FS,,Kabul/Yakatut (kab),34.539861,69.211778,,250,,5255,86,86,,1530-1600,1234567,,,50016434,,, +7200,AFG,ur,R Afghanistan FS,,Kabul/Yakatut (kab),34.539861,69.211778,,250,,5255,86,86,,1600-1630,1234567,,,50016434,,, +7200,ETH,am,ERTA Ethiopia National R,,Geja Dera (aab),8.761111,38.6625,,100,,5636,137,93,EAf,0300-2100,1234567,,,50004568,,, +7200,ETH,en,ERTA Ethiopia National R,,Geja Dera (aab),8.761111,38.6625,,100,,5636,137,93,EAf,1200-1300,12345..,,,50004568,,, +7200,MYA,my,Myanmar R-National,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0030-0300,1234567,,,22100004,,, +7200,MYA,my,Myanmar R,,Yangon/Yay Kuu (ygn),16.863194,96.161778,,50,,8519,80,125,,0930-1255,1234567,,,22100009,,, +7200,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,,9364,56,125,FE,2200-2300,1234567,,,50021916,,, +7205,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,WAf,2000-2200,1234567,,,50017234,,, +7205,TUR,de,Voice of Turkey,,Emirler,39.401389,32.855833,,500,105,2469,114,55,Eu,1830-1930,1234567,,,50008171,,, +7205,SDN,ar,SRTC Sudan Nat. R,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,0215-0430,1234567,,,40000741,,, +7205,SDN,ar,SRTC Sudan Nat. R,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,1500-1600,1234567,,,40000741,,, +7205,SDN,ar,SRTC Sudan Nat. R,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,1900-2100,1234567,,,40000741,,, +7205,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0355-0700,1234567,,,40000593,,, +7205,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0930-1100,1234567,,,40000593,,, +7205,ERI,,Dimtsi Hafash 1,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1400-2000,1234567,,,40000593,,, +7205,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1200-1300,1234567,,,50022647,,, +7205,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1500-1600,1234567,,,40000739,,, +7205,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1230-1500,1234567,,,40000739,,, +7205,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1600-1800,1234567,,,40000739,,, +7205,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0230,1234567,,,40000739,,, +7205,BGD,,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,0400-2000,1234567,,,36300007,,, +7205,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,252,7808,59,108,SAf,2100-2200,1234567,,,50004579,,, +7205,CHN,mn,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,MNG,2300-2400,1234567,,,50004579,,, +7205,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,Eu,1700-1800,1234567,,,50004577,,, +7205,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,95,7797,50,113,FE,1300-1400,1234567,,,50004577,,, +7205,RUS,VN,Voice of Russia,,Razdolnoye (SW) (PM),43.545556,131.919722,,100,,8165,38,119,SEA,1200-1300,1234567,,,50022648,,, +7205,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,329,8917,74,120,,1900-2000,1234567,,,50021659,,, +7205,AFS,en,Amateur R Today,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,SAf,0800-0900,......7,,,50004576,,, +7205,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,332,10223,62,124,,2200-2300,1234567,,,50021658,,, +7210,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,280,1609,135,51,NAf,0500-0700,1234567,,,50004586,,, +7210,ALB,es,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,280,1609,135,51,SEu,2200-2400,1234567,,,50004586,,, +7210,ROU,ru,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,EEu,0530-0600,1234567,,,50022651,,, +7210,CHN,eo,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,FE,1100-1200,1234567,,,50022649,,, +7210,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,1800-1900,1234567,,,50022649,,, +7210,RUS,ko,R Free Asia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,250,125,6080,48,94,FE,1500-1700,1234567,,,50000815,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0300-0530,1234567,,,50004590,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0530-0800,.....67,,,50004590,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,0900-1100,1234567,,,50004590,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,1200-1400,.....67,,,50004590,,, +7210,ETH,am,R Fana,,Addis Abeba/Lideta (aab),9.019167,38.72,,10,,5613,137,103,EAf,1500-2102,1234567,,,50004590,,, +7210,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1400-1500,1234567,,,50022650,,, +7210,CHN,ko,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,2200-2300,1234567,,,50022650,,, +7210,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,180,7521,82,115,,0230-0401,12345..,,,40000744,,, +7210,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,180,7521,82,115,,0230-0501,.....67,,,40000744,,, +7210,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,180,7521,82,115,,0730-1000,12345..,,,40000744,,, +7210,IND,hi,AIR East,,Kolkata=Calcutta (WB),22.361111,88.290833,,50,180,7521,82,115,,0730-1030,.....67,,,40000744,,, +7210,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,1900-2000,1234567,,,50016036,,, +7210,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,1800-1900,1234567,,,50016036,,, +7210,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,2000-2100,1234567,,,50016036,,, +7210,CHN,,Yunnan RGD Shaoshu Minzu,,Kunming/Lantau (YN),25.066667,102.683333,,20,,8242,69,126,,0630-0830,1234567,,,40000583,,, +7210,CHN,,Yunnan RGD Shaoshu Minzu,,Kunming/Lantau (YN),25.066667,102.683333,,20,,8242,69,126,,1055-1500,1234567,,,40000583,,, +7210,CHN,,Yunnan RGD Shaoshu Minzu,,Kunming/Lantau (YN),25.066667,102.683333,,20,,8242,69,126,,2255-0300,1234567,,,40000583,,, +7210,VTN,vi,VOV1,,Bun M Thuột (dkk),12.644278,108.02055,,20,,9675,73,133,ND,2145-1700,1234567,,,50016037,,, +7215,D,BAG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,12.....,,,50022654,,, +7215,D,BH,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,1......,,,50022654,,, +7215,D,BUN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,....56.,,,50022654,,, +7215,D,GA,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,......7,,,50022654,,, +7215,D,KHR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,..3....,,,50022654,,, +7215,D,KHT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,....5..,,,50022654,,, +7215,D,KIN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0100-0115,.....67,,,50022654,,, +7215,D,KKN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,.2.....,,,50022654,,, +7215,D,KTW,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,..3....,,,50022654,,, +7215,D,MEW,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0045-0100,12.....,,,50022654,,, +7215,D,VAD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,...4...,,,50022654,,, +7215,D,VV,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0030-0045,...4...,,,50022654,,, +7215,D,hi,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0115-0130,.....67,,,50022654,,, +7215,D,mag,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0045-0100,..3....,,,50022654,,, +7215,D,mwr,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0100-0115,12.....,,,50022654,,, +7215,D,pa,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0100-0115,...45..,,,50022654,,, +7215,D,sd,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0100-0115,..3....,,,50022654,,, +7215,D,xnr,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0045-0100,...4567,,,50022654,,, +7215,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,NAf,2000-2200,1234567,,,50022653,,, +7215,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,Sib,1000-1100,1234567,,,50004598,,, +7215,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,CAs,1200-1300,1234567,,,50004598,,, +7215,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,INS,1300-1400,1234567,,,50004598,,, +7215,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,1500-1600,1234567,,,50004596,,, +7215,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,EEu,1600-1700,1234567,,,50022652,,, +7215,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,2025-2400,1234567,,,36201089,,, +7215,CHN,zh,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,Eu,1900-2000,1234567,,,50022652,,, +7215,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,1300-1400,1234567,,,50016562,,, +7215.1,NOR,,UKE Senderen,,Trondheim (st),63.6,10.383333,,1,,1298,9,70,,????-????,1234567,-7215.1,,40000748,,, +7220,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,0800-0830,......7,,,50022657,,, +7220,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Eu,0800-0845,.....6.,,,50022657,,, +7220,ALB,bg,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,SEE,1100-1200,1234567,,,50004606,,, +7220,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,EGY,0500-0600,1234567,,,50004606,,, +7220,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,2300-2400,1234567,,,50022659,,, +7220,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,0500-0600,1234567,,,50022659,,, +7220,IRN,ar,IRIB Voice of Palestine,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0320-0420,1234567,,,50022658,,, +7220,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,EAf,1700-1800,1234567,,,50022656,,, +7220,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0000-0600,1234567,,,36201057,,, +7220,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,,6812,67,105,,0600-0900,12.4567,,,36201057,,, +7220,CHN,vi,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,2300-2400,1234567,,,50004610,,, +7220,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,1500-1600,1234567,,,50004607,,, +7220,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0400-0500,1234567,,,50016039,,, +7220,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0600-0700,1234567,,,50016039,,, +7220,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0900-1000,1234567,,,50016039,,, +7220,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0500-0600,1234567,,,50016039,,, +7220,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0800-0900,1234567,,,50016039,,, +7220,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,1100-1200,1234567,,,50016039,,, +7220,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,FE,1400-1500,1234567,,,50022655,,, +7220,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,ME,2200-2300,1234567,,,50022655,,, +7220,VTN,VN,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1500-1600,1234567,5,,50004620,,, +7220,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1600-1630,1234567,5,,50004620,,, +7220,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,2030-2100,1234567,5,,50004620,,, +7220,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1630-1700,1234567,5,,50004620,,, +7220,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,2100-2130,1234567,5,,50004620,,, +7220,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,Sib,1130-1200,1234567,5,,50004620,,, +7220,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,Sib,1230-1300,1234567,5,,50004620,,, +7220,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1100-1130,1234567,5,,50004620,,, +7220,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1200-1230,1234567,5,,50004620,,, +7220,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1300-1330,1234567,5,,50004620,,, +7220,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,2200-2230,1234567,5,,50004620,,, +7225,CHN,hi,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,SAs,1500-1600,1234567,,,50004622,,, +7225,CHN,hr,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,Eu,2100-2200,1234567,,,50010222,,, +7225,CHN,,Sichuan RGD,,Chengdu (SC),30.616667,104.1,,15,,7857,65,124,,0930-1515,1234567,,,40000752,,, +7225,CHN,,Sichuan RGD,,Chengdu (SC),30.616667,104.1,,15,,7857,65,124,,1515-1700,1234567,,,40000752,,, +7225,CHN,,Sichuan RGD,,Chengdu (SC),30.616667,104.1,,15,,7857,65,124,,2125-0135,1234567,,,40000752,,, +7225,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,1900-2100,1234567,,,50022660,,, +7230,ALB,tr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,ME,1500-1600,1234567,,,50022661,,, +7230,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,320,4724,102,77,Cau,1620-1720,1234567,,,50019613,,, +7230,BFA,,RTB-R.Nationale du Burkina,,Ouagadougou (kad),12.434444,-1.551944,,50,,4469,192,85,,0800-1700,1234567,,,40000753,,, +7230,CHN,ky,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0330-0530,1234567,,,40000756,,, +7230,CHN,mn,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0700-0800,1234567,,,40000756,,, +7230,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0000-0330,1234567,,,40000756,,, +7230,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0530-0700,1234567,,,40000756,,, +7230,CHN,mn,Xinjiang RGD,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0800-1030,1.34567,,,40000756,,, +7230,IND,hi,AIR East,,Kurseong (WB),26.864722,88.258333,,50,150,7145,79,112,,0620-1030,1234567,,,40000757,,, +7230,CHN,zh,CNR 1,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0600-0900,1.34567,,,40000755,,, +7230,CHN,zh,CNR 1,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0900-1805,1234567,,,40000755,,, +7230,CHN,zh,CNR 1,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,2025-0600,1234567,,,40000755,,, +7230,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,0400-0700,12345..,,,50004628,,, +7235,G,ff,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,WAf,1900-2000,1234567,,,50022664,,, +7235,G,ru,KBS World R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,Eu,1800-1900,1234567,,,50022662,,, +7235,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SEu,2000-2100,1234567,,,50022663,,, +7235,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1600-1700,1234567,,,50004633,,, +7235,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1500-1600,1234567,,,50004633,,, +7235,ETH,aa,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1300-1400,1234567,,,50007765,,, +7235,ETH,ar,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1400-1500,1234567,,,50007765,,, +7235,ETH,en,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1600-1700,1234567,,,50007765,,, +7235,ETH,fr,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1700-1800,1234567,,,50007765,,, +7235,ETH,so,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,0700-0800,1234567,,,50007765,,, +7235,ETH,so,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1200-1300,1234567,,,50007765,,, +7235,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,,2300-2400,1234567,,,50016044,,, +7235,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,2100-2300,1234567,,,50016044,,, +7235,PHL,ko,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1200-1400,1234567,,,50022666,,, +7235,MRA,ko,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50022665,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,,10817,78,140,ND,2200-2400,1234567,,,50013472,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,0000-0100,1234567,,,50013472,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,0100-0400,1234567,,,50013472,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,0400-0600,1234567,,,50013472,,, +7235,MLA,,RTM Sarawak FM,,Kuching/Setapok (swk),1.511944,110.315,,10,ND,10817,78,140,,0900-1600,1234567,,,50013472,,, +7236.5,ETH,KUN,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,1.3.5..,-7236.5,,50022274,,, +7236.5,ETH,aa,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,.2.4.6.,-7236.5,,50022274,,, +7236.5,ETH,ar,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1500-1530,1.3.5.7,-7236.5,,50022274,,, +7236.5,ETH,ti,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1500-1530,.2.4.6.,-7236.5,,50022274,,, +7236.5,ETH,ti,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,......7,-7236.5,,50022274,,, +7236.5,ETH,ti,V.o.Peace and Democracy,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,0400-0500,1.3.5..,-7236.5,,50022275,,, +7236.5,ETH,ti,V.o.Peace and Democracy,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,1800-1830,1.3.5..,-7236.5,,50022275,,, +7236.5,ETH,ti,Voice of Eritrea,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,0400-0430,.2.4.6.,-7236.5,,50022276,,, +7236.5,ETH,ti,Voice of Eritrea,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,1800-1830,.2.4.6.,-7236.5,,50022276,,, +7240,D,BNT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,......7,,,50022667,,, +7240,D,BOR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0000-0015,12.....,,,50022667,,, +7240,D,CKM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0015-0030,12.....,,,50022667,,, +7240,D,GNG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,.23....,,,50022667,,, +7240,D,HO,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0015-0030,....5..,,,50022667,,, +7240,D,KRB,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2345-2400,....56.,,,50022667,,, +7240,D,LBO,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,....56.,,,50022667,,, +7240,D,LNG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,1......,,,50022667,,, +7240,D,MIS,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0000-0015,....567,,,50022667,,, +7240,D,SHP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,2330-2345,...4...,,,50022667,,, +7240,D,as,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0015-0030,.....67,,,50022667,,, +7240,D,kru,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0000-0015,..34...,,,50022667,,, +7240,D,my,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SEA,2345-2400,.234...,,,50022667,,, +7240,D,sat,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,0015-0030,..34...,,,50022667,,, +7240,D,zh,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SEA,2345-2400,1.....1,,,50022667,,, +7240,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,0400-0500,1234567,,,50022668,,, +7240,ARS,fa,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,IRN,1500-1800,1234567,,,50023702,,, +7240,IND,hi,AIR West,,Mumbai=Bombay (MH),19.182778,72.807778,,50,90,6734,96,107,,0530-1035,1234567,,,40000763,,, +7240,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0000-0030,1234567,,,40000762,,, +7240,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1030-1100,1234567,,,40000762,,, +7240,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2230-2300,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0030-0300,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0900-1000,12.4567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1000-1030,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1100-1800,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2000-2230,1234567,,,40000762,,, +7240,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2300-2400,1234567,,,40000762,,, +7240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,40,16373,78,148,Oc,1500-1700,1234567,,,50016047,,, +7245,TUR,bg,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1200-1230,1234567,,,50022669,,, +7245,MTN,ar,R Mauritanie,,Nouakchott (nkc),18.139444,-15.999722,,100,,4254,216,80,,0620-1800,1234567,,,40000813,,, +7245,MTN,ar,R Mauritanie,,Nouakchott (nkc),18.139444,-15.999722,,100,,4254,216,80,,1815-0100,1234567,,,40000813,,, +7245,MTN,fr,R Mauritanie,,Nouakchott (nkc),18.139444,-15.999722,,100,,4254,216,80,,1800-1815,1234567,,,40000813,,, +7245,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NAf,2000-2100,1234567,,,50004652,,, +7245,TJK,ar,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1200-1300,1234567,,,34200003,,, +7245,TJK,en,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1300-1400,1234567,,,34200003,,, +7245,TJK,fa,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,0400-0600,1234567,,,34200003,,, +7245,TJK,fa,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,0600-0800,1234567,,,34200003,,, +7245,TJK,fa,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1600-1800,1234567,,,34200003,,, +7245,TJK,hi,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1100-1200,1234567,,,34200003,,, +7245,TJK,ru,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,0800-1000,1234567,,,34200003,,, +7245,TJK,tg,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,0200-0400,1234567,,,34200003,,, +7245,TJK,tg,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1400-1600,1234567,,,34200003,,, +7245,TJK,uz,Voice of Tajik,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,As,1000-1100,1234567,,,34200003,,, +7245,CHN,eo,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,Eu,1700-1800,1234567,,,50004653,,, +7245,CHN,ru,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,150,317,7712,60,112,EEu,1900-2000,1234567,,,50010227,,, +7245,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,1430-1500,1234567,,,40000812,,, +7245,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,0855-1430,1234567,,,40000812,,, +7245,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,1500-1605,1234567,,,40000812,,, +7245,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,2100-0100,1234567,,,40000812,,, +7250,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,4,1205,156,45,,0950-1030,......7,,,50004660,,, +7250,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,326,1205,156,45,,0645-0715,123456,,,50004660,,, +7250,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,4,1205,156,45,,0530-0600,123456,,,50004660,,, +7250,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,4,1205,156,45,Eu,0830-0915,......7,,,50004660,,, +7250,CVA,ro,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,4,1205,156,45,EEu,0710-0830,......7,,,50004660,,, +7250,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,330,1205,156,49,,0730-0830,......7,,,50004660,,, +7250,KWT,fa,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,,4236,111,72,ME,0800-1000,1234567,,,50016051,,, +7250,IRN,ps,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,0220-0320,1234567,,,50022671,,, +7250,CHN,es,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEu,2200-2400,1234567,,,50004659,,, +7250,CHN,hu,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,2130-2200,1234567,,,50004659,,, +7250,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SAs,0100-0200,1234567,,,50004659,,, +7250,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1200-1300,1234567,,,50022670,,, +7250,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,1615-1730,1234567,,,50016050,,, +7250,IND,ml,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,1730-1830,1234567,,,50016050,,, +7250,BGD,,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,Eu,1900-1915,1234567,,,36300005,,, +7250,BGD,ar,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,ME,1600-1630,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,0400-1230,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1300-1315,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1345-1400,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1430-1515,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1545-1600,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1630-1745,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1900-2000,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,Eu,1915-2000,1234567,,,36300005,,, +7250,BGD,bn,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,ME,1630-1730,1234567,,,36300005,,, +7250,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1230-1300,1234567,,,36300005,,, +7250,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1745-1900,1234567,,,36300005,,, +7250,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,Eu,1745-1815,1234567,,,36300005,,, +7250,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,Eu,1815-1900,1234567,,,36300005,,, +7250,BGD,hi,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1515-1545,1234567,,,36300005,,, +7250,BGD,ne,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,SAs,1315-1345,1234567,,,36300005,,, +7250,BGD,ur,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,1400-1430,1234567,,,36300005,,, +7250,IND,en,AIR North,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,,1135-1140,1234567,,,50011067,,, +7250,IND,hi,AIR North,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,,1130-1135,1234567,,,50011067,,, +7250,IND,ne,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,NPL,0700-0800,1234567,,,50016049,,, +7250,IND,ur,All India R GOS,,Gorakhpur (UP),26.875,83.464722,,50,ND,6822,82,108,PAK,0830-1130,1234567,,,50016049,,, +7250,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50022672,,, +7255,BLR,de,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,1900-2040,1234567,,,50021662,,, +7255,BLR,en,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,2100-2300,1234567,,,50021662,,, +7255,BLR,es,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,2100-2120,......7,,,50021662,,, +7255,BLR,fr,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,2040-2100,1234567,,,50021662,,, +7255,BLR,pl,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,1805-1900,1234567,,,50021662,,, +7255,BLR,ru,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,250,252,1438,73,47,,2300-2400,1234567,,,50021662,,, +7255,KWT,bo,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0000-0100,1234567,,,50022677,,, +7255,KWT,bo,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1400-1500,1234567,,,50022677,,, +7255,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,1900-2000,1234567,,,50016053,,, +7255,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,2100-2200,1234567,,,50016053,,, +7255,NIG,fr,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,2000-2100,1234567,,,50016053,,, +7255,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,WAf,0730-0800,1234567,,,50016053,,, +7255,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,2200-2300,1234567,,,50016053,,, +7255,NIG,,Voice of Nigeria,,Abuja/Lugbe (fct),8.967333,7.363472,,100,,4798,179,85,,0000-2400,9999999,,,6200006,,, +7255,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1600-1800,1234567,,,50022674,,, +7255,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,95,7797,50,108,FE,1500-1600,1234567,,,50004667,,, +7255,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,,,40000707,,, +7255,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0200,1234567,,,40000707,,, +7255,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1600,1234567,,,40000707,,, +7255,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1700-1805,1234567,,,40000707,,, +7255,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2050-2230,1234567,,,40000707,,, +7255,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1600-1700,1234567,,,40000707,,, +7255,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,,,40000707,,, +7255,CHN,ru,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,150,317,7712,60,112,EEu,2000-2100,1234567,,,50010231,,, +7255,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023703,,, +7255,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023703,,, +7255,CHN,tr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1900-2000,1234567,,,50004668,,, +7255,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,EEu,1800-1900,1234567,,,50022673,,, +7255,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,FE,1300-1400,1234567,,,50022673,,, +7255,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,2055-0100,1234567,,,36201058,,, +7255,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,Sib,1000-1100,1234567,,,50022675,,, +7255,BOT,,R Botswana,,Sebele (se),-24.567778,25.957778,,50,330,8736,162,126,,0300-2200,1234567,,,40000814,,, +7260,IRN,az,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0320-0520,1234567,,,50022679,,, +7260,CHN,pt,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEu,2200-2300,1234567,,,50004679,,, +7260,CHN,si,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,173,5347,76,91,SAs,2330-0030,1234567,,,50004678,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0300-0800,1234567,,,40000724,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1100,1.3.567,,,40000724,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1100-1205,1234567,,,40000724,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1205-1800,1234567,,,40000724,,, +7260,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,2300-0300,1234567,,,40000724,,, +7260,MNG,mn,Mongoliin R 2,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,50,,6615,50,106,,0655-1500,1234567,,,40000816,,, +7260,MNG,mn,Mongoliin R 2,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,50,,6615,50,106,,2200-0500,1234567,,,40000816,,, +7260,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1100-1300,1234567,,,50022678,,, +7260,PHL,km,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,2200-2230,1234567,,,50022680,,, +7260,VUT,bi,R Vanuatu,,Port Vila/Enten Lagoon (SW) (sef),-17.756694,168.362028,,1,,15881,29,166,,1830-1230,1234567,9524,,40000815,,, +7265,D,en,European Music R,,Ghren (mev),53.535556,11.611111,,100,,384,64,41,Eu,0800-0900,9999999,,,50022681,,, +7265,E,ar,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,170,1547,213,47,WAf,1900-2100,12345..,,,50018114,,, +7265,E,ar,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,170,1547,213,47,WAf,2000-2200,.....67,,,50018114,,, +7265,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,170,1547,213,47,WAf,2200-2300,1234567,,,50018114,,, +7265,D,D,E,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0600-0900,..3..6.,,,50017141,, +7265,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0700-1600,9999999,,,50017141,,, +7265,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0800-0900,..3..6.,,,50017141,,, +7265,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1200-1400,..3..6.,,,50017141,,, +7265,D,de,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1300-1600,9999999,,,50017141,,, +7265,D,en,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0700-0800,..3..6.,,,50017141,,, +7265,D,en,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1200-1600,..3..6.,,,50017141,,, +7265,D,en,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1500-1600,..3..6.,,,50017141,,, +7265,D,es,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,0600-0700,..3..6.,,,50017141,,, +7265,D,es,Hamburger Lokalr,,Ghren (mev),53.535556,11.611111,,1,,384,64,61,CEu,1400-1500,..3..6.,,,50017141,,, +7265,CHN,eo,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,,1930-2030,1234567,,,50004689,,, +7265,CHN,bg,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEE,1830-1900,1234567,,,50004690,,, +7265,CHN,eo,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1930-2030,1234567,,,50004690,,, +7265,CHN,hi,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,SAs,1300-1400,1234567,,,50004690,,, +7265,CHN,it,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEu,2030-2130,1234567,,,50004690,,, +7265,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,EEu,1600-1800,1234567,,,50004690,,, +7265,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,1500-1600,1234567,,,50004689,,, +7265,CHN,si,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,CLN,1400-1500,1234567,,,50004689,,, +7265,CHN,en,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,1430-1500,1234567,,,36201059,,, +7265,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,1230-1430,1234567,,,36201059,,, +7265,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,1500-1605,1234567,,,36201059,,, +7267.1,PAK,,Azad Kashmir R,,Rawalpindi (pjb),33.610278,72.976667,,100,68,5581,84,93,,0900-1215,1234567,-7267.1,,40000818,,, +7270,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,0300-0400,1234567,,,40000820,,, +7270,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,1400-1500,1234567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,0400-0600,1234567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,0600-0950,1.34567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,0950-1400,1234567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,1500-1605,1234567,,,40000820,,, +7270,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,52,7433,53,114,,2150-0300,1234567,,,40000820,,, +7270,IND,en,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,1000-1100,1234567,,,50016054,,, +7270,IND,hi,AIR FM Gold,,Chennai=Madras (TN),13.1375,80.125,,100,,7749,95,115,SAs,0130-0430,1234567,,,50011364,,, +7270,IND,si,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,0045-0115,1234567,,,50016054,,, +7270,IND,si,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,1300-1500,1234567,,,50016054,,, +7270,IND,ta,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,0000-0045,1234567,,,50016054,,, +7270,IND,ta,All India R GOS,,Chennai=Madras (TN),13.1375,80.125,,100,ND,7749,95,115,CLN,1115-1215,1234567,,,50016054,,, +7270,TWN,zh,Voice of China,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,1400-1500,1234567,,,50014076,,, +7270,TWN,zh,Voice of China,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2300-2400,1234567,,,50014076,,, +7270,TWN,zh,Voice of China,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,325,9375,56,125,,1400-1500,1234567,,,50017076,,, +7270,TWN,zh,Voice of China,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,325,9375,56,125,,2300-2400,1234567,,,50017076,,, +7270,MLA,,RTM Wai FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,0700-1000,1234567,,,40000821,,, +7270,MLA,,RTM Wai FM/Limbang FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,2200-0100,1234567,,,40000821,,, +7270,MLA,bd,RTM Wai FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,0100-0400,1234567,,,40000821,,, +7270,MLA,ib,RTM Limbang FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,1315-1400,1..4...,,,40000821,,, +7270,MLA,ib,RTM Wai FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,1000-1315,1234567,,,40000821,,, +7270,MLA,ib,RTM Wai FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,1315-1400,.23.567,,,40000821,,, +7270,MLA,ib,RTM Wai FM/Limbang FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,1400-1600,1234567,,,40000821,,, +7270,MLA,lm,RTM Limbang FM,,Kuching/Setapok (swk),1.511944,110.315,,100,45,10817,78,130,,0400-0700,1234567,,,40000821,,, +7275,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,50,1547,213,49,Eu,1700-2300,.....67,,,50009674,,, +7275,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,340,1955,168,50,,0355-0630,1234567,,,50016055,,, +7275,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,340,1955,168,50,Eu,0502-0602,1234567,,,50016055,,, +7275,NIG,en,FRCN Abuja,,Abuja/Gwagwalada (fct),8.929061,7.072856,,100,,4802,179,85,,0530-1200,1234567,,,6200003,,, +7275,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,WAf,1730-1830,1234567,,,50022682,,, +7275,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0330-0400,1234567,,,50022684,,, +7275,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0330-0430,.....67,,,50022684,,, +7275,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0400-0430,.....67,,,50022684,,, +7275,STP,ar,VoA Darfur,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0300-0330,1234567,,,50022683,,, +7275,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0600-0700,1234567,,,40000826,,, +7275,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0300-0600,1234567,,,40000826,,, +7275,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0700-0800,1234567,,,40000826,,, +7275,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0800-1100,1.34567,,,40000826,,, +7275,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1100-1200,1234567,,,40000826,,, +7275,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,1100-1805,1234567,,,40000825,,, +7275,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,2025-0030,1234567,,,40000825,,, +7275,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,305,8663,46,119,Eu,1800-1900,1234567,,,50004705,,, +7275,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,0800-0900,1234567,,,50004705,,, +7275,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,305,8663,46,119,Eu,1600-1800,1234567,,,50004705,,, +7275,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,0900-1100,1234567,,,50004705,,, +7275,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,1200-1300,1234567,,,50004705,,, +7275,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,275,8663,46,119,CHN,2200-2300,1234567,,,50004705,,, +7275,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,1300-1400,1234567,,,50004705,,, +7280,IND,hi,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,130,7430,77,114,,0530-0600,......7,,,40000830,,, +7280,IND,hi,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,130,7430,77,114,,0600-0930,1234567,,,40000830,,, +7280,IND,hi,AIR Northeast,,Guwahati (AS),26.1525,91.651667,,50,130,7430,77,114,,0945-1130,1234567,,,40000830,,, +7280,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,1100-1300,1234567,,,50009676,,, +7280,VTN,VN,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1700-1800,1234567,,,50004713,,, +7280,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1600-1630,1234567,,,50004713,,, +7280,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1800-1830,1234567,,,50004713,,, +7280,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1900-1930,1234567,,,50004713,,, +7280,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2030-2100,1234567,,,50004713,,, +7280,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1830-1900,1234567,,,50004713,,, +7280,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1930-2000,1234567,,,50004713,,, +7280,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2100-2130,1234567,,,50004713,,, +7280,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1630-1700,1234567,,,50004713,,, +7280,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2000-2030,1234567,,,50004713,,, +7280,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,288,11578,41,128,,1430-1500,1234567,,,50020451,,, +7285,G,ar,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EAf,0400-0500,1234567,,,50022687,,, +7285,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,310,1609,135,51,WEu,2000-2200,1234567,,,50004714,,, +7285,ALB,ro,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,EEu,0900-1000,1234567,,,50004714,,, +7285,ARM,ur,BBC WS,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,SAs,0130-0200,1234567,,,50022686,,, +7285,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1720-2020,1234567,,,50022689,,, +7285,RUS,,Trans World R,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,AFG,1600-1630,1234567,,,50023704,,, +7285,UAE,ar,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0300-0400,1234567,,,50022688,,, +7285,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1600,1234567,,,50004716,,, +7285,CHN,mn,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,MNG,1300-1400,1234567,,,50004715,,, +7285,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEu,1800-1900,1234567,,,50022685,,, +7285,AFS,af,SABC R Sonder Grense,,Meyerton (SABC) (GT),-26.600933,28.140833,,100,275,9005,160,124,,0500-0800,1234567,,,40000735,,, +7285,VTN,VN,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,0000-0100,1234567,,,50004723,,, +7285,VTN,en,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1100-1130,1234567,,,50004723,,, +7285,VTN,en,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1500-1530,1234567,,,50004723,,, +7285,VTN,fr,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1200-1230,1234567,,,50004723,,, +7285,VTN,fr,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1300-1330,1234567,,,50004723,,, +7285,VTN,km,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1030-1100,1234567,,,50004723,,, +7285,VTN,km,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1230-1300,1234567,,,50004723,,, +7285,VTN,km,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,2230-2300,1234567,,,50004723,,, +7285,VTN,lo,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1330-1430,1234567,,,50004723,,, +7285,VTN,lo,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,2300-2400,1234567,,,50004723,,, +7285,VTN,th,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1130-1200,1234567,,,50004723,,, +7285,VTN,th,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1430-1500,1234567,,,50004723,,, +7285,VTN,th,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,1530-1600,1234567,,,50004723,,, +7285,VTN,th,Voice of Vietnam,,H Nội/Me Tri (hno),20.999028,105.782444,,50,216,8793,70,126,SEA,2200-2230,1234567,,,50004723,,, +7289.9,INS,id,RRI Pro-1,,Nabire (PA-nab),-3.366667,135.483333,,1,,12859,59,156,,0600-0820,1234567,-7289.9,,40000832,,, +7289.9,INS,id,RRI Pro-1,,Nabire (PA-nab),-3.366667,135.483333,,1,,12859,59,156,,2100-2400,1234567,-7289.9,,40000832,,, +7290,MDA,de,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,309,1731,99,47,,2115-2130,12345..,,,50018129,,, +7290,MDA,en,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,309,1731,99,47,,2100-2115,12345..,,,50018129,,, +7290,MDA,en,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,309,1731,99,47,,2145-2200,12345..,,,50018129,,, +7290,MDA,fr,R PMR Pridnestrovye,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,309,1731,99,47,,2130-2145,12345..,,,50018129,,, +7290,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,1900-2000,....5..,,,50019911,,, +7290,ROU,en,Brother Stair,,Săftica (SW) (IF),44.637778,26.074403,,100,290,1666,112,54,,2000-2100,1234567,,,50019256,,, +7290,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,100,290,1666,112,54,,1900-2000,.....67,,,50019911,,, +7290,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,Eu,1900-2000,....567,,,50021920,,, +7290,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0200-0300,1234567,,,50022691,,, +7290,CHN,ko,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,2100-2200,1234567,,,50004726,,, +7290,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,FE,1000-1200,1234567,,,50022690,,, +7290,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,1100-1805,1234567,,,40000833,,, +7290,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,2025-0130,1234567,,,40000833,,, +7290,IND,hi,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,160,7942,100,119,,0230-0430,1234567,,,40000834,,, +7290,IND,hi,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,160,7942,100,119,,0430-1030,.....67,,,40000834,,, +7290,IND,hi,AIR South,,Thiruvananthapuram (KL),8.456111,76.936944,,50,160,7942,100,119,,0630-1000,12345..,,,40000834,,, +7295,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,162,660,211,37,CAf,0505-0600,1234567,,,50016056,,, +7295,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,CAf,0500-0600,1234567,,,50016056,,, +7295,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,162,660,211,37,CAf,0500-0505,1234567,,,50016056,,, +7295,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,0600-0630,1234567,,,50022693,,, +7295,MLI,ha,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,,4565,202,83,WAf,0800-0900,1234567,,,50004732,,, +7295,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,,4565,202,83,WAf,2300-2400,1234567,,,50004732,,, +7295,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,,1900-2000,1234567,,,50016569,,, +7295,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NAf,1900-2100,1234567,,,50016569,,, +7295,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,,2000-2100,1234567,,,50021663,,, +7295,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,247,5761,65,98,,0330-0530,1234567,,,40000704,,, +7295,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,247,5761,65,98,,1030-1230,12.4.67,,,40000704,,, +7295,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,247,5761,65,98,,1100-1230,..3.5..,,,40000704,,, +7295,CHN,fa,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,IRN,1800-1900,1234567,,,50022692,,, +7295,IND,hi,AIR Northeast,,Aizawl (MZ),23.734167,92.705833,,10,36,7702,78,124,,0700-1000,1234567,,,40000837,,, +7295,MLA,en,RTM Traxx FM,,Kajang (slg),3.011111,101.784444,,100,,10109,84,127,,0000-2400,1234567,27,,40000838,,, +7300,G,ar,HCJB Global,,Woofferton (EN-SHP),52.313333,-2.722778,,250,170,622,276,39,NAf,2100-2145,1234567,,,50020457,,, +7300,D,be,Trans World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1500-1528,1......,,,50022698,,, +7300,D,ru,Trans World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,1500-1528,0.234567,,,50022698,,, +7300,AUT,pl,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,Eu,0644-0659,12345..,,,50022697,,, +7300,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0250-0320,1234567,,,50022696,,, +7300,IRN,uz,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0220-0250,1234567,,,50022696,,, +7300,CHN,ar,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,ME,1600-1800,1234567,,,50022694,,, +7300,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1300-1400,1234567,,,50022694,,, +7300,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50022694,,, +7300,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,SAs,1400-1500,1234567,,,50022695,,, +7300,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,2300-2400,1234567,,,50022695,,, +7300,SWZ,yao,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,3,9062,157,124,MOZ,1705-1735,1234567,,,50019621,,, +7305,F,cs,China R Int.,,Issoudun (36),46.947222,1.894444,,250,65,660,211,40,Eu,1930-2000,1234567,,,50004751,,, +7305,F,ro,China R Int.,,Issoudun (36),46.947222,1.894444,,250,85,660,211,40,EEu,1900-1930,1234567,,,50004751,,, +7305,G,fr,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,NAf,1800-1830,1234567,,,50022702,,, +7305,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WNA,0400-0500,1234567,,,50022704,,, +7305,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EEu,1750-1850,1234567,,,50022703,,, +7305,USA,es,R Vaticana,,Greenville (NC),35.466667,-77.199167,,250,184,6571,289,99,,0320-0400,1234567,,,50018143,,, +7305,USA,es,R Vaticana,,Greenville (NC),35.466667,-77.199167,,250,184,6571,289,99,Car,0200-0245,1234567,,,50018143,,, +7305,USA,es,R Vaticana,,Greenville (NC),35.466667,-77.199167,,250,184,6571,289,99,Car,1130-1200,1234567,,,50018143,,, +7305,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0600-0630,1234567,,,50009680,,, +7305,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,CAf,0430-0500,1234567,,,50009680,,, +7305,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,55,6960,203,103,WAf,0530-0600,1234567,,,50009680,,, +7305,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,0800-0900,1.34567,,,40000839,,, +7305,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,0900-1805,1234567,,,40000839,,, +7305,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,2025-2200,1234567,,,40000839,,, +7305,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SAf,2000-2100,1234567,,,50022700,,, +7305,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,FE,2200-2300,1234567,,,50022699,,, +7305,MDG,pt,Deutsche Welle,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,SAf,1930-2000,1234567,,,50022701,,, +7310,G,,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,300,180,622,276,39,,2130-2200,12345..,,,50020462,,, +7310,D,de,R 700,,Kall/Auf der Heide (nrw),50.478056,6.523194,,4,,182,177,53,,0600-1600,1234567,,,2000066,,, +7310,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ENA,2130-2200,1234567,,,50022709,,, +7310,IRN,tr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1550-1720,1234567,,,50022708,,, +7310,CHN,it,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,2030-2130,1234567,,,50022706,,, +7310,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1157-1800,1234567,,,40000841,,, +7310,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,2330-0305,1234567,,,40000841,,, +7310,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023705,,, +7310,CLN,ug,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,FE,1600-1700,1234567,,,50022710,,, +7310,TWN,zh,R France Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,2200-2300,1234567,,,50017844,,, +7310,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,1300-1400,1234567,,,50009682,,, +7310,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,2300-2400,1234567,,,50009682,,, +7315,D,az,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,Cau,1830-1900,1234567,,,50022716,,, +7315,F,ti,Adventist World R,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,0300-0330,1234567,,,50022715,,, +7315,ROU,es,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,135,1587,104,48,VEN,0000-0100,1234567,,,50018155,,, +7315,CVA,ar,R Dabanga,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0430-0430,1234567,,,50022713,,, +7315,CVA,ar,R Tamazuj,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0400-0430,1234567,,,50022714,,, +7315,CHN,eo,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SAm,2200-2300,1234567,,,50004767,,, +7315,CHN,sq,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SEE,1900-2000,1234567,,,50004767,,, +7315,UAE,ur,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0200-0230,1234567,,,50022712,,, +7315,CHN,sr,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,2000-2030,1234567,,,50022711,,, +7315,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,0300-0500,.....6.,,,50016060,,, +7315,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,0530-0800,.....6.,,,50016060,,, +7315,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,1000-1100,......7,,,50016060,,, +7315,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,152,0100-0200,0.234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,0800-0930,......7,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,25,2300-2400,12345..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,CAm,0900-1000,12345..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0100-0200,1.....1,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1100-1200,1234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,2300-2400,1234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0200-0300,1234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0300-0400,.2345..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0430-0500,....5..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0500-0530,.2345..,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,SAm,0530-0900,1234567,,,50016060,,, +7315,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,,2345-2400,......7,,,50016060,,, +7315,CHN,en,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,1430-1500,1234567,,,36201060,,, +7315,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0855-1430,1234567,,,36201060,,, +7315,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,1500-1605,1234567,,,36201060,,, +7315,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,2055-0100,1234567,,,36201060,,, +7315,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1730-1830,1234567,,,50004766,,, +7315,IND,hi,AIR Northeast,,Shillong/Mawjrong (ML),25.440389,91.807667,,50,76,7500,77,115,,0655-0930,1234567,,,40000711,,, +7315,SWZ,LO,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,5,9062,157,127,MOZ,1510-1555,1234567,,,50010826,,, +7315,SWZ,MKU,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,5,9062,157,127,MOZ,1455-1510,1234567,,,50010826,,, +7315,SWZ,pt,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,50,5,9062,157,127,MOZ,1425-1455,1234567,,,50010826,,, +7320,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0600-0900,9999999,,,6800009,,, +7320,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,1100-1600,9999999,,,6800009,,, +7320,IRN,bn,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,1420-1520,1234567,,,50022719,,, +7320,CHN,sw,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,EAf,1600-1700,1234567,,,50022718,,, +7320,CHN,bg,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,Eu,2030-2100,1234567,,,50022717,,, +7325,G,bm,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,WAf,2130-2200,12345..,,,50022729,,, +7325,G,fr,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,NAf,0600-0630,1234567,,,50022722,,, +7325,G,fr,R Taiwan Int.,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,Af,1900-2000,1234567,,,50023707,,, +7325,AUT,ar,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,0300-0315,1234567,,,50022725,,, +7325,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ENA,0100-0200,1234567,,,50022728,,, +7325,IRN,zh,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,FE,2320-0020,1234567,,,50022726,,, +7325,IRN,en,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1920-2020,1234567,,,50022727,,, +7325,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SAs,1600-1700,1234567,,,50004787,,, +7325,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SAs,1700-1800,1234567,,,50004787,,, +7325,UAE,hi,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0100-0130,1234567,,,50022723,,, +7325,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,CAs,0300-0500,1234567,,,50022720,,, +7325,IND,hi,AIR North,,Jaipur (RJ),26.91,75.748611,,50,90,6294,88,103,,0630-0930,1234567,,,40000705,,, +7325,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,SAf,0500-0600,1234567,,,50022721,,, +7325,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,0630-0700,1234567,,,50022721,,, +7325,CHN,cs,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,WEu,1900-1930,1234567,,,50004784,,, +7325,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,1500-1600,1234567,,,50004784,,, +7325,CHN,fa,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,IRN,1800-1900,1234567,,,50004784,,, +7325,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,73,7808,59,108,FE,1300-1400,1234567,,,50004788,,, +7325,CHN,sr,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,317,7808,59,108,Eu,2100-2130,1234567,,,50004788,,, +7325,CHN,tl,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,PHL,1430-1500,1234567,,,50004788,,, +7325,CHN,tr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1600-1700,1234567,,,50004786,,, +7325,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,,1000-1400,1234567,,,50004785,,, +7325,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,1000-1300,1234567,,,50004785,,, +7325,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,2200-2300,1234567,,,50004786,,, +7325,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,2300-2400,1234567,,,50004786,,, +7325,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,0030-0100,1234567,,,50022724,,, +7325,TWN,zh,R France Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,FE,0930-1030,1234567,,,50023706,,, +7330,F,de,R Joystick,,Issoudun (36),46.947222,1.894444,,100,60,660,211,44,Eu,1100-1200,......7,,,50021921,,, +7330,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAm,0200-0300,1234567,,,50022730,,, +7330,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,1400-1500,1234567,,,50004799,,, +7330,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50022731,,, +7330,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50022731,,, +7335,G,Tac,HCJB Global,,Woofferton (EN-SHP),52.313333,-2.722778,,250,170,622,276,39,,2100-2115,1234567,,,50020260,,, +7335,G,ar,HCJB Global,,Woofferton (EN-SHP),52.313333,-2.722778,,250,170,622,276,39,,2115-2145,1234567,,,50020260,,, +7335,CVA,hy,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,86,1205,156,45,Cau,0310-0330,1234567,,,50004806,,, +7335,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,265,1955,168,50,,0600-0810,1234567,,,50016062,,, +7335,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,265,1955,168,50,NAf,0702-0802,1234567,,,50016062,,, +7335,ROU,de,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,Eu,1300-1400,1234567,,,50022734,,, +7335,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,0000-0030,.....67,,,50018171,,, +7335,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0000-0030,.23456.,,,50018171,,, +7335,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0000-0030,1.....1,,,50018171,,, +7335,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0030-0100,1234567,,,50018171,,, +7335,CHN,zh,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,500,315,7767,53,108,Eu,2000-2100,1234567,,,50009395,,, +7335,CHN,en,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1430-1500,1234567,,,40000843,,, +7335,CHN,hr,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,Eu,1700-1800,1234567,,,50022732,,, +7335,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1000-1430,1234567,,,40000843,,, +7335,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1500-1605,1234567,,,40000843,,, +7335,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2100-0030,1234567,,,40000843,,, +7335,IND,hi,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,160,7707,76,117,,0225-0400,1234567,,,40000722,,, +7335,IND,hi,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,160,7707,76,117,,0400-0430,......7,,,40000722,,, +7335,IND,hi,AIR Northeast,,Imphal (MN),24.625,93.894444,,50,160,7707,76,117,,0600-0630,......7,,,40000722,,, +7335,CHN,pt,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,SEu,1900-2000,1234567,,,50022733,,, +7340,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2100-2300,1234567,,,50022735,,, +7340,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ENA,0100-0300,1234567,,,50022737,,, +7340,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1420-1520,1234567,,,50022736,,, +7340,CHN,it,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SEu,1800-1900,1234567,,,50004811,,, +7340,CHN,kk,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0500-0600,1234567,,,40000844,,, +7340,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0300-0500,1234567,,,40000844,,, +7340,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0600-0800,1234567,,,40000844,,, +7340,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1100,1.3.567,,,40000844,,, +7340,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1100-1200,1234567,,,40000844,,, +7340,IND,,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,,1130-1140,1234567,,,50016063,,, +7340,IND,bal,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,PAK,1500-1600,1234567,,,50016063,,, +7340,IND,sd,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,PAK,1230-1500,1234567,,,50016063,,, +7340,IND,ur,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,PAK,0015-0430,1234567,,,50016063,,, +7340,IND,ur,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,10,6734,96,104,PAK,0830-1130,1234567,,,50016063,,, +7345,ALB,sr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,Eu,1200-1300,1234567,,,50004818,,, +7345,ROU,es,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,CAm,0300-0400,1234567,,,50022739,,, +7345,ROU,de,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,0700-0730,1234567,,,50022740,,, +7345,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,0630-0700,1234567,,,50022740,,, +7345,IRN,ps,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,SAs,1620-1720,1234567,,,50022738,,, +7345,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0800-0900,1.34567,,,40000846,,, +7345,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0900-1805,1234567,,,40000846,,, +7345,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,2025-2400,1234567,,,40000846,,, +7345,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,1230-1330,1234567,,,22100048,,, +7345,MYA,gk,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,1130-1230,1234567,,,22100048,,, +7345,MYA,kh,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,1030-1130,1234567,,,22100048,,, +7350,D,ha,Hamada R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,WAf,0530-0600,1234567,,,50023708,,, +7350,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,285,1587,104,48,SEu,1800-1900,1234567,,,50012240,,, +7350,IRN,ku,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0420-0520,1234567,,,50019629,,, +7350,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,0000-0200,1234567,,,50004826,,, +7350,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,2300-2400,1234567,,,50004826,,, +7350,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SEu,1600-1800,1234567,,,50004826,,, +7350,CHN,ps,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,AFG,0200-0230,1234567,,,50004826,,, +7350,IRN,uz,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,1450-1550,1234567,,,50022742,,, +7350,CHN,fr,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,SEu,2030-2230,1234567,,,50016575,,, +7350,CHN,fr,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,WAf,1830-2030,1234567,,,50016575,,, +7350,UAE,hi,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0230-0300,1234567,,,50022741,,, +7350,CHN,fr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,,1830-2030,1234567,,,50021665,,, +7350,CHN,bo,CNR 11,,Baoji (SA),34.65,106.966667,,100,255,7688,60,114,,0900-1400,1234567,,,40000848,,, +7350,CHN,bo,CNR 11,,Baoji (SA),34.65,106.966667,,100,255,7688,60,114,,1430-1605,1234567,,,40000848,,, +7350,CHN,en,CNR 11,,Baoji (SA),34.65,106.966667,,100,255,7688,60,114,,1400-1430,1234567,,,40000848,,, +7355,AUT,en,BBC WS,D,Moosbrunn (nie),48.006667,16.461944,,1,,849,119,65,SEu,0700-0900,1234567,,,50022743,,, +7355,TWN,zh,R Free Asia,,Tainan/Annan (TNS),23.044167,120.168611,,100,335,9489,58,125,,1800-2200,1234567,,,40001200,,, +7360,D,fa,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,104,316,151,40,,0130-0230,1234567,,,50021666,,, +7360,CVA,am,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0400-0415,1234567,,,50022746,,, +7360,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,CAf,0500-0530,1234567,,,50022746,,, +7360,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,CAf,0430-0500,1234567,,,50022746,,, +7360,CVA,hy,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Cau,1650-1710,1234567,,,50022746,,, +7360,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,WAf,0530-0600,1234567,,,50022746,,, +7360,CVA,ru,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EEu,1710-1740,1234567,,,50022746,,, +7360,CVA,so,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0345-0400,......7,,,50022746,,, +7360,CVA,ti,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0415-0430,1234567,,,50022746,,, +7360,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,UKR,1740-1800,1234567,,,50022746,,, +7360,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,SEu,1800-2000,1234567,,,50022744,,, +7360,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,0600-0630,1234567,,,50022748,,, +7360,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0600-1600,9999999,,,6800010,,, +7360,IRN,az,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,Cau,1420-1650,1234567,,,50022747,,, +7360,CHN,ur,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50022745,,, +7360,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2155-2400,1234567,,,40000849,,, +7360,CHN,VN,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,1600-1700,1234567,,,50004842,,, +7360,CHN,lo,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,1230-1330,1234567,,,50004842,,, +7360,CHN,lo,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,1430-1530,1234567,,,50004842,,, +7360,CHN,th,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,1130-1230,1234567,,,50004842,,, +7360,CHN,th,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,1330-1430,1234567,,,50004842,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,0430-1700,1234567,,,50022284,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,1730-2000,1234567,,,50022284,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2030-2100,1234567,,,50022284,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2100-2200,.....67,,,50022284,,, +7365,D,de,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2200-2330,1234567,,,50022284,,, +7365,D,de,R ZP30,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2100-2200,12345..,,,50022286,,, +7365,D,en,Life FM Cork,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2330-0400,1234567,,,50022285,,, +7365,D,nds,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,1700-1730,1234567,,,50022284,,, +7365,D,nds,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,2000-2030,1234567,,,50022284,,, +7365,D,ru,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,0400-0430,123.567,,,50022284,,, +7365,D,uk,HCJB Global,,Weenermoor (nds),53.2,7.325,,100,,136,27,33,CEu,0400-0430,...4...,,,50022284,,, +7365,D,en,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1815-1830,......7,,,50022750,,, +7365,D,fa,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1800-1830,....5..,,,50022750,,, +7365,D,fa,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1800-1900,...4...,,,50022750,,, +7365,D,fa,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1830-1900,.2....7,,,50022750,,, +7365,D,,HCJB Global,,Weenermoor (nds),53.2,7.325,,0.01,,136,27,73,,,,,,2000067,,, +7365,IRN,ja,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,J,2050-2150,1234567,,,50022751,,, +7365,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,0300-0400,1234567,,,50004856,,, +7365,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,183,6571,289,99,CUB,0000-0300,1234567,,,50004856,,, +7365,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1700,1234567,,,50023709,,, +7365,CHN,pt,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SAf,1900-2000,1234567,,,50022749,,, +7365,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,1000-1805,1234567,,,40000699,,, +7365,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,,9375,56,120,FE,1500-1700,1234567,,,50004855,,, +7365,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,325,9375,56,120,,1500-1700,....56.,,,50004855,,, +7365,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,325,9375,56,120,,1500-1705,1234..7,,,50004855,,, +7365,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,FE,2200-2300,1234..7,,,50007768,,, +7365,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,FE,2300-2400,1234567,,,50007768,,, +7370,ROU,fr,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,2100-2130,1234567,,,50022753,,, +7370,ROU,ro,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ME,1700-1800,1234567,,,50022753,,, +7370,IRN,tg,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0050-0220,1234567,,,50022752,,, +7370,IND,sd,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,282,6248,85,100,PAK,0100-0200,1234567,,,50016070,,, +7370,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1430-1500,1234567,,,36201061,,, +7370,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1100-1430,1234567,,,36201061,,, +7370,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1500-1605,1234567,,,36201061,,, +7370,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,,1100-1200,1234567,,,50021667,,, +7375,D,en,KBC R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAm,0000-0200,......7,,,50022287,,, +7375,D,en,KBC R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAm,0000-0200,1234567,,,50022287,,, +7375,IRN,bn,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1620-1650,1234567,,,50022754,,, +7375,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,1030-1605,1234567,,,36201062,,, +7375,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,2100-2400,1234567,,,36201062,,, +7380,ALB,de,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,330,1609,135,51,WEu,1600-1800,1234567,,,50004868,,, +7380,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,2130-2200,1234567,,,50022757,,, +7380,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0220-0520,1234567,,,50022755,,, +7380,IRN,kk,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1520-1620,1234567,,,50022755,,, +7380,IRN,fr,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1820-1920,1234567,,,50022756,,, +7380,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023710,,, +7380,IND,hi,AIR South,,Chennai=Madras (TN),13.135556,80.125278,,50,,7749,95,118,,0300-0930,1234567,,,40000725,,, +7380,IND,hi,AIR South,,Chennai=Madras (TN),13.135556,80.125278,,50,,7749,95,118,,0930-1030,......7,,,40000725,,, +7380,TWN,vi,R France Int.,,Tainan/Annan (TNS),23.044167,120.168611,,100,250,9489,58,125,SEA,1400-1500,1234567,,,50015835,,, +7380,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,FE,1500-1600,.....67,,,50013315,,, +7380,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,FE,1500-1600,12345..,,,50013315,,, +7385,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,WAf,1800-2000,1234567,,,50022758,,, +7385,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,WNA,2300-1400,1234567,,,50016071,,, +7385,CHN,bo,CNR 11,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2300-2400,1234567,,,40000856,,, +7385,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0000-0200,1234567,,,40000856,,, +7385,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0950-1600,1234567,,,40000856,,, +7385,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1700-1805,1234567,,,40000856,,, +7385,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2050-2230,1234567,,,40000856,,, +7385,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,1600-1700,1234567,,,40000856,,, +7385,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,2230-2300,1234567,,,40000856,,, +7385,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1700,1234567,,,50023711,,, +7385,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,352,9444,57,125,,1000-1700,....56.,,,50001148,,, +7385,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,352,9444,57,125,,1000-1705,1234..7,,,50001148,,, +7385,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,352,9444,57,125,FE,1000-1700,1234567,,,50001148,,, +7390,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,0500-0600,1234567,,,50022760,,, +7390,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,0400-0500,1234567,,,50022760,,, +7390,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,0600-0700,1234567,,,50022760,,, +7390,ALB,sq,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,0730-1000,1234567,,,50004885,,, +7390,CHN,sr,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,317,7808,59,108,Eu,2000-2030,1234567,,,50004888,,, +7390,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1500,1234567,,,50023712,,, +7390,CHN,hu,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,314,8886,55,116,Eu,2030-2100,1234567,,,50004887,,, +7390,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1300-1500,1234567,,,50022761,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0315-0400,1234567,,,40000701,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0400-0415,.....6.,,,40000701,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0400-0500,......7,,,40000701,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0700-0930,1234567,,,40000701,,, +7390,IND,hi,AIR South,,Port Blair (AN),11.614167,92.750833,,10,147,8742,86,133,,0930-1000,......7,,,40000701,,, +7395,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ENA,0200-0300,1234567,,,50022764,,, +7395,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,J,2300-2400,1234567,,,50022765,,, +7395,CHN,de,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,WEu,1800-2000,1234567,,,50004894,,, +7395,CHN,hi,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,SAs,1600-1700,1234567,,,50016580,,, +7395,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,,2100-2400,1234567,,,36201063,,, +7395,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,1200-1300,1234567,,,50022762,,, +7395,MDG,sw,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,250,320,8830,141,119,EAf,0315-0400,1234567,,,50004899,,, +7395,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,2200-2230,1234567,,,50022763,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0000-0005,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0020-0025,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0050-0605,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0620-0625,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0700-0755,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0800-0805,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0820-0825,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0840-0845,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0900-0905,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1000-1005,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1020-1025,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1040-1045,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1100-1105,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1120-1125,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1200-1205,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1220-1225,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1240-1245,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1300-1320,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1400-1405,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1420-1425,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1440-1445,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1500-1505,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1520-1525,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1700-1705,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1720-1740,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,2000-2005,1234567,-7396.8,,32900026,,, +7396.8,THA,,HSW64 Bangkok Meteo,f,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,2300-2340,1234567,-7396.8,,32900026,,, +7400,AUT,en,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,300,849,119,46,Eu,0800-0820,1234567,,,50014664,,, +7400,AUT,en,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,300,849,119,46,Eu,0820-0850,12345..,,,50014664,,, +7400,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SEu,1700-1800,1234567,,,50022769,,, +7400,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,50,306,1624,123,56,,2000-2300,1234567,,,50021668,,, +7400,IRN,tr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0420-0550,1234567,,,50022768,,, +7400,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,FE,1400-1500,1234567,,,50004906,,, +7400,CHN,mn,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,1100-1200,1234567,,,50022766,,, +7400,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,,7438,53,111,Sib,1000-1100,1234567,,,50022766,,, +7400,CHN,sw,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,EAf,1700-1800,1234567,,,50022767,,, +7400,RUS,hi,Voice of Russia,D,Irkutsk/Angarsk (IR),52.425833,103.669167,,1,,6080,48,118,SAs,1300-1400,1234567,,,50022770,,, +7400,RUS,ur,Voice of Russia,D,Irkutsk/Angarsk (IR),52.425833,103.669167,,1,,6080,48,118,SAs,1400-1500,1234567,,,50022770,,, +7405,ROU,de,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,WEu,1900-2000,1234567,,,50022773,,, +7405,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,SAs,1500-1600,1234567,,,50022772,,, +7405,CHN,pl,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,2000-2100,1234567,,,50022772,,, +7405,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,NAf,2200-2300,1234567,,,50022772,,, +7405,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,2200-2400,1234567,,,50004917,,, +7405,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,183,6571,289,99,CUB,0400-0700,0.234567,,,50004917,,, +7405,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,205,6571,289,99,CUB,1200-1400,1234567,,,50004917,,, +7405,CHN,pt,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,252,7808,59,108,SAf,1900-2000,1234567,,,50004913,,, +7405,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,0000-0100,1234567,,,50004910,,, +7405,CHN,ru,China R Int.,,Hohhot/Bikegi-SARFT694 (NM),40.794722,111.776111,,100,345,7438,53,111,Sib,2300-2400,1234567,,,50004910,,, +7405,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,Eu,1800-1900,1234567,,,50022771,,, +7405,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SAf,2100-2200,1234567,,,50022771,,, +7405,THA,bn,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SAs,1600-1700,1234567,,,50022774,,, +7405.5,AUS,,VMR201 Eden Coastguard,u,Eden/Lookout Point (NSW),-37.075356,149.914175,,0.1,,16726,74,179,,????-????,1234567,-7405.5,,37700145,,, +7410,MDA,fa,BBC WS,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,0230-0330,1234567,,,50022780,,, +7410,UZB,en,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0140-0200,1234567,,,50022779,,, +7410,UZB,hi,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0040-0100,1234567,,,50022779,,, +7410,UZB,ml,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0120-0140,1234567,,,50022779,,, +7410,UZB,ta,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,0100-0120,1234567,,,50022779,,, +7410,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,1700-1800,1234567,,,50004923,,, +7410,CHN,ru,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,100,,7712,60,114,EEu,1700-1800,1234567,,,50022776,,, +7410,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,FE,1200-1300,1234567,,,50022775,,, +7410,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0900-1705,1234567,,,36201073,,, +7410,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SEA,1400-1500,1234567,,,50022777,,, +7410,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,FE,1400-1500,1234567,,,50022778,,, +7410,CHN,tl,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,PHL,1130-1200,1234567,,,50022778,,, +7410,PHL,km,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,SEA,1200-1300,1234567,,,50019939,,, +7410,PHL,km,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,,1200-1300,1234567,,,50004932,,, +7410,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0700-0900,1234567,,,50017060,,, +7415,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAs,2300-2400,1234567,,,50004933,,, +7415,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,2000-2200,1234567,,,50004933,,, +7415,CHN,cs,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1900-2000,1234567,,,50004934,,, +7415,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,,0000-0200,1234567,,,50004933,,, +7415,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1900,1234567,,,50023713,,, +7415,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2055-2400,1234567,,,40000881,,, +7415,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1600-1900,1234567,,,50022782,,, +7420,IRN,es,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAm,0020-0220,1234567,,,50022784,,, +7420,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,WAf,1600-1700,1234567,,,50022783,,, +7420,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1215-1330,1234567,,,50023714,,, +7420,IND,hi,AIR South,,Hyderabad (AP),17.3375,78.561389,,50,125,7282,93,113,,0225-0930,1234567,,,40000718,,, +7420,IND,hi,AIR South,,Hyderabad (AP),17.3375,78.561389,,50,125,7282,93,113,,0930-1030,......7,,,40000718,,, +7420,CHN,zh,CNR 1,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,2230-2300,1234567,,,40000728,,, +7420,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,0600-0950,1.34567,,,40000728,,, +7420,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,0950-1605,1234567,,,40000728,,, +7420,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,2150-2230,1234567,,,40000728,,, +7420,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,052 263,7433,53,114,,2300-0600,1234567,,,40000728,,, +7420,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1700-1800,1234567,,,50004943,,, +7425,ALB,en,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,NAm,0230-0300,0.234567,,,50022785,,, +7425,IRN,ha,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,WAf,1820-1920,1234567,,,50022789,,, +7425,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,CAs,2200-2300,1234..7,,,50022791,,, +7425,IRN,de,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1720-1820,1234567,,,50022790,,, +7425,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EEu,1920-2020,1234567,,,50022790,,, +7425,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0000-0100,1234567,,,50022788,,, +7425,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1700-1800,1234567,,,50022788,,, +7425,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,Af,0400-0500,1234567,,,50020502,,, +7425,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,SAf,0500-0530,1234567,,,50020502,,, +7425,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,SAf,0530-0600,1234567,,,50020502,,, +7425,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,0,1500-1600,1234567,,,50020502,,, +7425,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,,6406,152,97,EAf,0300-0400,1234567,,,50020502,,, +7425,CHN,en,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,1430-1500,1234567,,,36201064,,, +7425,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,1100-1430,1234567,,,36201064,,, +7425,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,1500-1605,1234567,,,36201064,,, +7425,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,INS,2300-2400,1234567,,,50022787,,, +7425,CHN,sr,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,Eu,2100-2130,1234567,,,50022786,,, +7430,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,300,1587,104,48,SEu,2000-2100,1234567,,,50018228,,, +7430,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,300,1587,104,48,SEu,1900-2000,1234567,,,50018228,,, +7430,IRN,kk,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0120-0220,1234567,,,50022792,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0225-0447,1234567,,,40000733,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0447-0530,......7,,,40000733,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0630-0700,123456,,,40000733,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0700-0930,1234567,,,40000733,,, +7430,IND,hi,AIR West,,Bhopal (MP),23.253889,77.480833,,50,102,6711,90,107,,0930-1030,......7,,,40000733,,, +7430,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,255,8886,55,116,SAf,2200-2300,1234567,,,50004961,,, +7430,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0900-1000,1234567,,,50004961,,, +7433.5,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,0000-2400,1234567,-7433.5,,34600012,,, +7435,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,55,316,151,40,EEu,0300-0700,1234567,,,50020510,,, +7435,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,0030-0100,1234567,,,50022796,,, +7435,IRN,tg,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1550-1720,1234567,,,50019641,,, +7435,TJK,zh,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,95,4943,82,83,,2000-2200,1234567,,,50021669,,, +7435,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1220-1320,1234567,,,50022797,,, +7435,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,59,7797,50,108,FE,1100-1200,1234567,,,50004968,,, +7435,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,1400-1500,1234567,,,50018230,,, +7435,CHN,ps,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,IRN,1500-1600,1234567,,,50018230,,, +7435,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,FE,1400-1500,1234567,,,50022794,,, +7435,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,,8886,55,116,SAf,1600-1800,1234567,,,50004969,,, +7435,CHN,it,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,314,8886,55,116,SEu,1800-1900,1234567,,,50004969,,, +7435,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1200-1400,1234567,,,50022795,,, +7435,VTN,vi,VOV1,,Sơn Ty (hno),21.2,105.366667,,100,97,8749,70,123,Oc,2145-1700,1234567,5,,50016080,,, +7435,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,304,11578,41,128,,1900-2000,1234567,,,50020509,,, +7440,IND,hi,AIR North,,Lucknow (UP),26.881667,81.043333,,50,72,6657,84,107,,0430-0700,......7,,,40000694,,, +7440,IND,hi,AIR North,,Lucknow (UP),26.881667,81.043333,,50,72,6657,84,107,,0700-1000,1234567,,,40000694,,, +7440,CHN,hu,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,317,7808,59,108,Eu,1900-1930,1234567,,,50010275,,, +7440,CHN,ja,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,FE,2200-2300,1234567,,,50004979,,, +7440,CHN,ro,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,317,7808,59,108,EEu,1930-2000,1234567,,,50010275,,, +7440,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,Eu,2000-2100,1234567,,,50004979,,, +7440,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023715,,, +7440,CHN,hu,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,314,8886,55,116,,1900-1930,1234567,,,50021670,,, +7440,CHN,sr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,Eu,2100-2130,1234567,,,50022798,,, +7440,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,,1200-1300,1234567,,,50014680,,, +7440,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1100-1200,1234567,,,50014680,,, +7440,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2200-2300,1234567,,,50022800,,, +7445,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,0130-0200,1234567,,,50022802,,, +7445,G,ps,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,0100-0130,1234567,,,50022802,,, +7445,MDA,fa,BBC WS,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,0330-0430,1234567,,,50022803,,, +7445,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,78,4199,110,75,,0000-0030,1234567,,,50020515,,, +7445,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1730-1830,1234567,,,50004988,,, +7445,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0230-0300,1234567,,,50020514,,, +7445,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0200-0230,1234567,,,50020514,,, +7445,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,35,5617,106,89,AFG,0300-0330,1234567,,,50020514,,, +7445,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1500,1234567,,,50022801,,, +7445,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1500,1234567,,,50023716,,, +7445,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1400-1700,1234567,,,36201074,,, +7445,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1300-1400,1234567,,,36201074,,, +7445,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,2300-2400,1234567,,,36201074,,, +7445,TWN,en,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,1100-1200,1234567,,,50011336,,, +7445,TWN,en,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,SEA,1100-1200,1234567,,,50019453,,, +7445,TWN,th,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,1500-1600,1234567,,,50011336,,, +7445,TWN,th,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,2200-2400,1234567,,,50011336,,, +7445,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,1200-1500,1234567,,,50011336,,, +7445,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,1300-1500,1234567,,,50011336,,, +7450,GRC,,ERA Makedonias 102 FM,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,323,2024,132,57,,1700-2250,1234567,,,40000860,,, +7450,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1700-0300,1234567,,,50022804,,, +7450,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1700-2358,1234567,,,50022804,,, +7450,IRN,es,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SEu,2020-2120,1234567,,,50022805,,, +7450,IRN,it,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,1920-1950,1234567,,,50022805,,, +7450,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0000-0030,1234567,,,40000730,,, +7450,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1030-1100,1234567,,,40000730,,, +7450,CHN,zh,CNR 1,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2230-2300,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0030-0300,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0900-1000,12.4567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1000-1030,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,1100-1800,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2000-2230,1234567,,,40000730,,, +7450,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,2300-2400,1234567,,,40000730,,, +7455,THA,ps,VoA Deewa R,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,1300-1900,1234567,,,50023717,,, +7460,MDA,fa,R Payam e-Doost,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,0230-0315,1234567,,,50014078,,, +7460,MNG,ko,R Free Asia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,100,128,6615,50,103,FE,2100-2200,1234567,,,50007771,,, +7460,CLN,ur,Voice of America,,Iranawila (put),7.507211,79.805381,,250,340,8219,99,115,,0100-0200,1234567,,,50014686,,, +7460,CLN,ru,R Liberty,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,CAs,1900-2000,1234567,,,50023718,,, +7460,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2230-2300,1234567,,,50022807,,, +7460,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,2300-2400,1234567,,,50005001,,, +7465,F,ru,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1700-1800,1234567,,,50023719,,, +7465,ALB,de,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,2031-2100,123456,,,50005002,,, +7465,ALB,en,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,2100-2130,123456,,,50005002,,, +7465,ALB,fr,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,1830-1900,123456,,,50005002,,, +7465,ALB,sq,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,NAm,0000-0100,1234567,,,50005002,,, +7465,PAK,,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,ND,5607,84,93,,0530-0615,1234567,,,50020276,,, +7465,PAK,Bal,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,ND,5607,84,93,,0445-0530,1234567,,,50020276,,, +7465,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,183,6571,289,99,Car,0130-0200,.23456.,,,50005006,,, +7465,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0500-0700,12345..,,,50018248,,, +7465,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0700-1000,1234567,,,50018248,,, +7465,AFS,fr,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,MDG,1800-1830,1234567,,,50022809,,, +7465,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,,1500-1600,1234567,,,50021672,,, +7465,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,250,340,10381,83,124,SAs,1400-1700,1234567,,,50014687,,, +7465,MRA,ko,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,250,329,11578,41,128,,1800-1900,1234567,,,50021671,,, +7465,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,,1345-1500,1234567,,,50014687,,, +7470,TJK,ko,Open R North Korea,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,KRE,2000-2100,1234567,,,50023721,,, +7470,MNG,bo,R Free Asia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,100,230,6615,50,103,FE,1100-1400,1234567,,,50001289,,, +7470,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1400,1234567,,,50023720,,, +7470,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2400,1234567,,,50023720,,, +7470,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,ME,1900-2000,1234567,,,50022810,,, +7475,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,NAm,0000-0800,1234567,,,50022811,,, +7475,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,NAm,2300-0800,1234567,,,50022811,,, +7475,CLN,tg,R Liberty,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,CAs,1600-1700,1234567,,,50022813,,, +7475,THA,tg,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,CAs,1400-1600,1234567,,,50021924,,, +7475,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50022812,,, +7480,MDA,fa,R Payam e-Doost,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,1800-1845,1234567,,,50014079,,, +7480,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023722,,, +7480,CLN,ku,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,ME,1700-1800,1234567,,,50022815,,, +7480,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,2200-2300,1234..7,,,50022816,,, +7480,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,2300-2400,1234567,,,50022816,,, +7485,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0400-2000,9999999,,,6800011,,, +7485,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,1600-1630,1234567,,,50022817,,, +7485,THA,my,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SEA,1430-1515,12345..,,,50022817,,, +7485,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SAs,1630-1700,1234567,,,50021925,,, +7485,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SEA,1345-1430,1234567,,,50021925,,, +7490,ALB,it,R Tirana,,Shijak (dur),41.329444,19.547778,,100,,1557,135,53,Eu,1800-1830,123456,,,50022818,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,0100-0400,1234...,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,0200-0300,....5..,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,1900-0400,1234567,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0000-0200,1234567,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0200-0500,123456,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,0500-1100,1234567,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1900-0500,1234567,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,2000-2100,.2.....,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,2100-2200,12345..,,,50016587,,, +7490,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,2200-2400,12345.7,,,50016587,,, +7490,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,85,7122,296,108,NAm,1300-1600,1234567,,,50009712,,, +7495,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,,2100-2200,1234567,,,50017776,,, +7495,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,,2200-2300,1234567,,,50017776,,, +7495,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,WAf,2100-2300,1234567,,,50017776,,, +7495,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,500,194,660,211,37,,2300-2300,1234567,,,50017776,,, +7495,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1300-1400,1234567,,,50023724,,, +7495,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023723,,, +7495,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2000-2200,1234567,,,50023723,,, +7495,THA,ps,VoA Deewa R,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,1400-1900,1234567,,,50023725,,, +7495,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0000-0100,1234567,,,50022823,,, +7495,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2000-2200,1234567,,,50022820,,, +7505,ARM,en,BBC WS,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,SAs,0200-0300,1234567,,,50023726,,, +7505,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,2300-2400,1234567,,,50021673,,, +7505,TJK,bo,R Free Asia,,Orzu (SW) (ktl),37.520833,68.8,,250,110,5010,83,83,,2200-2300,1234567,,,50021674,,, +7505,UZB,,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1315-1615,1234567,,,50022825,,, +7505,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1430-1445,1234567,,,50022825,,, +7505,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1445-1515,123456,,,50022825,,, +7505,UZB,pa,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1445-1515,......7,,,50022825,,, +7505,UZB,pa,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1515-1545,1234567,,,50022825,,, +7505,UZB,pa,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1545-1615,12345..,,,50022825,,, +7505,UZB,ps,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,AFG,1545-1615,.....6.,,,50022825,,, +7505,USA,en,WRNO,,New Orleans (WRNO) (LA),29.836806,-90.115994,,50,20,7851,294,119,,2200-1600,1234567,,,50020278,,, +7505,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,AFG,1800-1900,1234567,,,50022824,,, +7506,USA,en,WRNO,,New Orleans (WRNO) (LA),29.836806,-90.115994,,100,,7851,294,116,NAm,0100-0400,1234567,,,50022826,,, +7508,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0430-0830,1234567,,,20300028,,, +7508,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0915-1130,1234567,,,20300028,,, +7508,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,1530-1730,1234567,,,20300028,,, +7508,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,2230-2300,1234567,,,20300028,,, +7510,ARM,SLT,FEBA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1730-1800,1234567,,,50023728,,, +7510,ARM,my,Dem.Voice of Burma,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,SEA,2330-0030,1234567,,,50023727,,, +7510,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50022829,,, +7515,KWT,en,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,58,4199,110,75,,2200-2300,1234..7,,,50021675,,, +7515,UZB,ko,Voice of Martyrs,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,KRE,1600-1730,1234567,,,50023729,,, +7520,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0300-0400,1234567,,,50018268,,, +7520,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0400-0500,12345.7,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0445-0500,......7,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,1000-1200,1234567,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0300-0330,.....6.,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,1000-1100,123456,,,50018268,,, +7520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,1100-1200,1234567,,,50018268,,, +7520,USA,ru,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,0330-0400,.....6.,,,50018268,,, +7520,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,,0000-0200,1234567,,,50020279,,, +7520,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,NAm,0000-0300,1234567,,,50020279,,, +7520,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,FE,1200-1300,1234567,,,50022831,,, +7520,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SAs,1400-1500,12345..,,,50022831,,, +7520,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SAs,1500-1600,1234567,,,50022831,,, +7520,THA,fa,R Farda,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,IRN,1730-2230,1234567,,,50022830,,, +7520,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1300-1400,.....67,,,50022832,,, +7525,CLN,my,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,0000-0030,1234567,,,50023730,,, +7525,CLN,my,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,2330-2400,1234567,,,50023730,,, +7530,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023731,,, +7530,TWN,Hmo,Suab Xaa Moo Zoo (Voice of Hope),,Taipei TAI (Pali) (TP),25.083333,121.45,,100,250,9375,56,125,,2230-2300,1234567,,,50014702,,, +7530,TWN,hmn,Suab Xaa Moo Zoo,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,SEA,2230-2300,1234567,,,50014081,,, +7530,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1400-1500,1234567,,,50022834,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0015-0215,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0245-0330,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0500,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0945,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1015-1715,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1845,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1915-2045,1234567,,,37700109,,, +7535,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2215-2400,1234567,,,37700109,,, +7540,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023733,,, +7540,TJK,zh,R Free Asia,,Orzu (SW) (ktl),37.520833,68.8,,250,71,5010,83,83,,2300-2400,1234567,,,50017748,,, +7540,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023732,,, +7545,XUU,,Trans World R,,XUU,,,-,,,?,?,400,FE,0030-0045,1234567,,,50023734,,, +7545,XUU,,Trans World R,,XUU,,,-,,,?,?,400,FE,0045-0115,.....6.,,,50023734,,, +7545,XUU,bho,Trans World R,,XUU,,,-,,,?,?,400,FE,0045-0115,12345..,,,50023734,,, +7545,XUU,dz,Trans World R,,XUU,,,-,,,?,?,400,FE,0115-0130,123...7,,,50023734,,, +7545,XUU,hi,Trans World R,,XUU,,,-,,,?,?,400,FE,0045-0115,......7,,,50023734,,, +7545,XUU,ne,Trans World R,,XUU,,,-,,,?,?,400,FE,0115-0130,...4...,,,50023734,,, +7550,MDA,fa,R Ranginkaman,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,IRN,1700-1730,1...5..,,,50023735,,, +7550,KWT,uz,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,CAs,1600-1700,1234567,,,50022839,,, +7550,UZB,en,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1530-1600,1234567,,,50022837,,, +7550,UZB,hi,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1430-1450,1234567,,,50022837,,, +7550,UZB,ml,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1510-1530,1234567,,,50022837,,, +7550,UZB,ta,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1450-1510,1234567,,,50022837,,, +7550,IND,hi,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,500,120,6235,85,92,,1945-2045,1234567,,,50016087,,, +7550,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,312,6235,85,95,,2045-2230,1234567,,,50016087,,, +7550,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,280,7561,97,106,Eu,1745-1945,1234567,,,50014001,,, +7550,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,320,7561,97,106,Eu,2045-2230,1234567,,,50014001,,, +7550,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,320,7561,97,106,Eu,1945-2045,1234567,,,50014001,,, +7555,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023737,,, +7555,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,0500-1200,1234567,,,50010287,,, +7555,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,0500-1300,1234567,,,50010287,,, +7555,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023736,,, +7555,USA,en,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,335,8617,307,125,ENA,0200-0230,9999999,,,50016088,,, +7555,USA,es,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,335,8617,307,125,WNA,0100-0200,9999999,,,50016088,,, +7555,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50022840,,, +7560,UZB,hi,BBC WS,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1400-1430,1234567,,,50022842,,, +7560,CHN,,Firedrake Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,,0000-2400,1234567,,,36201086,,, +7560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023738,,, +7560,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0100-0130,1234567,,,50022844,,, +7560,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0200-0230,1234567,,,50022844,,, +7560,CLN,ps,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0030-0100,1234567,,,50022844,,, +7560,CLN,ps,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0130-0200,1234567,,,50022844,,, +7560,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,1330-1400,1234567,,,50022843,,, +7560,THA,bo,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1600-1700,1234567,,,50022845,,, +7565,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023740,,, +7565,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023739,,, +7570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023741,,, +7570,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,ENA,0200-0600,1234567,,,50023742,,, +7570,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1300-1400,1234567,,,50018277,,, +7570,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1500-1600,1234567,,,50018277,,, +7570,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1800-1900,1234567,,,50018277,,, +7570,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2100-2200,1234567,,,50018277,,, +7570,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1900-2000,1234567,,,50018277,,, +7570,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2200-2300,1234567,,,50018277,,, +7570,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1400-1500,1234567,,,50018277,,, +7570,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1600-1700,1234567,,,50018277,,, +7570,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2000-2100,1234567,,,50018277,,, +7570,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1700-1800,1234567,,,50018277,,, +7570,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2300-2400,1234567,,,50018277,,, +7570,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1600-1700,1234567,,,50022847,,, +7575,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023744,,, +7575,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023743,,, +7580,KRE,ja,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,109,8231,44,116,J,0700-1300,1234567,,,50018279,,, +7580,KRE,ja,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,109,8231,44,116,J,2100-2400,1234567,,,50018279,,, +7580,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,1600-2300,1234567,,,50022848,,, +7585,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023746,,, +7585,TJK,hi,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,137,4943,82,86,,1300-1400,1234567,,,50021679,,, +7585,TJK,hi,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,137,4943,82,86,,1500-1600,1234567,,,50021679,,, +7585,TJK,ur,Voice of Russia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,137,4943,82,86,,1400-1500,1234567,,,50021679,,, +7585,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023745,,, +7590,UZB,ko,North Korea Reform R.,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,KRE,1400-1600,1234567,,,50023747,,, +7595,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,2300-2400,1234567,,,50023749,,, +7595,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023748,,, +7600,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,1400-1430,1234567,,,50009718,,, +7600,THA,si,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,CLN,1630-1700,1234567,,,50009718,,, +7600,THA,ta,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,CLN,1545-1615,1234567,,,50009718,,, +7600,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,1500-1545,1234567,,,50009718,,, +7600,EQA,,HD2IOA,l,Guayaquil/Base Naval Sur (gua),-2.268889,-79.906667,,1,,9955,266,147,,1300-2400,1234567,,,32600007,,, +7646,D,,DDH7 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0000-2400,1234567,,,2000043,,, +7710,CAN,,VFF Iqaluit Coastguard,f,Iqaluit (NU),63.731389,-68.543167,,5,,4325,317,93,,0010-0900,9999999,,,20109294,,, +7710,CAN,,VFR Resolute Coastguard,f,Resolute (NU),74.745833,-95.002056,,5,,4799,338,98,,2100-2330,9999999,,,20109295,,, +7795,J,,JMH2,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0000-2400,1234567,,,31400036,,, +7850,CAN,,CHU,u,Ottawa (ON),45.295556,-75.757222,,10,,5749,297,105,,0000-2400,1234567,,,20100014,,, +7880,D,,DDK3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,0430-1235,1234567,,,2000047,,, +7880,D,,DDK3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,1520-1630,1234567,,,2000047,,, +7880,D,,DDK3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,1800-1952,1234567,,,2000047,,, +7880,D,,DDK3 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,2100-2211,1234567,,,2000047,,, +7906,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,0005-0015,1234567,,,33200023,,, +7906,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,1205-1215,1234567,,,33200023,,, +7906,VTN,,XVM Mng Ci R,u,Mng Ci (qnh),21.525556,107.967778,,1,,8886,68,143,,0120-0130,1234567,,,33200027,,, +7906,VTN,,XVM Mng Ci R,u,Mng Ci (qnh),21.525556,107.967778,,1,,8886,68,143,,1320-1330,1234567,,,33200027,,, +7906,VTN,,XVQ Hn Gai R,u,Hn Gai (Hạ Long) (qnh),20.95,107.083333,,1,,8881,69,143,,1105-1115,1234567,,,33200019,,, +7906,VTN,,XVQ Hn Gai R,u,Hn Gai (Hạ Long) (qnh),20.95,107.083333,,1,,8881,69,143,,2305-2315,1234567,,,33200019,,, +7906,VTN,,XVB Bến Thủy (Vinh) R,u,Bến Thủy (Vinh) (nan),18.65,105.7,,1,,8994,71,144,,0050-0100,1234567,,,33200026,,, +7906,VTN,,XVB Bến Thủy (Vinh) R,u,Bến Thủy (Vinh) (nan),18.65,105.7,,1,,8994,71,144,,1250-1300,1234567,,,33200026,,, +7906,VTN,,XVD Huế R,u,Huế (tth),16.466667,107.6,,1,,9309,71,145,,1050-1100,1234567,,,33200018,,, +7906,VTN,,XVD Huế R,u,Huế (tth),16.466667,107.6,,1,,9309,71,145,,2250-2300,1234567,,,33200018,,, +7906,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,0035-0045,1234567,,,33200025,,, +7906,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,1235-1245,1234567,,,33200025,,, +7906,VTN,,XVA C Mau R,u,C Mau (cmu),9.183333,105.15,,1,,9792,77,146,,1135-1145,1234567,,,33200021,,, +7906,VTN,,XVA C Mau R,u,C Mau (cmu),9.183333,105.15,,1,,9792,77,146,,2335-2345,1234567,,,33200021,,, +7906,VTN,,XVI Quy Nhơn R,u,Quy Nhơn (bdh),13.783333,109.227778,,1,,9652,72,146,,1035-1045,1234567,,,33200017,,, +7906,VTN,,XVI Quy Nhơn R,u,Quy Nhơn (bdh),13.783333,109.227778,,1,,9652,72,146,,2235-2245,1234567,,,33200017,,, +7906,VTN,,XVK Kin Giang R,u,Rạch Gi (kgg),9.993889,105.097222,,1,,9717,77,146,,1020-1030,1234567,,,33200016,,, +7906,VTN,,XVK Kin Giang R,u,Rạch Gi (kgg),9.993889,105.097222,,1,,9717,77,146,,2220-2230,1234567,,,33200016,,, +7906,VTN,,XVN Nha Trang R,u,Nha Trang (kho),12.25,109.183333,,1,,9786,72,146,,1150-1200,1234567,,,33200022,,, +7906,VTN,,XVN Nha Trang R,u,Nha Trang (kho),12.25,109.183333,,1,,9786,72,146,,2350-2400,1234567,,,33200022,,, +7906,VTN,,XVN Ninh Thuận R,u,Phan Rang (nth),11.566667,108.983333,,1,,9834,73,146,,0135-0145,1234567,,,33200028,,, +7906,VTN,,XVN Ninh Thuận R,u,Phan Rang (nth),11.566667,108.983333,,1,,9834,73,146,,1335-1345,1234567,,,33200028,,, +7906,VTN,,XVP Phan Thiết R,u,Phan Thiết (bun),10.917656,108.10615,,1,,9834,74,146,,0150-0200,1234567,,,33200029,,, +7906,VTN,,XVP Phan Thiết R,u,Phan Thiết (bun),10.917656,108.10615,,1,,9834,74,146,,1350-1400,1234567,,,33200029,,, +7906,VTN,,XVR Vũng Tu R,u,Vũng Tu (bvt),10.406111,107.145278,,1,,9816,75,146,,0020-0030,1234567,,,33200024,,, +7906,VTN,,XVR Vũng Tu R,u,Vũng Tu (bvt),10.406111,107.145278,,1,,9816,75,146,,1220-1230,1234567,,,33200024,,, +7906,VTN,,XVS Hồ Ch Minh R,u,Hồ Ch Minh (hcm),10.703311,106.729136,,1,,9762,75,146,,0105-0115,1234567,,,33200010,,, +7906,VTN,,XVS Hồ Ch Minh R,u,Hồ Ch Minh (hcm),10.703311,106.729136,,1,,9762,75,146,,1305-1315,1234567,,,33200010,,, +7906,VTN,,XVU Cần Thơ R,u,Cần Thơ (cnt),10.033333,105.783333,,1,,9759,76,146,,0205-0215,1234567,,,33200030,,, +7906,VTN,,XVU Cần Thơ R,u,Cần Thơ (cnt),10.033333,105.783333,,1,,9759,76,146,,1405-1415,1234567,,,33200030,,, +7906,VTN,,XVY Ph Yn R,u,Bi Mn (pyn),12.894956,109.454906,,1,,9746,72,146,,1120-1130,1234567,,,33200020,,, +7906,VTN,,XVY Ph Yn R,u,Bi Mn (pyn),12.894956,109.454906,,1,,9746,72,146,,2320-2330,1234567,,,33200020,,, +7906,VTN,en,XVS Hồ Ch Minh R,u,Hồ Ch Minh (hcm),10.703311,106.729136,,1,,9762,75,146,,0910-0920,1234567,,,33200010,,, +7957.4,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,-7957.4,,20016136,,, +8006,J,,JG2XA HFD R,,Tokyo/UEC Chofu (kan-tok),35.657194,139.544444,,0.2,,9248,37,151,,0000-2400,1234567,,,31400016,,, +8040,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,0000-2400,1234567,,,2800048,,, +8070,BOL,,La Paz Volmet,u,La Paz (lpz),-16.506722,-68.166833,,1,,10439,248,148,,1015-2325,1234567,,,36500031,,, +8070,BOL,es,La Paz Volmet,u,La Paz (lpz),-16.506722,-68.166833,,1,,10439,248,148,,:15-:25,1234567,,,36500031,,, +8098,ARG,es,R.Rivadavia/R.Continental/R.Diez,l,Buenos Aires (df),-34.633333,-58.466667,,5,,11512,230,145,,0000-2400,1234567,,,40000887,,, +8105,GRC,,SVJ4,f,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,0845-1100,1234567,,,3400039,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0000-0015,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0030-0045,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0100-0115,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0130-0145,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0200-0215,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0230-0245,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0300-0315,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0330-0345,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0415,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0430-0445,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0500-0515,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0530-0545,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0615,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0630-0645,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0700-0715,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0730-0745,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0800-0815,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0830-0845,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0900-0915,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0930-0945,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1000-1015,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1030-1045,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1100-1115,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1130-1145,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1200-1215,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1230-1245,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1300-1315,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1330-1345,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1400-1415,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1430-1445,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1500-1515,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1530-1545,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1600-1615,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1630-1645,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1700-1715,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1730-1745,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1815,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1830-1845,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1900-1915,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1930-1945,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2000-2015,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2030-2045,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2100-2115,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2130-2145,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2200-2215,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2230-2245,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2300-2315,1234567,,,37700025,,, +8113,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2330-2345,1234567,,,37700025,,, +8138.5,ROU,,YQI43 Constanţa R,p,Agigea (CT),44.105278,28.630389,,1,,1864,110,76,,????-????,1234567,-8138.5,,6600012,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0040-0140,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0305-0550,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0700-0740,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0905-1030,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1300-1340,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1505-1740,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1900-1940,1234567,,,21800037,,, +8140,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,2050-2230,1234567,,,21800037,,, +8176,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,:00-:15,1234567,,,37700019,,, +8183.5,USA,,KKL28,p,Vashon (WA),47.370808,-122.48775,,3,,7936,326,132,,????-????,1234567,-8183.5,,20016161,,, +8249,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902787,,, +8249,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902772,,, +8249,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902820,,, +8250,AFS,,ZRK6962 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300032,,, +8255,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902789,,, +8255,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902770,,, +8258,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902775,,, +8258,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902822,,, +8264,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902791,,, +8264,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902852,,, +8276,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902824,,, +8276,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902854,,, +8282,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902826,,, +8291,E,,Madrid R,u,Pozuelo del Rey (MAD-M),40.363389,-3.285028,,1,,1501,213,72,,????-????,1234567,,,2200035,,, +8291,AUS,,VMR471 Keppel Sands Coastguard,u,Keppel Sands (QLD),-23.3375,150.797222,,1,,15617,57,166,,????-????,1234567,,,37700097,,, +8291,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700155,,, +8291.1,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-8291.1,,31200009,,, +8291.1,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-8291.1,,31200009,,, +8291.1,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-8291.1,,31200009,,, +8294,B,,PPO Olinda Rdio,f,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0745-0830,1234567,,,36902875,,, +8294,B,,PPO Olinda Rdio,f,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1745-1830,1234567,,,36902875,,, +8294,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,0000-0010,1234567,,,33200009,,, +8294,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,0710-0720,1234567,,,33200009,,, +8294,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,1910-1920,1234567,,,33200009,,, +8294,VTN,,XVG Hải Phng R,u,Hải Phng (hpg),20.850611,106.733722,,1,,8867,69,143,,2100-2110,1234567,,,33200009,,, +8294,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,0000-0015,1234567,,,33200007,,, +8294,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,0740-0755,1234567,,,33200007,,, +8294,VTN,,XVT Đ Nẵng R,u,Đ Nẵng (dan),16.083333,108.233333,,1,,9384,71,145,,1940-1955,1234567,,,33200007,,, +8297,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0333-0343,1234567,,,32500029,,, +8297,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1003-1013,1234567,,,32500029,,, +8297,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1533-1543,1234567,,,32500029,,, +8297,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2203-2213,1234567,,,32500029,,, +8300,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0500-0530,1234567,,,50023750,,, +8300,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0600-0630,1234567,,,50023750,,, +8300,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,1200-1240,1234567,,,50023750,,, +8300,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,1300-1330,1234567,,,50023750,,, +8325,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,,,6800025,,, +8414.5,E,,Madrid R,2,Pozuelo del Rey (MAD-M),40.363389,-3.285028,,1,,1501,213,72,,????-????,1234567,-8414.5,,2200037,,, +8414.5,J,,Tokyo Coast Guard R,2,Tokyo (kan-tok),35.683333,139.75,,1,,9254,37,145,,,,-8414.5,,31400127,,, +8414.5,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,-8414.5,,35400114,,, +8414.5,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,-8414.5,,36800015,,, +8418,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,????-????,1234567,,,37700116,,, +8419.5,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,-8419.5,,34700012,,, +8431,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,,,34700013,,, +8435,CLN,,4PB Colombo R,r,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,????-????,1234567,,,34700014,,, +8445,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0500-0700,1234567,,,11700009,,, +8445,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1300-1500,1234567,,,11700009,,, +8446.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0600-2200,1234567,-8446.5,,7300004,,, +8447,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800005,,, +8450,JMC,,Kingston Coastguard R,u,Kingston (kgs),17.934722,-76.843056,,1,,7988,276,137,,????-????,1234567,,,35700002,,, +8457.8,CAN,,VFA Inuvik Coastguard,f,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,0200-0230,1234567,-8457.8,,20109298,,, +8457.8,CAN,,VFA Inuvik Coastguard,f,Inuvik (NT),68.326083,-133.598556,,1,,6224,343,119,,1630-1700,1234567,-8457.8,,20109298,,, +8459,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0340-0608,1234567,,,20016142,,, +8459,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0950-1208,1234567,,,20016142,,, +8459,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1540-1808,1234567,,,20016142,,, +8459,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,2150-0028,1234567,,,20016142,,, +8462,B,,PPO Olinda Rdio,c,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,0430-0440,1234567,,,36902784,,, +8462,B,,PPO Olinda Rdio,c,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,1630-1640,1234567,,,36902784,,, +8462,B,,PPL Belm Rdio,c,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,1000-1030,1234567,,,36902764,,, +8462,B,,PPL Belm Rdio,c,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,2200-2230,1234567,,,36902764,,, +8462,B,,PPJ Juno Rdio,c,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,0000-0030,1234567,,,36902846,,, +8462,B,,PPJ Juno Rdio,c,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,1200-1230,1234567,,,36902846,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,0145-0300,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,0430-0450,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,0540-0800,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,1100-1200,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,1335-1530,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,1645-2000,1234567,-8467.5,,31400039,,, +8467.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,10,,9269,45,135,,2215-2245,1234567,-8467.5,,31400039,,, +8474,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800006,,, +8484.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0200-2200,1234567,-8484.5,,7300007,,, +8486,CHN,,XSF28,p,Weihai (SD),37.516667,122.1,,1,,8269,48,140,,????-????,1234567,,,36201264,,, +8489,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,,,6800026,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0330-0400,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0515-0545,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0930-1000,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1115-1145,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1530-1600,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1715-1745,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2130-2200,1234567,,,20012368,,, +8502,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2315-2345,1234567,,,20012368,,, +8503.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0000-0305,1234567,-8503.9,,20016150,,, +8503.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0600-0855,1234567,-8503.9,,20016150,,, +8503.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1200-1505,1234567,-8503.9,,20016150,,, +8503.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1800-2105,1234567,-8503.9,,20016150,,, +8517,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800007,,, +8541,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000002,,, +8580,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0230-0330,1234567,,,36902809,,, +8580,B,,PPR Rio Rdio,c,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1945-2115,1234567,,,36902809,,, +8591,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800027,,, +8602,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800028,,, +8616,J,,JFC,f,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,31400048,,, +8637,D,,DAO38 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,,,2000054,,, +8638.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0200-2200,1234567,-8638.5,,7300008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1115-1145,1234567,,,36800008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1630-1700,1234567,,,36800008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1915-1945,1234567,,,36800008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2200-2245,1234567,,,36800008,,, +8677,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2310-2340,1234567,,,36800008,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0140-0415,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0655-1015,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1120-1230,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1400-1615,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1840-2215,1234567,,,20016145,,, +8682,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2320-2400,1234567,,,20016145,,, +8687.5,USA,,WHL28 Saint Augustine R,p,Saint Augustine (FL),29.750833,-81.28,,1,,7294,288,130,,????-????,1234567,-8687.5,,20016177,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,0350-0420,1234567,,,36800022,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1550-1635,1234567,,,36800022,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,1730-1800,1234567,,,36800022,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,2005-2035,1234567,,,36800022,,, +8696,CHL,,CBM Magallanes R,f,Punta Arenas (MA),-52.947667,-71.059444,,1,,13714,225,159,,2240-2325,1234567,,,36800022,,, +8710,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,0035-0105,1234567,,,36700002,,, +8710,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,0135-0225,1234567,,,36700002,,, +8716,PHL,,DZO28 Manila R,p,Lucena City (qzn),13.947222,121.619444,,1,,10413,62,148,,????-????,1234567,,,33300025,,, +8722,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,,,19900599,,, +8728,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,0720-0740,1234567,,,5300002,,, +8728,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1203-1223,1234567,,,5300002,,, +8728,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1720-1740,1234567,,,5300002,,, +8728,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1830-1840,1234567,,,5300002,,, +8734,GRC,,SVO Olympia R,u,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,????-????,1234567,,,3400003,,, +8740,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1010-1030,1234567,,,20300008,,, +8740,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1333-1348,1234567,,,20300008,,, +8740,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1810-1830,1234567,,,20300008,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0000-0200,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0300-0500,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0600-0800,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,0900-1100,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1200-1400,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1500-1700,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,1800-2000,1234567,,,32900002,,, +8743,THA,,HSW64 Bangkok Meteo,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,2100-2300,1234567,,,32900002,,, +8743,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,0530-0545,1234567,,,34700010,,, +8743,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,0600-0615,1234567,,,34700010,,, +8743,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,1330-1345,1234567,,,34700010,,, +8746,NOR,,LGL28 Flor R,p,Flor (sf),61.597625,4.998556,,1,,1058,356,68,,????-????,1234567,,,6300035,,, +8746,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0003-0018,1234567,,,22500002,,, +8746,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0403-0418,1234567,,,22500002,,, +8746,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,0803-0818,1234567,,,22500002,,, +8746,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,2003-2018,1234567,,,22500002,,, +8749,HKG,,VRX Hong Kong R,u,Cape d'Aguillar (sou),22.209444,114.256111,,1,,9215,63,144,,????-????,1234567,,,33800006,,, +8752,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000003,,, +8756.1,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,-8756.1,,3300001,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0330-0400,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0515-0545,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,0930-1000,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1115-1145,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1530-1600,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1715-1745,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2130-2200,1234567,,,20000102,,, +8764,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2315-2345,1234567,,,20000102,,, +8764,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0430-0505,1234567,,,20012374,,, +8764,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1030-1105,1234567,,,20012374,,, +8764,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1630-1705,1234567,,,20012374,,, +8764,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2230-2305,1234567,,,20012374,,, +8764,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,0005-0040,1234567,,,20012371,,, +8764,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,0600-0635,1234567,,,20012371,,, +8764,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,1200-1235,1234567,,,20012371,,, +8764,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,1800-1835,1234567,,,20012371,,, +8767,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800006,,, +8773,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902786,,, +8773,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902771,,, +8773,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902819,,, +8779,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0300-1500,1234567,,,11700006,,, +8779,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902788,,, +8779,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902773,,, +8782,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902774,,, +8782,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902821,,, +8788,OMA,,A4M Wattayah R,u,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0300-1500,1234567,,,11700007,,, +8788,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016232,,, +8788,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902790,,, +8788,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902851,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,0000-0015,1234567,,,36200265,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,0300-0315,1234567,,,36200265,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,0600-0615,1234567,,,36200265,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,0900-0915,1234567,,,36200265,,, +8794,CHN,zh,Chanjiang Maritime R.,u,Wuhan (HU),30.633333,114.25,,1,,8462,58,142,,1400-1415,1234567,,,36200265,,, +8800,NOR,,LGB28,p,Vigre (ro),58.658817,5.603778,,1,,730,356,64,,????-????,1234567,,,6300033,,, +8800,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902823,,, +8800,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902853,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0030-0045,1234567,-8805.7,,37500002,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0230-0245,1234567,-8805.7,,37500002,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,0640-0655,1234567,-8805.7,,37500002,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,1845-1900,1234567,-8805.7,,37500002,,, +8805.7,OCE,fr,FJA Mahina R,u,Mahina/Pointe de Vnus (idv),-17.504028,-149.481444,,1,,15627,322,166,,2100-2115,1234567,-8805.7,,37500002,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0000-0015,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0400-0415,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0500-0515,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,0600-0615,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1300-1315,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1600-1615,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1700-1715,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,1800-1815,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,2200-2215,1234567,,,20012381,,, +8806,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,2300-2315,1234567,,,20012381,,, +8806,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902825,,, +8812,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1000-1015,1234567,,,8000023,,, +8812,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1800-1815,1234567,,,8000023,,, +8819,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:05-:09,1234567,,,4500003,,, +8819,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,:35-:39,1234567,,,4500003,,, +8819,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:20-:24,1234567,,,34500003,,, +8819,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:50-:54,1234567,,,34500003,,, +8819,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:10-:19,1234567,,,4500007,,, +8819,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:40-:49,1234567,,,4500007,,, +8825,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,2300-1900,1234567,,,700007,,, +8825,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,0000-2400,1234567,,,20012393,,, +8825,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900013,,, +8828,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:10-:14,1234567,,,31400003,,, +8828,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:40-:44,1234567,,,31400003,,, +8828,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:15-:18,1234567,,,33800004,,, +8828,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:45-:48,1234567,,,33800004,,, +8828,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:25-:39,1234567,,,20000095,,, +8828,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:55-:09,1234567,,,20000095,,, +8828,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:20-:24,1234567,,,32500017,,, +8828,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:50-:54,1234567,,,32500017,,, +8831,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100030,,, +8831,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0830-2230,1234567,,,20109272,,, +8834,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300012,,, +8837,RUS,,Magadan Aero,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,,,,,6700134,,, +8840,NOR,,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,,,,,6300025,,, +8843,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012431,,, +8843,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012471,,, +8846,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012417,,, +8846,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902910,,, +8846,FJI,,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500009,,, +8849,CHN,en,Beijing Volmet,u,Beijing/Airport (BJ),40.087778,116.605556,,1,,7757,50,135,,0015-0900,1234567,,,36200227,,, +8849,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:00-:14,1234567,,,36200223,,, +8849,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:30-:44,1234567,,,36200223,,, +8855,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400008,,, +8855,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500025,,, +8855,ARG,,Ezeiza Aero,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,,,,,33000062,,, +8861,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500008,,, +8861,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000002,,, +8861,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:00-:04,1234567,,,6700044,,, +8861,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:30-:34,1234567,,,6700044,,, +8861,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:25-:29,1234567,,,6700060,,, +8861,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:55-:59,1234567,,,6700060,,, +8861,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:10-:14,1234567,,,6700048,,, +8861,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:40-:44,1234567,,,6700048,,, +8861,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:20-:24,1234567,,,6700056,,, +8861,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:50-:54,1234567,,,6700056,,, +8861,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200022,,, +8861,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:15-:19,1234567,,,6700052,,, +8861,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:45-:49,1234567,,,6700052,,, +8861,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300018,,, +8864,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0900-2200,1234567,,,4100021,,, +8864,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200003,,, +8864,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0830-2230,1234567,,,20109258,,, +8867,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012470,,, +8867,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500005,,, +8867,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700077,,, +8867,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700083,,, +8867,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500005,,, +8867,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500034,,, +8873,URG,,Carrasco Volmet,u,Carrasco (mo),-34.824722,-56.019444,,1,,11403,228,152,,1015-2025,1234567,,,31200014,,, +8873,URG,es,Carrasco Volmet,u,Carrasco (mo),-34.824722,-56.019444,,1,,11403,228,152,,:15-:24,1234567,,,31200014,,, +8879,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0900-2200,1234567,,,4100015,,, +8879,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200009,,, +8879,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0830-2230,1234567,,,20109259,,, +8879,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012386,,, +8879,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,5,,6741,96,117,,,,,,32200015,,, +8879,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500010,,, +8879,MOZ,,Beira Aero,u,Beira (sfl),-19.8,34.9,,1,,8460,152,142,,,,,,20500006,,, +8879,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300019,,, +8885,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900005,,, +8886,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700102,,, +8888,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:00-:04,1234567,,,6700027,,, +8888,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:30-:34,1234567,,,6700027,,, +8888,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:15-:19,1234567,,,6700035,,, +8888,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:45-:49,1234567,,,6700035,,, +8888,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:05-:09,1234567,,,6700031,,, +8888,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:35-:39,1234567,,,6700031,,, +8888,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:20-:24,1234567,,,6700019,,, +8888,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:50-:54,1234567,,,6700019,,, +8888,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:10-:14,1234567,,,6700023,,, +8888,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:40-:44,1234567,,,6700023,,, +8888,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100005,,, +8891,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100031,,, +8891,NOR,en,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,0000-2400,1234567,,,6300019,,, +8891,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200010,,, +8891,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0000-2400,1234567,,,20109260,,, +8894,ALG,,Alger Aero,u,Algiers (16),36.7,3.2,,1,,1732,190,74,,,,,,200013,,, +8903,CME,,Yaound Aero,u,Yaound (cen),3.836111,11.52,,1,,5389,173,111,,,,,,1400002,,, +8903,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100006,,, +8903,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012452,,, +8903,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012501,,, +8906,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0900-2200,1234567,,,4100013,,, +8906,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,0000-2400,1234567,,,700002,,, +8906,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,0830-2230,1234567,,,20109271,,, +8906,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,0000-2400,1234567,,,20012390,,, +8909,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200035,,, +8912,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016242,,, +8915,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012485,,, +8915,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012461,,, +8918,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900013,,, +8918,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012418,,, +8918,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400009,,, +8918,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902903,,, +8918,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100020,,, +8930,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800050,,, +8933,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012412,,, +8933,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012492,,, +8933,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012438,,, +8933,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012478,,, +8933,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012505,,, +8938,ARG,,Comodoro Rivadavia Volmet,u,Comodoro Rivadavia (ch),-45.791944,-67.481944,,1,,12959,228,157,,0930-2340,1234567,,,33000046,,, +8938,ARG,es,Comodoro Rivadavia Volmet,u,Comodoro Rivadavia (ch),-45.791944,-67.481944,,1,,12959,228,157,,:30-:40,1234567,,,33000046,,, +8939,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:05-:09,1234567,,,6700015,,, +8939,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:35-:39,1234567,,,6700015,,, +8939,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:25-:29,1234567,,,6700039,,, +8939,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:55-:59,1234567,,,6700039,,, +8939,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,2000-0400,1234567,,,36902867,,, +8942,IRL,,Shanwick Aero,h,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,,,,,4100054,,, +8942,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900019,,, +8948,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500017,,, +8951,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012462,,, +8952,ARG,es,Crdoba Volmet,u,Crdoba (cb),-31.309444,-64.216944,,1,,11526,236,152,,:25-:34,1234567,,,33000040,,, +8957,IRL,en,EIP Shannon Volmet,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100007,,, +8957,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500012,,, +8977,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200021,,, +8984,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100023,,, +9110,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0230-0506,1234567,,,20016155,,, +9110,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,0745-1041,1234567,,,20016155,,, +9110,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1400-1600,1234567,,,20016155,,, +9110,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1720-2241,1234567,,,20016155,,, +9116,OCE,,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500010,,, +9134,BHR,,Maritime Forces,u,Al-Manamah (mnh),26.233333,50.533333,,2.5,,4659,111,100,,0300-1400,1234567,,,10900001,,, +9165,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,0000-2400,1234567,,,34600013,,, +9200,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022293,,, +9250,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,EAf,1700-2300,1234567,,,50022851,,, +9265,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,2100-0200,1..4...,,,50016092,,, +9265,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,2100-0300,.23.567,,,50016092,,, +9265,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,CAm,1100-1300,1234567,,,50016092,,, +9265,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,CAm,2200-0500,1234567,,,50016092,,, +9280,EGY,tr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,5,3024,131,63,ME,1700-1900,1234567,,,50016093,,, +9300,TJK,ko,R Free Chosun,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,KRE,1300-1400,1234567,,,50023751,,, +9315,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023752,,, +9315,THA,bo,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1400-1500,1234567,,,50022853,,, +9317,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50023753,,, +9320,CLN,am,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1800-1900,1234567,,,50022854,,, +9320,CLN,om,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1730-1800,12345..,,,50022854,,, +9320,CLN,ti,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1900-1930,12345..,,,50022854,,, +9323,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50023754,,, +9325,CLN,lo,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1100-1200,1234567,,,50022855,,, +9325,THA,my,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SEA,0130-0230,1234567,,,50022856,,, +9325,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,2330-0030,1234567,,,50018288,,, +9325,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,,2300-0030,1234567,,,50018288,,, +9330,SYR,de,R Damascus,,Adra (dim),33.543889,36.566667,,500,312,3171,119,62,340,1800-1900,1234567,,,50020280,,, +9330,SYR,en,R Damascus,,Adra (dim),33.543889,36.566667,,500,98,3171,119,62,,2100-2200,1234567,,,50020280,,, +9330,SYR,es,R Damascus,,Adra (dim),33.543889,36.566667,,500,250,3171,119,62,278,2200-2300,1234567,,,50020280,,, +9330,SYR,fr,R Damascus,,Adra (dim),33.543889,36.566667,,500,340,3171,119,62,,1900-2000,1234567,,,50020280,,, +9330,SYR,ru,R Damascus,,Adra (dim),33.543889,36.566667,,500,155,3171,119,62,360,1700-1800,1234567,,,50020280,,, +9330,SYR,tr,R Damascus,,Adra (dim),33.543889,36.566667,,500,155,3171,119,62,360,1600-1700,1234567,,,50020280,,, +9330,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,0000-2400,1234567,,,50016100,,, +9330,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1200-0600,1234567,,,50016100,,, +9335,CLN,en,PCJ R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,FE,1330-1430,......7,,,50023755,,, +9340,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0400-2000,9999999,,,6800012,,, +9345,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,,1400-1600,1234567,,,50020282,,, +9345,PHL,zh,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,330,10183,62,128,FE,1400-1600,1234567,,,50013328,,, +9350,TJK,,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,60,4943,82,83,,0100-0200,1234567,,,50014721,,, +9350,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,Eu,1700-1900,1234567,,,50023757,,, +9350,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,85,7122,296,108,NAm,2100-2300,1234567,,,50009721,,, +9350,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1400,1234567,,,50023756,,, +9355,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1700-2200,1234567,,,50023758,,, +9355,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,1430-1630,1234567,,,50001426,,, +9355,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,330,10223,62,124,,1300-1500,1234567,,,50001426,,, +9355,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,300,11575,40,132,FE,1700-2200,1234567,,,50001425,,, +9360,MRA,ru,R Liberty,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1200-1400,1234567,,,50022860,,, +9365,PHL,MIE,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,SEA,2300-2330,1234567,,,50020539,,, +9370,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0100-0400,1234567,,,50023759,,, +9370,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1330-1900,1234567,,,50023759,,, +9370,TJK,,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,60,4943,82,83,,1600-1700,1234567,,,50021680,,, +9370,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,125,4943,82,83,,1500-1600,1234567,,,50021680,,, +9370,USA,en,The Overcomer Ministry,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,,1200-2400,1234567,,,20016303,,, +9370,USA,en,WWRB,,Manchester (WWRB) (TN),35.622778,-86.014167,,100,,7115,295,108,NAm,1300-2400,1234567,,,50022864,,, +9370,CLN,ps,R Liberty,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,1300-1330,1234567,,,50022861,,, +9370,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,1200-1300,1234567,,,50022863,,, +9385,MRA,ko,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2100-2200,1234567,,,50022866,,, +9390,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,IRN,1530-1900,1234567,,,50022868,,, +9390,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,1900-2100,1234567,,,50022867,,, +9390,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,1905-2100,1234567,,,50022867,,, +9390,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,1900-1905,1234567,,,50022867,,, +9390,UZB,bn,FEBA R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0000-0030,1234567,,,50014726,,, +9390,UZB,bn,FEBA R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,SAs,1500-1530,1234567,,,50014726,,, +9390,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,132,8917,74,120,Oc,1230-1300,1234567,,,50019968,,, +9390,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,Oc,1400-1430,1234567,,,50019968,,, +9390,THA,ja,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,J,1300-1315,1234567,,,50019968,,, +9390,THA,ms,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,MLA,1200-1215,1234567,,,50019968,,, +9390,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,FE,1330-1400,1234567,,,50019968,,, +9390,THA,zh,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,250,154,8917,74,120,FE,1315-1330,1234567,,,50019968,,, +9390,THA,ko,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1900-2100,1234567,,,50022869,,, +9395,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,2100-2158,1234567,,,50022870,,, +9395,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,2105-2158,1234567,,,50022870,,, +9395,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAf,2100-2105,1234567,,,50022870,,, +9395,ARM,en,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,,3205,98,62,CAm,2200-2400,1234567,,,50022871,,, +9395,ARM,es,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,,3205,98,62,CAm,0000-0500,1234567,,,50022871,,, +9400,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,1800-2200,9999999,,,50022873,,, +9400,ARM,fa,FEBA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,1500-1530,1234567,,,50023760,,, +9400,ARM,ps,FEBA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,1530-1600,1234567,,,50023760,,, +9400,PHL,zh,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,330,10183,62,128,FE,0900-1400,1234567,,,50005154,,, +9405,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,,0000-0030,1234567,,,50005155,,, +9405,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,,2230-2400,1234567,,,50005155,,, +9405,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,FE,2230-0030,1234567,,,50005155,,, +9410,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,250,91,660,211,40,,1530-1545,......7,,,50019286,,, +9410,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,1700-1730,1234567,,,50022875,,, +9410,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,300,1660,112,54,,1200-1300,1234567,,,50021683,,, +9410,TUR,es,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,SAm,0200-0300,1234567,,,50022876,,, +9410,TUR,ru,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,EEu,1400-1500,1234567,,,50022876,,, +9410,EGY,de,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,Eu,1900-2000,1234567,,,50022874,,, +9410,EGY,fr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,Eu,2000-2115,1234567,,,50022874,,, +9410,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,0100-0200,1234567,,,50005159,,, +9410,CHN,pt,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SAm,2200-2300,1234567,,,50005159,,, +9410,UAE,ps,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,60,5075,109,84,AFG,1730-1800,1234567,,,50020550,,, +9410,OMA,KNK,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,EAf,1830-1900,12345..,,,50009728,,, +9410,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,ME,0400-0500,1234567,,,50009728,,, +9410,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,SAs,1300-1400,1234567,,,50009728,,, +9410,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,SAs,1400-1500,1234567,,,50009728,,, +9410,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,0600-0800,1234567,,,50022295,,, +9410,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0955-2200,1234567,,,40000896,,, +9410,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,290,8872,77,119,SAs,0000-0100,1234567,,,50011642,,, +9410,AFS,so,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,32,9003,160,120,EAf,1800-1830,1234567,,,50020548,,, +9410,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,250,315,10381,83,124,SAs,1500-1700,1234567,,,50020549,,, +9410,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,0400-0600,1234567,,,21800024,,, +9410,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,0800-1000,1234567,,,21800024,,, +9410,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,1100-1300,1234567,,,21800024,,, +9410,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,2300-0100,1234567,,,21800024,,, +9415,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,0800-1000,1234567,,,50022878,,, +9415,CHN,vi,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SEA,2300-2400,1234567,,,50022877,,, +9420,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,0000-1000,1234567,,,50022880,,, +9420,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1700-1000,1234567,,,50022880,,, +9420,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,2300-1000,1234567,,,50022880,,, +9420,IRN,sq,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1820-1920,1234567,,,50022881,,, +9420,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0100-0200,1234567,,,50022879,,, +9420,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1100-1805,1234567,,,40000898,,, +9425,UAE,ar,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,255,5075,109,84,,0300-0400,1234567,,,50020552,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1430-1435,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1530-1535,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1630-1635,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1730-1735,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1830-1835,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1935-1940,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2030-2035,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2135-2140,1234567,98,,40000899,,, +9425,IND,en,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2230-2235,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1320-1430,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1435-1530,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1535-1630,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1635-1730,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1735-1830,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1835-1935,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,1940-2030,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2035-2135,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2140-2230,1234567,98,,40000899,,, +9425,IND,hi,AIR National Channel,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,18,7561,97,106,,2235-0040,1234567,98,,40000899,,, +9425,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,0000-0100,1234567,,,50022882,,, +9425,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,PHL,2300-2400,1234567,,,50022882,,, +9425,KRE,de,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,,1800-2000,1234567,,,50016097,,, +9425,KRE,de,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1600-1700,1234567,,,50016097,,, +9425,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,,2000-2100,1234567,,,50016097,,, +9425,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1400-1600,1234567,,,50016097,,, +9425,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1700-1800,1234567,,,50016097,,, +9430,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,0200-0530,1234567,,,50022884,,, +9430,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1400-1500,1234567,,,50022883,,, +9430,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,FE,0900-1600,1234567,,,50005186,,, +9435,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1700-1800,1234567,,,50022887,,, +9435,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ENA,2130-2200,1234567,,,50022886,,, +9435,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,1500-1700,1234567,,,50005195,,, +9435,CHN,pt,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAm,0000-0100,1234567,,,50005195,,, +9435,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,2300-2400,1234567,,,50022885,,, +9435,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1000-1100,1234567,,,50016101,,, +9435,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1300-1400,1234567,,,50016101,,, +9435,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1500-1600,1234567,,,50016101,,, +9435,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1100-1200,1234567,,,50016101,,, +9435,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1400-1500,1234567,,,50016101,,, +9435,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1600-1700,1234567,,,50016101,,, +9435,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,1200-1300,1234567,,,50016101,,, +9435,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1700-1800,1234567,,,50016101,,, +9435,CLN,az,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,Cau,1830-1900,1234567,,,50022888,,, +9435,CLN,km,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,2200-2230,1234567,,,50022888,,, +9435,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0000-0100,1234567,,,50005194,,, +9440,ARM,fa,Deutsche Welle,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,1330-1400,1234567,,,50022890,,, +9440,ARM,ps,Deutsche Welle,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,1400-1430,1234567,,,50022890,,, +9440,ARM,ur,Deutsche Welle,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,SAs,1430-1500,1234567,,,50022890,,, +9440,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,55,6960,203,103,WAf,0630-0700,1234567,,,50009732,,, +9440,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,,1900-2000,1234567,,,50005200,,, +9440,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,,2000-2100,1234567,,,50005200,,, +9440,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1900-2100,1234567,,,50005200,,, +9440,CHN,ja,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,1000-1100,1234567,,,50022889,,, +9440,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,63,7773,50,115,FE,0400-0500,1234567,,,36201075,,, +9440,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,0900-1000,1234567,,,50022889,,, +9440,CHN,km,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1200-1300,1234567,,,50005200,,, +9440,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1100-1200,1234567,,,50005200,,, +9440,CHN,eo,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1300-1400,1234567,,,50005201,,, +9445,IRN,id,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SEA,2220-2320,1234567,,,50022891,,, +9445,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,WAf,1745-1945,1234567,,,50016445,,, +9445,IND,hi,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,ME,1615-1730,1234567,,,50016445,,, +9445,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,1500-1530,1234567,,,50022892,,, +9445,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,325,7561,97,106,Eu,2045-2230,1234567,,,50016113,,, +9445,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0400-0500,1234567,,,50016102,,, +9445,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0600-0700,1234567,,,50016102,,, +9445,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0900-1000,1234567,,,50016102,,, +9445,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,2300-2400,1234567,,,50016102,,, +9445,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0500-0600,1234567,,,50016102,,, +9445,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0800-0900,1234567,,,50016102,,, +9445,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,1100-1200,1234567,,,50016102,,, +9445,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,2100-2300,1234567,,,50016102,,, +9450,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0500-0515,....5..,,,50022894,,, +9450,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0500-0530,...4...,,,50022894,,, +9450,ROU,de,R Romania Int.,D,Tigăneşti (IF),44.749444,26.102778,,1,,1660,112,74,WEu,0700-0730,1234567,,,50022896,,, +9450,CHN,ha,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NIG,1730-1830,1234567,,,50005217,,, +9450,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAs,1300-1400,1234567,,,50005217,,, +9450,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,209,5347,76,91,SAs,0300-0400,1234567,,,50005217,,, +9450,CHN,eo,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,FE,1100-1200,1234567,,,50022893,,, +9450,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,1400-1600,1234567,,,50022895,,, +9450,TWN,zh,R Taiwan Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,,9364,56,125,FE,2200-2400,1234567,,,50023761,,, +9450,TWN,zh,Xi Wang zhi Sheng SOH,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,FE,1400-1500,1234567,,,50011339,,, +9450,TWN,zh,Xi Wang zhi Sheng SOH,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,FE,1500-1600,1234567,,,50011339,,, +9450,TWN,zh,Xi Wang zhi Sheng SOH,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,335,9434,57,125,FE,1400-1600,1234567,,,50011339,,, +9455,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-2200,1234567,,,50023762,,, +9455,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0100-0200,1234567,,,40000902,,, +9455,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1955-0100,1234567,,,40000902,,, +9455,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1500-1600,1234567,,,50005225,,, +9455,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,300,11575,40,132,FE,1600-2200,1234567,,,50001538,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0015-0030,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0115-0130,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0215-0230,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0315-0330,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0415-0430,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0915-0930,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1015-1030,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1115-1130,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1215-1230,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1315-1330,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1415-1430,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1515-1530,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1615-1630,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2115-2130,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2215-2230,1234567,,,32500043,,, +9459,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2315-2330,1234567,,,32500043,,, +9460,D,en,Brother Stair,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,WEu,1400-1600,12345..,,,50022901,,, +9460,AUT,en,Brother Stair,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WEu,1400-1600,.....67,,,50022900,,, +9460,ALB,ro,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,EEu,0900-1000,1234567,,,50022897,,, +9460,TUR,ug,Voice of Turkey,,Emirler,39.401389,32.855833,,500,310,2469,114,55,CHN,0300-0400,1234567,,,50014748,,, +9460,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,SAs,1400-1500,1234567,,,50017370,,, +9460,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,,0900-1100,1234567,,,50017370,,, +9460,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,CLN,1200-1300,1234567,,,50005232,,, +9460,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,CAf,0600-0700,1234567,,,50022898,,, +9460,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,0000-0100,1234567,,,50005231,,, +9460,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,0100-0200,1234567,,,50005231,,, +9460,MYA,gb,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.013539,96.549528,,50,,8104,76,121,,0530-0630,1234567,,,22100049,,, +9460,MYA,my,Thazin Broadcasting Station,,Pyin Oo Lwin=Maymyo (mdy),22.013539,96.549528,,50,,8104,76,121,,0430-0530,1234567,,,22100049,,, +9460,CHN,en,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1600-1800,1234567,,,50018339,,, +9460,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,0900-1100,1234567,,,50018339,,, +9460,THA,my,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SEA,0200-0230,1234567,,,50022899,,, +9465,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAs,1800-1900,1234567,,,50022902,,, +9465,MDA,en,Voice of Russia,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,296,1731,99,47,,2200-2400,1234567,,,50020565,,, +9465,MDA,es,Voice of Russia,,Grigoriopol/Maiac (TN),47.286667,29.417778,,500,296,1731,99,47,,0000-0100,1234567,,,50020565,,, +9465,PHL,ru,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,Sib,1500-1600,1234567,,,50022903,,, +9465,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,SEA,1330-1400,1234567,,,50022903,,, +9470,AUT,en,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,1915-1930,......7,,,50022905,,, +9470,CHN,kk,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0500-0600,1234567,,,40000903,,, +9470,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0300-0500,1234567,,,40000903,,, +9470,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0600-0800,1234567,,,40000903,,, +9470,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1100,1.3.567,,,40000903,,, +9470,CHN,kk,Xinjiang RGD Kazakh,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,1100-1150,1234567,,,40000903,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1430-1435,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1530-1535,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1630-1635,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1730-1735,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1830-1835,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1935-1940,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2030-2035,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2135-2140,1234567,,,40000904,,, +9470,IND,en,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2230-2235,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1320-1430,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1435-1530,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1535-1630,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1635-1730,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1735-1830,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1835-1935,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,1940-2030,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2035-2135,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2140-2230,1234567,,,40000904,,, +9470,IND,hi,AIR National Channel,,Aligarh (UP),27.999167,78.095833,,250,188,6367,85,97,,2235-0043,1234567,,,40000904,,, +9470,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,Af,0400-0500,1234567,,,50014751,,, +9470,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,ND,0500-0600,1234567,,,50014751,,, +9470,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0500-0530,1234567,,,50014751,,, +9470,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0530-0600,1234567,,,50014751,,, +9470,CHN,mn,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,MNG,0000-0100,1234567,,,50005242,,, +9470,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,2025-2400,1234567,,,40001031,,, +9475,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,,7067,296,108,NAm,1400-2400,1234567,,,50022906,,, +9475,SWZ,sw,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,5,9062,157,124,,1700-1745,1234567,,,50010849,,, +9475,SWZ,sw,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,5,9062,157,124,,1745-1815,.....67,,,50010849,,, +9475,SWZ,sw,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,5,9062,157,124,EAf,1700-1815,1234567,,,50010849,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1000-1100,.....67,,,50016115,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,1430-1700,1234567,,,50016115,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,1700-1900,1234567,,,50016115,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,EAs,1100-1900,1234567,,,50016115,,, +9475,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,0700-0900,1234567,,,50016115,,, +9475,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,0900-1000,1234567,,,50016115,,, +9475,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,WOc,1000-1100,12345..,,,50016115,,, +9480,D,en,European Music R,,Ghren (mev),53.535556,11.611111,,100,,384,64,41,Eu,0900-1000,9999999,,,50021951,,, +9480,KWT,ug,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50022908,,, +9480,TJK,es,Voice of Russia,,Orzu (SW) (ktl),37.520833,68.8,,500,267,5010,83,80,,0200-0500,1234567,,,50020285,,, +9480,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,Af,0530-0630,12345..,,,50022910,,, +9480,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,2000-2030,1234567,,,50022910,,, +9480,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023763,,, +9480,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0900-1400,1234567,,,40000906,,, +9480,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1430-1605,1234567,,,40000906,,, +9480,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2155-0100,1234567,,,40000906,,, +9480,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1400-1430,1234567,,,40000906,,, +9480,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,0530-0630,12345..,,,50022909,,, +9480,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,2100-2130,12345..,,,50022909,,, +9480,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,WAf,2030-2100,.....67,,,50022909,,, +9485,D,am,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1800-1900,1234567,,,50022911,,, +9485,D,om,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1730-1800,12345..,,,50022911,,, +9485,D,ti,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1900-1930,12345..,,,50022911,,, +9490,D,en,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,108,316,151,40,,1900-2000,1234567,,,50021688,,, +9490,F,es,R Republica,,Issoudun (36),46.947222,1.894444,,250,275,660,211,40,CUB,0100-0300,1234567,,,50020576,,, +9490,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ME,1930-2000,1234567,,,50022912,,, +9490,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,1500-1600,1234567,,,50020575,,, +9490,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,2100-2200,123...7,,,50018352,,, +9490,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0200-0700,1234567,,,40000909,,, +9490,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0800-0957,1.34567,,,40000909,,, +9490,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0700-0800,1.34567,,,40000909,,, +9490,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1300-1500,1234567,,,50005266,,, +9490,PHL,bn,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,1600-1700,1234567,,,50022914,,, +9490,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,2230-2300,1234567,,,50022914,,, +9490,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,2300-2400,1234567,,,50022914,,, +9495,TUR,es,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,SEu,1730-1830,1234567,,,50022916,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,1300-1900,12345..,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,152,1300-1400,.....67,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1300-1400,12345..,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1400-1600,1234567,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,1600-2000,12345..,,,50016117,,, +9495,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,2000-2100,1234567,,,50016117,,, +9495,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023764,,, +9495,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Car,1100-1300,1234567,,,50023765,,, +9495,USA,es,Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Car,2300-2400,1234567,,,50023766,,, +9495,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1500-1600,1234567,,,50022917,,, +9500,IRN,ar,IRIB Voice of Palestine,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,0320-0420,1234567,,,50022918,,, +9500,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,153,4779,79,85,SAs,1100-1400,1234567,,,50019297,,, +9500,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,,5629,115,93,Eu,0000-0200,1234567,,,50022919,,, +9500,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0600-0900,1.34567,,,40000911,,, +9500,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0900-1805,1234567,,,40000911,,, +9500,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,2025-0600,1234567,,,40000911,,, +9500,SWZ,ar,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,EAf,1800-1900,1234567,79,,50010850,,, +9500,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,EAf,0500-0800,1234567,79,,50010850,,, +9500,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,1700-2030,1234567,,,50016118,,, +9500,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,355,16373,78,148,WOc,2030-2200,1234567,,,50016118,,, +9504.8,PRU,es,R Tacna,,Tacna (tac),-18,-70.216667,,0.5,,10702,249,152,,1000-0005,1234567,-9504.8,,40000912,,, +9505,SDN,ar,Saut Afrikya,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,0400-0700,1234567,,,40000914,,, +9505,SDN,ar,Saut Afrikya,,Omdurman/Al-Aitahab (kha),15.586667,32.446333,,100,90,4666,141,84,,1600-1900,1234567,,,40000914,,, +9505,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,ME,1500-1800,1234567,,,50022920,,, +9505,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,2000-2300,123...7,,,50018363,,, +9505,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,2300-2400,1234567,,,50018363,,, +9505,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,2000-2100,12345.7,,,50018363,,, +9505,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,ENA,2100-2300,1234567,,,50018363,,, +9505,CHN,en,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0532-0557,......7,,,40000915,,, +9505,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0200-0400,1234567,,,40000915,,, +9505,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0400-0532,......7,,,40000915,,, +9505,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0400-0945,12.456.,,,40000915,,, +9505,CHN,zh,Haixia zhi Sheng Xinwen Shizheng Pindao,,Gutian/Xincheng (FJ),26.566667,118.733333,,50,140,9085,57,127,,0557-0945,......7,,,40000915,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,0900-0930,.....6.,,,50014769,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,0900-1000,.....6.,,,50014769,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,0930-1000,.....6.,,,50014769,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,0930-1300,......7,,,50014769,,, +9510,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,150,290,1666,112,52,,1030-1100,......7,,,50014769,,, +9510,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,Eu,0900-1000,.....6.,,,50021954,,, +9510,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,Eu,1030-1300,......7,,,50021954,,, +9510,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0250-0320,1234567,,,50022922,,, +9510,CHN,mn,CNR 8,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0700-0800,1234567,,,36200220,,, +9510,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0530-0700,1234567,,,36200220,,, +9510,CHN,mn,Xinjiang RGD Mongγol,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,100,,5761,65,95,,0800-1030,1.3.567,,,36200220,,, +9510,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,0030-0100,1234567,,,50011236,,, +9510,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,0130-0200,1234567,,,50011236,,, +9510,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,1400-1430,1234567,,,50011236,,, +9510,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,0000-0030,1234567,,,50022921,,, +9515,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1900-2000,1234567,,,50023767,,, +9515,IRN,sw,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,EAf,1720-1820,1234567,,,50022925,,, +9515,IRN,ru,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,CAs,1420-1520,1234567,,,50022924,,, +9515,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1100-1200,1234567,,,50022923,,, +9515,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,1430-1500,1234567,,,40000917,,, +9515,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,1000-1430,1234567,,,40000917,,, +9515,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,1500-1605,1234567,,,40000917,,, +9515,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2100-2400,1234567,,,40000917,,, +9515,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,285,8663,46,119,Eu,1600-1700,1234567,,,50005296,,, +9515,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,285,8663,46,119,Eu,1700-1900,1234567,,,50005296,,, +9515,B,pt,ZYE726 R Marumby,,Curitiba/Campo Largo (PR),-25.432389,-49.393128,,10,310,10181,228,138,,0700-0100,1234567,,,40000918,,, +9520,D,ru,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EEu,0300-0400,1234567,,,50022929,,, +9520,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2100-2200,1234567,,,50022927,,, +9520,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2100-2300,1234567,,,50022927,,, +9520,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2205-2300,1234567,,,50022927,,, +9520,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2200-2205,1234567,,,50022927,,, +9520,KWT,ru,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,EEu,0400-0600,1234567,,,50022928,,, +9520,CHN,zh,CNR 1,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,2230-2300,1234567,,,40000919,,, +9520,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0600-0950,1.34567,,,40000919,,, +9520,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0950-1605,1234567,,,40000919,,, +9520,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,2150-2230,1234567,,,40000919,,, +9520,CHN,zh,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,2300-0600,1234567,,,40000919,,, +9520,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,1330-1400,1234567,,,50005302,,, +9520,PHL,ta,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1400-1430,1234567,,,50005302,,, +9520,PHL,ta,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,1400-1427,1234567,,,50005302,,, +9522,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0700-0730,1234567,,,50023768,,, +9522,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0800-0830,1234567,,,50023768,,, +9525,ROU,es,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,310,1587,104,48,VEN,0000-0100,1234567,,,50005309,,, +9525,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,310,1660,112,49,,0000-0200,1234567,,,50021689,,, +9525,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1500-1600,1234567,,,50022930,,, +9525,INS,ar,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,290,11281,86,127,ME,1600-1700,1234567,889,,50016120,,, +9525,INS,de,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,Eu,1800-1900,1234567,889,,50016120,,, +9525,INS,en,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,135,11281,86,127,30,1000-1100,1234567,889,,50016120,,, +9525,INS,en,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,135,11281,86,127,FE,0950-1100,1234567,889,,50016120,,, +9525,INS,en,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,Eu,1900-2000,1234567,889,,50016120,,, +9525,INS,en,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,FE,1300-1400,1234567,889,,50016120,,, +9525,INS,es,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,Eu,1700-1800,1234567,889,,50016120,,, +9525,INS,fr,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,Eu,2000-2100,1234567,889,,50016120,,, +9525,INS,id,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,10,11281,86,127,30,1400-1500,1234567,889,,50016120,,, +9525,INS,id,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,10,11281,86,127,FE,1400-1503,1234567,889,,50016120,,, +9525,INS,ja,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,135,11281,86,127,Eu,2100-2200,9999999,889,,50016120,,, +9525,INS,ja,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,FE,1200-1300,1234567,889,,50016120,,, +9525,INS,zh,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,10,11281,86,127,FE,1100-1200,1234567,889,,50016120,,, +9525,INS,zh,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,135,11281,86,127,FE,1503-1505,9999999,889,,50016120,,, +9525,INS,zh,Voice of Indonesia,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,30,11281,86,127,,1500-1600,1234567,889,,50016120,,, +9530,TUR,fa,Voice of Turkey,,Emirler,39.401389,32.855833,,500,95,2469,114,55,IRN,1600-1700,1234567,,,50008005,,, +9530,UAE,am,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0330-0345,1...5.7,,,50022933,,, +9530,UAE,om,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0330-0345,.2.....,,,50022933,,, +9530,UAE,sid,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0330-0345,..34...,,,50022933,,, +9530,ASC,PU,HCJB Global,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,2145-2215,12.4567,,,50022932,,, +9530,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1500,1234567,,,50023769,,, +9530,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0000-0500,1234567,,,40000920,,, +9530,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0530-0600,1234567,,,40000920,,, +9530,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0900,12.4567,,,40000920,,, +9530,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0500-0530,1234567,,,40000920,,, +9530,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1000-1400,1234567,,,50022934,,, +9530,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1400-1500,1234567,,,50022934,,, +9530,B,pt,ZYE857 Rdio Transmundial,,Santa Maria/Vila Palmas (RS),-29.738333,-53.555278,,10,60,10803,229,140,,0700-0100,1234567,92,,40000922,,, +9534.8,GEO,ab,Apsua R Abkhazia,,Sukhumi=Aqwa (abk),43.011111,41.031667,,5,,2756,98,78,,0500-0911,123456,-9534.8,,40000923,,, +9535,F,ru,China R Int.,,Issoudun (36),46.947222,1.894444,,500,55,660,211,37,CAs,1800-1900,1234567,,,50005319,,, +9535,D,ar,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,1900-2000,1234567,,,50022936,,, +9535,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,272,1547,213,49,CAm,2300-0600,1234567,,,50009745,,, +9535,CHN,pt,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,150,255,7712,60,112,EAf,1900-2000,1234567,,,50010332,,, +9535,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,PHL,2300-2400,1234567,,,50005318,,, +9535,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,FE,1500-1600,1234567,,,50005318,,, +9535,THA,de,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,2000-2015,1234567,,,50022935,,, +9535,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,2030-2045,1234567,,,50022935,,, +9535,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,2045-2115,1234567,,,50022935,,, +9540,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1600-1700,1234567,,,50022939,,, +9540,UZB,hi,FEBA R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1430-1500,1234567,,,50022938,,, +9540,RRW,om,FEBA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,EAf,1700-1730,1234567,,,50023770,,, +9540,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,142,7797,50,108,Oc,1100-1200,1234567,,,50005327,,, +9540,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,,1200-1300,1234567,,,50005328,,, +9540,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,1200-1400,1234567,,,50005328,,, +9540,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,1100-1300,1234567,,,50016446,,, +9540,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,1300-1500,1234567,,,50016446,,, +9540,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,340,7939,284,116,CAm,1100-1500,1234567,,,50016446,,, +9540,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,2200-2230,1234567,,,50020607,,, +9540,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1530-1600,1234567,,,50020607,,, +9540,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,2230-2250,1234567,,,50020607,,, +9540,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,325,9364,56,125,FE,0900-1100,.....67,,,50011203,,, +9545,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023771,,, +9545,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023771,,, +9545,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0000-0100,1234567,,,50022941,,, +9545,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,FE,2200-2300,1234567,,,50005341,,, +9545,PHL,MON,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,SEA,2300-2330,1234567,,,50022940,,, +9545,SLM,en,SIBC R Hapi Isles,,Honiara/Henderson Field (cth),-9.435556,160.06,,10,,14705,36,153,,0800-1900,1234567,0,,40000926,,, +9545,SLM,en,SIBC R Hapi Isles,,Honiara/Henderson Field (cth),-9.435556,160.06,,10,,14705,36,153,,2000-2400,1234567,0,,40000926,,, +9550,RRW,ar,FEBA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,ME,1800-1927,1234567,,,50023772,,, +9550,CHN,vi,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SEA,1100-1600,1234567,,,50005343,,, +9550,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,340,7939,284,116,ENA,1100-1300,1234567,,,50017037,,, +9550,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,0000-0100,1234567,,,50005344,,, +9550,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,0100-0200,1234567,,,50005344,,, +9550,BOT,KNK,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,0330-0400,1234567,,,50022943,,, +9550,BOT,KNK,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,0330-0430,.....67,,,50022943,,, +9550,BOT,KNK,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,0400-0430,.....67,,,50022943,,, +9550,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1600-1630,1234567,,,50005347,,, +9550,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,2030-2100,1234567,,,50005347,,, +9550,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1630-1700,1234567,,,50005347,,, +9550,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,2100-2130,1234567,,,50005347,,, +9550,VTN,vi,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,290,8749,70,123,NAf,1500-1600,1234567,,,50005347,,, +9550,B,pt,ZYE854 Rdio Boa Vontade,,Porto Alegre/Esteio (RS),-29.867167,-51.10375,,10,,10690,227,139,,0000-2400,1234567,,,36902759,,, +9555,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,140,1609,135,51,EGY,1600-1800,1234567,,,50005350,,, +9555,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,1800-2300,1234567,,,50023773,,, +9555,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,FE,2300-2400,1234567,,,50022944,,, +9555,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,303,11578,41,128,,1700-1900,1234567,,,50020614,,, +9560,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAs,0140-0200,1234567,,,50022945,,, +9560,CVA,hi,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAs,0040-0100,1234567,,,50022945,,, +9560,CVA,ml,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAs,0120-0140,1234567,,,50022945,,, +9560,CVA,ta,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,SAs,0100-0120,1234567,,,50022945,,, +9560,CHN,hu,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1900-1930,1234567,,,50005356,,, +9560,UAE,hi,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0230-0300,1234567,,,50022946,,, +9560,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,313,5607,84,89,,1700-1900,1234567,,,50019983,,, +9560,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,1500-1600,1234567,,,50005355,,, +9560,ETH,aa,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1300-1400,1234567,5,,50005359,,, +9560,ETH,ar,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1400-1500,1234567,5,,50005359,,, +9560,ETH,en,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1600-1700,1234567,5,,50005359,,, +9560,ETH,fr,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1700-1800,1234567,5,,50005359,,, +9560,ETH,so,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,0700-0800,1234567,5,,50005359,,, +9560,ETH,so,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1200-1300,1234567,5,,50005359,,, +9560,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0600-0700,1234567,,,40000931,,, +9560,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0300-0600,1234567,,,40000931,,, +9560,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0700-0800,1234567,,,40000931,,, +9560,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0800-1100,1.3.567,,,40000931,,, +9560,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1100-1200,1234567,,,40000931,,, +9560,RUS,zh,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,FE,1000-1400,1234567,,,50023774,,, +9560,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,FE,2200-2230,1234567,,,50005360,,, +9560,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,2230-2250,1234567,,,50005360,,, +9565,ALB,tr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,,1609,135,51,ME,1500-1600,1234567,,,50005365,,, +9565,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,CUB,2000-2400,1234567,,,50009753,,, +9565,TWN,vi,R France Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,250,9364,56,125,SEA,1500-1600,1234567,,,50015844,,, +9565,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,2100-2200,1234567,,,50022948,,, +9565,B,pt,ZYE727 Super Rdio Deus Amor,,Curitiba/Corpo de Bombeiros (PR),-25.449444,-49.125,,15,45,10169,228,136,,0000-2400,1234567,5,,40000936,,, +9566.5,ETH,KUN,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,1.3.5..,-9566.5,,50022301,,, +9566.5,ETH,aa,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,.2.4.6.,-9566.5,,50022301,,, +9566.5,ETH,ar,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1500-1530,1.3.5.7,-9566.5,,50022301,,, +9566.5,ETH,ti,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1500-1530,.2.4.6.,-9566.5,,50022301,,, +9566.5,ETH,ti,V.o.Democratic Alliance,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,EAf,1530-1600,......7,-9566.5,,50022301,,, +9566.5,ETH,ti,V.o.Peace and Democracy,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,0400-0500,1.3.5..,-9566.5,,50022302,,, +9566.5,ETH,ti,V.o.Peace and Democracy,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,1800-1830,1.3.5..,-9566.5,,50022302,,, +9566.5,ETH,ti,Voice of Eritrea,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,0400-0430,.2.4.6.,-9566.5,,50022303,,, +9566.5,ETH,ti,Voice of Eritrea,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,ERI,1800-1830,.2.4.6.,-9566.5,,50022303,,, +9570,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,300,305,1609,135,48,NAm,0000-0200,1234567,,,50005374,,, +9570,ALB,zh,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,300,305,1609,135,48,NAm,0200-0400,1234567,,,50005374,,, +9570,CVA,uz,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,CAs,1500-1530,1234567,,,50022950,,, +9570,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,170,1547,213,49,CAf,2000-2100,12345..,,,50009754,,, +9570,IRN,ha,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,305,4724,102,77,WAf,1820-1920,1234567,,,50020622,,, +9570,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1100-1200,1234567,,,50022949,,, +9570,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1500,1234567,,,50022949,,, +9570,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,0300-0600,1234567,,,40000938,,, +9570,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,0600-0855,12.4567,,,40000938,,, +9570,CHN,zh,CNR 2,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,172,6812,67,105,,0855-1000,1234567,,,40000938,,, +9570,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,,1700-1800,1234567,,,50005375,,, +9570,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,SAf,1600-1800,1234567,,,50005375,,, +9570,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,10,7939,284,112,ENA,1300-1400,1234567,,,50005377,,, +9570,CUB,zh,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,10,7939,284,112,ENA,1200-1300,1234567,,,50005377,,, +9570,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,234,8246,70,118,,1600-1700,1234567,,,50021690,,, +9570,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,0800-0900,1234567,,,50005379,,, +9570,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,1300-1400,1234567,,,50005379,,, +9570,KOR,id,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,1200-1300,1234567,,,50005379,,, +9570,KOR,id,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,1400-1500,1234567,,,50005379,,, +9570,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,SEA,0900-1100,1234567,,,50005379,,, +9575,MRC,,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,,0000-2400,1234567,,,5900006,,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0900-0930,1234567,,,5900006,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0933-1000,1234567,,,5900006,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1003-1030,1234567,,,5900006,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1538-1630,1234567,,,5900006,, +9575,MRC,A,F,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1633-1700,1234567,,,5900006,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0100-0530,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0555-0615,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0617-0620,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0645-0715,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0720-0726,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0745-0747,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0755-0812,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1000-1003,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1033-1100,.....67,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1103-1130,.....67,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1200-1230,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1400-1403,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1410-1415,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1500-1503,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1700-1703,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1800-1813,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1855-1930,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1945-2100,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2103-2215,1234567,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2215-2300,12345..,,,5900006,,, +9575,MRC,ar,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2316-0005,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0530-0555,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0615-0617,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0620-0645,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0715-0720,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0726-0745,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0747-0755,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0812-0900,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,0930-0933,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1030-1033,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1033-1100,12345..,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1100-1103,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1103-1130,12345..,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1130-1200,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1230-1400,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1403-1410,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1415-1500,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1503-1538,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1630-1633,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1703-1800,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1813-1855,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,1930-1945,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2100-2103,1234567,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2215-2300,.....67,,,5900006,,, +9575,MRC,fr,Medi 1,,Nador (SNRT/Medi1) (otl),35.043056,-2.914444,,250,,2037,205,53,NAf,2300-2316,1234567,,,5900006,,, +9575,IND,bo,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,102,7561,97,106,Tib,1215-1330,1234567,,,50016449,,, +9575,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1215-1330,1234567,,,50023775,,, +9575,J,zh,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,FE,1530-1600,1234567,,,50022951,,, +9580,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jeddah (mkh),21.383333,39.416667,,100,,4435,128,81,ME,0300-0600,1234567,,,50023776,,, +9580,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jeddah (mkh),21.383333,39.416667,,100,,4435,128,81,ME,1700-2200,1234567,,,50023776,,, +9580,UZB,en,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0140-0200,123456,,,50021691,,, +9580,UZB,en,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0140-0200,1234567,,,50021691,,, +9580,UZB,hi,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0040-0100,1234567,,,50021691,,, +9580,UZB,ml,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0120-0140,1234567,,,50021691,,, +9580,UZB,ta,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,131,4779,79,85,,0100-0120,1234567,,,50021691,,, +9580,UZB,ur,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,163,4779,79,85,,0025-0040,1..4...,,,50021691,,, +9580,IRN,ps,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,SAs,1220-1320,1234567,,,50022953,,, +9580,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0200-0700,1234567,,,40000939,,, +9580,CHN,bo,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0800-0957,1.34567,,,40000939,,, +9580,CHN,en,Xizang RGD,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,290,7116,74,111,,0700-0800,1.34567,,,40000939,,, +9580,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,10,7939,284,112,ENA,0100-0200,1234567,,,50005391,,, +9580,CUB,zh,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,10,7939,284,112,ENA,0200-0300,1234567,,,50005391,,, +9580,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,SAm,0200-0300,1234567,,,50005394,,, +9580,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,J,0100-0200,1234567,,,50005394,,, +9580,SNG,en,R Australia,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1600-1630,1234567,,,50022952,,, +9580,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,1000-1500,1234567,,,50016127,,, +9580,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,1700-2100,1234567,,,50016127,,, +9580,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,80,16373,78,148,SOc,0800-1000,1234567,,,50016127,,, +9581,PHL,tl,DZFM-AM Radyo Ng Bayan,,Marulas (ncr),14.679167,120.976667,,0.5,,10307,62,151,,0000-0930,1234567,,,33300008,,, +9585,D,ru,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,1700-1800,1234567,,,50022957,,, +9585,CHN,hu,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,Eu,2030-2100,1234567,,,50005397,,, +9585,CHN,sr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,Eu,2000-2030,1234567,,,50005397,,, +9585,IRN,ja,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,J,1320-1420,1234567,,,50022955,,, +9585,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023777,,, +9585,SWZ,fr,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,64,9062,157,124,,1455-1525,.....6.,,,50012497,,, +9585,SWZ,fr,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,64,9062,157,124,MDG,1455-1525,.....67,,,50012497,,, +9585,SWZ,mg,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,64,9062,157,124,,1455-1525,12345.7,,,50012497,,, +9585,SWZ,mg,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,64,9062,157,124,MDG,1455-1525,12345..,,,50012497,,, +9585,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2300-2400,1234567,,,50022956,,, +9585,B,pt,ZYE969 Super Rdio Deus Amor,,So Paulo/Rua Hilia Amaznica (SP),-23.606389,-46.538333,,10,,9861,227,137,,0000-2400,1234567,,,36902755,,, +9590,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1800-1900,1234567,,,50022960,,, +9590,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1800-2000,1234567,,,50022960,,, +9590,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,170,1547,213,47,WAf,1900-2000,.....6.,,,50018405,,, +9590,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,140,1609,135,51,ME,0500-0700,1234567,,,50005408,,, +9590,IRN,bs,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,2120-2220,1234567,,,50022959,,, +9590,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAm,0100-0300,1234567,,,50005410,,, +9590,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SAm,2300-0100,1234567,,,50005410,,, +9590,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,1500-1600,1234567,,,50005410,,, +9590,CHN,ru,China R Int.,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,,7767,53,115,EEu,1200-1300,1234567,,,50022958,,, +9590,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1100-1200,1234567,,,50005409,,, +9590,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0130-0230,1234567,,,22100050,,, +9590,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0430-0630,1234567,,,22100050,,, +9590,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0630-0730,1234567,,,22100050,,, +9590,MYA,,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0730-0830,1234567,,,22100050,,, +9590,MYA,po,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0230-0330,1234567,,,22100050,,, +9590,MYA,sh,Rakhine Broadcasting Station,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0830-0930,1234567,,,22100050,,, +9595,IND,ru,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,ND,6235,85,95,,1615-1715,1234567,,,50016132,,, +9595,IND,ur,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,334,6235,85,95,PAK,0015-0430,1234567,,,50016132,,, +9595,IND,ur,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,250,334,6248,85,96,,0015-0430,1234567,,,50016131,,, +9595,IND,en,AIR Home News,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,,1135-1140,1234567,,,50010984,,, +9595,IND,hi,AIR Home News,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,,1130-1135,1234567,,,50010984,,, +9595,IND,ne,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,NPL,0700-0800,1234567,,,50016131,,, +9595,IND,pa,AIR Home News,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,,0810-0820,1234567,,,50010984,,, +9595,IND,ur,AIR Home News,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,,0820-0830,1234567,,,50010984,,, +9595,IND,ur,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,342,6248,85,100,PAK,0830-1130,1234567,,,50016131,,, +9595,RRW,ti,FEBA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,EAf,1730-1800,1234567,,,50023778,,, +9595,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,,1900-2300,12345..,,,50018409,,, +9595,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,2100-2200,12345..,,,50018409,,, +9595,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,ENA,2300-2400,.....6.,,,50018409,,, +9595,IND,ru,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,325,7561,97,106,EEu,1615-1715,1234567,,,50016619,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,1200-1230,123456,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,1230-1330,12345..,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,1330-1345,.23.5..,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,1345-1400,...45..,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,2155-2225,....56.,,,40000942,,, +9595,J,ja,NSB R Nikkei,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,64,9294,36,128,,2225-1200,1234567,,,40000942,,, +9600,ROU,en,R Romania Int.,D,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,1,,1587,104,73,WEu,0630-0700,1234567,,,50022964,,, +9600,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,2000-2200,1234567,,,50005426,,, +9600,CHN,fa,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,ME,1500-1530,1234567,,,50005426,,, +9600,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0300-0800,1234567,,,40001017,,, +9600,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0800-1100,1.3.567,,,40001017,,, +9600,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1100-1157,1234567,,,40001017,,, +9600,CHN,bn,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,150,255,7712,60,112,SAs,1300-1400,1234567,,,50010351,,, +9600,CUB,es,R Rebelde,,Bauta/Corralillo (ch),22.951111,-82.546111,,100,,7945,284,117,,1100-1400,1234567,,,40000945,,, +9600,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,163,8246,70,118,SEA,1200-1300,1234567,,,50005425,,, +9600,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,AFG,1600-1700,1234567,,,50022962,,, +9600,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1400-1500,1234567,,,50022963,,, +9600,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,0100-0200,1234567,,,50022963,,, +9600,PHL,vi,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,SEA,2315-2400,1234567,,,50005428,,, +9600,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,FE,2200-2230,1234567,,,50005428,,, +9600,MEX,es,XEYU-OC R UNAM,,Mxico D.F/Ticomn (dif),19.510833,-99.113889,,1,,9314,294,145,,0000-2400,1234567,,,34900003,,, +9605,E,en,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,168,1547,213,47,WAf,1900-2000,12345..,,,50018414,,, +9605,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,110,1547,213,47,ME,2000-2100,12345..,,,50018414,,, +9605,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,167,7046,290,104,260,0100-0200,1......,,,50014372,,, +9605,USA,es,KBS World R,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,167,7046,290,104,SAm,0100-0200,1234567,,,50020636,,, +9605,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023779,,, +9605,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1800-2000,1234567,,,50022966,,, +9605,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,304,11578,41,128,,1500-1600,1234567,,,50020637,,, +9605,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1400-1500,1234567,,,50022967,,, +9610,D,it,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,180,445,80,42,Eu,1000-1100,......7,,,50018422,,, +9610,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,500,290,2469,114,55,As,2130-2230,1234567,,,50008424,,, +9610,TUR,it,Voice of Turkey,,Emirler,39.401389,32.855833,,500,290,2469,114,55,,1400-1430,1234567,,,50008424,,, +9610,IRN,ku,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,0420-0520,1234567,,,50022969,,, +9610,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0200-0300,1234567,,,50022968,,, +9610,CHN,hr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1700-1800,1234567,,,50022968,,, +9610,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1400-1500,1234567,,,50022968,,, +9610,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,286,7773,50,115,,0400-0500,1234567,,,40000948,,, +9610,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,286,7773,50,115,,0300-0400,1234567,,,40000948,,, +9610,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1500-1600,1234567,,,50005441,,, +9610,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,0000-0100,1234567,,,50005441,,, +9610,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,0100-0200,1234567,,,50005441,,, +9615,CHN,de,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,WEu,1800-2000,1234567,,,50022970,,, +9615,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,59,7046,290,104,,0515-0530,.....6.,,,50018426,,, +9615,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,59,7046,290,104,,0600-0700,.....67,,,50018426,,, +9615,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,85,7046,290,104,,0500-0600,.....67,,,50018426,,, +9615,ALS,en,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1000-1100,1234567,,,50018423,,, +9615,ALS,en,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1200-1300,1234567,,,50018423,,, +9615,ALS,zh,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1100-1200,1234567,,,50018423,,, +9615,ALS,zh,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1400-1500,1234567,,,50018423,,, +9615,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,286,7773,50,115,,1200-1300,1234567,,,36201076,,, +9615,B,pt,ZYE959 Rdio Cultura Brasil,,So Paulo (SP),-23.512461,-46.562467,,7.5,20,9853,227,138,,0800-0300,1234567,,,36902741,,, +9620,D,ja,NHK R Japan,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0200-0400,1234567,,,50022972,,, +9620,G,fr,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,CAf,2100-2130,12345..,,,50023780,,, +9620,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,SAm,2300-0500,1234567,,,50009767,,, +9620,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,J,2300-2400,1234567,,,50022973,,, +9620,TUR,fr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,EAf,1830-1930,1234567,,,50022974,,, +9620,IRN,bn,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1420-1520,1234567,,,50022971,,, +9620,CHN,ha,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,NIG,1630-1730,1234567,,,50005456,,, +9620,CHN,ps,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,AFG,1500-1600,1234567,,,50005456,,, +9620,STP,bm,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,2130-2200,12345..,,,50022975,,, +9620,IND,ar,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,1730-1945,1234567,,,50008433,,, +9620,IND,bal,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,PAK,1500-1600,1234567,,,50008433,,, +9620,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,1615-1730,1234567,,,50008433,,, +9620,IND,fr,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,WAf,1945-2030,1234567,,,50008433,,, +9620,IND,sd,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,PAK,1230-1500,1234567,,,50008433,,, +9620,IND,sd,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,PAK,0100-0200,1234567,,,50008433,,, +9620,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,162,7773,50,113,,0900-1605,1234567,,,40000893,,, +9620,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,162,7773,50,113,,2155-0105,1234567,,,40000893,,, +9620,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,0105-0600,1234567,,,40000951,,, +9620,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,,7773,50,113,,0600-0900,12.4567,,,40000951,,, +9625,RUS,de,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,0900-1200,1234567,,,50022976,,, +9625,RUS,en,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,0800-1400,1234567,,,50022976,,, +9625,RUS,ru,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,0800-0900,1234567,,,50022976,,, +9625,RUS,ru,Voice of Russia,D,Bolshakovo (SW) (KA),54.921667,21.712222,,1,,1056,67,68,Eu,1200-1400,1234567,,,50022976,,, +9625,J,en,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,175,9208,36,120,Oc,1000-1030,1234567,,,50005463,,, +9625,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,175,9208,36,120,Oc,2000-2100,1234567,,,50005463,,, +9625,TWN,vi,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,300,250,9489,58,121,SEA,1400-1500,1234567,,,50013340,,, +9625,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,0700-1200,12345..,,,50005462,,, +9625,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,1500-1600,12345..,,,50005462,,, +9625,AFS,loz,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,1300-1400,12345..,,,50005462,,, +9625,AFS,ny,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,1200-1300,12345..,,,50005462,,, +9625,AFS,pt,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,5,9003,160,124,SAf,1400-1500,12345..,,,50005462,,, +9625,PLW,id,NHK R Japan,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,SEA,1115-1200,1234567,,,50020644,,, +9630,AUT,ha,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,NIG,0500-0530,1234567,,,50022977,,, +9630,CHN,zh,CNR 1,,Golmud/SARFT916 (QH),36.431389,94.9975,,100,236,6812,67,105,,0900-1200,1234567,,,40000954,,, +9630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1400-1700,1234567,,,36200378,,, +9630,CHN,mn,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1300-1400,1234567,,,36200378,,, +9630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0100-0600,1234567,,,36200378,,, +9630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0600-0900,12.4567,,,36200378,,, +9630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0900-1300,1234567,,,36200378,,, +9630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1700-1705,1234567,,,36200378,,, +9630,B,pt,ZYE954 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,10,60,9721,226,136,,0700-0200,1234567,817,,40000955,,, +9635,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,CAf,1930-1945,1234567,,,50022978,,, +9635,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EAf,1800-1930,1234567,,,50022978,,, +9635,MLI,bm,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,0800-1700,1234567,,,5700001,,, +9635,MLI,bm,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,1710-1800,1234567,,,5700001,,, +9635,MLI,fr,ORTM R Mali,,Bamako/Kati (bam),12.743611,-8.053056,,50,,4565,202,86,,1700-1710,1234567,,,5700001,,, +9635,IND,sd,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,312,6367,85,97,PAK,0100-0200,1234567,,,50016628,,, +9635,IND,sd,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,320,7561,97,106,,0100-0200,1234567,,,50014831,,, +9635,VTN,vi,VOV1,,Sơn Ty (hno),21.2,105.366667,,100,145,8749,70,123,,2145-1600,1234567,8,,50013582,,, +9635,VTN,vi,VOV1,,Sơn Ty (hno),21.2,105.366667,,100,145,8749,70,123,Oc,2145-1700,1234567,8,,50013582,,, +9635,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,325,9364,56,125,FE,2200-2300,1234567,,,50009769,,, +9640,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,SEu,2100-2300,1234567,,,50005481,,, +9640,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,0400-0500,1234.67,,,50018435,,, +9640,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,230,7939,284,116,,2300-2400,12345..,,,50018433,,, +9640,KOR,vi,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,225,8663,46,119,SEA,1500-1600,1234567,,,50005483,,, +9640,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,1400-1500,1234567,,,50005483,,, +9640,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,1600-1700,1234567,,,50005483,,, +9640,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,1300-1400,.....67,,,50022979,,, +9645,D,ar,VoA Darfur,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1800-1830,1234567,,,50022981,,, +9645,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,326,1205,156,45,,0950-1030,......7,,,50005490,,, +9645,CVA,Ang,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,114,1205,156,45,SEu,1100-1130,......7,,,50005490,,, +9645,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,114,1205,156,45,CEu,0745-0805,123456,,,50005490,,, +9645,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,114,1205,156,45,ME,0500-0530,1234567,,,50005490,,, +9645,CVA,ro,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,114,1205,156,45,EEu,0710-0830,......7,,,50005490,,, +9645,UAE,ug,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,0100-0200,1234567,,,50022982,,, +9645,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1200-1300,1234567,,,50005487,,, +9645,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1100-1200,1234567,,,50005487,,, +9645,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0200,1234567,,,50023781,,, +9645,CHN,fr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,WAf,1830-2030,1234567,,,50005488,,, +9645,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1400-1700,1234567,,,36200379,,, +9645,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1300-1400,1234567,,,36200379,,, +9645,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0100-0600,1234567,,,40000957,,, +9645,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,0600-0830,1.34567,,,40000957,,, +9645,THA,bo,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0000-0100,1234567,,,50022983,,, +9645,PHL,kac,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,2330-2400,1234567,,,50005491,,, +9645,PHL,kac,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,2330-2357,1234567,,,50005491,,, +9645,B,pt,ZYE957 Rdio Bandeirantes,,So Paulo/Jardim Santa Emilia (SP),-23.645956,-46.601278,,7.5,30,9868,227,138,,0000-2400,1234567,37,,40000958,,, +9650,ROU,es,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,CAm,0300-0400,1234567,,,50022986,,, +9650,ROU,fr,R Romania Int.,d,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,0600-0630,1234567,,,50022986,,, +9650,TUR,es,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,CAm,0200-0300,1234567,,,50022987,,, +9650,KRE,ja,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,109,8231,44,116,J,0700-1300,1234567,,,50016137,,, +9650,KRE,ja,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,109,8231,44,116,J,2100-2400,1234567,,,50016137,,, +9650,CHN,en,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,1500-1600,1234567,,,50022984,,, +9650,AFS,af,SABC R Sonder Grense,,Meyerton (SABC) (GT),-26.600933,28.140833,,100,275,9005,160,124,,0800-1700,1234567,,,40000959,,, +9650,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1630-1700,1234567,,,50022985,,, +9650,GUM,ru,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,Sib,1330-1400,1234567,,,50022988,,, +9655,D,ku,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,ME,1700-1800,1234567,,,50022993,,, +9655,ROU,ar,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,280,1587,104,48,ME,1500-1600,1234567,,,50005504,,, +9655,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,280,1587,104,48,SEu,1600-1700,1234567,,,50005504,,, +9655,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,500,72,2469,114,55,Eu,0400-0500,1234567,,,50007953,,, +9655,EGY,it,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,315,3170,130,65,,1800-1900,1234567,,,50019539,,, +9655,EGY,it,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,Eu,1800-1900,1234567,,,50022990,,, +9655,IRN,sq,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,2020-2120,1234567,,,50022992,,, +9655,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1300-1400,1234567,,,50022989,,, +9655,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1200-1300,1234567,,,50022989,,, +9655,OMA,hi,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,SAs,1600-1630,1234567,,,50022991,,, +9655,ALS,en,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,,7424,348,111,FE,1500-1600,1234567,,,50023782,,, +9655,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,,7424,348,111,FE,0800-0900,1234567,,,50023782,,, +9655,ALS,zh,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,,7424,348,111,FE,0900-1000,1234567,,,50023782,,, +9655,CHN,tr,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,300,8246,70,113,ME,1900-2000,1234567,,,50005500,,, +9655,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,200,8246,70,113,,0600-0800,1234567,,,50005500,,, +9655,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,2355-0100,1234567,,,40000961,,, +9655,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,0200-0300,1234567,,,50005500,,, +9655,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1400-1500,1234567,,,50005500,,, +9660,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1400,1234567,,,50023783,,, +9660,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-0300,1234567,,,50023783,,, +9660,MDG,en,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0300-0330,1234567,,,50022994,,, +9660,MDG,sw,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0330-0345,......7,,,50022994,,, +9660,MDG,sw,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0330-0400,123456,,,50022994,,, +9660,TWN,th,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,1400-1600,1234567,,,50022309,,, +9660,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,267,9444,57,125,FE,1000-1400,1234567,,,50001852,,, +9660,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,267,9444,57,125,FE,2300-0300,1234567,,,50001852,,, +9660,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,,2100-0800,1234567,,,50017379,,, +9660,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,0000-0800,1234567,,,50017379,,, +9660,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,10,10,15065,58,154,WOc,2100-2400,1234567,,,50017379,,, +9665,E,en,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,50,1547,213,49,Eu,1900-2000,12345..,,,50009777,,, +9665,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,50,1547,213,49,Eu,1800-1900,12345..,,,50009777,,, +9665,TUR,ar,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,1500-1600,1234567,,,50022997,,, +9665,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023784,,, +9665,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2155-0005,1234567,,,36201068,,, +9665,KRE,ko,KCBS Chosun Jungang Pangsong,,Kanggye (cha),40.966667,126.583333,,50,ND,8171,43,122,,2000-1800,1234567,,,50016141,,, +9665,CHN,si,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,CLN,1400-1500,1234567,,,50022995,,, +9665,AFS,sw,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0430-0500,1234567,,,50022996,,, +9665,B,pt,ZYE890 Voz Missionria,,Florianpolis/Rua Ângelo La Porta (SC),-27.587692,-48.539111,,10,30,10345,227,138,,1100-0600,1234567,75,,40000965,,, +9670,D,bo,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1400-1500,1234567,,,50023001,,, +9670,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0300,1234567,,,50023785,,, +9670,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023785,,, +9670,CHN,ha,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,NIG,1630-1730,1234567,,,50022998,,, +9670,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,1900-2200,1234567,,,50023000,,, +9670,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,2330-2400,1234567,,,50005528,,, +9670,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,2300-2357,1234567,,,50005528,,, +9675,CVA,so,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,0330-0400,1234567,,,50023002,,, +9675,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,ND,4552,116,76,,0300-1500,1234567,,,50017088,,, +9675,ARS,tr,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,ME,1800-2100,1234567,,,50023786,,, +9675,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0600-0900,1.34567,,,40000968,,, +9675,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0900-1000,1234567,,,40000968,,, +9675,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,2300-0600,1234567,,,40000968,,, +9675,CHN,lo,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1430-1530,1234567,,,50005533,,, +9675,B,pt,ZYE971 Rdio Cano Nova,,Cachoeira Paulista/Santa Cruz (SP),-22.644656,-45.076983,,10,20,9695,226,136,,0000-2400,1234567,882,,40000970,,, +9675,PRU,es,OAZ4X Pacfico R,,Lima/El Agustino (lim),-12.038833,-76.98175,,5,,10617,257,142,,0000-2400,1234567,80,,37000049,,, +9677,AZE,az,Ictimai R,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,0800-1200,1234567,6,,50022310,,, +9677,AZE,az,Ictimai R,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,1300-1600,1234567,6,,50022310,,, +9677,AZE,az,Voice of Justice,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,0600-0634,..3..6.,6,,50020003,,, +9677,AZE,az,Voice of Justice,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,1400-1434,.2..5..,6,,50020003,,, +9677,AZE,az,Voice of Talyshistan,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,0900-1000,1234567,6,,50020668,,, +9677,AZE,az,Voice of Talyshistan,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,1200-1300,1234567,6,,50020668,,, +9677,AZE,az,Voice of Talyshistan,,Stepanakert (xan),39.8,46.75,,100,,3351,98,71,Cau,1500-1600,1234567,6,,50020668,,, +9680,CVA,fr,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Af,2100-2130,12345..,,,50023004,,, +9680,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,,0900-1000,1234567,,,50018460,,, +9680,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,,1100-1200,1234567,,,50018460,,, +9680,ALS,ru,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,,1500-1600,1234567,,,50018460,,, +9680,ALS,zh,KNLS New Life Station,,Anchor Point (AK),59.747778,-151.733333,,100,300,7424,348,111,FE,1300-1400,1234567,,,50018460,,, +9680,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1700,1234567,,,50023787,,, +9680,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,,9375,56,120,FE,1100-1700,1234567,,,50005542,,, +9680,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,352,9375,56,120,,1100-1700,....56.,,,50005542,,, +9680,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,300,352,9375,56,120,,1100-1705,1234..7,,,50005542,,, +9680,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1200-1400,1234567,,,50023003,,, +9680,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1400-1600,1234567,,,50023003,,, +9680,INS,en,RRI Pro-4,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,75,11281,86,127,,0800-0820,..3.5..,6,,40000972,,, +9680,INS,id,RRI Pro-4,,Depok/Cimanggis (JB-kde),-6.393889,106.861389,,250,75,11281,86,127,,2200-1500,1234567,6,,40000972,,, +9685,D,en,PanAmerican Broadcasting,,Nauen (brb),52.647778,12.908611,,250,155,445,80,38,NAf,1930-2000,......7,,,50018465,,, +9685,EGY,ru,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,5,3024,131,63,EEu,1900-2000,1234567,,,50020671,,, +9685,CHN,pt,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,SAm,2200-2300,1234567,,,50005550,,, +9685,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,EEu,1200-1300,1234567,,,50005551,,, +9685,CHN,VN,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,1300-1400,1234567,,,50005552,,, +9685,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023788,,, +9685,CHN,ha,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,NIG,1730-1830,1234567,,,50005549,,, +9685,CHN,vi,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,100,,7712,60,114,SEA,1400-1500,1234567,,,50023005,,, +9685,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0055-0615,1234567,,,36201069,,, +9685,TWN,zh,R Taiwan Int.,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,300,9375,56,125,FE,2300-2400,1234567,,,50005556,,, +9690,D,ku,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,ME,0500-0600,1234567,,,50023009,,, +9690,AUT,ha,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,90,849,119,41,NIG,1900-1930,1234567,,,50020674,,, +9690,E,en,China R Int.,,Noblejas (CAM-TO),39.9575,-3.430556,,350,290,1547,213,47,CAm,0300-0400,1234567,,,50005561,,, +9690,E,zh,China R Int.,,Noblejas (CAM-TO),39.9575,-3.430556,,350,290,1547,213,47,CAm,0200-0300,1234567,,,50005561,,, +9690,E,SEF,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,290,1547,213,49,NAm,0415-0445,.2.....,,,50009782,,, +9690,LTU,bo,R Free Asia,,Kaunas/Sitkūnai (Kau),55.043611,23.807778,,100,,1191,67,49,FE,1000-1100,1234567,,,50023007,,, +9690,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,37,1660,112,49,SEu,1700-1800,1234567,,,50005569,,, +9690,RUS,,GTRK Tatarstan-Na Volne Tatarstana,,Samara/Zhygulevsk (SA),53.274167,50.230278,,250,58,2910,70,62,,0610-0700,1234567,,,50021694,,, +9690,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,0900-1500,1234567,,,50016147,,, +9690,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,WAf,2000-2030,1234567,,,50016147,,, +9690,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,WAf,2000-2100,1234567,,,50016147,,, +9690,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,WAf,2030-2130,1234567,,,50016147,,, +9690,NIG,ha,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,0800-0900,1234567,,,50016147,,, +9690,NIG,ig,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,1700-1730,1234567,,,50016147,,, +9690,NIG,sw,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,1600-1630,1234567,,,50016147,,, +9690,NIG,yo,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,248,5068,184,84,WAf,1630-1700,1234567,,,50016147,,, +9690,UAE,ug,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,0100-0200,1234567,,,50023008,,, +9690,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,1330-1500,1234567,,,50016146,,, +9690,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,58,7561,97,106,SEA,2245-0045,1234567,,,50016146,,, +9690,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023789,,, +9690,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50023789,,, +9690,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,CAm,2200-0200,1234567,,,50023790,,, +9690,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,WNA,1100-1500,1234567,,,50023790,,, +9690,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1100-1200,1234567,,,36201077,,, +9690,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1500-1600,1234567,,,50005560,,, +9690,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,0200-0300,1234567,,,50014853,,, +9690,KOR,vi,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,0100-0200,1234567,,,50014853,,, +9690,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,304,11578,41,128,,1800-1900,1234567,,,50020675,,, +9695,UZB,ru,R Vaticana,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,Sib,1330-1400,1234567,,,50023013,,, +9695,UAE,ur,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,0300-0330,1234567,,,50023015,,, +9695,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,IRN,0330-0430,1234567,,,50023014,,, +9695,CHN,bg,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,310,8886,55,116,SEE,1830-1900,1234567,,,50005575,,, +9695,CHN,ja,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,,8886,55,116,FE,2300-2400,1234567,,,50005575,,, +9695,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,ME,1730-1830,1234567,,,50023012,,, +9695,PHL,lo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,SEA,1230-1300,1234567,,,50020681,,, +9695,B,pt,ZYE245 Rdio Rio Mar,,Manaus (AM),-3.121725,-60.04205,,7.5,70,8712,249,134,,0800-2315,1234567,37,,40000976,,, +9700,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,Eu,1900-2200,9999999,,,50022311,,, +9700,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,CEu,0500-0700,1234567,,,50023018,,, +9700,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,0500-0900,1234567,,,50023017,,, +9700,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,2200-0100,1234567,,,50023017,,, +9700,J,ko,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,FE,0915-0945,1234567,,,50023017,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,0500-0600,123456,4,,50005591,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,0600-0700,1234567,4,,50005591,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,0700-1800,9999999,4,,50005591,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,1800-2200,1234567,4,,50005591,,, +9705,NGR,fr,ORTN La Voix du Sahel,,Niamey/Goudel (nmy),13.538333,2.058889,,40,65,4307,187,84,CAf,2200-2300,123456,4,,50005591,,, +9705,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1500-1600,1234567,,,50023020,,, +9705,ETH,am,ERTA Ethiopia National R,,Geja Dera (aab),8.761111,38.6625,,100,,5636,137,93,EAf,0300-2100,1234567,,,50005588,,, +9705,ETH,en,ERTA Ethiopia National R,,Geja Dera (aab),8.761111,38.6625,,100,,5636,137,93,EAf,1200-1300,12345..,,,50005588,,, +9705,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,0330-0530,1234567,0,,36200213,,, +9705,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1030-1100,1.3.567,0,,36200213,,, +9705,CHN,ky,Xinjiang RGD Kirghiz,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,,5761,65,98,,1100-1230,1234567,0,,36200213,,, +9705,IND,en,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,2245-0045,1234567,,,50016150,,, +9705,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1400-1500,1234567,,,50023021,,, +9710,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,NAm,0320-0420,1234567,,,50023022,,, +9710,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,294,5347,76,84,SAm,0100-0300,1234567,,,50005594,,, +9710,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,315,7939,284,112,Car,2100-2300,1234567,,,50016152,,, +9710,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,1100-1805,1234567,,,40000981,,, +9710,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,2025-2330,1234567,,,40000981,,, +9710,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,1800-2000,1234567,,,50016151,,, +9710,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,0700-0900,1234567,,,50016151,,, +9710,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,1000-1100,.....67,,,50016151,,, +9710,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,0900-1000,1234567,,,50016151,,, +9710,AUS,tpi,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,353,16373,78,148,WOc,1000-1100,12345..,,,50016151,,, +9715,AUT,en,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,1800-1815,....5..,,,50023023,,, +9715,AUT,en,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,1800-1830,...4...,,,50023023,,, +9715,AUT,en,Bible Voice,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,ME,1800-2000,.....67,,,50023023,,, +9715,CVA,uz,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,CAs,1500-1530,1234567,,,50023025,,, +9715,IRN,ur,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,295,4724,102,77,SAs,1250-1420,1234567,,,50019685,,, +9715,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,ND,4552,116,83,ME,0300-1000,1234567,,,50017632,,, +9715,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,267,11578,41,128,,1400-1500,1234567,,,50020688,,, +9720,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,NAm,0200-0330,1234567,,,50022312,,, +9720,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,NAm,0045-0200,1234567,,,50022312,,, +9720,CHN,bg,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,SEE,2030-2100,1234567,,,50005602,,, +9720,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1500-1600,1234567,,,50005602,,, +9720,CHN,zh,CNR 2,,Baoji (SA),34.65,106.966667,,150,,7688,60,112,,0000-0600,1234567,,,40000984,,, +9720,CHN,zh,CNR 2,,Baoji (SA),34.65,106.966667,,150,,7688,60,112,,0600-0900,12.4567,,,40000984,,, +9720,CHN,zh,CNR 2,,Baoji (SA),34.65,106.966667,,150,,7688,60,112,,0900-1000,1234567,,,40000984,,, +9720,CHN,tl,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,PHL,1200-1230,1234567,,,50023026,,, +9720,CLN,hi,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,350,8200,97,119,SAs,1115-1130,1234567,,,50016162,,, +9720,CLN,hi,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,350,8200,97,119,SAs,1145-1200,1234567,,,50016162,,, +9720,CLN,ko,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,FE,1700-1900,1234567,,,50023027,,, +9720,CLN,ml,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,350,8200,97,119,SAs,1130-1145,1234567,,,50016162,,, +9720,CLN,ta,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,350,8200,97,119,SAs,1200-1215,1234567,,,50016162,,, +9720,PHL,my,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,2330-2400,1234567,2,,50005605,,, +9720,PHL,my,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,2330-2357,1234567,2,,50005605,,, +9720,PHL,tl,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,350,10171,62,124,280,2300-2330,1234567,2,,50005605,,, +9720,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,345,11707,42,133,CHN,2100-2200,1234567,,,50005607,,, +9720.9,PRU,es,OCX4C R Victoria,,Lima (lim),-12.047222,-77.088889,,1,,10625,257,149,,2145-1200,1234567,-9720.9,,40000985,,, +9725,ROU,zh,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,FE,1400-1430,1234567,,,50023028,,, +9725,UAE,ug,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,1600-1700,1234567,,,50023029,,, +9725,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023791,,, +9725,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0200-0230,1234567,,,50023792,,, +9725,TWN,zh,Xing-Xing Guangbo Diantai,,unknown (Xing-Xing GD),24,121,,100,,9449,57,125,CHN,0300-0330,1234567,,,50023792,,, +9730,F,es,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAm,0200-0300,1234567,,,50023793,,, +9730,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0300-0700,1234567,3,,8400002,,, +9730,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,0930-1100,1234567,3,,8400002,,, +9730,ERI,,Dimtsi Hafash 2,,Asmara/Sela'i Da'iro (SW) (mae),15.216944,38.875556,,100,,5003,133,87,,1400-1800,1234567,3,,8400002,,, +9730,CHN,pt,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,1900-2000,1234567,,,50005616,,, +9730,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1500-1600,1234567,,,50005616,,, +9730,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,173,5347,76,91,SAs,1400-1500,1234567,,,50005616,,, +9730,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,1300-1400,1234567,,,50005614,,, +9730,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,2155-0105,1234567,,,36201275,,, +9730,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0400-0500,1234567,,,50016155,,, +9730,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0600-0700,1234567,,,50016155,,, +9730,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,ND,8231,44,116,FE,0500-0600,1234567,,,50016155,,, +9730,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1200-1300,1234567,,,50005615,,, +9730,MYA,en,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0230-0330,1234567,,,22100008,,, +9730,MYA,en,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0700-0730,1234567,,,22100008,,, +9730,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0130-0230,1234567,,,22100008,,, +9730,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0330-0700,1234567,,,22100008,,, +9730,MYA,my,Myanmar R,,Naypyidaw=Nay Pyi Taw (SW) (mdy),20.180847,96.144733,,50,,8233,77,122,,0730-1000,1234567,,,22100008,,, +9730,VTN,VN,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1700-1800,1234567,,,50005621,,, +9730,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1600-1630,1234567,,,50005621,,, +9730,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1800-1830,1234567,,,50005621,,, +9730,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1900-1930,1234567,,,50005621,,, +9730,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2030-2100,1234567,,,50005621,,, +9730,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1830-1900,1234567,,,50005621,,, +9730,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1930-2000,1234567,,,50005621,,, +9730,VTN,fr,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2100-2130,1234567,,,50005621,,, +9730,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,1630-1700,1234567,,,50005621,,, +9730,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,320,8749,70,123,Eu,2000-2030,1234567,,,50005621,,, +9730,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0000-0030,1234567,,,50021695,,, +9730,MYA,my,Myanmar R-Educational,,Yangon/Yay Kuu (ygn),16.863194,96.161778,,50,356,8519,80,125,,0730-1000,1234567,84,,40000988,,, +9735,TWN,id,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,,9489,58,121,INS,1400-1500,1234567,,,50013345,,, +9735,TWN,ja,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,45,9489,58,121,J,1100-1200,1234567,,,50013345,,, +9735,TWN,ja,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,45,9489,58,121,J,1300-1400,1234567,,,50013345,,, +9735,TWN,id,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,INS,1200-1300,1234567,,,50021697,,, +9735,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,INS,1000-1030,1234567,,,50021697,,, +9735,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,INS,1030-1100,1234567,,,50021697,,, +9740,IRN,bn,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1620-1650,1234567,,,50023031,,, +9740,IRN,fa,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0250-0620,1234567,,,50023031,,, +9740,IRN,kk,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,1520-1620,1234567,,,50023032,,, +9740,KOR,es,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,Eu,1800-1900,1234567,,,50016455,,, +9740,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,290,8663,46,119,ME,1600-1800,1234567,,,50016455,,, +9740,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,0900-1200,1234567,,,50023033,,, +9740,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,1200-1400,1234567,,,50023033,,, +9740,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,130,13,10381,83,127,INS,0000-0200,1234567,,,50009792,,, +9740,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,130,13,10381,83,127,SEA,1100-1500,1234567,,,50009792,,, +9745,EGY,tr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,ME,1700-1900,1234567,,,50023034,,, +9745,BHR,ar,R Bahrain,,Abu Hayan (ajn),26.029444,50.616667,,100,,4682,111,84,ME,0000-2400,1234567,,,50007782,,, +9745,CHN,eo,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,1930-2030,1234567,,,50005630,,, +9745,TWN,zh,Han Sheng GD Kuanghua zhi Sheng,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,250,300,9359,56,121,FE,0745-0005,1234567,,,50001982,,, +9750,ARM,es,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,258,3205,98,62,SAm,0000-0400,1234567,,,50019309,,, +9750,ARM,pt,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,258,3205,98,62,SAm,2200-2400,1234567,,,50019309,,, +9750,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,300,286,4236,111,75,NAf,1100-1600,1234567,,,50016161,,, +9750,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0300-0400,1234567,,,40000993,,, +9750,CHN,mn,CNR 8,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,1400-1500,1234567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0400-0600,1234567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0600-0950,1.34567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,0950-1400,1234567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,1500-1605,1234567,,,40000993,,, +9750,CHN,mn,Nei Menggu RGD,,Hohhot/NMTS839 (NM),40.716944,111.553333,,50,36,7433,53,114,,2150-0300,1234567,,,40000993,,, +9750,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,0700-1700,1234567,,,50005634,,, +9755,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,ME,1940-2000,1234567,,,50023035,,, +9755,CVA,am,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1800-1900,1234567,,,50023038,,, +9755,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,ME,2140-2200,1234567,,,50023035,,, +9755,CVA,ti,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1900-1930,12345..,,,50023038,,, +9755,IRN,he,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0420-0450,1234567,,,50019688,,, +9755,CHN,en,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1430-1500,1234567,,,40000995,,, +9755,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1000-1430,1234567,,,40000995,,, +9755,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,1500-1605,1234567,,,40000995,,, +9755,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,2100-0200,1234567,,,40000995,,, +9755,BOT,om,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1730-1800,12345..,,,50023037,,, +9755,AFS,pt,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,AGL,1700-1730,1234567,,,50023036,,, +9760,D,tg,R Liberty,,Biblis (hes),49.687222,8.490278,,100,85,306,151,40,,1500-1600,1234567,,,50018495,,, +9760,D,ku,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,0500-0600,1234567,,,50023040,,, +9760,G,en,KBS World R,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,105,622,276,43,WEu,1100-1130,.....6.,,,50005646,,, +9760,G,en,NHK R Japan,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,105,622,276,43,Eu,1100-1130,....5..,,,50010391,,, +9760,G,ru,NHK R Japan,D,Woofferton (EN-SHP),52.313333,-2.722778,,100,105,622,276,43,Eu,1130-1200,....5..,,,50010391,,, +9760,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,Oc,1200-1300,1234567,,,50005643,,, +9760,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1600-1700,1234567,,,50023039,,, +9760,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,230,9294,36,128,,0000-0900,.....67,,,40000997,,, +9760,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,230,9294,36,128,,2300-2400,1234567,,,40000997,,, +9760,J,ja,NSB R Nikkei 2,,Chiba/Nagara (JOZ) (kan-chi),35.465,140.206111,,50,50,9294,36,128,,0000-0800,12345..,,,40000997,,, +9765,D,ha,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,WAf,2030-2100,12345..,,,50023794,,, +9765,ARM,es,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,500,258,3205,98,62,SAm,0400-0500,1234567,,,50018501,,, +9765,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,1300-1500,1234567,,,50005655,,, +9765,CHN,fa,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,IRN,1500-1530,1234567,,,50023042,,, +9765,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,0000-0100,1234567,,,50005654,,, +9765,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,2300-2400,1234567,,,50005654,,, +9765,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,100,,18351,32,155,Oc,0800-1100,1234567,,,50023043,,, +9765,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,100,,18351,32,155,SOc,1551-1850,1234567,,,50023043,,, +9770,D,ps,Voice of America,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,AFG,1630-1730,1234567,,,50023047,,, +9770,F,en,NHK R Japan,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAf,0500-0530,1234567,,,50023044,,, +9770,AUT,dyu,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WAf,2000-2030,1234567,,,50023045,,, +9770,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1900-2000,1234567,,,50005659,,, +9770,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,1530-1630,1234567,,,50023046,,, +9770,KOR,vi,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,1030-1130,1234567,,,50005664,,, +9770,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,225,8663,46,123,SEA,1130-1230,1234567,,,50005664,,, +9774,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,0400-0600,1234567,,,50002027,,, +9774,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,0800-1000,1234567,,,50002027,,, +9774,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,1100-1300,1234567,,,50002027,,, +9774,TWN,zh,Fu Hsing Kuangpo Tientai,,Kuanyin/Han Sheng (TY),25.038889,121.103889,,10,ND,9359,56,135,FE,2300-0100,1234567,,,50002027,,, +9775,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,0330-0430,.....67,,,50023049,,, +9775,CHN,en,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1430-1500,1234567,,,40001000,,, +9775,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0855-1430,1234567,,,40001000,,, +9775,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,1500-1605,1234567,,,40001000,,, +9775,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,2100-0200,1234567,,,40001000,,, +9775,XUU,ko,R Free Chosun,,XUU,,,-,,,?,?,400,,1400-1600,1234567,,,50023795,,, +9780,E,es,RNE R Exterior,D,Noblejas (CAM-TO),39.9575,-3.430556,,350,50,1547,213,47,Eu,0500-0900,1234567,,,50009799,,, +9780,CVA,ar,VoA Darfur,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1900-1930,1234567,,,50023051,,, +9780,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,1800-1900,1234567,,,50023050,,, +9780,YEM,ar,Yemen R,,Sana'a (san),15.381111,44.196667,,100,,5267,127,90,ME,1300-1500,1234567,,,50023797,,, +9780,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023796,,, +9780,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,250,340,8219,99,115,,1800-1900,1234567,,,50021699,,, +9780,TWN,ja,Furusato no Kaze,,Tainan/Annan (TNS),23.044167,120.168611,,100,,9489,58,125,KRE,1600-1630,1234567,,,50019474,,, +9781,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0200-0600,1234567,,,40001003,,, +9781,CHN,zh,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,270,7198,62,112,,0600-0900,1.34567,,,40001003,,, +9785,TUR,kk,Voice of Turkey,,Emirler,39.401389,32.855833,,500,310,2469,114,55,CAs,1430-1500,1234567,,,50007955,,, +9785,CHN,th,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,191,7808,59,113,,1130-1230,1234567,,,50009447,,, +9785,CHN,th,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,191,7808,59,113,,1330-1430,1234567,,,50009447,,, +9785,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,63,7773,50,115,,1000-1100,1234567,,,36201078,,, +9785,CHN,lo,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1230-1330,1234567,,,50005683,,, +9785,CHN,th,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1130-1230,1234567,,,50005683,,, +9785,CHN,th,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,191,8246,70,118,SEA,1330-1430,1234567,,,50005683,,, +9785,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,SAs,1500-1600,1234567,,,50023052,,, +9785,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023053,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,CAf,0500-0600,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,EAf,0400-0500,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,WAf,0700-0800,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,WAf,2000-2100,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,140,660,211,37,WAf,2100-2200,1234567,,,50005691,,, +9790,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,155,660,211,37,CAf,1900-2000,1234567,,,50005691,,, +9790,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,52,1660,112,49,SAm,2200-2300,1234567,,,50019695,,, +9790,RUS,ru,Voice of Russia,,Moskva (one of ku,L,se,t) (MV),55.75,37.3,,100,,2044,66,57,CAs,0200-0400,1234567,,,50023056 +9790,RUS,ru,Voice of Russia,,Moskva (one of ku,L,se,t) (MV),55.75,37.3,,100,,2044,66,57,CAs,1700-1900,1234567,,,50023056 +9790,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023798,,, +9790,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,305,7939,284,112,WNA,0300-0400,1234567,,,50005688,,, +9790,CUB,zh,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,305,7939,284,112,WNA,0400-0500,1234567,,,50005688,,, +9790,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,FE,0030-0100,1234567,,,50020027,,, +9790,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1600-1630,1234567,,,50023055,,, +9790,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1630-1700,......7,,,50023055,,, +9790,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1500-1600,1234567,,,50023057,,, +9795,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,1400-1500,1234567,,,50023058,,, +9795,PHL,MON,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,2300-2330,1234567,,,50005704,,, +9795,PHL,lo,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,2330-2400,1234567,,,50005704,,, +9795,PHL,mkh,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,0000-0015,1234567,,,50005704,,, +9795,PHL,vi,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1100-1200,1234567,,,50005704,,, +9795,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023060,,, +9800,F,ff,LWF Sauti Linjilia,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1830-1900,1234567,,,50023061,,, +9800,IRN,hi,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1420-1520,1234567,,,50020728,,, +9800,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,SAm,2300-0100,1234567,,,50005709,,, +9800,IRN,hi,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,0150-0250,1234567,,,50023063,,, +9800,UAE,sw,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0300-0400,1234567,,,50023062,,, +9800,RRW,am,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1600-1700,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,295,0500-0600,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,0405-0500,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,0500-0530,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,2000-2100,1234567,,,50005711,,, +9800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,2100-2200,1234567,,,50005711,,, +9800,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,1200-1300,1234567,,,50005711,,, +9800,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,Af,1700-1800,1234567,,,50005711,,, +9800,RRW,pt,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,SAf,0530-0600,1234567,,,50005711,,, +9800,RRW,pt,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,SAf,1930-2000,1234567,,,50005711,,, +9800,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,265,6406,152,97,EAf,1500-1600,1234567,,,50005711,,, +9800,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,150,180,6406,152,99,EAf,1000-1100,1234567,,,50005711,,, +9800,PHL,ko,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1200-1500,1234567,,,50023064,,, +9800,PHL,ko,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1900-2100,1234567,,,50023064,,, +9805,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,CAf,0600-0630,1234567,,,50005718,,, +9805,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,EEu,1900-2000,1234567,,,50005718,,, +9805,KOR,id,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,225,8663,46,119,INS,1600-1700,1234567,,,50005719,,, +9805,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,ND,8663,46,119,FE,0900-1100,1234567,,,50005719,,, +9805,KOR,ko,KBS FM 1,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,FE,0500-0630,1234567,,,50020029,,, +9805,KOR,zh,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,225,8663,46,119,INS,2300-2400,1234567,,,50005719,,, +9805,KOR,id,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,100,205,8663,46,123,INS,2200-2300,1234567,,,50005719,,, +9810,ROU,de,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,307,1660,112,49,Eu,1300-1400,1234567,,,50018532,,, +9810,ROU,ru,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,292,1660,112,49,EEu,1600-1700,1234567,,,50018532,,, +9810,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,NAf,0220-0520,1234567,,,50023066,,, +9810,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1400-1500,1234567,,,50023065,,, +9810,IND,ne,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,65,6235,85,95,NPL,0130-0230,1234567,,,50019475,,, +9810,IND,ta,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,1115-1215,1234567,,,50014205,,, +9810,IND,te,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,1215-1245,1234567,,,50014205,,, +9810,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,0100-0600,1234567,,,40001008,,, +9810,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,0600-0900,12.4567,,,40001008,,, +9810,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,135,7747,60,115,,0900-1230,1234567,,,40001008,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0100-0400,1234567,,,50016458,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,0400-0500,1234567,,,50016458,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,2100-2300,1234567,,,50016458,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CAm,2300-0100,1234567,,,50016458,,, +9810,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,340,7939,284,116,CAm,2100-0500,1234567,,,50016458,,, +9810,CLN,kar,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SEA,0030-0100,1234567,,,50023067,,, +9810,CLN,my,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SEA,0000-0030,1234567,,,50023067,,, +9810,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,1300-1805,1234567,,,36201065,,, +9810,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,2025-2300,1234567,,,36201065,,, +9810,SNG,ps,BBC WS,,Kranji (nw),1.423056,103.7325,,250,340,10381,83,124,AFG,1500-1600,1234567,,,50020738,,, +9815,D,ar,VoA Darfur,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1900-1930,1234567,,,50023068,,, +9815,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,2030-2100,......7,,,50023070,,, +9815,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,2100-2130,12345..,,,50023070,,, +9815,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,2030-2100,.....6.,,,50023070,,, +9815,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,EAf,2000-2030,1234567,,,50005735,,, +9815,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023069,,, +9820,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,0500-0700,1234567,,,50023073,,, +9820,ARM,ps,BBC WS,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,AFG,0300-0330,1234567,,,50023071,,, +9820,UAE,am,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1630-1700,...456.,,,50023799,,, +9820,UAE,ti,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1630-1700,123...7,,,50023799,,, +9820,IND,si,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,100,,6235,85,99,CLN,1300-1500,1234567,,,50021986,,, +9820,CHN,en,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,1430-1500,1234567,,,40001012,,, +9820,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,0800-0900,12.4567,,,40001012,,, +9820,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,1100-1430,1234567,,,40001012,,, +9820,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,1500-1605,1234567,,,40001012,,, +9820,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,2100-0100,1234567,,,40001012,,, +9820,CHN,,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2240-2300,1234567,,,40001013,,, +9820,CHN,ct,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1000-1100,1234567,,,40001013,,, +9820,CHN,th,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1100-1130,12345..,,,40001013,,, +9820,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,0000-0100,12345..,,,40001013,,, +9820,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1100-1130,.....67,,,40001013,,, +9820,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1130-1330,1234567,,,40001013,,, +9820,CHN,vi,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2300-2400,1234..7,,,40001013,,, +9820,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,0000-0100,.....67,,,40001013,,, +9820,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,1330-1500,1234567,,,40001013,,, +9820,CHN,zh,Guangxi Beibu Bay R,,Nanning/SARFT954 (GX),22.792222,108.191667,,15,225,8789,67,131,,2300-2400,....56.,,,40001013,,, +9820,B,pt,ZYE952 Rdio Aparecida,,So Paulo (SP),-23.501944,-46.691944,,10,,9858,227,137,,0000-2400,1234567,59,,36902762,,, +9825,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0200-0300,1234567,,,50005741,,, +9825,STP,pt,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,,1700-1800,1234567,,,50021701,,, +9825,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1500,1234567,,,50023800,,, +9825,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023800,,, +9825,PHL,en,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,ME,1730-1930,1234567,,,50023074,,, +9825,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1400-1500,1234567,,,50023077,,, +9825,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2300-2400,1234567,,,50023075,,, +9825,MRA,zh,Voice of America,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1100-1400,1234567,,,50023076,,, +9830,AUT,en,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WAf,2100-2130,1234567,,,50023079,,, +9830,AUT,fa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,IRN,1630-1700,1234567,,,50023079,,, +9830,AUT,fr,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,WAf,2030-2100,1234567,,,50023079,,, +9830,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,ME,0430-0500,.....67,,,50023080,,, +9830,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,ME,0500-0600,1234567,,,50023080,,, +9830,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0730-0900,1.34567,,,40001016,,, +9830,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0900-1805,1234567,,,40001016,,, +9830,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,2025-0200,1234567,,,40001016,,, +9835,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,2200-2300,1234567,,,50023082,,, +9835,D,de,HCJB Global,,Nauen (brb),52.647778,12.908611,,100,240,445,80,42,SAm,2300-2330,1234567,,,50019696,,, +9835,IND,ta,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,174,6248,85,100,CLN,0000-0045,1234567,,,50016173,,, +9835,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2300,1234567,,,50023801,,, +9835,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,85,9208,36,120,SAm,1700-1800,1234567,,,50005758,,, +9835,MLA,ms,RTM Sarawak FM,,Kajang (slg),3.011111,101.784444,,100,93,10109,84,127,,0000-2400,1234567,,,50013506,,, +9840,D,be,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1500-1700,1234567,,,50023084,,, +9840,D,be,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,75,316,151,40,EEu,1700-1800,1234567,,,50020760,,, +9840,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1400-1500,1234567,,,50023084,,, +9840,G,ru,R Liberty,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EEu,1800-1900,1234567,,,50023085,,, +9840,TUR,ka,Voice of Turkey,,Emirler,39.401389,32.855833,,500,310,2469,114,55,Cau,1100-1200,1234567,,,50008563,,, +9840,UAE,ar,KBS World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,NAf,2000-2100,1234567,,,50023083,,, +9840,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,,1300-1400,.....67,,,50016174,,, +9840,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,,1400-2200,1234567,,,50016174,,, +9840,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,ENA,1300-2100,1234567,,,50016174,,, +9840,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,25,7046,290,104,ENA,2100-2200,12345.7,,,50016174,,, +9840,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Af,0400-0800,1234567,,,50023802,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1000-1030,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1230-1300,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1500-1530,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,2330-2400,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1130-1200,1234567,,,50005767,,, +9840,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1330-1400,1234567,,,50005767,,, +9840,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1030-1100,1234567,,,50005767,,, +9840,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1300-1330,1234567,,,50005767,,, +9840,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1430-1500,1234567,,,50005767,,, +9840,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,2300-2330,1234567,,,50005767,,, +9840,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1100-1130,1234567,,,50005767,,, +9840,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1200-1230,1234567,,,50005767,,, +9840,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1400-1430,1234567,,,50005767,,, +9840,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,2200-2230,1234567,,,50005767,,, +9840,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,2230-2300,1234567,,,50005767,,, +9845,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,1030-1805,1234567,,,40001019,,, +9845,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,2025-0100,1234567,,,40001019,,, +9845,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SAs,0100-0200,1234567,,,50023803,,, +9845,BOT,ar,VoA Darfur,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,0300-0330,1234567,,,50023086,,, +9845,MRA,zh,Voice of America,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,310,11575,40,132,,1400-1500,1234567,,,50020762,,, +9850,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,55,1205,156,45,,0610-0745,......7,,,50008570,,, +9850,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,55,1205,156,45,UKR,0715-0915,......7,,,50008570,,, +9850,AUT,be,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,EEu,1500-1528,1......,,,50023089,,, +9850,AUT,ru,Trans World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,EEu,1500-1528,0.234567,,,50023089,,, +9850,ARM,ar,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1900-2000,1234567,,,50023088,,, +9850,IRN,bs,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,1720-1820,1234567,,,50023087,,, +9850,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,76,5762,180,95,,1900-1930,1234567,,,50020768,,, +9850,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0230-0600,1234567,,,40000556,,, +9850,CHN,bo,Qinghai RGD,,Xining (SW) (QH),36.655833,101.575,,50,206,7198,62,112,,0600-0830,1.34567,,,40000556,,, +9850,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,CNA,1100-1300,1234567,,,50016459,,, +9850,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1000-1100,1234567,,,50018555,,, +9850,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1100-1200,1234567,,,50018555,,, +9850,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,1200-1300,1234567,,,50018555,,, +9850,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,SEA,1300-1400,1234567,,,50018555,,, +9850,AFS,en,Voice of America,,Meyerton (SW) (GT),-26.585833,28.138889,,250,335,9003,160,120,,1800-1830,1234567,,,50021703,,, +9850,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,,1830-1900,1234567,,,50021702,,, +9850,VTN,do,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,0400-0500,1234567,,,40001020,,, +9850,VTN,hm,VOV4,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,0500-0530,1234567,,,40001020,,, +9855,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,110,3170,130,65,AUS,2000-2200,1234567,,,2300014,,, +9855,UAE,en,R Australia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,90,5075,109,81,SEA,2200-2400,1234567,,,50011310,,, +9855,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1200-1400,1234567,,,50005781,,, +9855,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,,0300-0430,1234567,,,50021704,,, +9855,PHL,vi,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,SEA,1100-1200,1234567,,,50023091,,, +9855,SNG,si,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,CLN,1630-1700,1234567,,,50023090,,, +9855,SNG,ta,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,CLN,1545-1615,1234567,,,50023090,,, +9860,F,am,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1800-1900,1234567,,,50023095,,, +9860,F,om,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,12345..,,,50023095,,, +9860,CHN,eo,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,269,5347,76,84,SAm,2200-2300,1234567,,,50005792,,, +9860,UAE,ti,Voice of America,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1900-1930,12345..,,,50023094,,, +9860,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,1100-1805,1234567,,,40001022,,, +9860,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,PHL,0000-0100,1234567,,,50023092,,, +9860,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,PHL,0100-0200,1234567,,,50023092,,, +9860,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,SAf,0600-0800,1234567,,,50020773,,, +9860,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1600-1800,1234567,,,50023093,,, +9865,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,ME,2000-2100,1234567,,,50005798,,, +9870,G,ha,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,WAf,0629-0700,1234567,,,50023097,,, +9870,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,0300-0400,1234567,,,50023099,,, +9870,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1420-1720,1234567,,,50020782,,, +9870,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,1800-2300,1234567,,,50023804,,, +9870,IND,hi,AIR Vividh Bharati,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,35,7561,97,106,,0025-0435,1234567,,,40001044,,, +9870,IND,hi,AIR Vividh Bharati,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,35,7561,97,106,,0900-1200,1234567,,,40001044,,, +9870,IND,hi,AIR Vividh Bharati,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,35,7561,97,106,,1245-1740,1234567,,,40001044,,, +9870,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,CAf,0600-0629,1234567,,,50023096,,, +9870,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,1300-1600,1234567,,,50005806,,, +9870,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,CAs,1300-1400,1234567,,,50005806,,, +9870,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,Oc,0800-1100,1234567,,,50023098,,, +9870,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,WOc,1100-1200,1234567,,,50023098,,, +9875,LTU,bo,R Free Asia,,Kaunas/Sitkūnai (Kau),55.043611,23.807778,,100,,1191,67,49,FE,2300-2400,1234567,,,50023101,,, +9875,TJK,bo,R Free Asia,,Orzu (SW) (ktl),37.520833,68.8,,250,110,5010,83,83,,2300-2400,1234567,,,50021705,,, +9875,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1600-1700,1234567,,,50023100,,, +9875,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023805,,, +9875,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1900-2000,1234567,,,50016186,,, +9875,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1800-1900,1234567,,,50016186,,, +9875,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,FE,2300-2400,1234567,,,50016186,,, +9875,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,2000-2100,1234567,,,50016186,,, +9875,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,FE,0700-0900,1234567,,,50016186,,, +9875,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,FE,2100-2300,1234567,,,50016186,,, +9875,VTN,vi,VOV2,,H Nội/Me Tri (hno),20.999028,105.782444,,50,,8793,70,126,,0145-1000,1234567,,,40001027,,, +9875,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,303,11578,41,128,,1800-2000,1234567,,,50020784,,, +9880,ROU,ro,R Romania Int.,,Săftica (SW) (IF),44.637778,26.074403,,100,,1666,112,54,Eu,1300-1400,1234567,,,50023105,,, +9880,UAE,bn,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,1400-1500,.2....7,,,50023103,,, +9880,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1100,1234567,,,50023806,,, +9880,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,FE,0800-0900,1234567,,,50005815,,, +9880,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,,7797,50,113,Sib,1000-1100,1234567,,,50005815,,, +9880,CHN,my,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1100-1200,1234567,,,50005816,,, +9880,CHN,my,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1300-1400,1234567,,,50005816,,, +9880,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1800-1900,1234567,,,50023104,,, +9880,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0900-1100,1234567,,,50023106,,, +9880,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023807,,, +9880,GUM,ko,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,330,11707,42,133,FE,1200-1300,1234567,,,50008598,,, +9885,EGY,ru,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,5,3024,131,63,EEu,1900-2000,1234567,,,50018573,,, +9885,ARS,tg,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,CAs,1700-1800,1234567,,,50023808,,, +9885,ARS,tk,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,CAs,1500-1600,1234567,,,50023808,,, +9885,ARS,uz,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,CAs,1600-1700,1234567,,,50023808,,, +9885,TJK,bo,R Free Asia,,Orzu (SW) (ktl),37.520833,68.8,,250,110,5010,83,83,,0100-0300,1234567,,,50021707,,, +9885,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,Af,0600-0700,1234567,,,50005826,,, +9885,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,,2030-2100,.....67,,,50005826,,, +9890,UAE,en,R Australia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,INS,2200-2330,1234567,,,50023107,,, +9890,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1057-1805,1234567,,,40001030,,, +9890,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2355-0157,1234567,,,40001030,,, +9890,KRE,ar,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1500-1600,1234567,,,50016189,,, +9890,KRE,ar,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1700-1800,1234567,,,50016189,,, +9890,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1600-1700,1234567,,,50016189,,, +9890,GUM,ko,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,FE,2100-2200,1234567,,,50023108,,, +9895,UAE,fr,R Taiwan Int.,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,315,5075,109,84,Eu,1900-2000,1234567,,,50019322,,, +9895,RUS,tt,GTRK Tatarstan-Na Volne Tatarstana,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,CAs,0610-0700,1234567,,,50023110,,, +9895,IRN,ar,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,ME,0220-0520,1234567,,,50023109,,, +9895,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,260,7046,290,104,CAm,0030-0100,1......,,,50020043,,, +9895,USA,es,R Nederland,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,173,7046,290,104,Car,0100-0130,.23456.,,,50018578,,, +9900,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,Eu,2115-2245,1234567,,,50023111,,, +9900,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1230-1330,1234567,,,50023113,,, +9900,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1130-1230,1234567,,,50023113,,, +9900,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,1500-1600,1234567,,,50023810,,, +9900,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1345-1430,1234567,,,50023112,,, +9900,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023809,,, +9905,EGY,ar,ERTU Al-Barnameg al-Aam,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,NAm,0200-0700,1234567,,,50018583,,, +9910,TJK,ko,Open R North Korea,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,KRE,1230-1430,1234567,,,50023811,,, +9910,IND,en,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,250,312,6248,85,96,,1530-1545,1234567,,,50010992,,, +9910,IND,en,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,1530-1545,1234567,,,50009824,,, +9910,IND,en,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,325,6367,85,97,Oc,2045-2230,1234567,,,50009824,,, +9910,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,0300-0345,1234567,,,50009824,,, +9910,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,1315-1415,1234567,,,50009824,,, +9910,IND,hi,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,,2245-2400,1234567,,,50009824,,, +9910,IND,hi,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,2300-2400,1234567,,,50009824,,, +9910,IND,ps,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,0215-0300,1234567,,,50009824,,, +9910,IND,ps,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,AFG,1415-1530,1234567,,,50009824,,, +9910,IND,ta,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,0000-0045,1234567,,,50009824,,, +9910,IND,fa,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,100,,6235,85,99,AFG,0300-0345,1234567,,,50023812,,, +9910,IND,ps,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,100,,6235,85,99,AFG,0215-0300,1234567,,,50023812,,, +9910,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1130-1145,......7,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,,1100-1230,12345.7,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1100-1130,123456,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1100-1145,123456,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1130-1230,1234567,,,50005847,,, +9910,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1145-1230,1234567,,,50005847,,, +9915,G,en,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,250,180,622,276,39,WAf,1800-2100,1234567,,,50020802,,, +9915,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,,2100-2200,1234567,,,50009826,,, +9915,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,2100-2200,12345..,,,50009826,,, +9915,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023813,,, +9915,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023115,,, +9920,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0200-0300,1234567,,,50023815,,, +9920,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50023814,,, +9920,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,1500-1600,1234567,,,50023116,,, +9920,PHL,BHN,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1230-1300,1.3.5..,,,50020045,,, +9920,PHL,BRU,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,...4.6.,,,50020045,,, +9920,PHL,BT,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,....5..,,,50020045,,, +9920,PHL,CHR,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1230-1300,.2....7,,,50020045,,, +9920,PHL,CRU,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1230-1300,...4.6.,,,50020045,,, +9920,PHL,Chr,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,,1230-1330,.2....7,,,50020045,,, +9920,PHL,EC,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,......7,,,50020045,,, +9920,PHL,JR,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1200-1230,...456.,,,50020045,,, +9920,PHL,RAD,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1200-1230,123...7,,,50020045,,, +9920,PHL,ROG,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,1.3....,,,50020045,,, +9920,PHL,SED,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,270,10183,62,128,SEA,1300-1330,.2.....,,,50020045,,, +9920,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023117,,, +9925,BUL,en,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ME,1930-2015,......7,,,50023118,,, +9930,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0400-2000,9999999,,,6800013,,, +9930,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0200-0300,1234567,,,50023817,,, +9930,USA,,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,NAm,1400-2400,1234567,,,50020046,,, +9930,USA,en,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,180,7067,296,108,,2000-2400,1234567,,,50020046,,, +9930,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50023816,,, +9930,PLW,VN,Que Me R,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,VTN,1200-1230,....5..,,,50017494,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,0800-0900,12345.7,,,50023818,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,0900-1000,1234567,,,50023818,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,1000-1200,......7,,,50023818,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,1200-1400,.....67,,,50023818,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,345,1200-1230,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,345,1200-1230,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0800-0815,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0800-0830,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0815-0830,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0830-0845,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0830-0900,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0845-0900,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0900-0915,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0900-0915,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0900-1000,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0915-0930,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0915-0930,12345..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-0945,....5..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-0945,..3....,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-0945,1..4...,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-1000,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0930-1000,.2.....,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0945-1000,..3....,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0945-1000,1..45..,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1230-1245,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1230-1245,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1245-1300,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1245-1300,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1300-1315,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1300-1315,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1315-1330,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1315-1330,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1330-1345,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1330-1345,.....6.,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1345-1400,......7,,,50009829,,, +9930,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,1345-1400,.....6.,,,50009829,,, +9930,PLW,ja,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,FE,0800-0900,.....6.,,,50023818,,, +9930,PLW,ja,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,,0800-0900,.....6.,,,50009829,,, +9930,PLW,vi,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,345,1200-1230,....5..,,,50009829,,, +9935,GRC,,ERA Makedonias 102 FM,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,250,285,2024,132,53,,1100-1650,1234567,,,40001037,,, +9935,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1700-2400,1234567,,,50023819,,, +9935,MRA,VN,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023820,,, +9940,MDA,A,E,R Miraya,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,EAf,0300-0600,1234567,,,50023120,, +9940,S,,R Nord,,Sala (SW) (vm),59.916667,16.6,,10,,1072,32,58,,0400-2000,9999999,,,6800014,,, +9940,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0200-0300,1234567,,,50023822,,, +9940,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50023821,,, +9940,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023821,,, +9940,CLN,my,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,57,8219,99,115,,1630-1730,1234567,,,50021708,,, +9940,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,1800-1900,1234567,,,50023121,,, +9940,SWZ,fr,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,101,9062,157,124,CAf,1935-1950,1234567,,,50014988,,, +9940,SWZ,fr,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,343,9062,157,124,CAf,1950-2005,.....6.,,,50014988,,, +9940,SWZ,ln,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,343,9062,157,124,CAf,1905-1935,1234567,,,50014988,,, +9940,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,278,11578,41,128,FE,1500-1600,1234567,,,50018591,,, +9940,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,278,11578,41,128,SEA,1630-1730,1234567,,,50018591,,, +9940,PHL,ug,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,,10292,62,128,CHN,1430-1500,1234567,,,50023119,,, +9940,GUM,HUI,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,FE,1330-1400,.....67,,,50020808,,, +9940,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,FE,1330-1400,12345..,,,50020808,,, +9950,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0200-0300,1234567,,,50023824,,, +9950,IND,hi,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1615-1730,1234567,,,50007853,,, +9950,IND,sw,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1515-1615,1234567,,,50007853,,, +9950,IND,en,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,50,312,6235,85,102,Eu,1745-1945,1234567,,,50007853,,, +9950,IND,en,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,50,312,6235,85,102,Eu,2045-2230,1234567,,,50007853,,, +9950,IND,hi,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,50,312,6235,85,102,Eu,1945-2045,1234567,,,50007853,,, +9950,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50023823,,, +9950,TWN,ja,Furusato no Kaze,,unknown location in Taiwan,24,121,,100,,9449,57,125,KRE,1330-1400,1234567,,,50019480,,, +9950,TWN,ko,Nippon no Kaze,,unknown location in Taiwan,24,121,,100,,9449,57,125,KRE,1300-1330,1234567,,,50019482,,, +9950,MRA,VN,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023825,,, +9955,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023826,,, +9955,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Car,0600-1100,1234567,,,50023831,,, +9955,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,NAm,1500-2200,1234567,,,50023831,,, +9955,USA,en,Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0300-0400,1234567,,,50023832,,, +9955,USA,en,Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,2300-2400,1234567,,,50023832,,, +9955,USA,en,PCJ R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0200-0300,.....6.,,,50023830,,, +9955,USA,en,R Prague,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,1305-1330,123456,,,50023828,,, +9955,USA,en,R Slovakia Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0130-0200,.23456.,,,50023829,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0000-0300,1234567,,,50023833,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0400-0600,1234567,,,50023833,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,1100-1400,1234567,,,50023833,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,2200-2300,1234567,,,50023833,,, +9955,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,NAm,1400-1500,1234567,,,50023833,,, +9955,USA,es,R Prague,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0500-0530,1234567,,,50023828,,, +9955,USA,es,R Prague,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,1100-1130,12345..,,,50023828,,, +9955,USA,es,R Slovakia Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0530-0600,1234567,,,50023829,,, +9955,USA,es,R Slovakia Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,1130-1200,123456,,,50023829,,, +9955,USA,es,R Vaticana,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,LAm,0200-0230,.2345..,,,50023827,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0100-0130,..3....,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0130-0200,.23456.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0200-0230,.2345..,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0200-0230,1......,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0200-0300,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0230-0300,....5..,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0400-0430,...4...,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0400-1100,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0415-0445,....5..,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0430-0500,...4...,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0500-1200,123456,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1300-1400,1234567,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1400-1430,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1430-1500,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1430-1500,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1430-1500,...4...,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1500-1600,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1500-2400,12345..,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1530-1600,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1600-1630,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1600-2000,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1700-2200,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2100-2130,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2100-2130,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2130-2230,......7,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2230-2300,.....6.,,,50016184,,, +9955,USA,en,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,2330-2400,.....6.,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0000-0100,.23456.,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0300-0330,1234567,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0330-0400,1234567,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,0400-0500,..3....,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1130-1200,......7,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1200-1230,.2.....,,,50016184,,, +9955,USA,es,WRMI R Miami Int.,,Miami/Hialeah Gardens (WRMI) (FL),25.9,-80.363889,,50,160,7553,284,116,,1200-1230,1.3..6.,,,50016184,,, +9955,TWN,ru,Family R,,Huwei (SW) (YL),23.726389,120.417222,,250,325,9441,57,121,,1500-1700,1234567,,,40001004,,, +9955,TWN,zh,R France Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,352,9489,58,121,FE,2300-2400,1234567,,,50015865,,, +9955,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1600,1234567,,,50023123,,, +9960,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023834,,, +9960,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023835,,, +9960,PLW,ja,Furusato no Kaze,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,KRE,1430-1500,1234567,,,50020810,,, +9960,PLW,km,Khmer Post R,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,SEA,1200-1300,1234567,,,50014093,,, +9965,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,200,325,3024,131,64,ENA,0030-0430,1234567,,,50017280,,, +9965,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,200,325,3024,131,64,ENA,2300-0030,1234567,,,50017280,,, +9965,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,325,3170,130,65,,0030-0430,1234567,,,50017611,,, +9965,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,325,3170,130,65,,2300-0030,1234567,,,50017611,,, +9965,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,1800-1900,1234567,,,50023836,,, +9965,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,1900-2000,1234567,,,50023124,,, +9965,THA,ps,VoA Deewa R,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,1600-1800,1234567,,,50023837,,, +9965,PLW,en,R Australia,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,318,11769,54,133,FE,1300-1430,1234567,,,50005873,,, +9965,PLW,ko,Nippon no Kaze,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,KRE,1530-1600,1234567,,,50019487,,, +9970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,1900-1800,1234567,,,50017282,,, +9970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017282,,, +9975,KWT,ps,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1630-1730,1234567,,,50023128,,, +9975,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,186,4779,79,85,SAs,0100-0400,1234567,,,50016185,,, +9975,USA,en,KVOH Voice of Hope,,Rancho Simi (KVOH) (CA),34.256389,-118.641667,,100,,9031,317,124,CAm,0200-0400,1234567,,,50023127,,, +9975,USA,en,KVOH Voice of Hope,,Rancho Simi (KVOH) (CA),34.256389,-118.641667,,100,,9031,317,124,CAm,0300-0500,1.....1,,,50023127,,, +9975,USA,en,KVOH Voice of Hope,,Rancho Simi (KVOH) (CA),34.256389,-118.641667,,100,,9031,317,124,CAm,0400-0500,1234567,,,50023127,,, +9975,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023838,,, +9975,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,320,11715,42,133,FE,1215-1245,12.45..,,,50005876,,, +9975,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,320,11715,42,133,FE,1330-1345,123456,,,50005876,,, +9975,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,320,11715,42,133,FE,1345-1445,1234567,,,50005876,,, +9975,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,320,11715,42,133,FE,1445-1500,12345..,,,50005876,,, +9975,PLW,ko,Nippon no Kaze,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,345,11769,54,133,KRE,1500-1530,1234567,,,50019489,,, +9980,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,,1200-2400,1234567,,,50009832,,, +9980,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,90,7122,296,108,NAm,1300-0100,1234567,,,50009832,,, +9982.5,HWA,,KVM70,f,Maili/Tower Drive (HI),21.429611,-158.160833,,4,,11701,345,147,,0519-1556,1234567,-9982.5,,20016157,,, +9985,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0000-0030,1234567,,,50023839,,, +9985,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,2200-2300,1234567,,,50023840,,, +9990,BUL,fa,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,IRN,1630-1830,1234567,,,50023842,,, +9990,EGY,ha,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,NIG,1800-2100,1234567,,,50023129,,, +9990,KWT,fa,R Farda,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,IRN,0830-1300,1234567,,,50023130,,, +9990,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023841,,, +9990,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,1300-1430,1234567,,,50023131,,, +9990,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1600,1234567,,,50023843,,, +9996,RUS,,RWM,,Elektrougli (MO),55.737778,38.153889,,8,,2098,66,69,,0000-2400,1234567,,,6700071,,, +10000,I,it,Assoc. Amici di Italcable,,Corsanico-Bargecchia (lu),43.913333,10.295556,,0.09,,956,161,77,,0000-2400,1234567,993,,4000055,,, +10000,CHN,,BPM,,Lintong/Pucheng (SA),34.947778,109.552389,,10,,7813,58,125,,0000-2400,1234567,0,,36200217,,, +10000,USA,en,WWV,,Fort Collins (CO),40.679944,-105.040306,,10,,7770,311,125,,0000-2400,1234567,0,,20000086,,, +10000,HWA,en,WWVH,,Kekaha (HI),21.988389,-159.76425,,10,,11667,347,143,,0000-2400,1234567,0,,20000091,,, +10000,ARG,es,LOL1,,Buenos Aires/Observatorio Naval (df),-34.622778,-58.354722,,5,,11505,230,145,,1400-1500,12345..,,,33000012,,, +10000,B,pt,PPE Observatrio Nacional,,Rio de Janeiro/So Cristvo (RJ),-22.895717,-43.223944,,1,,9629,225,146,,0000-2400,1234567,,,36902744,,, +10018,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300007,,, +10018,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900016,,, +10018,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400005,,, +10018,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600013,,, +10018,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300004,,, +10018,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500007,,, +10018,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,,,,,32200034,,, +10018,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500004,,, +10024,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500026,,, +10048,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012486,,, +10048,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012463,,, +10051,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:20-:29,1234567,,,20100019,,, +10051,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:50-:59,1234567,,,20100019,,, +10051,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:00-:19,1234567,,,20000082,,, +10051,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:30-:49,1234567,,,20000082,,, +10057,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012433,,, +10063,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100015,,, +10066,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200036,,, +10066,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900014,,, +10069,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902871,,, +10072,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500039,,, +10075,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900006,,, +10084,MLT,,Malta Aero,u,Benghisa (mt),35.815694,14.528403,,1,,1922,157,76,,,,,,5800002,,, +10087,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700103,,, +10090,UZB,en,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:10-:15,1234567,,,34500005,,, +10090,UZB,en,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:40-:45,1234567,,,34500005,,, +10096,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400010,,, +10096,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500027,,, +10100.8,D,,DDK9 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,0000-2400,1234567,-10100.8,,2000044,,, +10123,PNR,,HP1AVS,b,Cerro Jefe,9.133333,-79.366667,,0.0025,,8920,272,169,,,,,Slope Dip Omni A1 24,55039,,, +10129.5,USA,,W0ERE,b,Highlandsville (MO),36.966667,-93.366667,,0.025,,7446,301,147,,,,-10129.5,RV E-W A1 INT #MO,55040,,, +10130,CZE,,OK1IF,b,Liberec JO70MS,49.6,15.5,,0.0005,,696,110,97,,,,,A1 ?,55041,,, +10132,CAN,,VE3TO,b,near Ottawa (ON),45.266667,-75.616667,,0.005,,5742,297,137,,,,,1/4 Vert Omni A1 QRT,55042,,, +10133,S,,SK6RUD,b,Oxaback,57.35,12.866667,,0.0005,,714,33,97,,,,,1/4 GP Omni A1 24,55043,,, +10134,CZE,,OK0EF,b,near Kladno,50.1,14.116667,,0.0005,,582,110,96,,,,,1/2 Vert Omni A1 24,55044,,, +10137.2,I,,IK3NWX,b,Nr Monselice (pd),45.216667,11.783333,,0.0042,,862,151,89,,,,-10137.2,Rot. Dip. E-W A1 24,55045,,, +10139,I,,IZ0NHW,b,Nea Smirni (fr),41.466667,13.783333,,0.0002,,1308,152,107,,,,,?,55046,,, +10139.6,B,,PY3PSI,b,Porto Alegre (RS),-30.016667,-51.116667,,0.0016,,10705,227,177,,,,-10139.6,Hor. Dip N-S A1 IRREG,55047,,, +10139.7,GRC,,SV8GXC,b,,37.933333,23.7,,8.00E-05,,2070,133,119,,,,-10139.7,?,55048,,, +10140.07,I,,IQ2DP,b,San Donate (mi),45.383333,9.283333,,0.0004,,777,163,99,,,,-10140.07,Vertical Omni 24,55049,,, +10140.6,D,,DL5KZ,b,Nmbrecht (nrw),50.85,7.533333,,0.0001,,160,151,98,,,,-10140.6,Dipole A1 ?,55050,,, +10142.51,I,,IK1HGI,b,Trecate (no),45.433333,8.7,,0.0001,,761,166,104,,,,-10142.51,Dipole QRSS3 24,55051,,, +10144,D,,DKWCY Aurora Beacon,c,Scheggerott (shs),54.668453,9.823456,,0.03,,363,37,76,,0000-2400,1234567,,,2000023,,, +10149.7,I,,IZ8BZX,b,Torre del Greco (na),40.766667,14.366667,,0.0001,,1399,151,111,,,,-10149.7,whip Omni QRSS EXP,55053,,, +10150,I,,IZ5ILH,b,Firenze (fi),43.766667,11.283333,,0.002,,996,157,94,,,,,?,55054,,, +10213,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,,,6800029,,, +10325,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,,,20016137,,, +10353,PRU,,R Willkamayu,,Cusco (cus),-13.533333,-71.95,,0.02,,10417,253,165,,,,,,40001045,,, +10360,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800030,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0015-0215,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0245-0330,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0500,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0945,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1015-1715,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1845,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1915-2045,1234567,,,37700110,,, +10555,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2215-2400,1234567,,,37700110,,, +10746,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800031,,, +10960,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017847,,, +10960,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-2400,1234567,,,50017847,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0000-0215,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0245-0330,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0345-0530,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0600-0945,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1015-1715,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1800-1845,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1915-2045,1234567,,,37700105,,, +11030,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2215-2400,1234567,,,37700105,,, +11039,D,,DDH9 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,10,,287,51,50,,0000-2400,1234567,,,2000045,,, +11086.5,G,,GYA UK Met Office/Royal Navy,f,Northwood/JOMOC (EN-GTL),51.617919,-0.4111,,10,,471,266,52,,0600-2000,1234567,-11086.5,,2800049,,, +11090,HWA,,KVM70,f,Maili/Tower Drive (HI),21.429611,-158.160833,,4,,11701,345,147,,0519-1556,1234567,,,20016158,,, +11090,HWA,,KVM70,f,Maili/Tower Drive (HI),21.429611,-158.160833,,4,,11701,345,147,,1719-0356,1234567,,,20016158,,, +11187,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200022,,, +11230,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017848,,, +11230,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1600,1234567,,,50017848,,, +11253,G,en,MVU RAF Volmet,u,St Eval (EN-CNW),50.478167,-4.999583,,10,,813,262,55,,,,,,2800011,,, +11279,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100032,,, +11279,NOR,en,Bod Aero,u,Bod (no),67.261111,14.35,,5,,1739,11,67,,0800-2000,1234567,,,6300020,,, +11279,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0000-2400,1234567,,,4200011,,, +11279,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1030-1830,1234567,,,20109310,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0005-0009,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0035-0039,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0105-0109,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0135-0139,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0205-0209,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0235-0239,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0305-0309,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0335-0339,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0405-0409,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0435-0439,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0505-0509,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0535-0539,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0605-0609,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0635-0639,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0705-0709,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0735-0739,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0805-0809,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0835-0839,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0905-0909,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,0935-0939,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1005-1009,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1035-1039,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1105-1109,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1135-1139,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1205-1209,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1235-1239,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1305-1309,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1335-1339,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1405-1409,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1435-1439,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1505-1509,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1535-1539,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1605-1609,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1635-1639,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1705-1709,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1735-1739,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1805-1809,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1835-1839,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1905-1909,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,1935-1939,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2005-2009,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2035-2039,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2105-2109,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2135-2139,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2205-2209,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2235-2239,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2305-2309,1234567,,,4500004,,, +11279,KAZ,ru,Aqtbe Volmet,u,Aqtbe=Aktyubinsk (aqt),50.256111,57.201667,,1,,3473,73,92,,2335-2339,1234567,,,4500004,,, +11279,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:20-:24,1234567,,,34500004,,, +11279,UZB,ru,Toshkent Volmet,u,Toshkent/Airport (tkt),41.263333,69.294444,,1,,4786,79,105,,:50-:54,1234567,,,34500004,,, +11279,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:10-:19,1234567,,,4500008,,, +11279,KAZ,ru,Almaty Volmet,u,Almaty/Airport (alm),43.355,77.028333,,1,,5156,71,109,,:40-:49,1234567,,,4500008,,, +11282,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012432,,, +11282,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012472,,, +11285,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200027,,, +11291,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500009,,, +11291,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000005,,, +11297,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:05-:09,1234567,,,6700016,,, +11297,RUS,ru,Sankt-Peterburg Volmet,u,Sankt-Peterburg/Airport (SP),59.808889,30.275,,1,,1701,50,74,,:35-:39,1234567,,,6700016,,, +11297,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:25-:29,1234567,,,6700040,,, +11297,RUS,ru,Rostov Volmet,u,Rostov-na-Donu/Airport (RO),47.252778,39.816667,,1,,2440,89,81,,:55-:59,1234567,,,6700040,,, +11300,LBY,,Tripoli Aero,u,Tarabulus=Tripoli (tbl),32.905864,13.290006,,1,,2206,163,79,,,,,,4800004,,, +11300,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300004,,, +11300,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400006,,, +11300,YEM,,Sana'a Aero,u,Sana'a (san),15.475,44.213889,,1,,5259,126,110,,,,,,12000002,,, +11300,DJI,,Djibouti Aero,u,Djibouti (djb),11.535556,43.156667,,1,,5583,130,113,,,,,,8800002,,, +11300,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600007,,, +11300,UGA,,Entebbe Aero,u,Entebbe/Kigungu (wak),0.031111,32.434722,,1,,6280,148,120,,,,,,8500002,,, +11300,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300001,,, +11300,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500005,,, +11300,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500005,,, +11300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017039,,, +11300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1600,1234567,,,50017039,,, +11309,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,0900-1900,1234567,,,700008,,, +11309,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-0600,1234567,,,20012387,,, +11312,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900007,,, +11318,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:00-:04,1234567,,,6700028,,, +11318,RUS,ru,Syktyvkar Volmet,u,Syktyvkar (KO),61.651278,50.774222,,1,,2829,51,85,,:30-:34,1234567,,,6700028,,, +11318,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:15-:19,1234567,,,6700036,,, +11318,RUS,ru,Samara Volmet,u,Samara/Airport (SA),53.228333,50.334444,,1,,2918,70,86,,:45-:49,1234567,,,6700036,,, +11318,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:05-:09,1234567,,,6700032,,, +11318,RUS,ru,Kol'tsovo Volmet,u,Kol'tsovo/Airport (SV),56.744444,60.830556,,1,,3463,60,92,,:35-:39,1234567,,,6700032,,, +11318,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:20-:24,1234567,,,6700020,,, +11318,RUS,ru,Tyumen Volmet,u,Tyumen/Airport (TY),57.175556,65.366667,,1,,3714,58,94,,:50-:54,1234567,,,6700020,,, +11318,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:10-:14,1234567,,,6700024,,, +11318,RUS,ru,Novosibirsk Volmet,u,Novosibirsk/Airport (NS),55.025,82.668056,,1,,4791,55,105,,:40-:44,1234567,,,6700024,,, +11318,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500013,,, +11330,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012420,,, +11330,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902911,,, +11330,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012469,,, +11336,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100022,,, +11336,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1030-1830,1234567,,,20109261,,, +11339,FJI,,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500010,,, +11342,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012413,,, +11342,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012493,,, +11342,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012439,,, +11342,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012479,,, +11342,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900022,,, +11342,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012506,,, +11345,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800046,,, +11348,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500019,,, +11360,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500028,,, +11366,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,2000-0400,1234567,,,36902868,,, +11369,ARG,es,Ezeiza Volmet,u,Ezeiza (ba),-34.753333,-58.530278,,1,,11526,230,152,,:15-:25,1234567,,,33000044,,, +11384,IRL,,Shanwick Aero,h,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,,,,,4100055,,, +11384,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012453,,, +11384,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012502,,, +11387,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016240,,, +11387,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:16-:19,1234567,,,31500008,,, +11387,PAK,en,ARA Karachi Volmet,u,Karachi (shd),24.921889,67.15975,,1,,5870,97,116,,:46-:49,1234567,,,31500008,,, +11387,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:25-:29,1234567,,,32200005,,, +11387,IND,en,AWB Mumbai Volmet,u,Mumbai=Bombay (MH),19.118889,72.832222,,1,,6741,96,124,,:55-:59,1234567,,,32200005,,, +11387,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:05-:09,1234567,,,32200008,,, +11387,IND,en,AWC Kolkata Volmet,u,Kolkata=Calcutta (WB),22.637333,88.401944,,1,,7505,82,132,,:35-:39,1234567,,,32200008,,, +11387,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:10-:15,1234567,,,32900005,,, +11387,THA,en,HSD Bangkok Volmet,u,Udon Thani (SW) (udt),17.674722,103.2025,,10,,8917,74,133,,:40-:45,1234567,,,32900005,,, +11387,SNG,en,Singapore Volmet,u,Singapore/Yio Chu Kang (ne),1.380139,103.854722,,1,,10394,83,148,,:20-:24,1234567,,,33100003,,, +11387,SNG,en,Singapore Volmet,u,Singapore/Yio Chu Kang (ne),1.380139,103.854722,,1,,10394,83,148,,:50-:54,1234567,,,33100003,,, +11387,AUS,en,Australian Volmet,u,Ningi/Telstra (QLD),-27.066111,153.055556,,6,,16087,58,159,,:00-:04,1234567,,,37700030,,, +11387,AUS,en,Australian Volmet,u,Ningi/Telstra (QLD),-27.066111,153.055556,,6,,16087,58,159,,:30-:34,1234567,,,37700030,,, +11390,RUS,,Magadan Aero,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,,,,,6700132,,, +11396,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012419,,, +11396,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902904,,, +11396,PNR,,Panam Aero,u,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100021,,, +11396,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900008,,, +11396,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700087,,, +11430,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022325,,, +11435,CUB,es,HMO1 Spy Numbers Station,,unknown,22,-79,,100,,7789,281,115,,,,,,31600139,,, +11500,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50009836,,, +11510,F,ku,Denge Kurdistana,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,ME,1600-2000,1234567,,,50023844,,, +11510,MDA,ku,Denge Kurdistana,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,ME,0400-1600,1234567,,,50023132,,, +11510,MDA,ku,Denge Kurdistana,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,,1731,99,54,ME,1600-2000,1234567,,,50023132,,, +11517,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50023845,,, +11520,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1100-1200,1234567,,,50023847,,, +11520,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023847,,, +11520,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,335,7317,294,106,SEA,0900-1200,1234567,,,50010451,,, +11520,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,335,7317,294,106,SEA,0900-1300,1234567,,,50010451,,, +11520,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,85,7317,294,106,WAf,0000-0900,1234567,,,50010451,,, +11520,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023846,,, +11520,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023846,,, +11520,TWN,id,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,180,9434,57,125,INS,1000-1100,1234567,,,50013357,,, +11523,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50023848,,, +11530,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,ENA,0030-0430,1234567,,,50023133,,, +11530,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,ENA,2300-0030,1234567,,,50023133,,, +11530,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023851,,, +11530,TJK,en,Voice of Russia,,Orzu (SW) (ktl),37.520833,68.8,,500,155,5010,83,80,,1000-1300,1234567,,,50021709,,, +11530,TJK,en,Voice of Russia,,Orzu (SW) (ktl),37.520833,68.8,,500,155,5010,83,80,,1400-1500,1234567,,,50021709,,, +11530,TJK,hi,Voice of Russia,,Orzu (SW) (ktl),37.520833,68.8,,500,155,5010,83,80,,1300-1400,1234567,,,50021709,,, +11530,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,ME,1330-1530,1234567,,,50023850,,, +11530,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023849,,, +11540,EGY,ar,ERTU Sawt al-Arab,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,160,3170,130,69,EAf,1900-0030,1234567,,,50016191,,, +11540,KWT,VN,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023853,,, +11540,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1100-1200,1234567,,,50023853,,, +11540,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023853,,, +11540,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023853,,, +11540,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023852,,, +11540,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023852,,, +11540,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023852,,, +11540,CLN,vi,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1400-1500,1234567,,,50023854,,, +11545,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023855,,, +11545,CLN,vi,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1400-1500,1234567,,,50023856,,, +11545,MRA,ug,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023857,,, +11550,UZB,ta,Voice of Tigers,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,163,4779,79,85,,1530-1630,.....6.,,,50020296,,, +11550,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,1200-1800,1234567,,,50010455,,, +11550,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,1300-1800,1234567,,,50010455,,, +11550,TWN,zh,Taiwan Ch Yuyeh Kuangpo Tientai,,Tainan/Annan (TNS),23.044167,120.168611,,100,205,9489,58,125,INS,0900-1000,..3....,,,50007614,,, +11550,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,295,11578,41,128,FE,2200-2300,1234567,,,50020056,,, +11555,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023858,,, +11555,CLN,vi,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1400-1500,1234567,,,50023859,,, +11560,BUL,ti,Dimtse R Erena,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ERI,1700-1730,1234567,,,50023861,,, +11560,MDA,,Dimtse R Yerena,,Grigoriopol/Maiac (TN),47.286667,29.417778,,100,160,1731,99,54,,1700-1730,1234567,,,50019711,,, +11560,BUL,,IRRS Milano, Miraya FM,,Sofia/Kostinbrod (sof),42.808889,23.186944,,50,195,1624,123,56,,0300-0600,1234567,,,50021710,, +11560,EGY,de,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,315,3170,130,65,,1900-2000,1234567,,,50017613,,, +11560,EGY,fr,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,315,3170,130,65,,2000-2115,1234567,,,50017613,,, +11560,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1100-1200,1234567,,,50023862,,, +11560,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023862,,, +11560,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023862,,, +11560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023860,,, +11560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023860,,, +11560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023860,,, +11560,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,1530-1630,1234567,,,50023136,,, +11565,USA,,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0830-0900,1......,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0800-0815,12345..,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0815-0830,12345..,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0830-0900,.2345..,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0900-0930,......7,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,0930-1030,......7,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,,1030-1100,......7,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,Oc,0800-0900,12345..,,,50016194,,, +11565,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,245,7046,290,104,Oc,0900-1100,......7,,,50016194,,, +11565,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,SAm,0000-0600,1234567,,,50023863,,, +11565,USA,en,WRMI R Miami Int.,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,SAm,2330-2400,.....6.,,,50023864,,, +11565,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023137,,, +11570,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023867,,, +11570,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023867,,, +11570,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023867,,, +11570,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,Eu,1700-1900,1234567,,,50023866,,, +11570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023865,,, +11570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023865,,, +11570,CLN,VN,R Free Asia,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,SEA,1400-1500,1234567,,,50023868,,, +11570,TWN,Hmo,Suab Xaa Moo Zoo (Voice of Hope),,Taipei TAI (Pali) (TP),25.083333,121.45,,100,250,9375,56,125,,1130-1200,1234567,,,50015008,,, +11570,TWN,hmn,Suab Xaa Moo Zoo,,unknown location in Taiwan,24,121,,100,,9449,57,125,SEA,1130-1200,1234567,,,50016678,,, +11570,TWN,my,Family R,,Huwei (SW) (YL),23.726389,120.417222,,100,265,9441,57,125,,1200-1300,1234567,,,40001055,,, +11580,PAK,en,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,118,5607,84,89,Eu,1100-1104,1234567,,,50020823,,, +11580,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,118,5607,84,89,Eu,0830-1100,1234567,,,50020823,,, +11580,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,118,5607,84,89,ME,0500-0700,1234567,,,50020823,,, +11580,IND,en,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,WAf,1745-1945,1234567,,,50015009,,, +11580,IND,ru,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,,6248,85,100,EEu,1615-1715,1234567,,,50022326,,, +11580,IND,ru,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,,6248,85,100,EEu,1615-1715,9999999,,,50022326,,, +11580,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022327,,, +11580,GUM,VN,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,278,11715,42,133,SEA,1245-1330,1234567,,,50008641,,, +11580,GUM,VN,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,SEA,1330-1345,.....6.,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,FE,1415-1430,12345.7,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,315,11715,42,133,FE,1430-1500,12345..,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,335,11715,42,133,,1345-1415,.....6.,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,335,11715,42,133,,1345-1430,......7,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,335,11715,42,133,,1345-1500,12345..,,,50008641,,, +11580,GUM,ko,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,335,11715,42,133,FE,1345-1415,1234567,,,50008641,,, +11580,GUM,vi,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,278,11715,42,133,,1245-1330,12345.7,,,50008641,,, +11580,GUM,vi,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,278,11715,42,133,,1245-1345,.....6.,,,50008641,,, +11580,GUM,yi,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,308,11715,42,133,FE,1200-1215,1234567,,,50008641,,, +11585,MRA,ko,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1500-1700,1234567,,,50023138,,, +11585,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023138,,, +11590,D,ps,VoA Deewa R,,Lampertheim (hes),49.602222,8.539444,,100,92,316,151,40,,1400-1500,1234567,,,50020828,,, +11590,KWT,VN,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023139,,, +11590,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023139,,, +11590,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1400,1234567,,,50023139,,, +11590,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023139,,, +11590,UZB,hi,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,163,4779,79,85,,0130-0200,1234567,,,50020827,,, +11590,UZB,hi,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,163,4779,79,85,SAs,0100-0130,1234567,,,50020827,,, +11590,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023869,,, +11590,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023869,,, +11590,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,250,340,8219,99,115,,1300-1400,1234567,,,50020829,,, +11590,THA,ps,VoA Deewa R,,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,1500-1600,1234567,,,50020830,,, +11595,D,fa,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,AFG,1500-1530,1234567,,,50023870,,, +11595,D,ps,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,AFG,1430-1500,1234567,,,50023870,,, +11595,CLN,,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,25,8219,99,115,,1600-1700,1234567,,,50020832,,, +11595,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,,2200-2300,1234567,,,50021711,,, +11600,LBY,ar,R Libya FS,,Sabratah (zaw),32.599167,12.343056,,500,180,2222,165,52,Af,1500-2010,1234567,,,50013510,,, +11600,IRN,ja,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,J,1320-1420,1234567,,,50023140,,, +11600,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1100-1200,1234567,,,50023872,,, +11600,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,SEA,0045-0215,1234567,,,50023141,,, +11600,PAK,zh,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,FE,1200-1300,1234567,,,50023141,,, +11600,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023871,,, +11600,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2200-2300,1234567,,,50023142,,, +11605,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023144,,, +11605,TWN,ja,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,45,9489,58,121,J,0800-0900,1234567,,,50007791,,, +11605,TWN,ja,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,45,9489,58,121,J,2200-2300,1234567,,,50007791,,, +11605,TWN,zh,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,205,9489,58,121,SEA,1500-1530,1234567,,,50007791,,, +11605,TWN,zh,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,300,205,9489,58,121,SEA,1530-1600,1234567,,,50007791,,, +11605,AFS,fr,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,340,9003,160,124,CAf,0500-0600,1234567,,,50005930,,, +11605,AFS,fr,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,340,9003,160,124,CAf,0600-0700,1234567,,,50005930,,, +11610,BUL,ar,Sunrise R Sharooqa,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ERI,1600-1657,123....,,,50023873,,, +11610,EGY,uz,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,CAs,1500-1600,1234567,,,50023145,,, +11610,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,AUS,2000-2200,1234567,,,50023146,,, +11610,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1400-1500,1234567,,,50005936,,, +11610,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0600-0900,12.4567,,,40001056,,, +11610,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0900-1100,1234567,,,40001056,,, +11610,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,2300-0600,1234567,,,40001056,,, +11610,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1300-1400,1234567,,,50005935,,, +11610,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,1400-1500,1234567,,,50005935,,, +11610,AFS,so,IBRA R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,35,9003,160,124,EAf,1730-1800,1234567,,,50020297,,, +11615,CVA,ar,VoA Darfur,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,146,1205,156,45,EAf,1800-1830,1234567,,,50019328,,, +11615,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023875,,, +11615,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023874,,, +11615,MRA,ug,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023876,,, +11620,ROU,ar,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,ME,1500-1600,1234567,,,50023148,,, +11620,IRN,fa,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,1150-1450,1234567,,,50023147,,, +11620,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,102,6235,85,95,SEA,1330-1500,1234567,,,50009842,,, +11620,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,334,6235,85,95,Oc,2045-2230,1234567,,,50009842,,, +11620,IND,gu,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,334,6235,85,95,EAf,1515-1600,1234567,,,50009842,,, +11620,IND,ur,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,65,6235,85,95,PAK,0830-1130,1234567,,,50009842,,, +11620,IND,en,AIR Home News,,Delhi/Khampur (DL),28.822222,77.127778,,125,245,6235,85,98,,1135-1140,1234567,,,50011028,,, +11620,IND,hi,AIR Home News,,Delhi/Khampur (DL),28.822222,77.127778,,125,65,6235,85,98,,1130-1135,1234567,,,50011028,,, +11620,IND,gu,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,335,7561,97,106,EAf,1515-1600,1234567,,,50009841,,, +11620,IND,ur,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,PAK,0015-0430,1234567,,,50009841,,, +11620,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,Oc,1100-1200,1234567,,,50005945,,, +11620,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,250,120,7561,97,109,Oc,2045-2230,1234567,,,50009841,,, +11620,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0055-0615,1234567,,,40001057,,, +11620,AFS,pt,Voice of America,,Meyerton (SW) (GT),-26.585833,28.138889,,100,330,9003,160,124,,1630-1700,....5..,,,50021712,,, +11625,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,WAf,1940-2000,1234567,,,50005952,,, +11625,CVA,am,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0400-0415,1234567,,,50005952,,, +11625,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0300-0330,1234567,,,50005952,,, +11625,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,WAf,0630-0700,1234567,,,50005952,,, +11625,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,184,1205,156,45,CAf,1730-1800,1234567,,,50005952,,, +11625,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,184,1205,156,45,WAf,2000-2030,1234567,,,50005952,,, +11625,CVA,es,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,CNR,1900-1930,.....6.,,,50005952,,, +11625,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,WAf,0600-0630,1234567,,,50005952,,, +11625,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,184,1205,156,45,WAf,2030-2100,1234567,,,50005952,,, +11625,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,238,1205,156,45,AGL,0530-0600,1234567,,,50005952,,, +11625,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,238,1205,156,45,WAf,1800-1830,1234567,,,50005952,,, +11625,CVA,sw,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0330-0345,......7,,,50005952,,, +11625,CVA,sw,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0330-0400,123456,,,50005952,,, +11625,CVA,ti,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,120,1205,156,45,EAf,0415-0430,1234567,,,50005952,,, +11625,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,2200-2300,.....67,,,50018613,,, +11625,KWT,vi,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,2330-2400,1234567,,,50023877,,, +11625,MDG,en,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,184,8830,141,119,,0500-0530,1234567,,,50008658,,, +11625,MDG,so,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,350,8830,141,119,EAf,0345-0400,......7,,,50008658,,, +11630,KWT,ar,R Kuwait Holy Quran,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,100,,4236,111,79,CAf,0930-1600,1234567,,,50023879,,, +11630,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023878,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0200-0300,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0500-0600,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0900-1000,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1400-1500,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1500-1700,1234567,,,40001059,,, +11630,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1700-1705,1234567,,,40001059,,, +11630,CHN,mn,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0700-0800,1.34567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0300-0500,1234567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0600-0700,1.34567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0800-0900,1.34567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1000-1400,1234567,,,40001059,,, +11630,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1955-2400,1234567,,,40001059,,, +11630,MRA,ug,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023880,,, +11635,RUS,de,Voice of Russia,D,Taldom/Severnyj Radiotsentr 3 (MO),56.745833,37.621111,,1,,2064,63,78,Eu,0900-1000,1234567,,,50023149,,, +11635,RUS,en,Voice of Russia,D,Taldom/Severnyj Radiotsentr 3 (MO),56.745833,37.621111,,1,,2064,63,78,Eu,0600-1000,1234567,,,50023149,,, +11635,UAE,so,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,215,5075,109,84,,1630-1700,12345..,,,50019714,,, +11635,UAE,so,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,215,5075,109,84,EAf,1630-1645,......7,,,50019714,,, +11635,UAE,so,Trans World R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,215,5075,109,84,EAf,1630-1700,123456,,,50019714,,, +11635,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1400,1234567,,,50023881,,, +11635,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2400,1234567,,,50023881,,, +11635,CUB,es,HMO1 Spy Numbers Station,,unknown,22,-79,,100,,7789,281,115,,,,,,31600138,,, +11635,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1900-2000,1234567,,,50016190,,, +11635,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1800-1900,1234567,,,50016190,,, +11635,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,FE,2300-2400,1234567,,,50016190,,, +11635,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,2000-2100,1234567,,,50016190,,, +11635,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,FE,2100-2300,1234567,,,50016190,,, +11635,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,1200-1400,1234567,,,50023150,,, +11635,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,SEA,2200-2400,1234567,,,50007793,,, +11640,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1500-1600,1234567,,,50023152,,, +11640,MLI,ar,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,EAf,1830-1930,1234567,,,50005962,,, +11640,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,,2000-2130,1234567,,,50005962,,, +11640,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,2000-2100,1234567,,,50005962,,, +11640,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,2100-2130,1234567,,,50005962,,, +11640,MLI,ha,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,CAf,1800-1830,1234567,,,50005962,,, +11640,MLI,pt,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,SAf,1930-2000,1234567,,,50005962,,, +11640,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0300-0400,1234567,,,50005966,,, +11640,CHN,vi,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,INS,1200-1300,1234567,,,50005967,,, +11640,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0100-0200,1234567,,,50005967,,, +11640,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0400-0600,1234567,,,50023882,,, +11640,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1400,1234567,,,50023882,,, +11640,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023882,,, +11640,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,Sib,1000-1100,1234567,,,50023151,,, +11640,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0700-0800,1234567,,,50005964,,, +11640,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0800-0900,1234567,,,50005964,,, +11640,CHN,bn,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,270,8246,70,118,SAs,0200-0300,1234567,,,50005965,,, +11640,CHN,vi,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0500-0600,1234567,,,50005965,,, +11640,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,,9444,57,125,FE,0400-0600,1234567,,,50013363,,, +11640,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,,0400-0600,.....6.,,,50013363,,, +11640,TWN,zh,R Taiwan Int.,,Kouhu (SW) (YL),23.537222,120.174444,,100,310,9444,57,125,FE,1000-1400,1234567,,,50013363,,, +11645,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,0400-1000,1234567,,,50023154,,, +11645,IND,en,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,FE,2245-0045,1234567,,,50008666,,, +11645,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1100,1234567,,,50023883,,, +11645,KRE,ar,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1500-1600,1234567,,,50016192,,, +11645,KRE,ar,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1700-1800,1234567,,,50016192,,, +11645,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,296,8231,44,116,ME,1600-1700,1234567,,,50016192,,, +11645,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0900-1100,1234567,,,50023155,,, +11650,BUL,en,Brother Stair,,Sofia/Kostinbrod (sof),42.808889,23.186944,,50,90,1624,123,56,,1800-2100,1234567,,,50020068,,, +11650,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,SAs,1100-1300,1234567,,,50005979,,, +11650,CHN,eo,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,1300-1400,1234567,,,50005977,,, +11650,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,SEA,1400-1500,1234567,,,50005978,,, +11650,CHN,vi,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0400-0500,1234567,,,50005978,,, +11650,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,1600-1900,1234567,,,50023156,,, +11650,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,2000-2200,1234567,,,50016202,,, +11655,TWN,VN,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,100,205,9489,58,125,SEA,2330-0030,1234567,,,50013366,,, +11660,ROU,ar,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,NAf,0730-0800,1234567,,,50023157,,, +11660,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023884,,, +11660,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0100-0600,1234567,,,40000720,,, +11660,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,,7808,59,113,,0600-0900,12.4567,,,40000720,,, +11660,MRA,ug,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,1600-1700,1234567,,,50023885,,, +11660,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,1430-1730,1234567,,,50016205,,, +11660,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,EAs,1530-1730,1234567,,,50016205,,, +11660,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,65,16373,78,148,Oc,1900-2100,1234567,,,50016205,,, +11660,AUS,zh,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,1300-1430,1234567,,,50016205,,, +11660,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,,2000-2200,1234567,,,37700052,,, +11665,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1400-1500,1234567,,,50016686,,, +11665,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,145,7808,59,108,,1400-1500,1234567,,,50021715,,, +11665,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,2100-2300,1234567,,,50023158,,, +11665,MLA,ms,RTM Wai FM,,Kajang (slg),3.011111,101.784444,,100,93,10109,84,127,,0000-2400,1234567,,,50013511,,, +11670,IND,ar,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,0430-0530,1234567,,,50018627,,, +11670,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,0400-0430,1234567,,,50018627,,, +11670,IND,ur,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,,0530-0600,1234567,,,50018627,,, +11670,IND,ur,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,282,6367,85,97,ME,0530-0600,9999999,,,50018627,,, +11670,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,280,7561,97,106,Eu,2045-2230,1234567,,,50008682,,, +11670,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,325,7561,97,106,Eu,1745-1945,1234567,,,50008682,,, +11670,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,325,7561,97,106,Eu,1945-2045,1234567,,,50008682,,, +11670,IND,th,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,90,7561,97,106,SEA,1115-1200,1234567,,,50008682,,, +11670,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,SAm,0200-0500,1234567,,,50017040,,, +11670,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,SAm,0000-0200,1234567,,,50017040,,, +11670,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,220,7773,50,115,,0600-0900,12.4567,,,40001068,,, +11670,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,220,7773,50,115,,0900-1200,1234567,,,40001068,,, +11670,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,220,7773,50,115,,2330-0600,1234567,,,40001068,,, +11675,IRN,ur,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1250-1420,1234567,,,50023160,,, +11675,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EEu,1420-1520,1234567,,,50023161,,, +11675,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,25,325,18351,32,161,SOc,0651-0800,1234567,,,50002415,,, +11675,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,25,325,18351,32,161,SOc,1751-1850,1234567,,,50002415,,, +11675,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,25,325,18351,32,161,SOc,1751-1950,1234567,,,50002415,,, +11680,E,pt,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,SAm,2100-2200,12345..,,,50018631,,, +11680,TUR,AFG,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,AFG,1600-1730,1234567,,,50023162,,, +11680,KRE,ko,KCBS Chosun Jungang Pangsong,,Kanggye (cha),40.966667,126.583333,,50,ND,8171,43,122,,2000-1800,1234567,,,50016209,,, +11680,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1200-1300,1234567,,,50006009,,, +11685,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0000-0500,1234567,,,40001071,,, +11685,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0530-0600,1234567,,,40001071,,, +11685,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0900,12.4567,,,40001071,,, +11685,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0500-0530,1234567,,,40001071,,, +11685,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1345-1430,1234567,,,50023163,,, +11685,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1430-1515,12345..,,,50023163,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,0000-0800,.....6.,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,0000-0800,9999999,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1400-1700,.....6.,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1400-1700,9999999,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1900-2200,.....6.,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1900-2200,9999999,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,2300-2400,....5..,,,50006023,,, +11690,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,2300-2400,9999999,,,50006023,,, +11690,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,1200-1300,1234567,,,50006019,,, +11690,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Car,1100-1300,1234567,,,50016211,,, +11690,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Car,1300-1500,1234567,,,50016211,,, +11690,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,315,7939,284,112,,1500-1800,......7,,,50016211,,, +11690,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,315,7939,284,112,Car,1100-1500,1234567,,,50016211,,, +11690,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,SOc,0651-0800,1234567,,,50023886,,, +11695,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,75,5075,109,81,FE,0100-0300,1234567,,,50006035,,, +11695,UZB,en,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1400-1430,1234567,,,50023164,,, +11695,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0300,1234567,,,50023887,,, +11695,CLN,uz,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,CAs,1500-1530,1234567,,,50023888,,, +11695,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,305,11578,41,128,,1700-1800,1234567,,,50020879,,, +11695,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,CAs,0030-0100,1234567,,,50023165,,, +11695,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,INS,2030-2200,1234567,,,50016212,,, +11700,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,,0600-0700,1234567,,,50006039,,, +11700,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,204,660,211,37,WAf,0700-0800,1234567,,,50006039,,, +11700,F,ar,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,ME,1700-1715,1234567,,,50023169,,, +11700,F,ar,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,ME,1715-1745,123.5..,,,50023169,,, +11700,F,ar,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,ME,1745-1800,1.3.5..,,,50023169,,, +11700,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0300-0400,1234567,,,50023168,,, +11700,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,INS,1030-1130,1234567,,,50023167,,, +11700,CHN,ms,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,INS,1230-1330,1234567,,,50023167,,, +11700,SWZ,HAD,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1645-1700,....56.,,,50023170,,, +11700,SWZ,KAM,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1630-1645,....56.,,,50023170,,, +11700,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1630-1645,12.....,,,50023170,,, +11700,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1700-1715,......7,,,50023170,,, +11700,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1700-1730,123456,,,50023170,,, +11700,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1730-1800,.....6.,,,50023170,,, +11700,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1630-1700,..34...,,,50023170,,, +11700,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1645-1700,12....7,,,50023170,,, +11700,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1715-1745,......7,,,50023170,,, +11700,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,,9062,157,124,ETH,1730-1800,12345..,,,50023170,,, +11700,AUS,C-H,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,1130-1145,..3.5..,,,50023166,,, +11700,AUS,RWG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,1145-1200,1234567,,,50023166,,, +11700,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,1130-1145,1....67,,,50023166,,, +11700,AUS,my,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,1130-1145,.2.4...,,,50023166,,, +11705,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,,0100-0200,1234567,,,50006046,,, +11710,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAs,0400-0500,1234567,,,50023173,,, +11710,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,CAs,0300-0400,1234567,,,50023172,,, +11710,IND,ar,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,102,6235,85,95,ME,1730-1945,1234567,,,50010481,,, +11710,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,SEA,2245-0045,1234567,,,50010481,,, +11710,IND,fa,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,1615-1730,1234567,,,50010481,,, +11710,IND,fr,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,WAf,1945-2030,1234567,,,50010481,,, +11710,IND,my,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,102,6235,85,95,SEA,1215-1315,1234567,,,50010481,,, +11710,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,1000-1805,1234567,,,40001075,,, +11710,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,2025-0130,1234567,,,40001075,,, +11710,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1300-1400,1234567,,,50016215,,, +11710,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1500-1600,1234567,,,50016215,,, +11710,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1400-1500,1234567,,,50016215,,, +11710,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1600-1700,1234567,,,50016215,,, +11710,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,NAm,1700-1800,1234567,,,50016215,,, +11710,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,330,9208,36,120,FE,0700-0800,1234567,,,50020888,,, +11710,J,ru,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,330,9208,36,120,FE,0530-0600,1234567,,,50020888,,, +11710,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,0600-0800,1234567,,,50023171,,, +11710,ARG,en,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0200-0300,.23456.,779,,50006048,,, +11710,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,2200-2400,12345..,779,,50006048,,, +11710,ARG,fr,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0300-0400,.23456.,779,,50006048,,, +11710,ARG,ja,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0100-0200,.23456.,779,,50006048,,, +11710,ARG,pt,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0000-0100,.23456.,779,,50006048,,, +11710,ARG,zh,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,335,11502,230,132,Am,0400-0500,.23456.,779,,50006048,,, +11715,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,55,1205,156,45,ME,0500-0530,1234567,,,50006057,,, +11715,IND,ne,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,124,6235,85,95,NPL,0130-0230,1234567,,,50009853,,, +11715,USA,en,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,350,8617,307,125,WNA,1400-1500,1234567,,,50016217,,, +11715,USA,en,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,70,8617,307,125,ENA,1300-1400,1234567,,,50016217,,, +11715,USA,es,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,150,8617,307,125,CAm,1500-1600,1234567,,,50016217,,, +11720,BUL,ti,V.o.Forum of Eritreans,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,EAf,1700-1800,.2.4.67,,,50023889,,, +11720,BUL,ti,Voice of Asena,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,EAf,1700-1800,1.3.5..,,,50023890,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,0800-1400,.....6.,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,0800-1400,9999999,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1700-1900,.....6.,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,1700-1900,9999999,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,2200-2300,....5..,,,50006066,,, +11720,FIN,fi,Scandinavian Weekend R.,,Virrat (pi),62.377778,23.623611,,0.4,,1532,35,76,Eu,2200-2300,9999999,,,50006066,,, +11720,IRN,ur,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1250-1420,1234567,,,50023175,,, +11720,CHN,vi,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,100,,7712,60,114,SEA,1200-1300,1234567,,,50023174,,, +11720,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,1100-1200,1234567,,,36201079,,, +11720,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0600-0900,1.34567,,,40001080,,, +11720,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0900-1100,1234567,,,40001080,,, +11720,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,2330-0600,1234567,,,40001080,,, +11720,VTN,VN,VOV1,,Sơn Ty (hno),21.2,105.366667,,100,187,8749,70,123,Oc,2250-1700,1234567,,,50013812,,, +11725,ALB,ar,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,240,1609,135,51,NAf,1600-1800,1234567,,,50006071,,, +11725,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,1900-0200,1234567,,,50023176,,, +11725,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,50,325,18351,32,158,SOc,1851-2150,1234567,,,50006074,,, +11725,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,50,35,18351,32,158,SOc,0500-0800,1234567,,,50006074,,, +11730,F,fr,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,WAf,0530-0600,1234567,,,50008715,,, +11730,BLR,be,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,1200-1500,1234567,,,1200005,,, +11730,BLR,de,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,1900-2040,1234567,,,1200005,,, +11730,BLR,en,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,2100-2300,1234567,,,1200005,,, +11730,BLR,es,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,2100-2120,......7,,,1200005,,, +11730,BLR,fr,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,2040-2100,1234567,,,1200005,,, +11730,BLR,pl,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,1700-1900,1234567,,,1200005,,, +11730,BLR,ru,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,1500-1700,1234567,,,1200005,,, +11730,BLR,ru,BR R Belarus,,Minsk/Kalodziśčy (MI),53.961944,27.779444,,150,246,1438,73,50,,2300-2400,1234567,,,1200005,,, +11730,BLR,be,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1100-1400,1234567,,,50020892,,, +11730,BLR,de,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1800-2000,1234567,,,50020892,,, +11730,BLR,en,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2000-2200,1234567,,,50020892,,, +11730,BLR,es,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2000-2020,1....67,,,50020892,,, +11730,BLR,fr,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1940-2000,1..4.67,,,50020892,,, +11730,BLR,pl,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1600-1800,1234567,,,50020892,,, +11730,BLR,ru,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,1400-1600,1234567,,,50020892,,, +11730,BLR,ru,BR R Belarus,,Mahilyow/Orsha (MA),53.971944,30.352917,,100,,1606,73,53,Eu,2200-2300,1234567,,,50020892,,, +11730,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,500,95,2469,114,55,SAs,1730-1830,1234567,,,50015078,,, +11730,UZB,fa,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,236,4779,79,85,IRN,0400-0430,1234567,,,50008714,,, +11730,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,WNA,0000-0600,1234567,,,50023891,,, +11730,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,WNA,2200-2400,1234567,,,50023891,,, +11730,USA,es,WYFR Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,285,7461,286,112,,0100-0200,1234567,,,50019718,,, +11730,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,0230-0330,1234567,,,50006078,,, +11730,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1100-1200,1234567,,,50023177,,, +11730,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1400-1500,1234567,,,50023177,,, +11735,TZA,en,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Dole (zbw),-6.101981,39.257778,,50,,7182,143,112,,1800-1810,1234.6.,,,40001083,,, +11735,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Dole (zbw),-6.101981,39.257778,,50,,7182,143,112,,1500-1800,1234567,,,40001083,,, +11735,TZA,sw,ZBC R/Sauti ya Tanzania/Spice FM,,Zanzibar/Dole (zbw),-6.101981,39.257778,,50,,7182,143,112,,1810-2045,1234567,,,40001083,,, +11735,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0400-0500,1234567,,,50016221,,, +11735,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0300-0400,1234567,,,50016221,,, +11735,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0500-0600,1234567,,,50016221,,, +11735,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0600-0700,1234567,,,50016221,,, +11735,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,FE,0700-0900,1234567,,,50016221,,, +11735,B,pt,ZYE857 Rdio Transmundial,,Santa Maria/Vila Palmas (RS),-29.738333,-53.555278,,50,60,10803,229,133,,0700-2000,1234567,,,40001084,,, +11740,CVA,Ang,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,58,1205,156,45,WEu,1100-1130,......7,,,50006094,,, +11740,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,58,1205,156,45,NAf,0745-0805,123456,,,50006094,,, +11740,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,58,1205,156,45,,0610-0745,......7,,,50006094,,, +11740,CVA,uk,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,58,1205,156,45,UKR,0715-0915,......7,,,50006094,,, +11740,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,310,1205,156,49,58,0950-1030,......7,,,50006094,,, +11740,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,145,1205,156,49,228,0645-0705,......7,,,50006094,,, +11740,IRN,fa,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,CAs,0250-0620,1234567,,,50023178,,, +11740,IRN,hi,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,0150-0250,1234567,,,50023179,,, +11740,IND,fa,All India R GOS,,Aligarh (UP),27.997222,78.097222,,100,,6367,85,101,AFG,0300-0345,1234567,,,50022013,,, +11740,IND,ps,All India R GOS,,Aligarh (UP),27.997222,78.097222,,100,,6367,85,101,AFG,0215-0300,1234567,,,50022013,,, +11740,IND,en,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,Oc,2045-2230,1234567,,,50016223,,, +11740,IND,fa,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,AFG,1315-1415,1234567,,,50016223,,, +11740,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,2300-2400,1234567,,,50016223,,, +11740,IND,ps,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,AFG,1415-1530,1234567,,,50016223,,, +11740,IND,si,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,CLN,0045-0115,1234567,,,50016223,,, +11740,IND,ta,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,0000-0045,1234567,,,50016223,,, +11740,CHN,en,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1430-1500,1234567,,,40001088,,, +11740,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1100-1430,1234567,,,40001088,,, +11740,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1500-1605,1234567,,,40001088,,, +11740,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2100-0100,1234567,,,40001088,,, +11740,AFS,so,IBRA R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1730-1800,1234567,,,50023180,,, +11740,SNG,VN,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,1,10381,83,124,SEA,1100-1130,1234567,,,50006097,,, +11740,SNG,en,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,1,10381,83,124,SEA,1200-1230,1234567,,,50006097,,, +11740,SNG,my,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,330,10381,83,124,SEA,1030-1100,1234567,,,50006097,,, +11740,SNG,my,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,330,10381,83,124,SEA,1430-1500,1234567,,,50006097,,, +11740,SNG,th,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,1,10381,83,124,SEA,1130-1200,1234567,,,50006097,,, +11740,SNG,th,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,1,10381,83,124,SEA,1230-1300,1234567,,,50006097,,, +11740,SNG,VN,NHK R Japan,,Kranji (nw),1.423056,103.7325,,100,1,10381,83,128,SEA,1300-1330,1234567,,,50006097,,, +11750,D,bo,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1600,...45..,,,50023185,,, +11750,D,en,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1600,123..67,,,50023185,,, +11750,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,EGY,0600-0700,1234567,,,50023181,,, +11750,UAE,hi,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,1600-1630,1234567,,,50023183,,, +11750,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,1500-1530,1234567,,,50023187,,, +11750,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,CAm,1300-1500,1234567,,,50016465,,, +11750,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,0600-0800,1.34567,,,40001090,,, +11750,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,37,7767,53,115,,2200-0600,1234567,,,40001090,,, +11750,CLN,si,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,ME,1630-1830,1234567,,,50022014,,, +11750,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,0330-0400,1234567,,,50023186,,, +11750,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,0900-1000,1234567,,,50023182,,, +11750,AFS,ig,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,NIG,1930-2000,1234567,,,50023184,,, +11750,PHL,te,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,1430-1457,1234567,,,50015092,,, +11750,PHL,LAH,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1400-1430,1234567,,,50015091,,, +11750,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1200-1300,1234567,,,50023188,,, +11750,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,1300-1400,.....67,,,50023188,,, +11750,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SEA,0000-0200,1234567,,,50009859,,, +11750,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,50,120,13569,74,142,,0730-0830,1234567,,,50016225,,, +11755,E,ru,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,350,68,1547,213,47,Eu,1700-1730,12345..,,,50018663,,, +11755,AFS,fr,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,2000-2030,1234567,,,50023189,,, +11755,AFS,yo,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,NIG,2030-2100,1234567,,,50023189,,, +11760,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,CAm,2330-0045,1234567,,,50023190,,, +11760,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,CAm,0045-0200,1234567,,,50023190,,, +11760,IRN,bn,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1420-1520,1234567,,,50020912,,, +11760,IRN,ar,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,ME,1020-1120,1234567,,,50023191,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Am,0000-0200,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Am,0200-0500,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Am,1100-1300,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,,7939,284,112,Am,1300-1500,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,Am,0000-0500,1234567,,,50016226,,, +11760,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1200-1400,1234567,,,50006114,,, +11760,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0000-0600,1234567,,,40001091,,, +11760,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0600-0900,1.34567,,,40001091,,, +11760,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,165,7767,53,115,,0900-1200,1234567,,,40001091,,, +11760,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,CAm,1900-2000,1234567,,,50016226,,, +11760,CUB,eo,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,20,7939,284,116,Am,1500-1530,......7,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,,2300-0400,1234567,,,50016226,,, +11760,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,Am,1100-1500,1234567,,,50016226,,, +11760,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,CAm,2000-2030,1234567,,,50016226,,, +11760,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,,9364,56,120,FE,1300-1400,1234567,,,50009864,,, +11760,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,,9364,56,120,FE,1400-1500,1234567,,,50009864,,, +11760,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,,1300-1500,1234567,,,50009864,,, +11760,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,0900-1100,.....67,,,50009864,,, +11760,SWZ,Had,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1645-1700,....56.,,,50020913,,, +11760,SWZ,Kam,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1630-1645,....56.,,,50020913,,, +11760,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1630-1645,12.....,,,50020913,,, +11760,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1700-1715,......7,,,50020913,,, +11760,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1700-1730,123456,,,50020913,,, +11760,SWZ,am,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1730-1800,.....6.,,,50020913,,, +11760,SWZ,en,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,0500-0800,1234567,,,50020913,,, +11760,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1630-1700,..34...,,,50020913,,, +11760,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1645-1700,12....7,,,50020913,,, +11760,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1715-1745,......7,,,50020913,,, +11760,SWZ,om,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1730-1800,12345..,,,50020913,,, +11760,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,304,11578,41,128,,2300-2400,1234567,,,50020914,,, +11765,TWN,VN,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,100,205,9489,58,125,SEA,1200-1300,1234567,,,50007744,,, +11765,TWN,zh,Xi Wang zhi Sheng SOH,,New Taipei City/Tamsui (TP),25.185556,121.416111,,100,325,9364,56,125,FE,1600-1700,1234567,,,50009867,,, +11765,MRA,km,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,250,270,11578,41,128,,2200-2230,1234567,,,50021716,,, +11765,B,pt,ZYE727 Super Rdio Deus Amor,,Curitiba/Corpo de Bombeiros (PR),-25.449444,-49.125,,10,20,10169,228,138,,0900-0200,1234567,91,,40001093,,, +11770,IRN,en,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,NAm,0320-0420,1234567,,,50023194,,, +11770,NIG,ar,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,100,,5068,184,88,NAf,2100-2200,1234567,,,50019721,,, +11770,NIG,sw,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,100,,5068,184,88,WAf,1600-1630,1234567,,,50019721,,, +11770,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,ME,0600-0700,1234567,,,50006126,,, +11770,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0300-0800,1234567,,,40001094,,, +11770,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0800-1100,1.34567,,,40001094,,, +11770,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1100-1200,1234567,,,40001094,,, +11770,CHN,zh,Xinjiang RGD 738 Zonghe,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1200-1800,1234567,,,40001094,,, +11770,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0700-0800,1234567,,,50012782,,, +11770,CHN,vi,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,0000-0100,1234567,,,50006125,,, +11770,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,,8789,67,123,SEA,0100-0200,1234567,,,50023193,,, +11770,AFS,mas,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1730-1800,1234567,,,50023195,,, +11770,AFS,sw,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1700-1730,1234567,,,50023195,,, +11775,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1900-2000,1234567,,,50023196,,, +11775,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1900-2100,1234567,,,50023196,,, +11775,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2005-2100,1234567,,,50023196,,, +11775,F,fr,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,2000-2005,1234567,,,50023196,,, +11775,IND,bo,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,25,7123,98,104,Tib,1215-1330,1234567,,,50016228,,, +11775,IND,ne,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,25,7123,98,104,NPL,1330-1430,1234567,,,50016228,,, +11775,AIA,en,Caribbean Beacon,,The Valley (SW) (tvy),18.219522,-63.019178,,100,320,7022,265,107,NAm,1000-2200,1234567,,,50014049,,, +11775,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1215-1330,1234567,,,50023892,,, +11775,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2300-2400,1234567,,,50023892,,, +11775,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2300-2400,1234567,,,50023197,,, +11780,D,tk,R Liberty,,Biblis (hes),49.687222,8.490278,,100,88,306,151,40,,1500-1600,1234567,,,50020930,,, +11780,D,uz,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,75,316,151,40,CAs,1600-1700,1234567,,,50020929,,, +11780,E,Sef,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,248,1547,213,49,,0115-0145,.2.....,,,50018674,,, +11780,KWT,uz,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,CAs,1500-1530,1234567,,,50023200,,, +11780,IRN,he,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,0420-0450,1234567,,,50023198,,, +11780,CHN,my,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,ME,1400-1500,1234567,,,50006138,,, +11780,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0500-0600,1234567,,,36200212,,, +11780,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0900-1000,1234567,,,36200212,,, +11780,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0600-0700,1.34567,,,36200212,,, +11780,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0700-0900,1.34567,,,36200212,,, +11780,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0000-0100,1234567,,,50006139,,, +11780,B,pt,ZYE365 Rdio Nacional da Amaznia,,Braslia/Rodeador (DF),-15.603333,-48.130556,,250,345,9171,232,120,,2300-0800,1234567,55,,40001097,,, +11780,CHN,my,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,225,8246,70,120,SEA,1300-1400,1234567,,,50006140,,, +11780,AFS,en,NHK R Japan,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,1800-1830,1234567,,,50023199,,, +11780,SNG,my,R Australia,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SEA,0100-0130,1234567,,,50008749,,, +11785,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,310,1609,135,51,WEu,0700-0900,1234567,,,50006146,,, +11785,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAs,0200-0400,1234567,,,50006147,,, +11785,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,1400-1500,1234567,,,50006147,,, +11785,UAE,sw,IBRA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1730-1800,1234567,,,50023202,,, +11785,CHN,vi,China R Int.,,Baoji/SARFT722 (SA),34.5,107.166667,,100,,7712,60,114,SEA,1100-1200,1234567,,,50023201,,, +11790,D,fa,R Farda,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,IRN,1500-1630,1234567,,,50023205,,, +11790,F,en,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,12345..,,,50023206,,, +11790,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WAf,0600-0630,1234567,,,50023203,,, +11790,RUS,tt,GTRK Tatarstan-Na Volne Tatarstana,,Novosibirsk/Oyash (NS),55.492778,83.690556,,100,,4822,54,85,Sib,0410-0500,1234567,,,50023204,,, +11790,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,239,5347,76,91,ME,1200-1400,1234567,,,50010499,,, +11790,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,0000-0100,1234567,,,50006152,,, +11790,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,2300-2400,1234567,,,50006152,,, +11790,AFS,sw,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,15,9003,160,124,EAf,0530-0600,1234567,,,50006154,,, +11795,ROU,ru,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,CAs,1430-1500,1234567,,,50023207,,, +11795,TUR,fa,Voice of Turkey,,Emirler,39.401389,32.855833,,500,95,2469,114,55,IRN,0930-1100,1234567,,,50002591,,, +11795,KWT,my,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,SEA,1400-1430,1234567,,,50023208,,, +11795,UAE,,R Okapi,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,230,5075,109,84,,1600-1700,1234567,,,50018680,,, +11795,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,173,5347,76,91,SAs,1100-1200,1234567,,,50006157,,, +11795,KOR,es,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,SAm,1100-1200,1234567,,,50018681,,, +11795,MRA,my,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1330-1400,1234567,,,50023210,,, +11795,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,1230-1330,1234567,,,50023209,,, +11800,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,Cau,1700-1800,1234567,,,50023213,,, +11800,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,0300-0400,1234567,,,50023212,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,0,2000-2200,1234567,,,50014269,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,2000-2100,1234567,,,50014269,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,2100-2200,1234567,,,50014269,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,EAf,1900-1930,1234567,,,50014269,,, +11800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,EAf,1930-2000,1234567,,,50014269,,, +11800,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1000-1100,1234567,,,50014269,,, +11800,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1500-1600,1234567,,,50014269,,, +11800,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,0700-0730,1234567,,,50009875,,, +11800,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,0030-0600,1234567,,,40001101,,, +11800,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,0600-0900,12.4567,,,40001101,,, +11800,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,0900-1030,1234567,,,40001101,,, +11800,AFS,en,NHK R Japan,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,CAf,1800-1830,1234567,,,50023211,,, +11805,TUR,zh,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,FE,1200-1300,1234567,,,50023215,,, +11805,CLN,ur,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,IND,1600-1630,1234567,,,50023216,,, +11805,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,INS,1330-1430,1234567,,,50023214,,, +11805,MRA,VN,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-0030,1234567,,,50023218,,, +11805,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1630-1700,1.3.5..,,,50023217,,, +11805,GUM,sd,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,PAK,1630-1700,.2.4.67,,,50023217,,, +11805,B,pt,ZYE770 Super Rdio Deus Amor,,Rio de Janeiro/Sitio Boa Vista (RJ),-22.778611,-43.015833,,10,45,9607,225,136,,0000-2400,1234567,8,,40001102,,, +11810,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,60,4724,102,77,SAs,0720-0820,1234567,,,50022018,,, +11810,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,,1800-2200,1234567,,,50009879,,, +11810,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,CAf,1800-2100,1234567,,,50009879,,, +11810,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,CAf,2100-2200,12345..,,,50009879,,, +11810,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0100-0300,1234567,,,36201080,,, +11810,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0000-0100,1234567,,,36201080,,, +11810,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,305,8663,46,119,Eu,2200-2300,1234567,,,50006174,,, +11810,KOR,es,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,SAm,0100-0200,1234567,,,50006174,,, +11810,KOR,ja,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,J,0200-0300,1234567,,,50006174,,, +11810,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,SAm,0300-0400,1234567,,,50006174,,, +11815,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1400-1700,1234567,,,50023219,,, +11815,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,15,7773,50,115,,0300-0400,1234567,,,40001104,,, +11815,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,SEA,0900-1500,1234567,,,50006176,,, +11815,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,SEA,1500-1700,1234567,,,50006176,,, +11815,B,pt,ZYE440 Rdio Brasil Central,,Goinia/Fazenda Bananal (GO),-16.588014,-49.216389,,7.5,0,9325,233,136,,0700-0400,1234567,987,,40001105,,, +11820,D,ku,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,ME,1700-1800,1234567,,,50023220,,, +11820,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,320,4552,116,76,Eu,1800-2300,1234567,,,50016232,,, +11820,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,0000-0100,1234567,,,50006179,,, +11825,G,fa,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,1500-1530,1234567,,,50023893,,, +11825,G,ps,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,AFG,1430-1500,1234567,,,50023893,,, +11825,ROU,zh,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,FE,1400-1430,1234567,,,50023222,,, +11825,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,EEu,0450-0520,1234567,,,50020961,,, +11825,KWT,fa,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1530-1630,1234567,,,50023224,,, +11825,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0920-0950,1234567,,,50023221,,, +11825,PHL,KHA,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1300-1330,1234567,,,50008778,,, +11825,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1100-1200,1234567,,,50023223,,, +11825,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1230,1234..7,,,50023223,,, +11825,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1300,....56.,,,50023223,,, +11825,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1230-1300,1234..7,,,50023223,,, +11830,IRN,id,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SEA,2220-2320,1234567,,,50023226,,, +11830,IRN,sw,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EAf,1720-1820,1234567,,,50023226,,, +11830,RUS,en,Voice of Russia,,Petropavlovsk/Yelizovo (SW) (KM),53.190833,158.41,,250,64,8020,17,113,,2200-2300,1234567,,,50020300,,, +11830,CHN,tl,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,PHL,1430-1500,1234567,,,50023225,,, +11830,AFS,en,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1830-1900,1234567,,,50023227,,, +11830,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,349,10223,62,124,,0000-0100,1234567,,,50021717,,, +11830,B,pt,ZYE441 Rdio Daqui,,Goinia/Fazenda Botafogo (GO),-16.659167,-49.227222,,10,15,9332,233,135,,0800-2000,1234567,,,40001109,,, +11835,TUR,az,Voice of Turkey,,Emirler,39.401389,32.855833,,500,310,2469,114,55,Cau,0800-0900,1234567,,,50010512,,, +11835,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,0000-0600,1234567,,,40001110,,, +11835,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,0600-0900,12.4567,,,40001110,,, +11835,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,257,7808,59,113,,0900-1100,1234567,,,40001110,,, +11840,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1400-1800,1234567,,,50023228,,, +11840,IND,hi,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,0315-0415,1234567,,,50010514,,, +11840,IND,zh,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,FE,1145-1315,1234567,,,50010514,,, +11840,IND,zh,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,250,65,6248,85,96,,1145-1315,1234567,,,50016234,,, +11840,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,,0315-0415,1234567,,,50016235,,, +11840,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1145-1315,1234567,,,50023894,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,,2100-2300,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CHL,0100-0400,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CHL,0400-0500,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CHL,2300-0100,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CHL,2300-0500,1234567,,,31600136,,, +11840,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,,2100-0500,1234567,,,31600136,,, +11840,CLN,fr,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,Af,2030-2100,.....67,,,50023230,,, +11840,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,2000-2030,1234567,,,50023229,,, +11840,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1900-2000,1234567,,,50023229,,, +11840,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,165,11715,42,133,,1000-1018,123456,,,50006195,,, +11840,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,165,11715,42,133,Oc,1000-1019,12345..,,,50006195,,, +11840,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,165,11715,42,133,Oc,1000-1030,.....6.,,,50006195,,, +11840,AUS,en,R Australia,,Shepparton (SW) (VIC),-36.325,145.416944,,100,70,16373,78,148,,2200-2400,1234567,,,37700054,,, +11845,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,0100-0600,1234567,,,36201066,,, +11845,CHN,zh,CNR 2,,Xianyang/SARFT594 (SA),34.375278,108.610278,,150,290,7808,59,113,,0600-0800,12.4567,,,36201066,,, +11845,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0000-0100,1234567,,,50023231,,, +11845,AFS,so,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,30,9003,160,124,EAf,1800-1830,1234567,,,50020976,,, +11850,D,ku,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,ME,1400-1500,1234567,,,50023233,,, +11850,IND,ne,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,50,102,6248,85,103,NPL,0700-0800,1234567,,,50016238,,, +11850,MDG,fr,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,250,305,8830,141,119,WAf,2030-2100,1234567,,,50015163,,, +11850,PHL,VN,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1300-1327,1234567,,,50006209,,, +11850,PHL,km,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1000-1030,1234567,,,50006209,,, +11850,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1030-1130,1234567,,,50006209,,, +11850,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1300-1330,1234567,,,50006209,,, +11850,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1030-1127,1234567,,,50006209,,, +11850,MRA,km,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,2230-2330,1234567,,,50023232,,, +11855,ALB,zh,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,Eu,0700-0900,1234567,,,50023234,,, +11855,ARS,ar,BSKSA Idha'atu-i Jeddah,,Jeddah (mkh),21.383333,39.416667,,100,,4435,128,81,ME,0600-1700,1234567,,,50023895,,, +11855,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1000,1234567,,,50023896,,, +11855,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0900-1000,1234567,,,50023237,,, +11855,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0000-0027,1234567,,,50013588,,, +11855,PHL,ta,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0030-0100,1234567,,,50013588,,, +11855,PHL,ta,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0030-0057,1234567,,,50013588,,, +11855,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1230,1234..7,,,50023236,,, +11855,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1300,....56.,,,50023236,,, +11855,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1230-1300,1234..7,,,50023236,,, +11855,B,pt,ZYE954 Rdio Aparecida,,Aparecida/Morro do Cruzeiro (SP),-22.846944,-45.221389,,1,30,9721,226,146,,0700-0200,1234567,9,,36902748,,, +11860,D,kab,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,1730-1800,1234567,,,50023241,,, +11860,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1300-1330,1234567,,,50023238,,, +11860,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1400-1430,1234567,,,50023238,,, +11860,F,wo,Adventist World R,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1900-1930,1234567,,,50023242,,, +11860,AUT,ar,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,LBY,1830-1900,1234567,,,50023240,,, +11860,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,CAf,1800-1830,1234567,,,50023239,,, +11860,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0300-0600,1234567,,,40001116,,, +11860,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,50,85,7116,74,111,,0600-0900,1.34567,,,40001116,,, +11860,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,283,8246,70,113,FE,0130-0230,1234567,,,50006221,,, +11860,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,ENA,1100-1300,1234567,,,50017042,,, +11860,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,ENA,1300-1500,1234567,,,50017042,,, +11860,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,ENA,1100-1500,1234567,,,50017042,,, +11860,CLN,ko,CMI Voice of Wilderness,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,KRE,1300-1400,1234567,,,50023897,,, +11860,CLN,ko,CMI Voice of Wilderness,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,KRE,1400-1430,......7,,,50023897,,, +11860,BOT,ha,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,WAf,2030-2100,12345..,,,50023243,,, +11860,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2200-2300,1234..7,,,50023244,,, +11860,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,2300-2400,1234567,,,50023244,,, +11865,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,1500-1600,1234567,,,50023246,,, +11865,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1600,1234567,,,50023898,,, +11870,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1600-1700,1234567,,,50023247,,, +11870,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,2200-2300,1234567,,,50023248,,, +11870,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SAs,0200-0300,1234567,,,50006235,,, +11870,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,155,7317,294,106,SAm,0000-1000,1234567,,,50002685,,, +11870,PHL,bn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,1400-1427,1234567,,,50006237,,, +11870,PHL,hi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,1330-1400,1234567,,,50006237,,, +11870,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SEA,1430-1457,1234567,,,50006237,,, +11870,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,305,11578,41,128,,1600-1700,1234567,,,50020989,,, +11875,F,fr,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,,1900-2000,1234567,,,50019502,,, +11875,D,,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1630-1730,1234567,,,50023252,,, +11875,UAE,KNK,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1830-1900,12345..,,,50023251,,, +11875,RRW,aa,FEBA R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,EAf,1600-1627,1234567,,,50023899,,, +11875,CHN,mn,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,318,7797,50,108,MNG,0000-0100,1234567,,,50006243,,, +11875,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,SEA,1100-1200,1234567,,,50006244,,, +11875,TWN,zh,R France Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,352,9489,58,121,FE,0930-1030,1234567,,,50015889,,, +11875,CHN,zh,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,0700-0800,1234567,,,50018723,,, +11875,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,2300-2400,1234567,,,50023253,,, +11875,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1230-1300,1234567,,,50023249,,, +11875,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1300-1315,.....6.,,,50023249,,, +11880,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0500-0900,1234567,,,50023255,,, +11880,CUB,en,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Af,2200-2300,1234567,,,50019733,,, +11880,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Af,2100-2130,1234567,,,50019733,,, +11880,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Af,2130-2200,1234567,,,50019733,,, +11880,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,50,16373,78,148,Oc,1530-2000,1234567,,,50016240,,, +11885,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,20,5762,180,95,WAf,2030-2100,12345..,,,50018728,,, +11885,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0600-0700,1234567,,,40001123,,, +11885,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0300-0600,1234567,,,40001123,,, +11885,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0700-0800,1234567,,,40001123,,, +11885,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0800-1100,1.34567,,,40001123,,, +11885,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1100-1800,1234567,,,40001123,,, +11885,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0000-0200,1234567,,,50006257,,, +11885,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2200-2400,1234567,,,50023900,,, +11885,USA,en,PCJ R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,NAm,1330-1430,......7,,,50023901,,, +11890,G,ru,R Liberty,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,EEu,1500-1700,1234567,,,50023258,,, +11890,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,200,325,3024,131,64,Eu,2115-2245,1234567,,,50021844,,, +11890,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,315,3170,130,65,,2115-2245,1234567,,,50017615,,, +11890,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,1930-2000,1234567,,,50023256,,, +11890,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,2000-2030,....5..,,,50023256,,, +11890,PHL,vi,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,SEA,1315-1400,1234567,,,50021006,,, +11890,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,,1230-1300,12345.7,,,50021006,,, +11890,PHL,zh,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,,1230-1315,.....6.,,,50021006,,, +11890,PHL,en,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,ME,1730-1930,1234567,,,50023257,,, +11895,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,80,1547,213,49,,0500-0700,1234567,,,50018732,,, +11895,RRW,fa,BBC WS,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,IRN,0230-0330,1234567,,,50023259,,, +11895,RRW,fa,BBC WS,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,IRN,0330-0430,1234567,,,50023259,,, +11895,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,,0900-1000,1234567,,,50021720,,, +11895,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,FE,1100-1200,1234567,,,50023260,,, +11895,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,FE,1100-1300,1234567,,,50023260,,, +11895,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,FE,1200-1300,1234567,,,50023260,,, +11895,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SAs,0100-0200,1234567,,,50023261,,, +11895,TWN,ko,Family R,,Huwei (SW) (YL),23.726389,120.417222,,100,2,9441,57,125,,0800-0900,1234567,,,21800029,,, +11900,D,ady,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,1540-1600,1234567,,,50023264,,, +11900,D,av,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,1500-1520,1234567,,,50023264,,, +11900,D,ce,R Liberty,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Cau,1520-1540,1234567,,,50023264,,, +11900,UAE,ur,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,SAs,1400-1445,1234567,,,50023263,,, +11900,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,WAf,2200-2300,1234567,,,50023265,,, +11900,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,95,7797,50,113,FE,0000-0100,1234567,,,50006281,,, +11900,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,Oc,1300-1400,1234567,,,50023262,,, +11900,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,SOc,1551-1750,1234567,,,50023902,,, +11905,F,en,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,12345..,,,50023267,,, +11905,EGY,ar,ERTU Al-Barnameg al-Aam,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,ENA,0200-0700,1234567,,,50023266,,, +11905,KWT,am,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,185,4199,110,75,EAf,1800-1900,1234567,,,50017186,,, +11905,KWT,om,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,185,4199,110,75,EAf,1730-1800,12345..,,,50017186,,, +11905,KWT,ti,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,185,4199,110,75,EAf,1900-1930,12345..,,,50017186,,, +11905,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0100-0900,1234567,,,40001125,,, +11905,CLN,en,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,35,350,8200,97,124,SAs,0200-0330,1234567,,,50016243,,, +11905,CLN,hi,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,35,350,8200,97,124,SAs,0115-0200,1234567,,,50016243,,, +11905,CLN,hi,SLBC Asia Service,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,35,350,8200,97,124,SAs,0115-0330,1234567,,,50016243,,, +11910,AUT,ur,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,PAK,1600-1630,1234567,,,50023268,,, +11910,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,300,140,1660,112,49,,0800-0815,..3....,,,50011706,,, +11910,CHN,es,RNE R Exterior,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,165,7797,50,108,PHL,1200-1400,1234567,,,50016474,,, +11910,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,1900-2000,1234567,,,50016244,,, +11910,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,1800-1900,1234567,,,50016244,,, +11910,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,271,8231,44,116,SAf,2000-2100,1234567,,,50016244,,, +11910,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,1900-0100,1234567,,,50006295,,, +11915,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,1700-1720,123456,,,50023269,,, +11915,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,ME,1720-1735,..3....,,,50023269,,, +11915,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,295,4552,116,76,NAf,1800-2300,1234567,,,50016245,,, +11915,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,114,5762,180,95,Af,1100-1130,.....6.,,,50017807,,, +11915,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023903,,, +11915,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0030-0600,1234567,,,40001127,,, +11915,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0900,12.4567,,,40001127,,, +11915,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0900-1000,1234567,,,40001127,,, +11915,TWN,id,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,205,9489,58,121,INS,1000-1100,1234567,,,50007801,,, +11915,TWN,zh,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,225,9489,58,121,SEA,1200-1230,1234567,,,50007801,,, +11915,TWN,zh,R Taiwan Int.,,Tainan/Annan (TNS),23.044167,120.168611,,250,225,9489,58,121,SEA,1230-1300,1234567,,,50007801,,, +11915,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,INS,1100-1200,1234567,,,50021721,,, +11915,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,208,9434,57,125,SEA,1300-1400,1234567,,,50021721,,, +11915,B,pt,ZYE851 Rdio Novo Tempo,,Porto Alegre/BR-116 (RS),-29.997361,-51.287333,,7.5,350,10712,227,141,,0700-0300,1234567,,,40001129,,, +11920,D,pt,HCJB Global,,Nauen (brb),52.647778,12.908611,,100,240,445,80,42,SAm,2300-0045,1234567,,,50018739,,, +11920,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,240,1609,135,51,WAf,1400-1600,1234567,,,50006302,,, +11920,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1600-1700,1234567,,,50023904,,, +11920,MRA,uz,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,250,305,11578,41,128,,1500-1530,1234567,,,50021020,,, +11920,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1600-1700,1234567,,,50023270,,, +11925,D,om,Voice of America,,Nauen (brb),52.647778,12.908611,,250,140,445,80,38,,1730-1800,12345..,,,50021023,,, +11925,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Cau,0700-1000,1234567,,,50023274,,, +11925,IRN,ru,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0250-0320,1234567,,,50019736,,, +11925,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023905,,, +11925,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,1000-1805,1234567,,,40001132,,, +11925,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2025-0200,1234567,,,40001132,,, +11925,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0500-0600,.....6.,,,50023272,,, +11925,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0530-0600,......7,,,50023272,,, +11925,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0000-0100,1234567,,,50023275,,, +11925,PLW,en,NHK R Japan,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,SEA,1400-1430,1234567,,,50023273,,, +11925,PLW,id,NHK R Japan,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,SEA,1315-1400,1234567,,,50023273,,, +11925,B,pt,ZYE956 Rdio Bandeirantes,,So Paulo/Jardim Santa Emilia (SP),-23.645956,-46.601278,,10,202,9868,227,137,,0000-2400,1234567,22,,40001133,,, +11930,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,270,4552,116,76,WAf,1800-2300,1234567,,,50016247,,, +11930,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,1300-2200,1234567,,,50016248,,, +11935,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1500-1530,1234567,,,50023277,,, +11935,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1500-1600,1234567,,,50023277,,, +11935,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,115,1205,156,49,ME,1630-1700,1234567,,,50015213,,, +11935,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,115,1205,156,49,ME,1715-1730,1234567,,,50015213,,, +11935,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,115,1205,156,49,ME,1700-1715,1234567,,,50015213,,, +11935,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,310,4552,116,76,ME,0900-1200,1234567,,,50016249,,, +11935,IND,en,All India R GOS,,Mumbai=Bombay (MH),19.182778,72.807778,,100,250,6734,96,104,EAf,1745-1945,1234567,,,50016250,,, +11935,CHN,zh,CNR 5 Zhonghua zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0055-0615,1234567,,,40001135,,, +11935,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,2300-2400,1234567,,,50023276,,, +11935,PHL,hmn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1200-1230,1234567,,,50006321,,, +11935,PHL,hmn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1200-1227,1234567,,,50006321,,, +11935,PHL,kar,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0000-0030,1234567,,,50006321,,, +11935,PHL,kar,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,0000-0027,1234567,,,50006321,,, +11935,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1300-1500,1234567,,,50023279,,, +11940,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,242,1547,213,49,LAm,1900-2300,.....67,,,50018749,,, +11940,MDG,ar,R Dabanga,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0430-0430,1234567,,,50023280,,, +11940,MDG,ar,R Tamazuj,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0400-0430,1234567,,,50023281,,, +11945,F,ja,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,155,660,211,37,SAf,1700-1900,1234567,,,50006333,,, +11945,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023907,,, +11945,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023906,,, +11945,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1500-1700,1234567,,,50023906,,, +11945,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,SEA,0100-0200,1234567,,,50006329,,, +11945,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,,10171,62,124,355,1000-1200,1234567,,,50015222,,, +11945,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,,10171,62,124,FE,1000-1157,1234567,,,50015222,,, +11945,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,100,16373,78,148,SOc,0600-1000,1234567,,,50016251,,, +11945,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,1100-1300,1234567,,,50016251,,, +11950,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,100,290,7116,74,108,,0300-0600,1234567,,,40001141,,, +11950,CHN,zh,Xizang RGD Hanyu,,Lhasa/SARFT602 (XZ),29.648056,91.248333,,100,290,7116,74,108,,0600-0900,1.34567,,,40001141,,, +11955,F,ru,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,55,660,211,37,,1700-1800,1234567,,,50021722,,, +11955,AUT,tr,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,190,849,119,41,ME,1500-1530,1234567,,,50008857,,, +11955,F,ar,R Algrie Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1800-1900,1234567,,,50023282,,, +11955,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1700-1800,1234567,,,50023283,,, +11955,TUR,ar,Voice of Turkey,,Emirler,39.401389,32.855833,,250,150,2469,114,58,ME,1000-1100,1234567,,,50008856,,, +11955,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,250,150,2469,114,58,,0600-1200,1234567,,,50008856,,, +11955,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,1330-1430,1234567,,,50006337,,, +11955,CHN,ms,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,1230-1330,1234567,,,50006337,,, +11955,CHN,tl,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,122,8246,70,120,PHL,1130-1230,1234567,,,50006337,,, +11955,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,INS,0000-0200,1234567,,,50023284,,, +11960,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0000-0600,1234567,,,40001146,,, +11960,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,37,7797,50,115,,0600-0900,1.34567,,,40001146,,, +11965,G,si,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,CLN,1630-1700,1234567,,,50023286,,, +11965,G,ta,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,CLN,1545-1615,1234567,,,50023286,,, +11965,TUR,tk,Voice of Turkey,,Emirler,39.401389,32.855833,,500,20,2469,114,55,CAs,1300-1330,1234567,,,50008865,,, +11965,RUS,,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0030-0045,1234567,,,50023908,,, +11965,RUS,bho,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0045-0115,12345..,,,50023908,,, +11965,RUS,dz,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0115-0130,123...7,,,50023908,,, +11965,RUS,hi,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0045-0115,......7,,,50023908,,, +11965,RUS,ne,Trans World R,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,SAs,0045-0115,.....6.,,,50023908,,, +11965,PHL,km,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,276,10223,62,124,SEA,1330-1430,1234567,,,50012892,,, +11965,PHL,lo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,270,10223,62,124,SEA,1230-1300,1234567,,,50012892,,, +11965,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,276,10223,62,124,SEA,1200-1230,1234567,,,50012892,,, +11965,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,276,10223,62,124,SEA,1430-1530,1234567,,,50012892,,, +11970,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,EAf,0400-0600,1234567,,,50023288,,, +11970,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,0300-0330,1234567,,,50023289,,, +11970,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,2000-1700,1234567,,,50023909,,, +11970,THA,my,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SEA,0200-0230,1234567,,,50023290,,, +11970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50016478,,, +11975,F,ar,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,160,660,211,37,NAf,0600-0630,1234567,,,50010547,,, +11975,D,tg,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,CAs,1400-1700,1234567,,,50023293,,, +11975,D,ar,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,0700-0800,1234567,,,50023292,,, +11975,MLI,fr,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,WAf,2130-2230,1234567,,,50006358,,, +11975,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,,2230-2400,1234567,,,50006358,,, +11975,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,NAf,2230-2300,1234567,,,50006358,,, +11975,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,NAf,2300-2400,1234567,,,50006358,,, +11975,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,100,,6960,203,107,WAf,1800-1830,1234567,,,50023291,,, +11975,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,0000-0100,1234567,,,50006359,,, +11975,THA,ur,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0100-0200,1234567,,,50021056,,, +11980,UKR,uk,R Dniprovska Hvylya,,Zaporizhzhia (ZP),47.833333,35.133333,,0.3,ND,2094,92,83,,0700-0900,.....67,,,50016254,,, +11980,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1100-1200,1234567,,,50023294,,, +11980,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,,1300-1400,1234567,,,50021723,,, +11980,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0700,1234567,,,50023910,,, +11980,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,,1200-1300,1234567,,,50006364,,, +11980,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,SEA,1200-1400,1234567,,,50006364,,, +11980,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0100-0200,1234567,,,50006364,,, +11980,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,184,8246,70,120,SEA,0900-1100,1234567,,,50006364,,, +11980,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0300-0700,..3....,,,50023296,,, +11985,TUR,ur,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,SAs,1300-1400,1234567,,,50023298,,, +11985,ARM,en,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1800-1900,1234567,,,50023297,,, +11985,ARM,en,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,ME,1500-1600,1234567,,,50023297,,, +11985,ARM,fr,Voice of Russia,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1600-1800,1234567,,,50023297,,, +11985,IND,si,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,174,6235,85,95,CLN,0045-0115,1234567,,,50016257,,, +11985,IND,ta,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,174,6235,85,95,CLN,0000-0045,1234567,,,50016257,,, +11985,TWN,ru,R Taiwan Int.,,Huwei (SW) (YL),23.726389,120.417222,,100,2,9441,57,125,FE,1100-1200,1234567,,,50013376,,, +11990,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1200-1300,1234567,,,50023912,,, +11990,RUS,zh,Voice of America,,Novosibirsk City (NS),54.922222,82.8575,,250,120,4807,55,81,,1300-1500,1234567,,,50021725,,, +11990,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1300,1234567,,,50023911,,, +11990,CHN,vi,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,1100-1200,1234567,,,50023299,,, +11990,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,0000-0100,1234567,,,50006376,,, +11990,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,2300-2400,1234567,,,50006376,,, +11990,MRA,zh,Voice of America,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,310,11575,40,132,,1100-1300,1234567,,,50021724,,, +11995,F,es,R France Int.,,Issoudun (36),46.947222,1.894444,,500,232,660,211,37,SAm,0200-0300,1234567,,,50006380,,, +11995,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,232,660,211,37,CAf,1800-1900,1234567,,,50006380,,, +11995,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,232,660,211,37,WAf,1900-2000,1234567,,,50006380,,, +11995,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,232,660,211,37,WAf,2000-2100,1234567,,,50006380,,, +11995,D,ka,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,108,316,151,40,,1700-1800,1234567,,,50021067,,, +11995,D,ku,Voice of America,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,ME,0500-0600,1234567,,,50023304,,, +11995,D,ku,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,ME,1400-1500,1234567,,,50021067,,, +11995,F,ru,Evang.Missionsgemeinden,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1500-1530,.....6.,,,50023301,,, +11995,ARM,ur,BBC WS,,Gavar (SW) (grk),40.413611,45.192222,,300,100,3205,98,64,SAs,0300-0330,1234567,,,50021063,,, +11995,MDG,so,BBC WS,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,0400-0430,1234567,,,50022344,,, +11995,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,IRN,1600-1700,1234567,,,50023302,,, +11995,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,250,315,10381,83,124,SAs,0100-0130,1234567,,,50009923,,, +11995,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,250,340,10381,83,124,SEA,0200-0230,1234567,,,50009923,,, +11995,MRA,ko,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,2100-2200,1234567,,,50023303,,, +11995,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,CHN,1000-1100,1234567,,,50021066,,, +12000,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,235,6571,289,99,,0000-0100,.23456.,,,50008883,,, +12000,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,235,6571,289,99,,2330-2400,12345..,,,50008883,,, +12000,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,Sib,1130-1200,1234567,,,50007619,,, +12000,VTN,ru,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,Sib,1230-1300,1234567,,,50007619,,, +12000,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1100-1130,1234567,,,50007619,,, +12000,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1200-1230,1234567,,,50007619,,, +12000,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,1300-1330,1234567,,,50007619,,, +12000,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,27,8749,70,123,CHN,2200-2230,1234567,,,50007619,,, +12000,PRG,es,R Licemil,, Guaz (asu),-25.256389,-57.545,,0.025,,10600,235,165,,1820-1900,1234567,,,33900001,,, +12000,PRG,es,R Licemil,, Guaz (asu),-25.256389,-57.545,,0.025,,10600,235,165,,1920-2050,1234567,,,33900001,,, +12005,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,IRN,1530-1700,1234567,,,50023305,,, +12005,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,0730-1530,1234567,,,50022345,,, +12005,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0100-0400,1234567,,,50023913,,, +12005,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SAs,0030-0100,1234567,,,50023914,,, +12005,SNG,my,R Australia,,Kranji (nw),1.423056,103.7325,,100,340,10381,83,128,SEA,0000-0030,1234567,,,50019353,,, +12015,IRN,hi,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1420-1520,1234567,,,50023310,,, +12015,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1200-1300,1234567,,,50023307,,, +12015,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,ME,1300-1400,1234567,,,50023308,,, +12015,RUS,en,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,100,,6080,48,98,FE,0700-0900,1234567,,,50023311,,, +12015,MNG,en,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,1530-1600,1234567,,,50016261,,, +12015,MNG,ja,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,1500-1530,1234567,,,50016261,,, +12015,MNG,mn,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,178,6615,50,99,As,1400-1430,1234567,,,50016261,,, +12015,MNG,zh,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,178,6615,50,99,As,1430-1500,1234567,,,50016261,,, +12015,ASC,ja,NHK R Japan,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,245,6960,203,103,SAm,0800-1000,1234567,,,50021075,,, +12015,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1300-1400,1234567,,,50016260,,, +12015,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1500-1600,1234567,,,50016260,,, +12015,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1800-1900,1234567,,,50016260,,, +12015,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2100-2200,1234567,,,50016260,,, +12015,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1900-2000,1234567,,,50016260,,, +12015,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2200-2300,1234567,,,50016260,,, +12015,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1400-1500,1234567,,,50016260,,, +12015,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1600-1700,1234567,,,50016260,,, +12015,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2000-2100,1234567,,,50016260,,, +12015,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,1700-1800,1234567,,,50016260,,, +12015,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,2300-2400,1234567,,,50016260,,, +12015,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,Eu,0530-0600,1234567,,,50023312,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1000-1030,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1230-1300,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1500-1530,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,2330-2400,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1130-1200,1234567,2,,50006412,,, +12020,VTN,en,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1330-1400,1234567,2,,50006412,,, +12020,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1030-1100,1234567,2,,50006412,,, +12020,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1300-1330,1234567,2,,50006412,,, +12020,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,1430-1500,1234567,2,,50006412,,, +12020,VTN,id,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,INS,2300-2330,1234567,2,,50006412,,, +12020,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,177,8749,70,123,FE,2200-2230,1234567,2,,50006412,,, +12020,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1100-1130,1234567,2,,50006412,,, +12020,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1200-1230,1234567,2,,50006412,,, +12020,VTN,ja,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,1400-1430,1234567,2,,50006412,,, +12020,VTN,zh,Voice of Vietnam,,Sơn Ty (hno),21.2,105.366667,,100,57,8749,70,123,FE,2230-2300,1234567,2,,50006412,,, +12020,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SEA,1700-1900,1234567,,,50023314,,, +12025,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,0800-1000,1234567,,,50023316,,, +12025,D,tk,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,CAs,1400-1600,1234567,,,50023316,,, +12025,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0100-0400,1234567,,,50023915,,, +12025,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,1615-1730,1234567,,,50008901,,, +12025,IND,ml,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,1730-1830,1234567,,,50008901,,, +12025,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,0030-0100,1234567,,,50023315,,, +12025,SNG,my,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,0000-0030,1234567,,,50023315,,, +12030,E,fr,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,110,1547,213,49,ME,1900-2000,......7,,,50018793,,, +12035,TUR,en,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1330-1430,1234567,,,50023323,,, +12035,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,ME,0400-0500,1234567,,,50023319,,, +12035,RRW,en,BBC WS,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,100,,6406,152,101,ME,0300-0400,1234567,,,50023318,,, +12035,RUS,en,Voice of Russia,D,Irkutsk/Angarsk (IR),52.425833,103.669167,,1,,6080,48,118,SAs,1000-1200,1234567,,,50023322,,, +12035,THA,bn,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,1400-1500,.2....7,,,50023320,,, +12035,GUM,kar,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,1500-1530,1234567,,,50023324,,, +12035,GUM,mr,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1530-1600,1234567,,,50023324,,, +12040,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,1830-1900,12345..,,,50023325,,, +12045,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ME,1700-1800,1234567,,,50023327,,, +12045,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1200,1234567,,,50023916,,, +12045,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1500,1234567,,,50023916,,, +12045,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0000-0600,1234567,,,40001151,,, +12045,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0600-0900,1.34567,,,40001151,,, +12045,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0900-1100,1234567,,,40001151,,, +12045,SNG,ja,NHK R Japan,,Kranji (nw),1.423056,103.7325,,250,315,10381,83,124,SAs,1500-1700,1234567,,,50006436,,, +12045,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,1100-1200,1234567,,,50023329,,, +12045,MRA,zh,Voice of America,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023328,,, +12050,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,155,7317,294,106,SAm,1000-1700,1234567,,,50010569,,, +12050,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,220,7317,294,106,CAm,1800-2400,1234567,,,50010569,,, +12050,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1400,1234567,,,50023917,,, +12050,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1200-1400,1234567,,,50023331,,, +12055,RUS,ru,Voice of Russia,,Moskva (one of ku,L,se,t) (MV),55.75,37.3,,100,,2044,66,57,CAs,1200-1600,1234567,,,50023332 +12055,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0200-0300,1234567,,,40001154,,, +12055,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0500-0600,1234567,,,40001154,,, +12055,CHN,kk,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0900-1000,1234567,,,40001154,,, +12055,CHN,mn,CNR 8,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0700-0800,1.34567,,,40001154,,, +12055,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0300-0500,1234567,,,40001154,,, +12055,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0600-0700,1.34567,,,40001154,,, +12055,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0800-0900,1.34567,,,40001154,,, +12055,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,1000-1200,1234567,,,40001154,,, +12055,PHL,LAH,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,0015-0045,1234567,,,50006442,,, +12055,PHL,PAL,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,2330-2345,1234567,,,50006442,,, +12055,PHL,TL,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,2345-0015,1234567,,,50006442,,, +12055,PHL,WA,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,0045-0100,1234567,,,50006442,,, +12060,D,ru,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,EEu,1700-1800,1234567,,,50023333,,, +12065,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1330-1400,1234567,,,50023334,,, +12065,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1400-1430,1234567,,,50023334,,, +12065,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1430-1500,......7,,,50023334,,, +12065,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,Oc,1000-1530,1234567,,,50021091,,, +12070,G,ar,IBRA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,ME,1800-1930,1234567,,,50023918,,, +12070,STP,ha,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,0700-0730,1234567,,,50023335,,, +12070,RRW,am,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,30,6406,152,97,EAf,1600-1700,1234567,,,50012939,,, +12070,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,EAf,1900-1930,1234567,,,50012939,,, +12070,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,EAf,2000-2100,1234567,,,50012939,,, +12070,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,SAf,0500-0530,1234567,,,50012939,,, +12070,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,Af,2100-2200,1234567,,,50012939,,, +12070,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,WAf,0630-0700,1234567,,,50012939,,, +12070,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,WAf,1300-1400,1234567,,,50012939,,, +12070,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,1800-1900,1234567,,,50012939,,, +12070,RRW,pt,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,SAf,0530-0600,1234567,,,50012939,,, +12070,RRW,pt,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,210,6406,152,97,SAf,1930-2000,1234567,,,50012939,,, +12070,CHN,tl,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,145,7808,59,108,PHL,1130-1200,1234567,,,50006449,,, +12070,PHL,zh,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,330,10183,62,128,FE,2300-0100,1234567,,,50006453,,, +12075,KWT,ur,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1400-1500,1234567,,,50021094,,, +12075,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,250,49,8219,99,115,,1200-1300,1234567,,,50021095,,, +12075,SNG,ur,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1500-1600,1234567,,,50022350,,, +12080,CVA,KNK,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1600-1630,.....6.,,,50023340,,, +12080,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,SAm,0045-0200,1234567,,,50023336,,, +12080,STP,ZWE,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,ZWE,1700-1800,1234567,,,50023339,,, +12080,STP,ZWE,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,ZWE,1800-1900,12345..,,,50023339,,, +12080,STP,ar,VoA Darfur,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,1900-1930,1234567,,,50023337,,, +12080,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0200-0600,1234567,,,40001158,,, +12080,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0900,12.4567,,,40001158,,, +12080,CHN,zh,CNR 2,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0900-1000,1234567,,,40001158,,, +12080,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1630-1700,12345..,,,50023338,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,0300-0315,.....67,,,50016273,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,0315-0900,1234567,,,50016273,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,1000-1100,.....67,,,50016273,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,2000-0300,1234567,,,50016273,,, +12080,AUS,fr,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,0300-0315,12345..,,,50016273,,, +12080,AUS,tpi,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,0900-1000,1234567,,,50016273,,, +12080,AUS,tpi,R Australia,d,Brandon (QLD),-19.511944,147.340556,,10,80,15065,58,154,Oc,1000-1100,12345..,,,50016273,,, +12080,AUS,en,R Australia,d,Brandon (QLD),-19.511944,147.340556,,5,80,15065,58,157,Oc,1100-1200,1234567,,,50016273,,, +12085,MNG,en,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,178,6615,50,99,As,0900-0930,1234567,,,50016274,,, +12085,MNG,ja,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,1030-1100,1234567,,,50016274,,, +12085,MNG,mn,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,0930-1000,1234567,,,50016274,,, +12085,MNG,zh,Voice of Mongolia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,116,6615,50,99,As,1000-1030,1234567,,,50016274,,, +12085,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,,16373,78,148,Oc,1100-1730,1234567,,,50022351,,, +12095,RUS,tt,GTRK Tatarstan-Na Volne Tatarstana,,Armavir/Tblisskaya/Krasnodar (KD),45.473056,40.103056,,100,,2550,93,63,EEu,0810-0900,1234567,,,50023342,,, +12095,OMA,en,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,335,5617,106,89,SAs,0200-0300,1234567,,,50016770,,, +12095,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,,2100-2200,1234567,,,50009938,,, +12095,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,CAf,0700-0800,1234567,,,50009938,,, +12095,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,2000-2100,1234567,,,50009938,,, +12095,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,2100-2200,12345..,,,50009938,,, +12095,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,280,7819,127,111,EAf,0400-0600,1234567,,,50013862,,, +12095,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,280,7819,127,111,EAf,1500-2000,1234567,,,50013862,,, +12095,AFS,Krw,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,,0500-0600,1234567,,,50009936,,, +12095,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,328,9003,160,120,CAf,0600-0700,1234567,,,50009936,,, +12095,PHL,ACH,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1230-1245,123.567,,,50006473,,, +12095,PHL,HMB,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,2300-2330,.....67,,,50006473,,, +12095,PHL,HMB,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1100-1130,.....67,,,50006473,,, +12095,PHL,HMQ,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,SEA,1300-1330,1234567,,,50006473,,, +12095,PHL,HMW,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,2300-2330,12345..,,,50006473,,, +12095,PHL,HMW,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1100-1130,12345..,,,50006473,,, +12095,PHL,MIE,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1200-1230,1234567,,,50006473,,, +12095,PHL,MIE,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1230-1300,...4...,,,50006473,,, +12095,PHL,TL,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1030-1100,1234567,,,50006473,,, +12095,PHL,lo,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,1130-1200,1234567,,,50006473,,, +12095,PHL,mkh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,280,10292,62,128,SEA,1330-1400,1234567,,,50006473,,, +12095,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,1400-1500,.2....7,,,50023341,,, +12095,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,0000-0200,1234567,,,50023341,,, +12105,USA,ar,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,1500-2100,12..567,,,50013863,,, +12105,USA,ar,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,1400-2000,12..567,,,50013863,,, +12105,USA,ar,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,1400-2000,1234567,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,0000-0300,123..67,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,0000-0200,1234567,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,0100-0300,123..67,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,2300-2400,12..567,,,50013863,,, +12105,USA,es,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,2300-2400,1234567,,,50013863,,, +12105,USA,fr,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,2100-2400,12..567,,,50013863,,, +12105,USA,fr,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,2000-2300,12..567,,,50013863,,, +12105,USA,fr,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,2000-2300,1234567,,,50013863,,, +12105,USA,pt,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,0300-0500,123..67,,,50013863,,, +12105,USA,pt,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,0200-0400,123..67,,,50013863,,, +12105,USA,ru,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,,1400-1500,12..567,,,50013863,,, +12105,USA,ru,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,1300-1400,12..567,,,50013863,,, +12105,USA,ru,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,1300-1400,1234567,,,50013863,,, +12105,USA,yo,WTWW,,Lebanon (WTWW) (TN),36.276389,-86.099444,,100,40,7067,296,108,NAm,0200-0400,1234567,,,50013863,,, +12105,MDG,,,,Talata-Volonondry (tan),-18.751667,47.614444,,250,265,8830,141,119,,,,,,50021727,,, +12105,MRA,my,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1230-1430,1234567,,,50023344,,, +12105,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,FE,1115-1145,12345..,,,50023343,,, +12105,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,FE,1115-1145,123456,,,50023343,,, +12105,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,FE,1145-1200,.....6.,,,50023343,,, +12105,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,FE,1145-1200,123456,,,50023343,,, +12115,F,en,Disco Palace,D,Issoudun (36),46.947222,1.894444,,1,,660,211,64,SAs,1530-1630,1234567,,,50023345,,, +12115,CLN,my,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,57,8219,99,115,SEA,0030-0130,1234567,,,50012947,,, +12120,PHL,AK,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1215-1230,1234567,,,50006481,,, +12120,PHL,Akh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,,1215-1245,1234567,,,50006481,,, +12120,PHL,C-D,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1245-1300,1234567,,,50006481,,, +12120,PHL,LIS,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1300-1330,1234567,,,50006481,,, +12120,PHL,NAG,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1230-1245,1234567,,,50006481,,, +12120,PHL,RWG,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1200-1215,1234567,,,50006481,,, +12120,PHL,my,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,1330-1400,1234567,,,50006481,,, +12125,ARM,GUR,IBRA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1600-1630,123....,,,50021107,,, +12125,ARM,am,IBRA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1600-1630,...4567,,,50021107,,, +12125,ARM,am,IBRA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1600-1700,1234567,,,50021107,,, +12125,ARM,am,IBRA R,,Gavar (SW) (grk),40.413611,45.192222,,100,,3205,98,69,EAf,1630-1700,1234567,,,50021107,,, +12125,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,1500-1600,1234567,,,50023919,,, +12130,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023921,,, +12130,KWT,ps,R Mashaal,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,PAK,0400-0600,1234567,,,50023922,,, +12130,KWT,ps,R Mashaal,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,PAK,0700-0900,1234567,,,50023922,,, +12130,KWT,ps,R Mashaal,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,PAK,0900-1300,1234567,,,50023922,,, +12130,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023920,,, +12130,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,0600-0700,1234567,,,50023923,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0300-0330,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0430-0530,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0630-0730,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0830-0930,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1030-1130,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1230-1330,1234567,,,50023348,,, +12140,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1400-1430,1234567,,,50023348,,, +12140,KWT,fa,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1500-1630,1234567,,,50023349,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0230-0300,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0330-0430,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0530-0630,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0730-0830,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0930-1030,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1130-1230,1234567,,,50023348,,, +12140,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1330-1400,1234567,,,50023348,,, +12140,KWT,ps,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1430-1500,1234567,,,50023349,,, +12140,KWT,ps,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1630-1730,1234567,,,50023349,,, +12140,CLN,,Voice of Tigers,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,,1530-1630,1234567,,,34700027,,, +12140,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0200-0230,1234567,,,50023924,,, +12140,CLN,ps,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0130-0200,1234567,,,50023924,,, +12140,VTN,vi,VOV2,,H Nội/Xun Mai (hno),20.9,105.583333,,50,,8789,70,126,,1400-1450,1234567,,,33200012,,, +12150,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,250,315,8219,99,115,,1500-1600,1234567,,,50006488,,, +12150,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,FE,1200-1300,1234567,,,50021855,,, +12150,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,FE,1300-1400,.....67,,,50021855,,, +12150,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,SAs,1400-1500,12345..,,,50021855,,, +12150,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,250,280,8917,74,120,SAs,1500-1600,1234567,,,50021855,,, +12155,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,1300-1400,1234567,,,50023926,,, +12155,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023925,,, +12160,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,85,7122,296,108,NAm,1600-2100,1234567,,,50009943,,, +12166.5,OCE,,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,-12166.5,,37500011,,, +12190,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022355,,, +12230,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50014326,,, +12254,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902777,,, +12256,AFS,,ZRK6963 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300033,,, +12257,G,en,WR International,,unknown,55.55,-2.65,,0.05,,706,306,77,,0700-1130,......7,,,2800053,,, +12260,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902793,,, +12269,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902828,,, +12284,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902795,,, +12284,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902830,,, +12290,E,,Madrid R,u,Pozuelo del Rey (MAD-M),40.363389,-3.285028,,1,,1501,213,72,,????-????,1234567,,,2200036,,, +12290,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902797,,, +12290,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902779,,, +12290,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700156,,, +12311,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902781,,, +12311,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902856,,, +12320,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902858,,, +12320,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017413,,, +12356,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0303-0313,1234567,,,32500030,,, +12356,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0903-0913,1234567,,,32500030,,, +12356,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1503-1513,1234567,,,32500030,,, +12356,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2103-2113,1234567,,,32500030,,, +12362,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,:00-:15,1234567,,,37700026,,, +12362,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,:30-:45,1234567,,,37700026,,, +12365,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,:00-:15,1234567,,,37700020,,, +12370,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017646,,, +12388.5,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,-12388.5,,6800032,,, +12408,CHN,,XSF23,p,Weihai (SD),37.516667,122.1,,1,,8269,48,140,,????-????,1234567,,,36201265,,, +12412.5,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0340-0608,1234567,-12412.5,,20016143,,, +12412.5,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,0950-1208,1234567,-12412.5,,20016143,,, +12412.5,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,1540-1808,1234567,-12412.5,,20016143,,, +12412.5,ALS,,NOJ USCG Kodiak,f,Kodiak/Buskin River (AK),57.778028,-152.530111,,4,,7647,348,127,,2150-0028,1234567,-12412.5,,20016143,,, +12500,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50016778,,, +12539,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,????-????,1234567,,,6800033,,, +12577,E,,Madrid R,2,Pozuelo del Rey (MAD-M),40.363389,-3.285028,,1,,1501,213,72,,????-????,1234567,,,2200038,,, +12577,TUR,,Istanbul R,2,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,,,,,8000027,,, +12577,USA,,COMMSTA Portsmouth,2,Portsmouth (USCG COMMSTA) (VA),36.833333,-76.3,,1,,6407,290,121,,,,,,20016313,,, +12577,USA,,KHT,u,Cedar Rapids (IA),42.034722,-91.643611,,1,,6930,304,126,,,,,,20016309,,, +12577,USA,,COMMSTA Miami,2,Miami (USCG COMMSTA) (FL),25.619444,-80.386389,,1,,7578,284,133,,,,,,20016314,,, +12577,CHN,,Shanghai R,2,Shanghai (SH),31.108889,121.544167,,1,,8826,52,143,,,,,,36201338,,, +12577,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,,,35400115,,, +12577,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800017,,, +12577,AUS,,Charleville / Wiluna R,2,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,,,,,37700161,,, +12617,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800034,,, +12621.5,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,0000-1200,1234567,-12621.5,,37700118,,, +12641,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800035,,, +12665,B,,PWZ33 Rio Meteo,f,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0745-0910,1234567,,,36902811,,, +12665,B,,PWZ33 Rio Meteo,f,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1630-1755,1234567,,,36902811,,, +12673,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000066,,, +12675.5,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0700-0900,1234567,-12675.5,,11700010,,, +12675.5,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,1100-1300,1234567,-12675.5,,11700010,,, +12685,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000067,,, +12687,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0200-2200,1234567,,,7300009,,, +12691,REU,,FUX,,Sainte-Suzanne (974),-20.910172,55.58455,,100,,9412,135,125,,0000-2400,1234567,,,11800005,,, +12709,B,,PPR Rio Rdio,r,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0600-0730,1234567,,,36902806,,, +12709,B,,PPR Rio Rdio,r,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1845-1930,1234567,,,36902806,,, +12721,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800008,,, +12732,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800009,,, +12736,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000068,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0145-0300,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0430-0450,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0540-0800,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1100-1200,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1335-1530,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1645-2000,1234567,-12745.5,,31400040,,, +12745.5,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,2215-2245,1234567,-12745.5,,31400040,,, +12750,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1400-1600,1234567,,,20016156,,, +12750,USA,,NMF USCG Boston,f,Camp Edwards (MA),41.713944,-70.504833,,4,,5674,291,108,,1720-2241,1234567,,,20016156,,, +12750,JMC,,Kingston Coastguard R,u,Kingston (kgs),17.934722,-76.843056,,1,,7988,276,137,,????-????,1234567,,,35700003,,, +12759,BIO,en,AFN,u,Diego Garcia (SW) (dga),-7.4302,72.441114,,1,,9078,114,144,,0200-1400,1234567,,,12200001,,, +12762,D,,DAO23 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,,,2000053,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0140-0415,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0655-1015,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1120-1230,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1400-1615,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1840-2215,1234567,,,20016146,,, +12786,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2320-2400,1234567,,,20016146,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0330-0400,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0515-0545,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0930-1000,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1115-1145,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1530-1600,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1715-1745,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2130-2200,1234567,,,20012365,,, +12788,USA,en,NMG USCG New Orleans,u,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,2315-2345,1234567,,,20012365,,, +12789.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0000-0305,1234567,-12789.9,,20016151,,, +12789.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,0600-0855,1234567,-12789.9,,20016151,,, +12789.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1200-1505,1234567,-12789.9,,20016151,,, +12789.9,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1800-2105,1234567,-12789.9,,20016151,,, +12800,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017414,,, +12800,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-2400,1234567,,,50017414,,, +12815,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000004,,, +12818,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800036,,, +12832.5,J,,JFC,c,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,-12832.5,,31400049,,, +12851,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0000-2400,1234567,,,6800037,,, +12870,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017618,,, +12892.5,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,-12892.5,,5800010,,, +12910,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022356,,, +12924,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000069,,, +12927.3,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,0530-0545,1234567,-12927.3,,34700011,,, +12927.3,CLN,,4PB Colombo R,c,Colombo (col),6.933333,79.844444,,1,,8272,99,140,,1330-1345,1234567,-12927.3,,34700011,,, +12980,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50016780,,, +13002,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,1200-1900,1234567,,,7300010,,, +13019,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,1200-1900,1234567,,,7300011,,, +13025.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,1200-1900,1234567,-13025.5,,7300012,,, +13034.9,USA,,WHL23 Saint Augustine R,p,Saint Augustine (FL),29.750833,-81.28,,1,,7294,288,130,,????-????,1234567,-13034.9,,20016178,,, +13074,J,,JFC,f,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,31400050,,, +13078.5,PHL,,DZO23 Manila R,p,Lucena City (qzn),13.947222,121.619444,,1,,10413,62,148,,????-????,1234567,-13078.5,,33300026,,, +13080,FJI,,3DP Suva R,u,Suva (CE-RW),-18.128944,178.468167,,1,,16173,13,167,,????-????,1234567,,,22500013,,, +13089,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000005,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1115-1145,1234567,,,20012364,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1530-1600,1234567,,,20012364,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1715-1745,1234567,,,20012364,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2130-2200,1234567,,,20012364,,, +13089,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,2315-2345,1234567,,,20012364,,, +13089,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0430-0505,1234567,,,20012375,,, +13089,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1030-1105,1234567,,,20012375,,, +13089,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1630-1705,1234567,,,20012375,,, +13089,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2230-2305,1234567,,,20012375,,, +13089,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,0005-0040,1234567,,,20012372,,, +13089,HWA,en,NMO USCG Honolulu,u,Maili/Tower Drive (HI),21.429611,-158.160833,,10,,11701,345,143,,1800-1835,1234567,,,20012372,,, +13089,GUM,en,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,0330-0405,1234567,,,20012379,,, +13089,GUM,en,NRV USCG Guam,u,Finegayan (GU),13.587778,144.840833,,1,,11691,42,153,,2130-2205,1234567,,,20012379,,, +13101,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902776,,, +13107,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,,,3300002,,, +13107,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902792,,, +13110,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016234,,, +13116,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902827,,, +13121,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000070,,, +13128,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1000-1015,1234567,,,8000022,,, +13128,TUR,xx,Istanbul Turk Radyo,u,Istanbul/TAH (mam-ist),41.066667,28.95,,10,,2101,117,68,,1800-1815,1234567,,,8000022,,, +13128.7,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-13128.7,,31200010,,, +13128.7,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-13128.7,,31200010,,, +13128.7,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-13128.7,,31200010,,, +13130,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50009950,,, +13131,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902794,,, +13131,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902829,,, +13137,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902796,,, +13137,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902778,,, +13146,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,0720-0740,1234567,,,5300003,,, +13146,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1203-1223,1234567,,,5300003,,, +13146,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1720-1740,1234567,,,5300003,,, +13146,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1015-1030,1234567,,,20300009,,, +13146,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1333-1348,1234567,,,20300009,,, +13146,AFS,,ZSC Cape Town R,u,Klipheuwel (WC),-33.680611,18.714556,,5,,9614,170,139,,1815-1830,1234567,,,20300009,,, +13152,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016236,,, +13158,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000006,,, +13158,B,,PPL Belm Rdio,u,Belm (PA),-1.408972,-48.441528,,1,,7838,240,135,,????-????,1234567,,,36902780,,, +13158,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902855,,, +13170,GRC,,SVO Olympia R,u,Agia Paraskevi (wgr-ili),37.603056,21.486389,,8,,1995,138,68,,????-????,1234567,,,3400004,,, +13173,B,,PPJ Juno Rdio,u,Rio Grande/Juno (RS),-32.048111,-52.140736,,1,,10949,227,150,,????-????,1234567,,,36902857,,, +13174.5,USA,,KKL23,p,Vashon (WA),47.370808,-122.48775,,0.15,,7936,326,145,,????-????,1234567,-13174.5,,20016162,,, +13261,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012456,,, +13261,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500006,,, +13261,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700078,,, +13261,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700082,,, +13261,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500006,,, +13261,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500035,,, +13264,IRL,en,EIP Shannon Volmet,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,0000-2400,1234567,,,4100008,,, +13264,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100022,,, +13267,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:00-:04,1234567,,,6700045,,, +13267,RUS,ru,Kirensk Volmet,u,Kirensk/Airport (IR),57.770833,108.061111,,1,,5896,41,116,,:30-:34,1234567,,,6700045,,, +13267,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:25-:29,1234567,,,6700061,,, +13267,RUS,ru,Irkutsk Volmet,u,Irkutsk/Airport (IR),52.2675,104.366667,,1,,6127,48,118,,:55-:59,1234567,,,6700061,,, +13267,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:10-:14,1234567,,,6700049,,, +13267,RUS,ru,Yakutsk Volmet,u,Yakutsk/Airport (RS),62.095556,129.76,,1,,6378,28,121,,:40-:44,1234567,,,6700049,,, +13267,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:20-:24,1234567,,,6700057,,, +13267,RUS,ru,Magadan Volmet,u,Magadan/Airport (MA),59.623333,150.918056,,1,,7190,19,129,,:50-:54,1234567,,,6700057,,, +13267,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:15-:19,1234567,,,6700053,,, +13267,RUS,ru,Khabarovsk Volmet,u,Khabarovsk/Airport (KH),48.527222,135.193333,,1,,7821,33,135,,:45-:49,1234567,,,6700053,,, +13270,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:20-:29,1234567,,,20100020,,, +13270,CAN,en,VFG Gander Volmet,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,:50-:59,1234567,,,20100020,,, +13270,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:00-:19,1234567,,,20000083,,, +13270,USA,en,WSY70 New York Volmet,u,Barnegat (NJ),39.700556,-74.202222,,3,,6056,291,113,,:30-:49,1234567,,,20000083,,, +13270,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900015,,, +13270,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50016484,,, +13270,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-2400,1234567,,,50016484,,, +13273,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012464,,, +13276,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016244,,, +13276,USA,,San Francisco Aero,h,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20016252,,, +13282,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:10-:14,1234567,,,31400004,,, +13282,J,en,JIA Tokyo Volmet,u,Kagoshima (kyu-kag),31.302222,130.536944,,1.5,,9269,45,143,,:40-:44,1234567,,,31400004,,, +13282,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:15-:18,1234567,,,33800005,,, +13282,HKG,en,Hongkong Volmet,u,Cape d'Aguillar (sou),22.214444,114.248889,,1,,9214,63,144,,:45-:48,1234567,,,33800005,,, +13282,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:25-:39,1234567,,,20000096,,, +13282,HWA,en,KVM70 Honolulu Volmet,u,Iroquois Point (HI),21.325583,-157.992028,,1,,11710,345,153,,:55-:09,1234567,,,20000096,,, +13282,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:20-:24,1234567,,,32500018,,, +13282,NZL,en,ZKAK Auckland Volmet,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,:50-:54,1234567,,,32500018,,, +13285,CHN,en,Beijing Volmet,u,Beijing/Airport (BJ),40.087778,116.605556,,1,,7757,50,135,,0015-0900,1234567,,,36200228,,, +13285,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:00-:14,1234567,,,36200224,,, +13285,CHN,en,Guangzhou Volmet,u,Guangzhou/Airport (GD),23.4,113.305556,,1,,9051,63,144,,:30-:44,1234567,,,36200224,,, +13288,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300008,,, +13288,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900014,,, +13288,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400007,,, +13288,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600014,,, +13288,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300005,,, +13288,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500008,,, +13288,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500006,,, +13288,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012435,,, +13288,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012466,,, +13291,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100023,,, +13291,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0900-2100,1234567,,,4200004,,, +13291,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1000-2000,1234567,,,20109263,,, +13294,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100007,,, +13297,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-2400,1234567,,,20016237,,, +13297,TRD,,Piarco Aero,u,Piarco (tup),10.591111,-61.3325,,1,,7567,259,133,,,,,,33400011,,, +13297,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902905,,, +13297,BOL,,Santa Cruz Aero,u,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500029,,, +13300,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012454,,, +13303,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500013,,, +13306,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100014,,, +13306,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0900-2100,1234567,,,4200012,,, +13306,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,1000-2100,1234567,,,700003,,, +13306,CAN,en,Gander Aero,u,Gander (NL),48.967778,-54.673333,,5,,4202,290,92,,1230-1830,1234567,,,20109262,,, +13306,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-2400,1234567,,,20012394,,, +13306,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,5,,6741,96,117,,,,,,32200016,,, +13306,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500011,,, +13312,BHR,,Bahrain Aero,u,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900015,,, +13315,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300020,,, +13315,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500014,,, +13318,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200026,,, +13318,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900009,,, +13318,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700088,,, +13321,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700104,,, +13321,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300013,,, +13330,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012414,,, +13333,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500041,,, +13339,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012487,,, +13339,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012465,,, +13342,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800047,,, +13348,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016238,,, +13348,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012494,,, +13348,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012440,,, +13348,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012480,,, +13348,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900023,,, +13348,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012507,,, +13350,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50014275,,, +13354,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,1100-1900,1234567,,,700009,,, +13354,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900008,,, +13354,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-0400,1234567,,,20012395,,, +13354,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012434,,, +13354,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012473,,, +13357,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500010,,, +13357,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000006,,, +13362,GUM,en,AFN,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,2000-0800,1234567,,,20000015,,, +13363.5,ARG,es,R.Continental/R.Rivadavia/FM Metro,l,Buenos Aires (df),-34.633333,-58.466667,,5,,11512,230,145,,0000-2400,1234567,-13363.5,,40001166,,, +13430,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017193,,, +13480,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020308,,, +13530,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017512,,, +13538,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0430-0830,1234567,,,20300029,,, +13538,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0915-1130,1234567,,,20300029,,, +13538,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,1530-1730,1234567,,,20300029,,, +13538,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,2230-2300,1234567,,,20300029,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0030-0045,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0130-0145,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0230-0245,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0330-0345,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0430-0445,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0930-0945,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1030-1045,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1130-1145,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1230-1245,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1330-1345,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1430-1445,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1530-1545,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,1630-1645,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2130-2145,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2230-2245,1234567,-13550.5,,32500044,,, +13550.5,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2330-2345,1234567,-13550.5,,32500044,,, +13570,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,100,5762,180,95,,1800-1830,1234567,,,50020122,,, +13570,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,EAf,1600-1700,1234567,,,50020122,,, +13570,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,335,5762,180,95,,1830-1900,1234567,,,50020122,,, +13570,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,1130-1630,......7,,,50016277,,, +13570,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,1630-1800,.....67,,,50016277,,, +13570,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,,1800-2100,1234567,,,50016277,,, +13570,USA,en,WINB,,Red Lion/York (WINB) (PA),39.906111,-76.581944,,50,242,6192,293,102,CAm,1300-2200,1234567,,,50016277,,, +13570,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,,2330-2400,1234567,,,50021112,,, +13570,KOR,,HLL2,f,Seoul (seo),37.566667,126.966667,,3,,8505,45,137,,0000-1200,1234567,,,34600014,,, +13580,D,ps,R Mashaal,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,PAK,0500-0900,1234567,,,50023929,,, +13580,EGY,sq,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,Eu,1500-1600,1234567,,,50010578,,, +13580,EGY,sq,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,300,3170,130,65,,1500-1600,1234567,,,50016278,,, +13580,KWT,ps,R Mashaal,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,PAK,0900-1100,1234567,,,50023927,,, +13580,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,215,7797,50,108,SEA,0000-0200,1234567,,,50006498,,, +13580,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1100-1200,1234567,,,50006499,,, +13580,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,0400-0500,1234567,,,50023928,,, +13580,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1300-1400,1234567,,,50023351,,, +13580,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1600-1800,1234567,,,50023351,,, +13580,CLN,ur,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,0400-0500,1234567,,,50023351,,, +13590,F,ps,VoA Deewa R,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,AFG,1400-1500,1234567,,,50023932,,, +13590,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,0000-0100,1234567,,,50023353,,, +13590,KWT,ps,VoA Deewa R,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1300-1400,1234567,,,50023930,,, +13590,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,FE,0300-0500,1234567,,,50006506,,, +13590,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,1000-1200,1234567,,,50006506,,, +13590,CLN,ps,VoA Deewa R,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,AFG,1500-1600,1234567,,,50023931,,, +13600,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,EAf,0200-0300,1234567,,,11700013,,, +13600,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,EAf,0400-1000,1234567,,,11700013,,, +13600,OMA,en,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,,0400-0500,1234567,,,11700013,,, +13600,OMA,en,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,EAf,0300-0400,1234567,,,11700013,,, +13600,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,0100-0200,1234567,,,50006512,,, +13600,SNG,my,NHK R Japan,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1430-1500,1234567,,,50023356,,, +13600,SNG,vi,NHK R Japan,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1300-1330,1234567,,,50023356,,, +13605,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,58,7561,97,106,FE,1000-1100,1234567,,,50016280,,, +13605,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,EAf,1615-1730,1234567,,,50016280,,, +13605,IND,zh,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,58,7561,97,106,FE,1145-1315,1234567,,,50016280,,, +13605,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,250,58,7561,97,109,FE,2245-0045,1234567,,,50016280,,, +13605,IND,sw,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,250,280,7561,97,109,EAf,1515-1615,1234567,,,50016280,,, +13605,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1145-1315,1234567,,,50023933,,, +13610,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,0700-0800,1234567,,,50023357,,, +13610,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,FE,0800-0900,1234567,,,50023357,,, +13610,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,0600-0900,1.34567,,,40000585,,, +13610,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,0900-1300,1234567,,,40000585,,, +13610,CHN,zh,CNR 1,,Nanning/SARFT954 (GX),22.792222,108.191667,,150,155,8789,67,121,,2300-0600,1234567,,,40000585,,, +13615,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,1430-1730,1234567,,,50023358,,, +13615,F,fa,R Farda,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,0500-0730,1234567,,,50023360,,, +13615,UZB,bn,NHK R Japan,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1300-1345,1234567,,,50023934,,, +13615,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,0300-0500,1234567,,,50023359,,, +13620,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,SAm,0045-0200,1234567,,,50016485,,, +13620,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,SAm,2330-0045,1234567,,,50023362,,, +13620,EGY,pt,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,SAm,2215-2330,1234567,,,50023362,,, +13620,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,NAf,1020-1120,1234567,,,50023363,,, +13620,IRN,fr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,WAf,1820-1920,1234567,,,50023363,,, +13620,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,Sib,0300-0500,1234567,,,50006522,,, +13620,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,Sib,0500-0700,1234567,,,50006522,,, +13625,TUR,uz,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,CAs,1130-1200,1234567,,,50023366,,, +13625,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1400-1500,1234567,,,50023365,,, +13630,D,ur,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1600,...4...,,,50023936,,, +13630,F,pt,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1630-1700,....5..,,,50023368,,, +13630,BUL,en,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,SAs,1515-1545,.....6.,,,50023935,,, +13630,BUL,ta,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,SAs,1515-1530,....5..,,,50023935,,, +13630,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,,2000-2130,1234567,,,50006532,,, +13630,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,2000-2100,1234567,,,50006532,,, +13630,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,2100-2130,1234567,,,50006532,,, +13630,MLI,fr,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,WAf,2130-2230,1234567,,,50006532,,, +13630,MLI,pt,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,1930-2000,1234567,,,50006532,,, +13630,UZB,hi,CVC Voice Asia,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,153,4779,79,85,SAs,0400-1100,1234567,,,50016284,,, +13630,STP,pt,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,,1700-1730,1234567,,,50021732,,, +13630,BOT,pt,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,,1730-1800,1234567,,,50021731,,, +13630,BOT,pt,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,CAf,1700-1800,1234567,,,50021731,,, +13630,BOT,pt,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,CAf,1800-1830,12345..,,,50021731,,, +13630,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023367,,, +13630,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,50,16373,78,148,SOc,0500-0800,1234567,,,50016283,,, +13630,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,65,16373,78,148,SOc,2100-2300,1234567,,,50016283,,, +13635,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023937,,, +13640,IRN,en,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAf,1920-2020,1234567,,,50023369,,, +13640,UAE,en,NHK R Japan,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,WEu,0500-0530,1234567,,,50023370,,, +13640,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,209,5347,76,91,SAs,0400-0500,1234567,,,50006538,,, +13640,IND,ar,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,1730-1945,1234567,,,50016285,,, +13640,IND,fa,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,1615-1730,1234567,,,50016285,,, +13640,IND,fr,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,WAf,1945-2030,1234567,,,50016285,,, +13640,IND,gu,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,EAf,1515-1600,1234567,,,50016285,,, +13645,MLI,ha,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,WAf,1800-1830,1234567,,,50006544,,, +13645,MLI,sw,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,1700-1800,1234567,,,50006544,,, +13645,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,1100-1200,1234567,,,50006545,,, +13645,IND,th,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,1115-1200,1234567,,,50016286,,, +13645,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0600-0800,1234567,,,50023371,,, +13645,CLN,uz,R Liberty,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,CAs,1400-1500,1234567,,,50023938,,, +13650,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,EAf,0400-0600,1234567,,,50023372,,, +13650,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,100,,4236,111,79,NAm,1700-2000,1234567,,,50023939,,, +13650,CUB,pt,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,135,7939,284,112,SAm,2300-2400,1234567,,,50006552,,, +13650,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0500-0600,1234567,,,50016290,,, +13650,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0400-0500,1234567,,,50016290,,, +13650,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0300-0400,1234567,,,50016290,,, +13650,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0600-0700,1234567,,,50016290,,, +13650,J,my,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,240,9208,36,120,SEA,2340-2400,1234567,,,50016289,,, +13650,J,th,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,240,9208,36,120,SEA,2300-2320,1234567,,,50016289,,, +13650,J,vi,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,240,9208,36,120,SEA,2320-2340,1234567,,,50016289,,, +13655,D,hi,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1600,1234567,,,50023374,,, +13655,D,pa,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1530,1234567,,,50023374,,, +13655,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,0000-0400,1234567,,,50006559,,, +13655,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,0400-0600,1234567,,,50006559,,, +13655,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,FE,0600-0700,1234567,,,50006559,,, +13655,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023940,,, +13660,G,fa,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,250,75,622,276,39,IRN,1600-1700,1234567,,,50021140,,, +13660,UAE,ar,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1700-2000,1234567,,,50023375,,, +13660,OMA,ar,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,45,5617,106,89,EAf,2000-2100,1234567,,,50021141,,, +13660,RRW,aa,Trans World R,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,30,6406,152,97,EAf,1300-1315,...4567,,,50009962,,, +13660,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,500,30,8917,74,117,,2200-2300,1234567,,,50021734,,, +13660,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,SAs,0130-0200,1234567,,,50022358,,, +13665,ALB,en,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,100,,1609,135,53,WEu,1100-1300,1234567,,,50023376,,, +13665,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023941,,, +13670,ALB,fr,China R Int.,,Crrik (CRI) (elb),40.996389,19.999444,,150,240,1609,135,51,WAf,1400-1600,1234567,,,50006571,,, +13670,EGY,ur,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,SAs,1600-1800,1234567,,,50023377,,, +13670,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,1300-1400,1234567,,,50006572,,, +13670,CHN,ug,CNR 13,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0600-0700,1234567,,,40001173,,, +13670,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0230-0600,1234567,,,40001173,,, +13670,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0700-0800,1234567,,,40001173,,, +13670,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,0800-1100,1.3.567,,,40001173,,, +13670,CHN,ug,Xinjiang RGD Uighur,,rmqi/Changji-SARFT523 (XJ),43.974167,87.249444,,50,230,5761,65,98,,1100-1230,1234567,,,40001173,,, +13670,USA,bm,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,94,6571,289,99,WAf,2130-2200,12345..,,,50020130,,, +13675,TJK,zh,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,95,4943,82,83,,1500-1700,1234567,,,50021735,,, +13675,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023942,,, +13680,EGY,bs,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,Eu,1600-1700,1234567,,,50018863,,, +13680,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EEu,0450-0520,1234567,,,50023379,,, +13680,IRN,sw,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EAf,0350-0450,1234567,,,50023379,,, +13680,CHN,VN,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0000-0100,1234567,,,50023378,,, +13680,CUB,ar,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Eu,2030-2100,1234567,,,50020312,,, +13680,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Eu,2100-2300,1234567,,,50020312,,, +13680,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,,1500-1800,......7,,,50020312,,, +13680,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Eu,1930-2000,1234567,,,50020312,,, +13680,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,Eu,2000-2030,1234567,,,50020312,,, +13680,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2130-0430,1234567,,,50022360,,, +13680,SNG,th,NHK R Japan,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SEA,1230-1300,1234567,,,50023380,,, +13685,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,CAf,0700-0730,1234567,,,50008977,,, +13685,TUR,ug,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,FE,1330-1430,1234567,,,50023381,,, +13685,MLI,ar,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,NAf,1830-1930,1234567,,,50006585,,, +13685,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,1400-1600,1234567,,,50006585,,, +13685,MLI,fr,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,WAf,1300-1400,1234567,,,50006585,,, +13690,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1430-1500,1234567,,,50023383,,, +13690,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1530-1630,1234567,,,50023383,,, +13690,IRN,bs,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0520-0620,1234567,,,50023384,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,135,660,211,37,WAf,1700-1800,1234567,,,50006589,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,,0600-0700,1234567,,,50006589,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,,1700-1900,1234567,,,50006589,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,WAf,0700-0800,1234567,,,50006589,,, +13695,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,204,660,211,37,WAf,0800-0900,1234567,,,50006589,,, +13695,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,120,7561,97,106,Oc,1000-1100,1234567,,,50014221,,, +13695,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,280,7561,97,106,EAf,1745-1945,1234567,,,50014221,,, +13695,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,0315-0415,1234567,,,50014221,,, +13695,IND,kn,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,0215-0300,1234567,,,50014221,,, +13695,IND,ta,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,1115-1215,1234567,,,50014221,,, +13695,IND,te,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,1215-1245,1234567,,,50014221,,, +13695,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,SAm,0000-0200,1234567,,,50023943,,, +13695,USA,es,Family R,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,SAm,2300-2400,1234567,,,50023944,,, +13700,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,2357-1057,1234567,,,40001175,,, +13710,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,295,4552,116,76,NAf,1500-1800,1234567,,,50016298,,, +13710,IRN,fa,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,CAs,0820-1420,1234567,,,50023386,,, +13710,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,1330-1500,1234567,,,50017421,,, +13715,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0200-0300,1234567,,,50023387,,, +13715,CLN,ar,VoA Darfur,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1800-1830,1234567,,,50023388,,, +13720,E,es,RNE R Exterior,D,Noblejas (CAM-TO),39.9575,-3.430556,,250,,1547,213,49,Eu,1100-1300,1234567,,,50009973,,, +13720,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0300-0400,1234567,,,50006605,,, +13720,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,1000-1200,1234567,,,50006606,,, +13725,F,fa,NHK R Japan,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1430-1500,1234567,,,50023390,,, +13725,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,FE,0000-0200,1234567,,,50023389,,, +13730,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAs,0400-0500,1234567,,,50023392,,, +13730,IRN,ps,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,65,4724,102,77,SAs,0720-0820,1234567,,,50022045,,, +13730,MDG,sw,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,250,300,8830,141,119,EAf,1730-1800,1234567,,,50008996,,, +13730,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,1,,18351,32,175,Oc,0500-0650,1234567,,,50023391,,, +13735,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023946,,, +13735,CHN,ta,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0300-0400,1234567,,,50023393,,, +13735,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,100,5762,180,95,Af,1100-1130,.....6.,,,50018886,,, +13735,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023945,,, +13735,MRA,VN,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1400-1500,1234567,,,50023395,,, +13735,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,1230-1400,1234567,,,50023394,,, +13740,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,WAf,1700-1800,1234567,,,50013014,,, +13740,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,WAf,1800-1900,1234567,,,50013014,,, +13740,D,ce,HCJB Global,,Nauen (brb),52.647778,12.908611,,100,95,445,80,42,,1600-1630,.....6.,,,50018887,,, +13740,D,ru,HCJB Global,,Nauen (brb),52.647778,12.908611,,100,95,445,80,42,,1530-1600,.....6.,,,50018887,,, +13740,AUT,ce,HCJB Global,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,Cau,1600-1630,.....6.,,,50023397,,, +13740,AUT,ru,HCJB Global,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,Cau,1530-1600,.....6.,,,50023397,,, +13740,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WAf,0600-0630,1234567,,,50023400,,, +13740,IRN,he,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,1150-1220,1234567,,,50023399,,, +13740,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0400-0500,1234567,,,50023396,,, +13740,CUB,en,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,305,7939,284,112,WNA,1400-1600,1234567,,,50006618,,, +13740,MRA,km,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,279,11578,41,128,,2230-2330,1234567,,,50021181,,, +13745,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,ENA,0000-0030,1234567,,,50023401,,, +13745,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,ENA,0200-0230,1234567,,,50023401,,, +13745,THA,en,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,WNA,0030-0100,1234567,,,50023401,,, +13745,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,ENA,0230-0330,1234567,,,50023401,,, +13745,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,WNA,0100-0200,1234567,,,50023401,,, +13750,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,CAs,1500-1530,1234567,,,50021187,,, +13750,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,EEu,1500-1600,1234567,,,50021187,,, +13750,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0820-1420,1234567,,,50019754,,, +13750,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,168,6571,289,99,,1200-1300,1234567,,,50007805,,, +13750,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SEA,0600-0800,1234567,,,50023402,,, +13755,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023948,,, +13755,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,1600-1630,.....6.,,,50023405,,, +13755,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023947,,, +13755,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1800-1830,1234567,,,50023404,,, +13755,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1700-1800,1234567,,,50023403,,, +13755,BOT,sw,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1630-1700,1234567,,,50023403,,, +13760,D,ru,Evang.Missionsgemeinden,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,Sib,1100-1130,.....6.,,,50023406,,, +13760,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0400-0500,1234567,,,50016301,,, +13760,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0300-0400,1234567,,,50016301,,, +13760,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0500-0600,1234567,,,50016301,,, +13760,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0600-0700,1234567,,,50016301,,, +13760,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,0700-0900,1234567,,,50016301,,, +13765,CVA,Ros,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,135,1205,156,45,CAf,1940-2000,1234567,,,50006640,,, +13765,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,160,1205,156,45,SAf,1730-1800,1234567,,,50006640,,, +13765,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,210,1205,156,45,CAf,2000-2030,1234567,,,50006640,,, +13765,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,214,1205,156,45,CAf,0630-0700,1234567,,,50006640,,, +13765,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,135,1205,156,45,CAf,2030-2115,1234567,,,50006640,,, +13765,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,145,1205,156,45,EAf,1700-1730,1234567,,,50006640,,, +13765,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,214,1205,156,45,CAf,0600-0630,1234567,,,50006640,,, +13765,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,169,1205,156,45,AGL,1800-1830,1234567,,,50006640,,, +13765,CVA,es,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,238,1205,156,49,CAf,1900-1930,.....6.,,,50006640,,, +13765,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023950,,, +13765,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023949,,, +13765,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1100,1234567,,,50023949,,, +13765,MDG,am,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,295,8830,141,119,EAf,1630-1645,..34567,,,50015382,,, +13765,MDG,en,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,265,8830,141,119,SAf,0500-0530,1234567,,,50015382,,, +13765,MDG,fr,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,295,8830,141,119,CAf,0430-0500,1234567,,,50015382,,, +13765,MDG,pt,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,300,8830,141,119,SAf,0530-0600,1234567,,,50015382,,, +13765,MDG,so,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,350,8830,141,119,EAf,1615-1630,.....6.,,,50015382,,, +13765,MDG,sw,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,300,8830,141,119,EAf,1600-1615,.....6.,,,50015382,,, +13765,MDG,sw,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,300,8830,141,119,EAf,1600-1630,12345.7,,,50015382,,, +13765,MDG,ti,R Vaticana,,Talata-Volonondry (tan),-18.751667,47.614444,,250,295,8830,141,119,EAf,1645-1700,..34567,,,50015382,,, +13765,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0900-1100,1234567,,,50023409,,, +13765,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023408,,, +13775,ARS,ur,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,SAs,1200-1500,1234567,,,50023951,,, +13775,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017851,,, +13780,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,0520-0820,1234567,,,50023411,,, +13780,TJK,zh,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,95,4943,82,83,,1700-2000,1234567,,,50021737,,, +13780,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0900-1100,1234567,,,50023410,,, +13780,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,FE,0130-0230,1234567,,,50006647,,, +13780,CHN,ne,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,FE,0230-0330,1234567,,,50006647,,, +13780,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,CNA,2300-2400,12345..,,,50016304,,, +13780,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,10,7939,284,116,WNA,1300-1500,1234567,,,50016304,,, +13785,IRN,en,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SAs,1520-1620,1234567,,,50023412,,, +13785,BOT,KNK,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,EAf,1830-1900,12345..,,,50023414,,, +13785,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,1400-1500,1234567,,,50023413,,, +13790,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,1300-1400,1234567,,,50009016,,, +13790,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,1200-1300,1234567,,,50023415,,, +13795,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023953,,, +13795,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,2300-2400,1234567,,,50009018,,, +13795,IND,ta,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,108,7561,97,106,SEA,0000-0045,1234567,,,50009018,,, +13795,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023952,,, +13799.1,ETH,,ERTA Ethiopia National R,,Geja Jawe (aab),8.786389,38.644444,,100,,5633,137,93,,1200-2000,1234567,-13799.1,,40001178,,, +13800,D,fa,R Farda,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,IRN,1100-1500,1234567,,,50023419,,, +13800,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0300-0400,1234567,,,50023416,,, +13800,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,0730-1100,1234567,,,50023420,,, +13800,MDG,ar,R Dabanga,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,1530-1630,1234567,,,50023417,,, +13800,MDG,ar,R Tamazuj,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,1500-1530,1234567,,,50023418,,, +13800,SOM,,R Puntland,,Garowe (nug),8.401389,48.472222,,0.05,,6172,126,132,,0300-1900,1234567,,,9500011,,, +13810,F,am,V.o.Oromo Liberation,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,..3....,,,50023421,,, +13810,F,en,Brother Stair,,Issoudun (36),46.947222,1.894444,,100,120,660,211,44,ME,1400-1600,1234567,,,50022051,,, +13810,F,om,V.o.Oromo Liberation,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1700-1730,..3....,,,50023421,,, +13810,F,om,V.o.Oromo Liberation,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1700-1800,......7,,,50023421,,, +13810,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023955,,, +13810,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,239,5347,76,91,ME,1200-1400,1234567,,,50015397,,, +13810,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023954,,, +13820,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,285,1587,104,48,,1200-1300,1234567,,,50021740,,, +13820,IRN,sq,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0620-0720,1234567,,,50023423,,, +13820,IRN,fa,IRIB WS,,Ahwaz (kuz),30.619556,49.199611,,100,,4207,108,79,CAs,0820-1420,9999999,,,50023422,,, +13820,USA,es,R Mart,,Greenville (NC),35.466667,-77.199167,,250,,6571,289,99,CUB,1400-2000,1234567,,,50016306,,, +13820,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2200-1500,1234567,,,50017650,,, +13820,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017650,,, +13830,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023957,,, +13830,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,125,4943,82,83,,1100-1200,1234567,,,50021742,,, +13830,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,125,4943,82,83,,1200-1300,1234567,,,50021742,,, +13830,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,125,4943,82,83,,1300-1400,1234567,,,50021742,,, +13830,USA,es,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,155,7317,294,106,SAm,1700-2400,1234567,,,50010624,,, +13830,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023956,,, +13830,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,WAf,0530-0630,12345..,,,50021217,,, +13835,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,0230-0430,1234567,,,50023424,,, +13840,ROU,ru,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,CAs,1430-1500,1234567,,,50023960,,, +13840,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0100-0200,1234567,,,50023961,,, +13840,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023958,,, +13840,MDG,fr,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,250,295,8830,141,119,CAf,0530-0600,1234567,,,50006671,,, +13840,NZL,en,R New Zealand Int.,,Rangitaiki (BOP),-38.843056,176.429722,,100,,18351,32,155,WOc,1100-1300,1234567,,,50023959,,, +13845,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,40,7122,296,108,NAm,1300-0100,1234567,,,50009986,,, +13850,EGY,ar,ERTU Al-Barnameg al-Aam,,Abis (SW) (bhy),31.126111,30.074444,,250,315,3024,131,63,NAm,0200-0700,1234567,,,50021220,,, +13850,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SEA,0900-1100,1234567,,,50006674,,, +13850,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50011169,,, +13855,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,286,3024,131,63,CAm,2330-0045,1234567,,,50016495,,, +13855,EGY,es,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,286,3024,131,63,CAm,0045-0200,1234567,,,50016495,,, +13855,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,Eu,1300-1400,1234567,,,50023425,,, +13855,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,303,11578,41,128,FE,1400-1500,1234567,,,50020148,,, +13860,THA,fa,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0300-0330,1234567,,,50023962,,, +13860,THA,fa,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0200-0230,1234567,,,50023963,,, +13860,THA,ps,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0230-0300,1234567,,,50023962,,, +13860,THA,ps,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0330-0430,1234567,,,50023962,,, +13860,THA,ps,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,AFG,0130-0200,1234567,,,50023963,,, +13865,OMA,uz,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1300-1330,1234567,,,50023427,,, +13865,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1330,1234567,,,50023964,,, +13870,UAE,ur,NHK R Japan,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,60,5075,109,84,SAs,1515-1600,1234567,,,50016496,,, +13882.5,D,,DDK6 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,0430-1235,1234567,-13882.5,,2000048,,, +13882.5,D,,DDK6 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,1520-1630,1234567,-13882.5,,2000048,,, +13882.5,D,,DDK6 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,1800-1952,1234567,-13882.5,,2000048,,, +13882.5,D,,DDK6 DWD,f,Pinneberg/Haidkamp (shs),53.672828,9.807731,,20,,287,51,47,,2100-2211,1234567,-13882.5,,2000048,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0040-0140,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0305-0550,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0700-0740,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0905-1030,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1300-1340,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1505-1740,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1900-1940,1234567,,,21800038,,, +13900,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,2050-2230,1234567,,,21800038,,, +13920,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50011173,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0015-0215,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0245-0330,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0400-0500,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0600-0945,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1015-1715,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1800-1845,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1915-2045,1234567,,,37700106,,, +13920,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2215-2400,1234567,,,37700106,,, +13930,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,,,20016138,,, +13970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50011591,,, +13988.5,J,,JMH4,f,Kagoshima (kyu-kag),31.302222,130.536944,,5,,9269,45,138,,0000-2400,1234567,-13988.5,,31400037,,, +14020,I,,I2QIL,b,Brescia (bs),45.55,10.2,,0.025,,780,158,81,,,,,?,55055,,, +14062,RUS,,UA1AVA,b,St Petersburg,59.933333,30.366667,,0.0001,,1710,50,114,,,,,1/2 Dip A1 06-15UTC,55056,,, +14098,I,,IW3ICH,b,San Martino di Venezze (ro),45.133333,11.866667,,0.025,,873,151,82,,,,,?,55057,,, +14099,I,,IZ0HCC,b,Roma (rm),41.8,12.45,,0.025,,1234,156,85,,,,,?,55058,,, +14100,FIN,,OH2B,b,Lohja,60.516667,24.116667,,0.025,,1429,42,87,,,,,Vertical Omni A1 IBP cycle,55072,,, +14100,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP cycle,55073,,, +14100,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55071,,, +14100,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55060,, +14100,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 TNonOp,55066,,, +14100,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 TNonOp,55059,,, +14100,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55070,,, +14100,CLN,,4S7B,b,Colombo,6.716667,80.2,,0.025,,8315,99,156,,,,,Vertical Omni A1 IBP cycle,55068,,, +14100,VEN,,YV5B,b,Caracas/Calle Norte 6,6.5,-66.5,,0.025,,8275,260,156,,,,,Vertical Omni A1 TNonOp,55076,,, +14100,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55069,,, +14100,USA,,W6WX,b,Mt Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55061,,, +14100,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55067,,, +14100,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55065,,, +14100,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP cycle,55075,,, +14100,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55074,,, +14100,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55062,, +14100,AUS,,VK6RBP,b,Roleystone (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 TNonOp,55064,,, +14100,NZL,,ZL6B,b,near Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55063,,, +14101,I,,IN3UFW,b,near Mezzolombardo (tn),46.216667,11.116667,,0.025,,739,151,80,,,,,?,55078,,, +14101,ATA,,R1ANF,b,South Shetland (ssi),-62.466667,-58.95,,0.025,,13961,211,176,,,,,?,55077,,, +14103,I,,IV3VOU,b,Verzegnis (ud),46.383333,12.95,,0.025,,794,141,81,,,,,?,55079,,, +14161,I,,I1YRB,b,Torino/Torre Bert (to),45.05,7.7,,0.0002,,791,173,102,,,,,Vertical Omni QRSS3 24,55080,,, +14370,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50019373,,, +14467.3,D,,DDH8 DWD,r,Pinneberg/Haidkamp (shs),53.672828,9.807731,,1,,287,51,60,,0000-2400,1234567,-14467.3,,2000046,,, +14670,CAN,,CHU,,Ottawa (ON),45.295556,-75.757222,,3,,5749,297,110,,0000-2400,1234567,,,20100016,,, +14700,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50014331,,, +14750,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50019374,,, +14800,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017198,,, +14870,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017426,,, +14900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022363,,, +14920,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50017815,,, +14950.7,CLM,es,Salem Streo,,Rioblanco (tol),3.533333,-75.683333,,0.5,,9158,266,147,,0000-2400,1234567,75,,35902914,,, +14980,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017656,,, +14996,RUS,,RWM,,Elektrougli (MO),55.737778,38.153889,,8,,2098,66,69,,0000-2400,1234567,,,6700072,,, +15000,I,,Assoc. Amici di Italcable,,Corsanico-Bargecchia (lu),43.913333,10.295556,,0.09,,956,161,77,,0000-2400,1234567,991,,4000056,,, +15000,CHN,,BPM,,Lintong/Pucheng (SA),34.947778,109.552389,,10,,7813,58,125,,0059-0830,1234567,0,,36200218,,, +15000,USA,en,WWV,,Fort Collins (CO),40.679167,-105.040139,,10,,7770,311,125,,0000-2400,1234567,0,,20000087,,, +15000,HWA,en,WWVH,,Kekaha (HI),21.987583,-159.763889,,10,,11667,347,143,,0000-2400,1234567,0,,20000092,,, +15006,E,es,EBC,,San Fernando/ROA (AND-CA),36.464222,-6.206111,,10,,2002,215,67,,1000-1025,12345..,,,2200018,,, +15025,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200024,,, +15030,IND,en,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,60,6367,85,97,FE,1000-1100,1234567,,,50018920,,, +15030,IND,en,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,,1000-1100,1234567,,,50019375,,, +15034,CAN,en,CHR Trenton Volmet,u,Trenton/Point Petre (ON),43.844444,-77.146667,,1,,5937,297,116,,1010-2400,1234567,2,,20100021,,, +15040,IND,my,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,100,132,6235,85,99,,1215-1315,1234567,,,50011001,,, +15040,IND,my,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,100,,7561,97,113,SEA,1215-1315,1234567,,,50023965,,, +15050,IND,si,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,250,174,6235,85,95,CLN,1300-1500,1234567,,,50009040,,, +15050,IND,ta,All India R GOS,d,Delhi/Khampur (DL),28.822222,77.127778,,250,174,6235,85,95,CLN,1115-1215,1234567,,,50009040,,, +15070,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50021230,,, +15085,IRN,it,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0620-0720,1234567,,,50023428,,, +15090,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0700-0730,1234567,,,50021744,,, +15090,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1030-1130,1234567,,,50021744,,, +15090,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1230-1330,1234567,,,50021744,,, +15090,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1400-1430,1234567,,,50021744,,, +15090,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0730-0830,1234567,,,50021744,,, +15090,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0930-1030,1234567,,,50021744,,, +15090,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1130-1230,1234567,,,50021744,,, +15090,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1330-1400,1234567,,,50021744,,, +15090,THA,fa,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,304,8917,74,120,,0830-0930,1234567,,,50021745,,, +15100,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,313,5607,84,93,,0830-1104,1234567,,,50021235,,, +15100,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0500-0600,1234567,,,50016310,,, +15100,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0400-0500,1234567,,,50016310,,, +15100,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0300-0400,1234567,,,50016310,,, +15100,KRE,zh,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,238,8231,44,116,SEA,0600-0700,1234567,,,50016310,,, +15105,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1800-1830,1234567,,,50009997,,, +15105,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1930-2000,1234567,,,50009997,,, +15105,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,2000-2030,....5..,,,50009997,,, +15105,BGD,en,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,100,,7515,79,112,SAs,1230-1300,1234567,,,50017657,,, +15105,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023966,,, +15105,SWZ,KiR,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,EAf,1557-1627,12345..,,,50016838,,, +15105,SWZ,Kir,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,13,9062,157,124,,1600-1630,12345..,,,50016838,,, +15105,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50023967,,, +15110,ROU,es,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SAm,0000-0100,1234567,,,50023429,,, +15110,RUS,,GTRK Tatarstan-Na Volne Tatarstana,,Samara/Zhygulevsk (SA),53.274167,50.230278,,250,58,2910,70,62,,0410-0500,1234567,,,50021746,,, +15110,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,270,5727,65,87,ME,1200-1300,1234567,,,50006698,,, +15110,PHL,en,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SAs,1530-1600,1234567,,,50021241,,, +15110,PHL,en,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,,1530-1550,12345.7,,,50021241,,, +15110,PHL,en,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,,1530-1600,.....6.,,,50021241,,, +15110,PHL,hi,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,SAs,1430-1450,1234567,,,50021241,,, +15110,PHL,ml,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,SAs,1510-1530,1234567,,,50021241,,, +15110,PHL,ta,R Vaticana,,Tinang (VOA) (tlc),15.365278,120.633333,,250,280,10223,62,124,SAs,1450-1510,1234567,,,50021241,,, +15115,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SEA,0130-0230,1234567,,,50023968,,, +15115,MRA,zh,Voice of America,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,300,11575,40,132,,1200-1300,1234567,,,50021747,,, +15120,ARS,bn,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,70,4552,116,76,,1200-1500,1234567,,,50021748,,, +15120,ARS,bn,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,SAs,1200-1500,1234567,,,50023969,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,,5068,184,84,Eu,0445-0700,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,,0500-0700,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,,1830-2000,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,Eu,0800-0900,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,Eu,1500-1600,1234567,,,50016313,,, +15120,NIG,fr,Voice of Nigeria,,Ikorodu (lag),6.593194,3.495806,,250,7,5068,184,84,Eu,0700-0800,1234567,,,50016313,,, +15120,NIG,en,Voice of Nigeria,D,Abuja/Lugbe (fct),8.967333,7.363472,,100,,4798,179,85,Eu,1830-2000,1234567,,,6200004,,, +15120,IND,gu,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,EAf,0415-0430,1234567,,,50015428,,, +15120,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,EAf,0315-0415,1234567,,,50015428,,, +15120,IND,hi,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,240,7561,97,106,EAf,0430-0530,1234567,,,50015428,,, +15120,IND,kn,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,300,7561,97,106,ME,0215-0300,1234567,,,50015428,,, +15120,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,322,7797,50,108,Sib,0300-0500,1234567,,,50006703,,, +15120,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,322,7797,50,108,Sib,0500-0700,1234567,,,50006703,,, +15120,CUB,es,China R Int.,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,SAm,0000-0100,1234567,,,50006704,,, +15120,CLN,lo,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,65,8219,99,115,,1100-1200,1234567,,,50013046,,, +15120,MRA,lo,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1100-1200,1234567,,,50023430,,, +15125,MLI,ar,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,EAf,1600-1700,1234567,,,50006708,,, +15125,MLI,sw,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,EAf,1700-1800,1234567,,,50006708,,, +15125,CTR,es,RNE R Exterior,,Caiari de Poroc (lmn),10.42,-83.72,,100,110,9104,277,124,,1200-2300,......7,,,50018925,,, +15125,CTR,es,RNE R Exterior,,Caiari de Poroc (lmn),10.42,-83.72,,100,110,9104,277,124,,1600-2300,.....6.,,,50018925,,, +15125,CTR,es,RNE R Exterior,,Caiari de Poroc (lmn),10.42,-83.72,,100,110,9104,277,124,,1800-2000,12345..,,,50018925,,, +15130,F,ja,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,152,660,211,37,Af,1900-2100,1234567,,,50021248,,, +15130,G,ku,Voice of America,,Woofferton (EN-SHP),52.313333,-2.722778,,300,102,622,276,39,,1400-1500,1234567,,,50021750,,, +15130,D,ru,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EEu,1200-1600,1234567,,,50023431,,, +15130,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,150,95,7797,50,113,FE,0300-0600,1234567,,,50006711,,, +15130,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,0100-0200,1234567,,,50023970,,, +15135,CHN,es,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,0600-0800,1234567,,,50023432,,, +15135,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,0830-0930,1234567,,,50006715,,, +15135,CHN,ms,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,177,8246,70,113,INS,0930-1030,1234567,,,50006715,,, +15135,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,175,8246,70,120,INS,1030-1130,1234567,,,50006715,,, +15140,IRN,zh,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,FE,1150-1250,1234567,,,50023435,,, +15140,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0500-0600,1234567,,,50006718,,, +15140,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,Eu,1500-2200,1234567,,,11700012,,, +15140,OMA,en,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,220,5629,115,93,Eu,1400-1500,1234567,,,11700012,,, +15140,IND,ru,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,EEu,1615-1715,1234567,,,50009058,,, +15140,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SAm,0200-0300,1234567,,,50023433,,, +15145,D,TAH,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,0830-0900,1234567,,,50023439,,, +15145,D,fr,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,0800-0830,1234567,,,50023439,,, +15145,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,ME,0600-0700,1234567,,,50023438,,, +15145,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,0700-0800,1234567,,,50006724,,, +15145,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,SEA,0000-0200,1234567,,,50023437,,, +15145,CLN,km,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,73,8219,99,115,,1230-1330,1234567,,,50021257,,, +15145,MRA,km,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,226,11578,41,128,,1130-1230,1234567,,,50021751,,, +15150,D,BGL,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1545-1600,..345..,,,50023441,,, +15150,D,BUN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1545-1600,12.....,,,50023441,,, +15150,D,CHG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1545,12.....,,,50023441,,, +15150,D,KUM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1600-1615,....56.,,,50023441,,, +15150,D,KVI,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1545,.....6.,,,50023441,,, +15150,D,NG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1600-1615,..34...,,,50023441,,, +15150,D,awa,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1600-1615,12.....,,,50023441,,, +15150,D,dv,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1615-1630,...45..,,,50023441,,, +15150,D,fa,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,AFG,1545-1600,.....67,,,50023441,,, +15150,D,hi,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1615-1630,123..67,,,50023441,,, +15150,D,mai,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1545,..345..,,,50023441,,, +15150,D,ps,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1600-1615,......7,,,50023441,,, +15150,D,sd,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1530-1545,......7,,,50023441,,, +15150,ROU,fr,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,SEu,1100-1200,1234567,,,50023442,,, +15150,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50023971,,, +15150,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,FE,0600-0700,1234567,,,50022066,,, +15150,GUM,K-W,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1430-1500,1234567,,,50021262,,, +15150,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1300-1330,1234567,,,50021262,,, +15150,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1330-1400,......7,,,50021262,,, +15150,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,2300-2330,1234567,,,50021262,,, +15150,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,2330-2400,......7,,,50021262,,, +15150,GUM,lo,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,2330-2400,...4.6.,,,50021262,,, +15150,GUM,th,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,2330-2400,123.5..,,,50021262,,, +15155,D,om,Adventist World R,,Nauen (brb),52.647778,12.908611,,250,140,445,80,38,EAf,1730-1800,1234567,,,50021264,,, +15155,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,SAs,0030-0100,1234567,,,50023443,,, +15160,D,kab,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,NAf,0800-0830,1234567,,,50023444,,, +15160,EGY,uz,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,50,3170,130,65,,1500-1600,1234567,,,50016316,,, +15160,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0100-0400,1234567,,,50006734,,, +15160,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0400-0500,1234567,,,50006734,,, +15160,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,305,8663,46,119,ME,0900-1000,1234567,,,50006737,,, +15160,CHN,km,China R Int.,,Nanning/SARFT954 (GX),22.792222,108.191667,,100,200,8789,67,123,SEA,1030-1130,1234567,,,50006735,,, +15160,MRA,km,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,1230-1330,1234567,,,50022069,,, +15160,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,,11715,42,133,PHL,1200-1300,1234567,,,50023972,,, +15160,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,65,16373,78,148,SOc,0100-0500,1234567,,,50016315,,, +15165,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50023973,,, +15170,E,,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,340,1547,213,49,,1330-1355,12345..,,,50019380,,, +15170,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1300-1500,1234567,,,50023445,,, +15170,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,355,4552,116,76,ME,0300-0600,1234567,,,50016317,,, +15170,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0400-0500,1234567,,,50006742,,, +15170,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023974,,, +15170,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0500-0600,1234567,,,50006741,,, +15170,CHN,zh,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,59,8886,55,116,FE,0600-0700,1234567,,,50006741,,, +15170,AFS,fr,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,CAf,0600-0800,1234567,,,50006744,,, +15170,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,FE,0100-0200,1234567,,,50018946,,, +15170,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,2330-0030,1234567,,,50018946,,, +15175,IND,gu,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,205,7123,98,104,EAf,1515-1600,1234567,,,50009069,,, +15175,MRA,VN,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50023975,,, +15180,F,ru,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,CAs,1400-1500,1234567,,,50023977,,, +15180,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,315,7046,290,108,WNA,2200-2300,1234567,,,50017431,,, +15180,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023976,,, +15180,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0400-0500,1234567,,,50016318,,, +15180,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0300-0400,1234567,,,50016318,,, +15180,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0500-0600,1234567,,,50016318,,, +15180,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,28,8231,44,116,LAm,0600-0700,1234567,,,50016318,,, +15180,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50023978,,, +15185,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0700-1000,1234567,,,50023447,,, +15185,IND,gu,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,,0415-0430,1234567,,,50011002,,, +15185,IND,hi,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,,0315-0415,1234567,,,50011002,,, +15185,IND,hi,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,245,6367,85,97,,0430-0530,1234567,,,50011002,,, +15185,IND,gu,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,205,7123,98,104,EAf,0415-0430,1234567,,,50018948,,, +15185,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,205,7123,98,104,EAf,0315-0415,1234567,,,50018948,,, +15185,IND,hi,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,205,7123,98,104,EAf,0430-0530,1234567,,,50018948,,, +15190,ROU,en,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,EAf,1500-1530,......7,,,50023979,,, +15190,ROU,sw,IRRS Milano,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,EAf,1530-1600,......7,,,50023979,,, +15190,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,SAs,1000-1100,1234567,,,50023448,,, +15190,GNE,en,R Africa,,Bata/Nsueeman (bat),1.825833,9.779167,,50,164,5600,176,96,,0530-0900,1234567,,,40001196,,, +15190,GNE,en,R Africa,,Bata/Nsueeman (bat),1.825833,9.779167,,50,164,5600,176,96,,1400-2130,1234567,,,40001196,,, +15190,USA,en,R Africa,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Af,2000-2300,1234567,,,50023980,,, +15190,PHL,,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,,1730-1930,12...67,,,33300029,,, +15190,PHL,,Radyo Magasin,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,,1730-1930,...4...,,,33300029,,, +15190,PHL,,Radyo ng Bayan,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,,1730-1930,..3.5..,,,33300029,,, +15190,PHL,en,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,250,283,10223,62,124,ME,1730-1930,1234567,,,33300029,,, +15190,B,pt,ZYE521 Rdio Inconfidncia,,Belo Horizonte/Contagem (MG),-19.900733,-44.052794,,25,122,9376,227,131,,0000-2400,1234567,5,,36902756,,, +15190,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50023981,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1400-1425,12..5..,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1400-1430,...4...,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1400-1435,..3...7,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SAs,1400-1423,12345.7,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SAs,1423-1430,..34..7,,,50021281,,, +15190,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SAs,1430-1435,..3...7,,,50021281,,, +15190,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1100-1200,1234567,,,50023449,,, +15190,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1230,1234..7,,,50023449,,, +15190,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1200-1300,....56.,,,50023449,,, +15190,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,1230-1300,1234..7,,,50023449,,, +15195,RUS,,GTRK Tatarstan-Na Volne Tatarstana,,Samara/Zhygulevsk (SA),53.274167,50.230278,,250,294,2910,70,62,,0810-0900,1234567,,,50021752,,, +15195,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,110,4943,82,83,,1200-1300,1234567,,,50021753,,, +15195,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,250,110,4943,82,83,,1300-1400,1234567,,,50021753,,, +15195,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,290,9208,36,120,FE,0100-0700,1234567,,,50006756,,, +15200,ROU,ar,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,NAf,0730-0800,1234567,,,50023450,,, +15200,TUR,ar,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,WAf,1500-1600,1234567,,,50023451,,, +15200,GUM,ban,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,248,11715,42,133,INS,0930-0945,......7,,,50006758,,, +15200,GUM,ban,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0930-0945,.....6.,,,50006758,,, +15200,GUM,ban,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0945-1000,......7,,,50006758,,, +15200,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,SEA,0850-0930,.2345..,,,50006758,,, +15200,GUM,en,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,SEA,0900-0930,1......,,,50006758,,, +15200,GUM,id,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,1000-1030,12345.7,,,50006758,,, +15200,GUM,id,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,1000-1030,1234567,,,50006758,,, +15200,GUM,jv,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,1000-1030,.....6.,,,50006758,,, +15200,GUM,mad,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0930-0945,123456,,,50006758,,, +15200,GUM,mad,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0930-1000,12345..,,,50006758,,, +15200,GUM,mad,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,263,11715,42,133,INS,0945-1000,1234567,,,50006758,,, +15200,GUM,su,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,248,11715,42,133,INS,1030-1100,1234567,,,50006758,,, +15205,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,100,90,660,211,44,SAs,1400-1430,......7,,,50022073,,, +15205,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,100,90,660,211,44,SAs,1415-1430,123456,,,50022073,,, +15205,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,100,90,660,211,44,SAs,1430-1445,......7,,,50022073,,, +15205,EGY,fr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,WAf,2100-2300,1234567,,,50017529,,, +15205,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,320,4552,116,76,Eu,1600-1800,1234567,,,50016320,,, +15205,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,1200-1400,1234567,,,50023452,,, +15205,THA,ru,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0600-0700,1234567,,,50023453,,, +15205,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50023982,,, +15210,D,en,PanAmerican Broadcasting,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EAf,1900-2000,......7,,,50023455,,, +15210,EGY,fr,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,,2030-2230,1234567,,,50016848,,, +15210,IND,ar,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,ME,0430-0530,1234567,,,50009083,,, +15210,IND,fa,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,ME,0400-0430,1234567,,,50009083,,, +15210,IND,ur,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,,0530-0600,1234567,,,50009083,,, +15210,IND,ur,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,300,7123,98,104,ME,0530-0600,9999999,,,50009083,,, +15210,CHN,en,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,Oc,0900-1100,1234567,,,50006767,,, +15215,UAE,bo,FEBA R,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,315,5075,109,81,Tib,1200-1230,1234567,,,50006771,,, +15215,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023983,,, +15215,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SEA,1400-1500,12345..,,,50023456,,, +15215,THA,en,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,SEA,1500-1600,1234567,,,50023456,,, +15215,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50023984,,, +15215,GUM,bn,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,BGD,1300-1330,1234567,,,50009086,,, +15215,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SAs,1600-1630,1234567,,,50009086,,, +15220,ROU,zh,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,FE,0500-0530,1234567,,,50023458,,, +15220,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,SEu,0600-0800,1234567,,,50006772,,, +15220,CHN,hu,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,Eu,1000-1100,1234567,,,50006772,,, +15220,IRN,hy,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Cau,0920-0950,1234567,,,50023457,,, +15225,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,110,3170,130,65,AUS,2000-2200,1234567,,,50021294,,, +15225,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,295,4552,116,76,,1500-1700,1234567,,,50016323,,, +15225,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,1450-1800,1234567,,,50023985,,, +15225,CHN,cs,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,298,5347,76,84,Eu,1100-1200,1234567,,,50006779,,, +15225,USA,fr,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,Af,1830-2030,1234567,,,50023460,,, +15225,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50023986,,, +15225,BOT,fr,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,2030-2100,......7,,,50023459,,, +15225,BOT,ha,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,Af,2030-2100,.....6.,,,50023459,,, +15225,PHL,kac,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1230-1300,1234567,,,50006780,,, +15225,PHL,kar,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1300-1327,1234567,,,50006780,,, +15225,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50023987,,, +15225,GUM,MEI,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1315-1345,.....6.,,,50018959,,, +15225,GUM,MEI,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1330-1345,......7,,,50018959,,, +15225,GUM,as,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1315-1345,12345..,,,50018959,,, +15225,GUM,as,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1315-1345,12345.7,,,50018959,,, +15225,GUM,sat,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1315-1330,......7,,,50018959,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1100-1300,1234567,,,50016325,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1300-1500,1234567,,,50016325,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,2300-0400,1234567,,,50016325,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,,0000-0500,1234567,,,50016325,,, +15230,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,1100-1500,1234567,,,50016325,,, +15230,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,2200-2230,1234567,,,50016325,,, +15230,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,2230-2300,1234567,,,50016325,,, +15230,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,,2300-2400,1234567,,,50016325,,, +15235,D,ADI,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,..34...,,,50023461,,, +15235,D,C-F,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,12.....,,,50023461,,, +15235,D,C-O,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,.....67,,,50023461,,, +15235,D,DEO,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,...45..,,,50023461,,, +15235,D,DIM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,.2.....,,,50023461,,, +15235,D,GAR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,.....67,,,50023461,,, +15235,D,KAU,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,..3....,,,50023461,,, +15235,D,KBO,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,12.....,,,50023461,,, +15235,D,KNY,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,...45..,,,50023461,,, +15235,D,KRB,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,...4...,,,50023461,,, +15235,D,LEP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1515,.23....,,,50023461,,, +15235,D,MGA,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,.....67,,,50023461,,, +15235,D,MIS,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,..345..,,,50023461,,, +15235,D,MUN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1515-1530,..34...,,,50023461,,, +15235,D,NAG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,....5..,,,50023461,,, +15235,D,NIS,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,..3....,,,50023461,,, +15235,D,NOC,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,12.....,,,50023461,,, +15235,D,NW,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,...45..,,,50023461,,, +15235,D,RGM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,..3....,,,50023461,,, +15235,D,RON,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,......7,,,50023461,,, +15235,D,SGT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,..3....,,,50023461,,, +15235,D,SHC,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,12.....,,,50023461,,, +15235,D,SHP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1515,1......,,,50023461,,, +15235,D,SUM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,.....67,,,50023461,,, +15235,D,TGK,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,....56.,,,50023461,,, +15235,D,THA,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1515-1530,.....67,,,50023461,,, +15235,D,TMG,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1515-1530,12.....,,,50023461,,, +15235,D,bn,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1515-1530,....5..,,,50023461,,, +15235,D,dz,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,12.....,,,50023461,,, +15235,D,kha,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,.....67,,,50023461,,, +15235,D,mag,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1515,...45..,,,50023461,,, +15235,D,sat,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,1......,,,50023461,,, +15235,D,ur,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1500-1515,.....67,,,50023461,,, +15235,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,,1700-1755,12345..,,,50006786,,, +15235,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,WAf,1700-1800,12345..,,,50006786,,, +15235,AFS,fr,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,,1600-1655,12345..,,,50006786,,, +15235,AFS,fr,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,340,9003,160,120,WAf,1600-1700,12345..,,,50006786,,, +15235,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,,1000-1015,......7,,,50015474,,, +15235,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,,1000-1100,123456,,,50015474,,, +15235,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1000-1015,1234567,,,50015474,,, +15235,GUM,zh,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,200,305,11715,42,130,FE,1015-1100,123456,,,50015474,,, +15240,AUT,fr,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,100,,849,119,46,CAf,1930-2000,1234567,,,50023462,,, +15240,IRN,he,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,ME,1150-1220,1234567,,,50021299,,, +15240,GUM,KBO,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1230-1245,12345..,,,50013074,,, +15240,GUM,KBO,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1245-1300,12345.7,,,50013074,,, +15240,GUM,sat,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,290,11715,42,133,SAs,1300-1315,1234567,,,50013074,,, +15240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0000-0300,1234567,,,50016326,,, +15240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0300-0315,.....67,,,50016326,,, +15240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0315-0900,1234567,,,50016326,,, +15240,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,2200-2400,1234567,,,50016326,,, +15240,AUS,fr,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,30,16373,78,148,Oc,0300-0315,12345..,,,50016326,,, +15245,EGY,fa,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,70,3170,130,69,IRN,1330-1530,1234567,,,50018964,,, +15245,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0400-0600,1234567,,,50023988,,, +15245,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1300-1400,1234567,,,50016329,,, +15245,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1500-1600,1234567,,,50016329,,, +15245,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1800-1900,1234567,,,50016329,,, +15245,KRE,en,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,2100-2200,1234567,,,50016329,,, +15245,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1900-2000,1234567,,,50016329,,, +15245,KRE,es,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,2200-2300,1234567,,,50016329,,, +15245,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1400-1500,1234567,,,50016329,,, +15245,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1600-1700,1234567,,,50016329,,, +15245,KRE,fr,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,2000-2100,1234567,,,50016329,,, +15245,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,1700-1800,1234567,,,50016329,,, +15245,KRE,ko,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,,8231,44,116,,2300-2400,1234567,,,50016329,,, +15245,KRE,ru,KCBS Voice of Korea,,Kujang (pyb),40.079167,126.109444,,200,325,8231,44,116,Eu,0700-0900,1234567,,,50016329,,, +15245,TWN,zh,R Taiwan Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,300,325,9364,56,120,FE,0400-0600,1234567,,,50009093,,, +15250,IRN,de,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0720-0820,1234567,,,50023464,,, +15250,ASC,fr,FEBA R,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,70,6960,203,103,CAf,1830-1845,1234567,,,50006801,,, +15250,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,122,8246,70,120,PHL,0900-1100,1234567,,,50006800,,, +15255,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1100-1200,1234567,,,50023465,,, +15255,ASC,bm,Voice of America,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,2130-2200,12345..,,,50021307,,, +15255,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,328,9003,160,120,,0600-0655,12345..,,,50006804,,, +15255,AFS,en,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,250,328,9003,160,120,WAf,0600-0700,12345..,,,50006804,,, +15255,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0130-0200,1234567,,,50007748,,, +15255,PHL,zh,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,0130-0157,1234567,,,50007748,,, +15255,GUM,si,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CLN,1400-1430,1234567,,,50023466,,, +15260,G,ar,FEBA R,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,IRQ,0800-0830,1234567,,,50023989,,, +15260,F,en,PanAmerican Broadcasting,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAs,1500-1600,......7,,,50023470,,, +15260,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,110,1587,104,48,SEu,1000-1100,......7,,,50006810,,, +15260,IRN,sw,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EAf,0350-0450,1234567,,,50023467,,, +15260,AFS,ff,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,WAf,1930-2000,1234567,,,50023469,,, +15260,GUM,jv,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,2200-2230,.2.4..7,,,50022378,,, +15260,GUM,su,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,2200-2230,1.3.56.,,,50022378,,, +15265,D,uz,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,CAs,1400-1500,1234567,,,50023471,,, +15265,STP,sw,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,EAf,1630-1700,1234567,,,50023472,,, +15265,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1400,1234567,,,50023990,,, +15265,TWN,zh,R Taiwan Int.,,New Taipei City/Tamsui (TP),25.185556,121.416111,,250,225,9364,56,121,SEA,1300-1400,1234567,,,50007749,,, +15265,PHL,bn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,280,0030-0100,1234567,,,50013602,,, +15265,PHL,bn,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,0030-0057,1234567,,,50013602,,, +15270,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0200-0600,1234567,,,40001201,,, +15270,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,270,7773,50,113,,0600-0900,12.4567,,,40001201,,, +15270,TWN,vi,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,0900-1000,1234567,,,50007809,,, +15270,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,1000-1030,1234567,,,50007809,,, +15270,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,1030-1100,1234567,,,50007809,,, +15270,SNG,bn,BBC WS,,Kranji (nw),1.423056,103.7325,,100,,10381,83,128,SAs,0130-0200,1234567,,,50023473,,, +15275,RRW,am,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1600-1700,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,0,1900-2000,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,CAf,2000-2100,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1900-1930,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1930-2000,1234567,,,50006821,,, +15275,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0600-0630,1234567,,,50006821,,, +15275,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,265,6406,152,97,Af,1200-1300,1234567,,,50006821,,, +15275,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0630-0700,1234567,,,50006821,,, +15275,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,310,6406,152,97,WAf,1300-1400,1234567,,,50006821,,, +15275,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1000-1100,1234567,,,50006821,,, +15275,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,EAf,1500-1600,1234567,,,50006821,,, +15275,RRW,ur,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,30,6406,152,97,SAs,1430-1500,1234567,,,50006821,,, +15275,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,150,295,6406,152,99,Af,1700-1800,1234567,,,50006821,,, +15275,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,150,310,6406,152,99,WAf,1800-1900,1234567,,,50006821,,, +15280,PHL,hi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,300,0030-0100,1234567,,,50006824,,, +15280,PHL,hi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0030-0057,1234567,,,50006824,,, +15280,PHL,ur,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,,0100-0130,1234567,,,50006824,,, +15280,PHL,ur,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,0100-0127,1234567,,,50006824,,, +15285,D,AMD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,.....6.,,,50023474,,, +15285,D,BH,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,...4...,,,50023474,,, +15285,D,BHT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,.2.....,,,50023474,,, +15285,D,BNJ,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,.....67,,,50023474,,, +15285,D,BON,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,..3....,,,50023474,,, +15285,D,CD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,...4...,,,50023474,,, +15285,D,DES,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,..34...,,,50023474,,, +15285,D,GJ,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1230-1245,1......,,,50023474,,, +15285,D,GM,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,..34...,,,50023474,,, +15285,D,HAR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,.....67,,,50023474,,, +15285,D,KHT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,1......,,,50023474,,, +15285,D,KKN,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,....5..,,,50023474,,, +15285,D,KND,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,..3....,,,50023474,,, +15285,D,KOY,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1245-1300,.....67,,,50023474,,, +15285,D,KTW,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,....5..,,,50023474,,, +15285,D,KUI,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1415-1430,12.....,,,50023474,,, +15285,D,KUP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,......7,,,50023474,,, +15285,D,LAD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1230-1245,.2.....,,,50023474,,, +15285,D,MCH,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,..3....,,,50023474,,, +15285,D,MEI,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,12.....,,,50023474,,, +15285,D,MLT,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,...45..,,,50023474,,, +15285,D,NTK,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,......7,,,50023474,,, +15285,D,SMP,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,12.....,,,50023474,,, +15285,D,SRA,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,12.....,,,50023474,,, +15285,D,VAD,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,.2.....,,,50023474,,, +15285,D,VAR,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1430-1445,..3....,,,50023474,,, +15285,D,YER,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,.....6.,,,50023474,,, +15285,D,bho,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,.....67,,,50023474,,, +15285,D,bo,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1330-1345,......7,,,50023474,,, +15285,D,gon,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1400-1415,....5..,,,50023474,,, +15285,D,gu,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1245-1300,...45..,,,50023474,,, +15285,D,hi,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,.....67,,,50023474,,, +15285,D,hi,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1445-1500,12345..,,,50023474,,, +15285,D,ks,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1230-1245,..34...,,,50023474,,, +15285,D,mr,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,...45..,,,50023474,,, +15285,D,ne,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1300-1315,1234567,,,50023474,,, +15285,D,or,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1230-1245,....567,,,50023474,,, +15285,D,pa,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1245-1300,123....,,,50023474,,, +15285,D,sat,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1315-1330,1......,,,50023474,,, +15285,D,ur,Athmeeya Yathra,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,SAs,1345-1400,....56.,,,50023474,,, +15285,EGY,am,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,160,3170,130,69,EAf,1730-1900,1234567,,,50016336,,, +15285,EGY,so,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,160,3170,130,69,EAf,1700-1730,1234567,,,50016336,,, +15285,ARS,sw,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,EAf,0400-0700,1234567,,,50023991,,, +15285,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,13,10381,83,128,,1000-1200,1234567,,,50010015,,, +15285,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,25,10381,83,128,FE,1100-1200,1234567,,,50010015,,, +15290,F,ja,NHK R Japan,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,WAf,0800-1000,1234567,,,50006831,,, +15290,AUT,pa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,90,849,119,41,SAs,1530-1600,1234567,,,50018977,,, +15290,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,250,3170,130,65,WAf,1900-2030,1234567,,,50016855,,, +15290,PHL,en,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,349,10223,62,124,FE,0030-0100,1234567,,,50018978,,, +15290,TWN,zh,Taiwan Ch Yuyeh Kuangpo Tientai,,Tainan/Annan (TNS),23.044167,120.168611,,100,205,9489,58,125,INS,0800-0900,..3....,,,50007750,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,CAf,0600-0700,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,CAf,1700-1800,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,CAf,1800-1900,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,WAf,0900-1000,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,WAf,1200-1300,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,CAf,0700-0800,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,CAf,1900-2000,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,190,660,211,37,NAf,0800-0900,1234567,,,50006837,,, +15300,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,204,660,211,37,WAf,1700-2000,1234567,,,50006837,,, +15300,ROU,ar,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,247,1660,112,49,NAf,1500-1600,1234567,,,50021322,,, +15300,IRN,fa,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,CAs,0820-1150,1234567,,,50021321,,, +15310,IRN,es,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SEu,0520-0620,1234567,,,50023475,,, +15310,OMA,fa,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,45,5617,106,89,AFG,0930-1030,1234567,,,50010018,,, +15310,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,45,5617,106,89,AFG,0830-0930,1234567,,,50010018,,, +15310,OMA,ps,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,45,5617,106,89,AFG,1030-1130,1234567,,,50010018,,, +15310,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,290,8872,77,119,SAs,0100-0300,1234567,,,50010019,,, +15310,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,290,8872,77,119,SAs,1300-1400,1234567,,,50010019,,, +15310,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,290,8872,77,119,IRN,1500-1600,1234567,,,50010019,,, +15310,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,,1500-1700,1234567,,,50010019,,, +15310,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,1400-1500,1234567,,,50023476,,, +15315,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,WAf,1100-1600,1234567,,,50006841,,, +15315,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,500,170,660,211,37,CAf,0700-0730,1234567,,,50006841,,, +15320,CVA,tl,R Veritas Asia,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,130,1205,156,45,ME,1500-1553,1234567,,,50017658,,, +15320,TWN,en,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,SEA,0300-0400,1234567,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,0400-0430,1234567,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,0430-0500,1234567,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,0400-0430,1234.67,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,0400-0500,....5..,,,50013400,,, +15320,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,225,9434,57,125,,0430-0500,1234.67,,,50013400,,, +15320,PHL,mad,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,185,10292,62,128,INS,0800-0830,123....,,,50003376,,, +15320,PHL,sas,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,185,10292,62,128,INS,0800-0830,...4567,,,50003376,,, +15320,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,INS,2230-2300,1234567,,,50006846,,, +15320,GUM,id,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,INS,2200-2230,1234567,,,50006846,,, +15320,GUM,km,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,270,11707,42,133,,1300-1330,1234567,,,50006846,,, +15320,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,270,11707,42,133,CHN,2300-2400,1234567,,,50006846,,, +15325,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,270,9208,36,120,SAs,0200-1000,1234567,,,50006847,,, +15325,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,270,9208,36,120,SAs,1800-2000,1234567,,,50006847,,, +15325,B,pt,ZYE962 Rdio Gazeta,,So Paulo/Estrada de Riveira (SP),-23.707156,-46.742239,,1,350,9881,227,147,,0900-0300,1234567,,,40001208,,, +15330,CVA,ur,R Veritas Asia,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,70,1205,156,45,,1430-1500,1234567,,,50017659,,, +15330,CVA,ur,R Veritas Asia,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,70,1205,156,45,SAs,1430-1457,1234567,,,50017659,,, +15330,ROU,ar,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0730-0800,1234567,,,50023478,,, +15330,PHL,K-P,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,278,10292,62,128,SEA,1145-1200,1234567,,,50006849,,, +15330,PHL,Kar,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,278,10292,62,128,,1100-1115,1234567,,,50006849,,, +15330,PHL,MON,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,278,10292,62,128,SEA,1115-1145,1234567,,,50006849,,, +15335,D,am,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1630-1800,12...67,,,50018986,,, +15335,D,am,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1700-1800,...45..,,,50018986,,, +15335,D,am,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1730-1800,1.3....,,,50018986,,, +15335,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1830-1900,......7,,,50018986,,, +15335,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1830-1930,....5..,,,50018986,,, +15335,D,om,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1600-1630,1..45.7,,,50018986,,, +15335,D,so,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1800-1830,.2.4.67,,,50018986,,, +15335,D,ti,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,142,445,80,42,,1700-1730,1.3....,,,50018986,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,12345..,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,12345.7,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1800,......7,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1700-1730,.2.456.,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,.....6.,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1800-1830,....56.,,,50023479,,, +15335,F,am,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1830-1845,.....6.,,,50023479,,, +15335,F,om,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1600-1630,1..45.7,,,50023479,,, +15335,F,om,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,...4...,,,50023479,,, +15335,F,so,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1730-1800,.2..5..,,,50023479,,, +15335,F,ti,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1700-1730,1.3....,,,50023479,,, +15335,F,ti,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1800-1830,.2.4...,,,50023479,,, +15335,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,EEu,0800-1000,1234567,,,50006852,,, +15335,SNG,en,BBC WS,,Kranji (nw),1.423056,103.7325,,100,13,10381,83,128,SEA,0000-0200,1234567,,,50010022,,, +15340,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,,1500-1800,......7,,,50017046,,, +15340,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,250,160,7939,284,112,CNA,1300-1500,1234567,,,50017046,,, +15340,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0900-1100,1234567,,,50023480,,, +15340,CUB,ar,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,53,7939,284,116,,2030-2100,1234567,,,50017046,,, +15340,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,53,7939,284,116,,2200-2400,1234567,,,50017046,,, +15340,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,53,7939,284,116,,1930-2000,1234567,,,50017046,,, +15340,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,53,7939,284,116,,2000-2030,1234567,,,50017046,,, +15340,AUS,CHG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,.....67,,,50016342,,, +15340,AUS,HMA,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,..3....,,,50016342,,, +15340,AUS,bho,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,......7,,,50016342,,, +15340,AUS,bn,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1245-1300,1......,,,50016342,,, +15340,AUS,bn,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,1......,,,50016342,,, +15340,AUS,dz,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1300-1315,....5..,,,50016342,,, +15340,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,,1445-1530,12345.7,,,50016342,,, +15340,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,,1515-1530,.....6.,,,50016342,,, +15340,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1230-1245,12345.7,,,50016342,,, +15340,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1500-1530,1234567,,,50016342,,, +15340,AUS,gu,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,....5..,,,50016342,,, +15340,AUS,hi,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1245-1300,...45.7,,,50016342,,, +15340,AUS,hi,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1330-1400,1234567,,,50016342,,, +15340,AUS,hi,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1445-1500,12345..,,,50016342,,, +15340,AUS,kru,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1245-1300,..3....,,,50016342,,, +15340,AUS,kru,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,..3....,,,50016342,,, +15340,AUS,ml,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,...4...,,,50016342,,, +15340,AUS,mr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,....5..,,,50016342,,, +15340,AUS,mwr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1245-1300,.2.....,,,50016342,,, +15340,AUS,mwr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,.2.....,,,50016342,,, +15340,AUS,ne,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,,1445-1515,.....6.,,,50016342,,, +15340,AUS,ne,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1230-1300,.....6.,,,50016342,,, +15340,AUS,ne,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1300-1315,1234...,,,50016342,,, +15340,AUS,or,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1300-1315,.....6.,,,50016342,,, +15340,AUS,pa,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1300-1315,......7,,,50016342,,, +15340,AUS,pa,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1445-1500,......7,,,50016342,,, +15340,AUS,ta,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,12.....,,,50016342,,, +15340,AUS,te,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1430-1445,...4...,,,50016342,,, +15340,AUS,ur,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1315-1330,.....6.,,,50016342,,, +15340,AUS,ur,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1400-1430,1234567,,,50016342,,, +15340,AUS,ur,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SAs,1445-1500,.....6.,,,50016342,,, +15345,EGY,en,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,150,196,3024,131,66,EAf,1600-1800,1234567,,,50011497,,, +15345,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,150,195,3170,130,67,,1600-1800,1234567,,,50016345,,, +15345,ARG,de,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,1700-1800,12345..,,,50016344,,, +15345,ARG,de,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,2100-2200,12345..,,,50016344,,, +15345,ARG,en,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,1800-1900,12345..,,,50016344,,, +15345,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,0900-1000,12345..,,,50016344,,, +15345,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,1300-1500,12345..,,,50016344,,, +15345,ARG,es,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,2200-2400,12345..,,,50016344,,, +15345,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,,0900-1200,1234567,78,,40001213,,, +15345,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,,1800-0300,......7,78,,40001213,,, +15345,ARG,es,R.Nacional de Argentina,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,,2000-0300,.....6.,78,,40001213,,, +15345,ARG,fr,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,2000-2100,12345..,,,50016344,,, +15345,ARG,it,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,35,11502,230,132,Eu,1900-2000,12345..,,,50016344,,, +15345,ARG,ja,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,348,11502,230,132,FE,1100-1200,12345..,,,50016344,,, +15345,ARG,pt,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,,11502,230,132,Am,1200-1300,12345..,,,50016344,,, +15345,ARG,zh,R.Argentina al Exterior,,Buenos Aires/General Pacheco (df),-34.440278,-58.617222,,100,348,11502,230,132,FE,1000-1100,12345..,,,50016344,,, +15350,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,0700-1400,1234567,,,50023481,,, +15350,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0500-1100,1234567,,,50006860,,, +15350,CHN,hi,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0300-0400,1234567,,,50006860,,, +15350,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,174,5347,76,91,SAs,0400-0500,1234567,,,50006860,,, +15355,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,315,5629,115,93,EAf,0200-0300,1234567,,,11700018,,, +15355,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,315,5629,115,93,Eu,2200-0100,1234567,,,11700018,,, +15355,OMA,ar,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,315,5629,115,93,Eu,2200-2400,1234567,,,11700018,,, +15355,OMA,en,R Sultanate Oman,,Thumrait (dho),17.6375,53.931944,,100,315,5629,115,93,EAf,0300-0400,1234567,,,11700018,,, +15355,PHL,tl,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,,10171,62,124,FE,2300-2327,1234567,,,50021336,,, +15360,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,.....6.,,,50022383,,, +15360,TUR,tt,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,EEu,1100-1130,1234567,,,50023485,,, +15360,EGY,fa,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,AFG,1300-1400,1234567,,,50023482,,, +15360,IRN,zh,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,FE,1150-1250,1234567,,,50023484,,, +15360,AFS,sw,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1500-1600,1234567,,,50023483,,, +15360,SWZ,ur,Trans World R,,Mpangela Ranch (man),-26.339167,31.598889,,100,43,9062,157,124,SAs,1400-1415,1234567,,,50010947,,, +15365,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,1......,,,50022386,,, +15370,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,..3....,,,50021345,,, +15370,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0800-0900,......7,,,50023486,,, +15370,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0100-0600,1234567,,,40001216,,, +15370,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0600-0900,1.34567,,,40001216,,, +15370,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0900-1100,1234567,,,40001216,,, +15370,CLN,en,Brother Stair,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,250,60,8200,97,115,,1300-1400,1234567,,,50020167,,, +15370,CUB,eo,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,2230-2300,......7,,,50016351,,, +15370,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,,1500-1800,......7,,,50016351,,, +15370,CUB,fr,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,2230-2300,123456,,,50016351,,, +15370,CUB,ht,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,2300-2330,1234567,,,50016351,,, +15370,CUB,pt,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,2330-2400,1234567,,,50016351,,, +15370,CUB,qu,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,,0000-0030,1234567,,,50016351,,, +15370,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,2200-2300,1234567,,,50023487,,, +15375,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,....5..,,,50022387,,, +15375,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,1100-1200,1234567,,,50023489,,, +15375,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1100-1400,1234567,,,50023992,,, +15380,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,......7,,,50022388,,, +15380,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,EGY,0900-1000,......7,,,50023490,,, +15380,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,310,4552,116,76,ME,0600-0900,1234567,,,50016352,,, +15380,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,310,4552,116,76,ME,1200-1400,1234567,,,50016352,,, +15380,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,2300-1100,1234567,,,40001219,,, +15385,E,SEF,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,92,1547,213,49,ME,1425-1455,1......,,,50010029,,, +15385,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,1500-1700,123456,,,50010029,,, +15385,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,WAf,1900-2000,12345..,,,50010029,,, +15385,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,.2.....,,,50022389,,, +15385,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0000-0100,1234567,,,50023993,,, +15385,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,332,10223,62,124,FE,0000-0100,1234567,,,50003418,,, +15385,USA,en,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,270,8617,307,125,,1800-1900,1234567,,,50016353,,, +15385,USA,es,KJES,,Vado (KJES) (NM),32.133333,-106.597222,,50,100,8617,307,125,,1900-2000,1234567,,,50016353,,, +15390,BUL,am,ESAT R,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,ETH,1700-1800,...4...,,,50022391,,, +15390,CHN,ug,CNR 13,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,298,7783,55,115,,0000-1100,1234567,,,40001221,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1100-1115,......7,,,50019001,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1100-1130,.....6.,,,50019001,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1115-1130,......7,,,50019001,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1115-1130,....5..,,,50019001,,, +15390,CLN,en,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1130-1200,.....6.,,,50019001,,, +15390,CLN,ja,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1130-1145,......7,,,50019001,,, +15390,CLN,ja,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1145-1200,......7,,,50019001,,, +15390,CLN,zh,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1100-1115,.2345..,,,50019001,,, +15390,CLN,zh,Bible Voice,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,125,45,8200,97,118,,1100-1130,1......,,,50019001,,, +15390,GUM,kar,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SEA,1300-1330,1234567,,,50019002,,, +15390,GUM,my,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1200-1245,1234...,,,50019002,,, +15390,GUM,my,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,,1200-1300,....567,,,50019002,,, +15390,GUM,my,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SEA,1200-1245,1234567,,,50019002,,, +15390,GUM,my,KTWR Trans World R,,Agana/Merizo (KTWR) (GU),13.277778,144.673611,,100,285,11715,42,133,SEA,1245-1300,.....67,,,50019002,,, +15395,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1430-1500,1234567,,,50023491,,, +15395,F,fa,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1530-1630,1234567,,,50023491,,, +15400,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,,1500-2100,1234567,,,50010032,,, +15400,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1700-2000,1234567,,,50010032,,, +15400,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,WAf,2100-2200,.....6.,,,50023492,,, +15400,AUS,C-H,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SEA,0100-0115,..3.5..,,,50016354,,, +15400,AUS,RWG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SEA,0030-0100,1234567,,,50016354,,, +15400,AUS,VN,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1100-1115,.2..5..,,,50016354,,, +15400,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1100-1115,1.34...,,,50016354,,, +15400,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SEA,0100-0115,1....67,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,,2345-2400,123456,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,INS,0000-0030,123456,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,INS,1215-1230,1234567,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,INS,1230-1300,123456,,,50016354,,, +15400,AUS,id,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,INS,2345-2400,1234567,,,50016354,,, +15400,AUS,ja,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1100-1125,.....67,,,50016354,,, +15400,AUS,ms,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,MLA,0000-0030,......7,,,50016354,,, +15400,AUS,ms,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,MLA,1230-1300,......7,,,50016354,,, +15400,AUS,my,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,SEA,0100-0115,.2.4...,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1000-1030,.....67,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1000-1030,12345..,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,307,13569,74,139,FE,1030-1100,1234567,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,,1000-1100,.....67,,,50016354,,, +15400,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,,1100-1130,12345..,,,50016354,,, +15410,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,IRN,1200-1400,1234567,,,50023493,,, +15410,G,fa,R Farda,,Woofferton (EN-SHP),52.313333,-2.722778,,100,,622,276,43,IRN,1400-1600,1234567,,,50023494,,, +15410,IND,th,All India R GOS,,Panaji (GA),15.457778,73.848056,,250,120,7123,98,104,SEA,1115-1200,1234567,,,50016355,,, +15410,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,60,7561,97,106,FE,1000-1100,1234567,,,50015524,,, +15415,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0500-0600,1234567,,,36201081,,, +15415,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0900-1000,1234567,,,36201081,,, +15415,CHN,ko,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0600-0700,12.4567,,,36201081,,, +15415,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0700-0900,1.34567,,,36201081,,, +15415,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,355,16373,78,148,WOc,2200-0700,1234567,,,50016356,,, +15420,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,,1600-1700,.....6.,,,50016357,,, +15420,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1200-2300,1234567,,,50016357,,, +15420,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1400-1800,1234567,,,50016357,,, +15420,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,50,245,5189,294,92,NAm,1800-2200,1234567,,,50016357,,, +15420,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,270,7819,127,111,EAf,0400-0800,1234567,,,50010033,,, +15420,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,270,7819,127,111,EAf,1500-2000,1234567,,,50010033,,, +15420,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,270,7819,127,111,EAf,1400-1500,1234567,,,50010033,,, +15420,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,295,7819,127,111,,1300-1500,1234567,,,50010033,,, +15420,TWN,iba,R Free Sarawak,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,,9434,57,125,SEA,1100-1230,1234567,,,50022395,,, +15425,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0100-0200,1234567,,,50006904,,, +15425,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0200-0300,1234567,,,50006904,,, +15430,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,300,165,1587,104,48,IRN,0800-0900,......7,,,50016500,,, +15430,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0900-1000,......7,,,50023497,,, +15430,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0500-0700,1234567,,,50023496,,, +15430,CLN,MEI,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SAs,1230-1300,..3.5.7,,,50023498,,, +15430,CLN,MON,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SAs,1200-1230,1234567,,,50023498,,, +15430,CLN,bn,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,SAs,1230-1300,12.4.6.,,,50023498,,, +15430,CHN,ta,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,,8246,70,120,SAs,0300-0400,1234567,,,50023495,,, +15435,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,310,4552,116,76,,1500-1700,1234567,,,50016359,,, +15435,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,1500-1800,1234567,,,50023994,,, +15435,CHN,ps,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,0200-0230,1234567,,,50006908,,, +15435,PHL,C-O,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SAs,0100-0115,1234567,,,50006909,,, +15435,PHL,MEI,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SAs,0115-0130,1234567,,,50006909,,, +15435,PHL,TN,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,0045-0100,1234567,,,50006909,,, +15435,PHL,shn,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,305,10292,62,128,SEA,0000-0045,1234567,,,50006909,,, +15440,AUT,ur,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,90,849,119,41,PAK,1400-1430,1234567,,,50006914,,, +15440,USA,en,Brother Stair,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Eu,2000-2200,1234567,,,50023995,,, +15440,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,,8246,70,113,Oc,0900-1000,1234567,,,50006911,,, +15440,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1000-1100,1234567,,,50006911,,, +15440,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1100-1200,1234567,,,50006911,,, +15445,D,ja,NHK R Japan,,Nauen (brb),52.647778,12.908611,,250,140,445,80,38,ME,1700-1900,1234567,,,50021367,,, +15445,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,EEu,0400-0600,1234567,,,50006916,,, +15445,TWN,vi,Adventist World R,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,250,9375,56,125,SEA,0100-0200,.....6.,,,50007753,,, +15450,EGY,aa,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,160,3170,130,65,EAf,1600-1700,1234567,,,50016360,,, +15450,IRN,id,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SEA,1220-1320,1234567,,,50023499,,, +15450,PHL,my,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,1130-1200,1234567,,,50006920,,, +15450,PHL,my,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,1130-1157,1234567,,,50006920,,, +15450,PHL,min,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,245,10292,62,128,INS,0930-1000,1234567,,,50006918,,, +15450,PHL,mn,FEBC Manila,,Iba (FEBC) (zmb),15.357611,119.953694,,100,330,10183,62,128,FE,0830-0900,1234567,,,50006919,,, +15455,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50023997,,, +15455,STP,ZWE,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,ZWE,1700-1800,1234567,,,50021373,,, +15455,STP,ZWE,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,ZWE,1800-1900,12345..,,,50021373,,, +15455,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1720-1740,....567,,,50021373,,, +15455,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1730-1800,1234...,,,50021373,,, +15455,STP,nd,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1740-1800,....567,,,50021373,,, +15455,STP,sn,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1700-1720,....567,,,50021373,,, +15455,STP,sn,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,126,5762,180,95,,1700-1730,1234...,,,50021373,,, +15455,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50023996,,, +15460,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,WEu,1200-1300,1234567,,,50023501,,, +15460,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAf,1920-2020,1234567,,,50023500,,, +15460,STP,KNK,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,100,5762,180,95,EAf,1600-1630,.....6.,,,50015541,,, +15460,STP,sw,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,112,5762,180,95,EAf,1630-1700,1234567,,,50015541,,, +15460,PHL,en,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0300-0320,123456,,,50003462,,, +15460,PHL,en,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0300-0330,......7,,,50003462,,, +15460,PHL,en,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0300-0330,1234567,,,50003462,,, +15460,PHL,hi,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0200-0220,1234567,,,50003462,,, +15460,PHL,ml,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0240-0300,1234567,,,50003462,,, +15460,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0000-0030,1234567,,,50021374,,, +15460,PHL,si,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0000-0027,1234567,,,50021374,,, +15460,PHL,ta,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0220-0240,1234567,,,50003462,,, +15465,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,209,5347,76,91,SAs,0500-0900,1234567,,,50006927,,, +15465,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1000,1234567,,,50023998,,, +15465,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,230,9434,57,125,SEA,0900-1000,.....67,,,50013401,,, +15465,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,230,9434,57,125,SEA,0900-1000,12345..,,,50013401,,, +15465,TWN,zh,R Taiwan Int.,,Paochung/Baujong (PAO/BAJ) (YL),23.726667,120.3,,100,230,9434,57,125,SEA,1000-1100,1234567,,,50013401,,, +15470,D,en,Voice of America,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,EAf,1600-1700,1234567,,,50023503,,, +15470,F,en,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAs,1400-1430,......7,,,50023502,,, +15470,F,en,Bible Voice,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,SAs,1400-1500,.....6.,,,50023502,,, +15470,PHL,zh,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,358,10171,62,124,FE,1230-1300,1234567,,,50021377,,, +15470,PHL,zh,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,358,10171,62,124,FE,1300-1315,.....6.,,,50021377,,, +15470,MRA,vi,R Vaticana,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,1315-1400,1234567,,,50021376,,, +15470,MRA,vi,R Vaticana,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,2315-2400,1234567,,,50021376,,, +15470,MRA,zh,R Vaticana,,Saipan/Tinian (MP),15.045833,145.607222,,250,325,11578,41,128,FE,2200-2230,1234567,,,50021376,,, +15476,ATA,es,LRA36 R.Nacional Arcngel San Gabriel,,Base Esperanza [ARG] (aar),-63.398833,-56.997667,,10,,13969,210,150,,1200-1507,12345..,,,40001231,,, +15476,ATA,es,LRA36 R.Nacional Arcngel San Gabriel,,Base Esperanza [ARG] (aar),-63.398833,-56.997667,,10,,13969,210,150,,1800-2100,12345..,,,40001231,,, +15480,D,ug,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,FE,1300-1330,.....67,,,50023507,,, +15480,D,zh,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,FE,1300-1330,12345..,,,50023507,,, +15480,D,zh,Adventist World R,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,FE,1330-1500,1234567,,,50023507,,, +15480,TUR,tr,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,ME,0700-1300,1234567,,,50023504,,, +15480,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,245,3170,130,65,SAm,2330-0045,1234567,,,50017073,,, +15480,EGY,pt,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,245,3170,130,65,SAm,2215-2330,1234567,,,50017073,,, +15480,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0100-0600,1234567,,,40001233,,, +15480,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0600-0900,1.34567,,,40001233,,, +15480,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0900-1300,1234567,,,40001233,,, +15480,MDG,ar,Adventist World R,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,ME,1900-2100,1234567,,,50023505,,, +15480,AFS,ar,Adventist World R,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,ME,0400-0600,1234567,,,50023506,,, +15485,F,en,R France Int.,,Issoudun (36),46.947222,1.894444,,500,85,660,211,37,,1600-1700,1234567,,,50021759,,, +15485,F,en,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,85,660,211,37,SAs,1600-1700,1234567,,,50015546,,, +15490,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,0900-1200,1234567,,,50023999,,, +15490,IRN,sq,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,0620-0720,1234567,,,50023508,,, +15490,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,205,5075,109,84,EAf,0400-0430,1234567,,,50021760,,, +15490,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,EAf,0500-0600,.....6.,,,50021390,,, +15490,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,EAf,0530-0600,......7,,,50021390,,, +15490,AFS,Krw,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,,0500-0600,1234567,,,50021390,,, +15490,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,80,13569,74,139,Oc,0730-0830,1234567,,,50021388,,, +15495,PHL,zh,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,320,10171,62,124,,1230-1300,12345.7,,,50019020,,, +15495,PHL,zh,R Vaticana,,Palauig (RVA) (zmb),15.467222,119.913889,,250,320,10171,62,124,,1230-1315,.....6.,,,50019020,,, +15495,GUM,id,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,1100-1130,1234567,,,50023509,,, +15495,GUM,jv,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,1130-1200,1.3.5..,,,50023509,,, +15495,GUM,su,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,INS,1130-1200,.2.4.67,,,50023509,,, +15495,GUM,te,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1500-1530,1234567,,,50023509,,, +15500,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,180,7773,50,113,,2300-1000,1234567,,,40001235,,, +15500,CLN,am,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,EAf,0330-0400,1234567,,,50023510,,, +15500,CLN,om,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,100,,8200,97,119,EAf,0300-0330,1234567,,,50023510,,, +15500,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,1430-1500,.....6.,,,50021761,,, +15505,MLI,zh,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,Af,2230-2300,1234567,,,50006938,,, +15505,BGD,hi,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,100,,7515,79,112,SAs,1515-1545,1234567,,,50017662,,, +15505,BGD,ur,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,100,,7515,79,112,SAs,1400-1430,1234567,,,50017662,,, +15510,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1330,1234567,,,50024000,,, +15510,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,305,8872,77,119,SAs,0100-0130,1234567,,,50010042,,, +15510,THA,hi,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,305,8872,77,119,SAs,0230-0300,1234567,,,50010042,,, +15510,THA,uz,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,305,8872,77,119,AFG,1300-1330,1234567,,,50010042,,, +15515,F,so,R Xoriyo,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1500-1530,.....6.,,,50024001,,, +15515,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,250,59,4236,111,75,,0500-1000,1234567,,,50016364,,, +15515,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,250,59,4236,111,75,FE,0500-0900,1234567,,,50016364,,, +15515,KWT,ur,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,1400-1500,1234567,,,50021394,,, +15515,MDG,bo,Voice of Tibet,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,Tib,1400-1430,1234567,,,50024002,,, +15515,AUS,en,R Australia,,Brandon (QLD),-19.511944,147.340556,,100,,15065,58,144,SOc,0300-0315,.....67,,,50017212,,, +15515,AUS,fr,R Australia,,Brandon (QLD),-19.511944,147.340556,,100,,15065,58,144,SOc,0300-0315,12345..,,,50017212,,, +15515,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,50,16373,78,148,SOc,2000-2300,1234567,,,50016363,,, +15515,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,,0300-0315,.....67,,,50016363,,, +15515,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,,0300-0600,1234567,,,50016363,,, +15515,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,0315-0600,1234567,,,50016363,,, +15515,AUS,fr,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,,0300-0315,12345..,,,50016363,,, +15520,EGY,ff,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,WAf,1845-2000,1234567,,,50023513,,, +15520,BGD,,Bangladesh Betar,,Khabirpur (dha),24.008267,90.253103,,250,,7515,79,108,,0400-2000,1234567,,,36300006,,, +15520,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0200-0300,1234567,,,50024003,,, +15520,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1400-1430,1234567,,,50024003,,, +15520,MDG,bo,Voice of Tibet,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,Tib,1400-1430,1234567,,,50024004,,, +15520,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0200-0300,1234567,,,50023514,,, +15525,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1520-1620,1234567,,,50023515,,, +15525,IRN,zh,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,FE,1150-1250,1234567,,,50023515,,, +15525,UAE,en,Eternal Good News,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,100,5075,109,84,SAs,1130-1145,....5..,,,50016366,,, +15525,CHN,zh,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,212,5727,65,87,SAs,0900-1100,1234567,,,50006951,,, +15525,PHL,zh,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,345,10292,62,128,FE,0800-0900,1234567,,,50006952,,, +15525,AUS,ja,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,,2230-2300,....56.,,,50006950,,, +15525,AUS,ja,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,FE,2230-2300,.....67,,,50006950,,, +15525,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,,2230-2300,1234..7,,,50006950,,, +15525,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,FE,2230-2300,12345..,,,50006950,,, +15525,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,FE,2300-2330,.....67,,,50006950,,, +15525,AUS,zh,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,340,13569,74,139,FE,2300-2330,12345..,,,50006950,,, +15530,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1330-1500,1234567,,,50023516,,, +15530,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1300-1330,1234567,,,50023516,,, +15530,F,ru,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EEu,1400-1430,1234567,,,50023516,,, +15530,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,100,,7819,127,115,EAf,1100-1130,1234567,,,50023517,,, +15530,PHL,te,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,,0100-0130,1234567,,,50006954,,, +15530,PHL,te,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SAs,0100-0127,1234567,,,50006954,,, +15530,PHL,vi,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,280,10171,62,124,SEA,0130-0230,1234567,,,50006954,,, +15535,CVA,ar,R Dabanga,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1530-1630,1234567,,,50023518,,, +15535,CVA,ar,R Tamazuj,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1500-1530,1234567,,,50023519,,, +15535,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,WAf,1300-1600,1234567,,,50021400,,, +15537,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024005,,, +15540,KWT,en,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,310,4236,111,72,Eu,1800-2100,1234567,,,50016367,,, +15540,KWT,tl,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,84,4236,111,72,59,1000-1200,1234567,,,50016367,,, +15540,KWT,ur,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,300,100,4236,111,75,SAs,1600-1800,1234567,,,50016367,,, +15540,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,0100-0600,1234567,,,40001238,,, +15540,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,0600-0900,1.34567,,,40001238,,, +15540,CHN,zh,CNR 2,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,,7783,55,115,,0900-1100,1234567,,,40001238,,, +15542,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024006,,, +15543,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024007,,, +15545,EGY,ps,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,70,3170,130,65,AFG,1400-1600,1234567,,,50017214,,, +15547,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024008,,, +15548,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024009,,, +15550,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024011,,, +15550,IRN,es,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SEu,0520-0620,1234567,,,50019788,,, +15550,UAE,ar,R Dabanga,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,240,5075,109,81,EAf,0430-0430,1234567,,,50021402,,, +15550,UAE,ar,R Tamazuj,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,500,240,5075,109,81,EAf,0400-0430,1234567,,,50021403,,, +15550,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0800-0900,1234567,,,50023520,,, +15550,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024010,,, +15550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0000-0600,1234567,,,40001239,,, +15550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,175,7797,50,115,,0600-0800,1.34567,,,40001239,,, +15550,USA,en,WJHR,,Milton (WJHR) (FL),30.650817,-87.089317,,50,5,7592,292,116,,1400-2200,1234567,,,50016370,,, +15550,USA,en,WJHR,,Milton (WJHR) (FL),30.650817,-87.089317,,50,5,7592,292,116,NAm,1400-2207,1234567,,,50016370,,, +15555,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,1200-1230,1234567,,,50019038,,, +15560,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024013,,, +15560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0600,1234567,,,50024012,,, +15560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024012,,, +15560,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1430,1234567,,,50024012,,, +15560,THA,bo,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0400-0600,1234567,,,50023523,,, +15560,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0300-0400,1234567,,,50023522,,, +15560,PHL,jv,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,200,10292,62,128,INS,0100-0130,1234567,,,50010694,,, +15560,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50024014,,, +15562,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50022105,,, +15565,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,0800-1000,1234567,,,50023524,,, +15567,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024015,,, +15570,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024017,,, +15570,CVA,am,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1630-1645,1234567,,,50015571,,, +15570,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,CAf,1730-1800,1234567,,,50015571,,, +15570,CVA,pt,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,150,1205,156,45,MOZ,1800-1830,1234567,,,50015571,,, +15570,CVA,so,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1615-1630,.....6.,,,50015571,,, +15570,CVA,sw,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1600-1615,.....6.,,,50015571,,, +15570,CVA,sw,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1600-1630,12345.7,,,50015571,,, +15570,CVA,ti,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,139,1205,156,45,EAf,1645-1700,1234567,,,50015571,,, +15570,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,168,1205,156,49,CAf,1700-1730,1234567,,,50015571,,, +15570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024016,,, +15570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1200-1430,1234567,,,50024016,,, +15570,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0100-0500,1234567,,,40001241,,, +15570,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0530-0600,1234567,,,40001241,,, +15570,CHN,bo,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0600-0800,12.4567,,,40001241,,, +15570,CHN,en,CNR 11,,Baoji/Qishan-SARFT724 (SA),34.45,107.683333,,100,255,7747,60,115,,0500-0530,1234567,,,40001241,,, +15570,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50024018,,, +15572,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024019,,, +15573,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024020,,, +15575,KOR,en,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,NAm,1300-1400,1234567,,,50019044,,, +15575,KOR,es,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,NAm,0200-0300,1234567,,,50019044,,, +15575,KOR,ko,KBS World R,,Gimje=Kimjae (jeb),35.820278,126.865556,,250,81,8663,46,119,NAm,1400-1500,1234567,,,50019044,,, +15580,CVA,en,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1700-1800,1234567,,,50023526,,, +15580,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,0630-0700,1234567,,,50006979,,, +15580,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,1600-1700,1234567,,,50006979,,, +15580,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,138,5762,180,95,Af,1800-1830,1234567,,,50006979,,, +15580,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,Af,0300-0500,1234567,,,50023525,,, +15580,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,EAf,2000-2100,1234567,,,50023525,,, +15580,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,250,,8219,99,115,EAf,1500-1600,1234567,,,50009185,,, +15580,CLN,en,Voice of America,,Iranawila (put),7.507211,79.805381,,250,263,8219,99,115,,0300-0500,1234567,,,50009185,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,,1800-1830,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,,1500-1800,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,Af,0500-0630,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,Af,1400-1500,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,Af,1830-1930,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,EAf,1930-2000,1234567,,,50006977,,, +15580,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,350,8490,160,122,WAf,2100-2200,1234567,,,50006977,,, +15580,PHL,BUG,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,185,10292,62,128,INS,0930-1000,1234567,,,50009184,,, +15580,PHL,mak,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,185,10292,62,128,INS,0900-0930,1234567,,,50009184,,, +15580,PHL,sas,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,215,10292,62,128,INS,1030-1100,1234567,,,50009184,,, +15580,PHL,su,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,215,10292,62,128,INS,1000-1030,1234567,,,50009184,,, +15582,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024021,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,,0900-1055,1234567,,,50011048,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,,1500-1655,.....67,,,50011048,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,Eu,0900-1100,1234567,,,50011048,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,Eu,1500-1700,......7,,,50011048,,, +15585,E,es,RNE R Exterior,d,Noblejas (CAM-TO),39.9575,-3.430556,,250,60,1547,213,49,Eu,1600-1700,.....6.,,,50011048,,, +15585,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,319,11578,41,128,,2300-2400,1234567,,,50021416,,, +15588,TJK,bo,Voice of Tibet,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,100,,4943,82,86,Tib,1200-1430,1234567,,,50024022,,, +15590,USA,es,Voice of America,,Greenville (NC),35.466667,-77.199167,,250,174,6571,289,99,,1200-1300,1234567,,,50006984,,, +15590,USA,en,WRNO,,New Orleans (WRNO) (LA),29.836806,-90.115994,,50,20,7851,294,119,,1600-2200,1234567,,,50019396,,, +15590,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,SAs,0200-1200,1234567,,,50023527,,, +15590,MRA,vi,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,2330-2400,1234567,,,50024023,,, +15595,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,,0950-1030,......7,,,50006985,,, +15595,CVA,ASY,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0930-1050,......7,,,50006985,,, +15595,CVA,Ang,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,WEu,1100-1130,......7,,,50006985,,, +15595,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0745-0805,123456,,,50006985,,, +15595,CVA,ar,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,1630-1700,1234567,,,50006985,,, +15595,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0730-0745,123456,,,50006985,,, +15595,CVA,fr,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0715-0730,123456,,,50006985,,, +15595,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0700-0715,123456,,,50006985,,, +15595,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,107,1205,156,45,ME,0630-0700,1234567,,,50006985,,, +15595,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,121,1205,156,49,,0630-0645,12345..,,,50006985,,, +15595,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,121,1205,156,49,,0600-0615,12345..,,,50006985,,, +15595,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,121,1205,156,49,,0530-0600,123456,,,50006985,,, +15595,CVA,la,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,121,1205,156,49,,0530-0610,......7,,,50006985,,, +15595,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,100,,7819,127,115,EAf,1130-1500,.....6.,,,50024024,,, +15600,PHL,C-M,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,0030-0045,1234567,,,50007679,,, +15600,PHL,kac,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,0045-0100,1234567,,,50007679,,, +15600,PHL,my,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,293,10292,62,128,SEA,2330-0030,1234567,,,50007679,,, +15605,GUM,MZ,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SAs,1500-1530,1234567,,,50015578,,, +15605,GUM,hi,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SAs,1530-1600,1234567,,,50015578,,, +15605,GUM,shn,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1130-1200,1234567,,,50015578,,, +15610,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024026,,, +15610,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,170,3170,130,65,EAf,0400-0600,1234567,,,50016502,,, +15610,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,40,7317,294,106,ME,1200-2400,1234567,,,50010702,,, +15610,USA,en,WEWN EWTN Catholic R.,,Birmingham/Vandiver (WEWN) (AL),33.501389,-86.476944,,250,40,7317,294,106,ME,1300-2400,1234567,,,50010702,,, +15610,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024025,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0015-0215,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0245-0330,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0500,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0945,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1015-1715,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1800-1845,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1915-2045,1234567,,,37700111,,, +15615,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2215-2400,1234567,,,37700111,,, +15620,D,ady,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,Cau,1540-1600,1234567,,,50023529,,, +15620,D,av,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,Cau,1500-1520,1234567,,,50023529,,, +15620,D,ce,R Liberty,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,Cau,1520-1540,1234567,,,50023529,,, +15620,F,so,Voice of America,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,EAf,1630-1700,1234567,,,50023533,,, +15620,CVA,so,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,EAf,1730-1800,1234567,,,50023534,,, +15620,CHN,it,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SEu,0600-0700,1234567,,,50023528,,, +15620,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,Af,1100-1130,.....6.,,,50023531,,, +15620,STP,fr,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,Af,2000-2030,1234567,,,50023531,,, +15620,USA,fr,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,EAf,1830-1900,1234567,,,50023532,,, +15620,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,0330-0400,1234567,,,50023530,,, +15620,CLN,so,Voice of America,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,EAf,1700-1730,1234567,,,50023530,,, +15620,BOT,om,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,76,8490,160,122,,1730-1800,12345..,,,50013158,,, +15620,BOT,so,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,,1600-1630,.....67,,,50013158,,, +15620,BOT,so,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,EAf,1300-1400,1234567,,,50013158,,, +15620,BOT,so,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,EAf,1600-1630,1234567,,,50013158,,, +15620,PHL,jv,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,200,10292,62,128,INS,1400-1430,1234567,,,50009196,,, +15630,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,0400-1000,1234567,,,50023535,,, +15630,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,Eu,1400-1800,1234567,,,50023535,,, +15630,IRN,ar,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,ME,0820-1020,1234567,,,50023536,,, +15635,TJK,zh,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,95,4943,82,83,,0300-0700,1234567,,,50021763,,, +15635,PHL,zh,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,349,10223,62,124,,0000-0100,1234567,,,50021764,,, +15640,UAE,fa,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,AFG,0830-0900,1234567,,,50007005,,, +15640,UAE,fa,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,AFG,1330-1400,1234567,,,50007005,,, +15640,UAE,ps,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,AFG,0800-0830,1234567,,,50007005,,, +15640,UAE,ps,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,AFG,1400-1430,1234567,,,50007005,,, +15640,UAE,ur,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,45,5075,109,84,SAs,1430-1500,1234567,,,50007005,,, +15640,PHL,BAI,FEBC Manila,,Bocaue (FEBC) (bul),14.801944,120.916111,,100,308,10292,62,128,CHN,1000-1030,1234567,,,50021426,,, +15640,PHL,tl,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,ME,0200-0330,1234567,,,50023537,,, +15640,GUM,ml,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1530-1600,1234567,,,50023538,,, +15650,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,IRN,0830-1200,1234567,,,50023540,,, +15650,GRC,el,ERT 3 Thessaloniki,,Avlida=Avlis (cgr-evv),38.388333,23.606667,,100,,2024,132,57,As,1400-1850,1234567,,,50023539,,, +15650,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,IRN,0530-0830,1234567,,,50023541,,, +15660,GUM,as,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,SEA,1330-1400,..3...7,,,50013163,,, +15660,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SAs,1600-1630,1234567,,,50013163,,, +15660,GUM,hmn,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,SEA,1330-1400,...45..,,,50013163,,, +15660,GUM,ms,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,255,11707,42,133,SEA,1330-1400,12...6.,,,50013163,,, +15660,GUM,my,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1430-1500,1234567,,,50013163,,, +15665,CHN,ru,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,EEu,0400-0600,1234567,,,50007009,,, +15665,CHN,ru,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,EEu,0800-1000,1234567,,,50023542,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,,1400-2300,.....67,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,1200-1400,1234567,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Eu,1200-1300,1234567,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,Eu,1300-1400,.....67,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,SAm,1400-1600,12345..,,,50019061,,, +15665,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,SAm,1600-2000,.....67,,,50019061,,, +15665,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0700,1234567,,,50024027,,, +15665,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,0300-0700,1234567,,,50023545,,, +15665,GUM,kn,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1530-1600,1234567,,,50023544,,, +15665,GUM,ta,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SAs,1500-1530,1234567,,,50023544,,, +15670,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,EEu,1930-2000,......7,,,50021875,,, +15670,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0900-1200,1234567,,,50024028,,, +15670,CHN,kk,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0100-0300,1234567,,,40001248,,, +15670,CHN,mn,CNR 8,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,283,7773,50,115,,0000-0100,1234567,,,40001248,,, +15670,THA,zh,Voice of America,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,FE,0900-1200,1234567,,,50023547,,, +15670,GUM,kac,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,285,11707,42,133,SEA,1300-1330,1234567,,,50021431,,, +15680,F,fa,R Mehr,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,IRN,1630-1700,1...5..,,,50023548,,, +15680,TWN,fr,R France Int.,,Tainan/Annan (TNS),23.044167,120.168611,,100,352,9489,58,125,FE,1100-1130,1234567,,,50016377,,, +15680,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,1600-1630,.....6.,,,50019398,,, +15685,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,2200-2300,1234567,,,50023549,,, +15690,F,en,R France Int.,,Issoudun (36),46.947222,1.894444,,500,160,660,211,37,135,1700-1800,1234567,,,50021765,,, +15690,F,en,R Taiwan Int.,,Issoudun (36),46.947222,1.894444,,500,160,660,211,37,Af,1700-1800,1234567,,,50003570,,, +15690,D,fa,R Farda,,Biblis (hes),49.687222,8.490278,,100,85,306,151,40,IRN,1400-1530,1234567,,,50015605,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,,8219,99,115,IRN,0430-1400,1234567,,,50007019,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,315,8219,99,115,,0230-0300,1234567,,,50007019,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,315,8219,99,115,,0500-1000,1234567,,,50007019,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,316,8219,99,115,,0300-0500,1234567,,,50007019,,, +15690,CLN,fa,R Farda,,Iranawila (put),7.507211,79.805381,,250,316,8219,99,115,,1000-1100,1234567,,,50007019,,, +15690,CLN,fa,Voice of America,,Iranawila (put),7.507211,79.805381,,250,310,8219,99,115,,0130-0230,1234567,,,50021766,,, +15690,CLN,lo,R Free Asia,,Iranawila (put),7.507211,79.805381,,250,65,8219,99,115,,0000-0100,1234567,,,50021439,,, +15690,MRA,lo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,289,11578,41,128,SEA,0000-0100,1234567,,,50021876,,, +15700,PAK,zh,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,70,5607,84,89,,1200-1300,1234567,,,50020199,,, +15700,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,WAf,0600-0630,1234567,,,50019069,,, +15700,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,WAf,0630-0700,1234567,,,50019069,,, +15700,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1000-1100,1234567,,,50019069,,, +15700,RRW,sw,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,180,6406,152,97,EAf,1500-1600,1234567,,,50019069,,, +15700,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,280,11578,41,128,SEA,0030-0130,1234567,,,50013174,,, +15710,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024030,,, +15710,EGY,ha,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,241,3024,131,63,NIG,1800-2100,1234567,,,50016382,,, +15710,EGY,id,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,91,3024,131,63,SEA,1230-1400,1234567,,,50016382,,, +15710,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024029,,, +15710,CHN,,CNR 6 Shenzhou zhi Sheng,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,100,163,7773,50,115,,0100-0900,1234567,,,40001253,,, +15715,BES,fr,Voice of America,,Bonaire (bnr),12.213333,-68.3225,,250,90,7899,266,112,,1100-1130,.....6.,,,50021767,,, +15720,MDG,hi,NHK R Japan,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,SAs,1430-1515,1234567,,,50023550,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,50,325,18351,32,158,Oc,2151-0500,1234567,,,50003581,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,50,35,18351,32,158,SOc,1851-2050,1234567,,,50003581,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,50,35,18351,32,158,SOc,1951-2050,1234567,,,50003581,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,50,35,18351,32,158,WOc,1100-1300,1234567,,,50003581,,, +15720,NZL,en,R New Zealand Int.,d,Rangitaiki (BOP),-38.843056,176.429722,,25,35,18351,32,161,,1851-2150,1234567,,,50003581,,, +15725,D,bo,R Free Asia,,Lampertheim (hes),49.602222,8.539444,,100,,316,151,40,FE,1000-1100,1234567,,,50024033,,, +15725,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,ME,1330-1530,1234567,,,50024032,,, +15725,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,1234567,,,50024031,,, +15730,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,70,5607,84,89,SEA,0045-0215,1234567,,,50021880,,, +15730,PAK,zh,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,250,70,5607,84,89,FE,1200-1300,1234567,,,50021880,,, +15735,EGY,ur,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,250,91,3024,131,63,PAK,1600-1800,1234567,,,50022136,,, +15735,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,282,5607,84,93,,0500-0700,1234567,,,50020201,,, +15735,CLN,ne,Adventist World R,,Trincomalee (Perkara) (tcm),8.743333,81.130556,,250,5,8200,97,115,SAs,1500-1530,1234567,,,50021768,,, +15750,BUL,fa,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,IRN,1600-1800,1234567,,,50023552,,, +15750,BUL,fa,Bible Voice,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,IRN,1600-1800,9999999,,,50023552,,, +15755,UZB,,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1300-1430,1234567,,,50023553,,, +15755,UZB,GA,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1415-1430,12345..,,,50023553,,, +15755,UZB,awa,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1400-1415,.2.....,,,50023553,,, +15755,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1315-1330,.....67,,,50023553,,, +15755,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1330-1400,1234567,,,50023553,,, +15755,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1400-1415,1.34567,,,50023553,,, +15755,UZB,hi,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1415-1430,.....67,,,50023553,,, +15755,UZB,xnr,Trans World R,,Toshkent/Oʻrtaovul (tos),41.219722,69.15,,100,,4779,79,85,SAs,1315-1330,12345..,,,50023553,,, +15755,THA,en,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,25,8872,77,119,FE,0000-0200,1234567,,,50011510,,, +15755,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,25,8872,77,119,AFG,0230-0300,1234567,,,50011510,,, +15755,THA,ps,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,25,8872,77,119,AFG,0200-0230,1234567,,,50011510,,, +15760,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,0400-0600,1234567,,,50024034,,, +15760,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,0600-1300,1234567,,,50024034,,, +15770,IND,ar,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,0430-0530,1234567,,,50019077,,, +15770,IND,fa,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,0400-0430,1234567,,,50019077,,, +15770,IND,ur,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,,0530-0600,1234567,,,50019077,,, +15770,IND,ur,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,282,6235,85,95,ME,0530-0600,9999999,,,50019077,,, +15770,IND,id,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,INS,0845-0945,1234567,,,50009229,,, +15770,IND,ta,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,1115-1215,1234567,,,50009229,,, +15770,IND,te,All India R GOS,,Aligarh (UP),27.997222,78.097222,,250,132,6367,85,97,SEA,1215-1245,1234567,,,50009229,,, +15770,GUM,C-A,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,1400-1430,1234567,,,50023556,,, +15770,GUM,lo,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,1330-1400,...4.6.,,,50023556,,, +15770,GUM,th,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,1330-1400,123.5..,,,50023556,,, +15775,F,en,The Disco Palace,D,Issoudun (36),46.947222,1.894444,,100,79,660,211,44,,1530-1630,1234567,,,50021770,,, +15775,CVA,en,R Vaticana,D,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,1,,1205,156,69,SAs,1530-1600,1234567,,,50023557,,, +15790,EGY,fa,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,70,3170,130,69,IRN,1330-1530,1234567,,,50021463,,, +15790,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,EAf,1630-1700,12345..,,,50021464,,, +15790,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,7,9003,160,120,EAf,1830-1900,12345..,,,50021464,,, +15795,IND,zh,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,35,7561,97,106,FE,1145-1315,1234567,,,50010060,,, +15795,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1145-1315,1234567,,,50024035,,, +15800,EGY,ar,R Cairo,,Abis (SW) (bhy),31.126111,30.074444,,100,,3024,131,67,WAf,1300-1600,1234567,,,50023558,,, +15800,PAK,en,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,Eu,1100-1104,1234567,,,50023559,,, +15800,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,Eu,0830-1100,1234567,,,50023559,,, +15800,PAK,ur,R Pakistan,,Islamabad/HPT Rawat (pjb),33.469167,73.210556,,100,,5607,84,93,ME,0500-0700,1234567,,,50023559,,, +15800,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50010957,,, +15825,USA,en,WWCR,,Nashville (WWCR) (TN),36.208611,-86.893889,,100,46,7122,296,108,NAm,1100-2100,1234567,,,50010063,,, +15870,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017758,,, +15896,D,de,biteXpress,D,Erlangen/Am Wolfsmantel (bay),49.546486,11.018706,,0.1,,431,130,71,,0000-2400,1234567,,,2000018,,, +15900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1400,1234567,,,50010064,,, +15900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50010064,,, +15940,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017124,,, +15940,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1400,1234567,,,50017124,,, +15970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50020323,,, +15970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1400,1234567,,,50020323,,, +16035,SNG,,9VF/252 Kyodo News,f,Jurong (sw),1.335556,103.686111,,10,,10386,83,138,,0740-1010,1234567,,,33100005,,, +16035,SNG,,9VF/252 Kyodo News,f,Jurong (sw),1.335556,103.686111,,10,,10386,83,138,,1415-1815,1234567,,,33100005,,, +16100,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50010066,,, +16100,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1900,1234567,,,50010066,,, +16135,HWA,,KVM70,f,Maili/Tower Drive (HI),21.429611,-158.160833,,4,,11701,345,147,,1719-0356,1234567,,,20016159,,, +16160,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50020324,,, +16160,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2200-1500,1234567,,,50020324,,, +16250,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017759,,, +16300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022415,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0045-0100,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0145-0200,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0245-0300,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0345-0400,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,0445-0500,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2145-2200,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2245-2300,1234567,-16340.1,,32500045,,, +16340.1,NZL,,ZKLF NZ MetService,f,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,2345-2400,1234567,-16340.1,,32500045,,, +16360,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50019403,,, +16370,AFS,,ZRK6964 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300034,,, +16375,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902799,,, +16390,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902832,,, +16396,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902834,,, +16420,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902801,,, +16420,AUS,,VMR406 Mooloolaba Coastguard,u,Mooloolaba (QLD),-26.685339,153.126311,,0.4,,16057,57,171,,????-????,1234567,,,37700157,,, +16450,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022416,,, +16504,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902836,,, +16528,AUS,en,VMW,u,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2300-1000,1234567,,,37700027,,, +16531,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,0333-0343,1234567,,,32500031,,, +16531,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1003-1013,1234567,,,32500031,,, +16531,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,1533-1543,1234567,,,32500031,,, +16531,NZL,en,ZLM Taupo Maritime R,u,Taupo/Matea (BOP),-38.871389,176.436472,,1,,18354,32,175,,2203-2213,1234567,,,32500031,,, +16534,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,0835-0900,1234567,,,36700003,,, +16534,BRU,,Brunei Bay R,u,Bandar Seri Begawan (bmu),5.042611,115.058694,,1,,10814,72,150,,0935-1000,1234567,,,36700003,,, +16546,AUS,en,VMC,u,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2100-0800,1234567,,,37700021,,, +16600,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017448,,, +16750,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022417,,, +16804.5,TUR,,Istanbul R,2,Istanbul/TAH (mam-ist),41.066667,28.95,,1,,2101,117,78,,,,-16804.5,,8000028,,, +16804.5,EGY,,Al-Iskandariya R,2,Al-Iskandariya=Alexandria (aik),31.198089,29.864494,,1,,3006,131,87,,,,-16804.5,,2300016,,, +16804.5,USA,,COMMSTA Boston,2,Camp Edwards (MA),41.713944,-70.504833,,1,,5674,291,114,,,,-16804.5,,20016316,,, +16804.5,USA,,COMMSTA Portsmouth,2,Portsmouth (USCG COMMSTA) (VA),36.833333,-76.3,,1,,6407,290,121,,,,-16804.5,,20016315,,, +16804.5,USA,,KHT,u,Cedar Rapids (IA),42.034722,-91.643611,,1,,6930,304,126,,,,-16804.5,,20016310,,, +16804.5,USA,,COMMSTA New Orleans,2,Belle Chasse (USCG) (LA),29.881389,-89.942778,,1,,7836,294,135,,,,-16804.5,,20016317,,, +16804.5,INS,,Surabaya R,u,Surabaya (JI-ksu),-7.197044,112.733817,,1,,11750,81,153,,????-????,1234567,-16804.5,,35400116,,, +16804.5,CHL,,CBV Valparaso Playa Ancha R,u,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,-16804.5,,36800018,,, +16804.5,AUS,,Charleville / Wiluna R,2,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,,,-16804.5,,37700163,,, +16811,CHL,,CBV Valparaso Playa Ancha R,r,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,????-????,1234567,,,36800019,,, +16850,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2200-1600,1234567,,,50020325,,, +16850,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020325,,, +16854,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0600-1800,1234567,,,6800038,,, +16868,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0600-1800,1234567,,,6800039,,, +16902.5,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,0000-1200,1234567,-16902.5,,37700119,,, +16913.5,SUI,,HEB Bern R,r,Prangins (vd),46.406667,6.251333,,5,,634,181,56,,0600-1900,1234567,-16913.5,,7300013,,, +16920,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017125,,, +16920,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,2000-1800,1234567,,,50017125,,, +16939,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800011,,, +16945,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800012,,, +16970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50023560,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0145-0300,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0430-0450,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0540-0800,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1100-1200,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1335-1530,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1645-2000,1234567,,,31400041,,, +16971,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,2215-2245,1234567,,,31400041,,, +16974,B,,PPR Rio Rdio,,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0230-0330,1234567,,,36902808,,, +16974,B,,PPR Rio Rdio,,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0600-0730,1234567,,,36902808,,, +16974,B,,PPR Rio Rdio,,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1845-1930,1234567,,,36902808,,, +16974,B,,PPR Rio Rdio,,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1945-2115,1234567,,,36902808,,, +16978,B,,PWZ33 Rio Meteo,f,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,0745-0910,1234567,,,36902812,,, +16978,B,,PWZ33 Rio Meteo,f,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,1630-1755,1234567,,,36902812,,, +16980,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50010067,,, +16980,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-1500,1234567,,,50010067,,, +16988,CHN,,XSF27,p,Weihai (SD),37.516667,122.1,,1,,8269,48,140,,????-????,1234567,,,36201266,,, +17024,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0900-1500,1234567,,,6800040,,, +17046.5,D,,DAO37 Kiel R,p,Schwedeneck (shs),54.4743,10.151667,,0.12,,362,42,70,,,,-17046.5,,2000050,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0145-0300,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0430-0450,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0540-0800,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1100-1200,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1335-1530,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1645-2000,1234567,-17069.6,,31400042,,, +17069.6,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,2215-2245,1234567,-17069.6,,31400042,,, +17080,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020207,,, +17138,LTU,,Klaipėda R,c,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000007,,, +17146.4,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1200-1505,1234567,-17146.4,,20016152,,, +17146.4,USA,,NMG USCG New Orleans,f,Belle Chasse (USCG) (LA),29.881389,-89.942778,,4,,7836,294,129,,1800-2105,1234567,-17146.4,,20016152,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1115-1145,1234567,-17146.5,,36800009,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1630-1700,1234567,-17146.5,,36800009,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,1915-1945,1234567,-17146.5,,36800009,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2200-2245,1234567,-17146.5,,36800009,,, +17146.5,CHL,,CBV Valparaso Playa Ancha R,f,Quintero/Loncura (VS),-32.802222,-71.485,,1,,12078,240,154,,2310-2340,1234567,-17146.5,,36800009,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0140-0415,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,0655-1015,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1120-1230,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1400-1615,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1840-2215,1234567,-17151.2,,20016147,,, +17151.2,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2320-2400,1234567,-17151.2,,20016147,,, +17170,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50015636,,, +17198,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0900-1500,1234567,,,19901375,,, +17198.5,PHL,,DZO27 Manila R,p,Lucena City (qzn),13.947222,121.619444,,1,,10413,62,148,,????-????,1234567,-17198.5,,33300027,,, +17207.9,J,,JFC,c,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,-17207.9,,31400051,,, +17223.4,OMA,,A4M Wattayah R,c,Muscat/Wattayah (msc),23.6,58.5,,1,,5400,105,111,,0900-1100,1234567,-17223.4,,11700011,,, +17231,J,,JFC,f,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,31400052,,, +17242,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000008,,, +17250,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50014285,,, +17257,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902798,,, +17260,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1200-1210,1234567,,,5300004,,, +17260.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-17260.8,,31200011,,, +17260.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-17260.8,,31200011,,, +17260.8,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-17260.8,,31200011,,, +17272,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902831,,, +17276.3,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,-17276.3,,3300003,,, +17278,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902833,,, +17300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020209,,, +17302,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902800,,, +17311,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000009,,, +17314,USA,en,NMN USCG Chesapeake,u,Pungo (VA),36.726667,-76.011389,,1,,6397,290,121,,1715-1745,1234567,,,20012366,,, +17314,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1630-1705,1234567,,,20012376,,, +17314,USA,en,NMC USCG Point Reyes,u,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2230-2305,1234567,,,20012376,,, +17320,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000010,,, +17338.3,GNB,,J5M Bissau R,u,Bissau (bis),11.841667,-15.6,,1,,4894,212,106,,????-????,1234567,-17338.3,,3300004,,, +17362,USA,en,WLO,u,Mobile/Coden (AL),30.376389,-88.205278,,5,,7686,293,127,,,,,,20016235,,, +17370,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017325,,, +17386,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902835,,, +17430,SNG,,9VF/252 Kyodo News,f,Jurong (sw),1.335556,103.686111,,10,,10386,83,138,,0740-1010,1234567,,,33100006,,, +17430,SNG,,9VF/252 Kyodo News,f,Jurong (sw),1.335556,103.686111,,10,,10386,83,138,,1415-1815,1234567,,,33100006,,, +17450,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0100-1500,1234567,,,50013550,,, +17450,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50013550,,, +17480,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,SAs,1015-1215,1234567,,,50023561,,, +17485,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,,3170,130,69,EAf,1700-2300,1234567,,,50023563,,, +17485,CHN,ar,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,100,,5727,65,94,NAf,0500-0700,1234567,,,50023562,,, +17490,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,0700-1300,1234567,,,50007054,,, +17495,USA,en,WBCQ The Planet,,Monticello (WBCQ) (ME),46.341667,-67.815278,,100,,5189,294,89,NAm,1200-2300,1234567,,,50023564,,, +17495,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SEA,0100-0200,1234567,,,50007055,,, +17495,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,,7797,50,108,SEA,0200-0300,1234567,,,50007055,,, +17495,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,,0100-0300,1234567,,,50007055,,, +17495,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,0000-0100,1234567,,,50007055,,, +17500,IRN,ar,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,NAf,1020-1620,1234567,,,50023565,,, +17505,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,269,5347,76,91,NAf,0500-0700,1234567,,,50007058,,, +17505,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,200,7808,59,108,SEA,0400-0500,1234567,,,50007059,,, +17510,EGY,ar,ERTU Al-Barnameg al-Aam,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,100,250,3170,130,69,WAf,0700-1100,1234567,,,50016389,,, +17510,TJK,bo,R Free Asia,,Dushanbe/Yangiyul (SW) (dsb),38.479444,68.804167,,200,117,4943,82,83,,0600-0700,1234567,,,50021773,,, +17510,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,Oc,1000-1100,1234567,,,50010071,,, +17510,IND,id,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,INS,0845-0945,1234567,,,50010071,,, +17510,IND,ta,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,132,6235,85,95,CLN,1115-1215,1234567,,,50010071,,, +17510,IND,ta,All India R GOS,,Delhi/Kingsway (DL),28.719444,77.198611,,100,174,6248,85,100,,1115-1215,1234567,,,50021772,,, +17510,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,300,8872,77,119,SAs,0300-0330,1234567,,,50010070,,, +17515,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024036,,, +17520,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,SAs,0700-0800,1234567,,,50021487,,, +17520,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,85,7046,290,104,,2200-2300,...456.,,,50019090,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,,1000-1100,......7,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,,1000-1100,123456,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,0000-0100,1234567,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,0100-0130,12345..,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,0100-0200,.....67,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,0130-0200,12345..,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,300,11707,42,133,CHN,1000-1100,1234567,,,50021489,,, +17520,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,2300-2400,1234567,,,50021489,,, +17530,ROU,ar,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,NAf,1500-1600,1234567,,,50023566,,, +17530,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,WEu,1200-1300,1234567,,,50023566,,, +17530,BES,fr,Voice of America,,Bonaire (bnr),12.213333,-68.3225,,250,94,7899,266,112,,1930-2030,1234567,,,50021776,,, +17530,BOT,en,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,10,8490,160,122,,1400-1500,1234567,,,50021774,,, +17535,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50024037,,, +17535,MRA,ug,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50024038,,, +17540,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EGY,0830-1000,....5..,,,50023567,,, +17540,D,ar,Bible Voice,,Nauen (brb),52.647778,12.908611,,100,,445,80,42,EGY,0900-0915,.....6.,,,50023567,,, +17540,IRN,fr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0620-0720,1234567,,,50023569,,, +17540,IRN,bs,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,260,4724,102,77,Eu,0520-0620,1234567,,,50021494,,, +17540,USA,pt,NHK R Japan,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,152,7046,290,104,SAm,2130-2200,1234567,,,50021495,,, +17540,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,257,7797,50,108,SAs,0300-0400,1234567,,,50007073,,, +17540,MDG,KNK,R Mara,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,EAf,1700-1800,1234567,,,50024039,,, +17540,GUM,ilo,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,PHL,1030-1100,....5.7,,,50023570,,, +17540,GUM,tl,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,PHL,1030-1100,1234.6.,,,50023570,,, +17550,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,100,,4236,111,79,NAm,2000-2400,1234567,,,50024040,,, +17550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,0100-0600,1234567,,,40001268,,, +17550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,0600-0900,1.34567,,,40001268,,, +17550,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,251,7797,50,115,,0900-1030,1234567,,,40001268,,, +17560,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,270,4552,116,76,WAf,1600-1800,1234567,,,50016394,,, +17560,IRN,zh,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,FE,1150-1250,1234567,,,50023571,,, +17560,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,292,7808,59,108,CAs,0800-1000,1234567,,,50007083,,, +17560,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,100,,9208,36,124,ME,0100-0500,1234567,,,50023572,,, +17565,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50024041,,, +17565,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,163,7797,50,115,,0200-0600,1234567,,,40001269,,, +17565,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,163,7797,50,115,,0600-0730,1.34567,,,40001269,,, +17565,MRA,ug,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50024042,,, +17570,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,70,4552,116,76,SAs,0900-1200,1234567,,,50016396,,, +17570,CHN,en,China R Int.,,rmqi/Hutubi-SARFT201 (XJ),44.147222,86.896389,,500,308,5727,65,87,Eu,0900-1000,1234567,,,50007087,,, +17570,CHN,cs,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1100-1200,1234567,,,50023573,,, +17570,CHN,hu,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,Eu,1000-1100,1234567,,,50023573,,, +17570,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,,1500-1600,......7,,,50019097,,, +17570,AFS,en,Amateur R Today,,Meyerton (SW) (GT),-26.585833,28.138889,,250,19,9003,160,120,,0800-0900,......7,,,50021501,,, +17575,F,so,Adventist World R,,Issoudun (36),46.947222,1.894444,,250,135,660,211,40,EAf,1630-1700,1234567,,,50022168,,, +17575,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50024043,,, +17575,MRA,ug,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50024044,,, +17580,D,fa,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,AFG,1400-1430,1234567,,,50023574,,, +17580,D,ps,R Liberty,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,AFG,1330-1400,1234567,,,50023574,,, +17580,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0000-0600,1234567,,,40001270,,, +17580,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0600-0900,1.34567,,,40001270,,, +17580,CHN,zh,CNR 1,,Lingshi/SARFT725 (SX),36.870833,111.929444,,100,286,7783,55,115,,0900-1000,1234567,,,40001270,,, +17580,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1100-1300,1234567,,,50017053,,, +17580,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1300-1500,1234567,,,50017053,,, +17580,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,130,7939,284,116,SAm,1100-1500,1234567,,,50017053,,, +17585,EGY,ur,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,90,3170,130,65,,1600-1800,1234567,,,50016511,,, +17585,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0200,1234567,,,50024045,,, +17585,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,SEA,0500-0900,1234567,,,50021506,,, +17585,MRA,ug,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0100-0200,1234567,,,50024046,,, +17590,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,224,1205,156,45,260,0950-1030,......7,,,50013201,,, +17590,CVA,LTO,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,72,1205,156,45,ME,0930-1050,......7,,,50013201,,, +17590,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,72,1205,156,45,ME,1300-1320,1234567,,,50013201,,, +17595,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,272,1547,213,49,LAm,1200-1500,1234567,,,50010081,,, +17595,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,272,1547,213,49,LAm,1500-1700,.....67,,,50010081,,, +17595,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,302,1547,213,49,,1300-1500,12345..,,,50010081,,, +17595,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,302,1547,213,49,248,1300-1700,.....67,,,50010081,,, +17595,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0100-0600,1234567,,,40001272,,, +17595,CHN,zh,CNR 1,,Shijiazhuang/SARFT723 (HB),38.466667,114.133333,,100,217,7767,53,115,,0600-0630,1.34567,,,40001272,,, +17605,AUT,aa,Adventist World R,,Moosbrunn (nie),48.006667,16.461944,,300,145,849,119,41,EAf,1430-1500,1234567,,,50007095,,, +17605,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0130-0600,1234567,,,40001273,,, +17605,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0600-0900,1.34567,,,40001273,,, +17605,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,285,7797,50,115,,0900-1000,1234567,,,40001273,,, +17610,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,WAf,1800-2000,1234567,,,50023576,,, +17610,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,100,,7046,290,108,WAf,2000-2100,.....6.,,,50023576,,, +17615,F,ha,R France Int.,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,WAf,1600-1700,1234567,,,50024047,,, +17615,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,,4552,116,76,EAf,1400-1600,1234567,,,50016398,,, +17615,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,100,4552,116,76,SAs,0900-1200,1234567,,,50016398,,, +17615,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,190,4552,116,76,EAf,1300-1600,1234567,,,50016398,,, +17620,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,NAf,0800-0900,1234567,,,50007099,,, +17620,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,WAf,0800-1300,1234567,,,50007099,,, +17620,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,WAf,1200-1300,1234567,,,50007099,,, +17620,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,WAf,1700-1800,1234567,,,50007099,,, +17625,EGY,ff,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,200,245,3170,130,66,WAf,1845-2000,1234567,,,50017129,,, +17625,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,100,4552,116,76,INS,1200-1400,1234567,,,50016399,,, +17625,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,163,7773,50,113,,0000-0600,1234567,,,36201067,,, +17625,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,163,7773,50,113,,0600-0900,12.4567,,,36201067,,, +17625,CHN,zh,CNR 2,,Beijing/SARFT491 (SW) (BJ),39.886944,116.575556,,150,163,7773,50,113,,0900-1000,1234567,,,36201067,,, +17630,F,so,R Xoriyo,,Issoudun (36),46.947222,1.894444,,500,130,660,211,37,EAf,1600-1630,.2...6.,,,50021886,,, +17630,MLI,en,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,85,4565,202,83,Af,1400-1600,1234567,,,50007101,,, +17630,THA,th,R Thailand,,Udon Thani (SW) (udt),17.674722,103.2025,,100,,8917,74,123,ME,1000-1100,1234567,,,50023577,,, +17640,RRW,ha,BBC WS,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,310,6406,152,97,WAf,1400-1430,1234567,,,50021523,,, +17640,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,114,6960,203,103,SAf,1600-1700,1234567,,,50021524,,, +17640,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,1200-1230,1234567,,,50021524,,, +17640,SEY,en,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,250,280,7819,127,111,EAf,0600-0800,1234567,,,50010086,,, +17640,CHN,ru,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,0200-0500,1234567,,,50023578,,, +17650,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,Eu,0900-1000,1234567,,,50007112,,, +17650,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,SEu,1300-1400,1234567,,,50007112,,, +17650,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,0600-0900,1234567,,,50007112,,, +17650,CHN,zh,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,Eu,1000-1300,1234567,,,50007112,,, +17650,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0450-0520,1234567,,,50023579,,, +17655,CVA,pt,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,WAf,1630-1700,....5..,,,50023583,,, +17655,USA,pt,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,WAf,1700-1800,1234567,,,50023582,,, +17655,BOT,pt,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,SAf,1800-1830,12345..,,,50023581,,, +17655,GUM,ru,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,FE,0300-0330,1234567,,,50023580,,, +17660,ARS,fr,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,270,4552,116,76,,1400-1600,1234567,,,50016401,,, +17660,ARS,fr,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,WAf,1400-1555,1234567,,,50024048,,, +17660,IRN,it,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,0620-0720,1234567,,,50023584,,, +17660,AFS,fr,R France Int.,,Meyerton (SW) (GT),-26.585833,28.138889,,250,342,9003,160,120,CAf,1200-1300,1234567,,,50007117,,, +17670,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0300-0330,1234567,,,50021779,,, +17670,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0430-0530,1234567,,,50021779,,, +17670,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0630-0700,1234567,,,50021779,,, +17670,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0230-0300,1234567,,,50021779,,, +17670,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0330-0430,1234567,,,50021779,,, +17670,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,70,4199,110,75,,0530-0630,1234567,,,50021779,,, +17670,CHN,en,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,100,,5347,76,91,NAf,0700-0900,1234567,,,50023585,,, +17670,IND,en,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1745-1945,1234567,,,50009274,,, +17670,IND,hi,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1615-1730,1234567,,,50009274,,, +17670,IND,sw,All India R GOS,,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,1515-1615,1234567,,,50009274,,, +17670,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,0900-1000,1234567,,,50007122,,, +17670,CHN,zh,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,500,135,8246,70,113,Oc,1000-1100,1234567,,,50007122,,, +17670,MDG,VN,Adventist World R,,Talata-Volonondry (tan),-18.751667,47.614444,,250,60,8830,141,119,SEA,1300-1400,1234567,,,50007125,,, +17675,KWT,bo,R Free Asia,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,FE,0600-0700,1234567,,,50023587,,, +17675,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024049,,, +17675,NZL,en,R New Zealand Int.,D,Rangitaiki (BOP),-38.843056,176.429722,,25,35,18351,32,161,Oc,2051-0500,1234567,,,50020329,,, +17680,UAE,so,R Ergo,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,0830-0900,1234567,,,50024050,,, +17680,CHN,km,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,150,177,8246,70,118,SEA,1030-1130,1234567,,,50007127,,, +17680,CHN,ms,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,175,8246,70,120,INS,0930-1030,1234567,,,50007127,,, +17680,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,1200-1230,1234567,,,50021537,,, +17680,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,1430-1530,1234567,,,50021537,,, +17690,F,en,Brother Stair,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,As,1200-1400,.....67,,,50023594,,, +17690,F,en,Brother Stair,,Issoudun (36),46.947222,1.894444,,100,,660,211,44,As,1200-1400,1234567,,,50023594,,, +17690,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,80,4199,110,75,70,1230-1330,1234567,,,50021780,,, +17690,KWT,fa,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,80,4199,110,75,70,1400-1430,1234567,,,50021780,,, +17690,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,80,4199,110,75,,0730-0830,1234567,,,50021780,,, +17690,KWT,ps,R Free Afghanistan (R Azadi),,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,250,80,4199,110,75,70,1330-1400,1234567,,,50021780,,, +17690,IRN,de,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,Eu,0720-0820,1234567,,,50023592,,, +17690,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0700,1234567,,,50024051,,, +17690,CLN,fa,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,332,8219,99,115,,0300-0330,1234567,,,50021781,,, +17690,CLN,fa,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,332,8219,99,115,,0430-0530,1234567,,,50021781,,, +17690,CLN,ps,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,332,8219,99,115,,0230-0300,1234567,,,50021781,,, +17690,CLN,ps,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,332,8219,99,115,,0330-0430,1234567,,,50021781,,, +17690,CLN,ps,R Free Afghanistan (R Azadi),,Iranawila (put),7.507211,79.805381,,250,340,8219,99,115,,1130-1230,1234567,,,50021781,,, +17690,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,100,,7819,127,115,EAf,1400-1500,12345.7,,,50023590,,, +17690,SEY,so,BBC WS,,Mah/Grand Anse (mhe),-4.68,55.453611,,100,,7819,127,115,EAf,1400-1500,1234567,,,50023590,,, +17690,THA,fa,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0630-0730,1234567,,,50021782,,, +17690,THA,fa,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0830-0930,1234567,,,50021782,,, +17690,THA,fa,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,1030-1130,1234567,,,50021782,,, +17690,THA,ps,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0530-0630,1234567,,,50021782,,, +17690,THA,ps,R Free Afghanistan (R Azadi),,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0930-1030,1234567,,,50021782,,, +17690,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,100,,8886,55,123,Oc,0900-1100,1234567,,,50023588,,, +17690,MRA,zh,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,FE,0300-0700,1234567,,,50023595,,, +17700,KWT,ha,Voice of America,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,WAf,0700-0730,1234567,,,50023599,,, +17700,BOT,ha,Voice of America,,Moepeng Hill (ce),-21.955556,27.638889,,100,,8490,160,122,WAf,1500-1530,1234567,,,50023598,,, +17700,PHL,tl,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,ME,0200-0330,1234567,,,50023596,,, +17700,GUM,VN,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,2300-2330,1234567,,,50023597,,, +17700,GUM,en,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,2330-2400,.....67,,,50023597,,, +17700,GUM,vi,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,SEA,2330-2400,12345..,,,50023597,,, +17700,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,0100-0130,12345..,,,50023597,,, +17700,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,0100-0200,.....67,,,50023597,,, +17700,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,,11707,42,133,CHN,0130-0200,12345..,,,50023597,,, +17705,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,1200-1500,1234567,,,50024052,,, +17710,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,0600-0800,1234567,,,50007143,,, +17710,CHN,zh,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,193,7797,50,108,SEA,0400-0500,1234567,,,50007143,,, +17710,CHN,en,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,,8886,55,116,SEA,0600-0800,1234567,,,50007144,,, +17710,CHN,ru,China R Int.,,Jinhua/SARFT831 (ZJ),29.111667,119.310833,,500,310,8886,55,116,EEu,0300-0400,1234567,,,50007144,,, +17710,AFS,sw,Deutsche Welle,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1000-1100,1234567,,,50023600,,, +17715,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,,1500-1900,12345..,,,50010101,,, +17715,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,,1700-1900,.....67,,,50010101,,, +17715,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,SAm,1500-1700,12345..,,,50010101,,, +17715,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,230,1547,213,49,SAm,1700-1900,1234567,,,50010101,,, +17715,IRN,id,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,SEA,1220-1320,1234567,,,50023601,,, +17715,IND,gu,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,0415-0430,1234567,,,50009289,,, +17715,IND,hi,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,0315-0415,1234567,,,50009289,,, +17715,IND,hi,All India R GOS,D,Delhi/Khampur (DL),28.822222,77.127778,,250,245,6235,85,95,EAf,0430-0530,1234567,,,50009289,,, +17720,CHN,de,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,,5347,76,84,WEu,0600-0800,1234567,,,50007154,,, +17720,THA,fa,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,AFG,0930-1030,1234567,,,50023602,,, +17720,THA,ps,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,AFG,0830-0930,1234567,,,50023602,,, +17720,THA,ps,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,100,,8872,77,123,AFG,1030-1130,1234567,,,50023602,,, +17725,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,100,5762,180,95,,1400-1500,1234567,,,50019414,,, +17725,CHN,en,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,CAs,0400-0600,1234567,,,50023603,,, +17725,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,,7797,50,115,,1000-1200,1234567,,,40001276,,, +17730,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,0600-0900,1234567,,,50024053,,, +17730,MNG,bo,R Free Asia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,230,6615,50,99,,0100-0200,1234567,,,50007815,,, +17730,MNG,km,R Free Asia,,Ulaanbaatar/Khonkhor (ulb),47.803889,107.173889,,250,230,6615,50,99,SEA,0100-0300,1234567,,,50007815,,, +17730,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0100-0300,1234567,,,50024054,,, +17730,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1100-1300,1234567,,,50024055,,, +17730,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,,7939,284,116,SAm,1300-1500,1234567,,,50024055,,, +17735,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,500,100,1955,168,50,,0200-0510,1234567,,,50016513,,, +17735,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,250,,1955,168,53,Eu,0402-0502,1234567,,,50016513,,, +17735,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,250,,1955,168,53,ME,1556-2010,1234567,,,50016513,,, +17735,TUN,ar,RTT R Nationale,,Sfax/Sidi Mansour (sfa),34.822222,10.852778,,250,100,1955,168,53,,1600-2010,1234567,,,50016513,,, +17735,CHN,id,China R Int.,,Kunming/Anning (YN),24.884444,102.495556,,100,175,8246,70,120,INS,0830-0930,1234567,,,50007162,,, +17735,MRA,km,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,1230-1330,1234567,,,50023604,,, +17740,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,Eu,0600-0900,1234567,,,50024056,,, +17740,CHN,vi,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,190,7808,59,108,SEA,0400-0600,1234567,,,50007167,,, +17740,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,500,,7808,59,108,SEA,0600-0700,1234567,,,50007167,,, +17745,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,EGY,0900-1000,......7,,,50023605,,, +17745,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1130-1230,1234567,,,50024057,,, +17750,CHN,zh,China R Int.,,Xianyang/SARFT594 (SA),34.375278,108.610278,,100,,7808,59,115,SEA,0700-0800,1234567,,,50023606,,, +17750,CUB,es,R Habana Cuba,,La Habana (3 sites) (ch),22.866667,-82.333333,,100,ND,7939,284,116,,1500-1800,......7,,,50020332,,, +17750,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,0030-0405,1234567,,,50016412,,, +17750,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,0030-0400,1234567,,,50016412,,, +17750,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,0530-0700,1234567,,,50016412,,, +17750,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,2330-2400,1234567,,,50016412,,, +17750,AUS,id,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,,0405-0530,1234567,,,50016412,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,,1500-2200,......7,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,,1700-1900,12345..,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,,1700-2200,.....6.,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,1500-1700,......7,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,1700-1900,1234567,,,50010103,,, +17755,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,161,1547,213,49,Af,1900-2200,.....67,,,50010103,,, +17755,TUR,de,Voice of Turkey,,Emirler,39.401389,32.855833,,100,,2469,114,62,Eu,1230-1330,1234567,,,50023607,,, +17760,THA,ur,BBC WS,,Nakhon Sawan (nsn),15.810278,100.064167,,250,25,8872,77,119,SAs,0300-0330,1234567,,,50010104,,, +17760,AFS,en,Amateur R Today,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,0800-0900,......7,,,50023608,,, +17760,AUS,C-H,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,0100-0115,..3.5..,,,50023609,,, +17760,AUS,CHG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,.....67,,,50023609,,, +17760,AUS,HMA,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,..3....,,,50023609,,, +17760,AUS,RWG,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,0030-0100,1234567,,,50023609,,, +17760,AUS,bho,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,......7,,,50023609,,, +17760,AUS,bn,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,1......,,,50023609,,, +17760,AUS,bn,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,1......,,,50023609,,, +17760,AUS,en,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,0100-0115,1....67,,,50023609,,, +17760,AUS,gu,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,....5..,,,50023609,,, +17760,AUS,hi,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0145-0215,1234567,,,50023609,,, +17760,AUS,kru,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,..3....,,,50023609,,, +17760,AUS,kru,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,..3....,,,50023609,,, +17760,AUS,ml,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,...4...,,,50023609,,, +17760,AUS,mr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,....5..,,,50023609,,, +17760,AUS,mwr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,.2.....,,,50023609,,, +17760,AUS,mwr,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,.2.....,,,50023609,,, +17760,AUS,my,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SEA,0100-0115,.2.4...,,,50023609,,, +17760,AUS,ne,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,...456.,,,50023609,,, +17760,AUS,pa,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0115-0130,......7,,,50023609,,, +17760,AUS,ta,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,12.....,,,50023609,,, +17760,AUS,te,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0215-0230,...4...,,,50023609,,, +17760,AUS,ur,HCJB Australia,,Kununurra (WA),-15.797222,128.686111,,100,,13569,74,139,SAs,0130-0145,.....6.,,,50023609,,, +17765,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,EAf,1200-1300,1234567,,,50023610,,, +17770,ROU,en,IRRS Milano,,Săftica (SW) (IF),44.637778,26.074403,,100,100,1666,112,54,,1730-1800,.....6.,,,50019415,,, +17770,KWT,ru,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,EEu,0600-0700,1234567,,,50023613,,, +17770,THA,ru,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,250,308,8917,74,120,FE,0300-0600,1234567,,,50007194,,, +17770,THA,ru,R Liberty,,Udon Thani (SW) (udt),17.674722,103.2025,,250,308,8917,74,120,Sib,0800-1000,1234567,,,50007194,,, +17770,AFS,sw,Channel Africa,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1500-1600,12345..,,,50023611,,, +17770,MRA,lo,R Free Asia,,Saipan/Agingan Point (MP),15.121111,145.692778,,100,,11575,40,132,SEA,0000-0100,1234567,,,50023612,,, +17775,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0900-1000,......7,,,50023614,,, +17775,USA,es,KVOH Voice of Hope,,Rancho Simi (KVOH) (CA),34.256389,-118.641667,,100,,9031,317,124,CAm,1400-2000,12345..,,,50024058,,, +17780,G,fr,BBC WS,,Woofferton (EN-SHP),52.313333,-2.722778,,250,170,622,276,39,NAf,1200-1230,1234567,,,50021562,,, +17780,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,67,1660,112,49,NAf,1000-1100,......7,,,50007202,,, +17780,ROU,en,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,AUS,0630-0700,1234567,,,50023618,,, +17780,UAE,fr,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,MDG,0430-0500,1234567,,,50023617,,, +17780,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1100-1130,1234567,,,50023617,,, +17780,OMA,uz,BBC WS,,A'Seela (shq),21.918333,59.616667,,100,,5617,106,93,AFG,1300-1330,1234567,,,50023616,,, +17780,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1700-1800,1234567,,,50013241,,, +17780,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,,1330-1600,.....6.,,,50013241,,, +17780,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1400-1430,1234567,,,50013241,,, +17780,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1430-1700,.....6.,,,50013241,,, +17780,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1300-1330,1234567,,,50024059,,, +17780,PHL,my,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,250,,10223,62,124,SEA,0130-0230,1234567,,,50019136,,, +17790,OMA,ar,BBC WS,,A'Seela (shq),21.918333,59.616667,,250,63,5617,106,89,EAf,0500-0700,1234567,,,50010108,,, +17790,USA,en,R Africa,,Okeechobee (WYFR) (FL),27.4575,-80.933333,,100,,7461,286,112,Af,1400-2000,1234567,,,50024060,,, +17795,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,50,16373,78,148,Oc,2300-0300,1234567,,,50016415,,, +17800,UAE,am,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1600-1700,1234567,,,50023620,,, +17800,UAE,sw,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,EAf,1500-1600,1234567,,,50023620,,, +17800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,,0600-0700,1234567,,,50007210,,, +17800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0600-0630,1234567,,,50007210,,, +17800,RRW,en,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,0630-0700,1234567,,,50007210,,, +17800,RRW,fa,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,AFG,0830-0900,1234567,,,50007210,,, +17800,RRW,fa,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,AFG,1330-1400,1234567,,,50007210,,, +17800,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,Af,1200-1300,1234567,,,50007210,,, +17800,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,1700-1800,1234567,,,50007210,,, +17800,RRW,ps,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,AFG,0800-0830,1234567,,,50007210,,, +17800,RRW,ps,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,AFG,1400-1430,1234567,,,50007210,,, +17800,RRW,ur,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,SAs,1430-1500,1234567,,,50007210,,, +17800,MDG,ha,Deutsche Welle,,Talata-Volonondry (tan),-18.751667,47.614444,,100,,8830,141,123,WAf,1800-1900,1234567,,,50023619,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0100-0130,......7,,,50021784,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0130-0200,......7,,,50021784,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0200-0300,......7,,,50021784,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0300-0400,......7,,,50021784,,, +17800,PLW,en,WHRI,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,270,11769,54,133,,0300-0400,12345..,,,50021784,,, +17805,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,0900-1200,1234567,,,50024061,,, +17810,D,bo,R Free Asia,,Biblis (hes),49.687222,8.490278,,100,,306,151,40,FE,1000-1100,....5..,,,50023624,,, +17810,ROU,ar,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,ME,0730-0800,1234567,,,50023623,,, +17810,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,170,3170,130,65,,1530-1730,1234567,,,50016418,,, +17810,IRN,ha,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,WAf,0550-0650,1234567,,,50023622,,, +17810,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,1000-1100,....5..,,,50024062,,, +17810,J,ja,NHK R Japan,,Yamata (kan-iba),36.173611,139.820833,,300,235,9208,36,120,SEA,0000-0500,1234567,,,50007218,,, +17815.2,B,pt,ZYE959 Rdio Cultura Brasil,,So Paulo (SP),-23.512461,-46.562467,,7.5,342,9853,227,138,,0800-0300,1234567,-17815.2,,40001281,,, +17820,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1100-1200,1234567,,,50023626,,, +17820,IRN,ar,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,NAf,0520-1020,1234567,,,50023625,,, +17820,PHL,tl,DZRP-AM R Pilipinas,,Tinang (VOA) (tlc),15.365278,120.633333,,250,315,10223,62,124,ME,0200-0330,1234567,,,50019417,,, +17830,EGY,ar,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,90,3170,130,65,SAs,1015-1215,1234567,,,50021576,,, +17830,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,CAf,1700-1800,1234567,,,50010115,,, +17830,ASC,en,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,CAf,1600-1700,1234567,,,50010115,,, +17830,AFS,en,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,328,9003,160,120,CAf,0700-0800,1234567,,,50020334,,, +17835,MRA,my,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,SEA,0030-0130,1234567,,,50023627,,, +17840,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1300-1500,1234567,,,50023630,,, +17840,EGY,sw,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,170,3170,130,65,EAf,1600-1800,1234567,,,50021580,,, +17840,IRN,ar,IRIB WS,,Zahedan (sib),29.475,60.864444,,100,,5075,98,88,ME,0520-1420,1234567,,,50023629,,, +17840,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,,1200-1230,1234567,,,50021785,,, +17840,PLW,en,R Australia,,Koror/Babeldaob (Medorn) (kor),7.457778,134.477778,,100,,11769,54,133,INS,0400-0500,1234567,,,50023628,,, +17850,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,153,660,211,37,CAf,1700-1800,1234567,,,50007242,,, +17850,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,160,660,211,37,CAf,0700-0800,1234567,,,50007242,,, +17850,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,171,660,211,37,155,0800-0900,1234567,,,50007242,,, +17850,CVA,fr,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,Af,1100-1130,.....6.,,,50023633,,, +17850,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1700-1900,.....67,,,50023631,,, +17850,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1900-2200,1234567,,,50023631,,, +17850,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,2200-2300,.....67,,,50023631,,, +17850,ROU,ro,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,IRN,0800-0900,......7,,,50023632,,, +17855,CHN,en,China R Int.,,Beijing/SARFT572 (BJ),39.748333,116.811389,,500,288,7797,50,108,CAs,0400-0600,1234567,,,50007245,,, +17860,ROU,ro,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,67,1660,112,49,ME,0800-0900,......7,,,50019155,,, +17860,USA,en,Voice of America,,Greenville (NC),35.466667,-77.199167,,100,,6571,289,103,EEu,1600-1630,.....6.,,,50021891,,, +17860,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0600,1234567,,,50024063,,, +17860,PHL,ur,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,,0100-0130,1234567,,,50007250,,, +17860,PHL,ur,R Veritas Asia,,Palauig (RVA) (zmb),15.467222,119.913889,,250,300,10171,62,124,SAs,0100-0127,1234567,,,50007250,,, +17860,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0300-0600,1234567,,,50023635,,, +17865,IRN,fr,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,Eu,0620-0720,1234567,,,50023636,,, +17865,CHN,fr,China R Int.,,Kashgar=Kashi/SAFRT2022 (XJ),39.358333,75.754694,,500,308,5347,76,84,,0600-0800,1234567,,,50021786,,, +17870,BUL,so,R Xoriyo,,Sofia/Kostinbrod (sof),42.808889,23.186944,,100,,1624,123,53,EAf,1600-1630,1...5..,,,50023637,,, +17870,ROU,fr,R Romania Int.,,Bacău/Galbeni (SW) (BC),46.751667,26.856667,,100,,1587,104,53,SEu,1000-1100,......7,,,50023639,,, +17870,ROU,fr,R Romania Int.,d,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,NAf,1100-1200,1234567,,,50023640,,, +17870,ROU,zh,R Romania Int.,d,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,FE,0500-0530,1234567,,,50023640,,, +17870,EGY,en,R Cairo,,Abu Za'bal (SW) (qlb),30.273611,31.365278,,250,90,3170,130,65,SEA,1215-1330,1234567,,,50016421,,, +17870,AFS,KNK,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,100,,9003,160,124,EAf,1630-1700,12345..,,,50023638,,, +17870,SNG,hi,BBC WS,,Kranji (nw),1.423056,103.7325,,250,315,10381,83,124,SAs,0230-0300,1234567,,,50021589,,, +17875,IND,id,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,132,7561,97,106,INS,0845-0945,1234567,,,50009347,,, +17880,MLI,ar,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,20,4565,202,83,NAf,1600-1700,1234567,,,50007258,,, +17880,MLI,fr,China R Int.,,Bamako/Kati (bam),12.743611,-8.053056,,100,111,4565,202,83,WAf,1300-1400,1234567,,,50007258,,, +17880,CLN,ps,R Mashaal,,Iranawila (put),7.507211,79.805381,,100,,8219,99,119,PAK,1100-1300,1234567,,,50024064,,, +17880,AFS,fr,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,342,9003,160,120,CAf,0700-0729,1234567,,,50021594,,, +17880,AFS,fr,BBC WS,,Meyerton (SW) (GT),-26.585833,28.138889,,250,342,9003,160,120,CAf,0700-0730,1234567,,,50021594,,, +17880,THA,fa,R Farda,,Udon Thani (SW) (udt),17.674722,103.2025,,250,300,8917,74,120,,0830-1030,1234567,,,50021598,,, +17880,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,0000-0100,1234567,,,50007260,,, +17880,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,0100-0130,12345..,,,50007260,,, +17880,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,0100-0200,.....67,,,50007260,,, +17880,GUM,zh,KSDA AWR Asia,,Agat/Facpi Point (KSDA) (GU),13.341111,144.652778,,100,315,11707,42,133,CHN,0130-0200,12345..,,,50007260,,, +17885,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,27,6960,203,103,WAf,2000-2030,....5..,,,50010119,,, +17885,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,55,6960,203,103,,1930-2030,1234567,,,50010119,,, +17885,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,55,6960,203,103,WAf,1930-2000,1234567,,,50010119,,, +17890,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0130-0600,1234567,,,40001287,,, +17890,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0600-0900,1.34567,,,40001287,,, +17890,CHN,zh,CNR 1,,Beijing/SARFT572 (BJ),39.748333,116.811389,,100,222,7797,50,115,,0900-1200,1234567,,,40001287,,, +17895,CVA,en,Voice of America,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,,1205,156,49,WAf,1700-1800,1234567,,,50023643,,, +17895,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,295,4552,116,76,NAf,1200-1500,1234567,,,50016422,,, +17895,ARS,ar,BSKSA Al-Quran al-Karim,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,40,4552,116,76,CAs,0300-0800,1234567,,,50016422,,, +17895,STP,en,Voice of America,,Pinheira (sao),0.293056,6.7525,,100,,5762,180,95,WAf,1500-1600,1234567,,,50023642,,, +17895,IND,en,All India R GOS,,Bengaluru/Doddaballapur (KA),13.247778,77.490278,,500,65,7561,97,106,Oc,1000-1100,1234567,,,50010121,,, +17900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,,9375,56,155,FE,2000-1700,1234567,,,50017455,,, +17900,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,,0000-2400,1234567,,,50017455,,, +17901,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100016,,, +17904,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012455,,, +17904,FJI,en,Nadi Aero,u,Nadi/Enamanu (WE-BA),-17.787389,177.422361,,5,,16118,15,160,,,,,,22500007,,, +17904,AUS,en,Brisbane Aero,u,Cape Pallarenda (QLD),-19.201622,146.76815,,1,,15003,58,164,,,,,,37700079,,, +17904,AUS,en,Brisbane Aero,u,Broken Hill (NSW),-31.927306,141.482875,,1,,15773,76,166,,,,,,37700084,,, +17904,OCE,en,Tahiti Aero,u,Faa'a (idv),-17.553333,-149.6125,,1,,15637,322,166,,,,,,37500007,,, +17904,NZL,en,Auckland Aero,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500036,,, +17907,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1000-2400,1234567,,,20012422,,, +17907,IND,,Chennai Aero,u,Chennai=Madras (TN),13.028444,80.166306,,1,,7762,95,135,,,,,,32200025,,, +17907,CLM,,Barranquilla Aero,u,Barranquilla (atl),10.816667,-74.866667,,1,,8466,270,142,,,,,,35902906,,, +17907,THA,en,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900018,,, +17907,AUS,en,Brisbane Aero,u,Darwin/Knuckeys Lagoon (NT),-12.378978,130.973294,,1,,13414,69,158,,,,,,37700089,,, +17912,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700105,,, +17913,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902872,,, +17916,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0000-2400,1234567,,,6800051,,, +17916,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500015,,, +17919,USA,,KEA5 New York Aero,h,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20016239,,, +17919,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902873,,, +17925,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012415,,, +17925,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012495,,, +17925,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012441,,, +17925,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012481,,, +17925,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900024,,, +17925,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012508,,, +17928,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500018,,, +17928,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900016,,, +17940,NZL,,Auckland LDOCC,u,Auckland/Wiroa Island (AUK),-37.015556,174.811389,,5,,18107,33,167,,,,,,32500040,,, +17946,IRL,en,Shanwick Aero,u,Urlanmore (CE),52.744444,-8.926833,,5,,1040,280,60,,1000-1800,1234567,,,4100033,,, +17946,ISL,en,TFW Iceland Aero,u,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,0900-2100,1234567,,,4200013,,, +17946,AZR,en,Santa Maria Aero,u,Cabrestantes (stm),36.995556,-25.168889,,5,,2977,248,80,,1200-1800,1234567,,,700010,,, +17946,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1200-0200,1234567,,,20012396,,, +17946,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012488,,, +17946,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012475,,, +17952,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,,,,,20012421,,, +17955,CNR,,Canarias Aero,u,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500011,,, +17955,SEN,,Dakar Aero,u,Dakar (dak),14.760556,-17.273333,,1,,4653,216,104,,,,,,7000007,,, +17955,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300021,,, +17961,EGY,,Cairo Aero,u,Al-Qahira=Cairo/Airport (qah),30.154167,31.492222,,5,,3188,130,82,,,,,,2300009,,, +17961,SDN,,Khartoum Aero,u,Khartoum (kha),15.566094,32.553375,,1,,4673,141,104,,,,,,9400008,,, +17961,ETH,,Addis Abeba Aero,u,Addis Abeba/Airport (aab),8.97,38.791944,,1,,5621,137,113,,,,,,9600015,,, +17961,IND,,Mumbai Aero,u,Mumbai=Bombay (MH),19.118889,72.832222,,5,,6741,96,117,,,,,,32200017,,, +17961,KEN,,Nairobi Aero,u,Nairobi/Airport (nai),-1.31,36.958611,,1,,6593,144,123,,,,,,8300006,,, +17961,SOM,,Mogadishu Aero,u,Mogadishu/Airport (ban),2.018333,45.301389,,1,,6631,133,123,,,,,,9500009,,, +17961,AGL,,Luanda Aero,u,Luanda (lua),-8.845272,13.247625,,1,,6809,172,125,,,,,,11100008,,, +17961,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500007,,, +17961,SEY,,Seychelles Aero,u,Pointe La Rue (mhe),-4.676917,55.533189,,1,,7823,127,135,,,,,,11500012,,, +17967,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900009,,, +17985,ISL,,TFW Iceland Aero,h,Reykjavk (ho),64.083333,-21.843333,,5,,2098,320,71,,,,,,4200023,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0015-0215,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0245-0330,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0400-0500,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,0600-0945,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,1015-1100,1234567,,,37700112,,, +18060,AUS,,VMW,f,Wiluna (WA),-26.343167,120.561856,,1,,13913,89,160,,2215-2400,1234567,,,37700112,,, +18095.5,PNR,,HP1AVS,b,Cerro Jefe,9.133333,-79.366667,,0.0025,,8920,272,169,,,,-18095.5,Inv Vee A1 24,55081,,, +18098,S,,SM7ZFB,b,Loddekpinge,55.766667,12.95,,0.0001,,590,44,103,,,,,?,55082,,, +18100,I,,IK6BAK,b,Montefelcino (pu),43.716667,12.866667,,0.001,,1049,150,97,,,,,Inv Vee Omni A1 24,55083,,, +18100,MLT,,9H1LO,b,Hosta, Malta,35.883333,14.45,,0.0005,,1913,157,109,,,,,G5RV psk 24,55084,, +18101,CAN,,VE3RAT,b,Thornhill ONT (NT),43.466667,-79.45,,0.001,,6104,298,148,,,,,Vertical Omni A1 24,55085,,, +18102,I,,I1M,b,Bordighera (im),43.8,7.7,,0.01,,929,174,86,,,,,5/8 Vert Omni A1 24,55086,,, +18104.6,G,,Many WSPR beacons around,b,many,55.55,-2.65,,0.025,,706,306,80,,,,-18104.6,,55087,,, +18109.25,I,,IQ3VO,b,Verona (vr),45.466667,10.95,,0.005,,810,154,88,,,,-18109.25,GP Omni A1 24,55088,,, +18110,FIN,,OH2B,b,Lohja,60.516667,25.033333,,0.025,,1472,43,88,,,,,Vertical Omni A1 IBP Cycle,55102,,, +18110,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP Cycle,55103,,, +18110,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55101,,, +18110,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55090,, +18110,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 IBP cycle,55096,,, +18110,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 IBP cycle,55089,,, +18110,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55100,,, +18110,VEN,,YV5B,b,Caracas,10.433333,-66.866667,,0.025,,7954,263,153,,,,,Vertical Omni A1 IBP cycle,55106,,, +18110,CLN,,4S7B,b,Colombo,6.1,80.2,,0.025,,8369,99,157,,,,,Vertical Omni A1 IBP cycle,55098,,, +18110,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55099,,, +18110,USA,,W6WX,b,Mt Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55091,,, +18110,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55097,,, +18110,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55095,,, +18110,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP Cycle,55105,,, +18110,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55104,,, +18110,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55092,, +18110,AUS,,VK6RBP,b,28km SE of Perth (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 IBP cycle,55094,,, +18110,NZL,,ZL6B,b,near Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55093,,, +18112.4,I,,IQ0LT,b,Latina (lt),41.466667,12.866667,,0.025,,1280,155,86,,,,-18112.4,?,55107,,, +18140.1,MLT,,9H1LO,b,Malta,35.183333,14.533333,,0.002,,1989,158,104,,,,-18140.1,Horiz Dip psk31 OP?,55108,,, +18180,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020336,,, +18238,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0600-0830,1234567,,,20300030,,, +18238,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,0915-1130,1234567,,,20300030,,, +18238,AFS,,ZSJ Cape Naval R,f,Klipheuwel (WC),-33.680611,18.714556,,10,,9614,170,136,,1530-1600,1234567,,,20300030,,, +18250,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50017852,,, +18264,HWA,,KUZ533 Honolulu Sail Mail,p,Honolulu (HI),21.319722,-157.888611,,0.5,,11709,345,156,,????-????,1234567,,,20016139,,, +18300,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022432,,, +18370,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022433,,, +18430,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50022434,,, +18519,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800013,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0040-0140,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0305-0550,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0700-0740,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,0905-1030,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1300-1340,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1505-1740,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,1900-1940,1234567,,,21800039,,, +18560,TWN,,BMF,f,Taipei (TP),25.2,121.433333,,10,,9363,55,135,,2050-2230,1234567,,,21800039,,, +18591,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,,,5800014,,, +18910,AUT,de,R Austria Int.,,Moosbrunn (nie),48.006667,16.461944,,100,255,849,119,46,,0900-0935,123456,,,50019532,,, +18970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,100,,9375,56,125,FE,2000-1700,1234567,,,50023644,,, +19000,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,65,16373,78,148,SOc,2300-0100,1234567,,,50017074,,, +19000,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,0100-0300,1234567,,,50017074,,, +19010,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0430-0530,1234567,,,50023645,,, +19010,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0630-0730,1234567,,,50023645,,, +19010,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0830-0930,1234567,,,50023645,,, +19010,KWT,fa,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,1030-1130,1234567,,,50023645,,, +19010,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0530-0630,1234567,,,50023645,,, +19010,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0730-0830,1234567,,,50023645,,, +19010,KWT,ps,R Liberty,,Al-Kuwayt/Umm al-Rimam (jah),29.514892,47.675939,,100,,4199,110,79,AFG,0930-1030,1234567,,,50023645,,, +19706,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000071,,, +19708,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0600-1800,1234567,,,6800041,,, +19736.4,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0600-1800,1234567,-19736.4,,6800042,,, +19754,ARG,,LSD836,p,Buenos Aires (df),-34.611167,-58.451622,,1,,11509,230,152,,????-????,1234567,,,33000072,,, +19970,TWN,zh,Xi Wang zhi Sheng SOH,,Taipei TAI (Pali) (TP),25.083333,121.45,,0.1,ND,9375,56,155,FE,2000-1700,1234567,,,50020238,,, +20000,USA,en,WWV,,Fort Collins (CO),40.681392,-105.04125,,10,,7769,311,125,,0000-2400,1234567,,,20000088,,, +20047.7,UKR,,D,b,Sevastopol' (KR),44.6,33.533333,,0.025,,2155,102,95,,,,-20047.7,HF single lett,86236,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0015-0215,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0245-0330,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0400-0500,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,0600-0900,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,1915-2045,1234567,,,37700107,,, +20469,AUS,,VMC,f,Charleville (QLD),-26.322072,146.263278,,1,,15614,65,166,,2215-2400,1234567,,,37700107,,, +21052.3,D,,DL5KZ,b,Nmbrecht (nrw),50.85,7.533333,,0.00025,,160,151,95,,,,-21052.3,3-el Yagi 180 A1 EXP 24,55109,,, +21145.7,I,,IZ3DVW,b,Nr Monselice (pd),45.216667,11.783333,,0.0026,,862,151,91,,,,-21145.7,Inv. V Dip A1 24,55110,,, +21149.5,I,,IW9HMQ,b,near Catania (ct),37.55,15.033333,,0.025,,1753,154,91,,,,-21149.5,wkend,55111,,, +21150,FIN,,OH2B,b,Lohja,60.516667,25.033333,,0.025,,1472,43,88,,,,,Vertical Omni A1 IBP cycle,55125,,, +21150,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP cycle,55126,,, +21150,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55124,,, +21150,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55113,, +21150,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 TNonOp,55119,,, +21150,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 TNonOp,55112,,, +21150,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55123,,, +21150,VEN,,YV5B,b,Caracas,10.433333,-66.866667,,0.025,,7954,263,153,,,,,Vertical Omni A1 TNonOp,55129,,, +21150,CLN,,4S7B,b,Colombo,6.1,80.2,,0.025,,8369,99,157,,,,,Vertical Omni A1 IBP cycle,55121,,, +21150,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55122,,, +21150,USA,,W6WX,b,Mount Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55114,,, +21150,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55120,,, +21150,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55118,,, +21150,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP cycle,55128,,, +21150,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55127,,, +21150,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55115,, +21150,AUS,,VK6RBP,b,28km SE of Perth (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 TNonOp,55117,,, +21150,NZL,,ZL6B,b,Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55116,,, +21151,I,,I1M,b,Bordighera (im),43.8,7.7,,0.01,,929,174,86,,,,,2 5/8 Vert Omni A1 24,55130,,, +21155.5,I,,IQ0LT,b,Latina (lt),41.466667,12.866667,,0.025,,1280,155,86,,,,-21155.5,?,55131,,, +21171,USA,,KA5FYI,b,Austin (TX),30.516667,-96.95,,0.0013,,8210,299,168,,,,,1/4 Vert Omni A1 INT,55132,,, +21241.5,I,,I1YRB,b,Torre Bert (to),45.05,7.7,,0.0002,,791,173,102,,,,-21241.5,Vertical Omni QRSS3 24,55133,,, +21265,MEX,,XE1FAS,b,Puebla (pue),19.05,-98.283333,,0.025,,9303,293,161,,,,,A1 ?,55134,,, +21393.8,B,,PY3PSI,b,Porto Alegre (RS),-30.016667,-51.116667,,0.004,,10705,227,173,,,,-21393.8,Dipole N-S A1 INT,55135,,, +21470,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,225,5075,109,84,,1300-1500,1234567,,,50021605,,, +21470,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,225,5075,109,84,EAf,1130-1400,.....6.,,,50021605,,, +21470,UAE,so,BBC WS,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,225,5075,109,84,EAf,1400-1500,1234567,,,50021605,,, +21470,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024065,,, +21470,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024066,,, +21480,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024067,,, +21480,MDG,en,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,130,45,8830,141,122,FE,1100-1130,.....6.,,,50022210,,, +21480,MDG,en,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,130,45,8830,141,122,FE,1115-1130,......7,,,50022210,,, +21480,MDG,ja,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,130,45,8830,141,122,FE,1130-1200,......7,,,50022210,,, +21480,MDG,zh,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,125,45,8830,141,122,FE,1100-1115,.234...,,,50022210,,, +21480,MDG,zh,Bible Voice,,Talata-Volonondry (tan),-18.751667,47.614444,,125,45,8830,141,122,FE,1115-1130,1......,,,50022210,,, +21480,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024068,,, +21500,ROU,,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,300,97,1660,112,49,NAf,1000-1100,......7,,,50015778,,, +21505,ARS,ar,BSKSA Idha'atu-i Riyadh,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,NAf,1200-1500,1234567,,,50024069,,, +21510,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1020-1120,1234567,,,50023647,,, +21510,IRN,sw,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,EAf,0820-0920,1234567,,,50023647,,, +21520,IRN,ha,IRIB WS,,Sirjan (krm),29.596389,55.785833,,500,46,4724,102,77,WAf,1120-1150,1234567,,,50021614,,, +21530,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024070,,, +21530,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024071,,, +21540,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,Af,1100-1500,1234567,,,50023648,,, +21540,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,310,4236,111,72,,0950-1500,1234567,,,50016424,,, +21540,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,310,4236,111,72,Eu,0945-1745,1234567,,,50016424,,, +21540,KWT,ar,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,310,4236,111,72,Eu,0950-1800,1234567,,,50016424,,, +21550,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024072,,, +21550,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024073,,, +21560,CVA,,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,185,1205,156,45,,0950-1030,......7,,,50021619,,, +21560,CVA,Ang,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,185,1205,156,45,ME,1100-1130,......7,,,50021619,,, +21560,CVA,it,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,250,185,1205,156,45,CAf,1300-1320,1234567,,,50021619,,, +21560,CVA,en,R Vaticana,,Santa Maria di Galeria [I rm] (cva),42.044167,12.322778,,100,113,1205,156,49,ME,1130-1200,....5..,,,50021619,,, +21560,MRA,zh,R Vaticana,,Saipan/Tinian (MP),15.045833,145.607222,,250,303,11578,41,128,FE,0400-0430,1234567,,,50021618,,, +21570,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,EAf,1200-1300,1234567,,,50023649,,, +21570,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0600,1234567,,,50024074,,, +21570,PHL,bo,Voice of America,,Tinang (VOA) (tlc),15.365278,120.633333,,100,,10223,62,128,FE,0300-0600,1234567,,,50022244,,, +21580,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,155,660,211,37,CAf,0800-0900,1234567,,,50007292,,, +21580,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,155,660,211,37,EAf,1200-1300,1234567,,,50007292,,, +21580,KWT,tl,R Kuwait,,Kabd/Sulaibiyah (SW) (jah),29.143889,47.764167,,500,84,4236,111,72,PHL,1000-1200,1234567,,,50021621,,, +21590,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024075,,, +21590,CLN,pt,Voice of America,,Iranawila (put),7.507211,79.805381,,250,251,8219,99,115,,1000-1030,.....67,,,50021789,,, +21590,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024076,,, +21595,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,313,11578,41,128,,0300-0400,1234567,,,50021624,,, +21600,ROU,en,R Romania Int.,,Tigăneşti (IF),44.749444,26.102778,,100,,1660,112,54,AUS,0630-0700,1234567,,,50023651,,, +21600,IRN,ha,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,WAf,1120-1150,1234567,,,50023650,,, +21600,IRN,ru,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,CAs,0450-0520,1234567,,,50023650,,, +21600,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,59,7046,290,104,,1400-1500,1234567,,,50019180,,, +21600,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,59,7046,290,104,NAf,1400-1500,.....67,,,50019180,,, +21610,E,ar,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,110,1547,213,49,ME,1700-1900,1234567,,,50010128,,, +21610,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,250,110,1547,213,49,ME,1100-1700,1234567,,,50010128,,, +21615,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024077,,, +21615,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024078,,, +21630,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1300-1600,12345..,,,50023654,,, +21630,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1300-1600,1234567,,,50023654,,, +21630,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1600-1700,.....67,,,50023654,,, +21630,ASC,fr,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,CAf,1200-1230,1234567,,,50010129,,, +21630,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,65,6960,203,103,WAf,1400-1430,1234567,,,50010129,,, +21630,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,WAf,1230-1500,.....6.,,,50010129,,, +21630,ASC,ha,BBC WS,,Ascension/English Bay (asc),-7.898611,-14.380556,,250,85,6960,203,103,WAf,1400-1430,12345.7,,,50010129,,, +21630,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,WAf,1500-1600,.....67,9,,50016426,,, +21630,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,47,7046,290,104,WAf,1600-1800,1234567,9,,50016426,,, +21630,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,85,7046,290,104,,1730-1745,......7,9,,50016426,,, +21630,USA,en,WHRI,,Cypress Creek/Furman (SC),32.68125,-81.133611,,250,85,7046,290,104,,2000-2200,...456.,9,,50016426,,, +21640,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1300-1600,.....67,,,50024079,,, +21640,E,es,RNE R Exterior,,Noblejas (CAM-TO),39.9575,-3.430556,,100,,1547,213,53,CAm,1600-1700,.....67,,,50024079,,, +21640,IRN,en,IRIB WS,,Kamalabad (abz),35.829167,50.868056,,100,,3912,100,76,SAs,1020-1120,1234567,,,50021627,,, +21640,IRN,sw,IRIB WS,,Sirjan (krm),29.596389,55.785833,,100,,4724,102,84,EAf,0820-0920,1234567,,,50023655,,, +21645,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024080,,, +21645,MRA,bo,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,100,,11578,41,132,FE,0600-0700,1234567,,,50024081,,, +21670,ARS,id,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,500,100,4552,116,76,,0900-1200,1234567,,,50016427,,, +21670,ARS,id,BSKSA R Saudi Int.,,Ar-Riyad (SW) (riy),24.824722,46.868611,,100,,4552,116,83,INS,0900-1200,1234567,,,50024082,,, +21680,UAE,bo,R Free Asia,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,100,,5075,109,88,FE,0600-0700,1234567,,,50023656,,, +21680,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0600-0700,1234567,,,50024083,,, +21690,F,fr,R France Int.,,Issoudun (36),46.947222,1.894444,,500,185,660,211,37,WAf,1200-1300,1234567,,,50013280,,, +21700,CHN,zh,Firedrake/CNR1 Jammer,,multiple sites (Jamming/Firedrake),35.75,104.5,,100,,7449,61,112,FE,0300-0700,1234567,,,50024084,,, +21700,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,313,11578,41,128,FE,0300-0700,1234567,,,50022257,,, +21715,MRA,zh,R Free Asia,,Saipan/Tinian (MP),15.045833,145.607222,,250,309,11578,41,128,,0600-0700,1234567,,,50021640,,, +21725,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,329,16373,78,148,SEA,0500-0700,1234567,,,50016429,,, +21725,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,355,16373,78,148,WOc,0300-0500,1234567,,,50016429,,, +21740,AUS,en,R Australia,,Shepparton (VIC),-36.323333,145.42,,100,70,16373,78,148,SOc,2100-0100,1234567,,,50017135,,, +21780,UAE,ha,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,260,5075,109,84,WAf,0630-0700,1234567,,,50019189,,, +21780,UAE,ha,Deutsche Welle,,Al-Dhabbaya (SW) (abd),24.168611,54.25,,250,260,5075,109,84,WAf,1300-1400,1234567,,,50019189,,, +21780,RRW,fr,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,Af,1200-1300,1234567,,,50014338,,, +21780,RRW,ha,Deutsche Welle,,Kigali/Kinyinya (DW) (kig),-1.914444,30.115833,,250,295,6406,152,97,WAf,1800-1900,1234567,,,50014338,,, +21800,RUS,en,Voice of Russia,,Irkutsk/Angarsk (IR),52.425833,103.669167,,250,152,6080,48,94,Oc,0600-1000,1234567,,,50015812,,, +21925,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012489,,, +21925,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012474,,, +21926,AFS,,Johannesburg Aero,u,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300022,,, +21934,USA,,San Francisco Aero,h,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20016253,,, +21940,PNR,,Panam Aero,h,Albrook (pnm),8.969206,-79.549325,,1,,8946,272,144,,,,,,35100017,,, +21946,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500016,,, +21949,AFS,,Johannesburg Aero,h,Johannesburg (GT),-26.128333,28.204889,,1,,8955,160,144,,,,,,20300014,,, +21949,THA,,Hat Yai Aero,h,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900017,,, +21956,CNR,,Canarias Aero,h,Telde (LPM-GC),27.940278,-15.370556,,1,,3238,222,89,,,,,,1500014,,, +21964,USA,en,KEA5 New York Aero,u,Riverhead (NY),40.881944,-72.637333,,5,,5870,291,109,,1200-2400,1234567,,,20012423,,, +21964,ALS,en,San Francisco Aero,u,Barrow (AK),71.257778,-156.578,,1,,6231,353,119,,,,,,20012496,,, +21964,USA,en,San Francisco Aero,u,Dixon/7514 Radio Station Rd (CA),38.378694,-121.7565,,5,,8774,321,136,,,,,,20012436,,, +21964,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012482,,, +21964,THA,,Hat Yai Aero,u,Hat Yai (sgk),6.936889,100.388778,,1,,9670,83,146,,,,,,32900025,,, +21964,GUM,en,San Francisco Aero,u,Barrigada (GU),13.478333,144.837722,,3,,11702,42,148,,,,,,20012509,,, +21973,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500017,,, +21982,BHR,,Bahrain Aero,h,Al-Muharraq (muh),26.273694,50.639278,,1,,4663,111,104,,,,,,10900010,,, +21985,HWA,en,San Francisco Aero,u,Moloka'i (HI),21.185,-157.185278,,5,,11711,344,146,,,,,,20012457,,, +21988,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500018,,, +21990,RUS,,Krasnoyarsk Aero,h,Krasnoyarsk (KN),56.1,92.3,,1,,5247,49,109,,,,,,6700106,,, +21991,B,,Flex Comm Center,u,Rio de Janeiro (RJ),-22.808333,-43.244444,,1,,9621,225,146,,????-????,1234567,,,36902874,,, +21997,BOL,,Santa Cruz Aero,h,Santa Cruz (scz),-17.671278,-63.156917,,1,,10232,243,148,,,,,,36500019,,, +22060,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902803,,, +22111,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902805,,, +22111,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902838,,, +22126,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902840,,, +22147,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902842,,, +22150,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902844,,, +22423.5,AUS,,VZG420 Townsville R,r,Nome (QLD),-19.324328,146.938506,,0.12,,15024,58,173,,????-????,1234567,-22423.5,,37700120,,, +22456,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902802,,, +22469.4,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0800-1200,1234567,-22469.4,,6800043,,, +22498.5,MLT,,9HD Malta R,,Benghisa (mt),35.815694,14.528403,,100,,1922,157,56,,????-????,1234567,-22498.5,,5800015,,, +22527,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,1840-2215,1234567,,,20016148,,, +22527,USA,,NMC USCG Point Reyes,f,Bolinas (CA),37.924556,-122.731667,,4,,8859,322,137,,2320-2400,1234567,,,20016148,,, +22534.5,S,,SAB Gteborg R,r,Gteborg (vg),57.716667,11.966667,,1,,717,27,64,,0800-1200,1234567,-22534.5,,6800044,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0145-0300,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0430-0450,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,0540-0800,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1100-1200,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1335-1530,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,1645-2000,1234567,,,31400043,,, +22542,J,,JSC Kyodo News,f,Kagoshima (kyu-kag),31.302222,130.536944,,15,,9269,45,133,,2215-2245,1234567,,,31400043,,, +22567.5,PHL,,DZO22 Manila R,p,Lucena City (qzn),13.947222,121.619444,,1,,10413,62,148,,????-????,1234567,-22567.5,,33300028,,, +22599,J,,JFC,c,Miura (kan-kgw),35.139789,139.642267,,2,,9304,37,142,,????-????,1234567,,,31400053,,, +22636.3,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,0003-0018,1234567,-22636.3,,31200012,,, +22636.3,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1403-1418,1234567,-22636.3,,31200012,,, +22636.3,URG,,CWF Punta Carretas R,u,Punta Carretas (mo),-34.933333,-56.160278,,1,,11421,228,152,,1903-1918,1234567,-22636.3,,31200012,,, +22752,AFS,,ZRK6965 Melville R,p,Sidobe (KZN),-30.627722,30.462456,,1,,9494,159,145,,????-????,1234567,,,20300035,,, +22768,MCO,,3AC Monaco R,u,Mont Agel/Fontbonne [F] (6),43.764167,7.423333,,10,,931,175,56,,1200-1210,1234567,,,5300005,,, +22789,LTU,,Klaipėda R,u,Klaipėda (Kla),55.719444,21.097222,,1,,1040,62,67,,????-????,1234567,,,5000011,,, +22807,B,,PPO Olinda Rdio,u,Olinda (PE),-7.983333,-34.841667,,1,,7745,224,134,,????-????,1234567,,,36902804,,, +22807,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902837,,, +22822,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902839,,, +22843,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902841,,, +22846,B,,PPR Rio Rdio,u,Santa Cruz (RJ),-22.964111,-43.674889,,3,,9657,225,141,,????-????,1234567,,,36902843,,, +23210,S,,STO Stockholmr Aero,u,Karlsborg (vg),58.485,14.473333,,20,,872,32,53,,0500-2200,1234567,,,6800052,,, +24912,S,,SK6RUD,b,Oxaback,57.8,12.866667,,0.0005,,754,30,97,,,,,GP Omni A1 24,55136,,, +24915,I,,IQ6FU,b,Fano (pu),43.85,13.033333,,0.005,,1041,149,90,,,,,Inv Vee Omni A1 24,55137,,, +24920,I,,IY4M,b,Bologna (bo),44.433333,11.366667,,0.025,,929,155,82,,,,,A1 H+30>H+60m,55138,,, +24929.5,MEX,,XE1FAS,b,Puebla (pue),19.05,-98.283333,,0.025,,9303,293,161,,,,-24929.5,A1 ?,55139,,, +24930,FIN,,OH2B,b,Lohja,60.516667,25.033333,,0.025,,1472,43,88,,,,,Vertical Omni A1 IBP cycle,55153,,, +24930,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP cycle,55154,,, +24930,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55152,,, +24930,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55141,, +24930,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 TNonOp,55147,,, +24930,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 TNonOp,55140,,, +24930,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55151,,, +24930,VEN,,YV5B,b,Caracas/Calle Norte 6,6.5,-66.5,,0.025,,8275,260,156,,,,,Vertical Omni A1 TNonOp,55157,,, +24930,CLN,,4S7B,b,Colombo,6.1,80.2,,0.025,,8369,99,157,,,,,Vertical Omni A1 IBP cycle,55149,,, +24930,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55150,,, +24930,USA,,W6WX,b,Mt Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55142,,, +24930,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55148,,, +24930,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55146,,, +24930,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP cycle,55156,,, +24930,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55155,,, +24930,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55143,, +24930,AUS,,VK6RBP,b,28km SE of Perth (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 TNonOp,55145,,, +24930,NZL,,ZL6B,b,near Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55144,,, +24931,ARS,,7Z1CQ,b,Jeddah (mkh),21.55,39.2,,0.005,,4408,128,124,,,,,Vert.Dip Omni A1 24 ?,55158,,, +24986,J,,JE7YNQ,b,Fukushima (toh-fuk),37.516667,141.033333,,0.005,,9123,35,167,,,,,Dipole A1 QRT?,55159,,, +24990,I,,I1YRB,b,Torre Bert (to),45.05,7.7,,0.0002,,791,173,102,,,,,Vertical Omni QRSS3 24,55160,,, +25000,FIN,,MIKES,,Espoo=Esbo (uu),60.189667,24.832639,,0.25,,1444,44,77,,0000-2400,1234567,,,2600002,,, +25705,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001302,,, +25760,FIN,fi,R Gramox,,Hmeenkyr (pi),61.641667,23.2,,0.02,,1463,37,89,,1000-1200,......7,,,2600007,,, +25760,FIN,fi,R Gramox,,Hmeenkyr (pi),61.641667,23.2,,0.02,,1463,37,89,NEu,0000-2400,1234567,,,2600007,,, +25765,F,,TDF,,Mendon (92),48.133333,-1.716667,,0.2,,728,236,71,,,,,,40001303,,, +25825,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001306,,, +25870,USA,en,KMP360 (WFLA),,Tampa (FL),27.892625,-82.511236,,0.065,,7528,287,144,,0000-2400,1234567,,,40001307,,, +25900,RUS,ru,R Zeleny Glazh,,Moskva (MV),55.830833,37.64,,0.4,,2065,66,82,,1200-1500,....5..,,,6700158,,, +25910,USA,,WJFP,,Fort Pierce (FL),27.45,-80.35,,0.06,,7423,285,143,,,,,,40001308,,, +25910,USA,,WQGY434 (WBAP),F,Dallas/Cedar Hill (TX),32.5775,-96.939167,,0.27,,8030,301,143,,,,,,20012404,,, +25915,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001310,,, +25950,USA,en,KPM556,,Portland (OR),45.488889,-122.694444,,0.1,,8125,325,148,,0000-2400,1234567,,,40001311,,, +25950,USA,,KOA,F,Denver (CO),39.628333,-104.911694,,0.05,,7856,310,149,,,,,,20012405,,, +25990,USA,,WQGY434 (KSCS),F,Dallas/Cedar Hill (TX),32.5775,-96.939167,,0.15,,8030,301,146,,,,,,20012403,,, +26000,G,,World R Network,d,Croydon (EN-GTL),51.409822,-0.085703,,1.7,,454,263,59,,0000-2400,1234567,,,40001313,,, +26000,I,it,R Maria,d,Andrate/Croce Serra (to),45.524444,7.891944,,0.25,,740,171,70,,0000-2400,1234567,,,4000033,,, +26000,D,,Campus R,,Dillberg (bay),49.45,11.066667,,0.08,,441,130,72,,,,,,40001312,,, +26010,I,it,R Maria,d,Andrate/Croce Serra (to),45.524444,7.891944,,0.25,,740,171,70,,0000-2400,1234567,,,4000034,,, +26012,D,,Campus R,,Nrnberg (bay),49.45,11.066667,,0.08,,441,130,72,,,,,,40001314,,, +26035,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001315,,, +26045,D,,Digital 11,,Hannover (nds),52.4,9.733333,,0.08,,228,81,70,,,,,,40001316,,, +26045,B,pt,ZYE959 Rdio Cultura,D,So Paulo (SP),-23.512461,-46.562467,,1,,9853,227,147,,0000-2400,1234567,,,36902880,,, +26050,GRC,el,Real FM 97,8,,Athnai (att-ath),38,23.75,,0.05,,2067,133,91,,,,,,3400066,, +26060,CVA,it,Raiway Tests,D,Citta del Vaticano (cva),41.901944,12.448889,,1,,1223,156,69,SEu,0000-2400,1234567,,,50014175,,, +26100,USA,,WLNK 107.9,,Charlotte (NC),35.25,-80.85,,0.05,,6822,292,138,,,,,,40001318,,, +26110,USA,en,KPK406 (WKRC/WLW),,Cincinnati (OH),39.833333,-84.716667,,0.05,,6699,298,137,,,,,,40001319,,, +26110,USA,en,KMK282 (KOVR),,Sacramento (CA),38.593333,-121.546389,,0.06,,8744,321,155,,,,,,20016228,,, +26190,USA,en,KSL,,Salt Lake City (UT),40.75,-111.883333,,0.05,,8102,316,151,,,,,,40001320,,, +26200,CAN,,CJAD,,Montral (QC),45.5,-73.566667,,0.001,,5601,296,143,,,,,,40001321,,, +26249.8,USA,,W4CJB,b,S.Rosa Beach (FL),30.716667,-86.116667,,0.025,,7525,292,148,,,,-26249.8,A1 ?,55392,,, +26250,USA,en,KPF231 (WTVN),,Columbus (OH),39.963889,-83.000278,,0.1,,6585,297,133,,,,,,40001322,,, +26350,USA,,KUSA,,Denver (CO),39.75,-105,,0.05,,7850,311,148,,,,,,40001323,,, +26400,USA,,KMGH,,Denver (CO),39.75,-105,,0.05,,7850,311,148,,,,,,40001324,,, +26430,USA,,WQGY434,,Dallas/Cedar Hill (TX),32.5775,-96.939167,,0.27,,8030,301,143,,,,,,20012515,,, +26450,USA,,WLW,,Cincinnati (OH),39.35,-84.316667,,0.075,,6713,297,135,,,,,,40001326,,, +26450,USA,,WVTV,,Tampa (FL),27.816667,-82.35,,0.05,,7524,287,145,,,,,,40001327,,, +26450,USA,,KMGH,,Denver (CO),39.75,-105,,0.05,,7850,311,148,,,,,,40001325,,, +26450,USA,,KTRK-TV,,Houston (TX),29.65,-95.266667,,0.05,,8184,297,152,,,,,,40001328,,, +26470,USA,,WJFP,,Fort Pierce (FL),27.45,-80.35,,0.05,,7423,285,144,,,,,,40001330,,, +27605,IRL,,Immaculate Conception of the BVM,,Newcastle West (LK),52.45,-9.066667,,0.01,,1052,278,87,,,,,,4100039,,, +27605,IRL,,St. Mary's Church,,Ballyheigue (KY),52.383333,-9.833333,,0.01,,1104,278,88,,,,,,4100037,,, +27611,IRL,,Church of Immaculate Conception,,Inagh (CE),52.883333,-9.183333,,0.01,,1057,281,88,,,,,,4100040,,, +27621,IRL,,Holy Trinity Abbey Church,,Adare (LK),52.566667,-8.8,,0.01,,1033,279,87,,,,,,4100038,,, +27621,IRL,,St. Cronan's Church,,Roscrea (TA),52.95,-7.8,,0.01,,964,281,87,,,,,,4100041,,, +27631,IRL,,unid,,County Cork (CO),51.966667,-8.583333,,0.01,,1024,275,87,,,,,,4100042,,, +27641,G,,unknown,,Angus (SC-ANG),56.65,-2.883333,,0.01,,784,314,85,,,,,,2800036,,, +27681,IRL,,St. Mary's Parish Church,,Lucan (D),53.366667,-6.433333,,0.01,,875,284,86,,,,,,4100043,,, +27771,IRL,,Ennis Cathedral SS Peter & Paul,,Ennis (CE),52.85,-8.983333,,0.01,,1044,281,87,,,,,,4100044,,, +27805,IRL,,unid,,County Cork (CO),51.966667,-8.583333,,0.01,,1024,275,87,,,,,,4100045,,, +27815,IRL,,St. Mary's Church,,Carrigtwohill (CO),51.9,-8.266667,,0.01,,1003,274,87,,,,,,4100046,,, +27831,IRL,,Church of Immaculate Conception,,Blarney (CO),51.933333,-8.566667,,0.01,,1023,275,87,,,,,,4100047,,, +27881,G,en,St. Luke's Church,,Dunmurry (NI-ANT),54.55,-6.016667,,0.01,,867,293,86,,,,,,2800037,,, +27911,IRL,,St. Colmcille Church,,Churchtown South (CO),51.825944,-8.079203,,0.01,,991,274,87,,,,,,4100048,,, +27951,IRL,,St. Conleth's Church,,Newbridge (KE),53.183333,-6.8,,0.01,,898,283,86,,,,,,4100049,,, +27981,IRL,,Church of Our Lady Crowned,,Upper Mayfield/Cork (CO),51.913419,-8.428186,,0.01,,1014,275,87,,,,,,4100050,,, +28110,F,,F5KCK,b,Sartrouville (78),48.933333,2.2,,0.025,,462,222,78,,,,,A1 ROBOT,55161,,, +28147.5,I,,IW0CPK,b,Roma (rm),41.883333,12.45,,0.001,,1225,156,99,,,,-28147.5,?,55162,,, +28152,I,,IW0DQJ,b,Rieti (ri),41.883333,13.7,,0.003,,1263,151,95,,,,,Dipole A1 ?,55163,,, +28161,CAN,,VE3SWS,b,Callander ON (ON),46.183333,-79.45,,0.025,,5907,300,132,,,,,A1 ?,55164,,, +28163,CAN,,VA3CBE,b,Kitchener ON (ON),43.466667,-80.45,,0.005,,6164,298,142,,,,,A1 ?,55165,,, +28166,MEX,,XE2o,b,Monterey NL,25.716667,-100.283333,,0.005,,8832,299,166,,,,,1/4 Vert Omni A1,55166,,, +28167.2,ARG,,LU3DBJ,b,Quilmes (ba),-34.716667,-58.283333,,0.003,,11510,230,177,,,,-28167.2,Vertical Omni A1 24,55167,,, +28170,CAN,,VA3XCD,b,Oshawa ON (ON),43.516667,-78.95,,0.005,,6070,298,141,,,,,OCF Dipole Omni A1 ?,55168,,, +28171,MEX,,XE1FAS,b,Puebla (pue),19.05,-98.283333,,0.012,,9303,293,164,,,,,Dipole A1 24,55169,,, +28172,CAN,,VE3KAH,b,Kah-She I. ON (ON),46.3,-79.366667,,0.025,,5893,300,132,,,,,A1 24,55170,,, +28173,I,,IZ1EPM,b,27 km NE of Torino (to),45.133333,7.866667,,0.02,,783,172,82,,,,,1/2 Vert Omni A1 24,55171,,, +28175,CAN,,VE3TEN,b,Ottawa ON (ON),45.516667,-74.95,,0.01,,5684,297,134,,,,,GP Omni A1 24,55172,,, +28176,B,,PY2RFF,b,So Pedro (SP),-22.516667,-47.95,,0.0015,,9827,229,175,,,,,1/4 Vert Omni A1 24,55173,,, +28176.9,PNR,,HP1RCP,b,Cerro Jefe,9.133333,-79.366667,,0.005,,8920,272,166,,,,-28176.9,Slope Dip A1 24,55174,,, +28178.4,I,,IG0GV,b,Sora (fr),41.716667,13.616667,,0.004,,1277,152,94,,,,-28178.4,Omni A1 24,55175,,, +28179,MEX,,XE2AT,b,Aguascalientes,21.85,-108.283333,,0.025,,9653,302,162,,,,,A1 24,55176,,, +28180.3,I,,I1M,b,Bordighera (im),43.8,7.7,,0.005,,929,174,89,,,,-28180.3,2x5/8 Vert Omni A1 30/60min,55177,,, +28182,CAN,,VY0SNO,b,Iqaluit NU (NU),63.516667,-68.95,,0.015,,4352,317,119,,,,,1/2 Hor DipNW/SE MCW 24,55178,,, +28182.4,GRC,,SV3AQR,b,Amalias,37.766667,21.366667,,0.004,,1974,138,101,,,,-28182.4,GP Omni A1 24,55179,,, +28183.2,MEX,,XE1RCS,b,Cerro Gordo,19.766667,-98.783333,,0.008,,9271,294,166,,,,-28183.2,AR10 Omni A1 24,55180,,, +28184,CAN,,VE2REA,b,Quebec QC (QC),46.8,-71.283333,,0.025,,5373,296,127,,,,,A1 24?,55181,,, +28185,CAN,,VA3SRC,b,Burlington ON (ON),43.3,-79.866667,,0.005,,6141,298,141,,,,,Dipole A1 PT,55183,,, +28185,B,,PU5ATX,b,Imbituba (SC),-28.466667,-48.95,,0.025,,10449,226,164,,,,,A1 ?,55182,,, +28187,AUS,,VK5KV,b,Woomera SA (SA),-31.183333,136.783333,,0.01,,15401,80,185,,,,,5/8 Vert Omni A1 24,55184,,, +28187.6,CAN,,VE7KC,b,Penticton BC (BC),49.466667,-119.616667,,0.025,,7627,326,149,,,,-28187.6,A1 24,55185,,, +28188,AUT,,OE3XAC,b,Kaiserkogel (nie),48.05,15.533333,,0.02,,791,121,82,,,,,7/8 GP@750mOmni A1 24,55186,,, +28188.1,J,,JE7YNQ,b,Fukushima (toh-fuk),37.516667,141.033333,,0.025,,9123,35,160,,,,-28188.1,?,55187,,, +28188.9,GRC,,SV5TEN,b,,36.433333,28.2,,0.005,,2441,127,104,,,,-28188.9,Vertical Omni 24,55188,,, +28189.5,ARG,,LU2DT,b,Mar del Plata (ba),-37.466667,-56.95,,0.005,,11693,227,176,,,,-28189.5,Vert. Dip. Omni A1/psk24,55189,,, +28190,ARG,,LU3HFA,b,Cordoba (cb),-31.35,-64.283333,,0.005,,11533,236,175,,,,,Vertical Omni A1 24,55190,,, +28190.5,CAN,,VA3ROR,b,Orillia ON (ON),44.683333,-79.616667,,0.005,,6025,299,140,,,,-28190.5,Whip Omni A1 24,55191,,, +28191.5,UAE,,A62ER,b,Sharjah,25.35,55.366667,,0.025,,5047,107,123,,,,-28191.5,A1 ?,55192,,, +28192,ARG,,LU8EML,b,Ensenada (ba),-31.85,-57.95,,0.025,,11230,231,167,,,,,A1 24,55194,,, +28192.9,CAN,,VE4ARM,b,Brandon MB (MB),49.933333,-99.366667,,0.005,,6698,314,147,,,,-28192.9,GP Omni A1 24,55193,,, +28193,ARG,,LU2ERC,b,Ensenada (ba),-34.85,-57.95,,0.01,,11505,230,172,,,,,Vertical Omni A1 24,55203,,, +28193.5,OMA,,A47RB,b,unknown,23.6,58.45,,0.01,,5397,105,131,,,,-28193.5,Vertical Omni A1 ?,55195,,, +28195.1,I,,IY4M,b,Bologna (bo),44.433333,11.366667,,0.02,,929,155,83,,,,-28195.1,5/8 GP Omni A1 H>H+30m,55196,,, +28196,CAN,,VA3ITA,b,Bramton ON (ON),43.933333,-79.783333,,0.025,,6090,298,134,,,,,A1 IRREG,55197,,, +28196.1,ARG,,LU4JJ,b,Concordia (er),-31.383333,-58.033333,,0.025,,11192,232,167,,,,-28196.1,A1 24,55198,,, +28196.7,ARG,,LU5FB,b,Rosario (sf),-32.933333,-60.7,,0.025,,11477,233,168,,,,-28196.7,A1 24,55199,,, +28197,I,,I0KNQ,b,Roma (rm),41.85,12.45,,0.002,,1228,156,96,,,,,A1 24,55202,,, +28197,CAN,,VE7MTY,b,Vancouver BC (BC),49.516667,-122.95,,0.005,,7747,328,157,,,,,Vertical Omni A1 24,55201,,, +28200,FIN,,OH2B,b,Lohja,60.516667,25.033333,,0.025,,1472,43,88,,,,,Vertical Omni A1 IBP cycle,55217,,, +28200,MDR,,CS3B,b,Santo da Serra (pst),32.716667,-16.783333,,0.025,,2851,230,101,,,,,Vertical Omni A1 IBP cycle,55218,,, +28200,ISR,,4X6TU,b,Tel Aviv,32.05,34.783333,,0.025,,3196,123,105,,,,,Vertical Omni A1 IBP cycle,55216,,, +28200,CAN,,VE8AT,b,Eureka,Nunavut (NU),79.966667,-85.95,,0.025,,4381,344,117,,,,,Vertical Omni A1 IBP cycle,55205,, +28200,RUS,,RR9O,b,Novosibirsk,54.966667,82.866667,,0.025,,4806,55,121,,,,,Vertical Omni A1 TNonOp,55211,,, +28200,UN,,4U1UN,b,New York,40.766667,-73.95,,0.025,,5962,292,133,,,,,Vertical Omni A1 TNonOp,55204,,, +28200,KEN,,5Z4B,b,Kiambu,-1.016667,37.033333,,0.025,,6565,144,139,,,,,Vertical Omni A1 IBP cycle,55215,,, +28200,VEN,,YV5B,b,Caracas,10.433333,-66.866667,,0.025,,7954,263,153,,,,,Vertical Omni A1 TNonOp,55221,,, +28200,CLN,,4S7B,b,Colombo,6.1,80.2,,0.025,,8369,99,157,,,,,Vertical Omni A1 IBP cycle,55213,,, +28200,AFS,,ZS6DN,b,Pretoria (GT),-25.883333,28.283333,,0.025,,8931,160,159,,,,,Vertical Omni A1 IBP cycle,55214,,, +28200,USA,,W6WX,b,Mt Umunhum (CA),37.133333,-121.866667,,0.025,,8899,321,159,,,,,Vertical Omni A1 IBP cycle,55206,,, +28200,HKG,,VR2B,b,Hong Kong,22.683333,114.2,,0.025,,9169,62,160,,,,,Vertical Omni A1 IBP cycle,55212,,, +28200,J,,JA2IGY,b,Mt Asama,34.433333,136.783333,,0.025,,9253,39,161,,,,,Vertical Omni A1 IBP cycle,55210,,, +28200,PRU,,OA4B,b,Lima,-12.05,-76.95,,0.025,,10616,257,165,,,,,Vertical Omni A1 IBP cycle,55220,,, +28200,ARG,,LU4AA,b,Buenos Aires (ba),-34.6,-58.366667,,0.025,,11504,230,168,,,,,Vertical Omni A1 IBP cycle,55219,,, +28200,HWA,,KH6WO,b,Laie, Oahu (HI),21.633333,-157.95,,0.025,,11675,345,169,,,,,Vertical Omni A1 IBP cycle,55207,, +28200,AUS,,VK6RBP,b,28km SE of Perth (WA),-32.1,116.033333,,0.025,,14060,97,176,,,,,Vertical Omni A1 TNonOp,55209,,, +28200,NZL,,ZL6B,b,near Masterton,-41.05,175.616667,,0.025,,18538,38,191,,,,,Vertical Omni A1 IBP cycle,55208,,, +28201,USA,,N0AMY,b,Colorado Springs (CO),38.85,-104.783333,,0.025,,7918,310,152,,,,,A1 24,55222,,, +28201.05,ARS,,7Z1CQ,b,Jeddah (mkh),21.55,39.2,,0.01,,4408,128,121,,,,-28201.05,A1 24,55223,,, +28201.3,B,,PU2SUT,b,So Paulo (SP),-23.933333,-46.366667,,0.02,,9884,227,164,,,,-28201.3,Dipole A1 ?,55224,,, +28202,USA,,WN2WNC,b,New Berlin (NY),42.6,-75.283333,,0.025,,5912,294,132,,,,,A1 ?,55225,,, +28202.5,POL,,SR4TEN,b,Suchacz-Zamek,54.266667,19.45,,0.003,,900,69,91,,,,-28202.5,A1 OP?,55227,,, +28202.5,USA,,KA3BWP,b,Stafford (VA),38.433333,-77.45,,0.025,,6358,292,137,,,,-28202.5,A1 24,55228,,, +28202.5,AFS,,ZS1J,b,Plettenberg Bay (WC),-34.766667,23.283333,,0.025,,9799,166,162,,,,-28202.5,A1 24,55226,,, +28202.7,S,,SK3GK,b,,60.633333,17.116667,,0.025,,1151,30,84,,,,-28202.7,A1 ?,55229,,, +28203,USA,,KB1QZY,b,Springfield (MA),42.1,-72.616667,,0.025,,5781,292,131,,,,,max2000 V Omni A1 24,55231,,, +28203,USA,,KG8CO,b,Clinton (MI),42.05,-83.95,,0.025,,6481,299,138,,,,,ertical Omni A1 24,55232,,, +28203,USA,,N6DXX,b,Sacramento (CA),38.516667,-121.533333,,0.025,,8751,321,159,,,,,A1 ?,55233,,, +28203,B,,PY2WFG,b,Ipisanga (SP),-22.766667,-45.533333,,0.025,,9729,227,162,,,,,A1 ?,55230,,, +28203.5,USA,,K6LLL,b,MissionViejo (CA),33.6,-117.616667,,0.025,,9045,316,160,,,,-28203.5,A1 24,55234,,, +28204,USA,,WA2NTK,b,Big Flats (NY),42.183333,-76.866667,,0.025,,6040,295,133,,,,,E-W A1 24,55235,,, +28204,ALS,,WL7N,b,Ward Cove (AK),55.433333,-131.116667,,0.025,,7435,335,147,,,,,A1 ?,55236,,, +28204,USA,,W6CF,b,San Francisco (CA),37.85,-122.283333,,0.025,,8847,321,159,,,,,A1 24,55237,,, +28205,D,,DL0IGI,b,Hohenpeissenberg (bay),47.8,11.033333,,0.025,,582,144,79,,,,,1/4 Vert Omni A1 24,55238,,, +28205.2,USA,,N3NIA,b,Nr Ridgway (PA),41.433333,-78.7,,0.004,,6209,295,143,,,,-28205.2,Dipole A1 24,55239,,, +28205.9,THA,,HS0BBD,b,Bangkok,13.516667,103.033333,,0.025,,9270,76,161,,,,-28205.9,?,55240,,, +28206.1,CAN,,VA3GRR,b,Brampton ON (ON),43.516667,-78.95,,0.0018,,6070,298,145,,,,-28206.1,1/2 Vert Omni A1 24,55241,,, +28206.3,USA,,K9EJ,b,Toledo (IL),39.266667,-88.283333,,0.002,,6958,300,153,,,,-28206.3,Vert @4m Omni A1 24,55242,,, +28206.5,PNR,,HP1RIS,b,Panama City,9.016667,-79.45,,0.003,,8936,272,169,,,,-28206.5,Vert Dip Omni A1 24,55243,,, +28207,BEL,,ON0RY,b,Binche,50.433333,4.2,,0.005,,242,220,82,,,,,Vertical Omni A1 24,55244,,, +28207.8,USA,,W4CND,b,Jemison (AL),33.016667,-86.616667,,0.002,,7366,294,158,,,,-28207.8,Vertical Omni A1 24,55245,,, +28208,USA,,AK2F,b,Randolph (NJ),40.8,-74.616667,,0.025,,6001,292,133,,,,,A1 share,55247,,, +28208,USA,,WN2A,b,Budd Lake (NJ),40.85,-74.783333,,0.025,,6008,293,133,,,,,A1 AK2F,55248,,, +28208,USA,,KE6TE,b,Elk Grove (CA),38.433333,-121.366667,,0.025,,8752,321,159,,,,,A1 OP?,55246,,, +28208.1,J,,JR0YAN,b,near Toyama,36.933333,136.783333,,0.025,,9008,38,160,,,,-28208.1,Hor.Loop A1 24+++,55249,,, +28208.2,I,,IZ3LCJ,b,Santa Lucia di Piave (tv),45.85,12.283333,,0.025,,817,146,81,,,,-28208.2,/4GP@15m Omni A1 24,55250,,, +28208.7,USA,,N8PVL,b,Livonia (MI),42.383333,-83.45,,0.025,,6425,299,137,,,,-28208.7,A1 ?,55251,,, +28209,HWA,,KH6AP,b,Kikei Maui (HI),20.766667,-156.45,,0.02,,11742,343,170,,,,,3/8 Vert Omni A1 24,55252,,, +28209.5,USA,,K9CW,b,Thomasboro (IL),40.216667,-88.116667,,0.002,,6872,300,153,,,,-28209.5,AR99@15' Omni A1 24,55253,,, +28210,MAU,,3B8MS,b,Quatre Bornes,-20.383333,57.616667,,0.007,,9460,133,167,,,,,1/2 Vert Omni A1 24,55254,,, +28210.4,USA,,NT4F,b,Wilmington (NC),34.183333,-77.95,,0.005,,6721,289,147,,,,-28210.4,A1 24,55255,,, +28211,D,,DB0FKS,b,near Frankfurt/M JN49IT (hes),50.8,8.7,,0.0002,,215,132,96,,,,,DV27 Vert Omni A1 OP?,55256,,, +28211,USA,,K5ARC,b,Galvez (LA),30.516667,-90.95,,0.02,,7845,295,152,,,,,Vertical Omni A1 24?,55257,,, +28211,CHL,,CE1TUW,b,Antofagasta,-33.3,-70.533333,,0.025,,12065,239,170,,,,,A1 ?,55258,,, +28211.1,NOR,,LA4TEN,b,near Hellvik,58.466667,5.866667,,0.25,,708,357,70,,,,-28211.1,Vertical Omni A1 24,55259,,, +28211.8,USA,,AC7GZ,b,Chandler (AZ),33.516667,-110.95,,0.025,,8722,311,159,,,,-28211.8,A1 ?,55260,,, +28212,ARS,,7Z1AL,b,Dammam (shy),26.433333,50.116667,,0.01,,4616,111,123,,,,,Vertical A1 24 ?,55261,,, +28212.5,USA,,KJ4QYB,b,RainbowCity (AL),33.6,-86.116667,,0.025,,7287,294,146,,,,-28212.5,A1 ?,55263,,, +28212.5,USA,,K0KP,b,Fredenberg (MN),46.933333,-92.2,,0.0005,,6570,308,156,,,,-28212.5,GP Omni A1 24,55262,,, +28212.6,ARG,,LU7DQP,b,Lans Oeste (ba),-34.7,-58.4,,0.025,,11515,230,168,,,,-28212.6,A1 24,55264,,, +28213.2,D,,DM0ING,b,Ingelheim (rlp),49.966667,8.033333,,0.01,,264,154,80,,,,-28213.2,GP Omni A1 24,55265,,, +28213.5,USA,,W3IK,b,Gray (TN),36.516667,-82.95,,0.025,,6853,294,142,,,,-28213.5,A1 24,55267,,, +28213.5,USA,,KE4KAA,b,Big Stone Gap (VA),36.883333,-82.783333,,0.005,,6814,294,148,,,,-28213.5,A1 24,55266,,, +28213.8,USA,,KF5KBZ,b,Austin (TX),30.05,-97.533333,,0.025,,8285,299,156,,,,-28213.8,A1 ?,55268,,, +28214,USA,,N4PAL,b,Longwood (FL),28.683333,-81.366667,,0.005,,7388,287,154,,,,,Vert@4.5m Omni A1 24?,55269,,, +28214.8,REU,,FR1GZ,b,Reunion I. (974),-20.883333,55.45,,0.025,,9402,135,161,,,,-28214.8,?,55270,,, +28215,G,,GB3RAL,b,near Didcot (EN-OXF),51.55,-1.283333,,0.025,,532,266,78,,,,,HorizDip Omni F1 24,55274,,, +28215,USA,,W4JPL,b,Liberty (NC),35.883333,-79.533333,,0.025,,6688,291,140,,,,,A1 24,55273,,, +28215,USA,,KA9SZX,b,Paxton (IL),40.133333,-88.2,,0.001,,6883,300,156,,,,,Antron99 Omni A1 24,55272,,, +28215,ARG,,LU5EGY,b,Buenos Aires (ba),-34.633333,-58.616667,,0.025,,11520,230,168,,,,,A1 24,55271,,, +28215.3,MEX,,XE3D,b,Merida (yuc),20.266667,-89.616667,,0.025,,8641,287,158,,,,-28215.3,A1 24,55275,,, +28215.5,USA,,KD5CKP,b,Olive Branch (MS),34.933333,-89.866667,,0.003,,7408,297,156,,,,-28215.5,Vertical Omni A1 24,55276,,, +28215.8,USA,,K6WKX,b,Santa Cruz (CA),36.966667,-122.033333,,0.01,,8922,321,163,,,,-28215.8,Horiz. Dip Omni A1 24,55277,,, +28216,USA,,K3FX,b,Neptune City (NJ),40.183333,-74.033333,,0.007,,6010,291,139,,,,,1/2 Vert Omni A1 24,55278,,, +28216,USA,,N7MA,b,Cataldo (ID),47.55,-116.45,,0.005,,7679,323,157,,,,,Vertical Omni A1 24,55279,,, +28217,USA,,WB0FTL,b,Alden (MN),43.633333,-93.533333,,0.005,,6906,306,149,,,,,AR10@25' Omni A1 24,55280,,, +28217,USA,,W6GY,b,Star (ID),43.633333,-116.533333,,0.025,,8047,320,153,,,,,A1 24,55281,,, +28217.5,USA,,WA1LAD,b,West Warwick (RI),41.683333,-71.533333,,0.0045,,5742,291,138,,,,-28217.5,J-Pole Omni A1 24,55282,,, +28218,I,,IQ1SP,b,Monte Verrugoli (sp),44.1,9.783333,,0.003,,925,163,91,,,,,1/2 Vert Omni A1 24,55283,,, +28218.3,USA,,AC0KC,b,Fort Lupton (CO),40.016667,-104.783333,,0.025,,7815,311,151,,,,-28218.3,A1 ?,55284,,, +28218.5,USA,,W5RDW,b,Murphy (TX),32.966667,-96.616667,,0.005,,7977,301,160,,,,-28218.5,AR10@25' Omni A1 24,55285,,, +28218.6,USA,,KA4RRU,b,Catlett (VA),38.55,-77.616667,,0.025,,6360,292,137,,,,-28218.6,A1 24,55286,,, +28218.8,USA,,KN8DMK,b,Amanda (OH),39.6,-82.783333,,0.003,,6600,296,148,,,,-28218.8,Slope Dip. NW/SE A1 ?,55287,,, +28219,I,,IW2DZX,b,SolbiateOlona (va),45.633333,8.866667,,0.0002,,742,165,101,,,,,1/2 Vert Omni ?,55288,,, +28219.6,B,,PY2UEP,b,Piraju (SP),-21.966667,-49.45,,0.025,,9852,230,162,,,,-28219.6,A1 ?,55289,,, +28219.9,USA,,KB9DJA,b,Mooresville (IN),39.6,-86.533333,,0.035,,6827,299,140,,,,-28219.9,GP Omni A1 24,55290,,, +28220,CYP,,5B4CY,b,Zygi,34.716667,33.283333,,0.026,,2877,122,102,,,,425,GP Omni F1 24,55291,,, +28220,USA,,W8VO,b,Sterling Hts (MI),42.85,-82.866667,,0.005,,6355,299,143,,,,,Vert@50' Omni A1 OP?,55292,,, +28220.4,USA,,WK4DS,b,Trenton (GA),34.85,-85.533333,,0.002,,7148,294,155,,,,-28220.4,Dipole NE-SW A1 24,55293,,, +28220.5,TUR,,YM7KK,b,Giresun,40.883333,38.7,,0.004,,2738,104,108,,,,560,A1 24,55294,,, +28221,DNK,,OZ7IGY,b,Jystrup,55.516667,11.866667,,0.016,,521,41,80,,,,,Halo Omni F1a 24,55295,,, +28221.5,USA,,KC0TKS,b,Sedalia (MO),38.683333,-93.283333,,0.005,,7298,302,153,,,,-28221.5,J-poleVert Omni A1 24,55296,,, +28222,F,,TP2CE,b,Strasbourg (67),48.6,7.783333,,0.025,,402,165,77,,,,,GP R-7000 Omni A1 24,55297,,, +28222,GRC,,SV2MCG/B,b,Litochoro (the),40.1,22.45,,0.025,,1812,131,91,,,,75,KN10FC,3400068,,, +28222,I,,IZ0KBA,b,Castel Madama (rm),41.966667,12.866667,,0.001,,1228,154,99,,,,,GP 350m aslOmni A1 24,55299,,, +28222,USA,,K6JCA,b,Carmel Valley (CA),36.516667,-120.95,,0.025,,8919,320,159,,,,,A1 24,55298,,, +28222.8,USA,,N4QDK,b,Sauratown Mt (NC),35.516667,-80.95,,0.003,,6807,292,150,,,,-28222.8,dipole A1 24,55300,,, +28223,UKR,,UR3OMP,b,,47.85,34.866667,,0.025,,2075,92,94,,,,,?,55302,,, +28223,MLT,,9H1LO,b,Sliema JM75GV,35.916667,14.5,,0.008,,1910,157,97,,,,,GP A1 ?,55303,,, +28223,USA,,WY5B,b,Biloxi (MS),30.433333,-88.866667,,0.025,,7722,294,150,,,,,A1 24,55301,,, +28223,PTR,,KP3FT,b,Ponce (PR),18.516667,-66.95,,0.004,,7264,269,154,,,,,Vertical Omni A1 24,55304,,, +28223.3,MEX,,XE3ACB,b,Hecelchakan,20.516667,-90.95,,0.025,,8706,288,159,,,,-28223.3,A1,55305,,, +28224,F,,F5SN,b,Dole (39),47.05,5.45,,0.005,,567,187,86,,,,,3-el Yagi 240 F3 ?,55307,,, +28224,USA,,WD0AKX,b,Albert Lea (MN),43.516667,-92.95,,0.005,,6883,306,149,,,,,Ve rtical OMNI A1 24,55306,,, +28224.2,INS,,YB9BWN,b,Denpasar, Bali,3.433333,102.45,,0.002,,10117,83,174,,,,-28224.2,Dipole EU/VK A1 24,55308,, +28224.7,HNG,,HA5BHA,b,near Budapest (Pes),47.6,18.866667,,0.005,,1022,114,90,,,,-28224.7,Omni 24,55309,,, +28224.8,USA,,KW7Y,b,Marysville (WA),48.133333,-122.45,,0.004,,7861,327,160,,,,-28224.8,Vertical Omni A1 24,55310,,, +28225,POR,,CS5BTEN,b,Cacem, Sintra,38.766667,-9.283333,,0.01,,1915,225,96,,,,,Vertical Omni A1 24,55311,, +28225,TUR,,YM7TEN,b,,41.05,39.45,,0.001,,2777,103,115,,,,,Vertical Omni A1 24,55312,,, +28225,USA,,K5GJR,b,CorpusChristi (TX),27.716667,-97.366667,,0.025,,8479,298,158,,,,,A1 24,55314,,, +28225,USA,,K6FRC,b,Angels Common (CA),37.633333,-121.45,,0.025,,8833,321,159,,,,,Vertical Omni A1 24,55313,,, +28225.1,I,,IT9EJW,b,Catania (ct),37.55,15.116667,,0.003,,1756,154,100,,,,-28225.1,24,55315,,, +28225.5,USA,,W2DLL,b,Nr Buffalo (NY),42.633333,-78.7,,0.008,,6120,297,139,,,,-28225.5,1/2 Vert. Omni A1 24,55316,,, +28225.6,USA,,WB0LYV,b,Beatrice (NE),40.516667,-96.95,,0.025,,7352,306,146,,,,-28225.6,A1,55317,,, +28225.7,I,,IW1EGO,b,near Orbassano (to),45.016667,7.533333,,0.025,,793,174,81,,,,-28225.7,A1 ?,55318,,, +28226,E,,ED1YCA,b,IN73AL (AST-O),43.466667,-5.95,,0.01,,1329,229,90,,,,,5/b V 3dBd Omni A1 24 A1 TEST,55319,,, +28226,B,,PU4CBX,b,Baro de Cocais (MG),-19.933333,-43.7,,0.025,,9362,226,161,,,,,A1 ?,55320,,, +28226.2,USA,,WA6HXW,b,WestnCovina (CA),34.05,-117.95,,0.025,,9018,316,160,,,,-28226.2,A1 irreg,55321,,, +28226.5,USA,,N7MSH,b,North Powder (OR),45.516667,-116.95,,0.025,,7889,322,152,,,,-28226.5,A1 24,55322,,, +28226.6,USA,,KC6WGN,b,Las Vegas (NV),36.133333,-115.033333,,0.01,,8682,315,163,,,,-28226.6,Omni A1 24,55323,,, +28226.7,USA,,KU4A,b,Lexngton (KY),38.05,-84.45,,0.025,,6824,296,141,,,,-28226.7,A1,55324,,, +28227.5,USA,,KC5MO,b,Austin (TX),30.216667,-97.866667,,0.002,,8290,300,167,,,,-28227.5,Dipole A1 24,55325,,, +28227.7,I,,IW3FZQ,b,Monselice (pd),45.216667,11.783333,,0.005,,862,151,89,,,,-28227.7,J-Pole@20m Omni A1 24,55326,,, +28228,NZL,,ZL3TEN,b,Rolliston,-43.466667,173.033333,,0.02,,18633,51,192,,,,,1/2 Vert Omni A1 24,55327,,, +28228.3,GTM,,TG9TEN,b,,14.516667,-90.95,,0.025,,9231,285,160,,,,-28228.3,A1,55328,,, +28229,NZL,,ZL2MHF,b,near Wellington,-41.133333,175.116667,,0.01,,18524,40,195,,,,,1/2 Vert Omni F1 24,55329,,, +28229.3,USA,,KA2LIM,b,Pine Valley (NY),42.633333,-76.866667,,0.025,,6007,295,133,,,,-28229.3,A1 ?,55330,,, +28230,I,,IQ8CZ,b,Catanzaro (cz),38.883333,16.616667,,0.01,,1668,148,94,,,,110,GP Omni A1 24,55331,,, +28230,FIN,,OH5SHF,b,Kouvola,60.883333,26.616667,,0.006,,1567,44,95,,,,,H Dipole 20/200 F1 24,55332,,, +28230,USA,,KQ4TG,b,Leland (NC),30.216667,-70.033333,,0.025,,6512,280,138,,,,,A1 24,55335,,, +28230,USA,,WA4ZKO,b,Dry Ridge (KY),38.633333,-84.7,,0.004,,6793,297,149,,,,,A99 Omni A1 24,55333,,, +28230,USA,,KI4AED,b,Ocoee (FL),28.55,-81.533333,,0.005,,7410,287,154,,,,,Antron 99 Omni A1 24,55334,,, +28230.5,PNR,,HP6RCP,b,Santiago,8.05,-80.95,,0.003,,9122,273,169,,,,-28230.5,AR99 Omni A1 24,55336,,, +28231,F,,F5ZEH,b,IN88VA (35),48.016667,-2.2,,0.0005,,764,237,98,,,,,1/2V,3-elY A1 24,55337,, +28231.6,GRC,,SV2AHT,b,Hortiatis,40.6,23.116667,,0.025,,1803,129,91,,,,-28231.6,A1 24,55338,,, +28231.8,USA,,WA4FC,b,Prince George (VA),37.133333,-77.366667,,0.005,,6453,291,144,,,,-28231.8,Ringo@200' Omni A1 24,55339,,, +28232,USA,,N1FSX,b,Simla (CO),39.1,-103.95,,0.005,,7852,310,158,,,,,Vertical Omni A1 24,55340,,, +28232.6,USA,,N9BPE,b,Tuscaloosa (IL),39.8,-88.283333,,0.002,,6915,300,153,,,,-28232.6,1/2Dip@20' Omni A1 24,55341,,, +28232.7,USA,,N2MH,b,West Orange (NJ),40.8,-74.283333,,0.025,,5980,292,133,,,,-28232.7,A1 24,55342,,, +28233,I,,I0KNQ,b,Genzano di Roma (rm),41.85,12.45,,0.002,,1228,156,96,,,,,Turnstile Omni A1 24,55344,,, +28233,USA,,N2UHC,b,St Paul (KS),37.516667,-95.2,,0.004,,7506,303,156,,,,,Vert Dip Omni A1 24,55343,,, +28234,USA,,K4DP,b,Covington (VA),37.716667,-79.95,,0.025,,6571,293,139,,,,,A1 IRREG,55345,,, +28234.3,USA,,W5BUB,b,Cedarville (AR),35.516667,-94.95,,0.025,,7661,301,150,,,,-28234.3,A1,55376,,, +28234.8,CAN,,VE1CBZ,b,KeswickRidge NB (NB),45.516667,-66.95,,0.002,,5189,293,136,,,,-28234.8,A99 Vert Omni A1 24,55346,,, +28235,PTR,,NP4LW,b,San Sebastian,18.35,-66.95,,0.015,,7278,269,148,,,,,Vertical A1 ?,55348,,, +28235,USA,,KI4AED,b,Ocoee (FL),28.55,-81.533333,,0.005,,7410,287,154,,,,,Antron 99 Omni A1 24,55347,,, +28235,USA,,KQ4FM,b,Southlake (TX),32.933333,-97.2,,0.005,,8014,301,160,,,,,GP A1 24,55349,,, +28235.1,USA,,KI4HOZ,b,Pickens (SC),33.516667,-82.033333,,0.025,,7036,291,143,,,,-28235.1,A1,55350,,, +28235.6,CAN,,VE3GOP,b,Mississauga ON (ON),43.133333,-79.45,,0.0002,,6129,297,155,,,,-28235.6,A99 Vert Omni A1 24,55351,,, +28236,USA,,W8YT,b,Martinsburg (WV),39.383333,-77.95,,0.005,,6317,293,143,,,,,Vertical Omni A1 24,55352,,, +28236.5,USA,,W0KIZ,b,Nr Denver (CO),39.516667,-104.95,,0.005,,7868,310,159,,,,-28236.5,Vertical Omni A1 24,55353,,, +28237.6,NOR,,LA5TEN,b,near Oslo,59.633333,10.783333,,0.015,,879,16,84,,,,-28237.6,1/2 Vert Omni A1 24,55354,,, +28237.8,USA,,K7ZSA,b,Alger (WA),48.6,-122.283333,,0.005,,7810,327,158,,,,-28237.8,Vertical Omni A1 24?,55355,,, +28238,USA,,KB2SEO,b,Eton (GA),34.8,-84.783333,,0.005,,7106,294,151,,,,,1/4 GP Omni A1 24,55356,,, +28239,B,,PP6AJM,b,Nossa Senhora do Socorro (SE),-10.85,-37.033333,,0.025,,8137,225,154,,,,,?,55358,,, +28239,CAN,,VA7PL,b,Kelowna/Crystal Mountain (BC),49.516667,-118.95,,0.005,,7596,325,156,,,,,GP Omni A1 24,55357,,, +28239.2,ALS,,AL7FS,b,Anchorage (AK),61.133333,-149.866667,,0.003,,7248,348,155,,,,-28239.2,1/2 Vert Omni A1 PT,55359,,, +28239.5,USA,,WA3HGT,b,Montoursville (PA),41.266667,-76.95,,0.025,,6113,294,134,,,,-28239.5,,55360,,, +28239.7,USA,,AB5WG,b,Bulverde (TX),32.516667,-96.95,,0.004,,8036,301,161,,,,-28239.7,Omni A1 24,55361,,, +28239.8,I,,IZ8RVA,b,Agropoli (sa),40.35,14.95,,0.025,,1461,150,88,,,,-28239.8,A1 ?,55363,,, +28239.8,USA,,N4LEM,b,Cocoa (FL),28.516667,-80.95,,0.05,,7374,287,144,,,,-28239.8,Vertical Omni A1 ?,55362,,, +28240,I,,I0KNQ,b,Roma (rm),41.85,12.45,,0.025,,1228,156,85,,,,,A1 24,55364,,, +28240,MEX,,XE3OAX,b,Ocotlan, OAX,17.016667,-96.7,,0.025,,9384,291,161,,,,,+ sev.spurii A1 24,55365,, +28240.11,USA,,WE6Z,b,Granite Bay (CA),38.766667,-121.2,,0.004,,8712,321,167,,,,-28240.11,Vertical Omni A1 24,55366,,, +28240.5,USA,,N2DWS,b,PortRepublic (NJ),39.516667,-74.45,,0.025,,6086,291,134,,,,-28240.5,A1 24,55367,,, +28240.6,ROU,,YO2X,b,Timisoara,45.766667,21.283333,,0.002,,1291,117,97,,,,-28240.6,GP Omni A1 09-15UT,55369,,, +28240.6,USA,,W4RKC,b,Winchester (VA),39.183333,-78.116667,,0.005,,6343,293,143,,,,-28240.6,A1 ?,55368,,, +28240.7,USA,,AJ8T,b,Sturgis (MI),41.766667,-85.366667,,0.025,,6587,300,139,,,,-28240.7,A1 24,55370,,, +28241.5,F,,F5ZUU,b,Malataverne (26),44.466667,4.7,,0.005,,859,189,89,,,,-28241.5,1/2 Vert Omni A1 24,55371,,, +28241.5,USA,,K5DZE,b,Erlanger (KY),38.766667,-84.616667,,0.005,,6777,297,148,,,,-28241.5,A1 24,55372,,, +28242,I,,IZ8DXB,b,Napoli (na),40.55,14.95,,0.006,,1441,150,94,,,,,A1 ?,55373,,, +28242.5,USA,,WD9CVP,b,Elgin (IL),42.016667,-88.283333,,0.025,,6738,302,140,,,,-28242.5,A1 24,55374,,, +28242.7,F,,F5ZWE,b,Foix (09),42.933333,1.616667,,0.015,,1081,201,86,,,,-28242.7,Vert Dip Omni A1 24,55375,,, +28244,USA,,WA6APQ,b,Long Beach (CA),33.516667,-116.95,,0.03,,9021,315,159,,,,,Vertical Omni A1 24,55377,,, +28244.8,I,,IT9DTV,b,Messina (me),38.133333,15.533333,,0.008,,1708,152,95,,,,-28244.8,GP Omni A1 24,55378,,, +28245,D,,DB0TEN,b,Bomlitz (nds),52.933333,9.616667,,0.002,,235,66,86,,,,,1/2 GP Omni A1 24,55380,,, +28245,USA,,N8RT,b,Blairsville (GA),34.516667,-82.95,,0.04,,7013,292,141,,,,,Ringo Omni A1 24,55379,,, +28245.6,GRC,,SV2AHT,b,,40.6,23.116667,,0.025,,1803,129,91,,,,-28245.6,?,55381,,, +28245.8,B,,PP6AJM,b,Nossa Senhora do Socorro (SE),-10.85,-37.033333,,0.01,,8137,225,158,,,,-28245.8,Dipole A1 24,55382,,, +28246,CAN,,VE9BEA,b,Crabbe Mntn NB (NB),46.516667,-66.95,,0.006,,5124,294,130,,,,,AR10@43' Omni A1 24,55383,,, +28246,USA,,KG2GL,b,Nutley (NJ),40.8,-74.283333,,0.005,,5980,292,140,,,,,R5Vert @40'Omni A1 INT,55384,,, +28246.2,USA,,KI4LEV,b,Clarksville (TN),36.516667,-86.95,,0.005,,7100,297,151,,,,-28246.2,A1 ?,55385,,, +28247.9,USA,,N1ME,b,Bangor (ME),44.766667,-68.7,,0.005,,5349,293,133,,,,-28247.9,A1 24,55386,,, +28248.5,USA,,K5DDJ,b,San Antonio (TX),29.516667,-98.95,,0.0005,,8416,300,174,,,,-28248.5,GP Omni A1 24,55387,,, +28249,USA,,KA3JOE,b,Bensalem (PA),49.05,-74.95,,0.025,,5445,301,127,,,,,A1 ?,55389,,, +28249,USA,,N7LT,b,Bozeman (MT),45.683333,-111.033333,,0.004,,7614,318,157,,,,,1/2 GP Omni A1 24,55388,,, +28249.1,MDA,,ER1TEN,b,Chisinau,47.05,28.7,,0.005,,1695,101,97,,,,-28249.1,Vertical Omni A1 ?,55390,,, +28249.5,B,,PY3PSI,b,Porto Alegre (RS),-30.016667,-51.116667,,0.0028,,10705,227,175,,,,-28249.5,GP Omni A1 IRREG,55391,,, +28249.9,USA,,W3ATV,b,Trevose (PA),40.516667,-74.95,,0.001,,6043,292,147,,,,-28249.9,Dipole A1 24,55393,,, +28250,USA,,K1GND,b,Johnston (RI),41.8,-71.533333,,0.025,,5734,291,130,,,,,A1,55394,,, +28250,USA,,WB4WOR,b,Greensboro (NC),36.8,-79.866667,,0.02,,6637,292,140,,,,,2/.02 Hor A1 SYNCH)n,55398,,, +28250,USA,,N4ESS,b,Zephyrhills (FL),28.266667,-82.2,,0.025,,7477,287,148,,,,,A1 SYNCH)n,55397,,, +28250,USA,,N4ES,b,Clearwater (FL),28.016667,-82.7,,0.02,,7530,287,149,,,,,2/.02 Horiz A1 SYNCH)n,55400,,, +28250,USA,,N4ES,b,Tampa (FL),28.016667,-82.366667,,0.02,,7508,287,149,,,,,2/.02 Horiz A1 SYNCH)n,55396,,, +28250,USA,,K0HTF,b,Des Moines (IA),41.6,-93.7,,0.003,,7081,305,153,,,,,Inv.V@10' A1 24?,55402,,, +28250,USA,,K7EK,b,Graham (WA),47.05,-122.366667,,0.025,,7962,326,153,,,,,1/2 Vert Omni A1 SYNCH)n,55399,,, +28250,USA,,K6FRC,b,SutterButtes (CA),37.633333,-121.45,,0.01,,8833,321,163,,,,,Vertical Omni A1 24,55401,,, +28250,USA,,K8NDB,b,Somerton (AZ),32.683333,-114.616667,,0.004,,8986,313,168,,,,,1/4 Vert Omni A1 24,55395,,, +28250.1,ZWE,,Z21ANB,b,Bulawayo,-20.466667,29.033333,,0.008,,8364,158,162,,,,-28250.1,GP Omni F1 TNonOp,55403,,, +28251,USA,,N5ZTW,b,Dripping Springs (TX),30.216667,-98.2,,0.025,,8310,300,156,,,,,A1 24?,55404,,, +28251.15,USA,,WA4GEH,b,Clayton (NC),35.933333,-78.366667,,0.025,,6610,291,139,,,,-28251.15,A1 24,55405,,, +28251.3,E,,ED4YAK,b,Coslada (MAD-M),40.433333,-3.533333,,0.005,,1503,214,95,,,,-28251.3,Vertical Omni A1 ?,55406,,, +28252,USA,,KX5TX,b,Whitney (TX),31.966667,-97.366667,,0.025,,8108,300,154,,,,,A1,55407,,, +28252.5,USA,,W6PC/4,b,Ocala (FL),29.133333,-82.2,,0.01,,7405,288,151,,,,-28252.5,Dipole Omni A1 24,55408,,, +28253,USA,,K8HWW,b,Warren (MI),42.55,-82.95,,0.003,,6383,299,146,,,,,A1 24?,55410,,, +28253,USA,,KG4YUV,b,Crandall (GA),34.933333,-84.783333,,0.007,,7095,294,149,,,,,A99 Vert Omni A1 24,55409,,, +28253.8,MEX,,XE1USG,b,Puebla (pue),19.05,-98.2,,0.025,,9298,293,161,,,,-28253.8,A1 ?,55411,,, +28254.3,USA,,N1FCU,b,Windham (ME),43.8,-70.45,,0.025,,5525,293,128,,,,-28254.3,A1 24?,55412,,, +28254.5,USA,,K4JEE,b,Louisville (KY),38.133333,-84.533333,,0.025,,6822,296,141,,,,-28254.5,A1 ?,55413,,, +28255,USA,,N0AR,b,St Paul (MN),33.933333,-84.45,,0.0005,,7155,293,161,,,,,1/2 Vert Omni A1 24?,55414,,, +28255.5,USA,,K8HWW,b,Sterling Heights (MI),42.55,-82.95,,0.025,,6383,299,137,,,,-28255.5,ical Omni A1 24,55415,,, +28256,AND,,C30P,b,Andorra (adr),42.516667,1.533333,,0.01,,1128,201,88,,,,,R5 Vert@2m Omni A1 24,55416,,, +28256.5,USA,,K9JHQ,b,O'Fallon (IL),38.516667,-89.95,,0.01,,7117,300,148,,,,-28256.5,Vertical Omni A1 24?,55418,,, +28256.5,AUS,,VK3RMH,b,25km NE of Melbourne (VIC),-37.683333,145.2,,0.02,,16457,80,185,,,,-28256.5,1/2 Vert Omni A1 24,55417,,, +28257,USA,,KB4UPI,b,Bessemer (AL),33.266667,-86.95,,0.025,,7366,294,147,,,,,A1 24,55419,,, +28257.5,USA,,N5WYN,b,Seven Points (TX),32.35,-96.2,,0.025,,8006,300,153,,,,-28257.5,A1,55420,,, +28257.8,USA,,WY5I,b,Port St Kucie (FL),27.216667,-80.366667,,0.005,,7444,285,154,,,,-28257.8,7db Coll. Omni A1 07-2200LT,55421,,, +28258,E,,EA7JNC,b,La Lnea de la Concepcin (AND-CA),36.183333,-5.283333,,0.025,,1996,212,93,,,,,UC,55422,,, +28258,USA,,NM5TW,b,Albuquerque (NM),35.133333,-106.533333,,0.005,,8343,309,163,,,,,Vert Dip Omni A1 24,55423,,, +28259,F,,F5ZVM,b,Valenciennes (59),50.016667,3.283333,,0.005,,319,224,83,,,,,3dbi Vert Omni A1 24,55427,,, +28259,USA,,AB8CL,b,Arcanum (OH),49.016667,-84.533333,,0.025,,5994,306,133,,,,,A1 ?,55425,,, +28259,USA,,K5TLL,b,Hattiesburg (MS),31.266667,-89.45,,0.025,,7689,295,150,,,,,A1 ?,55424,,, +28259,USA,,AA4AN,b,Brentwood (TN),35.933333,-86.866667,,0.004,,7142,296,152,,,,,Vertical Omni A1 24,55426,,, +28259.3,AUS,,VK5W1,b,Adelaide (SA),-34.716667,138.616667,,0.01,,15796,82,186,,,,-28259.3,GP Omni A1 24,55428,,, +28260,USA,,AD5KO,b,Mena (AR),34.766667,-94.2,,0.02,,7681,300,151,,,,,Vert@20' Omni A1 24,55429,,, +28260.8,USA,,NJ3T,b,Somerset (PA),39.966667,-79.033333,,0.025,,6340,294,136,,,,-28260.8,A1 24?,55430,,, +28260.8,USA,,W5TXR,b,Schertz (TX),29.633333,-98.2,,0.025,,8361,300,157,,,,-28260.8,A1 ?,55431,,, +28261,USA,,N7LF,b,Corbett (OR),45.35,-122.2,,0.025,,8119,325,154,,,,,A1 24,55432,,, +28261.5,USA,,N4VBV,b,Sumter (SC),33.933333,-80.366667,,0.005,,6896,290,149,,,,-28261.5,Attic Dip A1 24,55433,,, +28261.6,RUS,,RK3XWA,b,Kaluga,54.516667,36.283333,,0.025,,1987,70,93,,,,-28261.6,24,55434,,, +28261.8,AUS,,VK2RSY,b,Sydney (NSW),-33.683333,151.033333,,0.025,,16534,68,185,,,,-28261.8,1/2 Vert Omni A1 24,55435,,, +28262.3,USA,,K8TK,b,Clarklake (MI),42.1,-84.366667,,0.002,,6502,299,149,,,,-28262.3,GP@15' Omni A1 24,55436,,, +28262.5,USA,,WF4HAM,b,Altamonte (FL),25.633333,-81.366667,,0.006,,7642,285,156,,,,-28262.5,A99@40' Omni A1 INT,55437,,, +28262.5,B,,PT9BCN,b,Campo Grande (MS),-20.433333,-54.533333,,0.001,,9982,235,177,,,,-28262.5,Vertical Omni A1 24,55438,,, +28263,E,,EA4YBA,b,Cuenca (CAM-CU),40.1,-2.116667,,0.005,,1486,209,95,,,,,GP Omni A1 24,55440,,, +28263,AUS,,VK3RRU,b,Mildura (VIC),-34.183333,142.033333,,0.02,,15985,78,184,,,,,A1 ?,55439,,, +28263.5,USA,,W4JPL,b,Liberty (NC),35.933333,-79.616667,,0.004,,6689,291,148,,,,-28263.5,A1 24,55442,,, +28263.5,USA,,N5YEY,b,Kilgore (TX),32.383333,-94.783333,,0.025,,7919,299,152,,,,-28263.5,A1 24,55441,,, +28264,USA,,AB8Z,b,Parma (OH),41.383333,-81.7,,0.005,,6397,297,144,,,,,5/8 Vert Omni A1 24,55443,,, +28264,AUS,,VK6RWA,b,Carine WA (WA),-31.933333,115.866667,,0.02,,14036,97,177,,,,,5/8 Vert Omni A1 24,55444,,, +28264.5,USA,,W5ZA,b,Shreveport (LA),32.383333,-93.7,,0.003,,7854,298,161,,,,-28264.5,Vert Dip Omni A1 24,55446,,, +28264.5,USA,,K7NWS,b,Kent (WA),47.433333,-122.366667,,0.001,,7925,326,166,,,,-28264.5,GP Omni A1 24,55445,,, +28265,D,,DF0ANN,b,Moritzberg (bay),49.466667,11.283333,,0.025,,451,129,77,,,,,ipole E-W A1 24,55447,,, +28265,USA,,NC4SW,b,Zebulon (NC),35.516667,-78.95,,0.025,,6680,291,140,,,,,A1 24,55450,,, +28265,USA,,N7SCQ,b,Dixon (CA),38.433333,-121.783333,,0.025,,8770,321,159,,,,,A1 24,55451,,, +28265,B,,PT9BCN,b,Campo Grande (MS),-20.433333,-54.533333,,0.012,,9982,235,166,,,,,1/2 Dipole A1 ?,55448,,, +28265.4,USA,,KR4HO,b,Lake City (FL),30.266667,-82.616667,,0.001,,7339,289,160,,,,-28265.4,Vertical Omni A1 ?,55449,,, +28266.5,USA,,KA1EKS,b,Millinocket (ME),45.6,-68.783333,,0.004,,5298,294,134,,,,-28266.5,A99 GP Omni A1 24,55452,,, +28266.5,USA,,W5DJT,b,Pocola (OK),35.3,-94.45,,0.025,,7650,301,149,,,,-28266.5,A1 24,55453,,, +28266.6,USA,,WN5KNY,b,RadiumSprings (NM),32.633333,-107.033333,,0.025,,8596,308,158,,,,-28266.6,A1 24,55454,,, +28267,AUS,,VK7RAE,b,TAS (TAS),-41.183333,146.283333,,0.01,,16770,84,189,,,,,Vartical Omni A1 24,55455,,, +28267.5,USA,,W5EFR,b,Houston (TX),29.933333,-95.616667,,0.0028,,8180,298,164,,,,-28267.5,A1 TQRT,55456,,, +28267.6,FIN,,OH9TEN,b,Pirttikoski,66.35,27.2,,0.02,,1956,28,93,,,,-28267.6,1/2 GP Omni A1 24,55457,,, +28268,USA,,NM0R,b,St Genevieve (MO),37.883333,-90.283333,,0.025,,7189,300,145,,,,,A1,55459,,, +28268,USA,,KB0QZ,b,Centralia (MO),39.183333,-92.116667,,0.005,,7190,302,152,,,,,Vertical Omni A1 24,55458,,, +28268.3,AUS,,VK8VF,b,Darwin NT (NT),-12.35,130.866667,,0.025,,13404,69,174,,,,-28268.3,1/4 Vert Omni A1 24,55460,,, +28268.5,USA,,KG4GXS,b,CoralSprings (FL),26.266667,-80.283333,,0.003,,7517,284,157,,,,-28268.5,Dip@23' E-W A1 24,55461,,, +28268.6,USA,,K7ZS,b,Hillsboro (OR),45.516667,-122.95,,0.025,,8132,326,154,,,,-28268.6,A1 24,55462,,, +28268.9,USA,,AA1TT,b,Claremont (NH),43.516667,-72.95,,0.005,,5701,294,137,,,,-28268.9,A1 24,55463,,, +28269.5,USA,,W3HH,b,Nr Ocala (FL),29.05,-82.2,,0.006,,7412,288,153,,,,-28269.5,Hamstick Omni A1 24,55464,,, +28270,AUS,,VK4RTL,b,Townsville (QLD),-19.216667,146.783333,,0.005,,15005,58,186,,,,,Vertical Omni F1 24,55465,,, +28271,GRC,,SV2HQL,b,Katakali-Grevena KM09UV,38.4,24.65,,0.025,,2077,130,94,,,,,5/8 GP Omni A1 24,55466,,, +28271.7,USA,,W4TIY,b,Dallas (GA),33.933333,-84.783333,,0.004,,7176,293,153,,,,-28271.7,1/4over5/8 Omni A1 24,55468,,, +28271.9,USA,,AC0RR,b,Springfield (MO),37.183333,-93.283333,,0.025,,7423,301,147,,,,-28271.9,A1 ?,55469,,, +28272,B,,PY1RJ,b,So Gonalo (RJ),-22.8,-42.95,,0.004,,9606,225,170,,,,,A1 24,55470,,, +28272.3,USA,,N1KON,b,Centerville (IN),39.8,-85.033333,,0.005,,6721,298,147,,,,-28272.3,Vertical Omni A1 24,55467,,, +28272.5,USA,,K5BTV,b,Cumming (GA),34.516667,-84.95,,0.00025,,7139,294,164,,,,-28272.5,HF6V Vert Omni A1 24,55471,,, +28273,USA,,AC4DJ,b,Eustis (FL),28.85,-81.616667,,0.02,,7390,287,148,,,,,Ringo Omni A1 24,55473,,, +28273,B,,PY4MAB,b,Poos de Caldas (MG),-21.8,-46.533333,,0.002,,9685,228,173,,,,,Dipole A1 24,55472,,, +28274,USA,,WI4L,b,Dalton (GA),34.683333,-84.866667,,0.025,,7120,294,144,,,,,A1 24,55475,,, +28274,ARG,,LW1DZ,b,Escobar (ba),-34.3,-58.783333,,0.01,,11498,230,172,,,,,Loop A1 24,55474,,, +28274.7,USA,,N0UD,b,Halliday (ND),47.3,-102.45,,0.025,,7067,314,144,,,,-28274.7,A1 24,55476,,, +28275,USA,,KG4GVV,b,Summerville (SC),33.516667,-80.95,,0.025,,6967,290,143,,,,,Vertical Omni A1 24,55479,,, +28275,VIR,,NP2SH,b,St John (stj),18.35,-64.783333,,0.025,,7131,267,144,,,,,A1 ?,55478,,, +28275,B,,PY2EMG,b,Jacarel (SP),-23.3,-45.95,,0.025,,9802,227,162,,,,,A1 ?,55477,,, +28276,USA,,K4FUM,b,Stone Mntn (GA),33.85,-84.116667,,0.025,,7141,293,144,,,,,A1 SYNCHx,55481,,, +28276,USA,,K4UKB,b,Danville (KY),37.633333,-84.866667,,0.01,,6883,296,146,,,,,5/8 Vert Omni A1 SYNCHx,55480,,, +28276.5,MEX,,XE2YBG,b,Victoria Tamau.,23.516667,-98.95,,0.025,,8947,296,159,,,,-28276.5,A1 ?,55482,,, +28277,USA,,WD8AQS,b,Fremont (MI),43.466667,-85.95,,0.025,,6490,302,138,,,,,A1 24,55485,,, +28277,USA,,WI4L,b,Dalton (GA),34.766667,-84.95,,0.025,,7119,294,144,,,,,A1 24,55484,,, +28277,USA,,WB7RBN,b,Pasco (WA),46.266667,-119.283333,,0.025,,7915,324,152,,,,,A1 24,55483,,, +28277.3,USA,,KD4MZM,b,Sarasota (FL),27.266667,-82.533333,,0.003,,7582,287,158,,,,-28277.3,Ringo@15' Omni A1 24,55486,,, +28277.6,D,,DM0AAB,b,Kiel (shs),54.3,10.533333,,0.01,,367,47,81,,,,-28277.6,GP Omni F1 24,55487,,, +28278,USA,,WA4OTD,b,Carmel (IN),39.516667,-86.95,,0.005,,6858,299,149,,,,,Indoor Dip A1 24,55488,,, +28279,D,,DB0UM,b,Schwedt (brb),53.183333,14.2,,0.002,,539,74,89,,,,,SlopeDipV Omni A1 24,55489,,, +28280,USA,,KA3NXN,b,Charlottesville (VA),38.016667,-78.45,,0.025,,6453,292,138,,,,,A1 24,55490,,, +28280,USA,,K5AB,b,Goldthwaite (TX),30.3,-97.7,,0.02,,8273,300,157,,,,,5/8 GP@45' Omni A1 24,55491,,, +28280,USA,,N6SPP,b,Concord (CA),37.516667,-120.95,,0.01,,8822,320,163,,,,,Vert Dip Omni A1 24,55493,,, +28280,B,,PU5AAD,b,Nova Braslia (RS),-28.216667,-48.7,,0.01,,10413,226,168,,,,,A1 24,55492,,, +28280.5,USA,,WB6FYR,b,Quartz Hill (CA),34.633333,-118.2,,0.01,,8974,317,164,,,,-28280.5,5/8 Vert Omni A1 24,55494,,, +28281,USA,,W8EH,b,Middletown (OH),39.466667,-84.366667,,0.0075,,6707,297,145,,,,,Vert@40' Omni A1 24,55495,,, +28281.2,I,,IK6ZEW,b,Pescara (pe),42.433333,15.2,,0.025,,1262,145,86,,,,-28281.2,A1 24?,55496,,, +28281.5,USA,,W4HEW,b,Millegeville (GA),34.966667,-81.033333,,0.025,,6856,292,142,,,,-28281.5,A1 24,55497,,, +28282,NOR,,LA6TEN,b,Kirkenes,69.683333,29.95,,0.01,,2299,23,100,,,,,Omni A1 OP?,55498,,, +28282,MEX,,XE2ES,b,Mexicali,32.633333,-114.533333,,0.025,,8986,313,160,,,,,A1 24,55499,,, +28282.4,USA,,KD0GZJ,b,Loveland (CO),40.383333,-105.116667,,0.001,,7800,311,165,,,,-28282.4,Vertical A1 24,55500,,, +28282.6,CZE,,OK0EG,b,Hradec Kralove,50.183333,15.866667,,0.01,,693,104,84,,,,-28282.6,GP Omni F1 24,55501,,, +28282.8,USA,,W0ERE,b,Fordlan (MO),36.516667,-92.95,,0.005,,7460,301,155,,,,-28282.8,Vertical Omni A1 24 ?,55502,,, +28283,USA,,K7YSP,b,Gainsville (GA),34.3,-83.95,,0.025,,7094,293,144,,,,,A1 24,55503,,, +28283.6,USA,,KC9GNK,b,Madison (WI),43.516667,-88.95,,0.004,,6658,303,147,,,,-28283.6,Inv Vee A1 24,55504,,, +28283.8,USA,,W5OM,b,Arcata (CA),40.933333,-123.616667,,0.098,,8603,324,152,,,,-28283.8,3-el A1 24,55505,,, +28284,I,,IZ0CWW,b,near Cassino (fr),41.466667,13.783333,,0.003,,1308,152,95,,,,,A1 24,55507,,, +28284,USA,,K2XG,b,Monticello (KY),36.85,-84.866667,,0.005,,6945,296,149,,,,,V.Dip@25' Omni A1 24,55506,,, +28284.5,USA,,KB9NK,b,Hudsonville (MI),42.85,-85.866667,,0.025,,6532,301,138,,,,-28284.5,A1 24?,55510,,, +28284.8,USA,,WD8AQS,b,Fremont (MI),43.466667,-85.95,,0.005,,6490,302,145,,,,-28284.8,A1 24,55508,,, +28285,ATA,,VP8ADE,b,Adelaide Island (aat),-67.55,-68.116667,,0.01,,14658,210,182,,,,,1/4 Vert Omni A1 24,55509,,, +28285.8,USA,,W0ILO,b,Fargo (ND),46.516667,-96.95,,0.025,,6854,310,142,,,,-28285.8,A1,55512,,, +28285.8,USA,,WA4ROX,b,Largo (FL),27.516667,-82.95,,0.00075,,7588,287,164,,,,-28285.8,A1 24,55511,,, +28286,USA,,WI6J,b,Bakersfield (CA),35.383333,-119.2,,0.005,,8949,318,166,,,,,Vertical Omni A1 24,55513,,, +28286,USA,,N5AQM,b,Chandler (AZ),33.3,-111.95,,0.002,,8793,311,170,,,,,Vertical Omni A1 24,55514,,, +28286.7,USA,,K3XR,b,SinkingSpring (PA),40.516667,-76.95,,0.025,,6169,294,135,,,,-28286.7,A1 ?,55515,,, +28287,USA,,W6WTG,b,Bakersfield (CA),35.383333,-118.95,,0.025,,8937,318,159,,,,,A1 24,55516,,, +28287.3,USA,,W2SDX,b,Buffalo (NY),38.883333,-77.033333,,0.025,,6297,292,136,,,,-28287.3,A1,55517,,, +28288,USA,,K4LJP,b,W Palm Beach (FL),26.516667,-80.95,,0.005,,7540,285,155,,,,,AR99@30' Omni A1 24,55519,,, +28288,USA,,WA7LNW,b,Harmony Mesa (UT),37.516667,-112.95,,0.005,,8452,315,164,,,,,FWave LoopEU/PAC A1 24,55518,,, +28289,USA,,WJ5O,b,Nr Columbus (AL),32.183333,-84.866667,,0.002,,7325,292,157,,,,,Yagi NE A1 24,55520,,, +28289.5,USA,,N1KXR,b,Medway (MA),42.516667,-72.95,,0.005,,5772,293,138,,,,-28289.5,A1 24,55521,,, +28289.8,USA,,W0ERE,b,Highlandsville (MO),36.966667,-93.366667,,0.025,,7446,301,147,,,,-28289.8,ries VariesA1 24,55523,,, +28289.8,HKG,,VR2TEN,b,Hong Kong,22.5,114,,0.005,,9173,63,167,,,,-28289.8,1/4 GP Omni A1 24,55522,,, +28290,USA,,N6UN,b,San Diego (CA),32.516667,-116.95,,0.005,,9116,315,167,,,,,A1 24,55524,,, +28290.3,USA,,WB4WOR,b,Randleman (NC),36.8,-79.866667,,0.003,,6637,292,149,,,,-28290.3,Vertical Omni A1 24,55526,,, +28290.4,S,,SK5AE,b,Strangnas,59.433333,16.866667,,0.05,,1042,35,80,,,,-28290.4,GP Omni A1 24,55525,,, +28292,CAN,,VA3VA,b,Windsor ON (ON),42.516667,-82.95,,0.005,,6385,299,144,,,,,Horiz Dip A1 24,55527,,, +28292.5,S,,SK0CT,b,Sollentuna,59.433333,17.95,,0.01,,1085,37,88,,,,-28292.5,GP Omni A1 24,55529,,, +28292.5,USA,,KM4GS,b,KentuckyLake (KY),36.516667,-88.95,,0.0005,,7221,298,162,,,,-28292.5,Vertical Omni A1 24,55528,,, +28292.8,USA,,K7GFH,b,Damascus (OR),45.383333,-122.45,,0.003,,8126,325,163,,,,-28292.8,Attic Dip A1 24,55530,,, +28293.4,USA,,ND4Z,b,Gilbert (SC),34.016667,-81.2,,0.005,,6943,291,149,,,,-28293.4,5/8@40' Omni A1 24,55531,,, +28293.7,USA,,W4DJD,b,Woodbridge (VA),38.633333,-77.366667,,0.025,,6337,292,136,,,,-28293.7,A1 24,55532,,, +28294,S,,SM5HUA,b,Uppsala,60.016667,17.866667,,0.1,,1128,34,78,,,,,Vertical Omni ?,55534,,, +28294,USA,,KE4IAP,b,Woodbridge (VA),38.633333,-77.366667,,0.025,,6337,292,136,,,,,A1 24,55535,,, +28294,USA,,K7RON,b,Peoria (AZ),33.516667,-112.95,,0.025,,8824,312,159,,,,,A1 24,55533,,, +28294.8,USA,,NR8O,b,Fort Thomas (KY),40.016667,-85.116667,,0.025,,6709,298,140,,,,-28294.8,A1,55537,,, +28295,USA,,KD1ZX,b,CentralFalls (RI),41.883333,-71.366667,,0.004,,5717,291,138,,,,,Vert@10' Omni A1 24,55536,,, +28295,B,,PU5ATX,b,Imbituba (SC),-28.266667,-48.7,,0.025,,10418,226,164,,,,,Dipole A1 06-2350,55538,,, +28295.1,S,,SK2TEN,b,Kristineberg,68.1,20.45,,0.005,,1930,18,99,,,,-28295.1,Vertical Omni A1 24,55539,,, +28295.5,I,,IZ0CWW,b,Cervaro (fr),41.466667,13.783333,,0.003,,1308,152,95,,,,-28295.5,24,55541,,, +28295.5,USA,,K4IT,b,Flatwoods (KY),38.516667,-82.7,,0.0035,,6680,295,148,,,,-28295.5,Dipole A1 24,55540,,, +28295.8,USA,,W3APL,b,Laurel (MD),39.183333,-76.866667,,0.01,,6264,292,140,,,,-28295.8,Hor.Dipole NE/SW A1 24,55542,,, +28296,USA,,KA7BGR,b,CentralPoint (OR),42.516667,-122.95,,0.025,,8422,324,157,,,,,A1 24,55543,,, +28297.1,USA,,NS9RC,b,Winnetka (IL),42.1,-87.7,,0.008,,6698,302,145,,,,-28297.1,1/2 Vert Omni A1 24,55544,,, +28297.8,USA,,WA3BM,b,Valencia (PA),40.683333,-78.45,,0.025,,6250,295,135,,,,-28297.8,A1 24,55546,,, +28298,S,,SK7GH,b,Bor,57.216667,14.116667,,0.005,,753,38,87,,,,,A1 24,55545,,, +28298,USA,,K5TLL,b,Hattiesburg (MS),31.266667,-89.45,,0.005,,7689,295,157,,,,,Vertical Omni A1 24,55548,,, +28298,MHL,,V73TEN,b,Roi Namur I,9.383333,167.45,,0.025,,12941,21,173,,,,,Horiz OA50 Omni ?,55547,,, +28298.1,USA,,K7PO,b,Tenopah (AZ),32.516667,-112.95,,0.0005,,8917,312,176,,,,-28298.1,Vertical Omni A1 24,55550,,, +28298.15,USA,,WZ8D,b,Blachester (OH),39.6,-82.783333,,0.025,,6600,296,139,,,,-28298.15,A1 24,55549,,, +28298.5,USA,,K7FL,b,BattleGround (WA),45.766667,-122.45,,0.004,,8089,325,162,,,,-28298.5,Horiz Loop A1 24,55551,,, +28298.6,USA,,K4JDR,b,Raleigh (NC),35.516667,-78.95,,0.01,,6680,291,144,,,,-28298.6,Vertical Omni A1 24,55552,,, +28299,USA,,N1SCA,b,Palm Bay (FL),27.966667,-80.616667,,0.025,,7398,286,147,,,,,A1 24,55553,,, +28300,I,,IK6ZEW,b,Pescara (pe),42.433333,14.2,,0.0004,,1224,148,103,,,,,Vertical A1 ?,55555,,, +28300,USA,,KF4MS,b,Tallahassee (FL),30.516667,-84.2,,0.01,,7420,290,151,,,,,A99@25' Omni A1 24,55557,,, +28300,USA,,K6FRC,b,Sutters Mntn (CA),39.516667,-120.95,,0.025,,8629,321,158,,,,,A1 24,55554,,, +28300.1,I,,IW0HBY,b,Roma (rm),41.516667,12.283333,,0.01,,1259,157,90,,,,-28300.1,?,55556,,, +28301,HOL,,PI7ETE,b,Amersfoort,52.133333,5.366667,,0.0005,,71,272,62,,,,,Vertical Omni F1A 24,55558,,, +28315.1,D,,DJ1ER,b,near Traunstein (bay),47.85,12.616667,,0.025,,649,134,79,,,,-28315.1,?,55559,,, +28320.97,I,,IZ8HUJ,b,Pignola (pz),40.55,15.783333,,0.0004,,1470,147,106,,,,-28320.97,Windom ?,55560,,, +28321,I,,I1YRB,b,Torre Bert (to),45.05,7.7,,0.0002,,791,173,102,,,,,Vertical Omni QRSS3 24,55561,,, +28321.2,I,,IK3ERY,b,Vittorio Veneto (tv),45.966667,12.283333,,0.0001,,806,146,105,,,,-28321.2,Vertical OMNI QRSS3 24,55563,,, +28321.2,I,,IS0GOV,b,Cagliari (ca),39.216667,9.116667,,0.0003,,1449,171,107,,,,-28321.2,Vertical Omni QRSS3 24,55562,,, +28321.47,I,,IZ1GJH,b,Casarza Lig (ge),44.266667,9.45,,0.0001,,901,164,106,,,,-28321.47,Vertical Omni QRSS3 24,55564,,, +28321.65,I,,IN3KLQ,b,near Trento (tn),46.266667,11.45,,0.0003,,745,149,100,,,,-28321.65,Vertical Omni QRSS3 24,55565,,, +28321.7,I,,IW4EMG,b,Ferrara (fe),44.85,11.45,,0.0001,,888,153,106,,,,-28321.7,QRSS3 24,55566,,, +28321.7,I,,IZ1TAA,b,near La Spezia (sp),44.1,10.033333,,0.0001,,930,162,106,,,,-28321.7,Dipole NW QRSS3 24,55573,,, +28321.8,I,,I1SXT,b,near Chiavari (ge),44.3,9.283333,,0.025,,894,165,82,,,,-28321.8,?,55569,,, +28321.8,I,,I3GNQ,b,Tencarola (pd),45.383333,11.783333,,0.0004,,845,150,99,,,,-28321.8,GP Omni QRSS3 24,55567,,, +28321.85,I,,IK0IXI,b,Aprilia (lt),42.05,13.783333,,0.0001,,1249,151,109,,,,-28321.85,Dipole@30m NE/SW A1/F1 24,55568,,, +28321.86,I,,IZ8JFA,b,Cosenza (cs),39.3,16.2,,0.0003,,1611,148,108,,,,-28321.86,N/NE QRSS3 24,55570,,, +28321.94,I,,IW9BAJ,b,near Acireale (ct),37.6,15.116667,,0.001,,1750,154,104,,,,-28321.94,QRSS3 24,55571,,, +28321.95,I,,IW0HK,b,Civitavecchia (rm),42.133333,11.866667,,0.001,,1183,158,99,,,,-28321.95,Dipole Omni QRSS3 24,55572,,, +28322.01,I,,IW1QIF,b,Davagna-Genova (ge),44.466667,8.95,,0.0001,,870,167,106,,,,-28322.01,Long Wire QRSS3 24,55574,,, +28322.04,I,,IT9YAF,b,Canicatt (ag),37.35,13.866667,,0.0001,,1741,158,114,,,,-28322.04,Vertical Omni QRSS3 24,55575,,, +28322.05,I,,IK1HGI,b,Trecate (no),45.433333,8.7,,0.0001,,761,166,104,,,,-28322.05,Dipole NNW/SSE QRSS3 24,55576,,, +28322.08,I,,IS0GSR,b,near Cagliari (ca),39.55,8.7,,0.0001,,1408,172,111,,,,-28322.08,Dipole N-S QRSS3 24,55577,,, +28322.11,I,,IK8YTN,b,Salerno (sa),40.266667,14.95,,0.0001,,1470,150,112,,,,-28322.11,Inv V E-W QRSS3 24,55578,,, +28322.18,I,,IZ0HCC,b,Roma (rm),41.8,12.45,,0.0001,,1234,156,109,,,,-28322.18,Vertical Omni QRSS3 ?,55579,,, +28322.2,I,,IK8SUT,b,Salerno (sa),40.683333,14.783333,,0.0001,,1421,150,111,,,,-28322.2,Inv V E-W QRSS3 24,55580,,, +28322.2,I,,IW7DEC,b,near Bari (ba),41.216667,16.533333,,0.0001,,1434,144,111,,,,-28322.2,1/2 Vert Omni QRSS3 24,55581,,, +28322.32,I,,IW9FRA,b,Trapani (tp),38.016667,12.616667,,0.0001,,1640,160,113,,,,-28322.32,Dipole N-S QRSS3 24,55582,,, +28322.36,I,,IW3SGT,b,Trieste (ts),45.633333,13.783333,,0.025,,899,140,82,,,,-28322.36,QRSS3 24,55583,,, +28322.45,I,,IW4EMG,b,near Ferrara (fe),44.933333,11.45,,0.025,,880,153,82,,,,-28322.45,Vertical Omni QRSS3 ?,55584,,, +28322.6,F,,F1VJT,b,StGermain/Puoh JN16XX (58),46.966667,3.95,,0.0001,,599,198,103,,,,-28322.6,?,55585,,, +28322.62,I,,IK1BPL,b,Novara (no),45.433333,8.616667,,0.0001,,760,167,104,,,,-28322.62,GP NNW/SSE QRSS3 24,55586,,, +28322.63,I,,IK0VVE,b,near Latina (lt),41.55,12.866667,,0.0001,,1272,155,110,,,,-28322.63,Dipole NNW/SSE QRSS3 24,55587,,, +108999 0000-0001 XXX fmscan.org list end XXX XXX,,,,,,,,,,,,,,,,,,,,,, diff --git a/SDRSharper/bin/x64/Release/frequencies.xml b/SDRSharper/bin/x64/Release/frequencies.xml new file mode 100644 index 0000000..d03593e --- /dev/null +++ b/SDRSharper/bin/x64/Release/frequencies.xml @@ -0,0 +1,103 @@ + + + + true + 484.7128 MHz NFM + Misc + 484712800 + NFM + 0 + 484998784 + 13200 + + + true + 484.8121 MHz NFM + Misc + 484812054 + NFM + 0 + 485436308 + 19600 + + + true + 484.8393 MHz NFM + Misc + 484839303 + NFM + 0 + 485436308 + 12000 + + + true + 484.8508 MHz NFM + Misc + 484850784 + NFM + 0 + 484998784 + 13200 + + + true + 484.8635 MHz NFM + Misc + 484863488 + NFM + 0 + 484998784 + 13200 + + + true + 484.8879 MHz NFM + Misc + 484887850 + NFM + 0 + 484998784 + 13200 + + + true + 484.8887 MHz NFM + Misc + 484888730 + NFM + 0 + 485436308 + 12000 + + + true + 484.9257 MHz NFM + Misc + 484925728 + NFM + 0 + 484998784 + 13200 + + + true + 484.9372 MHz NFM + Misc + 484937216 + NFM + 0 + 484998784 + 13200 + + + true + 484.9626 MHz NFM + Misc + 484962592 + NFM + 0 + 484998784 + 13200 + + \ No newline at end of file diff --git a/SDRSharper/bin/x64/Release/settings.xml b/SDRSharper/bin/x64/Release/settings.xml new file mode 100644 index 0000000..9158fdf --- /dev/null +++ b/SDRSharper/bin/x64/Release/settings.xml @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SDRSharper/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/SDRSharper/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..5aa0bd6 Binary files /dev/null and b/SDRSharper/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/SDRSharper/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SDRSharper/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..24a98ff Binary files /dev/null and b/SDRSharper/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SDRSharper/obj/Debug/SDRSharp.MainForm.resources b/SDRSharper/obj/Debug/SDRSharp.MainForm.resources new file mode 100644 index 0000000..e14ee19 Binary files /dev/null and b/SDRSharper/obj/Debug/SDRSharp.MainForm.resources differ diff --git a/SDRSharper/obj/Debug/SDRSharp.Properties.Resources.resources b/SDRSharper/obj/Debug/SDRSharp.Properties.Resources.resources new file mode 100644 index 0000000..8122649 Binary files /dev/null and b/SDRSharper/obj/Debug/SDRSharp.Properties.Resources.resources differ diff --git a/SDRSharper/obj/Debug/SDRSharp.RadAboutBox1.resources b/SDRSharper/obj/Debug/SDRSharp.RadAboutBox1.resources new file mode 100644 index 0000000..a17ac85 Binary files /dev/null and b/SDRSharper/obj/Debug/SDRSharp.RadAboutBox1.resources differ diff --git a/SDRSharper/obj/Debug/SDRSharper.csproj.CopyComplete b/SDRSharper/obj/Debug/SDRSharper.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/Debug/SDRSharper.csproj.CoreCompileInputs.cache b/SDRSharper/obj/Debug/SDRSharper.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..eb226a0 --- /dev/null +++ b/SDRSharper/obj/Debug/SDRSharper.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2c54c3baad6b98ba3ffb6197d25a188349415918 diff --git a/SDRSharper/obj/Debug/SDRSharper.csproj.FileListAbsolute.txt b/SDRSharper/obj/Debug/SDRSharper.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..aa6f8f7 --- /dev/null +++ b/SDRSharper/obj/Debug/SDRSharper.csproj.FileListAbsolute.txt @@ -0,0 +1,29 @@ +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharper.exe.config +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharper.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharper.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.CollapsiblePanel.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Common.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Controls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.PanView.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Radio.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.Themes.VisualStudio2012Dark.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.UI.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\TelerikCommon.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.CollapsiblePanel.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Common.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Controls.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.PanView.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Radio.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.UI.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharper.csprojResolveAssemblyReference.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharp.MainForm.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharper.csproj.GenerateResource.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharper.exe.licenses +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharper.csproj.CoreCompileInputs.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharper.csproj.CopyComplete +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharper.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharper.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharp.Properties.Resources.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\Debug\SDRSharp.RadAboutBox1.resources diff --git a/SDRSharper/obj/Debug/SDRSharper.csproj.GenerateResource.cache b/SDRSharper/obj/Debug/SDRSharper.csproj.GenerateResource.cache new file mode 100644 index 0000000..e3e071d Binary files /dev/null and b/SDRSharper/obj/Debug/SDRSharper.csproj.GenerateResource.cache differ diff --git a/SDRSharper/obj/Debug/SDRSharper.csprojResolveAssemblyReference.cache b/SDRSharper/obj/Debug/SDRSharper.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..5e381ce Binary files /dev/null and b/SDRSharper/obj/Debug/SDRSharper.csprojResolveAssemblyReference.cache differ diff --git a/SDRSharper/obj/Debug/SDRSharper.exe b/SDRSharper/obj/Debug/SDRSharper.exe new file mode 100644 index 0000000..7172c99 Binary files /dev/null and b/SDRSharper/obj/Debug/SDRSharper.exe differ diff --git a/SDRSharper/obj/Debug/SDRSharper.pdb b/SDRSharper/obj/Debug/SDRSharper.pdb new file mode 100644 index 0000000..4a1dace Binary files /dev/null and b/SDRSharper/obj/Debug/SDRSharper.pdb differ diff --git a/SDRSharper/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/SDRSharper/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..729e4c5 Binary files /dev/null and b/SDRSharper/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/SDRSharper/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/SDRSharper/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/SDRSharper/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/SDRSharper/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/Debug/sdrsharper.exe.licenses b/SDRSharper/obj/Debug/sdrsharper.exe.licenses new file mode 100644 index 0000000..075ab67 Binary files /dev/null and b/SDRSharper/obj/Debug/sdrsharper.exe.licenses differ diff --git a/SDRSharper/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache b/SDRSharper/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..f4192a7 Binary files /dev/null and b/SDRSharper/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/SDRSharper/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SDRSharper/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..ecfbf3c Binary files /dev/null and b/SDRSharper/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SDRSharper/obj/x64/Debug/SDRSharp.MainForm.resources b/SDRSharper/obj/x64/Debug/SDRSharp.MainForm.resources new file mode 100644 index 0000000..e14ee19 Binary files /dev/null and b/SDRSharper/obj/x64/Debug/SDRSharp.MainForm.resources differ diff --git a/SDRSharper/obj/x64/Debug/SDRSharp.Properties.Resources.resources b/SDRSharper/obj/x64/Debug/SDRSharp.Properties.Resources.resources new file mode 100644 index 0000000..8122649 Binary files /dev/null and b/SDRSharper/obj/x64/Debug/SDRSharp.Properties.Resources.resources differ diff --git a/SDRSharper/obj/x64/Debug/SDRSharp.RadAboutBox1.resources b/SDRSharper/obj/x64/Debug/SDRSharp.RadAboutBox1.resources new file mode 100644 index 0000000..a17ac85 Binary files /dev/null and b/SDRSharper/obj/x64/Debug/SDRSharp.RadAboutBox1.resources differ diff --git a/SDRSharper/obj/x64/Debug/SDRSharper.csproj.CopyComplete b/SDRSharper/obj/x64/Debug/SDRSharper.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x64/Debug/SDRSharper.csproj.CoreCompileInputs.cache b/SDRSharper/obj/x64/Debug/SDRSharper.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4070dfe --- /dev/null +++ b/SDRSharper/obj/x64/Debug/SDRSharper.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3415d190cef25af3be8f96fa11cd2f05458aeb03 diff --git a/SDRSharper/obj/x64/Debug/SDRSharper.csproj.FileListAbsolute.txt b/SDRSharper/obj/x64/Debug/SDRSharper.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fa65499 --- /dev/null +++ b/SDRSharper/obj/x64/Debug/SDRSharper.csproj.FileListAbsolute.txt @@ -0,0 +1,31 @@ +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharperR.exe.config +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharperR.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharperR.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.CollapsiblePanel.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.Common.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.Controls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.FrequencyManager.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.PanView.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.Radio.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\Telerik.WinControls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\Telerik.WinControls.Themes.VisualStudio2012Dark.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\Telerik.WinControls.UI.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\TelerikCommon.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.CollapsiblePanel.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.Controls.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.PanView.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.Common.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.Radio.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\SDRSharp.FrequencyManager.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\Telerik.WinControls.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Debug\Telerik.WinControls.UI.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharper.csprojResolveAssemblyReference.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharp.MainForm.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharp.Properties.Resources.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharp.RadAboutBox1.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharper.csproj.GenerateResource.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharperR.exe.licenses +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharper.csproj.CoreCompileInputs.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharper.csproj.CopyComplete +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharperR.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Debug\SDRSharperR.pdb diff --git a/SDRSharper/obj/x64/Debug/SDRSharper.csproj.GenerateResource.cache b/SDRSharper/obj/x64/Debug/SDRSharper.csproj.GenerateResource.cache new file mode 100644 index 0000000..b3d7eca Binary files /dev/null and b/SDRSharper/obj/x64/Debug/SDRSharper.csproj.GenerateResource.cache differ diff --git a/SDRSharper/obj/x64/Debug/SDRSharper.csprojResolveAssemblyReference.cache b/SDRSharper/obj/x64/Debug/SDRSharper.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..19baff9 Binary files /dev/null and b/SDRSharper/obj/x64/Debug/SDRSharper.csprojResolveAssemblyReference.cache differ diff --git a/SDRSharper/obj/x64/Debug/SDRSharperR.exe b/SDRSharper/obj/x64/Debug/SDRSharperR.exe new file mode 100644 index 0000000..3eb078f Binary files /dev/null and b/SDRSharper/obj/x64/Debug/SDRSharperR.exe differ diff --git a/SDRSharper/obj/x64/Debug/SDRSharperR.pdb b/SDRSharper/obj/x64/Debug/SDRSharperR.pdb new file mode 100644 index 0000000..2d93ee0 Binary files /dev/null and b/SDRSharper/obj/x64/Debug/SDRSharperR.pdb differ diff --git a/SDRSharper/obj/x64/Debug/TempPE/Properties.Resources.Designer.cs.dll b/SDRSharper/obj/x64/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..5a71277 Binary files /dev/null and b/SDRSharper/obj/x64/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/SDRSharper/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/SDRSharper/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/SDRSharper/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/SDRSharper/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x64/Debug/sdrsharperr.exe.licenses b/SDRSharper/obj/x64/Debug/sdrsharperr.exe.licenses new file mode 100644 index 0000000..b76bdcb Binary files /dev/null and b/SDRSharper/obj/x64/Debug/sdrsharperr.exe.licenses differ diff --git a/SDRSharper/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache b/SDRSharper/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..cfbcbc2 Binary files /dev/null and b/SDRSharper/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/SDRSharper/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache b/SDRSharper/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..6813e05 Binary files /dev/null and b/SDRSharper/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SDRSharper/obj/x64/Release/SDRSharp.MainForm.resources b/SDRSharper/obj/x64/Release/SDRSharp.MainForm.resources new file mode 100644 index 0000000..e14ee19 Binary files /dev/null and b/SDRSharper/obj/x64/Release/SDRSharp.MainForm.resources differ diff --git a/SDRSharper/obj/x64/Release/SDRSharp.Properties.Resources.resources b/SDRSharper/obj/x64/Release/SDRSharp.Properties.Resources.resources new file mode 100644 index 0000000..8122649 Binary files /dev/null and b/SDRSharper/obj/x64/Release/SDRSharp.Properties.Resources.resources differ diff --git a/SDRSharper/obj/x64/Release/SDRSharp.RadAboutBox1.resources b/SDRSharper/obj/x64/Release/SDRSharp.RadAboutBox1.resources new file mode 100644 index 0000000..a17ac85 Binary files /dev/null and b/SDRSharper/obj/x64/Release/SDRSharp.RadAboutBox1.resources differ diff --git a/SDRSharper/obj/x64/Release/SDRSharper.csproj.CopyComplete b/SDRSharper/obj/x64/Release/SDRSharper.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x64/Release/SDRSharper.csproj.CoreCompileInputs.cache b/SDRSharper/obj/x64/Release/SDRSharper.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4dee796 --- /dev/null +++ b/SDRSharper/obj/x64/Release/SDRSharper.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +92b3d746567cf762c4e9ff321dee5f3ed3714c98 diff --git a/SDRSharper/obj/x64/Release/SDRSharper.csproj.FileListAbsolute.txt b/SDRSharper/obj/x64/Release/SDRSharper.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..bbe0855 --- /dev/null +++ b/SDRSharper/obj/x64/Release/SDRSharper.csproj.FileListAbsolute.txt @@ -0,0 +1,31 @@ +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.CollapsiblePanel.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.Common.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.Controls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.PanView.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.Radio.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.CollapsiblePanel.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.Common.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.Controls.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.PanView.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.Radio.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharper.csprojResolveAssemblyReference.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharp.MainForm.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharper.csproj.GenerateResource.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharper.csproj.CoreCompileInputs.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharper.csproj.CopyComplete +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharp.Properties.Resources.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharp.RadAboutBox1.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\Telerik.WinControls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\Telerik.WinControls.Themes.VisualStudio2012Dark.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\Telerik.WinControls.UI.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\TelerikCommon.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\Telerik.WinControls.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\Telerik.WinControls.UI.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharperR.exe.config +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharperR.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharperR.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.FrequencyManager.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\x64\Release\SDRSharp.FrequencyManager.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharperR.exe.licenses +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharperR.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x64\Release\SDRSharperR.pdb diff --git a/SDRSharper/obj/x64/Release/SDRSharper.csproj.GenerateResource.cache b/SDRSharper/obj/x64/Release/SDRSharper.csproj.GenerateResource.cache new file mode 100644 index 0000000..9e7a947 Binary files /dev/null and b/SDRSharper/obj/x64/Release/SDRSharper.csproj.GenerateResource.cache differ diff --git a/SDRSharper/obj/x64/Release/SDRSharper.csprojResolveAssemblyReference.cache b/SDRSharper/obj/x64/Release/SDRSharper.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..99dcb26 Binary files /dev/null and b/SDRSharper/obj/x64/Release/SDRSharper.csprojResolveAssemblyReference.cache differ diff --git a/SDRSharper/obj/x64/Release/SDRSharperR.exe b/SDRSharper/obj/x64/Release/SDRSharperR.exe new file mode 100644 index 0000000..4c7b9aa Binary files /dev/null and b/SDRSharper/obj/x64/Release/SDRSharperR.exe differ diff --git a/SDRSharper/obj/x64/Release/SDRSharperR.pdb b/SDRSharper/obj/x64/Release/SDRSharperR.pdb new file mode 100644 index 0000000..20edf1f Binary files /dev/null and b/SDRSharper/obj/x64/Release/SDRSharperR.pdb differ diff --git a/SDRSharper/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll b/SDRSharper/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..4ba2c27 Binary files /dev/null and b/SDRSharper/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/SDRSharper/obj/x64/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/SDRSharper/obj/x64/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x64/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/SDRSharper/obj/x64/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x64/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/SDRSharper/obj/x64/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x64/Release/sdrsharperr.exe.licenses b/SDRSharper/obj/x64/Release/sdrsharperr.exe.licenses new file mode 100644 index 0000000..b76bdcb Binary files /dev/null and b/SDRSharper/obj/x64/Release/sdrsharperr.exe.licenses differ diff --git a/SDRSharper/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache b/SDRSharper/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..cd7ad79 Binary files /dev/null and b/SDRSharper/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/SDRSharper/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/SDRSharper/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..4dee2ad Binary files /dev/null and b/SDRSharper/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SDRSharper/obj/x86/Debug/SDRSharp.MainForm.resources b/SDRSharper/obj/x86/Debug/SDRSharp.MainForm.resources new file mode 100644 index 0000000..e14ee19 Binary files /dev/null and b/SDRSharper/obj/x86/Debug/SDRSharp.MainForm.resources differ diff --git a/SDRSharper/obj/x86/Debug/SDRSharp.Properties.Resources.resources b/SDRSharper/obj/x86/Debug/SDRSharp.Properties.Resources.resources new file mode 100644 index 0000000..8122649 Binary files /dev/null and b/SDRSharper/obj/x86/Debug/SDRSharp.Properties.Resources.resources differ diff --git a/SDRSharper/obj/x86/Debug/SDRSharp.RadAboutBox1.resources b/SDRSharper/obj/x86/Debug/SDRSharp.RadAboutBox1.resources new file mode 100644 index 0000000..a17ac85 Binary files /dev/null and b/SDRSharper/obj/x86/Debug/SDRSharp.RadAboutBox1.resources differ diff --git a/SDRSharper/obj/x86/Debug/SDRSharper.csproj.CopyComplete b/SDRSharper/obj/x86/Debug/SDRSharper.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x86/Debug/SDRSharper.csproj.CoreCompileInputs.cache b/SDRSharper/obj/x86/Debug/SDRSharper.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ae3b1da --- /dev/null +++ b/SDRSharper/obj/x86/Debug/SDRSharper.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e482de5cf2a9068c5e1a41ee25add5c931e403c3 diff --git a/SDRSharper/obj/x86/Debug/SDRSharper.csproj.FileListAbsolute.txt b/SDRSharper/obj/x86/Debug/SDRSharper.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1f8e7f2 --- /dev/null +++ b/SDRSharper/obj/x86/Debug/SDRSharper.csproj.FileListAbsolute.txt @@ -0,0 +1,49 @@ +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharper.exe.config +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharper.exe +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharper.pdb +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.CollapsiblePanel.dll +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Common.dll +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Controls.dll +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.PanView.dll +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Radio.dll +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Common.pdb +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.PanView.pdb +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.CollapsiblePanel.pdb +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Controls.pdb +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Radio.pdb +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.csprojResolveAssemblyReference.cache +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharp.MainForm.resources +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.csproj.GenerateResource.cache +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.csproj.CoreCompileInputs.cache +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.csproj.CopyComplete +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.exe +C:\Users\James\Downloads\RTL-SDR Stuff\SDRSharper_06l\Sources\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharper.exe.config +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharper.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharper.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.CollapsiblePanel.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Common.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Controls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.PanView.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Radio.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.Themes.VisualStudio2012Dark.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.UI.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\TelerikCommon.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.CollapsiblePanel.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Common.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Controls.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.Radio.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\SDRSharp.PanView.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Debug\Telerik.WinControls.UI.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.csprojResolveAssemblyReference.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharp.MainForm.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharp.Properties.Resources.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharp.RadAboutBox1.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.csproj.GenerateResource.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.exe.licenses +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.csproj.CoreCompileInputs.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.csproj.CopyComplete +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Debug\SDRSharper.pdb diff --git a/SDRSharper/obj/x86/Debug/SDRSharper.csproj.GenerateResource.cache b/SDRSharper/obj/x86/Debug/SDRSharper.csproj.GenerateResource.cache new file mode 100644 index 0000000..e3e071d Binary files /dev/null and b/SDRSharper/obj/x86/Debug/SDRSharper.csproj.GenerateResource.cache differ diff --git a/SDRSharper/obj/x86/Debug/SDRSharper.csprojResolveAssemblyReference.cache b/SDRSharper/obj/x86/Debug/SDRSharper.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..ed4586c Binary files /dev/null and b/SDRSharper/obj/x86/Debug/SDRSharper.csprojResolveAssemblyReference.cache differ diff --git a/SDRSharper/obj/x86/Debug/SDRSharper.exe b/SDRSharper/obj/x86/Debug/SDRSharper.exe new file mode 100644 index 0000000..a7667d5 Binary files /dev/null and b/SDRSharper/obj/x86/Debug/SDRSharper.exe differ diff --git a/SDRSharper/obj/x86/Debug/SDRSharper.pdb b/SDRSharper/obj/x86/Debug/SDRSharper.pdb new file mode 100644 index 0000000..bc74852 Binary files /dev/null and b/SDRSharper/obj/x86/Debug/SDRSharper.pdb differ diff --git a/SDRSharper/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll b/SDRSharper/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..75f6d4c Binary files /dev/null and b/SDRSharper/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/SDRSharper/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/SDRSharper/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/SDRSharper/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/SDRSharper/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x86/Debug/sdrsharper.exe.licenses b/SDRSharper/obj/x86/Debug/sdrsharper.exe.licenses new file mode 100644 index 0000000..075ab67 Binary files /dev/null and b/SDRSharper/obj/x86/Debug/sdrsharper.exe.licenses differ diff --git a/SDRSharper/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache b/SDRSharper/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..8be1031 Binary files /dev/null and b/SDRSharper/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/SDRSharper/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache b/SDRSharper/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..b9e4519 Binary files /dev/null and b/SDRSharper/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SDRSharper/obj/x86/Release/SDRSharp.MainForm.resources b/SDRSharper/obj/x86/Release/SDRSharp.MainForm.resources new file mode 100644 index 0000000..e14ee19 Binary files /dev/null and b/SDRSharper/obj/x86/Release/SDRSharp.MainForm.resources differ diff --git a/SDRSharper/obj/x86/Release/SDRSharp.Properties.Resources.resources b/SDRSharper/obj/x86/Release/SDRSharp.Properties.Resources.resources new file mode 100644 index 0000000..8122649 Binary files /dev/null and b/SDRSharper/obj/x86/Release/SDRSharp.Properties.Resources.resources differ diff --git a/SDRSharper/obj/x86/Release/SDRSharp.RadAboutBox1.resources b/SDRSharper/obj/x86/Release/SDRSharp.RadAboutBox1.resources new file mode 100644 index 0000000..a17ac85 Binary files /dev/null and b/SDRSharper/obj/x86/Release/SDRSharp.RadAboutBox1.resources differ diff --git a/SDRSharper/obj/x86/Release/SDRSharper.csproj.CopyComplete b/SDRSharper/obj/x86/Release/SDRSharper.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x86/Release/SDRSharper.csproj.CoreCompileInputs.cache b/SDRSharper/obj/x86/Release/SDRSharper.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1f44544 --- /dev/null +++ b/SDRSharper/obj/x86/Release/SDRSharper.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2442fedd85b51859d31e73bf27bcf97116730293 diff --git a/SDRSharper/obj/x86/Release/SDRSharper.csproj.FileListAbsolute.txt b/SDRSharper/obj/x86/Release/SDRSharper.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..696b06d --- /dev/null +++ b/SDRSharper/obj/x86/Release/SDRSharper.csproj.FileListAbsolute.txt @@ -0,0 +1,29 @@ +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharper.exe.config +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharper.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharper.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.CollapsiblePanel.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.Common.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.Controls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.PanView.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.Radio.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.Common.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.Controls.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.PanView.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.Radio.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\SDRSharp.CollapsiblePanel.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharper.csprojResolveAssemblyReference.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharp.MainForm.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharper.csproj.GenerateResource.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharper.csproj.CoreCompileInputs.cache +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharper.csproj.CopyComplete +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharper.exe +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharper.pdb +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\Telerik.WinControls.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\Telerik.WinControls.Themes.VisualStudio2012Dark.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\Telerik.WinControls.UI.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\TelerikCommon.dll +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\Telerik.WinControls.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\bin\Release\Telerik.WinControls.UI.xml +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharp.Properties.Resources.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharp.RadAboutBox1.resources +C:\Users\James\Documents\Visual Studio 2017\Projects\SDRSharper\SDRSharper\obj\x86\Release\SDRSharper.exe.licenses diff --git a/SDRSharper/obj/x86/Release/SDRSharper.csproj.GenerateResource.cache b/SDRSharper/obj/x86/Release/SDRSharper.csproj.GenerateResource.cache new file mode 100644 index 0000000..e3e071d Binary files /dev/null and b/SDRSharper/obj/x86/Release/SDRSharper.csproj.GenerateResource.cache differ diff --git a/SDRSharper/obj/x86/Release/SDRSharper.csprojResolveAssemblyReference.cache b/SDRSharper/obj/x86/Release/SDRSharper.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..27b1031 Binary files /dev/null and b/SDRSharper/obj/x86/Release/SDRSharper.csprojResolveAssemblyReference.cache differ diff --git a/SDRSharper/obj/x86/Release/SDRSharper.exe b/SDRSharper/obj/x86/Release/SDRSharper.exe new file mode 100644 index 0000000..15f7425 Binary files /dev/null and b/SDRSharper/obj/x86/Release/SDRSharper.exe differ diff --git a/SDRSharper/obj/x86/Release/SDRSharper.pdb b/SDRSharper/obj/x86/Release/SDRSharper.pdb new file mode 100644 index 0000000..6d81fc3 Binary files /dev/null and b/SDRSharper/obj/x86/Release/SDRSharper.pdb differ diff --git a/SDRSharper/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll b/SDRSharper/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..0aaabfb Binary files /dev/null and b/SDRSharper/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/SDRSharper/obj/x86/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/SDRSharper/obj/x86/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x86/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/SDRSharper/obj/x86/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x86/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/SDRSharper/obj/x86/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/SDRSharper/obj/x86/Release/sdrsharper.exe.licenses b/SDRSharper/obj/x86/Release/sdrsharper.exe.licenses new file mode 100644 index 0000000..075ab67 Binary files /dev/null and b/SDRSharper/obj/x86/Release/sdrsharper.exe.licenses differ diff --git a/SDRSharper/settings files.rar b/SDRSharper/settings files.rar new file mode 100644 index 0000000..4b0eec3 Binary files /dev/null and b/SDRSharper/settings files.rar differ